diff --git a/analysis/Python_scripts/add_zeros.ipynb b/analysis/Python_scripts/add_zeros.ipynb index d7d05ee..09a0b49 100644 --- a/analysis/Python_scripts/add_zeros.ipynb +++ b/analysis/Python_scripts/add_zeros.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 9, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ @@ -10,37 +10,32 @@ "from matchms.importing import load_from_msp\n", "from matchms.logging_functions import set_matchms_logger_level\n", "import itertools\n", + "from utils import load_spectra_metadata\n", "\n", "set_matchms_logger_level(\"ERROR\")" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ - "predicted_spectra = list(load_from_msp(\"../data/filtered/simulated_matchms_filter_1%I_all_peaks.msp\"))\n", - "predicted_spectra_metadata= pd.DataFrame.from_dict([x.metadata for x in predicted_spectra])\n", - "predicted_spectra_metadata.rename(columns={'compound_name': 'query'}, inplace=True)\n", - "predicted_spectra_names = predicted_spectra_metadata['query'].to_list()" + "predicted_spectra, predicted_spectra_metadata, predicted_spectra_names = load_spectra_metadata(\"../data/filtered/simulated_matchms_filter_1%I_all_peaks.msp\", 'query')" ] }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 27, "metadata": {}, "outputs": [], "source": [ - "experimental_spectra = list(load_from_msp(\"../data/experimental/RECETOX_GC-EI_MS_20201028.msp\"))\n", - "experimental_spectra_metadata= pd.DataFrame.from_dict([x.metadata for x in experimental_spectra])\n", - "experimental_spectra_metadata.rename(columns={'compound_name': 'reference'}, inplace=True)\n", - "experimental_spectra_names = experimental_spectra_metadata['reference'].to_list()" + "experimental_spectra, experimental_spectra_metadata, experimental_spectra_names = load_spectra_metadata(\"../data/experimental/RECETOX_GC-EI_MS_20201028.msp\", 'reference')" ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 28, "metadata": {}, "outputs": [], "source": [ @@ -49,7 +44,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 29, "metadata": {}, "outputs": [], "source": [ @@ -59,7 +54,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 30, "metadata": {}, "outputs": [], "source": [ @@ -69,7 +64,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 31, "metadata": {}, "outputs": [], "source": [ @@ -79,7 +74,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 32, "metadata": {}, "outputs": [], "source": [ diff --git a/analysis/Python_scripts/scatterplot.ipynb b/analysis/Python_scripts/scatterplot.ipynb index f2cbe54..4ab3414 100644 --- a/analysis/Python_scripts/scatterplot.ipynb +++ b/analysis/Python_scripts/scatterplot.ipynb @@ -2,46 +2,37 @@ "cells": [ { "cell_type": "code", - "execution_count": 9, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ - "import numpy as np\n", "import plotly.graph_objs as go\n", "import pandas as pd\n", - "from rdkit import Chem\n", "from matchms.importing import load_from_msp\n", "from matchms.logging_functions import set_matchms_logger_level\n", "\n", - "from utils import is_spectrum_for_compound\n", + "from utils import is_spectrum_for_compound, load_spectra_metadata\n", "\n", "set_matchms_logger_level('ERROR')" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "matchms_scores = pd.read_csv(\"../data/output_matching/matchms/matchms_tol_0.01_1%I_all_peaks_with_0s.tsv\", sep=\"\\t\")\n", - "\n", "matchms_scores = matchms_scores[matchms_scores.apply(lambda x: is_spectrum_for_compound(x['query'], x['reference']), axis=1)]\n", "\n", - "molecules = Chem.SDMolSupplier(\"../../data/RECETOX_GC-EI-MS_20201028.sdf\")\n", - "\n", - "predicted_spectra = list(load_from_msp(\"../data/filtered/simulated_matchms_filter_1%I_all_peaks.msp\"))\n", - "spectra_metadata = pd.DataFrame.from_dict([x.metadata for x in predicted_spectra])\n", - "spectra_metadata.rename(columns={'compound_name': 'query'}, inplace=True)\n", + "_ , spectra_metadata, _ = load_spectra_metadata(\"../data/filtered/simulated_matchms_filter_1%I_all_peaks.msp\", 'query')\n", "\n", - "reference_spectra = list(load_from_msp(\"../data/experimental/RECETOX_GC-EI_MS_20201028.msp\"))\n", - "reference_spectra_metadata = pd.DataFrame.from_dict([x.metadata for x in reference_spectra])\n", - "reference_spectra_metadata.rename(columns={'compound_name': 'reference'}, inplace=True)\n" + "_ , reference_spectra_metadata, _ = load_spectra_metadata(\"../data/experimental/RECETOX_GC-EI_MS_20201028.msp\", 'reference')" ] }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -54,13 +45,12 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ - "merged['CosineHungarian_0.01_0.0_1.0_matches'] = pd.to_numeric(merged['CosineHungarian_0.01_0.0_1.0_matches'], errors='coerce')\n", - "merged['n_peaks_query'] = pd.to_numeric(merged['n_peaks_query'], errors='coerce')\n", - "merged['n_peaks_reference'] = pd.to_numeric(merged['n_peaks_reference'], errors='coerce')\n", + "numeric_columns = ['CosineHungarian_0.01_0.0_1.0_matches', 'n_peaks_query', 'n_peaks_reference']\n", + "merged[numeric_columns] = merged[numeric_columns].apply(pd.to_numeric, errors='coerce')\n", "\n", "merged['FractionQuery'] = merged['CosineHungarian_0.01_0.0_1.0_matches'] / merged['n_peaks_query']\n", "merged['FractionReference'] = merged['CosineHungarian_0.01_0.0_1.0_matches'] / merged['n_peaks_reference']" @@ -68,9 +58,38 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 5, "metadata": {}, "outputs": [ + { + "data": { + "text/html": [ + " \n", + " " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, { "data": { "application/vnd.plotly.v1+json": { @@ -81,18 +100,42 @@ { "marker": { "color": [ + 0.06060606060606061, + 0.631578947368421, + 0.058823529411764705, + 0.7894736842105263, + 0.7619047619047619, + 0.6842105263157895, 0.7222222222222222, + 0.8823529411764706, + 0.8125, 0.68, 0.7906976744186046, + 0.30434782608695654, 0.47619047619047616, + 0.6666666666666666, + 0.7619047619047619, + 0.52, + 0.6875, + 0.8333333333333334, + 0.6086956521739131, + 0.5416666666666666, + 0.4090909090909091, + 0.55, + 0.208955223880597, + 0.7272727272727273, + 0.1702127659574468, 0.1323529411764706, 0.4230769230769231, 0.3877551020408163, 0.47619047619047616, 0.25274725274725274, 0.56, + 0.27058823529411763, + 0.20212765957446807, 0.4444444444444444, 0.12903225806451613, + 0.3793103448275862, 0.5084745762711864, 0.625, 0.75, @@ -106,9 +149,12 @@ 0.5373134328358209, 0.6875, 0.6363636363636364, + 0.6730769230769231, + 0.78, 0.6792452830188679, 0.5777777777777777, 0.6515151515151515, + 0.2727272727272727, 0.75, 0.5925925925925926, 0.6551724137931034, @@ -127,6 +173,8 @@ 0.734375, 0.6036036036036037, 0.4909090909090909, + 0.40540540540540543, + 0.6440677966101694, 0.4146341463414634, 0.8636363636363636, 0.9047619047619048, @@ -155,13 +203,24 @@ 0.36363636363636365, 0.16853932584269662, 0.1346153846153846, + 0.5333333333333333, + 0.44642857142857145, + 0.5, 0.37777777777777777, + 0.5636363636363636, + 0.4461538461538462, + 0.28888888888888886, + 0.48, + 0.46153846153846156, + 0.46153846153846156, 0.4818181818181818, 0.6105263157894737, 0.5178571428571429, 0.7361111111111112, 0.10119047619047619, 0.3786407766990291, + 0.5, + 0.44954128440366975, 0.07692307692307693, 0.24561403508771928, 0.6832298136645962, @@ -170,7 +229,9 @@ 0.6428571428571429, 0.2247191011235955, 0.54, + 0.7333333333333333, 0.3111111111111111, + 0.6470588235294118, 0.0425531914893617, 0.7105263157894737, 0.65, @@ -186,6 +247,7 @@ 0.75, 0.8571428571428571, 0.6666666666666666, + 0.9, 0.7083333333333334, 0.875, 0.7741935483870968, @@ -225,7 +287,10 @@ 0.20512820512820512, 0.5454545454545454, 0.16058394160583941, + 0.225, 0.5510204081632653, + 0.48, + 0.29411764705882354, 0.8125, 0.8461538461538461, 0.5555555555555556, @@ -365,6 +430,7 @@ 0.1076923076923077, 0.048507462686567165, 0.6923076923076923, + 0.5384615384615384, 0.39473684210526316, 0.32, 0.2, @@ -399,6 +465,7 @@ 0.265625, 0.4838709677419355, 0.35507246376811596, + 0.3888888888888889, 0.6, 0.8571428571428571, 0.026785714285714284, @@ -464,18 +531,42 @@ ], "opacity": 0.5, "size": [ + 0.7017543859649122, + 3.4782608695652173, + 0.43478260869565216, + 7.6923076923076925, + 7.111111111111112, + 7.878787878787879, 7.027027027027027, + 6, + 5.306122448979592, 5.483870967741935, 7.23404255319149, + 2.3333333333333335, 2.9411764705882355, + 4.363636363636363, + 6.2745098039215685, + 4.814814814814815, + 3.384615384615385, + 4.545454545454545, + 5.490196078431373, + 4.333333333333334, + 2.8571428571428568, + 3.384615384615385, + 4.745762711864407, + 4.444444444444445, + 2.4615384615384617, 2.3684210526315788, 8.8, 7.755102040816326, 4.545454545454545, 3.8016528925619837, 7.567567567567568, + 10.69767441860465, + 5.757575757575758, 4.615384615384616, 5.853658536585366, + 3.013698630136986, 10.434782608695652, 2.28310502283105, 1.935483870967742, @@ -489,9 +580,12 @@ 8.089887640449438, 6.24113475177305, 6.511627906976745, + 10.606060606060606, + 12, 5, 2.988505747126437, 6.615384615384615, + 4.044943820224719, 6.315789473684211, 8.571428571428571, 6.972477064220184, @@ -510,6 +604,8 @@ 6.7625899280575545, 8.758169934640524, 8.181818181818182, + 8.823529411764707, + 9.5, 4.657534246575342, 5.671641791044776, 6.129032258064516, @@ -538,13 +634,24 @@ 4.028776978417266, 2.142857142857143, 4.912280701754385, + 6.4, + 6.802721088435374, + 8.169014084507042, 5.76271186440678, + 3.8036809815950923, + 3.27683615819209, + 3.48993288590604, + 3.428571428571429, + 4.615384615384616, + 4.316546762589928, 8.760330578512397, 12.083333333333332, 11.0828025477707, 8.833333333333332, 15.454545454545453, 6.782608695652174, + 14.23728813559322, + 16.896551724137932, 3.8461538461538463, 10.37037037037037, 2.6699029126213594, @@ -553,7 +660,9 @@ 7.397260273972602, 3.2608695652173916, 7.826086956521739, + 8.8, 12.173913043478262, + 7.096774193548388, 8, 7.826086956521739, 7.123287671232877, @@ -569,6 +678,7 @@ 5.217391304347826, 5.806451612903226, 9.777777777777777, + 4.7368421052631575, 8.947368421052632, 5.6000000000000005, 4.948453608247423, @@ -608,7 +718,10 @@ 11.428571428571427, 6.233766233766234, 5, + 3.2727272727272725, 13.5, + 5.106382978723404, + 9.09090909090909, 7.222222222222222, 9.166666666666666, 8.695652173913043, @@ -748,6 +861,7 @@ 9.333333333333334, 5.777777777777777, 8.571428571428571, + 7.368421052631579, 5.172413793103448, 12.307692307692308, 10.69767441860465, @@ -782,6 +896,7 @@ 6.296296296296297, 5.3097345132743365, 8.305084745762713, + 4.516129032258064, 1.2, 2.4, 8.571428571428571, @@ -803,353 +918,425 @@ "name": "Matched Ions", "type": "scatter", "x": [ - 0.6686826253068318, - 0.8891480656798398, - 0.647571789023915, - 0.7048651991825855, - 0.8484925647408333, - 0.9068416030069706, - 0.5361664161984832, - 0.5929706797659093, - 0.2667777725699013, - 0.6568811489638643, - 0.8436073116340176, - 0.2430807078046094, - 0.4187217729481762, - 0.3366532773494816, - 0.4592791365773381, - 0.8462278949688702, - 0.7505131451183914, - 0.8693785106504971, - 0.7865305771086379, - 0.4373910460057403, - 0.0972593810394468, - 0.159108733959554, - 0.0931597595116206, - 0.1285253561596432, - 0.1395879006356696, - 0.5067551470422393, - 0.4165181481823968, - 0.6297996415298174, - 0.8744627267157226, - 0.8054739456488554, - 0.9071642546098256, - 0.8179186552452441, - 0.7735840982090947, - 0.7722145388708959, - 0.8099517835414795, - 0.8701459521896999, - 0.8410059114468529, - 0.7961212029300814, + 0.0090065681789311, + 0.8921650687160719, + 0.0006333256204096, + 0.9440450943644676, + 0.9420729814235752, + 0.9378857718781576, + 0.6686826253068304, + 0.948774017682199, + 0.937075996631993, + 0.8891480656798413, + 0.6475717890239174, + 0.9589889194029564, + 0.704865199182585, + 0.927036972707218, + 0.9092048795662075, + 0.88058927099081, + 0.9406410204929744, + 0.9489121444797912, + 0.9224799448827952, + 0.9362855625100808, + 0.9434474699006726, + 0.911320331267288, + 0.9130441739189382, + 0.910767776499818, + 0.8556352031788313, + 0.8484925647408332, + 0.9068416030069704, + 0.5361664161984837, + 0.5929706797659072, + 0.2667777725699015, + 0.6568811489638633, + 0.8296648567056003, + 0.5065024202916136, + 0.8436073116340173, + 0.2430807078046091, + 0.7638230354119235, + 0.4187217729481738, + 0.336653277349482, + 0.459279136577339, + 0.8462278949688693, + 0.7505131451183916, + 0.8693785106504954, + 0.7865305771086426, + 0.4373910460057382, + 0.097259381039445, + 0.1591087339595496, + 0.0931597595116204, + 0.1285253561596429, + 0.1395879006356688, + 0.946829271683286, + 0.9327039170603884, + 0.5067551470422385, + 0.4165181481823979, + 0.629799641529818, + 0.8110538710571302, + 0.8744627267157198, + 0.8054739456488558, + 0.9071642546098232, + 0.8179186552452434, + 0.7735840982090951, + 0.7722145388709022, + 0.8099517835414802, + 0.8701459521896978, + 0.8410059114468548, + 0.796121202930083, 0.8756548375190589, - 0.8818947623834803, - 0.8636929413285291, - 0.8546841148919154, - 0.8692233057547257, - 0.8473302355520778, - 0.8197509934157268, - 0.6375902591489323, - 0.3865169067296431, - 0.4911735043103782, - 0.7241051652066504, + 0.8818947623834824, + 0.8636929413285311, + 0.8546841148919162, + 0.8692233057547234, + 0.847330235552079, + 0.8197509934157269, + 0.6375902591489319, + 0.2795364079548856, + 0.3364971403401969, + 0.3865169067296427, + 0.4911735043103766, + 0.7241051652066511, 0.2475325423495942, - 0.6930832132257263, - 0.2932913773920915, - 0.6147827071849796, - 0.1632458283012517, - 0.3144383259105249, - 0.2837188171378272, - 0.2857436233829297, - 0.3136807250902025, - 0.2420454591756621, - 0.0045497307462181, - 0.1955085427013495, - 0.761848083811164, - 0.6940217906188879, - 0.8357246825825745, + 0.6930832132257273, + 0.293291377392092, + 0.6147827071849804, + 0.1632458283012519, + 0.3144383259105236, + 0.2837188171378273, + 0.2857436233829308, + 0.3136807250902028, + 0.242045459175661, + 0.0045497307462183, + 0.19550854270135, + 0.7618480838111638, + 0.6940217906188888, + 0.8357246825825758, 0.705266210128664, - 0.5930865437498251, - 0.2024614643737578, - 0.3344167026061641, - 0.2922945771793652, - 0.2929942661169666, - 0.2196765219565474, - 0.2882645668024602, - 0.2239134866065931, - 0.1031157097822872, - 0.8757017062508239, - 0.8763933740705501, - 0.9176007539169192, - 0.6334455096479601, - 0.8262061880855278, - 0.3833001270220675, - 0.3113712576873393, - 0.0195439342804561, - 0.2070122052716317, - 0.317203390184503, - 0.0734949687398287, - 0.1870560874298857, - 0.2528971455085091, - 0.068398414856999, - 0.2299104730130659, - 0.1866353654859698, + 0.5930865437498253, + 0.202461464373758, + 0.3344167026061613, + 0.2922945771793653, + 0.2929942661169664, + 0.219676521956546, + 0.2882645668024604, + 0.2239134866065928, + 0.1031157097822858, + 0.8288640609774388, + 0.8500345613094215, + 0.7832816107919326, + 0.875701706250824, + 0.8696383083917919, + 0.9003751685235076, + 0.8780335453353181, + 0.8885581001579953, + 0.8701172137120478, + 0.8696184301649011, + 0.8763933740705494, + 0.9176007539169196, + 0.6334455096479583, + 0.8262061880855275, + 0.3833001270220684, + 0.3113712576873396, + 0.7568509014285203, + 0.9074560073214673, + 0.0195439342804553, + 0.2070122052716335, + 0.3172033901845038, + 0.0734949687398235, + 0.1870560874298859, + 0.2528971455085083, + 0.0683984148569975, + 0.2299104730130651, + 0.3749226886258283, + 0.1866353654859706, + 0.980008037915998, 0.0317479555209143, - 0.4445722074366212, - 0.1871523527940856, + 0.4445722074366207, + 0.1871523527940859, 0.7404369823575243, - 0.7961969028982654, - 0.3925143524255259, - 0.6922214551905388, - 0.2428055368573047, - 0.4388192039034176, - 0.7098226494937309, - 0.7232560284565593, - 0.6310434772708121, - 0.8340342419522861, - 0.3783586649408101, - 0.4034852114945744, - 0.1295519580035447, - 0.2872931165518375, - 0.2261782989508227, - 0.7052344550963673, - 0.5902172168720876, - 0.6749089435119103, - 0.5080736825470497, - 0.7931467542349303, - 0.4080498525295497, - 0.4792146741213965, - 0.4446415493117288, - 0.2552076480533645, - 0.3346574844864873, - 0.6703885847664003, - 0.3595796793404671, - 0.1276344389339884, - 0.6656880562982567, - 0.7941997738537732, - 0.4436790282808939, - 0.1919700957881331, - 0.6630549193804044, - 0.8205084248661939, - 0.6095531107800557, - 0.590696505277705, - 0.0375477366323821, - 0.0507420297742213, - 0.2731143209283502, - 0.387932373527966, - 0.3582854356344838, + 0.7961969028982653, + 0.392514352425526, + 0.6922214551905402, + 0.2428055368573046, + 0.4388192039034174, + 0.7098226494937314, + 0.7232560284565583, + 0.6310434772708114, + 0.8340342419522866, + 0.3783586649408125, + 0.4034852114945737, + 0.6410080875282068, + 0.1295519580035435, + 0.2872931165518356, + 0.2261782989508215, + 0.7052344550963676, + 0.5902172168720851, + 0.6749089435119099, + 0.5080736825470495, + 0.7931467542349322, + 0.4080498525295504, + 0.4792146741213986, + 0.4446415493117289, + 0.2552076480533651, + 0.334657484486491, + 0.6703885847663986, + 0.3595796793404713, + 0.1276344389339892, + 0.6656880562982576, + 0.7941997738537717, + 0.4436790282808842, + 0.191970095788133, + 0.6630549193804035, + 0.8205084248661962, + 0.6095531107800553, + 0.5906965052777083, + 0.0375477366323797, + 0.0507420297742214, + 0.2731143209283503, + 0.3879323735279671, + 0.358285435634484, 0.0268294422208669, - 0.0996327003742386, - 0.3346451696353495, - 0.0353167683123944, - 0.0532201420483204, - 0.0017715094965283, - 0.0157440512643999, - 0.255327221627821, - 0.7212182573233505, - 0.770580242452389, - 0.5549186808916211, - 0.7920419362659177, - 0.7697709687769605, + 0.0996327003742391, + 0.3346451696353502, + 0.035316768312394, + 0.0532201420483208, + 0.0017715094965282, + 0.0157440512643996, + 0.2553272216278209, + 0.721218257323351, + 0.7705802424523864, + 0.74161091321123, + 0.5549186808916206, + 0.808142814310373, + 0.6522547342981627, + 0.7920419362659181, + 0.7697709687769607, 0.7795745913163479, - 0.5714391985343883, - 0.4858363315071635, - 0.8522024952078584, - 0.5737592305828375, - 0.7663676327514836, - 0.6975873675879212, - 0.4825633937578886, - 0.7423570485534479, - 0.0075482044136289, - 0.0959163038789515, - 0.1649135006484424, - 0.0236393125662974, - 0.4046123483478725, - 0.4734781831127796, - 0.3800161867149992, - 0.557121399753352, - 0.0754423884309532, - 0.2031733061258087, - 0.1973104191285544, - 0.6568173952468886, - 0.233452275096161, - 0.0518014536884614, - 0.3155609518766205, - 0.9026045506155994, - 0.7670229899444688, - 0.7850586617707895, - 0.8770680388557613, - 0.7839093019760148, - 0.902372495985758, - 0.7843130227657039, - 0.8344231952797103, - 0.8080942930097809, - 0.841801487643499, - 0.8747747041200048, - 0.7741374882157089, - 0.8453297004477446, - 0.7111796693594113, - 0.6818179973816352, - 0.7297491448907676, - 0.8255138416477088, - 0.0665067096235925, - 0.4456718001315434, - 0.4774942436567525, - 0.2301157454794691, - 0.1021150299864111, - 0.2697203283976621, - 0.1050167267362855, - 0.0612341860192354, + 0.5714391985343893, + 0.4858363315071611, + 0.8522024952078577, + 0.5737592305828392, + 0.7663676327514841, + 0.6975873675879248, + 0.482563393757889, + 0.742357048553449, + 0.007548204413629, + 0.0959163038789531, + 0.1649135006484536, + 0.0236393125662979, + 0.4046123483478726, + 0.4734781831127778, + 0.380016186715, + 0.5571213997533517, + 0.0754423884309527, + 0.2031733061258092, + 0.1973104191285521, + 0.6568173952468888, + 0.2334522750961613, + 0.0518014536884609, + 0.3155609518766191, + 0.9026045506156012, + 0.7670229899444668, + 0.7850586617707938, + 0.8770680388557617, + 0.7839093019760144, + 0.9023724959857604, + 0.7843130227657011, + 0.8344231952797092, + 0.8080942930097825, + 0.8418014876435003, + 0.8747747041200051, + 0.7741374882157087, + 0.8453297004477413, + 0.7111796693594158, + 0.6818179973816345, + 0.7297491448907699, + 0.8255138416477085, + 0.066506709623592, + 0.4456718001315433, + 0.4774942436567537, + 0.23011574547947, + 0.1021150299864112, + 0.2697203283976619, + 0.1050167267362857, + 0.0612341860192353, 0.0715575123171377, - 0.5416980196814281, - 0.5545260510015445, - 0.1019978926487593, - 0.2788877617135264, - 0.5866918253125764, - 0.1363925082266384, - 0.4279356738368342, - 0.2978100578992846, - 0.2020410992916848, - 0.0833367618973456, - 0.3524206220081063, - 0.3451908063562069, - 0.2962198971438111, - 0.0131292856774449, - 0.2728924526571127, - 0.6757035675413736, - 0.0660945772395714, - 0.6506435051729285, - 0.8562898953585466, - 0.7919135503273653, - 0.5150918128837809, - 0.1388159224013897, - 0.1025580443035395, - 0.3606147321990098, - 0.1548421227381509, - 0.1846731495070746, - 0.3417948518126387, - 0.7950680292880506, - 0.0694973007846145, - 0.4563102503318959, - 0.0947802941946988, + 0.5416980196814282, + 0.5545260510015424, + 0.101997892648759, + 0.2788877617135263, + 0.5866918253125761, + 0.1363925082266382, + 0.4279356738368347, + 0.2978100578992844, + 0.2020410992916851, + 0.0833367618973463, + 0.3524206220081058, + 0.3451908063562089, + 0.2962198971438134, + 0.013129285677445, + 0.2728924526571132, + 0.6757035675413728, + 0.0660945772395713, + 0.6506435051729295, + 0.8562898953585472, + 0.7919135503273661, + 0.5150918128837811, + 0.1388159224013895, + 0.1025580443035391, + 0.3606147321990129, + 0.1548421227381506, + 0.1846731495070747, + 0.3417948518126384, + 0.7950680292880509, + 0.0694973007846138, + 0.4563102503318951, + 0.0947802941946999, 0.0782110915891292, - 0.3287650685440457, - 0.8153530848051393, - 0.0836388745766977, - 0.1985394137797036, - 0.0033781364523795, - 0.8101907096949743, - 0.491733942207505, - 0.1729153263120892, - 0.0945667195809995, - 0.3849743336109438, + 0.3287650685440487, + 0.815353084805138, + 0.0836388745766982, + 0.1985394137797033, + 0.0033781364523796, + 0.810190709694973, + 0.4917339422075072, + 0.1729153263120889, + 0.0945667195810036, + 0.3849743336109443, 0.7593706323828876, - 0.802255454310363, - 0.6205659446800182, + 0.8022554543103652, + 0.6205659446800186, 0.5281096458962076, - 0.9023114148088928, - 0.1630712252770674, - 0.168032126957624, - 0.1760777470240869, - 0.2256379009159611, - 0.0507671469028, - 0.53113530524345, + 0.9023114148088932, + 0.1630712252770651, + 0.168032126957623, + 0.1760777470240858, + 0.2256379009159605, + 0.0507671469027992, + 0.5311353052434469, 0.9096637541615196, - 0.4080527984965703, - 0.1458016482710635, - 0.2106408826763767, - 0.4094852728715358, - 0.5217298608713973, - 0.8493063473468347, - 0.3370449182302711, - 0.2842552881045013, - 0.4696603373286304, - 0.4699140192188427, + 0.4080527984965693, + 0.145801648271064, + 0.2106408826763761, + 0.4094852728715347, + 0.521729860871398, + 0.8493063473468353, + 0.3370449182302715, + 0.2842552881045009, + 0.4696603373286297, + 0.4699140192188435, 0.4764093021091061, - 0.4144296457248915, - 0.8041874509650575, - 0.457469399495485, - 0.5130387366298054, - 0.1527355673612545, + 0.4144296457248934, + 0.8041874509650567, + 0.4574693994954873, + 0.5130387366298046, + 0.152735567361257, 0.2131081343362036, - 0.6395685964565878, - 0.4962474015045515, - 0.7885648529254781, - 0.5942364029366621, - 0.1204296134726447, - 0.8620520721479143, - 0.2354744611966737, - 0.1940193151312553, - 0.0767301357221445, - 0.2191708056208215, - 0.6597695396798148, - 0.1145887159347201, - 0.1148596598147285, + 0.6395685964565879, + 0.4962474015045519, + 0.788564852925477, + 0.5942364029366618, + 0.1204296134726448, + 0.862052072147914, + 0.2354744611966732, + 0.1940193151312568, + 0.0767301357221437, + 0.2191708056208221, + 0.6597695396798161, + 0.1145887159347208, + 0.1148596598147296, 0.1561986635638219, - 0.4510550929966881, - 0.5252186185966895, - 0.8671835699185585, - 0.878474404655817, - 0.6305148286299326, - 0.3873807064072346, - 0.1251487909811905, + 0.451055092996686, + 0.5252186185966888, + 0.808264544431294, + 0.8671835699185604, + 0.8784744046558178, + 0.6305148286299342, + 0.3873807064072352, + 0.1251487909811919, 0.1360632458287571, - 0.3160080567747419, - 0.3100337811500688, - 0.4834196009865921, - 0.4756743937182533, - 0.3559843805353063, - 0.3565786065559935, - 0.3614636281243347, - 0.3552860479671334, - 0.1187146558567493, - 0.3179443891775496, - 0.5440792043341441, - 0.1242172170755047, - 0.3284279425050618, - 0.4287167747925738, - 0.3773532854383294, - 0.5572890106231356, - 0.4973447297640555, - 0.1390023973321106, - 0.4580956906845926, - 0.4825194356392456, - 0.5604044412574546, - 0.1011430902262021, - 0.1116437612381635, - 0.0699398518743614, - 0.7262358402637549, - 0.3351469965921556, - 0.4257416085296342, - 0.6695770435155828, - 0.2981490036201404, + 0.3160080567747421, + 0.3100337811500698, + 0.4834196009865932, + 0.475674393718253, + 0.3559843805353032, + 0.3565786065559933, + 0.3614636281243343, + 0.3552860479671341, + 0.1187146558567485, + 0.3179443891775497, + 0.5440792043341467, + 0.1242172170755046, + 0.3284279425050608, + 0.4287167747925732, + 0.3773532854383297, + 0.5572890106231345, + 0.4973447297640551, + 0.1390023973321092, + 0.458095690684593, + 0.4825194356392459, + 0.5604044412574559, + 0.1011430902262031, + 0.1116437612381602, + 0.0699398518743613, + 0.7262358402637564, + 0.3351469965921549, + 0.4257416085296344, + 0.669577043515583, + 0.9098503190708164, + 0.2981490036201399, 0.3217013007540023, 0.0313439500583982, - 0.1098725953711864, - 0.0981978985801344, - 0.3147749126279843, - 0.3892226088005482, - 0.8169404078532333, - 0.828844862867961, - 0.8323772911117084, - 0.3562542456636353, - 0.3584753524266403, + 0.1098725953711869, + 0.0981978985801338, + 0.3147749126279844, + 0.3892226088005489, + 0.8169404078532336, + 0.8288448628679583, + 0.8323772911117092, + 0.3562542456636326, + 0.3584753524266398, 0, 0, 0 ], "y": [ + 2, + 12, + 1, + 15, + 16, + 13, + 13, + 15, 13, 17, 34, + 7, 10, + 12, + 16, + 13, + 11, + 15, + 14, + 13, + 9, + 11, + 14, + 16, + 8, 9, 11, 19, 20, 23, 14, + 23, + 19, 12, 12, + 11, 60, 25, 12, @@ -1163,9 +1350,12 @@ 36, 44, 42, + 35, + 39, 36, 26, 43, + 18, 30, 48, 38, @@ -1184,6 +1374,8 @@ 47, 67, 27, + 30, + 38, 17, 19, 19, @@ -1212,13 +1404,24 @@ 28, 15, 14, + 48, + 50, + 58, 34, + 31, + 29, + 26, + 24, + 24, + 30, 53, 58, 87, 53, 17, 39, + 42, + 49, 15, 28, 110, @@ -1227,7 +1430,9 @@ 27, 60, 27, + 11, 14, + 11, 2, 27, 26, @@ -1243,6 +1448,7 @@ 6, 18, 22, + 9, 17, 28, 24, @@ -1282,7 +1488,10 @@ 8, 24, 22, + 9, 27, + 12, + 15, 13, 11, 20, @@ -1422,6 +1631,7 @@ 7, 13, 18, + 14, 15, 16, 23, @@ -1456,6 +1666,7 @@ 34, 60, 49, + 7, 6, 12, 3, @@ -2307,9 +2518,9 @@ } }, "text/html": [ - "