diff --git a/.gitignore b/.gitignore
index b6e4761..eaa7b9e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -127,3 +127,5 @@ dmypy.json
# Pyre type checker
.pyre/
+
+audio/
diff --git a/applications.py b/applications.py
new file mode 100644
index 0000000..f0ead11
--- /dev/null
+++ b/applications.py
@@ -0,0 +1,300 @@
+# Manim Cairo
+from manimlib import *
+# ManimGL
+# from manimlib import *
+import sys
+import os.path
+from manimlib.mobject.svg.drawings import SpeechBubble
+from manimlib.mobject import geometry
+# import six,colour,nncc2gl
+from nn import *
+
+class Application(NeuralNetwork):
+ def construct(self):
+ NeuralNetwork.construct(self)
+ self.play(
+ *[FadeOut(mob)for mob in self.mobjects]
+ # All mobjects in the screen are saved in self.mobjects
+ )
+ NeuralNetwork.arguments['layer_sizes'] = [4,6,6,2]
+ NeuralNetwork.add_neurons(self,False)
+ NeuralNetwork.add_edges(self,False)
+ NeuralNetwork.group1(self)
+ self.grp.scale(0.5)
+ print('...')
+ self.clear()
+ lineoguidance = Line([-3, 0, 0], [3, 0, 0]).rotate(90*DEGREES)
+ self.wait(6)
+ self.v = self.virtual_assistant()
+ self.wait(12.5)
+ grp=self.grp
+ NeuralNetwork.arguments['layer_sizes'] = [4, 6, 6, 2]
+ NeuralNetwork.add_neurons(self, False)
+ NeuralNetwork.add_edges(self, False)
+ NeuralNetwork.group1(self)
+ self.grp.scale(0.5)
+ v_copy = self.v.copy().move_to(lineoguidance.get_end()).scale(0.18)
+ lineoguidance.rotate(60*DEGREES)
+ self.email = self.mail().move_to(lineoguidance.get_end()).scale(0.25)
+ lineoguidance.rotate(60*DEGREES)
+ self.youtube = self.yt_logo().move_to(lineoguidance.get_end()).scale(0.25)
+ lineoguidance.rotate(60*DEGREES)
+ self.tc = self.textclassification().move_to(lineoguidance.get_end()).scale(0.2)
+ lineoguidance.rotate(60*DEGREES)
+ self.stock_prediction = self.stock_prediction().move_to(
+ lineoguidance.get_end()).scale(0.15)
+ lineoguidance.rotate(60*DEGREES)
+ self.credit_card = self.credit_card().move_to(lineoguidance.get_end()).scale(0.25)
+ # self.rotating_applications()
+ # sun = Circle()
+
+
+ self.play(Transform(self.v, v_copy), FadeIn(self.credit_card), FadeIn(
+ self.email), FadeIn(self.tc), FadeIn(self.stock_prediction), FadeIn(self.youtube),ReplacementTransform(grp,self.grp))
+ self.path = ArcBetweenPoints(start=self.email.get_center(),end=self.youtube.get_center(),radius=3,angle=TAU/6)
+ self.path1 = ArcBetweenPoints(start=self.youtube.get_center(),end=self.tc.get_center(),radius=3,angle=TAU/6)
+ self.path2 = ArcBetweenPoints(start=self.tc.get_center(),end=self.stock_prediction.get_center(),radius=3,angle=TAU/6)
+ self.path3 = ArcBetweenPoints(start=self.stock_prediction.get_center(),end=self.credit_card.get_center(),radius=3,angle=TAU/6)
+ self.path4 = ArcBetweenPoints(start=self.credit_card.get_center(),end=self.v.get_center(),radius=3,angle=TAU/6)
+ self.path5 = ArcBetweenPoints(start=self.v.get_center(),end=self.email.get_center(),radius=3,angle=TAU/6)
+ # path5 = ArcBetweenPoints(start=credit_card.get_center(),end=tc.get_center(),radius=3,angle=TAU/6)
+
+ self.rotating_applications()
+ self.wait(12)
+
+ # self.embed()
+
+ def alt_text(self):
+ self.ttc = Text('Text Classification').scale(0.5)
+ self.tem = Text('Spam Filters').scale(0.5)
+ self.tsp = Text('Stock Prediction').scale(0.5)
+ self.cc = Text('Fraud Detection').scale(0.5)
+ self.yt = Text('Video Recommendation').scale(0.5)
+ self.tv = Text('Virtual Assistant').scale(0.5)
+
+ always(self.ttc.next_to, self.cc_copy, RIGHT)
+ always(self.tem.next_to, self.email_copy, RIGHT)
+ always(self.tsp.next_to , self.stock_prediction_copy, RIGHT)
+ always(self.yt.next_to, self.youtube_copy, RIGHT)
+ always(self.cc.next_to, self.cc_copy, RIGHT)
+ # always(self.tv.next_to, self.v, RIGHT)
+
+ def rotating_applications(self):
+
+ self.cc_copy = self.credit_card.copy().move_to(3*UP).scale(2)
+ self.tc_copy = self.tc.copy().move_to(3*UP).scale(2)
+ self.email_copy = self.email.copy().move_to(3*UP).scale(2)
+ self.stock_prediction_copy = self.stock_prediction.copy().move_to(3*UP).scale(2)
+ self.youtube_copy = self.youtube.copy().move_to(3*UP).scale(2)
+ # cc_copy = self.credit_card.copy().move_to(3*UP).scale(2)
+ self.alt_text()
+
+ self.play(MoveAlongPath(self.email, self.path),
+ MoveAlongPath(self.youtube, self.path1),
+ MoveAlongPath(self.tc, self.path2),
+ MoveAlongPath(self.stock_prediction, self.path3),
+ MoveAlongPath(self.credit_card, self.path4),
+ MoveAlongPath(self.v, self.path5),
+ Transform(self.credit_card,self.cc_copy))
+ self.play(FadeIn(self.cc))
+ self.play(ApplyMethod(self.credit_card.scale,0.5),
+ MoveAlongPath(self.email, self.path1),
+ MoveAlongPath(self.youtube, self.path2),
+ MoveAlongPath(self.tc, self.path3),
+ MoveAlongPath(self.stock_prediction, self.path4),
+ MoveAlongPath(self.credit_card, self.path5),
+ MoveAlongPath(self.v,self.path),
+ Transform(self.stock_prediction,self.stock_prediction_copy),
+ ReplacementTransform(self.cc,self.tsp))
+ self.wait()
+ self.play(ApplyMethod(self.stock_prediction.scale,0.5),
+ MoveAlongPath(self.email, self.path2),
+ MoveAlongPath(self.youtube, self.path3),
+ MoveAlongPath(self.tc, self.path4),
+ MoveAlongPath(self.stock_prediction, self.path5),
+ MoveAlongPath(self.credit_card, self.path),
+ MoveAlongPath(self.v, self.path1),
+ Transform(self.tc,self.tc_copy),
+ ReplacementTransform(self.tsp,self.ttc))
+ self.wait()
+ self.play(ApplyMethod(self.tc.scale,0.5),
+ MoveAlongPath(self.email, self.path3),
+ MoveAlongPath(self.youtube, self.path4),
+ MoveAlongPath(self.tc, self.path5),
+ MoveAlongPath(self.stock_prediction, self.path),
+ MoveAlongPath(self.credit_card, self.path1),
+ MoveAlongPath(self.v, self.path2),
+ Transform(self.youtube,self.youtube_copy),
+ ReplacementTransform(self.ttc,self.yt))
+ self.wait()
+ self.play(ApplyMethod(self.youtube.scale,0.5),
+ MoveAlongPath(self.email, self.path4),
+ MoveAlongPath(self.youtube, self.path5),
+ MoveAlongPath(self.tc, self.path),
+ MoveAlongPath(self.stock_prediction, self.path1),
+ MoveAlongPath(self.credit_card, self.path2),
+ MoveAlongPath(self.v, self.path3),
+ Transform(self.email, self.email_copy),
+ ReplacementTransform(self.yt,self.tem))
+ self.wait()
+
+
+ def full_rotate_without_zoom(self,va,v):
+ lineoguidance = Line([-3, 0, 0], [3, 0, 0]).rotate(60*DEGREES)
+ credit_card = self.credit_card().move_to(lineoguidance.get_end()).scale(0.25)
+ lineoguidance.rotate(60*DEGREES)
+ tc = self.textclassification().move_to(lineoguidance.get_end()).scale(0.2)
+ lineoguidance.rotate(120*DEGREES)
+ email = self.mail().move_to(lineoguidance.get_end()).scale(0.25)
+ stock_prediction = self.stock_prediction().move_to(ORIGIN+3*LEFT).scale(0.1)
+ lineoguidance.rotate(60*DEGREES)
+ youtube = self.yt_logo().move_to(lineoguidance.get_end()).scale(0.25)
+ lineoguidance.rotate(60*DEGREES)
+ c = Circle()
+ c1 = Circle()
+ c2 = Circle()
+ c3 = Circle()
+ c4 = Circle()
+ c.move_to(credit_card.get_center())
+ c1.move_to(email.get_center())
+ c2.move_to(tc.get_center())
+ c3.move_to(stock_prediction.get_center())
+ c4.move_to(youtube.get_center())
+ group1 = VGroup(credit_card, c)
+ group2 = VGroup(email, c1)
+ group3 = VGroup(tc, c2)
+ group4 = VGroup(stock_prediction, c3)
+ group5 = VGroup(youtube, c4)
+ path1 = Circle(radius=3).rotate(60*DEGREES)
+ path2 = Circle(radius=3).rotate(120*DEGREES)
+ path3 = Circle(radius=3).rotate(180*DEGREES)
+ path4 = Circle(radius=3).rotate(240*DEGREES)
+ path5 = Circle(radius=3).rotate(300*DEGREES)
+ self.add(group1, group2, group3, group4, group5)
+
+ #path = ArcBetweenPoints(start=tc.get_center(),end=stock_prediction.get_center(),radius=3,angle=TAU/6)
+ # infogroup1 = VGroup(v,infocircle1)
+ self.play(MoveAlongPath(v.infogroup1, v.path), MoveAlongPath(group1, path1), MoveAlongPath(group2, path2), MoveAlongPath(
+ group3, path3), MoveAlongPath(group4, path4), MoveAlongPath(group5, path5), run_time=4, rate_func=linear)
+ # self.remove(v)
+ Arc()
+ # v = self.textclassification()
+ # self.add(v)
+ # credit_card = self.credit_card()
+ # self.play(ShowCreation(credit_card))
+ return None
+
+
+
+ def virtual_assistant(self):
+ r = RoundedRectangle(height=5, width=3).shift(4*RIGHT)
+ self.grp.scale(1.5).next_to(r,LEFT).shift(0.5*LEFT)
+ person = SVGMobject('assets/user(3).svg').to_edge(LEFT)
+ person.set_stroke(width=0.2)
+ bubble = SpeechBubble(height=1.5, width=2.5)
+ bubble.add_content(Text('Hey Google', color=WHITE))
+ # bubble.set_fill(opacity=0)
+ bubble.set_stroke(WHITE, 1)
+ # bubble.pin_to(self)
+ message = Rectangle(height=1, width=2.5).shift(RIGHT)
+ message.move_to(r.get_center()+DOWN)
+ t = Text('Hi, How can I help?').scale(
+ 0.25).move_to(message.get_center())
+ g = Text('G').next_to(r.get_corner(RIGHT+UP), LEFT+DOWN)
+ self.play(ShowCreation(r))
+ self.play(Write(person))
+ VGroup(bubble, bubble.content).next_to(
+ person.get_corner(RIGHT+UP), RIGHT)
+ self.play(ShowCreation(bubble), Write(bubble.content))
+ self.wait(2)
+ self.play(ShowCreation(message), Write(t), Write(g))
+ self.wait(10)
+ self.play(Write(self.grp))
+ self.wait()
+ v = VGroup(r, person, bubble, bubble.content, message, t, g)
+ return v
+
+ def mail(self):
+ return SVGMobject('assets/mail.svg')
+
+ def applications_example(self):
+ example1 = Text('Text Recongition')
+ example2 = Text('Image Recongition')
+ example3 = Text('Speech Recongition')
+ example4 = Text('Text Recongition')
+
+ def credit_card(self):
+ card = RoundedRectangle(height=3, width=5)
+ upper_line = Rectangle(height=0.2, width=5).set_fill(WHITE, 1)
+ upper_line.shift(0.7*UP)
+ line1 = Line(stroke_width=10).set_fill(WHITE, 1)
+ line2 = Line(stroke_width=10).set_fill(WHITE, 1)
+ line3 = Line(stroke_width=10).set_fill(WHITE, 1)
+ line4 = Line(stroke_width=10).set_fill(WHITE, 1)
+ line1.set_length(0.8)
+ line2.set_length(0.8)
+ line3.set_length(0.8)
+ line4.set_length(0.8)
+ line_bottom = Line(stroke_width=10)
+ line1.shift(1.8*LEFT)
+ line2.shift(1.8*RIGHT)
+ line3.shift(0.6*RIGHT)
+ line4.shift(0.6*LEFT)
+ line_bottom.move_to(card.get_center()+0.15*BOTTOM+1.2*LEFT)
+ credit_card = VGroup(card, upper_line, line1,
+ line2, line3, line4, line_bottom)
+ return credit_card
+
+ def yt_logo(self):
+ t = Triangle().set_fill(WHITE, 1)
+ t.rotate(270*DEGREES, about_point=np.array([1, 1, 0]))
+ t.move_to(ORIGIN)
+ r = RoundedRectangle(height=3, width=5)
+ r.set_fill(RED, 1)
+ r.set_stroke(RED,1)
+ t.set_fill(WHITE,1)
+ real_yt_logo = VGroup(r,t)
+ return real_yt_logo
+
+ # self.embed()
+
+ def textclassification(self):
+ box = Rectangle(height=5).shift(LEFT)
+ t = Text('Article').scale(0.6).shift(LEFT)
+ box.surround(t)
+ pointer1 = CurvedArrow(ORIGIN,UP+2*RIGHT,angle=-TAU/4)
+ pointer2 = Arrow(ORIGIN,2*RIGHT)
+ pointer3 = CurvedArrow(ORIGIN,DOWN+2*RIGHT)
+ t1 = Text('Science').scale(0.6).shift(UP+3.5*RIGHT)
+ t2 = Text('Buisness').scale(0.6).shift(3.5*RIGHT)
+ t3 = Text('Entertainment').scale(0.6).shift(DOWN+4*RIGHT)
+ tc = VGroup(box,t,pointer1,pointer2,pointer3,t1,t2,t3)
+ return tc
+
+ def stock_prediction(self):
+ #random values here
+ x = [1, 3, 5, 7, 9, 11]
+ y = [3, 6, 1, 7, 4, 9]
+ axes = Axes((0,12),(0,12))
+ dot_collection = VGroup()
+ for time, dat in zip(x,y):
+ dot = Dot().move_to(axes.coords_to_point(time , dat))
+ dot_collection.add(dot)
+ line_collection = VGroup()
+ for i in range(5):
+ line = Line(dot_collection[i].get_center(),dot_collection[i+1].get_center())
+ line_collection.add(line)
+
+ return VGroup(axes,dot_collection,line_collection)
+
+ def title(self):
+ return
+
+'''
+1. Text classificaon /
+2. Email spam filters /
+3. Speech Recognition /
+4. Recommender System /
+5. Fraud Detection /
+6. Virtual Assistant /
+'''
diff --git a/assets/brain.svg b/assets/brain.svg
new file mode 100644
index 0000000..872572e
--- /dev/null
+++ b/assets/brain.svg
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/assets/cat.png b/assets/cat.png
new file mode 100644
index 0000000..6a759a1
Binary files /dev/null and b/assets/cat.png differ
diff --git a/assets/like.svg b/assets/like.svg
new file mode 100644
index 0000000..21f8b6d
--- /dev/null
+++ b/assets/like.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/assets/liked.svg b/assets/liked.svg
new file mode 100644
index 0000000..21f8b6d
--- /dev/null
+++ b/assets/liked.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/assets/orange2.0.svg b/assets/orange2.0.svg
new file mode 100644
index 0000000..f2499b9
--- /dev/null
+++ b/assets/orange2.0.svg
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/assets/soundwavee.svg b/assets/soundwavee.svg
new file mode 100644
index 0000000..d1dacce
--- /dev/null
+++ b/assets/soundwavee.svg
@@ -0,0 +1,119 @@
+
+
+
diff --git a/assets/svg_images/Bubbles_speech.svg b/assets/svg_images/Bubbles_speech.svg
new file mode 100644
index 0000000..d2b659c
--- /dev/null
+++ b/assets/svg_images/Bubbles_speech.svg
@@ -0,0 +1,11 @@
+
+
+
\ No newline at end of file
diff --git a/assets/svg_images/finger.svg b/assets/svg_images/finger.svg
new file mode 100644
index 0000000..38b05f6
--- /dev/null
+++ b/assets/svg_images/finger.svg
@@ -0,0 +1,79 @@
+
+
+
+
\ No newline at end of file
diff --git a/assets/svg_images/mail.svg b/assets/svg_images/mail.svg
new file mode 100644
index 0000000..1d24d48
--- /dev/null
+++ b/assets/svg_images/mail.svg
@@ -0,0 +1,46 @@
+
+
+
diff --git a/assets/user.svg b/assets/user.svg
new file mode 100644
index 0000000..f7496a3
--- /dev/null
+++ b/assets/user.svg
@@ -0,0 +1,44 @@
+
+
+
diff --git a/assets/vector_images/Bubbles_speech.svg b/assets/vector_images/Bubbles_speech.svg
new file mode 100644
index 0000000..d2b659c
--- /dev/null
+++ b/assets/vector_images/Bubbles_speech.svg
@@ -0,0 +1,11 @@
+
+
+
\ No newline at end of file
diff --git a/bias_update.py b/bias_update.py
new file mode 100644
index 0000000..4aebd93
--- /dev/null
+++ b/bias_update.py
@@ -0,0 +1,96 @@
+from manimlib import *
+from nn import NeuralNetwork
+from applications import Application
+from chooose import Choose
+
+
+class Bias(Choose):
+ def construct(self):
+ axes = Axes((-10, 10), (0, 1.2)).scale(0.5)
+ axes.add_coordinate_labels(
+ x_values=[-10, -5, 0, 5, 10], y_values=[], font_size=15)
+ sigmoid_w0 = axes.get_graph(
+ lambda x: 1.0 / (1.0 + math.exp(-0.5*x)),
+ use_smoothing=False,
+ color=RED,
+ )
+ sigmoid_w1 = axes.get_graph(
+ lambda x: 1.0 / (1.0 + math.exp(-1*x)),
+ use_smoothing=False,
+ color=GREEN,
+ )
+ sigmoid_w2 = axes.get_graph(
+ lambda x: 1.0 / (1.0 + math.exp(-5*x)),
+ use_smoothing=False,
+ color=BLUE,
+ )
+ non_linear_label = Tex(
+ "\\sigma (0.5*x)", color=RED).move_to([4.9, 2, 0])
+ non_linear_label_1 = Tex(
+ "\\sigma (1*x)", color=GREEN).move_to([4.8, 1, 0])
+ non_linear_label_2 = Tex(
+ "\\sigma (5*x)", color=BLUE).move_to([4.8, 0, 0])
+
+ lbl_3 = axes.x_axis.get_number_mobject(3, font_size=15)
+ lbl_negative_3 = axes.x_axis.get_number_mobject(-3, font_size=15)
+ sigma = Tex('\sigma').scale(2)
+ self.wait(3)
+ self.play(Write(sigma))
+ self.play(sigma.animate.shift(1.5*LEFT),run_time=2)
+ self.play(sigma.animate.shift(3*RIGHT),run_time=2)
+ self.wait(2)
+ self.play(FadeOut(sigma))
+ self.play(ShowCreation(axes),run_time=2)
+ self.play(ShowCreation(sigmoid_w1))
+ self.wait()
+ self.play(Write(non_linear_label_1))
+ self.wait()
+ self.play(ReplacementTransform(sigmoid_w1.copy(),
+ sigmoid_w0), Write(non_linear_label),run_time=2)
+ self.wait()
+ self.play(ReplacementTransform(sigmoid_w0.copy(),
+ sigmoid_w2), Write(non_linear_label_2),run_time=2)
+ self.wait()
+ sigmoid_w2_copy = sigmoid_w2.copy()
+ self.play(ReplacementTransform(sigmoid_w1.copy(),sigmoid_w2_copy,run_time=3),ZoomInThenZoomOut(non_linear_label_2))
+ self.wait(5.5)
+ self.play(IndicateThenFadeOut(lbl_3, scale_factor=1.5),
+ FadeOut(sigmoid_w2_copy))
+ self.wait(2.5)
+ self.play(IndicateThenFadeOut(lbl_negative_3, scale_factor=1.5))
+ # self.play(FadeOut(lbl_3))
+ self.wait()
+ self.play(ReplacementTransform(sigmoid_w2, sigmoid_w1.copy()), ReplacementTransform(
+ sigmoid_w0, sigmoid_w1.copy()), FadeOut(VGroup(non_linear_label, non_linear_label_2)))
+ self.wait(2)
+
+ sigmoid_graph_3 = axes.get_graph(
+ lambda x: 1.0 / (1.0 + math.exp(-(-6+1*x))),
+ use_smoothing=False,
+ color=RED,
+ )
+ # v_line = always_redraw(lambda: axes.get_v_line(dot.get_bottom()))
+ dot = Dot().move_to(axes.i2gp(3, sigmoid_graph_3))
+ line = Line(dot, axes.c2p(3, 0))
+ sigmoid_graph2 = axes.get_graph(
+ lambda x: 1.0 / (1.0 + math.exp(-(6+1*x))),
+ use_smoothing=False,
+ color=BLUE,
+ )
+ dot1 = Dot().move_to(axes.i2gp(-3, sigmoid_graph2))
+ line1 = axes.get_v_line(dot1.get_bottom())
+
+ bias_label = Tex("\\sigma (1*x+(-6*1))",
+ color=RED).move_to([4.9, 2, 0])
+ # bias_label_1 = Tex("\\sigma (1*x)", color=GREEN).move_to([4.8,1,0])
+ bias_label_2 = Tex("\\sigma (1*x+(6*1))",
+ color=BLUE).move_to([4.8, 0, 0])
+
+ # line = axes.get_graph(lambda x: 0.5, color=YELLOW)
+ self.play(ReplacementTransform(sigmoid_w1.copy(),
+ sigmoid_graph2), Write(bias_label_2))
+ self.play(GrowFromPoint(dot1, dot1.get_center()), ShowCreation(line1))
+ self.play(ReplacementTransform(sigmoid_w1.copy(),
+ sigmoid_graph_3), Write(bias_label))
+ self.play(ShowCreation(VGroup(dot, line)))
+ # self.embed()
diff --git a/chooose.py b/chooose.py
new file mode 100644
index 0000000..7af6c8d
--- /dev/null
+++ b/chooose.py
@@ -0,0 +1,73 @@
+from numpy import exp
+from manimlib import *
+from nn import *
+from applications import *
+
+
+class Choose(Application):
+
+ def construct(self):
+ NeuralNetwork.arguments['layer_sizes'] = [4, 6, 6, 4]
+ NeuralNetwork.add_neurons(self, False)
+ NeuralNetwork.add_edges(self, False)
+ NeuralNetwork.group1(self)
+ self.grp.scale(1.2).to_edge(RIGHT).shift(LEFT)
+ title = TexText('Activation Function').move_to([0, 2.5, 0])
+ hidden_layer = TexText('Hidden Layer').move_to([-3, 1, 0])
+ output_layer = TexText('Output Layer').move_to([3, 1, 0])
+ b_classification = TexText(
+ 'Binary\\\Classification').move_to([1.5, -1, 0])
+ m_classification = TexText(
+ 'Multiclass\\\Classification').move_to([4.5, -1, 0])
+ ReLU = TexText('ReLU\\\Activation').move_to([-3, -1, 0])
+ r = Rectangle().surround(ReLU)
+ sigmoid = TexText('Sigmoid/Tanh\\\Activation').move_to([1.5, -3, 0])
+ softmax = TexText('Softmax\\\Activation').move_to([4.5, -3, 0])
+ line = Arrow(title, hidden_layer)
+ line1 = Arrow(title, output_layer)
+ line2 = Arrow(output_layer, b_classification)
+ line3 = Arrow(output_layer, m_classification)
+ arrow = Arrow(hidden_layer, ReLU)
+ arrow1 = Arrow(b_classification, sigmoid)
+ arrow2 = Arrow(m_classification, softmax)
+ self.wait(2)
+ self.play(Write(title))
+ self.wait(2)
+ self.play(ShowCreation(line), ShowCreation(line1))
+ self.wait(9)
+ self.play(Write(ReLU))
+ self.wait()
+ self.play(ShowCreation(arrow))
+ self.play(Write(hidden_layer))
+ self.play(Write(b_classification))
+ self.wait()
+ self.play(ShowCreation(arrow1))
+ self.play(Write(sigmoid))
+ self.wait()
+ self.play(Write(output_layer))
+ self.play(ShowCreation(line2))
+ self.play(ShowCreation(line3))
+ self.wait()
+ self.play(Write(softmax))
+ self.wait()
+ self.play(Write(m_classification))
+ self.play(ShowCreation(arrow2))
+ self.wait()
+
+ def label(self, l, group, layer=0, edges=False, bias=False):
+ if bias is True:
+ for x in range(len(NeuralNetwork.arguments['layer_sizes'])-1):
+ label = Tex(f"{l}_"+"{"+f"{x}"+"}").scale(0.8)
+ label.move_to(self.bias_layer[x])
+ group.add(label)
+ else:
+ for x in range(NeuralNetwork.arguments['layer_sizes'][layer]):
+ label = Tex(f"{l}_"+"{"+f"{x}"+"}").scale(0.8)
+
+ label.move_to(self.grp.edges[layer][x]).shift(
+ 0.4*UP) if edges is True else label.move_to(self.grp.layers[layer][0][x])
+ group.add(label)
+
+ return group
+
+#TODO softmax function
diff --git a/data/activation1.csv b/data/activation1.csv
new file mode 100644
index 0000000..be67031
--- /dev/null
+++ b/data/activation1.csv
@@ -0,0 +1,13 @@
+,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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417
+0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.9598934846216,0.0,0.7049349316322352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.032293252457233,61.38399009237403,0.0,9.673580439648724,0.0,0.0,0.0,0.0,0.24799946335691442,0.0,0.0,5.101908463353964,0.0,0.0,0.0,0.0,7.3545676167726315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21499462166035327,0.0,8.914898419094174,0.0,0.0,68.74905182893025,0.0,5.139386502901717,0.0,0.0,0.0,66.29127230517791,0.0,0.0,0.0,0.0,73.80681477351102,0.0,0.0,0.0,0.0,58.12777988427779,0.0,0.0,0.0,0.0,50.98549344141331,52.07640893398669,0.0,0.0,0.0,0.0,2.047724579117297,43.05491936588213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.186336925395868,0.0,0.0,5.177330694299971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.336020594856805,0.0,0.0,5.072062275177815,8.828386718083195,0.0,0.6534818304476776,0.0,3.098678847108251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32087832805149413,8.977348766511634,34.179708156071385,56.81855801817896,0.0,0.0,0.0,4.647501063840172,0.0,0.0,0.0,15.832319025191573,0.0,0.0,0.0,3.811130333228577,0.0,57.2716670959772,0.0,0.0,0.0,0.0,1.6827989296483645,0.0,0.0,0.0,0.0,0.0,3.963071656095489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.720255347548098,4.202573829347898,0.0,0.0,0.8703673969653462,0.0,10.37378688235088,8.800487583049735,0.0,64.47198344413614,0.0,0.0,0.0,6.971573564859072,0.0,0.0,0.0,0.7412922375963314,0.0,7.451182369149014,0.0,38.02911559785724,0.0,0.0,0.0,0.0,5.31488379374742,51.192892004381584,4.742252687488604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.79582223729619,0.0,0.0,0.0,0.0,29.173778403875566,44.98343428020263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.272397940248732,0.055856457724293304,0.0,0.0,5.986154431675458,0.0,0.0,0.0,0.0,13.347697830186915,0.0,0.0,23.268840849392188,0.0,0.0,0.20461971519479766,0.0,0.0,0.0,0.0,7.864967718616286,0.0,30.53955010202584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.680811738078613,0.0,0.0,0.0,0.0,0.0,0.0,5.179130223393873,0.0,30.725874382593712,0.0,0.0,0.3631448938614154,0.0,0.0,0.0,0.0,0.0,4.440925804333903,0.0,0.7743462618094469,5.78906978743336,0.0,0.0,15.773569204053723,0.0,0.0,0.8703607376774972,0.0,0.0,5.064928500202506,0.0,0.0,11.16511189783898,0.0,2.7871756403882557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.924912054202544,3.576901405537193,7.920996429406379,0.0,0.0,0.0,0.0,0.0,20.318240636916546,0.0,22.592424059454,0.0,0.0,0.9778507622947791,0.0,0.0,0.0,0.0,50.406119784269094,0.0,6.7586834576015065,6.3983803398505295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9394226522413694,0.0,0.0,0.0,10.847395867996982,135.25471951645213,0.0,0.0,0.0,0.0,0.0,0.0,1.7050859533463343,0.0,16.430896587827256,1.9718257896594098,6.568542308488231,0.0,0.0,0.0,0.0,0.0,12.90599771521815,1.362613642647276,0.0,0.0,6.036924290634978,10.66879449909593,0.0,5.017492306081,0.4858358368896795,0.0,0.0,28.727372992232883,0.0,0.0,4.521401481832524,63.00694145995752,0.0,0.0,0.0,6.7305355289800355,0.0,0.0,0.0,0.0,0.0,10.916365657481665,0.0,0.0,0.0,3.717290140599919,20.126791631588908,0.0,2.493214319200444,0.0,0.0,10.925850947006714,0.0,4.961753252834917,0.0,0.0,39.376343989812376,0.0,8.879125774675124,8.024046964981649,0.0,0.0,0.0,45.162035649103686,0.0,3.4412417241277526,0.0,14.163356673241905,0.0,0.0,17.922561692525097,0.0,0.0,0.0
+1,6.2075719486823395,4.73267785660536,6.779607809440504,5.620330301065446,6.641506860928451,5.645795868096394,5.626220199034949,13.794298010578435,3.5893804638208704,12.205374482803467,5.3374917774811665,12.169460671000609,36.16046023101811,13.103142457605008,27.245592016469278,11.95172167040131,7.493269988073047,4.0546686295804415,4.798218505060457,4.051260012258063,26.18675788095446,2.8826569928891486,13.99696026572742,26.55838470498322,115.40962187950122,8.516440321080918,26.425270349304682,4.080431788133407,14.073553671743934,10.445084877439633,12.87986175014597,14.785127492737233,10.49529846780264,11.719823857224588,25.027716166567743,4.0135873375083575,4.990062268691522,5.101658512683752,5.956334987235469,26.829169893415838,7.101892857122054,12.142554085071584,5.501486273296483,6.452289664560797,23.398988901735088,5.259845418663512,12.961558835034015,6.099940856709877,33.40714779466943,8.559825496651213,26.746572743892337,6.888615365684601,10.54197399013306,116.00870468679716,7.186229037470194,14.882674097473075,5.418687113523093,5.138236128912854,8.885158358058622,115.28387524858134,5.109529210887504,7.123367496347902,5.06222961557501,5.531180941145603,115.14374202993133,9.99469631644187,5.530668830384549,19.438971935166137,12.2070270545937,116.71903601093479,5.576587209193557,5.178230967028746,4.912928020634923,11.802930977225921,92.76898120567408,93.14166176225564,5.405681422861354,11.61503851341289,6.867908818730628,5.576587209193557,7.263601283754526,99.02640247124644,12.22098698810654,5.3374917774811665,6.6860893029996395,7.330435811494344,5.685247781702344,4.779275141133171,5.684321702540045,10.728793879171146,7.354579514466407,5.284072133110695,22.844755114081988,5.405681422861354,10.981852337682573,5.202711163260657,35.55984046246746,5.328547174804754,4.727040204901322,5.452525880832661,23.81461145246987,12.484826652333828,6.099940856709877,5.210688517834828,4.044023532079036,11.76771948253171,5.9719889106732635,6.099940856709877,5.698649257260669,6.670391269824557,7.134599207167615,5.6972343980335705,13.266593843271862,5.275740274402503,98.54208156093537,7.119648683935993,3.865684655746883,8.232098972186142,32.94623003294383,12.103558376234618,7.359224659431797,6.019582219206032,24.697974207574465,5.0128762063814625,6.099940856709877,8.321935274798973,5.151184846154726,12.377946213478596,7.074014087154355,5.297946929514866,5.4353504417973495,12.568303628404532,12.691998693419903,3.785326018243038,5.556090625805578,5.211361115212395,4.149133544274649,6.799207062589386,4.865152336309723,22.672471341350924,21.420154466106396,67.0507292755363,116.04852174113009,12.582360728872985,12.343977494360686,9.577144301228897,23.336136437120892,5.263596051444244,12.142554085071584,12.53635296943976,35.80817418309703,4.510567663904652,18.119913383368118,6.916242779501121,15.107789093951094,5.076839129968212,98.03847527123865,4.778566522007254,12.343977494360686,7.448362958224832,5.676936702035188,7.280776722789837,6.604695707966207,4.941355043813383,7.056838648119045,11.01628301324076,22.20931230776452,16.675502666426592,11.41775684074368,5.251498631447054,5.184573623314701,4.157721263792305,7.78737410767155,4.215786745549054,15.812601860416015,17.692263655457094,16.783155752673707,24.41916043602812,18.052947875198615,36.51236718354476,6.867908818730628,36.383890846257366,23.17661332176683,6.099940856709877,108.48017870770792,8.366310006363651,9.83543550598945,5.017001581260001,31.543452512899076,7.039663209083733,12.605054725581002,11.899335505570265,7.855185918221462,7.939831402991121,15.113253342273262,5.36594006653019,58.63591149763537,4.657665851382512,5.642141747750189,5.017700743634855,9.111492595513166,7.699473341791558,100.39685196623402,11.742874156493096,5.676492625820811,10.958187102747951,5.765517038581973,5.6593171867855006,11.464601298714987,5.246932723169988,11.836421238672953,4.963465823768048,33.3986718564166,12.635996986329245,4.679740082073341,19.397316299898918,5.741455957942901,73.68705279749557,92.9462541536999,5.405681422861354,5.924560562182221,5.246420612408934,5.209347154545047,5.134009407119415,11.686500789670538,7.345233163070618,5.168360285190037,5.684321702540045,8.698961647205296,6.9709614529424915,29.58831294701757,11.567674120449333,4.478770490794273,6.157075112112732,31.166931485094974,5.142659359071153,33.35045407790116,4.037493190545131,6.165825758633225,46.44609920090017,11.842460957491818,14.227586434676656,59.22539498250863,5.333821388008691,12.13544301139442,23.440025769870836,9.85261094502476,15.616859631969975,12.103558376234618,6.914816657324512,12.395149346536384,5.17396822348696,59.92413487332651,5.86177181835883,6.085150780000299,5.184573623314701,6.099940856709877,5.3666486856561075,6.2633598351723805,5.1248113226582745,9.566997131474812,5.1598347981064645,10.857270216458545,6.234743775761407,5.924903110392121,5.3374917774811665,0.40172992914431177,5.184573623314701,4.990062268691522,5.448575910712341,33.11798442329694,6.099940856709877,59.49134028012137,9.031133958009322,4.213929440032862,11.948979424916823,5.7280189429267425,12.708107359792866,10.32527497397323,5.624966308714879,5.136009390754373,7.3499436392492274,5.684321702540045,6.899508446690626,9.80255670303669,5.150279718663947,5.051908943586709,36.593254824223244,4.215786745549054,5.405681422861354,17.91346765323923,5.325867364130776,4.215786745549054,36.91074170557755,6.145264816623885,5.264108162205299,17.68508723106384,10.445084877439633,20.51785782875511,5.297238310388948,5.31374115204669,6.950351236913824,10.628914318936113,5.568803983959515,5.684321702540045,12.22585936146384,67.33446347509636,5.474872285888018,42.09323392361271,7.841728121569686,5.465751349747652,4.071844068615752,5.1956290132920335,5.799867916652594,59.563051794648196,5.448974135441525,64.74728552451316,5.573439991608947,5.262887432318327,14.750776614666613,5.210688517834828,4.125227691237876,6.799207062589386,12.189398543042891,93.5927470405392,4.838555891386249,17.48002006334347,34.86840642918798,12.51917753040445,6.713329867412833,17.264068045662405,12.858506200822152,4.213929440032862,7.290557552634103,5.2812836012406095,11.894653646435641,6.9022596968012495,4.365683837732223,14.963020206780236,4.215786745549054,5.556264552573637,5.227155337744221,32.52158212959582,226.1953812062462,8.177613399509331,4.568038023425228,6.799207062589386,3.932889244527081,6.9859639840654175,10.007189896342554,27.430164979826404,5.676492625820811,33.41584729545191,30.109094675749592,9.931428804273395,12.238162427141852,23.083704641700287,5.330150998536217,6.099940856709877,8.221638765252846,31.688170502886965,16.056985963024104,10.007189896342554,5.620330301065446,23.50545354983428,32.10596297542599,7.332248895450626,18.83857291358888,25.67974297393537,6.403362914820588,5.969647831269029,58.649678319348304,0.7233814116805867,7.108364965224975,36.512297990443024,115.43845419989913,4.958116676711372,6.0500064687728745,22.93721400055775,14.97038558166861,6.099940856709877,6.083691496836865,7.842352882843345,8.27592751536575,6.817313727978591,29.264089545696997,5.176337639764206,7.331645672684013,5.940680046257457,10.50757129255805,41.623978511986614,17.765407739857633,10.504047409064782,6.054352284597642,11.322711209508832,26.22790095551064,5.771098563816736,34.406779515584915,5.141986761693585,6.105049436105705,72.88805542687619,10.462678486255715,25.28470787612323,21.00212207984536,11.971616205734078,6.250641269018985,5.561783110246345,93.36187330786973,5.671409007046521,6.972969222908843,5.684321702540045,40.64762638355723,4.829420241735617,5.405681422861354,47.46636249484216,5.193218316252223,5.405681422861354,10.825752128287743
+2,12.847248770880697,16.858122365664364,23.779486147747896,9.466520531111257,6.593088144021117,4.265947756798138,10.865129149639937,7.462618257937926,5.425348104768724,5.205409763688111,10.814928813345478,16.172383446789254,2.843508484969471,22.35204501545664,13.703005389823197,6.193076213275639,12.884526199726318,6.824289228344121,8.853500015423942,16.153486635703683,16.851247151675135,2.659235112482622,9.36008567427849,3.67047755494263,1.1255738911051414,17.786137981170164,3.823461855987326,7.4202822816913425,13.90334277320105,8.696261632933883,17.186771886447367,6.058462714345945,10.44362242775737,9.1795238862862,7.021575222112699,5.8307039020804785,10.598560557716835,6.87585687152635,8.619305876973673,7.7650394590928595,13.58764619948352,9.888916976898061,15.080110738902016,10.301931247089252,13.44934564266766,8.718144883824452,15.194392228071038,11.172547775451873,18.023772676941256,12.381598635422385,4.844873721552044,8.84056770357595,4.795873321593289,0.0,10.106603871275356,0.0,12.693264349948826,8.735402488195223,9.847464031119182,0.0,5.541347709782143,11.27190263525592,5.947826080076384,7.680487609974552,0.0,9.908199821766342,6.081495991615994,15.540531379272945,9.704742997124908,6.202765783811178,8.473576141312902,7.130662518708073,10.100768246554368,8.762673188781141,0.0,0.0,10.805252003912848,18.65525514483705,10.508622693285265,8.473576141312902,0.0,11.777566357433663,17.364369553483705,10.814928813345478,11.109215423470223,9.602276792615235,9.657454311699336,5.722308156384984,10.96585632925586,0.0,6.491895827483414,10.82250960828362,6.332207781927452,10.805252003912848,7.4800114058844915,8.726252820132466,24.116344455432994,10.307459692750381,6.529252975159938,11.888930136053231,12.125014098267961,8.048211735123273,11.172547775451873,9.124886824803626,4.097282907720599,8.993909085743422,7.483838432125557,11.172547775451873,10.763676866110536,5.939342617623218,14.402385098254397,10.96402388544631,11.28753791426212,6.317556002530071,9.981560102311722,4.726024391283385,10.557975026406915,0.0,8.760467940815547,8.636177693390225,2.9774385632148594,10.719936948784412,8.8015272870741,9.952490564883519,11.172547775451873,4.819802308027295,7.534266713438018,9.0879333386593,15.276567120063053,8.31297181596989,11.49160143382175,18.448327755904444,9.505576855737173,10.105364199739453,15.871893967800684,8.32525923028188,9.009597090617273,8.919307884359336,7.7089516675423955,11.779591389353593,0.0,2.921538039764709,6.4975384663104245,8.898151264022218,14.548553429121785,9.112028747990898,8.300432938224823,7.518314411506927,9.888916976898061,9.24019784181772,2.8916977264770067,10.466459519301841,21.084865052491935,12.61483986511273,0.6673697229251297,8.344349278462202,0.0,7.721239081854385,14.548553429121785,8.541665828699884,10.966904336503102,0.30573186811925124,8.681238975671013,10.871144675146702,14.879238417831573,7.571326870909292,15.081339465770286,3.3717545490259067,9.260282770486416,7.254359096262445,10.83662946640516,9.208261441733013,7.09591597591091,10.50829195229659,12.753077163177537,2.7103726640168504,4.838214756389662,16.70232126901028,11.05427541087798,19.18217451796778,10.508622693285265,8.208380177246312,2.6872190443610267,11.172547775451873,0.0,14.293644940646224,6.223933527128937,4.626449247014593,3.118246057822908,14.48190971560009,10.82951265074365,9.923432185639603,2.4889829452580896,23.21507245774486,0.5436702069925284,11.90121755036522,0.0,5.739565760755755,7.884209090126443,10.594638374905298,10.47950566062504,0.0,3.121945770783741,0.2922749465290957,8.678866494589409,9.591172488719494,12.844191865859209,8.281537792357925,10.3439609026268,8.719977327634004,10.58322389466935,10.86800692889747,1.5466766027063772,20.953367462566177,11.875696498715557,13.547612375617069,10.957748392947847,11.375819003306127,5.112888104160738,10.805252003912848,9.446988574263852,7.120985709275445,7.280188941698947,7.136938011206535,18.307792551627216,9.798519374468858,7.9315954156695,10.96585632925586,14.426473181647768,12.892594906674159,0.8881073583812152,5.997959236064644,6.765908587019083,11.16443983914386,9.74825231590166,6.735944421355951,19.43253991075222,6.426960526112638,5.081375993644002,10.912204442456908,19.08519235171941,15.195028055822918,8.165065263015215,10.81544967922285,9.386215332482212,12.110129861549606,6.621262229360418,13.600235256195466,8.636177693390225,9.395585346419223,0.0,6.73150137266704,0.8701175978235808,8.232959286614498,11.59927114370979,10.83662946640516,11.172547775451873,9.90228662489582,5.931315522542946,7.138243313646216,12.240211218589746,7.133273123587434,9.277053295011553,0.0,10.176626567050091,10.814928813345478,11.55506023523977,10.83662946640516,10.598560557716835,5.493233508796434,12.733754963130371,11.172547775451873,0.26609744939608626,10.026894833957579,10.508555522981524,5.060219373306885,9.870852601283856,13.213484864132544,9.553972466740829,7.486880387894962,7.670514275989316,0.0,10.96585632925586,0.8936978263862029,0.0,13.131120182735376,10.855455943900546,3.4475286333969657,10.50829195229659,10.805252003912848,9.069965205848748,10.907752294689493,10.50829195229659,14.995690109473678,12.989921601519978,9.117306029865485,0.0,8.696261632933883,8.591403173885416,10.311902741439292,11.50885903819252,10.140077348262153,15.171856422417562,8.27453442441681,10.96585632925586,22.63048260535092,1.4836325525988132,0.0,15.05977350374317,15.617384127933216,5.890562211027917,7.221617930575603,10.835060593280545,13.638849270322174,12.313151509316414,5.693323232939768,12.178645287537861,6.294894281200514,9.517245336976327,5.263805309882982,9.124886824803626,8.413340466585115,8.919307884359336,10.972595109038444,1.553550175635529,7.97839803872303,0.6131649039874811,12.485352143563743,8.842869139586238,6.9326643732019235,15.963418418871168,12.810420014682144,10.508555522981524,4.835864681401153,9.514634732096967,9.81512421108554,11.30328009774823,13.975942297825869,7.361013069912351,10.50829195229659,5.897565578969032,11.52114645250451,6.493213290691148,0.0,9.947871911094577,4.952752721915868,8.919307884359336,13.371922149398372,8.09327301740406,10.197220549443761,12.875476690265131,8.678866494589409,1.9440053049378598,14.342001109815639,0.0,17.76169825571519,18.626798191599413,10.815970545100223,11.172547775451873,9.566979819110648,0.0,5.610497142673402,10.197220549443761,9.466520531111257,4.973097458101277,6.286521844495136,9.602019497422798,5.326214026109941,13.12387950983176,9.708962144895844,6.574185934011395,2.8483828122459083,18.99599760308387,16.071224524526016,15.186327365509147,0.386198611078154,6.36796392042291,7.026796760678857,18.242223567241673,0.0,11.172547775451873,9.466817055663867,10.193791291566026,5.1618488858228,10.624775033462406,4.202092107832564,8.330229420340661,21.236497653535288,7.488281480814468,0.0,2.7978658590031937,17.111419516956722,3.176746006611199,17.420097943682023,8.06478277046483,2.2542100619671364,8.711645050001225,12.620707275163236,7.535572015877698,11.462616510376535,0.8938634235275492,12.732602084592688,3.9853193585076627,3.32572216490075,14.071328544470177,6.132740254127569,7.431598263458982,5.319579550356752,10.967688773065412,0.0,10.96585632925586,8.269276948870287,9.712852783070577,10.805252003912848,7.633538509704085,14.124441938314083,10.805252003912848,9.106255590044286
+3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.434053974599793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.835145845957213,55.50631805150753,0.0,8.728476453955997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.313046924060913,0.0,0.0,0.0,0.0,3.189232455465502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.412817602245461,0.0,0.0,65.31346391277656,0.0,6.04239532218176,0.0,0.0,0.0,60.30687463267963,0.0,0.0,0.0,0.0,71.29419249358133,0.0,0.0,0.0,0.0,50.19078910126457,0.0,0.0,0.0,0.0,46.08485651318887,47.02670602149549,0.0,0.0,0.0,0.0,2.711267076490281,35.057504841083386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4879304580339765,0.0,0.0,3.944409379334527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.98538072259936,0.0,0.0,5.302062056896049,6.208240082320588,0.0,0.0,0.0,2.267456881207138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.022623115191369,29.490964861270296,49.60497624562181,0.0,0.0,0.0,1.800652994661611,0.0,0.0,0.0,14.391354420315963,0.0,0.0,0.0,5.567734581356686,0.0,51.498854007786385,0.0,0.0,0.0,0.0,2.2697708626714204,0.0,0.0,0.0,0.0,0.0,3.2265336917649914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.024593935364853,2.1686036328563643,0.0,0.0,0.0,0.0,8.545914385265615,8.234924262262318,0.0,60.49636705060094,0.0,0.0,0.0,11.092871463311132,0.0,0.0,0.0,0.0,0.0,6.079705287104258,0.0,36.53292858863208,0.0,0.0,0.0,0.0,4.275654959547656,45.74123577931505,4.865523179246922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.92351872717077,0.0,0.0,0.0,0.0,23.06878620296764,39.95981129056018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.79808359795154,0.0,0.0,0.0,4.240234336830808,0.0,0.0,0.0,0.0,10.557422517755484,0.0,0.0,19.81197423435075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.495712443517707,0.0,28.41583152522251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0002302104241165,0.0,0.0,0.0,0.0,0.0,0.0,1.793277944131985,0.0,29.0192187652819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.407483080671796,0.0,1.5486694612742278,5.872960813018222,0.0,0.0,13.830666734540404,0.0,0.0,0.0,0.0,0.0,0.9095649022706301,0.0,0.0,12.64404809154675,0.0,0.0871606082311061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.150960461140574,2.5993639065308325,3.3820168935830934,0.0,0.0,0.0,0.0,0.0,15.388152032961026,0.0,17.978730687646753,0.0,0.0,0.6053279369868014,0.0,0.0,0.0,0.0,44.07431904180183,0.0,7.343878546129883,2.9341642101868173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.449194544491037,122.63733865340062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.48202251335191,0.0,6.78538092746791,0.0,0.0,0.0,0.0,0.0,17.89451936376477,1.1709997324374508,0.0,0.0,6.017106191177982,7.611085570731563,0.0,2.1588462500940104,0.0,0.0,0.0,25.657414269401098,0.0,0.0,0.6299597146922967,56.33340870830988,0.0,0.0,0.0,9.09970429190757,0.0,0.0,0.0,0.0,0.0,9.042410470657689,0.0,0.0,0.0,5.188476106952805,17.0124977511324,0.0,0.36802193733957456,0.0,0.0,10.22368591139915,0.0,2.7104607934438496,0.0,0.0,34.65367701766318,0.0,7.985083114035168,6.287773509415268,0.0,0.0,0.0,39.79792026431966,0.0,3.5760076258198876,0.0,10.2843317895538,0.0,0.0,14.746850614226606,0.0,0.0,0.0
+4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6032095694027516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41345132755266556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+6,18.183661859768677,25.567259731337778,34.549258006755785,13.357146132105274,10.439680417153543,5.69237076676665,15.602047066033794,11.639195228231413,7.896315294818351,9.035046555279148,15.344271614226104,23.750995465240127,5.440799674628017,33.583268148446585,21.439370298586006,10.263432925281155,18.492392693233473,9.618335012876615,13.769803151006794,23.70817714533826,25.89500958527547,3.3223080611483646,14.052258238972726,5.492362621854688,3.123650434794546,26.597651346073416,6.057871422619167,10.49675027707413,20.40819997956698,14.335254345461854,25.970335858734803,10.547048287626957,16.117571040366435,14.255396481678927,11.406828203822332,8.153922477582748,15.365257604395705,9.878682980616663,12.108737200575286,10.865029880066592,19.58865725638678,14.490173329431801,21.630573040520844,15.18199424144497,21.062690010969618,12.253897812330456,22.46673513594465,15.715347261802464,26.99193985800641,17.99578804952637,8.043432766898778,12.84492783973539,9.023211964540705,0.0,14.711076928846797,3.1114235002169215,18.112690805306418,12.279243315970247,14.897614764568276,0.0,7.57170763493626,16.27193395451635,8.170755536270413,10.908336205166965,0.0,14.60430218877455,8.551683585508425,22.825091969762422,14.375335026396677,10.451007053385377,12.077252420735789,9.914148339462962,14.631536422158598,12.986581123604282,0.0,0.0,15.330059699094264,29.70330875828406,15.14679633614353,12.077252420735789,0.40442866803470445,18.314214695315176,25.507825993635155,15.344271614226104,15.875281550609326,14.691662769068463,13.822175170693503,8.178303801237536,15.750545167103905,0.0,10.291063600356585,15.355405202734055,10.572784942843723,15.330059699094264,11.095543844101064,12.26580559076777,36.793040763374364,14.596338516857157,9.36757015209242,16.92725853791123,19.267703948114573,12.501301807706268,15.715347261802464,12.85333280862929,6.915918983898431,12.665112511122008,10.278698671920424,15.715347261802464,15.269000076689311,8.41227931062926,21.04231823723158,15.747853935444699,17.049027562228734,8.899410075824994,16.00697189608991,7.504708965910297,15.121038593517342,0.0,12.998871466714874,13.707720065271058,4.387556034676896,16.02483434291401,14.370076989782152,14.072940031477698,15.715347261802464,6.8507616094683295,10.508975062372743,14.94095457872057,22.174118449723633,11.656766952726148,16.34164836177955,27.262215106335322,13.760039301693318,15.430525674628885,22.79757221435982,11.67481295131768,12.839190981600831,12.804355631616826,11.106354681895914,17.75538842865032,1.4602293744476877,4.601886600917718,10.701384819204888,12.777424902726397,21.35786375343384,15.76745302456097,12.157234926223722,10.485546600462797,14.490173329431801,14.258132336101294,4.691499940068996,14.986633691852223,30.489873904337923,18.33833944362824,4.302091735383418,11.702849686616679,0.0,11.124400680487446,21.35786375343384,12.335537907244372,15.75208433041585,0.9900388441663799,12.793470803027736,15.426833440264376,21.588508273591955,11.884659879162175,22.306911029458306,6.335824118822788,14.059825982681296,10.436643516414021,15.376142432984794,13.131996069666668,10.84147587118682,15.048071192675078,19.185105247604014,4.001539437162279,7.136962620328041,25.67421798026156,16.29935313592746,28.701517161467688,15.14679633614353,13.164331581722557,5.20091134309948,15.715347261802464,0.0,20.7264016941171,9.17417891401141,8.176469882027511,12.17297798475289,21.00289809746028,16.600573040627996,14.540864336711383,4.0516595650039156,33.71825727265704,0.46614583951600025,16.945304536502757,0.0,8.203649304877327,11.277938772674448,15.359497262659389,15.036262791800691,0.0,5.7148089055313696,1.4099063665058766,12.449159124937799,14.20703275466535,18.518964358184217,11.863548948806123,15.657024821498261,12.256589043989663,15.00755321564871,15.422225166875323,1.957853245677622,31.861635525353,21.15380115195702,19.887824542325934,15.738637388666593,17.70348011908799,8.98378896041932,15.330059699094264,15.05473777918615,9.899936424331122,10.727526501844213,9.923364886241067,27.394573847771557,14.344415408962874,11.094585238504418,15.750545167103905,20.66956831104232,18.66045739293358,0.9844291934216057,9.0952479599701,10.352667075467991,15.703439483365152,15.430016863885996,9.332372246790978,29.704678506130747,9.03272483674494,8.46415920897641,17.496855135250836,28.540448696395117,22.399333931142078,13.117281193601118,15.345036587608686,14.220198576377486,18.748802255205632,9.759789090143085,20.68637890910451,13.707720065271058,14.726860674369904,0.0,9.325846931672078,2.3662344890643685,11.539255981305297,16.50081352156285,15.376142432984794,15.715347261802464,13.99920765725285,8.740282303996539,9.925281927970913,18.42463411173072,9.917982422922654,13.674729387502692,0.0,14.813351849062176,15.344271614226104,16.93716649901894,15.376142432984794,15.365257604395705,7.501044370788522,18.854973228031625,15.715347261802464,1.8158222182341326,15.345749872912236,15.048458287639757,8.437228480085981,14.205989653332825,20.11423409741805,14.718959675006595,10.692328596542772,11.049903332880014,0.0,15.750545167103905,2.196457101731172,0.0,18.7578214405311,15.403792073319112,5.991211945458253,15.048071192675078,15.330059699094264,13.287413974888969,15.66464585175069,15.048071192675078,23.011547430318622,18.550449138023716,12.842199220121339,0.0,14.335254345461854,12.584006025402653,14.602863831976057,16.366993865419342,14.760237989361215,22.022404883606825,11.600315603710248,15.750545167103905,34.585972614743696,3.1193452483327926,0.0,23.10980505631521,23.740899584446318,8.086654546920196,10.20394518900829,15.373838296290268,19.690184710447568,18.59464265447149,7.9795203511260056,19.036700652078654,8.935498068147746,13.431643479712706,9.375827935363606,12.85333280862929,11.960388622438638,12.804355631616826,16.087372168248763,2.6052047527476505,11.163322244375532,2.863683070990345,18.490154656913855,13.672522159969617,9.876304750958449,23.534047552014954,18.953074079154597,15.048458287639757,8.0068540075753,13.427809396253014,14.38123264713332,16.31801668840688,20.158931088282092,10.513684301535541,15.048071192675078,8.34988789201607,16.385039864010874,9.971370511670624,0.0,15.045079513017972,7.0439496360866105,12.804355631616826,19.608518817451856,11.587052545462944,15.030280675328164,19.39980007703084,12.449159124937799,2.5434634218092973,21.790272439141788,0.0,26.09343616976683,29.669797435789253,15.34580156099127,15.715347261802464,14.823871987571238,2.9011906598324164,9.407824021682464,15.030280675328164,13.357146132105274,8.726720777744418,10.006568416972065,14.69128489065056,7.604859518840956,19.76461864814861,14.124442616641486,10.324040033741584,4.644449551947558,27.90412815594271,23.345338801986983,23.632355511751737,1.0573328252879766,11.083267318971432,10.014552952630037,26.809515823679767,0.0,15.715347261802464,13.201367089260387,14.770790337207869,8.331469042843226,15.317948709194221,7.185215941151347,11.682112456365939,30.958271091698766,10.285223987039322,0.8437898078423242,4.060792338990051,25.479226982933742,4.090636308348788,25.332582999834656,14.225266664478854,4.564969615410167,12.088137249324879,20.006059995590192,10.510892104102588,16.14286491166802,1.6177161877226487,19.403841084059994,6.295584597120076,4.823608987241178,21.787415758625116,8.853563936491728,11.587425853785994,8.948591055117879,15.753236398763113,0.0,15.750545167103905,13.284236850854084,14.059751066194082,15.330059699094264,11.688766936196094,20.221846880860287,15.330059699094264,13.963177695180189
+7,0.1629102300314142,1.8842340858226603,1.1660561591218581,0.9086562749962003,1.9944761492862015,0.7561739430449637,1.2218166057615791,2.899903872383298,2.5626922085180697,1.6349659004356711,0.8870735665897934,3.649964151445173,9.5000786344207,3.199676342278573,7.8577920842893905,4.679886153336562,0.9927099933805698,1.460375441884988,1.6553650400378102,2.9910603912802274,7.449904123905491,0.09596674935490278,5.094984617221703,7.431938007949794,27.960550733787493,1.5018271187336505,8.654934046212063,1.4841960589190182,4.002266220081282,2.3300912241156366,2.99323099465031,2.775883872536553,2.964215771843944,3.196714353863241,6.894602327352375,1.4210773373453258,2.0514217048048096,1.9629288837108332,0.9572403867366213,5.549478121084863,2.3402189425910294,3.4529702543711647,1.0530354557803345,2.910127395544207,6.999001278380002,0.8061439428409477,4.773947584964235,0.08817923339344318,10.631448632189612,2.8954591890955412,6.230264802391495,2.6929013148713192,3.0464761781770515,26.253804688710165,2.7972419031363165,0.4884575454648628,0.9621467762984492,0.7797620240655128,1.3420425388326769,28.102080599881184,0.6762993718900853,1.840300266451739,0.6781925695826203,1.103963816072278,25.923086457110102,3.6819302433555814,1.0552352320124592,5.239166264318047,4.4400982602474315,27.426167456834676,1.1381229950366307,0.7398210173141662,2.0192206651157827,4.322047729806842,23.205545215069677,22.016289109828868,0.9018666279540556,4.249473050740497,1.7605723186934528,1.1381229950366307,1.6595439023206051,22.433288723263505,3.6976053855132336,0.8870735665897934,0.7601415252950712,1.96906106956332,1.1981589342166412,1.8565279214611217,1.2377343102441973,1.9431684992838656,2.1491701275603434,0.8754847091786204,6.65998711257038,0.9018666279540556,4.101382632501613,0.7937492377289979,10.013961883998757,0.8696655882650286,1.8695048180050522,0.945179014950671,8.029157722342894,2.6279815334618446,0.08817923339344318,0.8076342166830943,2.3223519304341798,2.254425228259379,0.0,0.08817923339344318,0.9654230686403309,1.5779475880992204,2.9164262519817585,1.240535590346898,5.970452027393866,1.0060082180603538,23.51932215469018,1.774167286219632,1.5320797692127786,2.0842973893428938,9.000032720197256,3.809297433024639,2.8880991788901937,0.0,8.12355946098323,0.7890295580965768,0.08817923339344318,2.6129182233496553,0.7461080036609371,2.0605255819459454,1.9511372549656956,0.802255312746489,0.9292986035946508,4.785869775701407,3.7222797583907,1.1999849668468463,1.089190067146611,0.7834713865783791,1.5477177043430992,1.697050673269372,1.9359299782412227,4.451292708170161,3.7960562348765796,16.637618979779926,27.017441004565,2.975956747183797,3.639206343571962,0.8716795735611207,5.881305959837347,0.7704944900344485,3.4529702543711647,2.6756227675299056,10.702615533701962,1.6719806861226583,4.027487224612736,2.538900361776779,1.5380571399000496,0.7542881877002433,23.311482970951424,1.917146052073113,3.639206343571962,2.532794794088795,1.2361322082676527,1.6754243136766254,2.8945728751663715,0.8011356653569398,1.9352568436096753,2.9921575549859147,6.816618297105723,2.5682523735633325,5.499752270763072,2.0075895700946007,0.8538995029078099,1.5556579100211092,1.0154954620656096,1.6080309150110037,2.963112653610392,5.166211727608673,5.02976172168067,7.054287170408363,5.499700366085098,11.353712399298791,1.7605723186934528,9.44329141346956,6.622591085467938,0.08817923339344318,26.202035557587187,2.2071791825311284,3.5346776940799542,0.026902828522483144,5.294619666565557,1.919376432253655,2.739144412953986,3.4002064168202946,0.8904312815268717,1.4056006886370955,3.2819211456645854,0.9263950887825612,14.208520951772517,1.8301460026856866,1.4095738139700833,2.0574175954355907,1.9812247484610035,1.035548464036809,23.4518066298574,3.4758087945482146,1.4413346366821238,4.160333719554269,1.312807519952853,1.4254542253261038,5.543064657759688,0.8033426627382471,2.31794687368346,0.8059323778615644,7.358149101660904,4.301590185061267,0.8193750203423622,5.169357632547196,1.250129015356147,16.8146266013144,23.111656583044045,0.9018666279540556,3.445280079565525,0.7546140786784283,2.5432484794648174,0.730227592304917,5.834290966104657,3.5266525011532224,0.7619884150169574,1.2377343102441973,1.7406185632728852,1.8558547868295743,6.495066741806669,4.455272781946292,0.2734182648187463,0.10057393850539302,8.335833016333268,0.7199497411542982,9.113385690075658,1.4444950305289677,2.387467656906032,12.9996044318635,5.892433707592133,4.77921581745686,14.495762192291373,0.8862773123140257,2.0471592770124865,5.719566835316192,3.5505581054359743,3.4897603294033406,3.809297433024639,3.118616146414074,3.531260419809451,0.7267418860608466,14.428568130693815,0.924571481614415,1.0763434719067728,0.8538995029078099,0.08817923339344318,0.8657769581705699,2.7354428706279847,0.7282321599029932,1.5656508906956015,0.7358301525103185,3.853589485113098,1.6509911619501392,2.520296697577039,0.8870735665897934,0.9059159144155249,0.8538995029078099,2.0514217048048096,0.7498521614359981,9.158836833757459,0.08817923339344318,15.56224279618855,1.6491299460950715,1.6076279911606153,3.666373730820457,1.4889758707501846,2.8344268810901077,2.1959515170674497,1.3936934026140633,1.9946897064228735,0.6501645281325982,1.2377343102441973,2.85674021323942,2.4371468541487893,0.9160728489447386,0.8251192278800625,8.366403968925967,1.6080309150110037,0.9018666279540556,4.704912218078174,1.156658063098759,1.6080309150110037,8.78775635051278,1.1319249116528436,0.8192230740942673,5.644131903629876,2.3300912241156366,5.266595446552427,0.8628734433584803,0.9029166848192156,2.7460705741369815,2.734491667061645,0.8610150409281396,1.2377343102441973,4.806035667889229,15.10832786649518,0.5590207067477386,9.936354932526573,2.5344026930430745,0.7657325727920183,1.4762558532410082,0.8562978591601222,1.3445683426648936,16.24493847069808,1.0253580135679445,15.839533562075435,1.3460521685460025,0.8311126206464398,2.7441230498245126,0.8076342166830943,1.5243000111594573,1.697050673269372,3.49628264136778,22.468570425320863,0.6904406512979775,4.454380888808748,9.538573375898567,2.6597423561738855,1.617648616489271,5.474413239649236,4.678665116828114,1.6076279911606153,3.0631181214204886,0.8351034854502875,3.3958775697488495,1.7923331414054933,1.7466257701437404,3.4559538886244376,1.6080309150110037,1.3301717571899823,0.8841327586511059,6.469728206276328,52.430618384182175,1.188547738684691,1.7863933987120848,1.697050673269372,2.8803004356384743,1.7132569756035771,3.6934818076401563,9.152486431703084,1.4413346366821238,7.374029513016924,6.718786336901444,2.4428618670258,3.7134857968692536,6.786102916148926,0.8854810580382579,0.08817923339344318,2.4345049310611158,3.894589366625044,5.570482170645194,3.6934818076401563,0.9086562749962003,7.743310317934531,7.619283283127082,1.969454399988699,4.955169404186391,8.772749889561975,2.6119393937246826,1.141652438984602,15.755086312523776,1.203314883108464,1.982898077677736,9.953191838719555,28.245004302085363,1.314619690334989,1.4737472413505341,6.095309855869142,1.411013849051888,0.08817923339344318,0.03272344600986692,2.670197617901377,2.3125842436957633,1.7529093845033368,7.471331129851692,0.7758733939710538,2.189343425305999,0.0,0.7696671086950251,9.760276571499858,6.164440236315409,1.7979686389586584,1.790703686514569,1.226054107471357,7.284537411106127,0.0,10.387794473095429,0.7441125712590133,0.09812869570147349,17.867505373918544,2.3229948079156113,8.40750042837351,5.21364489907215,4.220218892103204,2.4694186153708895,1.0774790116041513,21.962101506193292,1.2349330301414965,1.835450530534398,1.2377343102441973,9.67938561011238,1.988950116245889,0.9018666279540556,13.426212801004166,0.9557738773347892,0.9018666279540556,2.727334975719379
+8,1.9740943223775897,4.301636516881144,5.401180916069224,0.26412353884540696,0.0,0.0,1.6029956507215992,0.0,0.0,0.0,1.1379318685416562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7108122857039566,3.8871461211181444,0.0,0.0,0.0,0.0,0.0,1.0399003161242588,0.0,0.08455778227218064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.313187789438892,0.0,0.0,0.0,0.0,0.0,2.854454765216046,0.0,0.0,0.2911383252651637,0.0,1.3428925268297405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8849890903807593,0.41906209950950774,0.0,0.0,0.0,0.0,0.0,0.29421759060635744,0.0,0.0,0.0,0.0,0.0,0.0,0.5986416738196743,0.0,1.170231629682471,0.0,0.0,0.0,1.0662015194926455,0.0,0.0,0.5986416738196743,0.0,0.0,0.0,1.1379318685416562,0.0,0.0,1.0126210346461724,0.0,1.5898787967759869,0.0,0.0,1.19412529373699,0.0,1.0662015194926455,0.0,0.3512392402919611,0.0,0.9232453597362239,0.0,1.4972052240962188,0.0,0.0,1.3428925268297405,0.5189416880162067,0.0,0.0,0.0,1.3428925268297405,0.7580215179039983,0.0,0.0,1.5762956178380416,0.0,0.0,0.0,0.0,1.6791622148548548,0.0,0.0,0.0,0.0,1.199526700086756,0.0,1.0792133197182132,1.3428925268297405,0.0,0.0,0.0,0.5626079367001465,0.07496439653633219,1.3391784654784533,0.0,0.0,1.5357963881118704,3.149203159322881,0.1660461237983058,0.7166648167432412,0.0,0.16392390786481398,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.0007940694711193,0.0,0.2955541841352238,0.0,0.3075530769805949,0.0,0.2550056351267876,0.0,0.0,1.5976472587028252,0.0,0.0,1.5546377484255967,0.404581178082382,0.0,0.0,0.0,0.0,0.0,1.2987901999369083,0.795678196052124,0.0,1.31088129823941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3428925268297405,0.0,0.0,0.0,0.0,0.0,0.24655441946461643,0.0,0.0,0.0,4.004619434085764,0.0,1.5882869513581925,0.0,0.0,0.0,1.284114204383359,0.0,0.0,0.0,0.0,0.0,0.0,2.3369360186150914,0.0,0.0,0.30472150420310834,0.0,1.5313788803811705,0.0,0.0,2.088785754403698,0.0,1.5297778817491894,0.0,0.0,1.0662015194926455,0.0,0.0,0.0,0.0,0.0,0.0,0.035185723056430494,1.5898787967759869,0.0,0.0,0.0,0.0,0.18049694823299695,1.282791611802943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.141792840637031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7436846714989759,1.2987901999369083,1.3428925268297405,0.7070714310073932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1379318685416562,4.7024589175297455,1.2987901999369083,1.313187789438892,0.0,0.0,1.3428925268297405,0.0,0.0,1.3128350431551417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5898787967759869,0.0,0.0,2.3434273886603347,1.4383434082034656,0.0,1.31088129823941,1.0662015194926455,0.0,1.9189441142370849,1.31088129823941,0.0,1.2967783266611541,0.46274826282087295,0.0,0.0,0.0,0.9561799168871316,1.4671022397227977,0.0,0.0,0.0,1.5898787967759869,0.0,0.0,0.0,0.0,0.6789627652417148,0.0,0.005544402963298327,1.2871607659146949,2.6529895358506215,0.0,0.0,0.0,0.0,0.6401263996516015,0.0,0.5189416880162067,0.4776709339008621,0.0,0.0,0.0,0.38211499880709215,0.0,0.0,0.0,0.0,0.0,0.0,1.3128350431551417,0.0,0.6207750214386384,0.0,0.0,2.690045554549574,0.0,1.31088129823941,0.0,1.558183966984771,0.0,0.0,0.0,0.0,0.0,2.7790050658780565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1456538127324059,1.3428925268297405,0.0,0.0,0.0,0.0,0.26412353884540696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.661890760017561,0.8786614539356775,0.0,0.0,0.0,0.0,0.0,0.0,1.3428925268297405,0.6076080060821597,0.0,0.0,0.0,0.0,0.2028881707806766,2.9330093159666237,0.0,0.0,0.0,0.0,0.0,2.515685132010284,0.0,0.0,0.5842440843176893,0.0,0.0,1.465611176124621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.603461975713932,0.0,1.5898787967759869,0.0,1.081981475197984,1.0662015194926455,0.0,2.7384942852047476,1.0662015194926455,0.0
+9,8.03422481389163,11.926101543382421,14.71587683793795,6.699063721588516,6.420826265260738,3.7024480542601186,7.240526940890336,8.264790778459814,5.143174854237582,7.043952683554789,7.415160910596355,12.502470892111107,11.249746842553389,16.707980841343534,15.554444323135773,8.350437528358256,8.583602743234017,5.5746367652088304,7.319572821781089,11.438171092108874,17.405809870725406,2.166065509050966,9.451151523936986,9.201706317494294,28.466140804723153,12.816916991108927,9.739345151176263,5.924373061424343,11.61214110370779,9.417193937688854,13.67693294080909,8.349407860699124,9.492860673410284,9.032931546296464,11.47587038306245,4.992000032190914,7.69235352091108,5.567872124178304,6.284014429407948,10.390105859598986,10.15048397906946,8.869173967211172,9.913533704969007,8.08786874834785,14.56042544636361,6.1876041764310115,12.858312653065047,7.043724362407078,19.475440366878722,9.508263153584593,9.852142417682325,7.607618388079006,7.164222023129302,24.274536504624766,8.40406357585353,5.217042097542922,8.517392069050667,6.170770640196943,8.31526344495225,25.270350438721497,4.3205565144645135,8.317036652033183,4.544789210427847,5.3811308863029605,20.4357736351869,8.641128116209057,4.457939785924478,13.739519311062256,9.522947273094426,30.9397774980006,5.8489762693994685,5.253186637705881,7.387987887124218,8.890060904096341,21.9229887046085,21.072341290130808,7.42459993345924,15.646078391701241,7.820115160896012,5.8489762693994685,2.966149899062949,29.780883606594656,13.201943484542133,7.415160910596355,7.380878434105269,8.577031034898047,6.5563575632175555,4.83090665558958,7.311477949858918,2.3017328848137533,6.519532000451411,7.4077663972251715,10.32966572530138,7.42459993345924,7.968674458436199,6.179695475043951,23.39795000004354,7.120234299672379,5.285236239411607,8.060516030292868,14.633374228542914,8.314309732171228,7.043724362407078,6.411579778386407,5.15357134489941,7.780784510743487,4.886083959936139,7.043724362407078,7.465153452568587,5.138803556577081,10.872588980161705,7.313265365342681,11.148800953821876,4.538041808631898,29.11600707080513,5.715584169576549,7.688405911610835,1.7946198587265634,13.547632537994053,9.04837838124375,4.059368556102382,7.441624358684632,12.909411624565998,6.845758089014779,7.043724362407078,5.090512639994694,5.480222882612925,9.056077257425153,10.618005530620113,5.962098252999792,7.827358499482528,14.650117468708212,8.758479522830712,8.086305907888388,10.382652315533402,5.950112775201135,6.857003184665711,6.887485037654645,5.996694309641289,12.468638315673932,7.333265963925733,17.424451030618638,31.229435117805757,8.149567266704016,11.603507841337878,9.396968904882957,10.418624461483375,5.495783191379108,8.869173967211172,9.013782324602253,11.268935944731906,7.777672623938624,16.160426679093007,9.280753320416732,6.417520496878326,5.931491823483303,20.790751026975947,5.9847088318426325,11.603507841337878,7.046610520036102,7.310455695113067,3.1993074298732913,7.185845054622973,7.360326431474615,10.384847999809772,7.9495166033357085,14.830755619374035,6.970381574735942,9.571107283361089,5.819393512698538,7.393993503942752,6.973581950070882,6.484935943809914,7.736868132107243,11.519073839924891,6.1820401210500995,7.210098842277612,16.930353480004836,11.078348268067279,20.828394707955923,7.820115160896012,14.663287784902407,8.298582092944578,7.043724362407078,22.66056460705834,10.335329046098359,6.479153843318583,5.125795529882508,14.640144321659536,10.15169046899943,9.94641244784362,8.835506894743034,3.840352054910767,14.645698544302908,3.8843002342115223,8.048530552494212,10.180276578117597,4.814073119355511,6.03498029764118,7.696179324600641,7.7858776073644815,0.831961153578396,25.831961549161758,4.1520702342265725,6.501295359261864,9.182207326597087,8.41370910831323,6.268137828451522,10.207023380194718,6.185816760947248,8.713414633984852,7.363387074426264,8.492445231856614,16.27626183636435,11.068823720672565,12.579852942913845,7.319386651245979,23.96553145877699,25.81825166304118,7.42459993345924,8.900819454875679,5.262625660568767,6.0695763542826775,5.247065351802584,14.853340460167487,8.495340725282837,5.713380413423267,7.311477949858918,10.240748167552912,9.219060345758063,7.272663337645294,6.974953281772538,5.565388631337269,7.051633063794139,14.402700145506499,5.017482651959767,20.474451463691153,5.341479234398488,5.687878374901303,18.919995438530545,15.33648905802224,12.625850314063571,19.671320275998482,7.4146528438663815,8.765177958844623,13.317700801077292,6.712311374128925,12.209556278040699,9.04837838124375,8.844784622349888,2.608437419397059,5.021816522379302,15.61400106972029,6.040144648266836,8.032695910485511,7.393993503942752,7.043724362407078,6.89472837624116,5.523135909434091,5.245792124334698,9.846807616364943,5.25064018277011,8.466839807867268,1.5181397383323207,8.166558498742125,7.415160910596355,7.243972559885661,7.393993503942752,7.69235352091108,4.367488413485097,15.879207846097472,7.043724362407078,15.648597126361787,8.183777603642035,7.736611038099304,6.949960603950675,7.20076795169289,11.34535763270567,8.707718029437373,5.8018227668308375,6.034187185798987,1.2895292759006838,7.311477949858918,3.9333760789458143,2.2427875568902333,8.711018335497512,7.375629646232859,11.215150785911892,7.736868132107243,7.42459993345924,9.668001777591508,7.19895116703514,7.736868132107243,17.951719847782737,8.848747268321707,6.41897429175759,3.8361266053429874,9.417193937688854,9.96560115028867,7.115900429252845,7.810524963248459,8.37141263684534,11.340865933694264,5.99959112915749,7.311477949858918,17.398627102894793,16.85512484701333,0.6394149808670381,19.13065665040762,11.894905847625841,4.600645944295438,5.807794296019172,7.395523825418576,8.880024169933913,21.94212170841826,4.2158512989812245,23.205038181586186,5.102350174399812,6.649585367632161,7.883092799078442,6.411579778386407,6.507523982458136,6.887485037654645,9.5050900640448,22.483160024914742,5.667727863156474,6.278367521174182,16.1215067060077,8.780624793791912,5.721697383602935,13.738509704967186,11.459367468202995,7.736611038099304,6.2953068438436866,6.652131822567933,8.771950399145638,8.286430222516694,9.771729413802921,7.786765398954359,7.736868132107243,4.869192643589471,7.798539485449802,11.587090760264816,45.70022732584931,8.217322870499489,4.340106450355705,6.887485037654645,9.806325470444419,6.45177640555045,8.810729151422,15.186387013706502,6.501295359261864,8.725602762666956,15.831076912284813,1.8382989369067615,13.435101015352474,18.156727050525504,7.414144777136408,7.043724362407078,8.485793464338554,10.69489251105,8.918700983904985,8.810729151422,6.699063721588516,10.436538673956761,11.854844347716655,8.577282007620083,7.700158606486725,14.944088153796274,8.002008340335943,6.027778091331026,16.276968435827982,11.610409149684758,11.084320592240797,18.452630966044918,27.368768216014573,6.596829647543754,5.6298780950534715,16.069997286195612,4.55226025039559,7.043724362407078,6.055446444955374,8.087176461673774,5.954727697892932,7.876020049114288,10.269892229478105,5.945264716765723,14.115368492775243,4.881750089516604,3.7562601761508123,11.271715668199125,14.756264444656535,4.144162294288337,11.630761037089384,9.177035600870003,8.720950820272112,5.5506162524311415,17.253475351357775,5.47894965514504,7.2123031428741715,17.540131718072043,10.572978275920109,9.58146494515841,7.0324938242069885,12.668745097123852,5.903847657050805,6.432880293918735,25.550498075589342,7.309690534375155,2.0818873076757924,7.311477949858918,14.624817963315618,7.14564842745893,7.42459993345924,16.57517949106653,9.293912162523366,7.42459993345924,9.060863593980594
+10,2.3107761518113468,3.7293908878859408,4.85954654254048,1.7698736436653904,2.4425322957192837,0.8758618185612828,2.7254381367301095,4.033116109827871,1.6508220243771066,2.725546709736927,1.930663897207087,5.631907131520817,10.398720584939191,6.433776232297516,9.98753154263417,4.442438038020806,3.1563745402401544,1.1053382763288113,2.3601171346503476,3.6272937125415408,9.548650996977788,0.0,5.829375134172574,7.361340484150066,30.668677631102387,3.9554135547123557,8.260952990565713,1.2151662479925762,5.728458660496429,3.0730162370054748,5.4819338112115545,4.045061623653094,4.099974868719531,4.195856224738819,7.548548387701607,0.9227234586725349,2.711225080844739,2.0952696466028247,1.709539679908908,6.927227390039221,3.059842293877707,4.536912936395817,2.711401629442295,3.544381477582346,8.954790243810729,1.5476140111597185,5.86165111303105,1.9931083865675963,12.514728992697133,3.937636364873652,7.417993064812967,2.691626932929811,3.6430103606386517,29.148710949875046,2.98736552475734,2.3117711340851717,2.276798438424514,1.519341275346368,2.675495214316775,29.88869591944582,0.9588627784593377,2.9775158577476306,1.0170917357566842,2.149538147581251,27.24267500770183,4.386819762541606,1.8725168505230374,7.391208933256475,4.7170734791400815,31.688991802009124,2.298545691843242,1.25173736956271,2.6051964918555846,4.450061974832243,24.585021146200123,23.637266637168025,1.9465171912522456,6.827455743265144,2.7796735879898526,2.298545691843242,0.7330345322620577,27.19890612533859,5.851563074848347,1.930663897207087,2.641456906714445,2.4288564213809973,2.5314846805056255,1.8126426098728328,2.7578162761600895,1.659008872734532,2.60831333753393,1.9182444554388953,7.579877310435521,1.9465171912522456,4.016881348389106,1.5343309658248643,13.928038166318968,1.840488602263091,1.9389497175254133,2.1462144369179867,9.027782494460219,3.797904912367162,1.9931083865675963,1.605411166673734,1.5381104757525565,3.2682952013051314,1.321460803270802,1.9931083865675963,2.0146287820753175,1.9376591385676565,3.7179731261467674,2.7608183266537254,6.170872622538349,1.8478617261521386,27.67073942382771,1.5302739504090908,1.7033019695985938,1.3585895897953386,9.88482311065161,4.7090500975113425,2.5091731757506746,1.8944663249140459,8.679349516173318,1.697873239309024,1.9931083865675963,2.5670440468150693,1.314675022497335,4.154086353241838,3.6582973612999705,1.4872466069353982,2.0729957891421433,6.324028357143174,4.50183510935522,1.6046599079450434,2.8625476206312594,1.4671164190362926,1.5080408390959488,2.48679899688648,2.1787358487520483,6.554269405508679,4.727849615211676,18.352561623177028,30.855812162595853,3.969765621796556,5.395578012044147,2.7268099431068777,7.13928975557922,1.340809311383712,4.536912936395817,4.017560855694692,10.511593816758037,1.8532297173680814,6.9949365766822815,3.555522629610089,2.6866004058562614,1.4358416327293064,25.27994746110259,2.1586056608529427,5.395578012044147,2.98697874673933,2.756099350021606,0.8062531800379008,3.3029118606850654,1.8385667454194528,3.5850787135241275,3.736518759486296,8.21932218154867,3.557122488923977,5.34455653375029,2.199331278902323,1.8951122170461538,1.5446501629838703,1.91682409571728,1.7846966057565197,4.959430080764678,5.119160419661478,5.253931274613279,9.068479730402,6.6567520229541834,13.513558375567609,2.7796735879898526,10.6733049343738,7.034000423706335,1.9931083865675963,27.60392649210542,3.8202899109848354,3.707893234897228,0.7774319491973956,8.244900414965638,3.511860065748284,4.3104354467980635,4.480367464769117,1.136495615342394,5.060059382412077,3.1736573309588874,2.126084249018881,13.78060644337003,1.7843698740594822,2.010118182528491,2.717650702620501,3.554593376354514,0.407004386498558,26.247824391569445,3.1714584942186357,2.1565554780801772,4.376377475255244,3.1039508173775165,2.0833368303043343,5.544253779416031,1.5446119606660826,3.5611697924085037,1.843707242840062,8.047833045841012,6.97882817856248,2.854174582962144,7.035396689218478,2.7710993214949435,20.615548458571748,25.584658801184222,1.9465171912522456,3.4565470148119672,1.2675906636078689,2.7016074243451413,1.2414563747214917,6.980353999119543,3.3735907277901256,1.387893670273178,2.7578162761600895,3.420164431542706,3.2189854746449114,6.95429254100992,4.622694298343934,1.0091613801321024,2.0063914319024505,9.598874092530803,1.17424182793292,11.83715650929349,1.0321196285529683,2.5671156426186776,14.635466176222323,7.1550640304845805,6.390430317227118,16.53749164497436,1.9298105746352658,3.4311483351463257,7.826094121798155,3.781111882673071,5.564449293684005,4.7090500975113425,3.1935643109734904,2.8329878776869877,1.1815207722805026,15.453880419430234,1.6183292911609326,2.2586795382277316,1.8951122170461538,1.9931083865675963,1.780121198038771,2.738976352048071,1.2393179277945183,3.265110660133806,1.247460475708763,4.499262313928341,0.894227895802028,2.6752517966926486,1.930663897207087,1.8073088060523375,1.8951122170461538,2.711225080844739,1.0376871659069586,10.617009588410042,1.9931083865675963,16.14536966124688,3.4559513147009637,1.7842648039731883,4.050082267528753,2.376211421407707,4.749747333453124,3.5035111136337727,1.9368995347526479,2.241706942154511,0.27485793915324697,2.7578162761600895,1.7173983651820803,1.7929281813689772,2.2836224215157688,1.8642692325224988,9.70723134312254,1.7846966057565197,1.9465171912522456,5.8785827631748155,2.655609619768554,1.7846966057565197,11.788584545690457,2.5149448054431827,1.6178306084419258,4.183190528251822,3.0730162370054748,6.465202761144912,1.8332096579155084,2.044723053328793,2.9325266982742813,4.553995596373284,1.5502177003378608,2.7578162761600895,7.672454091051639,17.269555728603454,0.0,13.131904417672262,4.31375754863258,1.1109058136828018,1.1785569241046545,1.8976824657564584,3.250388112929203,18.249542588514363,1.7842982312738567,18.65197324615766,1.7172435914251185,1.686772362363822,3.898624328101407,1.605411166673734,1.3986446692155152,2.48679899688648,4.736610182061558,24.938623300525524,1.3112180107473712,4.702220353026847,11.02396220720999,3.9443422079188486,2.120705758007264,7.304053412336888,5.42233922637599,1.7842648039731883,2.500568296358114,1.691049256217769,4.460408767107328,2.926110883541539,2.4237057380773193,4.315564394736038,1.7846966057565197,1.6440249436492753,2.024592865429687,8.170686956947998,57.19728457792304,2.510999296857281,1.625081334956273,2.48679899688648,3.1151949798939698,2.3917666755408855,4.44007971265566,10.086767089265347,2.1565554780801772,8.121051693616854,9.41830315151088,1.696206662238601,5.924781722624191,9.770688556475886,1.9289572520634448,1.9931083865675963,3.363698934620779,6.325344787185788,5.396863913110473,4.44007971265566,1.7698736436653904,7.709846834495041,8.935394846540492,2.4292779421694872,5.358166943866671,9.679814470465402,2.717262539097181,1.8678487737354381,16.3757805273586,3.1785044161315685,3.804734656851657,12.626511083058793,30.54766374942841,1.9712041710715669,1.9664908353889885,8.758313723395817,2.1008512236495163,1.9931083865675963,1.6935581431372893,3.3743492481033246,2.614839280713205,2.7867810421001185,8.352544846707294,1.4589738711220477,4.756577077937617,1.3141818589232193,1.2124843400782643,10.887549750498831,8.14036156871579,1.936122852029766,3.7673657291487266,2.9941826899142314,7.743389067750401,1.4824328280446568,11.83646533070062,1.3125365755703615,2.0446514105431675,19.501994919870025,4.089260295840518,7.995785571621009,5.677856257518444,5.413090305928419,2.058726510897924,1.9114761208749407,24.81995091159173,2.7548142256664536,1.2043077862413873,2.7578162761600895,12.296276007695942,2.5165563518179135,1.9465171912522456,14.32959503021344,2.466669040955377,1.9465171912522456,3.2414765346257393
+11,26.037109123542827,37.03628464828336,47.848965887424086,18.890437291354388,12.345396014683677,7.432037417839644,22.902577321781145,4.124516497626611,12.476361957575303,2.850378326664106,22.169632594265188,23.166540850641603,0.0,37.62023212203868,1.8255400680303835,3.5918107045277425,23.107300005951785,14.458681686181919,19.370336257973428,35.53958886845834,8.981597445005741,6.984155905670245,6.728040597102059,0.0,0.0,34.28048538238373,0.0,15.73982474447573,16.054783709915135,12.115292562437492,26.51699228349232,0.2694631579048617,16.507753926970725,12.363023575649612,0.0,12.320791394097803,22.654889639587953,14.348483307754583,16.65345271712082,0.0,25.922986139460956,9.386565471976796,31.36078144149541,18.794219670556828,5.560484664892808,17.647900815032305,19.761467120403903,22.47650464780099,3.737720750719043,22.59018810743278,0.0,14.150684022408498,2.8025626693302015,0.0,16.60110943749795,0.0,26.207291289028515,17.82153460990574,16.42116311632777,0.0,10.833574589502783,19.604094356512356,11.779727442762466,16.009326644036427,0.0,13.97587289500026,12.495583951000267,13.665748092203613,8.538129315262998,0.0,17.701732497985137,14.24995607828628,21.646900553391234,6.918551685766524,0.0,0.0,22.07227139001252,30.488689033244253,18.211601420981395,17.701732497985137,0.0,0.0,25.728826967229224,22.169632594265188,20.10620349680197,17.245499451501946,20.18244230076313,12.172927007021427,23.059122897376422,0.0,11.327270581107635,22.245905184885956,0.0,22.07227139001252,5.015723462056257,17.729477128841932,15.43438831848186,21.0642823038158,14.004745013363058,24.401739340384097,1.8143245018580056,6.872798722987216,22.47650464780099,18.596705529886417,9.386875804340963,10.991810912884906,14.512125322087392,22.47650464780099,21.653971793271978,8.389504640728846,26.100126787929216,23.040686145338952,11.407568813621923,13.298880285698491,0.0,6.763536818935414,22.875582251116573,0.0,0.0,9.1636077169544,1.6841650222967635,21.90813109677493,0.0,20.63637897358199,22.47650464780099,6.2360969121668575,15.167191012254312,12.135743720639862,28.460745887331882,16.714880990621232,23.547643968188225,27.351904839236784,11.658061584416567,22.30720870009051,33.04005426659551,16.838508252571117,19.156206233259223,14.7952199321979,16.443403868000793,5.282313646245895,0.0,0.0,0.0,8.29526764620915,19.402891772111243,14.706041546584485,0.0,15.006690246229487,9.386565471976796,9.43508483957484,0.0,21.95481802179319,30.47724611460239,24.936896199818566,0.0,17.030578799482022,0.0,16.567031129950678,19.402891772111243,15.39095007313239,23.06966720419237,0.0,15.06214037291255,22.735236788620178,27.60665051513601,9.613562675903319,9.193376249977153,0.0,9.015131159851812,15.013159994633982,22.38796919887331,19.58325391935716,11.598747703728078,22.3757063405664,15.076838166151857,0.0,0.0,10.626755346437188,7.502505842971073,2.8185610908555687,18.211601420981395,0.0,0.0,22.47650464780099,0.0,24.858368289775402,6.05619637902135,9.599466283197996,0.0,26.752555142940132,12.851466328358336,9.733833061723667,1.3978135528425795,45.313779683044515,0.0,24.525366602333982,0.0,12.346560801894862,13.811422859914222,22.615427413480354,18.165806860034202,0.0,0.0,0.0,15.519613604305968,9.682107977309153,27.09678159213975,14.665518232110097,11.344599110223392,17.666337567069775,14.408192401668403,22.7036670077341,0.0,35.64056425502648,27.154974041708098,9.33213166945209,22.977546583566795,0.0,0.0,22.07227139001252,17.469104688368343,14.152594874033612,13.539945737293783,14.313095640058437,28.600140349014307,17.896678481115035,16.021286384450185,23.059122897376422,26.35611552691604,23.33617365415664,0.0,2.049507205573323,14.56553639207043,22.394928333991363,0.0,13.422126763787626,6.660835253881618,13.604586313986047,7.976701653180284,0.0,30.13469729853261,20.87192475222813,0.0,22.174873177892277,11.78040532607418,1.998221275311893,6.910291751217225,15.58015779073507,9.1636077169544,17.828117701077378,0.0,13.377423954052938,0.0,15.909851578026226,23.059168008589875,22.38796919887331,22.47650464780099,20.13126247940473,9.399170576402218,14.326228668907047,20.91915056634685,14.276222135983497,11.62616812114519,0.0,18.162528198161315,22.169632594265188,26.150119122484664,22.38796919887331,22.654889639587953,10.34948356939565,0.0,22.47650464780099,0.0,17.597433309008142,22.37835820216083,1.4767493671915302,18.08189972089359,17.976038561533578,12.592062928182722,12.957327487718347,16.056674052146327,0.0,23.059122897376422,0.0,0.0,27.46914195114898,22.577387884189783,0.0,22.3757063405664,22.07227139001252,1.1468526607102176,23.331421225337643,22.3757063405664,0.0,26.048501811275433,18.52043293926565,0.0,12.115292562437492,0.0,21.10898511355049,23.72127776306166,16.937895859990643,24.263676317755138,16.328151174766766,23.059122897376422,38.207234658969845,0.0,0.0,0.0,30.839944434441332,11.203578941591525,15.312777058377794,22.37218430843027,28.8049723365315,0.0,11.73360919942997,0.0,10.395041371130725,19.40079436915874,0.0,18.596705529886417,17.872411313370986,14.7952199321979,11.716033422348373,0.0,16.49218123614694,0.0,0.0,8.580989467378965,10.524743071218532,19.172290449195106,14.636894887228658,22.37835820216083,7.387328582890191,19.37452831146152,9.501014895507621,19.919792165373142,29.829746524113215,2.2603056321528525,22.3757063405664,9.540945998934854,23.844905025011546,0.0,0.0,17.431396104682293,10.71729450971831,14.7952199321979,29.558269401492776,12.771331378945368,14.59715010098009,0.0,15.519613604305968,0.0,1.038467820154935,0.0,26.582922339425096,17.62819661365968,22.18011376151937,22.47650464780099,17.118230789434026,0.0,0.0,14.59715010098009,18.890437291354388,0.0,0.0,17.242910729469283,0.0,1.5916355236485,16.600764617623096,10.90346294677484,0.0,42.14511302799023,30.168936631723632,0.0,0.0,14.065831577898335,11.471836497800899,15.699904375086623,0.0,22.47650464780099,18.745728678991824,18.582387905283785,7.375914105532544,18.523344039412635,0.0,16.888514785494667,41.27217647027,14.556828131822082,0.0,0.0,19.558934683727276,0.0,34.309711792615204,10.456483440863389,0.0,17.434812057270488,0.0,15.180324041102923,23.108326160596768,0.0,19.424825905749717,0.0,0.0,18.73456103158063,8.911254406265803,13.243049308888162,0.0,23.077559649413892,0.0,23.059122897376422,0.0,20.8875145238536,22.07227139001252,0.0,29.604380381638666,22.07227139001252,12.254885349468829
diff --git a/data/activation2.csv b/data/activation2.csv
new file mode 100644
index 0000000..d40c633
--- /dev/null
+++ b/data/activation2.csv
@@ -0,0 +1,11 @@
+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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417
+3.7089046470195393,6.3917142773713795,7.327898792645024,3.4600094585520806,3.8695009667666063,1.791870100207246,4.322210389590163,4.302116471251958,3.892402551230557,2.7973878621131694,3.745948101998893,7.453348106256574,4.428689828796384,9.087064698427067,10.048256696072775,5.636886815659383,4.5686440041484575,3.119592220715868,4.247495696844118,6.968659561193428,10.319841607788625,0.8541530706441707,6.785705921671325,4.287531677696826,6.897355185994262,6.380424901525363,5.535918803942817,3.3078152446964366,6.987793325238134,4.406337616333902,7.359257207799841,3.86416769706475,5.697958837859585,5.462593848482479,6.151073927016405,2.7875072702321635,4.90102845444434,3.8687040748377273,3.2660213436862064,5.630255715992649,5.7857332967872175,5.38736590279482,4.943554923326407,5.589997292916441,9.373589580118056,3.1580223912651255,7.969853723292196,3.226697346136592,13.203507970208799,6.182364822279404,4.202166289106578,4.5956367572118975,4.118294753369839,0.011375961438654334,5.054730356568915,0.0,4.275844940759107,3.129009821940532,3.966233049396053,4.18356688275969,2.131818697384088,4.706574032630559,2.2582798013002865,3.4355947882563362,0.0,5.979980693033979,2.949539629099846,8.31145184345527,6.057733102426473,9.568303993584415,3.6624129259295706,2.663451771423234,4.745195867580379,5.689348581196016,5.287352676428075,3.597140227333672,3.7622162408710835,9.222793953923851,4.418647877663154,3.6624129259295706,0.280052505177556,11.317528475273408,7.852072911785934,3.745948101998893,3.867737454981827,4.3792597436904135,4.012314505556023,3.4428949873222727,4.3655095597098486,0.0,3.9408044846483667,3.7332036715464896,6.163146965240843,3.7622162408710835,5.148077180282502,3.144391758695171,14.656526087186673,3.6063836540071232,3.700053397953474,4.067932448260299,9.721258799478662,4.3023670320747485,3.226697346136592,3.2542876691372107,3.3911121737239593,4.240701696756607,2.208887588950446,3.226697346136592,3.832110157880333,2.890202789800608,6.456905256797605,4.36859016707086,8.032547433642105,2.9896435206845124,11.307507010562858,2.748131008620758,4.095965903484536,0.0,7.777255386747214,5.739532984347609,3.34487891545499,3.114392556380887,8.431749976093931,3.423080668161257,3.226697346136592,3.6659515677725913,2.791938116343454,4.675541181869206,5.939430883088943,3.0591196070908055,3.9558421325748,8.98005678829569,5.8441768882159595,3.822446364119273,5.172567466243103,3.0384626577316944,3.756176507438434,3.8870148036240075,4.085841504978563,6.633622552906211,0.0,5.847126227790518,9.198074164492887,4.727681407287229,6.946035611960044,3.56211613975,6.504334361012238,2.8031786461081323,5.38736590279482,4.7010918376041095,5.289161847549625,4.249816921106555,9.139589186878458,5.979079800851304,0.0,3.0063694810460895,2.9993630393847908,4.065184555619451,6.946035611960044,4.759316260903248,4.3637477054999545,0.538667501390547,5.080473836825127,3.6514409761771796,5.827340567403444,4.831718850339794,9.28815291466063,2.0040732847047464,7.096289912166197,4.014878114116214,3.7094661148263675,3.812221665281183,2.9023633379048674,4.17949045306374,5.935087790296686,3.5474206353419695,4.873284636195695,10.011900337833028,7.537147037262457,14.06447856351964,4.418647877663154,7.331349551907479,3.8464140300889453,3.226697346136592,1.5674171163573676,5.880388270448015,4.747576763493683,1.5538250901538115,2.22492209464321,5.715250251717944,5.232724911643255,5.363045323052205,1.4295210039512263,7.496702898147638,0.9115463660068744,4.047275498901188,0.0,3.4307346974509647,3.3777419083554845,4.907622220199929,4.917654317083187,0.0,6.459616406758307,1.5604051367802554,3.6435584453750574,5.8374262071518,4.895406398470063,3.5106501768652714,7.458785204743342,3.1549417839041145,4.772334770795753,3.6567159887816514,2.2318327198705217,9.859689308150994,4.644105513475408,7.651332424495905,4.379140192279803,10.119346214025931,8.610537316024123,3.7622162408710835,5.821347269114442,2.670270377598346,4.416183055098985,2.6590298478336676,10.104790285067766,5.878019212781402,2.9202111273241727,4.3655095597098486,5.573727226603625,5.216097488721873,1.6694496833889116,5.328501907796248,2.2853606288716497,3.2403279787065467,8.121457651765326,2.528703982700188,12.216890913323,2.9866839522060817,3.702691964096307,10.588467878438507,10.382767111958646,8.335348330789548,8.15234076241442,3.7450724499065506,4.291244433229192,7.648045204220331,4.880485032003469,6.583416093043372,5.739532984347609,5.5506091589437,0.0,2.531834704601601,3.51700034177243,3.125374708894679,4.164862655947226,3.7094661148263675,3.226697346136592,3.507480869832803,4.128006339308788,2.658110087727038,4.851392288421814,2.661612251209974,5.899281383363307,0.0,4.8928430409719885,3.745948101998893,3.593857903184075,3.7094661148263675,4.90102845444434,2.165721585545294,10.322474846511739,3.226697346136592,4.270544714991237,4.6252482103804935,4.179047352004964,4.557599998865438,4.0422832509044175,6.030174522701976,4.479995658125783,3.2448336398456976,4.1345206118573,0.0,4.3655095597098486,2.055777712538715,0.0,4.319803193645251,3.6778160391995374,3.675145455577574,4.17949045306374,3.7622162408710835,5.998559815083334,4.25055461837102,4.17949045306374,11.065948130790137,4.557178760846473,3.267032099589614,0.0,4.406337616333902,6.58554537578749,3.598914236159191,3.9268295632502066,5.031143816142168,6.500209255455701,3.0960794651138,4.3655095597098486,10.748960827725941,3.562440850548679,0.0,11.29944969102372,6.917461087927692,2.2986298540550805,3.251770086853687,3.712103621128603,5.119587029841061,12.19185617691722,2.810179774072882,10.922089029467958,2.846108834316338,3.3747336047881924,3.472415734318979,3.2542876691372107,3.5884841349689607,3.8870148036240075,5.749861195371963,5.959173581113095,2.8415290393158745,1.7577483571781765,10.228787566162254,4.568183569094322,3.2224734610750745,9.03255297861465,7.172404112233475,4.179047352004964,4.1093209585995005,3.3791224152751127,5.32681581009999,4.684464414682727,5.15774855456595,4.609003679916263,4.17949045306374,2.7132005658065514,3.9061726138910955,4.808228316268469,3.4842667446928277,3.8954822719629885,3.159390755944433,3.8870148036240075,6.1844704524537075,3.6433078845522675,6.07665944859155,10.804256315266846,3.6435584453750574,2.486354665846974,9.028228110689357,0.0,7.98498118029572,10.894363553964535,3.7441967978142086,3.226697346136592,5.077032371954508,0.0,5.740824341872405,6.07665944859155,3.4600094585520806,5.941164664633151,5.816294635463733,4.379441042557585,4.9305945771354125,10.4735674389661,4.809495692054063,2.863738500528883,6.110153058056568,5.6930191615412795,6.163611514459942,12.328536395961853,6.646842568182126,3.416800129942126,3.156144607231577,9.710784184340621,0.0,3.226697346136592,2.7614119762972678,5.359237793918968,3.6393619980894703,4.449349986128412,4.709682242231481,3.0301070377662116,7.620785618371434,2.2102461005368084,0.0,3.6678006398944594,9.881776625060708,2.091888473933322,6.23613183129286,3.4742820272104793,3.6831009324431268,2.510110188727878,11.232844557193204,2.7910183562368243,3.3064710679449156,4.768373211974192,5.543261806204075,5.596964766471526,3.238890374291679,7.324112367885227,3.613506996256746,3.085335801652791,7.602470996828861,4.362428952348837,0.14216276620532514,4.3655095597098486,7.440439268629909,4.617280514081466,3.7622162408710835,8.752243886699047,4.6000289828589995,3.7622162408710835,4.728773006133341
+2.6592160890243424,3.5315607000752487,4.853088459733333,2.024700634640343,1.8102553900929992,0.903716264669537,2.4058561669183085,2.302655471045848,1.1945178435072428,1.7800821592864566,2.2169025245942144,4.084934250356489,5.557113817549868,5.558908911558886,4.720106201115592,2.0675110197026028,3.0452092026500326,1.3516515231909376,2.1400385822976653,3.184696538222862,5.092291821709063,0.43860521140571035,2.850011296640943,3.795442362525964,17.330067032669568,4.097609946164762,3.953219041761301,1.4759394980212381,3.6821792345099964,2.425412170276292,4.405223230687601,2.2277812782973188,2.861904502648059,2.646035826389011,3.7427473062089236,1.1298271311504449,2.3090692876111745,1.6288735890833055,1.8824155780486025,3.724856497942778,3.005434793119319,2.6942119327788308,2.989249121712224,2.561393993879412,4.406648066317378,1.8376750522012737,3.8748047348478103,2.3492440123797014,5.75676838075386,3.025943187064237,4.022287195041319,2.049536666398631,1.884254339974331,18.66987720831441,2.3449330154941626,2.1609568914202173,2.558428317725664,1.821813393247225,2.4700545193339596,17.926459614816345,1.1578497215671917,2.6343731096432492,1.2452673379706278,1.833431803861092,20.141783468841183,2.6584210327197897,1.5105779876680572,4.322993088252114,2.62179002137815,17.736729292771617,1.9793612699192167,1.5128299310660485,2.2099227445766045,2.392491746012406,13.77046732386792,13.982332275247927,2.2257965893604483,5.109237489208707,2.4523307553352565,1.9793612699192167,0.579948201876853,15.052117326492622,4.351169407480631,2.2169025245942144,2.610728130479221,2.299999224819649,2.2035446112830814,1.357061926249922,2.432516710630428,1.6125229412395354,1.8249363949193695,2.209934930406399,3.64905040170359,2.2257965893604483,2.0662170406201508,1.8302229564308625,7.397154777817712,2.1266500463258784,1.5327693700722163,2.4228348854295967,4.100376092901317,2.3640870260691753,2.3492440123797014,1.9012669867574894,1.0883827207065047,2.2672368361733475,1.6697808980556121,2.3492440123797014,2.264008767749747,1.4317626530260432,3.292081205883592,2.4342009304175494,3.2031821266721567,1.5495251428315169,15.10650740870675,1.2108675504197297,1.9920385381607637,1.3286092929350268,4.8866191607773635,2.6506403693627583,1.0423049333009289,2.4358034890984204,3.9133059372363324,2.0154731349075163,2.3492440123797014,1.3416080917680946,1.600664533529049,2.8589189757683147,3.4585233300876834,1.7726411486492364,2.3505911368984447,4.573839754904967,2.6047639304231374,2.0666418729441256,3.1363783059748727,1.7613476474739538,1.7649144921458424,2.0973505458363992,1.7836700983688116,3.63989679300272,2.9113890543768597,10.105993997695178,17.39184549926872,2.3931991391085017,3.7349615153720506,2.671172952798645,3.510250301622494,1.6029788972046233,2.6942119327788308,2.630322183193318,5.337420941979478,2.076151473625089,5.270739901884012,2.961242447291122,2.1406807049598124,1.743801768732784,15.438492133081366,1.7723765971935286,3.7349615153720506,2.1191456026931976,2.431553475341219,0.608441913829534,2.210966033939118,2.1652338915358977,3.3862795815565305,2.253890659744897,4.330375234711938,2.2664157980189903,2.6588636090219806,1.720349991193159,2.1969572094439958,1.8010363664114182,1.8046182087499292,2.037702812320475,3.4724990274308585,2.5436288306693164,2.462484984541495,4.967508430479017,3.3305812851730434,6.227704239974167,2.4523307553352565,5.478225133764331,3.6041041291934444,2.3492440123797014,17.547378568476724,3.367094776433784,1.8355245154440134,1.278519514001827,5.20504904215454,3.3140358330253807,2.9853023926921747,2.68920445826441,0.8499573225080332,4.9344144092572915,1.9263960611446804,2.4115413842543125,10.404231869252769,1.3545581889927114,1.8083541409194337,2.312674210100731,2.669093228939791,1.259862658806164,14.954687659450288,1.6776758127213285,1.9858442456688623,2.531781656275116,2.774042503761878,1.8970991932941483,2.9009077202427753,1.8359908324141534,2.622217045672205,2.1681178295275427,4.697213090347499,5.4017369929789,3.1498780065154772,3.880178276290256,2.43996880640084,11.238097706506245,14.061851986719237,2.2257965893604483,2.47377021493969,1.5142338448299093,1.8286723270888752,1.511919481154335,4.673305030479847,2.356636645529536,1.6857354593685605,2.432516710630428,3.3089490849125927,2.984801069583541,4.1081362874915826,1.984933155517393,1.5408689093068442,2.356696108150113,4.735163520379661,1.4237061315280615,6.035303604087983,1.2629064708162236,1.5560863047182283,7.232690678602526,4.853298872486485,4.047346264491311,8.905734014472452,2.2164237908876006,2.5369725878448564,3.952991602919945,1.9242695678187278,3.7544420559512246,2.6506403693627583,2.409062463363803,2.187396386376632,1.4243507300655538,8.820969473345988,1.7920772383283912,2.470347212921732,2.1969572094439958,2.3492440123797014,2.06161614277384,1.5851984177575549,1.511730107572699,3.0345421627185187,1.512451183902775,2.563693932675984,0.9500025893761882,2.29486971444967,2.2169025245942144,1.9614522661152578,2.1969572094439958,2.3090692876111745,1.164830141040294,5.015695326125451,2.3492440123797014,8.914082405164544,2.728726168275178,2.0374605615291763,1.8815455109859696,2.252079402793005,3.51777270694046,2.5847996876076746,1.7196090885447202,1.8063636938327334,1.0510732768553477,2.432516710630428,0.7402776952525164,1.51449951881261,2.593423123156725,2.1796535814941236,5.464000885731314,2.037702812320475,2.2257965893604483,2.8839943295725208,2.3666807532398,2.037702812320475,5.811878876475131,2.723200332780762,1.908234580945305,3.182788712950467,2.425412170276292,3.0947756888761475,2.122566390129709,2.334729477944396,2.340076675665086,3.678852429143569,1.786045507663293,2.432516710630428,5.856048845495311,10.02736870838828,0.8052233839000426,6.591465358670382,3.7970711315331833,1.2535751934150077,1.4398176237556624,2.198399178439818,2.91853000082418,9.148090988372411,1.4205045888721537,9.838942448330805,1.4533739314205776,1.9780788930674067,2.1745913860218504,1.9012669867574894,1.6567911201404137,2.0973505458363992,2.936256043999624,14.054532282789138,1.64271864028518,2.637142198366678,5.271985450026084,2.541577130818603,1.6536252839628285,4.3750367906560745,3.3423344205995256,2.0374605615291763,1.4203978839519027,1.9804783294764554,2.665013412361062,2.629820860084685,2.668203599576528,2.2536386768045005,2.037702812320475,1.3646288790458636,2.3234359767691135,4.636201733244918,36.49066160211804,2.4554873207465535,1.1759300218536421,2.0973505458363992,2.679232549296104,1.9244126906455348,2.722975039191155,4.434789702705219,1.9858442456688623,4.710120706882307,4.83233511524233,1.7435150596684135,4.439914459855344,5.698924402347848,2.215945057180987,2.3492440123797014,2.549919237460345,4.3948378234116605,2.385388720670657,2.722975039191155,2.024700634640343,3.634773062442313,4.7422222815982815,2.300036553266029,2.635801815991983,4.293886354774972,2.216328984685433,1.6996014746225223,8.7649298226876,3.3143905386828227,3.6030108271499857,5.9308070413633045,17.22522607441424,1.8368845201287942,1.6399685352871352,5.102147700540005,1.733683722263274,2.3492440123797014,2.0480281645012037,2.5049176199553207,1.5787311358529101,2.4753837388489632,4.4093511098439295,1.7567794896951874,4.542179558054951,1.6694692337743877,1.1439311824262821,6.1123035209056065,4.75972303894374,1.1550827227870055,3.6755451731611744,2.5303284569956603,4.050862044185831,1.8701607949394108,5.469939340099958,1.6004751599474127,2.4008315760973384,10.92949449976888,3.294760106605386,3.786222228087625,3.030572712182738,3.738927944781148,1.4176617522092978,1.8679870802548217,13.955831438365875,2.430832490843308,0.866343494018144,2.432516710630428,6.449836134944778,2.129027182070518,2.2257965893604483,7.210654142820408,2.774032494484602,2.2257965893604483,2.371962096291347
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4067416355311955,0.0,1.727116837096525,0.21456425419874722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6196283593905254,6.585613387084549,0.0,1.954026335252525,0.0,0.0,0.0,0.0,1.0010722481111027,0.0,0.0,1.811438662105098,0.0,0.0,0.0,0.0,0.7011945779423054,0.0,0.0,0.0,0.0,0.5185571441030119,0.0,0.0,0.0,1.7476296385967995,0.0,1.5851868155126307,0.0,0.30412081213819575,6.527061866694408,0.0,1.1081469057372604,0.0,0.0,0.0,6.252501958879137,0.0,0.0,0.0,0.0,6.398365271010081,0.0,0.0,0.0,0.0,6.249325077145303,0.0,0.0,0.0,0.0,5.13816425052074,4.870317286095128,0.0,0.0,0.0,0.0,0.4798744821257403,4.984102295218194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5293892506135646,0.0,0.0,1.7212547909993126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7716675902364272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.325826014549838,0.0,0.0,0.47114201362591723,1.864281097000393,0.0,0.0,0.0,2.116103681287936,0.0,0.0,0.0,0.0,0.0,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.9897475540513359,3.5879170729144994,6.206830967604098,0.0,0.0,0.0,1.0703979920449906,0.0,0.0,0.0,2.418052350040858,0.0,0.0,0.0,1.4536778565619484,0.0,5.107439967115182,0.0,0.0,0.0,0.0,0.4950116861385751,0.0,0.0,0.0,0.0,0.0,0.8809475447771273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9384158777937522,0.8680936237455708,0.0,0.0,2.121769583996838,0.0,2.344241277685015,1.7826279338275546,0.0,6.128467149030971,0.0,0.0,0.0,3.7877101509665323,0.0,0.0,0.0,0.0,0.0,0.4983098731139874,0.0,3.273390776680984,0.0,0.0,0.0,0.0,0.0,5.494152082340145,0.9889757873239762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3675167637441201,0.0,0.0,0.0,0.0,3.7672825205411,5.452835146460946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1919853339980888,0.49301457336037996,0.0,0.0,2.0735205502413803,0.0,0.8248854886018544,0.0,0.0,3.1384885363046564,0.0,0.0,3.446159139717663,0.0,0.0,1.2069250031112948,0.0,0.0,0.0,0.0,0.9144557230425973,0.0,3.570656065247064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37189223032526153,0.0,0.0,0.0,0.0,0.0,0.0,1.8231047635017195,0.0,3.9000268845291073,0.0,0.0,0.5736594297520635,0.0,0.0,0.0,0.0,0.0,0.13094937385525632,0.0,0.8120296053710157,0.5447380606879483,0.0,0.0,2.077370816249153,0.0,0.0,0.791848158142934,0.0,0.0,1.9489321596572882,0.0,0.0,1.4961749311387704,0.0,0.9308834723464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.5841057675064008,0.0,2.198025481449535,0.0,0.0,0.0,0.0,0.0,3.4461975188481464,0.0,3.6624557691201196,0.0,0.0,1.0367369283653072,0.0,0.0,0.0,0.0,4.884756492539581,0.0,1.5689467387923035,1.9105991802817264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.054376792660538006,0.0,0.0,0.0,1.2988341017130343,11.666060757861192,0.0,0.0,0.0,0.0,0.0,0.0,2.0933494027714095,0.0,1.3633991303942528,1.4663454569824113,0.5592687204462009,0.0,0.0,0.0,0.0,0.0,2.9089636005133457,1.4670226514739213,0.0,0.0,2.106257262025756,1.6240872876452097,0.0,0.6889799424831549,1.7450400733357372,0.0,0.0,3.5199702120735057,0.0,0.0,2.270067712239596,6.288877306659676,0.0,0.0,0.0,1.0129691415663333,0.0,0.0,0.0,0.0,0.0,1.7851511669060647,0.0,0.0,0.0,0.7322748386103456,2.0207007681708142,0.0,0.0,0.0,0.0,1.9351458015440097,0.0,2.5367060799886407,0.0,0.0,3.8946228264452207,0.0,1.8970155983808894,1.0197791679738542,0.0,0.0,0.0,5.1275819605287705,0.0,0.3996932097843136,0.0,2.219340197890604,0.0,0.0,2.9211657520077168,0.0,0.0,0.0
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+6.269562616687884,9.223388794565125,12.787588775097534,5.188838484836504,4.45812334967865,1.9705138178947843,5.45005543426724,6.2661740029781265,3.3724448714583835,4.408902940647971,5.701224497421327,11.805813408075576,7.603118704001348,15.66508125999479,13.131325874602389,6.148397995047319,7.8496468131805335,3.9359678646578815,5.4003225601172025,8.89752660814344,15.146135149930315,0.2547554768606551,8.098883427377997,6.153904879589805,17.88255668637923,11.086100633781104,6.825121246474857,4.289424630839551,10.614696382536671,6.946121927491361,12.342424424750847,5.986484899212274,7.42951027986665,6.787887799967154,8.348139144788298,3.2970764357254265,5.845336103588289,3.951946169689498,4.787298828608186,6.766311528287523,8.656039053671197,7.79667300553389,7.834636267323633,7.002327933510655,12.44639655148407,4.65386929927094,11.836537576945299,5.410950219333517,16.77478704193444,7.9254292032615385,6.826087134291134,6.28655206957142,5.0006759467952016,19.99042422409099,7.133523316357868,2.616660230004534,6.645099631153854,4.603288329893574,6.44290594911845,17.988230269092814,2.711633744446307,7.319990524444425,2.9644095074533388,3.8703951157488934,22.477916270032782,7.226359758780209,2.9551440444664063,12.377841893609022,8.235861210675775,20.271358810859464,4.274313607927652,3.733989693752136,5.568259220897751,7.581130441250752,13.629759057726268,13.605540141919036,5.729586626432197,14.664775669011936,6.79916500411447,4.274313607927652,1.0037577894575702,20.334891424838297,12.572580370054949,5.701224497421327,6.6096962195091296,6.626071405953962,4.897057800348167,3.1733609642557496,5.526699696489605,1.9963878029389561,4.489236684487111,5.679005657054834,7.720102435328747,5.729586626432197,6.653365992406043,4.630105440203464,20.87703502183298,5.452509743741661,3.680760960021536,6.274141537929365,12.20585447130214,6.4638777162423295,5.410950219333517,4.8259397907282375,3.0667528134279913,5.805384355474505,3.5275130487240887,5.410950219333517,5.851440779932212,3.8598916498602107,9.865039080783747,5.5320704757834935,9.777588465211371,3.071440593191735,19.893318065974995,3.4893324635995957,5.696455382861026,1.8360903089777738,9.795633591169782,7.178218620291427,2.4616588705273084,5.688483574338275,9.88242639717718,5.12869634415227,5.410950219333517,3.0730974623296707,3.987649171943185,6.7497509500144135,9.667114488021921,4.4772005378702415,6.074481426811683,13.858095365932055,6.646156724196796,5.9278389443158375,8.242380520095296,4.44118688767356,5.088065075310272,5.7768090548086395,4.393289903908651,9.526787501761985,4.827140885151572,11.231279176119656,20.299990656494725,6.538823217064648,10.794069759014494,7.026771488589062,7.68887792735545,3.9925539841653928,7.79667300553389,7.230644678221702,7.577294011894964,5.964681665199248,14.364834367422082,7.749112514720171,3.5814150937633302,4.385235139002306,15.128306371069995,4.357276253711969,10.794069759014494,5.328537260869542,5.523628052167419,1.190691283137229,5.9896195298818675,5.536459288809533,9.467454376904238,5.668365251044876,13.004561399705937,4.134959359843591,8.237347946073504,4.21332368442218,5.637621227564262,5.187895130869112,4.541662742417382,5.842073395428517,9.224098437021704,3.9294960220929074,4.9706111635631745,14.814170402496982,9.037534232675588,17.93652575604157,6.79916500411447,10.523912370983165,5.771905698710206,5.410950219333517,18.68275818480352,9.412940151441294,4.856387778405212,3.075896020541385,10.00835278430418,9.26779426578656,8.25300062752753,7.786060705289143,1.6217609564122626,13.07764441295161,1.7926602837622787,6.238127887732682,11.70592661388426,3.168054814133375,4.961804364444055,5.856831778446783,6.238927019011982,0.9321813905626235,16.349987859310108,2.3754231675144784,5.472982339096972,7.99599810137845,6.4705748302221355,5.2173933517705136,8.934443813615996,4.648498519977052,6.827740304780334,5.545655828696327,4.799628949541389,15.101477227411607,8.263144847115742,11.101826466112138,5.550463555557081,16.708199595589605,17.042182620406773,5.729586626432197,7.414453715110069,3.736964996838936,4.909378306513784,3.732060184616727,14.040917410022761,6.663864843161905,4.230785217968104,5.526699696489605,8.856980643751147,8.332698928073212,3.927242441803369,5.630451272063854,3.8237385201309237,5.434714078400993,10.664348405658275,3.477598030625348,17.752263233830664,3.6803788773314245,4.115903572097306,13.960573732635979,14.55740153479805,11.164179296426946,13.571424143662462,5.6996978718001206,6.584724870570969,11.20968278624639,5.1119767657316695,10.423130619940737,7.178218620291427,6.829234335350148,3.1180641848580772,3.478964123093217,9.677022469399002,4.5283332002947665,6.4410111390875375,5.637621227564262,5.410950219333517,5.275840982340963,4.190849072919623,3.731658846716562,8.05964689106385,3.7331870179518067,6.9396898597250365,1.4324546934859792,7.009021360820086,5.701224497421327,5.62009270714018,5.637621227564262,5.845336103588289,2.7264272909874854,11.991034270338881,5.410950219333517,9.894069314286423,6.419570505516118,5.841300886078024,4.881736117456645,6.239749301076343,9.786534551486273,7.13416922145128,4.706215377117599,4.463124144342413,1.1275204366565963,5.526699696489605,2.066358331775382,1.9620041579491767,6.725977233093709,5.582441988243502,7.386071859113929,5.842073395428517,5.729586626432197,8.057625586047202,5.325129636445033,5.842073395428517,13.742462986522154,7.139821527999419,4.848158631094731,4.886817019342607,6.946121927491361,7.469023055111427,5.43948744326196,6.023900457434321,7.123231314629599,10.276182570191086,4.515550202272684,5.526699696489605,16.800833896096883,10.445716380620386,0.1668469382866063,14.474319967194658,10.131503861875654,2.9820162783139414,4.189594575280709,5.642219497507659,6.869895052457494,15.922268750145841,2.6967399033113897,16.5082157806619,3.9394484151382274,5.040167221026599,5.460360899770924,4.8259397907282375,4.789347417984241,5.7768090548086395,8.493768873076382,14.052114042402287,4.093609629016691,3.8901644604537626,12.090581465759222,6.9750556908952435,4.498864118176352,12.061188125046389,10.303003652986554,5.841300886078024,3.9729268104406223,5.047818742212412,7.716389610852261,7.310342978767381,7.584588973631767,5.888057065655173,5.842073395428517,3.6838594278117696,5.987886807237637,7.4042556241092985,36.18983918066801,6.412033802951914,2.654464953061202,5.7768090548086395,7.5006783396701735,5.275278625832765,7.412277651669784,12.48063145177777,5.472982339096972,5.019169017458298,12.860077284399914,2.3384047586371084,12.828169357381407,16.184543637352967,5.698171246178912,5.410950219333517,6.5657854838330065,7.156328994877182,6.426205427334663,7.412277651669784,5.188838484836504,7.628974334538217,7.84084253691363,6.626150515828515,4.964021842196033,12.617873169055304,6.775058311883287,4.6505649676493634,10.624805784574258,9.359209396520235,10.06643471025728,14.398589967243396,16.9142921615727,4.568822130024235,4.469921481145225,14.569196486511718,2.8929771112762457,5.410950219333517,4.581648212074397,6.434553245843962,3.764918923486724,6.866424212132088,6.868874354832595,4.426619568492879,12.662016154787125,3.5274320570249764,1.8366614820730511,7.139393472797742,13.545475498248779,2.0627410788744616,10.205588049270641,6.593256256636341,5.945433639594004,4.077837297548226,13.275892835453167,3.987247834043019,5.553113264273135,10.907560353581573,9.178881120062936,6.760257005152031,4.655240535295087,11.467814243988522,4.474838465328859,5.142447850948195,16.605595707602447,5.521328917195721,1.198734670824899,5.526699696489605,10.609767437095739,5.341009490119689,5.729586626432197,11.73731251825371,7.2251275108879085,5.729586626432197,6.778581737525781
+15.07566036706029,19.120101862816888,26.256827121153982,11.105447148362801,8.193384560628019,5.543713113793608,12.770288626622424,8.818188780285816,6.219606153316273,7.2290017146624646,12.535947704856943,17.330503554146038,1.2840263475712748,24.75721054082542,14.50135987358986,6.893371801675072,14.680183938139406,7.907469954550162,10.611002885213324,17.63588585412181,17.95620731124551,3.929037888762653,9.836673733625098,2.530508049049522,0.0,20.338880277586043,2.4277548290192703,8.543818945980249,14.891813462222462,10.591682782587542,19.230320379726095,7.572865605017159,12.29361020586482,10.93411590065801,7.1590540972016985,6.844314363131303,12.110250362302693,8.146715769896549,10.201186957679097,7.626094834911173,15.129470729820525,10.605816693064021,17.07204899195749,11.345760007216125,14.520080779462976,10.306010124517107,15.896677283453329,13.294124773607095,18.539212513723292,14.020547728103832,4.54770321251662,9.589693033873981,6.146097592601875,0.0,10.943053860101173,1.9349258649498502,14.533688292515004,10.323064389970762,11.857424486548673,0.0,6.911591651854759,12.573412633999796,7.3468770535254855,9.38365368862606,0.0,10.905271687968332,7.677111676147016,16.615072294949197,10.025490527958425,0.0,10.227276763874402,8.612173239885319,11.580222499752761,9.019426361971169,0.0,0.0,12.52638491310075,20.512805949347825,11.757895518527334,10.227276763874402,0.4507318167195025,7.640220340781987,18.60593974516896,12.535947704856943,12.784523386666022,11.220529874372012,11.487024554412004,6.913877335088584,12.877990222809041,0.0,8.081239447327425,12.543439178554403,6.255357076849473,12.52638491310075,7.651094564517397,10.314022528504786,25.870784694247252,11.996357050550815,7.777785501621231,13.678952037741956,12.717616339394704,9.451976248550375,13.294124773607095,10.73789918263662,5.153405700212505,10.570768822661561,9.353526161113754,13.294124773607095,12.485299637235128,6.868723452939476,15.54085925001737,12.876179369895416,11.520585069929458,7.931127644738168,5.295608071801377,6.002894572843011,11.87724971688572,0.0,8.009358324413656,9.890131531254445,3.252097475172708,13.099076040267569,8.961412159540512,11.615630788792265,13.294124773607095,5.928875713541544,9.044273372601523,11.573013587702617,16.850530904373148,9.87567145416611,13.256365306233528,19.381297288017215,10.920227182464128,11.753203565363135,17.914382144582426,9.88781409116911,10.234165872013957,10.057313930496775,9.036950171859626,13.728275188548556,0.0,0.0,0.2939242739720287,10.00348908239874,15.591670919718377,11.781804493974821,8.172531351940373,9.026594434430356,10.605816693064021,10.727412439573294,0.6995508162741695,11.786812497572763,23.47677164394751,14.274248970925234,2.6883196288827977,9.906679209536389,0.0,9.049092808862628,15.591670919718377,9.916881891834418,12.879025881838407,0.8867288971282358,9.610404740642746,12.591501199378335,16.42794417286472,9.216748759037165,15.725820545994706,4.4704620145987874,9.360899483608739,8.550996959778496,12.55739266847103,10.445459237768171,8.918520355646276,11.828152037032421,14.929782697741032,1.929428936619773,4.465851432926628,17.806351217789953,12.088401105035336,19.51172726147642,11.757895518527334,7.758385487244949,1.9946955904100017,13.294124773607095,0.0,15.800707417346818,6.963072577462248,6.648132575710699,6.627176590658268,16.005357441356292,12.427994027603857,10.644067739461123,3.7042646339293426,25.669124092298812,0.0,13.691094674744955,0.0,6.933002858287135,8.955746132187954,12.106374392881406,12.364740478797778,0.0,0.0,0.15410789955670548,9.806036926203234,9.91067616932814,14.875730810467102,9.380891529195596,10.520445137194333,10.307820977430731,12.271350410692122,12.588400423841305,0.0,23.069638838491283,14.896620803849357,14.482390574202428,12.86997781882136,8.914700860723002,0.0,12.52638491310075,10.408344421320587,8.601449037422714,8.118465223869103,8.619127975593884,19.04247860054569,10.879708112032537,9.468849065487934,12.877990222809041,16.401475411617938,14.308767900573176,0.0,6.230131220278398,8.58024961491122,13.286112369619415,9.907282147079115,8.189921012932444,20.680190274506888,7.4823245575425235,6.117647806283719,9.920646801828477,19.873643871362418,16.540635891874853,6.138129356554673,12.536462433596087,11.346251411969224,13.201525749222542,7.388217974469889,15.377099382608316,9.890131531254445,10.808394363060803,0.0,8.18499706005078,0.0,9.788212348161444,13.377736181413935,12.55739266847103,13.294124773607095,11.56601838019982,6.669160640132086,8.620574560621266,14.414567465449675,8.615066409940082,10.22514103935209,0.0,11.024796047294114,12.535947704856943,12.37615989700446,12.55739266847103,12.110250362302693,6.8582696931772,12.617103136990787,13.294124773607095,0.0,12.23837304195705,11.82841250217753,5.925012642876835,11.081473117226153,14.978866409649696,11.075149225001493,8.530600735180315,8.997006563911828,0.0,12.877990222809041,1.306763515693906,0.0,14.996324640859685,12.575997321693196,2.246315172778742,11.828152037032421,12.52638491310075,9.365532654056206,12.812409561517413,11.828152037032421,15.650985554480638,14.85678974169343,10.73040770893916,0.0,10.591682782587542,8.704528646323276,12.000747748711248,13.273419571687183,10.980150420370654,16.72840682294154,9.834287472230677,12.877990222809041,24.40636670573452,0.0,0.0,15.369299680122323,17.83410354480292,7.28341509018484,8.332525580226037,12.555842280702514,15.720904273483955,10.02074933931669,7.262113238538171,10.425006188495292,7.255164544157394,11.155574285694392,6.6444867949272215,10.73789918263662,9.60002530960621,10.057313930496775,11.765362346649619,0.0,9.515100233398242,0.7600606716727067,12.207990683071055,10.302267042565656,7.931586945458577,17.346627422569707,13.345804901407488,11.82841250217753,5.926362236291679,11.152994440447586,10.5281772020238,12.608186312542617,15.51623955072419,7.986452827715528,11.828152037032421,6.8300191471497556,13.285562208690184,6.383347808716767,0.0,11.968700257885695,6.091405483907559,10.057313930496775,14.677518268417707,9.172249457938676,11.21452654753865,12.6902498315262,9.806036926203234,0.24749867739558107,15.339107532632978,0.0,19.0310851421766,20.420512309596266,12.536977162335237,13.294124773607095,11.36764948419724,0.6569001066179838,6.003307862098741,11.21452654753865,11.105447148362801,4.592243068203026,5.881833464767013,11.220244730207963,5.050013815421741,13.233276953441347,10.521701972464886,7.909540544246308,0.0,20.290114725780505,17.695704367390004,15.610245691788592,0.0,8.319126293222736,8.035907981087036,19.487675557159452,0.0,13.294124773607095,11.480572373701632,11.682932183415213,6.652799070716099,11.882479475600363,3.495631372696452,9.892725719619763,23.189331876999557,9.356472955151185,0.6966106469488347,0.518038690462465,18.11216044292546,3.4135322168211806,19.118503338766683,10.65158558768984,1.2815419810205861,10.657128262970717,12.734502891049765,9.045719957628906,13.602554094260816,0.0,14.476312401062614,2.6943295810971226,2.54909143707111,15.057667181741218,6.695101300496368,8.829378695347229,0.48362090443958966,12.879801075722664,0.0,12.877990222809041,7.321435350886114,11.166938094855416,12.52638491310075,5.411393782075903,16.052791469630755,12.52638491310075,10.67082060923141
+0.825503445886919,1.0951942073170655,1.6016640889728417,0.2435331990017374,0.42784487826500744,0.34612456574623035,0.2209177342680349,1.9235847688039531,0.0,2.2351631920625175,0.41894869614444874,0.9425857422666126,4.984584842659762,1.3176528772373315,3.2312176937761365,1.1245725958670827,0.46054995338645244,0.0,0.30552292565582595,0.2927885881631236,3.2740808038629687,0.07245681614750092,0.9504040173032411,3.291264578522853,16.421087911791627,1.097655320256354,2.860596252171805,0.0,1.2860351024620829,1.7651475039305902,1.4632138713563014,2.639821768724327,0.8340914174336461,1.0482880090482578,3.330468288439226,0.0,0.0,0.0,0.24052483731710625,3.471140105106766,0.1256160378668326,1.153820074063868,0.8086918421819359,0.0,2.6257516203895914,0.22688521746825482,0.9817889299539757,0.6792169602117951,3.28235178883216,0.0,3.904635628056624,0.30483095751289413,1.583141789484821,17.350621846049048,0.30306038593081697,4.163142790411395,0.5891872604242673,0.24753312749714199,1.1100991208623665,15.797590609834266,0.22762298253041838,0.35925066810984585,0.20711213763918515,0.0,16.411660239763858,0.32636350665241814,0.0,1.9790366414526475,1.0642852966523964,16.531525941044034,0.0,0.18283498433996614,0.0,1.0401062077838839,12.746524662671373,13.108723101962834,0.40737084986643246,1.305306372678923,0.34970418248758417,0.0,1.3045413859893593,14.046639370377779,0.9089947436237727,0.41894869614444874,0.40860936944932175,0.7966104225966087,0.09411402387079891,0.0,0.2216639114010903,1.8414595717835134,0.53085294147891,0.42801875989532007,2.850689892721335,0.40737084986643246,0.9693693339968181,0.23658598101637204,3.958445830481895,0.3709290615992514,0.0,0.5055874920807532,2.62424851995865,1.720744860951405,0.6792169602117951,0.27415867488039636,0.04579111723559773,1.0389834655648629,0.35202381091561347,0.6792169602117951,0.357628157524113,0.4784696772851341,0.1488714759642478,0.21947147877256828,0.6776589034270026,0.0,13.673386488125088,0.9340266113217591,0.2791215683583339,1.1383882546989286,3.9381646521212,1.1670146246949757,0.2671100809280815,0.9830177022281377,2.7805264156497063,0.38559933427377213,0.6792169602117951,0.22037899480766654,0.16524988784885508,1.7508622910971938,0.3834102890196833,0.18148884278601185,0.4695765310480045,0.8155557702510972,0.6701196829415172,0.7432904032911112,0.87727494868626,0.19619015472657936,0.08413885786797147,0.394492180678036,0.0,3.003835257844374,5.061888812405671,9.030843169872638,16.617651803507492,1.2025507842375307,1.0225082736463045,2.237322311727527,2.766539674731563,0.18148843027922712,1.153820074063868,1.6871538623085651,4.279205273308614,0.1696275785578737,1.512061482677901,0.0,3.954555314717289,0.2190304973839885,13.48261409911283,0.0,1.0225082736463045,0.0,0.22291780266466277,1.2855698443582615,0.0,0.4862083245221852,0.3473993279869342,1.0050978199476583,2.276653795487064,3.1345789067308787,0.48892227714746894,0.0,0.44491250446441005,0.10214433838434649,1.0509921790924992,0.21967811246789679,1.9777616397772622,1.9360982776765208,1.685143579128734,3.0324177620961077,1.4120911533501452,3.747939296762948,0.34970418248758417,4.918483321119038,3.1020782446246082,0.6792169602117951,15.08694031979267,0.42937709531638857,0.43018869673472804,1.2514675823498151,7.604620187439901,0.31138836695418504,1.6423658641181123,1.1186855408746295,1.2992205678265278,1.3657438172058625,2.0838990534199695,0.5202888040213216,7.611856864352839,0.0,0.26838075573343,0.0,0.24179062364358836,0.9420867216703747,14.525889759232877,1.6530586799175275,0.2459867566382036,0.893831687699905,0.3919024756809093,0.2571837561858161,0.458383472658421,0.22907765009677591,0.9941954673744087,0.48245415906238753,4.691458986541596,0.819907638718969,2.1054124981937927,2.0414097361342116,0.21196314785297304,10.378117376639821,12.92697822847419,0.40737084986643246,0.17184065978901422,0.19268542982684034,0.0,0.1764468873964683,0.2168762151115405,0.0,0.16456405895087378,0.2216639114010903,0.4247047731649817,0.28252218520190486,4.173132978888907,0.732422507005084,0.6543192737728942,0.6695161966636778,4.072805540793787,0.19137453555908387,4.18582117347886,0.0,0.4597290170639998,5.830755725339538,0.21204948261093529,0.7363894325068204,8.24796480561247,0.41957188761077574,1.5796242462094594,3.18008498302359,0.4189916971871148,1.9680161690645686,1.1670146246949757,0.2652741854354077,1.6348964423451677,0.19589730819508008,8.756119863437403,0.2405426672135981,0.37871121323024315,0.44491250446441005,0.6792169602117951,0.3255326869170075,0.0,0.17511816323222065,1.1234160782221474,0.18017753601147132,0.46837463922377853,0.8706369059020915,0.124582029241231,0.41894869614444874,0.8625645452222034,0.44491250446441005,0.0,0.27660052179621675,3.741843551524727,0.6792169602117951,8.323970651005768,0.7487877008098491,0.21999346236651973,1.3075337689378748,0.21239575799536484,1.5751838668324332,1.3677490151336726,0.27957775528104256,0.0,1.406347894683433,0.2216639114010903,0.7945243017476843,1.38179080659754,0.6736870225357644,0.4674374972231971,5.416734055091396,0.21967811246789679,0.40737084986643246,2.0827275633612974,0.2719143178739273,0.21967811246789679,4.819669027741571,0.5047495768448651,0.26508861112952503,2.1196918182102986,1.7651475039305902,2.339823301714108,0.376244959890325,0.4902244410768921,0.26898627683419946,0.7151909438484425,0.19822152496292575,0.2216639114010903,0.7518351236038728,10.003867088697067,0.6992017107005363,5.570975312367512,0.48945759849395964,0.26540352224860353,0.0,0.443035421734511,0.46392439774640715,7.214476831131052,0.0,8.828694105909232,0.31316875392388205,0.30422303782482724,2.6658335345601833,0.27415867488039636,0.02980706642022436,0.394492180678036,1.1232812695748216,12.973130571056942,0.22056119094921647,2.9196871401638718,4.010645807976366,1.6983508618561785,0.4504771784161014,1.133994977550086,1.0489709272396535,0.21999346236651973,0.4737401227604785,0.30109957216227506,1.1217377350284221,0.3273101833923564,0.5339605208787115,1.6903067680214716,0.21967811246789679,0.3243657534714948,0.5049257530174597,4.819977646851755,31.388922211377178,1.0078895697664016,0.0,0.394492180678036,0.04039651103525793,0.44882666449075187,0.3182187012585959,2.675083971998947,0.2459867566382036,4.671826876481948,4.181584684023947,1.3388996304761855,0.8977977440761596,2.907318661746669,0.42019507907710185,0.6792169602117951,0.5466805446657188,8.344834183056422,1.7826432173610656,0.3182187012585959,0.2435331990017374,2.8200943018442097,4.368196324360472,0.7968723345712928,2.040340572837367,2.400892136661366,0.20737681933156835,0.8616528014298949,7.6086867578020465,1.5369565639605076,0.4554322110851807,4.348255595190642,16.017637975816367,0.7032734412294717,0.3546557242636338,2.3749560127775826,4.059545984820523,0.6792169602117951,0.5156561116487541,0.0,0.7049820728787015,0.3386668671544201,3.987376821955355,0.20213675281489898,0.9235747045109196,0.3430353810439441,2.922013492133842,5.736856568122024,1.2112694977960583,1.3488392162652025,0.7511733671733155,2.516837212798543,3.5706469659232254,0.45182318623160106,3.9819465315199927,0.16392116368460766,0.7066655716241895,9.994056759604812,1.278173018752768,2.685446622320588,2.7036943490225367,1.3847467915097553,0.30841811533171265,0.7753778328996909,13.378759550965476,0.2238563440296123,1.0353543343128928,0.2216639114010903,5.538472715793882,0.0,0.40737084986643246,5.713172012796664,0.7637144251176368,0.40737084986643246,1.301531993107624
+0.9917351540213888,2.4575953449005867,2.9970411107018684,0.5483180647564521,0.7234718912789071,0.0,1.192864144843925,0.6438867802381859,0.66678017681582,0.14967893782023495,0.8101240151669068,1.9223677259281333,0.0,2.476792827834367,2.1735924073323507,1.1338238202451134,1.0596299567437337,0.35235360015098605,1.0742996736161545,2.420347329334873,2.285207827704812,0.0,1.5774399747720997,0.0,0.0,1.7360682373868772,0.0,0.4352506311535663,1.649245789480321,0.738205953588527,1.8393456445808223,0.5226956647231307,1.2113757989553686,1.0597819993313586,0.0,0.22974151675809568,1.2900916290163575,0.6864762646678534,0.4158562051749492,0.0,1.1965155188781822,1.1477675468764375,1.5261328441909547,1.390481349543898,2.1804348966436655,0.45781566074547364,1.9688570039817548,0.7151773633183908,2.8608771492125573,1.377039420532269,0.0,0.8876980084964203,0.8589792975700317,0.0,1.0447768704726552,0.0,1.1244954123168494,0.47366200997113944,0.6438777133026985,0.0,0.033544859565381585,1.023888738344028,0.08348483642678808,0.655346127085343,0.0,1.3541588666542377,0.42573348100618,1.8695401105564757,1.289595823929328,0.0,0.7869049813628198,0.2296824544126257,1.212667617738536,1.1720824312291886,0.0,0.0,0.8012385349829151,2.8480494226154627,0.9289254901302681,0.7869049813628198,0.0,0.0,2.0694709220635663,0.8101240151669068,0.8380210279284681,0.7726046800002894,0.9789592256008767,0.5431773663145008,1.204030457351833,0.0,0.7134564950771027,0.8170848842085813,0.0,0.8012385349829151,1.0111500938985103,0.46526056372713204,3.5371754548844394,0.7238145237050939,0.6424622968087049,0.9826105006530479,2.1829362934515024,0.7115544742091681,0.7151773633183908,0.5329588396993781,0.5711910498475444,0.48205984439348143,0.11489106269129638,0.7151773633183908,0.7630632391210833,0.36502990494444054,1.5741019517315284,1.202347863179508,1.976810268996767,0.45395187391039893,0.0,0.17082559099042716,0.9975038626259352,0.0,0.0,1.2711791310464196,0.4431642470958003,0.7249600015977107,0.7998526208684659,0.6962103924281872,0.7151773633183908,0.44414362532391427,0.2793379629664093,0.9529959377676357,1.5795184146871317,0.38411305899390197,0.9161107849131427,2.3685855117799117,1.0367796174775614,0.9921353499833634,1.6564931382360901,0.39539565964257645,0.7012494941131866,0.7327878952830236,0.8064664372874392,0.9061720525698819,0.0,0.0,0.0,0.7501124132502378,1.7228140269500412,0.6886976398903875,0.04964179857149556,0.2777591017481154,1.1477675468764375,0.8586576703446008,0.0,0.9134721132594305,1.994298820307095,1.4327892318900404,0.0,0.41292460304056766,0.0,0.8177490379361134,1.7228140269500412,0.8998940175560713,1.2049927629229917,0.0,1.1912382054867918,0.8617427774809124,1.5130186989472263,0.8591289152640921,1.9867954396002971,0.0,1.7205561931786648,0.7336473338537474,0.8300500790295807,0.7344993519831391,0.300935034375284,0.9518836637824449,1.0259032288611543,0.0,0.0,2.260758819867794,1.523199182901948,2.9666104227727876,0.9289254901302681,0.0,0.0,0.7151773633183908,0.0,1.4006361819892073,0.8994829737798087,0.05354002753054189,0.0,1.4465189832073215,1.0547952651918449,1.1511836510072857,0.0,2.7771199229134704,0.0,0.9938931013017218,0.0,0.5448854183799248,0.6012124451968994,1.2864901860105242,0.9801790311790122,0.0,0.0,0.0,0.6992812426205215,1.27129271864751,1.5184018545017754,0.6502468439087105,1.8542930848459689,0.4594982549177988,0.6781974392407256,0.8588616230762463,0.0,2.791245491112564,1.7983344720413947,1.6237470071554476,1.1965855543701744,0.0,0.0,0.8012385349829151,1.5141315643593998,0.22872470303630432,1.0137339058987185,0.23030356425459814,2.836689111147614,1.2187673742341252,0.33226113224732157,1.204030457351833,1.141107234057568,1.2231318824011344,0.0,1.1505774085644382,0.26880320264627017,0.7077324603367325,0.0,0.18090643739507523,2.628071506158491,0.303319201439175,0.8125450246729059,0.0,2.9330498565058125,2.020408657085761,0.0,0.8106022867980813,0.5982261399177293,1.5121275891445995,0.9485173724916198,1.4066983151581303,1.2711791310464196,1.2341605394139192,0.0,0.18046669162695855,0.0,0.3679087486865899,0.8658071650477649,0.8300500790295807,0.7151773633183908,0.6501119219535225,0.8511029637139759,0.23043275510172823,0.9411605725157003,0.22994083610688631,1.2793359666348498,0.0,1.049060644383855,0.8101240151669068,1.8323939110080822,0.8300500790295807,1.2900916290163575,0.02878281040697943,0.7512319090778202,0.7151773633183908,0.0,0.990655490849753,0.952125680752437,0.8034081833915713,0.8463844387559547,1.3490016574627122,0.8897131624432195,0.5521780464850883,0.7845450620914753,0.0,1.204030457351833,0.0,0.0,1.2282081183474276,0.8473370054575801,0.0,0.9518836637824449,0.8012385349829151,1.003291944246949,1.2320017462769153,0.9518836637824449,1.2417026980601304,1.0985561701374333,0.5259979706577038,0.0,0.738205953588527,0.7739573170195352,0.7278942383421017,0.9319571341388085,1.048089870369736,1.516683886026022,0.37202360138965673,1.204030457351833,3.2736031176942566,0.0,0.0,0.2467815483613907,1.9149937163269513,0.07781720911879016,0.4020007732836136,0.8286095018272472,1.6514012859815859,0.0,0.3776052815538067,0.0,0.4050748503496551,0.5948948068622917,0.17226283190918928,0.5329588396993781,0.601257903533337,0.7327878952830236,1.2815044385437406,0.0,0.375236431347328,0.0,0.2632917442059054,0.8096232716327898,0.48761590172396846,2.1255869388880595,1.674650611710888,0.952125680752437,0.6734190599004739,0.5924976863976089,1.1378173465391563,1.0269942875538902,1.5322539238920077,0.5003950577606397,0.9518836637824449,0.35604045163784387,0.9432397347874828,0.0,0.0,0.6538154707742565,0.4475930082587683,0.7327878952830236,1.9546073021855452,0.6316135486495393,1.3898269608979195,2.093289512050945,0.6992812426205215,0.0,1.4043969418431552,0.0,2.118505320775378,2.8840698690809656,0.8110805584292561,0.7151773633183908,1.0954833723790471,0.0,0.5937222527436643,1.3898269608979195,0.5483180647564521,0.0,0.0,0.7725792144967686,0.0,2.210541733016472,0.9930648465632177,0.5074090090242946,0.0,3.077761328516696,1.7125178461669421,1.8871545278228936,0.0,0.7564635827211464,0.49693254935355363,2.214610952261064,0.0,0.7151773633183908,0.4236064158275296,1.1048948705171455,0.5526888824182769,0.9430681819008627,0.0,0.3999594082195681,2.5770141507857076,0.11575271187868198,0.0,0.0,2.545866860076521,0.0,2.056074713619984,0.5656291713273776,0.0,0.3305530947770853,1.0167011573580833,0.27946715381353926,0.764512203079872,0.0,1.2819883521377078,0.0,0.0,1.8935576722211904,0.5517291715435552,0.6116889048676404,0.0,1.205713051524158,0.0,1.204030457351833,0.0,1.1548113652126304,0.8012385349829151,0.0,1.39445740769719,0.8012385349829151,0.7235115369809516
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0916206572525238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.426391477670785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059101927023256604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3192881686879536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2817952891935801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8768474906124935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.074501689212292,0.0,0.0,0.0,0.0,0.47715052837216276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8756211273754679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09479755909312731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08693493184153511,0.0,0.0,0.1228457429420244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3101958318817002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3568819362435269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.740090035927105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8198329849812171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+8.599354047760535,12.290820712008621,16.259095833635367,6.270437527943496,4.864956038220335,2.704155445530503,7.766899524428072,4.516690670692362,4.194112787196835,3.2026039485035187,7.270497883110847,10.416886936681953,5.046704547006709,14.707427662485854,8.228200984258304,4.338322348205044,8.392473039996796,4.608439207946414,6.565669702882564,11.767035600565757,10.250546412937837,1.7885544202376875,6.17855895077929,3.950392869760724,12.317633799256868,11.950587410045822,4.50196113684002,5.01946640904955,8.759085853497405,5.752457985292671,11.199151281127953,3.530630234447873,7.265409700273988,6.332296483529935,5.109902314758957,3.933482773324026,7.668395851808853,5.0273490657118085,5.653846420388595,3.663943346620787,9.041626740843155,6.134870412186281,10.295005080290528,7.272260525721639,8.538582122854315,5.78324565215693,9.771510303813091,7.417466842507355,10.942291565103606,8.579247320035243,4.1949463951140755,5.805833559922625,3.5205597173454786,12.296670675680133,6.651578945478513,1.6602640905214667,8.601278321241509,5.8115153954215835,6.440557317953289,11.669000941753158,3.604871102194139,7.382157853504574,3.884732750179929,5.505026624789169,12.164023975292757,6.79744331331019,4.393323378783643,9.562574390571056,6.073053045307724,13.287763376598559,6.065462835397787,4.68434075799657,7.323007611434509,5.454367301491097,9.49863719775698,9.086221386691225,7.254646267069358,12.894270567180909,6.876696804873526,6.065462835397787,0.7132832267445821,12.627630580276389,11.226489178533777,7.270497883110847,7.229233753010661,6.4314896374799595,6.896690476920283,4.259732203465941,7.83121642724685,0.9885784311862084,4.754423100074043,7.282916010334011,4.756262329769033,7.254646267069358,4.627787991400179,5.796527291537997,15.101959065458196,6.909258026695013,4.812888643329354,8.02242051793098,7.679032967348867,4.992200760263975,7.417466842507355,6.080168605753989,3.382347435941574,5.570616712252546,4.815486331122552,7.417466842507355,7.186541885568153,3.773221544441538,9.58312051074938,7.8282146945074755,7.6025979712427025,4.569104575893133,12.630625410483782,3.119517414161433,7.288428906153715,0.8362711494195175,5.882231460102173,5.927499309013306,1.9858777120963684,7.242362655251532,6.074712109192457,6.69714430289191,7.417466842507355,3.4380569432656314,4.961062927801211,6.284113705823652,10.156531197926006,5.488892675220295,7.74091742429646,12.012706685666354,6.377832163955003,7.0940971848708125,10.853303070317674,5.509020732424728,6.145478783587632,5.797227149071095,5.62113916632527,6.836427088934502,3.374832387622669,7.474985641596687,13.276453933275585,5.445843715947948,9.29971612368234,6.139070031299296,4.388491159803135,4.943638138420258,6.134870412186281,5.8018030021158,5.11119030832402,7.138517027597927,13.443184633176754,8.855780002353,2.3576017197080663,5.540292208428753,9.617304719704094,5.641267223529703,9.29971612368234,6.026236742427381,7.832933171656012,0.8092979182017918,6.158517090649042,7.36258528680712,9.875028104291484,5.276943842736247,9.155611227771802,2.395250151204335,6.328295399176357,5.2766522121003145,7.3060458002778175,6.286230330404892,4.628726793176538,7.207042885271443,8.01774740036275,2.464485056637574,2.9454574906312727,10.25201079995744,7.1092284873765585,11.310113741251012,6.876696804873526,6.460656606734926,3.8205389806889,7.417466842507355,11.465569400485585,9.369728268758596,4.2950733318434855,3.2267499852004913,6.674275231294205,9.593525010656961,6.881272657918229,6.172571569383466,1.211574449276428,15.70389022566581,1.131760877624588,8.042548575135411,6.181500821055323,4.278582782064533,5.1589938035701115,7.661970910157797,7.18290836797798,0.0,10.953667515132471,1.691829134436965,5.698728631471326,6.06839415143542,9.161996865377512,5.428861217520719,7.064334385116944,5.786247384896305,6.650086368054977,7.357445333486274,3.0660814972915444,14.293389141482145,9.094628428976119,8.206382564963985,7.817934787865784,10.209002698514329,11.324633257472483,7.254646267069358,6.907767362174092,4.67377072446965,5.284690110467618,4.691195513850603,12.480533242727688,6.956566652720907,5.233521104268956,7.83121642724685,9.452925008797134,8.495901288577171,2.5438594830881947,4.0075275862344935,4.609821982059002,7.404185203126289,6.392722420125983,4.4173249224812405,11.592874335628984,4.338571793995807,3.8500760165809838,8.618554361061738,13.001417492030312,10.154963239795048,8.533410402820806,7.2713511153621075,5.936732762681821,7.035731215582388,4.564940745794093,8.594652839010909,5.927499309013306,6.827053358328073,1.6595206711525436,4.412471755336585,6.663842300951048,5.395974829182545,7.732610324809192,7.3060458002778175,7.417466842507355,6.614905049758378,4.303718972264956,4.692621303068242,8.032020426618566,4.687192336431847,6.316917526367676,0.6422347703899552,6.772807286671351,7.270497883110847,8.301055183821672,7.3060458002778175,7.668395851808853,3.552315689061264,6.950914753686737,7.417466842507355,6.987442119233809,6.999132826244616,7.2074746413503945,3.365176260689686,6.50833087332315,8.500477141621875,6.144540794817477,4.889126389619504,5.567083893613023,0.26396563014649577,7.83121642724685,1.4535027245599224,0.9719529349531768,8.949169051968074,7.336885520202892,4.723104728723946,7.207042885271443,7.254646267069358,4.920322021879071,7.836720650338442,7.207042885271443,7.812599175004989,8.717871152530014,6.067750478530825,2.6666136148275257,5.752457985292671,4.2084436093068796,6.9165362005973305,7.769187167561112,6.688142213203928,9.83659271790874,5.441387586715517,7.83121642724685,15.448587409710457,7.007690340913832,0.0,8.302472884671797,10.997087920928218,3.8221831030118723,4.87871486223229,7.303475823617394,9.725003052646553,9.775665488508245,4.1334570536240705,10.100959525437485,4.079524147767681,6.353530013328289,3.17175350857774,6.080168605753989,5.7227923870569,5.797227149071095,6.8709093981268685,9.534334200056442,5.310188648002692,2.711435738629671,7.044804244807019,5.531935588165191,4.447890079318057,10.501869461499606,8.152305820109445,7.2074746413503945,3.696693567339472,6.349253572165345,6.099008313472232,7.41643163277474,9.663835697940186,3.913835377314475,7.207042885271443,3.8096567338170733,7.789315224765544,4.2573622384168575,22.072258399091233,6.550233411617826,3.74741639898086,5.797227149071095,9.796082189045162,5.223218541899713,6.993747471349562,7.374548813646597,5.698728631471326,3.1729498266500005,7.53095419660054,1.015368194398233,11.496356592484384,12.206639001860319,7.272204347613369,7.417466842507355,6.800258940087351,4.906820744906162,3.98985333445529,6.993747471349562,6.270437527943496,4.951276747206572,4.687830386058075,6.431208592489943,2.8116465875419006,7.952585826256592,6.426111769108735,4.366935875395196,7.1839441044099,13.572878932835623,10.719537385195045,8.34993565200466,11.713250976147764,4.929665396195688,4.55071141712856,11.200552257269367,1.8492489449672105,7.417466842507355,6.201437798546267,7.129572674199303,3.7940162294334825,6.958828505602303,4.326788759347708,5.517162418484947,14.379077602443813,4.820874913853256,1.201308172511623,4.5989085101674565,11.243250442842607,0.9583127762201481,11.821044332140897,5.323431280273229,3.984204566604554,5.707795142913777,7.972786886198882,4.96248871701885,7.623951650509096,7.47024811844349,8.303480106422338,4.4407834152177506,2.857106767859271,9.183669262041544,3.9970171438073976,4.975218261836747,10.894165109831265,7.834218159986224,0.68018504011308,7.83121642724685,6.39917717210361,7.056924377762525,7.254646267069358,7.431667695880338,9.652926786054376,7.254646267069358,5.889682880021292
diff --git a/data/activation3.csv b/data/activation3.csv
new file mode 100644
index 0000000..ad1da93
--- /dev/null
+++ b/data/activation3.csv
@@ -0,0 +1,9 @@
+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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417
+8.317344467466226,12.678279573405263,16.258268736350583,6.569129412390783,6.12218737244202,3.0036139478713975,8.020827122230923,7.125274485491379,5.285490265295529,5.0727433519958876,7.401874755952546,13.209719194097712,9.083492351330818,17.420748410420742,15.408649680763752,7.724568344366547,9.17052696540118,5.093895220905856,7.374185881011185,12.441493489410407,16.562659902210285,1.5146196616941978,9.866985403036482,7.402703095420148,21.67478379137532,12.99015097096389,8.490401884012291,5.505813553581772,11.906041181263985,7.8186084850749875,13.78086866053393,6.726659454540307,9.379393438213963,8.677253466698991,9.650689700817406,4.38876627881012,8.340217980505445,5.904241366333951,6.047362058747956,8.468696245031573,10.25351622223559,8.817957008515846,10.272566824802594,8.959860394291319,14.461646051599372,5.991293479641318,13.21137589610828,7.180518138061673,19.697953161680164,10.204342676250713,7.879599700792277,7.392983920744146,6.235837549371802,18.18774129847094,8.320958267103029,2.880028517219085,8.668099277608126,5.9755798592012415,7.580799644071693,19.874144900991894,3.773114828263764,8.557645916392941,4.04998624437228,5.897314867720839,18.29538977863864,9.173650210016683,4.809427755808913,13.840581519380775,9.266634164140129,24.144097904481523,6.421427496910113,4.893077828228938,7.998974734807539,8.549184312604531,16.842599051615764,15.769969924010704,7.410685811486583,16.49433429589595,7.986967112285606,6.421427496910113,1.1509760370695257,23.92685383109134,14.049691444071591,7.401874755952546,7.811772466823116,7.748075799293385,7.231569942095296,5.0521917755721635,8.100742314859062,1.6858595124501394,6.156686178244335,7.394972191046505,9.237214174625118,7.410685811486583,7.532400845759268,5.98391093505638,23.595306832994957,7.0626831991434615,5.614457952039317,8.141215473391092,14.428462980910838,7.341081410734178,7.180518138061673,6.250569843822266,4.564055485185769,7.16599908117155,4.707985555780864,7.180518138061673,7.448541351637681,4.767073487385731,11.313121853225372,8.102410815647607,11.673006806827534,4.944773271632725,23.686727751608803,4.311864019656261,7.531572397305494,1.3369406317206072,11.742614015848288,8.840266362710253,3.898249803578013,7.196133906289223,12.044735580952999,6.75626597364228,7.180518138061673,4.887843925257785,5.17092911739528,8.386443784749357,11.303623381631102,5.730588604511274,7.873368043515557,15.425628366139227,8.804443331976776,7.458545762126899,10.810878716612411,5.719400506757938,6.5660918599156135,6.867004112320431,6.440850284508924,10.940298037187688,4.233955672574021,13.854498313969108,23.81977077257889,7.705115519546493,12.101523228669762,7.657030652353386,9.302757057265877,5.176367626812304,8.817957008515846,8.18105366070806,9.378244828742181,7.614900297988282,16.546014645826286,10.12977595778207,3.3282873156967256,5.702018385529312,16.44467536030768,6.42693532942237,12.101523228669762,7.363381897541607,8.099788069545065,1.4144478076738478,7.836362796758709,7.350688351624465,11.035775951755564,7.450480370236681,14.496266140317072,4.593502310457442,9.984696669326562,6.189172694183169,7.382115592504623,6.7000155748533805,5.49747347624214,7.576810482041532,10.631454437857226,5.234871439618413,6.478481302413772,16.197982874385,11.162374878713807,20.99615071350955,7.986967112285606,12.235616275491699,6.911546503848217,7.180518138061673,17.800847525225944,10.851058436947035,6.577410680353437,3.6083271592137938,9.638823308972576,10.767928521880028,9.301016660673232,8.80618997397862,2.3478521303280555,16.14255772255399,2.4096904658895317,8.130027375637757,9.251252535649684,5.049566704211768,5.973545341722805,8.344659679652075,8.38872228845779,0.7660445444649758,19.308593421494077,3.01365384916439,6.533526841705392,9.003151148146491,9.366966836514642,6.2535360917141,10.74834613955884,5.989624978852772,8.285962081136724,7.353545373522662,5.986003639227889,17.519979612440352,10.092856638411698,12.442767230249256,8.108124859444,19.62494848735468,20.243508192263857,7.410685811486583,9.062977599197332,4.89637687682101,6.6794552000937895,4.890938367403988,16.342277622116097,8.82371471285921,5.44821607530531,8.100742314859062,10.507028489810196,9.666911612233365,4.985627984365494,7.260199716134553,4.765212011022546,7.187900682646612,12.408758577472833,4.612197062534466,19.59449961214877,4.811827607267978,5.482238205562551,16.613286994559317,16.90814263936729,13.489740154389963,15.84887119826411,7.401400490317446,7.738050014705504,12.517205653496745,6.857401430344732,11.680007614225316,8.840266362710253,8.687279251286874,2.2258897008328042,4.613711800798529,11.374787066528071,5.763627252313001,8.090145393501011,7.382115592504623,7.180518138061673,6.801978324013415,5.857116644274665,4.890493359552399,9.352229729997843,4.8921878125257585,8.860125896782781,1.028437524348327,8.183838429098827,7.401874755952546,7.8885770287545744,7.382115592504623,8.340217980505445,3.789518074408655,14.622027802485217,7.180518138061673,11.991102213250189,8.304678929636767,7.576570492202084,6.414459519261191,7.373499091679273,10.980961160620994,8.074080619460569,5.693554591731512,6.4683765936097055,0.9583466328528986,8.100742314859062,2.7464362001261535,1.5491972284591322,8.899045412646561,7.364973461115446,8.537561194845933,7.576810482041532,7.410685811486583,9.200558399826894,7.982017336765828,7.576810482041532,16.55251336870235,9.027611398065385,6.257472408728309,3.348280343473294,7.8186084850749875,9.293262002057846,7.058637656135615,7.857654423075481,8.309546383062747,11.798003728168403,5.749453324347707,8.100742314859062,19.11647982165069,12.31418178891206,0.4224898201754424,17.077242214706693,12.548756088833132,4.069508824399947,5.375229566199116,7.383544103453721,9.902661696265712,19.313445662230432,4.52596742249292,19.348304259839594,4.853582341757631,6.5229427963845446,6.092987163330236,6.250569843822266,6.164560704941758,6.867004112320431,9.581606478748121,17.443041875754584,5.405600736671818,4.442923365068859,14.570621574338094,7.901062910716765,5.467050362363963,14.474126010047957,11.531431396160517,7.576570492202084,5.558603779762273,6.525319838603844,8.729867194237018,8.54694861226819,9.914424723199254,6.926751825253051,7.576810482041532,4.573591591766339,7.846466325322144,8.851491008869356,35.96912223842586,7.546568270872496,4.484238262681287,6.867004112320431,10.566801470121106,6.317719916462593,9.377318180266373,15.241002137056865,6.533526841705392,6.232423241194735,14.500891284122996,1.6245690573891833,14.329682194062887,18.165833180846587,7.400926224682345,7.180518138061673,8.431913281786356,6.470279973383767,8.001456750157901,9.377318180266373,6.569129412390783,9.080336298227758,9.659441244010049,7.748163517187207,6.612399423556603,15.116710668555895,7.927826756033571,5.3509150911686945,13.05884222932759,12.904665568667653,11.83931824138217,17.84520479759496,21.00056626364841,5.960588558716567,5.434958449989717,16.243106542007308,2.6460115252752314,7.180518138061673,6.043498335422373,8.575461907524224,5.363782066419351,8.06061556599602,8.358374969374221,5.714874984071196,15.321334829764131,4.708939180038042,1.8405952004333197,8.610421717517731,15.835564146590944,2.8779630882896514,12.500009436098972,7.18316245057503,7.115435463998136,5.493437232713573,16.15963892559079,5.1704841095436915,7.374398694901114,13.663713946878428,10.314006619390915,8.414188781690743,5.6672278613863325,12.525006828657263,5.4079998634665785,5.889501982901783,19.43424919031761,8.099073814070515,1.0991024565558352,8.100742314859062,12.714810639666743,7.727146682090322,7.410685811486583,14.331194789480174,9.5686639873354,7.410685811486583,7.917180922358243
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12574336246685272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0190773990869955,3.0571653182168985,3.283516316857495,1.223404437069737,1.913023534253141,0.3686266718648792,1.608049575107002,2.6004159565336322,2.055904887566895,1.4610336319900876,1.3415074391328368,4.45493154504529,4.919749880889063,5.0886126896958555,6.337120766684392,3.74666067218706,1.9819210268336647,1.3116262102851923,2.0092324670496713,3.52933912694538,7.089806963660776,0.0,4.475084038030328,3.8988101865002434,10.793846491288571,3.0167228969647857,4.725817810404856,1.4089035690389797,4.299905544722062,2.551116285517528,4.16773153538969,2.1851056936786275,3.059015265191486,2.9930542261845012,4.242990256004673,1.1305215641177884,2.222490245795556,1.7496977063230736,1.142912583565018,3.4096746224745287,2.850566029665924,3.3651905045690698,1.9426466950778374,3.1087817241078044,6.223381175684756,1.046623804186741,5.090439197969334,0.773748582363454,8.453766052238837,3.088837859044238,3.540947094893851,2.619164587306938,2.6546274298124324,9.015019704272836,2.875145316323557,0.646067104403025,1.6081710945741219,1.0227725745051437,1.7850549402473816,9.244647980927352,0.5052184969432928,2.3628978559039626,0.5696027553005786,1.1761408270176874,12.344271064641116,3.4551712400718175,0.931421329460409,5.251592683140522,4.047271608211928,13.290501226917488,1.2807054321352234,0.788566544422113,2.145277761541253,3.834033922203007,8.220872537600723,7.372458235198627,1.3548814741033888,5.914989252321621,2.1990950478284086,1.2807054321352234,0.4888860015007821,11.852091440792753,4.667442580654406,1.3415074391328368,1.5743878036651462,2.254807494432812,1.460508553984927,1.5109012687433687,1.633903043037182,0.8831388636674903,1.9843888637372062,1.3310302444217936,4.236190968538442,1.3548814741033888,3.509945956487765,1.0354180628236056,9.778308419090115,1.27225574711508,1.6490941596292754,1.5087291580805062,6.280405356907052,2.538480262386472,0.773748582363454,1.0900220282743178,1.863706683791728,1.9318784511306877,0.2650237366678019,0.773748582363454,1.4123412546999647,1.3844694113267986,3.611435973091213,1.6364356099706456,5.423206827253983,0.9469529895807491,12.298099982094337,1.385453865327048,1.7701399048758588,0.872445426591654,5.4295586572812,3.5628604423216825,1.9705737065525235,0.8677445571393748,5.4523097084448215,1.1573038339827129,0.773748582363454,1.7510225980402812,0.8549777994245895,2.418158909171196,2.9977688736496,1.0010572864917455,1.4523211723484217,5.60402621052023,3.1057606074984703,1.7597781356008915,2.059434980430797,0.9840752109584493,1.6256369302280909,1.9157470003495876,1.8511609439665881,3.8579359237074877,2.1416655830590825,7.602361945236825,13.06331177652982,2.632769416828745,4.1959251603362295,1.8737675607799984,3.9303454784588903,0.8662280733810848,3.3651905045690698,2.750991297995589,5.478966168246629,1.8966208075837596,4.813952343714521,2.919512591113858,0.7088289964829587,0.9576914143433878,7.66734344943166,1.8319950631419812,4.1959251603362295,2.2899523692112376,1.6324546229074275,0.5501663012844527,2.8361648341651593,1.263813142591839,2.9413608879175146,2.6273296566783686,6.223321780173619,1.4302885610879295,4.8423050828726675,1.8326284881020578,1.3115156019550318,1.6538409230941327,1.1725197194111099,1.8388054268355691,3.150703153352738,2.8091132279017796,3.0984985500513615,6.8437852177155545,4.657520060721933,8.942434257582956,2.1990950478284086,5.566141375490527,3.6204691103050957,0.773748582363454,9.006230527310866,3.040237872542323,2.7983286465751687,0.4651387288874269,3.042760727116605,2.8849529021854305,3.0343393454744074,3.3408488417993114,0.4772388908976485,3.4580316003154183,1.3175353380852701,1.49174708254721,6.409185742162009,1.5013399656712179,1.5925920430597515,2.2286080576011646,2.1220670371060946,0.6225051600432925,10.079215933941189,1.6945889325899754,1.734266066799162,3.8720087725175407,1.9005666984784673,1.6634290549294561,5.035506631812482,1.0440912372532773,2.2152264986095083,1.2681497298066755,3.256388047511277,5.758807810282544,2.5856252406331923,4.901833380659226,1.645108784400318,9.299204984617207,11.36157739865958,1.3548814741033888,3.6389269933493504,0.7953910615113798,2.4418586323951494,0.7841407875548841,6.440076037821702,3.2243951477143074,0.9226020913594362,1.633903043037182,2.488728652110262,2.6241171190466384,2.5983146452808747,3.4090780267779013,0.6866730830345703,0.7849543237265896,5.3291021636568,0.71588841769564,8.118324831604658,1.2391259409485533,2.208304919015181,7.845198080926174,6.593920892945992,4.896735049498685,7.795268677844066,1.340787565655175,2.1103480699886994,4.780795300602382,2.869165658444873,3.8887096368019236,3.5628604423216825,3.137513650628613,1.6028565989381995,0.7190218535576383,5.7698208000374605,1.0643304971776626,1.6062861944446998,1.3115156019550318,0.773748582363454,1.2266892294200835,2.3112787614047785,0.7832202301265002,2.2837208700051383,0.7867254295653457,3.453539878877385,0.6092021112623835,2.730069096758213,1.3415074391328368,1.7607823519380161,1.3115156019550318,2.222490245795556,0.5391507748443365,6.258389867695557,0.773748582363454,6.112325527630555,2.0986148945335277,1.8384411535095222,2.7328066018424324,1.9467771024082778,3.4593614166926394,2.5297034546341473,1.521755031190046,1.8946982449963512,0.5805951992546935,1.633903043037182,1.4302292127530134,0.8354305673444358,1.6085677198393873,1.2854960786660181,4.256714154503995,1.8388054268355691,1.3548814741033888,3.700802485083616,1.5491413743806715,1.8388054268355691,6.515741983354961,1.803714144506996,1.1004992229853605,2.4041463433445456,2.551116285517528,3.807732489682706,1.2661151396188717,1.4284699426668255,2.851538329193758,3.4740367515128794,1.0350098579322722,1.633903043037182,6.613593435092978,6.201792572647643,0.3153253772660617,6.895051387633567,3.5608646047370707,0.6099877867140415,1.3833741989401553,1.3136838955624504,2.013382669942637,9.480741082749455,0.8538483542393098,9.049788187181143,1.3092439955809307,1.1532991681547027,1.9827332610644763,1.0900220282743178,1.5413892249560082,1.9157470003495876,3.558392053508883,8.820877343940548,0.8579175564629461,2.2116056393526473,6.317166004404092,2.680154286125882,1.5615619410010608,5.407984673645747,4.665417126751103,1.8384411535095222,2.3959786530581257,1.1569072087174457,3.3215393551300094,2.340769071567817,2.331101025205192,2.703772066637775,1.8388054268355691,1.238406983711225,1.4114878671335283,3.6390640178334532,17.858516933283276,1.714242830371721,1.3519933801469637,1.9157470003495876,3.134847500146836,1.796201760946321,3.506698765272219,6.717634850805002,1.734266066799162,3.399770970745751,5.39811296769846,1.2989259078238333,4.738279592524111,7.339262014117094,1.3400676921775114,0.773748582363454,2.624109947004122,3.0489788391321335,3.629421356477063,3.506698765272219,1.223404437069737,4.542455685346948,4.3744421392463515,2.254988950464367,3.0062879300809398,6.662061358568945,2.70883596785641,1.4717234454200623,7.401413619091713,2.817157807628485,3.1105848451137676,7.4140274879211505,10.271151346407708,1.7291377052435302,1.495175587992629,6.154646300007555,1.4792104886739472,0.773748582363454,0.543946107579114,2.6249233929168514,1.8692444792071243,2.212872338413675,4.105729238187774,0.9772060568101494,3.8438886596308683,0.2647962773398154,0.7415050734754796,4.735708401665749,6.284874180798278,0.984142375934952,3.0629794415682325,1.9102302509465499,3.84227084613977,0.4019721001478169,7.112701505411666,0.8540572419962051,0.8133318747466454,6.8945077638073435,3.0963995495917866,4.6429089644534365,2.8101177209583366,4.837718451741166,2.071488742817487,1.5691399004871844,10.632159444181783,1.6313704761037189,0.5886206601093412,1.633903043037182,5.840816280929375,2.0795362730101496,1.3548814741033888,7.463916045697053,1.7495876841695979,1.3548814741033888,2.6046237429754453
+0.0,0.397937338319446,0.0,0.2271289441097555,0.6275678184542414,0.16225207588836338,0.5677467407596954,0.0,1.0701987408119684,0.0,0.1684713874310123,0.5239271250667555,0.0,0.21315099215567843,0.2183174541891806,0.9276383365200895,0.07943575583677753,0.4974299417456202,0.5992893182851105,1.0629469170914472,0.5120445013936893,0.16330801457538574,1.1638693160861922,0.0,0.0,0.0,0.045587563318310244,0.5019575242468339,0.4864230566740982,0.0,0.12924950156817244,0.0,0.6889216172892447,0.6679749090412339,0.0,0.4901477750512471,0.8844408909241839,0.866968143222908,0.2376309172594552,0.0,0.6278279834175343,0.4217832961301834,0.07928847967524796,1.041936316637884,0.6954861256792465,0.2125848383451686,0.8175668379147615,0.0,0.9202735681834824,1.04762605840763,0.0,0.6334777398730672,0.23223087997686914,0.0,0.6539639354069239,0.0,0.1300131162174062,0.2010947075809314,0.0,0.0,0.18786518781584613,0.36313363017090816,0.19448873879425535,0.6135236782013513,0.0,1.0913181419275821,0.604268106183465,0.511305100357438,0.7285635714623042,0.0,0.6202829957130415,0.21368103107354033,0.8781490991189399,0.7133786302419288,0.0,0.0,0.17491421711772306,0.6593870427936811,0.350807293466565,0.6202829957130415,0.0,0.0,0.5432890075100258,0.1684713874310123,0.05083481521693724,0.23477903473078254,0.6025978179273502,0.8465835556615355,0.570576473474794,0.0,0.6256922070727153,0.16342408635348538,0.0,0.17491421711772306,0.6927913500676205,0.20718656600066188,1.0686135425715313,0.1800441666843411,0.8487801251735375,0.1527262817345304,0.49151148457685173,0.0,0.0,0.1981823263767421,0.8976275365381028,0.24184251241939084,0.0,0.0,0.20259498668611386,0.2765867441006941,0.7238186516518849,0.5717965164504875,1.5052359645617164,0.594502495058036,0.0,0.15557221744653799,0.42459831762990213,0.0,0.0,0.7417732442072016,0.974452128001455,0.0,0.3610835166093571,0.15997628636005545,0.0,0.9263792294825351,0.2202513088728645,0.028294340757519194,0.3763145082915726,0.22594279297139294,0.1608614496497379,0.8705943282489592,1.001144944556494,0.10231813985244702,0.06493177289575064,0.21776181986725573,0.4881925299749619,0.324991450208871,0.861521018846145,0.0,0.0,0.0,0.0,0.32277816380060864,0.4974715383921061,0.0,0.20043501493438687,0.2199556310972465,0.4217832961301834,0.00017028527970067847,0.0,0.4855294365153114,0.4363561682814838,0.9779211465673497,0.0,0.20505164612732493,0.0,0.8579477939013769,0.4974715383921061,0.9781058767683651,0.5698787091702016,0.0,1.0395874582241202,0.1310428087451795,0.3844496762067795,0.6420572953072159,0.8127396728120213,0.0,1.4728757787166489,0.8755702956432567,0.15402307027365492,0.4841249460173579,0.0,0.4576773595428002,0.0,0.13732973693162395,0.50444706436048,0.5101947157925969,1.1073455620208108,0.7861182833021003,0.350807293466565,0.0,0.0,0.0,0.0,0.4118573920637753,1.031473207086609,0.0,0.0,0.3925848441219861,0.025986128537394612,0.4224230395471389,0.0,0.0,0.0,0.14454530863039325,0.0,0.8413974194270661,0.30853749238812145,0.8855814760061447,0.7083405073868453,0.0,0.0,0.0,0.3214454140169678,0.7271208884228979,0.5321182022611871,0.314991453202545,1.4904783736487597,0.21136479536947567,0.26765835567708607,0.13313192342958657,0.0,0.9418460294543317,0.0,0.478918979300421,0.5759747458193012,0.0,0.0,0.17491421711772306,1.066747466481091,0.21350167028282296,0.9712332295534711,0.21379734805844133,1.619877461645709,1.2575184593952993,0.2234569018310754,0.570576473474794,0.3311535587285732,0.3895310583531067,0.0,0.9159539465911266,0.0,0.0,0.0,0.20727545812483555,0.2277554531516775,0.4944853924901477,0.6859008832856508,0.0,1.6324655115660769,1.175899737991698,0.0,0.1681245943934003,0.0,0.0,1.0379271679010327,0.07005721103422767,0.7417732442072016,0.9828359544727057,0.0,0.20719310569952606,0.0,0.2313805111686079,0.21737819153993213,0.15402307027365492,0.0,0.19340212131056544,1.0095462748276867,0.21382154199130057,0.0,0.21372941893925854,1.080778553903982,0.0,0.6555100276556911,0.1684713874310123,0.018531521003476967,0.15402307027365492,0.8844408909241839,0.18697338549261072,0.49277838303038,0.0,0.0,0.3728247072370904,0.4575018739093099,0.45560550123147087,0.3408072964602392,0.06470989342393693,0.005986134524743244,0.3020835315736977,0.8728572417338528,0.0,0.570576473474794,0.07321896623060202,0.0,0.09489494303840025,0.1414883821672132,0.0,0.4576773595428002,0.17491421711772306,0.0889240257150763,0.5393682068867135,0.4576773595428002,0.0,0.188905103836708,0.2032296274542687,0.0,0.0,0.36388815560359666,0.1770859802912211,0.14937131888549995,0.6545843702043856,0.4254034252620032,0.23215111119357562,0.570576473474794,1.0519997959015928,0.0,0.0,0.0,0.7112087523732424,0.19342734630703454,0.5003817533771076,0.1550676276158581,0.5158478664307737,0.0,0.5985720759221407,0.0,0.2827216491304269,0.19335631612163498,0.0,0.1981823263767421,0.5005707674812626,0.324991450208871,0.43938589106229303,0.0,0.192295667198464,0.0,0.38256745626188143,0.0,0.29272164613675333,1.187410223954162,0.7788430730282201,0.4575018739093099,0.9085855168222869,0.1950944595390612,0.42066375203597856,0.3637152150954127,0.3866784166683649,0.2684163816414516,0.4576773595428002,0.27626768831600357,0.14119034578136294,0.0,0.0,0.0,0.8331509862640891,0.324991450208871,1.1200685781313842,0.31150194365552014,1.096012815230846,0.8151458550104408,0.3214454140169678,0.0,0.0,0.0,0.5497429683244485,0.6552172978798191,0.16777780135578896,0.0,0.675404663337241,0.0,0.3106611504777334,1.096012815230846,0.2271289441097555,0.0,0.0,0.23477426573440044,0.4376529613756938,0.8420392818756091,0.6477523860744988,0.0,0.0,0.0,0.36004417246115844,0.4916299596002567,0.0,0.29626850900714147,0.2944664009102662,0.5540966960203632,0.0,0.0,0.0,1.0043592705178832,0.6037713509616263,0.35271197720885167,0.0,0.21445266220715498,0.25428698956346896,0.0,0.0,0.0,1.2886673729040825,0.029890146795937485,0.2311829344951969,0.0,0.0,0.0,0.4171131415603521,0.22027550280572414,0.0,0.0,0.05761782104013137,0.1296807752043402,0.0,0.47144526190131464,0.5896618534313212,0.0,0.0,0.5693564304991,0.0,0.570576473474794,0.0,0.872260153182781,0.17491421711772306,0.0,0.0745570232503833,0.17491421711772306,0.225585223927234
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2510182701196473,0.0,0.0,0.7374207213318273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3585878004010839,2.939573851207423,0.0,0.0,0.0,0.0,0.0,0.0,0.08772611635936034,0.0,0.0,0.13992241694533425,0.0,0.0,0.0,0.0,0.2931741501640726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.550158816344722,0.0,0.0,3.4059756099927743,0.0,1.469695186654181,0.0,0.0,0.0,2.5547355253595714,0.0,0.0,0.0,0.0,2.1097722395485463,0.0,0.0,0.0,0.0,3.222130556158475,0.0,0.0,0.0,0.0,2.078832341099545,2.376007689022585,0.0,0.0,0.0,0.0,0.47579789020352414,2.410054408230712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5625308389391462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.223809336313844,0.0,0.0,0.22059780453005673,0.06230444449895883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.979884056367282,1.4996048358858538,3.4341984485340245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41422008383688674,0.0,0.0,0.0,1.3193374620424636,0.0,2.146632186281202,0.0,0.0,0.0,0.0,0.4202289750966201,0.0,0.0,0.0,0.0,0.0,0.7449315736307521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.023602463022947502,0.0,0.0,0.0,0.0,0.0,0.42209823510992567,0.2912731592269841,0.0,2.374693397613337,0.0,0.0,0.0,2.030187519135742,0.0,0.0,0.0,0.170687966310257,0.0,0.49522540934076353,0.0,0.5467411706984319,0.0,0.0,0.0,0.0,0.11811120496653842,2.947764898102726,0.24120279001480455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0331872211720592,0.0,0.0,0.0,0.0,1.549302710658855,2.3984900651621723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9107674457040712,0.0,0.0,0.0,0.07794113213766207,0.0,0.0,0.0,0.0,0.1483393848737627,0.0,0.0,1.2397170698308326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15585424604133602,0.0,1.7563173996359625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21072689632783242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.345115263736987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5295473125976494,0.0,0.0,0.30475191748728697,0.0,0.0,1.0444708846933044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08370626522256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.108236494102731,0.030739059323575388,0.0,0.0,0.0,0.0,0.0,0.0,0.2905570056431075,0.0,1.02335378261388,0.0,0.0,0.2995659731935624,0.0,0.0,0.0,0.0,2.215665844578093,0.0,0.5930409894772657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8072890237780994,4.870949277725241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0160024629077085,0.0,0.16558974471397875,0.0,0.0,0.0,0.0,0.0,3.383109681454135,0.0,0.0,0.0,0.0,0.4599704966017526,0.0,0.0,0.0,0.0,0.0,1.1321876786075444,0.0,0.0,0.0,2.674923947054036,0.0,0.0,0.0,1.877691344617764,0.0,0.0,0.0,0.0,0.0,0.4626937806281447,0.0,0.0,0.0,1.2731912080598695,1.1097974162525979,0.0,0.1761870096049885,0.0,0.0,0.4444504720575873,0.0,0.0,0.0,0.0,1.61745376453545,0.0,0.0,0.32134566938238407,0.0,0.0,0.0,2.747745263503816,0.0,0.29739343515014766,0.0,0.4640169689909488,0.0,0.0,0.3413819778267469,0.0,0.0,0.0
+1.6842601715955232,0.6884817052376628,2.696734590838111,1.01938668455654,0.057090525386181354,0.27010759878479923,0.1884369510320871,1.7342055184022265,0.0,1.942375295635503,1.0418492745558403,2.3614783523291765,3.408882623933892,3.928935599170967,2.26932142511795,0.0,2.1347279582372534,0.1599583419145145,0.18497925865486456,0.0,3.177748880253643,0.0,0.16923549766715246,1.9586027735160576,13.67336717921444,2.850698117992191,1.0775045838884614,0.23231572661950092,2.0984169108581763,1.9285972073298214,3.1491843548963665,2.3397197504657097,0.7847323497577952,0.6446784693232225,2.2567706229776436,0.005366703202568128,0.0,0.0,0.9569275901655513,2.3571146776428282,1.2790000468724292,1.4226377379408348,1.355769838846516,0.02502725988015076,1.8366039596205266,0.8882067222986917,1.782063645361878,1.5510811785327219,2.002334476224744,0.3745358280038282,3.0505849514328216,0.5773962818762818,0.6179121727444974,22.141651485479763,0.7781585334674503,3.4660043849919724,1.1821549535851434,0.8614257917687116,1.8799319053079555,16.655384748265604,0.46394659209869593,1.4144738875398892,0.5227337476255949,0.0,24.739729042661736,0.07683702343005826,0.0,2.5557310584511574,0.9328137913034928,12.6549597912552,0.022823558327227975,0.7038700518754968,0.0,0.776175054998489,10.72820814148678,12.551507534012716,1.0568660726930141,2.708846911316785,1.2904185039570437,0.022823558327227975,0.7800001645957334,11.040799936491984,2.541420947161779,1.0418492745558403,1.837732736630886,1.3167303554453333,0.12374568775906775,0.0,0.20829134398695007,2.1613920491888976,0.07029255855076431,1.0300851421630353,1.651226473608938,1.0568660726930141,0.5521533091389882,0.8756245542096972,3.850886906864657,1.0069234739717816,0.0,1.1378133758857718,1.336552644833777,1.7696244611797622,1.5510811785327219,0.9032781299278835,0.0,1.2435098637384268,1.2188776860220738,1.5510811785327219,1.1213837689697774,0.6006385570987419,1.4172307324374442,0.2111349918832259,0.0,0.0,10.235679850404695,0.5806097704599629,0.3764017681675482,1.8438547283283906,2.39638343764465,0.5941560457750941,0.0,1.972168833713907,1.0925830570360517,0.9115092747526562,1.5510811785327219,0.0,0.763032186080808,1.7454814432071992,1.902308647438611,0.8707006846213168,1.1081341879674982,2.2520857960488145,0.10847625613462908,0.9566057632329455,1.4195884569313244,0.8516326620839735,0.34112519640919997,1.0504950441802432,0.0,2.761701262320412,4.359786165995879,6.632191221944643,12.873413490006028,1.2768917701241946,2.1260579116162623,3.044545560635603,1.759707416026405,0.7651133996190636,1.4226377379408348,1.9495670560123604,2.2245355517604986,0.5184186081379742,3.3001596190532454,0.3120977824437309,3.9307674588141177,0.8220080836577206,14.797247245750631,0.0,2.1260579116162623,0.0,0.20666501111476934,0.7444379677223144,0.0,0.9546116106694612,1.8726294595203352,0.37673789086228643,2.1322678471923315,2.793708039033103,0.0,0.0,1.0081734717294162,0.35596479036833745,1.4257035687880284,0.4535016325333084,2.588553810802621,0.666569270347802,0.43330306914646965,3.085360196472001,0.5677435404402855,2.43630858459358,1.2904185039570437,3.5062964253073043,1.9082986574906238,1.5510811785327219,19.210410776312727,1.9147890755657124,0.0,1.5706361868975938,7.7437556914144965,1.8429502716020665,2.189490515789163,1.4181347188769433,0.7821965623706486,2.9263435030509832,1.3808449475589453,1.118745353348427,12.744529960786435,0.0,0.8500841808754185,0.0,0.5766026989437811,1.5270336374433215,11.836277903839061,0.7966662939268735,0.9700459107638209,0.8662930580164099,0.3485970230162563,0.9100650458196201,0.0,0.8853630744024164,1.4834333235152284,0.9594808707658194,3.46781668011882,2.453562859045303,2.2374545306629785,2.2566454644690404,0.22087351207594463,8.118049778330551,9.41735795632189,1.0568660726930141,0.005002201233640218,0.7051325346748637,0.0,0.7030513211366068,0.9480245913063814,0.0,0.8162661783731522,0.20829134398695007,1.9324799181784322,1.650303693622246,3.1786790996215446,0.0,1.210511035096654,1.5636633466217156,2.807292796816334,0.643548594943918,3.943450621673408,0.09812568068946116,0.0,3.6579635745850254,1.0702378307267264,1.0338855584380897,6.1652373368106845,1.0410409773798455,1.940108614616288,2.9960713496883766,0.0,2.722554933370541,0.5941560457750941,0.021300210152269974,2.9600888322567798,0.6441282563070506,7.227306068407315,0.8955139464282977,1.2641823247210646,1.0081734717294162,1.5510811785327219,0.9894174362944073,0.0,0.7028810251429188,2.26410082139584,0.7035294598881197,0.01688056760866328,1.3807751418771286,0.7385424564054738,1.0418492745558403,0.30356685867668126,1.0081734717294162,0.0,0.47022380067375813,2.0253879208995844,1.5510811785327219,6.5754565338166024,1.1293162549435438,0.45309261468521256,0.17338345786595516,1.1499885055964203,2.549375705454362,1.9086305190679185,0.7901033159312196,0.0,1.4826787127993688,0.20829134398695007,0.0,2.015698928171905,1.1489427780988353,0.9789579111512595,4.279457542376236,0.4535016325333084,1.0568660726930141,1.746894777840754,0.12229292188313634,0.4535016325333084,3.371605940209765,1.3680594824350194,0.9150422623206895,4.400528666355503,1.9285972073298214,1.2671785764774153,1.0000286016753357,1.0813532574375198,0.7737914237062148,2.1356682073427553,0.8900898552831586,0.20829134398695007,2.702920351095378,8.4608660581876,0.7064798300520777,4.172843992581877,1.321366560260178,0.5302046656179572,0.22045393771549535,1.010608101777596,0.40795539885279813,4.4223832784863735,0.0,6.566831608921586,0.6101607210986192,0.9406702258387907,2.34692455043759,0.9032781299278835,0.2970154323798847,1.0504950441802432,1.586230127118466,10.577039307476241,0.7436362947758508,2.1216712266555446,2.343096707910424,1.8895861910681606,0.7505907194592408,1.2690924781456914,1.4221784556966781,0.45309261468521256,0.0,0.9447214502389626,1.4017845132219724,1.4103802338454448,0.712524063235703,1.2834022929155733,0.4535016325333084,0.5501798561544184,1.0622852349001763,3.772383953474102,38.737613409473695,1.8668322134857334,0.0,1.0504950441802432,0.0,0.9346269679862843,0.1204676827192871,0.9703217735529275,0.9700459107638209,3.397521447678125,3.8628940804697276,2.3974146344499916,2.6014018121059785,3.159832605733215,1.0402326802038484,1.5510811785327219,0.5636485352960295,6.847508974837787,0.3953799399877024,0.1204676827192871,1.01938668455654,1.346076492997846,2.8799907575800745,1.3167639234056312,0.7175851423004214,1.0029688389612823,0.6877379255827385,1.2910233143756729,5.092750038966557,0.8593811685618032,1.9616670232751565,2.3260991066824617,13.382398490134126,0.5801250921012261,0.7383097583759076,3.097801514160309,2.8322513976368895,1.5510811785327219,1.4368563343865641,0.023723397897210376,0.0,1.3057452961884028,2.599937296377116,0.8439197540913402,2.347496466212702,1.2138672241075608,2.0314889824219358,4.226404674502656,1.475662450768224,0.7369730232849144,1.807241582211991,2.9575377429874843,2.2891014202488953,1.277474599452681,1.9486348372511597,0.7628618900871186,1.5710437730167515,8.059618327927009,2.3884774386215173,0.935161614945544,1.7965537316788855,2.1986111526891587,0.1479445277759709,1.402797736875186,10.305684026709772,0.20544769609067914,1.0610641939167447,0.20829134398695007,4.0689481843745945,0.0,1.0568660726930141,3.296096805011038,1.2231407478945169,1.0568660726930141,1.3814436517778508
+8.55116952164614,11.527145364715908,15.41980804453094,6.370846159588146,4.98770040507268,3.0916480469690812,7.448241677771246,5.442992435387157,4.1092312480144475,4.333604854402716,7.243943141966567,10.480713057655528,4.294113684189624,14.680667946761824,9.615098974191893,4.794835911039007,8.40497268218001,4.710472279702545,6.379707463238498,10.842980172428192,11.509505413938976,1.9869446413180227,6.455156192023266,3.8414673005606303,9.408913037988066,11.881813576231835,4.215838605072793,5.0836811578074075,9.119221419610382,6.477121447772258,11.464127725430751,4.79891750446751,7.480357174703541,6.7260719285265544,6.068112354991656,4.085071755510987,7.282951284976651,4.967628264974153,5.840098007152842,5.311314877392239,8.976776242020119,6.574140661719108,9.982317992073929,6.996892492729728,9.484516181453081,5.897679340378735,9.911987392076266,7.476914452746596,12.368516038937262,8.409017322512355,4.613310869874203,5.913313772106576,4.101814791264014,8.868455030824958,6.707951929222754,2.1086308938197407,8.449693108578188,5.911454842798063,6.906316520266633,8.375072745731904,3.9050218777778194,7.411865785613495,4.156477338040902,5.420681791098302,9.84424919040839,6.800069482022981,4.420418210141209,10.274913261312156,6.480147535659394,10.409490497120972,5.91286269460157,4.894726561264303,6.973296270941932,5.884152208933055,7.194368532504828,6.74406256186213,7.23621884206453,12.626792306989953,6.930831308724369,5.91286269460157,0.7810379731810357,12.180119318931293,11.222991570270391,7.243943141966567,7.280657394632948,6.732752109433255,6.670553175661817,4.243592847733754,7.511716038795436,0.7771740544405498,4.943137790918157,7.2499943444838575,5.5283319858553055,7.23621884206453,5.065716174564306,5.904151321879016,16.40986537582052,6.917899764501216,4.752154217562704,7.931858596614911,8.734698944727313,5.773325795383471,7.476914452746596,6.160248356819898,3.3883048946395697,6.22242114031799,5.110812993825849,7.476914452746596,7.203032404417971,4.08543034370073,9.376934717687915,7.510253330902183,7.65333323960857,4.570980854940401,11.461500853347061,3.696192069624765,7.091325589116875,0.6390627517443549,6.979270014681379,6.291056158742136,2.267979720951981,7.390547002617379,7.103888425110017,6.696657255318034,7.476914452746596,3.701170845720969,5.144916305106746,6.894683854736359,9.927105945824755,5.63636264233933,7.676803490584292,11.92455963469911,6.7263014669429895,7.028441913866556,10.49013395682315,5.64617080006189,6.089659124812879,5.941126625237886,5.490305236260046,8.385321691026599,2.6769784206467673,5.837399990030079,10.493471727249839,6.076714480774119,9.475808722829518,6.92186378630552,5.870372583973346,5.137891302614916,6.574140661719108,6.515604307998335,4.1879833806157425,7.0182753521055865,13.901683153971597,8.56145608091874,2.660134008064008,5.661409010374469,6.911672761898846,5.496618145624517,9.475808722829518,5.999134555037647,7.512552587487809,0.9866452996099319,5.97512768784856,7.288816214938324,9.672050839794135,5.70830217052526,10.07955879682469,3.2784989393335655,6.345615476204949,5.204869487228669,7.261265210099671,6.217186677828189,5.167685940174356,7.0516671699700355,8.890651021719211,2.5768715254912595,3.7032146468067255,11.371469751971446,7.7197373831555,13.025046738814162,6.930831308724369,7.310776931808888,3.5354380117317685,7.476914452746596,8.237378739839178,9.322185828315883,4.505787954829353,3.788835419218757,6.953149475213424,9.416995733763512,7.505308991484818,6.589340313058636,2.038207496997456,15.0313810287132,0.9834802510235685,7.941666754337471,4.887045627516075,4.255369304711609,5.267937436893603,7.280936183672875,7.220785789013206,0.1736233964475675,8.486689002439977,1.3931455083376985,5.762789778636844,6.377431327255087,8.717466005407058,5.515363607765224,7.020447999470769,5.899142048271988,7.212125823804473,7.286311578134809,2.5072785422738435,13.961267455762384,9.004176514234905,9.035018833983226,7.5052440572951555,10.646139280420082,8.834883757513547,7.23621884206453,6.654979774225005,4.890465131743294,5.10324506268554,4.8974901342351265,11.97657124257295,6.835163384541395,5.394041109817776,7.511716038795436,9.52044356929687,8.415388333954095,2.0779533769832437,4.306661929517654,4.88616777939758,7.470442471246315,7.889753839854128,4.648450036748545,13.327199914926808,4.460384013472188,3.9286327653613156,9.61990448366667,12.463823758646429,10.19529448837417,8.469947042870531,7.244358911675951,6.703193906911133,8.466287959664287,4.753214125700974,9.305086115354278,6.291056158742136,6.755630131048679,1.244586205428212,4.646493427085202,5.1060285572719515,5.597508088980161,7.731696576297697,7.261265210099671,7.476914452746596,6.656583066461811,4.245921564195785,4.898064957413058,8.411214192962426,4.895876207620165,6.429925862385857,0.4599769641436948,6.719038392985596,7.243943141966567,7.534886244394567,7.261265210099671,7.282951284976651,3.8838335638105193,8.967382016667734,7.476914452746596,5.298029671112641,7.1648232744941796,7.05187755946153,3.9975847369391015,6.505068291251707,8.989866016714542,6.653782956539492,5.020511266021982,5.467804797434869,0.36012669841967954,7.511716038795436,1.5880406679230334,0.6910275012024181,8.737098103562996,7.276293030920754,4.352725232825188,7.0516671699700355,7.23621884206453,6.033368903393344,7.482264664110179,7.0516671699700355,10.387306195997612,8.624389447404866,6.154197154302608,1.9127311829169549,6.477121447772258,5.680543618114875,6.921446330214992,7.690578993003619,6.7226928274491256,9.92628569238959,5.615816759911864,7.511716038795436,14.886099989101574,5.421816545114729,0.12009806565706649,10.971720873717112,10.660960956846301,4.13125973468214,4.960434421801214,7.2600128916979125,9.227576217468297,10.613945896411785,4.176577889631101,10.969296126688283,4.278232753407119,6.411336118153751,4.402980227735974,6.160248356819898,5.706866076275455,5.941126625237886,7.24897318498493,7.3470353436600835,5.4314002723789905,2.325168666769304,9.058698780287271,6.268178137126713,4.703995770879782,10.75103182545847,8.427430366846542,7.05187755946153,3.93091526011246,6.409252260333227,6.521894323709595,7.425683650467611,9.277637560704138,4.95999678153574,7.0516671699700355,4.030806582535498,7.700387150726179,5.362694514405944,16.10996648641002,6.950533687799804,3.7605457072408255,5.941126625237886,9.057384040722356,5.4324564186405295,6.980049663545561,8.772366397768332,5.762789778636844,2.671736591721391,9.7193569840913,0.8651683227056157,11.470417741142011,12.904069987181998,7.244774681385335,7.476914452746596,6.876948203872542,4.286116168918685,4.72537708706601,6.980049663545561,6.370846159588146,5.156505457659264,5.524085271419936,6.732638802941452,3.849423043753694,9.059166715721473,6.440638096256989,4.689486850923102,5.586936396931544,12.31140769543487,10.437216157885993,10.586627149866116,8.932488398976473,5.031917410745993,4.745449365442129,12.044291082502564,1.7524210249567733,7.476914452746596,6.380696483582356,7.036612247902546,4.140060672945185,7.001731764286939,4.456768118890668,5.650138144758657,13.752932536284057,5.112115667364483,1.3793935322998403,3.797108371659052,11.370403155538753,1.936497905467043,11.327613316153554,6.315777632486647,3.454687792990859,5.896385766750636,9.651720882543264,5.145491128284679,7.66328054392811,5.740002255702934,8.633192323512459,4.246022802779541,3.0201105014687006,9.41586917205253,4.213686488347628,5.2119749223745755,8.668832941690775,7.513178746688689,0.5202998298972515,7.511716038795436,7.175187634610819,6.731639042058605,7.23621884206453,7.406766951332856,9.374735868639547,7.23621884206453,6.514316538246423
diff --git a/data/activation4.csv b/data/activation4.csv
new file mode 100644
index 0000000..cb8449a
--- /dev/null
+++ b/data/activation4.csv
@@ -0,0 +1,7 @@
+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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417
+6.676664693118067,8.737138863703208,11.923460196509305,4.850001737624418,3.6081738628776945,2.3569971567513583,5.612692274140063,4.109035178445332,2.6984958501239587,3.4197457771457773,5.544298039355772,7.7908611158581556,3.5877502190904904,11.162722744922538,7.395511115071915,3.243577114710371,6.485480632344127,3.4122172970706384,4.701731726002321,7.922497981634289,8.42153310376369,1.4583995276160766,4.435348961800484,3.0402096452964,8.923280733902471,9.148375638924845,3.097356104312412,3.698644204417882,6.742419213675385,4.888858546976074,8.712677002125337,3.810791138115001,5.485858056026484,4.904039915454033,4.673843472708713,2.9342003404477737,5.3049681184637825,3.5111926334925077,4.43535312894276,4.271580500676425,6.642236285308056,4.813824151009132,7.6838994693598615,4.974552971311907,6.949251893889899,4.492300844073734,7.1758785197705865,5.8492575315791795,9.179557415398147,6.101351596401851,3.798050431484746,4.235951818451878,3.03258816116079,8.41161056159187,4.83984762325789,2.416241509524978,6.486073817621686,4.507488736315104,5.310884122759819,8.1483511623015,2.9654620665425067,5.553700671325271,3.157365302055079,4.0312326914248064,7.2848641491854425,4.793858860051896,3.2602760298179883,7.592590059560572,4.564781179095454,9.49163625576978,4.411732735238255,3.7193222950954916,5.066716069657627,4.112877523069537,6.8208401823957665,6.679901899619859,5.535781773960794,9.359444006555204,5.188561292214506,4.411732735238255,0.8046884369590676,10.51004398298841,8.356256287272894,5.544298039355772,5.633242804541257,5.034332435094972,5.001237010714557,2.9601142523419273,5.660325016795467,0.8503815030390321,3.570148741968226,5.550969666202164,4.200401577111917,5.535781773960794,3.4938288172320404,4.499436391992225,12.00248137688684,5.2891649622879005,3.3509824313171857,6.079125493119625,6.573584594970976,4.3715674478274895,5.8492575315791795,4.699801178486204,2.2200776555796216,4.693599649290321,4.025459855804999,5.8492575315791795,5.499192760833859,3.0212131351246754,6.874167850008181,5.6587123387829275,5.175304666560836,3.379252956668916,9.817545104081278,2.721377991390804,5.276242110438265,0.5218691931079188,5.3276302850518045,4.497486374665968,1.3536813742504101,5.7716659385115054,5.330876045657564,5.127228304599538,5.8492575315791795,2.508548074052752,3.9101454992668825,5.309395989698068,7.488417662706811,4.286181227137752,5.879909463566083,8.711896741274298,4.795109482781792,5.327862240898969,8.079802054050019,4.296995006413607,4.4811890369897,4.434701063661521,3.9173932002011607,6.370738692316266,2.857089701373561,5.21286860148718,9.624279743613291,4.505072063629123,7.024031078622872,5.302510211038964,4.439589127880885,3.904151089508629,4.813824151009132,4.943375859360414,3.283260440891118,5.195702098599758,10.50974513714794,6.24475223652669,2.7499023883713094,4.3137955766675145,6.732815069787393,3.92452347059745,7.024031078622872,4.270614000458858,5.66124733606976,0.9446391329142361,4.1888003223764025,5.593771907973297,7.28920163315327,4.132409524078154,7.250878150466492,2.939064735089785,4.1862706967471,3.6911603968252398,5.563396123490557,4.58079705176647,3.977304426782007,5.232517549392838,6.798696273595034,1.902650180234326,2.642693674794607,8.326410580638433,5.4488089788700025,9.780562117699404,5.188561292214506,5.765317268897812,2.7941576848954,5.8492575315791795,7.486454703758667,7.002467452602608,3.0425225830994984,2.923053910268107,6.411542577684643,7.089985603599726,5.6972360879133985,4.826793959691431,1.6877964601357582,11.617091046759807,0.9950333465738769,6.08993927239548,3.3252477252623756,2.9708034699659445,3.9282595680754158,5.30269211284699,5.369405021857234,0.1412603565411389,8.019514746213881,1.1491262008644807,4.305189682351908,4.4936189547550995,6.602100795061379,4.116724625213663,4.701581149150726,4.493913522086272,5.447459877843305,5.59101047302032,2.428706923246316,10.3399031459516,6.901430363740024,6.6479066268361935,5.653189468876975,8.924660316443006,7.811928120131991,5.535781773960794,4.633004471404671,3.7156860323703818,3.5388950571299453,3.7216804421286374,8.479331899741519,4.738672432319403,4.101004332885143,5.660325016795467,7.224505280729438,6.319351635043983,2.0739785437089506,2.957115787926245,3.7802520046488755,5.843925919855973,6.05290839209717,3.5318382271230346,10.012935025286865,3.2210757843506235,2.729574033519852,7.372161574069153,8.849777109676861,7.357227726097295,7.040992213325131,5.544756437557967,5.134703403866227,6.541546082026906,3.231460264157482,7.05167698786492,4.497486374665968,4.776908007538773,0.8264964008907163,3.5301686590235675,4.842281737742187,4.251014829112518,5.899435864706542,5.563396123490557,5.8492575315791795,5.083045345351918,2.8668341674166267,3.7221709367115317,6.466802766663174,3.72030328426128,4.506857104205529,0.42180992455211175,4.8554853294535665,5.544298039355772,5.75983272928991,5.563396123490557,5.3049681184637825,2.9473821532393827,6.757071023268684,5.8492575315791795,4.813890897090105,5.430778703312032,5.2327495099288885,2.9257862168036635,4.870584853766647,6.828026430742875,5.061283211017678,3.73979451093717,3.8944500895194647,0.5079393892211029,5.660325016795467,1.137750980127667,0.6585126590474775,6.72095654102787,5.579964733208414,3.8262799159362175,5.232517549392838,5.535781773960794,4.614317054743695,5.650203606541292,5.232517549392838,8.141932565838317,6.596691968143936,4.693129551639815,1.1999703356068954,4.888858546976074,4.3189240494683085,5.293075154181314,5.8950973558074535,4.852425979532687,7.449955272360081,4.266637553207104,5.660325016795467,10.974211589562886,5.291527264071768,0.12136412717800273,8.48281026866882,7.946124643071298,3.1358472103776283,3.603340098793342,5.562015406014069,7.000532854168461,8.192125627446002,3.0743184176275786,8.872108783428502,3.1743993395224313,4.8946430950742315,3.5850809702589594,4.699801178486204,4.182133032123339,4.434701063661521,5.327845564378656,6.942292234336551,4.142193896643738,2.0472270470011384,6.810131916377752,4.752810991576629,3.4923757779702904,7.763447972774725,6.04508817694111,5.2327495099288885,2.6169806786333853,4.892345581193355,4.775420201646217,5.565491406490998,6.971157445872918,3.6658310145526194,5.232517549392838,2.9859342823841852,5.905911135083309,4.564457818245688,14.978156094671503,5.3492363880972,2.5924047492226303,4.434701063661521,6.526120020723266,4.045980214219303,4.930950159144928,6.567231123282454,4.305189682351908,2.533456094365828,7.571268912578327,0.5588835166968205,8.54472134441114,9.50539279513959,5.545214835760162,5.8492575315791795,5.038959773027298,4.720362360671861,3.519114940857718,4.930950159144928,4.850001737624418,3.854514808005262,4.477251182087095,5.034235751066613,2.810040040053626,6.703397500841666,4.640590160367827,3.5754042212000856,4.75999348408738,9.445914703225597,7.886849721813893,8.156781309943193,8.51809964067505,3.755030374284011,3.5277479834674703,8.921091342147497,2.088214535113706,5.8492575315791795,5.004372564401011,5.060997461729782,2.9521522673462086,5.242882734051151,3.6197389553383243,4.301369119379122,10.47665810600993,4.026557813142012,1.6159477033994596,3.412870970789133,8.159770271551714,1.603750088499763,8.622569558123331,4.824786749800476,2.802905431203347,4.632102771008703,7.305513505049118,3.9106359938497777,5.992880860247807,5.378205925603433,6.569003668123648,3.0933852348208277,2.4461071822186864,6.906994533028904,2.9443056039482203,3.9806179307850873,7.895227294400208,5.661937694808004,0.5251121022316133,5.660325016795467,5.745370060787519,4.881383340100783,5.535781773960794,5.737064464223707,7.218996614911724,5.535781773960794,4.847942135448133
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0032911785506364796,0.0,0.17134276522700975,0.0,0.0,0.18053494672265893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.974334871067046,0.0,0.0,0.0,0.0,0.02358177571669382,0.0,0.19577223976340505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0027231368653783464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2166671632471295,0.0,0.0,5.031946728511889,0.0,0.5185100719092576,0.0,0.0,0.026745520988713377,3.2031585281781596,0.0,0.0,0.0,0.0,6.3606936022373075,0.0,0.0,0.0,0.0,1.3832475240258286,0.0,0.0,0.0,0.0,1.6067869712467924,2.225848807190682,0.0,0.0,0.0,0.0,0.019306884485997794,1.0940148475929967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.412190387680912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.626571531403533e-05,0.0,0.0,0.0,0.0,0.02631989577082565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8870436136488374,0.0,0.0,0.4287539932398885,0.0,0.0,0.0,0.0915859378297414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.051204410617538304,0.5955130692122603,0.654505886412511,1.4350455451652486,0.0,0.0,0.4132495267525609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6835387172722776,0.0,2.978765089950485,0.0,0.0,0.0,0.0,0.0005080361884618294,0.0,0.0,0.0,0.0,0.0,0.34752399324386585,0.0,0.0,0.0,0.0,0.03420695556448204,0.0,0.0248731349610418,0.0,0.0,0.0,0.0,0.0,0.0,0.05751908438758985,0.0,0.0,4.334915488678402,0.0,0.0,0.2307862501260499,1.2776449184710612,0.0,0.0,0.0,0.005327417597359219,0.0,0.10397482923594806,0.0,3.4174370336630746,0.0,0.0,0.0,0.0,0.3906192838319865,1.5713168841494498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3675403035963697,0.0,0.0,0.0,0.0,0.6973832366349602,0.8419482481543422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38226349762656897,0.0,0.021542456460324294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43285187919905566,0.0,0.031572690579344045,0.0,0.0,0.0,0.0,0.0,0.7618784249979853,0.0,0.9928686710087219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019972974054662973,0.0,0.0,0.296828015098095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8262998799187794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2521776303800721,0.0,0.0,0.4412689702773753,0.0,0.0,0.43899127991746956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.183647391841833,0.02358177571669382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2330736480610651,0.23760956713061085,0.0029609885926819637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34693437475219424,0.0,0.0,0.1961038567463559,0.0,0.0,0.0,0.0,1.4745571582165007,0.0,0.16794634898561658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3105889705740216,8.715585285360095,0.02569470856082086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3300132115710157,0.10616875165924025,0.6167031495913962,0.0,0.0,0.0,0.0,0.0,0.8953296529427297,0.0,0.0,0.0,0.0,0.03497093762899474,0.0,0.0,0.0,0.0,0.0,0.3078895822786357,0.0,0.0,0.0,1.9904585330054727,0.0,0.0,0.0,0.23801618239780312,0.0,0.0,0.0,0.0,0.0,0.04408072542616813,0.0,0.0,0.024562186017829078,0.18292554750508844,0.390788144473905,0.0,0.0,0.0,0.4183422558325285,0.044019328803401744,0.0,0.0,0.0,0.0,1.102375106641097,0.0,0.0,0.03047285327516803,0.0,0.0,0.0,1.115857662924326,0.0,0.16011262779294128,0.0,0.18475743477501105,0.0,0.0,0.0,0.0,0.0,0.0
+1.7510252126040082,5.613455969428288,5.4550891867953455,2.1588721203660595,3.6390523313691,0.8231934347959879,3.3527904110659383,3.905541291241551,3.8405712377246086,1.926910172857501,2.3767246434897915,7.180844591431043,7.116542410059999,7.863007596430958,10.559598396354366,6.609656472889879,3.1315684672360593,2.48475652180909,3.8375521582506846,6.7112930301867175,11.051922709495354,0.15281300623810512,7.919786587481302,5.885612434157551,14.113410464149856,4.683730861411694,7.5648843403463335,2.6436776055870292,6.9093630358582985,3.772921412591016,6.400987200795998,3.257224357335008,5.411765761019281,5.290843397139653,6.533784889540395,2.2037547715350505,4.405897253636952,3.460835270027027,2.018493961944569,5.253817232357373,4.908981377525394,5.447637608291325,3.382500647240669,5.815257572456099,10.31372174751393,1.883169999925502,8.370380124724237,1.332745349974439,14.384149858423756,5.809624650604021,5.060787395956825,4.531021636533701,4.46517343889607,7.480019686825982,4.934348711096386,0.048589623800987934,2.8223409617174,1.8506630983426484,2.6994399484438434,10.849221119968753,1.0151100202796242,3.9313718631305536,1.1181501066449588,2.600344013735987,9.90828469789695,6.362210271875439,2.1300540370882963,8.35323598586377,6.720764509920176,18.037614908096657,2.8015134723259583,1.4649624497057665,4.255305086551898,6.38682360542791,10.817231149645325,8.827444983416864,2.3949521497591566,9.588823058357407,3.6741307616163796,2.8015134723259583,0.5308929622728079,16.42797767708518,7.51823391350065,2.3767246434897915,2.493806590214273,3.631930395732715,3.0995553586659965,3.0167970363874947,3.392764790004528,0.7168487225021162,3.7432678413026594,2.3624452481763045,6.738414612945909,2.3949521497591566,5.8819878152653615,1.8678976665273037,15.748213544581732,2.260219041407673,3.27445871970316,2.6520439472456814,10.737426371727212,3.8207774970918957,1.332745349974439,1.959701223069033,3.461426672252109,3.1976860851829203,0.47552340598729714,1.332745349974439,2.4732642308451274,2.3808050270162195,6.10631301169523,3.396216431918051,9.613029009532132,2.1597369205580335,17.344992690026597,2.251716748370654,3.2830069237508517,0.7217302155806425,8.510598949917213,6.179646908666519,3.655120819015622,1.3181124193307279,9.248798580276695,2.086167113515578,1.332745349974439,3.40712771507164,1.5709625797020814,3.85245619931787,4.958889271140171,1.8036836039108037,2.557781686875141,9.192529255253874,5.783775026343003,2.936926422453493,3.5764390446817362,1.7805386899838114,3.0204819742706652,3.2242783321902366,3.658545834813147,5.795497814758569,1.7659511046406458,10.644036541458211,17.499065561805658,4.289391603731999,6.766538537486118,2.403259210027992,6.352736968861497,1.587391468151761,5.447637608291325,4.151725053665288,8.363725886017727,3.455388067671858,7.699528550021321,5.535983619152098,0.0,1.7445801464874309,8.633043654536813,3.6275040536401635,6.766538537486118,4.46072889560501,3.3907907345265875,0.6773010284714185,5.315940631977698,2.270834889170078,4.864627010769627,4.718237181246732,10.051797292670615,1.6653750169653274,8.576039526375856,3.6149336436625865,2.335848692335787,3.067613104455934,1.7542520698115585,3.376591338235019,4.766338378487424,4.602661302738387,5.363493668210151,10.683635569289203,8.169668481770742,15.13863333169975,3.6741307616163796,8.355045937435568,5.468760823152264,1.332745349974439,8.658916984088158,4.992651155988356,5.144659467467342,0.462128077938495,2.759856486730777,4.770364750399084,4.601577483091428,5.412091232810112,0.7174725088052911,5.6354821052371324,1.7708031242868003,2.6288990333186915,5.193805976027638,2.9993339268276173,2.7253145761151134,4.415805891651823,4.0767609834603284,0.4509731778200518,13.126791434460182,2.57526227653424,2.9502407908281847,6.458265840610221,3.8383811082321335,2.8377776834716486,8.942404200722855,1.879718358011978,3.6475385146090633,2.276745234912417,4.331042818875489,9.666003236719126,3.9739754975250143,7.797383426441315,3.408037123402728,13.177149193567445,15.78441133759364,2.3949521497591566,6.570263172198705,1.474928360795226,4.585243147589002,1.458499472345546,11.264781510280196,6.007028314820946,1.6793731457862189,3.392764790004528,4.123598858143231,4.348909405755591,3.382708113972056,6.179731232094124,1.0370402790489193,1.3462057234699982,8.272987649622516,1.349810743767379,12.692946807460615,2.372247682012144,4.039644311622168,12.193123174840975,11.507480912733868,8.600168485559697,11.138680502420897,2.375743526096564,3.1773384036037897,7.478584842901412,5.278986438072756,5.92137587035806,6.179646908666519,5.772315358090484,1.342841125296108,1.354386531738415,7.430658432431739,1.8947206442076465,2.776312843588188,2.335848692335787,1.332745349974439,2.180732645392972,4.338855563058976,1.4571551730546193,3.470829559952817,1.462273851123914,6.34835035263968,0.5153393377262157,4.72003392436736,2.3767246434897915,3.190107989379327,2.335848692335787,4.405897253636952,1.0646616677004364,10.48062539841299,1.332745349974439,8.32120755093089,3.714168218680546,3.376094869192663,4.914711836690577,3.287630112897791,5.276356127230645,3.8285761856542533,2.612851468758577,3.730930687349323,0.4174855774739489,3.392764790004528,2.4237681789716543,0.7030203697100547,2.8402651964799137,2.3003866178817645,5.761817678490885,3.376591338235019,2.3949521497591566,5.964813464729285,3.2725042745020296,3.376591338235019,10.591191448264443,3.1062307548850856,1.9739806183825193,2.020259349255075,3.772921412591016,6.519040093755125,2.2518499918365227,2.525274785292287,4.899875189856969,5.653189346068996,1.851903419196184,3.392764790004528,11.018519096907884,7.781490165070969,0.24316615389559587,10.766568353033522,6.265181661492312,1.177124775056972,2.596620016046395,2.3388038652069563,4.026905628973221,14.68471827920999,1.9857413550279273,13.267974416083689,2.27546214668897,2.0633254710954376,2.8328376164607096,1.959701223069033,2.8795850527572058,3.2242783321902366,5.7543705712772955,11.754618362493874,1.5912144286935188,3.0174614379266402,10.3314573814922,4.041371096678259,2.661962795407558,9.373808779444202,7.695601480585023,3.376094869192663,4.3529199011092485,2.068242878753061,5.381434873726478,3.8990569763294474,4.199256697944795,4.339075322596524,3.376591338235019,2.1629990393324348,2.502129871365295,5.114109833084001,17.324855540850514,2.5954076316743317,2.7213007324326512,3.2242783321902366,5.976373418901407,3.0316670042782694,6.44401702014834,11.851470098503443,2.9502407908281847,4.57982309950741,8.399460509225568,1.0475459812305676,7.630697020857186,11.704779347429566,2.3747624087033348,1.332745349974439,4.749611826598587,2.279026402393856,6.301201227522603,6.44401702014834,2.1588721203660595,7.226921081997639,6.614737804195682,3.632195377804482,5.1564527129817535,11.623368391684565,4.68000786726418,2.216203827609104,10.703243318411676,5.000313072529677,5.147413791881254,12.690864783063764,13.508250765494742,3.042176637281319,2.5650181350042494,9.744127124092829,1.1349693767555449,1.332745349974439,0.9317949032865958,5.075124031020644,3.514660704478751,3.696708398999738,6.137564712080956,1.77117670232795,6.3728231766983034,0.4771372865082729,0.413594688209359,6.520273671993464,10.749584056841062,1.5932789451263856,5.13468328587602,2.4443719073149333,5.685995929813103,0.7266296718789277,11.944137058534428,1.5696182804111547,1.4015590546273546,9.294887647879463,4.728281044506536,7.506610011180889,4.184026850815865,7.654945897317894,3.668111346104488,2.371777229214521,14.292414557073583,3.3893131480910017,0.61700029608579,3.392764790004528,8.734242353755807,4.128761600688131,2.3949521497591566,11.508612638283072,3.075920847406269,2.3949521497591566,4.142770589261919
diff --git a/data/my_submission.csv b/data/my_submission.csv
new file mode 100644
index 0000000..17ec855
--- /dev/null
+++ b/data/my_submission.csv
@@ -0,0 +1,419 @@
+PassengerId,Survived
+892,0
+893,0
+894,0
+895,0
+896,1
+897,0
+898,0
+899,1
+900,1
+901,0
+902,0
+903,1
+904,1
+905,0
+906,1
+907,1
+908,0
+909,0
+910,1
+911,1
+912,1
+913,0
+914,1
+915,1
+916,1
+917,0
+918,1
+919,0
+920,1
+921,1
+922,0
+923,1
+924,1
+925,1
+926,1
+927,0
+928,1
+929,1
+930,0
+931,1
+932,0
+933,1
+934,0
+935,1
+936,1
+937,0
+938,1
+939,0
+940,1
+941,1
+942,1
+943,1
+944,1
+945,1
+946,1
+947,0
+948,0
+949,0
+950,0
+951,1
+952,0
+953,0
+954,0
+955,0
+956,1
+957,1
+958,0
+959,1
+960,1
+961,1
+962,0
+963,0
+964,1
+965,1
+966,1
+967,1
+968,0
+969,1
+970,0
+971,0
+972,0
+973,1
+974,1
+975,0
+976,0
+977,0
+978,0
+979,1
+980,0
+981,1
+982,1
+983,0
+984,1
+985,0
+986,1
+987,0
+988,1
+989,0
+990,1
+991,0
+992,1
+993,1
+994,0
+995,0
+996,1
+997,0
+998,0
+999,0
+1000,0
+1001,1
+1002,1
+1003,0
+1004,1
+1005,0
+1006,1
+1007,1
+1008,0
+1009,1
+1010,1
+1011,1
+1012,1
+1013,0
+1014,1
+1015,0
+1016,0
+1017,1
+1018,0
+1019,0
+1020,0
+1021,0
+1022,0
+1023,1
+1024,1
+1025,0
+1026,0
+1027,0
+1028,0
+1029,0
+1030,1
+1031,1
+1032,0
+1033,1
+1034,1
+1035,1
+1036,1
+1037,0
+1038,1
+1039,0
+1040,1
+1041,1
+1042,1
+1043,0
+1044,0
+1045,1
+1046,0
+1047,0
+1048,1
+1049,1
+1050,1
+1051,1
+1052,0
+1053,0
+1054,1
+1055,0
+1056,0
+1057,1
+1058,1
+1059,0
+1060,1
+1061,1
+1062,0
+1063,0
+1064,0
+1065,0
+1066,0
+1067,1
+1068,1
+1069,1
+1070,1
+1071,1
+1072,0
+1073,1
+1074,1
+1075,0
+1076,1
+1077,0
+1078,1
+1079,0
+1080,0
+1081,0
+1082,1
+1083,1
+1084,0
+1085,0
+1086,1
+1087,0
+1088,1
+1089,1
+1090,0
+1091,1
+1092,0
+1093,1
+1094,1
+1095,1
+1096,0
+1097,1
+1098,0
+1099,0
+1100,1
+1101,0
+1102,0
+1103,0
+1104,1
+1105,1
+1106,0
+1107,1
+1108,0
+1109,1
+1110,1
+1111,0
+1112,1
+1113,0
+1114,1
+1115,0
+1116,1
+1117,1
+1118,0
+1119,0
+1120,0
+1121,0
+1122,1
+1123,1
+1124,0
+1125,0
+1126,1
+1127,0
+1128,1
+1129,0
+1130,1
+1131,1
+1132,1
+1133,1
+1134,1
+1135,0
+1136,0
+1137,1
+1138,1
+1139,1
+1140,1
+1141,1
+1142,1
+1143,0
+1144,1
+1145,0
+1146,0
+1147,0
+1148,0
+1149,0
+1150,1
+1151,0
+1152,0
+1153,0
+1154,1
+1155,1
+1156,1
+1157,0
+1158,0
+1159,0
+1160,1
+1161,0
+1162,1
+1163,0
+1164,1
+1165,0
+1166,0
+1167,1
+1168,0
+1169,1
+1170,0
+1171,0
+1172,1
+1173,1
+1174,0
+1175,1
+1176,1
+1177,0
+1178,0
+1179,1
+1180,0
+1181,0
+1182,1
+1183,0
+1184,0
+1185,1
+1186,0
+1187,0
+1188,1
+1189,1
+1190,1
+1191,0
+1192,0
+1193,1
+1194,0
+1195,0
+1196,0
+1197,1
+1198,1
+1199,1
+1200,1
+1201,1
+1202,0
+1203,0
+1204,0
+1205,0
+1206,1
+1207,0
+1208,1
+1209,0
+1210,0
+1211,1
+1212,0
+1213,0
+1214,0
+1215,1
+1216,1
+1217,0
+1218,1
+1219,1
+1220,1
+1221,0
+1222,1
+1223,1
+1224,0
+1225,1
+1226,0
+1227,1
+1228,0
+1229,0
+1230,1
+1231,0
+1232,0
+1233,0
+1234,1
+1235,1
+1236,0
+1237,1
+1238,0
+1239,1
+1240,0
+1241,1
+1242,1
+1243,0
+1244,1
+1245,1
+1246,1
+1247,1
+1248,1
+1249,0
+1250,0
+1251,1
+1252,0
+1253,1
+1254,1
+1255,0
+1256,1
+1257,1
+1258,0
+1259,1
+1260,1
+1261,1
+1262,0
+1263,1
+1264,0
+1265,0
+1266,1
+1267,1
+1268,1
+1269,0
+1270,1
+1271,0
+1272,0
+1273,0
+1274,1
+1275,1
+1276,0
+1277,1
+1278,0
+1279,0
+1280,0
+1281,0
+1282,1
+1283,1
+1284,1
+1285,0
+1286,0
+1287,1
+1288,0
+1289,1
+1290,0
+1291,0
+1292,1
+1293,0
+1294,1
+1295,1
+1296,1
+1297,1
+1298,0
+1299,1
+1300,0
+1301,1
+1302,0
+1303,1
+1304,1
+1305,0
+1306,1
+1307,0
+1308,0
+1309,1
diff --git a/data/test.csv b/data/test.csv
new file mode 100644
index 0000000..966356e
--- /dev/null
+++ b/data/test.csv
@@ -0,0 +1,419 @@
+Pclass,Sex,Age,SibSp,Fare,Embarked
+3.0,0.0,34.5,0.0,7.8292,0.0
+3.0,1.0,47.0,1.0,7.0,1.0
+2.0,0.0,62.0,0.0,9.6875,0.0
+3.0,0.0,27.0,0.0,8.6625,1.0
+3.0,1.0,22.0,1.0,12.2875,1.0
+3.0,0.0,14.0,0.0,9.225,1.0
+3.0,1.0,30.0,0.0,7.6292,0.0
+2.0,0.0,26.0,1.0,29.0,1.0
+3.0,1.0,18.0,0.0,7.2292,2.0
+3.0,0.0,21.0,2.0,24.15,1.0
+3.0,0.0,30.272590361445783,0.0,7.8958,1.0
+1.0,0.0,46.0,0.0,26.0,1.0
+1.0,1.0,23.0,1.0,82.2667,1.0
+2.0,0.0,63.0,1.0,26.0,1.0
+1.0,1.0,47.0,1.0,61.175,1.0
+2.0,1.0,24.0,1.0,27.7208,2.0
+2.0,0.0,35.0,0.0,12.35,0.0
+3.0,0.0,21.0,0.0,7.225,2.0
+3.0,1.0,27.0,1.0,7.925,1.0
+3.0,1.0,45.0,0.0,7.225,2.0
+1.0,0.0,55.0,1.0,59.4,2.0
+3.0,0.0,9.0,0.0,3.1708,1.0
+1.0,1.0,30.272590361445783,0.0,31.6833,1.0
+1.0,0.0,21.0,0.0,61.3792,2.0
+1.0,1.0,48.0,1.0,262.375,2.0
+3.0,0.0,50.0,1.0,14.5,1.0
+1.0,1.0,22.0,0.0,61.9792,2.0
+3.0,0.0,22.5,0.0,7.225,2.0
+1.0,0.0,41.0,0.0,30.5,1.0
+3.0,0.0,30.272590361445783,2.0,21.6792,2.0
+2.0,0.0,50.0,1.0,26.0,1.0
+2.0,0.0,24.0,2.0,31.5,1.0
+3.0,1.0,33.0,1.0,20.575,1.0
+3.0,1.0,30.272590361445783,1.0,23.45,1.0
+1.0,0.0,30.0,1.0,57.75,2.0
+3.0,0.0,18.5,0.0,7.2292,2.0
+3.0,1.0,30.272590361445783,0.0,8.05,1.0
+3.0,1.0,21.0,0.0,8.6625,1.0
+3.0,0.0,25.0,0.0,9.5,1.0
+3.0,0.0,30.272590361445783,0.0,56.4958,1.0
+3.0,0.0,39.0,0.0,13.4167,2.0
+1.0,0.0,30.272590361445783,0.0,26.55,1.0
+3.0,0.0,41.0,0.0,7.85,1.0
+2.0,1.0,30.0,0.0,13.0,1.0
+1.0,1.0,45.0,1.0,52.5542,1.0
+3.0,0.0,25.0,0.0,7.925,1.0
+1.0,0.0,45.0,0.0,29.7,2.0
+3.0,0.0,30.272590361445783,0.0,7.75,0.0
+1.0,1.0,60.0,0.0,76.2917,2.0
+3.0,1.0,36.0,0.0,15.9,1.0
+1.0,0.0,24.0,1.0,60.0,1.0
+2.0,0.0,27.0,0.0,15.0333,2.0
+2.0,1.0,20.0,2.0,23.0,1.0
+1.0,1.0,28.0,3.0,263.0,1.0
+2.0,0.0,30.272590361445783,0.0,15.5792,2.0
+3.0,0.0,10.0,4.0,29.125,0.0
+3.0,0.0,35.0,0.0,7.8958,1.0
+3.0,0.0,25.0,0.0,7.65,1.0
+3.0,0.0,30.272590361445783,1.0,16.1,1.0
+1.0,1.0,36.0,0.0,262.375,2.0
+3.0,0.0,17.0,0.0,7.8958,1.0
+2.0,0.0,32.0,0.0,13.5,1.0
+3.0,0.0,18.0,0.0,7.75,1.0
+3.0,1.0,22.0,0.0,7.725,0.0
+1.0,0.0,13.0,2.0,262.375,2.0
+2.0,1.0,30.272590361445783,0.0,21.0,1.0
+3.0,1.0,18.0,0.0,7.8792,0.0
+1.0,0.0,47.0,0.0,42.4,1.0
+1.0,0.0,31.0,0.0,28.5375,2.0
+1.0,1.0,60.0,1.0,263.0,1.0
+3.0,1.0,24.0,0.0,7.75,0.0
+3.0,0.0,21.0,0.0,7.8958,1.0
+3.0,1.0,29.0,0.0,7.925,1.0
+1.0,0.0,28.5,0.0,27.7208,2.0
+1.0,1.0,35.0,0.0,211.5,2.0
+1.0,0.0,32.5,0.0,211.5,2.0
+3.0,0.0,30.272590361445783,0.0,8.05,1.0
+1.0,1.0,55.0,2.0,25.7,1.0
+2.0,0.0,30.0,0.0,13.0,1.0
+3.0,1.0,24.0,0.0,7.75,0.0
+3.0,0.0,6.0,1.0,15.2458,2.0
+1.0,0.0,67.0,1.0,221.7792,1.0
+1.0,0.0,49.0,0.0,26.0,1.0
+3.0,0.0,30.272590361445783,0.0,7.8958,1.0
+2.0,0.0,30.272590361445783,0.0,10.7083,0.0
+3.0,0.0,30.272590361445783,1.0,14.4542,2.0
+3.0,1.0,27.0,0.0,7.8792,0.0
+3.0,1.0,18.0,0.0,8.05,1.0
+3.0,1.0,30.272590361445783,0.0,7.75,0.0
+2.0,0.0,2.0,1.0,23.0,1.0
+3.0,1.0,22.0,1.0,13.9,1.0
+3.0,0.0,30.272590361445783,0.0,7.775,1.0
+1.0,1.0,27.0,1.0,52.0,1.0
+3.0,0.0,30.272590361445783,0.0,8.05,1.0
+1.0,0.0,25.0,0.0,26.0,2.0
+3.0,0.0,25.0,0.0,7.7958,1.0
+1.0,1.0,76.0,1.0,78.85,1.0
+3.0,0.0,29.0,0.0,7.925,1.0
+3.0,1.0,20.0,0.0,7.8542,1.0
+3.0,0.0,33.0,0.0,8.05,1.0
+1.0,1.0,43.0,1.0,55.4417,2.0
+2.0,0.0,27.0,1.0,26.0,1.0
+3.0,0.0,30.272590361445783,0.0,7.75,0.0
+3.0,0.0,26.0,0.0,7.775,1.0
+3.0,1.0,16.0,1.0,8.5167,2.0
+3.0,0.0,28.0,0.0,22.525,1.0
+3.0,0.0,21.0,0.0,7.8208,0.0
+3.0,0.0,30.272590361445783,0.0,7.75,0.0
+3.0,0.0,30.272590361445783,0.0,8.7125,1.0
+2.0,0.0,18.5,0.0,13.0,1.0
+2.0,0.0,41.0,0.0,15.0458,2.0
+3.0,1.0,30.272590361445783,0.0,7.7792,0.0
+1.0,1.0,36.0,0.0,31.6792,2.0
+3.0,1.0,18.5,0.0,7.2833,0.0
+1.0,1.0,63.0,1.0,221.7792,1.0
+3.0,0.0,18.0,1.0,14.4542,2.0
+3.0,0.0,30.272590361445783,0.0,6.4375,2.0
+3.0,1.0,1.0,1.0,16.7,1.0
+1.0,0.0,36.0,0.0,75.2417,2.0
+2.0,1.0,29.0,1.0,26.0,1.0
+2.0,1.0,12.0,0.0,15.75,1.0
+3.0,0.0,30.272590361445783,1.0,7.75,0.0
+1.0,1.0,35.0,1.0,57.75,2.0
+3.0,0.0,28.0,0.0,7.25,1.0
+3.0,0.0,30.272590361445783,0.0,7.75,0.0
+3.0,1.0,17.0,0.0,16.1,1.0
+3.0,0.0,22.0,0.0,7.7958,1.0
+3.0,1.0,30.272590361445783,2.0,23.25,0.0
+2.0,0.0,42.0,0.0,13.0,1.0
+3.0,0.0,24.0,0.0,8.05,1.0
+3.0,0.0,32.0,0.0,8.05,1.0
+1.0,0.0,53.0,0.0,28.5,2.0
+3.0,1.0,30.272590361445783,0.0,25.4667,1.0
+3.0,0.0,30.272590361445783,1.0,6.4375,2.0
+3.0,0.0,43.0,0.0,7.8958,1.0
+3.0,0.0,24.0,0.0,7.8542,1.0
+3.0,0.0,26.5,0.0,7.225,2.0
+2.0,0.0,26.0,0.0,13.0,1.0
+3.0,1.0,23.0,0.0,8.05,1.0
+3.0,0.0,40.0,1.0,46.9,1.0
+3.0,1.0,10.0,5.0,46.9,1.0
+1.0,1.0,33.0,0.0,151.55,1.0
+1.0,0.0,61.0,1.0,262.375,2.0
+2.0,0.0,28.0,0.0,26.0,1.0
+1.0,0.0,42.0,0.0,26.55,1.0
+3.0,0.0,31.0,3.0,18.0,1.0
+1.0,0.0,30.272590361445783,0.0,51.8625,1.0
+3.0,0.0,22.0,0.0,8.05,1.0
+1.0,0.0,30.272590361445783,0.0,26.55,1.0
+2.0,0.0,30.0,1.0,26.0,1.0
+1.0,1.0,23.0,0.0,83.1583,2.0
+3.0,0.0,30.272590361445783,0.0,7.8958,2.0
+3.0,0.0,60.5,0.0,35.627188489208635,1.0
+3.0,1.0,36.0,0.0,12.1833,1.0
+3.0,0.0,13.0,4.0,31.3875,1.0
+3.0,0.0,24.0,0.0,7.55,1.0
+1.0,1.0,29.0,0.0,221.7792,1.0
+3.0,1.0,23.0,0.0,7.8542,1.0
+1.0,0.0,42.0,0.0,26.55,1.0
+3.0,1.0,26.0,0.0,13.775,1.0
+3.0,1.0,30.272590361445783,0.0,7.7333,0.0
+3.0,0.0,7.0,1.0,15.2458,2.0
+2.0,1.0,26.0,0.0,13.5,1.0
+3.0,0.0,30.272590361445783,0.0,7.0,1.0
+2.0,0.0,41.0,0.0,13.0,1.0
+3.0,1.0,26.0,1.0,22.025,1.0
+1.0,0.0,48.0,0.0,50.4958,2.0
+3.0,0.0,18.0,2.0,34.375,1.0
+1.0,1.0,30.272590361445783,0.0,27.7208,2.0
+3.0,1.0,22.0,0.0,8.9625,1.0
+3.0,0.0,30.272590361445783,0.0,7.55,1.0
+3.0,0.0,27.0,0.0,7.225,2.0
+3.0,0.0,23.0,1.0,13.9,1.0
+3.0,0.0,30.272590361445783,0.0,7.2292,2.0
+3.0,0.0,40.0,1.0,31.3875,1.0
+2.0,1.0,15.0,0.0,39.0,1.0
+2.0,1.0,20.0,0.0,36.75,1.0
+1.0,0.0,54.0,1.0,55.4417,2.0
+2.0,1.0,36.0,0.0,39.0,1.0
+1.0,1.0,64.0,0.0,83.1583,2.0
+2.0,0.0,30.0,0.0,13.0,1.0
+1.0,0.0,37.0,1.0,83.1583,2.0
+1.0,1.0,18.0,1.0,53.1,1.0
+3.0,0.0,30.272590361445783,0.0,7.75,0.0
+1.0,1.0,27.0,1.0,247.5208,2.0
+2.0,0.0,40.0,0.0,16.0,1.0
+2.0,1.0,21.0,0.0,21.0,1.0
+3.0,0.0,17.0,2.0,8.05,1.0
+3.0,1.0,30.272590361445783,8.0,69.55,1.0
+2.0,0.0,40.0,0.0,13.0,1.0
+2.0,0.0,34.0,1.0,26.0,1.0
+1.0,0.0,30.272590361445783,0.0,26.0,1.0
+3.0,0.0,11.5,1.0,14.5,1.0
+2.0,0.0,61.0,0.0,12.35,0.0
+2.0,0.0,8.0,0.0,32.5,1.0
+3.0,0.0,33.0,0.0,7.8542,1.0
+1.0,0.0,6.0,0.0,134.5,2.0
+3.0,1.0,18.0,0.0,7.775,1.0
+2.0,0.0,23.0,0.0,10.5,1.0
+3.0,1.0,30.272590361445783,0.0,8.1125,1.0
+3.0,1.0,30.272590361445783,0.0,15.5,0.0
+3.0,0.0,0.33,0.0,14.4,1.0
+1.0,0.0,47.0,1.0,227.525,2.0
+2.0,1.0,8.0,1.0,26.0,1.0
+2.0,0.0,25.0,0.0,10.5,1.0
+1.0,0.0,30.272590361445783,0.0,25.7417,2.0
+3.0,1.0,35.0,0.0,7.75,0.0
+2.0,0.0,24.0,0.0,10.5,1.0
+1.0,1.0,33.0,0.0,27.7208,2.0
+3.0,0.0,25.0,0.0,7.8958,1.0
+3.0,0.0,32.0,0.0,22.525,1.0
+3.0,0.0,30.272590361445783,0.0,7.05,1.0
+2.0,0.0,17.0,0.0,73.5,1.0
+2.0,1.0,60.0,1.0,26.0,1.0
+3.0,1.0,38.0,4.0,7.775,1.0
+1.0,0.0,42.0,0.0,42.5,1.0
+3.0,1.0,30.272590361445783,0.0,7.8792,0.0
+1.0,0.0,57.0,1.0,164.8667,1.0
+1.0,1.0,50.0,1.0,211.5,2.0
+3.0,0.0,30.272590361445783,0.0,8.05,1.0
+2.0,1.0,30.0,1.0,13.8583,2.0
+3.0,0.0,21.0,0.0,8.05,1.0
+2.0,1.0,22.0,0.0,10.5,1.0
+3.0,0.0,21.0,0.0,7.7958,1.0
+1.0,1.0,53.0,0.0,27.4458,2.0
+3.0,1.0,30.272590361445783,0.0,15.2458,2.0
+3.0,0.0,23.0,0.0,7.7958,1.0
+3.0,1.0,30.272590361445783,0.0,7.75,0.0
+3.0,0.0,40.5,0.0,15.1,1.0
+2.0,0.0,36.0,0.0,13.0,1.0
+2.0,0.0,14.0,0.0,65.0,1.0
+1.0,1.0,21.0,0.0,26.55,1.0
+3.0,0.0,21.0,1.0,6.4958,1.0
+3.0,0.0,30.272590361445783,0.0,7.8792,0.0
+1.0,0.0,39.0,1.0,71.2833,2.0
+3.0,0.0,20.0,0.0,7.8542,1.0
+1.0,0.0,64.0,1.0,75.25,2.0
+3.0,0.0,20.0,0.0,7.225,2.0
+2.0,1.0,18.0,1.0,13.0,1.0
+1.0,1.0,48.0,1.0,106.425,2.0
+1.0,1.0,55.0,0.0,27.7208,2.0
+2.0,1.0,45.0,0.0,30.0,1.0
+1.0,0.0,45.0,1.0,134.5,2.0
+3.0,0.0,30.272590361445783,0.0,7.8875,1.0
+3.0,0.0,30.272590361445783,1.0,23.45,1.0
+1.0,0.0,41.0,1.0,51.8625,1.0
+2.0,1.0,22.0,0.0,21.0,1.0
+2.0,0.0,42.0,1.0,32.5,1.0
+2.0,1.0,29.0,1.0,26.0,1.0
+3.0,1.0,30.272590361445783,1.0,14.4542,2.0
+2.0,1.0,0.92,1.0,27.75,1.0
+3.0,0.0,20.0,0.0,7.925,1.0
+1.0,0.0,27.0,1.0,136.7792,2.0
+3.0,0.0,24.0,0.0,9.325,1.0
+3.0,0.0,32.5,0.0,9.5,1.0
+3.0,0.0,30.272590361445783,0.0,7.55,1.0
+3.0,0.0,30.272590361445783,0.0,7.75,0.0
+3.0,0.0,28.0,0.0,8.05,1.0
+2.0,1.0,19.0,0.0,13.0,1.0
+3.0,0.0,21.0,0.0,7.775,1.0
+3.0,0.0,36.5,1.0,17.4,1.0
+3.0,0.0,21.0,0.0,7.8542,1.0
+2.0,1.0,29.0,0.0,23.0,1.0
+3.0,1.0,1.0,1.0,12.1833,1.0
+2.0,0.0,30.0,0.0,12.7375,2.0
+3.0,0.0,30.272590361445783,0.0,7.8958,1.0
+1.0,0.0,30.272590361445783,0.0,0.0,1.0
+3.0,0.0,30.272590361445783,0.0,7.55,1.0
+3.0,1.0,30.272590361445783,0.0,8.05,1.0
+3.0,0.0,17.0,0.0,8.6625,1.0
+1.0,0.0,46.0,0.0,75.2417,2.0
+3.0,0.0,30.272590361445783,0.0,7.75,0.0
+1.0,1.0,26.0,1.0,136.7792,2.0
+3.0,1.0,30.272590361445783,1.0,15.5,0.0
+3.0,0.0,30.272590361445783,0.0,7.225,2.0
+2.0,1.0,20.0,1.0,26.0,1.0
+2.0,0.0,28.0,0.0,10.5,1.0
+2.0,0.0,40.0,1.0,26.0,1.0
+2.0,0.0,30.0,1.0,21.0,1.0
+2.0,0.0,22.0,0.0,10.5,1.0
+3.0,1.0,23.0,0.0,8.6625,1.0
+3.0,0.0,0.75,1.0,13.775,1.0
+3.0,1.0,30.272590361445783,0.0,7.75,0.0
+3.0,1.0,9.0,1.0,15.2458,2.0
+3.0,1.0,2.0,1.0,20.2125,1.0
+3.0,0.0,36.0,0.0,7.25,1.0
+3.0,0.0,30.272590361445783,0.0,7.25,1.0
+1.0,0.0,24.0,1.0,82.2667,1.0
+3.0,0.0,30.272590361445783,0.0,7.2292,2.0
+3.0,0.0,30.272590361445783,0.0,8.05,1.0
+1.0,0.0,30.272590361445783,0.0,39.6,1.0
+3.0,1.0,30.0,0.0,6.95,0.0
+3.0,0.0,30.272590361445783,0.0,7.2292,2.0
+1.0,0.0,53.0,1.0,81.8583,1.0
+3.0,0.0,36.0,0.0,9.5,1.0
+3.0,0.0,26.0,0.0,7.8958,1.0
+2.0,1.0,1.0,1.0,41.5792,2.0
+3.0,0.0,30.272590361445783,2.0,21.6792,2.0
+1.0,0.0,30.0,0.0,45.5,1.0
+3.0,0.0,29.0,0.0,7.8542,1.0
+3.0,0.0,32.0,0.0,7.775,1.0
+2.0,0.0,30.272590361445783,0.0,15.0458,2.0
+2.0,0.0,43.0,0.0,21.0,1.0
+3.0,0.0,24.0,0.0,8.6625,1.0
+3.0,1.0,30.272590361445783,0.0,7.75,0.0
+1.0,1.0,64.0,1.0,26.55,1.0
+1.0,0.0,30.0,1.0,151.55,1.0
+3.0,0.0,0.83,0.0,9.35,1.0
+1.0,0.0,55.0,1.0,93.5,1.0
+3.0,1.0,45.0,1.0,14.1083,1.0
+3.0,0.0,18.0,0.0,8.6625,1.0
+3.0,0.0,22.0,0.0,7.225,2.0
+3.0,0.0,30.272590361445783,0.0,7.575,1.0
+3.0,1.0,37.0,0.0,7.75,0.0
+1.0,1.0,55.0,0.0,135.6333,2.0
+3.0,1.0,17.0,0.0,7.7333,0.0
+1.0,0.0,57.0,1.0,146.5208,2.0
+2.0,0.0,19.0,0.0,10.5,1.0
+3.0,0.0,27.0,0.0,7.8542,1.0
+2.0,0.0,22.0,2.0,31.5,1.0
+3.0,0.0,26.0,0.0,7.775,1.0
+3.0,0.0,25.0,0.0,7.2292,2.0
+2.0,0.0,26.0,0.0,13.0,1.0
+1.0,0.0,33.0,0.0,26.55,1.0
+1.0,1.0,39.0,0.0,211.3375,1.0
+3.0,0.0,23.0,0.0,7.05,1.0
+2.0,1.0,12.0,2.0,39.0,1.0
+1.0,0.0,46.0,0.0,79.2,2.0
+2.0,0.0,29.0,1.0,26.0,1.0
+2.0,0.0,21.0,0.0,13.0,1.0
+2.0,1.0,48.0,0.0,36.75,1.0
+1.0,0.0,39.0,0.0,29.7,2.0
+3.0,0.0,30.272590361445783,0.0,7.225,2.0
+3.0,1.0,19.0,1.0,15.7417,2.0
+3.0,0.0,27.0,0.0,7.8958,1.0
+1.0,0.0,30.0,0.0,26.0,1.0
+2.0,0.0,32.0,0.0,13.0,1.0
+3.0,0.0,39.0,0.0,7.2292,2.0
+2.0,0.0,25.0,0.0,31.5,1.0
+3.0,0.0,30.272590361445783,0.0,7.2292,2.0
+2.0,0.0,18.0,0.0,10.5,1.0
+3.0,0.0,32.0,0.0,7.5792,1.0
+3.0,0.0,30.272590361445783,1.0,69.55,1.0
+1.0,1.0,58.0,0.0,512.3292,2.0
+3.0,0.0,30.272590361445783,1.0,14.5,1.0
+3.0,1.0,16.0,0.0,7.65,1.0
+2.0,0.0,26.0,0.0,13.0,1.0
+3.0,1.0,38.0,0.0,7.2292,2.0
+2.0,0.0,24.0,0.0,13.5,1.0
+2.0,1.0,31.0,0.0,21.0,1.0
+1.0,1.0,45.0,0.0,63.3583,2.0
+2.0,0.0,25.0,0.0,10.5,1.0
+2.0,0.0,18.0,0.0,73.5,1.0
+2.0,0.0,49.0,1.0,65.0,1.0
+3.0,1.0,0.17,1.0,20.575,1.0
+1.0,0.0,50.0,0.0,26.0,1.0
+1.0,1.0,59.0,2.0,51.4792,1.0
+3.0,0.0,30.272590361445783,0.0,7.8792,1.0
+3.0,0.0,30.272590361445783,0.0,7.75,0.0
+3.0,1.0,30.0,1.0,15.55,1.0
+3.0,0.0,14.5,8.0,69.55,1.0
+2.0,1.0,24.0,1.0,37.0042,2.0
+2.0,1.0,31.0,0.0,21.0,1.0
+3.0,0.0,27.0,0.0,8.6625,1.0
+1.0,1.0,25.0,1.0,55.4417,2.0
+3.0,1.0,30.272590361445783,1.0,69.55,1.0
+3.0,0.0,30.272590361445783,1.0,14.4583,2.0
+3.0,1.0,22.0,0.0,39.6875,1.0
+1.0,1.0,45.0,0.0,59.4,2.0
+2.0,0.0,29.0,0.0,13.8583,2.0
+2.0,0.0,21.0,1.0,11.5,1.0
+1.0,1.0,31.0,0.0,134.5,2.0
+1.0,0.0,49.0,0.0,0.0,1.0
+2.0,0.0,44.0,0.0,13.0,1.0
+1.0,1.0,54.0,1.0,81.8583,1.0
+1.0,1.0,45.0,0.0,262.375,2.0
+3.0,1.0,22.0,2.0,8.6625,1.0
+2.0,0.0,21.0,0.0,11.5,1.0
+1.0,0.0,55.0,0.0,50.0,1.0
+3.0,0.0,5.0,4.0,31.3875,1.0
+3.0,0.0,30.272590361445783,0.0,7.75,0.0
+3.0,0.0,26.0,0.0,7.8792,0.0
+3.0,1.0,30.272590361445783,0.0,14.5,1.0
+3.0,1.0,19.0,1.0,16.1,1.0
+2.0,0.0,30.272590361445783,0.0,12.875,1.0
+2.0,1.0,24.0,1.0,65.0,1.0
+3.0,0.0,24.0,0.0,7.775,1.0
+2.0,0.0,57.0,0.0,13.0,1.0
+3.0,0.0,21.0,0.0,7.75,0.0
+3.0,0.0,6.0,3.0,21.075,1.0
+1.0,0.0,23.0,0.0,93.5,1.0
+1.0,1.0,51.0,0.0,39.4,1.0
+3.0,0.0,13.0,0.0,20.25,1.0
+2.0,0.0,47.0,0.0,10.5,1.0
+3.0,0.0,29.0,3.0,22.025,1.0
+1.0,1.0,18.0,1.0,60.0,1.0
+3.0,0.0,24.0,0.0,7.25,0.0
+1.0,1.0,48.0,1.0,79.2,2.0
+3.0,0.0,22.0,0.0,7.775,1.0
+3.0,0.0,31.0,0.0,7.7333,0.0
+1.0,1.0,30.0,0.0,164.8667,1.0
+2.0,0.0,38.0,1.0,21.0,1.0
+1.0,1.0,22.0,0.0,59.4,2.0
+1.0,0.0,17.0,0.0,47.1,1.0
+1.0,0.0,43.0,1.0,27.7208,2.0
+2.0,0.0,20.0,0.0,13.8625,2.0
+2.0,0.0,23.0,1.0,10.5,1.0
+1.0,0.0,50.0,1.0,211.5,2.0
+3.0,1.0,30.272590361445783,0.0,7.7208,0.0
+3.0,1.0,3.0,1.0,13.775,1.0
+3.0,1.0,30.272590361445783,0.0,7.75,0.0
+1.0,1.0,37.0,1.0,90.0,0.0
+3.0,1.0,28.0,0.0,7.775,1.0
+3.0,0.0,30.272590361445783,0.0,8.05,1.0
+1.0,1.0,39.0,0.0,108.9,2.0
+3.0,0.0,38.5,0.0,7.25,1.0
+3.0,0.0,30.272590361445783,0.0,8.05,1.0
+3.0,0.0,30.272590361445783,1.0,22.3583,2.0
diff --git a/data/train.csv b/data/train.csv
new file mode 100644
index 0000000..d1d9b77
--- /dev/null
+++ b/data/train.csv
@@ -0,0 +1,892 @@
+Pclass,Sex,Age,SibSp,Fare,Embarked,Age_was_missing
+3.0,0.0,22.0,1.0,7.25,0.0,0.0
+1.0,1.0,38.0,1.0,71.2833,1.0,0.0
+3.0,1.0,26.0,0.0,7.925,0.0,0.0
+1.0,1.0,35.0,1.0,53.1,0.0,0.0
+3.0,0.0,35.0,0.0,8.05,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.4583,2.0,1.0
+1.0,0.0,54.0,0.0,51.8625,0.0,0.0
+3.0,0.0,2.0,3.0,21.075,0.0,0.0
+3.0,1.0,27.0,0.0,11.1333,0.0,0.0
+2.0,1.0,14.0,1.0,30.0708,1.0,0.0
+3.0,1.0,4.0,1.0,16.7,0.0,0.0
+1.0,1.0,58.0,0.0,26.55,0.0,0.0
+3.0,0.0,20.0,0.0,8.05,0.0,0.0
+3.0,0.0,39.0,1.0,31.275,0.0,0.0
+3.0,1.0,14.0,0.0,7.8542,0.0,0.0
+2.0,1.0,55.0,0.0,16.0,0.0,0.0
+3.0,0.0,2.0,4.0,29.125,2.0,0.0
+2.0,0.0,29.69911764705882,0.0,13.0,0.0,1.0
+3.0,1.0,31.0,1.0,18.0,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.225,1.0,1.0
+2.0,0.0,35.0,0.0,26.0,0.0,0.0
+2.0,0.0,34.0,0.0,13.0,0.0,0.0
+3.0,1.0,15.0,0.0,8.0292,2.0,0.0
+1.0,0.0,28.0,0.0,35.5,0.0,0.0
+3.0,1.0,8.0,3.0,21.075,0.0,0.0
+3.0,1.0,38.0,1.0,31.3875,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.225,1.0,1.0
+1.0,0.0,19.0,3.0,263.0,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.8792,2.0,1.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+1.0,0.0,40.0,0.0,27.7208,1.0,0.0
+1.0,1.0,29.69911764705882,1.0,146.5208,1.0,1.0
+3.0,1.0,29.69911764705882,0.0,7.75,2.0,1.0
+2.0,0.0,66.0,0.0,10.5,0.0,0.0
+1.0,0.0,28.0,1.0,82.1708,1.0,0.0
+1.0,0.0,42.0,1.0,52.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.2292,1.0,1.0
+3.0,0.0,21.0,0.0,8.05,0.0,0.0
+3.0,1.0,18.0,2.0,18.0,0.0,0.0
+3.0,1.0,14.0,1.0,11.2417,1.0,0.0
+3.0,1.0,40.0,1.0,9.475,0.0,0.0
+2.0,1.0,27.0,1.0,21.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,1.0,1.0
+2.0,1.0,3.0,1.0,41.5792,1.0,0.0
+3.0,1.0,19.0,0.0,7.8792,2.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+3.0,0.0,29.69911764705882,1.0,15.5,2.0,1.0
+3.0,1.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,0.0,29.69911764705882,2.0,21.6792,1.0,1.0
+3.0,1.0,18.0,1.0,17.8,0.0,0.0
+3.0,0.0,7.0,4.0,39.6875,0.0,0.0
+3.0,0.0,21.0,0.0,7.8,0.0,0.0
+1.0,1.0,49.0,1.0,76.7292,1.0,0.0
+2.0,1.0,29.0,1.0,26.0,0.0,0.0
+1.0,0.0,65.0,0.0,61.9792,1.0,0.0
+1.0,0.0,29.69911764705882,0.0,35.5,0.0,1.0
+2.0,1.0,21.0,0.0,10.5,0.0,0.0
+3.0,0.0,28.5,0.0,7.2292,1.0,0.0
+2.0,1.0,5.0,1.0,27.75,0.0,0.0
+3.0,0.0,11.0,5.0,46.9,0.0,0.0
+3.0,0.0,22.0,0.0,7.2292,1.0,0.0
+1.0,1.0,38.0,0.0,80.0,-1.0,0.0
+1.0,0.0,45.0,1.0,83.475,0.0,0.0
+3.0,0.0,4.0,3.0,27.9,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,27.7208,1.0,1.0
+3.0,0.0,29.69911764705882,1.0,15.2458,1.0,1.0
+2.0,1.0,29.0,0.0,10.5,0.0,0.0
+3.0,0.0,19.0,0.0,8.1583,0.0,0.0
+3.0,1.0,17.0,4.0,7.925,0.0,0.0
+3.0,0.0,26.0,2.0,8.6625,0.0,0.0
+2.0,0.0,32.0,0.0,10.5,0.0,0.0
+3.0,1.0,16.0,5.0,46.9,0.0,0.0
+2.0,0.0,21.0,0.0,73.5,0.0,0.0
+3.0,0.0,26.0,1.0,14.4542,1.0,0.0
+3.0,0.0,32.0,0.0,56.4958,0.0,0.0
+3.0,0.0,25.0,0.0,7.65,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+2.0,0.0,0.83,0.0,29.0,0.0,0.0
+3.0,1.0,30.0,0.0,12.475,0.0,0.0
+3.0,0.0,22.0,0.0,9.0,0.0,0.0
+3.0,0.0,29.0,0.0,9.5,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.7875,2.0,1.0
+1.0,0.0,28.0,0.0,47.1,0.0,0.0
+2.0,1.0,17.0,0.0,10.5,0.0,0.0
+3.0,1.0,33.0,3.0,15.85,0.0,0.0
+3.0,0.0,16.0,1.0,34.375,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+1.0,1.0,23.0,3.0,263.0,0.0,0.0
+3.0,0.0,24.0,0.0,8.05,0.0,0.0
+3.0,0.0,29.0,0.0,8.05,0.0,0.0
+3.0,0.0,20.0,0.0,7.8542,0.0,0.0
+1.0,0.0,46.0,1.0,61.175,0.0,0.0
+3.0,0.0,26.0,1.0,20.575,0.0,0.0
+3.0,0.0,59.0,0.0,7.25,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+1.0,0.0,71.0,0.0,34.6542,1.0,0.0
+1.0,0.0,23.0,0.0,63.3583,1.0,0.0
+2.0,1.0,34.0,0.0,23.0,0.0,0.0
+2.0,0.0,34.0,1.0,26.0,0.0,0.0
+3.0,1.0,28.0,0.0,7.8958,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+1.0,0.0,21.0,0.0,77.2875,0.0,0.0
+3.0,0.0,33.0,0.0,8.6542,0.0,0.0
+3.0,0.0,37.0,2.0,7.925,0.0,0.0
+3.0,0.0,28.0,0.0,7.8958,0.0,0.0
+3.0,1.0,21.0,0.0,7.65,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.775,0.0,1.0
+3.0,0.0,38.0,0.0,7.8958,0.0,0.0
+3.0,1.0,29.69911764705882,1.0,24.15,2.0,1.0
+1.0,0.0,47.0,0.0,52.0,0.0,0.0
+3.0,1.0,14.5,1.0,14.4542,1.0,0.0
+3.0,0.0,22.0,0.0,8.05,0.0,0.0
+3.0,1.0,20.0,1.0,9.825,0.0,0.0
+3.0,1.0,17.0,0.0,14.4583,1.0,0.0
+3.0,0.0,21.0,0.0,7.925,0.0,0.0
+3.0,0.0,70.5,0.0,7.75,2.0,0.0
+2.0,0.0,29.0,1.0,21.0,0.0,0.0
+1.0,0.0,24.0,0.0,247.5208,1.0,0.0
+3.0,1.0,2.0,4.0,31.275,0.0,0.0
+2.0,0.0,21.0,2.0,73.5,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+2.0,0.0,32.5,1.0,30.0708,1.0,0.0
+2.0,1.0,32.5,0.0,13.0,0.0,0.0
+1.0,0.0,54.0,0.0,77.2875,0.0,0.0
+3.0,0.0,12.0,1.0,11.2417,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,0.0,24.0,0.0,7.1417,0.0,0.0
+3.0,1.0,29.69911764705882,1.0,22.3583,1.0,1.0
+3.0,0.0,45.0,0.0,6.975,0.0,0.0
+3.0,0.0,33.0,0.0,7.8958,1.0,0.0
+3.0,0.0,20.0,0.0,7.05,0.0,0.0
+3.0,1.0,47.0,1.0,14.5,0.0,0.0
+2.0,1.0,29.0,1.0,26.0,0.0,0.0
+2.0,0.0,25.0,0.0,13.0,0.0,0.0
+2.0,0.0,23.0,0.0,15.0458,1.0,0.0
+1.0,1.0,19.0,0.0,26.2833,0.0,0.0
+1.0,0.0,37.0,1.0,53.1,0.0,0.0
+3.0,0.0,16.0,0.0,9.2167,0.0,0.0
+1.0,0.0,24.0,0.0,79.2,1.0,0.0
+3.0,1.0,29.69911764705882,0.0,15.2458,1.0,1.0
+3.0,1.0,22.0,0.0,7.75,0.0,0.0
+3.0,1.0,24.0,1.0,15.85,0.0,0.0
+3.0,0.0,19.0,0.0,6.75,2.0,0.0
+2.0,0.0,18.0,0.0,11.5,0.0,0.0
+2.0,0.0,19.0,1.0,36.75,0.0,0.0
+3.0,0.0,27.0,0.0,7.7958,0.0,0.0
+3.0,1.0,9.0,2.0,34.375,0.0,0.0
+2.0,0.0,36.5,0.0,26.0,0.0,0.0
+2.0,0.0,42.0,0.0,13.0,0.0,0.0
+2.0,0.0,51.0,0.0,12.525,0.0,0.0
+1.0,1.0,22.0,1.0,66.6,0.0,0.0
+3.0,0.0,55.5,0.0,8.05,0.0,0.0
+3.0,0.0,40.5,0.0,14.5,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.3125,0.0,1.0
+1.0,0.0,51.0,0.0,61.3792,1.0,0.0
+3.0,1.0,16.0,0.0,7.7333,2.0,0.0
+3.0,0.0,30.0,0.0,8.05,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.6625,0.0,1.0
+3.0,0.0,29.69911764705882,8.0,69.55,0.0,1.0
+3.0,0.0,44.0,0.0,16.1,0.0,0.0
+2.0,1.0,40.0,0.0,15.75,0.0,0.0
+3.0,0.0,26.0,0.0,7.775,0.0,0.0
+3.0,0.0,17.0,0.0,8.6625,0.0,0.0
+3.0,0.0,1.0,4.0,39.6875,0.0,0.0
+3.0,0.0,9.0,0.0,20.525,0.0,0.0
+1.0,1.0,29.69911764705882,0.0,55.0,0.0,1.0
+3.0,1.0,45.0,1.0,27.9,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,25.925,0.0,1.0
+3.0,0.0,28.0,0.0,56.4958,0.0,0.0
+1.0,0.0,61.0,0.0,33.5,0.0,0.0
+3.0,0.0,4.0,4.0,29.125,2.0,0.0
+3.0,1.0,1.0,1.0,11.1333,0.0,0.0
+3.0,0.0,21.0,0.0,7.925,0.0,0.0
+1.0,0.0,56.0,0.0,30.6958,1.0,0.0
+3.0,0.0,18.0,1.0,7.8542,0.0,0.0
+3.0,0.0,29.69911764705882,3.0,25.4667,0.0,1.0
+1.0,1.0,50.0,0.0,28.7125,1.0,0.0
+2.0,0.0,30.0,0.0,13.0,0.0,0.0
+3.0,0.0,36.0,0.0,0.0,0.0,0.0
+3.0,1.0,29.69911764705882,8.0,69.55,0.0,1.0
+2.0,0.0,29.69911764705882,0.0,15.05,1.0,1.0
+3.0,0.0,9.0,4.0,31.3875,0.0,0.0
+2.0,0.0,1.0,2.0,39.0,0.0,0.0
+3.0,1.0,4.0,0.0,22.025,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,50.0,0.0,1.0
+3.0,1.0,29.69911764705882,1.0,15.5,2.0,1.0
+1.0,0.0,45.0,0.0,26.55,0.0,0.0
+3.0,0.0,40.0,1.0,15.5,2.0,0.0
+3.0,0.0,36.0,0.0,7.8958,0.0,0.0
+2.0,1.0,32.0,0.0,13.0,0.0,0.0
+2.0,0.0,19.0,0.0,13.0,0.0,0.0
+3.0,1.0,19.0,1.0,7.8542,0.0,0.0
+2.0,0.0,3.0,1.0,26.0,0.0,0.0
+1.0,1.0,44.0,0.0,27.7208,1.0,0.0
+1.0,1.0,58.0,0.0,146.5208,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,0.0,42.0,0.0,8.4042,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.75,2.0,1.0
+2.0,1.0,24.0,0.0,13.0,0.0,0.0
+3.0,0.0,28.0,0.0,9.5,0.0,0.0
+3.0,0.0,29.69911764705882,8.0,69.55,0.0,1.0
+3.0,0.0,34.0,0.0,6.4958,0.0,0.0
+3.0,0.0,45.5,0.0,7.225,1.0,0.0
+3.0,0.0,18.0,0.0,8.05,0.0,0.0
+3.0,1.0,2.0,0.0,10.4625,0.0,0.0
+3.0,0.0,32.0,1.0,15.85,0.0,0.0
+3.0,0.0,26.0,0.0,18.7875,1.0,0.0
+3.0,1.0,16.0,0.0,7.75,2.0,0.0
+1.0,0.0,40.0,0.0,31.0,1.0,0.0
+3.0,0.0,24.0,0.0,7.05,0.0,0.0
+2.0,1.0,35.0,0.0,21.0,0.0,0.0
+3.0,0.0,22.0,0.0,7.25,0.0,0.0
+2.0,0.0,30.0,0.0,13.0,0.0,0.0
+3.0,0.0,29.69911764705882,1.0,7.75,2.0,1.0
+1.0,1.0,31.0,1.0,113.275,1.0,0.0
+3.0,1.0,27.0,0.0,7.925,0.0,0.0
+2.0,0.0,42.0,1.0,27.0,0.0,0.0
+1.0,1.0,32.0,0.0,76.2917,1.0,0.0
+2.0,0.0,30.0,0.0,10.5,0.0,0.0
+3.0,0.0,16.0,0.0,8.05,0.0,0.0
+2.0,0.0,27.0,0.0,13.0,0.0,0.0
+3.0,0.0,51.0,0.0,8.05,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+1.0,0.0,38.0,1.0,90.0,0.0,0.0
+3.0,0.0,22.0,0.0,9.35,0.0,0.0
+2.0,0.0,19.0,0.0,10.5,0.0,0.0
+3.0,0.0,20.5,0.0,7.25,0.0,0.0
+2.0,0.0,18.0,0.0,13.0,0.0,0.0
+3.0,1.0,29.69911764705882,3.0,25.4667,0.0,1.0
+1.0,1.0,35.0,1.0,83.475,0.0,0.0
+3.0,0.0,29.0,0.0,7.775,0.0,0.0
+2.0,0.0,59.0,0.0,13.5,0.0,0.0
+3.0,1.0,5.0,4.0,31.3875,0.0,0.0
+2.0,0.0,24.0,0.0,10.5,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.55,0.0,1.0
+2.0,0.0,44.0,1.0,26.0,0.0,0.0
+2.0,1.0,8.0,0.0,26.25,0.0,0.0
+2.0,0.0,19.0,0.0,10.5,0.0,0.0
+2.0,0.0,33.0,0.0,12.275,0.0,0.0
+3.0,1.0,29.69911764705882,1.0,14.4542,1.0,1.0
+3.0,1.0,29.69911764705882,1.0,15.5,2.0,1.0
+2.0,0.0,29.0,0.0,10.5,0.0,0.0
+3.0,0.0,22.0,0.0,7.125,0.0,0.0
+3.0,0.0,30.0,0.0,7.225,1.0,0.0
+1.0,0.0,44.0,2.0,90.0,2.0,0.0
+3.0,1.0,25.0,0.0,7.775,0.0,0.0
+2.0,1.0,24.0,0.0,14.5,0.0,0.0
+1.0,0.0,37.0,1.0,52.5542,0.0,0.0
+2.0,0.0,54.0,1.0,26.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.25,0.0,1.0
+3.0,1.0,29.0,1.0,10.4625,0.0,0.0
+1.0,0.0,62.0,0.0,26.55,0.0,0.0
+3.0,0.0,30.0,1.0,16.1,0.0,0.0
+3.0,1.0,41.0,0.0,20.2125,0.0,0.0
+3.0,1.0,29.0,0.0,15.2458,1.0,0.0
+1.0,1.0,29.69911764705882,0.0,79.2,1.0,1.0
+1.0,1.0,30.0,0.0,86.5,0.0,0.0
+1.0,1.0,35.0,0.0,512.3292,1.0,0.0
+2.0,1.0,50.0,0.0,26.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,0.0,3.0,4.0,31.3875,0.0,0.0
+1.0,0.0,52.0,1.0,79.65,0.0,0.0
+1.0,0.0,40.0,0.0,0.0,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.75,2.0,1.0
+2.0,0.0,36.0,0.0,10.5,0.0,0.0
+3.0,0.0,16.0,4.0,39.6875,0.0,0.0
+3.0,0.0,25.0,1.0,7.775,0.0,0.0
+1.0,1.0,58.0,0.0,153.4625,0.0,0.0
+1.0,1.0,35.0,0.0,135.6333,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,31.0,0.0,1.0
+3.0,0.0,25.0,0.0,0.0,0.0,0.0
+2.0,1.0,41.0,0.0,19.5,0.0,0.0
+1.0,0.0,37.0,0.0,29.7,1.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.75,2.0,1.0
+1.0,1.0,63.0,1.0,77.9583,0.0,0.0
+3.0,1.0,45.0,0.0,7.75,0.0,0.0
+2.0,0.0,29.69911764705882,0.0,0.0,0.0,1.0
+3.0,0.0,7.0,4.0,29.125,2.0,0.0
+3.0,1.0,35.0,1.0,20.25,0.0,0.0
+3.0,0.0,65.0,0.0,7.75,2.0,0.0
+3.0,0.0,28.0,0.0,7.8542,0.0,0.0
+3.0,0.0,16.0,0.0,9.5,0.0,0.0
+3.0,0.0,19.0,0.0,8.05,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,26.0,0.0,1.0
+3.0,0.0,33.0,0.0,8.6625,1.0,0.0
+3.0,0.0,30.0,0.0,9.5,0.0,0.0
+3.0,0.0,22.0,0.0,7.8958,0.0,0.0
+2.0,0.0,42.0,0.0,13.0,0.0,0.0
+3.0,1.0,22.0,0.0,7.75,2.0,0.0
+1.0,1.0,26.0,0.0,78.85,0.0,0.0
+1.0,1.0,19.0,1.0,91.0792,1.0,0.0
+2.0,0.0,36.0,0.0,12.875,1.0,0.0
+3.0,1.0,24.0,0.0,8.85,0.0,0.0
+3.0,0.0,24.0,0.0,7.8958,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,27.7208,1.0,1.0
+3.0,0.0,23.5,0.0,7.2292,1.0,0.0
+1.0,1.0,2.0,1.0,151.55,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,30.5,0.0,1.0
+1.0,1.0,50.0,0.0,247.5208,1.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,0.0,29.69911764705882,2.0,23.25,2.0,1.0
+3.0,0.0,19.0,0.0,0.0,0.0,0.0
+2.0,1.0,29.69911764705882,0.0,12.35,2.0,1.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+1.0,0.0,0.92,1.0,151.55,0.0,0.0
+1.0,1.0,29.69911764705882,0.0,110.8833,1.0,1.0
+1.0,1.0,17.0,1.0,108.9,1.0,0.0
+2.0,0.0,30.0,1.0,24.0,1.0,0.0
+1.0,1.0,30.0,0.0,56.9292,1.0,0.0
+1.0,1.0,24.0,0.0,83.1583,1.0,0.0
+1.0,1.0,18.0,2.0,262.375,1.0,0.0
+2.0,1.0,26.0,1.0,26.0,0.0,0.0
+3.0,0.0,28.0,0.0,7.8958,0.0,0.0
+2.0,0.0,43.0,1.0,26.25,0.0,0.0
+3.0,1.0,26.0,0.0,7.8542,0.0,0.0
+2.0,1.0,24.0,1.0,26.0,0.0,0.0
+2.0,0.0,54.0,0.0,14.0,0.0,0.0
+1.0,1.0,31.0,0.0,164.8667,0.0,0.0
+1.0,1.0,40.0,1.0,134.5,1.0,0.0
+3.0,0.0,22.0,0.0,7.25,0.0,0.0
+3.0,0.0,27.0,0.0,7.8958,0.0,0.0
+2.0,1.0,30.0,0.0,12.35,2.0,0.0
+2.0,1.0,22.0,1.0,29.0,0.0,0.0
+3.0,0.0,29.69911764705882,8.0,69.55,0.0,1.0
+1.0,1.0,36.0,0.0,135.6333,1.0,0.0
+3.0,0.0,61.0,0.0,6.2375,0.0,0.0
+2.0,1.0,36.0,0.0,13.0,0.0,0.0
+3.0,1.0,31.0,1.0,20.525,0.0,0.0
+1.0,1.0,16.0,0.0,57.9792,1.0,0.0
+3.0,1.0,29.69911764705882,2.0,23.25,2.0,1.0
+1.0,0.0,45.5,0.0,28.5,0.0,0.0
+1.0,0.0,38.0,0.0,153.4625,0.0,0.0
+3.0,0.0,16.0,2.0,18.0,0.0,0.0
+1.0,1.0,29.69911764705882,1.0,133.65,0.0,1.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+1.0,0.0,29.0,1.0,66.6,0.0,0.0
+1.0,1.0,41.0,0.0,134.5,1.0,0.0
+3.0,0.0,45.0,0.0,8.05,0.0,0.0
+1.0,0.0,45.0,0.0,35.5,0.0,0.0
+2.0,0.0,2.0,1.0,26.0,0.0,0.0
+1.0,1.0,24.0,3.0,263.0,0.0,0.0
+2.0,0.0,28.0,0.0,13.0,0.0,0.0
+2.0,0.0,25.0,0.0,13.0,0.0,0.0
+2.0,0.0,36.0,0.0,13.0,0.0,0.0
+2.0,1.0,24.0,0.0,13.0,0.0,0.0
+2.0,1.0,40.0,0.0,13.0,0.0,0.0
+3.0,1.0,29.69911764705882,1.0,16.1,0.0,1.0
+3.0,0.0,3.0,1.0,15.9,0.0,0.0
+3.0,0.0,42.0,0.0,8.6625,0.0,0.0
+3.0,0.0,23.0,0.0,9.225,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,35.0,0.0,1.0
+3.0,0.0,15.0,1.0,7.2292,1.0,0.0
+3.0,0.0,25.0,1.0,17.8,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.225,1.0,1.0
+3.0,0.0,28.0,0.0,9.5,0.0,0.0
+1.0,1.0,22.0,0.0,55.0,0.0,0.0
+2.0,1.0,38.0,0.0,13.0,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.8792,2.0,1.0
+3.0,1.0,29.69911764705882,0.0,7.8792,2.0,1.0
+3.0,0.0,40.0,1.0,27.9,0.0,0.0
+2.0,0.0,29.0,1.0,27.7208,1.0,0.0
+3.0,1.0,45.0,0.0,14.4542,1.0,0.0
+3.0,0.0,35.0,0.0,7.05,0.0,0.0
+3.0,0.0,29.69911764705882,1.0,15.5,2.0,1.0
+3.0,0.0,30.0,0.0,7.25,0.0,0.0
+1.0,1.0,60.0,1.0,75.25,1.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.2292,1.0,1.0
+3.0,1.0,29.69911764705882,0.0,7.75,2.0,1.0
+1.0,1.0,24.0,0.0,69.3,1.0,0.0
+1.0,0.0,25.0,1.0,55.4417,1.0,0.0
+3.0,0.0,18.0,1.0,6.4958,0.0,0.0
+3.0,0.0,19.0,0.0,8.05,0.0,0.0
+1.0,0.0,22.0,0.0,135.6333,1.0,0.0
+3.0,1.0,3.0,3.0,21.075,0.0,0.0
+1.0,1.0,29.69911764705882,1.0,82.1708,1.0,1.0
+3.0,1.0,22.0,0.0,7.25,0.0,0.0
+1.0,0.0,27.0,0.0,211.5,1.0,0.0
+3.0,0.0,20.0,0.0,4.0125,1.0,0.0
+3.0,0.0,19.0,0.0,7.775,0.0,0.0
+1.0,1.0,42.0,0.0,227.525,1.0,0.0
+3.0,1.0,1.0,0.0,15.7417,1.0,0.0
+3.0,0.0,32.0,0.0,7.925,0.0,0.0
+1.0,1.0,35.0,1.0,52.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+2.0,0.0,18.0,0.0,73.5,0.0,0.0
+3.0,0.0,1.0,5.0,46.9,0.0,0.0
+2.0,1.0,36.0,0.0,13.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.7292,2.0,1.0
+2.0,1.0,17.0,0.0,12.0,1.0,0.0
+1.0,0.0,36.0,1.0,120.0,0.0,0.0
+3.0,0.0,21.0,0.0,7.7958,0.0,0.0
+3.0,0.0,28.0,2.0,7.925,0.0,0.0
+1.0,1.0,23.0,1.0,113.275,1.0,0.0
+3.0,1.0,24.0,0.0,16.7,0.0,0.0
+3.0,0.0,22.0,0.0,7.7958,0.0,0.0
+3.0,1.0,31.0,0.0,7.8542,0.0,0.0
+2.0,0.0,46.0,0.0,26.0,0.0,0.0
+2.0,0.0,23.0,0.0,10.5,0.0,0.0
+2.0,1.0,28.0,0.0,12.65,0.0,0.0
+3.0,0.0,39.0,0.0,7.925,0.0,0.0
+3.0,0.0,26.0,0.0,8.05,0.0,0.0
+3.0,1.0,21.0,1.0,9.825,0.0,0.0
+3.0,0.0,28.0,1.0,15.85,0.0,0.0
+3.0,1.0,20.0,0.0,8.6625,0.0,0.0
+2.0,0.0,34.0,1.0,21.0,0.0,0.0
+3.0,0.0,51.0,0.0,7.75,0.0,0.0
+2.0,0.0,3.0,1.0,18.75,0.0,0.0
+3.0,0.0,21.0,0.0,7.775,0.0,0.0
+3.0,1.0,29.69911764705882,3.0,25.4667,0.0,1.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+3.0,0.0,29.69911764705882,0.0,6.8583,2.0,1.0
+1.0,1.0,33.0,1.0,90.0,2.0,0.0
+2.0,0.0,29.69911764705882,0.0,0.0,0.0,1.0
+3.0,0.0,44.0,0.0,7.925,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,8.05,0.0,1.0
+2.0,1.0,34.0,1.0,32.5,0.0,0.0
+2.0,1.0,18.0,0.0,13.0,0.0,0.0
+2.0,0.0,30.0,0.0,13.0,0.0,0.0
+3.0,1.0,10.0,0.0,24.15,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,1.0,1.0
+3.0,0.0,21.0,0.0,7.7333,2.0,0.0
+3.0,0.0,29.0,0.0,7.875,0.0,0.0
+3.0,1.0,28.0,1.0,14.4,0.0,0.0
+3.0,0.0,18.0,1.0,20.2125,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.25,0.0,1.0
+2.0,1.0,28.0,1.0,26.0,0.0,0.0
+2.0,1.0,19.0,0.0,26.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,0.0,32.0,0.0,8.05,0.0,0.0
+1.0,0.0,28.0,0.0,26.55,0.0,0.0
+3.0,1.0,29.69911764705882,1.0,16.1,0.0,1.0
+2.0,1.0,42.0,1.0,26.0,0.0,0.0
+3.0,0.0,17.0,0.0,7.125,0.0,0.0
+1.0,0.0,50.0,1.0,55.9,0.0,0.0
+1.0,1.0,14.0,1.0,120.0,0.0,0.0
+3.0,1.0,21.0,2.0,34.375,0.0,0.0
+2.0,1.0,24.0,2.0,18.75,0.0,0.0
+1.0,0.0,64.0,1.0,263.0,0.0,0.0
+2.0,0.0,31.0,0.0,10.5,0.0,0.0
+2.0,1.0,45.0,1.0,26.25,0.0,0.0
+3.0,0.0,20.0,0.0,9.5,0.0,0.0
+3.0,0.0,25.0,1.0,7.775,0.0,0.0
+2.0,1.0,28.0,0.0,13.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.1125,0.0,1.0
+1.0,0.0,4.0,0.0,81.8583,0.0,0.0
+2.0,1.0,13.0,0.0,19.5,0.0,0.0
+1.0,0.0,34.0,0.0,26.55,0.0,0.0
+3.0,1.0,5.0,2.0,19.2583,1.0,0.0
+1.0,0.0,52.0,0.0,30.5,0.0,0.0
+2.0,0.0,36.0,1.0,27.75,0.0,0.0
+3.0,0.0,29.69911764705882,1.0,19.9667,0.0,1.0
+1.0,0.0,30.0,0.0,27.75,1.0,0.0
+1.0,0.0,49.0,1.0,89.1042,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+3.0,0.0,29.0,0.0,7.8958,1.0,0.0
+1.0,0.0,65.0,0.0,26.55,0.0,0.0
+1.0,1.0,29.69911764705882,1.0,51.8625,0.0,1.0
+2.0,1.0,50.0,0.0,10.5,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+1.0,0.0,48.0,0.0,26.55,0.0,0.0
+3.0,0.0,34.0,0.0,8.05,0.0,0.0
+1.0,0.0,47.0,0.0,38.5,0.0,0.0
+2.0,0.0,48.0,0.0,13.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+3.0,0.0,38.0,0.0,7.05,0.0,0.0
+2.0,0.0,29.69911764705882,0.0,0.0,0.0,1.0
+1.0,0.0,56.0,0.0,26.55,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.725,2.0,1.0
+3.0,1.0,0.75,2.0,19.2583,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.25,0.0,1.0
+3.0,0.0,38.0,0.0,8.6625,0.0,0.0
+2.0,1.0,33.0,1.0,27.75,0.0,0.0
+2.0,1.0,23.0,0.0,13.7917,1.0,0.0
+3.0,1.0,22.0,0.0,9.8375,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,52.0,0.0,1.0
+2.0,0.0,34.0,1.0,21.0,0.0,0.0
+3.0,0.0,29.0,1.0,7.0458,0.0,0.0
+3.0,0.0,22.0,0.0,7.5208,0.0,0.0
+3.0,1.0,2.0,0.0,12.2875,0.0,0.0
+3.0,0.0,9.0,5.0,46.9,0.0,0.0
+2.0,0.0,29.69911764705882,0.0,0.0,0.0,1.0
+3.0,0.0,50.0,0.0,8.05,0.0,0.0
+3.0,1.0,63.0,0.0,9.5875,0.0,0.0
+1.0,0.0,25.0,1.0,91.0792,1.0,0.0
+3.0,1.0,29.69911764705882,3.0,25.4667,0.0,1.0
+1.0,1.0,35.0,1.0,90.0,0.0,0.0
+1.0,0.0,58.0,0.0,29.7,1.0,0.0
+3.0,0.0,30.0,0.0,8.05,0.0,0.0
+3.0,0.0,9.0,1.0,15.9,0.0,0.0
+3.0,0.0,29.69911764705882,1.0,19.9667,0.0,1.0
+3.0,0.0,21.0,0.0,7.25,0.0,0.0
+1.0,0.0,55.0,0.0,30.5,0.0,0.0
+1.0,0.0,71.0,0.0,49.5042,1.0,0.0
+3.0,0.0,21.0,0.0,8.05,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,14.4583,1.0,1.0
+1.0,1.0,54.0,1.0,78.2667,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,15.1,0.0,1.0
+1.0,1.0,25.0,1.0,151.55,0.0,0.0
+3.0,0.0,24.0,0.0,7.7958,0.0,0.0
+3.0,0.0,17.0,0.0,8.6625,0.0,0.0
+3.0,1.0,21.0,0.0,7.75,2.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.6292,2.0,1.0
+3.0,1.0,37.0,0.0,9.5875,0.0,0.0
+1.0,1.0,16.0,0.0,86.5,0.0,0.0
+1.0,0.0,18.0,1.0,108.9,1.0,0.0
+2.0,1.0,33.0,0.0,26.0,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,26.55,0.0,1.0
+3.0,0.0,28.0,0.0,22.525,0.0,0.0
+3.0,0.0,26.0,0.0,56.4958,0.0,0.0
+3.0,0.0,29.0,0.0,7.75,2.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+1.0,0.0,36.0,0.0,26.2875,0.0,0.0
+1.0,1.0,54.0,1.0,59.4,1.0,0.0
+3.0,0.0,24.0,0.0,7.4958,0.0,0.0
+1.0,0.0,47.0,0.0,34.0208,0.0,0.0
+2.0,1.0,34.0,0.0,10.5,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,24.15,2.0,1.0
+2.0,1.0,36.0,1.0,26.0,0.0,0.0
+3.0,0.0,32.0,0.0,7.8958,0.0,0.0
+1.0,1.0,30.0,0.0,93.5,0.0,0.0
+3.0,0.0,22.0,0.0,7.8958,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.225,1.0,1.0
+1.0,1.0,44.0,0.0,57.9792,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.2292,1.0,1.0
+3.0,0.0,40.5,0.0,7.75,2.0,0.0
+2.0,1.0,50.0,0.0,10.5,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,221.7792,0.0,1.0
+3.0,0.0,39.0,0.0,7.925,0.0,0.0
+2.0,0.0,23.0,2.0,11.5,0.0,0.0
+2.0,1.0,2.0,1.0,26.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.2292,1.0,1.0
+3.0,0.0,17.0,1.0,7.2292,1.0,0.0
+3.0,1.0,29.69911764705882,0.0,22.3583,1.0,1.0
+3.0,1.0,30.0,0.0,8.6625,0.0,0.0
+2.0,1.0,7.0,0.0,26.25,0.0,0.0
+1.0,0.0,45.0,0.0,26.55,0.0,0.0
+1.0,1.0,30.0,0.0,106.425,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,14.5,0.0,1.0
+1.0,1.0,22.0,0.0,49.5,1.0,0.0
+1.0,1.0,36.0,0.0,71.0,0.0,0.0
+3.0,1.0,9.0,4.0,31.275,0.0,0.0
+3.0,1.0,11.0,4.0,31.275,0.0,0.0
+2.0,0.0,32.0,1.0,26.0,0.0,0.0
+1.0,0.0,50.0,1.0,106.425,1.0,0.0
+1.0,0.0,64.0,0.0,26.0,0.0,0.0
+2.0,1.0,19.0,1.0,26.0,0.0,0.0
+2.0,0.0,29.69911764705882,0.0,13.8625,1.0,1.0
+3.0,0.0,33.0,1.0,20.525,0.0,0.0
+2.0,0.0,8.0,1.0,36.75,0.0,0.0
+1.0,0.0,17.0,0.0,110.8833,1.0,0.0
+2.0,0.0,27.0,0.0,26.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8292,2.0,1.0
+3.0,0.0,22.0,0.0,7.225,1.0,0.0
+3.0,1.0,22.0,0.0,7.775,0.0,0.0
+1.0,0.0,62.0,0.0,26.55,0.0,0.0
+1.0,1.0,48.0,1.0,39.6,1.0,0.0
+1.0,0.0,29.69911764705882,0.0,227.525,1.0,1.0
+1.0,1.0,39.0,1.0,79.65,0.0,0.0
+3.0,1.0,36.0,1.0,17.4,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,0.0,40.0,0.0,7.8958,0.0,0.0
+2.0,0.0,28.0,0.0,13.5,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+3.0,1.0,29.69911764705882,0.0,8.05,0.0,1.0
+3.0,0.0,24.0,2.0,24.15,0.0,0.0
+3.0,0.0,19.0,0.0,7.8958,0.0,0.0
+3.0,1.0,29.0,0.0,21.075,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.2292,1.0,1.0
+3.0,0.0,32.0,0.0,7.8542,0.0,0.0
+2.0,0.0,62.0,0.0,10.5,0.0,0.0
+1.0,1.0,53.0,2.0,51.4792,0.0,0.0
+1.0,0.0,36.0,0.0,26.3875,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,0.0,16.0,0.0,8.05,0.0,0.0
+3.0,0.0,19.0,0.0,14.5,0.0,0.0
+2.0,1.0,34.0,0.0,13.0,0.0,0.0
+1.0,1.0,39.0,1.0,55.9,0.0,0.0
+3.0,1.0,29.69911764705882,1.0,14.4583,1.0,1.0
+3.0,0.0,32.0,0.0,7.925,0.0,0.0
+2.0,1.0,25.0,1.0,30.0,0.0,0.0
+1.0,1.0,39.0,1.0,110.8833,1.0,0.0
+2.0,0.0,54.0,0.0,26.0,0.0,0.0
+1.0,0.0,36.0,0.0,40.125,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.7125,1.0,1.0
+1.0,1.0,18.0,0.0,79.65,0.0,0.0
+2.0,0.0,47.0,0.0,15.0,0.0,0.0
+1.0,0.0,60.0,1.0,79.2,1.0,0.0
+3.0,0.0,22.0,0.0,8.05,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+3.0,0.0,35.0,0.0,7.125,0.0,0.0
+1.0,1.0,52.0,1.0,78.2667,1.0,0.0
+3.0,0.0,47.0,0.0,7.25,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.75,2.0,1.0
+2.0,0.0,37.0,1.0,26.0,0.0,0.0
+3.0,0.0,36.0,1.0,24.15,0.0,0.0
+2.0,1.0,29.69911764705882,0.0,33.0,0.0,1.0
+3.0,0.0,49.0,0.0,0.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.225,1.0,1.0
+1.0,0.0,49.0,1.0,56.9292,1.0,0.0
+2.0,1.0,24.0,2.0,27.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+1.0,0.0,29.69911764705882,0.0,42.4,0.0,1.0
+3.0,0.0,44.0,0.0,8.05,0.0,0.0
+1.0,0.0,35.0,0.0,26.55,1.0,0.0
+3.0,0.0,36.0,1.0,15.55,0.0,0.0
+3.0,0.0,30.0,0.0,7.8958,0.0,0.0
+1.0,0.0,27.0,0.0,30.5,0.0,0.0
+2.0,1.0,22.0,1.0,41.5792,1.0,0.0
+1.0,1.0,40.0,0.0,153.4625,0.0,0.0
+3.0,1.0,39.0,1.0,31.275,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.05,0.0,1.0
+3.0,1.0,29.69911764705882,1.0,15.5,2.0,1.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,0.0,35.0,0.0,8.05,0.0,0.0
+2.0,1.0,24.0,1.0,65.0,0.0,0.0
+3.0,0.0,34.0,1.0,14.4,0.0,0.0
+3.0,1.0,26.0,1.0,16.1,0.0,0.0
+2.0,1.0,4.0,2.0,39.0,0.0,0.0
+2.0,0.0,26.0,0.0,10.5,0.0,0.0
+3.0,0.0,27.0,1.0,14.4542,1.0,0.0
+1.0,0.0,42.0,1.0,52.5542,0.0,0.0
+3.0,0.0,20.0,1.0,15.7417,1.0,0.0
+3.0,0.0,21.0,0.0,7.8542,0.0,0.0
+3.0,0.0,21.0,0.0,16.1,0.0,0.0
+1.0,0.0,61.0,0.0,32.3208,0.0,0.0
+2.0,0.0,57.0,0.0,12.35,2.0,0.0
+1.0,1.0,21.0,0.0,77.9583,0.0,0.0
+3.0,0.0,26.0,0.0,7.8958,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.7333,2.0,1.0
+1.0,0.0,80.0,0.0,30.0,0.0,0.0
+3.0,0.0,51.0,0.0,7.0542,0.0,0.0
+1.0,0.0,32.0,0.0,30.5,1.0,0.0
+1.0,0.0,29.69911764705882,0.0,0.0,0.0,1.0
+3.0,1.0,9.0,3.0,27.9,0.0,0.0
+2.0,1.0,28.0,0.0,13.0,0.0,0.0
+3.0,0.0,32.0,0.0,7.925,0.0,0.0
+2.0,0.0,31.0,1.0,26.25,0.0,0.0
+3.0,1.0,41.0,0.0,39.6875,0.0,0.0
+3.0,0.0,29.69911764705882,1.0,16.1,0.0,1.0
+3.0,0.0,20.0,0.0,7.8542,0.0,0.0
+1.0,1.0,24.0,0.0,69.3,1.0,0.0
+3.0,1.0,2.0,3.0,27.9,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,56.4958,0.0,1.0
+3.0,1.0,0.75,2.0,19.2583,1.0,0.0
+1.0,0.0,48.0,1.0,76.7292,1.0,0.0
+3.0,0.0,19.0,0.0,7.8958,0.0,0.0
+1.0,0.0,56.0,0.0,35.5,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.55,0.0,1.0
+3.0,1.0,23.0,0.0,7.55,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+2.0,1.0,18.0,0.0,23.0,0.0,0.0
+3.0,0.0,21.0,0.0,8.4333,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.8292,2.0,1.0
+3.0,1.0,18.0,0.0,6.75,2.0,0.0
+2.0,0.0,24.0,2.0,73.5,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+3.0,1.0,32.0,1.0,15.5,2.0,0.0
+2.0,0.0,23.0,0.0,13.0,0.0,0.0
+1.0,0.0,58.0,0.0,113.275,1.0,0.0
+1.0,0.0,50.0,2.0,133.65,0.0,0.0
+3.0,0.0,40.0,0.0,7.225,1.0,0.0
+1.0,0.0,47.0,0.0,25.5875,0.0,0.0
+3.0,0.0,36.0,0.0,7.4958,0.0,0.0
+3.0,0.0,20.0,1.0,7.925,0.0,0.0
+2.0,0.0,32.0,2.0,73.5,0.0,0.0
+2.0,0.0,25.0,0.0,13.0,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.775,0.0,1.0
+3.0,0.0,43.0,0.0,8.05,0.0,0.0
+1.0,1.0,29.69911764705882,1.0,52.0,0.0,1.0
+2.0,1.0,40.0,1.0,39.0,0.0,0.0
+1.0,0.0,31.0,1.0,52.0,0.0,0.0
+2.0,0.0,70.0,0.0,10.5,0.0,0.0
+2.0,0.0,31.0,0.0,13.0,0.0,0.0
+2.0,0.0,29.69911764705882,0.0,0.0,0.0,1.0
+3.0,0.0,18.0,0.0,7.775,0.0,0.0
+3.0,0.0,24.5,0.0,8.05,0.0,0.0
+3.0,1.0,18.0,0.0,9.8417,0.0,0.0
+3.0,1.0,43.0,1.0,46.9,0.0,0.0
+1.0,0.0,36.0,0.0,512.3292,1.0,0.0
+3.0,1.0,29.69911764705882,0.0,8.1375,2.0,1.0
+1.0,0.0,27.0,0.0,76.7292,1.0,0.0
+3.0,0.0,20.0,0.0,9.225,0.0,0.0
+3.0,0.0,14.0,5.0,46.9,0.0,0.0
+2.0,0.0,60.0,1.0,39.0,0.0,0.0
+2.0,0.0,25.0,1.0,41.5792,1.0,0.0
+3.0,0.0,14.0,4.0,39.6875,0.0,0.0
+3.0,0.0,19.0,0.0,10.1708,0.0,0.0
+3.0,0.0,18.0,0.0,7.7958,0.0,0.0
+1.0,1.0,15.0,0.0,211.3375,0.0,0.0
+1.0,0.0,31.0,1.0,57.0,0.0,0.0
+3.0,1.0,4.0,0.0,13.4167,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,56.4958,0.0,1.0
+3.0,0.0,25.0,0.0,7.225,1.0,0.0
+1.0,0.0,60.0,0.0,26.55,0.0,0.0
+2.0,0.0,52.0,0.0,13.5,0.0,0.0
+3.0,0.0,44.0,0.0,8.05,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.7333,2.0,1.0
+1.0,0.0,49.0,1.0,110.8833,1.0,0.0
+3.0,0.0,42.0,0.0,7.65,0.0,0.0
+1.0,1.0,18.0,1.0,227.525,1.0,0.0
+1.0,0.0,35.0,0.0,26.2875,0.0,0.0
+3.0,1.0,18.0,0.0,14.4542,1.0,0.0
+3.0,0.0,25.0,0.0,7.7417,2.0,0.0
+3.0,0.0,26.0,1.0,7.8542,0.0,0.0
+2.0,0.0,39.0,0.0,26.0,0.0,0.0
+2.0,1.0,45.0,0.0,13.5,0.0,0.0
+1.0,0.0,42.0,0.0,26.2875,0.0,0.0
+1.0,1.0,22.0,0.0,151.55,0.0,0.0
+3.0,0.0,29.69911764705882,1.0,15.2458,1.0,1.0
+1.0,1.0,24.0,0.0,49.5042,1.0,0.0
+1.0,0.0,29.69911764705882,0.0,26.55,0.0,1.0
+1.0,0.0,48.0,1.0,52.0,0.0,0.0
+3.0,0.0,29.0,0.0,9.4833,0.0,0.0
+2.0,0.0,52.0,0.0,13.0,0.0,0.0
+3.0,0.0,19.0,0.0,7.65,0.0,0.0
+1.0,1.0,38.0,0.0,227.525,1.0,0.0
+2.0,1.0,27.0,0.0,10.5,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,15.5,2.0,1.0
+3.0,0.0,33.0,0.0,7.775,0.0,0.0
+2.0,1.0,6.0,0.0,33.0,0.0,0.0
+3.0,0.0,17.0,1.0,7.0542,0.0,0.0
+2.0,0.0,34.0,0.0,13.0,0.0,0.0
+2.0,0.0,50.0,0.0,13.0,0.0,0.0
+1.0,0.0,27.0,1.0,53.1,0.0,0.0
+3.0,0.0,20.0,0.0,8.6625,0.0,0.0
+2.0,1.0,30.0,3.0,21.0,0.0,0.0
+3.0,1.0,29.69911764705882,0.0,7.7375,2.0,1.0
+2.0,0.0,25.0,1.0,26.0,0.0,0.0
+3.0,1.0,25.0,1.0,7.925,0.0,0.0
+1.0,1.0,29.0,0.0,211.3375,0.0,0.0
+3.0,0.0,11.0,0.0,18.7875,1.0,0.0
+2.0,0.0,29.69911764705882,0.0,0.0,0.0,1.0
+2.0,0.0,23.0,0.0,13.0,0.0,0.0
+2.0,0.0,23.0,0.0,13.0,0.0,0.0
+3.0,0.0,28.5,0.0,16.1,0.0,0.0
+3.0,1.0,48.0,1.0,34.375,0.0,0.0
+1.0,0.0,35.0,0.0,512.3292,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+1.0,0.0,29.69911764705882,0.0,30.0,0.0,1.0
+1.0,0.0,36.0,1.0,78.85,0.0,0.0
+1.0,1.0,21.0,2.0,262.375,1.0,0.0
+3.0,0.0,24.0,1.0,16.1,0.0,0.0
+3.0,0.0,31.0,0.0,7.925,0.0,0.0
+1.0,0.0,70.0,1.0,71.0,0.0,0.0
+3.0,0.0,16.0,1.0,20.25,0.0,0.0
+2.0,1.0,30.0,0.0,13.0,0.0,0.0
+1.0,0.0,19.0,1.0,53.1,0.0,0.0
+3.0,0.0,31.0,0.0,7.75,2.0,0.0
+2.0,1.0,4.0,1.0,23.0,0.0,0.0
+3.0,0.0,6.0,0.0,12.475,0.0,0.0
+3.0,0.0,33.0,0.0,9.5,0.0,0.0
+3.0,0.0,23.0,0.0,7.8958,0.0,0.0
+2.0,1.0,48.0,1.0,65.0,0.0,0.0
+2.0,0.0,0.67,1.0,14.5,0.0,0.0
+3.0,0.0,28.0,0.0,7.7958,0.0,0.0
+2.0,0.0,18.0,0.0,11.5,0.0,0.0
+3.0,0.0,34.0,0.0,8.05,0.0,0.0
+1.0,1.0,33.0,0.0,86.5,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,14.5,0.0,1.0
+3.0,0.0,41.0,0.0,7.125,0.0,0.0
+3.0,0.0,20.0,0.0,7.2292,1.0,0.0
+1.0,1.0,36.0,1.0,120.0,0.0,0.0
+3.0,0.0,16.0,0.0,7.775,0.0,0.0
+1.0,1.0,51.0,1.0,77.9583,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,39.6,1.0,1.0
+3.0,1.0,30.5,0.0,7.75,2.0,0.0
+3.0,0.0,29.69911764705882,1.0,24.15,2.0,1.0
+3.0,0.0,32.0,0.0,8.3625,0.0,0.0
+3.0,0.0,24.0,0.0,9.5,0.0,0.0
+3.0,0.0,48.0,0.0,7.8542,0.0,0.0
+2.0,1.0,57.0,0.0,10.5,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.225,1.0,1.0
+2.0,1.0,54.0,1.0,23.0,0.0,0.0
+3.0,0.0,18.0,0.0,7.75,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+3.0,1.0,5.0,0.0,12.475,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.7375,2.0,1.0
+1.0,1.0,43.0,0.0,211.3375,0.0,0.0
+3.0,1.0,13.0,0.0,7.2292,1.0,0.0
+1.0,1.0,17.0,1.0,57.0,0.0,0.0
+1.0,0.0,29.0,0.0,30.0,0.0,0.0
+3.0,0.0,29.69911764705882,1.0,23.45,0.0,1.0
+3.0,0.0,25.0,0.0,7.05,0.0,0.0
+3.0,0.0,25.0,0.0,7.25,0.0,0.0
+3.0,1.0,18.0,0.0,7.4958,0.0,0.0
+3.0,0.0,8.0,4.0,29.125,2.0,0.0
+3.0,0.0,1.0,1.0,20.575,0.0,0.0
+1.0,0.0,46.0,0.0,79.2,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+2.0,0.0,16.0,0.0,26.0,0.0,0.0
+3.0,1.0,29.69911764705882,8.0,69.55,0.0,1.0
+1.0,0.0,29.69911764705882,0.0,30.6958,1.0,1.0
+3.0,0.0,25.0,0.0,7.8958,0.0,0.0
+2.0,0.0,39.0,0.0,13.0,0.0,0.0
+1.0,1.0,49.0,0.0,25.9292,0.0,0.0
+3.0,1.0,31.0,0.0,8.6833,0.0,0.0
+3.0,0.0,30.0,0.0,7.2292,1.0,0.0
+3.0,1.0,30.0,1.0,24.15,0.0,0.0
+2.0,0.0,34.0,0.0,13.0,0.0,0.0
+2.0,1.0,31.0,1.0,26.25,0.0,0.0
+1.0,0.0,11.0,1.0,120.0,0.0,0.0
+3.0,0.0,0.42,0.0,8.5167,1.0,0.0
+3.0,0.0,27.0,0.0,6.975,0.0,0.0
+3.0,0.0,31.0,0.0,7.775,0.0,0.0
+1.0,0.0,39.0,0.0,0.0,0.0,0.0
+3.0,1.0,18.0,0.0,7.775,0.0,0.0
+2.0,0.0,39.0,0.0,13.0,0.0,0.0
+1.0,1.0,33.0,1.0,53.1,0.0,0.0
+3.0,0.0,26.0,0.0,7.8875,0.0,0.0
+3.0,0.0,39.0,0.0,24.15,0.0,0.0
+2.0,0.0,35.0,0.0,10.5,0.0,0.0
+3.0,1.0,6.0,4.0,31.275,0.0,0.0
+3.0,0.0,30.5,0.0,8.05,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,0.0,0.0,1.0
+3.0,1.0,23.0,0.0,7.925,0.0,0.0
+2.0,0.0,31.0,1.0,37.0042,1.0,0.0
+3.0,0.0,43.0,0.0,6.45,0.0,0.0
+3.0,0.0,10.0,3.0,27.9,0.0,0.0
+1.0,1.0,52.0,1.0,93.5,0.0,0.0
+3.0,0.0,27.0,0.0,8.6625,0.0,0.0
+1.0,0.0,38.0,0.0,0.0,0.0,0.0
+3.0,1.0,27.0,0.0,12.475,0.0,0.0
+3.0,0.0,2.0,4.0,39.6875,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,6.95,2.0,1.0
+3.0,0.0,29.69911764705882,0.0,56.4958,0.0,1.0
+2.0,0.0,1.0,0.0,37.0042,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.75,2.0,1.0
+1.0,1.0,62.0,0.0,80.0,-1.0,0.0
+3.0,1.0,15.0,1.0,14.4542,1.0,0.0
+2.0,0.0,0.83,1.0,18.75,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.2292,1.0,1.0
+3.0,0.0,23.0,0.0,7.8542,0.0,0.0
+3.0,0.0,18.0,0.0,8.3,0.0,0.0
+1.0,1.0,39.0,1.0,83.1583,1.0,0.0
+3.0,0.0,21.0,0.0,8.6625,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,8.05,0.0,1.0
+3.0,0.0,32.0,0.0,56.4958,0.0,0.0
+1.0,0.0,29.69911764705882,0.0,29.7,1.0,1.0
+3.0,0.0,20.0,0.0,7.925,0.0,0.0
+2.0,0.0,16.0,0.0,10.5,0.0,0.0
+1.0,1.0,30.0,0.0,31.0,1.0,0.0
+3.0,0.0,34.5,0.0,6.4375,1.0,0.0
+3.0,0.0,17.0,0.0,8.6625,0.0,0.0
+3.0,0.0,42.0,0.0,7.55,0.0,0.0
+3.0,0.0,29.69911764705882,8.0,69.55,0.0,1.0
+3.0,0.0,35.0,0.0,7.8958,1.0,0.0
+2.0,0.0,28.0,0.0,33.0,0.0,0.0
+1.0,1.0,29.69911764705882,1.0,89.1042,1.0,1.0
+3.0,0.0,4.0,4.0,31.275,0.0,0.0
+3.0,0.0,74.0,0.0,7.775,0.0,0.0
+3.0,1.0,9.0,1.0,15.2458,1.0,0.0
+1.0,1.0,16.0,0.0,39.4,0.0,0.0
+2.0,1.0,44.0,1.0,26.0,0.0,0.0
+3.0,1.0,18.0,0.0,9.35,0.0,0.0
+1.0,1.0,45.0,1.0,164.8667,0.0,0.0
+1.0,0.0,51.0,0.0,26.55,0.0,0.0
+3.0,1.0,24.0,0.0,19.2583,1.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.2292,1.0,1.0
+3.0,0.0,41.0,2.0,14.1083,0.0,0.0
+2.0,0.0,21.0,1.0,11.5,0.0,0.0
+1.0,1.0,48.0,0.0,25.9292,0.0,0.0
+3.0,1.0,29.69911764705882,8.0,69.55,0.0,1.0
+2.0,0.0,24.0,0.0,13.0,0.0,0.0
+2.0,1.0,42.0,0.0,13.0,0.0,0.0
+2.0,1.0,27.0,1.0,13.8583,1.0,0.0
+1.0,0.0,31.0,0.0,50.4958,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,9.5,0.0,1.0
+3.0,0.0,4.0,1.0,11.1333,0.0,0.0
+3.0,0.0,26.0,0.0,7.8958,0.0,0.0
+1.0,1.0,47.0,1.0,52.5542,0.0,0.0
+1.0,0.0,33.0,0.0,5.0,0.0,0.0
+3.0,0.0,47.0,0.0,9.0,0.0,0.0
+2.0,1.0,28.0,1.0,24.0,1.0,0.0
+3.0,1.0,15.0,0.0,7.225,1.0,0.0
+3.0,0.0,20.0,0.0,9.8458,0.0,0.0
+3.0,0.0,19.0,0.0,7.8958,0.0,0.0
+3.0,0.0,29.69911764705882,0.0,7.8958,0.0,1.0
+1.0,1.0,56.0,0.0,83.1583,1.0,0.0
+2.0,1.0,25.0,0.0,26.0,0.0,0.0
+3.0,0.0,33.0,0.0,7.8958,0.0,0.0
+3.0,1.0,22.0,0.0,10.5167,0.0,0.0
+2.0,0.0,28.0,0.0,10.5,0.0,0.0
+3.0,0.0,25.0,0.0,7.05,0.0,0.0
+3.0,1.0,39.0,0.0,29.125,2.0,0.0
+2.0,0.0,27.0,0.0,13.0,0.0,0.0
+1.0,1.0,19.0,0.0,30.0,0.0,0.0
+3.0,1.0,29.69911764705882,1.0,23.45,0.0,1.0
+1.0,0.0,26.0,0.0,30.0,1.0,0.0
+3.0,0.0,32.0,0.0,7.75,2.0,0.0
diff --git a/data/weights.pkl b/data/weights.pkl
new file mode 100644
index 0000000..d2a7c01
Binary files /dev/null and b/data/weights.pkl differ
diff --git a/data/without_training/activation1.csv b/data/without_training/activation1.csv
new file mode 100644
index 0000000..2646820
--- /dev/null
+++ b/data/without_training/activation1.csv
@@ -0,0 +1,13 @@
+,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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810
+0,0.2976709744860574,0.2790489915681156,0.0,0.0,0.0,0.0,0.27667206434130864,0.27531115250501415,0.0,0.29159677585180155,0.2780490744863291,0.30229991365823894,0.0,0.240060209383707,0.19621118790354367,0.27531115250501415,0.0,0.0,0.0,0.0,0.030903768696813456,0.2752048164953511,0.0,0.26762756849796177,0.14677715112398773,0.2806522787497605,0.0497010474231623,0.27512151305846844,0.2535568760188157,0.0,0.0,0.0,0.29701585639799044,0.0,0.0,0.29963919692265517,0.0,0.0,0.0,0.0,0.0,0.27531115250501415,0.0,0.0,0.0,0.0,0.0,0.29097041399981083,0.0,0.23395511228032065,0.0,0.3017453389567406,0.0,0.0,0.0,0.0,0.0,0.0,0.31407765200850235,0.0,0.0,0.04706046694881174,0.0,0.0,0.0,0.0,0.2832928592241112,0.0,0.0,0.0,0.0,0.0,0.20624625724932535,0.2513372683647236,0.274802573989278,0.0,0.0,0.27533953421323465,0.2757335312723205,0.0,0.24295723418879514,0.0,0.28598805585906684,0.3109859365307692,0.1567145556022614,0.3408426148415191,0.0,0.0,0.0,0.3141667409392913,0.0,0.0,0.05153922884011999,0.29963919692265517,0.0,0.25296429348984995,0.12305757162910765,0.0,0.0,0.2535310287757846,0.0,0.0,0.1293145701217626,0.0,0.10567620313520278,0.0,0.0,0.0,0.0,0.2589759565650047,0.0,0.0,0.0005062431638083904,0.0,0.0,0.0,0.0,0.2430693065432518,0.0,0.0,0.28175853184121,0.0,0.26342959992877923,0.0,0.30785401749036834,0.10312180695162938,0.2205446172544913,0.0,0.0,0.0,0.2909071778643627,0.0,0.29646417800803937,0.0,0.0,0.0,0.03363344523114117,0.0,0.0,0.0,0.31327309803655734,0.0,0.21843918847825053,0.2752048164953511,0.0,0.29791233378166104,0.0,0.3005284884176811,0.0,0.0,0.0,0.2778594350397834,0.0,0.0,0.0,0.025217843458347617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29637797825960954,0.0,0.0,0.03894908607921429,0.0,0.0,0.0,0.2747594741150631,0.0,0.0,0.22613609729754006,0.004173316678473888,0.0,0.0,0.0,0.0,0.0,0.0,0.1455718117603295,0.0,0.0,0.0,0.0,0.11607145150584415,0.23394289541758342,0.0,0.0,0.0,0.28333597177982384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28062359147348304,0.3142730151183438,0.3051444772172739,0.0,0.0,0.27633945129502113,0.2969095203883274,0.0,0.0,0.0,0.0,0.0,0.04239994418880557,0.2914904398421385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29959321341839074,0.0,0.27531115250501415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2806522787497605,0.0,0.036294161966724935,0.0,0.0,0.0,0.0,0.29646417800803937,0.28336181902285507,0.0,0.0,0.0,0.0,0.1900938893950728,0.0,0.0,0.0,0.0,0.0,0.0,0.21062519658241877,0.0,0.2752048164953511,0.0,0.0,0.23469643011681743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2991557650736031,0.2432474297034072,0.29511659376013677,0.0,0.0,0.24085611524165854,0.0,0.28175853184121,0.0,0.0,0.0,0.0,0.20717795081837434,0.0,0.0,0.26110223486032336,0.0,0.2747878558232836,0.0,0.0,0.0,0.0,0.0,0.25202754358371293,0.3051444772172739,0.0,0.0,0.0,0.04671566795509232,0.0,0.0,0.3049548377707282,0.0,0.0,0.2698342539186158,0.0,0.2752048164953511,0.021420096849034637,0.10693358037208663,0.0,0.0,0.0,0.0,0.2995501008626781,0.17116301358183797,0.0,0.04781328839020096,0.2968405605895835,0.022746460601252533,0.0,0.0,0.0,0.2508674720069545,0.28617769530561254,0.0,0.23138277834686918,0.053108805658538726,0.0,0.21823230908201888,0.0,0.2995357572245393,0.0,0.2752048164953511,0.0,0.0,0.0,0.23731977064148205,0.025562642452067092,0.0,0.0,0.0,0.09088435721994355,0.0,0.0,0.27792839483852727,0.0,0.2614865522980162,0.2747594741150631,0.0,0.0,0.0,0.26992045366704565,0.0,0.0,0.0,0.309925679625082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3034348540259659,0.23394289541758342,0.0,0.27535425237922906,0.0,0.0,0.0,0.0,0.0,0.0,0.22877418412734954,0.0,0.0,0.27531115250501415,0.0,0.0,0.0,0.0,0.0,0.0,0.26450137312085675,0.0,0.0,0.27531115250501415,0.2529736140410399,0.0,0.0,0.0,0.0,0.2747594741150631,0.2540855907957851,0.0,0.0,0.0485000027475905,0.0,0.0,0.22260187947276514,0.2966509211430378,0.10438032327870535,0.08525725818733072,0.0,0.22114872875134498,0.0,0.0,0.0,0.0,0.0,0.27533953421323465,0.2828985234350362,0.22877418412734954,0.2991737182811339,0.0,0.0,0.299725396671085,0.0,0.0,0.28017281831645846,0.0,0.29142148004339463,0.3109859365307692,0.0,0.0,0.0076844991543134795,0.0,0.0,0.0,0.0,0.29074054562760177,0.3195858214854803,0.0,0.27531115250501415,0.0,0.0,0.291214600647163,0.0,0.0,0.0,0.0,0.2698141176573826,0.0,0.2969095203883274,0.0,0.0,0.0,0.0,0.0,0.0,0.2508674720069545,0.0,0.0,0.0,0.0,0.0,0.026013402927593927,0.0,0.0,0.0,0.27975905952399516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22105894757267378,0.0,0.0,0.0,0.0,0.0,0.04707770689849774,0.0,0.0,0.0,0.0,0.0,0.0,0.24813779547262685,0.0,0.27531115250501415,0.025562642452067092,0.19318990202041222,0.30503814120761086,0.037282578219773786,0.0,0.26978543038110514,0.0,0.0,0.0,0.0,0.31327309803655734,0.3095923842362549,0.0,0.0,0.0,0.2698342539186158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.29701585639799044,0.27531115250501415,0.2611539547093813,0.0,0.22872567118067735,0.0,0.0,0.2154301194578563,0.0,0.21830700522555638,0.0,0.0,0.0,0.2752048164953511,0.0,0.23740597038991187,0.0,0.20949957676588174,0.2752331982035716,0.0,0.0,0.0,0.0,0.2746215545175753,0.0,0.0,0.2617918328477622,0.0,0.21412561962651602,0.0,0.0,0.0,0.0,0.0,0.0,0.2995903733851445,0.30527666046996826,0.0,0.0,0.0,0.2860713592959495,0.0,0.0,0.21775248680235895,0.0,0.0,0.0,0.0,0.2698342539186158,0.0,0.017603237483846585,0.22610771558931955,0.30229991365823894,0.0,0.0,0.3087192786848819,0.0,0.0,0.30503814120761086,0.0,0.2749663535112947,0.04421300707822947,0.2752048164953511,0.0,0.29998971957967036,0.0,0.0,0.0,0.2752048164953511,0.0,0.0,0.0,0.0,0.0,0.0,0.2587001173700292,0.24759403648117176,0.0,0.0,0.27512151305846844,0.24011551066300643,0.0,0.0,0.0,0.0,0.0,0.0,0.30766437804382263,0.29024200571525427,0.0593410601515156,0.0,0.0,0.0,0.0,0.3032452145794202,0.07170955682185838,0.0,0.0,0.12149053205203315,0.30660697662903436,0.3076787216819614,0.0,0.0,0.0,0.3087192786848819,0.0,0.0,0.0,0.23740597038991187,0.0,0.0,0.24254921174112534,0.0,0.0,0.0,0.0,0.23128797130509418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2790374752817253,0.0,0.30486863802229835,0.0,0.0,0.0,0.2670212739474055,0.0,0.25512215537299343,0.0,0.0,0.0,0.3028573157114858,0.0,0.0,0.0,0.0,0.0,0.021025611646221,0.0,0.0,0.0,0.28495510842175964,0.0,0.0,0.2752048164953511,0.2752048164953511,0.0,0.0,0.0,0.24239333893610696,0.27254379419171026,0.0,0.2669314927687342,0.0,0.0,0.0,0.0,0.3434199718619193,0.2682108304757377,0.29419998011523296,0.0,0.0,0.2805833189510166,0.0,0.26450137312085675,0.0,0.27975905952399516,0.24489671307081443,0.0,0.0,0.31308345859001163,0.0,0.0,0.0,0.0,0.2701359530381203,0.29259669293358803,0.22643278601159347,0.0,0.0,0.0,0.3076471380941367,0.0,0.0963810020820667,0.0,0.0,0.0,0.0,0.0,0.23117626079699552,0.28819763759126815,0.2883355571887559,0.05772333223278266,0.0,0.307798716211069,0.0,0.0,0.0,0.0,0.0,0.28878089956904396,0.0,0.0,0.023318206292638106,0.0,0.0,0.0,0.0,0.0,0.042609824726173064,0.2827268371960213,0.2724403544935944,0.0,0.057915867990875634,0.0,0.0,0.28606563563265375,0.2620561993531507,0.0,0.0,0.27398476407668737,0.0,0.04447160632351906,0.0,0.23901215388310418,0.17895475758205284,0.0,0.28389053379982443,0.0,0.03677111607398816,0.15400501532916686,0.0,0.3087192786848819,0.0,0.0,0.0,0.0,0.0,0.0,0.2941712928389555,0.3080264169872281,0.0,0.30014777543839133,0.27531115250501415,0.3033285798469134,0.0,0.3023487371957496,0.0,0.0,0.0,0.3109859365307692,0.24248025194238146,0.0,0.0,0.0,0.0,0.1427846917136482,0.15593012275053184,0.0,0.0,0.0,0.05900198482109189,0.0,0.0,0.0,0.0,0.14020298126734068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.27631106958680063,0.2931591180737837,0.2860713592959495,0.0,0.0,0.22993246765869538,0.0,0.0,0.3036733170100223,0.30503814120761086,0.2752048164953511,0.0,0.0,0.26710457738428817,0.04896837770065895,0.0,0.28819763759126815,0.0,0.0,0.0,0.0,0.0,0.0
+1,0.4777720745422547,0.489811388193539,0.0,0.0,0.0,0.15481805493133907,0.48479018670245533,0.48977585222263387,0.0,0.4799386155112436,0.4881220262649786,0.47316376479404043,0.0,0.4850789429587995,0.5362904290337004,0.48977585222263387,0.0,0.0,0.0,0.14833473397066801,0.17554427323148727,0.48959619731961046,0.0,0.4953726945074399,0.4756185914516948,0.4863056892112082,0.16380112220243745,0.48945545599480345,0.5026725107186782,0.0,0.0,0.0,0.47666525120974956,0.1519728542594079,0.0,0.47488293440998885,0.0,0.13432593725638012,0.0,0.10932659526136453,0.16967340395108618,0.48977585222263387,0.0,0.0,0.0,0.17094173696874018,0.0,0.47888037589764965,0.0,0.5130564826954118,0.2141394590424676,0.47222680971614506,0.20161000820269395,0.0,0.13118421980163056,0.0,0.0,0.0,0.46820445386530296,0.0,0.0,0.1655543120723955,0.16553917294486212,0.0,0.11797982895823568,0.13630908152465163,0.4845524993412502,0.14984636698238238,0.16515206803265856,0.15900781636432967,0.1731845440548002,0.0,0.5314941032597743,0.5144586188876824,0.48891660779345236,0.0,0.0,0.48975870841572566,0.49048946200280163,0.45962307005644976,0.5220511299226739,0.0,0.48289158358490714,0.46919545023618237,0.4282525409689687,0.46992272122161793,0.0,0.21394867827548167,0.0,0.542928440747782,0.0,0.0,0.12240016388565302,0.47488293440998885,0.0,0.4571647718074233,0.4718907660990971,0.0,0.13936763055536558,0.49019992992371764,0.148861654076729,0.0,0.4316758574804269,0.09674459780833124,0.15272551027632783,0.0,0.0,0.0,0.0,0.4993991464171843,0.0,0.12136412689714855,0.14804003797844942,0.09759758729751085,0.0,0.0,0.0,0.5098115645661353,0.0,0.0,0.488174706042792,0.45962307005644976,0.4944946740467354,0.23381645214633742,0.47011852260676157,0.13598094094105537,0.48939404613055904,0.21537235524054923,0.0,0.0,0.47877353831913305,0.0,0.47573318945606113,0.13936763055536558,0.0,0.0,0.17394161133474986,0.16259326836875462,0.0,0.13645493757508917,0.4668451583052675,0.13445758410312456,0.5241290335814127,0.48959619731961046,0.0,0.4781798515594934,0.11845143391687214,0.4732781662299407,0.11972744474640153,0.16112935011937615,0.0,0.48780163003714816,0.18741395152308402,0.11436771289771798,0.12663484467060718,0.17843189764685777,0.16470155547813806,0.0,0.11845143391687214,0.14343299604332646,0.0,0.0,0.1348182554243422,0.4755875548070473,0.20844787880975882,0.0,0.1704934854544393,0.0,0.0,0.1810683769856081,0.48884379046894544,0.16744573032610147,0.0,0.4864119511270928,0.21117104744326662,0.0,0.0,0.0,0.0,0.0,0.0,0.42185576457594487,0.0,0.0,0.0,0.14627503047957122,0.4528027732301737,0.4685292727490371,0.0,0.0,0.0,0.4721964262655005,0.0,0.0,0.0,0.0,0.20319800153957665,0.12423877086483644,0.0,0.18866901624836566,0.0,0.4862572220000164,0.4685345202338279,0.47175520475750854,0.0,0.21503272372565876,0.49144807034428606,0.47648559630672616,0.15900781636432967,0.0,0.0,0.0,0.0,0.17010926128521117,0.4797589606082202,0.0,0.19781433815411012,0.0,0.0,0.0,0.0,0.0,0.46237633336101847,0.0,0.48977585222263387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4863056892112082,0.16335614262541873,0.1722224417188015,0.0,0.17981307936540428,0.0,0.0,0.47573318945606113,0.48466900706046123,0.0,0.0,0.45962307005644976,0.0,0.5383841526781824,0.0,0.18244268387320808,0.0,0.0,0.0,0.0,0.4529864189965216,0.0,0.48959619731961046,0.0,0.0,0.5143089406769307,0.0,0.09596090514676382,0.0,0.13609426625387158,0.13118421980163056,0.14918772345984763,0.0,0.0,0.17566767895428007,0.44198851761850144,0.5101125040048574,0.4796708990612266,0.0,0.17117691118763748,0.4802091715999457,0.20846502261666702,0.488174706042792,0.0,0.0,0.0,0.0,0.5165266835014676,0.0,0.0,0.49677704197735006,0.0,0.48882664666203723,0.0,0.0,0.0,0.0,0.0,0.45558213094966027,0.47175520475750854,0.0,0.11180511873770667,0.0,0.1649717734763402,0.0,0.18833824682263348,0.4714348085296781,0.0,0.0,0.49288643806820587,0.0,0.48959619731961046,0.19021461486909122,0.4239300315319431,0.0,0.0,0.0,0.0,0.4747324064367682,0.46088845209497176,0.0,0.17925511724327917,0.47636908858751514,0.18040585247253652,0.18070054846475517,0.12499816251986014,0.0,0.5043432131234349,0.48321197981273756,0.15360953641015493,0.48284731752757104,0.1633440807087024,0.14250934801011514,0.5237795104237796,0.0891507776547092,0.47470817283117217,0.16112935011937615,0.48959619731961046,0.0,0.0,0.12423877086483644,0.51252662387717,0.17901443624291305,0.0,0.0,0.13936763055536558,0.16502139221404485,0.20924655639713477,0.0,0.4879181377563593,0.17039653961928983,0.47156314527068344,0.48884379046894544,0.0,0.0,0.0,0.4930320727172196,0.0,0.17566767895428007,0.0,0.4674041440533123,0.0,0.0,0.16948655279134647,0.0,0.1174002830619766,0.1380916197258362,0.0,0.475081248836816,0.4685292727490371,0.0,0.4898486695471408,0.0,0.0,0.0,0.0,0.0,0.1536469833583555,0.4909340989127349,0.0,0.0,0.48977585222263387,0.20759273043947948,0.0,0.0,0.0,0.0,0.0,0.49630543701871366,0.0,0.16882790926881172,0.48977585222263387,0.5016870884295911,0.12423877086483644,0.0,0.0,0.0,0.48884379046894544,0.5035657754018694,0.0,0.0,0.16798641071092632,0.0,0.14250934801011514,0.4742264270635381,0.4760486923596847,0.13810720681665714,0.4370234887379191,0.12423877086483644,0.5224923514306657,0.23479910959352593,0.0,0.16112935011937615,0.0,0.0,0.48975870841572566,0.4518086105229835,0.4909340989127349,0.47409650730531416,0.0,0.0,0.4750285690590026,0.21689237547036036,0.0,0.4979896464270135,0.0,0.4796424528890092,0.46919545023618237,0.0,0.0,0.1922453736741038,0.0,0.0,0.0,0.0,0.5033498364700322,0.539655076446288,0.0,0.48977585222263387,0.0,0.0,0.47929292973137594,0.0,0.0,0.0,0.0,0.4928524178141962,0.0,0.47648559630672616,0.20846502261666702,0.0,0.20846991594087386,0.0,0.0,0.0264704485080582,0.5043432131234349,0.10071198234172464,0.0,0.20846991594087386,0.17445027548913153,0.0,0.17971090221617245,0.0,0.0,0.0,0.4972906001117471,0.0,0.0,0.12078337031659354,0.1240567346180876,0.14506136966917402,0.0,0.0,0.0,0.0,0.49647746415442306,0.11830557786643454,0.0,0.149603587600562,0.0,0.19535442160378272,0.16558343900219827,0.0,0.0,0.0,0.0,0.18698522840159756,0.0,0.5059458750201723,0.13667680484992686,0.48977585222263387,0.17901443624291305,0.47324510093397776,0.47157554985448513,0.19253574071249793,0.20846991594087386,0.4928039506030044,0.18882876639899335,0.0,0.0,0.0,0.4668451583052675,0.47926995264662176,0.0,0.0,0.0,0.49288643806820587,0.0,0.0,0.19379400567073116,0.0,0.2101980749399315,0.0,0.16952138150228582,0.0,0.47666525120974956,0.48977585222263387,0.49686442276675835,0.0,0.5166502432247363,0.0,0.15324478042290904,0.5056109154280649,0.0,0.5114767978834287,0.20846502261666702,0.0,0.0,0.48959619731961046,0.0,0.5126722585261837,0.0,0.495591251575914,0.48957905351270226,0.0,0.0,0.0,0.2080607208943728,0.4886107750305233,0.0,0.0,0.49794211916946063,0.0,0.4909780485034928,0.16910380654438376,0.0,0.12990820897210117,0.1992347797096005,0.0,0.18927804153921382,0.4748004469447874,0.4844074404554928,0.0,0.0,0.0,0.48303232490971415,0.0,0.0,0.5229688497135091,0.0,0.0,0.12957686347834338,0.0,0.49288643806820587,0.14371595681645463,0.23386092575962006,0.486429094934001,0.47316376479404043,0.0,0.11812008842311435,0.5462189488561843,0.0,0.0,0.47157554985448513,0.0,0.4891933136265786,0.16695797878472043,0.48959619731961046,0.0,0.47547514314673867,0.0,0.0,0.1745834504033272,0.48959619731961046,0.0,0.12791085550013656,0.0,0.0,0.22481470031722886,0.0,0.49893311554034003,0.4605206235741188,0.18767690760930325,0.13118421980163056,0.48945545599480345,0.5110355763754367,0.0,0.0,0.0,0.2019222236049694,0.1410043127061126,0.12423877086483644,0.46979812637893115,0.4807569565866171,0.16144457543214522,0.2328117806240885,0.09443693485088325,0.0,0.0,0.4747608526089856,0.44520689949165415,0.2060344733875276,0.0,0.44952940892867976,0.4742261004665367,0.46982235998452715,0.0,0.0,0.0,0.5462189488561843,0.20026446805602374,0.0,0.175957176467855,0.5126722585261837,0.0,0.0,0.5089328633478455,0.0,0.0,0.0,0.0,0.4702582290133993,0.1692437734095261,0.0,0.0,0.0,0.20508424507402437,0.0,0.0,0.0,0.48979193140443067,0.17537463787179972,0.4712891738806644,0.0,0.0,0.0,0.49434835864013627,0.0,0.4545960279029879,0.14591435915835363,0.17210127357030572,0.0,0.4741054966884234,0.0,0.0,0.13360459461394494,0.1579426183481328,0.0,0.19082212297934423,0.12423877086483644,0.12791085550013656,0.12791085550013656,0.4966825565860953,0.2264025995466387,0.09280025270013617,0.48959619731961046,0.48959619731961046,0.0,0.0,0.0,0.47659185822261074,0.4912497559174589,0.0,0.46833347136389347,0.0,0.0,0.0,0.0,0.45563380337288684,0.4963581167965271,0.47812227845747324,0.0,0.0803857301769987,0.4861891814919972,0.11797982895823568,0.49630543701871366,0.0,0.4972906001117471,0.5066845156712404,0.1920859506264956,0.0,0.4665247620774371,0.0,0.0,0.0,0.0,0.4933961593397542,0.481627977439804,0.5189908650149565,0.0,0.20846502261666702,0.0,0.4697689994491284,0.0,0.14323570524241888,0.0,0.0,0.0,0.0,0.0,0.49499241229601365,0.48041022046988,0.48064323590830216,0.15871142084717302,0.0,0.44416188919012445,0.0,0.0,0.131600083942345,0.148861654076729,0.0,0.4813956427589672,0.15409776991208865,0.0,0.18137181797251536,0.20845277213396565,0.18502940654386188,0.14591435915835363,0.0,0.0,0.16153975099971155,0.4835962039819658,0.4910749943386422,0.0,0.15903671039921027,0.15409776991208865,0.0,0.4830226547690196,0.5232465905654289,0.1446383483288242,0.11587332386435252,0.49057704949109915,0.0,0.16739488273176187,0.0,0.5091714528680599,0.44197496160881133,0.0,0.4855622717436524,0.0,0.17924271255885296,0.42988922311971567,0.0,0.5462189488561843,0.0,0.0,0.0,0.0,0.08559917738758817,0.20846991594087386,0.47807381124628145,0.47040979190478927,0.0,0.47574217883917036,0.48977585222263387,0.54947516935077,0.0,0.4732462522592419,0.11354138746463112,0.0,0.21489545019933323,0.46919545023618237,0.5088163556286344,0.45962307005644976,0.21741282334396153,0.15939581009608303,0.0,0.42336137554257947,0.5614523268207634,0.0,0.0,0.0,0.1608717069767844,0.0,0.0,0.0,0.20846991594087386,0.48936934185666003,0.11016424672535365,0.0,0.148861654076729,0.1295475376508836,0.0,0.0,0.0,0.49146521415119426,0.4380716263176151,0.48303232490971415,0.0,0.0,0.5186891283109298,0.0,0.0,0.4754841325298478,0.47157554985448513,0.48959619731961046,0.0,0.0,0.4944890999649433,0.16877773113980785,0.13318157327359517,0.48041022046988,0.0,0.13445758410312456,0.0,0.18423099631629278,0.0,0.0
+2,0.0,0.0,0.0,0.034480066333185934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08111059572651749,0.0,0.0886337752231301,0.0,0.1668286794078503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14431610118968358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1815555728530922,0.0,0.0,0.0,0.0,0.007243662077573772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.029873586896233047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.021004415670328992,0.05478013400756208,0.10719190430802975,0.0,0.06816688155344025,0.0,0.0,0.04683112268232632,0.0,0.0,0.0,0.0,0.00017361776166129714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04908297100463161,0.0,0.2282858806045605,0.0,0.0,0.0,0.08012838332821721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04577509002279973,0.0,0.13618034896101766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.041993628666267026,0.0,0.03061984212849806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15358816763570277,0.0,0.0,0.0,0.008497912618482047,0.0,0.0,0.0025332425099270843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02994857927172146,0.0666606968122003,0.0,0.0,0.23505708209033865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11346981967413597,0.11074690037683291,0.0,0.02022596099723268,0.0,0.0,0.03756478378717663,0.0,0.048385671067651466,0.0,0.0,0.0,0.0,0.02089178644093668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.049072666079454576,0.0,0.0,0.0,0.05478013400756208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04845437056883179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0026472844485200884,0.0,0.0,0.12443807603766333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10040544855176387,0.0,0.0,0.0,0.0,0.13882056011610033,0.07802874913832294,0.0,0.0,0.0,0.0,0.0,0.007095958150036115,0.1349506278898901,0.0,0.0,0.0,0.0,0.01988246349133114,0.0,0.0,0.0,0.0,0.0,0.0,0.047836075058209006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014865315218935866,0.0,0.0,0.0,0.0,0.0,0.0,0.07625906065436136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04203484836697522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001296854605959345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03730361583169662,0.0,0.0,0.0,0.105100489141457,0.0,0.0,0.0,0.15807305362377855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07220128634792755,0.0,0.17635157183729594,0.0,0.0,0.0,0.0,0.0,0.0,0.2525059173484542,0.0,0.0,0.0,0.15362918421913319,0.0,0.1461709877215519,0.08967780452379304,0.0,0.0,0.0,0.20015941157410772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04550029201807849,0.0,0.0,0.0,0.0,0.0,0.0,0.03617735024689523,0.0,0.0,0.0,0.0,0.09189776209351165,0.0,0.0,0.0,0.0,0.1938004070954114,0.1647883042227951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04899709662815622,0.0,0.0,0.0,0.0,0.08386991042479089,0.0,0.0,0.14678642533292557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022172799316494664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13618034896101766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24676520838038063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23505708209033865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17144919990090007,0.0,0.08385617052455482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12278928800933592,0.0,0.0,0.0,0.08358672809969994,0.0406004771182691,0.0,0.0,0.0,0.0,0.018838434190668225,0.0,0.0,0.0,0.0,0.03146713379652636,0.0,0.0,0.0,0.0,0.04681932244074042,0.0012796797306642638,0.0,0.0,0.0,0.030944611353000397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059029971368580576,0.0,0.0,0.0,0.22844790150814415,0.0,0.0,0.0,0.0,0.3392760670808873,0.04213045059281773,0.0,0.052645040140830636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07946829104107635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.080414640471223,0.03828912551078332,0.0,0.14794515233953337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21797942725587466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09977218029774318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22342452525159506,0.11287421870009998,0.0012796797306642638,0.0,0.0,0.0,0.0,0.07805363200541904,0.0,0.0,0.0,0.03554511171875855,0.0,0.11876758094102183,0.0,0.0,0.0,0.04899709662815622,0.09400378841191981,0.0,0.1129429182012803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008249906652587465,0.10131036136253666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04852307007001209,0.020519284166075298,0.0,0.0,0.0,0.21935133259324813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0245716961328138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04264586769292434,0.0,0.0,0.0,0.0,0.0,0.0,0.015301170444199166,0.0,0.0,0.0,0.0,0.0,0.03733129874944658,0.002741226200587594,0.0,0.0,0.0,0.008249906652587465,0.0,0.0,0.0,0.0,0.0,0.10493062195746111,0.0,0.03733129874944658,0.0,0.0,0.0,0.014409682577860829,0.0,0.0,0.052645040140830636,0.0,0.0,0.0,0.0,0.0,0.0,0.09911434353808929,0.0,0.0,0.0,0.0,0.0,0.0,0.19038497113748462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17580581703746817,0.0,0.0,0.0,0.0,0.0,0.1710780194772486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05146232205908525,0.0,0.0,0.0,0.0,0.06934595642942709,0.018597985936537144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+3,0.0,0.0,0.29883001373426465,0.0,0.2288602298913415,0.3262305273935475,0.08075893947596918,0.0,0.5430190735513476,0.0,0.0,0.0,0.0,0.014382436449700255,0.0,0.0,0.0,0.05478859984977255,0.14185493181082995,0.0,0.1734977585102083,0.0,0.007707374966660596,0.0,0.0016023492238061718,0.0,0.2128446828052925,0.0,0.0,0.36900176829916276,0.0,0.381230688693519,0.0,0.27846992247270386,0.30870165617064504,0.0,0.0,0.0,0.1814503214207341,0.5707614604735893,0.13043603920351038,0.0,0.044268074810860356,0.14313995237699947,0.0,0.15510495727647688,0.060869757938574215,0.0,0.2993337382826356,0.0,0.0,0.0,0.12938074298600874,0.23065774197639727,0.0,0.028696276276155355,0.22029015469524543,0.0,0.004268014828067366,0.0605235423094259,0.23580746488690726,0.2072703094897328,0.2602136001917169,0.12231885005256744,0.0,0.05690971763701642,0.0,0.4166322058178037,0.0,0.0,0.0,0.29073268560230514,0.0,0.0,0.0,0.0,0.37789724638310473,0.0,0.0,0.43583861749843117,0.0,0.10276901330363561,0.0,0.0,0.3445181578849616,0.051915755769281854,0.17875358235655267,0.15030014301179948,0.0,0.0,0.0,0.4567527243041249,0.3866879557099653,0.0,0.0,0.050413157901589935,0.1120856487958694,0.11538347707762873,0.0,0.0,0.6737719321542466,0.0,0.29338545475081407,0.218574517623027,0.3191577977962299,0.0,0.3627873453679932,0.0,0.06845100976308313,0.0,0.14596306055461272,0.0,0.2827002562021789,0.13952605255646883,0.14854830778461262,0.1548508099354833,0.060869757938574215,0.0,0.29880307259438965,0.19113279139642408,0.0,0.43583861749843117,0.0,0.0,0.0,0.3221433790452204,0.0,0.023062623191042686,0.37790924417072913,0.0,0.0,0.1347718546622695,0.0,0.0,0.11928619513800842,0.3418302954445189,0.17916495303301738,0.0,0.2511977150008033,0.0,0.003429822084275975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35001896345168476,0.22945538592811746,0.0,0.0,0.5539036348275351,0.0,0.1618977499654184,0.0,0.29099145583588465,0.0,0.0,0.29365519258433986,0.3627873453679932,0.0,0.0,0.0,0.14057195616258852,0.19034962118397017,0.1922104369914246,0.0,0.0,0.0,0.22811197465354127,0.0,0.0,0.1089456375588933,0.2415128238453033,0.2645204162307132,0.20144328245473303,0.5475216600218148,0.0536707613172082,0.060869757938574215,0.32726275288217255,0.0,0.0,0.29880307259438965,0.0,0.25982491255656526,0.010832743727588974,0.09145711994520776,0.20851105688716007,0.0,0.0,0.09981691093591043,0.0,0.29880307259438965,0.06739796301248474,0.07740733331952504,0.0,0.4398140752384456,0.20126631402956113,0.0,0.0,0.004471546159443133,0.0,0.0,0.0,0.0,0.0,0.0,0.3440319460393706,0.2185321553411361,0.3936387543088944,0.0,0.19676815021561364,0.0,0.0,0.028874330025312464,0.4646876749036959,0.0,0.2725820108406626,0.29880307259438965,0.18883830348578126,0.0,0.2934910074537002,0.0,0.23285227391152508,0.287282662017433,0.41773419143227064,0.05402216844684035,0.24857953915579117,0.30130062000436836,0.5807655174049475,0.24759639104207656,0.0,0.0,0.1847603045161598,0.2588888237525294,0.0,0.2520980854659911,0.3062630334167384,0.0,0.0,0.2935501500568698,0.27233654765298326,0.43583861749843117,0.27124565880675255,0.0,0.12337819513370701,0.2240487478095502,0.32838092004546143,0.4267716181415967,0.0,0.0,0.12741107892998113,0.2936745702538471,0.0,0.01327585645990477,0.2422003798620777,0.0,0.0,0.14517226891169524,0.5373728571961213,0.0,0.0,0.0,0.19113279139642408,0.10079332971280135,0.22645676705635553,0.14088675051548968,0.0,0.0,0.0,0.13528360624417124,0.018035008454175737,0.0,0.0,0.22398245580153367,0.11208576242325417,0.298895893801639,0.298895893801639,0.0,0.06234152062198538,0.15060465265967893,0.0,0.12485403071217774,0.0,0.1507717053096896,0.23004809576898652,0.29880307259438965,0.2913443960382379,0.09622507826049989,0.049437242050757474,0.0,0.11235937312410704,0.4993708168729252,0.32507116645256573,0.20691109429139928,0.1386332347227919,0.04632511221164616,0.0,0.3033861511567998,0.39996315142535027,0.0,0.20684278919302337,0.0,0.030541813870321198,0.40811627432035663,0.12337819513370701,0.06085481458632355,0.29831869376116094,0.012116525155338093,0.0,0.05241829642084398,0.38700002628633023,0.20240782882944966,0.0,0.15652922274002767,0.0,0.0,0.16829647533668496,0.0,0.0,0.27282370611747747,0.0,0.21921830993714425,0.0,0.0,0.13431743218063302,0.0,0.35001896345168476,0.0,0.06022913355386625,0.38219721352646036,0.0,0.0,0.1622569651637519,0.20709645777860075,0.2250100895277826,0.0,0.28680716425778874,0.0,0.11173284995115729,0.0,0.23658701069564408,0.059291736272719824,0.0,0.23630395833162374,0.2287034683292273,0.060869757938574215,0.0,0.0,0.22645676705635553,0.1572569293584538,0.0,0.0,0.37426659962613473,0.34887760955508673,0.3120966405761278,0.0,0.0,0.1404978878919413,0.0,0.010832743727588974,0.1685479259755184,0.0,0.10697685466259531,0.25791096888225024,0.0,0.49673759273623225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23491594418644415,0.04253509016886957,0.060869757938574215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.060851797178657546,0.5207340122459445,0.0,0.0,0.20933012974965887,0.26572860737151066,0.20877003294277519,0.0,0.0,0.0,0.0,0.3234545145191377,0.3629465434785452,0.0,0.0,0.0,0.12182814152172042,0.35001896345168476,0.2341431442663697,0.0,0.0,0.10700945238413115,0.0,0.0,0.0,0.0,0.0,0.0,0.18681629241867356,0.0,0.33482469873348825,0.0,0.0,0.34967816239459704,0.29871628620247226,0.12389718001521206,0.2804903114279029,0.17415466042122876,0.1496564393560574,0.0,0.0,0.0,0.06657511689697024,0.0,0.0,0.1732618816538761,0.0,0.0,0.13287455185249236,0.07265201644391314,0.19113422748981235,0.0,0.2064722952314021,0.0,0.0,0.17028686209912164,0.0,0.0016436288118663878,0.04253509016886957,0.06063951451254361,0.0,0.07460092189970298,0.38310558356751057,0.0,0.1239911735337184,0.24091730108320136,0.16275614638488003,0.2966376721911111,0.0,0.2841388263831421,0.0,0.28841190689468404,0.15643031317503586,0.5312379459870045,0.5199455132765516,0.0,0.0,0.0,0.2871199055286615,0.0,0.0,0.11901809754450705,0.12280930258273069,0.0,0.060926657625990255,0.037340637150486106,0.20728827024964946,0.0,0.19291425793122785,0.1331482901605318,0.20412252423996047,0.1935725710438337,0.060869757938574215,0.0,0.0,0.0,0.1622569651637519,0.08665969502767186,0.0,0.1773198800387357,0.0,0.0,0.0,0.16325317344779774,0.0,0.29880307259438965,0.003429822084275975,0.0,0.13467062784415987,0.187059802319119,0.2936581381489662,0.0,0.256116328983971,0.29494229462299903,0.0,0.0,0.0,0.26427663050028105,0.0,0.0,0.0,0.0,0.0,0.1981087251291264,0.0,0.29880307259438965,0.0,0.0,0.17156495859523613,0.0,0.0,0.0,0.31802369134863057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3497546455735558,0.1930890143392834,0.18660214373190917,0.0,0.3627873453679932,0.060869757938574215,0.0,0.2869076092225427,0.0,0.24910077508043083,0.43956918321316313,0.0,0.07271966959737333,0.0,0.11316816321966704,0.0,0.0,0.0,0.0,0.24612261273256025,0.0,0.060857760150949874,0.0,0.0,0.0,0.0,0.470396806198819,0.1685479259755184,0.0,0.0,0.1229370695339833,0.0,0.0,0.2913443960382379,0.509920320685404,0.0,0.5207340122459445,0.0,0.0,0.0,0.0,0.20148040705517292,0.0,0.2321943934944527,0.0,0.29885997228180566,0.3658983810636093,0.1134973901378311,0.0,0.35155405526070993,0.0,0.0,0.0012925082961070403,0.0,0.0,0.0,0.03917159006322112,0.06832765929601972,0.0,0.0,0.0,0.23501472836598586,0.17788895722557777,0.0,0.0,0.0,0.0,0.0,0.0,0.23135791577134682,0.1752427532589255,0.30394212901077294,0.29908146437309807,0.0418097954196618,0.0,0.3347154617024131,0.0,0.09488268185206113,0.27111734526701814,0.0,0.0,0.375823582427047,0.0,0.3813541516874202,0.0,0.020401988084806824,0.0,0.0,0.0,0.29879107480676526,0.0005468164149194115,0.0,0.4973117808816681,0.0,0.30305249425079234,0.08915401934558359,0.005243427059778581,0.0,0.07292146313500271,0.0,0.29334691059973333,0.05629058743052606,0.27712249159189717,0.0,0.0,0.0,0.0,0.0,0.3259710165777055,0.1723980663390773,0.06643759351274353,0.0,0.3071332937238398,0.055484629939482756,0.0,0.0,0.01486947881535302,0.0,0.33825224803670423,0.2987940922144313,0.015309292741487554,0.24887382294290444,0.2967765534538771,0.10775586851943901,0.0,0.0,0.0,0.0,0.1380133307645391,0.3095883453659994,0.0,0.0,0.0,0.0,0.5638268683392682,0.022459893135068236,0.0,0.0,0.07061111012304769,0.15725549326506555,0.06003920965716437,0.05528268418651741,0.3696578596670568,0.0630710401417917,0.0,0.0,0.1513984166971086,0.1444197871024758,0.0,0.0,0.0,0.1845046333890538,0.0,0.0,0.048636087268604924,0.25004983981115353,0.00323225372519255,0.1351525592752018,0.0,0.296039107019946,0.13106845364334735,0.0,0.0,0.0,0.003011575682284621,0.0,0.08734704190573572,0.0,0.060869757938574215,0.3066505711528335,0.06086077755861588,0.21772952448070723,0.3260929164110053,0.31206683557043396,0.0,0.0,0.0,0.0,0.2296725499038057,0.4341678588832192,0.1555378453303608,0.0,0.060869757938574215,0.007708802739091137,0.6737719321542466,0.0,0.0,0.0,0.05064926783499298,0.15712487338190428,0.0,0.23229927435269454,0.0,0.21954491686511118,0.15327193403599862,0.16011398263964702,0.0,0.0,0.0,0.22987313567055512,0.0,0.2189254953398099,0.0,0.0,0.0,0.5481765950526837,0.0,0.0,0.20174981845392306,0.05771856465595104,0.0,0.22681727518777728,0.140671972615855,0.0,0.0,0.18243381133785228,0.33887194152973515,0.060295013621240595,0.0,0.16868861811330946,0.060869757938574215,0.0,0.3784075805159058,0.14656972167147433,0.0,0.0,0.0,0.27502381187540625,0.0,0.0,0.0,0.0,0.0,0.0,0.22995121371453298,0.0,0.0,0.0,0.43583861749843117,0.0,0.0,0.3300523317648168,0.3215357131073211,0.0,0.4128535881492659,0.24665223974488681,0.14596449664800096,0.23100466354530566,0.2314674936922554,0.0,0.2726266075880618,0.0,0.0,0.027476917410721634,0.056295484190219375,0.6737719321542466,0.0,0.08950089700234848,0.30160802661445724,0.0,0.0,0.13181599198847063,0.0,0.13948634705613913,0.0,0.0,0.3032479158131086,0.31479746629288646,0.0,0.0,0.0,0.12062169663712284,0.19482617019786877,0.0,0.2092579908681914,0.0,0.0,0.26340271772927876,0.0,0.2229603449505377,0.23173723047185804,0.013884334082956239,0.049636467831291
+4,0.4244192371445012,0.4198994849153534,0.28484175591132316,0.044730694455957495,0.0,0.0,0.37503184205811835,0.41957197565482013,0.0,0.423361167176748,0.42020901057441656,0.4259246890958852,0.0,0.3716733592638498,0.40146684373784225,0.41957197565482013,0.09245114001201002,0.11658449479417432,0.0,0.18158540518258146,0.14174162869729104,0.4196048921076667,0.04269970967648403,0.4175583091524094,0.319685675306007,0.42087235834772946,0.1462071178764155,0.41963067879705623,0.4145680451430666,0.23359563497269903,0.03170651610543641,0.1732714098634456,0.42462202981768055,0.09861997673271189,0.21944774032737083,0.4252791443846178,0.5384546256559486,0.18580489164375139,0.07664163644803902,0.0,0.13188809471410223,0.41957197565482013,0.25383431243008514,0.0,0.021895476101096725,0.4546639772493535,0.5639804905357029,0.42355505831890455,0.161805864409639,0.4103515853666064,0.48989243929007426,0.4260963584303808,0.08060037766210829,0.0,0.23778762867533323,0.3107840201758997,0.0,0.0,0.4281555669912168,0.11257239958875567,0.2110774251094119,0.14555533995877246,0.09481211897094637,0.5711353046317298,0.24252084687624878,0.18874711579307293,0.42152413626537244,0.05256084767536882,0.2277626108569909,0.22707029622740643,0.2214978106797996,0.0,0.4035025805820601,0.41158219487115266,0.4197294068089988,0.09935488832584388,0.2936859678526511,0.4195785792539503,0.4194412277471124,0.024417546586505426,0.4090341396946923,0.0,0.42215900767805153,0.42764343851230424,0.2400944219633713,0.43015464898594014,0.0,0.07900079628135366,0.04798337016807582,0.41049791211981923,0.026829598096610903,0.3848023374181212,0.11031889429070757,0.4252791443846178,0.1027525935216495,0.3794322677612426,0.2725942509376082,0.0,0.23463547207300184,0.41751439240388255,0.0,0.3063635007764241,0.23682273896531292,0.15186129714941352,0.1538558769801816,0.042844176897768455,0.23544211562848966,0.03840008772785693,0.5082751356733953,0.41582890778399917,0.0,0.24157021659813094,0.09967110679033796,0.2011287761170362,0.0,0.0,0.5639804905357029,0.41193779376115475,0.2848497608852645,0.0,0.4205299162358197,0.024417546586505426,0.41738862278540656,0.48215524075810745,0.42714375509954566,0.1575849399196782,0.36889939805765454,0.491980451208636,0.2936824029709226,0.11277455830049829,0.4235746331485157,0.0,0.42479280259509467,0.23463547207300184,0.5162272065601277,0.0,0.1423658268113817,0.1763284886470835,0.0,0.2351691370024211,0.4284046177404782,0.23652676603440068,0.40633952152415836,0.4196048921076667,0.0,0.4243445240543825,0.2421038815275502,0.4257384495757941,0.24220064791859722,0.0,0.0,0.42026771371665267,0.2162462307935958,0.0,0.23895172492521877,0.14054797899026558,0.17528109197791863,0.0,0.2421038815275502,0.23289894094113456,0.16349312079708808,0.23544211562848966,0.23579956832288737,0.42481948584156565,0.49192692622533485,0.07432401027786481,0.14365870934807942,0.0,0.0,0.16897677877325581,0.41974274843223425,0.09281001029151344,0.027682755279930138,0.37010689420564513,0.13091682519675812,0.21171446002900834,0.0,0.0,0.0,0.0,0.5639804905357029,0.24060532688811065,0.0,0.047219765880620775,0.2848497608852645,0.2313865490796234,0.23063795215637703,0.3750361550229427,0.0,0.0,0.04690003036135475,0.4244491369290117,0.0,0.11494335802519515,0.2848497608852645,0.0,0.13105541958804795,0.2374039261068518,0.38291104345672233,0.08693812417003939,0.5419219979185131,0.420881238532155,0.42809509208141505,0.4265133237790794,0.047967360220193246,0.48972877492951994,0.41926905359488714,0.42465494627052713,0.22707029622740643,0.2898998150481249,0.0,0.0,0.3030518049413513,0.14405966474889542,0.4233940836295946,0.1197722655206516,0.49602383325128424,0.0,0.0470067633472386,0.0,0.2848497608852645,0.4651652000221532,0.4282317248518094,0.09998136679443471,0.41957197565482013,0.0,0.0,0.0,0.2567062999526582,0.0,0.0,0.0,0.0,0.42087235834772946,0.175858156805443,0.14301137152264914,0.0,0.21929165441004336,0.0,0.0,0.42479280259509467,0.4215027896681957,0.09998797039356487,0.0,0.024417546586505426,0.0,0.4004221153933245,0.0,0.0894011463096684,0.0,0.18603447037171483,0.03766861342267677,0.015721606829152704,0.3307740633702393,0.0,0.4196048921076667,0.0,0.0,0.4101221094469561,0.03648956728053601,0.2017592074375025,0.0,0.2358963347139344,0.23778762867533323,0.23085288415020414,0.0,0.0,0.0909695609560766,0.3871712330525883,0.4118826555006472,0.42374077598038723,0.04604616647428395,0.4536292154996725,0.3728961586559715,0.49192032262620466,0.4205299162358197,0.0,0.0,0.2848221810817121,0.2848221810817121,0.36128368253412346,0.25654246708537126,0.20179653856479915,0.4166398886233866,0.514572845278928,0.41974935203136443,0.0,0.21278869641868486,0.2848497608852645,0.0,0.06926027288976279,0.37972223993729187,0.4265133237790794,0.10178667300513011,0.01142924904710177,0.0,0.1456620729446563,0.08243955756249015,0.4989169988643014,0.4265720269213155,0.0,0.22926067922666465,0.4183443998594887,0.0,0.4196048921076667,0.22928595662665138,0.19080151466642162,0.0,0.5639849306279157,0.036086053105069016,0.0,0.42530672418817017,0.3253595571902035,0.0,0.14238395687051897,0.42467629286770386,0.13985921492031772,0.22177351331256123,0.23958215624568505,0.0,0.4139313806162247,0.42210030453581543,0.09798954541224561,0.37142112333951965,0.14662141490046698,0.18265273504141996,0.40640356131568867,0.20267640441235202,0.42531116428038296,0.0,0.4196048921076667,0.5641708381427281,0.0,0.2374039261068518,0.4107792240138933,0.14044124600438174,0.0,0.0,0.23463547207300184,0.14961967386737757,0.49177712965234294,0.5696645409007581,0.4202463671194759,0.09259991934814442,0.37679419124234587,0.41974274843223425,0.0,0.0,0.5639804905357029,0.41831771661301775,0.04911742017578372,0.0909695609560766,0.0,0.42797164244389707,0.0,0.0,0.04499567182977344,0.0,0.0,0.23453870568195478,0.0,0.42557336679954993,0.3750361550229427,0.0,0.4195586340315846,0.05244133186065502,0.0,0.04533483225298603,0.13048171155733093,0.03314387789611055,0.17995097709105543,0.36927488173348083,0.11977263591340613,0.04694412292394182,0.41957197565482013,0.4924141645719394,0.025791461318531286,0.0,0.0,0.5639804905357029,0.03650879376645808,0.4170568539720852,0.034588306724300355,0.22328770830460876,0.41957197565482013,0.4147485946619877,0.2374039261068518,0.03146534320272783,0.563985827184997,0.13316104466931264,0.41974274843223425,0.4144043807825123,0.0,0.031920998200655124,0.1451097297427074,0.04241724495423305,0.18265273504141996,0.3726700891276905,0.42473499600994,0.15719536452120214,0.18575806410269133,0.2374039261068518,0.40696995284462467,0.11931541209653175,0.06165287932089138,0.0,0.0,0.10170430029540323,0.4195785792539503,0.3833886451297906,0.36927488173348083,0.42542323391556097,0.0312525839347117,0.08928117033125968,0.42525246113814685,0.4903762592126174,0.0,0.41806704055385785,0.0,0.4234154302267713,0.42764343851230424,0.29053024636859115,0.284875547574654,0.13570662642865508,0.0,0.06226176417447753,0.0,0.04784995393572101,0.4177495219535454,0.4117587747607518,0.5646175254552993,0.41957197565482013,0.04413000442964249,0.0,0.4234794700183016,0.035544463505042236,0.0,0.5604796485987126,0.0,0.41835063306586434,0.0,0.42465494627052713,0.49192032262620466,0.0,0.49191942606912326,0.557367565269937,0.0,0.006175163040290394,0.4139313806162247,0.14386212232276707,0.0,0.49191942606912326,0.45236835285873994,0.20955914838521417,0.14031710169580416,0.0,0.03840008772785693,0.0,0.41819512013691845,0.0,0.0,0.0,0.0,0.182846267823514,0.042616290199681564,0.02653929892346981,0.0,0.30661699161789824,0.3672710133191742,0.19568186031820203,0.11022211240871208,0.2337517084014206,0.5639635840307389,0.4969703767890651,0.14555000330947826,0.027682755279930138,0.0,0.07712086780438375,0.0,0.08691607086911106,0.5639804905357029,0.41330718250213405,0.23578960172805055,0.41957197565482013,0.14044124600438174,0.3244177970801377,0.426546240231926,0.13829788664170387,0.49191942606912326,0.41835951325028986,0.21499533474750004,0.0,0.044108657832465724,0.2848497608852645,0.4284046177404782,0.42513646826117774,0.0,0.0,0.16349224558660383,0.4183443998594887,0.0,0.0,0.21673006274883097,0.11334840658998316,0.4916027919932002,0.0,0.22349120768153966,0.04212358807639437,0.42462202981768055,0.41957197565482013,0.416623878675504,0.0,0.4090320195834376,0.2848497608852645,0.17969411122118262,0.36460590521011743,0.0,0.4093187852378209,0.49192032262620466,0.05381239056556755,0.0,0.4196048921076667,0.04446651828320297,0.41075254076742235,0.11687663847719595,0.36644171256731967,0.4196114957067969,0.04890466090776759,0.0,0.0,0.08206293654943538,0.4197854416265878,0.23544211562848966,0.5639804905357029,0.4164264226516189,0.0,0.36794806107578515,0.09349788983707188,0.0,0.2376908622842862,0.4445217480080555,0.0,0.44865992981266856,0.42529425777541896,0.42353406006541683,0.027081317170519377,0.36209705439141365,0.0,0.422133220988662,0.5639840554174314,0.015598533908938499,0.40655209093884465,0.1179247418501124,0.05351747548615344,0.006189755866989528,0.0,0.4183443998594887,0.18342333265103838,0.12675957539658217,0.37010029060651495,0.4259246890958852,0.0,0.010602775110253503,0.4092304458797565,0.13316104466931264,0.05021619564503338,0.426546240231926,0.10172706030008312,0.41967870864070395,0.1449676018326597,0.4196048921076667,0.0,0.4251706396311683,0.2848328543803005,0.2926350063017577,0.1299968007527034,0.4196048921076667,0.23418785658668725,0.2390484913162658,0.08386388170491771,0.0,0.485622613020672,0.03734468608475078,0.4159142941727062,0.3781562917295089,0.12495335018897313,0.23778762867533323,0.41963067879705623,0.41138297208788865,0.0,0.0,0.0,0.2099518841837698,0.23400504075253553,0.2374039261068518,0.42720245824178177,0.42304595151651486,0.14763055846749107,0.07620580545869994,0.012548878164193896,0.28476704282120446,0.11120853735040045,0.42563206994178604,0.18260590750035996,0.16241913321747806,0.25610589554409086,0.23189881479730964,0.42606060514615446,0.427198018149569,0.0,0.0,0.22786569364962572,0.4092304458797565,0.4950790828276663,0.028943617920862696,0.22065925003685977,0.41075254076742235,0.28485332576699296,0.0422950261782159,0.412098789797062,0.0,0.044760435750108775,0.21881818421738877,0.5671410225047301,0.3743888171975124,0.22618653255582521,0.0,0.0403474165068448,0.0,0.44245487078427514,0.0,0.04784995393572101,0.0,0.41990304979708193,0.2207659830227436,0.4265987101677865,0.0,0.0,0.5623261292545032,0.41774598843478755,0.0,0.3802334718591231,0.2321137467911367,0.2220268456636762,0.0,0.4257521445509054,0.0,0.28485242920991155,0.187259287066778,0.09587340547673912,0.0,0.5014369210156302,0.2374039261068518,0.2390484913162658,0.2390484913162658,0.4188058251619197,0.07572731015275896,0.013179309484660175,0.4196048921076667,0.4196048921076667,0.047113496333122444,0.0,0.0,0.3738894821284428,0.41897483117995493,0.0,0.3780470489093371,0.0,0.001370496533972685,0.5633566628143667,0.0,0.43376434402006897,0.4173777596334883,0.4240245149500609,0.0,0.2050525397690512,0.4208937049449062,0.24252084687624878,0.4170568539720852,0.0,0.41819512013691845,0.4128412907527063,0.49823034287291623,0.0,0.4284633208827143,0.0,0.11723646054882873,0.2845411488241615,0.5127263646231374,0.4182510084968403,0.4230516415176848,0.40827261212282934,0.0,0.49192032262620466,0.0,0.42720779489107596,0.5639804905357029,0.15526404569009686,0.5639831588603499,0.0,0.22351263246574182,0.0,0.04775053125271888,0.36853131571402237,0.4229442018280494,0.42290150863369586,0.14813132829066092,0.3822806121362561,0.3874341422755069,0.09870291053849746,0.5639804905357029,0.2406864529265497,0.0,0.11913720425464269,0.4227636523091283,0.2289615901888053,0.0,0.13968223028312513,0.49192602966825344,0.08925776348247677,0.2321137467911367,0.0,0.0,0.5102993506889951,0.4216993491349994,0.4190068510757201,0.047850197201087054,0.14807172859134338,0.2289615901888053,0.0,0.4221349927562277,0.4104678952242938,0.23201698040008967,0.0,0.4192633635937172,0.05351747548615344,0.14488755209324683,0.2532999144421304,0.41172451764271695,0.2846900541969617,0.0,0.4213391253076414,0.04848062852155333,0.14139455663983866,0.239463990642905,0.564151263313117,0.4092304458797565,0.319966138031694,0.5639804905357029,0.0,0.17295619420321248,0.20404444037776387,0.49191942606912326,0.4240333951344864,0.4270903886066037,0.0,0.4251217132304391,0.41957197565482013,0.4079761868379541,0.11934977366932896,0.42590957570508403,0.24399517548894903,0.0,0.48925808973600365,0.42764343851230424,0.4121201363942387,0.024417546586505426,0.4886315766491417,0.23162701527858043,0.0,0.23999891048946823,0.39189830429567,0.17656980246275886,0.0,0.0,0.14773551968580925,0.0,0.03461749980505924,0.21401008441962188,0.49191942606912326,0.31584402588091065,0.19287626893927476,0.0,0.0,0.23841805999579951,0.0,0.0,0.042114512747629895,0.41926244999575696,0.3875583299797471,0.422133220988662,0.0,0.050565455265046244,0.40865845413284413,0.0,0.22225266638189067,0.42549955026651265,0.426546240231926,0.4196048921076667,0.0,0.0,0.41772020174539803,0.14496474365468276,0.23642999964335365,0.4229442018280494,0.2746196474536635,0.23652676603440068,0.0,0.089400586063584,0.12181406275879393,0.5627262314939004
+5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+6,0.0,0.0,0.0,0.1068485550719519,0.0,0.0,0.0,0.0,0.24057271070906178,0.0,0.0,0.0,0.2958314992087498,0.0,0.0,0.0,0.35409841827205657,0.0,0.02925143095107819,0.0,0.0,0.0,0.04263006399161507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2678815865959243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018007799752329474,0.32361996400844073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02408589508120005,0.0,0.0,0.1290968716183136,0.22043226447769798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0031990236836336792,0.07990524303586369,0.1863457306154132,0.0,0.0,0.0,0.17971622683165306,0.0,0.0,0.0,0.0,0.0,0.08144876549468996,0.0,0.0,0.0,0.0,0.21845962138077019,0.0,0.12720432551954683,0.0,0.3899174013867921,0.0,0.0,0.0,0.2269808321099076,0.0,0.0,0.27189474184430096,0.0,0.0,0.0630336748257459,0.0,0.0,0.0,0.0,0.12352413198096593,0.0,0.25474227680967176,0.0,0.0,0.013750377024801815,0.0,0.0,0.0,0.2209572640436558,0.32200489304647983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0906968036919742,0.0,0.03807200380290036,0.0,0.0,0.0,0.13505342420425026,0.0,0.038926214406814465,0.11135439117518049,0.0,0.0,0.0,0.0,0.0,0.22330643946240497,0.0,0.0,0.0,0.0,0.0,0.29445914662091227,0.0,0.14787496457038246,0.0,0.0,0.0,0.056108769015308486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07068078992405619,0.0,0.0,0.22051569748427563,0.14125722356586173,0.0,0.0,0.3994946495456123,0.0,0.0,0.0,0.09396931749527666,0.21355522415747707,0.07024462265648486,0.16503036713681318,0.0,0.0,0.344096415111448,0.216226580726475,0.0,0.0,0.0,0.0,0.4417347614960263,0.24861875348097145,0.12642854225025096,0.0,0.08939037208080752,0.0653509901347067,0.0,0.5337181225273331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12719286074216807,0.0,0.0,0.0,0.0031990236836336792,0.0,0.180665249629889,0.036268210820165195,0.0,0.0,0.0,0.006138810505375166,0.0,0.003063050336635085,0.12650497409944267,0.23844689586931145,0.0,0.0,0.0,0.0,0.0,0.0,0.0891260910802852,0.016514366513903214,0.0,0.0972845236250189,0.04218597366341832,0.03943573836011145,0.0,0.0,0.04755570763565737,0.0,0.0,0.10522430544591413,0.2100906460204282,0.20844250130156,0.0,0.0,0.0,0.0,0.0,0.13634259655141212,0.0,0.04780975884502312,0.0,0.0,0.0,0.25870161532535174,0.17573804450319835,0.0,0.24430417400346272,0.0,0.15024984090907917,0.17909006425606672,0.0,0.25337414670914016,0.0,0.2490875561641171,0.0,0.0,0.0,0.0,0.08186914066524437,0.0,0.0,0.0,0.0,0.12581708745671727,0.0,0.0,0.0,0.0,0.15025166701611226,0.06483944975513375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38779658453188437,0.0,0.0,0.04430440465472531,0.0,0.0,0.0,0.0,0.0,0.13138247252066793,0.0,0.0,0.0,0.0,0.1733847641690041,0.0,0.0,0.29927053152753047,0.0,0.0,0.0,0.04780975884502312,0.0,0.0,0.20169083760079165,0.0,0.0,0.06693466056380772,0.0,0.0,0.0,0.03527117742487052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03485001530962034,0.0,0.0,0.0,0.06566650831698437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015571049626144702,0.0,0.0,0.0,0.10998990407373124,0.0,0.13477888599691923,0.0,0.3306972370379436,0.11006404548129595,0.0,0.020487212119751914,0.41824700147351146,0.0,0.1602852064374894,0.0,0.0,0.0,0.0,0.0,0.0,0.16107897680406313,0.0,0.3137423833864445,0.0,0.0,0.006045156161167061,0.19631567238441078,0.0,0.0,0.42503918591077827,0.2568065137349969,0.16739975446175626,0.0,0.2802868131748377,0.0,0.2699452465241005,0.054288096413965654,0.0,0.0,0.0,0.3484055768152803,0.0,0.0,0.0,0.0,0.057877765429250334,0.0,0.0,0.12321840458419908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05016221362828278,0.0,0.0,0.2934617109889604,0.24416274469086852,0.0,0.0,0.0,0.0,0.3392869197516105,0.3518283923510628,0.0,0.0,0.33624636788263906,0.0,0.19890449580290753,0.0,0.0,0.0,0.0,0.0,0.09434738778670257,0.0,0.02027799440087264,0.1271087857080572,0.0,0.0,0.0,0.0,0.17814879443499948,0.33913040142092965,0.0,0.27062995360189956,0.03116222718087098,0.0,0.08368981326658731,0.0,0.2124851782687931,0.0,0.0,0.2163318531124908,0.0,0.0,0.16739975446175626,0.0972653281636203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25474227680967176,0.0897184125825727,0.0,0.030301414972606425,0.2670136842127521,0.0,0.0,0.0,0.20218279629250652,0.41660841548983385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3994946495456123,0.2910680299185895,0.0,0.3291032320874501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17387809203069876,0.4904846436331931,0.17813350806516115,0.0,0.0,0.0,0.030780067934912426,0.3327337449240564,0.0,0.0,0.0,0.20353779195211646,0.10338994106531305,0.0552425406240042,0.0,0.1124241950307397,0.04546752356214346,0.29149296503154853,0.0,0.0,0.0,0.3192166769725284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2012340618798974,0.0192260866080887,0.0,0.12468589608867994,0.0,0.04880281987450376,0.0,0.0,0.1008712470100614,0.0,0.2884675433050304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.26308992475955223,0.0,0.0,0.0,0.3900976582599258,0.0,0.13822733091446082,0.0,0.0,0.5522344879771853,0.0,0.022654471900723297,0.13116731690013705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04430440465472531,0.0,0.0,0.0,0.18969251519685032,0.0,0.22624644433013397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23138716109847396,0.3566793669891812,0.0,0.2719190990294765,0.0,0.0,0.0,0.0,0.0,0.0,0.2567854949764692,0.11576196700782407,0.1695113418155878,0.24199685567114132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19035906821720922,0.0,0.0,0.0,0.0,0.06674942038470674,0.1687470233236707,0.0,0.0,0.0,0.3824649586355017,0.08827104638499522,0.0,0.0,0.19298643861094839,0.0,0.006895755748225082,0.1696339489799441,0.0,0.0,0.0,0.0,0.12436693609132934,0.2292378671653314,0.1354926769371928,0.0,0.04733046385518387,0.1271087857080572,0.31426371455152835,0.0,0.08834747823418693,0.0,0.13932538234878283,0.0,0.0,0.0,0.0,0.0,0.0,0.07131778732407629,0.13528380992714478,0.0,0.10909962402926984,0.0,0.0,0.0,0.18595725675548125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12658140594863437,0.20798117878926953,0.06498027472527736,0.0,0.0,0.4986859042934605,0.0,0.0,0.06716504628670217,0.0,0.0,0.0,0.0,0.0,0.17990627449029778,0.0,0.0,0.0,0.0,0.23909976052264303,0.0,0.0,0.0,0.29739064549251304,0.0,0.43153997706666924,0.004322912059538816,0.0,0.0,0.0,0.0,0.0,0.2270036726471435,0.0,0.23741562255273346,0.0,0.0,0.0,0.0,0.30516509312625584,0.0,0.14523899484461755,0.11797736976936377,0.0,0.0,0.0,0.0,0.0,0.0,0.13441784616022523,0.0,0.0,0.0630336748257459,0.005684041002684505,0.0,0.0,0.38459636430557087,0.0,0.0,0.0,0.0,0.04107737006671484,0.0,0.0,0.0,0.0,0.20771173527141967,0.0,0.0,0.2820726905491981,0.0,0.0,0.0,0.0,0.0,0.13116731690013705,0.0,0.0,0.0,0.0,0.43767906078055896,0.0,0.19919688981636435,0.0,0.0,0.0,0.0,0.0,0.0,0.6078148951433545,0.0,0.0,0.0,0.0,0.0,0.20777593798979682,0.0,0.0,0.0,0.005836262673534694,0.0,0.0,0.10124815703314234,0.0,0.0,0.0,0.0,0.0,0.0,0.1303226073542963,0.0,0.04840277119548995,0.0,0.10154726798056177,0.15180857690702987,0.0,0.3671657648917515,0.3058313495400037,0.0,0.0,0.0,0.0,0.37608151885051555,0.0630336748257459,0.0,0.09889883157535506,0.0,0.13187399689014745,0.0,0.0,0.0,0.4013639599265503,0.1558583440491706,0.0,0.0,0.0,0.0,0.0,0.0,0.3146610282251887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12852872311053193,0.0,0.0,0.0
+7,0.0,0.0,1.2522385149015423,0.3001624780591373,0.8301560477156533,0.5851075841990224,0.0,0.0,0.9251262881659978,0.0,0.0,0.0,0.2744887888005017,0.0,0.0,0.0,0.5952853767070938,0.5871411569580396,0.8364886551898799,0.11349680129845967,0.6801139231879811,0.0,0.30293039948400563,0.0,0.0,0.0,0.6782520101082057,0.0,0.0,1.2222212029703492,0.30586018464881554,0.9308949152156577,0.0,0.645815700447308,0.964053700987534,0.0,0.5718445301660195,0.1114329204381146,0.6154185440154487,0.5468676354323756,0.08482806104507191,0.0,0.3995336488803308,0.8345763813022103,0.3115317051886738,0.2388128842151416,0.5612911124488408,0.0,0.9361401076716795,0.0,0.27628397676958666,0.0,0.6535643426837524,0.8031352707186658,0.14167984153932692,0.42727830195456495,0.9855915090607704,0.2709145240056863,0.0,0.5898118090347121,0.9675646271409298,0.6785278687900853,0.6477748694885102,0.5582691498095341,0.13962712633044536,0.11122252024228631,0.0,0.6141768554489203,0.14665496333510283,0.1461108172053681,0.14838436584338474,0.9600002995045906,0.0,0.0,0.0,0.5941381529647104,1.2485785004491277,0.0,0.0,0.0,0.0,0.8369495825056176,0.0,0.0,0.0,0.0,0.9928300283671115,0.6550816007272987,0.2974651352239954,0.0,0.3066948083564998,0.4277371944625423,0.6410624659180104,0.0,0.5907734987479194,0.0,0.0,1.2798496020314973,0.14298306967639784,0.0,0.4299650479173014,0.42910619048784754,0.0,0.0743666447061966,0.6760079110215776,0.30112767808656044,1.2209052737590849,0.30146717103252174,0.5325673022828541,0.0,0.8344460584885032,0.1401159677748418,0.645255235942488,0.1054167868486199,1.278134860405878,1.2998570078946703,0.5612911124488408,0.0,1.2522328100061177,0.8323608934691897,0.0,0.0,0.0,0.2794399979429095,0.0,0.6737276103441778,0.0,0.27611641763090433,1.2485810410292233,0.5866494468209764,0.0,0.8364450397279845,0.0,0.14298306967639784,0.5287845644807331,1.255255326324894,0.6798577197724708,0.11573409686242798,1.282396230348283,0.14260274331476075,0.0,0.1422011327941553,0.0,0.0,0.27678878673086366,0.0,0.13973564141320471,0.0,0.1398553221474276,0.5857913713186577,0.9659558956020253,0.0,0.15061785814373668,0.5476666870008918,0.14103886955027564,0.6805853378935636,0.11610325757260155,0.8302062931472393,0.13973564141320471,0.14365471191376564,0.9349376526336733,1.2209052737590849,0.14234209768734657,0.0,0.27539999071798965,0.8174631585308643,0.6793136089359443,0.832589089286172,0.27083149115441363,0.1187097138467434,0.0,0.6482584943162532,0.3058981466985629,0.0,0.6853760626237156,0.9673012513204199,1.28232011054957,0.9976194103306428,1.3495127895954555,0.8411153768624714,0.5612911124488408,0.0,0.27886327437748476,0.2961248769348651,1.2522328100061177,0.14416661707924588,0.0,0.0,1.015104529494689,1.006397314157403,0.29823719773811863,0.0,0.8377807176754873,0.5856697402306825,1.2522328100061177,0.9724147145939253,0.6845227182206116,0.1410081027889808,0.4285191313447849,0.6513113457865474,0.5704109792152416,0.0,0.0,0.0,0.2974765450148445,0.2764006152581735,0.0,0.0,0.1461108172053681,1.2501449147937085,0.9954130291543767,1.248750919652874,0.4303364501246127,0.679216503644034,0.0,0.5835468542578981,0.27370643308808495,0.9677108767247347,0.29816113246579123,1.3131370278854946,1.2522328100061177,0.49863603995477523,0.0,1.4054456585763682,0.0,0.2764876818898503,1.2871401082350324,1.2509407164082305,0.39795848070130485,1.2789293114225755,1.2813556849268963,1.242043049408437,0.8023533338364232,0.0,0.11588064458135107,0.679586303302495,0.8018320425815948,0.14939069527899315,1.0098020247118586,1.2608301077819204,0.0,0.0,1.4054429283832723,0.8017671429607309,0.0,1.2924664827866288,0.0,0.83548864099816,0.6503105991766708,1.2754400097106644,1.1895777375120522,0.30189414840830575,0.3189499193891284,0.0,0.9722885477361062,0.0,0.27088312133921294,1.2935973013774424,0.0,0.30282873940718247,0.10515614122120569,0.9253869337934121,0.14246177842156948,0.14167984153932692,0.14454694344088298,0.8323608934691897,0.8365312235078167,0.6493795060822547,0.0,0.0,0.0,0.298845719916738,0.23898439728695672,0.0,0.27540272091108536,0.0,0.9907421331547023,0.8360099322529884,1.2522524652724871,1.2522524652724871,0.0,0.3982638824044423,0.9713511548198981,0.0,0.529963576201808,0.0,1.2570292855594054,0.9663450574166499,1.2522328100061177,1.2792474141999062,0.5539515435749458,0.0,0.0,0.5978757464455531,0.5780830974724183,1.2502655120035229,0.6784518035177579,0.6107206169747886,0.2723048150691441,0.0,1.308009890921372,0.960078615289917,0.0,0.9611675867090146,0.0,0.14905922009904474,0.0,0.83548864099816,0.561287948133512,1.116192766534447,0.2808314118156801,0.0,0.0,1.2531701613055803,0.6804107284195744,0.0,0.680889531439566,0.1491310967955376,0.14077822392286146,0.8333502302882173,0.0,0.0,0.6460763460747222,0.0,0.6781453966572545,0.11273614857518553,0.0,0.10431384039987239,0.0,0.5857913713186577,0.0,0.561155457642172,1.538044302154693,0.1410081027889808,0.0,0.680661403165891,0.8054273473959931,0.8307970197047047,0.14298306967639784,0.6778950621934543,0.27550477008043983,0.5589400310289216,0.0,0.6485968627084173,0.0,0.0,0.8028746250912515,0.8330353624126315,0.5612911124488408,0.0,0.29703619536648057,0.6493795060822547,0.8065236638750501,0.0,0.2747288826871042,0.966038905569845,0.6173046029778906,0.7682225481647396,0.30988415726891794,0.14286338894217496,0.8073436333934565,0.0,0.0,0.8334034759788465,0.0,0.29919478211147277,0.8304826401078901,0.2986000691309657,0.8966430841366915,0.30389260607580765,0.114284321006434,0.0,0.5835485662767063,0.5653281330923294,0.0,0.27524139425992994,0.3066800835808055,0.9598461708151493,0.8387573534203215,0.5612911124488408,0.3022491079147643,0.0,0.3038064222959753,0.14767469096985322,0.0,0.0,0.1410081027889808,0.3043342729340778,0.5612873091852244,0.8955353402201812,0.0,0.0,0.8044440816814684,1.1180292125957902,0.6788454413020523,0.3014319391758701,0.11273614857518553,0.0,0.0,0.6740052485881729,0.0,0.1410081027889808,0.0,0.6894938793898703,0.5593730958600822,0.5857913713186577,0.9669485474058981,0.5911432984063805,0.0,0.0,0.0,0.0,0.3046745429580502,0.597544515295218,0.0,0.2765031267797371,1.2559243440089807,0.0,0.973705726155261,0.0,0.0,1.2498842691662944,1.2522144326363234,0.6827170930771014,0.9939703715468442,0.5602596644783677,0.8366844011964302,0.29756021681440464,0.0,0.0,0.5610277366283309,0.0,0.2990814261178222,1.2530541426621413,0.0,0.3031249991603574,0.8345870233816945,0.56378605338118,0.8049597901105651,0.0,0.9986843241432267,0.0,0.27540272091108536,1.2827380872782617,0.2754033598593729,0.564025161343594,0.8387573534203215,0.3272605413429312,0.0,0.07591725853130092,0.7960978387784827,0.2754033598593729,0.23950568854178508,0.9686466556397872,0.6807518529313964,0.829945647519825,0.30146717103252174,1.2864591344347018,0.0,1.2757139381609124,0.9968252606529783,0.5486921548242749,0.5492134460791033,0.11297551004363131,0.568223801457601,0.3063357661538311,0.8005288144445238,0.42892553546606993,0.0,0.10835541834073024,0.5928072873282751,0.14417882987466807,0.5613031611879775,0.27331482569867616,0.6785316720537017,0.3058981466985629,1.2484780841134906,0.6139431760282205,0.9664165787783773,0.6511384193616953,0.5612911124488408,0.0,0.14253784369389688,0.0,0.680661403165891,0.0,0.0,0.6823795276895103,0.2754033598593729,0.0,0.15094340339201473,0.933273430446706,0.2990966391722876,1.2522328100061177,0.0,0.0,0.8349673497433316,0.9628034783428251,0.9349382763689064,0.0,0.8027012103876284,1.2569766407205565,0.1512162618148511,0.5869950555312949,0.2756290150962594,0.9934495685707871,0.14771830643174869,0.5666885036535152,0.0,0.0,0.0,1.2554030527541522,0.0,1.2522328100061177,0.11427873818070224,0.0,0.8369701083198672,0.0,0.27540272091108536,0.5604333328180603,0.7694776251581419,0.0,0.2999714859471837,0.0,0.5846692377601914,0.0,0.0,0.2973764653904529,1.0894893465098645,1.0104129082012336,0.6540311675510236,0.0,1.2209052737590849,0.5612911124488408,0.0,0.8077651338231332,0.0,0.6483341933795022,0.7660902791457161,0.141560160805104,0.24321128800105804,0.2721347192914846,0.24158263668540184,0.0,0.0,0.30651541601824284,0.7215386627661784,0.9939741462106371,0.0,0.561288571868745,0.31111461837107746,0.0,0.5844882165293355,0.29352115085381897,0.5806852622041726,0.8334034759788465,0.0,0.11275289705238083,0.6883388049808684,0.0,0.0,1.2792474141999062,0.5788607428122733,0.0,0.8955353402201812,0.5631848719748118,0.0,0.5915043643105501,0.0,0.6787580883085685,0.0,0.8323183251512529,0.0,1.2522448587452544,1.248950201739397,0.08560999792731448,0.0,1.2214238348208175,0.14115855028449856,0.6038576086759078,0.25405048456590945,0.2780064469921315,0.3018420366381198,0.0,0.0,0.08769516294662798,0.14167984153932692,0.0,0.0,0.9598670887650395,0.8079800697007345,0.26918330664208084,0.15302856841132823,0.14324371530381205,0.1410081027889808,0.0,0.0,0.677803497740683,0.6574507898209121,0.6588317376655928,1.2522917605921715,0.5902178617672216,0.0,0.0,0.12225128469174133,0.3993295858348301,0.0,0.0,0.0,1.0127013227877772,0.269943959365355,0.960506848655837,0.0,0.2740967625809187,0.30537685544373455,0.14879333875183737,0.0,1.252230269426022,0.5686413994374214,0.0,1.2692478478953237,0.298820780490408,0.9643137228797151,0.5599838914351535,0.0,0.1473065774036383,0.8379105169172151,0.30064529988230726,1.005430337241126,0.24411638161554514,1.2762358683640282,0.29756021681440464,0.273614282308122,0.0,0.14871727347950997,0.0,1.3069673084117153,0.8327625039897952,0.5624701241699157,0.0,0.8307118830688309,0.0,0.1440256521860546,0.14819598222468158,0.26830806773154436,0.0,0.7376221676865903,1.2522309083743095,0.11115099065173199,0.6468298805495347,1.0163503615715759,0.2722067332196915,0.1410081027889808,0.14115855028449856,0.14115855028449856,0.0,0.6568485828861813,0.6585710920381785,0.0,0.0,0.29808506719346384,0.2745712399031339,1.2428249862906795,0.0,0.0,0.2822389664596759,0.0,0.8339247672336748,0.26622290271223087,0.5615490278831592,0.7961627383993466,0.0,0.0,0.0,0.8140206288810736,0.1030599812732143,0.0,0.13962712633044536,0.0,0.9984013472128854,0.0,0.0,0.2727941733921353,0.9717731093729571,0.0,0.969286967064955,0.5853540434239618,1.2523604026267292,0.5312795054130723,0.0,0.0,0.0,0.8405818728122209,0.27540272091108536,0.8091950197700559,0.0,0.5612911124488408,0.6748157099475383,0.5612892108170326,1.0199994003553745,0.9619113515575131,0.9572366181388333,0.2978216913729539,0.0,0.0,0.0,0.6774466146959773,0.4287797769721991,0.0,0.5955460128378243,0.5612911124488408,0.141311727973112,0.4299650479173014,0.5839994426282462,0.0,0.14532888032312555,0.9933570084573338,0.6810156628741394,0.2754006296662772,0.6506014267736303,0.1440256521860546,0.8036945946096579,0.27431527113032544,0.2678866000836086,0.0,0.0,0.29586423130745093,0.677489089544045,0.14532888032312555,0.9608136390533065,0.0,0.0,0.1439059714518317,0.5479102179420324,0.0,0.29352115085381897,0.6788151372628141,0.40019746235751935,0.0,0.0,0.9719119799782312,0.0,0.2956035856800367,0.6805499137506503,0.0,0.5611694080131169,0.0,0.42488464150320143,0.5612911124488408,0.7191626988658288,0.9310252380293648,0.10374823938838358,0.2754033598593729,0.0,0.0,1.2527588213700014,0.0,0.0,0.0,0.5838479510318789,0.0,0.13895370453096215,1.2749846881041114,0.2764530932374378,0.0,0.0,0.0,0.276805268024415,0.14550438931466605,1.2513202939218326,0.0,0.0011435471219624468,0.9295817908040285,0.9868050228936018,0.8070449551298785,0.6777286951518763,0.9809445155275497,0.3030310447970069,0.9666084469937765,0.2754033598593729,0.0,0.10790251524458024,0.9930963628299195,0.4299650479173014,0.14141919591191274,0.8370525147626451,1.0865753790316135,0.30146101984491874,0.0,0.0,0.0,0.9643796449858325,0.29506101026623993,0.0,1.0883788870037534,0.9624320038640538,0.0,0.0,0.0,1.2896963450041503,0.8345992361771167,0.0,0.6789487683679819,0.1420814520599324,0.0,1.2578276808517468,0.1422011327941553,0.9861569326560891,0.6504976655854676,0.5828482774925229,0.5618096735105734
+8,0.026552158584920164,0.03687614465424073,0.19688430949615598,0.0,0.2449318869884961,0.23529965174790285,0.0,0.039752257849494474,0.0,0.0304968201064952,0.038196243326522675,0.024515540371875148,0.0,0.004197993398730396,0.08512111294863622,0.039752257849494474,0.0,0.0,0.2597297649686418,0.0,0.2887688587552518,0.03989264351519507,0.0,0.043805710441997936,0.014677772676461826,0.03679674434821778,0.278213445732487,0.04000262139078932,0.05219559078827274,0.1640120040832202,0.0,0.19649436646956064,0.0274170508184842,0.2567177383741665,0.21831602009266904,0.025990967784158176,0.007295533775282109,0.0,0.0,0.15554443444339278,0.0,0.039752257849494474,0.0,0.2665240667769917,0.0,0.0,0.0,0.03132374812307015,0.21318271390607163,0.06381309147385412,0.0,0.02524769440790903,0.29403844356030245,0.2313234284104147,0.0030028175399165495,0.0,0.20911499324079752,0.0,0.01711556425034687,0.0,0.23763370020272612,0.27966228908874896,0.2573920393636377,0.0,0.0,0.0,0.035347900991955866,0.19945269644316452,0.00887612353931409,0.029180856488009988,0.043472264400841454,0.15905412961120508,0.07900318639266835,0.05003275367312485,0.040423687346603385,0.0,0.17535913897906974,0.03973612797052818,0.03919462996206503,0.0,0.053965689323246746,0.2755695661940844,0.03382695293580104,0.019159999711027293,0.0,0.0,0.199925800726363,0.27875914171465144,0.0,0.0,0.015247857269403257,0.0,0.22626883697051275,0.025990967784158176,0.0,0.0034600963779720063,0.0,0.20710031917275112,0.01070224075994403,0.05630425949791951,0.09192858264708831,0.0,0.0,0.0,0.23894822167125374,0.0,0.17188707547304005,0.0,0.0,0.04911582150026175,0.26575412445498897,0.0,0.25697209542901156,0.0,0.19876386775927124,0.11216520293597265,0.0,0.057892275457406356,0.19691844997905983,0.253435047302945,0.03533626001023524,0.0,0.0473106302406609,0.016815907506148232,0.021257512242462227,0.24639510127859438,0.017739002108647612,0.0,0.17534393508401658,0.0,0.03140723298393101,0.2630904753675189,0.028145381120432845,0.01070224075994403,0.0,0.08288004728258794,0.2872023900552252,0.0,0.13606567920255774,0.012978272953533588,0.01817774295445124,0.006082586827927536,0.07207370549464359,0.03989264351519507,0.0,0.02623351407781763,0.0,0.025835554154424612,0.0,0.22194096017641557,0.163709412676547,0.03844660686781752,0.0549036889973855,0.1600616669266977,0.003738965089500608,0.29217957869524636,0.0024495836634631602,0.21673392237283245,0.0,0.01598194402810148,0.22037870833061213,0.17188707547304005,0.011438388309528095,0.02825918273011233,0.0,0.0,0.28425918269882955,0.25206942798679133,0.0,0.017848430103518113,0.04048058815144312,0.26999631196085067,0.02311511141158772,0.014431629601277678,0.29757407683980946,0.23607768567975435,0.13035428602206645,0.17123166520816835,0.0,0.2816366806404223,0.0,0.0,0.0,0.013409111139387832,0.19691844997905983,0.02221758081756656,0.0,0.01431139358590339,0.1533849129350261,0.13419949939727843,0.0,0.03936552841385904,0.2736954025477056,0.0,0.19691844997905983,0.2118486574296512,0.31507963590087534,0.02255373804557601,0.0,0.2703249537869805,0.0,0.036834617523919116,0.016857644282169296,0.02279739688646772,0.0,0.0,0.03841602929824624,0.027557436484184798,0.029180856488009988,0.18458324294804956,0.1720367851445304,0.08460877369951195,0.0,0.28174060421158054,0.030637205772195798,0.0,0.0,0.05091686279292218,0.0,0.007894425162910812,0.19691844997905983,0.0,0.030126220549826072,0.1682032072755782,0.039752257849494474,0.0,0.1015094017024041,0.06530471860529266,0.0,0.15061377925389782,0.11749516098631299,0.0,0.22670377447839823,0.03679674434821778,0.0006820958000987127,0.2857269626429421,0.22362400519038722,0.04674905933864011,0.10142549701002412,0.07741549575506201,0.028145381120432845,0.03525685970421229,0.16818707739661187,0.2178129972700687,0.0,0.08819986097093424,0.08912267527505097,0.27191366303101094,0.2639150516696636,0.12809946071651326,0.14685570096702033,0.0,0.0,0.0,0.1103461532101436,0.03989264351519507,0.0,0.0969310551049597,0.06283439763061062,0.0,0.0,0.0,0.007622471471933029,0.0030028175399165495,0.019941548623977002,0.253435047302945,0.2780732016070329,0.26641987388727795,0.0,0.057657115811164686,0.027887200331502607,0.0,0.0,0.005184504489609286,0.0,0.03533626001023524,0.18759059369535275,0.27499343231902196,0.19680082463529514,0.19680082463529514,0.019087604087589933,0.0,0.2614365228176204,0.048345964067991465,0.0,0.04046445827247683,0.16215515162324445,0.2449321160759781,0.19691844997905983,0.13011193576568184,0.0,0.004696801230680825,0.02279739688646772,0.0,0.18434620514313582,0.109673956739888,0.28011749552746684,0.0,0.0,0.023047760427762565,0.013779781825498013,0.19250944190167996,0.04292969886821864,0.19236465799383945,0.03989264351519507,0.0,0.0,0.27191366303101094,0.0,0.19602674460199265,0.0,0.026108593127922883,0.0008188108804123599,0.07056097013054399,0.27459386312370937,0.027648477771928377,0.2934263858629696,0.0235050276573663,0.0021990804454951147,0.25991323038606956,0.053708891376257104,0.033576589394506196,0.25825762301817196,0.011579463532625633,0.27575176805007773,0.0,0.07234682935787433,0.0,0.02612752971577355,0.22194096017641557,0.03989264351519507,0.0,0.05961015322256796,0.02255373804557601,0.06140831459628458,0.2917243722565285,0.23310516792710934,0.24419573943891204,0.01070224075994403,0.24625290217073553,0.0,0.0,0.03835556558007394,0.26487167661194155,0.0,0.04048058815144312,0.22978354376640925,0.23390025667625192,0.0,0.04281589725853917,0.0,0.26641987388727795,0.2513419287824861,0.020559759510084864,0.0,0.09811900480408828,0.2179313121712304,0.21224882384590477,0.0,0.014518157597539081,0.2557339794951436,0.02301718285819127,0.01431139358590339,0.259594585878967,0.039695357044654725,0.0,0.23057863251555172,0.0,0.15951607314112687,0.004120134105661251,0.0,0.010927466007062885,0.0,0.0,0.039752257849494474,0.0,0.027734765343604213,0.18480654642342578,0.2957480802406775,0.0,0.001556726395510774,0.045895666546550154,0.0,0.03842016435204296,0.039752257849494474,0.05296561800000796,0.02255373804557601,0.013875803547554733,0.0,0.15297156340410348,0.04048058815144312,0.0514975772351427,0.23588974445092403,0.2036348657135239,0.27776180220710167,0.0,0.0,0.021134805232151572,0.027898841313223236,0.244733597777274,0.0,0.02255373804557601,0.07053382085063811,0.34112467583068595,0.0,0.22194096017641557,0.15776896865127826,0.0,0.03973612797052818,0.0,0.010927466007062885,0.026605496476427352,0.008739788037677745,0.0,0.025877166174478706,0.0,0.15016940123185077,0.03333384706357194,0.08633420960504853,0.030728247059939377,0.019159999711027293,0.18304335830404406,0.19702842785465408,0.30108767508654305,0.14967328019209142,0.0,0.25545864169232885,0.0,0.023478132281633677,0.0,0.0,0.039752257849494474,0.0,0.16734588786656918,0.031001370923170127,0.0,0.27110992593658956,0.0,0.2421026209184532,0.042956282924239766,0.1648587750661176,0.027557436484184798,0.0,0.1712162307486672,0.0,0.0,0.2957480802406775,0.0,0.053708891376257104,0.0,0.18974654302226626,0.0,0.0,0.2311583886119638,0.2911506144901327,0.21519403772882695,0.0,0.10555216555490993,0.03388009479003343,0.14505834145090007,0.19458237267245654,0.16632362695143127,0.16940339623944223,0.0,0.0,0.026695607782188397,0.21592458197035974,0.0,0.015022706550640644,0.0,0.0,0.0,0.0,0.0,0.2796395287668131,0.02311511141158772,0.17613275497576547,0.0,0.17335128050876106,0.27445951513167804,0.0,0.055275360076283725,0.00716726503321512,0.039752257849494474,0.2917243722565285,0.0,0.02293778255216832,0.27831023000495514,0.0,0.0429941560999411,0.06225458156170946,0.20258104990661485,0.0,0.19691844997905983,0.01817774295445124,0.016925233827006673,0.268833893743,0.1949735863478618,0.2203749756378146,0.04292969886821864,0.22152223832464935,0.09737655891359512,0.03582410480941026,0.0,0.0,0.1589893776905378,0.03505945395316583,0.0,0.0274170508184842,0.039752257849494474,0.04827768310218378,0.14708963194383975,0.06664249722057025,0.19691844997905983,0.0,0.01634211380195229,0.24448222749722787,0.07632275986999094,0.0,0.0,0.20473791760705928,0.03989264351519507,0.0,0.06129451298660511,0.0,0.02417166454790035,0.03987651363622878,0.0,0.15882120853187837,0.12566698934292714,0.2664471903892726,0.04066267072693029,0.17188707547304005,0.0,0.04743555119055565,0.1881179029703902,0.022138870068940542,0.26024420543228965,0.1630152701977195,0.006818734377511601,0.0,0.0,0.0,0.02605542501588064,0.01854834251112034,0.01632141613447558,0.0,0.16514917708731244,0.033716975060206794,0.0,0.04769211057653305,0.07298029463799417,0.0,0.0,0.18737194511866928,0.259594585878967,0.04292969886821864,0.0,0.2798437860517468,0.01444775948024397,0.024515540371875148,0.13011193576568184,0.17659275261063082,0.0,0.15297156340410348,0.0,0.02293778255216832,0.0,0.04020746428821238,0.2813842563082416,0.03989264351519507,0.23509161066455386,0.02552820491855755,0.1968463452791669,0.1793341172494634,0.0,0.03989264351519507,0.1749507148820848,0.0,0.0,0.0,0.008346541964117984,0.0008931141460372409,0.04947998665123608,0.006475408434260535,0.0,0.0030028175399165495,0.04000262139078932,0.05975462834259963,0.18468136465277835,0.23642679208780942,0.0,0.07457365871375343,0.012242125403949523,0.02255373804557601,0.021507875783757072,0.03126676242849795,0.27159843989699445,0.25838152775535983,0.0,0.19656566498905342,0.0,0.023267546399486114,0.0,0.01525237056088544,0.0,0.0,0.020866593256001823,0.021488939195906404,0.03447972796119163,0.0,0.1992458057737348,0.0,0.0,0.02003534212357672,0.044124496489347034,0.06129451298660511,0.196933653874113,0.0,0.058578908849568456,0.0,0.0,0.21985963742947207,0.0,0.015779173530015986,0.01272583514932783,0.2853174183883425,0.0,0.09969023037892424,0.0,0.14813428700482587,0.0,0.0,0.036891348549293906,0.04457970292806494,0.02316156203744205,0.007620243249476041,0.26033073342855106,0.0,0.04460614544383951,0.20750886616212966,0.002648542035915173,0.016861779335966016,0.04149993364005396,0.0,0.023779653643043772,0.201464028029815,0.1969298301400278,0.0,0.26614694606132205,0.056038112977268614,0.0,0.02255373804557601,0.0,0.0,0.030097477341161572,0.27748387226527094,0.0,0.03989264351519507,0.03989264351519507,0.0,0.0,0.0,0.005192321737244691,0.041389814224213145,0.0,0.0,0.26267435516697796,0.0,0.0,0.19555755094258476,0.0,0.04303568323026272,0.029097321128190305,0.22507513442652216,0.0,0.03688778563596136,0.0,0.045895666546550154,0.17585131914018487,0.03388009479003343,0.05751699096621676,0.0,0.1319964669722092,0.018428106495746086,0.1933700417015852,0.0,0.1976722624220963,0.0,0.042531393234340464,0.029176721434213255,0.06763231040402905,0.30652727274871594,0.0,0.27255178314285955,0.021530636105692964,0.0,0.24918254929477124,0.0,0.07759649799334556,0.21873794724891837,0.16009467001456146,0.0,0.007756224831090684,0.032947117627936506,0.032765035052449334,0.2737341774661712,0.0,0.0,0.0,0.0,0.0,0.09192858264708831,0.0,0.03217709041620129,0.024561202555993495,0.2556339097608624,0.29267156254628757,0.0,0.25907492034495333,0.016861779335966016,0.23417559447906672,0.0,0.0,0.036095167881755194,0.04152637615582852,0.011869226495382332,0.2734799901907911,0.024561202555993495,0.18828343454064916,0.03372453148708951,0.038937442439860914,0.020677696173561067,0.16170397301941475,0.04050607029253092,0.0,0.2810428514792032,0.0,0.06121128894649694,0.0,0.18076056252834635,0.03455884615108225,0.01032934185137684,0.28306001146289217,0.0,0.0,0.0,0.0,0.0,0.2739651805900268,0.19726430879156343,0.0,0.0,0.02913519430389164,0.021029909023103272,0.12261775594050325,0.025319538287049265,0.039752257849494474,0.0,0.0,0.024451083140152683,0.0,0.17422005683550668,0.0005941265630684725,0.019159999711027293,0.058669950137312035,0.0,3.641378590655248e-05,0.0,0.10336170009547449,0.0,0.10774141584806485,0.1873043180937523,0.19255372671931859,0.25442169807049714,0.27204608990882967,0.10500820732020888,0.006176380327527253,0.22472523078901563,0.0,0.01520795530743491,0.0,0.2540940251168569,0.09192858264708831,0.0014629328959110495,0.28115297089504393,0.19175809608601646,0.0,0.03843215917721253,0.0,0.033716975060206794,0.21033872290523048,0.0,0.06504927468505757,0.18406484645093119,0.22182154027101458,0.02270236208517396,0.02293778255216832,0.03989264351519507,0.16677146959448885,0.24313956454028485,0.04449616756824526,0.2771434497807473,0.009898503665522588,0.032947117627936506,0.19130120664095235,0.006082586827927536,0.20573126169923178,0.25972833923812466,0.0,0.0
+9,0.1301005202418539,0.1603424127324911,0.6446946250010382,0.24987572695648103,0.39105006944804394,0.5610367683655709,0.15756610995803794,0.16436153564556788,0.6595211481488165,0.1384923599200425,0.16001243685154554,0.12123174025243377,0.3780661497682349,0.19746580371273448,0.28895084278211103,0.16436153564556788,0.5525685588858495,0.3525080001256615,0.46706295067847814,0.2757728485685281,0.3951612451836662,0.1643264444174011,0.2266173757393039,0.17736599593279437,0.2894463219801977,0.15567333023707816,0.3649772008785024,0.16429895401297476,0.19871348410008424,0.6959333362577694,0.33276711020421557,0.5065170895849498,0.12988432914744127,0.4086832534310604,0.4697629569685106,0.12555186756450742,0.5794657159329131,0.25311492377169553,0.39872179701171245,0.47863765617223397,0.2781453073846911,0.16436153564556788,0.39069567141801986,0.45833123186836816,0.36864988348722394,0.25553806891913594,0.40519817619546017,0.13828565847682672,0.5750731441428012,0.2286320457413094,0.29764586287948724,0.12104872880177417,0.52595555661526,0.49374068658361314,0.18656320152452555,0.2988731882954086,0.44589025589472253,0.33749238698902223,0.10432574225053363,0.36041710441760033,0.5259394514369297,0.36930397322210956,0.42727042165398493,0.35758135396536583,0.15609373946082244,0.2136589906844775,0.15134655789347096,0.414441021317962,0.23901778291683934,0.2597314630916359,0.29835950602113503,0.515492260377491,0.27406884458851166,0.21097643754027764,0.16419370308543177,0.4725700480000237,0.5843809919142477,0.16431645223784613,0.16450092200907074,0.5584778973286434,0.2264046027092352,0.49123716359155395,0.1470378090600506,0.10850363857944112,0.23676015487276225,0.0767710595495306,0.49981455571061273,0.5203969581217419,0.2537100554271334,0.1667332114880813,0.38881328851070474,0.4881734088379675,0.327204690363791,0.12555186756450742,0.4871075166933163,0.1601388135972728,0.31087035898110565,0.7003200005878392,0.2080832784560286,0.18830860949246922,0.7979658122752314,0.32904733519944146,0.26930345050672005,0.1842138493879051,0.2950802519242145,0.2591887928986951,0.6939648594507493,0.318367433797087,0.49747201495944554,0.19010545332748302,0.45617922417521783,0.1607391092067219,0.4039307439301615,0.14234837159320926,0.674270227524426,0.7615617082128645,0.40519817619546017,0.21604524201623337,0.6446860911420482,0.421747101084813,0.1560383973461905,0.5584778973286434,0.1811788251525895,0.3512934015386322,0.11266826760223886,0.2838409479630387,0.22221462979780168,0.2699963746943449,0.5843847923261181,0.4183124971766332,0.13826479034697658,0.4709118269186469,0.12970227348898855,0.2080832784560286,0.4527132803129004,0.6853026643879537,0.3908638748288991,0.31043254123199887,0.6336753018652457,0.2075143545233638,0.10406023682963765,0.19517123229712674,0.2547007753501589,0.1643264444174011,0.35019371962145485,0.13018016959242695,0.16017018527405713,0.12324625040953764,0.1564350938204213,0.5503582739276938,0.575284696944886,0.1599498552189524,0.3330135094452792,0.49157530390810567,0.18169026220556017,0.40373566580562303,0.31881300243153415,0.3558981517471266,0.16017018527405713,0.22083033667445762,0.573274411480331,0.6939648594507493,0.2032103391370632,0.1296738272923553,0.2845811630509728,0.6644378274785109,0.38222170862033805,0.42208845544441187,0.33736817951604287,0.36185315629454023,0.16417947998711516,0.44756446751059537,0.3915356953641973,0.21366349141846697,0.453916351366155,0.5215903526429073,0.6257741950897138,0.5069379138544672,0.7458162157398734,0.5366099055784856,0.40519817619546017,0.24347935818891642,0.4080945899484312,0.29080538470068407,0.6446860911420482,0.23333844684116747,0.3013203856672714,0.19024889779119025,0.64268897220731,0.5396392348902894,0.25486497101044286,0.14096444024316254,0.49639456487685174,0.4051046105727457,0.6446860911420482,0.6945416946975704,0.46829632710702357,0.20516995741389352,0.5010854549968693,0.4756158970247816,0.5557936313082597,0.1556638633428386,0.10439021271058321,0.11697228298853947,0.2537271231451133,0.29782034047115685,0.1646464281187917,0.1298492379192745,0.2597314630916359,0.6102088846439216,0.4879809450753105,0.6286033910224902,0.354331380288105,0.3781623305250833,0.13845726869187575,0.37457118057735117,0.2566060188322257,0.44874398788342773,0.2547511862239099,0.7501141120021163,0.6446860911420482,0.5037557128128622,0.1151403479253589,0.6883732680096577,0.16436153564556788,0.204607736319635,0.6329843501440329,0.6240508320975818,0.3785541035880999,0.6206609552341558,0.6008058080052552,0.710796191827613,0.4808286404247113,0.15567333023707816,0.3145658794385,0.38654374751682546,0.4722206096521101,0.3116072173003091,0.5290758057023519,0.7288689670529831,0.12970227348898855,0.15136931485077754,0.6883281846019359,0.4642952875987066,0.5584778973286434,0.664395705987496,0.297328459361983,0.4733952857204203,0.4584624171121723,0.5606436878776665,0.7432436277594503,0.3209632021577158,0.3171207495347098,0.20135476231652394,0.5652280067496868,0.1643264444174011,0.30613245313500714,0.6856578783218434,0.22887668303235525,0.32040418147602684,0.13804435620690866,0.6638251635351171,0.19947524768342736,0.18656320152452555,0.23390737077383222,0.421747101084813,0.49061134726562267,0.45319648977277677,0.09740956207373738,0.2161040232369563,0.13445573878209433,0.2557752493027065,0.2675369921661108,0.19253028276117598,0.28462624645869455,0.1560383973461905,0.46533734921248615,0.48200331649302147,0.6447154931308884,0.6447154931308884,0.25938896624365076,0.3750968290692629,0.5902744547496781,0.18560895959628326,0.4544769445041612,0.1641343965793934,0.8014657775748402,0.5241151171974895,0.6446860911420482,0.5976520805908359,0.4068295577335694,0.15982968308922008,0.11697228298853947,0.3646515756326994,0.43310535779582204,0.6739653628948182,0.3691901884355766,0.4034366050931218,0.24080994193449248,0.11690970135594635,0.7111315532426002,0.40119077357777366,0.1728960368138141,0.5681219446326365,0.1643264444174011,0.17020305299090877,0.28591660453594037,0.4733952857204203,0.4051934427483404,0.5118438795185488,0.3484127760408309,0.12552246557566732,0.2507101835034922,0.6508705412975488,0.3799487516736507,0.12982648096196792,0.4080638244483285,0.27990592908669515,0.17738624681925957,0.43888351327944236,0.20302414451791836,0.14710039069264372,0.412987268817361,0.20499856825259927,0.360903599684931,0.2746350007031985,0.2546325044782391,0.14069849218848143,0.12551773212854755,0.5503582739276938,0.1643264444174011,0.4049952524071573,0.809066469058352,0.20516995741389352,0.2245442214494214,0.403849450592156,0.5167399657400445,0.39592300876700937,0.2080832784560286,0.3213879295847832,0.28477890012830714,0.3664131538991628,0.159972612176259,0.44415650731824174,0.16295118665209324,0.16417947998711516,0.4894366711973125,0.4031854286031668,0.40519817619546017,0.17292448301044736,0.24519917222997661,0.45319648977277677,0.5496928866055211,0.10815375036085229,0.3940817818155147,0.49321235248880557,0.4660892059535693,0.5180858343648226,0.5014676558056728,0.21181836990966443,0.5626618251576894,0.12160627425578564,0.19024889779119025,0.4389631626300154,0.1643757587438845,0.15448928917676324,0.37588213406043475,0.2710232645477803,0.5142373145185002,0.3493944413148016,0.28477912609399464,0.21458851809436263,0.37453274220116295,0.5177864877581152,0.16436153564556788,0.2804298013342848,0.40444774152309915,0.5466156602925587,0.5330825771959641,0.40519817619546017,0.33127947995598883,0.18153251378304855,0.32969492096782577,0.28555555540943955,0.16436153564556788,0.19852100575518508,0.20516995741389352,0.36571160304639366,0.4051924869561335,0.4959452491267226,0.16417947998711516,0.19888796169175388,0.5113549948816809,0.5380757082404147,0.36977902470588464,0.25964393204482694,0.2746350007031985,0.207299015603713,0.1297638993293748,0.284256262433884,0.32034872762634525,0.20516995741389352,0.2503967599638583,0.5461867631509432,0.4149395683937057,0.5503582739276938,0.5767695884091412,0.4954889336850585,0.16431645223784613,0.12323365439154103,0.21458851809436263,0.12539825810268795,0.36230648747370336,0.5559479670458782,0.12558031376114068,0.2862723254515522,0.7763281943881044,0.16596590113568252,0.5477363417683417,0.13843451173456914,0.10850363857944112,0.605904869257621,0.6446586007376219,0.4342823631071273,0.44668169844625866,0.38886693253729443,0.4634416440113753,0.2538522864102996,0.15900249103537395,0.1581251807154801,0.4008490774014378,0.16436153564556788,0.27957155830745173,0.7720347075239419,0.13836624086264937,0.328675591336149,0.46421833101515425,0.40893031719374107,0.5238687942877174,0.17288939178228058,0.5085309008659284,0.1298492379192745,0.28462624645869455,0.6811561186940835,0.2846272022509014,0.45034525434389483,0.5330825771959641,0.2982805121042984,0.20302414451791836,0.272644024627206,0.37753227115349675,0.2846272022509014,0.276145022938712,0.527558040025361,0.4039437535479371,0.351594136360826,0.318367433797087,0.6319246933087114,0.16582935939184298,0.5845381722715297,0.5292346777897492,0.5087657638763383,0.5173737946489395,0.2671648177959269,0.5260321902055758,0.40001856287161225,0.45070053272060706,0.3287770963314257,0.22758253293818542,0.16631482143517082,0.33749915176781514,0.19812963674698356,0.405216199705647,0.2501490399605679,0.3693096624614362,0.3915356953641973,0.7417047376594332,0.42004053706812655,0.5916303048731114,0.47927133912784436,0.40519817619546017,0.20732151487268544,0.19958903246996032,0.16436153564556788,0.403849450592156,0.23718643828128413,0.1169371917603727,0.4024644454873171,0.2846272022509014,0.17287992488804105,0.34524284688498325,0.6929908074698351,0.2795943152647583,0.6446860911420482,0.10406023682963765,0.11844010673481457,0.46478725494781903,0.5862255275127961,0.5732753445155805,0.1728960368138141,0.47743490333067434,0.7191905093304568,0.3143380521771,0.40317300798565725,0.28496475619863004,0.45373087764335834,0.2817066791692707,0.5628767624418625,0.12988432914744127,0.16436153564556788,0.1856260273142632,0.7677201636155032,0.23730265814650375,0.6446860911420482,0.2886848947274299,0.24131951879945115,0.45216766827165655,0.24426080951437712,0.28462624645869455,0.5104644367447195,0.5199632833426163,0.1643264444174011,0.2574592641433942,0.22457266764605463,0.3957797356449869,0.23936242047108436,0.16428136100967938,0.24179405665728634,0.5876103864831232,0.5652166952538991,0.49534091311303563,0.16413396607250197,0.6939648594507493,0.40519817619546017,0.18583652916934917,0.4810958230016805,0.23049268468945733,0.4359353448198526,0.436613810493395,0.1902982929781614,0.3208293669671193,0.3588882564475459,0.29099425508833743,0.12553575563873437,0.12741224882432123,0.38854493847014543,0.5650486850854642,0.46625794435550455,0.14706529946447694,0.40519437578358997,0.4697930873446856,0.25447416156929986,0.3837665892996954,0.2478103142453997,0.4604826124498005,0.4389631626300154,0.1728960368138141,0.26291769480289273,0.45834826880161356,0.21370857482618869,0.12123174025243377,0.5976520805908359,0.43035450474569625,0.17538632566840426,0.4959452491267226,0.5106662989051239,0.1169371917603727,0.48820080643623953,0.16424775085903492,0.37356247469379705,0.1643264444174011,0.3981987044976685,0.12566754117849682,0.6447041146522351,0.5927652535256533,0.2910573535435929,0.1643264444174011,0.7025278068156288,0.17795517075192435,0.5145080607540418,0.4592904202388293,0.32762131691397883,0.32675642885561224,0.19001442549825667,0.1687629562956471,0.3254894766339978,0.18656320152452555,0.16429895401297476,0.22026865225975406,0.5466469511088553,0.5440432602827766,0.3114179681408461,0.3796749699753881,0.21238729384232918,0.20516995741389352,0.11260568596964574,0.1406443676131928,0.35256391895288913,0.5161127492373929,0.510632316179586,0.6447742743516114,0.37276687167537087,0.12154369262319252,0.3418688045578483,0.3906356530622007,0.36103451769543704,0.2927123548946702,0.11745491253909765,0.11261041941676551,0.47078689963757336,0.3125558160061756,0.41357372047929725,0.17538632566840426,0.26306108611946977,0.3829276645915961,0.3028854017411749,0.22457266764605463,0.6446822907301781,0.5227427482468748,0.21587360904422706,0.6553502880888259,0.2752675429211511,0.47406603931956165,0.38363112702877894,0.19457093668767766,0.24977782138259083,0.5122452089836588,0.30539565062525537,0.48730919149199964,0.3339666406077818,0.5931471588363377,0.2538522864102996,0.3845862297079564,0.1603386123206209,0.30277161695464194,0.11688125515931311,0.6939154916973977,0.43409022331105,0.40696184038672095,0.17716591676415483,0.34882621559272026,0.15565274255251949,0.225299340001231,0.29416358618204075,0.29445223312601615,0.12141568473834294,0.5919370623394647,0.644683246522385,0.23703671009182262,0.4297709481737382,0.5310431150457818,0.20543614389983583,0.20516995741389352,0.17795517075192435,0.17795517075192435,0.1596923642215758,0.5347825172662455,0.5063283007932854,0.1643264444174011,0.1643264444174011,0.25463740143737695,0.33904828810916876,0.7237082379865148,0.18783939910066333,0.1685920214275135,0.48359839009482203,0.15435168973848198,0.44757119340261664,0.2600201100356113,0.409457108174039,0.3854575932069002,0.06202707832744822,0.17755847427769353,0.13415325330557512,0.5843921922728951,0.1297029656528709,0.15565057327977155,0.15609373946082244,0.18153251378304855,0.519849960013369,0.16582935939184298,0.2114501196320669,0.2415419649801736,0.5879006909874189,0.10399765519704453,0.642893510061963,0.3772745250497157,0.6467930154274768,0.4564454213111813,0.17299559850203045,0.13882233580098807,0.2417441710688508,0.5632106849000683,0.28462624645869455,0.6006583625219306,0.11259999673031909,0.40519817619546017,0.2972109778877357,0.40519533157579685,0.5912993304539904,0.4509017722226574,0.4917875155445552,0.25028830264335467,0.21538121118822312,0.14256880573327718,0.14261431964789037,0.3520300634914338,0.50538947038317,0.0898654190552193,0.4551054429162137,0.40519817619546017,0.1507854674976769,0.7979658122752314,0.37524820005722226,0.14276128407817634,0.24681941693273404,0.5749301350979182,0.40825250238135746,0.2845821188431797,0.4549833414282356,0.225299340001231,0.5024056097494808,0.24081239138331573,0.15756233954173007,0.15115976878789847,0.1685578859915536,0.28650136931438347,0.3520936009162338,0.24681941693273404,0.559764240390408,0.1470634106370205,0.20671646084091272,0.22903443145486685,0.4958537177174364,0.16646845993099643,0.2478103142453997,0.37364781328369673,0.38581747921646414,0.2199045409428486,0.22529871288951306,0.6507343434819821,0.15154379244244717,0.2821973539280828,0.391899316386349,0.24106417025906288,0.4050161205370074,0.17538632566840426,0.2091819135100057,0.40519817619546017,0.5227347482802521,0.5086690972781001,0.13135877880020913,0.2846272022509014,0.1341437864113356,0.11272515999550534,0.7128811429172045,0.12571970012464354,0.16436153564556788,0.18394927303328373,0.37502158627636323,0.12124785217820683,0.1472581391151553,0.6147602582602152,0.3037700212505361,0.10850363857944112,0.21585085208692048,0.5584778973286434,0.30625389365208844,0.20402663914474553,0.6755431937727134,0.2477577719982471,0.35363054760247975,0.4830251490343354,0.43596317155485437,0.5583009173781223,0.3524520229938126,0.6368471252280006,0.3441915261148906,0.5009833986233313,0.2846272022509014,0.3080695144665386,0.21652088973716452,0.5706261197116176,0.7979658122752314,0.18225918613822495,0.4992193780382239,0.6028220300366236,0.2635605538716001,0.16469151152651343,0.10062882157610474,0.14706529946447694,0.619896248325637,0.26181512486190933,0.23770090489936907,0.6094339877620867,0.45950884720305174,0.12168496781415183,0.1169371917603727,0.1643264444174011,0.7385343003668746,0.42900952092097044,0.1771934071685812,0.36993358995991105,0.1989063237507626,0.14256880573327718,0.6882414458353158,0.19517123229712674,0.44673606372693664,0.45486912613481123,0.35782871219535883,0.41376112356033967
+10,0.0,0.0,0.253541919935229,0.08062341650146497,0.3949215824225454,0.2394789850513415,0.0,0.0,0.617356363797747,0.0,0.0,0.0,0.11825474389969556,0.0,0.0,0.0,0.1786425664500761,0.06351160766907928,0.4445204401500048,0.0,0.2688618335737571,0.0,0.07395520050212717,0.0,0.0,0.0,0.250346709635425,0.0,0.0,0.24469943781050038,0.1325264851727053,0.21039565145501804,0.0,0.23335004679383875,0.23218760529457877,0.0,0.0,0.0,0.13783272318862194,0.1486997511910291,0.0,0.0,0.0,0.43668067213836176,0.16078970460301203,0.0,0.0,0.0,0.25428598222072163,0.0,0.0,0.0,0.30621631757331663,0.4173195343425299,0.0,0.0,0.5603191508819251,0.09142921475102811,0.0,0.07230972628004254,0.26672925356106925,0.2530169856955224,0.2462208201518345,0.0,0.0,0.0,0.0,0.19874991501777525,0.0,0.0,0.0,0.5686954740471204,0.0,0.0,0.0,0.13641895554203698,0.2166543780576547,0.0,0.0,0.0,0.0,0.4574862916086854,0.0,0.0,0.0,0.0,0.6004702275691925,0.30616989878635625,0.07767078864625163,0.0,0.16216378726911546,0.0,0.183863711061769,0.0,0.1376314330937312,0.0,0.0,0.6325525758543487,0.0,0.0,0.17645661161518228,0.0,0.0,0.0,0.21120960435875052,0.0870425724696059,0.2413322133007594,0.11735675168014517,0.0,0.0,0.4353649978338029,0.0,0.22995151598081384,0.0,0.6163784406682771,0.6994631329597668,0.0,0.0,0.2535273221411116,0.41431420896086113,0.0,0.0,0.0,0.0,0.0,0.20144592062099134,0.0,0.0,0.2166608789419683,0.09564827265372773,0.0,0.4463732397395292,0.0,0.0,0.0,0.6002629917245146,0.26624185178032544,0.0,0.6037096706467463,0.0,0.0,0.0,0.0,0.0,0.10842479277164209,0.0,0.0,0.0,0.0,0.23535603807384495,0.6094720133184692,0.0,0.0,0.1566375904007344,0.0,0.27401748233800005,0.0,0.3773705184697831,0.0,0.0,0.251209117567838,0.2413322133007594,0.0,0.0,0.0,0.08843288303622443,0.2609207633856205,0.4148981207255561,0.09121674872358111,0.0,0.0,0.2572803467758937,0.16208967803514648,0.0,0.3078639428470999,0.26407034228045634,0.5996066631568476,0.6127048119562918,0.7813420005395547,0.4877898414252783,0.0,0.0,0.14123468212289492,0.09386477039945558,0.2535273221411116,0.0,0.0,0.0,0.712449367373846,0.6449878962740719,0.07964635678346961,0.0,0.46157741962954063,0.08724816996363893,0.2535273221411116,0.6810022636855704,0.31353800370523005,0.0,0.0,0.27687846269523464,0.0,0.0,0.0,0.0,0.07769998423448637,0.0,0.0,0.0,0.0,0.2324489705966746,0.5992014675198766,0.5600465492505575,0.0,0.25870788487453417,0.0,0.06808584026152055,0.0,0.5491373714719912,0.07945171952857129,0.7177290695762862,0.2535273221411116,0.0,0.0,0.409308819756847,0.0,0.03481423242354053,0.6119401642330877,0.5617210352165062,0.0,0.5909096457325732,0.5853318741227742,0.608884302925388,0.4094254885151767,0.0,0.0,0.2635829425359141,0.40416279129694127,0.0,0.6458423192922903,0.6322074806770079,0.0,0.0,0.4092812570853518,0.40006791760809574,0.0,0.6373352373337658,0.0,0.44589039227027377,0.2664601187489578,0.5544795034402117,0.22913710446040716,0.1194315112788075,0.148341112640888,0.0,0.6158746814734225,0.0,0.07563363176034106,0.650050815577402,0.0,0.12084075854282517,0.0,0.6199877124068648,0.0,0.0,0.0,0.41431420896086113,0.45641578670674465,0.2621337931054852,0.0,0.0,0.0,0.0812034548226562,0.0,0.0,0.0,0.0,0.5793918760247556,0.45115308948850924,0.2535776164077774,0.2535776164077774,0.0,0.0,0.3058637703243849,0.0,0.0,0.0,0.661769938153911,0.26360859552583343,0.2535273221411116,0.5799371911836593,0.05048058801178236,0.0,0.0,0.08901507425551416,0.1625724860914973,0.5855511335792751,0.25282234844062407,0.13170478975349206,0.0,0.0,0.6888944254603527,0.19058562245456823,0.0,0.5972195981226198,0.0,0.0,0.0,0.44589039227027377,0.0,0.38522148663781647,0.11484033084730605,0.0,0.0,0.5792122028515728,0.2617636897764379,0.0,0.2767396855815027,0.0,0.0,0.4247033573189032,0.0,0.0,0.23598139540295648,0.0,0.2481095014674764,0.0,0.0,0.0,0.0,0.23535603807384495,0.0,0.0,0.5861813171778092,0.0,0.0,0.2742121195928984,0.4330065617017967,0.3985261173061548,0.0,0.22782490434677474,0.0,0.0,0.0,0.25618176654910024,0.0,0.0,0.41468818573341215,0.4062180345426289,0.0,0.0,0.07262382532514387,0.2621337931054852,0.45152706626106026,0.0,0.12672671529698912,0.5684319439973196,0.23032609832718792,0.38612856480963936,0.2441843468035228,0.0,0.4595184307158626,0.0,0.0,0.424839603397332,0.0,0.031001570076504392,0.38789965857424435,0.08841191697985021,0.17205596704963752,0.13731382625766597,0.0,0.0,0.06806964440571141,0.12673690781663732,0.0,0.0,0.16998372386249966,0.5840368925034293,0.48175608652343027,0.0,0.12525079750749835,0.0,0.12727127929045057,0.0,0.0,0.0,0.0,0.14630158638044014,0.0,0.1608727354608872,0.0,0.0,0.4285261591711449,0.4017070414317255,0.2538295962347229,0.08782112148919918,0.0,0.0,0.0,0.20215634660137022,0.0,0.0,0.0,0.3616175705811004,0.06435335835466036,0.23535603807384495,0.6120120294948924,0.14250649075511113,0.0,0.0,0.0,0.0,0.14520787208501915,0.1844232929205563,0.0,0.0,0.6471561709129083,0.0,0.6096583894816988,0.0,0.0,0.22981762198755687,0.2534802977803282,0.2932025067440396,0.5758659314286437,0.05287110127502037,0.443056915070277,0.07791408521487453,0.0,0.0,0.0,0.0,0.09357242963926404,0.6398118455189279,0.0,0.1255276409061694,0.4396545087775467,0.0,0.4357389746063539,0.0,0.6154297335248683,0.0,0.0,0.6281572644955079,0.0,0.0,0.48175608652343027,0.153911836342866,0.0,0.0,0.34627312189635134,0.0,0.0,0.26949796851199787,0.27442298755865363,0.37473916986066536,0.11735675168014517,0.6101770990145661,0.0,0.5669668586714502,0.6224591487091501,0.16711919145485316,0.17238188867308862,0.0,0.1361108023550408,0.16713827427299377,0.39100604825135266,0.0,0.0,0.0,0.06622378709245857,0.0,0.0,0.0,0.25302671755826733,0.16208967803514648,0.616316118570248,0.1458645222718317,0.6185084327549679,0.27840037895143194,0.0,0.0,0.0,0.0,0.2742121195928984,0.0,0.0,0.2766235088023868,0.0,0.0,0.0018509872822394288,0.6291691526307606,0.09361135709024371,0.2535273221411116,0.0,0.0,0.44062769505203836,0.6092631631472976,0.25121071359332814,0.0,0.4083512379452455,0.6203827527523758,0.0,0.08867500811915124,0.0,0.578462098254772,0.0,0.15182628991700434,0.0,0.0,0.0,0.6418934736946729,0.0,0.2535273221411116,0.0,0.0,0.43791535348299554,0.0,0.0,0.11421200046393022,0.3893400795154617,0.0,0.08408408619515138,0.0,0.08075925803954404,0.0,0.0,0.07153011102972291,0.39468067197230583,0.6650850924097269,0.2916956086022136,0.0,0.2413322133007594,0.0,0.0,0.4193444971790105,0.0,0.25158083599751907,0.341384401450667,0.0,0.0,0.10437349176916973,0.0,0.0,0.0,0.16170475476716323,0.0,0.5856976083939023,0.0,0.0,0.2107969500580639,0.0,0.07440284652588763,0.06757884697977357,0.18101737627556572,0.424839603397332,0.0,0.0,0.31544506392538957,0.0,0.0,0.5799371911836593,0.16259793601174166,0.0,0.1608727354608872,0.1192882871487861,0.0,0.13950158569369625,0.0,0.2555704794026808,0.0,0.4024188624041212,0.0,0.25355815268228754,0.22153430165040708,0.0,0.0,0.24656734784749965,0.0,0.17504010791136587,0.14178082214240217,0.0,0.12224477218270136,0.0,0.0,0.0,0.0,0.0,0.0,0.5840904177485263,0.4513249376701812,0.07521292113554547,0.0229017761551812,0.0,0.0,0.0,0.0,0.24330583675119316,0.3083034172542571,0.2724920665980689,0.25367816601365784,0.07924195264859014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.6218306394362648,0.0771592936845287,0.19757460504664417,0.0,0.0,0.15682698081691102,0.0,0.0,0.25352082125679803,0.13521495629294947,0.0,0.610530072550251,0.09094108103014631,0.23481735787820635,0.0,0.0,0.0,0.46976716700723165,0.10936052129397038,0.6169763299456219,0.0,0.5722311908426269,0.07791408521487453,0.11994584749054676,0.0,0.0,0.0,0.6783690310238818,0.4212350685137226,0.0,0.0,0.37473542419267497,0.0,0.0,0.0,0.06511572865985088,0.0,0.38758053782011187,0.2535224562097392,0.0,0.24576716827081374,0.6586695199639129,0.0,0.0,0.0,0.0,0.0,0.3165844970646427,0.26986071798895117,0.0,0.0,0.07925708227367297,0.09882168476917404,0.6167783487527412,0.0,0.0,0.18523173257727296,0.0,0.4301023006155674,0.044064939786909105,0.0,0.3503679955851969,0.0,0.0,0.0,0.48249686379783585,0.0,0.0,0.0,0.0,0.620598857783645,0.0,0.0,0.0,0.6263216133979095,0.0,0.6494260803761577,0.07271011001829687,0.25481543377417526,0.0,0.0,0.0,0.0,0.5001755267872543,0.0,0.481935426041083,0.0,0.0,0.21012338139931028,0.0,0.695508400491561,0.21884810649933695,0.551801695707484,0.07659817099306004,0.0,0.0,0.0,0.2423926376786612,0.0,0.0,0.13019939568063246,0.0,0.0,0.17645661161518228,0.06924393192816558,0.0,0.0,0.6391217670515378,0.2770624330775751,0.0,0.26523989023785294,0.0,0.42267955018821446,0.04905661561936297,0.0,0.0,0.0,0.09123342179033786,0.24250132312179645,0.0,0.5923851028651607,0.0,0.0,0.0,0.1592251456275,0.0,0.06757884697977357,0.25571645734385456,0.0,0.0,0.0,0.6581074166341819,0.0,0.08860207318122014,0.2680130507999002,0.0,0.0,0.0,0.0,0.0,0.7046616906838047,0.2117113257595769,0.0,0.0,0.0,0.0,0.6095901169682637,0.0,0.0,0.0,0.06885629237131008,0.0,0.0,0.5808160691131541,0.0,0.0,0.0,0.0,0.0,0.0,0.5882501294654993,0.0,0.0,0.1962313838068256,0.5575311020172217,0.45678976347929573,0.24311443047472614,0.6674692135286622,0.1331448433348515,0.25247556320542675,0.0,0.0,0.0,0.6364904184424202,0.17645661161518228,0.0,0.4616784839249801,0.3970463752592726,0.08983936070918559,0.0,0.0,0.0,0.6290115173653619,0.07739170268461476,0.0,0.403625629164395,0.22410916876463124,0.0,0.0,0.0,0.6695350296145414,0.4220061261973352,0.0,0.2540939914817768,0.0,0.0,0.2855026395985793,0.0,0.5617659674524863,0.2649949607524905,0.05842011761628298,0.0
+11,0.6249367193490569,0.7028459185752784,1.1993104829049588,0.18638030269368022,0.9566199410270502,1.1470557047887329,0.4571995845656935,0.715844014326992,0.2885440818717903,0.6484540834678224,0.7045144895621317,0.6038310732125309,0.30073646347434047,0.5852005895947087,1.0417975170172855,0.715844014326992,0.6141725490021878,0.04296173431493305,1.1328410891024145,0.43766160094469203,1.3139424693597754,0.7160214582209042,0.07315781232327974,0.7486675381684365,0.651825671238959,0.6934798522371821,1.2357407523784796,0.7161604674451884,0.8056006644258006,1.1092168671720182,0.39377122665510295,1.0151186048793237,0.6260299210300987,1.1507611594790774,1.1144087450984308,0.6149616821376899,1.0328628642982076,0.3873548879084976,0.0,0.7104663887194715,0.16597980584713806,0.715844014326992,0.34750994366111587,1.1275303533903513,0.4431564925457207,0.3703225324994145,0.5788910184803014,0.6494992993487596,1.179927754257552,0.8851448330714159,0.6808911496164025,0.604756497203998,1.44810764937901,1.0020638119729763,0.4229771271262939,0.3295496749218233,0.7298887693030885,0.20911994679343904,0.5574148669787472,0.035944159670047715,1.2593770378329803,1.246837759736179,1.1886762842194967,0.45659142013844567,0.34621866651169547,0.25710994258681774,0.6823828448794826,0.9279129779559939,0.5369564591921069,0.6135825078469453,0.7150378396572228,0.6458663743761951,1.0016346418619706,0.826031159534075,0.716692684053064,0.3591774352293276,1.0422862723276445,0.7157265707809936,0.715139186927373,0.07495634811009937,0.8634322620214947,1.208456431349852,0.6711946990237425,0.5692646875361705,0.06911110180773834,0.4659174010048985,0.8202936907681746,1.4102635895455389,0.23328879877851832,0.6375539557123071,0.5720290280341932,0.0,0.9362261049951162,0.6149616821376899,0.4505464144395084,0.5101422555745471,0.482007979549158,1.0060188041373626,0.4790375332206032,0.7922625039177293,0.6954189652326928,0.4081468538976858,0.16835888203510352,0.0,1.0285935041157483,0.2055847667036959,1.1191707561625566,0.4006333618831832,0.6107115076825834,0.7831765019880769,1.1219243127809204,0.35570463981312284,1.1418169539160021,0.09008708315997489,0.939887504305338,0.9601488943085982,0.5788910184803014,0.8498639537910988,1.1993536356028947,1.0322276630300256,0.6916338373564166,0.07495634811009937,0.7623633736066253,0.8218140803128523,0.5811815961546514,1.019474756874915,0.6579103168477981,0.5898730813481561,1.0422670549928303,0.2708030602520631,0.6496048220794454,1.146354647544522,0.6269505119193971,0.4790375332206032,0.5076263632800413,0.6244152719333621,1.302696786573454,0.526207512083964,0.7494501196477188,0.4819143797496605,0.5587574337169277,0.44540128956401764,0.9511802763770922,0.7160214582209042,0.1778697732434142,0.6245339608349889,0.35858148634218023,0.6101323900911044,0.34449255859426103,1.1024705966717514,0.7722047161502619,0.7048309426803281,0.8036125192617853,0.7439731742822495,0.41464189243648947,1.3368820007553968,0.5497824131333106,0.8375870769242321,0.35858148634218023,0.5135080623706153,1.1890233073176808,1.1191707561625566,0.47070229853079865,0.6270943542458499,0.6480268214204937,0.03657938792614765,1.280445234927474,1.0305015551125911,0.20974801992766284,0.661903225321929,0.7167646052162904,1.2509362945839244,0.5912387426038346,0.6351984697571688,1.4455262229472032,1.24804751306812,0.7237967076518106,0.7839279809560535,0.2813211759387648,1.3087821727693354,0.5788910184803014,0.1010863947219325,0.3467490549377776,0.3751250659274631,1.1993536356028947,0.5491868670628316,0.23729232009066598,0.5887179626046205,1.0208099208033838,0.783448801623909,0.22744880032453185,0.668929610510249,1.215353242775128,0.23866277679058742,1.1993536356028947,1.0924912699771339,1.5047156277700016,0.49411457871769987,0.01124004827599931,1.306945927735836,0.9711964175944677,0.6935277229634257,0.5570888627300744,0.5923936773735132,0.2332024933826466,0.6800088783228713,0.7140579997941403,0.626207364924011,0.6135825078469453,1.1095395423060015,0.7478828064595217,0.5154118613828804,0.47780475414513834,1.2679961097011174,0.6486315273617347,0.16257319366467712,0.5751434603957228,0.32386950494158906,0.22802416963034333,0.7542276447837859,1.1993536356028947,0.4185252595996254,0.601657123197078,0.9630673565565727,0.715844014326992,0.0,0.6873375109981774,0.4724806162951466,0.32646564457740185,0.7493071335775445,0.651851808146254,0.23581843389491688,0.9684275683163908,0.6934798522371821,0.5382826472615432,1.2915661776482954,0.946003405878667,0.7469767438616646,0.7049604746194436,0.7008995758714216,0.6269505119193971,0.6822677710183203,0.9629499130105742,0.9201270276060745,0.07495634811009937,0.7260117741276823,1.0653868022992774,1.1667726376563679,1.2617811497421922,0.5911297209712745,1.0389878767222187,0.40399546219994936,0.1761056793035533,0.40477827413075895,0.6585234437637699,0.7160214582209042,0.10388832578563457,0.7833763122905438,0.8839077890639212,0.39033425130915783,0.07887500194111303,0.29975616309065206,0.4566133707828795,0.4229771271262939,0.5463100205337743,1.0322276630300256,1.211620962531815,1.2557785304257603,0.3327024245702234,0.8495667180077167,0.6358898843803038,0.22284584587804007,0.4085761148351371,0.5771818080231005,0.6481442649664921,0.6916338373564166,0.7304795974712813,1.1891968000940913,1.199204960174273,1.199204960174273,0.7337405663286364,0.31097189513241336,1.4283517372548704,0.7729377154869257,0.49870813903996347,0.716647161670292,0.993322462987318,1.2686020489869168,1.1993536356028947,0.6677990890477082,0.0032311788451707107,0.5117054189045757,0.5923936773735132,0.0,0.8046806589771477,0.649113438184141,1.2474131290419905,0.0,0.539602757021714,0.5927101304917096,0.6875409341631811,0.9335385876624843,0.7382945755451701,0.808424213951094,0.7160214582209042,0.27487287259107296,0.0,1.1667726376563679,0.5789149538434232,0.886244724394527,0.12092345245700221,0.6151103575663116,0.5509169402692023,0.5347186221824674,1.2589628115998774,0.6263224387851734,1.3476265837426045,0.6434712307712945,0.4034298112176276,1.077478746419541,0.8167791440772031,0.6708782459055461,1.1619732406979393,0.6130619919723508,1.2233635483153493,0.4434152940028068,0.9515254979605792,0.09842993809424123,0.6151342929294333,1.1024705966717514,0.7160214582209042,0.5799171321002856,0.604973766841521,0.49411457871769987,0.8728395501715123,1.3363066314495853,1.0506444170917362,0.9649551757168546,0.4790375332206032,1.0934206718792208,0.6473723495058155,0.47788406129936056,0.7047158688191658,1.2351931800817972,0.4959210825905272,0.7167646052162904,0.9908517307541145,0.9612076549846182,0.5788910184803014,0.7381507332187172,0.21002798116253174,1.2557785304257603,1.1478208678181803,0.5710339481515407,0.35165493452609886,0.49472028276463514,1.062457952582336,0.8830816056126732,0.2703061051230529,0.49312646096852236,1.18116942682186,0.6019371876055218,0.5887179626046205,1.077075987905473,0.7157720931637656,0.0,0.9014149686469962,0.27730046847570283,0.8318109147357782,0.4745725128993054,0.4580719708120757,0.6308663523136048,0.1624221485512192,0.2335843895840977,0.715844014326992,0.6360428247409552,0.6248749862604202,0.7526394779618815,1.326618621249491,0.5788910184803014,0.43426960553976873,0.7605748956564409,0.40930619791201267,0.6808549951601165,0.715844014326992,0.8065739591435113,0.49411457871769987,0.5239662552906635,0.578919786945592,0.7841595695556154,0.7167646052162904,0.8047183931322693,1.0448983442780835,0.951455433337253,1.2444355928844162,0.20328328948045005,0.4434152940028068,0.6344054060756633,0.6266388919033696,1.017374658908703,0.07924339412204241,0.49411457871769987,0.9399681951582304,1.7044186075106573,0.0,1.1024705966717514,0.7646961467094221,0.47411648238668624,0.7157265707809936,0.39997491188339446,0.6308663523136048,0.6157384307005354,0.508208756555891,0.5970840806195871,0.6148178398112369,0.6398206273670399,0.922578542504464,0.7077313071150503,0.5817473729754116,0.6487466012228971,0.5692646875361705,1.0983274610871396,1.1994926448271788,1.4129044958202495,0.6269588438919876,0.0,1.118176792048684,0.23256958714625398,0.6766454669400278,0.6151297932745834,0.5675614937154412,0.715844014326992,0.30002669979897756,0.9442891826683707,0.6490918228063839,0.4144605863011942,1.1472253217477013,0.5600189052496851,1.0805483805050093,0.7383281771126294,0.7758728106746929,0.626207364924011,0.6481442649664921,0.9050679950994062,0.6481394318643233,0.6965004277323524,1.326618621249491,0.00791180858999592,0.8167791440772031,0.2597497622054843,0.6993376190637065,0.6481394318643233,0.4310002772728607,1.2511924094578122,1.3354843605039677,0.8263749957053702,0.4006333618831832,0.6923504054043775,0.708421750282024,0.6681595511201188,0.8690369167493802,0.7889509572515045,0.811375119689228,0.41523743850696837,0.22486475745876092,0.6142958112779509,0.889942999784358,0.4095133559989881,0.6637426950573226,0.13377704917933747,0.0,0.43044168761291934,0.5787998799822609,0.5583301716695989,1.2468089912708884,0.5912387426038346,0.8998013198653337,0.0,0.821454616215167,1.3214376139978232,0.5788910184803014,0.8280248268635242,0.456038001477068,0.715844014326992,1.3363066314495853,0.48739788142017254,0.5925711212674255,1.309988736268336,0.6481394318643233,0.738376047838873,0.8407009787532396,0.9395763253592806,0.2999116259378153,1.1993536356028947,0.5587574337169277,0.5849714133285453,1.144348475218644,0.848784658241212,1.189018589289373,0.7382945755451701,0.9526125326510371,0.7168641432216754,0.7331678805221892,0.2154542455455564,0.646432541281703,0.6572655658193285,0.6673414367180087,0.368314428348814,0.6260299210300987,0.715844014326992,0.772851410091054,0.9001543800667403,0.9072525423909433,1.1993536356028947,0.4712978446012776,0.693207511246775,1.0766028216567363,0.9380195597629333,0.6481442649664921,0.2706094044130659,0.8735880120667839,0.7160214582209042,0.21433038015203032,0.8726957078450593,0.219863440979476,0.7031038633067324,0.7159040146749058,0.1942704824277593,0.8370025477476584,0.8189924588638704,1.3391073594181404,0.7169947529386149,1.1191707561625566,0.5788910184803014,0.7717869768753027,0.9011246000253722,0.6820030502723751,1.2108127620043145,0.6355375243500717,0.4370660548742131,0.5348070029925034,0.2658084260219721,0.45484085849800604,0.6150431544313928,0.6055543939876723,0.5733859790050191,0.6452134887972505,0.6928485139851966,0.6710556897994584,0.5789102358151156,0.7890861563332486,0.9523261818865465,0.18168177980697983,0.26312169728484314,0.8640993552659922,1.077075987905473,0.7382945755451701,0.4037376726352009,1.4231155884858464,0.6353159133031672,0.6038310732125309,0.6677990890477082,0.7856147867339592,0.6600955616960292,0.7841595695556154,0.23661269868406978,0.5925711212674255,0.44501803600154943,0.7164193836328034,1.2582799886773655,0.7160214582209042,0.9534477896006253,0.6143767617014019,1.1992624971048542,1.065841956042177,0.19961604950372364,0.7160214582209042,1.1414774750542818,0.4005529646885702,0.37794350292029866,0.1909203522721547,0.7601476336091121,0.42416511023459397,0.7836367974327261,0.5324849457185679,0.2893126992546183,0.4229771271262939,0.7161604674451884,0.8614836266261976,0.7524812514027833,1.1104371034293583,0.14311327195305318,0.9303976285041343,0.4902496144394651,0.49411457871769987,0.5814980492728478,0.6540601240772533,1.1995824349067998,1.3659753934869794,0.0,1.1989077243908908,0.0724236482882312,0.6022536407237182,0.1353038002163517,0.7142161106840019,0.2501761742816505,0.21486815765294237,0.5899531909259833,0.581474113909726,0.47209143124464653,0.13735957889493847,0.9698502985910934,0.6600955616960292,0.5919664153261844,0.568814580166111,0.7251279507297523,0.8726957078450593,1.1993728529377088,0.20852233828770048,0.8507318408519848,0.3471863297102367,0.2888146185801157,1.1256255443456005,0.5227227199704703,0.5998389053254418,0.5649866622392615,1.2671059993203129,0.36729918711214865,0.6193757845190861,0.5676497655101267,0.6905788804556737,0.23256958714625398,0.3337186526737046,0.7028651359100926,0.7257033200355638,0.5928539728181624,0.6426926092877336,1.0687407532156685,0.5699727942402236,0.7496792675557754,0.8073954288580535,0.49985076524498345,0.5238858580960506,0.7032791575978402,0.09699913460482058,0.6029009311927561,0.8765002758494326,1.1993680198355399,0.3367528699749354,1.2090079689354702,0.6290605683087124,0.42169186306522843,0.49411457871769987,0.4005529646885702,0.4005529646885702,0.6896450031291361,1.436448800691866,0.0,0.7160214582209042,0.7160214582209042,0.2285995389361548,0.16827634632528637,0.26945467755150243,0.5679259824439976,0.7270824943263083,0.5585204058678293,0.4734537674548676,1.0995001503431967,0.00730248485392583,0.5899856561531649,0.7252139973362991,0.44154460317187777,0.7476942434507258,0.6374194461428729,1.1702145492780565,0.07719642795369065,0.6935949260983445,0.34621866651169547,0.7605748956564409,0.817564224612639,0.708421750282024,0.8401238974042251,0.5359011761297064,0.7413860695795959,0.559073886835124,0.9579462953507918,0.14890333954948584,1.204842232666327,0.48875425004942497,0.737791127402585,0.6467855124809692,0.9177693473406626,1.4051031897815238,0.6481442649664921,1.2858180582793914,0.5815268177381383,0.5788910184803014,1.0507951390756092,0.5789054027129468,0.7860297053727782,1.0778792247202669,0.6008530589534662,0.2172700141712945,0.6268579845077386,0.6608169032983072,0.6605867555759827,1.2022819526158062,0.022452129494861167,0.30489855912316244,0.28260994648500837,0.5788910184803014,0.3071087942054391,0.6954189652326928,0.1591497462950989,0.6598436085805965,0.5799462641903599,1.0666586824113196,1.3466725063597078,0.6480219883183249,1.2463976410561972,0.5238858580960506,1.0242002897577942,0.0,0.314887049901927,0.6833273711319027,0.7272551051180518,0.36391298470860123,1.201960666395441,0.5799462641903599,0.7847342390405851,0.6710652409299349,0.7981084101036208,0.5379747858439697,0.755314713594919,0.7213326113904244,0.26312169728484314,1.2578484616980068,0.3227132907429967,0.8633248084047943,0.2548488193622606,0.9512739422893932,0.681385499724789,0.35270090348973937,1.2974609258905696,0.0803231830266002,0.5798116093695999,0.6600955616960292,0.05761550937740151,0.5788910184803014,1.2188434896502702,1.0207246454887546,0.07409972184931103,0.6481394318643233,0.6374673168691165,0.5808939115017457,0.7487683712289215,0.614113012411618,0.715844014326992,0.6824022805877544,0.160295651804553,0.603749600918828,0.3249452426855947,0.7791448651860381,0.6993873935620251,0.5692646875361705,0.8508469147131471,0.07495634811009937,0.7033153120541262,0.43359859855042054,0.6411349070943145,0.11242793403460195,1.209374597529111,0.9525412334906228,0.6811586324994283,1.170245030255904,1.200148253082135,0.7906649564832491,0.4679058491963542,1.1873697682946738,0.6481394318643233,0.6895586340571582,0.3085902549680207,1.0554466011924577,0.6954189652326928,0.41176504590743207,1.2340451249695388,0.9249624638209061,0.21610886817291663,0.7141754433401387,0.34939973152910836,0.6710556897994584,0.9423314492388748,0.2908868043373154,0.9052387498206032,0.9245040992622716,1.1003082202601595,0.6015392621936226,0.5925711212674255,0.7160214582209042,1.010638407149833,1.0284801422977892,0.7495402583314913,1.243654011219402,0.4594902173119368,0.6608169032983072,1.2755478852032125,0.44540128956401764,0.7256118191052695,1.2473206016303318,0.11498466179962022,0.6011977373720266
diff --git a/data/without_training/activation2.csv b/data/without_training/activation2.csv
new file mode 100644
index 0000000..6c389c7
--- /dev/null
+++ b/data/without_training/activation2.csv
@@ -0,0 +1,11 @@
+,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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810
+0,0.16180901491654098,0.17120031276325273,0.18145698780464795,0.08423570692803108,0.14513597015942725,0.07848636416650935,0.10009278423082232,0.17216868350219852,0.0,0.16421418087502673,0.1708313808316405,0.1588706023771774,0.10747766607536507,0.15008908802527363,0.2184069835150813,0.17216868350219852,0.21179402382063459,0.07494365348549725,0.2174378785045601,0.08225802910763219,0.21020388680665383,0.1721294494995402,0.060704056126413115,0.1762788709162971,0.1573259067695707,0.1694687068376594,0.17650142155176377,0.1720987136530997,0.18270310675088694,0.12641991458031093,0.12988497413996614,0.05643596313582945,0.16156730089238125,0.11784764203560857,0.11564410772398327,0.16021205642419542,0.1664061048624809,0.07324605744349831,0.006993565187347985,0.0,0.0,0.17216868350219852,0.05810071594057445,0.21453937229984954,0.14438359808842374,0.0,0.08312531202201694,0.16398307682434862,0.12323967262346222,0.1923929154222539,0.1349823325447305,0.15866598509483082,0.25066179558291624,0.1412502506833383,0.08239089208576612,0.07145548681367811,0.1740950773188104,0.08707659345353971,0.15143201825326458,0.07172272703381456,0.17423389825774063,0.18130888793857397,0.1367645647729167,0.034239413115034735,0.07105371564346462,0.027089029109649606,0.1681198232648462,0.008867188968883402,0.1049517287894845,0.11319591616008351,0.13649844597342387,0.12083129726547209,0.21211363151447815,0.1876920517379892,0.17198103708870616,0.160592836733571,0.11801696462971298,0.1721548208229633,0.17232452543882787,0.0,0.19274700836064595,0.2510545241891332,0.1667910910085734,0.1551059428723968,0.0,0.11697628591061729,0.21619882012727792,0.23886646093156116,0.09120889794252728,0.1813561854705251,0.16472669194979714,0.0,0.026112179988099206,0.16021205642419542,0.17576401658894805,0.11523167555641171,0.07455296337819965,0.3315096410058211,0.08992065442837219,0.1780472524609149,0.0,0.09655500927369193,0.0,0.0,0.09299780033720695,0.08883081888552867,0.13020052340777113,0.12754273822587836,0.07572421514901605,0.18005622676824148,0.21201957951798084,0.07295491554325398,0.1132079435094171,0.0,0.30173434631360985,0.3169173831720951,0.08312531202201694,0.18812622188447567,0.18147337772731034,0.1753141861653184,0.16987687277193,0.0,0.177053136644729,0.15383030983990115,0.15627354092709025,0.08463871018306816,0.16522339846101217,0.1124381526877937,0.11800966565082059,0.13806701762331533,0.16395974506012181,0.22340963849647646,0.1613637522404573,0.08992065442837219,0.034905269857369296,0.1467525768930989,0.20538214056361145,0.09787948731904451,0.21862104408194039,0.08928054946697875,0.15162447072041255,0.08540279702280855,0.20377335046741338,0.1721294494995402,0.08510776239793794,0.16189806745175775,0.07246088770844106,0.15937859225347317,0.07135013234435238,0.06232293446543689,0.17848068785629628,0.17076141098254166,0.15753787434716615,0.0,0.08024483465585153,0.2199296169303091,0.10264983273632894,0.09768895156354228,0.07246088770844106,0.0944837002205602,0.1266942749625522,0.13020052340777113,0.08777459699845755,0.16133194776359416,0.1300354253993887,0.066471086433677,0.19576168152983928,0.1746302857572035,0.0871408051574154,0.128664699571744,0.1719651348502746,0.16225013825370757,0.16733634085787724,0.16264012743209294,0.27148332683091475,0.16965671734993687,0.20723913981793127,0.20146428457525542,0.014059525132192401,0.29667298588208857,0.08312531202201694,0.0,0.11953818653723569,0.11716435119640627,0.18147337772731034,0.10015917214904571,0.0,0.14758103541582343,0.3147850666563649,0.20376180947791647,0.09070759986509143,0.1634894125563646,0.25434628270003473,0.13248481935861828,0.18147337772731034,0.32406392217092866,0.2928397672309855,0.0866078830776481,0.0,0.19051873454781737,0.16032482576893395,0.1694581223077594,0.15138528663078835,0.15759698091841298,0.0912014895965553,0.13513384100111092,0.17252375275457552,0.1615280668897229,0.11319591616008351,0.14518806465175263,0.18487150950809111,0.09662272871473965,0.1038985833509758,0.19082434802946324,0.16417494687236842,0.11938864410853045,0.10274950854168545,0.0,0.09075698883823782,0.22952589003915322,0.18147337772731034,0.0,0.1555487726084281,0.21434952085337475,0.17216868350219852,0.0,0.1924719587877682,0.07823751056241815,0.050018914429088054,0.21756648663727446,0.17510392510777462,0.0,0.12622838078053897,0.1694687068376594,0.10010668833622598,0.20057144684087264,0.11728036648927721,0.14464712549633565,0.16997815325860213,0.18221614584768428,0.1613637522404573,0.16814526684633668,0.21430207311239302,0.10696455138178554,0.0,0.21112102531327398,0.22186883456161355,0.23217792177293012,0.17070479419095005,0.14798976252167592,0.07892766908823202,0.12856415489241718,0.09801011085166021,0.056932995548821294,0.12994962237886923,0.1721294494995402,0.06044642135903066,0.23684716977168824,0.19265297573799373,0.12665867560655802,0.0,0.0,0.08690874949132976,0.08239089208576612,0.1007679790051298,0.1753141861653184,0.2523362640278794,0.16644292996729726,0.04288190977317077,0.1881919426554656,0.16318970296621738,0.09031248807992032,0.009653877364897267,0.14592736610652499,0.13005223507332508,0.16987687277193,0.1758293473091773,0.24225709290040476,0.18141690898043084,0.18141690898043084,0.17887686996119895,0.04361041881279831,0.24247842835987712,0.17851758496467207,0.0309027042316151,0.17195127217103934,0.3106235245572358,0.1777376703648178,0.18147337772731034,0.18156310154679167,0.03908412725795267,0.11545574980975346,0.15759698091841298,0.04058982677735189,0.0,0.15626304956204748,0.1813641505400913,0.029839249979626184,0.08631005682023944,0.15752701106931413,0.1985289922447462,0.04260744834163329,0.17476989632874565,0.1931507829197645,0.1721294494995402,0.06646612197784661,0.0,0.23217792177293012,0.08313605439169638,0.1516051839467947,0.06976053824163875,0.1601791833169097,0.11575066975023676,0.10643589238320034,0.18995672518564094,0.16150262330823245,0.2246640413764412,0.1266356616330524,0.0787388821873303,0.1933697915097354,0.18403397626800494,0.16686106085767222,0.12279133824207228,0.15992963849572117,0.1715709958765774,0.08126997343800632,0.203700775495579,0.0,0.16017389105195967,0.06232293446543689,0.1721294494995402,0.08358583947601499,0.16999955820012766,0.0866078830776481,0.1907693403781595,0.21987435432879174,0.16341861161044285,0.1484701432915332,0.08992065442837219,0.12167404772344054,0.1301847926219621,0.042705279813366914,0.17078685456403217,0.1567458060350193,0.11269308291096382,0.1719651348502746,0.13621066511960095,0.1470170135668344,0.08312531202201694,0.17480170080560878,0.08626559372434763,0.16644292996729726,0.2067648630119234,0.15471474780698044,0.11758761893246616,0.05562555552319224,0.06819154344644791,0.06984001680653427,0.15612955443657553,0.09078650193549997,0.22176709789961302,0.15928935284134796,0.14758103541582343,0.19321021474784192,0.17218458574063011,0.0,0.12313653912821398,0.10083399766606435,0.0,0.1438846038976273,0.08581341498980444,0.1636378170768212,0.1193662431448087,0.13771511259244779,0.17216868350219852,0.12856319974912409,0.17432405063759443,0.16806973040121728,0.30389733770047644,0.08312531202201694,0.13472702855253035,0.1774485807882543,0.1312184764149186,0.12880483626133257,0.17216868350219852,0.1824879049386403,0.0866078830776481,0.15336092129844284,0.08313822352403549,0.0,0.1719651348502746,0.1828981826901746,0.16059294031363086,0.17800049429614745,0.18107816657723905,0.08863326299294313,0.08126997343800632,0.15901297468545766,0.16143265345913357,0.08443700168752985,0.0,0.0866078830776481,0.20191995467917676,0.3715258940936706,0.025897786384265643,0.06232293446543689,0.17543946878436203,0.18071851431510536,0.1721548208229633,0.07119171883500906,0.1636378170768212,0.16004031224913456,0.1508723136773445,0.21032717131818682,0.1602438609010585,0.13148161568834604,0.278979965876068,0.17396245599727855,0.09635594511977785,0.16414950329087796,0.1551059428723968,0.14065833148493062,0.18152617513151348,0.25338358148470347,0.13091008668293297,0.0,0.21100003129855419,0.09114716172609429,0.1731908992610671,0.17851164402711878,0.07859146251292354,0.17216868350219852,0.10571606152420512,0.2877734935181311,0.16407317254640644,0.1316609225919532,0.22326396868067927,0.07465536669784033,0.17652734962949954,0.1747624668029504,0.1982016740766287,0.1615280668897229,0.13005223507332508,0.2876312929548029,0.1300530650400876,0.1301902484133495,0.30389733770047644,0.0431590697164312,0.18403397626800494,0.0008534982217641196,0.018852209285398,0.1300530650400876,0.019455505339906937,0.17112527625943877,0.21975618494771454,0.09321494441791138,0.12754273822587836,0.19449712710614148,0.17380979450833556,0.18071245725828988,0.2389261497760672,0.0,0.0,0.079048462709829,0.1381191543559823,0.1720170049469687,0.09491033076112285,0.09667027956769897,0.16773632588701562,0.0,0.032975167350825375,0.08836212587549402,0.08308440838362213,0.0953992190331755,0.18130612480849811,0.16733634085787724,0.26676450697467996,0.03402047195871599,0.200421813705138,0.19586822443931984,0.08312531202201694,0.18534998673353248,0.08703677048360844,0.17216868350219852,0.21987435432879174,0.09330558745078855,0.15755774691575467,0.21356577195793272,0.1300530650400876,0.17475188227305039,0.16474191309134947,0.2345146229278675,0.10570618372957584,0.18147337772731034,0.15162447072041255,0.15923809192455,0.22209875064545548,0.21149138503976453,0.12669248299767444,0.17476989632874565,0.11993063921326821,0.18818400219293535,0.14744755510138444,0.12968746084095045,0.1303461816350388,0.14418195522692098,0.12667008784529915,0.16314801432876844,0.16156730089238125,0.17216868350219852,0.17853666765078993,0.26890079474859335,0.19616623405624198,0.18147337772731034,0.087072378704337,0.17262897569001437,0.1930864209567482,0.19811913048005134,0.13005223507332508,0.14049048639908657,0.06599479729029559,0.1721294494995402,0.08958153127735378,0.1907995799497571,0.12896031122333956,0.1704408276818317,0.17211558682030498,0.08344735351287169,0.11157215754603182,0.22064977513915787,0.20872373853944357,0.1719142476872936,0.13020052340777113,0.08312531202201694,0.17877202077957702,0.09949895587828826,0.16750134651204548,0.14661636124855998,0.0,0.08325673959289392,0.0668612903103695,0.09900251166955704,0.032270051644942344,0.16019404236850013,0.16229206921104347,0.1647742692450001,0.17034076756703112,0.1600891916582082,0.1668218268550139,0.08313393690536534,0.2091234020561514,0.2035324499442379,0.12292525476175507,0.0937697162001675,0.0,0.19321021474784192,0.17476989632874565,0.0774930822944087,0.26933084850181416,0.1626539901113282,0.1588706023771774,0.18156310154679167,0.0,0.18421562481858136,0.0,0.13688445252983406,0.15755774691575467,0.1752894675793683,0.17204146559474606,0.18614951188629467,0.1721294494995402,0.14391080723743344,0.16034138614891164,0.18143876221064736,0.12750619658879528,0.0,0.1721294494995402,0.13921254200043343,0.07937404833886037,0.17246314745368657,0.08592784969299762,0.1455475712630345,0.13243662603886458,0.17995445244227948,0.12445893833450826,0.031210512125318744,0.08239089208576612,0.1720987136530997,0.18935954071015906,0.16800564340928,0.1906265581012848,0.07341596032130944,0.1866875101543957,0.0914266068968934,0.0866078830776481,0.1562035710779914,0.16487590087068812,0.16180362674293147,0.2262737772850423,0.0,0.18130401519313225,0.08683268889554396,0.1592193829922491,0.0,0.14730741841179593,0.018505704638384274,0.0,0.15813658839466344,0.15620886334294143,0.06768533853029299,0.07289032179506769,0.05721282304716803,0.18421562481858136,0.11010166099569002,0.16267786767139913,0.1393274675623756,0.1907995799497571,0.18148067670620266,0.13551726653109997,0.18793432639287433,0.025346267875814392,0.10328799420058565,0.12017563285568303,0.060648345340141185,0.15218744179581956,0.11004149945307218,0.27730114823952123,0.12028446546592185,0.13082862678883242,0.08143950655107102,0.19078967081946535,0.09114716172609429,0.11330175942236066,0.1711960636851438,0.13921078299549858,0.15749520659245103,0.17837064998979696,0.18987604161573599,0.07912274639626274,0.17605517094783266,0.08566338543576318,0.11074416841214045,0.09669616247425966,0.13400780962841558,0.05725058264453861,0.15907626284636506,0.04943739559699012,0.18147884103486447,0.058878039709321844,0.14283665219128627,0.1382395364226154,0.03989729927438255,0.0866078830776481,0.07937404833886037,0.07937404833886037,0.1722178691459641,0.2527756147752942,0.0,0.1721294494995402,0.1721294494995402,0.09080637781138422,0.08167484325628009,0.0,0.14158831805236535,0.17344645633742295,0.16325797607571418,0.10324810293803102,0.2021582290391037,0.016022109327383127,0.08756516440864977,0.02916802439288963,0.10461963381106314,0.17649407272854375,0.1628515068810457,0.21882497504485537,0.0,0.16944326325616896,0.07105371564346462,0.1774485807882543,0.21658304126646735,0.17380979450833556,0.18647730759872647,0.08559665958541854,0.16649643792541322,0.15166983322016886,0.26168532021006113,0.11836395970996562,0.1836907965697397,0.02643532453319269,0.17488121199776657,0.16458311280663898,0.19816579583775304,0.3391744366466376,0.13005223507332508,0.2686381514190399,0.15619721018261876,0.08312531202201694,0.09887183493330196,0.08313176777302625,0.20879373431493783,0.10068475878786207,0.10010780670204511,0.088352877133257,0.16452409335087964,0.16528318505144457,0.16533407221442556,0.16206290781673058,0.0,0.032400980029995134,0.14669219809017947,0.08312531202201694,0.06620942610477543,0.0,0.11913202446362756,0.16549838686369117,0.10687570380143502,0.325697455172689,0.22457240493060515,0.13003625536615118,0.1652449568938669,0.09669616247425966,0.15121290000729057,0.0,0.0,0.1679109823479722,0.17340829096518715,0.1148351146031672,0.16203204918004327,0.10687570380143502,0.18255891585679138,0.1668197150377502,0.18816219736483789,0.09812326388361065,0.0,0.17281654081862466,0.0937697162001675,0.18610806493515664,0.04778961519495987,0.18895244340631115,0.0,0.2594811181185831,0.16834034278562435,0.11250587800992812,0.20487925088980363,0.0,0.08353848008661093,0.18421562481858136,0.0,0.08312531202201694,0.3502654849697391,0.058700829719240455,0.0,0.1300530650400876,0.16284092235114567,0.1563371498808165,0.2011062702035678,0.16039970283768784,0.17216868350219852,0.18704526835733767,0.11921792088123907,0.1588886164328727,0.06764653811173625,0.2296517552288449,0.1370631996233289,0.1551059428723968,0.18790888281138382,0.0,0.1381895618836695,0.09135018701187184,0.15303148047187906,0.0,0.24980151610726828,0.031176450377520308,0.15286279446655024,0.21684403413939807,0.16185797198526364,0.19094091279065803,0.14171473833224754,0.1452543297909501,0.1300530650400876,0.16512830582324164,0.04249058252975151,0.3204081001497018,0.0,0.08088493961724492,0.26241543515535404,0.14658108315639556,0.09118447874886844,0.17253761543381077,0.04866502244677996,0.1668218268550139,0.25336750415056386,0.10053459508505423,0.19658958805860913,0.14643114845604008,0.10974606079284423,0.1593773367461421,0.15755774691575467,0.1721294494995402,0.3363706631473688,0.17386105644061964,0.17608590679427322,0.1810030978593379,0.08626864452993634,0.16528318505144457,0.2128512725701588,0.08540279702280855,0.17236277097020383,0.16539640941114478,0.10535823121239184,0.09205201535651288
+1,0.03546640596978674,0.029699859290866777,0.027089771440249686,0.01586539033998424,0.0403150256830129,0.0,0.03563818801990605,0.028710695605180858,0.15220427441234932,0.03370628700709518,0.02955054921211494,0.03701071523382446,0.05281602172933767,0.021245642707384868,0.0,0.028710695605180858,0.05898919593517455,0.0,0.03567346700099612,0.0,0.02610498694414555,0.028694817250599112,0.002177027178304925,0.026288174941359623,0.0,0.03036581841652924,0.03382322378776843,0.028682378176452056,0.022054342826568762,0.022352531289938873,0.04587198044669778,0.031104653516184074,0.03536858212508726,0.02461210240660544,0.03588944521957119,0.03618685812557024,0.0,0.0,0.0,0.024131172619444027,0.0,0.028710695605180858,0.0,0.031616860224694295,0.055852896790902995,0.012682040315922315,0.0,0.03361275711431566,0.016652146440918433,0.01473909434731774,0.0,0.03692790477497465,0.0,0.03369515166088086,0.0,0.0,0.10129581460707374,0.03860542502399488,0.04094079037928984,0.0,0.022846225666769054,0.03273599628536299,0.021978886158535955,0.007517516306066687,0.0,0.0,0.03118666872871482,0.032223853872424456,0.0,0.0,0.0,0.11915731503754787,0.0,0.020656524702935827,0.028634753409953626,0.025944898863428493,0.04126053264853323,0.02871940165311889,0.028773766241895003,0.0,0.017878651184624637,0.04660329957836596,0.03201567446037428,0.03958739055678165,0.027564879158944577,0.052687666519815754,0.1260633628928916,0.004286770195331068,0.02003284238186643,0.03456325489311806,0.06734161353985446,0.0,0.04598145677854439,0.03618685812557024,0.03530389858166337,0.03051203740483278,0.0,0.12331253523947194,0.0,0.02290358793089962,0.0033539375500045428,0.0,0.016641127678932808,0.0024957918880317326,0.056115828345535954,0.018931584568881638,0.020990189884163794,0.04385395251919773,0.0,0.023716637944560862,0.030638315428208322,0.0,0.025207627036496053,0.00703224374289695,0.111458830850037,0.1521752371073501,0.0,0.018782103793369014,0.027083865335889395,0.03379837661324574,0.030531006849862825,0.0,0.02523477160720636,0.0,0.03869317236107145,0.05559739769845012,0.014204623564099626,0.005358712391663072,0.041263162833674996,0.0073207403253667085,0.03360331453899045,0.03740636211659928,0.035286204150603497,0.0,0.0,0.10307789662794518,0.027222834541268257,0.0,0.09341841950478938,0.0,0.040729295026987494,0.0,0.0031351883448660625,0.028694817250599112,0.038807782075933696,0.03550244633362341,0.0,0.03653292548909757,0.0,0.0028604069953373098,0.14649112064898231,0.029522231783386133,0.0,0.021353283676616378,0.0,0.023789541963597827,0.0,0.0518227390042317,0.0,0.0,0.015407281388272553,0.020990189884163794,0.0,0.035273332592090416,0.00117610154273043,0.0,0.029409139427935698,0.034045881151331905,0.03862629417103983,0.0006146785143117516,0.028628317630697085,0.016135626532791165,0.06839831462653957,0.015892661799117903,0.014581961281851605,0.023868876370130226,0.08985075270710967,0.1295739259224516,0.12040312737915558,0.06732319220460045,0.0,0.02431946634404608,0.06178918138083487,0.03566028667199973,0.027083865335889395,0.0,0.008369032496161371,0.02037185003310268,0.18460607128537945,0.14486708114476318,0.019800697692317196,0.03204621107985614,0.048980753816404404,0.0,0.027083865335889395,0.19662649890111136,0.008058156060001383,0.0,0.0,0.012333943775529162,0.0,0.030361534761856088,0.04099214602624901,0.03786202480207541,0.020029411672168658,0.0,0.02886871173187074,0.03535270377050552,0.0,0.035190864313171415,0.12088802367462825,0.07710473362189081,0.0,0.03077483915396964,0.03369040865251343,0.0,0.007542458263237334,0.08953818360434813,0.019823569090302334,0.14784034147069813,0.027083865335889395,0.0,0.03703309643383243,0.03701776961909032,0.028710695605180858,0.006687016002108154,0.0934023631495189,0.07518821690709376,0.0,0.08733375753481892,0.07853142966016406,0.09197727245631367,0.028328715392670595,0.03036581841652924,0.0,0.02831698237467794,0.03030847443074035,0.0,0.14031570619023173,0.12307096685576896,0.035286204150603497,0.031196965975525296,0.03702837056903423,0.03278324254498248,0.0,0.10789880737579095,0.0,0.038466673800096114,0.01621154958827364,0.06769536628906829,0.014896514432438208,0.04456029958829166,0.02691098262831397,0.025048778491228038,0.14235065162411034,0.028694817250599112,0.02304623254235347,0.11755721554004966,0.014878385751670518,0.043444554495263625,0.00814292986999762,0.15432818807573676,0.0,0.0,0.0,0.03379837661324574,0.04629503217198388,0.016283323888608585,0.050747692941796825,0.018808701581880465,0.03465842721611428,0.01961772650843602,0.009144130736538659,0.022189147459031406,0.0011709135493260883,0.030531006849862825,0.11038614616011765,0.04238085298604001,0.02710421383411205,0.02710421383411205,0.008796261332793105,0.0,0.007551406389811031,0.024460691390033932,0.0,0.028637023678635118,0.1555709973231576,0.02158364230104228,0.027083865335889395,0.07697795249730413,0.0,0.030265791337662547,0.03786202480207541,0.0,0.027580282816742848,0.09765461209248452,0.03261749746679768,0.0,0.011264835023013276,0.03783370737334662,0.1299421507616372,0.052284371789874225,0.02704423497661371,0.14296286006139108,0.028694817250599112,0.001874155482617805,0.01915827677855103,0.038466673800096114,0.0,0.04471169466527129,0.03575480269712826,0.03617355408269111,0.008770730661090359,0.08742117988416963,0.03263527060544506,0.03534240652369505,0.02276234604408535,0.0,0.0,0.029781107478219448,0.021226202063641373,0.03204399188910308,0.02365628060144654,0.01752921380008381,0.03517411116148171,0.0,0.0030963163250466927,0.006660300768170019,0.036171412255354515,0.0028604069953373098,0.028694817250599112,0.0,0.06545764922156559,0.0,0.01681938864454652,0.023908040782163145,0.04420923167718912,0.039737653727455,0.0,0.04995388472772745,0.001152800873471944,0.005194776281184392,0.029532529030196607,0.017869191815871963,0.03190825964445332,0.028628317630697085,0.031738062067908905,0.04089281353850035,0.0,0.027057106535126788,0.016805404797173754,0.016283323888608585,0.059137316369516135,0.03942907038707064,0.05947076113991049,0.1094865908395189,0.020753992210517522,0.03056783962425056,0.07817103441870904,0.0,0.06503660945810312,0.03718018732183122,0.02037185003310268,0.029838858537106234,0.0287171313844374,0.004800342224136656,0.045759570987669494,0.026351951052005728,0.03416148291298924,0.054364549258092,0.0,0.016282119393600383,0.0,0.0250486640349289,0.028710695605180858,0.001653275371705303,0.07267111554270911,0.13318249871521062,0.06558568500499239,0.0,0.04845857701774835,0.02539481141713471,0.04648950819229675,0.0,0.028710695605180858,0.02196724871304579,0.0,0.0598527127942005,0.0,0.03846269436501262,0.028628317630697085,0.022133291817864654,0.04171968020046632,0.038921581936296835,0.03323072885287318,0.018840098976941052,0.0,0.01579147603740021,0.03531408909496625,0.05602991838621351,0.008687110890071136,0.0,0.005092387912666798,0.011073771856303719,0.0,0.0028604069953373098,0.14722255513139798,0.038531631342834584,0.02871940165311889,0.04306935427668355,0.016282119393600383,0.036117351709599545,0.05863735017426156,0.05830991541501573,0.03619972968408332,0.0009756028482887601,0.14416662350526516,0.029436651505319114,0.13455124424270293,0.03368011140570297,0.03958739055678165,0.036202914066588675,0.027064839805043397,0.016507570451812763,0.10217467162084436,0.0,0.03405266912407737,0.02000425313438499,0.031872223246926776,0.03589190187027917,0.0,0.028710695605180858,0.02954614062089193,0.14205171853217835,0.03364921966527154,0.04669439932400688,0.03427225151744122,0.0,0.04739477881168448,0.027041228180545048,0.13035860659324236,0.03535270377050552,0.0011709135493260883,0.11485071393704477,0.00117080014258998,0.0,0.06558568500499239,0.018592611003451644,0.021226202063641373,0.0,0.05208582384950765,0.00117080014258998,0.006922758482337311,0.02396641679377196,0.024064838500296552,0.052812618523266575,0.04385395251919773,0.09288210004129387,0.029374868024456297,0.07084424798540927,0.13957895628067524,0.01759561162400835,0.015728308482455294,0.0,0.026512755855019783,0.07121776062288944,0.03525787202591474,0.0,0.013854872293493137,0.0020303147595748744,0.0,0.0,0.0,0.009208271983475406,0.03274192122629124,0.06839831462653957,0.1280896556483957,0.0,0.1538907070829023,0.010815183833969672,0.0,0.02039204770857668,0.0,0.028710695605180858,0.023908040782163145,0.01531927005599389,0.03784614644749366,0.028117498937298948,0.00117080014258998,0.02703694452587189,0.0,0.18560293340167053,0.029541566341294914,0.027083865335889395,0.040729295026987494,0.03852619722135084,0.0345524946141522,0.15122839766414797,0.015407927122349263,0.02704423497661371,0.02997860701326864,0.1184665104059593,0.0,0.0,0.0011307486636179117,0.10532098472180017,0.0,0.04779334882481342,0.03536858212508726,0.028710695605180858,0.024468414325141793,0.14025244431932127,0.010860327896550694,0.027083865335889395,0.0,0.011734704813384594,0.031148791284171976,0.006006521615314171,0.0011709135493260883,0.027376323459632364,0.031492641843396785,0.028694817250599112,0.019279229818255868,0.01683558531947126,0.0,0.010849141587684021,0.02870352329853714,0.015033629710619091,0.037738983051443124,0.1566511331975747,0.010688338293074738,0.028607723137076137,0.020990189884163794,0.0,0.024563663858138646,0.036743592420981075,0.012393018367355698,0.02011662308649889,0.046616162628932555,0.0,0.0,0.04669260055531176,0.004027412455843956,0.03617956767482842,0.03702865805232631,0.06727924897985013,0.0,0.11100261860203364,0.032028113534521334,0.0,0.09421758088679877,0.0030061591537456148,0.0,0.021218724367396264,0.023193440680853952,0.029838858537106234,0.02704423497661371,0.0,0.019197490264970574,0.015883955751179873,0.03701071523382446,0.07697795249730413,0.029884193316966345,0.033227649305448664,0.03846269436501262,0.023226774608538163,0.03784614644749366,0.0350841410412629,0.0286592093711285,0.031577669491818325,0.028694817250599112,0.04138768398136286,0.03623919903110786,0.027096339028298333,0.0390815672105659,0.0,0.028694817250599112,0.01897669132727317,0.0,0.034708677169617376,0.06666192828936622,0.0,0.046983406137106276,0.02367544895731897,0.027631777422123402,0.0,0.0,0.028682378176452056,0.017914483386170275,0.1331979120855297,0.05668040128646937,0.028024497560275117,0.009539143493544098,0.0,0.0,0.03866485493234265,0.03329071322759714,0.03767543330742316,0.009951334714986167,0.011187449447335003,0.027144895080945763,0.0,0.03715186989310241,0.0022884953358100783,0.008156723370179949,0.0,0.010928478717865812,0.038080408812431896,0.03866699675967924,0.11421152106213528,0.027700313469538638,0.04888204405928403,0.033227649305448664,0.0058762136021733745,0.06554978068242655,0.0,0.01683558531947126,0.02708123515074758,0.02353268207737306,0.01870444195792443,0.08598449987500256,0.027955049578419936,0.034876749732077196,0.0005272147018646415,0.018939659954691206,0.0,0.05613652875618582,0.039092686875723925,0.12120913455509576,0.0,0.07475889797975566,0.02000425313438499,0.05639335854493263,0.029698139650649425,0.0,0.037820835814833524,0.12211379238974941,0.030416230492664138,0.0,0.026197641547401954,0.054916268463689265,0.031813563345128616,0.0,0.0,0.01861659713858059,0.037093947879793504,0.0500334368778134,0.027081896634435935,0.0,0.019457701289877158,0.14161077536374253,0.023222598582682667,0.0,0.0,0.0,0.030795051359855937,0.002698260721325864,0.012226769841208032,0.028694817250599112,0.028694817250599112,0.019846440488287483,0.036007589660647925,0.09834901344647594,0.02332752450323389,0.02787538253560975,0.09115862478550167,0.034470805112813745,0.027859099499036463,0.0016734837703439832,0.0,0.04961105573526555,0.05586153090355165,0.026375269054882595,0.03452155621150948,0.07525164623603917,0.009030163907405705,0.03035552116971877,0.0,0.02539481141713471,0.1354451947013674,0.029374868024456297,0.0194815289711655,0.011429859708089705,0.15254256188490173,0.04067944397540341,0.17718614729988327,0.0,0.02658844140912466,0.0,0.027089285431409524,0.03385559708584701,0.008981416576666176,0.07928531215579598,0.0011709135493260883,0.08228609976912636,0.03866228062064003,0.0,0.052741573644819954,0.0,0.16901002966534978,0.03879908905907971,0.10829573358131801,0.018238683193548228,0.01664080339174954,0.03277216697999441,0.03279276147361536,0.03711946055047845,0.0,0.053693511913282255,0.017174270432641116,0.0,0.00043248369764258427,0.0033539375500045428,0.0,0.03285926109351738,0.0,0.1594380977066686,0.02295884078503035,0.0011759881359943132,0.017883389198503477,0.0,0.037637355156495855,0.0,0.035682311279101174,0.031102148926894457,0.027859936665394037,0.03423601969994323,0.03718563029076531,0.0,0.139171987838,0.03202725886303607,0.022896930358640422,0.0,0.02039656633633793,0.02830382787362086,0.021218724367396264,0.031666543605742316,0.0,0.017749727437202722,0.02430924645129873,0.18088541854731646,0.03127591496682118,0.032811752727886716,0.02830117379021261,0.026285156048092367,0.0,0.033227649305448664,0.015064411331028489,0.0,0.19923717300199786,0.03059862863947543,0.009070489663978479,0.00117080014258998,0.03451727255683632,0.03871891547809764,0.11535861446343451,0.03626280032079746,0.028710695605180858,0.031905960938795795,0.0,0.03701800568456627,1.0800886119940198e-05,0.08442716581352357,0.0,0.03958739055678165,0.01869414471111396,0.0,0.0,0.0,0.09843182708717892,0.023030445493225894,0.0,0.03679560108562197,0.09689489167880948,0.06305149555546002,0.03755890156924605,0.1751858014005303,0.05273137793391789,0.029561078303768282,0.00117080014258998,0.0,0.0,0.158011719171042,0.0033539375500045428,0.0,0.05020921135792779,0.028215553089713265,0.020483330080844308,0.02886000568393271,0.0490740183900075,0.032028113534521334,0.16651005946673336,0.025746617262693543,0.011087081345497077,0.028899084753284125,0.036774328068556836,0.03721579520130182,0.03784614644749366,0.028694817250599112,0.14115829663526636,0.034953536424291075,0.026210080621549003,0.033391697648012295,0.0,0.03277216697999441,0.021352497990446976,0.0,0.10171244641409202,0.017735111714062717,0.0,0.0
+2,0.0,0.0,0.0,0.030075388210592326,0.0,0.0,0.0,0.0,0.38075175008503387,0.0,0.0,0.0,0.02794579713116599,0.0,0.0,0.0,0.0,0.115585605437939,0.0,0.0,0.0,0.0,0.059664514792833016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18108535853727575,0.020524417286503664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10285528024755483,0.04522555774665366,0.0,0.12191630010535377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16348200210016275,0.0,0.0,0.0,0.05491904850095339,0.0,0.0,0.0,0.09712766063460596,0.0,0.0,0.0,0.0,0.020815479649556264,0.0,0.09536993107200996,0.0,0.015592654958965464,0.0,0.0,0.13953272219611645,0.0,0.0,0.02926500757191432,0.0,0.0,0.10126877308134087,0.0,0.0,0.07488757362572483,0.0,0.0,0.04741006560242899,0.0,0.026945537133173318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003604550748599672,0.11783478240280609,0.17842023803184057,0.0,0.0,0.0,0.0,0.0,0.09712766063460596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0628780286196909,0.0,0.0,0.0,0.0,0.0,0.26343029909437415,0.0,0.0,0.19403619029097574,0.0,0.0,0.0,0.0,0.0,0.05929117856420405,0.0,0.0,0.0,0.0,0.0,0.14013496641269407,0.0,0.0,0.009004890825963102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2083619237042491,0.0,0.0,0.044983217075644004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20228712792726636,0.1222365358027421,0.47580371983195285,0.0,0.0,0.009823477428795377,0.022238787949559788,0.0,0.0,0.0,0.0,0.0,0.09131069801819086,0.14958624606097085,0.017985837805657257,0.0,0.0,0.06588492206773347,0.0,0.05044508467100503,0.0,0.0,0.1340344729256113,0.0,0.0,0.0,0.0,0.0,0.015628022193153023,0.0,0.0,0.0,0.0,0.0,0.12732642498151334,0.27934250214930373,0.0,0.0,0.0,0.07335964682547626,0.0,0.2938908432386069,0.01775005624440683,0.2876810039457596,0.0,0.0,0.0,0.08991450519337776,0.0,0.11174451558416294,0.22927949811681878,0.3003284376281804,0.0,0.1833440682925952,0.22310065152699773,0.4344458035808729,0.0,0.0,0.0,0.0,0.0,0.0,0.1860986949683478,0.25539647030430546,0.0,0.0,0.0899544373113535,0.0,0.09712766063460596,0.23298460529422674,0.0,0.0,0.0,0.22743627760949425,0.018686142576554696,0.0,0.057862258795395166,0.0,0.1973598856848747,0.0,0.06912845887993152,0.21751003034952032,0.0,0.0,0.007471998557020264,0.37833665375756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019872090295660637,0.0,0.0,0.0,0.0,0.11861483524013587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14688256794659105,0.0,0.0,0.2112941678653251,0.1351650904390989,0.0,0.0,0.14880948403465472,0.0,0.23980270701582734,0.0,0.16982466755029452,0.0,0.0,0.29386022769137393,0.0,0.0,0.11332005597987425,0.0,0.0,0.06631075342995603,0.0,0.0,0.04814536608609839,0.07968971164208175,0.0,0.0,0.2866448075431682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3240978681131073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020384766043199967,0.0,0.0,0.0,0.016330248007447895,0.2321902743968545,0.0,0.0,0.07730535820596385,0.0,0.0,0.0,0.0,0.0,0.0,0.0802363978343928,0.0,0.006962908823884011,0.019396095399169155,0.0,0.0,0.0,0.07338522602423458,0.10178064879904129,0.0,0.0,0.0,0.12768158585884595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.035598085225493896,0.0,0.0,0.0,0.02687966378241613,0.0,0.027888663378174992,0.0,0.0,0.0,0.0,0.040043392469195804,0.0,0.0,0.0,0.14648698649478226,0.0,0.14569389542219846,0.02432147260808929,0.0,0.0,0.0,0.0,0.0,0.004579712356869354,0.0,0.0,0.16686350616333556,0.0,0.22714913144832402,0.0,0.0,0.0,0.0,0.0,0.16286192558813167,0.15337479791130584,0.0,0.015887381910528485,0.0,0.0,0.0,0.0,0.0023651710977888834,0.1507901504631645,0.0,0.0,0.0,0.0,0.0,0.0,0.12820013780527553,0.0,0.0,0.1436132188075856,0.0,0.0,0.0,0.12050254688609366,0.0,0.0,0.053587987009809886,0.0,0.0,0.0,0.0,0.003763474398743327,0.0,0.22551167572073702,0.0,0.20022932074178626,0.09162053574625122,0.0,0.0,0.0,0.10832656915151265,0.0,0.0,0.0,0.0,0.0,0.14275791581872085,0.0,0.0,0.0,0.0,0.0,0.15133255756402275,0.1737970708282135,0.12526902966548412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09562834637978489,0.0024123274100389543,0.0,0.0,0.0,0.0,0.10503538001403145,0.0,0.0,0.0,0.23817819822994307,0.0,0.07174058661802038,0.0,0.15122248794488266,0.0,0.07693128615226799,0.0,0.0,0.0,0.17266713327553407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08739933724030993,0.0016117458204842937,0.0,0.02336165740216687,0.0,0.06686893252309978,0.0,0.0,0.0244844165802976,0.08963552377616762,0.1502666429695558,0.0,0.0,0.0,0.0,0.0,0.0018488479758212977,0.0,0.0,0.08768142562966572,0.0,0.0,0.033391471765664635,0.0,0.0,0.0,0.0,0.0,0.1410758150612012,0.0,0.0,0.0,0.0,0.07222242692478151,0.0033673810081310688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2112941678653251,0.0,0.0,0.035598085225493896,0.09744536063638107,0.0,0.031530491125032874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06373236057109742,0.07869011468638193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12779872804103862,0.0,0.05777508716248456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2569277419921923,0.0,0.11043369221893296,0.0,0.021827615528561488,0.0,0.0032655199125319343,0.0,0.0,0.0,0.2721181912858401,0.05987217972024495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11162547415868847,0.0,0.3854809540397927,0.004602147301008203,0.0,0.0,0.0,0.0,0.0,0.0,0.20086994571793593,0.0,0.1944292717907892,0.015887381910528485,0.019235307038479497,0.0,0.0,0.0,0.305467481915771,0.0,0.0,0.0,0.013527881869246467,0.0,0.0,0.0,0.06634214778127939,0.0,0.014073832023260213,0.0,0.0,0.0,0.2314928015004505,0.0,0.0,0.0,0.0,0.0,0.0,0.2571458653297975,0.0,0.0,0.017514274683156417,0.05897716492242504,0.42720051459845115,0.0,0.0,0.0,0.0,0.0,0.0854860216998882,0.0,0.04319153028656009,0.0,0.0,0.0,0.0,0.006394347845152709,0.0,0.0,0.0,0.11353109513444438,0.0,0.0,0.0,0.1683503761626709,0.0,0.08900603477690935,0.07866931197756584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19086741171506097,0.0,0.1698124157057561,0.01977468261260852,0.0,0.0,0.0,0.0,0.13014642693464967,0.0,0.07450756161051303,0.0,0.0,0.07488757362572483,0.07468938736587177,0.0,0.0,0.015008579047433213,0.0,0.0,0.0,0.0,0.0,0.10015149493110373,0.0,0.0,0.0,0.0,0.0,0.0,0.12006082054961366,0.0,0.0,0.0,0.005032386980314792,0.0,0.0033673810081310688,0.0,0.0,0.0,0.0,0.09934486596977779,0.0,0.0,0.0,0.017172324261429412,0.0,0.0,0.059862635607201696,0.0,0.0,0.0,0.008074753088199717,0.0,0.0,0.0,0.21455807458419474,0.0,0.0,0.0,0.07424429303641772,0.0,0.0,0.16125386414343956,0.0,0.0,0.0,0.09712766063460596,0.0,0.0,0.24570956960502233,0.006130094295185732,0.0,0.0,0.12273540354251403,0.0,0.0,0.18045793158164417,0.0,0.0,0.0,0.0,0.0,0.01840101405366262,0.07488757362572483,0.0,0.0,0.04605728651228768,0.024965793652322706,0.0,0.0,0.0,0.07897044019665515,0.0,0.0,0.0509844081186299,0.0,0.0,0.0,0.0,0.13024261773182153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10602169732795716,0.0,0.08527571279994556,0.0
+3,0.09808036232860104,0.09349601196187769,0.0,0.0,0.0,0.0,0.06273006074141038,0.0933304410337995,0.0,0.09712679540029504,0.09396868016334069,0.09971711409595954,0.0,0.05513894129294834,0.040147687518437114,0.0933304410337995,0.0,0.0,0.0,0.0,0.0,0.09338070685218956,0.0,0.09124523202389863,0.013201767123481192,0.09465056902912164,0.0,0.09342008500304248,0.08833433855521292,0.0,0.0,0.0,0.0983900414950768,0.0,0.0,0.09906241180121449,0.0,0.0,0.0,0.0,0.0,0.0933304410337995,0.0,0.0,0.0,0.0,0.0,0.09742288128125284,0.0,0.08134186008912918,0.0,0.09997926565983298,0.0,0.0,0.0,0.0,0.0,0.0,0.10218775952010496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09531478988350993,0.0,0.0,0.0,0.0,0.0,0.05021035183965752,0.08460245656701035,0.09357084986040569,0.0,0.0,0.09333705711594982,0.09313077946594016,0.0,0.08180139154272183,0.0,0.0959531932747563,0.10134849516417177,0.0,0.10721356955062786,0.0,0.0,0.0,0.07872482269402965,0.0,0.0,0.0,0.09906241180121449,0.0,0.06761665497874315,0.0,0.0,0.0,0.09217144229489904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08959758464999465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08564211911487438,0.0,0.0,0.09412763500926857,0.0,0.09131720004274067,0.0,0.10091653368464026,0.0,0.05158095430705395,0.0,0.0,0.0,0.0974527734702695,0.0,0.09865082395105636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10249182046499833,0.0,0.06342733587682108,0.09338070685218956,0.0,0.09796627000410998,0.0,0.09959825852214267,0.0,0.0,0.0,0.09405832413258368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09869157120980317,0.0,0.0,0.0,0.0,0.0,0.0,0.09359122348977907,0.0,0.0,0.05276270588434206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059620137278045035,0.0,0.0,0.0,0.09911929581619863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09466412971683258,0.10211392694473143,0.1002849106372494,0.0,0.0,0.09286438891448685,0.09844030731346685,0.0,0.0,0.0,0.0,0.0,0.0,0.09717706121868509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10290903410054386,0.0,0.0933304410337995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09465056902912164,0.0,0.0,0.0,0.0,0.0,0.0,0.09865082395105636,0.0952821920765125,0.0,0.0,0.0,0.0,0.03454838152084714,0.0,0.0,0.0,0.0,0.0,0.0,0.034327806803448976,0.0,0.09338070685218956,0.0,0.0,0.08104998125970582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08239822408231598,0.0855579189794,0.09737539421546595,0.0,0.0,0.05700745966378595,0.0,0.09412763500926857,0.0,0.0,0.0,0.0,0.04259993418473463,0.0,0.0,0.09050491994896993,0.0,0.09359783957192938,0.0,0.0,0.0,0.0,0.0,0.06797067605317801,0.1002849106372494,0.0,0.0,0.0,0.0,0.0,0.0,0.10037455460649239,0.0,0.0,0.0921145582799149,0.0,0.09338070685218956,0.0,0.0,0.0,0.0,0.0,0.0,0.09910452816785519,0.023509542344698618,0.0,0.0,0.09847290512046432,0.0,0.0,0.0,0.0,0.08769319694817879,0.0958635493055133,0.0,0.05410744649661742,0.0,0.0,0.06350879043386948,0.0,0.09911130851171066,0.0,0.09338070685218956,0.0,0.0,0.0,0.0840210282222901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09402572632558624,0.0,0.06430885204569826,0.09359122348977907,0.0,0.0,0.0,0.09207381102116807,0.0,0.0,0.0,0.10184968644675753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09918061938839555,0.059620137278045035,0.0,0.0933100674044261,0.0,0.0,0.0,0.0,0.0,0.0,0.05149563039902148,0.0,0.0,0.0933304410337995,0.0,0.0,0.0,0.0,0.0,0.0,0.09081056492638634,0.0,0.0,0.0933304410337995,0.08861005080679732,0.0,0.0,0.0,0.0,0.09359122348977907,0.0880844111689635,0.0,0.0,0.0,0.0,0.0,0.056345799572895726,0.0985625490897073,0.0,0.0,0.0,0.06636444344063519,0.0,0.0,0.0,0.0,0.0,0.09333705711594982,0.07562958098901366,0.05149563039902148,0.09928244699844724,0.0,0.0,0.09902166454246768,0.0,0.0,0.09103229564047953,0.0,0.09720965902568256,0.10134849516417177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08988177064785118,0.0799536664374194,0.0,0.0933304410337995,0.0,0.0,0.09730745244667488,0.0,0.0,0.0,0.0,0.09212407683955814,0.0,0.09844030731346685,0.0,0.0,0.0,0.0,0.0,0.0,0.08769319694817879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0912278824824642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04942538378253242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08707109246043117,0.0,0.0933304410337995,0.0,0.02363761590439641,0.10033517645563947,0.0,0.0,0.09213763752726908,0.0,0.0,0.0,0.0,0.10249182046499833,0.09818235208591411,0.0,0.0,0.0,0.0921145582799149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0983900414950768,0.0933304410337995,0.09048047159372183,0.0,0.07539297828420659,0.0,0.0,0.04634884413670237,0.0,0.07148724828524744,0.0,0.0,0.0,0.09338070685218956,0.0,0.08398708882351995,0.0,0.049152255538482764,0.0933873229343399,0.0,0.0,0.0,0.0,0.09365641910377397,0.0,0.0,0.09017894187899546,0.0,0.05079037641373517,0.0,0.0,0.0,0.0,0.0,0.0,0.09908549104856867,0.09639754107917321,0.0,0.0,0.0,0.09591381512390337,0.0,0.0,0.06369771070318367,0.0,0.0,0.0,0.0,0.0921145582799149,0.0,0.0,0.052756089802191736,0.09971711409595954,0.0,0.0,0.07748954304619518,0.0,0.0,0.10033517645563947,0.0,0.09349343006878673,0.0,0.09338070685218956,0.0,0.09889671714824647,0.0,0.0,0.0,0.09338070685218956,0.0,0.0,0.0,0.0,0.0,0.0,0.08972797587798441,0.06530758663447918,0.0,0.0,0.09342008500304248,0.08512595749986848,0.0,0.0,0.0,0.0,0.0,0.0,0.10100617765388326,0.09681098387659962,0.0,0.0,0.0,0.0,0.0,0.09927026335763854,0.0,0.0,0.0,0.0,0.09959357634644755,0.10099939731002779,0.0,0.0,0.0,0.07748954304619518,0.0,0.0,0.0,0.08398708882351995,0.0,0.0,0.08588797177524915,0.0,0.0,0.0,0.0,0.05845418811543878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0935014557956463,0.0,0.10041530186523921,0.0,0.0,0.0,0.09153183194302018,0.0,0.06897045631335516,0.0,0.0,0.0,0.09945362602199917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09166036822374168,0.0,0.0,0.09338070685218956,0.09338070685218956,0.0,0.0,0.0,0.05859581559718432,0.09274618132730576,0.0,0.0665549119379292,0.0,0.0,0.0,0.0,0.11277771779688799,0.09096951977231421,0.097808684266076,0.0,0.0,0.09468316683611909,0.0,0.09081056492638634,0.0,0.0912278824824642,0.08669073330937661,0.0,0.0,0.1025634899257386,0.0,0.0,0.0,0.0,0.09197194287430106,0.09665412719883205,0.07229182124249703,0.0,0.0,0.0,0.10101432710563261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.050360150987879417,0.09682115042287866,0.09675595480888376,0.0,0.0,0.08338851424542436,0.0,0.0,0.0,0.0,0.0,0.09654543817129425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09558235268334497,0.09279507803780195,0.0,0.0,0.0,0.0,0.09591652074188417,0.08240420276284308,0.0,0.0,0.09302124559225439,0.0,0.0,0.0,0.08564752241182765,0.005579295768451379,0.0,0.09503226469026309,0.0,0.0,0.0,0.0,0.07748954304619518,0.0,0.0,0.0,0.0,0.0,0.0,0.09782224495378693,0.10083503916714666,0.0,0.09882200297460832,0.0933304410337995,0.07626713520725013,0.0,0.09969403484860534,0.0,0.0,0.0,0.10134849516417177,0.08592056958224657,0.0,0.0,0.0,0.0,0.0,0.000413391514507423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008513875116697283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09285777283233652,0.08256087217078537,0.09591381512390337,0.0,0.0,0.07491782670142438,0.0,0.0,0.09906789617179838,0.10033517645563947,0.09338070685218956,0.0,0.0,0.09149245379216725,0.0,0.0,0.09682115042287866,0.0,0.0,0.0,0.0,0.0,0.0
+4,0.0,0.0,0.009291672512539501,0.09375147790437374,0.03622706360585787,0.05358293713798739,0.0,0.0,0.5934843517973537,0.0,0.0,0.0,0.2312264411657508,0.0,0.0,0.0,0.2575312430580575,0.10291948860170183,0.0,0.0,0.0,0.0,0.07092584080183299,0.0,0.0,0.0,0.0,0.0,0.0,0.11401484932249864,0.1991353166945519,0.0846313575607772,0.0,0.0,0.0,0.0,0.0,0.0,0.21415335957498965,0.28681887957071983,0.014024028345203492,0.0,0.0,0.0,0.24369042938633018,0.0,0.0,0.0,0.025071190113466185,0.0,0.0,0.0,0.0,0.06714038693216126,0.0,0.0,0.16414171248922332,0.18387159781129883,0.0,0.11132366328042946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09688209941101382,0.0,0.0,0.0,0.27743313933935565,0.0,0.0,0.0,0.1543800711891911,0.07081140359268316,0.0,0.0,0.25766593388939607,0.0,0.0,0.0,0.0,0.01687495878738829,0.0,0.18201227422255706,0.0,0.09960956444901822,0.0,0.26611297461660177,0.2163809851357857,0.025601076930337967,0.0,0.17431152141070252,0.0,0.0,0.21257371412225634,0.0,0.0,0.45745965356442775,0.0,0.0,0.07418576862160042,0.0,0.10548368204276931,0.10459079393984999,0.18195852258013606,0.0,0.0,0.0,0.0,0.0,0.0,0.21607319151450702,0.3131142175035028,0.0,0.0,0.009250816781111818,0.005531237957430283,0.0,0.25766593388939607,0.0,0.0,0.0,0.0,0.0,0.0,0.07082959801174568,0.09141876131599282,0.0,0.0,0.0,0.0,0.0,0.38194208472365837,0.0,0.0,0.26873117904137156,0.0,0.0,0.0,0.0,0.0,0.19379558065289934,0.0,0.0,0.0,0.0,0.07569728360393191,0.2831512782515174,0.0,0.0,0.2716005267432982,0.0,0.0,0.0,0.09418317139003388,0.0,0.0,0.016459782466068107,0.10459079393984999,0.0,0.0,0.0,0.30753467490493364,0.0,0.006993727490236833,0.1838009171076134,0.0,0.0,0.0,0.2671771863226259,0.0,0.0,0.0,0.2728152396638657,0.21046974341143276,0.5716218810445054,0.0,0.0,0.0044131131154030254,0.26449169806263767,0.1434203373934813,0.009250816781111818,0.0,0.0,0.0,0.26425007663543953,0.2511827498788473,0.10084782599785672,0.0,0.0,0.0810010781327903,0.009250816781111818,0.2653400188578373,0.0,0.0,0.20911148275619723,0.0,0.0,0.0,0.0,0.0,0.09962786388077445,0.0,0.0,0.0,0.0,0.044458422555444764,0.20649060668100036,0.3706858439382137,0.0,0.0,0.0,0.05703864534086435,0.0,0.36880776966363293,0.1007258297861485,0.41019439790189033,0.009250816781111818,0.0,0.0,0.17422548087837908,0.0,0.20837977507662792,0.30143058656978866,0.38824607234467934,0.0,0.25270863581082315,0.28079307231581635,0.5737490376680282,0.0700233220959051,0.0,0.0,0.0,0.07948998158250664,0.0,0.2805155246623646,0.3945191045004953,0.0,0.0,0.17427151937764424,0.09188162013472133,0.25766593388939607,0.31939652163174304,0.0,0.0,0.0,0.2742886648419297,0.1999307710985882,0.18517610454041492,0.17453905673234157,0.0,0.3321226906774046,0.0,0.1588016199417564,0.3147103368286375,0.0,0.1841422547697133,0.0,0.5932849332350282,0.0,0.0,0.0,0.005531237957430283,0.0,0.0,0.0,0.0,0.0,0.10182379569152256,0.0,0.0,0.0,0.0,0.1878801461971726,0.0,0.009391578394457251,0.009391578394457251,0.0,0.0,0.0,0.0,0.0,0.0,0.3263558951924071,0.0,0.009250816781111818,0.26827669737929283,0.16973876927451093,0.0,0.0,0.15377987650082994,0.2041720538533087,0.35457461435340687,0.0,0.18776649572976825,0.0,0.0,0.3979950275224334,0.05847275645278383,0.0,0.2547240612676828,0.0,0.0,0.10504847040667506,0.0,0.0,0.1440361192039108,0.1942700491467346,0.0,0.0,0.3878022836965558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07569728360393191,0.0,0.0,0.4284020933110976,0.0,0.0,0.0,0.06934835543811704,0.03393121641723474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06787291180377347,0.041872795958257755,0.0,0.0,0.08873743360316566,0.0,0.05761756360120273,0.0,0.2511251710372829,0.33152251661048254,0.0397448663835426,0.143331285126757,0.32371025774291695,0.0,0.05564578101959764,0.0,0.0,0.0,0.0,0.09869786723461582,0.06393531977590042,0.12163899441856693,0.218516178546318,0.21988106120416234,0.0,0.0,0.05701220782605516,0.20392946041874932,0.0,0.0,0.28202864780246695,0.2582548270057485,0.0,0.0,0.19787036608336775,0.0,0.19584141897842974,0.0,0.0,0.0,0.0,0.23747426336294375,0.0,0.23719576116119767,0.0,0.0,0.06579083167833238,0.11961697612091537,0.0,0.10597166688960222,0.0,0.0,0.0,0.0,0.07409422099694139,0.0,0.0,0.0,0.19074682142468583,0.07569728360393191,0.2890444503188573,0.18503574069393158,0.0,0.0,0.0,0.0,0.23473252268400335,0.26115453054579185,0.0,0.0,0.33347563172867695,0.0,0.35195969761655255,0.0,0.0,0.048853618464828275,0.009119206851606129,0.0,0.2207250916140035,0.214322240051777,0.0,0.09976205971365351,0.0,0.0,0.0,0.0,0.13254213334588727,0.3164358295152088,0.0,0.1947485281154628,0.0,0.0,0.062012712830875935,0.0,0.21679192034191228,0.0,0.0,0.24340161414782435,0.0,0.0,0.0,0.1759075683312847,0.0,0.0,0.1836232359351232,0.0,0.0,0.0,0.0,0.09891650113333463,0.18195852258013606,0.2974116650844842,0.0,0.2518590180905895,0.19207548812141215,0.25112189013394054,0.24092275029486082,0.0,0.2123756213178611,0.2767706136641519,0.10315663029901036,0.0,0.0,0.0,0.14911819776919047,0.0,0.0,0.0,0.0,0.2671771863226259,0.30294824971295425,0.19121760452801745,0.276766560656628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3201444864152811,0.13256653258822887,0.009250816781111818,0.0,0.0,0.0,0.255316317499644,0.01646424935937087,0.0,0.0786566239266902,0.3739217785272425,0.0,0.08072645113572874,0.0,0.21307334016023852,0.0,0.25273571559201324,0.0,0.0,0.0,0.33494068147190137,0.0,0.009250816781111818,0.0,0.0,0.0,0.0,0.0,0.19445346393284996,0.15078242222339353,0.0,0.10362933962480426,0.0,0.07338348177156272,0.0,0.0,0.08421761020642707,0.22984768720851212,0.2636228907963442,0.0,0.0,0.10459079393984999,0.0,0.0,0.1175147094354779,0.0,0.0,0.24811532007359802,0.0,0.0,0.2095282152841948,0.0,0.0,0.0,0.26545359389498085,0.0,0.20934787601493152,0.0,0.0,0.35821511352052593,0.0,0.06451199848116432,0.09328406087194673,0.1812598402444888,0.0,0.0,0.0,0.0,0.0,0.0,0.26827669737929283,0.2145898928438471,0.0,0.23719576116119767,0.19693990817293858,0.0,0.17548370981127986,0.0,0.0,0.0,0.04368114663594534,0.0,0.00933710408588701,0.060949720021574276,0.0017513228676453692,0.0,0.09584644062034825,0.0,0.20542740748096155,0.2809702327742404,0.0,0.19238167171127668,0.0,0.0,0.0,0.0,0.0,0.0,0.25837901262402585,0.07082379907246054,0.15464818068212227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3220491913287213,0.009672992672531059,0.09782424843014911,0.0,0.05360882270829662,0.0,0.0018454305762460382,0.0,0.0,0.0,0.3342068682797207,0.15554828626093528,0.04275411337611793,0.0,0.0,0.2572762120027319,0.0,0.0,0.009232622362049352,0.2106542275937911,0.0,0.48040470248389444,0.12705853987665366,0.0,0.0,0.0,0.0,0.0,0.16544369416128854,0.27508102943114343,0.0,0.25039776165352345,0.09976205971365351,0.24032920459850646,0.0,0.0,0.0,0.4009251270088821,0.0,0.0,0.0,0.11023103377426502,0.0,0.0,0.0,0.15126266993391332,0.0,0.22004450699641206,0.009237198203969298,0.0,0.0,0.32395152007714983,0.0,0.0,0.0,0.0,0.0,0.0,0.3243228419758499,0.0,0.0,0.10060383357444026,0.18206074447847093,0.5731507819810512,0.0,0.0,0.3559898027792423,0.0,0.0,0.15212294827918324,0.0,0.17123159738290852,0.0,0.0,0.0,0.08844597155562962,0.0,0.0,0.0,0.0,0.20827216879659624,0.0,0.0,0.0,0.31540696943501423,0.0,0.2664483726668113,0.060537239201168803,0.007099257325685282,0.0,0.0,0.0,0.0,0.0,0.0,0.0461177607430795,0.0,0.0,0.0,0.0,0.31369617187457927,0.0,0.2724253496213304,0.09506280093318599,0.0,0.0,0.0,0.0,0.20538682110658366,0.0,0.13131024402224328,0.0,0.0,0.45745965356442775,0.057914825280120014,0.0,0.0,0.14285410794193365,0.0,0.0,0.0,0.0,0.0659011292221683,0.17125715075534914,0.0,0.0,0.0,0.13846985023353436,0.0,0.0,0.25718259595712534,0.0,0.0,0.0,0.26642059989256023,0.0,0.09328406087194673,0.0,0.0,0.0,0.0,0.27975261596668954,0.0,0.13351936307358733,0.0,0.012777879129659364,0.0,0.0,0.007723042368636097,0.0,0.2119078555321861,0.08243375960608537,0.0,0.0,0.0,0.0,0.3488814420418791,0.0,0.0,0.0,0.057621547974738244,0.0,0.0,0.22929020865856758,0.0,0.0,0.0,0.25766593388939607,0.0,0.0,0.36083664028623347,0.00025818831127535804,0.0,0.10966737231567006,0.17818587255320573,0.056152513857978356,0.0,0.34933641926003955,0.2127218275632088,0.0,0.0,0.0,0.0,0.14257867937660074,0.45745965356442775,0.0,0.0,0.17915335443202296,0.11103080778351197,0.0,0.0,0.0,0.2464342985876038,0.11089736422470886,0.0,0.18430811141863185,0.0,0.0,0.0,0.0,0.25735227642422603,0.013472817498453271,0.0,0.0,0.0,0.0,0.0,0.0,0.16749851748886813,0.0,0.06550381237087559,0.0
+5,0.16413785735328662,0.18741724882852148,0.29970641573984536,0.096639173776544,0.2515725151947424,0.2531467930192977,0.11503867579706678,0.19123240807031108,0.1683648983345031,0.17111556473838896,0.18785038538807808,0.1577861965899213,0.17443552161511622,0.16585812040760683,0.3087833286064756,0.19123240807031108,0.3036660532939458,0.030434280217060992,0.321674465700545,0.1390968861844228,0.34105061235901857,0.1912784699030584,0.046711231354633134,0.20105775838418516,0.20313269503912884,0.1845494830908876,0.3059438264102109,0.19131455465919253,0.21801912439026577,0.25750201133256184,0.21268158040631138,0.2171448891754657,0.16442163647851335,0.27951458041166954,0.26446394708734466,0.161112011707158,0.2949361912309218,0.12724466310513657,0.009990757177756816,0.09075753859539155,0.05223338935467522,0.19123240807031108,0.099352359487473,0.31558849303547437,0.24944168224934135,0.14350032351720923,0.1948435512527929,0.1713868874535926,0.2740319029080087,0.24338074073923777,0.25012211359970227,0.15802642308729742,0.3888701856093318,0.2696400893272654,0.14447347005664657,0.10989279008117851,0.2777761921819578,0.11982470357809884,0.14322310770830388,0.029289286502534605,0.31375138903914385,0.31093777660651944,0.2952702710933165,0.1597228372831078,0.12748748865862924,0.090700079050781,0.18123239044781575,0.19292268731499518,0.1760731519160293,0.19835301475445732,0.24962362445918032,0.26255598285126586,0.29214585470275145,0.2244137619795078,0.19145271028594765,0.17338004835335338,0.2464174306613147,0.1911973495180159,0.19104944521325704,0.0,0.2356899274353799,0.3588677659016047,0.17789163958714604,0.14750385297177018,0.0,0.10762669611220392,0.33460142621368416,0.37962225447730696,0.11445403719037439,0.16963073451455127,0.30300761262246967,0.0,0.1838758733623918,0.161112011707158,0.21207658847329958,0.1363968482517506,0.1473737040788134,0.404239545197977,0.15641519445360014,0.21368378899035353,0.08926797799385428,0.13055819287019543,0.03402807920296566,0.0,0.21576851744226988,0.10831040792584962,0.25982574572052763,0.20682947893578685,0.18890445293805172,0.21132519613039014,0.3126533515622302,0.1298075155475516,0.2754346770678817,0.037372819104238814,0.3692875355495569,0.419164409955011,0.1948435512527929,0.2312551142707904,0.2997164897328568,0.2782761375749803,0.1840702846985837,0.0,0.2050494686866381,0.28017508283894005,0.15103377995876208,0.20951144400789692,0.1899401401102588,0.2275736617627699,0.2464129443764269,0.1161953032012786,0.17141427960704866,0.3280886389979656,0.1646606083734411,0.15641519445360014,0.15988218999878023,0.2478406791999005,0.33601423991030027,0.1677768279062022,0.28563551826864664,0.15654470042344845,0.1437224912099403,0.149250159815428,0.2710944104866844,0.1912784699030584,0.11786006549926302,0.1640333071492557,0.130059604182226,0.1596401621785344,0.1273362354778246,0.24021786829994327,0.33428058631962215,0.18793253197695953,0.2950317437804418,0.10322996010450045,0.14221463114710423,0.35127037800705624,0.17861052886627832,0.21275308184965497,0.130059604182226,0.16419755289629553,0.2761552588589822,0.25982574572052763,0.15415635554405774,0.16469794773202356,0.24277591381297708,0.02380631911580912,0.3260099222373388,0.27792129653550607,0.1199464759094173,0.23551526138294165,0.19147137996523886,0.3160433183107267,0.31053075441440353,0.18317153313321824,0.40235467986364715,0.3099069878507979,0.27316554386252634,0.32597366354583485,0.1708648554464582,0.41478315731795956,0.1948435512527929,0.00735084356117008,0.20792187843487675,0.18201597515359308,0.2997164897328568,0.1755037565281093,0.06119189093063615,0.16697364353862995,0.48072866996523045,0.34196351438854383,0.1131589626932835,0.17686718356103753,0.3637182544400949,0.10195965136996314,0.2997164897328568,0.5049301188262508,0.421135564905667,0.15711364276936124,0.0,0.33961424569079635,0.2831676908833706,0.18456190962942387,0.14310184659060984,0.1543807440886999,0.11443489815839768,0.2500448030572203,0.1907642129584593,0.16446769831126065,0.19835301475445732,0.26924024168477334,0.3045729123521979,0.18343332456765293,0.144424082685914,0.32063016595293903,0.1711616265711363,0.0685579975535772,0.22151485346987582,0.1220485812656474,0.11328655623979492,0.34473568366102,0.2997164897328568,0.11848347754031885,0.15678539878141062,0.2631025672153427,0.19123240807031108,0.0,0.2645494232846787,0.16684647809172856,0.09380495516400733,0.279160490835634,0.23680591595488407,0.10421948471866234,0.2523668828941259,0.1845494830908876,0.17289039748844048,0.3310107020222707,0.24456830457621306,0.2665200612697669,0.3105325005101175,0.2949011893690256,0.1646606083734411,0.18120251896094974,0.26306271557838784,0.2360600441793517,0.0,0.292978988230156,0.3184738135450487,0.33613448334818347,0.3233326424129838,0.20180289100408086,0.21993500170819855,0.20941851735138123,0.13122990153468111,0.10574646839983187,0.2913458120488295,0.1912784699030584,0.06851536719337226,0.32263859842995346,0.2430258181985951,0.20454555445323247,0.033885232414486655,0.1743181164713277,0.1516385046948187,0.14447347005664657,0.17529563647260168,0.2782761375749803,0.3596156151341367,0.31967994795118715,0.0660517529780547,0.23117795622021564,0.16741761063777602,0.11213821432119214,0.1548865659070785,0.1626826350498108,0.24280179980941952,0.1840702846985837,0.287577673001113,0.3478750492411601,0.2996817814689348,0.2996817814689348,0.21311633898241172,0.08903218407731142,0.37099243594953074,0.2082308850363647,0.15666351439655588,0.19143632141294367,0.42841959994516327,0.31590496696915155,0.2997164897328568,0.24057461378004705,0.0019472185029710905,0.13697828525237024,0.1543807440886999,0.014725850599017874,0.12981375217430668,0.25049052302081193,0.3111019494099625,0.016830357719216225,0.21004862792632653,0.15446289067758134,0.3032111814287001,0.20324638192826489,0.197928617136474,0.34284006071742024,0.1912784699030584,0.1081322285169327,0.0,0.33613448334818347,0.19485218976279628,0.2297461649664293,0.09644978604374192,0.16115060566818884,0.16386325828946216,0.20087841562799394,0.3180526529388826,0.16449756979812666,0.3561446258072566,0.21957268520019949,0.1398262862677135,0.29395609045335,0.22135736604603873,0.1778094929982646,0.2835792421055693,0.17655228359050756,0.3005845917262414,0.13960106345377157,0.27119345863756145,0.039041416443663796,0.16115681893745695,0.24021786829994327,0.1912784699030584,0.19521388583789012,0.21105595994697626,0.15711364276936124,0.23838898954677895,0.35110620520361313,0.29722386041917676,0.2548804026212418,0.15641519445360014,0.24523149156961993,0.2427341593869637,0.16576940912344418,0.18790266049009358,0.3116499612442234,0.13068750428167558,0.19147137996523886,0.26376980638077707,0.2557044027714214,0.1948435512527929,0.19789127777789153,0.10188326853816329,0.31967994795118715,0.3459537676316135,0.14796312708233444,0.2006846005755302,0.20107184690946522,0.2416986276417921,0.2203931510025142,0.26088959933286865,0.15893304530283914,0.36349663017721195,0.15729457165908112,0.16697364353862995,0.29387329421080605,0.19121373839101988,0.0,0.23384631232207123,0.1389231075020304,0.14190231045191656,0.24881273297097292,0.14386298427960478,0.18205155090286693,0.0685007438499046,0.12727786066714855,0.19123240807031108,0.24023699332079423,0.32880186832532826,0.31358752808726986,0.4189983075376854,0.1948435512527929,0.2252655561634218,0.20458520603776714,0.21612660616211965,0.23249585426445538,0.19123240807031108,0.21827177742617815,0.15711364276936124,0.27398852659255424,0.19485393407731616,0.12573297485850451,0.19147137996523886,0.2177900997004644,0.2926453170561528,0.2520921403206811,0.31025235515214455,0.10780003373980393,0.13960106345377157,0.18252919316709923,0.16457971638700808,0.2089122132753296,0.009523498675254054,0.15711364276936124,0.26641631177200287,0.5016347499199515,0.0,0.24021786829994327,0.3325061440497053,0.22467731676848746,0.1911973495180159,0.0927289886198503,0.18205155090286693,0.1613136442435033,0.2670838468818976,0.2998765249625567,0.1610746723485755,0.24207242672094345,0.39237752525540454,0.1891264682462601,0.2570650890348787,0.17119149805800227,0.14750385297177018,0.2654356921333823,0.2997489414223442,0.38573621290882393,0.2437897022949984,0.0,0.3149883472276581,0.11429454525723512,0.18017952353429084,0.162770935874003,0.1915822697746105,0.19123240807031108,0.15133670710190464,0.39750823329737234,0.17128111251860015,0.21726964018918757,0.32507378039387225,0.18803241836550522,0.31073206995268365,0.19793733961063883,0.32407004731757155,0.16446769831126065,0.24280179980941952,0.3610589096522309,0.24280137630051327,0.22869822706791051,0.4189983075376854,0.05776644833842684,0.22135736604603873,0.07347794687822776,0.15878394307917162,0.24280137630051327,0.1618617392865828,0.3118406883646459,0.3508524392962133,0.20885379269069854,0.20682947893578685,0.26570034681979493,0.1893056971674559,0.2342185623613008,0.3654105114444906,0.11987334770564725,0.12819215030857745,0.13415432604496882,0.1282446515175077,0.3228248817365875,0.22507185878143093,0.1308978143998928,0.19189061222921242,0.052336625463507334,0.009125272019996905,0.14826689520506092,0.19481065846470308,0.21628444007094766,0.31092956796634724,0.31053075441440353,0.36767105009267287,0.020125621142778043,0.3588019084017336,0.3439168202258187,0.1948435512527929,0.22471305265014135,0.15161260350084904,0.19123240807031108,0.35110620520361313,0.1383821733192489,0.15442680592144722,0.3417500646937414,0.24280137630051327,0.19794976614917512,0.31292333646777976,0.4267796566871534,0.15131118839260235,0.2997164897328568,0.1437224912099403,0.15245403318584472,0.3243939174552068,0.3652606063190554,0.2761541574357463,0.197928617136474,0.24752135096323816,0.29545335404796946,0.2650964712135301,0.09478497475316518,0.24265180707178827,0.2573930926399184,0.2265681160034162,0.19204970434589888,0.16442163647851335,0.19123240807031108,0.2082084814212152,0.38063695936242786,0.25264614403029695,0.2997164897328568,0.14651072639360385,0.20084866322013442,0.2969815026780168,0.2643960051058549,0.24280179980941952,0.13447674210272328,0.2181496033049182,0.1912784699030584,0.11024982983282317,0.23834771948391353,0.09298009314658612,0.203417611090608,0.19124341135076323,0.09470197302674525,0.20618987089047539,0.36646636419856377,0.3549525454231055,0.1915311229389708,0.25982574572052763,0.1948435512527929,0.207932170167705,0.2353424375498828,0.19706720492969101,0.30337872493364904,0.13287468839831723,0.1469913209058856,0.19507476262860834,0.15128670641713335,0.17036533592799716,0.16113316071985911,0.1586700176558648,0.30325070945121707,0.18728769454813815,0.27546399113271947,0.17785555483101192,0.19485048697957447,0.4194462064864827,0.2714231843154956,0.07756979865678525,0.12106976257699144,0.15363198369185904,0.29387329421080605,0.197928617136474,0.1316578371117744,0.39596014916953887,0.18320659168551343,0.1577861965899213,0.24057461378004705,0.1251793518345608,0.17652646043128734,0.12573297485850451,0.12520448931005856,0.15442680592144722,0.21085061864099927,0.19138176550464095,0.31603023048489387,0.1912784699030584,0.2525147956914135,0.16096017493941828,0.2996952134596167,0.2542906832928467,0.06269614942393169,0.1912784699030584,0.26739499318635496,0.13969263582645963,0.2033500554691039,0.1579390842124915,0.26703918600229115,0.21937360811085674,0.211444682077854,0.14509308517302233,0.09059684294194888,0.14447347005664657,0.19131455465919253,0.23470788320720753,0.31355013562564327,0.3306779144575765,0.08357708554905469,0.3637272040369815,0.15880353933299082,0.15711364276936124,0.15111592654764353,0.17278904680335788,0.2901438370726069,0.3699068454820238,0.02439199039852023,0.2996123918050722,0.04173664687855355,0.15737671824796254,0.03175452837675038,0.26811587833201644,0.07036671247338702,0.05229947905003763,0.15374722959524637,0.1511097132783754,0.20397046350625062,0.08261877385853329,0.21528461814914573,0.17652646043128734,0.22674720014020414,0.2983500118071205,0.2551984310187775,0.23834771948391353,0.29972097601774456,0.12230654730153065,0.23148040502473358,0.13824083740506943,0.14516340060792676,0.2682695980619717,0.17867581868337828,0.1713030142514543,0.18537185057636543,0.3888310572788452,0.18837654606577175,0.2613213663098532,0.20539186641945859,0.2459579860845405,0.11429454525723512,0.18901862946467896,0.18742223736682811,0.25525774727112066,0.15450023003616378,0.27973004964274684,0.29056540678430665,0.19162487565056854,0.20132038849671077,0.20335771885410803,0.13237600211934922,0.16785667754433278,0.24387680076778803,0.060942137178577105,0.15754474536158367,0.23313584592220576,0.29971984773052723,0.11409972627878612,0.29999649744191664,0.2861544247570871,0.1677939358934629,0.15711364276936124,0.13969263582645963,0.13969263582645963,0.18377224863039843,0.39127571827961377,0.02267321263927141,0.1912784699030584,0.1912784699030584,0.11341414978630633,0.10781162718807977,0.1220791391291362,0.15904701661216625,0.1945816530065362,0.3226765922236377,0.12177720250715643,0.3016718725287189,0.013522346800351531,0.19803721886909742,0.167292203476033,0.09812844218625995,0.20080510534827273,0.16781466244119853,0.37056960346736234,0.031893482724480074,0.1845793545777536,0.12748748865862924,0.20458520603776714,0.3435845123852998,0.1893056971674559,0.2282902662008421,0.20930830005574333,0.3302180717322082,0.14384019967222714,0.42970535341292954,0.06590012801668584,0.3015789128715975,0.15307105711149255,0.19779792938143537,0.17068242817883236,0.2571247597691122,0.46009028816310354,0.24280179980941952,0.41721299851587196,0.15112339441936,0.1948435512527929,0.22393100274503006,0.19484874266505456,0.3683383860079235,0.25118777295854844,0.23581524180329966,0.10717617956121238,0.1810110374008645,0.1747612437369865,0.17470150076325458,0.29091410303180115,0.0,0.054929067655355664,0.13796587773612282,0.1948435512527929,0.11969524677092085,0.08926797799385428,0.06789236671376883,0.17450859070107413,0.18645407486500504,0.4546083433386678,0.35587239446458724,0.2427754903040708,0.3189653722808141,0.16785667754433278,0.28131266892637546,0.0,0.1255948295341691,0.1814775756120116,0.19462646023683516,0.17592560384995154,0.2908224289383585,0.18645407486500504,0.3308003551314308,0.1778580341644218,0.2165107173020348,0.17178427706397484,0.10739514380125198,0.1928708315829848,0.12106976257699144,0.31590710088231155,0.09163161664461265,0.2351858269970631,0.05724217302044003,0.4313491460258751,0.18097349427114837,0.16983523254630997,0.3345202673989682,0.0,0.19517580163753864,0.17652646043128734,0.029768741481320853,0.1948435512527929,0.6046059538351136,0.21904716395116122,0.03147335332690163,0.24280137630051327,0.16782708897973478,0.15095910124159717,0.30299303403776934,0.16089170949152146,0.19123240807031108,0.18335033179564772,0.06811516845840114,0.15776504757722018,0.12264576397304498,0.28621181167933174,0.2539440835461445,0.14750385297177018,0.23151027651159956,0.0,0.25506271256350793,0.15003232709769967,0.24860501834123472,0.011850719183231117,0.39000099235006136,0.1960072113663392,0.2565983200594556,0.3576943335245902,0.2903052846075128,0.3708493356465145,0.24353667007434646,0.2898063228416214,0.24280137630051327,0.2149619272743569,0.1034865741986275,0.4481106934167516,0.08926797799385428,0.14208512517725588,0.3713561810271133,0.2322439919993652,0.11429252892799065,0.1907992715107545,0.07277197911438822,0.17785555483101192,0.4131327440590367,0.1382490828626947,0.25206836315018094,0.23374415357829773,0.2587980003485479,0.15719127605749855,0.15442680592144722,0.1912784699030584,0.42465497024251025,0.27910013772515996,0.20128430374057665,0.31002934281594746,0.15176801066466702,0.1747612437369865,0.32817540804191647,0.149250159815428,0.2767654535483026,0.3190663832556606,0.05269376166073921,0.20126469341634087
+6,0.16500409666377208,0.18226903941999908,0.0,0.0,0.0,0.07523914634272132,0.18740212417088165,0.18469841278660284,0.0,0.1698917908064929,0.18220913896974517,0.160029823649574,0.02746172979794822,0.19249121639143027,0.2580713393635011,0.18469841278660284,0.0,0.0,0.0,0.09975824581250385,0.0,0.18469204268354825,0.0,0.19208797739830796,0.23137306351231599,0.17973929923404014,0.0,0.18468705235638228,0.20437399556054472,0.0,0.0,0.0,0.16496485154119192,0.0,0.0,0.16249621807662304,0.0,0.0880851629067357,0.0,0.06907883640059974,0.1500586416932187,0.18469841278660284,0.0,0.0,0.0,0.04776298000550323,0.0,0.16985426833824072,0.0,0.22174297318423616,0.01542349711663708,0.1599966016205435,0.0,0.0,0.028043946283798856,0.0,0.0,0.009188607039594687,0.1509941185047465,0.0,0.0,0.0,0.0,0.0,0.01136212697779934,0.07752446207318948,0.1772716985358549,0.0,0.057278202640508424,0.07479305379257502,0.0934343785293276,0.0,0.24902245490424885,0.21080549347221697,0.18466794617828408,0.0,0.0,0.18467260860239562,0.1847237155630032,0.4481260351962977,0.21949763456233187,0.0,0.17480736964157323,0.15267280615434,0.26606537434986366,0.14390982170713915,0.0,0.0,0.0,0.18398092070860592,0.010617297982456898,0.11491174292498639,0.0,0.16249621807662304,0.0,0.17868983505602007,0.2581951990162969,0.0,0.04151596294662321,0.19912087562275083,0.3520587392468,0.0,0.27034218029562357,0.11708437292920625,0.0,0.0,0.0,0.0,0.0,0.1994470562952438,0.0,0.01374774266706306,0.0,0.05545401241578175,0.0,0.0,0.0,0.21424887642832524,0.0,0.0,0.1798055697873486,0.4481260351962977,0.19446228211245636,0.04830560823645876,0.15511097301059007,0.0,0.20450941815060766,0.00502303458585452,0.0,0.0,0.16985048015114537,0.0,0.16493180301691393,0.04151596294662321,0.0,0.0,0.0,0.11423639940386675,0.0,0.041943510385468175,0.1507962947337702,0.03343275294892858,0.23734885878801626,0.18469204268354825,0.015906809515146243,0.1650185553931437,0.01349274712651253,0.16123659856793823,0.011515124302129651,0.06927199571174768,0.0,0.1821977785395246,0.10978030141281525,0.07527341363402328,0.025777090390078968,0.0,0.11798689795979496,0.0,0.01349274712651253,0.049780071056821584,0.0,0.0,0.03924910705290331,0.16492663918499548,0.008657221618396296,0.0,0.0,0.0,0.009117539425062224,0.13861481445123866,0.18466536426232485,0.0,0.014042387011779345,0.19959280654914366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2643795428539272,0.041348453484147646,0.0,0.0,0.058564307091703516,0.28097196795410473,0.18886531115377703,0.0,0.0,0.0,0.17202270966359579,0.0,0.0,0.0,0.0,0.0,0.04376743278144203,0.11903820999444051,0.0,0.0,0.17973758071077764,0.15104215439599322,0.15757444264324055,0.0,0.015501699149013113,0.18473250905264954,0.16495848143813732,0.07479305379257502,0.0,0.0,0.0,0.0,0.0,0.16988542070343832,0.0,0.0,0.0,0.0,0.0,0.0,0.0203834647149358,0.15724189186769302,0.0,0.18469841278660284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17973929923404014,0.11588400110304357,0.0,0.0,0.09938613275187941,0.0,0.0,0.16493180301691393,0.17727582960138966,0.0,0.0,0.4481260351962977,0.0,0.26322090252087366,0.0,0.0,0.0,0.0,0.0,0.0,0.2105611693956444,0.0,0.18469204268354825,0.0,0.0,0.22178406396637285,0.0,0.054229305808917966,0.0,0.03612715628149344,0.028043946283798856,0.05812904297294715,0.0,0.0,0.0,0.16630649254930965,0.2142595469706015,0.16747686119387573,0.0,0.05051323795728607,0.19056513399087088,0.008680607697440947,0.1798055697873486,0.0,0.0,0.0,0.0,0.224714968608749,0.0,0.0,0.1969486461103004,0.0,0.1846395600781176,0.0,0.0,0.0,0.0,0.0,0.17845950694211402,0.15757444264324055,0.0,0.014194776964514506,0.0,0.0,0.0,0.0,0.15756308221301998,0.0,0.0,0.18959438403577808,0.0,0.18469204268354825,0.026411988293972916,0.2993614431273033,0.0,0.0,0.0,0.01814894481203148,0.16249088073995213,0.2182730426410883,0.0,0.0,0.16495435037260262,0.0,0.08095874959358833,0.023082687057514095,0.0,0.2068386714643313,0.1748187300717938,0.0,0.19465553962000584,0.0,0.09924825473140275,0.23733739159300135,0.0537847292883395,0.16249002147832092,0.06927199571174768,0.18469204268354825,0.0,0.0,0.04376743278144203,0.21918515349817608,0.0,0.0,0.0,0.04151596294662321,0.0,0.008749028100881432,0.0,0.1822019096050593,0.0,0.1831216933401368,0.18466536426232485,0.0,0.0,0.0,0.18959954786769653,0.0,0.0,0.0,0.1526092910217432,0.03442896701481786,0.0,0.0,0.0,0.09285114440803757,0.04463791371803303,0.0,0.16009781272614493,0.18886531115377703,0.0,0.18470099470256207,0.0,0.0,0.0,0.0,0.0,0.10440197942075606,0.19977834664438313,0.0,0.0,0.18469841278660284,0.006493023656903386,0.02104137091889389,0.0,0.0,0.0,0.0,0.19452648713299747,0.0,0.08716980368744119,0.18469841278660284,0.20433905500825178,0.04376743278144203,4.4419197550267854e-05,0.0,0.0,0.18466536426232485,0.20440566843999963,0.0,0.0,0.0,0.0,0.09924825473140275,0.19675530198084565,0.16494298994238205,0.0,0.3076138543116361,0.04376743278144203,0.23475472631774238,0.0,0.0,0.06927199571174768,0.0,0.0,0.18467260860239562,0.17226912999100605,0.19977834664438313,0.16246833338426347,0.0,0.0,0.16250138190854152,0.009418391394826637,0.0,0.18498965290680286,0.0,0.16988128963790353,0.15267280615434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1803436410732501,0.1799775513785679,0.0,0.18469841278660284,0.0,0.0,0.1698688964412993,0.0,0.0,0.0,0.0,0.18959317776464193,0.0,0.16495848143813732,0.008680607697440947,0.0,0.008681036089949017,0.0,0.0,0.0,0.2068386714643313,0.13823280609295738,0.0,0.008681036089949017,0.05296265117101369,0.0,0.0,0.0,0.0,0.0,0.18496486651359437,0.0,0.0,0.08352729716677845,0.0876554288142581,0.095293009082637,0.0,0.01879480101937461,0.0,0.0,0.20716601509700783,0.0640526893976876,0.0,0.03293466639739319,0.0,0.0,0.0,0.014042387011779345,0.0,0.0,0.0,0.0,0.0,0.20930093482584564,0.03604164679372447,0.18469841278660284,0.0,0.22123319246515374,0.157568072540186,0.0,0.008681036089949017,0.18959145924137952,0.11668577488137288,0.0,0.0,0.0,0.1507962947337702,0.15784089637023208,0.0,0.0,0.0,0.18959438403577808,0.0,0.0,0.09746108278674327,0.0,0.008832330044068483,0.0,0.08478617037744081,0.0,0.16496485154119192,0.18469841278660284,0.19695174440945146,0.0,0.22694174972021425,0.0,0.10645610090730412,0.21470617512059395,0.0,0.2318528907812355,0.008680607697440947,0.0,0.0,0.18469204268354825,0.0,0.21918993149609894,0.0,0.21435090348460528,0.18466623849934105,0.0,0.0,0.0,0.0,0.18465710213125536,0.0,0.0,0.1969899567656479,0.0,0.20937645696565468,0.0,0.0,0.03116589705520872,0.06687324421837876,0.01868514601086838,0.058596739629171,0.16249329328222445,0.16283393268408905,0.01080259261683875,0.0,0.0,0.1748123599687392,0.0,0.0554941716547572,0.2373107953453635,0.0,0.0,0.026371893476380328,0.0,0.18959438403577808,0.09308589027175865,0.0,0.19961861073335085,0.160029823649574,0.0,0.012219614253816447,0.1880052571490708,0.0,0.0,0.157568072540186,0.0,0.18467775745892911,0.0,0.18469204268354825,0.0,0.1625172162827362,0.0,0.0,0.15373276151381013,0.18469204268354825,0.0,0.02267821612679674,0.0,0.0931003690039905,0.03348638990735194,0.0,0.19943053203310482,0.1816129555390338,0.1635304143687206,0.028043946283798856,0.18468705235638228,0.21669771382685163,0.0,0.0,0.0,0.1358702088757816,0.04421036627918804,0.04376743278144203,0.15509961258036953,0.1711235256228181,0.0,0.0,0.0,0.0,0.0,0.16008645229592436,0.31258271884638317,0.1489060935505407,0.0,0.27898442214020597,0.15766205428110158,0.15510047184200076,0.0,0.0,0.0,0.1880052571490708,0.0011361091981561084,0.009376397740369642,0.09534075986880465,0.21918993149609894,0.0,0.0,0.21421771993206212,0.0,0.0,0.0,0.0,0.1903342980526669,0.06434086806597918,0.0,0.0,0.0,0.07074245520538501,0.0,0.0,0.030094112550746833,0.18226834953205476,0.09542097028401865,0.15755791838110159,0.0,0.0,0.0,0.19205165707012645,0.0,0.17709863047124724,0.05247891063257054,0.09129538698572993,0.0,0.16006321505229137,0.0,0.0,0.08239755776678558,0.0,0.0,0.0,0.04376743278144203,0.02267821612679674,0.02267821612679674,0.18130995492896748,0.0,0.0,0.18469204268354825,0.18469204268354825,0.0,0.010627945880388788,0.0,0.188821326857132,0.18713091440312765,0.07466553659629972,0.18115074411046916,0.0,0.0,0.0,0.0,0.13736576957133018,0.1921229179506009,0.16742195107078783,0.0,0.04995261761274276,0.17973516816850535,0.01136212697779934,0.19452648713299747,0.0,0.18496486651359437,0.21173256220535425,0.0,0.0,0.1507496661771417,0.0,0.0,0.0,0.0,0.18961245744749264,0.1699516912567468,0.2295589771212482,0.0,0.008680607697440947,0.0,0.15509857981398587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19992224405015516,0.1723139497837958,0.17232221191486533,0.0,0.12019785698770809,0.1663879875695651,0.0,0.0,0.009751970510227352,0.3520587392468,0.0,0.17234889033608872,0.06660424148351207,0.0,0.0,0.008657650010904424,0.0,0.05247891063257054,0.0,0.0,0.0,0.17723779074994567,0.18712471780482548,0.0,0.0,0.06660424148351207,0.0,0.17481201709029978,0.20750893684734484,0.05573924092151518,0.07733509969555892,0.18590434341872084,0.0,0.0,0.0,0.21663161677829557,0.23938625053002668,0.0,0.1773075024808446,0.0,0.0,0.26705914725681307,0.0,0.1880052571490708,0.0,0.0,0.0,0.0,0.051127115951445055,0.008681036089949017,0.16742023254752536,0.15512130067442698,0.0,0.16252668468494186,0.18469841278660284,0.19198765936868198,0.0,0.16003274844397258,0.006794892031712277,0.0,0.018801849021481368,0.15267280615434,0.21421358886652742,0.4481260351962977,0.01989965371573677,0.03588127227586812,0.0,0.26532352600818304,0.29186645955167845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008681036089949017,0.24119634124724354,0.07416016508444581,0.0,0.3520587392468,0.025349542951233997,0.0,0.0,0.0,0.18475831323685676,0.16519064044146486,0.1748123599687392,0.0,0.0,0.22700864169113447,0.0,0.0,0.16011209795076412,0.157568072540186,0.18469204268354825,0.0,0.0,0.19205664739729242,0.0,0.03655470372033843,0.1723139497837958,0.0,0.03343275294892858,0.0,0.0,0.0,0.0
+7,0.0,0.0,0.0,0.0,0.041490495282412186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03129150129306355,0.0,0.0,0.0,0.02235047093023284,0.0,0.09449686979772537,0.0,0.03605482536019436,0.0,0.0,0.0,0.0,0.0,0.012387444482012426,0.0,0.0,0.0,0.03426538251798267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09228892326930137,0.04871657788597225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07512910484672843,0.047006338035169376,0.0,0.0,0.06545959261199585,0.014685513436675868,0.0,0.0,0.0,0.015743661575317276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03548555008014496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12026427436148895,0.0,0.0,0.0,0.0,0.09768340027563524,0.06378820534767742,0.00044774974499220784,0.0,0.06288878678031709,0.0,0.0,0.0,0.0,0.0,0.0,0.10896533436740787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013047071308405398,0.0,0.029487744805665204,0.0,0.0,0.09035818846881662,0.0,0.0,0.0,0.08615196761485953,0.09763155849683337,0.0,0.0,0.0,0.0633712850686131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09907519097330082,0.0,0.0,0.0,0.0,0.03264915236579706,0.0,0.022405269330709857,0.0,0.0,0.0,0.0,0.0,0.01666494103589563,0.0,0.0,0.0,0.0,0.0,0.07963621973200948,0.0,0.0003644178911288038,0.0,0.0,0.04301174036620397,0.0,0.006768971062779676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025917578898578823,0.06285011488260611,0.01468347718613696,0.0,0.0,0.017385043981274315,0.06570193252376552,0.0,0.07546861331955543,0.0,0.013680368270777513,0.08635254011637025,0.0,0.15520510605132765,0.0,0.0,0.042411001771839985,0.020780249207199803,0.0,0.0,0.0,0.0,0.17066139011589557,0.0880492463859221,0.0006283960059758185,0.0,0.12278164726007214,0.0,0.0,0.18983969118402683,0.09321603861396728,0.0,0.0,0.033631008502959074,0.0,0.0,0.0,0.0,0.00045041939416930844,0.0,0.0,0.0,0.0,0.0,0.07364861898536053,0.0,0.0,0.022111588710973268,0.0,0.0,0.0,0.0,0.0006105983447951625,0.030538797171472825,0.0,0.0,0.0,0.0,0.0,0.0,0.0023242565239197767,0.0,0.0,0.0216223494354256,0.0,0.0,0.03552669195822448,0.0,0.0,0.0292817579326168,0.02902686145454468,0.0,0.06212536357150022,0.00532576398759558,0.0,0.0,0.0,0.021484690578850902,0.0,0.016581588034766906,0.0,0.10580406687269445,0.02038212510774365,0.0,0.0,0.030525089873825326,0.020454157501065724,0.0,0.042385305708453204,0.0,0.0,0.036295139984364684,0.0,0.029806322940798855,0.0,0.0,0.0,0.0,0.0,0.0633712850686131,0.12124994527657226,0.018702426273597667,0.0,0.0,0.0,0.0007707772954210235,0.0,0.0,0.0,0.0,0.06675119560865962,0.11352700607463337,0.0,0.0,0.0,0.0,0.020656840333839303,0.0,0.0,0.0,0.1037918839046886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0159350543814027,0.0,0.0,0.0,0.006814050721470877,0.0,0.0,0.09091767138737196,0.0,0.0,0.0,0.10580406687269445,0.0,0.0,0.009168809793658448,0.0,0.0,0.0,0.019106721655432552,0.0,0.04625423620522644,0.0,0.0,0.07649255245270765,0.0,0.0,0.0,0.0,0.008605378395167602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04282034756011853,0.06398391842254701,0.04387179355757376,0.0,0.0,0.0,0.0,0.0,0.01269700438643208,0.0,0.0,0.043144868434199915,0.042604900530686385,0.0,0.0,0.0,0.018702426273597667,0.09720544284777231,0.0,0.038638871270125524,0.0,0.0,0.0031896705924693374,0.061161375445377794,0.0,0.10870024520385493,0.0,0.0,0.0763709460759727,0.0,0.0,0.02536381315901065,0.008193192635442353,0.0,0.04376841955975266,0.0,0.0,0.0,0.0,0.0,0.0,0.07216994119256497,0.0717000547874988,0.16076070575452442,0.0,0.035517892069368076,0.0,0.033784845666105096,0.0,0.0,0.0,0.0,0.05276591518616661,0.0,0.0,0.0,0.0,0.061824971311266914,0.0,0.014944596609910755,0.0013758977755631485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14792650368111263,0.0,0.0,0.07729749146985729,0.0,0.0,0.0,0.0,0.0,0.05023642822855212,0.022879061467298175,0.0,0.0,0.07954180322631481,0.0,0.01662168825166192,0.0,0.0,0.0,0.0,0.06595772783078237,0.032291965702797853,0.0,0.08956012283484685,0.000469996821468024,0.0,0.0,0.0,0.0,0.012055585621544856,0.08630411502762468,0.0,0.03362540709818435,0.09897719213901307,0.0,0.07403662524195558,0.0,0.0838435596052491,0.0,0.0,0.07530657677232987,0.0,0.0,0.16076070575452442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04255033494038684,0.0035190558109397876,0.029487744805665204,0.0038817783522328807,0.0,0.0,0.11507695742538374,0.0,0.0,0.0,0.0,0.07006594241370137,0.012777285195345222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015734091935013034,0.06570193252376552,0.07023212801040772,0.0,0.09645307677232134,0.037932307448672584,0.0,0.0,0.0,0.0,0.04282034756011853,0.0,0.0,0.03440451287479495,0.0,0.0,0.005679333184953583,0.13350288595905005,0.012059145153780988,0.0,0.0,0.0,0.09808112767075552,0.10496568922076802,0.0,0.0,0.030886989543699228,0.009929128677625335,0.0,0.0,0.0,0.04247012154776243,0.0,0.0038705304759614123,0.0,0.0,0.0,0.07181886402437591,0.0,0.0,0.0,0.0,0.07595588275753151,0.0,0.0,0.0,0.00023265784721948632,0.0,0.0010341826808946564,0.0,0.0,0.0,0.0,0.0,0.0,0.10096614934378642,0.0428613453830899,0.0,0.0,0.0,0.0,0.015476436618362885,0.0,0.005516900836627974,0.0,0.0,0.0,0.023892289377125394,0.0,0.0,0.0,0.06300028359373554,0.0,0.0546608792550513,0.0,0.0,0.10418377693285319,0.0,0.0,0.0,0.0,0.0763709460759727,0.0,0.0,0.06801386352252917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019214714352273378,0.0,0.04039732565086043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03261104257070291,0.0,0.03345289637355665,0.0,0.0,0.0,0.0,0.0,0.0,0.07165077124174463,0.08482296841089416,0.0036553247473535624,0.022477360578182753,0.0,0.0,0.0,0.0,0.0013650062922519438,0.05045581377035439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00367743116881748,0.0,0.0,0.0,0.061389926744565886,0.0,0.0,0.0,0.0,0.0,0.0,0.01011971724243368,0.0,0.0,0.0,0.0,0.14037808038776808,0.023670795896211856,0.03214518584455327,0.0,0.0011148433003338404,0.000469996821468024,0.03494079641736197,0.0,0.0,0.0,0.0,0.07398964780081109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005136351920012477,0.03774609129296023,0.0,0.0,0.0,0.0,0.0,0.071348857814097,0.0,0.0,0.0,0.0005928006836145117,0.01293981815013993,0.0,0.0,0.0,0.07553045455796634,0.0,0.08287077657965249,0.0,0.0,0.0,0.0,0.0,0.0,0.10639565474877136,0.0,0.0,0.0,0.0,0.0979369489192786,0.0,0.0,0.0,0.07040618745173621,0.0,0.14339706088833537,0.0,0.0,0.0,0.0,0.0,0.0,0.18779099296131058,0.0,0.14461835542131488,0.0,0.0,0.0,0.0,0.0918066657065326,0.0,0.019619089633406715,0.0,0.0,0.0,0.0,0.0022629830598433942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1814443756922336,0.045936868654175636,0.0,0.01580521788334075,0.0,0.05463967079028254,0.0,0.0,0.0,0.0,0.018624246317599985,0.0021561093169253256,0.0,0.08280046381939976,0.0,0.0,0.0,0.0,0.0,0.0,0.019071169747709376,0.0,0.0,0.0,0.1416879844307775,0.0,0.016468243428000174,0.03090747783041993,0.0,0.0,0.0,0.0,0.0,0.2715998122306017,0.0,0.0,0.0,0.0,0.0,0.01986648363060147,0.0,0.0,0.0,0.0,0.0,0.0,0.030916043359563074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04917382028477003,0.10492838204971124,0.001553221977756311,0.08907803158927297,0.04198590073816751,0.0,0.0,0.0,0.0,0.17756912961139415,0.0,0.0,0.12897288447851118,0.0,0.003237945968308123,0.0,0.0,0.0,0.13705666702768216,0.005490245059445141,0.0,0.0,0.0,0.0,0.0,0.0,0.11261937324288193,0.062104392041725735,0.0,0.014684608622124366,0.0,0.0,0.0,0.0,0.06412743148832672,0.01608859292086564,0.0,0.0
+8,0.17818989252299938,0.1507912337969678,0.16511254820736349,0.0,0.056247938287145804,0.0,0.1490403399673956,0.14777998837514206,0.12376769218425333,0.17103934622839348,0.1516903273153,0.18663996998706786,0.0,0.09249147159722021,0.019540017634002278,0.14777998837514206,0.0,0.0402560797127963,0.02641296165324592,0.0,0.03731282238805435,0.14787560232033298,0.002886976856159485,0.13583646921670361,0.0,0.15565574504310958,0.07128014624547874,0.14795050611137747,0.11695770721692261,0.13762911788322982,0.0,0.14596307211018789,0.17877895379363087,0.023410846308311663,0.1651720288282568,0.1827262656381747,0.215031090643213,0.0,0.056941774969292744,0.03664721227033084,0.0,0.14777998837514206,0.10619739778819863,0.029017391863379052,0.0,0.20764456868639083,0.3037510759243867,0.17160255080956663,0.11006939747635214,0.08908729120023591,0.1347330197906268,0.18713862585426974,0.0,0.04523892961051896,0.039114345256097374,0.1511717343116454,0.08057767367887274,0.0,0.20238504197623786,0.040364882599239184,0.13602731268209317,0.06640388305765427,0.00607010388030458,0.34040169224480077,0.058390753939981554,0.029226918184021396,0.1595875552752684,0.02027249011921106,0.0,0.0,0.0,0.08569027148482503,0.03641044633274409,0.10318816781984538,0.14823728594050065,0.0,0.19636644206287282,0.1478205235326813,0.1474001988717086,0.0,0.08861932848597671,0.016517177797201125,0.1634702563993915,0.1977481832032909,0.10354308209674554,0.23638310908965646,0.061953951109532245,0.0,0.0,0.12838382105827081,0.0,0.33128449585451014,0.11434972619545754,0.1827262656381747,0.0,0.14071413973729094,0.0,0.0026653736782779923,0.02824775840920967,0.12959322002495113,0.006146003099504875,0.13059950865313086,0.056785253429555274,0.09462132674320058,0.14828321620719614,0.0,0.13905568066961863,0.0,0.25635249029965407,0.12469731478216001,0.029848714315470145,0.05455129792017451,0.028439084580164746,0.1026686371365252,0.012652197704588456,0.0,0.3037510759243867,0.10116325129698575,0.16511873272811378,0.04383524972088044,0.15466103757958655,0.0,0.1333050126409596,0.10711195651415406,0.19425816892410558,0.16220145366080102,0.06845961368841814,0.15229063716040886,0.1963636878896321,0.004210070417220349,0.171659410723795,0.0247724093198357,0.17927500538995203,0.02824775840920967,0.28886166839919963,0.0438674076423073,0.042141718370486456,0.0,0.032067408531920576,0.030913022208796746,0.2028903425838683,0.03476771051734229,0.05871238593012403,0.14787560232033298,0.0,0.17797286994960887,0.0563417492606263,0.18507971106388008,0.057316483135710486,0.0,0.06388948166456804,0.1518608450515354,0.0,0.028576562976995686,0.04395292642506197,0.027709703265583367,0.0,0.07203416900524989,0.0563417492606263,0.022027652900246768,0.11137294602200479,0.13905568066961863,0.033086339578174265,0.1793525134518773,0.14350898934090472,0.0,0.05187591378429624,0.043821570827437956,0.0,0.0,0.14827603997146324,0.0,0.0,0.0760442051298051,0.0,0.13828078647918404,0.03534315666870424,0.06162340887966636,0.12076968199224354,0.0,0.3037510759243867,0.09237140454705357,0.0,0.0,0.16511873272811378,0.014095944814953543,0.014577704302999829,0.10337434006928112,0.007314487808338983,0.05276744390500016,0.0,0.1721610616337568,0.014813109322821498,0.007950986868861401,0.16511873272811378,0.013494848135122153,0.0,0.042084365250054004,0.3233363864875844,0.0,0.22250765925408364,0.1556815397261183,0.20226234405719984,0.190388365141487,0.0,0.134183924173537,0.14692143001434912,0.17887456773882177,0.0,0.1829830041829733,0.06835849257959792,0.06406432763366388,0.11957428824003864,0.05632139936889978,0.17113496017358446,0.01666265291087355,0.16899384996899408,0.11800478762492943,0.0,0.0002483547516557299,0.16511873272811378,0.2756552872914202,0.19537988432946898,0.056534078634942246,0.14777998837514206,0.03239826156867088,0.03499317389493444,0.06719276379942168,0.11388463153438438,0.035606582041071075,0.04529271734214672,0.10930221834294007,0.0502452521775098,0.15565574504310958,0.0,0.04700727627659678,0.053785220866232074,0.0,0.05909510304252625,0.028669146097350027,0.17927500538995203,0.1595255488257283,0.05655743848092323,0.05729783176806933,0.0,0.024761324666330832,0.010229879948936994,0.02319813469874136,0.0,0.05915040409762612,0.11299262861112347,0.0,0.0,0.10572878553073291,0.07163104305644453,0.14787560232033298,0.0,0.01646061890064779,0.0884483053932974,0.0,0.1069031759095338,0.12151317943391274,0.03259439314796473,0.039114345256097374,0.011494828749362057,0.04383524972088044,0.01654755508201262,0.0,0.2276803707502525,0.10100308863782355,0.17418057422891542,0.0,0.1970644414901346,0.09903248818662518,0.1434800247668247,0.15466103757958655,0.07527252610278246,0.019872844890377,0.1650974249926223,0.1650974249926223,0.030029406257880552,0.11762721092987867,0.10272951437145075,0.12909156911498937,0.2897031816079034,0.14831657512900248,0.0,0.1373494147899966,0.16511873272811378,0.045445800078911316,0.015271696741379315,0.14130246608117128,0.190388365141487,0.051702227418840535,0.03188670533127268,0.04585622265659958,0.06658719267604617,0.048743740125288884,0.18551707273650853,0.19055888287772235,0.013770393298434375,0.20064219300785752,0.14015842402936907,0.06423716349709194,0.14787560232033298,0.03548174692029337,0.057304547894827765,0.02319813469874136,0.30374881741151694,0.0577514334767232,0.0,0.18280637797098068,0.035709213061562876,0.057168566875764854,0.05344343836014702,0.1789365741883619,0.022809269955866074,0.0,0.046126243794439546,0.03675850408523915,0.11306979755103817,0.16329973866315614,0.02028475977363009,0.08393882881889282,0.07574854553238129,0.0,0.05889070755066504,0.10650547106551676,0.182819275312485,0.0,0.14787560232033298,0.30365425304332844,0.01445574579181455,0.042084365250054004,0.09347859264571821,0.027526393647191526,0.036853904234599145,0.05445515578704721,0.02824775840920967,0.11846654274415372,0.1429996108631547,0.33383132889020045,0.1517988386019952,0.0,0.1383562902097167,0.14827603997146324,0.04690157451470121,0.052566621032851236,0.3037510759243867,0.14008091596744393,0.0,0.0,0.02362454585615048,0.19870153236497076,0.0,0.09840155907867094,0.0,0.06417812199299838,0.0,0.028739704839419157,0.018633849572257402,0.18561946784053607,0.10337434006928112,0.03675531234343592,0.14774123434417943,0.03984069166577338,0.06324580230393542,0.0,0.14157194204531953,0.0,0.0,0.073606066587897,0.016675583545364782,0.0,0.14777998837514206,0.14579376065277072,0.0,0.0725344911224508,0.0,0.3037510759243867,0.0,0.13234130840220656,0.0,0.0,0.14777998837514206,0.11748215776713322,0.042084365250054004,0.0,0.3037483613656489,0.15104992633753625,0.14827603997146324,0.11648230376829824,0.038569018994364754,0.04407526161464553,0.06563856540086811,0.0,0.0,0.085528196866688,0.17910709192459734,0.16153237355367053,0.01082137810285963,0.042084365250054004,0.0636683725073196,0.0,0.01837714886773497,0.0,0.06381740465242448,0.0,0.1478205235326813,0.1920942196327541,0.073606066587897,0.18314480917257078,0.0,0.0,0.18264875757624963,0.13829967609446878,0.006013286518795109,0.14340853368256157,0.07976395482873899,0.1711969666231245,0.1977481832032909,0.185213118134083,0.16513865513095718,0.0,0.08490043753821704,0.032289160961995064,0.028042467701270144,0.0,0.14658469752698208,0.13730716431582515,0.3071246126999426,0.14777998837514206,0.0,0.006221693471286856,0.171382985971745,0.0,0.026551040220570747,0.30553182645635335,0.03360041528124363,0.14017652991263485,0.061546084881964454,0.17887456773882177,0.1434800247668247,0.012317954782865155,0.14347701680857278,0.268731101521419,0.0,0.0,0.11306979755103817,0.01772854148490486,0.09272487644217689,0.14347701680857278,0.18859536394411752,0.13485431524646424,0.027352532890919937,0.07380415334961105,0.0,0.03505983730886344,0.1437805723798025,0.04898980633791821,0.05181875687805595,0.017985513774800843,0.012653599918935107,0.0,0.0,0.0,0.06263514258803769,0.13069258456315694,0.06169100838979742,0.07580684468711556,0.0586871596665577,0.023119469225537353,0.30375967564646794,0.1753478808460934,0.06639471757673468,0.0,0.016416279347022566,0.04462661786489381,0.0572811540894407,0.0,0.3037510759243867,0.10921809965168529,0.032061340388047345,0.14777998837514206,0.027526393647191526,0.05776904273226938,0.19048397908667794,0.027641472878487224,0.14347701680857278,0.14020232459564352,0.0,0.04486119041976155,0.0,0.16511873272811378,0.2028903425838683,0.1863889491461474,0.026523424507105788,0.05754350336735784,0.11137226984773613,0.14015842402936907,0.05197875947269095,0.030592667809607434,0.0,0.009155778129751168,0.14241470621925592,0.08165081478474663,0.0,0.0,0.17877895379363087,0.14777998837514206,0.12904506427783427,0.009338576327159474,0.07901185656034879,0.16511873272811378,0.0,0.047833863246110865,0.03301441829715163,0.07340932256903127,0.1434800247668247,0.0,0.064086990138564,0.14787560232033298,0.0,0.09340429197049291,0.010453801134472758,0.05316641790656373,0.14791613747787224,0.0,0.03236235420400322,0.04425727295268541,0.0,0.14840005287054364,0.13905568066961863,0.3037510759243867,0.1284715046195878,0.0534295696367275,0.06161909964151293,0.0,0.09913487889880633,0.03960629168630691,0.1424263727468644,0.0,0.17138677537398272,0.1827701662044492,0.17765723838826752,0.0,0.1107131435095151,0.07668156707318756,0.163395352608347,0.3037492625991499,0.0,0.05930429482923974,0.014174323142150615,0.0,0.007651612733251069,0.03675531234343592,0.14015842402936907,0.0,0.0,0.07600366997226585,0.18663996998706786,0.045445800078911316,0.02953421847602187,0.11941374298610578,0.15104992633753625,0.0,0.19048397908667794,0.0,0.14809002062284282,0.06163760564086479,0.14787560232033298,0.05436396316409732,0.1824110868551622,0.16510567102028922,0.19206838054075223,0.0,0.14787560232033298,0.13461881261338007,0.0434905570580306,0.0,0.0,0.11906520204573054,0.0,0.12494534058032061,0.13000516140490967,0.0,0.039114345256097374,0.14795050611137747,0.0975130743586383,0.07253297225821023,0.02680623395449705,0.0,0.0,0.026074441039832096,0.042084365250054004,0.19442868666034102,0.16910444433708416,0.08499543065665807,0.0,0.0046600636771392985,0.16505482601369453,0.0314418282610137,0.18578998557677143,0.0,0.0,0.13248625332007763,0.026439754675499253,0.18907333235963952,0.1944157893188366,0.08518409179052626,0.0,0.19433529144104303,0.11941374298610578,0.1626442645270678,0.0,0.0,0.09340429197049291,0.1651214869013545,0.0,0.10163090393941754,0.0800373089495175,0.0,0.16294259105141568,0.320477976224189,0.09800088101656082,0.0,0.008228807418408656,0.0,0.07420600724876555,0.1292594714258234,0.0456644701351552,0.0,0.0,0.15080158887404108,0.0,0.1906363909396476,0.02042097291516312,0.03854809484353448,0.3045925891330905,0.1363816299210606,0.07551258267348097,0.1463997790231304,0.018013829077270876,0.0,0.0,0.1861387718554348,0.06472328071830684,0.16512079423503054,0.009508784130336892,0.009305584248951086,0.0619070631319756,0.22910532689587534,0.042084365250054004,0.0434905570580306,0.0434905570580306,0.14863371001862735,0.0,0.007342932515134698,0.14787560232033298,0.14787560232033298,0.0,0.0,0.10253868009191822,0.10510791966143121,0.14402822781198765,0.0,0.15021522142789628,0.03321534365471362,0.0,0.3004474803210689,0.08921226554033963,0.25484576310908025,0.13531201866649306,0.17500476395620307,0.013217871301003953,0.11862112491672526,0.15571775149264971,0.058390753939981554,0.13234130840220656,0.0566354741671198,0.1437805723798025,0.10582624158212203,0.18381473567452403,0.06182337118666276,0.20300944575271918,0.03734810224024187,0.016616506305401603,0.1640270355985398,0.29064241893116627,0.13988714581263093,0.17014025271006133,0.07369673023938379,0.0,0.1434800247668247,0.0037059458621221367,0.19444418827272605,0.3037510759243867,0.14694482865433514,0.30374971864501776,0.03863003447342494,0.1752847118048444,0.09410954034544144,0.0,0.07144619593106492,0.1677896069411763,0.167665594042096,0.0858554827242292,0.31999782029814755,0.23915356655086933,0.0,0.3037510759243867,0.05554262113684618,0.006146003099504875,0.016651096059294414,0.16726515639096573,0.0017163282574988931,0.030190317443593507,0.022505305946648624,0.14350598138265278,0.0,0.018013829077270876,0.041910878230808093,0.011623740331893877,0.29299211219460947,0.160096504213094,0.14412123748629796,0.0,0.0857531226333192,0.0017163282574988931,0.06755030239153174,0.16340049914365887,0.103009251113149,0.017355444978907945,0.025983384558599408,0.14588562164137198,0.0,0.06150012342707096,0.11195809193444761,0.09850517755128063,0.09581789475141579,0.035513779282476295,0.15905014537710394,0.0,0.040473600843120155,0.09761205691049576,0.3036642100447786,0.11941374298610578,0.22700448514273963,0.3037510759243867,0.012886700209391512,0.144848015134633,0.11569442020294536,0.14347701680857278,0.17503055863921177,0.1941031528002552,0.030898926071933893,0.18226896807281617,0.14777998837514206,0.11053713454316236,0.016654964399732228,0.18659606942079338,0.06463730490723421,0.03589300338410138,0.13185800567417705,0.1977481832032909,0.10169291038895772,0.0,0.12921664530991317,0.015341020256736344,0.04577963434150442,0.08644973682376361,0.0,0.15809814773126818,0.08542071757989694,0.02029925604778613,0.08517569733538474,0.046363956676495635,0.0,0.14876961251445744,0.14347701680857278,0.0,0.034120607080354276,0.032364882947244364,0.006146003099504875,0.04128766262547489,0.013222265273648212,0.023765226640350714,0.0,0.14688089485680997,0.22214582750791556,0.163395352608347,0.044279302795544734,0.0,0.07797164710719307,0.021902757473572534,0.1708251765689488,0.18540504953802628,0.19048397908667794,0.14787560232033298,0.0,0.04194671496668444,0.1363067261300161,0.06538955761524452,0.03525965694755183,0.1677896069411763,0.14154589018646943,0.03476771051734229,0.08053661794997863,0.0,0.025618701033235824,0.29710891413163215
+9,0.0,0.0030078747185274023,0.40469632176475284,0.0834119468711321,0.3890409172034186,0.3862521277233097,0.005875587241219324,0.005922837512490092,0.5297423869721672,0.0,0.0035043172333607403,0.0,0.14262565059440988,0.007829598301322838,0.08845637395321777,0.005922837512490092,0.23386529653203003,0.07595634067940273,0.396756682811902,0.05638622548935503,0.3573160478941727,0.0059756316061364825,0.05728590246422121,0.012871252919692412,0.04414207016964651,0.001163661790344533,0.34900389955488487,0.006016990403234353,0.02509815715697077,0.41412448450853234,0.16409527185378303,0.3854697575245688,0.0,0.3725322175398945,0.37965898325443953,0.0,0.12110212847359761,0.04995261208235286,0.14581745411228433,0.38906755122828135,0.07757594538058013,0.005922837512490092,0.0650193167470084,0.39281922551572457,0.19324383527981445,0.10958320908563207,0.09694370621911778,0.0,0.387811701973415,0.04321975424414203,0.08930748524848105,0.0,0.3791517282149011,0.40082673477132785,0.05556037456098118,0.059340669774368374,0.44477436628080613,0.10478444739803024,0.0,0.08044241655170857,0.3803692249863757,0.3501956834145521,0.3752199166506848,0.10740598988757036,0.04628411243996918,0.05820972853688531,0.0,0.3830679434453312,0.0738775170128391,0.0881126160529678,0.12097015685582789,0.46691267832654537,0.07683244283396692,0.0288206736493431,0.006175338446758732,0.14815223543500608,0.4041019001209698,0.005897766770023338,0.0057131333467415465,0.19973972294120076,0.03667516757604352,0.4038583806024732,0.0,0.0,0.10452842494724823,0.0,0.46549761947270385,0.38306191157420405,0.09248233849259037,0.0,0.22532471419545527,0.17766935559586539,0.35041276108694025,0.0,0.1701701451550415,0.006488341675846652,0.07551077184521407,0.4973731880508714,0.06264135950884737,0.023014575882694347,0.4290166669289996,0.05664227268272282,0.1058184219223106,0.08679366643281151,0.3298173173465367,0.0918909043905562,0.4122675999900672,0.1562148320175783,0.10100043609024376,0.020311258083645513,0.39211683720318136,0.04756847948641665,0.37152560772217047,0.06843993971575901,0.48876301820715584,0.530173764177914,0.09694370621911778,0.03449789228669623,0.4046882716873606,0.3897110478067869,0.0006144251818648043,0.19973972294120076,0.0160036828177455,0.1068160120879417,0.0,0.3266747816987035,0.01843873119171695,0.0888259220567135,0.40410548508876853,0.10400199551619792,0.0,0.39779540096527877,0.0,0.06264135950884737,0.10941118003130376,0.4967046893084936,0.3561328940592678,0.0730367492585127,0.4807955934178982,0.0628375441537792,0.0,0.05839276854012766,0.062260073196742184,0.0059756316061364825,0.10785953487858665,0.0,0.04758025766118147,0.0,0.046277045535110285,0.3887580746077028,0.4882633928077181,0.003598470124104987,0.15000463048198992,0.3896117133991992,0.054340362216339796,0.35967557208426515,0.07984857126894108,0.39212128888902986,0.04758025766118147,0.06731481508935298,0.3861149388609988,0.4122675999900672,0.061421347164205976,0.0,0.08543634371441487,0.13790056940282863,0.35375266613279804,0.3900228418997767,0.10480157041008978,0.11629189314187592,0.006196736831018794,0.3744439403736431,0.23038568944242038,0.013566238581351472,0.3735451079908934,0.3803271927823788,0.4785330587530382,0.4712483257434533,0.5855823177726349,0.41978219652084875,0.09694370621911778,0.10485344889967713,0.1674424034407084,0.13668935617443406,0.4046882716873606,0.07427268736997228,0.1069408575038319,0.008493358922023249,0.5282947121371472,0.48726503922290926,0.09235766442954474,0.0,0.4059495168620151,0.0937840716660773,0.4046882716873606,0.5296220979724705,0.3718476103832533,0.06367635394642658,0.1723868058758072,0.3787155819376822,0.11422292952618145,0.0011779045549080258,0.0,0.0,0.09248049601875226,0.08930387311784418,0.005401324255190028,0.0,0.0881126160529678,0.4043550640401201,0.46422904558881867,0.4757848894942711,0.06372966234216806,0.3526393674054508,0.0,0.06997308932344881,0.08782143037307599,0.4543654794106814,0.09236994758846549,0.537421503998556,0.4046882716873606,0.12432826735135773,0.0,0.44297590361330097,0.005922837512490092,0.11348636487581197,0.4843320289413961,0.47623706365041935,0.0664713036225794,0.47444213658848716,0.4708141689681275,0.5236384019566326,0.39684936866322584,0.001163661790344533,0.07617342270416408,0.35494306063863357,0.3968063761541634,0.13172133679055537,0.48699649958600094,0.513232474465289,0.0,0.0,0.442975467901196,0.39738697183108035,0.19973972294120076,0.4972759476206442,0.095299844142032,0.39773594370352694,0.3780446631688628,0.45855507444095245,0.41984692829277387,0.1582933408541051,0.12332727501607015,0.03957137017094467,0.4904377162499762,0.0059756316061364825,0.07814421166778632,0.504092403713082,0.04283024701377589,0.15599496347289685,0.06925636342574283,0.5310224005589869,0.0598089655297009,0.05556037456098118,0.07402660732714933,0.3897110478067869,0.4033550502038725,0.3764403643205631,0.003792305369698957,0.034409457044226294,0.0,0.09225939915817874,0.10607666541375227,0.007749823080372449,0.0854498711389584,0.0006144251818648043,0.45424469181333643,0.40054549695369973,0.4047160068873359,0.4047160068873359,0.03346071899967906,0.06802390272206595,0.380822804885619,0.018207388601497378,0.11063598678523777,0.006171666088552082,0.530483524742621,0.3786483116417829,0.4046882716873606,0.46827769490888116,0.08087866551217285,0.006589091709492387,0.0,0.10237050859746553,0.3824356721449591,0.489621649384209,0.3501622854859053,0.12716942058534011,0.0898313299098895,0.0,0.5225234750035598,0.3792689452328388,0.010727462611868728,0.4825025476091887,0.0059756316061364825,0.049525146902484544,0.13932962072487307,0.39773594370352694,0.09694041899582981,0.4164314188801854,0.1029762804294374,0.0,0.04157174329129449,0.4854664763078024,0.3531637148852057,0.0,0.36086858200832295,0.10108749317299669,0.05292416522676656,0.389724280869881,0.02748160936850708,0.0,0.37272195574773603,0.00886493304506649,0.34788642608645676,0.056409781838884676,0.062368772888937406,0.06652960303563923,0.0,0.3887580746077028,0.0059756316061364825,0.09680278232460385,0.5038603688667947,0.06367635394642658,0.03963723418836286,0.35970897001291197,0.40904030792981594,0.38958207027959946,0.06264135950884737,0.3370698841869129,0.0854467108191055,0.1056322593558513,0.003564232709288932,0.3755146898795335,0.006202988881124277,0.006196736831018794,0.3994219581462415,0.3923057820067086,0.09694370621911778,0.010684665843348606,0.08391678470277499,0.3764403643205631,0.41908883089745097,0.0,0.15972204388161035,0.4654482265204997,0.3853448019394283,0.4030207370632421,0.22310930388865477,0.06425374114335244,0.42334891808167385,0.0,0.008493358922023249,0.3897970328249119,0.005901439128230016,0.06618100255229174,0.39082569674323214,0.1094337425785879,0.3920215265412445,0.18622139675505892,0.058960848669632394,0.012267451205124449,0.06993725717722038,0.12612162305212102,0.005922837512490092,0.0841417494432556,0.2435184574951275,0.4754682126225029,0.4169452433650996,0.09694370621911778,0.16909943852978732,0.015471564916673843,0.16442691714464333,0.10997860917672872,0.005922837512490092,0.025387737211485233,0.06367635394642658,0.2041201533370062,0.09693975522958895,0.3918447414507038,0.006196736831018794,0.024835658897575833,0.40676614243441933,0.4170656197958993,0.3503351197666525,0.0918417717548732,0.056409781838884676,0.014272713056967277,0.0,0.32679668413826435,0.13950127205725668,0.06367635394642658,0.0590217688329145,0.39255097179156284,0.09518719365755295,0.3887580746077028,0.48945765857167056,0.17870026091961907,0.005897766770023338,0.004757278392332419,0.012267451205124449,0.0,0.19935416480776602,0.2335004867120837,0.0,0.08541579311034785,0.5226070092879057,0.003509099767955734,0.48667534178766864,0.0,0.0,0.4043134675482282,0.4046623397047213,0.36809498491139725,0.4515814529922438,0.11146821841390418,0.39590099389438,0.09246698454393944,0.0,0.0,0.09791837520939012,0.005922837512490092,0.11794584386229229,0.5191538516038042,0.0,0.16453695459551898,0.3944688173637172,0.09953555535002324,0.4106601711469326,0.010737459936994995,0.47252953039443685,0.0,0.0854498711389584,0.49430119003734424,0.08544985135162479,0.08682587281115714,0.4169452433650996,0.11270492734217974,0.02748160936850708,0.05960642566165711,0.39633345855447594,0.08544985135162479,0.10444381799378465,0.38189605633176105,0.3597374688258355,0.3920997926344986,0.1562148320175783,0.4835013150405084,0.003714524256852244,0.4618441627887836,0.4768400323382226,0.39025501702164644,0.39059429296260795,0.05380335758674231,0.1294497775426393,0.2391949490424747,0.39669889488150717,0.0567730952865851,0.019231581585727346,0.06719038934670724,0.09858940170442695,0.05783870458809048,0.09695622295394508,0.08904495926025081,0.35019735331098445,0.23038568944242038,0.5071012129833611,0.1299078148844508,0.4931824124809191,0.37799296713367964,0.09694370621911778,0.02988505623029596,0.059769728600714535,0.005922837512490092,0.35970897001291197,0.040855506577302636,0.0,0.3593814681305546,0.08544985135162479,0.010751702701558502,0.16192743192642026,0.5182380526120042,0.11794338723050815,0.4046882716873606,0.0,0.0,0.39492639045335415,0.48883546812936796,0.3861158190027937,0.010727462611868728,0.3976593233233339,0.5075051512857909,0.13024215067134454,0.09032806012631521,0.08544286312497333,0.45313725597681126,0.10608774596956674,0.16955245073831252,0.0,0.005922837512490092,0.018181710540385296,0.5197974560377329,0.04959672158728521,0.4046882716873606,0.06026052734327412,0.025170823908631974,0.3939975050746765,0.058700239542991396,0.0854498711389584,0.12626989055781265,0.40453072825904407,0.0059756316061364825,0.09207760840615162,0.03959194264994818,0.08698264439499441,0.028115241582815705,0.005950560863669756,0.07956692143466558,0.42823096907685737,0.4975521872002434,0.38300390036749704,0.006265211660650947,0.4122675999900672,0.09694370621911778,0.01786501445333648,0.40491302257189704,0.023722072779875474,0.3756794240323189,0.40347177941091494,0.05717275619548626,0.09818333020620384,0.12596520078646373,0.10423754562100834,0.0,0.0,0.22544066364130233,0.09549316415442025,0.45704195529377495,0.0,0.09694106695811253,0.30884306303327924,0.0626208837083688,0.07674052771177728,0.09311922028263134,0.38575894676247624,0.3897970328249119,0.010727462611868728,0.05251074581795947,0.3748459573116866,0.013591309323818206,0.0,0.46827769490888116,0.3844307793075863,0.0,0.3918447414507038,0.12277067753037818,0.0,0.1700521236508674,0.0060940245865705196,0.3513674285170313,0.0059756316061364825,0.39166069756619787,0.0,0.404705273450813,0.403974009342094,0.0751266742506287,0.0059756316061364825,0.4123503572617461,0.05273421529164209,0.17664713090601547,0.13980540517268158,0.09902692864528889,0.1648164907508217,0.02044820774290984,0.007054274320597628,0.06859528457075821,0.05556037456098118,0.006016990403234353,0.03701261074663747,0.47549337914243295,0.4186586577133904,0.08013042955467121,0.19813328046123505,0.06405755649842061,0.06367635394642658,0.0,0.0,0.3455949832135016,0.3887647885708144,0.24789830242911487,0.40477145582041324,0.07948026081077168,0.0,0.14030541624278456,0.13655543463649178,0.07407234015724673,0.10661919982962074,0.0,0.0,0.4730255885981792,0.08007335875225313,0.37889462991019884,0.0,0.08659568813029937,0.22163051074061568,0.12449430517093552,0.03959194264994818,0.4046846867195619,0.12622540018609402,0.034756110869239194,0.5026879518555689,0.1136930175496568,0.37969969960453664,0.10177532518459975,0.008773076678826233,0.07953014655468492,0.4104704479472319,0.14346280173810522,0.471916164535116,0.09593408967268449,0.464654484761747,0.09246698454393944,0.15137894377765704,0.003013592366801717,0.12455593792590264,0.0,0.5169043685032142,0.38925587974873105,0.09816851297305176,0.013172268270755478,0.39348136979842124,0.00626208433147872,0.06950450369367267,0.11726727355131568,0.07211749487120576,0.0,0.42240605997172725,0.40468558832822993,0.050478618096115174,0.3728726732378724,0.4926924613493887,0.09334839164381063,0.06367635394642658,0.05273421529164209,0.05273421529164209,0.0,0.38570392821586513,0.24902924551080607,0.0059756316061364825,0.0059756316061364825,0.09238223074738625,0.09974388409202381,0.5274784427170911,0.00759031708338464,0.008334013075206115,0.2439028433605412,0.00588131599782477,0.3898400253339743,0.061833690210506116,0.09598924435752351,0.395752862877559,0.0,0.012581672865177907,0.0,0.4346556308463061,0.06731201774327956,0.0011978992051606416,0.04628411243996918,0.015471564916673843,0.47546265561871254,0.003714524256852244,0.032542407760361027,0.09067891335801934,0.49635331227240054,0.0,0.5097301014236604,0.06991834808479731,0.4047086342212016,0.11200302916220925,0.010577673922048322,0.0,0.05261610477103179,0.4267786797407043,0.0854498711389584,0.43539706269092343,0.0,0.09694370621911778,0.33036452118332055,0.09694173072435337,0.5123593341005983,0.37794073556751495,0.4581317145369075,0.08808485721885731,0.011074859334835579,0.0,0.0,0.34543828681187655,0.1714222404498739,0.003468751629142253,0.12645031243483884,0.09694370621911778,0.0465107979801556,0.4290166669289996,0.06995938005136079,0.0,0.08080976277736432,0.4872510365209916,0.3609239624536051,0.08543632392708127,0.37901537396731416,0.06950450369367267,0.4036820453304643,0.08763280203718925,0.09135076129173593,0.0,0.008385369197430267,0.13231176682353168,0.34545693621523293,0.08080976277736432,0.4798943265184562,0.0,0.021926588814596477,0.07201163555323394,0.38974610311020425,0.007094491538354681,0.09311922028263134,0.35139247696351633,0.067561916517873,0.0375604093836949,0.07229152357681125,0.5139794635236311,0.0,0.12793417747262933,0.35643681520995374,0.10468925378435383,0.09681727455419556,0.0,0.08403140548368607,0.09694370621911778,0.5535797130721517,0.3854905557705147,0.06830124248630409,0.08544985135162479,0.0,0.0,0.5024306657217169,0.0,0.005922837512490092,0.0,0.06996396885577935,0.0,0.04370595580726239,0.46969633492616125,0.09129964336578962,0.0,0.034790348284055264,0.19973972294120076,0.0918933034334946,0.05909715965005534,0.4908906642880846,0.10501432336404769,0.14478346428612326,0.385410908586194,0.44296077598348343,0.42189838414762376,0.3455621396904704,0.5172082197145039,0.1822322065824944,0.38098056860388346,0.08544985135162479,0.05100067377955581,0.049923639575810856,0.4854480777558955,0.4290166669289996,0.05414417757140796,0.4061646034540453,0.42257630843460714,0.0960870035069124,0.005426394997656768,0.003955067464440719,0.0,0.49946130191273624,0.10571032041543682,0.04896264004947987,0.42470588612438787,0.37802302694263096,0.0,0.0,0.0059756316061364825,0.5157670209708923,0.39243475953389606,0.013130909473657621,0.3503804875129264,0.06000515017463273,0.0,0.40965074851583144,0.05839276854012766,0.4454546310417076,0.3787932747195292,0.06608526258751854,0.09502467893159021
diff --git a/data/without_training/activation3.csv b/data/without_training/activation3.csv
new file mode 100644
index 0000000..d384f68
--- /dev/null
+++ b/data/without_training/activation3.csv
@@ -0,0 +1,9 @@
+,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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810
+0,0.10098370736772949,0.1187519077270897,0.2449347706802907,0.11501354371704985,0.24986301433386693,0.21106498917587538,0.08650935599303207,0.12134418217219321,0.39059337835304936,0.10539195017493808,0.11829157114871156,0.09572312970002168,0.2108823241627291,0.13120937786574052,0.2386785294065414,0.12134418217219321,0.3060222216799511,0.10756512684465434,0.31749650682464536,0.10830646042088943,0.28139148242754997,0.12129522775813399,0.08404058868071758,0.1305672574453998,0.1857983083607551,0.11522164953300719,0.2448493788758454,0.12125687695905259,0.14543132154945868,0.23039942849468315,0.21461931839869883,0.17183922638348478,0.10059735460626641,0.2108808260836964,0.19540173042358538,0.09814922093226444,0.1437226194053196,0.09663333983702421,0.11484758234746648,0.19389834709484027,0.06830931727231991,0.12134418217219321,0.051678613401901066,0.3114311856272983,0.25259901026764536,0.038007910825907376,0.06271732730456306,0.1050225562662677,0.2083742349156149,0.16837596311823885,0.12468961984532433,0.09539607192026528,0.32626848593201685,0.2597745334434695,0.08553658011223594,0.05394209848916816,0.35736819417373605,0.1608942080218879,0.08510349483895989,0.10954825074147817,0.23653826911077008,0.2500638730037291,0.2263420459277896,0.0293266384082146,0.06731183928927317,0.059714011871338506,0.11248046366272038,0.15800344501502575,0.1205532912649525,0.1366808101070257,0.17087246387445298,0.35897434225607794,0.22001006526497738,0.15508039805765755,0.12111004546422503,0.2083397391753482,0.21222171138873777,0.12131253835035673,0.12153863469237021,0.23628675811934985,0.16621183928051148,0.35814283881890496,0.11007470678634407,0.08885996154395168,0.09957971261563098,0.05503377430663955,0.4192294394304592,0.3167143335095066,0.12365427546220027,0.13431133029846887,0.296041304550663,0.10406206362447176,0.1380094967617573,0.09814922093226444,0.23009572056904684,0.09313124951274376,0.15037946567334728,0.523569089050678,0.0983364128683456,0.13688267986647337,0.31707732316224435,0.07371101002348665,0.10007219932112095,0.06553462785435916,0.17154990121164976,0.1246323234830651,0.23004699383494845,0.2048187101600425,0.06453600586006988,0.13938938714616841,0.308253500275458,0.07019846178823329,0.20685358498690984,0.027228390846968622,0.48989982526509573,0.567275086645288,0.06271732730456306,0.15767659388462377,0.24493324278436698,0.2724273170547328,0.11573094052544455,0.23628675811934985,0.13290298983961646,0.1565322701293919,0.09100816346892314,0.16291816670346518,0.15177568926835763,0.10497870129863213,0.21222239181172245,0.1582570269195335,0.10498526305760854,0.32454542449996066,0.10027200491240282,0.0983364128683456,0.03416377709658892,0.4090623471527937,0.2761654266756632,0.12957860371934307,0.4227031712235297,0.09779097657459132,0.08494020272205945,0.0906565132146798,0.1968703550038758,0.12129522775813399,0.16751789952283647,0.10112604785879487,0.06964511293252819,0.09667605823589907,0.06764384860269622,0.20395119291901215,0.4319657411271332,0.11820426593557092,0.20145740979136922,0.192034038488593,0.08243117726725978,0.29192402644368215,0.13662844144265252,0.21854178475663794,0.06964511293252819,0.10624466285435871,0.20805219112440002,0.23004699383494845,0.09523101002336942,0.1002211690227366,0.11729052544626153,0.18113396697096834,0.265731964107201,0.2722446065174129,0.1608779951259654,0.17486233172105606,0.12109020337032947,0.24870924817520154,0.30231317782027933,0.14581312324064985,0.3443760988813163,0.23333314852141737,0.4115479472790908,0.4192590651876638,0.41879661154852216,0.4181139121136685,0.06271732730456306,0.09582054870071265,0.24459662064904797,0.1770869722359482,0.24493324278436698,0.11623689065943472,0.10914506586039036,0.1250973120592283,0.5808093335640457,0.44745235147993345,0.12386044757874812,0.10451541666477118,0.3631978089507704,0.1459363856507978,0.24493324278436698,0.591425325318391,0.36286248787483155,0.0955269591043921,0.10222084546057379,0.2740113938989508,0.1357554049354981,0.11520844263531027,0.08514314569755067,0.09340546125325894,0.12365732234076994,0.12485932087239197,0.12177287492873484,0.10053464345277421,0.1366808101070257,0.22623084688480505,0.3967932760596924,0.35434399343062445,0.08322137299557525,0.2604123236309931,0.10532923902144585,0.12329403978195225,0.09543785563352827,0.2826126716499156,0.12384013505495028,0.5241831437567359,0.24493324278436698,0.018426433668920904,0.09013162995875626,0.3372625115609491,0.12134418217219321,0.09079267758892604,0.411636862002474,0.34783224134939084,0.04547746661167199,0.4114266728520312,0.3814496089812182,0.3685821802954125,0.24163215208475744,0.11522164953300719,0.13283953242637492,0.27094831954916576,0.235098203432453,0.18235385378614025,0.425090070424304,0.45241493016302176,0.10027200491240282,0.1125211323744533,0.3372463780053372,0.2281988337055087,0.23628675811934985,0.4453140255535234,0.24921721318206724,0.3336749830901804,0.25672513365414773,0.35137287028704356,0.21905512095822507,0.20752325762454257,0.1701232428618114,0.09038520300077145,0.40410992416594593,0.12129522775813399,0.11862680868646674,0.47336624570576313,0.16867462630719937,0.2043027126816782,0.027322984355191853,0.39220884722834337,0.09321647976590175,0.08553658011223594,0.11672991546435313,0.2724273170547328,0.35909646590490274,0.2527251327811565,0.024805104625585012,0.1577585972902755,0.10347250975346446,0.12402294776913063,0.04522556145937241,0.12630667209972252,0.11731546154895636,0.11573094052544455,0.3742820239111768,0.34638572449754157,0.2449385068951228,0.2449385068951228,0.17976898258459206,0.04091339053636095,0.29103807151621264,0.13609990085625276,0.031537704661191594,0.12105855954849296,0.5639721481912653,0.23787520252241165,0.24493324278436698,0.37977015211543713,0.10343814902919476,0.09296737971932655,0.09340546125325894,0.10682926666896161,0.16508233125781208,0.4010026052138397,0.25010861613067553,0.1183240167730488,0.08374930108079842,0.09329362229599335,0.4792383873988257,0.15557467433608033,0.1273147885658558,0.4318774109683907,0.12129522775813399,0.07024291761804909,0.14637065398339527,0.3336749830901804,0.06272437534413158,0.2762148501942907,0.15552432052827508,0.09809667695670544,0.14475894416202534,0.3743766847609932,0.25970985653793427,0.10049397474104128,0.2970655333155311,0.15255792036537694,0.07987121071603782,0.2881555397168993,0.14846155897737184,0.1101865457436097,0.21450856320392686,0.1396918204617771,0.2395353312905058,0.10765370949909046,0.19678700713718913,0.02515599675110373,0.09808821786466498,0.20395119291901215,0.12129522775813399,0.06301947811625902,0.4320435348772436,0.0955269591043921,0.1639406099133006,0.2918792833167356,0.2897179112429907,0.2528254710978194,0.0983364128683456,0.19624222036422398,0.11745757227999962,0.03478394188258915,0.11823601328580388,0.24414977598514115,0.09439740656873008,0.12109020337032947,0.25355868681100674,0.25450895410053254,0.06271732730456306,0.127354472753647,0.11442029464634805,0.2527251327811565,0.34058053966548446,0.08823468010105752,0.23283596436192028,0.319039884381136,0.18846779320896684,0.20733083990007145,0.3360928333218083,0.10035094312581327,0.3591843928181498,0.09639245535772263,0.1250973120592283,0.2880479098084359,0.12136402426608885,0.04940208693451815,0.23569885380533864,0.14429647599261133,0.16072867445066885,0.24369282728913963,0.11294307110834556,0.1470723418539447,0.12326225754379089,0.20158175542042014,0.12134418217219321,0.11505204040833691,0.3206334049120542,0.40388039905528195,0.4235106061737261,0.06271732730456306,0.221593680234148,0.1333964071569373,0.2153976386174606,0.1594915650111101,0.12134418217219321,0.14516280246118818,0.0955269591043921,0.26567272363672945,0.06272579850596754,0.16577788557391984,0.12109020337032947,0.14567472848369492,0.2843321127602608,0.28586432438255555,0.24987707044872778,0.1247135735782564,0.10765370949909046,0.13991768745421088,0.10038213578377564,0.16298558363947632,0.14064076348047616,0.0955269591043921,0.1921710668877631,0.4454784813734803,0.10493289045839534,0.20395119291901215,0.4319840526215191,0.23912368013332844,0.12131253835035673,0.05247922016424462,0.1470723418539447,0.09787470712806699,0.2602181969024294,0.3061205265804459,0.0982000568219306,0.11884785503562233,0.5308122409968329,0.1235823703636178,0.3760459828375414,0.10528857030971293,0.08885996154395168,0.22389610437262464,0.2449283209222981,0.3273809676768559,0.3407039435098301,0.09773919234028336,0.3101008156635126,0.12367966611694753,0.12086793733562633,0.12936290019025404,0.05937943599681225,0.12134418217219321,0.15462128217572718,0.5307592942579624,0.10516656417451403,0.2156558795007108,0.3218311753973626,0.057160219183206136,0.3032854598707084,0.12730551833958773,0.41927870970271375,0.10053464345277421,0.11731546154895636,0.4899847412071225,0.11731635132991994,0.09736727361737905,0.4235106061737261,0.12819182532790457,0.14846155897737184,0.05901324476642725,0.1884205122573922,0.11731635132991994,0.052551981866339505,0.2353521130233638,0.2917697588232364,0.21605915554551522,0.2048187101600425,0.41156557585031833,0.12339188626221997,0.3686992181102894,0.45288204733769616,0.19077541747812599,0.19110529205036147,0.10389831255606294,0.2063082115730986,0.31453973046152933,0.21876333180169177,0.0738478651509615,0.1562808450933943,0.03199324698403056,0.09747872311056766,0.09351278132219626,0.06269049053851357,0.09041418961286606,0.25006163584738184,0.30231317782027933,0.49703724762489243,0.1240010448868043,0.4543993272822191,0.2785039907409957,0.06271732730456306,0.151473255952749,0.0933255670246526,0.12134418217219321,0.2918792833167356,0.12786445978703082,0.09334275009976677,0.2854355679435183,0.11731635132991994,0.12729231144189085,0.21480738710799024,0.5175351561507898,0.15462534468048672,0.24493324278436698,0.08494020272205945,0.09602859316003444,0.3209642416828192,0.45433267624901386,0.20805235817435436,0.1273147885658558,0.2378779496590855,0.44673757309766504,0.18297226023748944,0.14341276530708963,0.11763059230689749,0.3519068801883646,0.15579284026898751,0.2502124811106922,0.10059735460626641,0.12134418217219321,0.13612371136892745,0.5195900807571423,0.17785094156159384,0.24493324278436698,0.1149186822181292,0.16649458814427504,0.29027835762680204,0.18523527768222547,0.11731546154895636,0.2002644962215795,0.20622508102038628,0.12129522775813399,0.12432357312133833,0.1639753381910866,0.13928472912320536,0.16376431602423938,0.1212635839362975,0.11000597204751478,0.27780681799425155,0.47555778722026393,0.29060276547012204,0.12102670866986348,0.23004699383494845,0.06271732730456306,0.13641737435858248,0.23073304758167779,0.15735728709326988,0.23541056059260243,0.192137187406667,0.08755111036970363,0.09087543190679107,0.1885159115942453,0.06395575773983442,0.0981204274843575,0.10147388811643339,0.2960693221569927,0.13833672350545448,0.3687353730298847,0.11012383459011749,0.06272298606710126,0.41215256891414687,0.19659369565172066,0.12988717380738038,0.12275797434109084,0.16940347317083293,0.2880479098084359,0.1273147885658558,0.10172687616973963,0.3417282362026992,0.14584476706248634,0.09572312970002168,0.37977015211543713,0.16757172783193824,0.13928567714630094,0.16577788557391984,0.1970577825791831,0.09334275009976677,0.23023441094303543,0.12118544542102838,0.2553052130077808,0.12129522775813399,0.2516074008490201,0.09835593999400305,0.24493646970055788,0.2168511329447845,0.06766628239413777,0.12129522775813399,0.23469202305719092,0.08041691453038154,0.24153637069702194,0.23715898902512725,0.14245245409767124,0.21606930689384274,0.13926239774523652,0.10227568094165006,0.09064978103889754,0.08553658011223594,0.12125687695905259,0.1605851119717437,0.4038807849296847,0.3258771356749745,0.12875689576925264,0.25803110630915166,0.10089637941956754,0.0955269591043921,0.09089632451165755,0.10659059906710597,0.22898292359336922,0.30691126200600943,0.18606446446948297,0.2449490310422453,0.11621951578739784,0.09628061640045701,0.13650463391221956,0.2009929016132515,0.024036403531271712,0.10676522384840087,0.09426796329169142,0.09090478360369801,0.34083157569890954,0.12879996324967388,0.1624841723253519,0.13928567714630094,0.10075295898308406,0.2900996930924294,0.17472450188263922,0.1639753381910866,0.24493256236138228,0.2024242990592867,0.15743715536916664,0.3565311377151025,0.14945354704667232,0.19857431001373377,0.04635432281627821,0.12967481156119004,0.1281388466786212,0.39069993268039704,0.18793201518770192,0.37455297790090153,0.10310247382564132,0.3777393549152103,0.12367966611694753,0.22166494893969121,0.11874660591960076,0.1746987349471663,0.09324278640632716,0.45964500069395875,0.2846481628457959,0.06009125486916571,0.1302881347421515,0.21469068840462838,0.08846679672228441,0.10983506518664107,0.1670951499791382,0.11055203604645869,0.09605185489695912,0.2250483654327752,0.24493273348572575,0.0837054559860247,0.23041628352820406,0.41399832394603975,0.049770910172267264,0.0955269591043921,0.08041691453038154,0.08041691453038154,0.119453621498952,0.3292681680780025,0.1866343036747806,0.12129522775813399,0.12129522775813399,0.12381982253115247,0.15613152408697947,0.3734285869212942,0.12153364833305924,0.12429382136421069,0.3486988295608862,0.08517624063349422,0.2963849738546208,0.07493858877216783,0.06598601645256298,0.19066211786159723,0.04056183119268251,0.13083577653367026,0.10293194123711007,0.37106048728350705,0.02405655248452097,0.11518990218277425,0.06731183928927317,0.1333964071569373,0.4360923055471996,0.12339188626221997,0.15424951457879837,0.08371586638983514,0.4376793235201499,0.08490171353705248,0.5217275412023467,0.12408817214231142,0.24607615823833884,0.02860666897523201,0.12745368322312506,0.10598164649506592,0.18271809228121347,0.46652280042920835,0.11731546154895636,0.41569494019171027,0.09088615733372431,0.06271732730456306,0.1752994200272649,0.06272156290526533,0.49255344562387343,0.1839197486438428,0.3308920006076403,0.11904824464776978,0.1481781973046098,0.10738256084194436,0.10746389826541027,0.2291928493963765,0.10117037390722335,0.016021625237595684,0.1862124329399558,0.06271732730456306,0.06351762485852458,0.31707732316224435,0.12349292049547404,0.10772653680578166,0.1270721908809212,0.5260098941076141,0.2969913402624285,0.11729141522722512,0.2521848785181148,0.10983506518664107,0.27216253996367207,0.07485317507585212,0.01589036147335248,0.1121466548768163,0.12424620033886118,0.17157851569818497,0.22916786483428958,0.1270721908809212,0.4206583377239224,0.11012045908704363,0.15361256655267164,0.11278946552057868,0.1913294046088841,0.12282302195117928,0.12275797434109084,0.255271655662571,0.04437430894736752,0.16007715436801617,0.08135745277424349,0.5273822369164136,0.11283293938730989,0.16607005916042172,0.2757582642204507,0.09863907051460168,0.06298840574950729,0.13928567714630094,0.016315482306823406,0.06271732730456306,0.6340045373969894,0.173006597639575,0.025295071893255954,0.11731635132991994,0.10291502305302919,0.09110983524825556,0.44665976678627073,0.09844915268129498,0.12134418217219321,0.14420819051489844,0.12342635060823873,0.09575192314792864,0.061985068234611765,0.4113539062006551,0.128200825633418,0.08885996154395168,0.15740540801893368,0.23628675811934985,0.12979897280790167,0.09761677130370756,0.4018428486948732,0.09543926697061934,0.31465178863696014,0.1590303954308445,0.34057176398713684,0.3530122329304099,0.22902692398440833,0.4883049566792418,0.23811904984743779,0.21680450222608147,0.11731635132991994,0.19878878994356605,0.0670475867207798,0.5200885239174231,0.31707732316224435,0.08297661356101403,0.37180720731226397,0.2798881008285529,0.12976606987016237,0.12180451875057136,0.028967576791693754,0.11012383459011749,0.49921192769085404,0.13845382393620753,0.17833713745059923,0.2830370319302908,0.19026424074162993,0.09653308776289518,0.09334275009976677,0.12129522775813399,0.556385379575252,0.274110800057446,0.13032648554123294,0.24981629138508377,0.09267104347214748,0.10738256084194436,0.26812035452362415,0.0906565132146798,0.35737862456931985,0.25227314767043135,0.11468237808176972,0.06928930668043834
+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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+2,0.21958824400867855,0.21364887611656136,0.1682940775792547,0.033427939953124555,0.10851169370746479,0.09829762971434923,0.19076890118327608,0.21360800072204653,0.06418411608496595,0.2180577042979063,0.21412988593798676,0.2216999491745669,0.0749116696391299,0.17562555647352743,0.1845366582496221,0.21360800072204653,0.1107852947541831,0.02996271295067547,0.10620357634883572,0.06322253472718117,0.0996810834853865,0.2136591536285733,0.01579166109054849,0.2118635530180103,0.14116055696878457,0.2146975141203516,0.10628222570566884,0.2136992267226617,0.20953276136197113,0.16367218225113522,0.0747511386715633,0.1368511568322692,0.21985167906085923,0.06971444067097476,0.14253535943034568,0.22078332894920155,0.14727773451848178,0.05545839811215128,0.024775625258882526,0.14289236141852577,0.0747046756215397,0.21360800072204653,0.07144729487358066,0.10738723197371715,0.08695997805748236,0.12276477997185349,0.1732209285559368,0.21830957593779649,0.1255269912053231,0.20524034173121142,0.10311995943234457,0.22192295387873914,0.09819059097100874,0.10844858208241014,0.0504783881008783,0.09679739205651565,0.11106729470339663,0.04694875778996425,0.2250660536594496,0.0289345436311642,0.14403277819318128,0.10532426783925694,0.06626256408584916,0.17983362729853514,0.049776143261358013,0.05577580832180471,0.21543723182743932,0.06097646639603823,0.05000662568155355,0.05990639731204556,0.07458717252114057,0.09460759535556613,0.19014489125748363,0.20605075588778454,0.21385265226915084,0.060438045335072556,0.17865263419409388,0.21361341066214876,0.2134048155388582,0.24402005436072668,0.2036887729669045,0.1080281085621816,0.2163399870500583,0.22416676968459878,0.17806101438684943,0.2312640297746912,0.11503262675154187,0.09466949502760778,0.040941635022207594,0.20350742546874334,0.0994548937694438,0.23686631588155604,0.09460744546568502,0.22078332894920155,0.07618935388561762,0.1874324571604188,0.13293007239518093,0.1255295371879703,0.05305516557867772,0.21318499284330988,0.2760358435529093,0.09185193098860703,0.15842201908503217,0.10991287836683107,0.12094164629243992,0.03781135467438141,0.16351404207510123,0.07027110856806419,0.14783857616736085,0.21056571191364726,0.1073190568848066,0.04942984225450509,0.0709411623837854,0.0802057560094231,0.119059514675614,0.10601309960352615,0.1732209285559368,0.2072982082632999,0.16829339200045687,0.10528420353991733,0.21416535139239942,0.24402005436072668,0.2120630857411824,0.10892444560913689,0.22343962858676505,0.12556983173942465,0.17271490972460196,0.10155474276067931,0.1786529395051852,0.043429280537642216,0.2183350043528333,0.10661756270497937,0.2200735191048008,0.05305516557867772,0.1554057854205716,0.07215991746364958,0.10060929780375254,0.07387410859870927,0.09125651168174105,0.05439608699402586,0.22535894754939925,0.05150909909199805,0.19707129697865938,0.2136591536285733,0.04650243280588652,0.21949118898945413,0.050024948339484,0.22141900017701552,0.049419079610370675,0.09595111217947526,0.10429644218069647,0.21422111193860197,0.0876621850307853,0.14191477794027807,0.051303954020666565,0.09788102491838584,0.07681735401759104,0.11356510285932454,0.050024948339484,0.0548336288093111,0.12538248764863055,0.16351404207510123,0.05388073149846598,0.2201081816116667,0.10302921274885976,0.021199947036198864,0.10251370287556785,0.10535568887952289,0.04700262583988035,0.09301930661380124,0.21387338545110882,0.07095278941776306,0.1017975112399291,0.17366492754844606,0.10009126960960989,0.14390446201929835,0.08815941540371056,0.10575982634036758,0.04055059809678054,0.10808249238233446,0.1732209285559368,0.1730835746850669,0.09226152118065596,0.06049000327764543,0.16829339200045687,0.05623892561826969,0.1395480807210264,0.18004778471768337,0.12164011314322792,0.09694929402117576,0.04028177322510612,0.219392982358592,0.10764389090564777,0.04183669551498097,0.16829339200045687,0.13970435864829928,0.10669871258037403,0.060033355149191954,0.2345166540405546,0.07972001341125395,0.14948269397961936,0.21471131412626282,0.22499493268660078,0.22254264120528866,0.04093188337003367,0.10293745229820321,0.21313240084072335,0.21989443872932896,0.05990639731204556,0.17421645278954417,0.10350120393741581,0.06672928364531348,0.08802190276294754,0.10320116020828068,0.21810046396637608,0.03483771352866526,0.10471410225095781,0.05693196906874756,0.040346784239598886,0.0611999239561895,0.16829339200045687,0.15349093998358543,0.22477490664745084,0.1309900146549735,0.21360800072204653,0.03073828279406138,0.07884452910869116,0.05981217302231913,0.07352380489192517,0.09469522356526147,0.08066923270110965,0.05091914240551801,0.10855324804311535,0.2146975141203516,0.07518764692548309,0.10156053344413543,0.10950942872889347,0.0794931052457883,0.08384695656411931,0.07517133596416552,0.2200735191048008,0.21540950182194663,0.13098214127851815,0.11060858009388265,0.24402005436072668,0.07831781005570526,0.18149248580986196,0.10786445759609088,0.0736103081728833,0.0800974127887701,0.1514260301585924,0.0711509912870325,0.043713360727363135,0.1644540854425564,0.0839221508332431,0.2136591536285733,0.024291834196924454,0.0842856519411329,0.20490376597413532,0.07075816058433906,0.08071668554752934,0.06292735532016888,0.05202445458755793,0.0504783881008783,0.054919220969487856,0.10528420353991733,0.10840985830737519,0.07227390407949348,0.21048035547285143,0.20721252216890393,0.21862886411484356,0.039761685109164085,0.1205136638665433,0.17741285347615554,0.10303028772855298,0.21416535139239942,0.10600537953780695,0.10813715795173304,0.1682957540479417,0.1682957540479417,0.16458575003639672,0.07408243627776712,0.14693509974733504,0.21136276519428643,0.1550630066462766,0.21387879539121105,0.11713856209825468,0.14560789769945806,0.16829339200045687,0.08454078388841213,0.014765191774447607,0.18778949362909628,0.22254264120528866,0.027100177618216988,0.10069901312808012,0.07989027243056424,0.10543937444934165,0.023932000754310578,0.10857583787556616,0.22261889872039356,0.058063243771526586,0.15177782635809556,0.2126219264743886,0.1135500883013889,0.2136591536285733,0.0459741681440946,0.17591695087459103,0.10786445759609088,0.1732218485299375,0.11882836791701296,0.03663593568310573,0.22081915611629818,0.1451584541095978,0.06440564608896074,0.10139398642995096,0.21992216873482168,0.09688585072216065,0.06653100558004331,0.05078859852510669,0.10606430804676764,0.20900659954352227,0.21626372953495335,0.06950651973934516,0.1747808108279541,0.10698407136464229,0.06258174412772188,0.19716522509691317,0.08237022964386277,0.22082492395744066,0.09595111217947526,0.2136591536285733,0.17326036801826433,0.06391768667246489,0.060033355149191954,0.20624831418932033,0.09776591830830116,0.10866325992189078,0.10815274559725165,0.05305516557867772,0.11404454021294412,0.10287396831519095,0.17877454581588686,0.21418793884746912,0.06927465865850356,0.18686968810607701,0.21387338545110882,0.10845663045128136,0.10829419486427735,0.1732209285559368,0.21258046011047269,0.03612975584672541,0.07227390407949348,0.10834395328708464,0.2245931185190491,0.08821445715412415,0.07048641266967132,0.056033783122602536,0.11390055009029706,0.11750723230887669,0.054911442489585724,0.10832961278369559,0.22124356874416803,0.18004778471768337,0.10601371972955616,0.21358726754008853,0.01807577773860095,0.1108529671166543,0.05052488898916171,0.1443474295390055,0.08113484281338361,0.06629614984322016,0.17237681369351243,0.03482339336385414,0.046819433661899466,0.21360800072204653,0.10277026735016574,0.10934913793502692,0.10796766575289772,0.11014662512495278,0.1732209285559368,0.07484420311521331,0.21154750955879661,0.07401647920567381,0.06969597342536099,0.21360800072204653,0.20981333936677227,0.060033355149191954,0.08669425784973343,0.17322203429391836,0.1479370581461547,0.21387338545110882,0.20927842327225607,0.10848502082949678,0.12274223567140297,0.10484369774215334,0.0375513106164104,0.06258174412772188,0.1771849608416289,0.2199984262499266,0.1251782126460761,0.16065371118622745,0.060033355149191954,0.19837670847790537,0.12832101521311998,0.013961740278701845,0.09595111217947526,0.1023780929849056,0.08100715755649081,0.21361341066214876,0.20094817069314344,0.17237681369351243,0.2209705064862773,0.08557119916571719,0.10980216927065997,0.22074866644233576,0.10134468067328822,0.10748094434368725,0.2112692977971851,0.07301309692075543,0.21812819397186875,0.22416676968459878,0.17495586724215098,0.1682911835226228,0.09438683038131185,0.08998280123006695,0.016490587887632368,0.10565077190353074,0.04086037125409166,0.21045583647693242,0.20632327133023393,0.17395170446932964,0.21360800072204653,0.05540396601768295,0.1130277518183582,0.21821138398834683,0.07377272463681366,0.10793880246335201,0.17249556444000919,0.1083922435003118,0.21263161301699943,0.10370182720312067,0.21989443872932896,0.10303028772855298,0.11016354880497511,0.10302930898446216,0.16563489778646165,0.11014662512495278,0.009276963883478383,0.20900659954352227,0.0702633900928461,0.10080159848165136,0.10302930898446216,0.11992055765295015,0.1426352982779562,0.09763470592069272,0.11257119532035623,0.07027110856806419,0.08014346446564061,0.21146833634398177,0.08813368191779716,0.1170784066201146,0.1381683730734056,0.134525044528383,0.06037319632095293,0.04619105528479812,0.10681811244884308,0.11189988044333872,0.0919142289735263,0.17064759243830613,0.07037868139936239,0.02960556071739682,0.0464213917656902,0.1732174255780111,0.10597780905802837,0.10531851250875272,0.1017975112399291,0.11208736718787062,0.022408959166092698,0.10992871316934945,0.08135578136883005,0.1732209285559368,0.2084998108102951,0.051756270304488323,0.21360800072204653,0.09776591830830116,0.15205795192348998,0.22258540087375844,0.09571212086973505,0.10302930898446216,0.21264541302291065,0.09292610108228301,0.12600056439564072,0.0553909638147844,0.16829339200045687,0.22535894754939925,0.22075405585100968,0.10759175724044877,0.11691121024215152,0.1253825626052458,0.2126219264743886,0.10922196595828587,0.08098771248837544,0.07958377373113057,0.039559907060425205,0.10268364919638837,0.09425056111584439,0.06807948882069878,0.06905716471597804,0.21985167906085923,0.21360800072204653,0.2113378853759368,0.10522708361364429,0.20254341795765338,0.16829339200045687,0.06749654233652354,0.1678956420572284,0.1040376535335663,0.2022025244836281,0.10303028772855298,0.050156122275744064,0.11359370407646471,0.2136591536285733,0.0387995220946713,0.20620917747338127,0.04014172666377165,0.17074852789464812,0.21366456356867555,0.03326698838373169,0.09883556487827087,0.09734216324373988,0.08538953505512115,0.21393973163337446,0.16351404207510123,0.1732209285559368,0.2110310342829585,0.11064491249355159,0.17216296899435127,0.06615893994494551,0.10252681937965864,0.052334665011786345,0.11493102680787476,0.06298033622458278,0.11747956034818555,0.22080296179309045,0.21851640100017353,0.09942527100516226,0.10605922181714761,0.09812871180240604,0.2163064892034231,0.1732216671889085,0.14719393909773737,0.1973830757125165,0.03656600568269515,0.0443318506463072,0.08727643560096572,0.10601371972955616,0.2126219264743886,0.05898056664781177,0.09925867686785927,0.17365951760834383,0.2216999491745669,0.08454078388841213,0.10119789413452934,0.20067683199186798,0.1479370581461547,0.04693491088759902,0.22258540087375844,0.0755577206050319,0.21377386617771046,0.10443537393889586,0.2136591536285733,0.10862931452795531,0.22064237733128222,0.1682948399428779,0.17715582849869593,0.07209229719813486,0.2136591536285733,0.1620429583381201,0.04947289283104281,0.07001911554638417,0.08579817782969432,0.10608999038355753,0.07327391975962674,0.2106984042781784,0.1852979943530258,0.08223060793753238,0.0504783881008783,0.2136992267226617,0.2068992320762542,0.1079272407698447,0.10886988939250018,0.02995414125414501,0.10688346255367202,0.05357052107423757,0.060033355149191954,0.22351588610187004,0.21760921060716806,0.10858247702420842,0.09087986691715506,0.0,0.16830047631470116,0.029661758473931543,0.22131982625927296,0.1586755034198905,0.10150824498174928,0.07544883343196022,0.14542603211765975,0.22195454324879954,0.2235101182607275,0.05281970824952382,0.029309878121550656,0.1495170771148092,0.20067683199186798,0.1039584730121848,0.09676309344319721,0.07622613535446054,0.20620917747338127,0.16829308668936552,0.04450140712527638,0.20754839971662334,0.03873963618885129,0.052981492894726666,0.14266315103677796,0.1767470886703273,0.17896904109569473,0.05456353568847087,0.1090222001518999,0.06561423207952181,0.0776196914376369,0.11328135858197932,0.09011659045999813,0.04086037125409166,0.08220828577904997,0.21365441602278057,0.07622235750090461,0.2226535612272595,0.0539079210282346,0.10592010027474576,0.17287814978164176,0.21215521083524974,0.10963660143990729,0.18870065299576344,0.05460701663060555,0.07295916546313282,0.023674434596973132,0.22147580754016938,0.11419541934616476,0.16829316347419096,0.05461727697516618,0.06971081505427972,0.06793068636162287,0.11866098643371757,0.060033355149191954,0.04947289283104281,0.04947289283104281,0.21178899563910003,0.09899151053684807,0.0013142541821607701,0.2136591536285733,0.2136591536285733,0.04041179525409164,0.04121180441705579,0.04714886011112659,0.17891760174216104,0.21313840175022664,0.1415091402007738,0.19004899428988542,0.10692364888505512,0.009857431050571745,0.1725053033070917,0.10346087306939299,0.23569602589814376,0.21158297501320922,0.21899745134785248,0.10982518117687692,0.0850265720916993,0.2147306872114844,0.049776143261358013,0.21154750955879661,0.10914061743543202,0.21146833634398177,0.20823903372090857,0.10765996115693796,0.09468502704744025,0.22542798485096444,0.1239492371411044,0.033422797826938924,0.16793142994238594,0.15468042130464402,0.21247679420068266,0.21765561921826224,0.20104883522824435,0.11705213225358324,0.10303028772855298,0.1081297176219366,0.2235228186032432,0.1732209285559368,0.12191742218533087,0.17322148142492755,0.08370771147192353,0.14344780505744797,0.09179534234725455,0.03801960663757092,0.171221295410084,0.21743801697135684,0.21738255696037143,0.10912253421740382,0.2339588786726187,0.21389602046856063,0.046377850026037545,0.1732209285559368,0.046923626226706094,0.2760358435529093,0.03448336523815447,0.21720347658489955,0.05538752747781133,0.1452721676970314,0.09669498094131822,0.10302823400476895,0.07194435063249835,0.05460701663060555,0.10844228994789225,0.014462395446623753,0.14044383450906806,0.2156648397125234,0.2131881613869258,0.059011217826867565,0.10905825868633254,0.05538752747781133,0.11097282770692145,0.216308790793879,0.20362426550722762,0.05608282344882852,0.14166506155540753,0.2133551730242297,0.0443318506463072,0.10434904398133235,0.07222543479639491,0.20743000153437877,0.15620167827091233,0.1205069096216472,0.2151968958698341,0.05753243237608968,0.09956182765198177,0.1763508971112102,0.1732563121713479,0.20067683199186798,0.10065214598609444,0.1732209285559368,0.1507769962687102,0.13648144960596578,0.08360317218311733,0.10302930898446216,0.21900898703013746,0.22337030357303334,0.08913885907125699,0.22057882015869298,0.21360800072204653,0.19787573374576234,0.03460197365082359,0.22168031633067803,0.04999065711105467,0.1023184051694762,0.1036779254038129,0.22416676968459878,0.20758157280775616,0.24402005436072668,0.10315341687159196,0.04476585737188369,0.07795330952731903,0.17074711793399908,0.18742989398757678,0.14093240843297666,0.10383019542497127,0.10832785654934231,0.10869567286456576,0.09163659606247401,0.0792805594675469,0.14248114689447222,0.10302930898446216,0.1464474347608464,0.059132049807418076,0.1438523806453764,0.2760358435529093,0.04996303260531841,0.10868255866301732,0.11111205344273233,0.04014398811861166,0.21312699090062118,0.20864871427939152,0.2163064892034231,0.12691031794995195,0.050528008610136635,0.20199550393450627,0.10920133029267574,0.14370260234136195,0.22114767838517435,0.22258540087375844,0.2136591536285733,0.12032961810547674,0.10542565280694302,0.21211513774116136,0.10468733692301428,0.0533653760029061,0.21743801697135684,0.16341156631825907,0.05150909909199805,0.10997458536148152,0.07198758997156424,0.03304481265450527,0.1717821027259728
+3,0.12376511941575698,0.11744583417201887,0.10843558081580114,0.01353799635137671,0.07734498158502988,0.021511577033822216,0.062232466775994776,0.11693772031241442,0.0,0.12208120724335957,0.11771163007648203,0.1257874105023144,0.0,0.07196246495966246,0.06932814263631774,0.11693772031241442,0.056389791787507824,0.0,0.1094628838037391,0.01330574485470618,0.10642571365413293,0.11696598633204772,0.0,0.11453732647328614,0.02657637370341768,0.11850578339597002,0.09588532601617232,0.11698812988050228,0.11084691039742274,0.0642142161624355,0.026139976097346376,0.0364387982827106,0.12391850235709298,0.0669408160024618,0.07852456456864453,0.12485733187992497,0.08771330191110857,0.01178344709927867,0.0,0.0,0.0,0.11693772031241442,0.034692219461135314,0.10836700044223306,0.0245619716238276,0.003765394239851706,0.05822107063064188,0.12222785748084958,0.07296637345300624,0.10353040971835481,0.06343383500537106,0.12591725319854846,0.11847609148690495,0.06828182032771414,0.03186572226317258,0.04370136792057948,0.034214906599339366,0.0,0.12829551150815888,0.0,0.10166413079127135,0.09738948083981047,0.07402472452656533,0.04007204552379926,0.03192722532755005,0.0,0.11936630661874645,0.002639143060866701,0.03269240818959617,0.032384624231033735,0.03861584855748184,0.0,0.07762308940354314,0.10772159262209241,0.11707290960865002,0.03078624755125384,0.07274739284721739,0.11694574277662734,0.11682544445621883,0.0,0.10469678462174592,0.12210981750885548,0.12028831245474979,0.12841284850819665,0.0,0.12202643904678986,0.04987707452698242,0.11437052508470126,0.02112466705731398,0.11000688288121396,0.026533728970039125,0.0,0.02962215165873977,0.12485733187992497,0.04401584559970952,0.07328945365256936,0.0,0.09145344351155547,0.03146074703215172,0.1138260445160703,0.0,0.05302355428408367,0.0,0.0,0.0666458402709344,0.014814948207489681,0.0675020228469241,0.02805240660066346,0.05156783735293018,0.1123786849971322,0.10741875006183033,0.03197747881206972,0.06525248830017842,0.0,0.07325411087449431,0.03982756214478458,0.05822107063064188,0.10769016765467339,0.10844983431298823,0.09329708176624366,0.11821172147187366,0.0,0.11416709012528888,0.06254999196857929,0.12759309258455975,0.06376832625921121,0.07108013146158149,0.057544321402938754,0.07274104528980338,0.02793549453993773,0.12224266297108166,0.11170915812048487,0.12404766693927066,0.03146074703215172,0.03630303378481771,0.0,0.10491834337403029,0.017058817680514447,0.0035213250467176337,0.03125942714582962,0.1286697655821259,0.031703732170764234,0.08854820114035401,0.11696598633204772,0.0,0.12370860991105427,0.03191272972898674,0.12542563827457073,0.03196607477739985,0.012120805279931495,5.148998119997592e-05,0.1177620396445699,0.044341081614981744,0.0,0.03174539742305467,0.10946338855044463,0.018333177185802546,0.05043426404139727,0.03191272972898674,0.031211281090435094,0.07597066857611216,0.0675020228469241,0.03134042219203379,0.12406784890523591,0.06342293803663557,0.0,0.10190878935505722,0.09279079791116455,0.0,0.025357276058734106,0.11708436632866998,0.08344567173245983,0.02658343634023704,0.0725660791812111,0.1280167327834898,0.09985522074167416,0.0,0.02907392366711255,0.0,0.13929930969681195,0.05822107063064188,0.0,0.0,0.030178386791739446,0.10844983431298823,0.03118785347453568,0.0,0.0757773153872631,0.07380462223980853,0.012387798629417433,0.019794580944630352,0.12246227829465578,0.12335049285227255,0.026098748146872016,0.10844983431298823,0.09217255579290612,0.13588768319870287,0.03041303522187403,0.0,0.09499441869950148,0.08559027413300319,0.11851340898881535,0.1282046345225114,0.12667444502769304,0.021105010612298945,0.06345369225417095,0.11667994687216418,0.12394339883030775,0.032384624231033735,0.0880333703706703,0.02154930247190049,0.0,0.05537790324042501,0.10037539179654476,0.12210610371657431,0.022144707755386406,0.05555514265953956,0.0,0.019925623911397215,0.0,0.10844983431298823,0.017123974262515856,0.12797416363585598,0.05825827156967071,0.11693772031241442,0.0,0.0,0.0,0.03173978692044941,0.01000401632041439,0.0,0.0,0.06214854629841678,0.11850578339597002,0.01767043368702405,0.10341346183732122,0.05734971583946088,0.04093818359652572,0.0,0.0,0.12404766693927066,0.11935016104597426,0.05821617190326507,0.051538317670346674,0.0,0.0,0.06467008844061337,0.11500475310505193,0.08719462208256437,0.0,0.01934664766942729,0.027928163820551622,0.0,0.012873644553707129,0.0,0.11696598633204772,0.0,0.0,0.10337666576681916,0.02733465240934988,0.0,0.0,0.03162273712456006,0.03186572226317258,0.03138213566308853,0.09329708176624366,0.1225907561482735,0.0853315896608486,0.06344230431390224,0.10764281932217494,0.12281014432015286,0.018746237210495467,0.006040959164868934,0.07251403981559003,0.06342287800613923,0.11821172147187366,0.02470651749970396,0.1187977546266627,0.10840072626401298,0.10840072626401298,0.0627441774428946,0.029267195735562808,0.1273211665742442,0.11329961379767307,0.03467515194046521,0.11709238879288288,0.045763408789997205,0.10320379889457583,0.10844983431298823,0.0,0.0,0.07373163156145322,0.12667444502769304,0.0,0.0,0.0,0.09740192455677825,0.0,0.04969752578817742,0.12671884535281666,0.0,0.039543785494735716,0.11543688161695781,0.02080524276634904,0.11696598633204772,0.02606320896961942,0.0,0.11500475310505193,0.058225439655462854,0.04941344917408659,0.0,0.12487819195994664,0.02231666691633537,0.0,0.10018002544015055,0.12395954440307996,0.11094667967247976,0.03713782905667224,0.03182639246925884,0.10064092899215484,0.11007567051797468,0.12024391212962617,0.06886132165925128,0.07414368066100037,0.09435348392228085,0.012901452459339963,0.08859110642915465,0.0,0.12488155023908329,0.012120805279931495,0.11696598633204772,0.058408371564914005,0.0,0.03041303522187403,0.10586595374156363,0.10945094483347688,0.07624648911793173,0.07890059038937595,0.03146074703215172,0.07689048040470833,0.06343962485089386,0.043167225887302776,0.11774370889253796,0.08143846964548822,0.06870255264043565,0.11708436632866998,0.06625889387147839,0.07691221220816799,0.05822107063064188,0.11541396817691786,0.018876813994492415,0.0853315896608486,0.09457986425877897,0.12866108668956944,0.0,0.0,0.03686948501196152,0.027331328127327185,0.0,0.03117843209962545,0.10056595272398772,0.12552168666562932,0.0757773153872631,0.10058169164889982,0.11692626359239448,0.0,0.0647096175366432,0.02465962678325815,0.0,0.028283346555044872,0.013894449337108872,0.0718492615281791,0.022130667289175204,0.0,0.11693772031241442,0.06344541586298216,0.025335714591809288,0.005217793216962422,0.1419969157331247,0.05822107063064188,0.02828218102056614,0.11388219357720841,0.02722262208424393,0.03658632424126101,0.11693772031241442,0.1110019518981089,0.03041303522187403,0.029078879837092484,0.058226321862397845,0.0,0.11708436632866998,0.11070636852159384,0.07579468982816762,0.07222730503278031,0.09733752832146995,0.014290776340422251,0.012901452459339963,0.07499166943154187,0.12400394472820354,0.06367797450397274,0.0,0.03041303522187403,0.0910196119114315,0.16752018676150207,0.0,0.012120805279931495,0.0,0.046377814439564014,0.11694574277662734,0.06622162271159332,0.0718492615281791,0.12496631449613738,0.028585797938552038,0.05343240808116057,0.12483714991395967,0.06360346082093297,0.024619520272907983,0.11564540229416256,0.0,0.12212224928934656,0.12841284850819665,0.08548464952385912,0.10849574957859358,0.12047012346967137,0.0,0.0,0.10704172270902308,0.020960863348855396,0.11606954535711549,0.1116052644270685,0.0565123175811136,0.11693772031241442,0.026582661717912345,0.03705970542530108,0.12217068600766313,0.027581836003096633,0.11164896852836662,0.05477626259872173,0.08244230552136445,0.11544223419655113,0.024458315422599665,0.12394339883030775,0.06342287800613923,0.05330255080224152,0.06342298286116008,0.07595927597319749,0.1419969157331247,0.0,0.11007567051797468,0.0,0.0,0.06342298286116008,0.009060482048052853,0.10029810412351278,0.10941991959259793,0.04658321258501164,0.02805240660066346,0.0,0.1157553868063542,0.0,0.05814743151646429,0.0,0.0,0.01285854271068168,0.0,0.025788469041403285,0.0453526396920711,0.053074512801877104,0.06945728150423341,0.0,0.0,0.03240540632146014,0.05820443472843894,0.05288410930699942,0.09738885865396207,0.02658343634023704,0.031262050580421495,0.0,0.01514241183438141,0.09698552707032404,0.05822107063064188,0.10931513579771328,0.031663001101824476,0.11693772031241442,0.10945094483347688,0.014172099656409462,0.12669934150090784,0.10760436075184096,0.06342298286116008,0.11544985978939641,0.04565688733806277,0.030980278509631903,0.02655645312455898,0.10844983431298823,0.1286697655821259,0.12563305558388557,0.11121175158344111,0.03080251123540734,0.07596911019375306,0.11543688161695781,0.05839904078872777,0.0,0.04274009573697525,0.022831599334638228,0.06346001415934811,0.0,0.03618635959629803,0.007279064812414564,0.12391850235709298,0.11693772031241442,0.11328586573364913,0.018335109455978844,0.09854825832813251,0.10844983431298823,0.01397654807074295,0.06649512984351137,0.10037826649214798,0.09464231459865982,0.06342287800613923,0.0025316781985033994,0.02398085047546997,0.11696598633204772,0.016806801302345964,0.10584807653789666,0.025619132669492242,0.06807157451825835,0.11697400879626059,0.01679898614946543,0.0,0.0163427395984447,0.10262698865668245,0.11712102783273388,0.0675020228469241,0.05822107063064188,0.11311630627735368,0.04347320342809481,0.06981415276633515,0.07751544818163296,0.0,0.03158340733064632,0.023077185441788772,0.0,0.012160795649915061,0.12486876294544767,0.12353743130579681,0.02661272936709227,0.08678186291565838,0.006426237982667931,0.12026880860284092,0.05822457845345487,0.01886597341256637,0.08869061809564634,0.022711194135673133,0.027888689578375234,0.0,0.10058169164889982,0.11543688161695781,0.012655156258437732,0.12807995821396598,0.07255805671699816,0.1257874105023144,0.0,0.0,0.10840013002619121,0.0,0.0,0.12669934150090784,0.04276773135537588,0.11702937407257415,0.09890110189362931,0.11696598633204772,0.07552536468884832,0.12477526393352381,0.10841973092692911,0.07821858024174806,0.0,0.11696598633204772,0.07257276737271763,0.03202309495074917,0.024665323708498582,0.0,0.06299546472270226,0.028279344681396673,0.11245200800525995,0.07396985900428628,0.0,0.03186572226317258,0.11698812988050228,0.10698920787851582,0.005127129483588045,0.08623408436438511,0.0,0.0505915749304147,0.03137975198594756,0.03041303522187403,0.12763749290968335,0.12162188346492622,0.09131084952612059,0.1101914840444051,0.0,0.10830254817538831,0.0,0.12556608699075292,0.0,0.031771973422592914,0.018014021876729194,0.0,0.12633202972034008,0.12763413463054674,0.0,0.0,0.04807366486076869,0.10840013002619121,0.05797552606809441,0.027415250839188852,0.039462537253931236,0.10584807653789666,0.10845618187040221,0.0,0.10782841818649831,0.0,0.025655543029361544,0.08031551063242412,0.04976814115893518,0.07610326055987568,0.03341316092333143,0.1319858165633154,0.027880621542435084,0.0,0.027603674296828497,0.0,0.020960863348855396,0.0,0.11744889540760826,0.03938745758141251,0.12673902731878192,0.0,0.09942232069076466,0.05659318878628937,0.11469849044515096,0.03800568736040898,0.07319813880734442,0.031305793837773134,0.03798689091133676,0.0,0.1256569058375966,0.0,0.10845458547871727,0.007550425654236238,0.07640159630554191,0.0,0.03345890336934402,0.03041303522187403,0.03202309495074917,0.03202309495074917,0.11664757462929659,0.12012149793497083,0.0,0.11696598633204772,0.11696598633204772,0.02005666687816407,0.0,0.0,0.07271568736582704,0.11620276891681254,0.0,0.06776143449916736,0.10374668132595581,0.0,0.059894397301476006,0.0,0.12381838814901647,0.11438228497259997,0.12302475127344104,0.09381764205042649,0.0,0.11852411414800201,0.03192722532755005,0.11388219357720841,0.03850053989250625,0.1157553868063542,0.10869054193452075,0.04932158616575085,0.0,0.1287579800934321,0.053964337374133836,0.019147841915316183,0.10969749756856505,0.03285822575289757,0.11535668457681805,0.12184709643816255,0.09599043630541049,0.15616554685947323,0.06342287800613923,0.11984727257559012,0.12764152930287637,0.05822107063064188,0.06884361390556305,0.05822369624651987,0.0,0.07275235095974689,0.0,0.019032147895039774,0.07121074644265046,0.121324015414215,0.1212917242686706,0.09136923295739006,0.0,0.060685923318388776,0.02089830769337438,0.05822107063064188,0.03019674812587396,0.0,0.021394179447570313,0.12118745615970765,0.03149664840106161,0.12878038813007003,0.11092604550100378,0.06342304289165639,0.08519204462667009,0.031305793837773134,0.07224498233668716,0.0,0.021651579504229183,0.11949882948006076,0.11623026504486045,0.030077569663903708,0.09136228438583525,0.03149664840106161,0.013795522082425052,0.12027014868538105,0.10710150600079209,0.031149682561877987,0.0,0.11656279912669999,0.027888689578375234,0.09889176910590346,0.030699304060588184,0.10728249991102691,0.0,0.04685877154634898,0.11922637293952973,0.029976752536067984,0.10480510554962345,0.0,0.05838911004683311,0.10840013002619121,0.0,0.05822107063064188,0.1238142004266661,0.03771315870611619,0.0,0.06342298286116008,0.1230314678317143,0.12755272865262926,0.0,0.12473825828072992,0.11693772031241442,0.1068101197895049,0.021645398300989882,0.12577597943679167,0.03187889129427259,0.027101020505217788,0.06337752171263376,0.12841284850819665,0.10784674893853025,0.0,0.06345445810562104,0.032598107788762355,0.0,0.0,0.043530779746936976,0.02211995180196131,0.01613949770811672,0.09862571717125047,0.09132308667738674,0.0,0.028584632404073294,0.09013378694893558,0.06342298286116008,0.024309656890493754,0.0038174899622444784,0.12557234728472377,0.0,0.03194671730937676,0.12638375766988433,0.03873781253742328,0.01560241337039404,0.11667192440795131,0.06577135983064167,0.12026880860284092,0.05814628336947982,0.029009284347853687,0.09829797747679536,0.03579609070260667,0.07633347484735228,0.12546585527498302,0.12669934150090784,0.11696598633204772,0.07501375824673416,0.09130870358503573,0.11467634689669637,0.09732062477634093,0.03142141723823797,0.121324015414215,0.12203381690570016,0.031703732170764234,0.03176421643328489,0.08522281833790983,0.010608016708192489,0.061585437161657215
+4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012054538270904759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013420985417497554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013420985417497554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0028800281233747013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02599304643470009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003413489622191141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0016648292082426272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+5,0.05719546394854729,0.06815043428273936,0.0,0.0,0.0,0.0,0.07206995115932903,0.06952336484427242,0.0,0.060368540794622,0.06808812532290177,0.05398470652525566,0.0,0.07859510255780286,0.10432915557259134,0.06952336484427242,0.0,0.0,0.0,0.03345695455038896,0.0,0.06951673860868142,0.0,0.07379553527833484,0.10350335968172907,0.06666113747319974,0.0,0.06951154762775151,0.08086475361431023,0.0,0.0,0.0,0.05717838381286825,0.0,0.0,0.05558105793571785,0.0,0.028909671401817473,0.0,0.03428603860152252,0.07567483398321918,0.06952336484427242,0.0,0.0,0.0,0.0,0.0,0.06035221038700381,0.0,0.0907056755820546,0.0,0.053970247740926076,0.0,0.0,0.0,0.0,0.0,0.0,0.04793048287412356,0.0,0.0,0.0,0.0,0.0,0.0,0.024221069173210565,0.06514920598252663,0.0,0.0026629937280135737,0.00852453447293111,0.009599763134540681,0.0,0.10263873560221788,0.0846994513272149,0.06949167321814817,0.0,0.0,0.06950848693701282,0.06954968500834176,0.26593451817944785,0.0897379846780934,0.0,0.06355375352657389,0.049214003551224406,0.11886424034556359,0.041058942907218066,0.0,0.0,0.0,0.06898170019648021,0.0,0.021000037731461477,0.0,0.05558105793571785,0.0,0.0682497399746656,0.1216172872876456,0.0,0.0,0.07768473446533955,0.22467028205053774,0.0,0.12874424325759062,0.050872456159819834,0.0,0.0,0.0,0.0,0.0,0.07802403038608814,0.0,0.0,0.0,0.006228037114395332,0.0,0.0,0.0,0.08656804688122435,0.0,0.0,0.06673007266862829,0.26593451817944785,0.07512314678285045,0.0,0.05079806984936083,0.0,0.08628986104235302,0.0,0.0,0.0,0.060350561704433536,0.0,0.0571640005407175,0.0,0.0,0.0,0.0,0.03650219855133574,0.0,0.0,0.04785027685279193,0.0,0.09897641104309486,0.06951673860868142,0.0,0.057201756630113246,0.0,0.05477138280440221,0.0,0.0,0.0,0.06807630810638088,0.010312326677051547,0.03831326057540216,0.0,0.0,0.03663114173214839,0.0,0.0,0.0,0.0,0.0,0.0,0.05716175315444392,0.0,0.0,0.0,0.0,0.0,0.03751934221227609,0.06948898748712068,0.0,0.0,0.08345988073824089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12005362834280105,0.0,0.0,0.0,0.0019153681714121024,0.1391994610833714,0.0764706040667238,0.0,0.0,0.0,0.06181888760948176,0.0,0.0,0.0,0.0,0.0,0.0,0.024690982304237094,0.0,0.0,0.06665934985062782,0.04794995863125325,0.052393148340237686,0.0,0.0,0.0695707958968504,0.05717561143716118,0.00852453447293111,0.0,0.0,0.0,0.0,0.0,0.06036576841891494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.052248416664220615,0.0,0.06952336484427242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06666113747319974,0.03649858352766489,0.0,0.0,0.009849779002807892,0.0,0.0,0.0571640005407175,0.06515100389154549,0.0,0.0,0.26593451817944785,0.0,0.10523881072615854,0.0,0.0,0.0,0.0,0.0,0.0,0.08753968870538541,0.0,0.06951673860868142,0.0,0.0,0.09075313522003164,0.0,0.003950121612351929,0.0,0.0,0.0,0.0019966947946544354,0.0,0.0,0.0,0.05598744742051985,0.08657914647041473,0.058794587734716554,0.0,0.0,0.07721405984117977,0.0,0.06673007266862829,0.0,0.0,0.0,0.0,0.09817056289733982,0.0,0.0,0.0765673233111284,0.0,0.06947410957986108,0.0,0.0,0.0,0.0,0.0,0.06814900079022461,0.052393148340237686,0.0,0.0,0.0,0.0,0.0,0.0,0.05238820409043586,0.0,0.0,0.07234383870317995,0.0,0.06951673860868142,0.0,0.14899937876908181,0.0,0.0,0.0,0.0,0.055578735037265486,0.0961489171748619,0.0,0.0,0.05717381352814236,0.0,0.008125678557127893,0.0,0.0,0.0822863700019573,0.0635586977763757,0.0,0.08060841458590884,0.0,0.033093177916249224,0.09896316649296172,0.005905381638164909,0.05557836107218959,0.0,0.06951673860868142,0.0,0.0,0.0,0.08937707068696564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06808060527602483,0.0,0.07054446266125547,0.06948898748712068,0.0,0.0,0.0,0.07234921016523492,0.0,0.0,0.0,0.04918636070005966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.054014296511887806,0.0764706040667238,0.0,0.06952605057529992,0.0,0.0,0.0,0.0,0.0,0.035257678978110565,0.08364091730412383,0.0,0.0,0.06952336484427242,0.0,0.0,0.0,0.0,0.0,0.0,0.07518993339345703,0.0,0.00922033847836008,0.06952336484427242,0.08082840815346153,0.0,0.0,0.0,0.0,0.06948898748712068,0.08089770001397052,0.0,0.0,0.0,0.0,0.033093177916249224,0.08165044479022547,0.05716886927834054,0.0,0.1631725629697687,0.0,0.09760586507258434,0.0,0.0,0.0,0.0,0.0,0.06950848693701282,0.06140451433686186,0.08364091730412383,0.05556892204984064,0.0,0.0,0.05558330532199143,0.0,0.0,0.0698263153041723,0.0,0.060363970509896066,0.049214003551224406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06700910208860734,0.06635456558212652,0.0,0.06952336484427242,0.0,0.0,0.060358576782839554,0.0,0.0,0.0,0.0,0.07234258392964392,0.0,0.05717561143716118,0.0,0.0,0.0,0.0,0.0,0.0,0.0822863700019573,0.0625608225949277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06980053228630849,0.0,0.0,0.04192160969641342,0.04250597868491706,0.031783551944616246,0.0,0.0,0.0,0.0,0.0879111153373197,0.01526663031979039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08370547684253232,0.0,0.06952336484427242,0.0,0.09620899297454073,0.052390375964530646,0.0,0.0,0.07234079630707205,0.008689394682619901,0.0,0.0,0.0,0.04785027685279193,0.05250911347195323,0.0,0.0,0.0,0.07234383870317995,0.0,0.0,0.009053417231033242,0.0,0.0,0.0,0.008971644182159491,0.0,0.05717838381286825,0.06952336484427242,0.07657054618836134,0.0,0.09345890836069769,0.0,0.03596705845904803,0.09232797257924674,0.0,0.0958799236735015,0.0,0.0,0.0,0.06951673860868142,0.0,0.08938258924952111,0.0,0.09195841598986533,0.06950186070142185,0.0,0.0,0.0,0.0,0.06948039314783275,0.0,0.0,0.07661029500756805,0.0,0.08906827531073755,0.0,0.0,0.0,0.0,0.0,0.0,0.055579785016132505,0.055728036998008504,0.0,0.0,0.0,0.06355592540066864,0.0,0.0,0.09893244796635296,0.0,0.0,0.0,0.0,0.07234383870317995,0.03096503947343688,0.0,0.08347475864550045,0.05398470652525566,0.0,0.0,0.07162259407634862,0.0,0.0,0.052390375964530646,0.0,0.06950187899605259,0.0,0.06951673860868142,0.0,0.05559019670726063,0.0,0.0,0.07409039410636162,0.06951673860868142,0.0,0.0,0.0,0.011530802244412148,0.0,0.0,0.07800684170751225,0.07060548696607655,0.07590541398017414,0.0,0.06951154762775151,0.08797318792045648,0.0,0.0,0.0,0.0,0.0,0.0,0.05079312559955901,0.06116608004006041,0.0,0.0,0.0,0.0,0.0,0.05400935226208599,0.16780425821354802,0.034021475671435805,0.0,0.13690673612824797,0.05243127839470936,0.050793499564634935,0.0,0.0,0.0,0.07162259407634862,0.0,0.0,0.009651026074822143,0.08938258924952111,0.0,0.0,0.08653563762776953,0.0,0.0,0.0,0.0,0.077651725778182,0.004987837440683082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0681497166554088,0.009684207815312755,0.05238595670416233,0.0,0.0,0.0,0.07375775456282509,0.0,0.06701516360762362,0.0,0.009452273146836422,0.0,0.05399923902385498,0.0,0.0,0.02642829669729997,0.0,0.0,0.0,0.0,0.0,0.0,0.06769112567958492,0.0,0.0,0.06951673860868142,0.06951673860868142,0.0,0.0,0.0,0.07591273931483498,0.07092347708906893,0.0,0.06874759410609693,0.0,0.0,0.0,0.0,0.03642197775281015,0.07383188073918355,0.058770689928038064,0.0,0.0005459148459646086,0.06665684030355576,0.0,0.07518993339345703,0.0,0.06980053228630849,0.08509271587302766,0.0,0.0,0.04783137168791132,0.0,0.0,0.0,0.0,0.07236263882037233,0.060394610475395266,0.09485612885517637,0.0,0.0,0.0,0.05079267612230432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08379060061433224,0.061945640195310375,0.06194923601334808,0.0,0.026120013265465928,0.05528137042885614,0.0,0.0,0.0,0.22467028205053774,0.0,0.06196084690979176,0.005853288211782419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06513444874529997,0.07091703133460295,0.0,0.0,0.005853288211782419,0.0,0.06355577617422005,0.08298358577669143,0.0006298370323694224,0.039674374159233056,0.07021866774406835,0.0,0.0,0.0,0.08790443320615295,0.1037603258174959,0.0,0.06516478845999298,0.0,0.0,0.12082461702360739,0.0,0.07162259407634862,0.0,0.0,0.0,0.0,0.0010488127507998872,0.0,0.05876994199788622,0.05080256462190795,0.0,0.05559431751473184,0.06952336484427242,0.07423596942518765,0.0,0.053985979444841,0.0,0.0,0.0,0.049214003551224406,0.08653134045812558,0.26593451817944785,0.0,0.0,0.0,0.12136031938447411,0.10181951244002302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10596425441979221,0.020564708995505516,0.0,0.22467028205053774,0.0,0.0,0.0,0.0,0.06958567380410999,0.05576911106653145,0.06355592540066864,0.0,0.0,0.0935361682364743,0.0,0.0,0.054020513681274994,0.052390375964530646,0.06951673860868142,0.0,0.0,0.07376294554375498,0.0,0.0,0.061945640195310375,0.0,0.0,0.0,0.0,0.0,0.0
+6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.302078279880733,0.0,0.0,0.0,0.051868320423951925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0871202194804745,0.04291632371417589,0.0017249725161405621,0.0,0.0,0.0,0.008374212748147286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.041314770193479566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1428847885443076,0.0,0.0,0.0,0.0,0.019432288739475473,0.0,0.0,0.0,0.0,0.0,0.005153914270774307,0.0975344884111452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16503010488048805,0.0,0.004072207677943159,0.032348113718881376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1428847885443076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019528456759193853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.049929321218373866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.032626322786800215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10278271353425494,0.0,0.0,0.04120195090537308,0.0,0.0,0.0,0.0030634838673279656,0.0,0.0,0.0,0.0,0.0,0.24042764118346094,0.0,0.0,0.008687572012752961,0.06161012631864148,0.0,0.0,0.0,0.003519214646141275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09502441243530431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.041277078620632755,0.0,0.0,0.0,0.0,0.0,0.13548167552226567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09854051174131273,0.0,0.0669779264651567,0.0,0.0,0.0,0.24917539324159607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0068911390394404155,0.0,0.0,0.0,0.0,0.1428847885443076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010713682659748648,0.0,0.022341070571273467,0.0,0.046731551495959436,0.0,0.0,0.0,0.0,0.303379739405342,0.0,0.0,0.0,0.0,0.0,0.0,0.006639505359786701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.053088725667180835,0.0,0.0,0.036209247064868263,0.0,0.0,0.0,0.0585100463777468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06292371188396596,0.0,0.0,0.0,0.06441919761871277,0.0,0.0,0.049207027616386664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001856391204650233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.054726581926837575,0.0758702689983423,0.0,0.0,0.07046744100370754,0.0,0.0,0.0,0.0,0.0,0.0,0.045663713368246,0.0,0.0,0.006816059329374166,0.0,0.0,0.0,0.0,0.0005006597972550016,0.0,0.0,0.005899666802773669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020853669768981124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034627470630421396,0.0,0.0,0.0,0.0725141294757502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06423680788885186,0.0,0.0,0.0,0.0,0.0,0.0,0.10409053125457228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05765387694958433,0.0,0.0034679989164043894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019534986400955322,0.013533929418221947,0.0,0.005850990446227203,0.004714027369606819,0.0,0.0,0.0,0.0,0.04023174933740637,0.0,0.0,0.0,0.0,0.0030634838673279656,0.0,0.05666650085075558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011050854801289282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03293490285095007,0.0,0.0,0.04613773524266822,0.0,0.0,0.0,0.004638828730596429,0.0,0.0,0.0,0.0,0.02158757360484415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.020853669768981124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12449753175554103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0354466302473112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1305838898396062,0.0,0.0,0.0,0.01934992353148643,0.0,0.0,0.003724167008492611,0.0,0.0,0.07091707224320337,0.03638486169997319,0.0,0.0,0.0,0.0011726952436974974,0.0,0.0,0.0,0.006044705106619999,0.0,0.1723231414088051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0519461208419467,0.0,0.0,0.0,0.015820782421533494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04313249501623738,0.0,0.0,0.0,0.0,0.0,0.011734220552637715,0.0,0.0,0.0,0.0,0.0,0.0,0.13194688584364556,0.0,0.0,0.0,0.045650252880328354,0.25307977181542285,0.0,0.0,0.0802938580014862,0.0,0.0,0.0681215350721499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09266878209715132,0.01586719411116001,0.0,0.0,0.0,0.16503010488048805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08079678956776973,0.01089151267536352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.029119545496778938,0.0,0.0,0.0,0.0,0.0,0.02450869328932145,0.0,0.0,0.0,0.0,0.015426803199109993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1428847885443076,0.0,0.0,0.0,0.0054599686464472585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16503010488048805,0.0,0.0,0.0,0.0,0.0,0.001280980913014034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+7,0.148921881006429,0.14788957196392286,0.30928820467935936,0.07774627481304779,0.25097927683383026,0.24065832719816507,0.11299263320852486,0.14934286926977458,0.3567950258987608,0.14848863648786345,0.14850486497020335,0.1498942559763547,0.1220047216197032,0.11504771675017858,0.16670155050757168,0.14934286926977458,0.2036118228956268,0.08324775720163448,0.2558497282820653,0.06846741106346364,0.2539562717078847,0.14940830249844247,0.05651827846459081,0.15156574842690465,0.10320558837098084,0.14774098077704167,0.25206652624504355,0.14945956277096573,0.15603415499533746,0.2992748849835855,0.1349480531221414,0.26286668705922944,0.1491662621156914,0.2379178443789282,0.27573468129961576,0.14953723033871882,0.1822671777069669,0.06105738795869163,0.11576735944917868,0.23698617956336393,0.05657995637018123,0.14934286926977458,0.08266131377008164,0.2543750383914499,0.15534945922463422,0.1229620158492315,0.16468609734091025,0.14872229055264558,0.2723853922004197,0.161778387740822,0.13525027922676428,0.15010113101642708,0.2629198814441855,0.25663206995853866,0.07261412045768956,0.09601196852052733,0.2971671801912761,0.09427843758655788,0.1506616344149382,0.0855862718749247,0.28874166068240886,0.2523326834436528,0.24102064672838625,0.16338598807325397,0.06746417270750779,0.057253074778420905,0.1475375892860947,0.21546685390973042,0.08206419027854464,0.09446499784511911,0.12224506428842588,0.3122759494637871,0.1655591928786134,0.15530502229330614,0.14965582002296898,0.14022825725129104,0.3007498811557133,0.14933418239203292,0.14908296101712162,0.16398507334632775,0.15751786229818796,0.26096902409697903,0.14788175276008517,0.1507027646806052,0.10079074980324877,0.1479327325875705,0.3085465537344652,0.26321737775960397,0.08472114651009717,0.13553372514136647,0.1788677858529422,0.20973940162818638,0.2199375409204821,0.14953723033871882,0.1575992189845438,0.11837199504386392,0.09040426312621563,0.34391128643781127,0.07725939864295302,0.15772602395787796,0.29316915755482503,0.09728184351210475,0.09114891494926639,0.08600648635399352,0.23481429625661157,0.08426657386596095,0.2992018337579157,0.12982750338715077,0.15178168483832022,0.15437552015167827,0.25393846371874373,0.06795511390199366,0.23718026210236431,0.06781537833742758,0.33967337123584884,0.3683193379386674,0.16468609734091025,0.1591356902244537,0.3092878879832943,0.2507621642243535,0.14706025454209326,0.16398507334632775,0.1533109613140831,0.14660128939230568,0.15052151337134725,0.2344006066490154,0.12020805723456096,0.13057369820489148,0.3007500221910276,0.1062573589625896,0.14874587976077125,0.2566898844529782,0.1493720567340176,0.07725939864295302,0.15180986033295085,0.34483456290059095,0.25368253515353595,0.08416747293281387,0.3379685948285665,0.07794696128957107,0.15100837882579263,0.07447223173179494,0.16413108663131956,0.14940830249844247,0.09671550858565921,0.1488318458609113,0.06830862418610875,0.14988027595488856,0.06725206653703875,0.23787548020278865,0.32343048688315384,0.1486215584713945,0.14681851874817992,0.23516525051756054,0.07237262746725492,0.2545234541506673,0.08991843558089482,0.2534127439902377,0.06830862418610875,0.08041160731084543,0.2723186402706143,0.2992018337579157,0.07701790565251837,0.1494042121431311,0.1330967314232219,0.1225146023259294,0.25314728756911176,0.2509325626041226,0.09428819493757556,0.12069900782553429,0.14968234127323968,0.24382928063700277,0.1822361867106575,0.11844333738981895,0.2647321435699179,0.287725973753354,0.3369969247447349,0.3127583793833819,0.392823607239376,0.2699284282844723,0.16468609734091025,0.09725486208156388,0.14025486922527414,0.11514841913840106,0.3092878879832943,0.08484386959561,0.08470189900358115,0.11920062097203545,0.3450428757751543,0.3227600187929868,0.08462532278552848,0.15022063202085695,0.2619040356445777,0.09973071140215754,0.3092878879832943,0.3441615657731816,0.2674888684720898,0.08084445601418377,0.20453316354869203,0.2516604528581734,0.17838065892606378,0.14775863332122188,0.1505774373706294,0.1501827005574333,0.084719730395941,0.13514186469283188,0.14871888938575242,0.14920592902837376,0.09446499784511911,0.30440637186750036,0.3089970399014444,0.3247514883039144,0.10082325574874283,0.25281220047116854,0.14852830340054585,0.08250710222822763,0.1308627824945406,0.2981464212120923,0.08463476354656974,0.3732176523495848,0.3092878879832943,0.14516952782021228,0.15225350890434078,0.321984805313806,0.14934286926977458,0.08666106118989263,0.3412404675312402,0.3224980508441706,0.08290994618492754,0.33400689040859255,0.3308762762058562,0.35229806684538156,0.25436104242113466,0.14774098077704167,0.08682675957357033,0.25341466497359855,0.25450421668087525,0.13146366176937646,0.3239387040563186,0.3588946069777088,0.1493720567340176,0.14751186495880395,0.3219801148129423,0.25498818770015386,0.16398507334632775,0.34865331401851807,0.16757670749802953,0.25743106110039304,0.24761325819915803,0.31971589867053435,0.2899078806641046,0.13127915897817827,0.10596270294011984,0.09884822144303647,0.3267369966340752,0.14940830249844247,0.07352287043377302,0.35192243289420927,0.16133143319003465,0.12947960820128004,0.06896918651783973,0.3569460136715782,0.07540128736884763,0.07261412045768956,0.08413384566586231,0.2507621642243535,0.2609236584820424,0.24583662246660792,0.11815925115692429,0.1590260832013349,0.14852518845611085,0.08454979669719848,0.12248510747623441,0.11585829601040862,0.13310470995480692,0.14706025454209326,0.30306593296657786,0.25917735979121775,0.30928897910680375,0.30928897910680375,0.1217292995570045,0.08264982156553859,0.2990895520497371,0.15390510950551223,0.15135666926068575,0.14967365439549804,0.3656812889129218,0.28946041169087644,0.3092878879832943,0.33017193934099565,0.07451194176235881,0.11882488424365187,0.1501827005574333,0.09521269026181245,0.22221332606892688,0.3416906802632468,0.2523620153157098,0.10795678497429047,0.13068644897667323,0.15025344245748293,0.36506603548413785,0.26480227826421954,0.1510458597362335,0.3192148430201328,0.14940830249844247,0.06132371895752106,0.11932644155839753,0.25743106110039304,0.16468731364727196,0.285408429982269,0.09189990735045635,0.14957046616957853,0.09941403427845187,0.3321979021991557,0.25235169007987324,0.14923165335566457,0.2547747828387017,0.10647663330168833,0.07144357183020224,0.2516735776634485,0.15685108168904055,0.14781101086003554,0.238877442677953,0.11689078754724264,0.2517351056311074,0.06822775589262829,0.1642558181338649,0.06778114945955631,0.14957581682965504,0.23787548020278865,0.14940830249844247,0.16473824062854103,0.3545525269681339,0.08084445601418377,0.1609167957425477,0.2544941222786103,0.2613038615986426,0.2511916870035751,0.07725939864295302,0.2408558719043726,0.13301200075734781,0.16368861112714828,0.1485791244709614,0.24348517520999943,0.11546210083061498,0.14968234127323968,0.25582488100489365,0.25259688583170337,0.16468609734091025,0.1509928172356921,0.07796467299570631,0.24583662246660792,0.26712552635592474,0.15109827621270092,0.1344859756359482,0.3105817196822138,0.2263949441841444,0.25806027724615144,0.18690121850683936,0.07887601692662376,0.2695715488657784,0.14947088499780306,0.11920062097203545,0.25168260956069227,0.14931634801950386,0.05455251614291534,0.25228801563192566,0.09651867179662284,0.256985737173693,0.15092417708172576,0.07141943754683068,0.1168112287728125,0.08248135257003446,0.1264522800988025,0.14934286926977458,0.1322423290788293,0.19186247415495733,0.31578268456269043,0.2696274667905897,0.16468609734091025,0.1389415439890998,0.15265145207935124,0.13547281122373414,0.11297701082770241,0.14934286926977458,0.1563930617710009,0.08084445601418377,0.16298361182205787,0.16468755924759496,0.25992259424370345,0.14968234127323968,0.1557088135140166,0.26003201531554787,0.28817846292068633,0.2522102228778147,0.08422881082179595,0.06822775589262829,0.12145607923520649,0.1493023952557142,0.23413155713022613,0.1059726850127929,0.08084445601418377,0.16366447772443873,0.2910136428427171,0.08121106452923363,0.23787548020278865,0.32430442099613915,0.16442774973094357,0.14933418239203292,0.11741153105850616,0.1168112287728125,0.14971086954793159,0.15993849606760885,0.2032287218994975,0.14950507492960538,0.13210501788864562,0.3609414737038132,0.14635127223923844,0.3257063802706194,0.1485540277278366,0.1507027646806052,0.3037969802547549,0.3092868677997035,0.25811981050426436,0.30317983462574716,0.08873883940182663,0.25502606869840205,0.08470934555879563,0.14340978885686778,0.13656801477296518,0.16464310555797892,0.14934286926977458,0.10244379435356575,0.35841453841960474,0.14863120070970895,0.13564692207474555,0.2556435209414442,0.16372708655572984,0.26228239263405423,0.15105825046435997,0.3136959332210673,0.14920592902837376,0.13310470995480692,0.3437260682418801,0.13310412948577097,0.16513238598038865,0.2696274667905897,0.08939736368540792,0.15685108168904055,0.05217779061496895,0.24850244077805117,0.13310412948577097,0.12296959217825074,0.2881039693235128,0.2544553413613137,0.25364386390316673,0.12982750338715077,0.34063617287135084,0.14660587624183724,0.326006455214233,0.31478745792463636,0.2330015871978053,0.23211171085293877,0.06559926388988897,0.1291230757818534,0.18866634492632334,0.2548621523302265,0.09742746660219248,0.11905358513614132,0.0625374358508383,0.09215837340506507,0.0717412393442346,0.16468146602053305,0.1306604329522129,0.25233121685004994,0.1822361867106575,0.35165750981116545,0.1100086801607753,0.3256549077526,0.25219224588351047,0.16468609734091025,0.1576927898389966,0.07526377483952403,0.14934286926977458,0.2544941222786103,0.09667067511039232,0.1502223674701157,0.2534551540644774,0.13310412948577097,0.15107590300854018,0.15530499864836278,0.3391167166977558,0.10244190620135749,0.3092878879832943,0.15100837882579263,0.14852348144717828,0.25568476240956844,0.32247392151759596,0.27231867489605077,0.1510458597362335,0.2548870252303891,0.35504729267809715,0.13115931727846603,0.09728721754933153,0.13289912717123442,0.3036307347642457,0.10984095124878676,0.15916968846321378,0.1491662621156914,0.14934286926977458,0.15387328400518735,0.35957311016700816,0.1625972683439171,0.3092878879832943,0.07276963182382565,0.12000330488592884,0.2529116861403506,0.16654483080252377,0.13310470995480692,0.12608139893029732,0.25893563518176654,0.14940830249844247,0.08441007343378797,0.1608648242831538,0.09479730868554541,0.12365262892317865,0.14939961562070084,0.07451371991611444,0.28274664770018326,0.3285689040468365,0.25765787267688656,0.14976720927410597,0.2992018337579157,0.16468609734091025,0.1534807695011808,0.25901294678005016,0.1224819850845006,0.24173124397005166,0.2546909120526091,0.0742307387413603,0.12441946910915216,0.109771884969291,0.12308247044580031,0.1495554431624407,0.1474342665826979,0.17889487154694392,0.13424476878065428,0.3054567000941371,0.1478506777727179,0.16468707389457565,0.23991466642707893,0.164545112065435,0.08741398170313057,0.08510049289251669,0.21892620840873284,0.25168260956069227,0.1510458597362335,0.06417717306164342,0.26547723010436824,0.11845202426756059,0.1498942559763547,0.33017193934099565,0.22267304343775793,0.1344940185564139,0.25992259424370345,0.12383849464366749,0.1502223674701157,0.15754816163422128,0.14955503927194025,0.25261643976549625,0.14940830249844247,0.2523276762020355,0.14940647358309986,0.3092885568453837,0.3019603601881174,0.05546914020968769,0.14940830249844247,0.3004142337695764,0.07076730336181333,0.16353954398322162,0.12426529393177456,0.14149148338851586,0.1359456549634841,0.1545452561534108,0.11857759631689468,0.06314280978543502,0.07261412045768956,0.14945956277096573,0.16011530887581746,0.31580110079878787,0.26678284219239157,0.07671069869975852,0.1793621698902404,0.0781884542800057,0.08084445601418377,0.1505922552713969,0.14831923008090647,0.25112188219800685,0.2644491894632643,0.16280943266163547,0.3092911605092997,0.08588732631301804,0.1495416268978527,0.10392482106802327,0.13798827738961258,0.08197384645198792,0.0864659497873595,0.14963713902425055,0.1505869046113204,0.31543290496101467,0.07667436067132706,0.2666108179464233,0.1344940185564139,0.13116524458598944,0.17581866174779098,0.12530567179563665,0.1608648242831538,0.30928774694798,0.12674011063188198,0.15945572745572043,0.3337612449708266,0.09948371127486762,0.2767402070633791,0.16441098008692048,0.11928881873240926,0.08749191276339822,0.2652976535027289,0.12067298311602526,0.3159974791135098,0.12470053956760345,0.3289073230489185,0.08470934555879563,0.12836222052646643,0.1478966584419952,0.12531835281609124,0.15028559786659643,0.36032775294658126,0.2512634692362893,0.16423290626864512,0.1519388281587128,0.25441474097230743,0.11852411128172857,0.08151508213609984,0.11914768182189683,0.06887702086609203,0.14968632623886333,0.26953268618249837,0.3092877824179393,0.05862734160482837,0.24175678482767246,0.3287944657881293,0.12733468641693785,0.08084445601418377,0.07076730336181333,0.07076730336181333,0.14489317047834316,0.267405865952824,0.1640189135826232,0.14940830249844247,0.14940830249844247,0.08464420430761099,0.090721362847519,0.35275103016383363,0.11631047134707266,0.15021654231440393,0.19713983635766238,0.11570414216707088,0.25239186310601597,0.052452102730844795,0.16472819780535453,0.24932665136239002,0.15008579834114572,0.15120684165124115,0.1488671162144598,0.27578374130906624,0.07042810164868951,0.14778341477747484,0.06746417270750779,0.15265145207935124,0.3148109246885894,0.14660587624183724,0.1588491885361648,0.13038972957695527,0.32900669064033616,0.15109010910177187,0.33363850899811376,0.08253007611148587,0.30958620057583675,0.15085084954777045,0.15086021098433852,0.14811563374214723,0.1628126680046717,0.2788163618567638,0.13310470995480692,0.2765183260126449,0.15059868635321957,0.16468609734091025,0.23728134129873163,0.16468682829425257,0.33837301054576413,0.2723621940956528,0.30756925250152045,0.08133698147424355,0.115333125235725,0.1484070669468573,0.14835561829227573,0.25125950147532405,0.20278098905358122,0.11751105371141506,0.12299399471337966,0.16468609734091025,0.06476520436380935,0.29316915755482503,0.0825128557556279,0.1481894905866319,0.08806199096050604,0.31794868046398717,0.2547261447284567,0.13309615095418592,0.24721521955424264,0.08151508213609984,0.25827090351474724,0.06550868863870578,0.12824096783205377,0.1477487345644974,0.15028019331505363,0.11214364614310669,0.2512431225579674,0.08806199096050604,0.3179938093721069,0.14785281289188307,0.14996616511876404,0.08353448783072874,0.23454972340015923,0.14974884110294776,0.08510049289251669,0.25259444086145344,0.0821920552322347,0.16079425288274765,0.08553791534035496,0.33640428797782407,0.1473146365414656,0.10913887314781232,0.25341561511781696,0.099016336480729,0.1647328783548215,0.1344940185564139,0.10494451296477643,0.16468609734091025,0.34433634018673326,0.2631713828656021,0.0702714498557947,0.13310412948577097,0.1488778175346128,0.1504572025531203,0.35133390979955037,0.14934751342494937,0.14934286926977458,0.1334651458781691,0.08251092991946482,0.14987604315263278,0.06619820318215523,0.3305340302702908,0.13659825961841077,0.1507027646806052,0.15949816145615356,0.16398507334632775,0.1366617183939119,0.0714544579136673,0.34204306469848234,0.09584584188681661,0.19151131688953618,0.2595217184319317,0.2968714366607498,0.2687399042632149,0.2511507271609878,0.34117360466585545,0.1479558629749829,0.2823404308530311,0.13310412948577097,0.10857330603868348,0.059141962019394104,0.3169610246443876,0.29316915755482503,0.07168506482063687,0.26266995717286706,0.2833937111440091,0.08718628940904534,0.14872757626349412,0.11894967183097799,0.1478506777727179,0.32749925171765476,0.09400627719765989,0.1618696679124028,0.2846195839937677,0.2743728869918353,0.1493819302740316,0.1502223674701157,0.14940830249844247,0.3574003016159393,0.2521673630524818,0.15188756788618954,0.25217037846281243,0.07608885001546568,0.1484070669468573,0.3155743542823038,0.07447223173179494,0.29766498109820827,0.24710513175189808,0.0794005955468653,0.16477074392904234
diff --git a/data/without_training/activation4.csv b/data/without_training/activation4.csv
new file mode 100644
index 0000000..b20516e
--- /dev/null
+++ b/data/without_training/activation4.csv
@@ -0,0 +1,7 @@
+,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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810
+0,0.01963324062811788,0.03244287876186534,0.13331537210513417,0.05481200638267425,0.13386061685249853,0.13864215943362884,0.03226587987523514,0.03462430805926857,0.23431824004504945,0.022975221813701638,0.03236601358995819,0.016028931086324683,0.08906143041646179,0.04982951855287754,0.11348145336683868,0.03462430805926857,0.13120788409506365,0.060764924749424465,0.14527753197114157,0.05382644043020693,0.13760911424860447,0.03461613384581471,0.04562023555788903,0.04133758111801942,0.09408008813583268,0.030122954724983216,0.12805682638275181,0.03460973018183792,0.05247180124019442,0.13946113898160434,0.09316090778383966,0.12257229462807914,0.019514330456155384,0.13216385856714225,0.12058688341960083,0.017768238702124056,0.05617349056276601,0.04792155240949673,0.07259293569441536,0.13606806794202725,0.055971626903212,0.03462430805926857,0.02197055282757315,0.14288958238185212,0.10939191341214603,0.03182030622736391,0.026742099009528914,0.02286153117244529,0.12939021510257973,0.06933378273531081,0.04894316209185768,0.015928270496543384,0.15085004110677408,0.14211757599779629,0.03345239244623559,0.018558473682004237,0.19800126257272702,0.07154996971716139,0.009108518056014323,0.06277323358298836,0.1304964553258001,0.12942312589322014,0.13674465271893893,0.02065790473661063,0.02621322243994725,0.037608217021200284,0.028134740991375855,0.12930512996350582,0.04857651016086002,0.058618117230233115,0.07554306534461798,0.2215124648384633,0.10288682584721934,0.05840910457127941,0.034585212842522695,0.0971034236333496,0.128049975080402,0.03460089824147927,0.034656776968091434,0.1718818006267228,0.06634637577687973,0.15426959894856498,0.026401691805679767,0.010938767831055114,0.0714088971229825,0.0,0.21419396134589014,0.15078585488290794,0.05592397645860008,0.03629200910570789,0.1284951655197325,0.05863786574203804,0.10744400335804849,0.017768238702124056,0.10259283122800851,0.032682867512744,0.09684068835854628,0.24367693282400357,0.038510370789986856,0.047583471920362885,0.2275940935018104,0.023164311339557243,0.07854517874590537,0.0453130535139022,0.10427778883403832,0.05886817397208352,0.13837075454792896,0.08880015810565411,0.030757376368378185,0.04800203193715216,0.1421330864079785,0.02732260958379943,0.13085590034972047,0.018704209700650808,0.24013727353275952,0.28937495010470093,0.026742099009528914,0.061438290365863464,0.13331064500498818,0.1359134841722808,0.03020799411034418,0.1718818006267228,0.04345804798537197,0.061574509394887726,0.012592547741062941,0.10120468099885994,0.06242681288118414,0.043633051843563544,0.12805208021566702,0.07300463067832072,0.022850053211635867,0.146766831585355,0.01941419557450278,0.038510370789986856,0.02495940159006019,0.25627144128765555,0.13624617379802031,0.06417504468008704,0.2512843377877943,0.0383501890098161,0.008995707535680764,0.0354755837837361,0.08887633236776314,0.03461613384581471,0.07389739484260262,0.019677049638840906,0.027184401265250235,0.01681852705634309,0.026296147431076763,0.138965380713147,0.24359412608614267,0.03235143571252753,0.09040869110630456,0.13764916549978862,0.032280614997314584,0.14034180744949964,0.067664924207145,0.13335123917490116,0.027184401265250235,0.04171699238300694,0.12839385584220825,0.13837075454792896,0.037338593341065845,0.019398549499244553,0.045923802376360304,0.09341700294764607,0.13351487472285925,0.13608196058058433,0.07154387985850383,0.08636276528738751,0.034581899688561187,0.13979015569063108,0.13129086893151132,0.057970296193988,0.15308816364564481,0.12972869702497627,0.24985172271207268,0.22554512661856366,0.27258642207479894,0.1633610584831419,0.026742099009528914,0.0716780105386876,0.10088181010262999,0.07647686290635401,0.13331064500498818,0.04699707967013114,0.08824722031810266,0.04677750791645048,0.26621448059242536,0.24591096257601278,0.05654461207151509,0.023698060245845247,0.15582701402168797,0.06752660022523796,0.13331064500498818,0.2573879817933953,0.1549477354920185,0.03768802172662761,0.05812961714045455,0.14419141872312125,0.05208000662182298,0.030120749489706423,0.009135910890856587,0.014322993419836045,0.05593314841347076,0.04898554781899037,0.03467776341338642,0.01949502945771684,0.058618117230233115,0.13030406591489885,0.22066565198227564,0.2313821191054423,0.02793405797324926,0.13217912393811768,0.022955920815263087,0.056311829437209825,0.04084689605859352,0.19354378026320943,0.056483465705710646,0.30635756405103504,0.13331064500498818,0.02392921305427746,0.013315386173206555,0.1913340013435394,0.03462430805926857,0.048858539203512096,0.2548649486612598,0.2283557021163189,0.020691743379101787,0.243242852975609,0.24107096143115803,0.23505600076001118,0.13797567310852754,0.030122954724983216,0.06576937509000251,0.1348806334558849,0.1374693664496867,0.08106049494039921,0.2483595891655036,0.2750622181063629,0.01941419557450278,0.02814725785158243,0.19134271025369556,0.13730001260745275,0.1718818006267228,0.2677319343943463,0.11951152479915661,0.1481850541989673,0.14183892477053342,0.2276558944231271,0.14934591073310977,0.09000939154453598,0.08356220297620118,0.056350691288946105,0.24208497188311592,0.03461613384581471,0.05647882546084521,0.27502466685007776,0.0693649420003893,0.08855869365850343,0.018149743255881385,0.2350992092307579,0.03648717945248636,0.03345239244623559,0.04716309391548254,0.1359134841722808,0.15423702198995612,0.14087262173135834,0.004180731424697707,0.06145198296855558,0.021391849242355803,0.05703378299795054,0.03352066937390805,0.04759013867546834,0.04593412591929304,0.03020799411034418,0.20994557818888585,0.15121103809446174,0.1333269314406912,0.1333269314406912,0.08094466617713322,0.019923905111020466,0.14146693090401902,0.04572231103570068,0.024636357432950062,0.03455848987077192,0.28191131080159837,0.13024991701159966,0.13331064500498818,0.23907098648887984,0.05527709261996152,0.032572755031641754,0.014322993419836045,0.06412306392024793,0.12303233820011923,0.2519104734007439,0.12941012643546404,0.07249273122170495,0.03822323115598524,0.014288572054267958,0.291238356956844,0.11358444839705056,0.039064041236598485,0.23224641877319338,0.03461613384581471,0.026938912982933466,0.10302106989986534,0.1481850541989673,0.026742966018363477,0.1633396733484924,0.0700545434457532,0.01775206691873715,0.07805641830542347,0.24044991075102634,0.13238321542488782,0.019482512597510288,0.1416991315504705,0.06513557276439952,0.03126901932856433,0.13808898052898347,0.05470823379724636,0.026436113171247878,0.13308728707754283,0.053487274275099694,0.12671945066579068,0.053697017869102456,0.08886763675890404,0.017319374524217734,0.01774946341181419,0.138965380713147,0.03461613384581471,0.026779267844999254,0.2713909853306679,0.03768802172662761,0.06610942043546905,0.14035480690725566,0.14995267730873624,0.13439456419575813,0.038510370789986856,0.1128883944533017,0.04596971441022828,0.021650616349835877,0.03235673675886597,0.1395329704268307,0.03416397670423853,0.034581899688561187,0.14066866147845408,0.13610784639714218,0.026742099009528914,0.03907066754452153,0.0522849311032593,0.14087262173135834,0.16095346474924516,0.010746321105378945,0.09674540145271972,0.2106238063185209,0.13391745036238165,0.1396278880052761,0.1398881206030018,0.03936178467856636,0.16532292095012677,0.016234933571604535,0.04677750791645048,0.1380984411468761,0.03462762121323009,0.030542505172560047,0.1338588619846377,0.0632437013498562,0.12492311186403914,0.10622998351422676,0.056181924510435785,0.058198681570545086,0.05629930831130832,0.10209693976182584,0.03462430805926857,0.044973824560997376,0.13875570542839036,0.22955063369308515,0.16249594458486524,0.026742099009528914,0.0963223211997674,0.04354043684756376,0.0935251278996536,0.06987733254725914,0.03462430805926857,0.052426964990264,0.03768802172662761,0.11612674574581895,0.026743141087455072,0.12535632746578587,0.034581899688561187,0.052512444362471114,0.14807222257514988,0.1590859144655251,0.12947739862935168,0.059112759435301254,0.053697017869102456,0.055255444204893284,0.019448091231942192,0.10123879724123831,0.10832663143311691,0.03768802172662761,0.08562443397320085,0.1723430457817664,0.05749714319413108,0.138965380713147,0.24464236977533835,0.10617541874704572,0.03460089824147927,0.01629557866361522,0.058198681570545086,0.017683749895729663,0.11365594360229299,0.1322569372211399,0.01778388477738228,0.0463178799912697,0.28015200048985894,0.03499803182612745,0.23366456006904815,0.0229434039550565,0.010938767831055114,0.12992873496502688,0.1332954174397179,0.14934085624726126,0.21354352103052926,0.0556708611438569,0.14380007852369497,0.05600040941585563,0.03170882004369618,0.03296800901743086,0.026122936957033976,0.03462430805926857,0.06684275431818705,0.273349973815952,0.022905853374436794,0.09364597343615386,0.14512945488655576,0.026058495889966834,0.15225997763319182,0.039062493331067656,0.2280688423037311,0.01949502945771684,0.04593412591929304,0.2510463590596267,0.0459343487452649,0.033169489808044426,0.16249594458486524,0.07057706212142781,0.05470823379724636,0.04680652500513704,0.14227264497935452,0.0459343487452649,0.03498351420202734,0.13071518942251814,0.14035644685496182,0.13428940323558636,0.08880015810565411,0.2541438614817673,0.03496622554809694,0.23292492106740528,0.2231390199147969,0.14015117991837966,0.14172317934964185,0.05151625424636462,0.10440086238492417,0.13629175515994155,0.13620359980258442,0.02323814107431894,0.0649095214490266,0.0243562022945657,0.058964303566982394,0.03625299006203659,0.026738797706658834,0.03982654733589391,0.12942377586610795,0.13129086893151132,0.26302934285023155,0.07566934568347293,0.2443365096528169,0.14454163024061514,0.026742099009528914,0.05694157054323665,0.0365192158085205,0.03462430805926857,0.14035480690725566,0.07255126426602021,0.014303692421397502,0.13931545877483892,0.0459343487452649,0.03906028809579091,0.09544687897734427,0.25809285475103994,0.06685498359134792,0.13331064500498818,0.008995707535680764,0.015130330903160268,0.14515907030347291,0.2357739028638559,0.12839437267182421,0.039064041236598485,0.13817179020124976,0.2704502339397416,0.08014785985376756,0.06734880775656751,0.04601304345099575,0.2154484719012158,0.0678486908133162,0.1212572208461258,0.019514330456155384,0.03462430805926857,0.045726286820454466,0.2790912935282528,0.07584555049922298,0.13331064500498818,0.05729171970597039,0.07180633833335784,0.139980436936401,0.08213920340758579,0.04593412591929304,0.09979331488020246,0.14088759889186164,0.03461613384581471,0.05793874921185615,0.06611304360582698,0.06397333932930277,0.07135044834825338,0.03459272402802545,0.050918149099072475,0.18381097710440292,0.25499070593631196,0.14751053030029482,0.03457129759588433,0.13837075454792896,0.026742099009528914,0.04577532149908488,0.14243500076807097,0.06681971701231926,0.138490381861016,0.14283770620958744,0.034303806334815085,0.04322956697346172,0.08122241456903923,0.037904675174738826,0.017759376765097784,0.01879149202401178,0.12854732596061447,0.044031690640617106,0.21769239925305134,0.026416812172809313,0.026742795117583585,0.17592728146685366,0.08884746874342349,0.05979927460793359,0.05274447136164735,0.12672797324270985,0.1380984411468761,0.039064041236598485,0.0503676322824987,0.15298540112124248,0.057993706011777266,0.016028931086324683,0.23907098648887984,0.1237729765850582,0.03963341819904145,0.12535632746578587,0.09959881765447644,0.014303692421397502,0.10318361346924283,0.034597802827576456,0.13078162572903484,0.03461613384581471,0.13551774025111477,0.017831861902554105,0.1333206286404965,0.12867668611151786,0.055524348599888744,0.03461613384581471,0.1391174849565594,0.0314284581946901,0.11645280641016514,0.09234975314370189,0.0560107332167613,0.09384544601480471,0.04798082775179847,0.036717480987780875,0.06313435902327405,0.03345239244623559,0.03460973018183792,0.06365439871125386,0.22960020667975808,0.15923669313901836,0.06003210490325459,0.10932044159405646,0.039521966458737116,0.03768802172662761,0.012558126375494852,0.023840444653088173,0.12402270934912837,0.15122313223791925,0.11875956361143528,0.13335949170649675,0.06448642984112826,0.016200512206036452,0.1102078544592622,0.09580485606237495,0.018090388748914908,0.0856414002916076,0.014588450991097122,0.01256072988241783,0.22479572429871383,0.06014118774627769,0.11441736103761503,0.03963341819904145,0.04191429213032238,0.12631431126692533,0.07734544963000017,0.06611304360582698,0.13330853986972316,0.10268617956717918,0.06139830987437905,0.2333328146889595,0.06502717691299796,0.12134655693394773,0.02371584018242046,0.04879836510057691,0.052676163138241944,0.160340741866299,0.08123618209646505,0.23280280055678093,0.0457718271519492,0.23617085947036204,0.05600040941585563,0.09283047263855967,0.03244199348712679,0.07738347609194315,0.014272925979009733,0.2835038938051425,0.13736366514979345,0.026419054852418772,0.04129097431861202,0.13784566907185125,0.030603581974393133,0.04326764074336463,0.07363040431960116,0.05252814683026571,0.016130104867374453,0.15835307782309044,0.1333090693049395,0.043729166948828745,0.13640323582753075,0.2516692999332439,0.029302801482886658,0.03768802172662761,0.0314284581946901,0.0314284581946901,0.03176983461481013,0.153121748710558,0.11898091091100413,0.03461613384581471,0.03461613384581471,0.05642231933990622,0.06990157288944061,0.2373989083171365,0.045437898754761744,0.0368291565850774,0.14000969378703093,0.030329723466596903,0.13943284145686088,0.03688471158933279,0.027348424409383624,0.1424571209235547,0.0,0.041382417367949786,0.021225475136489987,0.1731901241506715,0.015175595021646613,0.030117653678644798,0.02621322243994725,0.04354043684756376,0.2271361870609728,0.03496622554809694,0.0591355947295812,0.03846682450392306,0.2508836591079581,0.008969117244181904,0.25009084144751087,0.0578945724475154,0.13349437898881067,0.02427579847049811,0.03908723331432912,0.023156716286697014,0.07911496185002752,0.16568948750360246,0.04593412591929304,0.17806788726709238,0.012554997160443214,0.026742099009528914,0.10552774294835984,0.026742620048491993,0.27364555958141423,0.11732536505321198,0.21252140998322136,0.054561706152101624,0.058383332917651416,0.024580498890408975,0.02460553261082213,0.1239617184932285,0.05798788925560548,0.00015289741916364627,0.09003227596623316,0.026742099009528914,0.0252752242969678,0.2275940935018104,0.05670820801957724,0.0246863664940362,0.05338162332773892,0.21216768689845297,0.1417206872513216,0.045924025202332165,0.14155500782463715,0.04326764074336463,0.14503811767933567,0.040756377764168815,0.01654944193385101,0.028032002602800286,0.036821205015569736,0.07400154287699862,0.12396897739043947,0.05338162332773892,0.23158229570497071,0.02641577327341216,0.05556832856565565,0.04492423653271234,0.13814107779090837,0.03571834056723986,0.05274447136164735,0.13079137532235185,0.020762431514580938,0.06356958196983908,0.05871487547870928,0.25622445665176635,0.028243224618786276,0.07152622284764322,0.13636446886360043,0.07202280085074277,0.026775445503166084,0.03963341819904145,0.025097324572334035,0.026742099009528914,0.2557552611898973,0.12275996010301508,0.01609091908032613,0.0459343487452649,0.02122026812264406,0.01262383989157938,0.26606332697483537,0.017860550546147557,0.03462430805926857,0.04294000928226193,0.056575531114595234,0.01603779302335095,0.024105906637115367,0.2338945774407742,0.050396499777881104,0.010938767831055114,0.06139300882804064,0.1718818006267228,0.05099573484826546,0.037666435506697,0.25291107421504233,0.07246239314970776,0.1520663840334658,0.12060776033646502,0.20113917663426586,0.1638512937879296,0.12400992568237107,0.2714325817019933,0.10374828128783363,0.12605309732868616,0.0459343487452649,0.10034951281561597,0.03670531476541608,0.2124057412659434,0.2275940935018104,0.03244079677748534,0.15726300588545053,0.1689967229583209,0.06072536642684854,0.03470117323117572,0.005928592181043746,0.026416812172809313,0.23881046671893272,0.059097329059578235,0.07589627488423445,0.17194340950440098,0.11884483509580905,0.01627821687419889,0.014303692421397502,0.03461613384581471,0.2658134921734073,0.1376267663736649,0.04129737798258882,0.1294950570927675,0.03632699767231559,0.024580498890408975,0.13998902542072347,0.0354755837837361,0.1993412474423073,0.14150135089425264,0.05655969500174129,0.02796116813555843
+1,0.03341071461371277,0.026992701980080185,0.0,0.0,0.0,0.0,0.01525308224857363,0.02630268395549219,0.0,0.03180155172586722,0.027256674843952142,0.035416309711553205,0.0,0.006170627894118352,0.0,0.02630268395549219,0.0,0.0,0.0,0.0,0.0,0.026330756104188096,0.0,0.023370273376678474,0.0,0.028228848669061047,0.0,0.026352747774502378,0.018787831904931062,0.0,0.0,0.0,0.03359041238997727,0.0,0.0,0.03450848716627762,0.005230655977070931,0.0,0.0,0.0,0.0,0.02630268395549219,0.0046044921614903115,0.0,0.0,0.002564320045505415,0.017790232077484588,0.031973361715531466,0.0,0.011010856521176568,0.0,0.03556842860804992,0.0,0.0,0.0,0.008605388011908893,0.0,0.0,0.03887890229068166,0.0,0.0,0.0,0.0,0.02125003600222824,0.0,0.0,0.029166344071519454,0.0,0.0,0.0,0.0,0.0,0.0,0.015225281446599837,0.02643694601556501,0.0,0.0,0.026312573167539155,0.026191178176787663,0.0,0.011597626126019807,0.0,0.030064708839096916,0.03794670627345025,0.0,0.04467448765736453,0.0,0.0,0.0,0.019213725247716893,0.0,0.0,0.0,0.03450848716627762,0.0,0.016963913196839313,0.0,0.0,0.0,0.022113467629177853,0.0,0.006090022367680279,0.0,0.0,0.0,0.0,0.0,0.0,0.01345521323060805,0.020676035257757054,0.0,0.0,0.0,0.0,0.0,0.0,0.017790232077484588,0.014918870851697996,0.0,0.0,0.0279368036564932,0.0,0.02281910896190771,0.0,0.037168133718197355,0.0,0.0009971125351850825,0.001331861086893668,0.0,0.0,0.03199070727982985,0.0,0.033741736833147365,0.0,0.017135612158640588,0.0,0.0,0.0,0.0,0.0,0.039071585797122436,0.0,0.0,0.026330756104188096,0.0,0.033344510169825856,0.0,0.035083382331229915,0.0,0.0,0.0,0.02730673866296235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.033765381277392696,5.1235727143744475e-05,0.0,0.0,0.0,0.0,0.0,0.02644832415624913,0.0,0.0,0.002839803325274513,0.0,0.0,0.0,0.0,0.0,0.0,0.017790232077484588,0.0,0.0,0.0,0.0,0.0,0.0,0.00935387793901348,0.0,0.0,0.0,0.032429823603211325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006572447318821825,0.028236421959500414,0.038832114566866895,0.03627370338614234,0.0,0.0,0.026048600303667197,0.03361958017639831,0.0,0.0,0.0,0.0,0.004320546011078303,0.0,0.03183071951228827,0.0,0.003446065864289398,0.0,0.0,0.0,0.0,0.014757384822734159,0.03779640559554146,0.0,0.02630268395549219,0.0,0.0,0.0,0.00544256774547704,0.0,0.0,0.0,0.0,0.028228848669061047,0.0,0.0,0.0,0.0,0.0,0.0,0.033741736833147365,0.02914742851612321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026330756104188096,0.0,0.0,0.010842392454483044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.032532236510825735,0.01487184727187863,0.03247372428201618,0.0,0.0012045320842632933,0.007713654024874935,4.4858731565081676e-05,0.0279368036564932,0.0,0.0,0.0,0.0,0.0,0.005901321529843097,0.0,0.021774115036420322,0.017291294194196585,0.026458213368296093,0.0,0.0,0.0,0.0,0.0,0.017186165582372074,0.03627370338614234,0.0,0.0,0.0,0.0,0.0,0.0048882731529846755,0.03632572116348206,0.0,0.0,0.024447126096081438,0.0,0.026330756104188096,0.0,0.0,0.0,0.01778981424698917,0.0,0.0,0.03453292606384959,0.0,0.0,0.0,0.033638495731794574,0.0,0.0,0.0,0.0,0.017838414361190436,0.030012691061757177,0.0,0.004773519240837042,0.0,0.0,0.0,0.0005116547588433052,0.034536860499372025,0.0,0.026330756104188096,0.017772319603793576,0.0,0.0,0.012878736586689025,0.0,0.0,0.0,0.0,0.0,0.0,0.020732958144671642,0.02728853363786773,0.0,0.015089567471851008,0.02644832415624913,0.0,0.0,0.017790232077484588,0.02442436981471316,0.0,0.0,0.0,0.038237532937667816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03510499750084149,0.00935387793901348,0.0,0.026291305814808052,0.0,0.0,0.0,0.0,0.0,0.0,0.00212598040789398,0.0,0.0,0.02630268395549219,0.0006151216736826241,0.0,0.0,0.0,0.017790232077484588,0.0,0.022536166461887164,0.0,0.0,0.02630268395549219,0.018941810007181332,0.0,0.0,0.01778972987736989,0.0,0.02644832415624913,0.018648253977530616,0.0,0.0,0.0,0.0,0.0,0.005432224383804351,0.0336905135091343,0.0,0.0,0.0,0.0007586160182748478,0.0,0.0,0.0,0.0,0.0,0.026312573167539155,0.025784364068984888,0.00212598040789398,0.03463616716520239,0.0,0.0,0.0344848427220323,0.0,0.0,0.025019229686321684,0.0,0.031849635067684526,0.03794670627345025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02548580375403818,0.021066124646256956,0.018178264819746656,0.02630268395549219,0.0,0.0,0.03190638173387331,0.0,0.0,0.018119675352725646,0.0,0.024452441963409066,0.0,0.03361958017639831,4.4858731565081676e-05,0.0,4.457752927327809e-05,0.013762145945448308,0.0,0.0,0.017838414361190436,0.0,0.0,4.457752927327809e-05,0.00017320743487799983,0.0,0.0,0.0,0.0,0.0,0.025128459836889366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0060800148695036305,0.0,0.0,0.0,0.0,0.017791823047447947,0.0039946303826935035,0.0,0.0,0.0,0.0,0.0,0.0,0.017790232077484588,0.01689962855210506,0.0,0.02630268395549219,0.0,0.0,0.036302871172563374,0.0,4.457752927327809e-05,0.024460015253848423,0.0,0.0,0.0,0.0,0.039071585797122436,0.035053650063083426,0.0,0.0,0.0,0.024447126096081438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03359041238997727,0.02630268395549219,0.021760461267599368,0.0,0.006934250487771669,0.0,0.0,0.0,0.0,0.004036892921221378,4.4858731565081676e-05,0.0,0.0,0.026330756104188096,0.0,0.01285914774172468,0.0,0.0,0.026340645316235055,0.0,0.0,0.0,0.0,0.026484734206438387,0.0,0.017790232077484588,0.02159206478547416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034521879379498174,0.03296214051263316,0.0,0.00201712402880908,0.0,0.030041858848178216,0.01778989660780797,0.0,0.0,0.0,0.0,0.0,0.0,0.024447126096081438,0.0,0.0,0.0028299141132275356,0.035416309711553205,0.0,0.0,0.017351624155542828,0.0,0.0,0.036302871172563374,0.0,0.026393709080965274,0.0,0.026330756104188096,0.0,0.03441233939819842,0.0,0.0,0.0,0.026330756104188096,0.0,0.0,0.0,0.0,0.0,0.0,0.020748855358135504,0.014774331246582739,0.0,0.0,0.026352747774502378,0.014039251374170156,0.0,0.0,0.0,0.0,0.0,0.0,0.03722015149553707,0.03135433655983972,0.0,0.0,0.0,0.0,0.0,0.03515701527818122,0.0,0.0,0.006904596295662288,0.0,0.03587254228729842,0.03721621706001465,0.0,0.0,0.0,0.017351624155542828,0.0027586900622965723,0.0,0.0,0.01285914774172468,0.0,0.0,0.01505617315096162,0.0,0.0,0.0,0.019661663949347413,0.008251920698803955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026995742219271014,0.0,0.03634936560772739,0.0,0.0,0.017945914113040584,0.023530331957310344,0.0,0.018183802945508788,0.0,0.0,0.0,0.0352634152772852,0.0,0.0,0.0,0.0,0.0,0.009121546825261655,0.0,0.0,0.0,0.026253913022220514,0.0,0.0,0.026330756104188096,0.026330756104188096,0.0,0.0,0.0,0.009080795795761328,0.025391227772494418,0.0,0.017320437353768224,0.0,0.0,0.01741024414595564,0.0,0.04919728946481753,0.023216295274428207,0.03272514984434328,0.0,0.0006709805314088108,0.028247053694155668,0.0,0.022536166461887164,0.0,0.025128459836889366,0.016095851209121374,0.0047255540003050414,0.0,0.03911700275458469,0.0,0.0,0.0,0.01746505543388165,0.024367479111292476,0.031527276172621424,0.00482281055951031,0.0,4.4858731565081676e-05,0.0,0.03722488038438613,0.017790232077484588,0.0,0.01778998097742723,0.0,0.0,0.0,0.0,0.0014918447687731786,0.031096276947774837,0.031058445836982314,0.0,0.0,0.03413827616028383,0.0,0.017790232077484588,0.0,0.0,0.0,0.030936289180233247,0.0,0.0,0.0,5.095452485193394e-05,0.0,0.0,0.0,0.0,0.015496453791437265,0.02932160295021198,0.025418535310136364,0.0,0.0,0.0,0.0,0.030043428839276128,0.014884649039588768,0.0,0.0,0.025840522329332666,0.0,0.0,0.005319785837843106,0.014330531775684021,0.0,0.0,0.029002402952900058,0.0,0.0,0.0,0.017774161673814296,0.017351624155542828,0.0054596961169436796,0.017790232077484588,0.0,0.0,0.00030829717872788196,4.457752927327809e-05,0.032733018715388126,0.0371208448297067,0.0,0.034368984945230184,0.02630268395549219,0.015508926450636807,0.0,0.03540291749833264,0.0,0.0,0.0,0.03794670627345025,0.015074378176056228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.457752927327809e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.026038711091620245,0.03208040640902146,0.030041858848178216,0.0,0.0,0.00666000665827061,0.0,0.0,0.03503958751028123,0.036302871172563374,0.026330756104188096,0.0,0.0,0.023508340286996048,0.0,0.0,0.031096276947774837,0.0,0.0,0.0,0.0,0.0,0.017026233809060137
+2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+4,0.0,0.0,0.0,0.0,0.0,0.00032734777380620875,0.0,0.0,0.12025039635468136,0.0,0.0,0.0,0.013313766161709201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003110608126653634,0.0,0.0,0.0,0.0,0.0,0.0,0.035881778518460264,0.01689393955722632,0.0,0.0,0.0,0.0,0.0,0.00917533713815223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010930208997129102,0.0,0.0,0.0,0.0,0.0,0.005746948804234112,0.0,0.0,0.0,0.007303469240004366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04777261266019773,0.003290340960090027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01955988652376113,0.0,0.0,0.005394781372073186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0036903106006786544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004830639747645193,0.004949850417019541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013959112209219204,0.0,0.0,0.0,0.0,0.0030243624846991637,0.0,0.0,0.0,0.011935686701520393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03627317038743585,0.0,0.0,0.010888305956135337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09675756276558542,0.0,0.0,0.0,0.015907898894019782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.045601624243055826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01679432030872896,0.0,0.0,0.0,0.0,0.0,0.05837155129475949,0.0,0.0,0.0,0.010368411397043026,0.0,0.0,0.0,0.03967815995955832,0.0,0.027369030834992578,0.0,0.0,0.0,0.10086210565735976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00021244083710896374,0.005636873556839871,0.0,0.0,0.0,0.0046579572117950675,0.0,0.014905383617980347,0.0,0.0,0.0,0.004290978398354018,0.12061827298748752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007842125111920435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005439065751659801,0.0,0.0,0.0,0.0,0.0,0.018990895203803815,0.0,0.0,0.01424440435709581,0.008168816852080365,0.0,0.0,0.023328208855907726,0.0,0.0,0.0,0.004232280255428824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02033145085225836,0.0,0.0,0.018759950089574234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0039697532802026834,0.0,0.0030243624846991637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00447589478375385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013692612077273425,0.032506343150414466,0.0,0.0012182426649572366,0.015551065004011606,0.0,0.0,0.0,0.0,0.0,0.0,0.019235286542383215,0.0,0.0,0.01526464536568929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02067587044338797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.027278133333420815,0.0030243624846991637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.023904868038095606,0.0,0.0,0.0,0.0,0.0,0.0,0.04135408623168076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019942165242291497,0.0,0.0,0.008703720817513767,0.0,0.0064270443556627985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005843780748651312,0.0031905276924817285,0.0,0.0,0.0,0.0,0.0,0.0,0.0006873520997178847,0.016446941104600175,0.0,0.0,0.0,0.0,0.0,0.0,0.02225005917964739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0022432967789828783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035700766592244703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02209431771372532,0.0,0.0,0.011868089397773778,0.004540953089058519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0073242849728545984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00797514491692002,0.0,0.02067587044338797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037418328108850527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009794360596571553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0510777577703117,0.0,0.0,0.0,0.0,0.0,0.0024072128975974757,0.0,0.0,0.0,0.028828863326210777,0.010155800048424505,0.001639964143474934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06946845763361309,0.0,0.0,0.001781309868945503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01300128158835048,0.0,0.0,0.0,7.190874837937243e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013768341114335931,0.0,0.007422419910275416,0.0,0.0,0.0,0.0,0.0011741123030875153,0.0,0.0,0.0,0.0,0.0,0.051699633059303696,0.0,0.0,0.0,0.01271117298595269,0.10196573555577813,0.0,0.0,0.01942841921110764,0.0,0.0,0.025369892767439492,0.0,0.00858403795375415,0.0,0.0,0.0,0.0,0.0055130072530840185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0061181476787212615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009776689691086968,0.0,0.0,0.0,0.0,0.0,0.04427486999054133,0.0,0.0,0.0,0.0,0.01955988652376113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03184367022484211,0.011943925290093249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010256120301004349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010191693539383687,0.0,0.0,0.002713559298305988,0.005260522326652262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007549652472500349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01955988652376113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
+5,0.2742450036444732,0.2748810416776376,0.237326023170908,0.07238694224990533,0.1845101709618813,0.14140408011324046,0.22907113461057238,0.2754912122215432,0.07360212384121383,0.27435398035163217,0.2750602914080752,0.2742742078711892,0.1330804002232679,0.23688007286754537,0.2821158618894572,0.2754912122215432,0.22294438571517172,0.05938181540222866,0.2231146409703406,0.10319427201095774,0.19809296770325044,0.2755102745032215,0.0408464879916798,0.27669141519550583,0.21670279256664646,0.27465289986580443,0.18473098959157266,0.2755252078600745,0.27891743810529546,0.2154164255247839,0.15169909550955707,0.1609949468115825,0.27430763933832814,0.12476975845434764,0.1869768640523902,0.2742927103703413,0.19803871532521003,0.09105477343708424,0.025072545373864316,0.16398660643940685,0.09442072635498877,0.2754912122215432,0.08668864226435635,0.22153784202176727,0.1745624942521051,0.11358588930070455,0.18286035144368462,0.2744138666681885,0.17452797424253705,0.28151034710952966,0.1487218259486601,0.27432723063434516,0.21929379836782906,0.18493265699884925,0.08310199863148036,0.11349489384572262,0.21329006314257973,0.08978551435743566,0.2732722349076669,0.058536326949962456,0.2115352202867801,0.18662168304756055,0.12977566654428738,0.16865904204280222,0.07499895425929133,0.07108397067478904,0.2744402518646176,0.07758506267971144,0.09708345339318669,0.11161007467510228,0.13740407748544686,0.181830736029641,0.281758452027187,0.279167158134302,0.2755823823430588,0.13301286446972943,0.22457881154509998,0.2754867452320244,0.2754154946629963,0.2857239683592293,0.28044982345007796,0.24714382198758464,0.2744184527499995,0.27415140326560905,0.20164005490452194,0.2642832777988023,0.2489883831523315,0.20954134853704925,0.08475292576127327,0.2732606140154311,0.20346764777784207,0.21516418663111775,0.11030068748227999,0.2742927103703413,0.15910127603430363,0.23038953327362627,0.18634405189972592,0.31273908649927273,0.09060476400646741,0.2790406132309071,0.3151315943630839,0.12023031397165618,0.18755708206966104,0.11435113604711408,0.16121768065725608,0.08017880304400031,0.216054841173015,0.14421479434102177,0.15857383253258325,0.2780645304573972,0.2197620141378194,0.07590925094646626,0.12384095619643418,0.07839676956318208,0.2852686055690528,0.29074665305007674,0.18286035144368462,0.2805604047369853,0.23732879086880496,0.1968481368037104,0.27445458785368865,0.2857239683592293,0.2773846915147492,0.1668365335699164,0.2742149573117201,0.1612268825244645,0.24187963315126515,0.1370841644401659,0.22457757899696987,0.09978705516773755,0.2744199126609532,0.22741643367889006,0.274360385185785,0.09060476400646741,0.14731076430569276,0.16737123253944775,0.1961661130618083,0.12127518179201396,0.20267517848404856,0.09150420380046805,0.27351009100591556,0.08610310478147516,0.28150828010098783,0.2755102745032215,0.08960187580867778,0.27422192733621087,0.07614791566736068,0.274325629425807,0.07485575542675466,0.13351274312797548,0.22464511854508085,0.27509428704660654,0.1605493184804035,0.16514921859593604,0.08250088535048367,0.20204721371144302,0.1264953754329824,0.16595428621291083,0.07614791566736068,0.09535368920546594,0.1751113385344657,0.216054841173015,0.09000365072547066,0.2743686267244501,0.14564910961404332,0.04769999378843732,0.19237073188301587,0.19663514809561633,0.08986122585495836,0.15521816749994102,0.27559010862454325,0.14766887499401057,0.20857479461673184,0.2409958203774295,0.23244690620074865,0.20960823709191678,0.1931506456255766,0.23170943764439875,0.0668871919623409,0.28170068995491276,0.18286035144368462,0.19828031738789606,0.16012762652468482,0.12524053892699422,0.23732879086880496,0.10036449985957842,0.17371779394089387,0.23849421643491966,0.3311842777450892,0.22817834402018525,0.08378870259241926,0.2749079059483185,0.24928897099175387,0.0934978767249124,0.23732879086880496,0.361379189135399,0.25005308611897353,0.09529756882659245,0.21391672488313287,0.1704513517007882,0.19706297760370198,0.2746580424787604,0.27321447830131235,0.2742381278183722,0.08473867615779265,0.14864863225205618,0.2753074955015868,0.2743178061004255,0.11161007467510228,0.23003829840116213,0.2172185918884236,0.13526700370017025,0.12039569252890321,0.19015117315683674,0.27436414711372953,0.07901192099387294,0.13511640392998678,0.07354337609271021,0.0838836999489566,0.20845380139710026,0.23732879086880496,0.13397762733747523,0.2747688829084065,0.22416196816203868,0.2754912122215432,0.025650962141739602,0.18191082273020492,0.11875565032089755,0.08493193953866189,0.2039285416327029,0.17222370782202917,0.06353135497674155,0.17504546050060116,0.27465289986580443,0.1236463675559768,0.19426724695399944,0.17141890420860517,0.14614280450574776,0.1991851267019911,0.19081291436305606,0.274360385185785,0.2744336586336854,0.22413477513454844,0.16736637050042083,0.2857239683592293,0.19560787164735166,0.28238544552605305,0.23396863720940167,0.1543844681462252,0.160267086028487,0.18651704494085292,0.14600401090202939,0.09511564592265384,0.19244580693463967,0.18237444826882326,0.2755102745032215,0.04973167658767219,0.21477371189679598,0.2813877747917931,0.14438083074749866,0.07867794643783671,0.07266842817282425,0.08760365785647259,0.08310199863148036,0.0994654284784676,0.1968481368037104,0.24817526028098388,0.15099032458991196,0.21725142937576497,0.2805284735608667,0.27425333938152796,0.08302872374012055,0.11552730585055153,0.23632512958387214,0.14566004001249677,0.27445458785368865,0.21158891000254337,0.24107194874519272,0.237319255226984,0.237319255226984,0.24380163667266952,0.08264851652611709,0.2457102375564772,0.2777426348555199,0.1453184873786578,0.27558564163502436,0.3035864600704487,0.21410786736142423,0.23732879086880496,0.17576381134524752,0.030131163839082344,0.23068344724654025,0.2742381278183722,0.04299320064435342,0.12078709520267085,0.17767178169529405,0.18676162571572702,0.03561138018324039,0.13186175441841277,0.2742562592034355,0.18552534667523227,0.16931526265477384,0.27635510544289127,0.2418614847679969,0.2755102745032215,0.07253839716335697,0.20492789996271998,0.23396863720940167,0.18286569845788875,0.189798198040131,0.07090054086204155,0.27430122882470565,0.2008906818666406,0.13829436212110535,0.1879540732666234,0.2743243993313576,0.20386065690210545,0.12421232975614738,0.08100033227548625,0.20726811336458267,0.2793402822105349,0.2744003213649361,0.12659369020013367,0.24017381785546876,0.1825289236989144,0.10214935958150577,0.2815424863291934,0.07971493365388618,0.27430260021673947,0.13351274312797548,0.2755102745032215,0.18308957897088932,0.17137509430732764,0.09529756882659245,0.2813819431686795,0.2019072710432765,0.200753786907088,0.18596846792772248,0.09060476400646741,0.16708416509285884,0.1455956360119357,0.1710132470546909,0.2750819249962315,0.14315230833397494,0.2299221724435721,0.27559010862454325,0.18154714744944792,0.18593584393690454,0.18286035144368462,0.2763396528799225,0.07648028217443387,0.15099032458991196,0.22894428114106624,0.27425277419119026,0.15355213987905456,0.11743131845700153,0.09387342704135843,0.15264789913611002,0.21552205896882135,0.09300475687546544,0.2390582552570099,0.2741656964765087,0.23849421643491966,0.20714101659154266,0.27548348594005884,0.015174962774952576,0.17597912612932443,0.10256858249851984,0.15300490326904226,0.16853834697028927,0.10799782581903453,0.24052228396509792,0.07898477739312328,0.11022415752041845,0.2754912122215432,0.14454120412370117,0.22161755114194087,0.2186414946004893,0.287757387465097,0.18286035144368462,0.15462259950693374,0.2771925605278208,0.15144864953330694,0.12883336017710276,0.2754912122215432,0.2790219963273672,0.09529756882659245,0.18182000596455436,0.18286677814344918,0.15482843602157415,0.27559010862454325,0.27882265826507024,0.19817681347063246,0.20453132354759793,0.18603742240796559,0.079798813617851,0.10214935958150577,0.24168865131853426,0.2743425307164209,0.16089654196959488,0.19685835744432298,0.09529756882659245,0.2814881958827887,0.31579248997962456,0.02296548990341719,0.13351274312797548,0.22231532821154223,0.16729027148255352,0.2754867452320244,0.22327014461974215,0.24052228396509792,0.2743372146791331,0.1787288545786537,0.2211945230122619,0.2742844688316763,0.14496556556816456,0.2722458903276244,0.27461968767010525,0.14647340066815306,0.27437074034466163,0.27415140326560905,0.22912817850046335,0.23733770654629702,0.21781804396439952,0.17069475176096666,0.011733099611111922,0.218437779791464,0.08463417906560158,0.2734922922008182,0.2740444787658782,0.18151952783267916,0.2754912122215432,0.11160920173991144,0.2825657002281134,0.27439052003745795,0.15136555341354255,0.22780299684942798,0.17864443639808789,0.20863122384465843,0.2763587151616008,0.22788053967583924,0.2743178061004255,0.14566004001249677,0.2687177018130725,0.14565963676741275,0.19677915881419794,0.287757387465097,0.030666372103846148,0.2793402822105349,0.08623791581438092,0.1242906806674479,0.14565963676741275,0.1192207342328125,0.2092527124507391,0.20171574359512637,0.16247663165817225,0.14421479434102177,0.1834531197423862,0.2746938599723553,0.17545592013653544,0.2682006380929178,0.1644736221444743,0.1625334478193322,0.09875643755318914,0.109679565976684,0.2173300748035764,0.16235251347861512,0.12033444616703677,0.24172816112018272,0.07166166114840086,0.04099185524474564,0.08309615855550807,0.18283999165883025,0.13328727794862166,0.18661468591415226,0.20857479461673184,0.2653830852496161,0.036610210654413736,0.2454126220423733,0.17482741244123953,0.18286035144368462,0.27977034575319365,0.08742376989767248,0.2754912122215432,0.2019072710432765,0.19845481258067613,0.2742482945804695,0.19632298486827285,0.14565963676741275,0.2763638577745568,0.17055421402565277,0.2941220785828048,0.11159020226860397,0.23732879086880496,0.27351009100591556,0.2738128644232516,0.22686532567361056,0.25840352586427184,0.17511103593282895,0.27635510544289127,0.17266421246635208,0.1972061422305771,0.14717671042548142,0.08961620497483647,0.14551722404524198,0.18063034486106835,0.1261351302467249,0.1473092943145709,0.27430763933832814,0.2754912122215432,0.2777333633177387,0.2629082482025311,0.2815191598367395,0.23732879086880496,0.10985102369761066,0.24255939826593595,0.20568230136125057,0.28238597878810545,0.14566004001249677,0.11413316517028917,0.15053081360932627,0.2755102745032215,0.08162276286336793,0.2813676905735939,0.0897893409664998,0.24362253459818656,0.2755058075137027,0.07169816309977538,0.15556708933429192,0.24177013680991263,0.18505826570013015,0.2756148327252933,0.216054841173015,0.18286035144368462,0.27761901435176983,0.16506355467686182,0.24291179052960102,0.1349169902354515,0.11761662069346224,0.08550199150047848,0.13633274064317205,0.11453623811837058,0.12307359419871985,0.27429737837784135,0.2737537137416419,0.20359652183840468,0.16568753652943544,0.19436223347834228,0.2744104881270335,0.18286464447912737,0.28645428533774425,0.2816218219744782,0.08276089328056484,0.08980125051658466,0.10953407627806247,0.20714101659154266,0.27635510544289127,0.09658976594577741,0.2300444420379259,0.24100028736694826,0.2742742078711892,0.17576381134524752,0.1224029513599491,0.2724726438783891,0.15482843602157415,0.109056948078327,0.2742482945804695,0.15814433084377227,0.2755530224734183,0.18859634210444837,0.2755102745032215,0.18454854320709482,0.2742591969775135,0.2373229454908466,0.22647162407561947,0.09211764147747431,0.2755102745032215,0.21786554771235916,0.08012323302531268,0.15064302650968373,0.13811376212262513,0.1585834916574307,0.15114574114733237,0.2781139786588973,0.23268494210274418,0.11187947375070945,0.08310199863148036,0.2755252078600745,0.2810306449433628,0.21856628410467832,0.21996042636472804,0.06269015388021427,0.20094876888653151,0.09210531708146477,0.09529756882659245,0.2742330886967835,0.2743655656049582,0.17836151893106822,0.19907085580973594,0.007909086324956358,0.23730019132386979,0.06249886641658953,0.27418382786157197,0.19717142559771497,0.17377398618921838,0.07275267683347958,0.178295608692483,0.27409829857676415,0.27423171730474954,0.10898242261698747,0.06179138463768638,0.1722172196264811,0.2724726438783891,0.1375292805161761,0.19987962359992587,0.14035862992509202,0.2813676905735939,0.23733002341693504,0.10664336397397149,0.2806536393209136,0.06996562478443451,0.1071138289253067,0.18888518760306444,0.17622460205033907,0.23963244394134137,0.10419387703337685,0.2664125270070663,0.13369167837152116,0.1701344657668166,0.14180197266255296,0.18112952784878292,0.08463417906560158,0.14422312955107766,0.2748831061400503,0.14031555051176978,0.2742645007421007,0.16884722129080323,0.2051619914655903,0.18086807451664957,0.2768001023424029,0.15592292838679614,0.22940726365271424,0.09656277834503611,0.13457445534443632,0.04745396540463767,0.274220914785565,0.15017551827454997,0.23732971343477066,0.08336214275486648,0.1359382815876226,0.17218357392327102,0.12227925234304571,0.09529756882659245,0.08012323302531268,0.08012323302531268,0.27392749254153187,0.22072828805334133,0.008876465659481147,0.2755102745032215,0.2755102745032215,0.08397869730549394,0.08127856052840939,0.0607302679715727,0.23553759095208165,0.2759286516189422,0.24176934273462294,0.22848524978277332,0.21291473502973285,0.013790191489556106,0.18417337669903025,0.12798805464451238,0.2618724043896599,0.27658685697343405,0.27434097660707746,0.24261883140486748,0.08130645757926858,0.2746652619161795,0.07499895425929133,0.2771925605278208,0.24571590083203879,0.2746938599723553,0.28029208626143337,0.13084534671854064,0.2154254243238925,0.2735661554843747,0.30236381003484947,0.07700492632197008,0.23777431755710107,0.14309484926009608,0.27630102147250063,0.27425837850311674,0.28147035271133264,0.3204974483430933,0.14566004001249677,0.2700810501210057,0.2742347370045165,0.18286035144368462,0.16398816664521035,0.18286356479356689,0.22773246799550256,0.18166875937883695,0.16647259229801187,0.07978840049768061,0.24009167666438522,0.2744430831676052,0.27442989670574097,0.1790181019415716,0.21391925638354373,0.21363961703453277,0.10948654507611591,0.18286035144368462,0.07040285101885446,0.3151315943630839,0.07850929378421985,0.27438731762038143,0.10380381145445464,0.35473062104263664,0.20362860396975183,0.14564870636895932,0.14990827675043794,0.09656277834503611,0.19166112156539158,0.011425323727909997,0.12247111214880171,0.2744943691041083,0.2759471946945047,0.12184370305753944,0.17893995795566747,0.10380381145445464,0.2319221586764157,0.27441103536520084,0.27733453953719006,0.09891837220091605,0.16559948074127934,0.27569997214399894,0.08980125051658466,0.18849138510332353,0.08291590040866983,0.2812284377493628,0.17291965081894944,0.29853154773197305,0.27438310833212903,0.1184468671880846,0.19489263478149355,0.20088215485965774,0.1830660058361527,0.2724726438783891,0.08366958260908441,0.18286035144368462,0.40332202860582167,0.16145000676193189,0.08042826753435858,0.14565963676741275,0.27434371939114527,0.2741984742343899,0.20704173668488518,0.2742440852922171,0.2754912122215432,0.2716928845145371,0.07867753451543748,0.2742695398636893,0.07298764705153364,0.2181114360907565,0.1506137732800552,0.27415140326560905,0.2806660013712886,0.2857239683592293,0.1508393885969174,0.0834813928567153,0.1759006442709431,0.19682607204878594,0.3074325116795638,0.15593086310026694,0.1921089562429104,0.23571530023986892,0.17849913855094313,0.23328355126327188,0.16481310711529815,0.19878552671549096,0.14565963676741275,0.2263942842132411,0.0788808467492715,0.34926485130781165,0.3151315943630839,0.08160144555648298,0.25527857181677494,0.1808390251074518,0.08453288865436204,0.2753119624911057,0.21914761403051217,0.2744104881270335,0.2975841981965318,0.10174202361019519,0.28131962350554035,0.17910398628343932,0.18548412282024254,0.2741428970839455,0.2742482945804695,0.2755102745032215,0.3143488574556214,0.19681551281289253,0.2767851689855499,0.18584732428752831,0.08850309765047328,0.2744430831676052,0.24551412164769118,0.08610310478147516,0.21125708241690186,0.15004069837479023,0.07045204919852469,0.18550030113220578
diff --git a/data/without_training/y.csv b/data/without_training/y.csv
new file mode 100644
index 0000000..0b0a34c
--- /dev/null
+++ b/data/without_training/y.csv
@@ -0,0 +1,2 @@
+,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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810
+0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,1,0,1,1,1,1,0,0,1,0,0,0,0,0,1,0,0,1,1,1,0,1,0,0,0,1,1,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,1,1,0,1,1,0,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,0,1,1,0,0,1,1,0,1,0,1,1,1,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,0,1,0,0,0,1,0,1,1,1,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0,1,1,0,1,1,0,0,1,0,1,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,1,0,0,1,1,0,1,1,0,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,1,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0,1,1,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,1,1,0,0,1,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,0,0,0,1,0,0,1,1,0,0,1,0,1,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,1,0,1,0
diff --git a/data/without_training/y_hat.csv b/data/without_training/y_hat.csv
new file mode 100644
index 0000000..f4c303a
--- /dev/null
+++ b/data/without_training/y_hat.csv
@@ -0,0 +1,2 @@
+,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,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810
+0,0.5237528306775945,0.5241584308019295,0.5212961068207537,0.5063027683087773,0.5161418506284083,0.5118931550932982,0.5206529167550292,0.524243646736861,0.5115509690524147,0.523847808106324,0.5241555164907047,0.5236427521430196,0.5125917635063376,0.5219079621504494,0.5259317291001944,0.524243646736861,0.5199242762517753,0.5049512357542295,0.519745911171574,0.509321994817598,0.5174138543553206,0.5242433368201396,0.5033527802856271,0.5245055886084877,0.5198306106696513,0.5240679884074372,0.5162438376066971,0.5242430940319298,0.5249401030813665,0.519076421647331,0.5135071823966453,0.514202775233702,0.5237459864423311,0.5103398412823927,0.5165663197704448,0.5236941743028982,0.5181122278015622,0.5082196654078215,0.5037136606137833,0.5151802830106654,0.5084363476642103,0.524243646736861,0.5077791938253885,0.519625368609837,0.5155113311459278,0.5110137044070306,0.5160199766060897,0.5238412644157429,0.5152306890534819,0.5255902720507158,0.5138300672609699,0.5236369581971675,0.5192964092334241,0.516068563387344,0.5076445534080992,0.5101160921949289,0.5180579026818999,0.5084606759406136,0.5233598898871665,0.5048408688271725,0.5188224573663129,0.5164092004063238,0.5107645744991391,0.514802520482206,0.5069544411992788,0.5064143577756478,0.5239987055970617,0.5062391649040806,0.5087987092762601,0.510076456851485,0.5123574935602988,0.5146653414835727,0.526043582312031,0.5251713791272272,0.5242421644825934,0.5116301839346376,0.5201272693863098,0.5242427331733008,0.524244877761267,0.5254745456161951,0.5254807820681521,0.5219621104241555,0.5239476466373616,0.5234958366088843,0.5186770792966237,0.5221400613860028,0.5213116920533956,0.5183469668463611,0.507493828127157,0.5245788667442783,0.5180640009564448,0.523194345815322,0.5094798697436247,0.5236941743028982,0.5140981668114528,0.5206365998780278,0.5168338215511062,0.5271098646077824,0.5083063376972526,0.524749824485345,0.5288011105132115,0.5109137641662853,0.5172056696461713,0.5108702104484301,0.5142811619786337,0.5070067105559553,0.5191537399731689,0.5128378201677952,0.5139488917804186,0.5247656921455811,0.5194628241216513,0.5070278608019677,0.5102673880554135,0.5076240064592682,0.5244853270147561,0.5243369233192461,0.5160199766060897,0.5252899282464595,0.5212964418974524,0.5173160293787327,0.5240712126950577,0.5254745456161951,0.5245884615882818,0.5154211052844834,0.5235423372007376,0.5143246732803115,0.5226405284973473,0.5126605617878874,0.5201271201365286,0.5087235434191162,0.523840603778465,0.5201443924907481,0.5237402228688758,0.5083063376972526,0.5129377276700293,0.5130869231502416,0.5172449428383107,0.5109421118077703,0.516284688665427,0.508396306333419,0.5233689676626637,0.5079092704685402,0.5262131447075058,0.5242433368201396,0.5086021358452877,0.5237553522357058,0.5070530636781456,0.5236638552413168,0.5069393193943793,0.5112898885384523,0.5185325916992324,0.5241549637763212,0.5144083130491158,0.5149576961390211,0.5076021664450753,0.5177613693687042,0.5114028547565023,0.5143398446041799,0.5070530636781456,0.5087251322434421,0.5153013775793003,0.5191537399731689,0.5082639525196456,0.523739322309952,0.5135681507607017,0.5056573698884593,0.5169128684937125,0.5172929346975833,0.5084654910979999,0.5139446022564687,0.5242420388678053,0.5124674739785177,0.5185229612102493,0.5224665439452086,0.5205468891010451,0.5186453191672087,0.5153760429189875,0.5194710831763414,0.508876545925276,0.5252008954684265,0.5160199766060897,0.5183459432022262,0.5152294789549271,0.5111582344584394,0.5212964418974524,0.5091406955668664,0.515722145003499,0.5218489215459268,0.5285924213896113,0.5188447870045315,0.5073911450979594,0.5238407236392922,0.5221494628612998,0.5081860003250658,0.5212964418974524,0.5316503019590911,0.5222360598907757,0.5087755549271604,0.522942587630119,0.5146280017654593,0.5179648307202569,0.5240679047954139,0.5233576856045612,0.5235932502477036,0.5074923106485483,0.5138223424214705,0.5242456474352007,0.5237448755140396,0.510076456851485,0.5206279111121276,0.5181266338987152,0.5110514873323166,0.5110076462108867,0.5167150372919956,0.5238466971996153,0.5069283343133876,0.5123353752817289,0.5081899950241271,0.507401261680393,0.5160844851530674,0.5212964418974524,0.5121959485903606,0.5235352523226042,0.5192097506704465,0.524243646736861,0.5043401017435738,0.5142106660815865,0.5101529729603004,0.5075573727806828,0.5165183456118762,0.5134573729210961,0.5093299551490645,0.5151621006421944,0.5240679884074372,0.5111512725678596,0.5170787914602296,0.514815545950381,0.5131331753304209,0.5159850187059828,0.5147985701676094,0.5237402228688758,0.5239994260084483,0.5192069803038102,0.5144227708593713,0.5254745456161951,0.5153676923189205,0.5258745039833362,0.520763061782714,0.5130939640582732,0.5124908946817747,0.5164797378002336,0.5129955314340398,0.5081213413868781,0.5179897750925034,0.5147281000129822,0.5242433368201396,0.505013852890851,0.5171348869338497,0.5255915831975044,0.5128573607894685,0.5076971982513419,0.5114723781343302,0.5080416273449155,0.5076445534080992,0.5090506866280099,0.5173160293787327,0.522063018200293,0.5127763739435856,0.518486579666566,0.5252904472791987,0.523805362676492,0.5073102122212809,0.5112055988498422,0.5217596129292903,0.5135695919590515,0.5240712126950577,0.517726557872046,0.5214130762436652,0.5212952874464519,0.5212952874464519,0.5226522037503399,0.5073079298099223,0.5219998199030818,0.5246767846347619,0.5127738049832085,0.5242411253039596,0.5256900654980267,0.5190765619284696,0.5212964418974524,0.5138303075333496,0.5033769320683317,0.5206487036982593,0.5235932502477036,0.5042083692148052,0.5105956272892597,0.5138383002964895,0.516423022031428,0.5039476986050648,0.5119370668568942,0.5235912689626141,0.5140587116563858,0.5152096669501801,0.5244169108760413,0.5203673318072771,0.5242433368201396,0.5067043062326897,0.5185593652611505,0.520763061782714,0.5160205197964755,0.516248649931052,0.5072348007691573,0.5236932434770412,0.5185119262359738,0.5113455160947754,0.5164980432455413,0.5237441550675511,0.5179192935491997,0.511215265249365,0.5074698059588344,0.5183014061236594,0.5250273649484615,0.5239496277878797,0.5105049401774439,0.5222915486573567,0.5160477167219589,0.5092218589201373,0.526216593851327,0.5077479072316557,0.5236930936227082,0.5112898885384523,0.5242433368201396,0.5160432632483969,0.5129541281915238,0.5087755549271604,0.525470811019098,0.5177475502746981,0.5175020938541728,0.5162766047736522,0.5083063376972526,0.5147337551449889,0.513566465776573,0.5149798225989107,0.5241551647633765,0.512030562058554,0.5207228077056624,0.5242420388678053,0.5157586151437032,0.5162496725759778,0.5160199766060897,0.5244171620970431,0.5067372089818756,0.5127763739435856,0.5200966790777486,0.5234847592108822,0.5145054399085963,0.5105952836945209,0.5073014796845503,0.5130324533552062,0.5200650530324378,0.5085286589702104,0.5210214324636783,0.5236546094672282,0.5218489215459268,0.5182888890276215,0.5242437723516098,0.5022762467967573,0.5153102072230737,0.5091303090219202,0.5141609175968271,0.5149678592518797,0.50975789519246,0.5224752318252929,0.5069258597835243,0.5093380877368062,0.524243646736861,0.5134274397409864,0.5196904166955031,0.5181421587397157,0.5258023681776095,0.5160199766060897,0.513748415076199,0.5245915850635567,0.5134777097198078,0.5116001955408382,0.524243646736861,0.5249384033952516,0.5087755549271604,0.5161254642127889,0.516020629479145,0.5146754364006663,0.5242420388678053,0.5249416438107612,0.5172769928928931,0.5177436673857734,0.5163514948505474,0.5069662432721659,0.5092218589201373,0.5223610944762599,0.5237421738391983,0.5142919907225274,0.5176994099617002,0.5087755549271604,0.5261946366997173,0.5283938395708877,0.5031721969178125,0.5112898885384523,0.5182910223445206,0.5148469321972673,0.5242427331733008,0.5194534642345904,0.5224752318252929,0.5236893112402962,0.5158583816395897,0.5197392507136699,0.5236950748695537,0.51350019782931,0.5226632534842349,0.5242578160611803,0.5125632594561144,0.5238459767671229,0.5234958366088843,0.5205444488011638,0.5212975212910613,0.519173526354975,0.5136900293753177,0.5029937105767068,0.5193106946765839,0.5074811824678679,0.5241557229244352,0.5245508263556093,0.5158663085879595,0.524243646736861,0.5099622749718777,0.5237623243305841,0.5238438154690503,0.5134679308832314,0.5202047400931021,0.5155916802024649,0.5182378416450658,0.5244168521908135,0.5190630272935366,0.5237448755140396,0.5135695919590515,0.5227227685349403,0.5135695724125924,0.5176149876175343,0.5258023681776095,0.5032771292379035,0.5250273649484615,0.5077652089908797,0.5107043585749728,0.5135695724125924,0.5115397623480169,0.518597002175782,0.5177288610976138,0.513987744811184,0.5128378201677952,0.514371045442685,0.5242566101627583,0.5138855157898197,0.5230589071025928,0.5144713075163433,0.5140922840788568,0.5089211287702688,0.5092529997315531,0.5193068079314874,0.5139490976141802,0.5109237107339151,0.5226723624928924,0.5066981658791666,0.504224279778522,0.5076051256312664,0.5160179083038898,0.5121265306159711,0.5164085093244094,0.5185229612102493,0.5222320564694621,0.5039327408919568,0.5205457781183084,0.5150498020959743,0.5160199766060897,0.5251145079329672,0.5080236332417187,0.524243646736861,0.5177475502746981,0.5183508453625411,0.5235921392872104,0.5172176874594846,0.5135695724125924,0.5244167685844603,0.5153139068208462,0.5250985808578648,0.5099602520158059,0.5212964418974524,0.5233689676626637,0.5236397201758011,0.5201129770106541,0.5219298099031803,0.5153013409120386,0.5244169108760413,0.514927220610534,0.5154858201099181,0.5132466544017018,0.507809775921362,0.5135582187880299,0.514632387975242,0.5113651698846098,0.5126894466072002,0.5237459864423311,0.524243646736861,0.5246769353596539,0.5217685419179119,0.525831837967107,0.5212964418974524,0.509923271250708,0.5226577928354076,0.5181206468572578,0.5260642146738517,0.5135695919590515,0.5097513627335988,0.5128734616723273,0.5242433368201396,0.5071604853925229,0.5254709634817747,0.5078735006868731,0.5227676374483633,0.5242424232565244,0.5062895961853233,0.5128533408422763,0.5200432996351284,0.5160060410364823,0.5242416369004629,0.5191537399731689,0.5160199766060897,0.5246787942996183,0.5141270306652204,0.5227611718661256,0.5112418254864448,0.5108939645873821,0.5078668842018667,0.5127011833729882,0.5108002880003621,0.511769610368589,0.5236936642218761,0.5237530710374266,0.5180758376030203,0.5153883390283212,0.515940031714349,0.5239485169028456,0.5160204127252966,0.5254896297144948,0.5262245935559318,0.5072457101408008,0.5080304588178232,0.5093931740594765,0.5182888890276215,0.5244169108760413,0.5087256984049232,0.5203142628140002,0.5224674578126626,0.5236427521430196,0.5138303075333496,0.5107306918134714,0.5246070538345282,0.5146754364006663,0.5092588837073145,0.5235921392872104,0.5139966657280004,0.5242426418187601,0.5165828524094109,0.5242433368201396,0.5161226174088611,0.5236978363661854,0.521295734215442,0.5203029918704196,0.5082178719786207,0.5242433368201396,0.5193198261013993,0.5073820219683163,0.5130811806626852,0.5145638080422796,0.5146936176805158,0.5134437300091487,0.5247648882935836,0.5209821704922385,0.5100400835718496,0.5076445534080992,0.5242430940319298,0.525376413556801,0.5181341419999822,0.5192451465351924,0.5059049879328796,0.5180842820081485,0.5084386911361268,0.5087755549271604,0.5235403558965877,0.5238732632128956,0.5156788430938395,0.5173204560945651,0.50236138781373,0.521292979437307,0.5052037357513005,0.5236526282051647,0.5177038469084667,0.515622840284305,0.5064388201105159,0.5162045370476549,0.5236085298933635,0.5235405057552547,0.5093415164347374,0.5058386892085299,0.5153168672784827,0.5246070538345282,0.5126117797227566,0.5177445443907037,0.5126206319030276,0.5254709634817747,0.5212965911182695,0.5089806029017628,0.5252884127428874,0.5079921407732222,0.5095489538225264,0.516741803412037,0.5153757049194482,0.5220212833567611,0.5094354637944589,0.5237544113689453,0.5119164739262073,0.513368307552026,0.5131992753989554,0.5143937134488202,0.5074811824678679,0.5136063004881982,0.5241583972371131,0.5126159033291469,0.5235903683782371,0.5125441692991093,0.5181062079272536,0.5158175833340052,0.5245038216508346,0.5132993685210692,0.5204706201950083,0.5088215699139013,0.5121080619337532,0.5047743602647693,0.5236485756213526,0.512924667739103,0.5212965535896812,0.5075273438481266,0.5113703868494207,0.5133064795728819,0.510856291376664,0.5087755549271604,0.5073820219683163,0.5073820219683163,0.524134891510865,0.51940470264333,0.5024921334074528,0.5242433368201396,0.5242433368201396,0.5074113782567655,0.5077664884960466,0.5090941374301361,0.5216016828057408,0.5243296971518943,0.522865278313398,0.5204547268471418,0.518833040270392,0.502441960441368,0.516170455797316,0.511054849446317,0.5215379253550284,0.5245072884404643,0.523795786604094,0.5212592788768481,0.5080177594825515,0.5240677874169942,0.5069544411992788,0.5245915850635567,0.5208136225115253,0.5242566101627583,0.525200159176375,0.5118477925037493,0.5175330363549197,0.5233711073606484,0.5260115017152405,0.506710559233107,0.5213372937953348,0.5125908428700785,0.524417790149494,0.5238582543640903,0.5259531855763394,0.5289434930027029,0.5135695919590515,0.523866126156497,0.5235401757779917,0.5160199766060897,0.5145339593229464,0.5160203030426241,0.5184169673179583,0.5160941029999293,0.5133544192600367,0.507028375048559,0.5224822350016831,0.5238915139377717,0.5238929547900995,0.5157436972746354,0.5228608717690922,0.5180599098275525,0.5094335100478105,0.5160199766060897,0.5065190328924445,0.5288011105132115,0.5068737954580096,0.5238976072995501,0.5093876262162267,0.5316291676640744,0.5178963792295087,0.5135681312142396,0.5126613878563719,0.5088215699139013,0.5166839596872772,0.502567819309138,0.5112157862382597,0.5239927924566276,0.5243293956815368,0.5108612553115394,0.515735978607104,0.5093876262162267,0.5194081519619576,0.5239484571081191,0.5250599693822215,0.5090283812596711,0.5148884033583105,0.5242863409604104,0.5080304588178232,0.516572486411846,0.5073696917949836,0.5253731985428443,0.516053777645049,0.5255536327793653,0.52400494939923,0.510564268497416,0.5171191790117083,0.5185947153023956,0.5160408685167212,0.5246070538345282,0.5080175817099524,0.5160199766060897,0.535747182931532,0.5142193952903548,0.5079328881538854,0.5135695724125924,0.5237954869012749,0.5235441383856856,0.516505451523626,0.5236994876439383,0.524243646736861,0.5246349470565081,0.5068920508686205,0.5236432622289698,0.506787447414221,0.5180302943903867,0.5139943936728688,0.5234958366088843,0.5252882118009838,0.5254745456161951,0.5140080830607815,0.5076230980987527,0.5136517206835397,0.5181933507107894,0.5278611347458887,0.5140174012230118,0.5159498661694654,0.5207161704763172,0.5156924365562578,0.5189885739397033,0.5146390661849174,0.5176415326110609,0.5135695724125924,0.5206879249911798,0.5071875936343869,0.5310946050115863,0.5288011105132115,0.5075121932611246,0.5227128854603639,0.5152968192828455,0.507405741334635,0.5242465609982434,0.5186838523957842,0.5239485169028456,0.5257024683734255,0.509107201867846,0.5258339722855944,0.5150868072315069,0.5164449612279821,0.523657100813159,0.5235921392872104,0.5242433368201396,0.5269601770231256,0.5172891009435975,0.5245040644266723,0.5163327193727468,0.5081315975474333,0.5238915139377717,0.5220011900779029,0.5079092704685402,0.517841199930327,0.5126750459412516,0.5060897322433935,0.5163225249239548
diff --git a/endscreen.py b/endscreen.py
new file mode 100644
index 0000000..613d89b
--- /dev/null
+++ b/endscreen.py
@@ -0,0 +1,72 @@
+from manimlib import *
+from nn import *
+# from backward_teaser import *
+from graph_scene import *
+from bias_update import *
+class EndScreen(Bias,graph_scene):
+ def construct(self):
+ self.title = TexText('Thanks for watching!').move_to([-4,3,0])
+ NeuralNetwork.arguments['layer_sizes'] = [4, 6, 6,1]
+ NeuralNetwork.add_neurons(self, False)
+ NeuralNetwork.add_edges(self, False)
+ NeuralNetwork.group1(self)
+ self.grp.scale(1.2)
+ subscribe = TexText('SUBSCRIBE!').scale(0.8)
+ subs_button = RoundedRectangle(height=1,width=3).set_fill(RED,1).set_stroke(RED,1)
+ like = SVGMobject('assets/like.svg').scale(0.3).next_to(subs_button,LEFT)
+ like.flip(LEFT)
+ subs = VGroup(subs_button,subscribe,like).scale(0.8)
+ subs.to_edge(LEFT)
+ subscribed = TexText('SUBSCRIBED').scale(0.8)
+ subbed_button = RoundedRectangle(
+ height=1, width=3).set_fill(GREY, 1).set_stroke(GREY, 1)
+ liked = SVGMobject(
+ 'assets/liked.svg').scale(0.3).next_to(subbed_button,LEFT).set_color(BLUE)
+ liked.flip(LEFT)
+ subbed = VGroup(subbed_button, subscribed,liked).scale(0.8).to_edge(RIGHT)
+
+ x = [[random.uniform(0, 1) for x1 in range(6)], [
+ random.uniform(0, 1) for x1 in range(6)]]
+ self.play(Transform(self.title,TexText('Thanks for watching!').to_edge(UP+LEFT)))
+ self.wait(7)
+ comments = TexText('Let me know in the comment section!')
+ self.play(Write(comments))
+ self.play(FadeOut(comments))
+ self.play(GrowFromCenter(self.grp))
+ self.play(Write(subs))
+ dot = self.grp.layers[0].copy()
+ # dot.set_stroke(BLACK,1)
+ S = TexText('S').move_to(self.grp.layers[0][0][0]).scale(0.5)
+ U = TexText('U').move_to(self.grp.layers[0][0][1]).scale(0.5)
+ B = TexText('B').move_to(self.grp.layers[0][0][2]).scale(0.5)
+ S_END = TexText('S').move_to(self.grp.layers[0][0][3]).scale(0.5)
+ subs_word = VGroup(S,U,B,S_END)
+ self.play(Transform(subs,subs_word))
+ self.play(*[ApplyMethod(self.grp.layers[1][0][x1].set_fill,WHITE, float(x[0][x1])) for x1 in range(6)], *[ApplyMethod(self.grp.layers[2][0][x1].set_fill, WHITE, float(x[1][x1])) for x1 in range(6)])
+ self.grp.layers[3][0].animate.set_fill(WHITE,1)
+ self.play(ApplyMethod(self.grp.layers[3][0][0].set_fill,WHITE,1))
+ self.play(Write(subbed))
+ self.wait(2)
+ grp_fade = VGroup()
+ for mob in self.mobjects:
+ grp_fade.add(mob) if mob is not self.title else None
+ self.play(
+ FadeOut(grp_fade)
+ )
+ subscribe = TexText('Subscribe!').move_to([-4,-1,0])
+ series = TexText('Neural Network\\\ Crash Course Series').move_to([3,-1.5,0])
+ self.play(Write(VGroup(subscribe,series)))
+ self.wait(13)
+
+
+
+
+
+ # self.embed()
+ # self.wait(30)
+
+ def dot(self):
+ dot_layer = VGroup(*[Dot().move_to(self.grp.layers[0][0][i].get_center())
+ for i in range(NeuralNetwork.arguments['layer_sizes'][0])])
+ dot_layer.set_fill(WHITE, 0)
+ return dot_layer
diff --git a/explanationall.py b/explanationall.py
new file mode 100644
index 0000000..7fabb23
--- /dev/null
+++ b/explanationall.py
@@ -0,0 +1,796 @@
+# Manim Cairo
+from manimlib import *
+# ManimGL
+# from manimlib import *
+import sys
+import matplotlib.pyplot as plt
+import os.path
+from manimlib.mobject.svg.drawings import SpeechBubble
+from manimlib.mobject import geometry
+# import six,colour,nncc2gl
+from nn import *
+from applications import *
+from bias_update import *
+from backward_teaser import *
+from graph1 import *
+from endscreen import *
+class Explanationall(EndScreen):
+ def construct(self):
+ # self.title = TexText('Test').to_edge(UP+LEFT)
+ NeuralNetwork.construct(self)
+ self.fade_all_except_title()
+ Application.construct(self)
+ self.fade_all_except_title()
+ self.wait(2)
+ NeuralNetwork.arguments['layer_sizes'] = [4,6,6,2]
+ NeuralNetwork.add_neurons(self,False)
+ NeuralNetwork.add_edges(self,False)
+ NeuralNetwork.group1(self)
+ self.grp.scale(1.5)
+ self.edges=self.grp.edges.copy().set_color(YELLOW)
+ self.first_part()
+ self.play(self.camera.frame.animate.scale(10).move_to(ORIGIN),FadeIn(self.grp.edges),FadeOut(VGroup(self.decimal)))
+ self.play(Indicate(self.grp.layers[0],color=WHITE),run_time=3)
+ self.wait(3)
+ # self.play(ApplyMethod(self.camera.frame.move_to,ORIGIN))
+ # self.add(self.grp.scale(1.5))
+
+ self.edge_transform_1 = VGroup()
+ self.connections(0, 0, 6,wait=4, highlight=True)
+ self.play(Indicate(self.grp.layers[2],color=WHITE))
+ self.wait(2)
+ self.play(FadeOut(self.grp))
+ self.weights()
+ # self.wait()
+
+ # self.shallow_nn_representation()
+ # self.grp.scale(1.5)
+ NeuralNetwork.arguments['layer_sizes'] = [4,6,6,2]
+ NeuralNetwork.add_neurons(self,False)
+ NeuralNetwork.add_edges(self,False)
+ NeuralNetwork.group1(self)
+ self.grp.scale(1.5)
+ bias=TexText('What is bias?').to_corner(UP+LEFT)
+ input_label = self.label("x",VGroup())
+ self.play(Write(VGroup(self.grp)),Transform(self.title,bias))
+
+
+ self.bias_layer = VGroup(*[
+ Circle(
+ radius=NeuralNetwork.arguments["neuron_radius"],
+ stroke_color=NeuralNetwork.arguments["neuron_color"],
+ stroke_width=NeuralNetwork.arguments["neuron_width"],
+ fill_color=NeuralNetwork.arguments["neuron_fill_color"],
+ fill_opacity=NeuralNetwork.arguments["neuron_fill_opacity"],
+ ).scale(1.5).next_to(self.grp.layers[x][0][0],UP)
+ for x in range(len(NeuralNetwork.arguments['layer_sizes'])-1)
+
+ ]
+ )
+ bias_label = self.label("b",VGroup(),bias=True)
+ self.play(GrowFromPoint(self.bias_layer,self.bias_layer.get_center()),Write(bias_label))
+ bias_edges = VGroup()
+ x=0
+ for l1, l2 in zip(self.grp.layers[:-1], self.grp.layers[1:]):
+ edge_group = VGroup()
+
+ y=0
+ for n2 in (l2.neurons):
+ # print(x,y)
+ if y < self.arguments['layer_sizes'][x+1] and x is not len(self.arguments['layer_sizes'])-1:edge_group.add(self.get_edge(self.bias_layer[x], n2, False))
+ else:break
+ y+=1
+
+
+ # edge_group = self.set_bias(x,edge_group) if x is not len(NeuralNetwork.arguments['layer_sizes'])-2 else None
+ self.play(Write(edge_group),
+ run_time=0.5)
+ bias_edges.add(edge_group)
+ x+=1
+ self.wait(3)
+ self.play(self.bias_layer.animate.set_fill(WHITE,1))
+ self.wait(5)
+ input_grp = VGroup()
+ for x in range(NeuralNetwork.arguments['layer_sizes'][0]):
+ label = Tex('0')
+ label.move_to(self.grp.layers[0][0][x])
+ input_grp.add(label)
+ self.play(Write(input_grp))
+ self.wait(10.5)
+
+ grp = VGroup(self.grp,self.bias_layer,bias_edges,bias_label)
+ self.play(grp.animate.shift(DOWN),input_grp.animate.shift(DOWN))
+ input_label.shift(DOWN)
+ v = VGroup(input_label,bias_label[0]).copy()
+ forward_propagation = Tex("{{w_0\cdot x_1}}+{{w_1\cdot x_2}}+{{...}}+{{w_3\cdot x_4+b_0}}").shift(2.5*UP)
+ z_forward_propagation = Tex(
+ '\sigma({{w_0\cdot x_1}}+{{w_1\cdot x_2}}+{{...}}+{{w_3\cdot x_4+b_0}})').shift(2.5*UP)
+ self.play(ReplacementTransform(input_grp, input_label))
+ self.wait()
+ without_z = Tex("\sum_{i=1}^nw_ix_i+b").shift(3*UP)
+ z = Tex('z = ').next_to(without_z,LEFT)
+ equal = Tex("=").next_to(without_z,RIGHT)
+ inf = Tex("\infty").next_to(equal,RIGHT)
+ negativeinf = Tex("-\infty").next_to(equal,RIGHT)
+ how = TexText('How?').next_to(inf,RIGHT).shift(RIGHT)
+ self.play(ReplacementTransform(v,forward_propagation))
+ self.wait(2)
+ self.play(Transform(forward_propagation,z_forward_propagation))
+ self.wait(5)
+ self.play(ReplacementTransform(forward_propagation,without_z))
+ self.wait(7)
+ self.play(Write(z))
+ self.wait(2)
+ self.play(FadeIn(VGroup(equal,negativeinf)))
+ self.wait()
+ self.play(ReplacementTransform(negativeinf,inf))
+ self.wait(5)
+ # #TODO: activation function: z=wx+b, the values can go up to -inf, +inf, it knows no bounds. so how does the neural network determine which neuron is activated? Thats where activation functions comes in.
+ self.play(FadeOut(VGroup(inf,self.grp,without_z,z,equal,input_label,bias_edges,bias_label,self.bias_layer)))
+ # self.embed()
+ self.wait()
+ af = TexText('What is activation function?').to_corner(UP+LEFT)
+ a = TexText('Activation Function').shift(3*LEFT)
+ arrow = Arrow([0,0,0],[1,0,0]).next_to(a,RIGHT)
+ ans = TexText('Output of a neuron').next_to(arrow,RIGHT)
+ self.play(Write(a), Transform(self.title, af))
+ self.play(Write(arrow))
+ self.play(Write(ans))
+ v = VGroup(a, arrow, ans)
+ self.play(v.animate.shift(2.5*UP))
+ self.wait()
+ circle = Circle(radius=1.5,color=BLUE).shift(DOWN)
+ r_v = ValueTracker(0)
+ restricted_value = DecimalNumber(0, num_decimal_places=3, include_sign=False, unit=None)
+ restricted_value.add_updater(lambda d: d.set_value(r_v.get_value()))
+ restricted_value.move_to(circle.get_center())
+ limit = TexText('Limit: -1 to 1').move_to([-2.5,1,0])
+
+ self.play(ShowCreation(circle),FadeIn(restricted_value),Write(limit))
+ self.play(r_v.set_value, -1,run_time=2.5)
+ self.wait()
+ self.play(r_v.set_value, 1,run_time=2.5)
+ # self.wait(2)
+ print('--')
+ self.play(FadeOut(VGroup(circle,restricted_value,limit)))
+ self.remove(r_v)
+
+ axes = Axes((-5,5),(0,1)).scale(0.5)
+ sigmoid_graph = axes.get_graph(
+ lambda x: 1.0 / (1.0 + math.exp(-x)),
+ use_smoothing=False,
+ color=YELLOW,
+ )
+ self.play(Write(axes, lag_ratio=0.01, run_time=1))
+ non_linear_label = axes.get_graph_label(sigmoid_graph, Text("Non Linear Function").scale(0.4))
+ self.play(
+ ShowCreation(sigmoid_graph),
+ FadeIn(non_linear_label, RIGHT),
+ )
+ axes1 = Axes(x_range=[-1, 5],
+ y_range=[-1, 5],width=10).scale(0.4).to_edge(UP+RIGHT)
+ linear_graph = axes1.get_graph(lambda x: x,
+ x_range=[-1, 4], color=YELLOW)
+ linear_label = axes1.get_graph_label(
+ linear_graph, Text("Linear Function").scale(0.3))
+ self.wait(10)
+ self.play(FadeOut(VGroup(sigmoid_graph,non_linear_label,axes,v)))
+ grp.shift(0.8*UP+0.5*LEFT)
+ cat = ImageMobject('assets/cat.png').next_to(self.grp.layers[0],LEFT).scale(0.5)
+ self.play(Write(self.grp),
+ FadeIn(cat),
+ Write(axes1, lag_ratio=0.01, run_time=1),
+ ShowCreation(linear_graph),
+ FadeIn(linear_label, RIGHT),run_time=3
+ )
+ soundwave = SVGMobject(
+ 'assets/soundwavee.svg').scale(0.5).next_to(self.grp.layers[0], LEFT)
+
+ cross = VGroup(Line([3,2,0],[-3,-2,0],color=RED),Line([-3,2,0],[3,-2,0],color=RED)).move_to(self.grp.get_center())
+ self.play(FadeTransform(cat,self.dot()),ShowCreation(cross),run_time=2)
+ self.wait(5)
+ self.play(FadeIn(soundwave))
+ self.play(FadeTransform(
+ soundwave, self.dot()), ShowCreation(cross),run_time=2)
+ self.wait(5)
+ self.play(
+ *[FadeOut(mob)for mob in self.mobjects]
+ # All mobjects in the screen are saved in self.mobjects
+ )
+ self.title = TexText('Types of Activation Function').to_edge(UP+LEFT)
+ self.play(Write(self.title))
+ graph_scene.construct(self)
+ self.wait()
+ self.fade_all_except_title()
+ axes = Axes((-5, 5), (0, 1.2),
+ y_axis_config={
+ "decimal_number_config": {
+ "num_decimal_places": 1,
+ }
+ },
+ width=10).scale(0.6).shift(0.5*UP)
+ sigmoid_graph = axes.get_graph(
+ lambda x: 1.0 / (1.0 + math.exp(-x)),
+ use_smoothing=False,
+ color=YELLOW,
+ )
+ axes1 = Axes((-3, 5), (0, 5),
+ y_axis_config={
+ "decimal_number_config": {
+ "num_decimal_places": 1,
+ }
+ },
+ width=10).scale(0.6).shift(0.5*DOWN)
+ relu_graph = axes1.get_graph(
+ lambda x: max(0, x),
+ use_smoothing=False,
+ color=YELLOW,
+ )
+ axes2 = Axes((-5, 5), (-1.2, 1.2),
+ y_axis_config={
+ "decimal_number_config": {
+ "num_decimal_places": 1,
+ }
+ },
+ width=10).scale(0.6).shift(0.5*DOWN)
+ tanh_graph = axes2.get_graph(
+ lambda x: (math.exp(x) - math.exp(-x)) / (math.exp(x) + math.exp(-x)),
+ use_smoothing=False,
+ color=YELLOW,
+ )
+
+ self.play(Write(axes, lag_ratio=0.01, run_time=1))
+ non_linear_label = axes.get_graph_label(sigmoid_graph, Text("Sigmoid(Logistic) Function").scale(0.4))
+ sigmoid_formula = axes.get_graph_label(
+ sigmoid_graph, Tex("\\frac{1}{1+e^{-z}}").scale(1.3),direction=RIGHT).shift(2*DOWN+0.5*RIGHT)
+ # sigmoid_formula = Tex("\\frac{1}{1+e^{-x}}").next_to(axes,DOWN).scale(1.3)
+ lbl = axes.y_axis.get_number_mobject(0.5,font_size=24)
+ tip = Line([-0.1,0.5,0],[0.1,0.5,0])
+ axes.add_coordinate_labels(x_values=[-5,5],y_values=[])
+ self.play(
+ ShowCreation(sigmoid_graph),
+ FadeIn(non_linear_label, RIGHT),
+ Write(sigmoid_formula),
+ Write(lbl),
+ Write(tip),
+ )
+ self.wait(6)
+ zero = axes.x_axis.get_number_mobject(0,font_size=24)
+ one = axes.y_axis.get_number_mobject(1,font_size=24)
+ self.play(Write(zero))
+ self.play(Write(one))
+ self.wait(4)
+ v_grp = VGroup(sigmoid_graph,non_linear_label,sigmoid_formula,lbl, tip,axes)
+ v_grp1 = v_grp.copy().shift(4*LEFT).scale(0.8)
+ self.wait()
+ NeuralNetwork.arguments['layer_sizes'] = [4,6,6,2]
+ NeuralNetwork.add_neurons(self,False)
+ NeuralNetwork.add_edges(self,False)
+ NeuralNetwork.group1(self)
+ self.grp.shift(3*RIGHT)
+ self.play(Transform(v_grp,v_grp1),FadeOut(VGroup(zero,one)))
+ self.play(Write(self.grp))
+ explain_binary_classification = TexText('(Classify a set of elements into 2 groups)').next_to(self.grp,DOWN).scale(0.8)
+ binary_classification = TexText('Binary Classification').next_to(self.grp,UP).scale(0.8)
+ cat_label = TexText('Cat').next_to(self.grp.layers[3][0][0]).scale(0.8)
+ dog_label = TexText('Dog').next_to(self.grp.layers[3][0][1]).scale(0.8)
+ cat = ImageMobject('assets/cat.png').next_to(self.grp.layers[0],LEFT).scale(0.4).shift(RIGHT*0.8)
+ self.play(Write(binary_classification))
+ self.play(Indicate(self.grp.layers[3]), Write(
+ VGroup(cat_label, dog_label)), FadeIn(cat))
+ self.wait()
+ self.play(Write(explain_binary_classification))
+ self.wait()
+ x = [[random.uniform(0, 1) for x1 in range(6)], [
+ random.uniform(0, 1) for x1 in range(6)]]
+ self.play(FadeTransform(cat,self.dot()))
+ self.play(*[ApplyMethod(self.grp.layers[1][0][x1].set_fill,
+ WHITE, float(x[0][x1])) for x1 in range(6)])
+ self.wait()
+ self.play(*[ApplyMethod(self.grp.layers[2][0][x2].set_fill,
+ WHITE, float(x[1][x2])) for x2 in range(6)])
+ self.wait()
+ self.play(ApplyMethod(self.grp.layers[3][0][0].set_fill, WHITE, 1))
+ self.wait()
+ relu_label = axes1.get_graph_label(relu_graph, Text("ReLU Function").scale(0.4))
+ relu_formula = axes1.get_graph_label(
+ relu_graph, Tex("max(0,z)").scale(1.3),direction=RIGHT).shift(2.5*DOWN+RIGHT)
+ relu_title = TexText('Rectified Linear Unit').to_edge(UP).shift(DOWN)
+ relu_description = TexText('Simple, Effective, Less Computation').next_to(axes1,DOWN)
+ self.fade_all_except_title()
+ self.play(Write(axes1, lag_ratio=0.01, run_time=1))
+ self.play(
+ ShowCreation(relu_graph),
+ Write(relu_title),
+ # Write(lbl),
+ # Write(tip),
+ )
+ self.wait()
+ self.play(FadeIn(relu_label, RIGHT))
+ self.wait(2)
+ self.play(Write(relu_formula))
+ self.play(Indicate(relu_formula[0][0:3]))
+ self.play(Indicate(relu_formula[0][4],scale_factor=1.5))
+ self.play(Indicate(relu_formula[0][6]),scale_factor=1.5)
+ self.wait(2)
+ self.play(Indicate(relu_formula[0][6]), scale_factor=1.5)
+ self.wait(2.5)
+ self.play(Indicate(relu_formula[0][4], scale_factor=1.5))
+ self.wait(7)
+ self.play(Write(relu_description),run_time=3)
+ self.wait(2)
+ tanh_label = axes2.get_graph_label(
+ tanh_graph, Text("Tanh Function").scale(0.4))
+ tanh_formula = axes2.get_graph_label(
+ tanh_graph, Tex("\\frac{(e^z-e^{-z})}{(e^z+e^{-z})}").scale(0.8), direction=RIGHT).shift(1.5*DOWN+0.2*RIGHT)
+ tanh_title = TexText('Hyperbolic Tangent Function').to_edge(UP).shift(DOWN)
+ tanh_description = TexText(
+ 'Used in Binary Classification\\\Performs better than Sigmoid Function').next_to(self.grp, DOWN).scale(0.8)
+ # self.embed()
+ NeuralNetwork.arguments['layer_sizes'] = [4, 6, 6, 4]
+ NeuralNetwork.add_neurons(self, False)
+ NeuralNetwork.add_edges(self, False)
+ NeuralNetwork.group1(self)
+ self.grp.shift(3*RIGHT)
+ relu = VGroup(axes1,relu_graph,relu_formula)
+ tanh = VGroup(axes2,tanh_graph,tanh_formula)
+ # self.embed()
+ self.play(ReplacementTransform(relu,tanh),FadeOut(VGroup(relu_description,relu_title,relu_label)))
+ self.play(Write(tanh_title))
+ self.wait()
+ self.play(Write(tanh_label))
+ self.wait(4)
+ one = axes2.y_axis.get_number_mobject(1,font_size=24)
+ negative_one = axes2.y_axis.get_number_mobject(-1,font_size=24)
+ self.play(Write(negative_one))
+ self.play(Write(one))
+ self.wait(2)
+ dot = Dot(color=BLUE)
+ dot.move_to(axes2.i2gp(0, tanh_graph))
+ self.play(GrowFromPoint(dot,dot.get_center(), scale=0.5))
+
+ x_tracker = ValueTracker(0)
+ f_always(
+ dot.move_to,
+ lambda: axes2.i2gp(x_tracker.get_value(), tanh_graph)
+ )
+
+ self.play(x_tracker.animate.set_value(4), run_time=3)
+ self.play(x_tracker.animate.set_value(-4), run_time=5)
+ self.wait(2)
+ # tanh_grp = VGroup(axes2, tanh_graph, tanh_label,
+ # tanh_formula, tanh_title)
+ tanh.add(tanh_label)
+ tanh_grp_copy = tanh.copy().shift(4*LEFT).scale(0.8)
+ self.play(Transform(tanh,tanh_grp_copy),FadeOut(VGroup(one,negative_one,dot)))
+ self.remove(x_tracker)
+ self.play(Write(self.grp))
+ self.play(Write(tanh_description))
+ self.wait()
+ self.play(Indicate(self.grp.layers[3]))
+
+ self.wait(5)
+ self.fade_all_except_title()
+ NeuralNetwork.arguments['layer_sizes'] = [4, 6, 6, 4]
+ NeuralNetwork.add_neurons(self, False)
+ NeuralNetwork.add_edges(self, False)
+ NeuralNetwork.group1(self)
+ self.grp.scale(1.2).to_edge(RIGHT).shift(LEFT)
+ question = TexText('Which should you use?').move_to([3,3,0])
+ # self.add(question)
+ softmax = TexText('Softmax Function').to_edge(UP).shift(DOWN)
+ softmax_formula = Tex('\\text{Softmax}(x)=\\frac{e^z}{\sum e^z}')
+ self.play(Write(softmax))
+ self.play(Write(softmax_formula))
+ self.play(softmax_formula.animate.shift(3.5*LEFT))
+ self.play(Write(self.grp))
+
+ softmax_group = self.label('a',VGroup(),3)
+ self.play(Write(softmax_group))
+ softmax_sum = Tex('\sum_{a=0} = 1').next_to(self.grp.layers[2],UP)
+ softmax_group_copy = softmax_group.copy()
+ self.wait(5)
+ self.play(Transform(softmax_group_copy,softmax_sum))
+ softmax_application = TexText('Used in Multiclass Classification').next_to(self.grp,DOWN)
+ self.wait(2)
+ ans_layer = VGroup(Tex('0.1').scale(0.5).move_to(self.grp.layers[3][0][0]),Tex('0.5').scale(0.5).move_to(self.grp.layers[3][0][1]),Tex('0.2').scale(0.5).move_to(self.grp.layers[3][0][2]),Tex('0.1').scale(0.5).move_to(self.grp.layers[3][0][3])).set_color(BLUE)
+ self.play(*[Transform(softmax_group[i],ans_layer[i]) for i in range(len(ans_layer))])
+ self.wait(5)
+ self.play(Write(softmax_application))
+ self.wait(6)
+ self.fade_all_except_title()
+ self.play(Transform(self.title,TexText('How to choose Activation Function').to_edge(UP+LEFT)))
+ Choose.construct(self)
+ self.fade_all_except_title()
+ self.play(Transform(self.title,TexText('Bias: Further Explanation').to_edge(UP+LEFT)))
+ Bias.construct(self)
+ self.fade_all_except_title()
+ EndScreen.construct(self)
+ self.embed()
+
+ def first_part(self):
+ #asset, first part
+ self.title = TexText('What is Neural Network?').to_corner(UP+LEFT)
+ brain = SVGMobject('assets/brain.svg')
+ brain.flip(LEFT)
+ algorithm = TexText('Algorithm').next_to(brain,LEFT)
+ question = Tex('?').next_to(brain,RIGHT)
+ ans = TexText("It's an orange.").next_to(self.grp.layers[3][0][0],RIGHT)
+ question2nd = TexText('What is a neuron?').to_corner(UP+LEFT)
+ arrow = Arrow([-2,2.5,0],[2,2.5,0])
+ self.play(Write(self.title))
+ self.wait()
+ self.play(Write(VGroup(algorithm)))
+ self.play(DrawBorderThenFill(brain),Write(question))
+ self.wait()
+ self.play(VGroup(algorithm,question,brain).animate.to_edge(LEFT))
+ self.wait(2)
+ self.subset()
+ # self.embed()
+ # self.wait()
+ self.fade_all_except_title()
+
+ x = [[random.uniform(0, 1) for x1 in range(6)], [
+ random.uniform(0, 1) for x1 in range(6)]]
+
+ org = SVGMobject('assets/orange2.0.svg')
+ org.set_color(ORANGE).to_edge(LEFT).flip(LEFT)
+
+ self.hid_layer = Brace(VGroup(self.grp.layers[1],self.grp.layers[2]),UP)
+ self.in_layer_text = TexText('Input Layer').next_to(self.grp.layers[0],1.5*DOWN)
+ self.hid_layer_text = self.hid_layer.get_text('Hidden Layer').scale(0.8)
+ self.out_layer_text = TexText('Output Layer').next_to(self.grp.layers[3],1.5*DOWN)
+ t = Tex('248').move_to(self.grp.layers[0][0][0]).scale(0.5)
+ t1 = Tex('148').move_to(self.grp.layers[0][0][1]).scale(0.5)
+ t2 = Tex('6').move_to(self.grp.layers[0][0][2]).scale(0.5)
+ t3 = Tex('1').move_to(self.grp.layers[0][0][3]).scale(0.5)
+ self.texts = VGroup(t,t1,t2,t3)
+ self.add(self.grp)
+ org_transform = org.copy()
+ self.play(DrawBorderThenFill(org))
+ self.play(ReplacementTransform(org_transform,self.texts))
+ self.wait()
+ self.play(ShowCreation(arrow))
+ self.play(*[ApplyMethod(self.grp.layers[1][0][x1].set_fill,
+ WHITE, float(x[0][x1])) for x1 in range(6)])
+ self.play(*[ApplyMethod(self.grp.layers[2][0][x2].set_fill,
+ WHITE, float(x[1][x2])) for x2 in range(6)])
+ self.wait(4)
+ self.play(ApplyMethod(self.grp.layers[3][0][0].set_fill,WHITE,1))
+ self.wait()
+ self.play(Write(ans))
+ self.play(FadeOut(org),FadeOut(arrow),FadeOut(ans),FadeOut(self.texts))
+ self.wait(3)
+
+ #Layer
+ shade_area = Rectangle(height=FRAME_HEIGHT,width=FRAME_WIDTH-6).to_edge(RIGHT)
+ shade = BackgroundRectangle(shade_area)
+ shade_area_hid1 = Rectangle(height=FRAME_HEIGHT,width=5).to_edge(LEFT)
+ shade_area_hid2 = Rectangle(height=FRAME_HEIGHT,width=3.5).to_edge(RIGHT)
+ shade_area_out = Rectangle(height=FRAME_HEIGHT,width=FRAME_WIDTH-6).to_edge(LEFT)
+ shade_hid1 = BackgroundRectangle(shade_area_hid1)
+ shade_hid2 = BackgroundRectangle(shade_area_hid2)
+ shade_out = BackgroundRectangle(shade_area_out)
+ org_transform = org.copy()
+
+ self.play(Write(self.in_layer_text),ShowCreation(shade))
+ self.wait(4)
+ self.play(DrawBorderThenFill(org))
+ self.bring_to_back(org)
+ self.play(ReplacementTransform(org_transform,self.texts))
+ self.play(FadeOut(self.texts))
+ self.wait(3)
+ self.play(ShowCreationThenDestruction(self.edges[0]))
+ self.wait(2)
+ self.play( GrowFromCenter(self.hid_layer), Write(self.hid_layer_text),ReplacementTransform(shade.copy(),shade_hid2),ReplacementTransform(shade,shade_hid1))
+ self.bring_to_back(self.hid_layer)
+ self.bring_to_back(self.hid_layer_text)
+ self.wait(2)
+ self.play(ShowCreationThenDestruction(self.edges[1]))
+ self.wait(3)
+ self.play(ShowCreationThenDestruction(self.edges[2]))
+ self.wait(2)
+ shade_out_copy = shade_out.copy()
+ self.play(Write(
+ self.out_layer_text), ReplacementTransform(shade_hid2, shade_out),ReplacementTransform(shade_hid1, shade_out_copy))
+ self.play(Write(ans),FadeOut(shade_out_copy))
+ self.wait(2)
+ grp=self.grp
+ NeuralNetwork.arguments['layer_sizes'] = [4, 6, 6,6,6, 1]
+ NeuralNetwork.add_neurons(self, False)
+ NeuralNetwork.add_edges(self, False)
+ NeuralNetwork.group1(self)
+ self.grp.scale(0.7).to_corner(UP+RIGHT)
+
+ # # #explanation: speech recongition example
+ self.remove(self.in_layer_text,org,self.hid_layer_text,self.hid_layer)
+ self.play(FadeOut(VGroup(self.out_layer_text, shade_out, ans)))
+ grp_fade = VGroup()
+ print('---')
+ for mob in self.mobjects:
+ grp_fade.add(mob) if mob is not self.title else None
+ print(mob)
+ # self.embed()
+ # self.fade_all_except_grp(grp)
+ # self.add(grp)
+ self.wait()
+ self.play(ReplacementTransform(grp, self.grp))
+
+ explanation = VGroup()
+ soundwave = SVGMobject('assets/soundwavee.svg').scale(0.5).to_edge(LEFT)
+ arrow = Arrow([0,0,0],[1,0,0]).next_to(soundwave,RIGHT)
+ explanation1 = TexText('Frequency/Pitch of Sound').next_to(arrow,RIGHT)
+ arrow1 = Arrow([0, 0, 0], [1, 0, 0]).next_to(explanation1, RIGHT)
+ explanation2 = TexText('Phonemes').next_to(arrow1,RIGHT)
+ explanation20 = TexText('Code').next_to(explanation2,UP)
+ explanation21 = TexText('C o d e').next_to(explanation2,UP)
+ arrow2 = Arrow([0,0,0],[0,-1,0]).next_to(explanation2,DOWN)
+ explanation3 = TexText('Word').next_to(arrow2,DOWN)
+ arrow3 = Arrow([0, 0, 0], [-1, 0, 0]).next_to(explanation3, LEFT)
+ explanation4 = TexText('Phrases').next_to(arrow3,LEFT)
+ arrow4 = Arrow([0, 0, 0], [-1, 0, 0]).next_to(explanation4, LEFT)
+ output = TexText('Hello World').next_to(arrow4,LEFT)
+ explanation.add(arrow,explanation1,arrow1,explanation2,arrow2,explanation3,arrow3,explanation4,arrow4)
+ self.wait(3)
+ self.play(DrawBorderThenFill(soundwave),Indicate(self.grp.layers[0],color=YELLOW, run_time=2))
+ self.wait(3)
+ self.play(Write(VGroup(arrow,explanation1)),Indicate(self.grp.layers[1],color=YELLOW, run_time=2))
+ self.wait(3)
+ self.play(Write(VGroup(arrow1,explanation2)),Indicate(self.grp.layers[2],color=YELLOW, run_time=2))
+ self.wait(9)
+ self.play(Write(explanation20))
+ self.wait(3)
+ self.play(TransformMatchingTex(explanation20,explanation21,path_arc = PI/2))
+ self.wait(4)
+ self.play(Write(VGroup(arrow2, explanation3)), Indicate(
+ self.grp.layers[3], color=YELLOW, run_time=2))
+ self.wait(2)
+ self.play(Write(VGroup(arrow3, explanation4)),Indicate(self.grp.layers[4],color=YELLOW, run_time=2))
+ self.wait(3.5)
+ self.play(Write(VGroup(arrow4,output)),Indicate(self.grp.layers[5],color=YELLOW, run_time=2))
+ self.wait(8)
+ hp = TexText('Based on Human Perspective').to_edge(LEFT).shift(2*UP).to_edge(LEFT)
+ not_exactly = TexText("Not Exactly What's Happening").next_to(hp,DOWN).to_edge(LEFT)
+ self.play(Write(hp))
+ self.wait(9)
+ self.play(Write(not_exactly))
+ self.wait(3)
+ self.play(FadeOut(VGroup(explanation,output,explanation21)))
+ self.play(ReplacementTransform(soundwave.copy(),explanation),run_time=2)
+ self.wait(2)
+ self.play(Indicate(self.grp.layers[1]),run_time=0.5)
+ self.play(Indicate(self.grp.layers[2]),run_time=0.5)
+ self.play(Indicate(self.grp.layers[3]),run_time=0.5)
+ self.play(Indicate(self.grp.layers[4]), run_time=0.5)
+ self.play(ReplacementTransform(explanation.copy(),output))
+ self.play(Indicate(self.grp.layers[5], color=YELLOW, run_time=2))
+ self.wait(1.5)
+
+ grp = self.grp
+ NeuralNetwork.arguments['layer_sizes'] = [4, 6, 6, 2]
+ NeuralNetwork.add_neurons(self, False)
+ NeuralNetwork.add_edges(self, False)
+ NeuralNetwork.group1(self)
+ self.grp.scale(1.5)
+ self.fade_all_except_grp(grp)
+ self.play(ReplacementTransform(grp, self.grp))
+
+ # self.embed()
+ self.wait()
+ self.play(Transform(self.title, question2nd))
+ self.wait(12)
+ self.decimal = DecimalNumber(
+ 0, num_decimal_places=3, include_sign=False, unit=None)
+ self.decimal.add_updater(lambda d: d.set_value(
+ float(self.grp.layers[1][0][3].get_fill_opacities()[0])))
+ self.decimal.scale(0.2).move_to(
+ self.grp.layers[1][0][3].set_fill(WHITE, 0))
+ self.play(self.camera.frame.scale, 0.1,
+ self.camera.frame.move_to, self.grp.layers[1][0][3])
+ self.play(FadeOut(self.grp.edges))
+ self.bring_to_front(self.decimal)
+ self.play(ApplyMethod(self.grp.layers[1][0][3].set_opacity, 0))
+ self.wait()
+ self.play(ApplyMethod(self.grp.layers[1][0][3].set_opacity, 1))
+ self.wait()
+ self.play(ApplyMethod(self.grp.layers[1][0][3].set_opacity, 0))
+ self.wait()
+ self.play(ApplyMethod(self.grp.layers[1][0][3].set_opacity, 1))
+ self.wait()
+
+
+
+
+ def shallow_nn_representation(self):
+ NeuralNetwork.arguments['layer_sizes'] = [3,1,1]
+ NeuralNetwork.add_neurons(self, False)
+ NeuralNetwork.add_edges(self, False)
+ NeuralNetwork.group1(self)
+ l = "x"
+
+ self.grp.scale(3)
+ self.grp.layers[1][0][0].scale(2)
+ input_group = VGroup()
+
+ for x in range(NeuralNetwork.arguments['layer_sizes'][0]):
+ label = Tex(f"{l}_"+"{"+f"{x+1}"+"}")
+ label.move_to(self.grp.layers[0][0][x])
+ input_group.add(label)
+ y_hat = Tex('\hat{y}')
+ y_hat.move_to(self.grp.layers[2][0][0])
+ sigma = Tex('\sigma').shift(0.5*DOWN)
+ line = Line(self.grp.edges[0][1],self.grp.edges[1][0])
+ log_reg_formula = Tex('w^Tx+b').scale(0.8).shift(0.4*UP)
+ self.play(Write(self.grp),Write(input_group), Write(
+ log_reg_formula), Write(line), Write(sigma),Write(y_hat))
+ return
+
+ def weights(self):
+ NeuralNetwork.arguments['layer_sizes'] = [3, 1, 1]
+ NeuralNetwork.add_neurons(self, False)
+ NeuralNetwork.add_edges(self, False, False)
+ NeuralNetwork.group1(self)
+ l = "x"
+ weight = TexText('What is weight?').to_corner(UP+LEFT)
+ self.grp.scale(3)
+ self.grp.layers[1][0][0].scale(2)
+ input_group = VGroup()
+ input_label = TexText('Input').next_to(self.grp.layers[0][0][0], UP)
+ y_hat_label = TexText('Predicted Output').next_to(
+ self.grp.layers[2][0][0], UP)
+ for x in range(NeuralNetwork.arguments['layer_sizes'][0]):
+ label = Tex(f"{l}_"+"{"+f"{x+1}"+"}")
+ label.move_to(self.grp.layers[0][0][x])
+ input_group.add(label)
+ y_hat = Tex('\hat{y}')
+ y_hat.move_to(self.grp.layers[2][0][0])
+ shallow_nn = VGroup(self.grp, input_group, y_hat)
+ self.play(Write(shallow_nn),
+ Write(input_label), Write(y_hat_label),
+ Transform(self.title,weight))
+ self.bring_to_back(self.grp.layers[0])
+ self.play(ZoomInThenZoomOut(self.grp.layers[0], color=WHITE),ZoomInThenZoomOut(input_group))
+ self.wait()
+ self.play(ZoomInThenZoomOut(self.grp.layers[1],color=WHITE))
+ dashed_line_group = VGroup(*[DashedLine(self.grp.edges[0][x].get_center(), [0, 2.5, 0]) for x in range(
+ NeuralNetwork.arguments['layer_sizes'][0])], VGroup(DashedLine(self.grp.edges[1][0].get_center(), [0, 2.5, 0])))
+ w_layer_group = VGroup()
+ l = "w"
+ synapse = TexText('Edges (Connections)').next_to(
+ dashed_line_group[0].get_end(), UP)
+ for x in range(NeuralNetwork.arguments['layer_sizes'][0]):
+ label = Tex(f"{l}_"+"{"+f"{x+1}"+"}")
+ label.move_to(self.grp.edges[0][x]).shift(0.4*UP)
+ w_layer_group.add(label)
+ self.wait()
+ self.play(Write(dashed_line_group))
+ self.play(Write(synapse))
+ self.wait()
+ self.play(FadeOut(synapse), FadeOut(dashed_line_group))
+ self.wait()
+ self.play(Write(w_layer_group))
+ self.wait(1.5)
+ self.play(ZoomInThenZoomOut(w_layer_group[0]))
+ self.wait(4)
+ self.play(ZoomInThenZoomOut(self.grp.edges[0]))
+ self.wait(7)
+ arrow = Arrow([0, 0, 0], [0, 1, 0]).next_to(w_layer_group[0], RIGHT)
+ arrow3 = Arrow([0, 1, 0], [0, 0, 0]).next_to(w_layer_group[0], RIGHT)
+
+ # zero = Tex('0').next_to(w_layer_group[0], RIGHT)
+ v = ValueTracker(0)
+ x1 = DecimalNumber(0, num_decimal_places=1, include_sign=False, unit=None).move_to(
+ self.layers[0][0][0].get_center()).scale(0.5)
+ z = DecimalNumber(0, num_decimal_places=2,
+ include_sign=False, unit=None)
+ x1.add_updater(lambda m: m.set_value(v.get_value()))
+ z.add_updater(lambda d: d.set_value(
+ float(self.grp.layers[1][0][0].get_fill_opacities()[0])))
+
+ self.grp.layers[1][0][0].set_fill(WHITE, 0)
+ self.play(ZoomInThenZoomOut(self.grp.layers[0][0][0]))
+ self.bring_to_back(self.grp.layers[0])
+ self.wait()
+ self.play(ZoomInThenZoomOut(self.grp.layers[1][0][0],color=WHITE))
+ self.wait(2)
+ self.play(Write(arrow), ReplacementTransform(input_group[0], x1))
+ self.add(z)
+
+ self.play(v.animate.set_value(7),
+ ApplyMethod(self.grp.layers[1][0][0].set_fill, WHITE, 0.8), run_time=2)
+ self.wait(2)
+ self.grp.layers[1][0][0].set_fill(WHITE, 0)
+ v.set_value(0)
+ self.play(Transform(arrow, arrow3))
+ self.play(v.animate.set_value(7),
+ ApplyMethod(self.grp.layers[1][0][0].set_fill, WHITE, 0.4), run_time=2)
+ self.wait(3)
+ self.remove(x1, z,v)
+ self.play(FadeOut(VGroup(self.grp, arrow, w_layer_group, input_group,input_label,y_hat_label,y_hat)))
+ # self.play(ReplacementTransform(arrow,zero),FadeOut(arrow1))
+ # self.grp.layers[1][0][0].set_fill(WHITE,0)
+ # self.play(ShowCreationThenFadeOut(arrow2),run_time=0.5)
+ # arrow2.flip(LEFT)
+ # self.play(ShowCreationThenFadeOut(arrow2),run_time=0.5)
+ # self.wait()
+
+ # self.play(ReplacementTransform(zero,arrow3))
+ # self.play(ApplyMethod(self.grp.layers[1][0][0].set_fill, WHITE, 0.2))
+
+ def nn_representation(self):
+ return
+
+ def label(self,l,group,layer=0,edges=False,bias=False):
+ if bias is True:
+ for x in range(len(NeuralNetwork.arguments['layer_sizes'])-1):
+ label = Tex(f"{l}_"+"{"+f"{x}"+"}").scale(0.8)
+ label.move_to(self.bias_layer[x])
+ group.add(label)
+ else:
+ for x in range(NeuralNetwork.arguments['layer_sizes'][layer]):
+ label = Tex(f"{l}_"+"{"+f"{x}"+"}").scale(0.8)
+
+ label.move_to(self.grp.edges[layer][x]).shift(
+ 0.4*UP) if edges is True else label.move_to(self.grp.layers[layer][0][x])
+ group.add(label)
+
+ return group
+
+ def connections(self,x,y,z,wait=1,highlight=False):
+ i=0
+ while i != NeuralNetwork.arguments['layer_sizes'][0]:
+ self.edge_transform_1.add(self.edges[0][x])
+ print(0,x)
+ i+=1
+ x+=NeuralNetwork.arguments['layer_sizes'][1]
+
+
+ self.play(ShowCreationThenDestruction(self.edge_transform_1))
+ self.wait(wait)
+ if highlight is True:
+ self.play(Indicate(self.grp.layers[1][0][0],color=WHITE))
+ self.wait(2)
+ self.play(*[ShowCreationThenDestruction(self.edges[1][i]) for i in range(y,z)])
+
+ def dot(self):
+ dot_layer = VGroup(*[Dot().move_to(self.grp.layers[0][0][i].get_center()) for i in range(NeuralNetwork.arguments['layer_sizes'][0])])
+ dot_layer.set_fill(WHITE,0)
+ return dot_layer
+
+ def fade_all_except_title(self):
+ grp_fade = VGroup()
+ print('---')
+ for mob in self.mobjects:
+ grp_fade.add(mob) if mob is not self.title else None
+ print(mob)
+ self.play(
+ FadeOut(grp_fade)
+ )
+
+ def subset(self):
+ nn = TexText('Neural Network')
+ dl = TexText('Deep Learning').shift(1.3*UP)
+ ml = TexText('Machine Learning').shift(2.3*UP)
+ c = Circle(stroke_color=RED).stretch(2, dim=0)
+ c1 = Circle(radius=1.5, stroke_color=GREEN).stretch(
+ 2, dim=0).shift(0.5*UP)
+ c2 = Circle(radius=2, stroke_color=BLUE).stretch(2, dim=0).shift(UP)
+ subset = VGroup(nn,dl,ml,c,c1,c2).scale(0.8).to_edge(RIGHT).shift(DOWN)
+ self.play(Write(VGroup(c, nn)))
+ self.wait()
+ self.play(Write(VGroup(c1, dl)))
+ self.wait()
+ self.play(Write(VGroup(c2, ml)))
+
+ def fade_all_except_grp(self,grp):
+ grp_fade = VGroup()
+ for mob in self.mobjects:
+ grp_fade.add(mob) if mob is not grp else None
+ self.play(
+ FadeOut(grp_fade)
+ )
+
+# color detection
+# edge detection
+# group detection
+#TODO
diff --git a/graph_scene.py b/graph_scene.py
new file mode 100644
index 0000000..84672fc
--- /dev/null
+++ b/graph_scene.py
@@ -0,0 +1,60 @@
+from manimlib import *
+
+class graph_scene(Scene):
+ def construct(self):
+
+ axes = Axes((-5, 5), (0, 1),
+ y_axis_config={
+ "decimal_number_config": {
+ "num_decimal_places": 1,
+ }
+ },
+ width=10).scale(0.4).shift(0.5*UP)
+ sigmoid_graph = axes.get_graph(
+ lambda x: 1.0 / (1.0 + math.exp(-x)),
+ use_smoothing=False,
+ color=YELLOW,
+ )
+ axes1 = Axes((-3, 5), (0, 5),
+ y_axis_config={
+ "decimal_number_config": {
+ "num_decimal_places": 1,
+ }
+ },
+ width=10).scale(0.4).shift(0.5*DOWN)
+ relu_graph = axes1.get_graph(
+ lambda x: max(0, x),
+ use_smoothing=False,
+ color=YELLOW,
+ )
+ axes2 = Axes((-5, 5), (-1, 1),
+ y_axis_config={
+ "decimal_number_config": {
+ "num_decimal_places": 1,
+ }
+ },
+ width=10).scale(0.4).shift(0.5*DOWN)
+ tanh_graph = axes2.get_graph(
+ lambda x: (math.exp(x) - math.exp(-x)) /
+ (math.exp(x) + math.exp(-x)),
+ use_smoothing=False,
+ color=YELLOW,
+ )
+
+ sigmoid_name = TexText('Sigmoid Function').next_to(axes,DOWN)
+ relu_name = TexText('ReLU Function').next_to(axes1,DOWN)
+ tanh_name = TexText('Tanh Function').next_to(axes2,DOWN)
+ softmax_formula = Tex('\\text{Softmax}(x)=\\frac{e^z}{\sum e^z}')
+ softmax_name = TexText('Softmax Function').next_to(softmax_formula,DOWN)
+
+ sigmoid_grp = VGroup(axes,sigmoid_graph,sigmoid_name).shift(1.2*UP+3*LEFT)
+ relu_grp = VGroup(axes1,relu_graph,relu_name).shift(2.2*UP+3*RIGHT)
+ tanh_grp = VGroup(axes2,tanh_graph,tanh_name).shift(1.5*DOWN+3*LEFT)
+ softmax_grp = VGroup(softmax_name,softmax_formula).shift(2*DOWN+3*RIGHT)
+ self.play(Write(sigmoid_grp))
+ self.wait()
+ self.play(Write(relu_grp))
+ self.wait()
+ self.play(Write(tanh_grp))
+ self.wait()
+ self.play(Write(softmax_grp))
diff --git a/nn.py b/nn.py
new file mode 100644
index 0000000..916c2ac
--- /dev/null
+++ b/nn.py
@@ -0,0 +1,407 @@
+from manimlib import *
+import random
+import pandas as pd
+from sklearn.preprocessing import MinMaxScaler
+from sklearn.model_selection import train_test_split
+from sklearn.metrics import accuracy_score
+red1 = "#FF0000"
+blue1 = "#0000ff"
+light_grey1 = "#6b6b78"
+green1 = "#00FF00"
+violet1 = "#FF00FF"
+
+
+class NeuralNetwork(Scene):
+ arguments = {
+ "network_size": 1,
+ "network_position": ORIGIN,
+ "layer_sizes": [6, 12, 10, 8, 6, 2],
+ "layer_buff": 1.25*LARGE_BUFF,
+ # "layer_buff": LARGE_BUFF,
+ "neuron_radius": 0.15,
+ "neuron_color": WHITE,
+ "neuron_width": 2,
+ "neuron_fill_color": BLACK,
+ "neuron_fill_opacity": 1,
+ "neuron_buff": MED_SMALL_BUFF,
+ "edge_color": YELLOW_B,
+ "edge_width": 2,
+ "edge_opacity": 1,
+ "layer_label_color": WHITE,
+ "layer_label_size": 0.5,
+ "neuron_label_color": WHITE,
+ }
+
+ # def __init__(self):
+ # self.nPclass = 0
+ # self.nSex = 0
+ # self.nAge = 0
+ # self.nSibSp = 0
+ # self.Fare = 0
+ # self.Embarked = 0
+ # self.Age_was_missing = 0
+ # def setup(self):
+ # MovingCameraScene.setup(self)
+
+ def construct(self):
+ # self.camera_frame.save_state()
+
+ self.add_neurons()
+ self.add_edges()
+ # self.label_stuff()
+ self.group1()
+ # self.preload()
+ # self.grp.n = self.n
+ # self.grp.output_label = self.output_label
+ # self.grp.add(self.n)
+ # self.grp.add(self.output_label)
+ self.intro()
+ self.grp.n = self.n
+ self.grp.add(self.n)
+
+ # self.content()
+ # grp = VGroup()
+ # grp.layers = self.layers
+ # grp.edges = self.edge_groups
+ # grp.n = self.n
+ # grp.output_label = self.output_label
+ # grp.add(self.layers)
+ # grp.add(self.edge_groups)
+ # grp.add(self.n)
+ # grp.add(self.output_label)
+ # grp.shift(LEFT)
+ # self.play(ApplyMethod(grp.scale,0.72))
+ # self.label_layers()
+ # box = Rectangle(height=30, color=YELLOW, stroke_width=4)
+ # box.surround(self.n)
+ # self.play(ShowCreation(box))
+ # grp1 = VGroup()
+ # grp1.add(self.layers[1][0])
+ # grp1.add(self.layers[2][0])
+ # grp1.add(self.layers[3][0])
+ # grp1.add(self.layers[4][0])
+ # grp1.add(self.output_label)
+ # bland = Rectangle(height=20,fill_color=BLACK, fill_opacity=0.4, stroke_opacity=0)
+ # bland.surround(grp1)
+ # self.play(ShowCreation(bland))
+ return self.grp
+
+ def group1(self):
+ grp = VGroup()
+ grp.layers = self.layers
+ grp.edges = self.edge_groups
+ grp.add(self.layers)
+ grp.add(self.edge_groups)
+ self.grp = grp
+ return grp
+
+ def intro(self):
+ grp1 = self.grp.copy().scale(0.8).shift(3*RIGHT)
+ # self.play(FadeIn(self.grp))
+ # self.play(ShowCreation(grp1))
+ self.play(Transform(self.grp, grp1))
+ neural = TexText("Neural")
+ title = VGroup(
+ neural,
+ TexText("Network Crash"),
+ TexText("Course")
+ ).arrange(DOWN, aligned_edge=LEFT).shift(3.5*LEFT).scale(1.1)
+ line1 = Line(title.get_corner(UP+LEFT), neural.get_corner(UP+RIGHT),
+ color=YELLOW_E, stroke_width=5).next_to(title, UP).shift(LEFT)
+ line = Line(title.get_corner(DOWN+LEFT), title.get_corner(DOWN+RIGHT),
+ color=YELLOW_E, stroke_width=5).next_to(title, DOWN)
+ self.play(Write(title), ShowCreation(line), ShowCreation(line1))
+ ml = Text('Machine Learning:', font="consolas", font_size=24)
+ self.quote = VGroup(
+ ml,
+ Text("Programming with examples,", font="consolas",
+ font_size=24, t2c={"examples": YELLOW}),
+ Text("not instructions.", font="consolas",
+ font_size=24, t2c={"instructions": YELLOW}),
+ Tex('-\\ Kyle\\ Mcdonald')
+ ).arrange(DOWN, aligned_edge=LEFT).to_edge(LEFT).shift(0.5*RIGHT)
+
+ # mob1.align_to(mob2, alignment_vect = RIGHT)
+ self.introgrp = VGroup(title, line, line1)
+ title.add(line1)
+ title.add(line)
+ self.title = title
+ self.animation(self.grp)
+
+ def add_neurons(self, animation=True):
+ self.loop = False
+ layers = VGroup(*[self.get_layer(size)
+ for size in NeuralNetwork.arguments["layer_sizes"]])
+ layers.arrange(RIGHT, buff=NeuralNetwork.arguments["layer_buff"])
+ layers.scale(NeuralNetwork.arguments["network_size"])
+ # self.layers is layers, but we can use it throughout every method in our class
+ # without having to redefine layers each time
+ self.layers = layers
+ layers.shift(NeuralNetwork.arguments["network_position"])
+ self.play(FadeInFromPoint(layers, ORIGIN),
+ run_time=2) if animation is True else None
+ # self.add(layers)
+
+ def get_layer(self, size):
+ layer = VGroup()
+ n_neurons = size
+ neurons = VGroup(*[
+ Circle(
+ radius=NeuralNetwork.arguments["neuron_radius"],
+ stroke_color=NeuralNetwork.arguments["neuron_color"],
+ stroke_width=NeuralNetwork.arguments["neuron_width"],
+ fill_color=NeuralNetwork.arguments["neuron_fill_color"],
+ fill_opacity=NeuralNetwork.arguments["neuron_fill_opacity"],
+ )
+ for i in range(n_neurons)
+ ])
+ neurons.arrange(DOWN, buff=NeuralNetwork.arguments["neuron_buff"])
+ layer.neurons = neurons
+ layer.add(neurons)
+ if size == 6 and self.loop == False:
+ self.neurons1 = neurons
+ self.loop = True
+ return layer
+
+ def edge_security(self):
+ self.edge_groups = VGroup()
+ for l1, l2 in zip(self.layers[:-1], self.layers[1:]):
+ edge_group = VGroup()
+ for n1, n2 in it.product(l1.neurons, l2.neurons):
+ edge = self.get_edge(n1, n2)
+ edge_group.add(edge)
+ self.edge_groups.add(edge_group)
+
+ def add_edges(self, animation=True, color=True):
+ self.edge_groups = VGroup()
+ for l1, l2 in zip(self.layers[:-1], self.layers[1:]):
+ edge_group = VGroup()
+ for n1, n2 in it.product(l1.neurons, l2.neurons):
+ # print(x,y)
+ edge = self.get_edge(n1, n2, color)
+ edge_group.add(edge)
+
+ # edge_group = self.set_bias(x,edge_group) if x is not len(NeuralNetwork.arguments['layer_sizes'])-2 else None
+ self.play(Write(edge_group),
+ run_time=0.5) if animation is True else None
+ self.edge_groups.add(edge_group)
+
+ def get_edge(self, neuron1, neuron2, color):
+ colors = [red1, blue1, blue1]
+ r = random.randint(0, len(colors)-1)
+ # if y % self.arguments['layer_sizes'][x+1] == 0 and x is not len(self.arguments['layer_sizes'])-2:
+ # print(x,y)
+ # color = GREY
+ # else:
+ # color = colors[r]
+ # print(y%NeuralNetwork.arguments['layer_sizes'][x+1] != 0,x,y)
+ return Line(
+ neuron1.get_center(),
+ neuron2.get_center(),
+ # buff=1.25*NeuralNetwork.arguments["neuron_radius"],
+ buff=NeuralNetwork.arguments["neuron_radius"],
+
+ stroke_color=GREY if color is False else colors[r],
+ stroke_width=NeuralNetwork.arguments["edge_width"],
+ stroke_opacity=NeuralNetwork.arguments["edge_opacity"]
+ )
+
+ def set_bias(self, x):
+ x1 = 0
+ # return None
+ for i in range(self.arguments['layer_sizes'][x]):
+ print(x, x1)
+ self.edge_groups[x][x1].set_color(GREY)
+ x1 += self.arguments['layer_sizes'][x+1]
+ # self.edge_groups[0][0].set_color(GREY)
+
+ def animation(self, grop, backward_teaser=False, L=1):
+ input_data1 = self.read_data('test.csv', False)
+ # print(input_data)
+ output = self.read_data('my_submission.csv', False)
+
+ # output_data = self.read_data('ans.csv',False)
+ # for i in range(len(input_data1)):
+ # y=None
+ if backward_teaser is True:
+ y = np.array(pd.read_csv(
+ 'data/without_training/output_real.csv').T.reset_index().drop('index', axis=1)[0])
+ y_hat = np.array(pd.read_csv(
+ 'data/without_training/output.csv').T.reset_index().drop('index', axis=1)[0])
+ p = np.zeros((1, y_hat.shape[0]))
+ for i in range(0, y_hat.shape[0]):
+ if y_hat[i] > 0.5:
+ p[0, i] = 1
+ else:
+ p[0, i] = 0
+ print(y[0])
+ self.ans = Tex(str(y[1])).next_to(
+ self.grp.layers[len(self.arguments['layer_sizes'])-1], RIGHT).shift(RIGHT)
+
+ self.activate = False
+ ans_output = False
+ # always(self.ans.next_to,
+ # self.grp.layers[len(self.arguments['layer_sizes'])-1], 2*RIGHT)
+ for i in range(L):
+ self.input_data(input_data1.T[i], True, backward_teaser=True, y=y, i=i+1) if backward_teaser is True else self.input_data(
+ input_data1.T[i], True)
+
+ # self.wait()
+ for i1 in range(4):
+ df = self.read_data('activation'+str(i1+1)+'.csv',
+ True) if backward_teaser is False else self.read_data('without_training/activation'+str(i1+1)+'.csv', True)
+ # for x in range(len(df.T)):
+ # print(df[x][i])
+ self.play(*[ApplyMethod(grop.layers[i1+1][0][x].set_fill,
+ WHITE, float(df[x][i])) for x in range(len(df.T))])
+ if i1 == 1 and backward_teaser is False:
+ print("DEY")
+ self.play(TransformMatchingParts(
+ self.title, self.quote, transform_mismatches=True))
+
+ print(output['Survived'][i], 6)
+ self.output_data(output['Survived'][i], len(self.arguments['layer_sizes'])-1) if backward_teaser is False else self.output_data(
+ int(list(p[0])[i+1]), len(self.arguments['layer_sizes'])-1, y[i+1])
+ if backward_teaser is True:
+ # self.wait()
+ self.grp.layers.set_fill(WHITE, 0)
+ self.play(FadeOut(self.fade_out))
+ if backward_teaser is True and i == 1:
+ accuracy = TexText('Accuracy: 38\%').move_to([4, 3, 0])
+ self.play(Write(accuracy)) if ans_output is False else None
+ ans_output = True
+ self.wait()
+ weights_random = TexText('Weights are initialized randomly!').next_to(
+ self.grp.layers[2], UP).to_edge(LEFT).shift(RIGHT+0.5*DOWN)
+ grp = self.grp.copy()
+ grp.shift(DOWN).scale(0.8)
+ n = self.n.copy()
+ for i in range(6):
+ n[i].move_to(self.grp.layers[0][0][i].get_center())
+ self.play(self.grp.animate.shift(DOWN).scale(0.8), accuracy.animate.shift(2.5*DOWN), self.ans.animate.next_to(
+ grp.layers[len(self.arguments['layer_sizes'])-1], RIGHT).shift(RIGHT), Transform(self.n, n))
+ self.play(Write(weights_random))
+ self.play(
+ Write(TexText('= Guessing Game!').next_to(weights_random, RIGHT)))
+ #self.play( self.camera_frame.scale,0.05,self.camera_frame.move_to,self.layers[0][0][0])
+ #self.wait()
+
+ def preload(self):
+ input_data1 = self.read_data('test.csv', False)
+ self.input_data(input_data1.T[0], False)
+ print(1)
+
+ def label_layers(self):
+
+ braces = Brace(self.layers[0], LEFT)
+ self.t = braces.get_text("Input Layer").scale(0.8).shift(0.5*RIGHT)
+ # t = TexText("Input Layer", tex_to_color_map={'Input': WHITE}).next_to(braces,LEFT).scale(0.8)
+ self.play(GrowFromCenter(braces), Write(self.t))
+ self.wait()
+ grp = VGroup()
+ # for i in range(4):
+ # grp.add(self.layers[i+1][0][0].get_center())
+ line = Line(self.grp.layers[1][0][0].get_center(
+ ), self.grp.layers[4][0][0].get_center())
+
+ braces1 = Brace(line, direction=line.copy().rotate(
+ PI / 2).get_unit_vector())
+ t1 = braces1.get_text("Hidden Layer").scale(0.8).shift(0.5*RIGHT)
+
+ self.play(GrowFromCenter(braces1), Write(t1))
+ braces2 = Brace(self.grp.output_label, RIGHT)
+ t2 = braces2.get_text("Output Layer").scale(0.8).shift(0.5*LEFT)
+ self.play(GrowFromCenter(braces2), Write(t2))
+
+ def read_data(self, fil, activation):
+ foo = pd.read_csv('data/'+fil)
+ if activation == True:
+ scaler = MinMaxScaler()
+ d = scaler.fit_transform(foo.T)
+ scaled_df = pd.DataFrame(d)
+ scaled_df, scaled_df_selected = train_test_split(
+ scaled_df, test_size=0.1, random_state=42)
+
+ else:
+
+ scaled_df, scaled_df_selected = train_test_split(
+ foo, test_size=0.1, random_state=42)
+
+ return scaled_df_selected.reset_index().drop('index', axis=1)
+
+ def input_data(self, a, animate, backward_teaser=False, y=None, i=None):
+
+ n = VGroup()
+ for s in a:
+ t = Tex(str(round(int(s), 2)))
+ n.add(t)
+ n.arrange(DOWN, buff=0.3)
+ n.next_to(self.grp.layers, LEFT)
+ ans = Tex(str(y[i])).next_to(
+ self.grp.layers[len(self.arguments['layer_sizes'])-1], RIGHT).shift(RIGHT) if backward_teaser is True else None
+ print(ans, 'ans') if backward_teaser is True else None
+ n1 = n.copy()
+ n1.scale(0.2)
+ for i in range(6):
+ n1[i].move_to(self.neurons1[i].get_center())
+ if animate is True:
+ try:
+ self.play(FadeOut(self.n))
+ except:
+ pass
+ print('hello')
+ if backward_teaser is True:
+ self.play(Transform(n, n1), Write(self.ans)) if self.activate is False else self.play(
+ Transform(n, n1), Transform(self.ans, ans))
+ self.activate = True
+ else:
+ self.play(Transform(n, n1))
+ self.n = n
+ else:
+ self.n = n1
+
+ def label_stuff(self):
+ a = [str(random.randint(1, 10)) for i in range(2)]
+ n = VGroup()
+ survived = Tex('Survive').scale(0.8)
+ not_survived = Tex('Not Survive').scale(0.8)
+ n.add(survived)
+ n.add(not_survived)
+ n.arrange(DOWN, buff=MED_SMALL_BUFF)
+ n.next_to(self.layers, RIGHT)
+ self.play(Write(n))
+ title = TexText("Neural Network of Titanic Dataset",
+ tex_to_color_map={'Neural': WHITE}).to_edge(UP)
+ self.play(Write(title))
+ self.output_label = n
+
+ def output_data(self, a, layer, y=None):
+ print(a, layer, 'output')
+ if self.arguments['layer_sizes'][-1] != 1 and y is None:
+ self.layers[layer][0][0].set_fill(WHITE, 0)
+ self.layers[layer][0][1].set_fill(WHITE, 0)
+ self.play(ApplyMethod(self.layers[layer][0][a].set_fill, WHITE, 1))
+ elif self.arguments['layer_sizes'][-1] is 1 and y is not None:
+ not_equal = Tex('!=', color=RED).next_to(
+ self.grp.layers[len(self.arguments['layer_sizes'])-1], RIGHT)
+ equal = Tex('==', color=GREEN).next_to(
+ self.grp.layers[len(self.arguments['layer_sizes'])-1], RIGHT)
+ self.play(ApplyMethod(self.layers[layer][0][0].set_fill, WHITE, a))
+ self.play(Write(not_equal)) if a != y else self.play(
+ Write(equal))
+ self.wait()
+ self.fade_out = not_equal if a != y else equal
+
+ def content(self):
+ content = VGroup(
+ TexText("Course Overview:"),
+ TexText("1. What is Neural Network?"),
+ TexText("2. Neuron"),
+ TexText('3. Weights,'),
+ TexText('Bias and Connections').shift(RIGHT),
+ TexText("4. Layers")
+ ).arrange(DOWN, aligned_edge=LEFT).to_edge(UP+LEFT)
+ self.grp.add(self.t)
+
+ self.play(ReplacementTransform(self.t, content))
+ self.grp.remove(self.t)
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..f96ebfe
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,4 @@
+manimgl
+scikit-learn
+numpy
+pandas