commit 9e213b4acb2ebf46623d3da4638d4f23e95d141a parent 7e113bd2494c466c3633161798dfe769fb164173 Author: Andrew Laack <andrew@laack.co> Date: Sat, 19 Sep 2026 00:34:42 -0500 Continued working Diffstat:
16 files changed, 32392 insertions(+), 802 deletions(-)
diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/bench.sh b/assets/abg/benchmarking-python/benchmarking/render_w_sc/bench.sh @@ -0,0 +1,5 @@ +while [ 1 ]; do + /usr/bin/time -o out -f '%S,%U,%e' python3 prim.py >/dev/null 2>&1 + cat out | tee -a v1000e10000nosc + sleep 10 +done diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/bmp.txt b/assets/abg/benchmarking-python/benchmarking/render_w_sc/bmp.txt @@ -0,0 +1,10 @@ +0.06890772900078446 +0.0544440730009228 +0.052463364001596346 +0.052482286002486944 +0.05329548299778253 +0.052126355993095785 +0.051551766984630376 +0.050820017990190536 +0.05118810400017537 +0.05195361698861234 diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/jpg.out b/assets/abg/benchmarking-python/benchmarking/render_w_sc/jpg.out @@ -0,0 +1,10 @@ +0.09811410598922521 +0.09200737500214018 +0.08903911997913383 +0.089862323977286 +0.08970617098384537 +0.09026570300920866 +0.08930818599765189 +0.08887166998465545 +0.08902149798814207 +0.08868389300187118 diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/png.txt b/assets/abg/benchmarking-python/benchmarking/render_w_sc/png.txt @@ -0,0 +1,10 @@ +0.4306448719871696 +0.4238022869976703 +0.4197056240227539 +0.4183771570096724 +0.4199993920046836 +0.4220527780125849 +0.41851794297690503 +0.41896031799842604 +0.4207654620113317 +0.4250355519761797 diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/prim-rlib.py b/assets/abg/benchmarking-python/benchmarking/render_w_sc/prim-rlib.py @@ -0,0 +1,139 @@ +import pyray as pr +import os +import heapq +import random +import math +import time + +VERTICES = 1000 +EDGES = 10000 +RADIUS = 5 + +pr.init_window(5120,1440, "prim") + +class Vertex(): + def __init__(self, x, y): + self.x = x + self.y = y + self.visited = False + def draw_vertex(self): + if self.visited: + pr.draw_circle(int(self.x),int(self.y), RADIUS, pr.WHITE) + else: + pr.draw_circle(int(self.x),int(self.y), RADIUS, pr.GRAY) +class Edge(): + def __init__(self, v1, v2): + self.v1 = v1 + self.v2 = v2 + self.dist = math.sqrt(((v1.x - v2.x) ** 2) + ((v1.y - v2.y) ** 2)) + def draw_edge(self, c): + pr.draw_line(int(self.v1.x), int(self.v1.y), int(self.v2.x), int(self.v2.y), c) + + def __lt__(self,otr): + return self.dist < otr.dist + + +graph = {} + +for i in range(0,VERTICES): + x = random.random() * 5120 + y = random.random() * 1440 + graph[Vertex(x,y)] = [] + + +edge_list = [] +keys = list(graph.keys()) + +for i in range(0,EDGES): + k1 = None + k2 = None + while k1 == k2: + k1 = random.choice(keys) + k2 = random.choice(keys) + + edge = Edge(k1,k2) + graph[k1].append(edge) + graph[k2].append(edge) + edge_list.append(edge) + + +edge_heap = [] +visited_vertices = set() + + +start = random.choice(keys) +start.visited = True +visited_vertices.add(start) +for edge in graph[start]: + heapq.heappush(edge_heap, edge) + + +first = True + +to_draw_vert = [] +to_draw_edge = [] + +texture = pr.load_render_texture(5120,1440) + +while True: + + pr.begin_texture_mode(texture) + + if first: + pr.clear_background(pr.BLACK) + + for edge in edge_list: + edge.draw_edge(pr.DARKGRAY) + first = False + + for vertex in graph: + vertex.draw_vertex() + + for edge in to_draw_edge: + edge.draw_edge(pr.WHITE) + for vert in to_draw_vert: + vert.draw_vertex() + + to_draw_vert = [] + to_draw_edge = [] + + + item = None + while edge_heap: + candidate = heapq.heappop(edge_heap) + if (candidate.v1 in visited_vertices) != (candidate.v2 in visited_vertices): + item = candidate + break + + if item is None: + break + + new_vertex = item.v2 if item.v1 in visited_vertices else item.v1 + visited_vertices.add(new_vertex) + new_vertex.visited = True + + to_draw_vert.append(new_vertex) + to_draw_edge.append(item) + + for edge in graph[new_vertex]: + if not edge.v1 in visited_vertices or not edge.v2 in visited_vertices: + heapq.heappush(edge_heap, edge) + + pr.end_texture_mode() + pr.set_trace_log_level(4) + + source_rec = pr.Rectangle(0, 0, 5120, 1440) + dest_rec = pr.Rectangle(0, 0, 5120,1440) + + pr.begin_drawing() + pr.draw_texture_pro(texture.texture, source_rec, dest_rec, pr.Vector2(0, 0), 0, pr.WHITE) + + before = time.monotonic() + pr.take_screenshot("../../../../../../../../../dev/shm/bg/out.raw") + os.system("/usr/bin/feh --no-fehbg --bg-tile '/dev/shm/bg/out.raw' ") + after = time.monotonic() + print(after - before) + pr.end_drawing() + +pr.unload_render_texture(texture) +pr.close_window() diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/prim.py b/assets/abg/benchmarking-python/benchmarking/render_w_sc/prim.py @@ -0,0 +1,125 @@ +import pygame +import heapq +import random +import math +import os +import time + +os.environ["SDL_VIDEODRIVER"] = "dummy" + +pygame.init() + +display = pygame.display.set_mode((5120,1440)) + +VERTICES = 1000 +EDGES = 10000 + +white = (255, 255, 255) +red = (255, 0, 0) +black = (0, 0, 0) +grey = (100,100,100) +light_grey = (50,50,50) + + +class Vertex(): + def __init__(self, x, y): + self.x = x + self.y = y + self.visited = False + + def draw_vertex(self,display): + if self.visited: + pygame.draw.circle(display, white, (self.x,self.y), 5) + else: + pygame.draw.circle(display, grey, (self.x,self.y), 5) + +class Edge(): + def __init__(self, v1, v2): + self.v1 = v1 + self.v2 = v2 + self.dist = math.sqrt(((v1.x - v2.x) ** 2) + ((v1.y - v2.y) ** 2)) + + def draw_edge(self,display, c): + pygame.draw.line(display, c, (self.v1.x,self.v1.y), (self.v2.x,self.v2.y), 1) + + def __lt__(self,otr): + return self.dist < otr.dist + + +graph = {} + +for i in range(0,VERTICES): + x = random.random() * 5120 + y = random.random() * 1440 + graph[Vertex(x,y)] = [] + + +edge_list = [] +for i in range(0,EDGES): + k1 = None + k2 = None + while k1 == k2: + k1 = random.choice(list(graph.keys())) + k2 = random.choice(list(graph.keys())) + + edge = Edge(k1,k2) + graph[k1].append(edge) + graph[k2].append(edge) + edge_list.append(edge) + + +edge_heap = [] +visited_vertices = set() + +mst = [] + +start = random.choice(list(graph.keys())) +start.visited = True +visited_vertices.add(start) +for edge in graph[start]: + heapq.heappush(edge_heap, edge) + +while True: + for event in pygame.event.get(): + if event.type == pygame.QUIT: + pygame.quit() + quit() + + display.fill(black) + for edge in edge_list: + edge.draw_edge(display, light_grey) + for edge in mst: + edge.draw_edge(display, white) + for vertex in graph: + vertex.draw_vertex(display) + + item = None + while edge_heap: + candidate = heapq.heappop(edge_heap) + if (candidate.v1 in visited_vertices) != (candidate.v2 in visited_vertices): + item = candidate + break + + if item is None: + pygame.display.update() + break + + new_vertex = item.v2 if item.v1 in visited_vertices else item.v1 + visited_vertices.add(new_vertex) + new_vertex.visited = True + mst.append(item) + for edge in graph[new_vertex]: + heapq.heappush(edge_heap, edge) + + dir_name = "/dev/shm/bg/" + if not os.path.exists(dir_name): + os.mkdir(dir_name) + + before = time.monotonic() + pygame.image.save(display, dir_name + "out.bmp") + after = time.monotonic() + print(after - before) + + os.system("/usr/bin/feh --no-fehbg --bg-tile '/dev/shm/bg/out.bmp' ") + + pygame.display.update() diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/rlib_bmp.txt b/assets/abg/benchmarking-python/benchmarking/render_w_sc/rlib_bmp.txt @@ -0,0 +1,10 @@ +0.1525783420074731 +0.1512655940023251 +0.15179538499796763 +0.16236876900075004 +0.15274607899482362 +0.15312606998486444 +0.1587756120134145 +0.15407946601044387 +0.15918599799624644 +0.15406328198150732 diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/rlib_jpg.txt b/assets/abg/benchmarking-python/benchmarking/render_w_sc/rlib_jpg.txt @@ -0,0 +1,10 @@ +0.26814558397745714 +0.2663668699970003 +0.2653599379991647 +0.2665240300120786 +0.265473709005164 +0.2660460589977447 +0.26661997599876486 +0.28024705802090466 +0.26711839498602785 +0.26866366699687205 diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/rlib_png.txt b/assets/abg/benchmarking-python/benchmarking/render_w_sc/rlib_png.txt @@ -0,0 +1,10 @@ +0.4814497029874474 +0.48508035100530833 +0.493123527005082 +0.4784598549886141 +0.4762631519988645 +0.4783170529990457 +0.4768648429890163 +0.4785653759900015 +0.4774246609886177 +0.48264213697984815 diff --git a/assets/abg/benchmarking-python/benchmarking/render_w_sc/tga.txt b/assets/abg/benchmarking-python/benchmarking/render_w_sc/tga.txt @@ -0,0 +1,10 @@ +0.07600803399691358 +0.06965162200503983 +0.06839281099382788 +0.06929823299287818 +0.06905554101103917 +0.07537101200432517 +0.06882381200557575 +0.06927142999484204 +0.06921506000799127 +0.06886795599712059 diff --git a/assets/abg/benchmarking-python/benchmarking/render_wo_sc/out.txt b/assets/abg/benchmarking-python/benchmarking/render_wo_sc/out.txt @@ -0,0 +1,30000 @@ +0.003996558021754026 +0.0023609669879078865 +0.004094729985808954 +0.002201755007263273 +0.0023948290036059916 +0.004077632998814806 +0.002225970005383715 +0.0022758459963370115 +0.004118015989661217 +0.0022295250091701746 +0.0023398199991788715 +0.004060442995978519 +0.0021811499900650233 +0.002387268003076315 +0.004249339981470257 +0.0022020140022505075 +0.002348260983126238 +0.00402006899821572 +0.002248501987196505 +0.004161492019193247 +0.0021991060057189316 +0.0022994189930614084 +0.004084349988261238 +0.0022807270288467407 +0.0022311789798550308 +0.0041089539881795645 +0.002241579000838101 +0.0022962730145081878 +0.004128800006583333 +0.0020974210056010634 +0.0023996350064408034 +0.004032673983601853 +0.0022575840121135116 +0.004011334996903315 +0.003085582982748747 +0.0033463909931015223 +0.0022377629939001054 +0.00230627300334163 +0.004004704998806119 +0.002161039999919012 +0.002373650000663474 +0.004031739983474836 +0.0022954799933359027 +0.004045638983370736 +0.0022288660111371428 +0.0023025200061965734 +0.004166383994743228 +0.0022193379991222173 +0.0023110720212571323 +0.004076401994097978 +0.002213897998444736 +0.002370133006479591 +0.004027038987260312 +0.002298306004377082 +0.0022871360124554485 +0.004019640997285023 +0.002218890003859997 +0.00410359600209631 +0.002230445999884978 +0.0022249769826885313 +0.0023309090174734592 +0.004132183996262029 +0.0023401709913741797 +0.004002158006187528 +0.0022525410167872906 +0.002346862980630249 +0.004011119977803901 +0.002109231019858271 +0.002357307996135205 +0.004019954998511821 +0.002284109010361135 +0.002203923009801656 +0.004176724003627896 +0.0022172710159793496 +0.0024058900016825646 +0.004079019010532647 +0.0022253259958233684 +0.00232814799528569 +0.004016669001430273 +0.0023129949986469 +0.0041394490108359605 +0.002227346005383879 +0.0022636440116912127 +0.002271123987156898 +0.004037974984385073 +0.00235986799816601 +0.003952421015128493 +0.0022259799879975617 +0.002332231990294531 +0.004037710983539 +0.0022910739935468882 +0.0022590529988519847 +0.00407855401863344 +0.0021426659950520843 +0.002371297014178708 +0.004162789002293721 +0.002158651011995971 +0.0023527879966422915 +0.004146352002862841 +0.0021623889915645123 +0.0023279929882846773 +0.004049292008858174 +0.0023306570074055344 +0.004072648007422686 +0.0023544819850940257 +0.002336489997105673 +0.00403563299914822 +0.0022031280095689 +0.0023869180004112422 +0.00403807099792175 +0.0022014709829818457 +0.0023386739776469767 +0.0040406869957223535 +0.0022063330106902868 +0.002375584008404985 +0.004068818991072476 +0.002146076993085444 +0.002339262020541355 +0.004038084007333964 +0.002171230997191742 +0.0041670610080473125 +0.002248054021038115 +0.0022583749960176647 +0.004079901991644874 +0.0022391590173356235 +0.002459659008309245 +0.003963884024415165 +0.002257403015391901 +0.0022802810126449913 +0.004014604986878112 +0.0023005090188235044 +0.002281377004692331 +0.0040651599992997944 +0.002213345025666058 +0.0023483090044464916 +0.0040504780190531164 +0.0022144829854369164 +0.0023808930127415806 +0.004118336015380919 +0.002182533993618563 +0.0023261960013769567 +0.003992927988292649 +0.0023973259958438575 +0.004065660003107041 +0.0022044899815227836 +0.0024465030001010746 +0.004171086999122053 +0.002154780988348648 +0.002396588010014966 +0.004043622000608593 +0.0022312660003080964 +0.002357910998398438 +0.004062257998157293 +0.0022420820023398846 +0.0022849030210636556 +0.004018492007162422 +0.002246975986054167 +0.004135188995860517 +0.0022459470201283693 +0.0023163010191638023 +0.0040040369785856456 +0.002224537980509922 +0.0023355979938060045 +0.004037448990857229 +0.0021868520125281066 +0.0023522789997514337 +0.00403833101154305 +0.0022153210011310875 +0.0023781780037097633 +0.004103323008166626 +0.0021931240044068545 +0.0023911309835966676 +0.004047146998345852 +0.0021907610062044114 +0.0023764460056554526 +0.004078011028468609 +0.0022648150043096393 +0.0023314720019698143 +0.003971953003201634 +0.0022922730131540447 +0.004101993981748819 +0.002340684994123876 +0.0022908649989403784 +0.0039847129955887794 +0.002249796991236508 +0.0023299290041904896 +0.004001764988061041 +0.0021284300019033253 +0.002467913000145927 +0.004038938990561292 +0.002267720003146678 +0.0040124779916368425 +0.003039920993614942 +0.0033616360160522163 +0.002222442999482155 +0.00233432199456729 +0.004004119022283703 +0.0022201270039658993 +0.004217416979372501 +0.0021812039776705205 +0.002269705990329385 +0.004097872995771468 +0.002305563975824043 +0.0023187320039141923 +0.004072505980730057 +0.0022154789767228067 +0.0023096450022421777 +0.0040215929911937565 +0.0022132359736133367 +0.0023550209880340844 +0.004078711994225159 +0.0022143269889056683 +0.002346994006074965 +0.0040228639845736325 +0.002229367004474625 +0.0023521360126324 +0.004066126974066719 +0.0026207389892078936 +0.0021296249760780483 +0.004085821012267843 +0.002404311002464965 +0.004050710995215923 +0.002293372992426157 +0.0023280349851120263 +0.0041869359847623855 +0.002076036005746573 +0.0024644849763717502 +0.004183518991339952 +0.002176890993723646 +0.0023694510164204985 +0.0041137429943773896 +0.0022258049866650254 +0.0023165719758253545 +0.004330832016421482 +0.0024013510264921933 +0.004038571991259232 +0.002308586990693584 +0.0020467080175876617 +0.0041392280254513025 +0.002216922992374748 +0.0024496700207237154 +0.0040717450028751045 +0.002072996983770281 +0.001128760981373489 +0.005345963989384472 +0.0022959730122238398 +0.002262016001623124 +0.004057289974298328 +0.0023173920053523034 +0.004158869996899739 +0.0022577319759875536 +0.0022345040051732212 +0.004177511989837512 +0.002261765010189265 +0.002303426997968927 +0.004050160991027951 +0.002264504990307614 +0.0024303789832629263 +0.004043870983878151 +0.0022729980119038373 +0.0009370690095238388 +0.005312080989824608 +0.0022496140154544264 +0.002423412021016702 +0.00402956097968854 +0.0022236210061237216 +0.002396675990894437 +0.003995172999566421 +0.002398115990217775 +0.004075240984093398 +0.0021975009876769036 +0.0024262340157292783 +0.0039667859964538366 +0.002230926009360701 +0.0023384109954349697 +0.004094482981599867 +0.00220886297756806 +0.002357091987505555 +0.004213793989038095 +0.002255027007777244 +0.002365852997172624 +0.003990147990407422 +0.002351216011447832 +0.0023112130002118647 +0.00406170601490885 +0.002386369975283742 +0.002226420008810237 +0.004030166019219905 +0.002249247976578772 +0.0040556299791205674 +0.0023050949967000633 +0.002388286986388266 +0.003956942993681878 +0.002202880976255983 +0.0023397520126309246 +0.004183735989499837 +0.002206684002885595 +0.004107729997485876 +0.0022345379984471947 +0.00230076999287121 +0.002304465015185997 +0.0040823860035743564 +0.0023820680216886103 +0.00404920699656941 +0.002262881025671959 +0.002318914979696274 +0.004191755986539647 +0.0021982809994369745 +0.002567396004451439 +0.004106615990167484 +0.0022497629979625344 +0.002331709983991459 +0.004184786987025291 +0.0021099439763929695 +0.002393182017840445 +0.00409180301357992 +0.0022867869993206114 +0.004001085995696485 +0.0022712000063620508 +0.0024441029818262905 +0.004036486003315076 +0.0021846510062459856 +0.0022526149987243116 +0.0040656159981153905 +0.0022135789913590997 +0.002373516996158287 +0.004251067992299795 +0.002202886011218652 +0.0023597549879923463 +0.004126510000787675 +0.00219774799188599 +0.004292983008781448 +0.0023026849958114326 +0.0022179060033522546 +0.00416674799635075 +0.0022538859921041876 +0.0023565340088680387 +0.004068354988703504 +0.0022712679929099977 +0.0021976990101393312 +0.004159648000495508 +0.0021916599944233894 +0.002344857988646254 +0.004142978985328227 +0.002182241005357355 +0.0023807730176486075 +0.004066556983161718 +0.0023354720033239573 +0.004178332019364461 +0.002246905001811683 +0.0022349329956341535 +0.004186692007351667 +0.0021542560134548694 +0.002348409005207941 +0.004077544988831505 +0.0021774460037704557 +0.0023651150113437325 +0.0043566899839788675 +0.002226673997938633 +0.002297289000125602 +0.00421927499701269 +0.002111659006914124 +0.0023773709835950285 +0.004103769984794781 +0.002364451007451862 +0.0040526869997847825 +0.002254239981994033 +0.0023445010010618716 +0.004208245984045789 +0.002174474997445941 +0.002220540016423911 +0.004160943004535511 +0.00215530299465172 +0.002363444014918059 +0.004132792993914336 +0.002153160981833935 +0.002401568985078484 +0.004265489027602598 +0.0021102739847265184 +0.0045574169780593365 +0.002222278999397531 +0.0023174210218712687 +0.004051095980685204 +0.0022063939832150936 +0.002406642015557736 +0.004020724009023979 +0.0021791400213260204 +0.0023932569893077016 +0.004190919018583372 +0.0021406869927886873 +0.002368388988543302 +0.004097441997146234 +0.0023341469932347536 +0.0022261910198722035 +0.0028845769993495196 +0.0034901410108432174 +0.002346274006413296 +0.004043882974656299 +0.002342199004488066 +0.004146232007769868 +0.002163097000448033 +0.0023586840252391994 +0.00405305199092254 +0.0022927100071683526 +0.0024397539964411408 +0.004029472009278834 +0.0021454020170494914 +0.002346727007534355 +0.00414388399804011 +0.002297775004990399 +0.0021656810131389648 +0.004067984002176672 +0.0023378309851977974 +0.0022592619934584945 +0.0041464669920969754 +0.0022958659974392503 +0.0039334110042545944 +0.0024181249900721014 +0.002164191013434902 +0.004148169013205916 +0.0022476620215456933 +0.002285121998284012 +0.004163712001172826 +0.0021631669951602817 +0.002381544007221237 +0.004103568004211411 +0.002188092010328546 +0.0022360689763445407 +0.004224864998832345 +0.002279843989526853 +0.0022997290070634335 +0.004043180990265682 +0.0022796340053901076 +0.004215501016005874 +0.0021897480182815343 +0.0023897920036688447 +0.004066984023666009 +0.0022073989966884255 +0.0023691740061622113 +0.004165553022176027 +0.0021367660083342344 +0.002341359999263659 +0.004158500989433378 +0.002273457997944206 +0.004026122973300517 +0.0022106140095274895 +0.002328843984287232 +0.00227713500498794 +0.004115140996873379 +0.0023089250025805086 +0.004090228991117328 +0.002284524991409853 +0.0022152260062284768 +0.004158444993663579 +0.0020575829839799553 +0.002408917003776878 +0.0042219129973091185 +0.0021297570201568305 +0.0024037400144152343 +0.00407623199862428 +0.0022474029974546283 +0.002274594997288659 +0.004180427000392228 +0.0022508520050905645 +0.0023159840202424675 +0.004127481020987034 +0.002221356990048662 +0.0041202759894076735 +0.00228441201034002 +0.0022318700212053955 +0.004141216981224716 +0.0021898309933021665 +0.0023420799989253283 +0.0041425860254094005 +0.002159317984478548 +0.0023144180013332516 +0.004160983022302389 +0.002181397983804345 +0.0023588539916090667 +0.003978057997301221 +0.0022306600003503263 +0.0023672920069657266 +0.004135080991545692 +0.0022917850001249462 +0.004075187986018136 +0.002245359995868057 +0.002285166992805898 +0.0041062289965339005 +0.0022049789840821177 +0.0023654529941268265 +0.004176627000560984 +0.002155667985789478 +0.0023380889906547964 +0.0041110550228040665 +0.0022754149977117777 +0.002345184999285266 +0.0040958010067697614 +0.002245615003630519 +0.002285822993144393 +0.0041369409882463515 +0.0022840290039312094 +0.0022304310114122927 +0.004063114000018686 +0.0024205110094044358 +0.004021787986857817 +0.002178241004003212 +0.0023561689886264503 +0.004126023995922878 +0.002172792999772355 +0.002332948992261663 +0.004126312996959314 +0.0022696709784213454 +0.002500467002391815 +0.0042271070124115795 +0.002198529022280127 +0.004417429998284206 +0.0021670689748134464 +0.002652505994774401 +0.00394842101377435 +0.002213742001913488 +0.0023949099995661527 +0.004414295981405303 +0.002097930002491921 +0.0025134749885182828 +0.0043389429920352995 +0.0023391739814542234 +0.004377748002298176 +0.0023430989822372794 +0.0023438530042767525 +0.004104019986698404 +0.00218829998630099 +0.0023003520036581904 +0.004284305992769077 +0.002219135989435017 +0.0023231749946717173 +0.004035855003166944 +0.002256830979604274 +0.004092260001925752 +0.0023309270036406815 +0.0023421039804816246 +0.004002031986601651 +0.0022307919862214476 +0.0023639019927941263 +0.0041644070006441325 +0.0020644040196202695 +0.002500875008990988 +0.004040672996779904 +0.002206536999437958 +0.0023137970129027963 +0.004148014006204903 +0.002192640007706359 +0.0023806609970051795 +0.004086681001354009 +0.0008668429800309241 +0.0036200500035192817 +0.0042098420090042055 +0.002209427999332547 +0.004005735012469813 +0.0021904339955653995 +0.0022780979925300926 +0.004219705006107688 +0.002067790017463267 +0.0026035870250780135 +0.0043299709795974195 +0.0021887050243094563 +0.002432305016554892 +0.0041837929747998714 +0.002173130022129044 +0.004423810984008014 +0.0024908279883675277 +0.0023209970095194876 +0.0040836169791873544 +0.0021120260062161833 +0.0023746429942548275 +0.0040876229759305716 +0.0021388129971455783 +0.002605332003440708 +0.004093324008863419 +0.002198509988375008 +0.0024421890266239643 +0.004179709008894861 +0.002128710999386385 +0.00415535198408179 +0.0023247630160767585 +0.002364009997108951 +0.004135055001825094 +0.0020833140006288886 +0.002421626995783299 +0.004074575001141056 +0.0021871460194233805 +0.0024952800013124943 +0.004040409985464066 +0.0021301710221450776 +0.002411002991721034 +0.00413939799182117 +0.0021305769914761186 +0.002501281996956095 +0.0041743110050447285 +0.0009140059992205352 +0.0036575420235749334 +0.004013461992144585 +0.0021830309997312725 +0.004246262018568814 +0.0007074069872032851 +0.0037535610026679933 +0.004072395997354761 +0.002144301019143313 +0.002423178986646235 +0.004090939008165151 +0.002127461018972099 +0.0023548730241600424 +0.004158358002314344 +0.002194853004766628 +0.0024484099994879216 +0.003911577980034053 +0.0022175729973241687 +0.0023824739910196513 +0.004017261991975829 +0.002403956023044884 +0.004119287012144923 +0.002255889994557947 +0.0021286520059220493 +0.004322263004723936 +0.002365027990890667 +0.0021796599903609604 +0.004089544003363699 +0.002181832998758182 +0.002333618002012372 +0.004233054001815617 +0.002161415002774447 +0.0024244519881904125 +0.004021052009193227 +0.0021940169972367585 +0.004145954997511581 +0.0022381320013664663 +0.0022641530085820705 +0.004117754986509681 +0.0022359329741448164 +0.002149922016542405 +0.004151873989030719 +0.0021597419981844723 +0.0023617660044692457 +0.0040845949843060225 +0.0021541339810937643 +0.002435735979815945 +0.004043213004479185 +0.0021742710086982697 +0.0023955040087457746 +0.00410162701155059 +0.0021844820003025234 +0.002309371018782258 +0.004278578009689227 +0.000761172006605193 +0.003744161978829652 +0.003970984980696812 +0.0023125600127968937 +0.004139985016081482 +0.002140374999726191 +0.00235789900762029 +0.004094128991710022 +0.002178020979044959 +0.002328036993276328 +0.0040902000037021935 +0.002224403986474499 +0.0024216119782067835 +0.004069854010595009 +0.002142630983144045 +0.0043364760058466345 +0.0022587759885936975 +0.0022019999742042273 +0.004309707001084462 +0.002277873980347067 +0.0022750899952370673 +0.00412583100842312 +0.0023040820087771863 +0.0023317309969570488 +0.004116429015994072 +0.002073625015327707 +0.0023706879874225706 +0.004124476021388546 +0.0022292089997790754 +0.002346510998904705 +0.004127293010242283 +0.002240494010038674 +0.0023003880050964653 +0.0041743500041775405 +0.0022685930016450584 +0.004023456014692783 +0.00230911499238573 +0.0022965300013311207 +0.004104463005205616 +0.002268125012051314 +0.0021830410114489496 +0.004014708014437929 +0.002133886009687558 +0.00236645300174132 +0.0042636540019884706 +0.0020953280036337674 +0.0024179680040106177 +0.004114029987249523 +0.002159230993129313 +0.002309485978912562 +0.004193752014543861 +0.00211651498102583 +0.0023900959931779653 +0.004066916008014232 +0.0022735109960194677 +0.004067251022206619 +0.0021604259964078665 +0.0023605220194440335 +0.004067811998538673 +0.002139057993190363 +0.0023409349960274994 +0.004071909992489964 +0.002190063998568803 +0.0023913249897304922 +0.004077315010363236 +0.0021002140128985047 +0.0025302750000264496 +0.004000360000645742 +0.0021742950193583965 +0.0023565659939777106 +0.00402684198343195 +0.0023001180088613182 +0.004100341990124434 +0.0022666349832434207 +0.002162777993362397 +0.004209392995107919 +0.0022325890022329986 +0.002200657007051632 +0.004153929010499269 +0.002210806997027248 +0.002374769013840705 +0.004009580006822944 +0.0021253449958749115 +0.00242743399576284 +0.004114508017664775 +0.0021025149908382446 +0.002498755988199264 +0.004065657005412504 +0.002119101001881063 +0.0024419580004177988 +0.0040028750081546605 +0.000984502985375002 +0.003626873978646472 +0.004090377013199031 +0.0021538720175158232 +0.004238035995513201 +0.0021416140079963952 +0.0024133849947247654 +0.004053715005284175 +0.002102821017615497 +0.002358658006414771 +0.004129115986870602 +0.0020752340205945075 +0.0024407359887845814 +0.004088007000973448 +0.0022236009826883674 +0.0023379509802907705 +0.004111520975129679 +0.002087681001285091 +0.0023872570018284023 +0.004082941013621166 +0.002165436977520585 +0.002366883010836318 +0.003994761995272711 +0.002284932998009026 +0.004168044979451224 +0.0022126969997771084 +0.002348565001739189 +0.004064080014359206 +0.002127354993717745 +0.0024037569819483906 +0.003989471995737404 +0.002167416998418048 +0.002407263993518427 +0.004126604006160051 +0.002137381990905851 +0.0024184829962905496 +0.004075147007824853 +0.0021717000054195523 +0.002291220996994525 +0.004116294003324583 +0.002163716999348253 +0.002346469002077356 +0.0040814199892338365 +0.0022582539822906256 +0.004086050990736112 +0.0023239440051838756 +0.0021093319810461253 +0.004147054016357288 +0.00219416301115416 +0.002475386980222538 +0.004063543019583449 +0.0021155110152903944 +0.0023922420223243535 +0.004107293003471568 +0.002200732007622719 +0.0022407000069506466 +0.004115318995900452 +0.0021494429965969175 +0.004177857015747577 +0.0023033019970171154 +0.002131123997969553 +0.0023127839958760887 +0.004039655992528424 +0.0023831680009607226 +0.004048358998261392 +0.0021652540017385036 +0.0022304919839370996 +0.0041027539991773665 +0.0021543539769481868 +0.0024745620030444115 +0.00402218900853768 +0.0021316889906302094 +0.002455869020195678 +0.004197230009594932 +0.0021139319869689643 +0.004243534000124782 +0.002230707003036514 +0.0022159180080052465 +0.0042911549971904606 +0.002334168995730579 +0.0022385530173778534 +0.002238474990008399 +0.004248048993758857 +0.00205901701701805 +0.004089494002982974 +0.0022510350099764764 +0.0023492969921790063 +0.004207585006952286 +0.002155672002118081 +0.00225893099559471 +0.00416027000756003 +0.002125664002960548 +0.002470740000717342 +0.00401504899491556 +0.0022198649821802974 +0.004194847017060965 +0.0021979610028211027 +0.0022864479979034513 +0.004087414999958128 +0.002239219000330195 +0.002282175002619624 +0.004088757996214554 +0.002206913981353864 +0.002344827982597053 +0.004090936010470614 +0.002123014011885971 +0.002336675999686122 +0.004206064011668786 +0.0021261789952404797 +0.0025135569740086794 +0.004026465001516044 +0.002199066017055884 +0.002330636023543775 +0.004125567007577047 +0.002140185999451205 +0.004132593981921673 +0.002259471017168835 +0.002286783012095839 +0.004196903988486156 +0.0021649750124197453 +0.0022291290224529803 +0.004163133999099955 +0.0020959440153092146 +0.002335396013222635 +0.004105850006453693 +0.002115183015121147 +0.0024295620096381754 +0.004046084999572486 +0.002195168985053897 +0.002391076006460935 +0.0028728189936373383 +0.003413947008084506 +0.0042252019920852035 +0.002234734012745321 +0.0022546079999301583 +0.004219812981318682 +0.0023685710038989782 +0.002247539989184588 +0.0041015970055013895 +0.0022412250109482557 +0.0022906759986653924 +0.0040099360048770905 +0.002136939001502469 +0.002368424989981577 +0.00403853299212642 +0.002118181000696495 +0.002494311018381268 +0.0040201400115620345 +0.002154198009520769 +0.0024744390102569014 +0.003979265980888158 +0.0023178179981186986 +0.004118465993087739 +0.002290025004185736 +0.002271303004818037 +0.004150527995079756 +0.0021598019811790437 +0.002276510000228882 +0.004180235002422705 +0.0022562470112461597 +0.002335349010536447 +0.003998624015366659 +0.0021727620041929185 +0.002296201011631638 +0.0041527470166329294 +0.002579638996394351 +0.004144305974477902 +0.002446931990562007 +0.002419748983811587 +0.004364718013675883 +0.00227597399498336 +0.0024191449920181185 +0.004393557988805696 +0.0021910840005148202 +0.0023979069956112653 +0.0039983559981919825 +0.002159105002647266 +0.0024186020018532872 +0.00408113599405624 +0.002365756983635947 +0.004061332001583651 +0.002228741010185331 +0.002197246009018272 +0.004151266999542713 +0.0020450010197237134 +0.0024391949991695583 +0.004142771998886019 +0.0021014430094510317 +0.0024524159962311387 +0.004122193000512198 +0.002088362001813948 +0.002481002011336386 +0.0039986210176721215 +0.0022005370119586587 +0.0023491529864259064 +0.004023805988254026 +0.002219591988250613 +0.002582285989774391 +0.0040207720012404025 +0.002297908009495586 +0.004110548994503915 +0.002095154981361702 +0.002433076995657757 +0.004061629995703697 +0.002220524998847395 +0.002429707004921511 +0.004026663984404877 +0.0020984050061088055 +0.002533137012505904 +0.004007931012893096 +0.002222579001681879 +0.0023847199918236583 +0.003987921983934939 +0.0022014199930708855 +0.00415075701312162 +0.002233440987765789 +0.0023295079881791025 +0.004078300989931449 +0.0021972520044073462 +0.00227863498730585 +0.004091887007234618 +0.00224550801794976 +0.0022780909785069525 +0.0041419909975957125 +0.0020689529774244875 +0.0023788289981894195 +0.004231054015690461 +0.0020772360148839653 +0.0023948749876581132 +0.0041059679933823645 +0.002202736010076478 +0.0022769159986637533 +0.004047559021273628 +0.0022343779855873436 +0.002343823987757787 +0.00412946697906591 +0.0008842310053296387 +0.00355445800232701 +0.004186083999229595 +0.002170896012103185 +0.004135767987463623 +0.002165700017940253 +0.002362545987125486 +0.004022223001811653 +0.002156070986529812 +0.002414779009995982 +0.004091723007149994 +0.002202503994340077 +0.0022448069939855486 +0.00422680500196293 +0.002156099973944947 +0.0022404890041798353 +0.004194181005004793 +0.002194756001699716 +0.004127802007133141 +0.0022978769848123193 +0.0021996049908921123 +0.004192335996776819 +0.002272703015478328 +0.0023304939968511462 +0.003968632983742282 +0.0022010449902154505 +0.0023663140018470585 +0.0040136709867510945 +0.002128899999661371 +0.0024857109820004553 +0.004082422005012631 +0.002144738013157621 +0.002439672010950744 +0.0040230180020444095 +0.0022582149831578135 +0.0023533639905508608 +0.004168557992670685 +0.0024084709875751287 +0.004070861003128812 +0.002208821999374777 +0.0021704849787056446 +0.004163478995906189 +0.0021413979993667454 +0.0024626340018585324 +0.00406209600623697 +0.0021588609961327165 +0.0022728900075890124 +0.004204612981993705 +0.002120046003255993 +0.0024728529970161617 +0.004043419990921393 +0.0021290850127115846 +0.0024625259975437075 +0.004135662980843335 +0.0021652379946317524 +0.00245385299785994 +0.004035642021335661 +0.0021896539838053286 +0.004187283018836752 +0.002087180007947609 +0.002434338995954022 +0.004120591998798773 +0.002182434982387349 +0.0023950279864948243 +0.004017630009911954 +0.0021855809900444 +0.0023869180004112422 +0.004116154013900086 +0.002256717998534441 +0.0022849249944556504 +0.004246396012604237 +0.0022430810204241425 +0.004123549006180838 +0.002271520992508158 +0.002233078994322568 +0.004170891013927758 +0.0020795780001208186 +0.0023353740107268095 +0.004171473003225401 +0.002105513005517423 +0.0024521179730072618 +0.0041016330069396645 +0.0021100559970363975 +0.0024705649993848056 +0.0041805489745456725 +0.0022354729881044477 +0.004164996003964916 +0.002245793992187828 +0.0021275269973557442 +0.0024342869874089956 +0.004268696007784456 +0.0024560200108680874 +0.003930259990738705 +0.0022007430088706315 +0.0024152749974746257 +0.004077952005900443 +0.0020711320103146136 +0.0025276929954998195 +0.003950076992623508 +0.002184459997806698 +0.002424084988888353 +0.004066416993737221 +0.0022699389955960214 +0.004083758016349748 +0.0021923120075371116 +0.002177526999730617 +0.004181356984190643 +0.0022678029781673104 +0.0024076720001176 +0.003958588000386953 +0.0023668649955652654 +0.002135979011654854 +0.004127065010834485 +0.0021314219920895994 +0.0024842489801812917 +0.004026064998470247 +0.002186794998124242 +0.002453632972901687 +0.004062258987687528 +0.002107064996380359 +0.0023625160101801157 +0.0040582520014140755 +0.002137808973202482 +0.0024920149880927056 +0.003926403995137662 +0.0023963550047483295 +0.004016585007775575 +0.0021786789875477552 +0.0023318470048252493 +0.0040999540069606155 +0.0021277529885992408 +0.002283206005813554 +0.004096752003533766 +0.002249404991744086 +0.002524923998862505 +0.0044303410104475915 +0.002438208000967279 +0.004529976984485984 +0.002233439008705318 +0.002301244006957859 +0.004011106007965282 +0.0021137420262675732 +0.0024491729855071753 +0.004046874004416168 +0.0021944220061413944 +0.0022860919998493046 +0.004199743998469785 +0.002071881986921653 +0.0024239740159828216 +0.004201917006867006 +0.002171709988033399 +0.002486651996150613 +0.004041490989038721 +0.002302610024344176 +0.004140458011534065 +0.0020923499832861125 +0.002273632009746507 +0.004131237015826628 +0.0022165660047903657 +0.002254512015497312 +0.004159941017860547 +0.0021476199908647686 +0.0023744929931126535 +0.0040854540129657835 +0.0021445159800350666 +0.002438770025037229 +0.004111283022211865 +0.0021921070001553744 +0.002320825995411724 +0.003959077002946287 +0.002205516997491941 +0.0043031040113419294 +0.0021009919873904437 +0.0023263629991561174 +0.004171715991105884 +0.002131763001671061 +0.0023333890130743384 +0.004217043024254963 +0.0020536579831968993 +0.0024445840099360794 +0.00409579899860546 +0.002091559988912195 +0.0024142820038832724 +0.004259966022800654 +0.0020957450033165514 +0.002313281991519034 +0.004097027005627751 +0.002150388987502083 +0.0042496010137256235 +0.0022414779814425856 +0.00228611400234513 +0.004032153985463083 +0.0022860410099383444 +0.0022471419943030924 +0.004155109985731542 +0.0022180879896041006 +0.0023029340081848204 +0.00401821598643437 +0.002250916004413739 +0.002357123012188822 +0.004083015985088423 +0.002136595023330301 +0.002598341990960762 +0.003967813012422994 +0.0021311940217856318 +0.0042703369981609285 +0.0022452299890574068 +0.0022164460096973926 +0.004136689996812493 +0.0022282259888015687 +0.0022436350118368864 +0.004158762021688744 +0.002227785997092724 +0.002292898017913103 +0.004034351004520431 +0.002211947023170069 +0.0023493300250265747 +0.004014742007711902 +0.0021367790177464485 +0.0024162689805962145 +0.004052554984809831 +0.0022127779957372695 +0.004174910980509594 +0.002262152003822848 +0.002195842011133209 +0.004218129004584625 +0.0022542350052390248 +0.002294802980031818 +0.0040593729936517775 +0.0022448149975389242 +0.002243266993900761 +0.004039853985887021 +0.0021638089965563267 +0.00241262000054121 +0.004092165996553376 +0.0022000910248607397 +0.0023074769997037947 +0.004002639005193487 +0.0021831619960721582 +0.0024791719915810972 +0.004125751001993194 +0.002151470020180568 +0.002410255983704701 +0.00401955601410009 +0.002220325026428327 +0.002267669973662123 +0.004105822998099029 +0.002266216994030401 +0.004165233985986561 +0.002237599022919312 +0.00217960198642686 +0.004124933999264613 +0.0023004530230537057 +0.0022509700211230665 +0.004032593016745523 +0.002165149984648451 +0.0024703789968043566 +0.003974915016442537 +0.0021439080010168254 +0.0024490100040566176 +0.004042632004711777 +0.002204999007517472 +0.004201354022370651 +0.002227637014584616 +0.002177982998546213 +0.002363553998293355 +0.004021304979687557 +0.0023089460155460984 +0.004082173021743074 +0.002265120012452826 +0.0023888290161266923 +0.0038757639995310456 +0.002211535000242293 +0.0023205399920698255 +0.004263840994099155 +0.0023308679810725152 +0.0023017950006760657 +0.004561843990813941 +0.002213227009633556 +0.004266147007001564 +0.0023012320161797106 +0.0024534949916414917 +0.00447384497965686 +0.002193788008298725 +0.0025226309953723103 +0.004384169005788863 +0.0022059360053390265 +0.0023207400226965547 +0.004084871005034074 +0.0022759429994039237 +0.004230638995068148 +0.002182752010412514 +0.002337649988476187 +0.004091971000889316 +0.002066274988465011 +0.0025309489865321666 +0.004027621005661786 +0.0021519600122701377 +0.00235761099611409 +0.004102743027033284 +0.002195581007981673 +0.0024803249980323017 +0.00416947400663048 +0.002238620014395565 +0.004361563012935221 +0.0023268710065167397 +0.002604078996228054 +0.00460265701985918 +0.00256991499918513 +0.004887448012595996 +0.002236936998087913 +0.002717643976211548 +0.004386237997096032 +0.002317521983059123 +0.00441631002468057 +0.002206271979957819 +0.0025127050175797194 +0.004162294993875548 +0.0022982720111031085 +0.002334209973923862 +0.0040333179931622 +0.0022256869997363538 +0.000972882000496611 +0.005439053988084197 +0.00228884001262486 +0.002071410999633372 +0.004301498003769666 +0.002344251988688484 +0.004303625988541171 +0.002298447012435645 +0.0022803540050517768 +0.004355648998171091 +0.0023840820067562163 +0.002552235993789509 +0.0044010860146954656 +0.0006782390119042248 +0.0037781970167998224 +0.004088931978913024 +0.0022877579904161394 +0.00420793701778166 +0.0022822769824415445 +0.00227292298222892 +0.004017655999632552 +0.002123479003785178 +0.002451289998134598 +0.004111515998374671 +0.002161701995646581 +0.001092228019842878 +0.005242835002718493 +0.0020859159994870424 +0.0025091450079344213 +0.004051315016113222 +0.002229674020782113 +0.0023916819773148745 +0.004052489006426185 +0.0023422539816237986 +0.0008790490101091564 +0.0053011029958724976 +0.002363159990636632 +0.004021025990368798 +0.002242699993075803 +0.0022982840018812567 +0.0040705089922994375 +0.0021881999855395406 +0.002417400013655424 +0.004181266005616635 +0.002197857014834881 +0.002342572988709435 +0.004091417999006808 +0.0021264840033836663 +0.0024635099980514497 +0.004152734996750951 +0.0023784629884175956 +0.004101676982827485 +0.0023483549884986132 +0.0021253970044199377 +0.004095286974916235 +0.002172376000089571 +0.0024739579821471125 +0.004034912999486551 +0.002085178013658151 +0.0024887709878385067 +0.004045458015752956 +0.002304963010828942 +0.0022527690161950886 +0.004012112010968849 +0.002295510988915339 +0.0023601879947818816 +0.003995145991211757 +0.002308630006154999 +0.004126393992919475 +0.0022401750029530376 +0.002289162977831438 +0.004142507998039946 +0.0020671350066550076 +0.0025453479902353138 +0.004225948010571301 +0.0021513350075110793 +0.0024365599965676665 +0.004057221987750381 +0.0023054610064718872 +0.0023445840051863343 +0.004051227995660156 +0.0022372439852915704 +0.0023302869813051075 +0.004098876001080498 +0.002400064026005566 +0.004029987001558766 +0.0021972390240989625 +0.002421395998680964 +0.004023512999992818 +0.0022087749966885895 +0.002505048003513366 +0.004045503999805078 +0.0022702809947077185 +0.002497843001037836 +0.003954458981752396 +0.0022230370086617768 +0.002593234006781131 +0.004142863006563857 +0.0023223430034704506 +0.004071174975251779 +0.0022478080063592643 +0.002309730974957347 +0.00402715100790374 +0.002263600006699562 +0.002445165009703487 +0.003995950013631955 +0.002185852004913613 +0.0023857429914642125 +0.004043658991577104 +0.0024067160265985876 +0.0022679340036120266 +0.004070203984156251 +0.002295026002684608 +0.004057460988406092 +0.002296329999808222 +0.002335049008252099 +0.004066027991939336 +0.0022460170148406178 +0.0024041979922913015 +0.004060164006659761 +0.0021818050008732826 +0.00237323300098069 +0.004127802996663377 +0.002148617000784725 +0.0024176299921236932 +0.004122990998439491 +0.0023087390000000596 +0.002377436001552269 +0.004124927974771708 +0.002349474001675844 +0.0022128339915070683 +0.003981337998993695 +0.0025413330004084855 +0.004092682007467374 +0.0021756039932370186 +0.0024248569970950484 +0.0040584740054327995 +0.0022503689979203045 +0.0023551939812023193 +0.004113620001589879 +0.0022539260098710656 +0.0023399339988827705 +0.003940426016924903 +0.00240938100614585 +0.002237028005765751 +0.004009396012406796 +0.0023431869922205806 +0.004052325006341562 +0.0021863709844183177 +0.0023443400277756155 +0.004158717987593263 +0.0021010519994888455 +0.0026472870085854083 +0.0040580700151622295 +0.002227587014203891 +0.0023382999934256077 +0.004268512973794714 +0.0023878370120655745 +0.0021791119943372905 +0.0040062000043690205 +0.002383818995440379 +0.003995942999608815 +0.0022054679866414517 +0.002354413998546079 +0.004161874006967992 +0.002185873978305608 +0.0023945409920997918 +0.004053907003253698 +0.0022385320044122636 +0.002442458993755281 +0.004022554989205673 +0.0020750139956362545 +0.0024288929998874664 +0.00412296099239029 +0.002298712992342189 +0.004028115014079958 +0.002234405983472243 +0.0022857860021758825 +0.002335660014068708 +0.004037079022964463 +0.0022323650191538036 +0.004213495994918048 +0.002130868990207091 +0.002627395006129518 +0.004058233986143023 +0.0022294809750746936 +0.00241365100373514 +0.004059082013554871 +0.002248603996122256 +0.0024832790077198297 +0.004084134998265654 +0.002229353995062411 +0.002330425981199369 +0.0041524890111759305 +0.0022864789934828877 +0.004069852991960943 +0.0020532119960989803 +0.0025247299927286804 +0.004040939995320514 +0.0021396120137069374 +0.002423530997475609 +0.0040898629813455045 +0.002220146998297423 +0.0023775669978931546 +0.004028411989565939 +0.0022571510053239763 +0.002366376022109762 +0.004079308011569083 +0.002200154005549848 +0.004107255983399227 +0.0022539479832630605 +0.002292967983521521 +0.004072401003213599 +0.0022329339990392327 +0.0023703009937889874 +0.004049273004056886 +0.0021585490030702204 +0.002416090981569141 +0.004091287002665922 +0.002220282010966912 +0.0023982639831956476 +0.004057558020576835 +0.002293753990670666 +0.002279951993841678 +0.004066116001922637 +0.0022317590191960335 +0.0023598230036441237 +0.004181466996669769 +0.0023068060108926147 +0.004065672983415425 +0.0022032200067769736 +0.002276440995046869 +0.004159500997047871 +0.0022073949803598225 +0.002264764014398679 +0.0041342850017827 +0.0022208050068002194 +0.0023224670148920268 +0.004067900008521974 +0.0023053420009091496 +0.0023617469996679574 +0.0040554839943069965 +0.0021188330138102174 +0.002371331996982917 +0.004040603002067655 +0.0021698199852835387 +0.004234629013808444 +0.002121948986314237 +0.002361833001486957 +0.0022474350116681308 +0.0039884200086817145 +0.002421711978968233 +0.004072137002367526 +0.002220924012362957 +0.0024133069964591414 +0.004047283990075812 +0.0021919849968980998 +0.0024816029763314873 +0.004114918992854655 +0.0023814090236555785 +0.0022258370008785278 +0.004051727009937167 +0.0023758099996484816 +0.003977406013291329 +0.002396681986283511 +0.0008293340215459466 +0.0037272000045049936 +0.003991136996774003 +0.002373886003624648 +0.004105669999262318 +0.00228719599545002 +0.002339842001674697 +0.004107031010789797 +0.00227912500849925 +0.0023442569945473224 +0.004037792998133227 +0.002275773003930226 +0.002207048994023353 +0.00408752600196749 +0.002295725018484518 +0.00413789800950326 +0.0023314760182984173 +0.0025800839939620346 +0.003883226978359744 +0.0023336980084422976 +0.0008885629940778017 +0.005742659996030852 +0.0006548060046043247 +0.0037558669864665717 +0.004244531999574974 +0.002302523993421346 +0.00413947002380155 +0.002424175007035956 +0.002325346984434873 +0.004042300977744162 +0.00227864200132899 +0.0023587970063090324 +0.004111746995477006 +0.002194304979639128 +0.0024423699942417443 +0.004390176996821538 +0.002318343991646543 +0.004330221010604873 +0.0023549399920739233 +0.002310327981831506 +0.003994233004050329 +0.002145481004845351 +0.002583801018772647 +0.003964709991123527 +0.0022318809933494776 +0.002371106995269656 +0.00418892499874346 +0.0022166780254337937 +0.0024741709930822253 +0.004038059007143602 +0.0022121490037534386 +0.002283846988575533 +0.004160458978731185 +0.0022910780098754913 +0.002346395020140335 +0.004165112011833116 +0.0008843969844747335 +0.003622049989644438 +0.00400539900874719 +0.00232198101002723 +0.00407833099598065 +0.0022335160174407065 +0.002364094980293885 +0.004060735984239727 +0.002279428008478135 +0.002368484012549743 +0.004088082991074771 +0.002281336986925453 +0.0008989009947981685 +0.005227184999966994 +0.0022725419839844108 +0.0023031099990475923 +0.004072743991855532 +0.0023245930206030607 +0.004130280984099954 +0.002094433002639562 +0.0024817140074446797 +0.00402476399904117 +0.002253169019240886 +0.0023413290036842227 +0.004093215015018359 +0.002248132979730144 +0.0023708079825155437 +0.004060612991452217 +0.002238846995169297 +0.0022725840099155903 +0.0040036629943642765 +0.0023282160109374672 +0.002376289980020374 +0.004075760982232168 +0.002355696982704103 +0.004329438990680501 +0.0023885619884822518 +0.002586767979664728 +0.004196151014184579 +0.0021127059881109744 +0.0025032859994098544 +0.00433894302113913 +0.002290493983309716 +0.004029136005556211 +0.0022619839874096215 +0.0023806089884601533 +0.004112105001695454 +0.002086515974951908 +0.0024135870044119656 +0.0041549169982317835 +0.0022281690035015345 +0.0023103470157366246 +0.004040790983708575 +0.0022063170035835356 +0.0024349309969693422 +0.0039178350125439465 +0.0022667910088784993 +0.004179148992989212 +0.002243752998765558 +0.0022690430050715804 +0.0041426979878451675 +0.0022452169796451926 +0.002359468024224043 +0.0039704429800622165 +0.0020747110247612 +0.0025042710185516626 +0.004031286982353777 +0.002228087018011138 +0.0023078960075508803 +0.004213597014313564 +0.002217561996076256 +0.002453528984915465 +0.00402896897867322 +0.0023614299716427922 +0.002322860003914684 +0.004216159984935075 +0.0007782210013829172 +0.0026479520020075142 +0.005111622012918815 +0.002363288018386811 +0.004053647979162633 +0.0023479310038965195 +0.002332356001716107 +0.003971527999965474 +0.0022067269892431796 +0.0024161750043276697 +0.00410271598957479 +0.0021904179884586483 +0.0023524980060756207 +0.0040582189976703376 +0.0022672459890600294 +0.002314756013220176 +0.004178379982477054 +0.0023625089961569756 +0.004099434008821845 +0.002152714994736016 +0.002394981012912467 +0.004149064014200121 +0.0021903009910602123 +0.002369687019381672 +0.004044328001327813 +0.0023185650061350316 +0.002365182008361444 +0.004097347991773859 +0.00217071600491181 +0.0023541290138382465 +0.004038530983962119 +0.0023316970036830753 +0.00411232901387848 +0.0021981110039632767 +0.002362683997489512 +0.004154395981458947 +0.0021140380122233182 +0.002471392974257469 +0.004202588985208422 +0.0021801039983984083 +0.002219848975073546 +0.004155543021624908 +0.002345034998143092 +0.002345049986615777 +0.0040491310064680874 +0.002138772018952295 +0.0024509979994036257 +0.003999981010565534 +0.002325307985302061 +0.0022224929998628795 +0.004044069995870814 +0.002313212025910616 +0.004064623994054273 +0.002165724989026785 +0.002506277000065893 +0.003999098000349477 +0.002090043999487534 +0.0024738649954088032 +0.004004080983577296 +0.002365410007769242 +0.0023467139981221408 +0.004086967994226143 +0.002203076990554109 +0.0024006820167414844 +0.00401822300045751 +0.0022490720148198307 +0.0041736790153663605 +0.0021812759805470705 +0.0022529289999511093 +0.004201192990876734 +0.002172693988541141 +0.00242004101164639 +0.004067697009304538 +0.0021762530086562037 +0.0024084969772957265 +0.004207101999782026 +0.002250339981401339 +0.0024154720013029873 +0.0039540370053146034 +0.002342207997571677 +0.0023184330202639103 +0.0040153239970095456 +0.002241274021798745 +0.0022674270148854703 +0.00405133402091451 +0.0025146450207103044 +0.0021556399879045784 +0.003980651003075764 +0.0024963469768408686 +0.004059157014125958 +0.002193625026848167 +0.0023172450019046664 +0.004137749987421557 +0.002264215989271179 +0.0024230290146078914 +0.003977757995016873 +0.0022940890048630536 +0.002311302989255637 +0.004117426986340433 +0.0022854789858683944 +0.0039983949973247945 +0.0023313999990932643 +0.0023737229930702597 +0.0021384769934229553 +0.004062732012243941 +0.0023211830120999366 +0.004213387001072988 +0.002305358008015901 +0.0010994109907187521 +0.00571520600351505 +0.0023398949997499585 +0.002286023984197527 +0.00401822998537682 +0.0022819010191597044 +0.004147511004703119 +0.002229398989584297 +0.002257342013763264 +0.004124584986129776 +0.00207836099434644 +0.002468160993885249 +0.004047540976898745 +0.002200631017331034 +0.0023951390176080167 +0.004036139987874776 +0.0021919760038144886 +0.0024365250137634575 +0.004019860993139446 +0.002214893000200391 +0.002382945007411763 +0.004041306005092338 +0.0021837679960299283 +0.004195146000711247 +0.002257963002193719 +0.0023658449936192483 +0.00404183502541855 +0.0021057419944554567 +0.002450344996759668 +0.004096560995094478 +0.002131597022525966 +0.0024890399945434183 +0.004187383980024606 +0.002201038005296141 +0.002331369003513828 +0.00418472001911141 +0.0021703460079152137 +0.0023954490025062114 +0.002846412011422217 +0.003466094989562407 +0.002319943014299497 +0.004057152022141963 +0.00241357900085859 +0.003998044994659722 +0.002213558997027576 +0.002325570007087663 +0.004014390986412764 +0.0021873659861739725 +0.0024355269852094352 +0.004044062981847674 +0.0021978250006213784 +0.002408297994406894 +0.00408616999629885 +0.002202217001467943 +0.0024386690056417137 +0.004058620979776606 +0.002324684988707304 +0.0022715170052833855 +0.00405789099750109 +0.002275567007018253 +0.004157285991823301 +0.0022034739959053695 +0.0023946159926708788 +0.004066488007083535 +0.0022995159961283207 +0.0023613939993083477 +0.004025166999781504 +0.002168663020711392 +0.002405311999609694 +0.003967110009398311 +0.002304724999703467 +0.0023646699846722186 +0.004074112017406151 +0.002358436002396047 +0.004090138012543321 +0.002235152991488576 +0.002275356004247442 +0.004136439005378634 +0.0021454129891935736 +0.002412755013210699 +0.004029319010442123 +0.0021456159884110093 +0.0023588249750901014 +0.004161098011536524 +0.0021733000176027417 +0.00238286898820661 +0.004047219990752637 +0.0021554899867624044 +0.0024330290034413338 +0.004047025984618813 +0.0024170609831344336 +0.002285143011249602 +0.004050001996802166 +0.002313536999281496 +0.004086555010871962 +0.002177109010517597 +0.0024632909917272627 +0.004032313998322934 +0.0021898910054005682 +0.002314199024112895 +0.004129661014303565 +0.0021784320124424994 +0.002316417987458408 +0.00409956302610226 +0.0021489640057552606 +0.002454708010191098 +0.00408111498109065 +0.002230438985861838 +0.004178620001766831 +0.0022282339923549443 +0.0023881880042608827 +0.0038738729781471193 +0.002199294976890087 +0.002322485001059249 +0.004106462001800537 +0.002189571998314932 +0.0023642810119781643 +0.004082559986272827 +0.0021956199780106544 +0.0024061379954218864 +0.004032515018479899 +0.0021986800129525363 +0.0024193970020860434 +0.004051846015499905 +0.002268629992613569 +0.004184518998954445 +0.0022258120006881654 +0.0022362830059137195 +0.004151380009716377 +0.0022708869946654886 +0.002264387992909178 +0.00411498302128166 +0.0021907250047661364 +0.0024265259853564203 +0.004177913011517376 +0.002213426021626219 +0.002457002003211528 +0.0043281399994157255 +0.0022561229998245835 +0.0022316440008580685 +0.0045105189783498645 +0.002357410005060956 +0.004056546022184193 +0.0021400299738161266 +0.002428775012958795 +0.004064952023327351 +0.0021678849880117923 +0.002448412007652223 +0.004047874012030661 +0.00219157399260439 +0.002438871975755319 +0.004057441983604804 +0.0021960469894111156 +0.0023930449970066547 +0.0040279150125570595 +0.0023053839977364987 +0.004165771999396384 +0.002245661977212876 +0.0023277349828276783 +0.004078186000697315 +0.0021654749871231616 +0.0024091220111586154 +0.004096118005691096 +0.002166221005609259 +0.002376595977693796 +0.0041083940013777465 +0.0021551309910137206 +0.0024253909941762686 +0.004082190978806466 +0.0022234899806790054 +0.002353410003706813 +0.004115251009352505 +0.0022828769870102406 +0.004077505989698693 +0.002189755003200844 +0.0024041049764491618 +0.004112607013667002 +0.0022083639923948795 +0.002402779005933553 +0.004103598999790847 +0.0021579999884124845 +0.0024341669923160225 +0.004089216992724687 +0.0022199859959073365 +0.002427672006888315 +0.0027922579902224243 +0.003461863991105929 +0.0010646070004440844 +0.005448648997116834 +0.0023150380002334714 +0.004112097987672314 +0.0020959140092600137 +0.0024790150055196136 +0.004012454999610782 +0.002169217012124136 +0.0024479670100845397 +0.0040748809988144785 +0.0021761289972346276 +0.0023753659916110337 +0.004091743991011754 +0.0022519759950228035 +0.0022428680094890296 +0.004103971994481981 +0.0022403599868994206 +0.0024126990174409 +0.003972024016547948 +0.002280304004671052 +0.000974299997324124 +0.005375736014684662 +0.0023337139864452183 +0.004014926991658285 +0.0021954240219201893 +0.0025104130036197603 +0.004038237006170675 +0.0021558500011451542 +0.002277341001899913 +0.004182645992841572 +0.0022045399819035083 +0.0023326720111072063 +0.0041033109882846475 +0.002175361994886771 +0.0022925710072740912 +0.004245375021127984 +0.002318607992492616 +0.004140638979151845 +0.002272896992508322 +0.0022875749855302274 +0.004141977988183498 +0.002209533005952835 +0.0023405359825119376 +0.00404498798889108 +0.002107825013808906 +0.002454640984069556 +0.004094472998986021 +0.0022058859758544713 +0.004099748010048643 +0.0023091050097718835 +0.0008562580042053014 +0.003824968996923417 +0.004030288982903585 +0.0023227840138133615 +0.004135648021474481 +0.0022533719893544912 +0.0022106260003056377 +0.004047968977829441 +0.0022542029910255224 +0.002352123992750421 +0.004165444988757372 +0.002092827984597534 +0.0024477439874317497 +0.0040428240026813 +0.0021901620202697814 +0.004211468010907993 +0.002157470997190103 +0.002200349001213908 +0.00235659399186261 +0.004118087003007531 +0.002124099002685398 +0.004187018988886848 +0.002144489000784233 +0.002351128001464531 +0.004103240993572399 +0.002149652980733663 +0.002406789979431778 +0.004064461012603715 +0.002093946997774765 +0.00241352102602832 +0.003997922991402447 +0.002270069991936907 +0.0022913749853614718 +0.004132019996177405 +0.002096231997711584 +0.0023145140148699284 +0.004188905004411936 +0.002188231999753043 +0.004155153990723193 +0.0022194740013219416 +0.0021858369873370975 +0.0024080520088318735 +0.004023922985652462 +0.002258782013086602 +0.004146844003116712 +0.0020775580196641386 +0.0025369460054207593 +0.00402415098506026 +0.002166043996112421 +0.002449554012855515 +0.004009399010101333 +0.0021122480102349073 +0.002384090010309592 +0.004166113008977845 +0.0021768070000689477 +0.004137892014114186 +0.002241684007458389 +0.002191471983678639 +0.004262468981323764 +0.0022703489812556654 +0.002171649015508592 +0.00416121500893496 +0.002271975972689688 +0.0021737389906775206 +0.0041950090089812875 +0.0021975309937261045 +0.002314259996637702 +0.004035962017951533 +0.002082496997900307 +0.0023721850011497736 +0.00417172399465926 +0.0021474460081662983 +0.002375292999204248 +0.004088974994374439 +0.002118625008733943 +0.002367651992244646 +0.004112417984288186 +0.002149070001905784 +0.004199710994726047 +0.002243571012513712 +0.002290235977852717 +0.004098984005395323 +0.002147572988178581 +0.002253251994261518 +0.0041194170189555734 +0.0022309659980237484 +0.002360916987527162 +0.004094619012903422 +0.0020905309938825667 +0.002396105002844706 +0.004187767975963652 +0.0021417800162453204 +0.002397332020336762 +0.004086633009137586 +0.002148344006855041 +0.004172825982095674 +0.0022427199874073267 +0.0021985649946145713 +0.00413838098756969 +0.002312552009243518 +0.0021488189813680947 +0.002313039993168786 +0.004071245988598093 +0.0023114809882827103 +0.004142573015997186 +0.0020839569915551692 +0.0023393160081468523 +0.00417906601796858 +0.0021556619904004037 +0.0023930229945108294 +0.0041051440057344735 +0.0021405860024970025 +0.0024670900020282716 +0.00405909598339349 +0.0021690319990739226 +0.002378792007220909 +0.0038867630064487457 +0.0022692939965054393 +0.00417742898571305 +0.0022710440098308027 +0.002264497976284474 +0.00423466699430719 +0.0021589029929600656 +0.0023194479872472584 +0.004071813978953287 +0.0021484649914782494 +0.0024897760013118386 +0.003929703991161659 +0.002189342019846663 +0.0024170730030164123 +0.004114547016797587 +0.0021290539880283177 +0.0022627309954259545 +0.004087373003130779 +0.002218009001808241 +0.004174022993538529 +0.0022450140095315874 +0.0022555630130227655 +0.00412759801838547 +0.002147435996448621 +0.002286145987454802 +0.004180157004157081 +0.002087114000460133 +0.002509831014322117 +0.004074961005244404 +0.0021350870083551854 +0.0023377210018225014 +0.004108813998755068 +0.0021933419920969754 +0.0023286679934244603 +0.004078455996932462 +0.002240964997326955 +0.0023922619875520468 +0.004069860005984083 +0.002187592996051535 +0.004110715992283076 +0.002359475998673588 +0.0022694420185871422 +0.004076140990946442 +0.0020970019977539778 +0.0024064570025075227 +0.004267836979124695 +0.0021292680175974965 +0.002417312003672123 +0.00404968301882036 +0.002145920996554196 +0.002375801996095106 +0.004290762008167803 +0.0021042619773652405 +0.0023053780023474246 +0.004125863022636622 +0.002538577013183385 +0.004127660999074578 +0.002300859981914982 +0.0024887039908207953 +0.004117404983844608 +0.0025574470055289567 +0.0022268219909165055 +0.004366903973277658 +0.0023776360030751675 +0.0044870209821965545 +0.0023926820140331984 +0.002600397012429312 +0.004255159990862012 +0.0021366929868236184 +0.0024592329864390194 +0.004086492001079023 +0.002103579987306148 +0.0024585259961895645 +0.004107899992959574 +0.0022734079975634813 +0.0041550669993739575 +0.0022869340027682483 +0.0022455799917224795 +0.004070979979587719 +0.0022061850177124143 +0.002357830002438277 +0.00410733200260438 +0.002162267977837473 +0.002451248001307249 +0.004056694015162066 +0.002218448993517086 +0.00245290799648501 +0.003982355003245175 +0.002160569012630731 +0.0024317750066984445 +0.004062839027028531 +0.002255172992590815 +0.004205367004033178 +0.0022214600176084787 +0.0023302620102185756 +0.004009313997812569 +0.0022585820115637034 +0.0024315949995070696 +0.004097803001059219 +0.002173393004341051 +0.002585167996585369 +0.004069022019393742 +0.0022419110173359513 +0.0023853040183894336 +0.0040950209950096905 +0.0022205870191100985 +0.0041583519778214395 +0.002327327005332336 +0.0022785780020058155 +0.004101319995243102 +0.002148438012227416 +0.002442597004119307 +0.00407075000111945 +0.0021975309937261045 +0.0023941550171002746 +0.004068834008648992 +0.00213342800270766 +0.002475465997122228 +0.00407619500765577 +0.002373310999246314 +0.004080423008417711 +0.0023080969986040145 +0.00230749900219962 +0.004143686004681513 +0.0022475440055131912 +0.0021831420017406344 +0.004188497987342998 +0.0020860719960182905 +0.002470337989507243 +0.004087423993041739 +0.002227958000730723 +0.002378739998675883 +0.004053705983096734 +0.002321442007087171 +0.002327191992662847 +0.004038435989059508 +0.002325353998458013 +0.0022483580105472356 +0.004018593986984342 +0.0022766529873479158 +0.002276587998494506 +0.004131093010073528 +0.002248869015602395 +0.00408936501480639 +0.002353621006477624 +0.00225635600509122 +0.004089465015567839 +0.002237133012386039 +0.002395468996837735 +0.004066016001161188 +0.002177702001063153 +0.0023922699911054224 +0.004173687979346141 +0.0021480539871845394 +0.002277315012179315 +0.004017197003122419 +0.0022555360046681017 +0.002340412000194192 +0.0041222200088668615 +0.0022440839966293424 +0.004150535009102896 +0.0021051719959359616 +0.0024577630101703107 +0.004059166996739805 +0.0022329729981720448 +0.002379454002948478 +0.004116940021049231 +0.0021829739853274077 +0.0023839309869799763 +0.0039668550016358495 +0.002391800022451207 +0.00401437800610438 +0.0022309800260700285 +0.002205233002314344 +0.00413536699488759 +0.0022217329824343324 +0.002468348015099764 +0.003980842011515051 +0.0021505110198631883 +0.002404511993518099 +0.004018524021375924 +0.0023025780101306736 +0.0022665639990009367 +0.004074180003954098 +0.0022032189881429076 +0.002341835992410779 +0.004046718997415155 +0.002294542995514348 +0.0023634579847566783 +0.0039964059833437204 +0.002243014983832836 +0.004194943991024047 +0.0022719050175510347 +0.0023295249848160893 +0.0042063310102093965 +0.0022551449947059155 +0.0022888390230946243 +0.004058708989759907 +0.002226705983048305 +0.0022556199983228 +0.004129398992517963 +0.002177789981942624 +0.0009811009804252535 +0.005296001007081941 +0.002380988997174427 +0.0023077639925759286 +0.00408987799892202 +0.0008706710068508983 +0.0037168410199228674 +0.004115680989343673 +0.0023060189851094037 +0.004187802987871692 +0.002203740004915744 +0.002350199007196352 +0.0040532850252930075 +0.0023113990027923137 +0.0023249060031957924 +0.004095639014849439 +0.0021821789850946516 +0.002357843011850491 +0.004093041003216058 +0.0022935070155654103 +0.0030705959943588823 +0.0032923890103120357 +0.0022725469898432493 +0.0023173349909484386 +0.004101827013073489 +0.0008398809877689928 +0.0024140199820976704 +0.005456219019833952 +0.0021803720155730844 +0.0040169639978557825 +0.0023791170096956193 +0.002567485993495211 +0.004161472985288128 +0.002253251994261518 +0.0023400509962812066 +0.004144578007981181 +0.00233440101146698 +0.002408692002063617 +0.004129009001189843 +0.0023068070004228503 +0.004046593006933108 +0.00223419998656027 +0.002346218010643497 +0.0040317940001841635 +0.0022550940047949553 +0.0023712730035185814 +0.004077766003319994 +0.0021360520040616393 +0.0010873500141315162 +0.00537317301495932 +0.002231982012744993 +0.0030739369976799935 +0.003394302009837702 +0.002422991005005315 +0.004334288998506963 +0.0022358119895216078 +0.0023600189888384193 +0.0040545130032114685 +0.0022824970073997974 +0.000913203984964639 +0.005394548992626369 +0.0022643079864792526 +0.0023081499966792762 +0.004133950016694143 +0.0007416849839501083 +0.002497723005944863 +0.005321837990777567 +0.0022943719814065844 +0.004058266989886761 +0.0022567159903701395 +0.002352684998186305 +0.00406563701108098 +0.0022055669978726655 +0.002379726996878162 +0.004049965995363891 +0.002253554994240403 +0.0023654619872104377 +0.004076425015227869 +0.002230943995527923 +0.002383057988481596 +0.004022220004117116 +0.002246888994704932 +0.002327068999875337 +0.004057922982610762 +0.0022765900066588074 +0.004154839989496395 +0.0022777330013923347 +0.0023374840093310922 +0.004073159012477845 +0.002207845012890175 +0.002344364009331912 +0.0041042889934033155 +0.002249508019303903 +0.0023223889875225723 +0.004055551020428538 +0.0022485759982373565 +0.0023803200165275484 +0.004154302994720638 +0.002301971981069073 +0.002425822982331738 +0.004167890991084278 +0.002301372995134443 +0.0040875069971662015 +0.0022683090064674616 +0.0023162549769040197 +0.004082891013240442 +0.0021650219860021025 +0.002410168992355466 +0.003998869011411443 +0.002178900991566479 +0.0023753689893055707 +0.004090632981387898 +0.002253328013466671 +0.004104117979295552 +0.0023007139971014112 +0.0021170330001041293 +0.004213578999042511 +0.0022209009912330657 +0.002293666999321431 +0.0041362369956914335 +0.0022590110020246357 +0.002332149015273899 +0.004040950007038191 +0.0021766550198663026 +0.0023868769931141287 +0.004086790984729305 +0.002179620001697913 +0.0023954179778229445 +0.004076683020684868 +0.0022073930012993515 +0.002343721018405631 +0.00421379497856833 +0.002145550010027364 +0.0022913340071681887 +0.004040432017063722 +0.0023450129956472665 +0.004009386000689119 +0.002336261997697875 +0.002233982988400385 +0.0040440950251650065 +0.0022525989916175604 +0.002290199015988037 +0.0040696750220377 +0.0021875390084460378 +0.002354324999032542 +0.004088973015313968 +0.002258401014842093 +0.00247354299062863 +0.004038887011120096 +0.002233778010122478 +0.0023027569986879826 +0.004232404986396432 +0.002146496990462765 +0.002235202002339065 +0.00412407997646369 +0.0022716090024914593 +0.004217631998471916 +0.0022661889961455017 +0.0022697770036756992 +0.0041524489934090525 +0.0021594249992631376 +0.002339784987270832 +0.004153293004492298 +0.002165038022212684 +0.0023408280103467405 +0.004164805985055864 +0.002172189997509122 +0.0023763820063322783 +0.004183501994702965 +0.0021573110134340823 +0.002452541986713186 +0.004040142986923456 +0.002244870993308723 +0.004129933018703014 +0.0022404390037991107 +0.002317025006050244 +0.004077519988641143 +0.002177867980208248 +0.002436584996758029 +0.004042082000523806 +0.002174000983359292 +0.002319941995665431 +0.004193567001493648 +0.0022322639997582883 +0.0023694289848208427 +0.004042515007313341 +0.002210334991104901 +0.002361052989726886 +0.004077215999132022 +0.0022672549821436405 +0.002306445996509865 +0.0040615409961901605 +0.0022746429895050824 +0.004150370019488037 +0.002205839002272114 +0.0023649799986742437 +0.004025504982564598 +0.0022301169810816646 +0.002430278982501477 +0.004089088004548103 +0.002207270998042077 +0.002455993992043659 +0.004029086994705722 +0.0021607230009976774 +0.0024040389980655164 +0.004049751005368307 +0.002258349006297067 +0.0041385520016774535 +0.0022276589879766107 +0.0024016830138862133 +0.004026445996714756 +0.0021142229961697012 +0.0023337419843301177 +0.004138868011068553 +0.0021317439968697727 +0.0024477300175931305 +0.004197828995529562 +0.0020891790045425296 +0.00243893702281639 +0.004035991005366668 +0.0022070450067985803 +0.0024194869911298156 +0.004035027988720685 +0.00226052402285859 +0.00232195999706164 +0.00402436699368991 +0.0023444459948223084 +0.004083507985342294 +0.0021467370097525418 +0.0022300959972199053 +0.0041444140078965575 +0.002232133992947638 +0.002435105008771643 +0.004057307000039145 +0.002264728012960404 +0.0023604790039826185 +0.004003392008598894 +0.0021923969907220453 +0.0023755179718136787 +0.004116579017136246 +0.002261993009597063 +0.0023426660045515746 +0.0041513659816700965 +0.0008221599855460227 +0.0035891040170099586 +0.004105761006940156 +0.0021763060067314655 +0.004129752982407808 +0.0021949229994788766 +0.0026061230164486915 +0.004193497006781399 +0.002152761007891968 +0.00241603801259771 +0.00403085898142308 +0.0021818909735884517 +0.002453482011333108 +0.004061585001181811 +0.002176425012294203 +0.002404189988737926 +0.004164903017226607 +0.00234953299514018 +0.004062055988470092 +0.0021119299926795065 +0.002326242014532909 +0.004173436987912282 +0.002178941009333357 +0.0024605369835626334 +0.0039669700199738145 +0.0022264170111157 +0.0026024609978776425 +0.004020330990897492 +0.0022791049850638956 +0.002387954998994246 +0.004009626019978896 +0.002361828024731949 +0.004156948998570442 +0.002178341004764661 +0.002455461013596505 +0.0041471100121270865 +0.002149036998162046 +0.002428309991955757 +0.004059395985677838 +0.0022729579941369593 +0.0023428349813912064 +0.004040959989652038 +0.002356056997086853 +0.00224061100743711 +0.004055664991028607 +0.0022537659970112145 +0.002343353000469506 +0.004126151994569227 +0.0023226470220834017 +0.004038207000121474 +0.002198684000177309 +0.0023803279909770936 +0.004053293989272788 +0.0021816639928147197 +0.0023952830233611166 +0.004043174994876608 +0.0023208970087580383 +0.0023129610053729266 +0.00421312398975715 +0.002265583025291562 +0.0023200290161184967 +0.004054210992762819 +0.0023094700009096414 +0.004070039023645222 +0.00227895297575742 +0.002360838989261538 +0.004133948008529842 +0.0021658540063071996 +0.0024706970143597573 +0.004027636983664706 +0.0022642110125161707 +0.002415178983937949 +0.004291115008527413 +0.002414602000499144 +0.004603326000506058 +0.0025582019879948348 +0.0010721529833972454 +0.005889592983294278 +0.0022241229889914393 +0.004214318003505468 +0.0009791170014068484 +0.00226662601926364 +0.0023465539852622896 +0.005405741016147658 +0.002443575009237975 +0.004243967006914318 +0.002247820986667648 +0.0024059279821813107 +0.004057709011249244 +0.0021838000102434307 +0.0022904019861016423 +0.004139581025810912 +0.002286044997163117 +0.0023327749804593623 +0.004268515011062846 +0.0023108650057110935 +0.004119389021070674 +0.0021853340149391443 +0.0023904310073703527 +0.004018423001980409 +0.0022600480006076396 +0.002313556004082784 +0.004087933019036427 +0.0021891610231250525 +0.002495733991963789 +0.0041390699916519225 +0.0022193710028659552 +0.004195874003926292 +0.002225766977062449 +0.002216916996985674 +0.00417503499193117 +0.0022833910188637674 +0.002296777005540207 +0.0021392230119090527 +0.004174513014731929 +0.002375924988882616 +0.004070969996973872 +0.0021760639792773873 +0.002470072009600699 +0.004122954997001216 +0.002110314992023632 +0.002358691010158509 +0.004074299999047071 +0.0022516680182889104 +0.004174475994659588 +0.0023402220103889704 +0.0021974470000714064 +0.00419145097839646 +0.0023549949983134866 +0.002261065994389355 +0.004190742009086534 +0.002224417985416949 +0.0023083009873516858 +0.004053218988701701 +0.002191606006817892 +0.00234269502107054 +0.004263247014023364 +0.002117762982379645 +0.0023637650010641664 +0.004077430989127606 +0.0020802389772143215 +0.0024898829869925976 +0.004074044001754373 +0.002267039002617821 +0.0041612290078774095 +0.0022141780063975602 +0.0022783500025980175 +0.004127749998588115 +0.002201855997554958 +0.0023580440029036254 +0.004087629000423476 +0.002164859004551545 +0.0024382479896303266 +0.004076215001987293 +0.00210259499726817 +0.002503277995856479 +0.0040193210006691515 +0.0022648040030617267 +0.0010195889917667955 +0.005344688979675993 +0.00229682499775663 +0.002311865013325587 +0.004034571989905089 +0.002364713989663869 +0.004057688027387485 +0.0022105149982962757 +0.0023378139885608107 +0.0040642659878358245 +0.002177259011659771 +0.002404425002168864 +0.0040284330025315285 +0.002165092999348417 +0.002436941984342411 +0.004037260980112478 +0.0021797239896841347 +0.0024224510125350207 +0.003951063001295552 +0.0023048740113154054 +0.004183974000625312 +0.00221242499537766 +0.0023310800024773926 +0.00398904099711217 +0.0022121370129752904 +0.0023782950011081994 +0.002197479974711314 +0.004271220997907221 +0.0024149829987436533 +0.003975283994805068 +0.0022704139992129058 +0.0023314989812206477 +0.004013013996882364 +0.0022036440204828978 +0.002372910996200517 +0.004073739983141422 +0.002198292000684887 +0.00235672399867326 +0.003983380011050031 +0.002375028998358175 +0.004047209018608555 +0.002238144021248445 +0.002277635008795187 +0.0040584770031273365 +0.0021361779945436865 +0.00237453100271523 +0.004144211998209357 +0.002080291014863178 +0.0024683059891685843 +0.004018653999082744 +0.0021962450118735433 +0.002441013988573104 +0.0040147290274035186 +0.002125928003806621 +0.0024409079924225807 +0.004070317023433745 +0.002378086996031925 +0.003961287991842255 +0.002296213002409786 +0.0022589039872400463 +0.002254402992548421 +0.00405667899758555 +0.0023467499995604157 +0.004033857985632494 +0.0022774960089009255 +0.002302379987668246 +0.00405410400708206 +0.0021569360105786473 +0.0023460619850084186 +0.004145244980463758 +0.0020965790026821196 +0.0024503710155840963 +0.0040746949962340295 +0.0021692769951187074 +0.0031116970058064908 +0.0033515790128149092 +0.002233182021882385 +0.0024100440205074847 +0.003996033017756417 +0.0023206179903354496 +0.0021762749820481986 +0.004056909994687885 +0.002428072999464348 +0.003967470023781061 +0.002362409984925762 +0.002456823014654219 +0.0039668200188316405 +0.0021324850094970316 +0.002461422001942992 +0.004329850984504446 +0.0022087580000516027 +0.00245397599064745 +0.004032621014630422 +0.0021834360086359084 +0.0022862760233692825 +0.004082187020685524 +0.0024080309958662838 +0.004007662006188184 +0.0023928009904921055 +0.0007737599953543395 +0.005483579996507615 +0.002161155018256977 +0.003198427992174402 +0.0032835179881658405 +0.0021973200200591236 +0.002388088993029669 +0.004116768977837637 +0.002095261006616056 +0.002444257988827303 +0.004044355999212712 +0.002252321981359273 +0.0040903110057115555 +0.002249609009595588 +0.0023314589925576 +0.004038336017401889 +0.0022749589988961816 +0.002331922994926572 +0.004022064007585868 +0.0022222019906621426 +0.002268178010126576 +0.004121862002648413 +0.0021120940218679607 +0.0024693649902474135 +0.00412582399439998 +0.002142927987733856 +0.0010670060000848025 +0.005315594986313954 +0.0022688180033583194 +0.0023266630014404655 +0.003986493975389749 +0.002289087977260351 +0.004097376979188994 +0.002278339001350105 +0.0023107659944798797 +0.0039962640148587525 +0.002228091994766146 +0.0024161080073099583 +0.004025264992378652 +0.0021154139831196517 +0.0023658729915041476 +0.0041361199982929975 +0.0022970370191615075 +0.0024005860032048076 +0.002904944005422294 +0.0033459409896750003 +0.0023793900036253035 +0.0039873320201877505 +0.0023153529909905046 +0.004134682007133961 +0.002235922002000734 +0.0023716810101177543 +0.004019286978291348 +0.0022112389851827174 +0.002347690984606743 +0.004082710976945236 +0.0020578559779096395 +0.0011998510162811726 +0.005248318979283795 +0.002153659996110946 +0.0024207289970945567 +0.00409201902220957 +0.0021719789947383106 +0.002435472997603938 +0.004089876980287954 +0.0023149440239649266 +0.0022137990163173527 +0.004070630006026477 +0.002289538999320939 +0.004141101991990581 +0.002165226003853604 +0.002284745016368106 +0.004154974012635648 +0.0021739379735663533 +0.002376844990067184 +0.0040345240267924964 +0.002175809000618756 +0.0024048560007940978 +0.004053701995871961 +0.0022106980031821877 +0.0024456809915136546 +0.004042660002596676 +0.0022689159959554672 +0.0009131809929385781 +0.005313495988957584 +0.002277737978147343 +0.00415638301637955 +0.002121290977811441 +0.002424500009510666 +0.004098082019481808 +0.0022540079953614622 +0.002416057017398998 +0.004151575994910672 +0.0021501910232473165 +0.0023834460007492453 +0.004015263984911144 +0.0024235470045823604 +0.0023234539839904755 +0.004022627021186054 +0.002214498003013432 +0.004409215995110571 +0.002261849003843963 +0.00226777300122194 +0.004198203998384997 +0.0022124910028651357 +0.002347658999497071 +0.004043544002342969 +0.002239021996501833 +0.002268788026412949 +0.004195613000774756 +0.0021434059890452772 +0.0023813979933038354 +0.004124847997445613 +0.002120754012139514 +0.0024525340122636408 +0.004012096993392333 +0.0023320289910770953 +0.004234916006680578 +0.0021282400120981038 +0.002275742997881025 +0.004513835010584444 +0.002297713013831526 +0.0022108289995230734 +0.004175009002210572 +0.002193975989939645 +0.0024435969826299697 +0.004024186986498535 +0.0022601129894610494 +0.0023911809839773923 +0.004048593022162095 +0.00232392898760736 +0.002293395984452218 +0.003994173981482163 +0.002265750983497128 +0.0022616249916609377 +0.00400769998668693 +0.002436677983496338 +0.004158668016316369 +0.0021730519947595894 +0.0023700309975538403 +0.004131126013817266 +0.0022070280101615936 +0.002469764993293211 +0.004036255995742977 +0.0022131679870653898 +0.00238969101337716 +0.004161959019256756 +0.0007462930225301534 +0.00378134599304758 +0.004147623025346547 +0.0023177299881353974 +0.004014601989183575 +0.0023126490123104304 +0.002271810983074829 +0.004114195005968213 +0.0021755960187874734 +0.0023900789965409786 +0.004161775985267013 +0.002132327004801482 +0.004250265017617494 +0.002264014008687809 +0.002224038995336741 +0.002365950000239536 +0.002830687997629866 +0.0034692470217123628 +0.00220256598549895 +0.004210251005133614 +0.00212418899172917 +0.004131858004257083 +0.0022403929906431586 +0.0022802599996794015 +0.004106275009689853 +0.0021103920007590204 +0.0024566969950683415 +0.004074081982253119 +0.00221914000576362 +0.002358686993829906 +0.004102276987396181 +0.0021912069933023304 +0.0024032389919739217 +0.004020489985123277 +0.002225305011961609 +0.002412638015812263 +0.004081615014001727 +0.0024175620055757463 +0.004100814985577017 +0.0022671660117339343 +0.0022755189856979996 +0.004181422002147883 +0.002148722007405013 +0.002412758010905236 +0.004066792986122891 +0.0021187509992159903 +0.0024850750050973147 +0.00416266598040238 +0.002286499977344647 +0.0022785190085414797 +0.004033359000459313 +0.0022999699867796153 +0.002220664988271892 +0.004147307015955448 +0.002203573996666819 +0.004161999997450039 +0.0021692750160582364 +0.0023434720060322434 +0.004098447010619566 +0.002203369018388912 +0.0023859500070102513 +0.004056878009578213 +0.0021304010006133467 +0.002353189018322155 +0.004088524990947917 +0.0021758519869763404 +0.002361378021305427 +0.0040361330029554665 +0.00225399000919424 +0.0041234179807361215 +0.0022120560170151293 +0.0024571619869675487 +0.004097330995136872 +0.002236808999441564 +0.0023044200206641108 +0.0040880710002966225 +0.002167130005545914 +0.0024177370069082826 +0.004067265981575474 +0.0021207190002314746 +0.0024839149846229702 +0.004064365988597274 +0.0022814139956608415 +0.00417269000899978 +0.002237250009784475 +0.002218442998128012 +0.0024012209905777127 +0.004022812005132437 +0.002325801004189998 +0.004012338002212346 +0.0022574460017494857 +0.0023600319982506335 +0.00404614201397635 +0.0021335409837774932 +0.002376475982600823 +0.004075207019923255 +0.0022038659953977913 +0.002391818998148665 +0.004026828013593331 +0.002245485986350104 +0.002357535995543003 +0.004037743987282738 +0.00213857798371464 +0.002527242002543062 +0.004012421995867044 +0.002310747979208827 +0.004084888001671061 +0.00228944601258263 +0.0022351020015776157 +0.00403252401156351 +0.0020821770012844354 +0.000932075985474512 +0.005492117983521894 +0.0021755129855591804 +0.0024278679920826107 +0.00403364998055622 +0.0021886510076001287 +0.0022866170038469136 +0.004189279017737135 +0.0021361779945436865 +0.002426998980809003 +0.004028768016723916 +0.0022781009902246296 +0.004114571987884119 +0.0022221120016183704 +0.0021624889923259616 +0.0041214789962396026 +0.0022861059987917542 +0.0022607010032515973 +0.0041233079973608255 +0.002160814998205751 +0.0024563549959566444 +0.004048061004141346 +0.002130278997356072 +0.0025363479799125344 +0.004077127989148721 +0.002178480994189158 +0.0024233440053649247 +0.004029746021842584 +0.0022079139889683574 +0.002406626008450985 +0.004021995991934091 +0.002321637002751231 +0.004073813994182274 +0.0022714799852110445 +0.0022473600110970438 +0.004033372999401763 +0.002217734989244491 +0.002309478004463017 +0.004154903988819569 +0.002158027986297384 +0.002408264990663156 +0.004079786973306909 +0.002171033003833145 +0.0023146670137066394 +0.004111397982342169 +0.002189127990277484 +0.0022594330075662583 +0.004199709015665576 +0.0011717189918272197 +0.003458186984062195 +0.004151102009927854 +0.0022791259980294853 +0.004073956020874903 +0.002154147980036214 +0.002312945987796411 +0.00411284199799411 +0.0021840739937033504 +0.0023885830014478415 +0.004069023008923978 +0.0021866259921807796 +0.0024626540252938867 +0.0040489090024493635 +0.0021935789845883846 +0.0023849490098655224 +0.004023539979243651 +0.0021900010178796947 +0.004066359979333356 +0.0023279269807972014 +0.0022179690131451935 +0.004154704016400501 +0.0022547599801328033 +0.0021659119811374694 +0.004125718987779692 +0.0021648730034939945 +0.0022848499938845634 +0.004146512015722692 +0.0021646599925588816 +0.0023202459851745516 +0.004132888017920777 +0.002126487990608439 +0.002376807009568438 +0.004069296992383897 +0.002238335000583902 +0.002400954021140933 +0.004008136980701238 +0.002209494006820023 +0.00237696900148876 +0.004041613981826231 +0.0022522819926962256 +0.004074148018844426 +0.0022273529903031886 +0.0022127240081317723 +0.004171117005171254 +0.002170674008084461 +0.0023644760076422244 +0.004045035020681098 +0.002199165988713503 +0.0023865739931352437 +0.004191963002085686 +0.002116517978720367 +0.0024559769954066724 +0.004084123997017741 +0.0022165570117067546 +0.0023157290124800056 +0.004137446987442672 +0.00225148000754416 +0.00412066001445055 +0.002218009001808241 +0.0022308740008156747 +0.004162970988545567 +0.002236789994640276 +0.002457822993164882 +0.004078914993442595 +0.002219107002019882 +0.0023185460013337433 +0.004097134980838746 +0.0021255190076772124 +0.0024789900053292513 +0.004088580986717716 +0.0021448589977808297 +0.0024340480158571154 +0.004220144008286297 +0.002285854978254065 +0.004041003005113453 +0.002292118006153032 +0.0022565209947060794 +0.004094188014278188 +0.0021239409979898483 +0.0024051910149864852 +0.004040922998683527 +0.0022184350236784667 +0.0023526799923274666 +0.004065546003403142 +0.0021499819995369762 +0.002480935014318675 +0.004068266018293798 +0.0022021510230842978 +0.002398409997113049 +0.004105134983547032 +0.002242843998828903 +0.004146077990299091 +0.002212444000178948 +0.002237349981442094 +0.004168186977040023 +0.002232692000688985 +0.0022949099948164076 +0.004072417999850586 +0.0021468609920702875 +0.002394942013779655 +0.00405695999506861 +0.002236808999441564 +0.002240240981336683 +0.004099179990589619 +0.0022003480116836727 +0.002353694988414645 +0.004105152009287849 +0.002203326002927497 +0.004181310010608286 +0.0021783129777759314 +0.0023634420067537576 +0.004137466021347791 +0.002245242998469621 +0.002308808994712308 +0.004035849997308105 +0.002110497996909544 +0.0024569339875597507 +0.0040291800105478615 +0.002159056020900607 +0.00238919400726445 +0.004096290998859331 +0.0021439529955387115 +0.002409829990938306 +0.004072308976901695 +0.0021246650139801204 +0.0024043809971772134 +0.004029087023809552 +0.0021778369846288115 +0.002414574002614245 +0.003918926988262683 +0.00252204600838013 +0.004121382022276521 +0.0022802859893999994 +0.00222552299965173 +0.004214376007439569 +0.0021618540049530566 +0.002378131990553811 +0.0041885829996317625 +0.00220384998829104 +0.0023509050079155713 +0.004084434011019766 +0.0021775580244138837 +0.0023889880103524774 +0.004001237015472725 +0.0022113409941084683 +0.0023624880122952163 +0.004111516987904906 +0.002329965995159 +0.004188160004559904 +0.0022581590164918453 +0.002294058009283617 +0.004054410994285718 +0.0022531599970534444 +0.0024131469835992903 +0.004095162003068253 +0.002176530018914491 +0.002415154012851417 +0.004121656995266676 +0.0021316019992809743 +0.00246327999047935 +0.004007968003861606 +0.002132594003342092 +0.0023942230036482215 +0.004234199994243681 +0.0008606589981354773 +0.003604513010941446 +0.004132736998144537 +0.0022900670010130852 +0.004128592991037294 +0.0022972850129008293 +0.0024239829799626023 +0.0038902850064914674 +0.0021399700199253857 +0.0025932849966920912 +0.004103606013813987 +0.002157967974198982 +0.002446910977596417 +0.004025732981972396 +0.0023608450137544423 +0.00408148200949654 +0.0023944840067997575 +0.0023253720137290657 +0.004236796987242997 +0.0023566890158690512 +0.002354805008508265 +0.0042379040096420795 +0.002211474988143891 +0.0024251599970739335 +0.004112701019039378 +0.002149640000425279 +0.00419551701634191 +0.002250234014354646 +0.0022986250114627182 +0.0042297640175092965 +0.0020824090170208365 +0.0024344910052604973 +0.004190948995528743 +0.002204121003160253 +0.0023544510186184198 +0.0040970430127345026 +0.002201923984102905 +0.003188721981132403 +0.003415384009713307 +0.0022167660063132644 +0.004210871993564069 +0.002220010996097699 +0.00225595899973996 +0.0042072299984283745 +0.0022964730160310864 +0.002319494989933446 +0.003850697015877813 +0.0022847070067655295 +0.0023818869958631694 +0.004052361997310072 +0.0021568239899352193 +0.0023847529955673963 +0.004092743998626247 +0.0023035479825921357 +0.0023692050017416477 +0.0028421479801181704 +0.0034689749882090837 +0.004219022986944765 +0.002339676982956007 +0.000674367998726666 +0.002586096990853548 +0.0053717449773103 +0.0021852579957339913 +0.00410952398669906 +0.002256371022667736 +0.0022926160017959774 +0.004077985999174416 +0.0022458220191765577 +0.002350353985093534 +0.004067136003868654 +0.002223710995167494 +0.0024100090085994452 +0.00401776100625284 +0.0021914130193181336 +0.0023962980194482952 +0.003986778989201412 +0.002324921020772308 +0.00448981299996376 +0.002131551009370014 +0.0024798300000838935 +0.004161869001109153 +0.002216313994722441 +0.002452990011079237 +0.004116784984944388 +0.0022963490046095103 +0.002282589004607871 +0.004147655999986455 +0.0023274999985005707 +0.002245805982965976 +0.004100930003914982 +0.002403616002993658 +0.002155760012101382 +0.004085435997694731 +0.0024142590118572116 +0.004007301002275199 +0.002261357003590092 +0.002297212020494044 +0.004093081020982936 +0.0021922109881415963 +0.0023010240111034364 +0.004109722009161487 +0.0025270680198445916 +0.0008609929936937988 +0.005487681977683678 +0.0022024399950169027 +0.004109859000891447 +0.002314998011570424 +0.002314816025318578 +0.0040687879954930395 +0.002240697998786345 +0.002218220994109288 +0.004128394997678697 +0.0022137480264063925 +0.002406415995210409 +0.0040257080108858645 +0.002178369992179796 +0.0024142159963957965 +0.0040585149836260825 +0.002188126993132755 +0.0024493640230502933 +0.004085273016244173 +0.002255999017506838 +0.004203283984679729 +0.00219719999586232 +0.0023045280249789357 +0.0041906029800884426 +0.002157032984541729 +0.002364868007134646 +0.004021710017696023 +0.002161284995963797 +0.00241820199880749 +0.0040487950027454644 +0.002199018985265866 +0.002390125999227166 +0.004070250986842439 +0.0020736060105264187 +0.0024931299849413335 +0.004048267990583554 +0.002259400993352756 +0.004187781014479697 +0.0022233169875107706 +0.002411014022072777 +0.0040085889922920614 +0.0022202889958862215 +0.0023410689900629222 +0.0040568719850853086 +0.0021604819921776652 +0.0024249929992947727 +0.004042991000460461 +0.002220349997514859 +0.002304232999449596 +0.004047113005071878 +0.0021700960060115904 +0.003166495996993035 +0.0032929730077739805 +0.002195983979618177 +0.004223250987706706 +0.0021878110128454864 +0.0023434859758708626 +0.0040489149978384376 +0.0022426340146921575 +0.0021865360031370074 +0.004152166977291927 +0.0023194680106826127 +0.002321676001884043 +0.0040576530154794455 +0.0021887999901082367 +0.0023265170166268945 +0.004090898990398273 +0.0022340430004987866 +0.0022966149845160544 +0.0040567189862485975 +0.0021536579879466444 +0.002436265000142157 +0.004010108998045325 +0.0023625019821338356 +0.0022548569831997156 +0.004163762991083786 +0.002238702989416197 +0.002281188004417345 +0.004099070007214323 +0.002259397995658219 +0.004178450006293133 +0.0022134369937703013 +0.002351230999920517 +0.0040896409773267806 +0.0022052350104786456 +0.0031949399854056537 +0.0032868699927348644 +0.0021775889908894897 +0.002426585997454822 +0.004015935002826154 +0.0021511029917746782 +0.0023825579846743494 +0.004173324996372685 +0.0022249959874898195 +0.004170004016486928 +0.002255825005704537 +0.0023573449871037155 +0.004029350995551795 +0.0021877929975744337 +0.0024600070028100163 +0.0040669589943718165 +0.002206809993367642 +0.0024039909767452627 +0.002837781998096034 +0.003380412992555648 +0.002423144003842026 +0.0028365360049065202 +0.0033281350042670965 +0.0024602350022178143 +0.004076079989317805 +0.0022478619939647615 +0.004076537996297702 +0.00229562702588737 +0.0024371269973926246 +0.003932992985937744 +0.0021084820036776364 +0.002423775993520394 +0.004048586008138955 +0.0022720650013070554 +0.0023168929910752922 +0.004018901992822066 +0.0021751820167992264 +0.002364700980251655 +0.004042388987727463 +0.0021855829982087016 +0.004191277985228226 +0.002254914987133816 +0.0022109970159363 +0.0023582760186400265 +0.004052545002195984 +0.0022706329764332622 +0.004126493993680924 +0.0022553539893124253 +0.0022356069821398705 +0.00413864100119099 +0.002239035995444283 +0.002363059000344947 +0.004043660999741405 +0.0021423200087156147 +0.002456287998938933 +0.004122904996620491 +0.0021876149985473603 +0.0024121570168063045 +0.0040630020084790885 +0.0022722749854438007 +0.0042422419937793165 +0.002231128979474306 +0.0022977900225669146 +0.004057030979311094 +0.00222388599650003 +0.0023115460062399507 +0.004036535014165565 +0.00220325801637955 +0.002421615005005151 +0.00405308700283058 +0.002191798994317651 +0.002418650983599946 +0.004091028007678688 +0.0021466890175361186 +0.0024662420037202537 +0.0028283419960644096 +0.0035768130037467927 +0.004088955000042915 +0.0022378349967766553 +0.002362385974265635 +0.004003754002042115 +0.002164099976653233 +0.0024157520092558116 +0.00403965701116249 +0.0021941309969406575 +0.002342591993510723 +0.004136586008826271 +0.002264854992972687 +0.0023434959875885397 +0.004045604000566527 +0.002084353007376194 +0.0024974359839688987 +0.004011721990536898 +0.0021851319761481136 +0.0023317970044445246 +0.004042490996653214 +0.0023253069957718253 +0.00404119398444891 +0.0023645829933229834 +0.002197074005380273 +0.004077081015566364 +0.0022319380077533424 +0.002377678989432752 +0.004056611011037603 +0.0022662260162178427 +0.0023892719764262438 +0.004081941006006673 +0.0020902920223306865 +0.0024594650021754205 +0.003928422986064106 +0.0022912730055395514 +0.0025142359954770654 +0.0039010350010357797 +0.0022099950001575053 +0.0023486160207539797 +0.004066116001922637 +0.0023488180013373494 +0.003962558985222131 +0.0023092430201359093 +0.0023234400141518563 +0.004023815999971703 +0.002149227017071098 +0.0024327099963556975 +0.004067027010023594 +0.0022196150093805045 +0.003062109026359394 +0.003337885980727151 +0.0022193900076672435 +0.002430432999972254 +0.004153229994699359 +0.0006849040219094604 +0.0037891740212216973 +0.004088577989023179 +0.0022785179899074137 +0.004006263014161959 +0.0022752759978175163 +0.0023251959937624633 +0.004062558989971876 +0.0021728299907408655 +0.0023308749950956553 +0.004096155986189842 +0.002154043992049992 +0.0031847359787207097 +0.0033159119775518775 +0.0022203130065463483 +0.002314809971721843 +0.004050304007250816 +0.002225956995971501 +0.002417945011984557 +0.003973143990151584 +0.0022169550065882504 +0.004224331001751125 +0.002194436005083844 +0.002395780000369996 +0.004131244990276173 +0.002202420000685379 +0.0024402569979429245 +0.0041961289825849235 +0.0022413489932660013 +0.0023237460118252784 +0.004117579985177144 +0.002193807013100013 +0.0024471739889122546 +0.0039130490040406585 +0.002274425991345197 +0.004190025996649638 +0.0022526810062117875 +0.002222975017502904 +0.004115408024517819 +0.0022480599873233587 +0.002300778985954821 +0.004168493993347511 +0.0021454189845826477 +0.002450897009111941 +0.004132033995119855 +0.0021742629760410637 +0.002313912002136931 +0.004174607980530709 +0.002196285000536591 +0.002407910011243075 +0.004037134000100195 +0.002278751984704286 +0.004206415003864095 +0.0021435059898067266 +0.0023091050097718835 +0.004134824004722759 +0.0022045670193620026 +0.0022374549880623817 +0.004130315996007994 +0.00208847300382331 +0.0024214120057877153 +0.004137095995247364 +0.00215001602191478 +0.002388610999332741 +0.004038713988848031 +0.002252392005175352 +0.002378345001488924 +0.004046012996695936 +0.0021219100162852556 +0.0025114630116149783 +0.004047278984216973 +0.0022767110203858465 +0.002318262995686382 +0.004024155990919098 +0.0024163679918274283 +0.004041270993184298 +0.0022676039952784777 +0.0009040989971254021 +0.005735592014389113 +0.0021001200075261295 +0.002490486978786066 +0.004161652002949268 +0.002220298018073663 +0.004061173007357866 +0.002237526001408696 +0.00229425000725314 +0.00422932198853232 +0.002205557015258819 +0.0024235840246547014 +0.004075242002727464 +0.002170360996387899 +0.0024418249959126115 +0.004009006981505081 +0.002214193984400481 +0.002424761012662202 +0.004106373002287 +0.002148993982700631 +0.0024045429890975356 +0.004133756010560319 +0.002314939018106088 +0.002248005010187626 +0.003965904004871845 +0.0023848210112191737 +0.004063467989908531 +0.0022336620022542775 +0.0022468149836640805 +0.004192916996544227 +0.0022018539893906564 +0.0023216170084197074 +0.004108405002625659 +0.0022595780028495938 +0.002247250988148153 +0.004176160990027711 +0.0022174090263433754 +0.0024415110237896442 +0.0040958010067697614 +0.002335852012038231 +0.0022543139930348843 +0.003946406999602914 +0.0023452330206055194 +0.004113062983378768 +0.0021924680040683597 +0.00241467502200976 +0.004031791992019862 +0.0021771850006189197 +0.0023411340080201626 +0.004103102983208373 +0.002258516993606463 +0.002326816989807412 +0.004051358992001042 +0.0021798039961140603 +0.0024310250009875745 +0.004179811017820612 +0.002285224007209763 +0.0022244679857976735 +0.004078732978086919 +0.002233068022178486 +0.004158224997809157 +0.002222256996901706 +0.0023151219938881695 +0.004118129989365116 +0.002176915993914008 +0.0023673770192544907 +0.004034740995848551 +0.0022333649976644665 +0.0023344799992628396 +0.004115432995604351 +0.002181574993301183 +0.002433805988403037 +0.0040762610151432455 +0.002193494001403451 +0.002521643997170031 +0.003935747983632609 +0.0023294179991353303 +0.002214712993009016 +0.004087946028448641 +0.0023688889923505485 +0.004059360013343394 +0.0023141599958762527 +0.0021357859950512648 +0.004114506009500474 +0.0022373129904735833 +0.0023552939819637686 +0.0040086710068862885 +0.0022112149745225906 +0.00239542598137632 +0.004078959987964481 +0.002174789988202974 +0.0024652970023453236 +0.004069707996677607 +0.002242438989924267 +0.0023615829995833337 +0.004020381980808452 +0.0023809100093785673 +0.003991297009633854 +0.0022882699850015342 +0.00225174700608477 +0.004079376987647265 +0.0021816029911860824 +0.0024206679954659194 +0.004098203993635252 +0.0021440009877551347 +0.002407631982350722 +0.004033029981656 +0.0022119999921415 +0.004181563010206446 +0.0022849100059829652 +0.002196892979554832 +0.002370070986216888 +0.00405908000539057 +0.0023767490056343377 +0.0022781110019423068 +0.003988117998233065 +0.0023739330063108355 +0.003982036025263369 +0.0021711809968110174 +0.002459947019815445 +0.003994144004536793 +0.002084039995679632 +0.0025231430190615356 +0.003974498016759753 +0.002173132001189515 +0.002340867999009788 +0.004178852977929637 +0.0021740240044891834 +0.0024448859912808985 +0.003969000012148172 +0.002464880992192775 +0.0007600740063935518 +0.005392070015659556 +0.002252947015222162 +0.004174731991952285 +0.00222851600847207 +0.0023189269995782524 +0.004157449002377689 +0.002173626999137923 +0.0023294370039366186 +0.004111635993467644 +0.0023091949988156557 +0.002458392991684377 +0.004029800998978317 +0.002271037985337898 +0.002398812008323148 +0.00392873102100566 +0.0024168929958250374 +0.0039923339791130275 +0.0023889279982540756 +0.0022556440089829266 +0.004161838005529717 +0.002150094020180404 +0.0024934849934652448 +0.0040588200208730996 +0.0021413609792944044 +0.002363173000048846 +0.004073689982760698 +0.0022559140052180737 +0.002366199012612924 +0.004012007993878797 +0.0022140519868116826 +0.0024399299873039126 +0.004037713020807132 +0.002297294995514676 +0.004184033983619884 +0.0021547659998759627 +0.0023003020032774657 +0.004112813010578975 +0.002217929984908551 +0.002448748011374846 +0.004016784980194643 +0.002183903008699417 +0.0023634379904251546 +0.00414123700466007 +0.002132666006218642 +0.0023650210059713572 +0.0041531229799147695 +0.002159752999432385 +0.003016919974470511 +0.003383632021723315 +0.0022779160062782466 +0.004155789007199928 +0.0022535349999088794 +0.0021829559991601855 +0.004192747001070529 +0.0021685670071747154 +0.0022964570089243352 +0.0040814210078679025 +0.0021932520030532032 +0.0023478189832530916 +0.0041545820131432265 +0.0022268379980232567 +0.0023729309905320406 +0.004230248974636197 +0.002344459993764758 +0.004312210017815232 +0.0023935670033097267 +0.002282589004607871 +0.004485825978918001 +0.0022742779983673245 +0.002511817991035059 +0.004591186996549368 +0.0020712709811050445 +0.002328423026483506 +0.00427027398836799 +0.0022631970059592277 +0.004101642000023276 +0.0021529919758904725 +0.002505580021534115 +0.004079095990164205 +0.0021429010084830225 +0.00231904600514099 +0.004140375996939838 +0.0021022750006522983 +0.002400908007984981 +0.004093733994523063 +0.002273435005918145 +0.0022139930224511772 +0.0040869140066206455 +0.0022286520106717944 +0.002434020978398621 +0.0039659980102442205 +0.0022470879775937647 +0.004199326998787001 +0.0022222289990168065 +0.0022443750058300793 +0.004190985026070848 +0.002152921020751819 +0.0024426919990219176 +0.004019816988147795 +0.002159712981665507 +0.0024375420180149376 +0.004049515991937369 +0.002364788990234956 +0.0024001069832593203 +0.004070875991601497 +0.0021801189868710935 +0.004157365008722991 +0.0022269220207817852 +0.0021626229863613844 +0.004180798016022891 +0.0021697029878851026 +0.00234253698727116 +0.004157909977948293 +0.002118283009622246 +0.002594607009086758 +0.004057713988004252 +0.002109543012920767 +0.002371692011365667 +0.004160506010521203 +0.002232767001260072 +0.002333017997443676 +0.004155572998570278 +0.002123770012985915 +0.002347366011235863 +0.00411236600484699 +0.0021602339984383434 +0.004169581981841475 +0.002185333985835314 +0.0022615720226895064 +0.004208625003229827 +0.002111144014634192 +0.0024572389957029372 +0.004085652006324381 +0.0021047320042271167 +0.0023542749986518174 +0.004086947999894619 +0.0021491039951797575 +0.0025056719896383584 +0.004097594995982945 +0.002182524011004716 +0.000980465003522113 +0.005427221010904759 +0.002146963990526274 +0.0023765689984429628 +0.004053679993376136 +0.0021973359980620444 +0.0042074880038853735 +0.00216419599018991 +0.0023049419978633523 +0.00408235500799492 +0.0021541930036619306 +0.0025401159946341068 +0.004104969004401937 +0.0021628160029649734 +0.00242063999758102 +0.00402801702148281 +0.002089104993501678 +0.002489314996637404 +0.003938959009246901 +0.0025676219956949353 +0.00395012999069877 +0.0022636509966105223 +0.0023390110000036657 +0.0041195340163540095 +0.002310709998710081 +0.0023407669796142727 +0.004043474997160956 +0.0021524660114664584 +0.0022459980100393295 +0.0042411580216139555 +0.0022780120198149234 +0.0023783939832355827 +0.004211220017168671 +0.0022030010004527867 +0.0023486189893446863 +0.004099824989680201 +0.002200104994699359 +0.0041080969967879355 +0.0022932800056878477 +0.0022683510032948107 +0.00417566898977384 +0.002068186004180461 +0.0024408610188402236 +0.003975767001975328 +0.0020870309963356704 +0.002570040989667177 +0.0039999209984671324 +0.002241896989289671 +0.002472156018484384 +0.004071521980222315 +0.0021505909971892834 +0.004289917997084558 +0.0021752949978690594 +0.0022112340084277093 +0.004182086995569989 +0.0021958849974907935 +0.002338695019716397 +0.004118397977435961 +0.002245607989607379 +0.002278154977830127 +0.0040782089927233756 +0.002144627011148259 +0.0024022909929044545 +0.004077027988387272 +0.002213386003859341 +0.002301703003467992 +0.004179234005277976 +0.0020750080002471805 +0.0023876350023783743 +0.004088228015461937 +0.0022373189858626574 +0.004087387991603464 +0.0022190429735928774 +0.0023029169824440032 +0.004108116991119459 +0.0022990810102783144 +0.0022117710032034665 +0.004074965021573007 +0.002148375002434477 +0.0024913770030252635 +0.004062457999680191 +0.0022894180146977305 +0.001065701973857358 +0.005232566007180139 +0.002271291014039889 +0.0024051280051935464 +0.003971950995037332 +0.0023176289978437126 +0.0022455580183304846 +0.004049078008392826 +0.002380891004577279 +0.002239188994280994 +0.0040348590118810534 +0.002178666996769607 +0.004126573010580614 +0.00231585800065659 +0.0023038319777697325 +0.004135068011237308 +0.0021345999848563224 +0.002440623997244984 +0.004046696005389094 +0.0021113209950271994 +0.002491947991074994 +0.0042223199852742255 +0.002246939024189487 +0.0023530549951829016 +0.0041502080275677145 +0.002333732001716271 +0.0041262219892814755 +0.002256726991618052 +0.0021654070005752146 +0.0041827929962892085 +0.0021826029988005757 +0.0024445329909212887 +0.004025074013043195 +0.002308363007614389 +0.0022692320053465664 +0.004127457999857143 +0.002198046975536272 +0.0023182579898275435 +0.004130260989768431 +0.0021954999829176813 +0.0022587789862882346 +0.004060174978803843 +0.002329623996047303 +0.0024013410147745162 +0.0040636299818288535 +0.002502232004189864 +0.0007964170072227716 +0.005136111984029412 +0.002400989003945142 +0.004060286999447271 +0.0022462720226030797 +0.0024185119837056845 +0.004096422984730452 +0.002195189008489251 +0.0023908260045573115 +0.004040921019623056 +0.0022759139828849584 +0.0023101390106603503 +0.003938965004635975 +0.0023414719908032566 +0.0024400149995926768 +0.00396572399768047 +0.002422199002467096 +0.0007112289895303547 +0.0053700029966421425 +0.002345268992939964 +0.004125350009417161 +0.0021369859750848264 +0.0023846070107538253 +0.00412694999249652 +0.0021380340040195733 +0.002371690992731601 +0.004051402007462457 +0.0021935889963060617 +0.002487562014721334 +0.003975907020503655 +0.002337232988793403 +0.0023309199896175414 +0.004056862002471462 +0.002322042011655867 +0.0040224629919976 +0.002281219989527017 +0.0022464740031864494 +0.0041263730090577155 +0.002112566988216713 +0.002432754001347348 +0.004071585979545489 +0.0021267359843477607 +0.0024029079941101372 +0.004045913985464722 +0.002294503996381536 +0.00235267000971362 +0.004074441007105634 +0.0021758210205007344 +0.0023889709846116602 +0.004088450979907066 +0.00228895599138923 +0.003992415004177019 +0.0022675619984511286 +0.0024033589870668948 +0.004237971996190026 +0.0022134480241220444 +0.002379829005803913 +0.004015002981759608 +0.002131946006556973 +0.002417709998553619 +0.004253209015587345 +0.002209818019764498 +0.0023066430003382266 +0.004064056003699079 +0.0023495260102208704 +0.004141549987252802 +0.0022300890123005956 +0.002339750004466623 +0.003946798999095336 +0.0022551460133399814 +0.0024775030033197254 +0.003939115005778149 +0.002222312003141269 +0.002437441988149658 +0.0041348910017404705 +0.002163775992812589 +0.0023987710010260344 +0.004057587997522205 +0.0021777129732072353 +0.002358379017096013 +0.004046540008857846 +0.0022364890028256923 +0.0024051670043263584 +0.0041317799768876284 +0.0022035099973436445 +0.0023470190062653273 +0.003959710971685126 +0.0023841509828343987 +0.004068893002113327 +0.0021833629871252924 +0.0024146240029949695 +0.004093564988579601 +0.002210798003943637 +0.0023152520006988198 +0.004110089997993782 +0.002126275998307392 +0.0024780009989626706 +0.003929419006453827 +0.0022702940041199327 +0.002304492983967066 +0.004088154993951321 +0.0023479970113839954 +0.002175772999180481 +0.004070922004757449 +0.0022455199796240777 +0.004187623009784147 +0.002140950004104525 +0.0024785980058368295 +0.004059769009472802 +0.002179789007641375 +0.0024622140044812113 +0.0040391969960182905 +0.00222110899630934 +0.0023937770165503025 +0.003978945023845881 +0.0022337519912980497 +0.0023824179952498525 +0.004191898013232276 +0.0021540140151046216 +0.004268755990779027 +0.0021992530091665685 +0.0023935599892865866 +0.004005152004538104 +0.002194492000853643 +0.0024701019865460694 +0.0040156580216716975 +0.002116857998771593 +0.002464316989062354 +0.004031548014609143 +0.002292702003614977 +0.002284899994265288 +0.0040307540039066225 +0.0023924059933051467 +0.002362828003242612 +0.00413711101282388 +0.002402601996436715 +0.003978592983912677 +0.002257068990729749 +0.0022927570098545402 +0.004122130980249494 +0.0021489469800144434 +0.002496083005098626 +0.00436785101192072 +0.0022316210088320076 +0.0024363159900531173 +0.003942107985494658 +0.0022121890215203166 +0.002408879023278132 +0.004162750003160909 +0.0023001389927230775 +0.002136432012775913 +0.004279037995729595 +0.002243991009891033 +0.003979703004006296 +0.002191109990235418 +0.0008322640205733478 +0.00370495900278911 +0.003988011012552306 +0.0023546429874841124 +0.004174797999439761 +0.002234376996057108 +0.0023363169748336077 +0.004068770009325817 +0.002146968006854877 +0.002370394009631127 +0.004152124020038173 +0.0022493939904961735 +0.002358800993533805 +0.003999597014626488 +0.002323976979823783 +0.0021373030031099916 +0.004076857992913574 +0.002413244976196438 +0.004068915994139388 +0.0020982260175514966 +0.0023970070178620517 +0.004102699022041634 +0.00217398299719207 +0.002402962010819465 +0.004201078991172835 +0.002297254977747798 +0.0022264629951678216 +0.0041821970080491155 +0.0022377140121534467 +0.0024073829990811646 +0.004029167001135647 +0.0022192949836608022 +0.004222905001370236 +0.0021856010134797543 +0.0023658330028411 +0.004097038006875664 +0.002097363001666963 +0.0024714070023037493 +0.003992953017586842 +0.002328167000086978 +0.0021611449774354696 +0.0041765139903873205 +0.002078721998259425 +0.002395535004325211 +0.004129945009481162 +0.0023438600182998925 +0.00222022901289165 +0.0040918849990703166 +0.002224016992840916 +0.004178486997261643 +0.002179864008212462 +0.00232203199993819 +0.0040716529765632 +0.002147209976101294 +0.002448209997965023 +0.0040201400115620345 +0.0023468239814974368 +0.002340554026886821 +0.0041210240160580724 +0.002086770022287965 +0.0024355099885724485 +0.004084423999302089 +0.0022681579866912216 +0.002285152004333213 +0.003978677996201441 +0.002474070992320776 +0.004030558018712327 +0.0022510230191983283 +0.0023488599981646985 +0.004086947999894619 +0.0022300209966488183 +0.0023801600036676973 +0.0040454359841533005 +0.0021694110182579607 +0.0024245670065283775 +0.004111699992790818 +0.002180504990974441 +0.0022877739975228906 +0.004127206018893048 +0.002221534989075735 +0.00405010100803338 +0.002231839986052364 +0.0023150240012910217 +0.004239452013280243 +0.0022522129875142127 +0.0022166420239955187 +0.004193697008304298 +0.0021867770119570196 +0.002496486995369196 +0.0038108970038592815 +0.0025038410094566643 +0.002289909985847771 +0.004094778996659443 +0.002266169001813978 +0.0022007219959050417 +0.004185961006442085 +0.0021962109894957393 +0.004175162001047283 +0.0021671309950761497 +0.0023622929875273257 +0.004086210014065728 +0.0022464630019385368 +0.002500081987818703 +0.004032946017105132 +0.002153476991225034 +0.002386262989602983 +0.004009263007901609 +0.002245929994387552 +0.002364233019761741 +0.004046980000566691 +0.0022856880095787346 +0.0023110379988793284 +0.004041243024403229 +0.0021836179948877543 +0.00419129099464044 +0.002211801998782903 +0.002216733992099762 +0.0042193339904770255 +0.0022344700118992478 +0.0024765589914750308 +0.003944649011828005 +0.002119093987857923 +0.002440952986944467 +0.0041694109968375415 +0.0022106170072220266 +0.0022801230079494417 +0.004030270996736363 +0.0020993069920223206 +0.0024664060038048774 +0.004094741016160697 +0.002244390023406595 +0.00409620298887603 +0.0021178339957259595 +0.002333921001991257 +0.002195392007706687 +0.004105464002350345 +0.002385710016824305 +0.00228868899284862 +0.004005049995612353 +0.0009128109959419817 +0.0035907790006604046 +0.004030237003462389 +0.0024824120046105236 +0.003936643013730645 +0.0021864080044906586 +0.0024138220178429037 +0.0039899509865790606 +0.0023193499946501106 +0.002316905010957271 +0.004250789992511272 +0.0023084619897417724 +0.0023106790031306446 +0.004206375975627452 +0.0022352010128088295 +0.004102359991520643 +0.0022775130055379122 +0.002407100982964039 +0.0040460329910274595 +0.0021940510196145624 +0.0023458439973182976 +0.004152893990976736 +0.0022093569859862328 +0.002343775995541364 +0.004059915983816609 +0.0022860020108055323 +0.002290411008289084 +0.004056511010276154 +0.0022787160123698413 +0.0023138100223150104 +0.004086005996214226 +0.0022954809828661382 +0.004415380011778325 +0.0022504759836010635 +0.0024403060087934136 +0.0040125210070982575 +0.002165965997846797 +0.002405681007076055 +0.004016565013444051 +0.002258091000840068 +0.002311185991857201 +0.00400770700071007 +0.002387464977800846 +0.003964225994423032 +0.0022287960164248943 +0.0022830970119684935 +0.0023089019814506173 +0.00405033997958526 +0.00246166400029324 +0.003964775998611003 +0.0021795170032419264 +0.0023327219823841006 +0.004066391993546858 +0.002179039001930505 +0.0024161009932868183 +0.004009110998595133 +0.002137292001862079 +0.0024252510047517717 +0.004043742985231802 +0.0023844479874242097 +0.0023455390182789415 +0.0040087419911287725 +0.0022787659836467355 +0.004114159004529938 +0.002243080991320312 +0.0022492339776363224 +0.00415157902170904 +0.00221481901826337 +0.0023080369865056127 +0.004049056005897 +0.0021526670025195926 +0.0024436550156679004 +0.004054243006976321 +0.0023024169786367565 +0.002417131996480748 +0.003929257014533505 +0.002173649991163984 +0.0024089799844659865 +0.004030853015137836 +0.002253134996863082 +0.0023709649976808578 +0.003970383986597881 +0.002233620994957164 +0.0023109850008040667 +0.003985331015428528 +0.0022237750235944986 +0.004171970998868346 +0.0022074060107115656 +0.0024607739760540426 +0.0038928909925743937 +0.0021437899849843234 +0.002381305006565526 +0.0041078329959418625 +0.0022490699775516987 +0.002330429997527972 +0.003969867015257478 +0.0022467669914476573 +0.0023892280005384237 +0.004068914015078917 +0.002165256009902805 +0.0024135799903888255 +0.004029018979053944 +0.002322206011740491 +0.004127413994865492 +0.0022655770007986575 +0.0022872300178278238 +0.004031953983940184 +0.002177711983677 +0.0025239120004698634 +0.0039017329982016236 +0.0021733080211561173 +0.002428309991955757 +0.004020296997623518 +0.0021670639980584383 +0.002419963013380766 +0.004038706014398485 +0.00226924498565495 +0.002330848015844822 +0.004080304002854973 +0.002283362002344802 +0.002307790011400357 +0.004016843013232574 +0.0023678790021222085 +0.004031115007819608 +0.0022926279925741255 +0.0025389629881829023 +0.0038492020103149116 +0.002260504988953471 +0.002389887988101691 +0.004067889996804297 +0.0021622650092467666 +0.002399265009444207 +0.004072919022291899 +0.0022005810169503093 +0.002399015997070819 +0.004044293018523604 +0.0022179079824127257 +0.00232340200454928 +0.004017194005427882 +0.0023114939976949245 +0.0022710509947501123 +0.004018005012767389 +0.0023044199915602803 +0.0022220700047910213 +0.00406234001275152 +0.0023570159974042326 +0.004042532993480563 +0.002165838988730684 +0.0024479699786752462 +0.004037799022626132 +0.0022624050034210086 +0.002322213986190036 +0.004048753995448351 +0.002270169003168121 +0.0023085740103852004 +0.004041034000692889 +0.0022756629914510995 +0.0023062560067046434 +0.004004677990451455 +0.0022916570014785975 +0.0024024610174819827 +0.004037936014356092 +0.0021972429822199047 +0.004096602002391592 +0.0022785910114180297 +0.002462613017996773 +0.003949554025894031 +0.0022770649811718613 +0.0010587130091153085 +0.004632085008779541 +0.00335371500113979 +0.0022062569914851338 +0.002286013012053445 +0.002277035004226491 +0.004015170008642599 +0.0023266130010597408 +0.004074174998095259 +0.0022729579941369593 +0.002200223010731861 +0.0009301899990532547 +0.005213330005062744 +0.002457230002619326 +0.00409763801144436 +0.0022914330183994025 +0.0009756549843586981 +0.005320997996022925 +0.002301586006069556 +0.002210760983871296 +0.004090652015293017 +0.0022089179838076234 +0.002289339987328276 +0.00412296800641343 +0.0022385249903891236 +0.0009542609914205968 +0.004073001997312531 +0.0034804980095941573 +0.0009756160143297166 +0.005232552997767925 +0.002344759996049106 +0.004037829989101738 +0.0022398479923140258 +0.0009414469823241234 +0.0024155270075425506 +0.005286351981339976 +0.002329382987227291 +0.004019343992695212 +0.0023014489852357656 +0.0022355809924192727 +0.0040822419978212565 +0.0022342739976011217 +0.0022950090060476214 +0.004082346014911309 +0.0022071290004532784 +0.002348292007809505 +0.004057491983985528 +0.002286550006829202 +0.004074071999639273 +0.0022377459972631186 +0.0023222590098157525 +0.004155534988967702 +0.002248586999485269 +0.0023240130103658885 +0.004130932997213677 +0.002227849996415898 +0.0023286709911189973 +0.004109635017812252 +0.002219536021584645 +0.002367306995438412 +0.004003660986199975 +0.0022217229998204857 +0.002348859008634463 +0.0040995070012286305 +0.0022458629973698407 +0.0022675429936498404 +0.004113978997338563 +0.002271278004627675 +0.004107387998374179 +0.0022796870034653693 +0.002306067995959893 +0.00428573798853904 +0.0007879110053181648 +0.0036853889760095626 +0.004241221991833299 +0.0023203760210890323 +0.00231352899572812 +0.004122490005102009 +0.002080680016661063 +0.002419483003905043 +0.00406384898815304 +0.002302802982740104 +0.0023167619947344065 +0.004080124985193834 +0.0009825390006881207 +0.0037066650111228228 +0.004058318998431787 +0.002416481002001092 +0.004064856999320909 +0.002131821005605161 +0.0024061480071395636 +0.00407530801021494 +0.002377122000325471 +0.0022470529947895557 +0.004050669987918809 +0.002263846981804818 +0.0023204430181067437 +0.004079277976416051 +0.0022597239876631647 +0.004143836005823687 +0.002245431998744607 +0.0022115670144557953 +0.0042626039939932525 +0.0021813189960084856 +0.0023690969974268228 +0.004032297001685947 +0.002177604997996241 +0.0024046320177149028 +0.004097172000911087 +0.0022568480053450912 +0.0022906640078872442 +0.004193013999611139 +0.0009531980031169951 +0.003690748999360949 +0.004050004004966468 +0.002300035994267091 +0.004193251021206379 +0.0022257189848460257 +0.002372454007854685 +0.004056281002704054 +0.0022137289925012738 +0.002390366978943348 +0.00413704797392711 +0.0022675270156469196 +0.0022280650155153126 +0.004004622023785487 +0.002199669019319117 +0.002290004980750382 +0.004066804016474634 +0.0009410440106876194 +0.003585256985388696 +0.004157234012382105 +0.002253864979138598 +0.0022807920177001506 +0.004020113003207371 +0.002203757001552731 +0.00411434200941585 +0.0024568859953433275 +0.0023298360174521804 +0.003991450998000801 +0.002169406012399122 +0.0024164189817383885 +0.004256234009517357 +0.0022340779833029956 +0.002350937982555479 +0.004039490013383329 +0.0022344829922076315 +0.0041165410075336695 +0.0022231129987630993 +0.0023172209912445396 +0.0039294570160564035 +0.0022996750194579363 +0.002263728005345911 +0.0042119339923374355 +0.0022217730002012104 +0.002288529009092599 +0.004050428979098797 +0.0021505799959413707 +0.0025487379753030837 +0.00409118999959901 +0.002223874005721882 +0.002341408981010318 +0.0040633350145071745 +0.002263693982968107 +0.00230858099530451 +0.004097964003449306 +0.0022670819889754057 +0.0009697279892861843 +0.005318095994880423 +0.002215719025116414 +0.004142552992561832 +0.0022232960036490113 +0.0009761260007508099 +0.002361580991419032 +0.005319791001966223 +0.0022316729882732034 +0.004066758003318682 +0.0022424350026994944 +0.0023421799996867776 +0.004059842001879588 +0.0022607189894188195 +0.0022739389969501644 +0.004079089994775131 +0.002261941001052037 +0.0023134080111049116 +0.004082281986484304 +0.0022655210050288588 +0.002303260989720002 +0.004034254990983754 +0.002257420012028888 +0.0022328560007736087 +0.004018967971205711 +0.0022743890003766865 +0.004146355000557378 +0.00225690400111489 +0.0023353080032393336 +0.004086078988621011 +0.0022491580166388303 +0.002326488000107929 +0.004055714001879096 +0.000957637996179983 +0.0022699370165355504 +0.005296450981404632 +0.00223393298801966 +0.0022817300050519407 +0.0041522250103298575 +0.0022603520192205906 +0.002329534007003531 +0.004038714017951861 +0.002300004009157419 +0.002268390991957858 +0.004063957981998101 +0.0022844219929538667 +0.004064539010869339 +0.0022317279945127666 +0.0023052889737300575 +0.004082999017555267 +0.0022309129999484867 +0.0024316190101671964 +0.00407923900638707 +0.0021929650101810694 +0.002354365977225825 +0.004142927995417267 +0.000928905006730929 +0.002369570982409641 +0.0052737460064236075 +0.00217212998541072 +0.002333014999749139 +0.004130774992518127 +0.001037595997331664 +0.0035645830212160945 +0.004079583013663068 +0.0022986879921518266 +0.004127202002564445 +0.0010524480021558702 +0.0035098860098514706 +0.004091757989954203 +0.0022182189859449863 +0.0024159020103979856 +0.00415136301307939 +0.0009837370016612113 +0.003511851013172418 +0.004149215004872531 +0.002166824007872492 +0.002315272024134174 +0.0028841919847764075 +0.003490650007734075 +0.000999192998278886 +0.005434343998786062 +0.0007446229865308851 +0.003578989999368787 +0.004065829009050503 +0.002313364006113261 +0.004016805003629997 +0.0023854530008975416 +0.0023362469801213592 +0.004096732009202242 +0.002206614997703582 +0.0010298020206391811 +0.00524366000900045 +0.0022245199943426996 +0.0023040790110826492 +0.00414450399694033 +0.0009875560062937438 +0.0023196109978016466 +0.005325925012584776 +0.0022123789822217077 +0.002189385995734483 +0.00420190001023002 +0.002196076005930081 +0.002250185003504157 +0.004295528982765973 +0.000723318022210151 +0.0023882710083853453 +0.005364374985219911 +0.0007920579810161144 +0.0035253899986855686 +0.00399717697291635 +0.002385896019404754 +0.004046610003570095 +0.0023168120242189616 +0.0022904769866727293 +0.004051669006003067 +0.002282191999256611 +0.002315937977982685 +0.004143566999118775 +0.0008898510131984949 +0.0037578849878627807 +0.0040210860024672 +0.002390832989476621 +0.004013841011328623 +0.0022435630089603364 +0.0023427239793818444 +0.00405633301124908 +0.0022334549867082387 +0.002513460989575833 +0.003979886998422444 +0.0022385110205505043 +0.0024189499963540584 +0.003937873989343643 +0.002172710985178128 +0.0024467749753966928 +0.004176223010290414 +0.002294949983479455 +0.0023250819940585643 +0.004018198000267148 +0.0023685180058237165 +0.00421891501173377 +0.0021257069893181324 +0.002330602001165971 +0.0040553350117988884 +0.002165251993574202 +0.0024246620014309883 +0.004092235001735389 +0.0023230230144690722 +0.002222000010078773 +0.004034509009215981 +0.0022926100064069033 +0.0023132339993026108 +0.004088676010724157 +0.002254355000331998 +0.0041202399879693985 +0.002246354997623712 +0.002382564009167254 +0.00401197699829936 +0.002212005987530574 +0.002369323978200555 +0.004127074993448332 +0.002136513008736074 +0.0024494199897162616 +0.004040783998789266 +0.0022353859967552125 +0.002320983010577038 +0.004050568997627124 +0.0022501999919768423 +0.0023483829863835126 +0.004097842989722267 +0.002223722985945642 +0.0023105029831640422 +0.004003379988716915 +0.0023403810046147555 +0.0039059709815774113 +0.00231455999892205 +0.0023076320067048073 +0.004088980000233278 +0.0021914289973210543 +0.0024327200080733746 +0.003972727979999036 +0.0021436450188048184 +0.0024469589989166707 +0.004020780004793778 +0.0022467999951913953 +0.002483122021658346 +0.004022776003694162 +0.0022731019998900592 +0.0022964070085436106 +0.004058015998452902 +0.002377561992034316 +0.0021808199817314744 +0.004026659997180104 +0.0023090110043995082 +0.004120127996429801 +0.0022295799863059074 +0.0024027600011322647 +0.003985823015682399 +0.002159095020033419 +0.002401784004177898 +0.003990353987319395 +0.002285869006300345 +0.0024245059757959098 +0.004044376983074471 +0.0022349559876602143 +0.0023266820062417537 +0.004081393999513239 +0.002347005996853113 +0.002310415991814807 +0.004079785023350269 +0.0022475819860119373 +0.0041508070135023445 +0.0022511749994009733 +0.0023730200191494077 +0.004197479982394725 +0.002027954993536696 +0.002585542999440804 +0.003994964004959911 +0.0021649480040650815 +0.0024074850080069155 +0.004061050014570355 +0.002228425000794232 +0.0023620699939783663 +0.004039284016471356 +0.002242267015390098 +0.002334771997993812 +0.004041261010570452 +0.002382945007411763 +0.0040882900066208094 +0.0022070880222599953 +0.002372889022808522 +0.0041119050001725554 +0.0021778980153612792 +0.002462763019138947 +0.004188313003396615 +0.0021707120176870376 +0.0030960690055508167 +0.0032879619975574315 +0.002258580003399402 +0.0023749129904899746 +0.004068487003678456 +0.002206688019214198 +0.00411258899839595 +0.0022933560248930007 +0.0022997839841991663 +0.004154554975684732 +0.002249468001537025 +0.0022894429857842624 +0.003948894009226933 +0.002284052985487506 +0.0024058480048552155 +0.004039338993607089 +0.002113495982484892 +0.0023463050019927323 +0.0041899639763869345 +0.0022348820057231933 +0.002300599997397512 +0.004063046973897144 +0.002252767008030787 +0.002311427000677213 +0.004048214002978057 +0.002318084007129073 +0.0022417879954446107 +0.004047141992487013 +0.0023730389948468655 +0.0020505639840848744 +0.004356593999546021 +0.0007463740184903145 +0.004359930986538529 +0.003301722987089306 +0.002205455006333068 +0.004173990979325026 +0.0021379840036388487 +0.0023198479902930558 +0.00411159498617053 +0.0021357009827625006 +0.002369045978412032 +0.004239817993948236 +0.0007624930003657937 +0.003708298987476155 +0.004023802001029253 +0.0023547429882455617 +0.004205521021503955 +0.0022375280095729977 +0.002333550015464425 +0.004078434983966872 +0.002175111003452912 +0.0024102579918690026 +0.004035753023345023 +0.002203605981776491 +0.0024044799793045968 +0.0040301179978996515 +0.0022174299811013043 +0.0023868349962867796 +0.004006802017102018 +0.0022938880138099194 +0.0024209090042859316 +0.004201310017379001 +0.0023860310029704124 +0.0039757910126354545 +0.0022286309977062047 +0.0022772520023863763 +0.0041939229995477945 +0.002161560987588018 +0.002291690994752571 +0.004321810993133113 +0.002180340001359582 +0.0024501640000380576 +0.004033504024846479 +0.002138784999260679 +0.00230126001406461 +0.004073415009770542 +0.000981776014668867 +0.0023840110225137323 +0.005299051990732551 +0.002265333983814344 +0.004260379995685071 +0.0021794970089104027 +0.0025364169850945473 +0.00402322001173161 +0.00213132900535129 +0.0023699899902567267 +0.004162363999057561 +0.002215198997873813 +0.002361932012718171 +0.004102598002646118 +0.0021878500119782984 +0.002390585985267535 +0.004110862995730713 +0.0022959619818720967 +0.00217743800021708 +0.004244293988449499 +0.0007975859916768968 +0.0036050280032213777 +0.004317480983445421 +0.0007299389981199056 +0.0035456260084174573 +0.0040580659988336265 +0.002633368974784389 +0.003942815994378179 +0.002331750001758337 +0.002396466996287927 +0.004049554991070181 +0.002121238998370245 +0.0023493170156143606 +0.004144641978200525 +0.0024160550092346966 +0.0022347990015987307 +0.004101611004443839 +0.0023035730118863285 +0.004143097990890965 +0.0022316529939416796 +0.0023582990106660873 +0.00401771700126119 +0.0022104870004113764 +0.0022710089979227632 +0.004114248004043475 +0.0023096229997463524 +0.0022824470070190728 +0.004038618004415184 +0.002168795996112749 +0.0024827379966154695 +0.004006923001725227 +0.002358603000175208 +0.0039013370114844292 +0.002276595012517646 +0.0022976199979893863 +0.002374688978306949 +0.003990531986346468 +0.0022448099916800857 +0.004115846008062363 +0.0021667169930879027 +0.0023416500189341605 +0.004148555977735668 +0.0022396210115402937 +0.0023054440098349005 +0.004048828006489202 +0.00217772601172328 +0.002367417997447774 +0.004105122003238648 +0.0022738179832231253 +0.0024158890009857714 +0.004037353995954618 +0.0022381510061677545 +0.0042028939933516085 +0.002230142999906093 +0.002292274992214516 +0.004089964990271255 +0.0021943140018265694 +0.002311846998054534 +0.004206598998280242 +0.002249178010970354 +0.0023371910210698843 +0.004064952983753756 +0.00211205001687631 +0.00244983599986881 +0.004074145021149889 +0.002268716983962804 +0.002309081988641992 +0.004136328003369272 +0.0022431940014939755 +0.00419697500183247 +0.0022240399848669767 +0.00230281098629348 +0.004032605997053906 +0.002207810990512371 +0.0023728000232949853 +0.004095144016901031 +0.0022022119956091046 +0.002379311976255849 +0.0041168039897456765 +0.002170248975744471 +0.0023968470050022006 +0.004094325006008148 +0.002356415003305301 +0.0021630740084219724 +0.003975136001827195 +0.0023051440075505525 +0.0023259980080183595 +0.004067563015269116 +0.002267898991703987 +0.004072083014762029 +0.002235413994640112 +0.002354319003643468 +0.0040606420079711825 +0.002204046002589166 +0.0023756640148349106 +0.004040654981508851 +0.002200983988586813 +0.002349969989154488 +0.004035031975945458 +0.002251867001177743 +0.0023703639744780958 +0.00400940899271518 +0.0021989560045767576 +0.0022921240015421063 +0.0041384380019735545 +0.002347462985198945 +0.002217750996351242 +0.004013388999737799 +0.0024741780071053654 +0.00395534501876682 +0.002140658994903788 +0.0023234490072354674 +0.004132429021410644 +0.002233002975117415 +0.002301525993971154 +0.00417073501739651 +0.002159350988222286 +0.0024386679870076478 +0.004015298996819183 +0.0021762010001111776 +0.0023246690107043833 +0.004099115991266444 +0.0022910670086275786 +0.0023167530016507953 +0.00401807198068127 +0.002307674993062392 +0.0022440859756898135 +0.0041099319932982326 +0.0023283449991140515 +0.004032144992379472 +0.002246674004709348 +0.0023087500012479722 +0.004130796005483717 +0.0022986099938862026 +0.0022926469973754138 +0.003933611995307729 +0.0021398950193542987 +0.002444277983158827 +0.004128195985686034 +0.002275690989335999 +0.0022863020130898803 +0.003982128022471443 +0.002440191019559279 +0.0023147669853642583 +0.00401607301319018 +0.0023213069944176823 +0.00418438998167403 +0.0022039280156604946 +0.0023509199963882565 +0.004037840000819415 +0.0023101420083548874 +0.002376337972236797 +0.004077978985151276 +0.0022103909868746996 +0.002377551019890234 +0.004035809979541227 +0.0022735620150342584 +0.0024781599931884557 +0.00400711499969475 +0.0022722280118614435 +0.004183548997389153 +0.002217584988102317 +0.0022503630025312304 +0.004071909992489964 +0.002328980976017192 +0.002200122020440176 +0.004120437020901591 +0.0022303599980659783 +0.002317289006896317 +0.004070191003847867 +0.002255567000247538 +0.0023461020027752966 +0.004200331983156502 +0.0023419629724230617 +0.0007254589872900397 +0.005431785015389323 +0.0008803399978205562 +0.0035916070046368986 +0.00400648798677139 +0.0024300370132550597 +0.004079861013451591 +0.0023610100033693016 +0.0021659159974660724 +0.0041172880155500025 +0.002323858003364876 +0.0022792259987909347 +0.004033709003124386 +0.0022666889999527484 +0.0009274329931940883 +0.005419523018645123 +0.002263780013890937 +0.002983851998578757 +0.0034942559723276645 +0.002237323991721496 +0.0022860350145492703 +0.0041649360209703445 +0.0008606440096627921 +0.003516865981509909 +0.004162252007517964 +0.002321111998753622 +0.004155674017965794 +0.00214769400190562 +0.0024248029803857207 +0.00401851098285988 +0.002063721010927111 +0.002402490994427353 +0.004140283999731764 +0.0023101499828044325 +0.004165555990766734 +0.0022459869796875864 +0.0022616249916609377 +0.002311793010449037 +0.00404573799460195 +0.00231917598284781 +0.004022406006697565 +0.0023291970137506723 +0.00222715298878029 +0.004190047009615228 +0.002170092018786818 +0.0023953280178830028 +0.004024031019071117 +0.002149103005649522 +0.002418624993879348 +0.0041031319997273386 +0.0022550150169990957 +0.002212138002505526 +0.004091181006515399 +0.002320163999684155 +0.0023693839902989566 +0.004017861996544525 +0.0022989470162428916 +0.004063736007083207 +0.0022556610056199133 +0.00234661198919639 +0.004038358019897714 +0.0021383099956437945 +0.002466734003974125 +0.0039879340038169175 +0.0022529910202138126 +0.002225508011179045 +0.004139654978644103 +0.002254147984785959 +0.0022809510119259357 +0.004065150016685948 +0.0022001070028636605 +0.0023976609809324145 +0.004002302972367033 +0.002328228991245851 +0.0022779550054110587 +0.004007277020718902 +0.0022636800131294876 +0.002329375973204151 +0.004058385005919263 +0.002266472001792863 +0.004127335007069632 +0.0022433249978348613 +0.0022869730019010603 +0.0041225509776268154 +0.0022382000170182437 +0.0022575529874302447 +0.004124149010749534 +0.002169282000977546 +0.0023656539851799607 +0.0029252039967104793 +0.0034403020108584315 +0.002351928997086361 +0.00401295701158233 +0.0022014489804860204 +0.00242499599698931 +0.0040649369766470045 +0.002299392013810575 +0.0040391260117758065 +0.002138092997483909 +0.002424980979412794 +0.00400684800115414 +0.002123216021573171 +0.0024109640216920525 +0.004119302990147844 +0.002163892990211025 +0.0023386109969578683 +0.00412886100821197 +0.0021550410019699484 +0.0023201730218715966 +0.004066002991748974 +0.002309278992470354 +0.004121564998058602 +0.0023274350096471608 +0.002225572010502219 +0.004065267014084384 +0.002233356994111091 +0.0022093939769547433 +0.004143094003666192 +0.0021763679978903383 +0.0022910199768375605 +0.00409484701231122 +0.00221078799222596 +0.0024147729855030775 +0.004181056981906295 +0.002219326008344069 +0.0024286669795401394 +0.003976948995841667 +0.0021256079780869186 +0.002448710991302505 +0.004055094002978876 +0.0023068759765010327 +0.003946803015423939 +0.0024268389970529824 +0.002364999003475532 +0.004117398988455534 +0.0022329880157485604 +0.0023638909915462136 +0.0041897819901350886 +0.0021149020176380873 +0.002290078002260998 +0.004201090021524578 +0.002228192985057831 +0.004031506017781794 +0.002286934992298484 +0.0022406740172300488 +0.004112910013645887 +0.00228311400860548 +0.002261849003843963 +0.0041117539803963155 +0.0022145189868751913 +0.0022876250150147825 +0.00413336101337336 +0.002134837006451562 +0.002354850003030151 +0.004017122002551332 +0.0021501209994312376 +0.0023250969825312495 +0.004121933976421133 +0.002137266012141481 +0.0023318069870583713 +0.00408875901484862 +0.002152903995011002 +0.002418360993033275 +0.004145524988416582 +0.002093924005748704 +0.0024807059962768108 +0.004024650988867506 +0.0022688340104650706 +0.004206653975415975 +0.0022798159916419536 +0.0021965459745842963 +0.0042906989983748645 +0.0021591020049527287 +0.0023523960262537003 +0.004123203019844368 +0.0022583399841096252 +0.002425409998977557 +0.00411140700452961 +0.0021236040047369897 +0.0023597490217071027 +0.004122209997149184 +0.0023200820141937584 +0.004219725989969447 +0.0022348320053424686 +0.0022510830021928996 +0.004160473996307701 +0.0021903410088270903 +0.0023815339955035597 +0.0041156039806082845 +0.0022963549999985844 +0.0031573470041621476 +0.0035498370125424117 +0.0023051570169627666 +0.0022696089872624725 +0.004032409022329375 +0.002442734985379502 +0.004107347020180896 +0.0022921569761820138 +0.0023052759934216738 +0.004137612006161362 +0.0022035410220269114 +0.00225657201372087 +0.004221791983582079 +0.0021865779999643564 +0.002390036010183394 +0.00405912401038222 +0.0022223790001589805 +0.0024391619954258204 +0.0040472289838362485 +0.002129822998540476 +0.004209139005979523 +0.0022698759858030826 +0.0023781770141795278 +0.00441606598906219 +0.002309485018486157 +0.0023111820046324283 +0.0042008719756267965 +0.0021798849920742214 +0.002407622989267111 +0.004173716006334871 +0.0022169800067786127 +0.0023744400241412222 +0.004112716997042298 +0.0022454499849118292 +0.004210916988085955 +0.002245208015665412 +0.002244555013021454 +0.004025850998004898 +0.0022540859936270863 +0.002342897991184145 +0.004183409007964656 +0.0021620589832309633 +0.0022794810065533966 +0.004133720009122044 +0.002317348000360653 +0.00229528101044707 +0.004029917006846517 +0.0022295730013865978 +0.002297450992045924 +0.004113687988137826 +0.0023031000164337456 +0.004100910999113694 +0.002258665015688166 +0.0022494209988508373 +0.004131838999455795 +0.002172487002098933 +0.002444657002342865 +0.0040217830101028085 +0.0022255460207816213 +0.002382670994848013 +0.004069862014148384 +0.0021552559919655323 +0.003192839998519048 +0.0032908959838096052 +0.0022184250119607896 +0.0024600450124125928 +0.003985156014095992 +0.0023465290141757578 +0.0040548130054958165 +0.0022597079805564135 +0.0022790529765188694 +0.004157332004979253 +0.002377491007791832 +0.0023769020044710487 +0.003979964007157832 +0.0023229340149555355 +0.0023860800138209015 +0.004049970972118899 +0.002201636991230771 +0.000957935000769794 +0.005368176003685221 +0.0021997279836796224 +0.0024140120076481253 +0.0038873229932505637 +0.0023516119981650263 +0.004204250988550484 +0.002196755987824872 +0.002391871006693691 +0.004217023000819609 +0.0021963139879517257 +0.0024024049926083535 +0.00405598699580878 +0.002199009992182255 +0.002362358005484566 +0.004033361008623615 +0.002147842023987323 +0.002479090995620936 +0.0040042010077741 +0.0021698260097764432 +0.0023903429973870516 +0.004029198025818914 +0.0021984339982736856 +0.004222092014970258 +0.0022407819924410433 +0.0023970330075826496 +0.003921800991520286 +0.0023006089904811233 +0.0022544410021509975 +0.004171022999798879 +0.002255388011690229 +0.002217756991740316 +0.00410536298295483 +0.002261682995595038 +0.002428452018648386 +0.004030639014672488 +0.002199003007262945 +0.0024291859881486744 +0.003969327983213589 +0.0022703619906678796 +0.002466594014549628 +0.004038546001538634 +0.0023073979828041047 +0.004078623984241858 +0.0022741490101907402 +0.0022849429806228727 +0.00391922498238273 +0.0023032169847283512 +0.002453299006447196 +0.00406483601545915 +0.002156687987735495 +0.0024149079981725663 +0.004089952009962872 +0.0022305140155367553 +0.002318268991075456 +0.003951389022404328 +0.002282574016135186 +0.00422498700208962 +0.00227714900393039 +0.0021687679982278496 +0.004094898991752416 +0.002393975999439135 +0.0022755429963581264 +0.003971128986449912 +0.0022193350014276803 +0.0009577840100973845 +0.005544879997614771 +0.002239718014607206 +0.0024380889954045415 +0.004047141992487013 +0.0022133940074127167 +0.0023695179843343794 +0.003949095989810303 +0.0023029599979054183 +0.00423216400668025 +0.002253970014862716 +0.002374037983827293 +0.004093903989996761 +0.0022181509993970394 +0.002279834996443242 +0.004101327009266242 +0.0021801620023325086 +0.002407255000434816 +0.004019203974166885 +0.002200582006480545 +0.0024655160086695105 +0.0039279600023292005 +0.002256542007671669 +0.002412597998045385 +0.003950423008063808 +0.0021571980032604188 +0.0043282220140099525 +0.0022514580050483346 +0.0023023489920888096 +0.004182014003163204 +0.0023627899936400354 +0.0022945230011828244 +0.004171004984527826 +0.002233638020697981 +0.002533549995860085 +0.004129454027861357 +0.002216875000158325 +0.004580562002956867 +0.0021148520172573626 +0.002563040005043149 +0.004226965014822781 +0.002537271997425705 +0.0024203349894378334 +0.004367479006759822 +0.0026416349865030497 +0.004343856009654701 +0.0023926190042402595 +0.002356156997848302 +0.004175139998551458 +0.0021855829982087016 +0.002413088019238785 +0.00427367101656273 +0.0021793500054627657 +0.0024226800014730543 +0.004025383008411154 +0.0023738729942124337 +0.0022971559956204146 +0.004013272002339363 +0.002246701013064012 +0.002240900998003781 +0.004060891980770975 +0.0023903950059320778 +0.004123594990232959 +0.0021385980071499944 +0.001115093007683754 +0.005478284991113469 +0.0021799779788125306 +0.002387423999607563 +0.004066143999807537 +0.0022038680035620928 +0.0023843119852244854 +0.004005380003945902 +0.0024209959956351668 +0.002144951984519139 +0.003978341002948582 +0.00223313900642097 +0.004108582012122497 +0.0022963320079725236 +0.002240033005364239 +0.004104045015992597 +0.0021847339812666178 +0.002442942000925541 +0.004143027996178716 +0.0022318189730867743 +0.0024226359964814037 +0.004064284003106877 +0.0022454220161307603 +0.0024922110023908317 +0.004024819005280733 +0.0022554040187969804 +0.0041362770134583116 +0.00229291501455009 +0.0021948649955447763 +0.0041398630128242075 +0.0022278329997789115 +0.002375937008764595 +0.004024221998406574 +0.002187762991525233 +0.002379971992922947 +0.004075447010109201 +0.0021798389789182693 +0.002324582019355148 +0.004117505013709888 +0.002169001003494486 +0.002439966017846018 +0.004065291985170916 +0.002258971973787993 +0.0023190559877548367 +0.004039272986119613 +0.0022648499871138483 +0.0042157439747825265 +0.00221481901826337 +0.002220819005742669 +0.004024160007247701 +0.0021467600017786026 +0.002379415003815666 +0.004106385022168979 +0.0022091649880167097 +0.002394333976553753 +0.004003081005066633 +0.0023423420207109302 +0.00233520200708881 +0.004123096994590014 +0.0021773149783257395 +0.0024298320058733225 +0.004081828985363245 +0.002296891005244106 +0.004104158986592665 +0.0022734180092811584 +0.0022613419860135764 +0.004137556010391563 +0.002150806976715103 +0.0024249179987236857 +0.00405195401981473 +0.0021608659881167114 +0.0023689530207775533 +0.003996054991148412 +0.002258575987070799 +0.0022957929759286344 +0.004233931977069005 +0.002335981000214815 +0.004199719987809658 +0.002238723012851551 +0.0021738859941251576 +0.004121333011426032 +0.0023610240023117512 +0.002354332013055682 +0.004384400002891198 +0.0021661469945684075 +0.002373204013565555 +0.0041056700283661485 +0.002286289003677666 +0.002394320006715134 +0.004042212007334456 +0.0023887110000941902 +0.00393741499283351 +0.0022250920010264963 +0.0023909889860078692 +0.004103754996322095 +0.0022650689934380352 +0.002225553005700931 +0.0041693010134622455 +0.0021944140025880188 +0.002388882014201954 +0.0039659189933445305 +0.0022620259842369705 +0.002257745014503598 +0.004111078975256532 +0.002119366981787607 +0.0024836009833961725 +0.004023921996122226 +0.00225404798402451 +0.0022625970013905317 +0.004079069971339777 +0.002234868996310979 +0.0024161369947250932 +0.004083965992322192 +0.0022198200167622417 +0.004206993005936965 +0.0023345539811998606 +0.0021498409914784133 +0.00402852101251483 +0.002210817998275161 +0.0023782509961165488 +0.004007075011031702 +0.002187663980294019 +0.002385097002843395 +0.004080251004779711 +0.002285952999955043 +0.0023793380241841078 +0.004002183995908126 +0.002239149995148182 +0.0023292280093301088 +0.004003262991318479 +0.002179686998715624 +0.004258496017428115 +0.002244495990453288 +0.0023375950113404542 +0.004084286018041894 +0.002248976001283154 +0.002257868996821344 +0.004060426988871768 +0.0021782359981443733 +0.0023846880067139864 +0.004024982015835121 +0.002257025014841929 +0.002390138019109145 +0.004084782995050773 +0.002218631998402998 +0.002383001003181562 +0.004008101008366793 +0.0021363870182540268 +0.004154041991569102 +0.002290361007908359 +0.002294153004186228 +0.004090784990694374 +0.0023243250034283847 +0.002116299991030246 +0.004182688018772751 +0.002459845010889694 +0.0022470429830718786 +0.004030332987895235 +0.002251644997159019 +0.002371715003391728 +0.004035591991851106 +0.0022714850201737136 +0.0023654039832763374 +0.004181645985227078 +0.0022529900015797466 +0.004039502993691713 +0.0022444400237873197 +0.0023179500130936503 +0.004084395011886954 +0.0021928790083620697 +0.0024774650228209794 +0.004122862999793142 +0.002210583013948053 +0.002370342001086101 +0.004063657019287348 +0.0023048199946060777 +0.0022855149873066694 +0.004042993008624762 +0.0022821809980086982 +0.0023298629967030138 +0.004019418003736064 +0.0022467540111392736 +0.002279669977724552 +0.004000924003776163 +0.002304067020304501 +0.002328096015844494 +0.004021681001177058 +0.0023301190230995417 +0.0039959710265975446 +0.002255597006296739 +0.002372127986745909 +0.003985064016887918 +0.0022157120110932738 +0.002402604994131252 +0.00402496600872837 +0.0023475410125683993 +0.002375832002144307 +0.003999278997071087 +0.002270473982207477 +0.004133870999794453 +0.0022259360121097416 +0.0022895130096003413 +0.00412205298198387 +0.0022094129817560315 +0.0023552540224045515 +0.004050207993714139 +0.0022957320034038275 +0.0021667150140274316 +0.004015910992166027 +0.002263060974655673 +0.00231171800987795 +0.004153971996856853 +0.0022191729804035276 +0.0023724419879727066 +0.004042209009639919 +0.0022442949994001538 +0.0024836570082698017 +0.0039700689958408475 +0.0025320439890492707 +0.004108804976567626 +0.002187180012697354 +0.0023782869975548238 +0.0021077900019008666 +0.0041067510028369725 +0.0023804820084478706 +0.00393584999255836 +0.002147101011360064 +0.002514179010177031 +0.004057323996676132 +0.0022440370230469853 +0.002286268019815907 +0.0040432719979435205 +0.0022021269833203405 +0.002342152001801878 +0.004104855994228274 +0.002257468004245311 +0.0023665259941481054 +0.003980312991188839 +0.002310659008799121 +0.002280854998389259 +0.004025177011499181 +0.0023514720087405294 +0.004070814000442624 +0.002169632993172854 +0.002421928016701713 +0.004092020011739805 +0.002190722996601835 +0.0023863169772084802 +0.004089652997208759 +0.0022228909947443753 +0.002341211977181956 +0.004178292991127819 +0.0023136030067689717 +0.0041436699975747615 +0.002218395995441824 +0.002284616988617927 +0.003990844008512795 +0.0025046360096894205 +0.002124178980011493 +0.004041334002977237 +0.0021959629957564175 +0.0023577859974466264 +0.004017536994069815 +0.0023154320078901947 +0.002268551994347945 +0.004050507995998487 +0.0023242309980560094 +0.0021720209915656596 +0.004085970023879781 +0.002311427000677213 +0.0023399130150210112 +0.003984615992521867 +0.0023754290014039725 +0.0039433210040442646 +0.0022437910083681345 +0.0022897659800946712 +0.004078236990608275 +0.0021942899911664426 +0.002351414004806429 +0.00405613798648119 +0.0021451170032378286 +0.0024450760101899505 +0.004031704011140391 +0.002257306012324989 +0.0022865190112497658 +0.004151069006184116 +0.002208214980782941 +0.002500782982679084 +0.004000216984422877 +0.0021399930119514465 +0.0023049100127536803 +0.0040497670124750584 +0.002362190978601575 +0.004122496990021318 +0.0021943890023976564 +0.002401121979346499 +0.00216176500543952 +0.004099215002497658 +0.0023068290029186755 +0.004092575021786615 +0.002280751010403037 +0.002189978986280039 +0.004083636013092473 +0.0021815840154886246 +0.0024108159996103495 +0.00404330700985156 +0.0021914450044278055 +0.0024071040097624063 +0.004065902001457289 +0.0022598210198339075 +0.004119908990105614 +0.002268120995722711 +0.0022491979761980474 +0.0040835849940776825 +0.0022304949816316366 +0.0024506699992343783 +0.0039067369943950325 +0.0022253869974520057 +0.002321263018529862 +0.004060672014020383 +0.0020916950015816838 +0.00331478999578394 +0.0034667420259211212 +0.002577270002802834 +0.004456296999705955 +0.002416437986539677 +0.002380107995122671 +0.004067750996910036 +0.0023031129967421293 +0.002255424013128504 +0.0040986819949466735 +0.002268270996864885 +0.002356362994760275 +0.004064449982251972 +0.0021499620052054524 +0.0024847559980116785 +0.002833514998201281 +0.003506241977447644 +0.004106025997316465 +0.002245968993520364 +0.0022996049956418574 +0.004117454023798928 +0.002120616991305724 +0.0024245450040325522 +0.004050158022437245 +0.0020858350035268813 +0.002479755989043042 +0.004038656014017761 +0.0022296200040727854 +0.0023193130036816 +0.004215688997646794 +0.002204391988925636 +0.0023231520026456565 +0.004151142988121137 +0.0022022810007911175 +0.004106209002202377 +0.0022457570012193173 +0.0022708709875587374 +0.0041479989886283875 +0.0023409219866152853 +0.002246410003863275 +0.004045950016006827 +0.002278265979839489 +0.00219421400106512 +0.004091378999873996 +0.0021740449883509427 +0.002454342000419274 +0.004073353979038075 +0.0020776430028490722 +0.0024932490196079016 +0.004033503995742649 +0.002232277998700738 +0.002333090000320226 +0.004014785023173317 +0.0022464569774456322 +0.004171031003352255 +0.0022172789904288948 +0.0022998579952400178 +0.004038244020193815 +0.0022497359896078706 +0.0022510929848067462 +0.0040808630001265556 +0.002240650006569922 +0.002256798994494602 +0.0041269619832746685 +0.002221782982815057 +0.002325245994143188 +0.0041799510072451085 +0.002179036004235968 +0.0024439370026811957 +0.003997219988377765 +0.0022188090078998357 +0.004192579013761133 +0.0023813229927327484 +0.002255366009194404 +0.004003434005426243 +0.0023383450170513242 +0.002261082991026342 +0.0040036280115600675 +0.0022906819940544665 +0.0022922309872228652 +0.004026946000522003 +0.0021994260023348033 +0.002339484984986484 +0.004153121990384534 +0.00221499300096184 +0.0024277580087073147 +0.00398055900586769 +0.0021433829970192164 +0.004303431982407346 +0.0022621050011366606 +0.0022569220163859427 +0.004085722990566865 +0.0025131409929599613 +0.0021366399887483567 +0.004107550019398332 +0.0021985929924994707 +0.0023642979795113206 +0.004021723027108237 +0.002186286001233384 +0.0023685789783485234 +0.004172348999418318 +0.0021403610007837415 +0.0024201000051107258 +0.004075186006957665 +0.002186464989790693 +0.0025761949946172535 +0.004036629979964346 +0.002453966997563839 +0.004131448018597439 +0.002272348996484652 +0.002207902987720445 +0.00413426200975664 +0.00216019299114123 +0.002350875991396606 +0.00415554700884968 +0.0021671220019925386 +0.0024302539823111147 +0.003994012018665671 +0.002174977009417489 +0.004078333004144952 +0.0022033239947631955 +0.0022549529967363924 +0.004234113002894446 +0.002240433997940272 +0.0022434389975387603 +0.004107350978301838 +0.00217614698340185 +0.002324847999261692 +0.004093410010682419 +0.0021422479767352343 +0.0023911860189400613 +0.00409552498604171 +0.0022250509937293828 +0.003134919999865815 +0.0033465100277680904 +0.002213755011325702 +0.0024435240193270147 +0.003972483973484486 +0.0021242499933578074 +0.002356423996388912 +0.004141651006648317 +0.002234599000075832 +0.002361492981435731 +0.003998838015832007 +0.002247158990940079 +0.0041699370194692165 +0.002179472998250276 +0.002333358017494902 +0.004049908980960026 +0.002231836988357827 +0.002291718003107235 +0.004099777986994013 +0.002241143025457859 +0.002375963988015428 +0.004054835997521877 +0.0021526490163523704 +0.002422163001028821 +0.004010053991805762 +0.0021943759929854423 +0.0031571309955324978 +0.0033130410010926425 +0.0023475289926864207 +0.004037599981529638 +0.002266959985718131 +0.0021950369991827756 +0.004092508024768904 +0.0021029639756307006 +0.0024488630006089807 +0.004247091012075543 +0.002309489995241165 +0.002227281016530469 +0.004135622002650052 +0.002190811006585136 +0.0024119900190271437 +0.003960471978643909 +0.002473323023878038 +0.0008055070065893233 +0.0052676530031021684 +0.0022798730060458183 +0.0041138880187645555 +0.0022657049994450063 +0.002308018010808155 +0.003988372016465291 +0.0021522140013985336 +0.0024364459968637675 +0.004181183991022408 +0.0022005430073477328 +0.002412481000646949 +0.003990794997662306 +0.0021613980061374605 +0.002450172003591433 +0.004046718997415155 +0.0022521069913636893 +0.0029797460010740906 +0.003322773991385475 +0.0023312210105359554 +0.004178173985565081 +0.002238160988781601 +0.0022702979913447052 +0.00408733100630343 +0.002094866009429097 +0.002405940991593525 +0.00411416101269424 +0.0022334159875754267 +0.0023332480050157756 +0.0041432199941482395 +0.002128299995092675 +0.0024274059978779405 +0.004029244999401271 +0.0022191879979800433 +0.0023780240153428167 +0.004014510021079332 +0.002239595021819696 +0.004217522975523025 +0.002265474002342671 +0.002329751994693652 +0.004076718003489077 +0.0022875140130054206 +0.002261672983877361 +0.004009433992905542 +0.0021604459907393903 +0.002399481018073857 +0.004050271993037313 +0.0021500959992408752 +0.0024638649774715304 +0.004051817988511175 +0.002224703028332442 +0.0024034350062720478 +0.0039381220121867955 +0.002297080005519092 +0.0024139620072674006 +0.004022667999379337 +0.0023639930004719645 +0.0040092350100167096 +0.0022962770017329603 +0.002456588001223281 +0.003859863994875923 +0.0022165380069054663 +0.0023009339929558337 +0.004141191981034353 +0.0021988349908497185 +0.002411007008049637 +0.00393908002297394 +0.0022706559975631535 +0.0024601549957878888 +0.0040521660121157765 +0.0021758300135843456 +0.002418177988147363 +0.004203507007332519 +0.002241283975308761 +0.004100341990124434 +0.0022347670164890587 +0.0023835460015106946 +0.004017541999928653 +0.0022212239855434746 +0.0023381840146612376 +0.004033484990941361 +0.002164950012229383 +0.0024387509911321104 +0.004030356009025127 +0.0021821639966219664 +0.0024196329759433866 +0.00397402499220334 +0.002282955014379695 +0.002534652012400329 +0.004002219997346401 +0.002216648979810998 +0.0024125099880620837 +0.003912242013029754 +0.0023547850141767412 +0.004142593999858946 +0.002192778018070385 +0.002372124989051372 +0.004143252008361742 +0.0021461499854922295 +0.002409734996035695 +0.00397079301183112 +0.0022571959998458624 +0.0024636210000608116 +0.003946529992390424 +0.002252875012345612 +0.0024229359987657517 +0.0028171490121167153 +0.0036362289974931628 +0.0008025980205275118 +0.0053550559969153255 +0.0023274449922610074 +0.00414843499311246 +0.0021651010029017925 +0.00240543601103127 +0.004103690996998921 +0.0022066039964556694 +0.0023668799840379506 +0.004104188003111631 +0.0022139929933473468 +0.0024219269980676472 +0.00398204501834698 +0.0022676580119878054 +0.0023867610143497586 +0.004072498006280512 +0.0022625720012001693 +0.00242092800908722 +0.0038891010044608265 +0.0023793599975761026 +0.003982089983765036 +0.002252948994282633 +0.0023872599995229393 +0.0040667699940968305 +0.0022285649902187288 +0.0023233350075315684 +0.004019813990453258 +0.0023376680037472397 +0.002503589988918975 +0.0040705049759708345 +0.0021937380079180002 +0.0024079320137389004 +0.003989526012446731 +0.002349322981899604 +0.0023780579795129597 +0.00395068500074558 +0.0024110380036290735 +0.0041686870099511 +0.002193746011471376 +0.0024338380026165396 +0.003957486973376945 +0.002240755973616615 +0.002411718014627695 +0.004064328997628763 +0.0021749690058641136 +0.0024320950033143163 +0.004055463999975473 +0.0021961950114928186 +0.0023368819965980947 +0.0041684059833642095 +0.0008889430027920753 +0.002372439979808405 +0.005380037997383624 +0.002196068991906941 +0.0041022649966180325 +0.0021293630125001073 +0.002453408989822492 +0.004074964992469177 +0.002099468983942643 +0.002489097008947283 +0.003950971004087478 +0.0023377109901048243 +0.004063264990691096 +0.002412201021797955 +0.0021974720002617687 +0.0024378699890803546 +0.003969310986576602 +0.002282763976836577 +0.002379037003265694 +0.0039197799924295396 +0.0026270430244039744 +0.004153172980295494 +0.002176951995352283 +0.0023831980070099235 +0.004012969002360478 +0.002240074973087758 +0.002463246986735612 +0.00406338699394837 +0.002225901000201702 +0.0023622690059710294 +0.003985629009548575 +0.002233134990092367 +0.004226780001772568 +0.0022541350044775754 +0.0021902619919274002 +0.002312319993507117 +0.004076067009009421 +0.002428395993774757 +0.00398327800212428 +0.002191804989706725 +0.0024366120051126927 +0.003989321005064994 +0.0022205979912541807 +0.002478693990269676 +0.004008820978924632 +0.002189586026361212 +0.002455231995554641 +0.003948419005610049 +0.0023447679996024817 +0.004118672979529947 +0.0022588119900319725 +0.002242513990495354 +0.004208814993035048 +0.0022349630016833544 +0.0023260169837158173 +0.004049741022754461 +0.0022989069984760135 +0.002306177979335189 +0.004039721010485664 +0.0021796190121676773 +0.0024373040068894625 +0.004110253998078406 +0.002205505996244028 +0.0024481820000801235 +0.003953278996050358 +0.002409406006336212 +0.004065230023115873 +0.002248392003821209 +0.0022349839855451137 +0.004177411028649658 +0.0021441720018628985 +0.0023916270001791418 +0.004106709006009623 +0.002242525981273502 +0.002258171996800229 +0.004118621989618987 +0.002176237991079688 +0.0024711509759072214 +0.003962191985920072 +0.0022239919926505536 +0.0024183840141631663 +0.003959105000831187 +0.002375024021603167 +0.003944730007788166 +0.0023680680023971945 +0.002249815996037796 +0.004179684008704498 +0.0022335550165735185 +0.0022091440041549504 +0.00413601499167271 +0.0021386519947554916 +0.0024355589994229376 +0.0040208889986388385 +0.002202862990088761 +0.0023685570049565285 +0.0040674790216144174 +0.002144124999176711 +0.0024463979934807867 +0.004104794003069401 +0.002326632005861029 +0.004179903015028685 +0.002294406993314624 +0.0021992639813106507 +0.004182770993793383 +0.0022546100080944598 +0.002264840994030237 +0.004080479993717745 +0.0022533349983859807 +0.002231484017102048 +0.004078634985489771 +0.0021837660169694573 +0.0022619329974986613 +0.004196966008748859 +0.002097867982229218 +0.002435925998724997 +0.003986855008406565 +0.0021911229996476322 +0.0023584429873153567 +0.004022638022433966 +0.002333587995963171 +0.004230198013829067 +0.0021593870187643915 +0.0023291889810934663 +0.0041268200147897005 +0.0024112150131259114 +0.0022618410002905875 +0.003978350985562429 +0.002131369023118168 +0.002465964003931731 +0.004030361014883965 +0.0021720700024161488 +0.002378525008680299 +0.0040546640229877084 +0.00233800002024509 +0.004210918996250257 +0.0020783930085599422 +0.0022690430050715804 +0.0042375330231152475 +0.0022429359960369766 +0.0023272469989024103 +0.004144898004597053 +0.0021451800130307674 +0.0024322550161741674 +0.0043111430131830275 +0.0022422690235543996 +0.0023757650051265955 +0.004103028011741117 +0.002252481004688889 +0.002401195000857115 +0.003991444013081491 +0.0023089220048859715 +0.0041795790020842105 +0.002250379999168217 +0.002286522008944303 +0.004073579999385402 +0.002326384012121707 +0.002368595014559105 +0.00423047598451376 +0.0021869399934075773 +0.002420087985228747 +0.003976481006247923 +0.002443386008962989 +0.002348776994040236 +0.00414750401978381 +0.0023150690249167383 +0.004027554008644074 +0.002211334998719394 +0.002379374986048788 +0.004187698010355234 +0.0021479300048667938 +0.0023305689974222332 +0.004095997981494293 +0.002094998984830454 +0.002397026983089745 +0.0041033540037460625 +0.002240061992779374 +0.0023755659931339324 +0.004057089012349024 +0.002229991980129853 +0.002357574994675815 +0.004266800999175757 +0.0023293129925150424 +0.004122329002711922 +0.0023168240149971098 +0.0023775809968356043 +0.00404562201583758 +0.0021414259972516447 +0.0024275860050693154 +0.004066174995386973 +0.0021936010161880404 +0.002395266987150535 +0.004038372018840164 +0.002153481007553637 +0.002293552999617532 +0.004141073004575446 +0.002227446995675564 +0.0023572880018036813 +0.00399066400132142 +0.0023640390136279166 +0.00413602200569585 +0.002291031996719539 +0.0022329360072035342 +0.0041578620148357 +0.0022275540104601532 +0.002400147990556434 +0.004052722011692822 +0.002190753002651036 +0.0023928979935590178 +0.00406929399468936 +0.002223959018010646 +0.0023512720072176307 +0.004136770003242418 +0.0022317710099741817 +0.0023193109955172986 +0.0038854489976074547 +0.0009806059824768454 +0.0036164460179861635 +0.004056866018800065 +0.002221886010374874 +0.004155821981839836 +0.002247500990051776 +0.002286427014041692 +0.004071273986482993 +0.002137650008080527 +0.00243023902294226 +0.004025764006655663 +0.0021657809847965837 +0.002407007006695494 +0.004050121991895139 +0.002176357986172661 +0.002456873015034944 +0.003963586990721524 +0.002324714994756505 +0.002213638013927266 +0.0041570820030756295 +0.0022244330029934645 +0.004165093996562064 +0.0022187810100149363 +0.002321998996194452 +0.00413632599520497 +0.0022237850062083453 +0.002368622983340174 +0.004031849006423727 +0.002187207981478423 +0.0023127890017349273 +0.0041482599917799234 +0.0021919439896009862 +0.0023948560119606555 +0.004010097996797413 +0.0022188260045368224 +0.0023397059994749725 +0.0042412350012455136 +0.0010722829902078956 +0.003653255000244826 +0.00403846800327301 +0.0022235980140976608 +0.004173208988504484 +0.0020981959823984653 +0.0024142219917848706 +0.004044360015541315 +0.0021347060101106763 +0.0023853790189605206 +0.004039891995489597 +0.0022157320054247975 +0.002411449997453019 +0.0040517910092603415 +0.0022545929823536426 +0.002288179995957762 +0.004061788000399247 +0.0021920430008322 +0.002447057020617649 +0.004114120994927362 +0.002129068016074598 +0.004109233996132389 +0.002173315006075427 +0.0023939799866639078 +0.0023570310149807483 +0.003907797014107928 +0.002461222989950329 +0.003958104003686458 +0.0022194059856701642 +0.0023747139784973115 +0.004029628005810082 +0.0023056019854266196 +0.0023075130011420697 +0.0040217110072262585 +0.002226206997875124 +0.0023181290016509593 +0.004054680000990629 +0.0022424499911721796 +0.0029959260136820376 +0.00339043399435468 +0.002319371997145936 +0.004080311016878113 +0.0022740499989595264 +0.002304032997926697 +0.004070744995260611 +0.0021685629908461124 +0.002434386988170445 +0.004023518995381892 +0.0022315919923130423 +0.002336372999707237 +0.004029692994663492 +0.0023131890047807246 +0.002306387003045529 +0.0040750670013949275 +0.0022307390172500163 +0.0023297250154428184 +0.004084218991920352 +0.002154684974811971 +0.002330461982637644 +0.004012736986624077 +0.002338624995900318 +0.004078736004885286 +0.002255357976537198 +0.002344625012483448 +0.004011192999314517 +0.0022943969815969467 +0.002180865005357191 +0.004126569983782247 +0.0022321880096569657 +0.002399191987933591 +0.004041020001750439 +0.0022625779965892434 +0.0023730400134809315 +0.004074058000696823 +0.002241749025415629 +0.0023414160241372883 +0.0040595199970994145 +0.002368532004766166 +0.0021694920142181218 +0.00400912098120898 +0.002353330986807123 +0.004063750995555893 +0.0021375310025177896 +0.0023927540169097483 +0.004063555010361597 +0.0022564230021089315 +0.002384699007961899 +0.004038946994114667 +0.0023253159888554364 +0.002229481004178524 +0.004125685023609549 +0.0021956629934720695 +0.002329462004126981 +0.004017330007627606 +0.0023361750063486397 +0.004083495994564146 +0.002324156987015158 +0.0022036959999240935 +0.0041003430087585 +0.0022467620146926492 +0.0024225809902418405 +0.0039017889939714223 +0.002172048989450559 +0.002438619005260989 +0.004066264984430745 +0.0022216509969439358 +0.0023812419967725873 +0.004045705019962043 +0.0022593239846173674 +0.0023097009980119765 +0.00396186500438489 +0.0022665059950668365 +0.0022961430076975375 +0.003989477991126478 +0.0022657480149064213 +0.004098307981621474 +0.0022442280023824424 +0.0023040290107019246 +0.004091382987098768 +0.0022518409823533148 +0.0023480200034100562 +0.00401111098472029 +0.002340406004805118 +0.002221638016635552 +0.004057072015712038 +0.00221759601845406 +0.0023971239861566573 +0.003986968979006633 +0.0022335090034175664 +0.00241344200912863 +0.004255549982190132 +0.002168375998735428 +0.002417945011984557 +0.004085621010744944 +0.002335413999389857 +0.004099113983102143 +0.002199471986386925 +0.0024484489986207336 +0.003937500005122274 +0.0023317690065596253 +0.0024523879983462393 +0.00402861600741744 +0.0022735539823770523 +0.002316472993697971 +0.004052558011608198 +0.0022503150103148073 +0.0023104109859559685 +0.004072308976901695 +0.002307749993633479 +0.002318291022675112 +0.004085746011696756 +0.0023339279869105667 +0.0021795289940200746 +0.004073773015988991 +0.0023915869824122638 +0.004028149996884167 +0.0022661239781882614 +0.002319871011422947 +0.004065929999342188 +0.002289080002810806 +0.0023210219806060195 +0.004070491995662451 +0.002280807006172836 +0.0023144269944168627 +0.004072003997862339 +0.0021957680000923574 +0.0023299830208998173 +0.004078050988027826 +0.002357499994104728 +0.004022231005365029 +0.0022627710131928325 +0.0023457359930034727 +0.0040675170021131635 +0.002232058992376551 +0.0023319879837799817 +0.0040274999919347465 +0.0022398949950002134 +0.002387524989899248 +0.00404156997683458 +0.0022816979908384383 +0.0023317160084843636 +0.004037532024085522 +0.002262545982375741 +0.002322776010259986 +0.004031970020150766 +0.0022236829972825944 +0.002379477984504774 +0.004096548014786094 +0.0022849740053061396 +0.004094571981113404 +0.0022750459902454168 +0.0023581989808008075 +0.0038608759932685643 +0.002203064999775961 +0.002400843019131571 +0.004049551993375644 +0.002253951010061428 +0.0023144769947975874 +0.004106998996576294 +0.002239480003481731 +0.0023335230071097612 +0.004068601003382355 +0.0022537900076713413 +0.0022668089950457215 +0.004046549991471693 +0.002407641994068399 +0.003967864002333954 +0.0023205890029203147 +0.0022880510077811778 +0.004078343976289034 +0.002165868994779885 +0.0024302479869220406 +0.004108899011043832 +0.0022625190031249076 +0.0024078749993350357 +0.0042011759942397475 +0.002137095987563953 +0.0023412439913954586 +0.004005783994216472 +0.0024109069781843573 +0.004038693004986271 +0.002289159019710496 +0.002315395016921684 +0.004138421994866803 +0.002153530018404126 +0.002354291995288804 +0.004111334012122825 +0.0021958069992251694 +0.0024214409932028502 +0.004062399995746091 +0.0022504049993585795 +0.002365068008657545 +0.004056578996824101 +0.00224671300384216 +0.002335862984182313 +0.004035617981571704 +0.002261621004436165 +0.0022884969948790967 +0.004013297002529725 +0.002352195995626971 +0.00406761298654601 +0.002218059991719201 +0.002311349002411589 +0.004056761012179777 +0.0021690969879273325 +0.002469422994181514 +0.0040134470036718994 +0.00222185900202021 +0.002350769005715847 +0.004064834996825084 +0.0023554619983769953 +0.002244739996967837 +0.004077130986843258 +0.0022328270133584738 +0.002315877005457878 +0.004003132024081424 +0.002256843989016488 +0.002244537987280637 +0.004138836986385286 +0.0023499660019297153 +0.00404959698789753 +0.002230675978353247 +0.002350446011405438 +0.004047400987474248 +0.00221934900037013 +0.0010898059990722686 +0.005267161002848297 +0.0022090720012784004 +0.0023904199770186096 +0.004023315996164456 +0.0023697270080447197 +0.0022737069812137634 +0.004021578002721071 +0.002295689017046243 +0.004112422990147024 +0.002253124024719 +0.0022692919883411378 +0.0022631780011579394 +0.0040109530091285706 +0.002446961007080972 +0.003941668983316049 +0.0021907849877607077 +0.0023976080119609833 +0.004246362019330263 +0.0021983920014463365 +0.0024287340056616813 +0.004049615003168583 +0.0022398089931812137 +0.002308160997927189 +0.004044582019560039 +0.002277630992466584 +0.004106728010810912 +0.002265042014187202 +0.0022659209789708257 +0.00234891998115927 +0.00400423098471947 +0.0024146270006895065 +0.0039959269925020635 +0.0022489439870696515 +0.002423288009595126 +0.0039087899785954505 +0.0022912670101504773 +0.0024100099981296808 +0.004040480009280145 +0.0022691919875796884 +0.0023571600031573325 +0.00407473900122568 +0.0021529499790631235 +0.002332860982278362 +0.004002033005235717 +0.0022754259989596903 +0.002282166009536013 +0.004011108016129583 +0.0023527300218120217 +0.0022348070051521063 +0.004122899001231417 +0.0023076279903762043 +0.0010665139998309314 +0.005209791997913271 +0.0023955229844432324 +0.004084745014552027 +0.002240591013105586 +0.0023447400017175823 +0.004056086007039994 +0.002254623017506674 +0.0023440869990736246 +0.004047919996082783 +0.002253957005450502 +0.0023291489924304187 +0.004008094983873889 +0.001072415994713083 +0.003526340995449573 +0.004205154022201896 +0.002451453998219222 +0.00396384100895375 +0.0023284459894057363 +0.0023500399838667363 +0.00402820500312373 +0.0022227889858186245 +0.002347456000279635 +0.0041931069863494486 +0.002122163015883416 +0.002308987983269617 +0.004034086014144123 +0.0022543719969689846 +0.0022610340092796832 +0.00396494401502423 +0.0023019070213194937 +0.004127976979361847 +0.0022474520083051175 +0.002292844990734011 +0.0021370199974626303 +0.00404607699601911 +0.0025883979978971183 +0.0038921140076126903 +0.0022199399827513844 +0.002344689011806622 +0.004130501009058207 +0.0021413590002339333 +0.0024014770169742405 +0.004051919997436926 +0.0022614310146309435 +0.0023386559914797544 +0.004073393996804953 +0.0021617659949697554 +0.0024294400063809007 +0.004071382980328053 +0.0023270919919013977 +0.004027320013847202 +0.0022836540010757744 +0.0023318879830185324 +0.0040618030179757625 +0.0022674089996144176 +0.002326969988644123 +0.0040520550101064146 +0.0021886469912715256 +0.002407187013886869 +0.004056262987433001 +0.0022787729976698756 +0.002364667016081512 +0.003989258984802291 +0.0022752319928258657 +0.002313011995283887 +0.0040561660134699196 +0.002301286003785208 +0.0023033829929772764 +0.0040207749989349395 +0.002456415008055046 +0.003998891013907269 +0.002282681001815945 +0.0022786500048823655 +0.004036070982692763 +0.0022101109789218754 +0.002427207014989108 +0.0040012320096138865 +0.002234334999229759 +0.0023077419900801033 +0.00405330301146023 +0.002245253010187298 +0.0023559209948871285 +0.002848479023668915 +0.0034570450079627335 +0.002259094995679334 +0.004023940011393279 +0.0023091549810487777 +0.004038995015434921 +0.0022734779922757298 +0.002296604012371972 +0.004008079005870968 +0.0021838020184077322 +0.002450697007589042 +0.004069415008416399 +0.0022213679912965745 +0.0023590830096509308 +0.004083951993379742 +0.00229214399587363 +0.004159239993896335 +0.0021663809893652797 +0.00229153799591586 +0.0023581660061609 +0.004093352996278554 +0.0023408459965139627 +0.0042063310102093965 +0.0023507719743065536 +0.0024715470208320767 +0.004149004002101719 +0.002294301986694336 +0.0023083680134732276 +0.004465343023184687 +0.002355025993892923 +0.004309167008614168 +0.0025424330087844282 +0.0023802069772500545 +0.002517651009839028 +0.003946095006540418 +0.0024738799838814884 +0.004091832000995055 +0.0022064940130803734 +0.0023218070273287594 +0.00405134801985696 +0.002353538991883397 +0.004113232018426061 +0.0022863949998281896 +0.0022435790160670877 +0.004241985996486619 +0.002123876998666674 +0.0024042889999691397 +0.004123966995393857 +0.0020180159772280604 +0.002436739014228806 +0.004183889017440379 +0.0021046759793534875 +0.0024288050190079957 +0.004103983985260129 +0.0022453260025940835 +0.0030064820020925254 +0.003317972004879266 +0.0022663679847028106 +0.0022843549959361553 +0.0041025649989023805 +0.0021462909935507923 +0.0042344669927842915 +0.002131787972757593 +0.0023764839861541986 +0.004081955994479358 +0.0022371610102709383 +0.002312830009032041 +0.004238954978063703 +0.0020961270201951265 +0.0023455669870600104 +0.004131733992835507 +0.002244311006506905 +0.002282125991769135 +0.004089424997800961 +0.0022853340196888894 +0.002443869976559654 +0.0040097860037349164 +0.0021630800038110465 +0.004323080996982753 +0.002311496005859226 +0.002133970003342256 +0.004155937000177801 +0.0021133669943083078 +0.0024207319947890937 +0.004088501998921856 +0.002190299011999741 +0.0024457740073557943 +0.004074518015841022 +0.002141759992809966 +0.0024824910215102136 +0.004078116005985066 +0.002212954976130277 +0.002410017972579226 +0.004045383015181869 +0.0023814599844627082 +0.003974321996793151 +0.002416047005681321 +0.002085032989270985 +0.004026971000712365 +0.0021331240131985396 +0.002436751005006954 +0.004053762997500598 +0.0022091860009822994 +0.002362252998864278 +0.004154402995482087 +0.0021192689891904593 +0.002347250992897898 +0.004117034986848012 +0.0009638570190872997 +0.0037080839974805713 +0.0042370430019218475 +0.002450430009048432 +0.004085021995706484 +0.0022264349972829223 +0.002250756020657718 +0.0040974529983941466 +0.002146309008821845 +0.0024381969997193664 +0.004082544997800142 +0.0022126959811430424 +0.002410320012131706 +0.004092077986570075 +0.002184292010497302 +0.0023769999970681965 +0.004096715012565255 +0.0022499370097648352 +0.0041827940149232745 +0.0023016109771560878 +0.00229412000044249 +0.0041944450058508664 +0.0020818829943891615 +0.0023492510081268847 +0.004159158997936174 +0.0021577209990937263 +0.0023434910108335316 +0.00409561101696454 +0.0023413669841829687 +0.002367840992519632 +0.004157913994276896 +0.002049431001069024 +0.0023346840171143413 +0.004216672998154536 +0.000891016999958083 +0.003564242011634633 +0.004143166996072978 +0.0022864929924253374 +0.004131982015678659 +0.00213614699896425 +0.0024722979869693518 +0.0040019820153247565 +0.002196524990722537 +0.0024769460142124444 +0.004239483008859679 +0.0021414639777503908 +0.0024001049750950187 +0.0040923599735833704 +0.0021972509857732803 +0.004291421006200835 +0.0022303010046016425 +0.0021888510091230273 +0.004311344004236162 +0.0020643490133807063 +0.0023105099971871823 +0.004029674018966034 +0.002115222974680364 +0.002451623004162684 +0.004137737996643409 +0.0023073649790603667 +0.0023894949990790337 +0.003953131003072485 +0.0021942019811831415 +0.00232731198775582 +0.0041312690009362996 +0.0021794320200569928 +0.004189180996036157 +0.0021744639961980283 +0.002375774987740442 +0.004025883012218401 +0.0022445610084105283 +0.002244959003292024 +0.00413119699805975 +0.002170557010686025 +0.002328242000658065 +0.004085655004018918 +0.002186981000704691 +0.002327889989828691 +0.004115935007575899 +0.0022093160077929497 +0.002459354989696294 +0.004025050991913304 +0.0021995909919496626 +0.002402793994406238 +0.004012309014797211 +0.002229150995844975 +0.004086483997525647 +0.0023076090146787465 +0.002186242025345564 +0.004216847999487072 +0.0022459519968833774 +0.002286515024024993 +0.004067502013640478 +0.002177023998228833 +0.002419967990135774 +0.004029948991956189 +0.002194268978200853 +0.002347510016988963 +0.004088766989298165 +0.00217661599162966 +0.0024486019974574447 +0.004007483017630875 +0.0023077189980540425 +0.004017085011582822 +0.002435128000797704 +0.002276583982165903 +0.004170202009845525 +0.0022293330112006515 +0.0022073040017858148 +0.004142238991335034 +0.002183931996114552 +0.0024223559885285795 +0.004003269976237789 +0.002284755988512188 +0.0022863330086693168 +0.00405530899297446 +0.002187024016166106 +0.002277413004776463 +0.004140318982535973 +0.002197705995058641 +0.002410727000096813 +0.0040801849972922355 +0.002188532002037391 +0.0042082009895239025 +0.002237487002275884 +0.0022290560009423643 +0.004151906992774457 +0.0023407849948853254 +0.0022345100005622953 +0.004142076009884477 +0.002251944999443367 +0.002321097010280937 +0.004060132021550089 +0.0021780429815407842 +0.002347528003156185 +0.0041014140006154776 +0.002235451975138858 +0.002416862000245601 +0.002838574000634253 +0.0033462719875387847 +0.0010347939969506115 +0.005312686989782378 +0.002231655002105981 +0.004137587005971 +0.0022183920082170516 +0.0022361860028468072 +0.004148392006754875 +0.0022598570212721825 +0.002276554994750768 +0.0041049550054594874 +0.0022203650150913745 +0.0024154999991878867 +0.00403533797361888 +0.002166839985875413 +0.002378718985710293 +0.004105450992938131 +0.0021855650120414793 +0.002416527015157044 +0.00396839901804924 +0.002234496991150081 +0.00414001801982522 +0.0022854290145915 +0.002206874021794647 +0.004159219999564812 +0.0023813439765945077 +0.0022490780102089047 +0.004020416992716491 +0.00225276401033625 +0.0024098859867081046 +0.004102984006749466 +0.002202062983997166 +0.0025211970205418766 +0.004099632991710678 +0.0021433930087368935 +0.0011816149926744401 +0.005171413999050856 +0.0021919209975749254 +0.0042481459968257695 +0.0021610459953080863 +0.0022113160230219364 +0.004200572002446279 +0.0022274399816524237 +0.0022813620162196457 +0.004103680985281244 +0.002168642997276038 +0.0023513659834861755 +0.004108591005206108 +0.0021971300011500716 +0.0009025539911817759 +0.005441326007712632 +0.0021997290023136884 +0.0023764890211168677 +0.00407204800285399 +0.0021636399906128645 +0.0023100299877114594 +0.004179251991445199 +0.0022452339762821794 +0.004212444007862359 +0.00225784900248982 +0.0022147010022308677 +0.004121306992601603 +0.0022553560265805572 +0.002290748991072178 +0.004041319014504552 +0.002147053019143641 +0.0024073199892882258 +0.004044554982101545 +0.0021686319960281253 +0.002444305981043726 +0.004043199995066971 +0.002173442975617945 +0.002393069997197017 +0.004079745005583391 +0.002145117992768064 +0.0024406420125160366 +0.004019675980089232 +0.0021998089796397835 +0.0041514420008752495 +0.0022266830201260746 +0.0022037950111553073 +0.004139500000746921 +0.0022082619834691286 +0.002205046999733895 +0.004134857008466497 +0.0021932099771220237 +0.002398821001406759 +0.004050479008583352 +0.00218278297688812 +0.0024285919789690524 +0.00406800297787413 +0.0021631880081258714 +0.0024606490042060614 +0.004049635987030342 +0.0021689319983124733 +0.0024678719928488135 +0.003921675990568474 +0.0022530080168507993 +0.004140630015172064 +0.002184223005315289 +0.002440592012135312 +0.00412058099755086 +0.0021397969976533204 +0.0024094710242934525 +0.004060053994180635 +0.00216317200101912 +0.0024473820230923593 +0.0040415829862467945 +0.0022467339877039194 +0.0023215739929582924 +0.004022820998216048 +0.0022282489808276296 +0.0024828890163917094 +0.004011425015050918 +0.0023056079808156937 +0.00395237299380824 +0.0022613760083913803 +0.0023807259858585894 +0.004098310018889606 +0.002271216013468802 +0.0022306519967969507 +0.004508012993028387 +0.0021772710024379194 +0.002559565007686615 +0.004098353994777426 +0.0022564370010513812 +0.004618220002157614 +0.002083891013171524 +0.002437972987536341 +0.004176207992713898 +0.0022901130141690373 +0.002521756017813459 +0.004510455997660756 +0.0022748850169591606 +0.004570845019770786 +0.002409521024674177 +0.002212780003901571 +0.004100409016245976 +0.0021725929982494563 +0.002445888996589929 +0.00411962901125662 +0.0021992849942762405 +0.002425824000965804 +0.004025527014164254 +0.002158927993150428 +0.002408015978289768 +0.004063931992277503 +0.002273042016895488 +0.002284004003740847 +0.004039745981572196 +0.0022408269869629294 +0.0042321510263718665 +0.0021772180043626577 +0.002353037998545915 +0.004046771995490417 +0.0021408099855761975 +0.002356835000682622 +0.004128818982280791 +0.0021720999793615192 +0.0026200270222034305 +0.004169124993495643 +0.00219924098928459 +0.0022724059817846864 +0.004093925002962351 +0.002314145996933803 +0.004073587013408542 +0.0021787959849461913 +0.0024363450065720826 +0.0040194720204453915 +0.002252734004287049 +0.0023136259987950325 +0.004034080979181454 +0.0021009250194765627 +0.0024907829938456416 +0.004020980006316677 +0.002139812015229836 +0.0024418829998467118 +0.004041050997329876 +0.0022395849809981883 +0.0023202600132208318 +0.0040860870212782174 +0.002173553977627307 +0.003069430007599294 +0.0035522370017133653 +0.0023582959838677198 +0.004071800998644903 +0.00221968800178729 +0.002291474025696516 +0.00411537301260978 +0.0021879100240767 +0.0023927750007715076 +0.0041027569968719035 +0.0021897109982091933 +0.0023975929943844676 +0.004076195997186005 +0.002187175996368751 +0.002403624006547034 +0.00406331499107182 +0.0021775600034743547 +0.0024103850009851158 +0.0040195350011345 +0.002328944014152512 +0.004244287003530189 +0.002214156003901735 +0.0022984120005276054 +0.004126830026507378 +0.0021445279999170452 +0.002481121016899124 +0.004106432985281572 +0.0021671699942089617 +0.002410454995697364 +0.004173780995188281 +0.0021536110143642873 +0.002500467002391815 +0.00401348399464041 +0.002256609994219616 +0.0023644400062039495 +0.004016057006083429 +0.002332060015760362 +0.00406395600293763 +0.0023075240023899823 +0.0023364380176644772 +0.004012441000668332 +0.002133879024768248 +0.0024277910124510527 +0.004223559983074665 +0.0022207979927770793 +0.0023845060204621404 +0.004022249981062487 +0.002161899028578773 +0.002407185995252803 +0.00394541397690773 +0.002274868020322174 +0.00230981400818564 +0.004018443985842168 +0.0023147480096668005 +0.003910515020834282 +0.0022240569815039635 +0.0022899520117789507 +0.004157653020229191 +0.0022679039975628257 +0.0022251860063988715 +0.00410123699111864 +0.0021823700226377696 +0.0024379349779337645 +0.004012822988443077 +0.002309992996742949 +0.0023616149846930057 +0.004102437000256032 +0.002295539015904069 +0.0008533619984518737 +0.0054266430088318884 +0.000716476992238313 +0.0025573700258973986 +0.005229981994489208 +0.002358320984058082 +0.004105942003661767 +0.0023157190007623285 +0.0023887990100774914 +0.003963015013141558 +0.002241149020846933 +0.0022595150221604854 +0.004109330999199301 +0.002307985007064417 +0.002306729002157226 +0.004062449996126816 +0.002274940983625129 +0.0023600650019943714 +0.004035938996821642 +0.002259895991301164 +0.0023395039897877723 +0.004029254021588713 +0.002273678022902459 +0.004119605990126729 +0.002276766987051815 +0.002401514007942751 +0.004071043978910893 +0.0022226269938983023 +0.0024875109957065433 +0.004166790982708335 +0.002166324993595481 +0.0023244389740284532 +0.004425609018653631 +0.0022717040264979005 +0.002292243007104844 +0.004024850990390405 +0.0022120829962659627 +0.004124900995520875 +0.002115807990776375 +0.0024454049998894334 +0.004203027987387031 +0.002119516982929781 +0.0024064570025075227 +0.004037605016492307 +0.0021850719931535423 +0.0023571670171804726 +0.004074646014487371 +0.002258697000797838 +0.002347993984585628 +0.00418367501697503 +0.0024521589803043753 +0.0041721820016391575 +0.0022094740124884993 +0.0023446569975931197 +0.00409271102398634 +0.0021251949947327375 +0.002375284006120637 +0.00415397499455139 +0.002137408999260515 +0.002494496002327651 +0.003978458000347018 +0.0021900370193179697 +0.002437391987768933 +0.004052422009408474 +0.0021338569931685925 +0.002432278008200228 +0.004088004003278911 +0.0021391409973148257 +0.0024278069904539734 +0.004039474995806813 +0.002308151015313342 +0.00413817199296318 +0.0021605729998555034 +0.0023929779999889433 +0.00216970601468347 +0.004063516011228785 +0.002425173996016383 +0.004125563020352274 +0.002263172995299101 +0.00244706601370126 +0.003975211991928518 +0.0021700979850720614 +0.0023671900271438062 +0.004135509021580219 +0.0022571820009034127 +0.002340071980142966 +0.004046335001476109 +0.002398251002887264 +0.0040395690011791885 +0.0021032349904999137 +0.002531150996219367 +0.0041373950080014765 +0.0021623589855153114 +0.0022966550022829324 +0.004128161002881825 +0.0022793090029153973 +0.002236394997453317 +0.0041653389926068485 +0.002203204989200458 +0.002269306016387418 +0.004139553027926013 +0.002276938990689814 +0.004025757982162759 +0.002261635003378615 +0.002273603982757777 +0.0022509359987452626 +0.0040057169971987605 +0.0009632670262362808 +0.0023972310009412467 +0.005259475001366809 +0.002234996994957328 +0.004171721986494958 +0.0021484489843714982 +0.0023702519829384983 +0.004056378005770966 +0.0021976200223434716 +0.002347676985664293 +0.004152954003075138 +0.0023017489875201136 +0.0022300429991446435 +0.004135353985475376 +0.0021989399974700063 +0.002410840999800712 +0.004056967998621985 +0.0022967589902691543 +0.0022599759977310896 +0.004203994991257787 +0.0009135349828284234 +0.0036352929892018437 +0.004053550015669316 +0.002259280998259783 +0.004095579992281273 +0.0021437940013129264 +0.0023611280194018036 +0.00409646998741664 +0.0023156589886639267 +0.002322417014511302 +0.004077054996741936 +0.002265882008941844 +0.0009103379852604121 +0.005403098999522626 +0.0023406139807775617 +0.003983472008258104 +0.00223964499309659 +0.002420331002213061 +0.0040289539902005345 +0.0021883870067540556 +0.002454288973240182 +0.004056383011629805 +0.0021366160071920604 +0.0023414040042553097 +0.0040968889952637255 +0.0022887329978402704 +0.0022503130021505058 +0.004200623981887475 +0.002227988006779924 +0.0010331259982194752 +0.005318819981766865 +0.002383920014835894 +0.0041372420091647655 +0.0022469120158348233 +0.0022878560121171176 +0.004125637991819531 +0.002145658014342189 +0.002426617022138089 +0.004040782019728795 +0.0021466200123541057 +0.002338074002182111 +0.0041292870009783655 +0.002290153002832085 +0.0022571719891857356 +0.00406342200585641 +0.0023383400111924857 +0.0024021220160648227 +0.004065427026944235 +0.002245762007078156 +0.002295480022439733 +0.004023001994937658 +0.00234151299810037 +0.004116561001865193 +0.0022107130207587034 +0.0023901469830889255 +0.004092426999704912 +0.002165064011933282 +0.0023438690113835037 +0.004075270000612363 +0.0023645520268473774 +0.002308696013642475 +0.004130162997171283 +0.0022125949908513576 +0.0023714720155112445 +0.00406571599887684 +0.002195020002545789 +0.004134768998483196 +0.0021596559963654727 +0.0023497270012740046 +0.0040710350149311125 +0.002215707005234435 +0.0024662019859533757 +0.004046988993650302 +0.0022027759987395257 +0.002387524989899248 +0.004030557989608496 +0.002213314000982791 +0.002303116983966902 +0.004157067975029349 +0.0022469830000773072 +0.002304265013663098 +0.004168343002675101 +0.0022862949990667403 +0.004092906980076805 +0.0022566569969058037 +0.002270935015985742 +0.004149529006099328 +0.002132565976353362 +0.0023849059944041073 +0.004017230006866157 +0.002181301999371499 +0.0024551450042054057 +0.004029506992083043 +0.002191250998293981 +0.002372187009314075 +0.0042173950059805065 +0.0025080089981202036 +0.0010223460267297924 +0.005360687006032094 +0.002536035986850038 +0.004056000005220994 +0.002164320001611486 +0.002535957988584414 +0.004090761998668313 +0.002300462016137317 +0.0022869050153531134 +0.00403632500092499 +0.002260338020278141 +0.002344083011848852 +0.004112225986318663 +0.002262911992147565 +0.002351055998587981 +0.004071550007211044 +0.002316494006663561 +0.004170707979938015 +0.00220929499482736 +0.0025424149935133755 +0.004021364991785958 +0.002235460007796064 +0.0023192640219349414 +0.004075837001437321 +0.002190366998547688 +0.002392120979493484 +0.004071575007401407 +0.002246304997242987 +0.0023411860165651888 +0.0040594910096842796 +0.0023018400243017823 +0.004112233989872038 +0.002218242996605113 +0.002360338985454291 +0.0040078089805319905 +0.002226948010502383 +0.0023541550035588443 +0.004060368984937668 +0.0022135869949124753 +0.0023898679937701672 +0.004053105018101633 +0.0021649019909091294 +0.0023945260036271065 +0.004030248994240537 +0.00223971699597314 +0.0022897830058354884 +0.004075789998751134 +0.002250614983495325 +0.0023264859919436276 +0.004063057014718652 +0.0023557090025860816 +0.0022688439930789173 +0.004218951013172045 +0.000859255000250414 +0.003748841001652181 +0.003972376987803727 +0.002368922985624522 +0.004053448006743565 +0.0021975810232106596 +0.0023975640069693327 +0.004028778988867998 +0.002280040003824979 +0.0023391249997075647 +0.004062258987687528 +0.0022337239934131503 +0.002323602995602414 +0.004081066988874227 +0.002365877997362986 +0.0022198600054252893 +0.004195244982838631 +0.0008625389891676605 +0.0025184140249621123 +0.005144102993654087 +0.0023986209998838603 +0.004082133993506432 +0.0021600070176646113 +0.0024061989970505238 +0.004059486003825441 +0.0022593020112253726 +0.002328318019863218 +0.0041159009851980954 +0.0022010400134604424 +0.002432928013149649 +0.003963886003475636 +0.0022253500064834952 +0.004224926989991218 +0.0022351399820763618 +0.002245687006507069 +0.004168268002104014 +0.00231006697867997 +0.0021962679747957736 +0.004091564012924209 +0.002155458991182968 +0.0024187200178857893 +0.004050653020385653 +0.002186758996685967 +0.002292933000717312 +0.004206452984362841 +0.002259439992485568 +0.002411494991974905 +0.004014067992102355 +0.002201669994974509 +0.004203371005132794 +0.0022244960127864033 +0.002235889987787232 +0.004165755002759397 +0.002163794997613877 +0.002402971003903076 +0.004228258010698482 +0.0021573450067080557 +0.0024365900026168674 +0.004071172996191308 +0.0021980440069455653 +0.0023954680073074996 +0.004144809005083516 +0.002182627998990938 +0.004222502990160137 +0.0021931499941274524 +0.0022638069931417704 +0.004102884005988017 +0.002215535001596436 +0.002241658978164196 +0.004127471998799592 +0.0021653820003848523 +0.002354177995584905 +0.004160726006375626 +0.002183867007261142 +0.002320052997674793 +0.004138682998018339 +0.002168090984923765 +0.0023462940007448196 +0.004150119988480583 +0.002139686985174194 +0.0023899230000097305 +0.00403215701226145 +0.0021945640037301928 +0.004169021995039657 +0.0022315089881885797 +0.002192935993662104 +0.004117717006010935 +0.002175891015212983 +0.0022950910206418484 +0.004132889007451013 +0.002196295012254268 +0.002416578005068004 +0.004014665988506749 +0.0021239340130705386 +0.002334655000595376 +0.004163876990787685 +0.0021619879989884794 +0.0031254249915946275 +0.003318806004244834 +0.00213093200000003 +0.0024233669973909855 +0.0038883330125827342 +0.002202307980041951 +0.002250082994578406 +0.004166536993579939 +0.002235708001535386 +0.004169366002315655 +0.002110101020662114 +0.002340461011044681 +0.004154780006501824 +0.002140580996638164 +0.0023510509927291423 +0.004154785012360662 +0.0021558500011451542 +0.002409723005257547 +0.00403474600170739 +0.00214137599687092 +0.0023459850053768605 +0.004186696984106675 +0.002147001010598615 +0.004232259001582861 +0.002218226989498362 +0.0021817180095240474 +0.0042268059914931655 +0.002205839002272114 +0.0022028230014257133 +0.004042941000079736 +0.0023258680012077093 +0.0022473669960163534 +0.004054042015923187 +0.002199711016146466 +0.0023297870066016912 +0.004125116975046694 +0.0021488629863597453 +0.002411519002635032 +0.004081669001607224 +0.002191298990510404 +0.0023307970259338617 +0.004154705005930737 +0.0021999940217938274 +0.002387344982707873 +0.004032814002130181 +0.002232127997558564 +0.004068184003699571 +0.0021389519970398396 +0.0023643000167794526 +0.004148367996094748 +0.002237239998066798 +0.0022288269829005003 +0.004112781985895708 +0.0022100670030340552 +0.0024183540081139654 +0.00407021600403823 +0.0021537329885177314 +0.0024243409861810505 +0.004027838003821671 +0.0021459300187416375 +0.0023866419796831906 +0.004039838997414336 +0.0022997680061962456 +0.00236522700288333 +0.004166172991972417 +0.0022206839930731803 +0.0041713599930517375 +0.0022144970134831965 +0.002297297993209213 +0.004040739993797615 +0.0021321999956853688 +0.002324486995348707 +0.004119937977520749 +0.0021324190020095557 +0.002411936002317816 +0.004045574984047562 +0.0021292339952196926 +0.00244297698372975 +0.003965807001804933 +0.002203549986006692 +0.0022665550059173256 +0.004032747005112469 +0.0022230480099096894 +0.002376277989242226 +0.00404335799976252 +0.0022202819818630815 +0.004085885011591017 +0.0022710439807269722 +0.0022075370070524514 +0.00409791199490428 +0.002126673993188888 +0.0024348419974558055 +0.0040257860091514885 +0.0021756929927505553 +0.0024234709853772074 +0.004044918023282662 +0.00213194900425151 +0.00247944999136962 +0.004106089007109404 +0.00213465400156565 +0.002403279999271035 +0.004031647986266762 +0.002173492015572265 +0.0022626660065725446 +0.0041125110001303256 +0.002261244982946664 +0.004151917004492134 +0.0021108720102347434 +0.002293060999363661 +0.00415386600070633 +0.0022180860105436295 +0.0023306510120164603 +0.004026986018288881 +0.0021425159939099103 +0.0023300949833355844 +0.0041240580030716956 +0.00214439001865685 +0.0024093620013445616 +0.004016227991087362 +0.002170838008169085 +0.0024315949995070696 +0.003943499003071338 +0.002246258984087035 +0.004111221001949161 +0.0023039710067678243 +0.0022326260223053396 +0.002256375999422744 +0.004112613998586312 +0.002297651022672653 +0.0040644909895490855 +0.002225103002274409 +0.002250365010695532 +0.0039867020095698535 +0.0022502010106109083 +0.0025425249768886715 +0.004070833005243912 +0.0021201219933573157 +0.002403047023108229 +0.004031549004139379 +0.002139427000656724 +0.0024430320190731436 +0.004053540003951639 +0.002216543012764305 +0.002287609997438267 +0.004111779999220744 +0.0021762530086562037 +0.004132155008846894 +0.0022428149823099375 +0.002210417005699128 +0.0022852609981782734 +0.004089763999218121 +0.0022256660158745944 +0.004111732007004321 +0.0021416129893623292 +0.0024255379976239055 +0.004006381001090631 +0.0021446989849209785 +0.002322215004824102 +0.004144149017520249 +0.002143815014278516 +0.0024151660036295652 +0.004030181997222826 +0.002175111003452912 +0.002435262984363362 +0.0028153260063845664 +0.00333339799544774 +0.0023925279965624213 +0.004050290008308366 +0.0021905720059294254 +0.00415508501464501 +0.0021458049886859953 +0.0023324259964283556 +0.004105650004930794 +0.002134072012268007 +0.00244699401082471 +0.004013591009424999 +0.002159584022592753 +0.002413979993434623 +0.004187361977528781 +0.002170245017623529 +0.0024163330090232193 +0.00401478199637495 +0.0021397880045697093 +0.002287194976815954 +0.004094156000064686 +0.002195395005401224 +0.004228941979818046 +0.002085870975861326 +0.0022746400209143758 +0.004205083008855581 +0.002285308000864461 +0.0022050160041544586 +0.004120806988794357 +0.00219122800626792 +0.002442352008074522 +0.004135421011596918 +0.0021905610046815127 +0.0023681620077695698 +0.004169019986875355 +0.002150192012777552 +0.002401345001999289 +0.00407333200564608 +0.0021997390140313655 +0.004181669995887205 +0.002232906990684569 +0.0021892699878662825 +0.004149262007558718 +0.0022480269835796207 +0.0022755860118195415 +0.0041106370044872165 +0.0021562240144703537 +0.0024242239887826145 +0.004068662994541228 +0.0021216259920038283 +0.002422580000711605 +0.004074522003065795 +0.0021640750055667013 +0.0023340419866144657 +0.0041562629921827465 +0.0022007249935995787 +0.0023775550071150064 +0.004196962021524087 +0.0007523039821535349 +0.003623500990215689 +0.0041344039782416075 +0.0022134330065455288 +0.004175220994511619 +0.0021540489979088306 +0.0023078100057318807 +0.004145252984017134 +0.0021574250131379813 +0.00244576099794358 +0.0040369179914705455 +0.002084722014842555 +0.0024205459922086447 +0.004023382993182167 +0.0021637989848386496 +0.0024301920202560723 +0.004049932002089918 +0.0021782279945909977 +0.0024365390127059072 +0.004028455994557589 +0.0021847560128662735 +0.004174750996753573 +0.0022351809893734753 +0.0022983140079304576 +0.004023601999506354 +0.0022209509916137904 +0.002297658007591963 +0.004154285998083651 +0.0021612870041280985 +0.0023453189933206886 +0.004167380015132949 +0.002173960005166009 +0.0023949340102262795 +0.004104278981685638 +0.002197533001890406 +0.0024091099912766367 +0.002827337011694908 +0.0034140699717681855 +0.0023697919968981296 +0.004036719008581713 +0.002318831975571811 +0.004052264004712924 +0.002264973009005189 +0.0022142060042824596 +0.004216686997096986 +0.002190521016018465 +0.0024128470104187727 +0.004073891992447898 +0.002141300996299833 +0.0025607499992474914 +0.004150907014263794 +0.002102296013617888 +0.0009540559840388596 +0.005231133982306346 +0.002225598000222817 +0.0042019230022560805 +0.002306711015990004 +0.0021417530078906566 +0.0041849219996947795 +0.0022339650022331625 +0.00220787400030531 +0.004222421994199976 +0.0021517839923035353 +0.0023658940044697374 +0.004035003017634153 +0.0022073889849707484 +0.0022852209804113954 +0.004178066999884322 +0.002180434006731957 +0.002318493992788717 +0.004127894004341215 +0.0021569049858953804 +0.0025350019859615713 +0.004113268019864336 +0.002309508010512218 +0.004214693995891139 +0.0022375079861376435 +0.002340970007935539 +0.004112752008950338 +0.00228033700841479 +0.002405439008725807 +0.004037059989059344 +0.0021666129759978503 +0.0024920709838625044 +0.0039834060007706285 +0.0022251699992921203 +0.002574320009443909 +0.004060998006025329 +0.002248420991236344 +0.004325998976128176 +0.0022987900010775775 +0.00233364399173297 +0.004025564994663 +0.002181251998990774 +0.0024066449841484427 +0.0040274230123031884 +0.002174694003770128 +0.0024267759872600436 +0.0041056010231841356 +0.0021682539954781532 +0.0024012250069063157 +0.004089835012564436 +0.002160255011403933 +0.0023989129986148328 +0.0040378179983235896 +0.0022066429955884814 +0.004189413972198963 +0.002256575971841812 +0.0022399699955713004 +0.004128490021685138 +0.0022157120110932738 +0.0022713440121151507 +0.004165769991232082 +0.0021705389954149723 +0.0023134250077418983 +0.004087053996045142 +0.002226771990535781 +0.002355333010200411 +0.0040160999924410135 +0.0022824410116299987 +0.002410725021036342 +0.0041139819950331 +0.0022160380030982196 +0.004128578992094845 +0.0022235719952732325 +0.0022069039987400174 +0.004254253988619894 +0.002242720016511157 +0.002307938993908465 +0.004029428993817419 +0.0021674710151273757 +0.002384394989348948 +0.004271636018529534 +0.0023210819927044213 +0.0024025370075833052 +0.003999804001068696 +0.002144616999430582 +0.0024069379724096507 +0.004029604984680191 +0.002239369001472369 +0.004227975994581357 +0.002253088023280725 +0.0022015130089130253 +0.0041790929972194135 +0.002231196005595848 +0.0022291950008366257 +0.00414076799643226 +0.0021569810051005334 +0.0023326330119743943 +0.00411053400603123 +0.0022270680055953562 +0.002457933995174244 +0.003930035978555679 +0.002159364987164736 +0.0024501119914930314 +0.004053338983794674 +0.0021708820131607354 +0.004237373010255396 +0.0022052599815651774 +0.002222301991423592 +0.0042039789841510355 +0.0023666280030738562 +0.0021918279817327857 +0.004143958998611197 +0.0021563869959209114 +0.0024077309935819358 +0.0040432719979435205 +0.0022622460091952235 +0.0023884240072220564 +0.0039204470231197774 +0.0021880049898754805 +0.002418124000541866 +0.004120444995351136 +0.002178131981054321 +0.004173384018940851 +0.002227385004516691 +0.0022064770164433867 +0.00416894699446857 +0.0022593470057472587 +0.0022599269868806005 +0.004092608985956758 +0.0022479849867522717 +0.002224040013970807 +0.004022581997560337 +0.0022618799994233996 +0.0023483490222133696 +0.004134282004088163 +0.0021446339960675687 +0.0024097580171655864 +0.004043477005325258 +0.002175380999688059 +0.002452949993312359 +0.00401599399629049 +0.002178371010813862 +0.002403035992756486 +0.004058733000420034 +0.00222648199996911 +0.004162115015788004 +0.0022264009749051183 +0.002228308003395796 +0.0042795659974217415 +0.0024477939878124744 +0.000872812990564853 +0.005340763978892937 +0.002172413980588317 +0.00237261998699978 +0.004055369005072862 +0.002315296995220706 +0.0022843799961265177 +0.0040238040091935545 +0.002257001993712038 +0.0023431750014424324 +0.004180996009381488 +0.002393898001173511 +0.004032197000924498 +0.002235485997516662 +0.002488564990926534 +0.0038544569979421794 +0.002150560001609847 +0.002499244990758598 +0.004122057987842709 +0.002231955004390329 +0.0023488830192945898 +0.004032577999169007 +0.0022578279895242304 +0.0023490040039177984 +0.0040709559980314225 +0.0022893809946253896 +0.0041323490149807185 +0.002243563998490572 +0.0023423079983331263 +0.004003988986369222 +0.0022326770122162998 +0.0022585820115637034 +0.004188549995888025 +0.0021642200008500367 +0.002556283987360075 +0.003954192012315616 +0.002379904006375 +0.0022738050029147416 +0.004023227986181155 +0.0022545719984918833 +0.0023498880036640912 +0.004056067002238706 +0.0022897020098753273 +0.002290984004503116 +0.004034561017761007 +0.0021805499854963273 +0.0010685300221666694 +0.005285277991788462 +0.0023118229873944074 +0.004151469009229913 +0.0021704399841837585 +0.0024740789958741516 +0.004050248011481017 +0.002339595986995846 +0.002232240018201992 +0.004183590004686266 +0.00226395798381418 +0.002316804981091991 +0.004090864997124299 +0.002258752007037401 +0.002363666979363188 +0.004115374002140015 +0.002364207000937313 +0.003941775008570403 +0.0022623399854637682 +0.0023372190189547837 +0.0040341190178878605 +0.00211838202085346 +0.0024197479942813516 +0.004011331009678543 +0.002266719995532185 +0.002214409993030131 +0.004176953982096165 +0.0023372239957097918 +0.002435268019326031 +0.00402665400179103 +0.0022975899919401854 +0.0023491659958381206 +0.004023768997285515 +0.0024543559993617237 +0.003981580026447773 +0.0022506389941554517 +0.002327679976588115 +0.004042727989144623 +0.002141080010915175 +0.002444025012664497 +0.004053580982144922 +0.0023023080138955265 +0.002264976006699726 +0.004058127989992499 +0.00230072601698339 +0.003058089001569897 +0.0033811590110417455 +0.0022592009918298572 +0.0023517590016126633 +0.003997638006694615 +0.0021883980080019683 +0.0022593480243813246 +0.0028626870189327747 +0.0035128199961036444 +0.004100614984054118 +0.002229452016763389 +0.002350700000533834 +0.004075158009072766 +0.0010249530023429543 +0.003467403003014624 +0.0040696140204090625 +0.0022344580211210996 +0.002352214010898024 +0.00402389100054279 +0.0024016319948714226 +0.0008727179956622422 +0.005376198998419568 +0.0022301049903035164 +0.004098158999113366 +0.002259077999042347 +0.0023307180090341717 +0.002275684993946925 +0.004143494996242225 +0.0022082359937485307 +0.00421768199885264 +0.0021299549844115973 +0.0023284140042960644 +0.0040682340040802956 +0.0022309460036922246 +0.002366194996284321 +0.0042399209924042225 +0.0007707550248596817 +0.0036269639967940748 +0.004132608009967953 +0.0022230180038604885 +0.0022863170015625656 +0.0040596659819129854 +0.0022880140168126673 +0.002279445994645357 +0.004011612007161602 +0.002366758999414742 +0.004018167994217947 +0.0022359599824994802 +0.0023803179792594165 +0.004080851009348407 +0.002223932999186218 +0.0009566679946146905 +0.0023880650114733726 +0.005134517006808892 +0.002399608987616375 +0.004203572985716164 +0.002416401985101402 +0.0023477550130337477 +0.0042802380048669875 +0.0023553299834020436 +0.004086147993803024 +0.002222593000624329 +0.0024000999983400106 +0.004117636999581009 +0.0022343879973050207 +0.0023796599998604506 +0.004026971000712365 +0.0022315349779091775 +0.0023420180077664554 +0.004052253003465012 +0.002235202002339065 +0.0023156050010584295 +0.004060951992869377 +0.0022331530053634197 +0.002259721019072458 +0.004100772988749668 +0.0022486959933303297 +0.0022872380213811994 +0.002863579982658848 +0.00355898798443377 +0.0009206249960698187 +0.005351236002752557 +0.0023486829886678606 +0.004087487002834678 +0.0022259870020207018 +0.0023819199996069074 +0.0040437179850414395 +0.0022128050040919334 +0.000994219008134678 +0.005383351992350072 +0.00218503997894004 +0.0023248940124176443 +0.004131556983338669 +0.002136442984919995 +0.002335610013687983 +0.004042991000460461 +0.0022810920199844986 +0.002286883012857288 +0.0041601419798098505 +0.0022163269750308245 +0.004158969997661188 +0.0022837680007796735 +0.0009813120122998953 +0.0035614850057754666 +0.004111863003345206 +0.0023385249951388687 +0.004041306994622573 +0.002281652996316552 +0.002361129008932039 +0.004075966018717736 +0.0009274309850297868 +0.0023424579994753003 +0.00517473800573498 +0.002249779994599521 +0.00236345297889784 +0.0040460659947711974 +0.002262907015392557 +0.002296874998137355 +0.004028778988867998 +0.002285012014908716 +0.002261417015688494 +0.004087756999069825 +0.002300519001437351 +0.004015985992737114 +0.0022633899934589863 +0.002315891004400328 +0.0041419159970246255 +0.002131911984179169 +0.002337907993933186 +0.00404441001592204 +0.00223401200491935 +0.002361321006901562 +0.0040512300038244575 +0.0022797870042268187 +0.002309081988641992 +0.004048467002576217 +0.0022685350268147886 +0.0024426990130450577 +0.004120622994378209 +0.0009039849974215031 +0.0035609789774753153 +0.004015826008981094 +0.002437029004795477 +0.004082604020368308 +0.0022968069824855775 +0.0022839769953861833 +0.004098751989658922 +0.0022038319730199873 +0.0024795240024104714 +0.004182400996796787 +0.0021567739895544946 +0.0023039049992803484 +0.004079425998497754 +0.0022829310037195683 +0.004046944988658652 +0.0022188140137586743 +0.0023401960206683725 +0.004032944008940831 +0.0023451470187865198 +0.0022742220025975257 +0.0042620770109351724 +0.0023343250213656574 +0.002442172000883147 +0.00415543100098148 +0.002278847008710727 +0.0023086940054781735 +0.00411440001334995 +0.002243325987365097 +0.004207709978800267 +0.002256470004795119 +0.0021915549878031015 +0.002336315985303372 +0.004004632995929569 +0.0022815800039097667 +0.004111385002033785 +0.002109052991727367 +0.0024104290059767663 +0.0040678560035303235 +0.002132891007931903 +0.0024239380145445466 +0.004026880982564762 +0.0022749129857402295 +0.002400285011390224 +0.00405754498206079 +0.002338449005037546 +0.0024939459981396794 +0.004214353975839913 +0.0024488919880241156 +0.004096618999028578 +0.0021712419984396547 +0.0023853330058045685 +0.004057996993651614 +0.0021762859832961112 +0.0024315999762620777 +0.00407269800780341 +0.002242786984425038 +0.0023498230148106813 +0.004083593987161294 +0.0022329089988488704 +0.004157995979767293 +0.0023844920215196908 +0.002385561994742602 +0.003971157013438642 +0.0022408250079024583 +0.0023652579984627664 +0.004088491987204179 +0.002162281976779923 +0.0024630910193081945 +0.004042885993840173 +0.0021665790118277073 +0.0024150800018105656 +0.004025407019071281 +0.0022632830077782273 +0.0023773910070303828 +0.004008481017081067 +0.0022508089896291494 +0.004166986997006461 +0.00224244300625287 +0.002277198014780879 +0.004047291993629187 +0.002219362009782344 +0.002326782007003203 +0.004082902974914759 +0.0022069849947001785 +0.002357205987209454 +0.004202508018352091 +0.0021472200169228017 +0.0024331060121767223 +0.004048981005325913 +0.00224501799675636 +0.002406863000942394 +0.004014072997961193 +0.00212645300780423 +0.0024020929995458573 +0.0041564819985069335 +0.0007835519791115075 +0.0036763469979632646 +0.0040658740035723895 +0.002360890997806564 +0.004043141001602635 +0.002290005999384448 +0.0024086379853542894 +0.00403339002514258 +0.002192435000324622 +0.0023240319860633463 +0.004117275006137788 +0.002245882002171129 +0.002311983989784494 +0.004082285013282672 +0.002214477979578078 +0.002334960998268798 +0.004036768979858607 +0.0021609340037684888 +0.002396602008957416 +0.004019579995656386 +0.0023080350074451417 +0.0041176639788318425 +0.002217449015006423 +0.002396735013462603 +0.003978710999945179 +0.0021374330099206418 +0.0023569939949084073 +0.004147075000219047 +0.002170004998333752 +0.002417253010207787 +0.004053896991536021 +0.0022911049891263247 +0.0023126360028982162 +0.004093681985978037 +0.002348103007534519 +0.004135070979828015 +0.0022593569883611053 +0.000784821982961148 +0.0037543739890679717 +0.00408637902000919 +0.002289313997607678 +0.004168882995145395 +0.0021421139826998115 +0.002455487003317103 +0.004034258017782122 +0.0022965300013311207 +0.0021708029962610453 +0.00429460100713186 +0.002237058011814952 +0.002357463992666453 +0.004054569988511503 +0.002266940980916843 +0.004060569015564397 +0.0022407979995477945 +0.0022971440048422664 +0.004074644006323069 +0.0022464810172095895 +0.0022831519891042262 +0.004025697009637952 +0.002177481015678495 +0.002353707008296624 +0.0040364660089835525 +0.002148505998775363 +0.002558315987698734 +0.004056814999785274 +0.0021932520030532032 +0.002419060008833185 +0.004050418006954715 +0.0022135929903015494 +0.002354650991037488 +0.004166064987657592 +0.0007657039968762547 +0.0037098889879416674 +0.004065221000928432 +0.002345427987165749 +0.00400594697566703 +0.0022925979865249246 +0.002375693991780281 +0.0040225349948741496 +0.0022935250017326325 +0.0008118380210362375 +0.00547046001884155 +0.0022460820036940277 +0.002302427979884669 +0.0041461710061412305 +0.0022483190114144236 +0.0021799929963890463 +0.0043113629799336195 +0.0007310450018849224 +0.0037777950055897236 +0.0040504079952370375 +0.0022083870135247707 +0.004118815995752811 +0.002217629022197798 +0.0023179450072348118 +0.004038564016809687 +0.002218580979388207 +0.0023214059765450656 +0.004323445988120511 +0.002179400995373726 +0.0024089019862003624 +0.0040449899970553815 +0.002298643987160176 +0.0023025549890007824 +0.0039396570064127445 +0.002292427991051227 +0.002362539991736412 +0.0040382290026172996 +0.0022959550260566175 +0.004071137023856863 +0.0022046160011086613 +0.002490443002898246 +0.003996026003733277 +0.0021331259922590107 +0.002436604001559317 +0.004132732981815934 +0.0021569090022239834 +0.0024300120130646974 +0.004060762992594391 +0.002260902023408562 +0.0022983159869909286 +0.003943370975321159 +0.002371405978919938 +0.0024212019925471395 +0.004095182986930013 +0.002188784012105316 +0.004202381998766214 +0.002221922011813149 +0.0023364410153590143 +0.004062308988068253 +0.0022322260192595422 +0.002350287977606058 +0.004025940987048671 +0.002197930996771902 +0.002438767987769097 +0.004026921989861876 +0.0022344269964378327 +0.0023371459974441677 +0.004119660996366292 +0.0021573490230366588 +0.0024452929792460054 +0.004124116007005796 +0.002287120994878933 +0.004070933995535597 +0.0022297619725577533 +0.0022708839969709516 +0.0022578180069103837 +0.004058170015923679 +0.0023476479982491583 +0.004002655012300238 +0.002133645990397781 +0.0023846380063332617 +0.00411697500385344 +0.0021346340072341263 +0.0023127530002966523 +0.004143174010096118 +0.002183868986321613 +0.0024248989939223975 +0.00402151100570336 +0.002187175996368751 +0.002283147012349218 +0.0041059679933823645 +0.0021838279790244997 +0.002527998003643006 +0.004056400997797027 +0.0022062270145397633 +0.0040675600175745785 +0.0021562339970842004 +0.0023787060054019094 +0.004056336998473853 +0.0023223120078910142 +0.0023095000069588423 +0.004005021997727454 +0.002178738999646157 +0.0023636959958821535 +0.0041211789939552546 +0.002195998007664457 +0.0023928719747345895 +0.003994900995166972 +0.00216922999243252 +0.0024200970074161887 +0.004028366005513817 +0.0022625749988947064 +0.004138597985729575 +0.0022273600043263286 +0.002300391992321238 +0.004024285008199513 +0.0021275850012898445 +0.00230369801283814 +0.004099010024219751 +0.0021483789896592498 +0.0023360040213447064 +0.004089443013072014 +0.002219138987129554 +0.0023136830131988972 +0.004156734008574858 +0.0021746960119344294 +0.0025109589914791286 +0.0040501120092812926 +0.0021795399952679873 +0.004184193006949499 +0.002217440982349217 +0.002299106999998912 +0.004096610005944967 +0.0022283399885054678 +0.0023441009980160743 +0.004018948005978018 +0.002175519010052085 +0.002454422996379435 +0.0040211110026575625 +0.0021918749844189733 +0.002327049005543813 +0.00404574500862509 +0.002239265013486147 +0.002263088012114167 +0.004212559026200324 +0.0021952500101178885 +0.002385689993388951 +0.004013311001472175 +0.0022564789978787303 +0.004100118996575475 +0.002121391997206956 +0.0023375480086542666 +0.0041230019996874034 +0.002215954998973757 +0.0023958889942150563 +0.004018658015411347 +0.0021293929894454777 +0.0023786530073266476 +0.004021995991934091 +0.0021627619862556458 +0.0023340789775829762 +0.004081088991370052 +0.002151302993297577 +0.002394684008322656 +0.004099587007658556 +0.0022296890092547983 +0.004154569993261248 +0.002262185007566586 +0.0022784860047977418 +0.004147928993916139 +0.0023033619800116867 +0.002242860005935654 +0.004083226987859234 +0.0021080789738334715 +0.0024023949808906764 +0.00398713001050055 +0.002225542993983254 +0.002482159005012363 +0.004125573992496356 +0.0021480440045706928 +0.002375640004174784 +0.004080102982698008 +0.0021987450018059462 +0.004157244984526187 +0.002223101007984951 +0.0022752980003133416 +0.004147910978645086 +0.0023815610038582236 +0.002218412992078811 +0.00429053301922977 +0.002161315002012998 +0.0023996180098038167 +0.004054277000250295 +0.002163064986234531 +0.0023470239830203354 +0.00408434501150623 +0.0022631679894402623 +0.002255027007777244 +0.004151697998167947 +0.0022116229811217636 +0.004158844007179141 +0.002224687981652096 +0.002279253996675834 +0.004116729978704825 +0.0022289360058493912 +0.0022661580005660653 +0.004092148010386154 +0.002170566003769636 +0.0023077219957485795 +0.004146360995946452 +0.0021215610031504184 +0.002418377000140026 +0.0040356079989578575 +0.0022100330097600818 +0.0023732219997327775 +0.004044556990265846 +0.0021800280082970858 +0.0024316670023836195 +0.004131112014874816 +0.0022240740072447807 +0.0022341450094245374 +0.004067194007802755 +0.0009284700208809227 +0.0036466509918682277 +0.004065379995154217 +0.0023254080151673406 +0.00408976199105382 +0.002215402986621484 +0.002255550993140787 +0.004094802978215739 +0.00216208299389109 +0.0024261740036308765 +0.004060942999785766 +0.002158359013264999 +0.002393397007836029 +0.0041041749936994165 +0.0022357550042215735 +0.002338730002520606 +0.004028032999485731 +0.0022082960058469325 +0.004161594988545403 +0.0022440970060415566 +0.002377123018959537 +0.004097879980690777 +0.0022632750042248517 +0.0021900099818594754 +0.004144122998695821 +0.0022314839879982173 +0.002410356013569981 +0.004024155001388863 +0.002184148004744202 +0.0024018260010052472 +0.0040302260022144765 +0.002262021997012198 +0.002334542019525543 +0.004026648006401956 +0.0021920870058238506 +0.0023767660022713244 +0.004010187985841185 +0.0022490069968625903 +0.0023729490058030933 +0.004026087990496308 +0.0021895919926464558 +0.004153993999352679 +0.0009315760107710958 +0.003741081018233672 +0.00406645200564526 +0.0021830729965586215 +0.0024039569834712893 +0.0040303719870280474 +0.002169922983739525 +0.0024150020035449415 +0.004053121985634789 +0.002191689010942355 +0.0023166280006989837 +0.004315627011237666 +0.0022837780124973506 +0.004101578000700101 +0.002263169997604564 +0.002287980983965099 +0.0040263410191982985 +0.0022435370192397386 +0.0022969100100453943 +0.004026966984383762 +0.002153584995539859 +0.002339249011129141 +0.004101557977264747 +0.0021960150043014437 +0.002415390976238996 +0.00403061299584806 +0.002189069986343384 +0.0025415550044272095 +0.004058096004882827 +0.0022373620013240725 +0.0023537319793831557 +0.004019827989395708 +0.002230345009593293 +0.004155167989665642 +0.0021494670072570443 +0.0023837449843995273 +0.0040386760083492845 +0.002246717020170763 +0.002209149010013789 +0.00429975101724267 +0.002177210000809282 +0.0024066760088317096 +0.003999689011834562 +0.0021881579887121916 +0.0024268059933092445 +0.004001029010396451 +0.0022887589875608683 +0.0024525409971829504 +0.00401986000360921 +0.0023644400062039495 +0.004032600001664832 +0.002336866979021579 +0.0022726360184606165 +0.0040208110003732145 +0.0021745430130977184 +0.0023370519920717925 +0.004158048017416149 +0.002189343998907134 +0.002298976993188262 +0.004064615990500897 +0.0022061880154069513 +0.0024202520144172013 +0.004045930982101709 +0.0022746110043954104 +0.00236236400087364 +0.004161966004176065 +0.0022017619921825826 +0.004147868981817737 +0.0022400260204449296 +0.0023076499928720295 +0.004177736002020538 +0.002176944981329143 +0.002283663983689621 +0.00410468500922434 +0.0021577930019702762 +0.0024725450202822685 +0.0040889320080168545 +0.0021521100134123117 +0.0024340930103790015 +0.0040536790038459 +0.002244174014776945 +0.0023566829913761467 +0.0039763509994372725 +0.0021563640038948506 +0.0042101049912162125 +0.0021220689814072102 +0.002494851010851562 +0.004086075001396239 +0.002160586998797953 +0.0023899000079836696 +0.004043229011585936 +0.0021901080035604537 +0.0024266830005217344 +0.00399557501077652 +0.0021543189941439778 +0.0024312500027008355 +0.004042096028570086 +0.0021539780136663467 +0.002400061988737434 +0.004048859991598874 +0.0021628950198646635 +0.002324475994100794 +0.004148977022850886 +0.0022808749927207828 +0.004155339993303642 +0.0021676699980162084 +0.002281766996020451 +0.004167055012658238 +0.0022451929980888963 +0.002294506994076073 +0.004048664995934814 +0.0021268420096021146 +0.002317952981684357 +0.004140135017223656 +0.0021925529872532934 +0.0023786389792803675 +0.004027520015370101 +0.002166210993891582 +0.0024156190047506243 +0.003980716021033004 +0.002273763995617628 +0.002439136995235458 +0.004188894992694259 +0.0022926120145712048 +0.004273564001778141 +0.0022507440007757396 +0.002525413001421839 +0.004069104004884139 +0.002231679012766108 +0.00245649999123998 +0.004269703000318259 +0.0020993009966332465 +0.002376640011789277 +0.004067031986778602 +0.0022090230195317417 +0.004130888992222026 +0.002250877005280927 +0.002216685999883339 +0.004213556996546686 +0.0021811960032209754 +0.002347583998925984 +0.004091771988896653 +0.002195715991547331 +0.0024219400074798614 +0.004025269998237491 +0.002143902995157987 +0.0024847909808158875 +0.003945237986044958 +0.0023159529955592006 +0.0023743050114717335 +0.004027989984024316 +0.0022107970144134015 +0.0022148049902170897 +0.004082505009137094 +0.002213005005614832 +0.002383432991337031 +0.004006795003078878 +0.0022682929993607104 +0.004056162986671552 +0.0022596869966946542 +0.002246885997010395 +0.004079812002601102 +0.0021336160134524107 +0.002445699996314943 +0.004144605016335845 +0.0021196830202825367 +0.0024276470066979527 +0.004015699989395216 +0.0021818109962623566 +0.002264794980874285 +0.004105626983800903 +0.0021655109885614365 +0.002391351998085156 +0.004046602000016719 +0.0021885960013605654 +0.004172699002083391 +0.002176857989979908 +0.002215455984696746 +0.004155938018811867 +0.002257544983876869 +0.0022447679948527366 +0.00407934800023213 +0.0021416590025182813 +0.002430835011182353 +0.004016885010059923 +0.002184240991482511 +0.0023077320074662566 +0.004130827001063153 +0.0021438179828692228 +0.0024104540061671287 +0.0040346040041185915 +0.0021733820030931383 +0.002271965000545606 +0.004145861981669441 +0.0021715690090786666 +0.002417081006569788 +0.004011590004665777 +0.002215069020166993 +0.004143282014410943 +0.002237692999187857 +0.002193732012528926 +0.00411182499374263 +0.002171616011764854 +0.002287617011461407 +0.004127541993511841 +0.002155868016416207 +0.002340184000786394 +0.004093722993275151 +0.002150184998754412 +0.0024135199782904238 +0.004010523000033572 +0.002163336001103744 +0.0032100410026032478 +0.0033720399951562285 +0.0021941789891570807 +0.002269528980832547 +0.00410643097711727 +0.002230796992080286 +0.004117706994293258 +0.0021007430041208863 +0.002340528997592628 +0.004129932989599183 +0.0021753110049758106 +0.002307457005372271 +0.0040393810195382684 +0.002208780002547428 +0.002346056018723175 +0.00409892899915576 +0.0022082849754951894 +0.002285191003466025 +0.004133590002311394 +0.002169857994886115 +0.0024161199980881065 +0.004008984979009256 +0.0021550410019699484 +0.0041626470047049224 +0.002194215019699186 +0.002212142018834129 +0.0023664100153837353 +0.004062716994667426 +0.002234535990282893 +0.004065740009536967 +0.002250756020657718 +0.0022711220080964267 +0.0041244310268666595 +0.002188353013480082 +0.002573121018940583 +0.004016295017208904 +0.002184679004130885 +0.002485803997842595 +0.004501761985011399 +0.002294544014148414 +0.004519233014434576 +0.002479032991686836 +0.0024501839943695813 +0.004338204977102578 +0.0025051700067706406 +0.004776438989210874 +0.002598790975753218 +0.002658162993611768 +0.0047688249906059355 +0.002658512006746605 +0.004813084000488743 +0.002718486008234322 +0.0048657149891369045 +0.0025703499850351363 +0.0027150539972353727 +0.004882476001512259 +0.002627719019073993 +0.00529449200257659 +0.0021912410156801343 +0.00479769500088878 +0.002533035003580153 +0.004767771024489775 +0.0027217250026296824 +0.002619206003146246 +0.004627570015145466 +0.002620051003759727 +0.004640478000510484 +0.0025441289762966335 +0.0025666799920145422 +0.004607004986610264 +0.0025999070203397423 +0.005114480998599902 +0.0025906039809342474 +0.001136502978624776 +0.006748882995452732 +0.0023212569940369576 +0.00485779601149261 +0.002757568989181891 +0.004900593979982659 +0.0010758459975477308 +0.005147124000359327 +0.0037079909816384315 +0.0027447369939181954 +0.004390521004097536 +0.0027099399885628372 +0.004475637018913403 +0.002353048010263592 +0.004360330000054091 +0.002418686985038221 +0.0024040089920163155 +0.004524146992480382 +0.002310481999302283 +0.002533858991228044 +0.0031567540136165917 +0.00397034699562937 +0.00424800900509581 +0.002587313996627927 +0.0025146540137939155 +0.004204879980534315 +0.0021155719878152013 +0.0024782620021142066 +0.004055781988427043 +0.0022391179809346795 +0.002341429004445672 +0.003916763002052903 +0.0022959380003158003 +0.0023584490118082613 +0.004013066994957626 +0.0023507050063926727 +0.00400469297892414 +0.0023273970000445843 +0.00223318999633193 +0.004130725021241233 +0.002094436000334099 +0.0024233639996964484 +0.0040691629983484745 +0.0021649120026268065 +0.002421787998173386 +0.004032107011880726 +0.002258525986690074 +0.0023319480242207646 +0.004036450001876801 +0.0022116960026323795 +0.0023936409852467477 +0.0040072099945973605 +0.0022697800013702363 +0.002333815995370969 +0.003963438008213416 +0.002443014003802091 +0.003962282004067674 +0.0022618219954892993 +0.0022513559961225837 +0.004114131006645039 +0.0022601200034841895 +0.0023593800142407417 +0.0039299460186157376 +0.002190667000832036 +0.00257913998211734 +0.0040702890255488455 +0.0022435089922510087 +0.002360451006097719 +0.004189664003206417 +0.0023908279836177826 +0.003968615987105295 +0.0022473819844890386 +0.0023760189942549914 +0.003998113010311499 +0.002244305011117831 +0.0023002410016488284 +0.004055489000165835 +0.0021791760227642953 +0.002452919987263158 +0.0039271780115086585 +0.0023684600018896163 +0.00227041999460198 +0.004088532994501293 +0.002311057993210852 +0.0023760420153848827 +0.004003337002359331 +0.0022550220019184053 +0.00417771001229994 +0.0022136649931780994 +0.0024077910056803375 +0.004044290981255472 +0.0022037349990569055 +0.002393475006101653 +0.004101977014215663 +0.0021874679950997233 +0.002382757986197248 +0.004106991022126749 +0.0021892950171604753 +0.0024022159923333675 +0.004109908011741936 +0.0023105790023691952 +0.0022571790032088757 +0.0040379260026384145 +0.0023067280126269907 +0.0022623709810432047 +0.004144186998018995 +0.0022127580014057457 +0.004201578994980082 +0.00218980701174587 +0.0023208280035760254 +0.00404146799701266 +0.002094480994855985 +0.0024532039824407548 +0.003996756015112624 +0.0022601039963774383 +0.0023692089889664203 +0.004079047997947782 +0.0022419219894800335 +0.0009872190130408853 +0.00534076799522154 +0.002294928999617696 +0.0022775889956392348 +0.003969930985476822 +0.0023425100080203265 +0.004105877975234762 +0.0023119169927667826 +0.0021708040148951113 +0.004199833987513557 +0.0022580050281248987 +0.002263637987198308 +0.004018736013676971 +0.0023276260180864483 +0.0009179380140267313 +0.00573073499253951 +0.0022845799976494163 +0.0023669969814363867 +0.0039040569972712547 +0.0022351389925461262 +0.002352773997699842 +0.004205212986562401 +0.002215350017650053 +0.002247416996397078 +0.00405328901251778 +0.0023392500006593764 +0.004060806997586042 +0.00214995801798068 +0.002533467981265858 +0.003926641016732901 +0.002255772997159511 +0.0023414760071318597 +0.00406514698988758 +0.0022940110065974295 +0.0023400270147249103 +0.004059800994582474 +0.002278172003570944 +0.0022692189959343523 +0.003931084997020662 +0.0023930150200612843 +0.0023332980053965002 +0.004002978996140882 +0.002424117992632091 +0.003931098006432876 +0.0021776130015496165 +0.0023528629972133785 +0.004137495008762926 +0.002193739026552066 +0.00239844000316225 +0.004051846015499905 +0.0021748350118286908 +0.00240198100800626 +0.004039286985062063 +0.002249642013339326 +0.0024540440062992275 +0.004085448017576709 +0.002302363980561495 +0.0023604590096510947 +0.004014269012259319 +0.0024046649923548102 +0.003956072003347799 +0.00218722500721924 +0.0023710370005574077 +0.00407691698637791 +0.0021291410084813833 +0.0023680510057602078 +0.0041202830034308136 +0.002161039999919012 +0.0024633829889353365 +0.004083551000803709 +0.0022402429895009845 +0.0022255889780353755 +0.0040612450102344155 +0.0021563610062003136 +0.0023961070110090077 +0.004101457016076893 +0.002348987996811047 +0.003959035995649174 +0.0021850460034329444 +0.0025688929890748113 +0.0008038719824980944 +0.005207844980759546 +0.0008790809952188283 +0.0035300110175739974 +0.004116488998988643 +0.0023838259803596884 +0.004017055005533621 +0.002206128992838785 +0.002338535006856546 +0.00416339302319102 +0.0022921269992366433 +0.0022269220207817852 +0.004144137987168506 +0.0022211819887161255 +0.004175483976723626 +0.0022304019948933274 +0.0023206670011859387 +0.004084000975126401 +0.0021206859964877367 +0.0025811090017668903 +0.004014581005321816 +0.0021768839797005057 +0.0023745210201013833 +0.00413442199351266 +0.0021644090011250228 +0.0023874879989307374 +0.004033670003991574 +0.002265678980620578 +0.002330327988602221 +0.00407575597637333 +0.0022465279907919466 +0.0022463960049208254 +0.004233151994412765 +0.002130234002834186 +0.004206983983749524 +0.002271342003950849 +0.002407291001873091 +0.003950435988372192 +0.0021629889961332083 +0.0023852610029280186 +0.004115649004234001 +0.0021529400255531073 +0.0023430479923263192 +0.0041480450017843395 +0.0022617250215262175 +0.0023294469865504652 +0.004001922003226355 +0.0021946069900877774 +0.004027433984447271 +0.002223953983047977 +0.00253754502045922 +0.0008769950072746724 +0.005150545999640599 +0.0022827109787613153 +0.004153432004386559 +0.0023840779904276133 +0.0021783630072604865 +0.004186921985819936 +0.0022365459881257266 +0.0022246779990382493 +0.0042754980095196515 +0.002186822996009141 +0.0023994479852262884 +0.004092014016350731 +0.002240236004581675 +0.002427019993774593 +0.004027290007798001 +0.0022789590002503246 +0.0042165659833699465 +0.0022357389971148223 +0.0023442069941665977 +0.004148469015490264 +0.00217112700920552 +0.0024612490087747574 +0.004110319976462051 +0.0021671320137102157 +0.0024397030065301806 +0.004075367993209511 +0.0022170000011101365 +0.0023488599981646985 +0.004066444002091885 +0.002516677981475368 +0.0021488369966391474 +0.004233204002957791 +0.00231246100156568 +0.0022025909856893122 +0.0041554430208634585 +0.002353936986764893 +0.0041798400052357465 +0.002193986001657322 +0.0010254050139337778 +0.005326484999386594 +0.002159004012355581 +0.0024278660130221397 +0.004021047992864624 +0.002210822014603764 +0.0023681239981669933 +0.0040545899828430265 +0.002263458998640999 +0.0010114570031873882 +0.0051888129964936525 +0.002296268008649349 +0.0023668319918215275 +0.0040458120056428015 +0.0022197609941940755 +0.0041181160195264965 +0.002157303999410942 +0.002490145998308435 +0.0042608039802871644 +0.0021923200110904872 +0.0025160880177281797 +0.004119911987800151 +0.002271286997711286 +0.004493667016504332 +0.0024395860091317445 +0.0026327010127715766 +0.004393437004182488 +0.0024961110029835254 +0.00437743598013185 +0.0022627929865848273 +0.0023392649891320616 +0.004007348004961386 +0.0023151380009949207 +0.0024956249981187284 +0.0038939509831834584 +0.0021683220111299306 +0.0023611740034539253 +0.004126198997255415 +0.0022436279978137463 +0.002329784008907154 +0.004054110002471134 +0.0022597569914069027 +0.0023412639857269824 +0.0040053400152828544 +0.0023588990152347833 +0.002346127002965659 +0.00401022401638329 +0.0022099390043877065 +0.0041416899766772985 +0.0022759779822081327 +0.002228244993602857 +0.00413703199592419 +0.0020994959922973067 +0.0023404279781971127 +0.0041174380166921765 +0.0021917060075793415 +0.0023506739817094058 +0.004062725027324632 +0.002216549008153379 +0.0023724979837425053 +0.004119657998671755 +0.002242841001134366 +0.0023402759979944676 +0.004143708007177338 +0.002354138996452093 +0.004384874016977847 +0.0022842379985377192 +0.0023002770030871034 +0.0045529639755841345 +0.002398768992861733 +0.004508218000410125 +0.0024362409894820303 +0.002498275978723541 +0.0043092739942949265 +0.002257396001368761 +0.00267905299551785 +0.004125772014958784 +0.0023933429911267012 +0.004383155988762155 +0.0022571109875570983 +0.0022623039840254933 +0.00417613101308234 +0.002044294000370428 +0.0025858320004772395 +0.003966182004660368 +0.0020983470021747053 +0.0025234100176021457 +0.004006422008387744 +0.0021177369926590472 +0.002354516997002065 +0.004099889018107206 +0.0021635069861076772 +0.0024701289949007332 +0.004242805007379502 +0.002246225019916892 +0.002360512997256592 +0.002815827989252284 +0.0023566349991597235 +0.003448650997597724 +0.004078702011611313 +0.0023313840210903436 +0.004092491988558322 +0.002075263997539878 +0.002411219000350684 +0.004077999998116866 +0.002126489009242505 +0.002308363007614389 +0.004114109993679449 +0.002104318991769105 +0.0024722420203033835 +0.004000139975687489 +0.002239021996501833 +0.004175231995759532 +0.002275395003380254 +0.0022256279771681875 +0.004064084991114214 +0.0023570359917357564 +0.002279951993841678 +0.0040450270171277225 +0.0021105349878780544 +0.0023965879809111357 +0.0041365719807799906 +0.002175660018110648 +0.0022863269841764122 +0.004177095979684964 +0.0020803940133191645 +0.002466720005031675 +0.0040458480070810765 +0.0020859809883404523 +0.0025117949990089983 +0.004017033992568031 +0.002200175018515438 +0.0021922989981248975 +0.004138022020924836 +0.002246082993224263 +0.004152331996010616 +0.002229809993878007 +0.0022690010082442313 +0.004069735994562507 +0.002100115001667291 +0.002373198018176481 +0.004174365982180461 +0.002078235993394628 +0.0025185809936374426 +0.003985896008089185 +0.0021144099882803857 +0.0024014369992073625 +0.00412112200865522 +0.0021648189867846668 +0.004111304006073624 +0.002391009998973459 +0.0021914450044278055 +0.004224427015287802 +0.0021573909907601774 +0.0023058460210449994 +0.004165371996350586 +0.002115526993293315 +0.002347961999475956 +0.00416600497555919 +0.002068111003609374 +0.0024502979940734804 +0.004122270009247586 +0.002154015004634857 +0.0022773160017095506 +0.004115226998692378 +0.002139796008123085 +0.0022628179867751896 +0.004051316995173693 +0.002144853991921991 +0.00237120600650087 +0.0040250000020023435 +0.002153776993509382 +0.002270518016302958 +0.0040777199901640415 +0.0022369739890564233 +0.0042024870053865016 +0.002177638001739979 +0.0022825030027888715 +0.004144902020925656 +0.002149175008526072 +0.0023197160044219345 +0.004173099994659424 +0.0020901120151393116 +0.002488500002073124 +0.004015293990960345 +0.002208663005148992 +0.002360404992941767 +0.0040948319947347045 +0.0022766549955122173 +0.0023121930134948343 +0.00417514200671576 +0.0022060110059101135 +0.002382531005423516 +0.004027240996947512 +0.0021959970181342214 +0.004073727002833039 +0.0022711109777446836 +0.00226278297486715 +0.004138184012845159 +0.0022323290177155286 +0.002254003979032859 +0.004107251996174455 +0.002189719001762569 +0.0024367219884879887 +0.004038713988848031 +0.0020967920136172324 +0.0024233740114141256 +0.004016352992039174 +0.002301374013768509 +0.002251252008136362 +0.004163392004556954 +0.00233921900507994 +0.004206122015602887 +0.0021820210095029324 +0.0023909239971544594 +0.004119613004149869 +0.0021277330233715475 +0.0024784799898043275 +0.00434882499394007 +0.002276309998705983 +0.004665729007683694 +0.002407461986877024 +0.002645358006702736 +0.004862147994572297 +0.002487707999534905 +0.004434989998117089 +0.0020883030083496124 +0.002351973991608247 +0.004272453021258116 +0.0021439169941004366 +0.0023414370079990476 +0.004107321990886703 +0.0021389879984781146 +0.0023304559872485697 +0.0043149139964953065 +0.0021999090095050633 +0.0024943629978224635 +0.004125486011616886 +0.002319730003364384 +0.0041954189946409315 +0.0020564389997161925 +0.0024998729932121933 +0.00413901501451619 +0.002248169999802485 +0.002351529023144394 +0.004120979021536186 +0.002207213983638212 +0.0023029849980957806 +0.004089652007678524 +0.002309528994373977 +0.002288132003741339 +0.004133665992412716 +0.0022740480198990554 +0.004076545010320842 +0.0023224870092235506 +0.002400983008556068 +0.004109991976292804 +0.002215359010733664 +0.0022787729976698756 +0.004137120995437726 +0.002125933999195695 +0.002423219004413113 +0.00406081200344488 +0.002201230003265664 +0.0024483879969920963 +0.004020711989142001 +0.0022260709956754 +0.002430824999464676 +0.003987503005191684 +0.0023036700149532408 +0.004104099003598094 +0.0022512440045829862 +0.002331979980226606 +0.004019681015051901 +0.002195300010498613 +0.0022677520173601806 +0.004089986992767081 +0.0022280940029304475 +0.0023240419977810234 +0.004100532998563722 +0.002234034996945411 +0.0023573179787490517 +0.004082061990629882 +0.002164414996514097 +0.002403613005299121 +0.004023246990982443 +0.002254107006592676 +0.004112474998692051 +0.00235693299327977 +0.002227896999102086 +0.004124520986806601 +0.002248823002446443 +0.002308468014234677 +0.004117038013646379 +0.0021116299903951585 +0.002459614013787359 +0.0041581249970477074 +0.0021156499860808253 +0.0022996919869910926 +0.004145273007452488 +0.002170927997212857 +0.002397020987700671 +0.004016688006231561 +0.0022509449918288738 +0.00415799199254252 +0.0022317339899018407 +0.0022822990140412003 +0.004073752003023401 +0.0022256519878283143 +0.0023445250117219985 +0.0040634070173837245 +0.002160989010008052 +0.0022908709943294525 +0.004144751001149416 +0.002125402999809012 +0.002409420005278662 +0.004005294002126902 +0.0021101640013512224 +0.0024591129913460463 +0.00406889000441879 +0.002108370012138039 +0.0024968840007204562 +0.004045346984639764 +0.0022292780049610883 +0.004172808985458687 +0.0022462719934992492 +0.002307911985553801 +0.004069040005560964 +0.002238235989352688 +0.0023439910146407783 +0.004011077020550147 +0.002152510976884514 +0.0023963029962033033 +0.004039785999339074 +0.0021810089820064604 +0.0024262959777843207 +0.004116929019801319 +0.0021938729914836586 +0.0024041679862421006 +0.0040759959956631064 +0.002184040000429377 +0.002419516007648781 +0.004016777005745098 +0.0022152589808683842 +0.002336345991352573 +0.004052181000588462 +0.0010744610044639558 +0.0034662699908949435 +0.0040912819968070835 +0.0023299489985220134 +0.004039897990878671 +0.002135771996108815 +0.0024111710081342608 +0.004111100017325953 +0.00223569298395887 +0.0024080580042209476 +0.004037540988065302 +0.002305784000782296 +0.003949728008592501 +0.0024183570058085024 +0.0021699030185118318 +0.004122310987440869 +0.0022183249820955098 +0.0023180530115496367 +0.003941119008231908 +0.0023614559904672205 +0.002326679998077452 +0.004109573026653379 +0.002254816994536668 +0.0023054080083966255 +0.00425458702375181 +0.0021157409937586635 +0.002541920024668798 +0.0040392760129179806 +0.002181863004807383 +0.0024915990070439875 +0.004233587009366602 +0.002311271004145965 +0.0043918129813391715 +0.0023545160074718297 +0.0026112989871762693 +0.004762972996104509 +0.00260177199379541 +0.00482649399782531 +0.0025237430236302316 +0.004605900001479313 +0.002448879007715732 +0.002908711991040036 +0.004642430983949453 +0.002380254998570308 +0.0045269629918038845 +0.0024176459992304444 +0.002606977999676019 +0.0044376240111887455 +0.0023698029981460422 +0.0023369579866994172 +0.004107988002942875 +0.0021797390072606504 +0.004197172005660832 +0.0022111669823061675 +0.0024591450055595487 +0.003925263008568436 +0.0022750130156055093 +0.0024439370026811957 +0.004308883973862976 +0.002172787004383281 +0.0026569630135782063 +0.004372705996502191 +0.0027684170054271817 +0.004547236982034519 +0.002390239998931065 +0.0044572420010808855 +0.0025316439860034734 +0.0021525600168388337 +0.004277005005860701 +0.0021273060119710863 +0.002353525982471183 +0.004112397989956662 +0.0021388260065577924 +0.002338186022825539 +0.004093383002327755 +0.0021522099850699306 +0.0024084649921860546 +0.00405259701074101 +0.002183246979257092 +0.002395868010353297 +0.003957909008022398 +0.0022118659981060773 +0.0042147729836869985 +0.0021563119953498244 +0.002288813004270196 +0.004140967008424923 +0.002239777008071542 +0.0023182639852166176 +0.004022406996227801 +0.0021372970077209175 +0.002367578010307625 +0.004020786000182852 +0.0021529740188270807 +0.0024299619835801423 +0.003942310024285689 +0.0022007749939803034 +0.0024275990144815296 +0.004047333990456536 +0.002165318001061678 +0.002427258004900068 +0.004046532005304471 +0.0021901869913563132 +0.004220347007503733 +0.0022046899830456823 +0.0022927280224394053 +0.004084220010554418 +0.0021934960095677525 +0.0022071699786465615 +0.004161074990406632 +0.0021858999971300364 +0.0022825810010544956 +0.004014542006189004 +0.002133258996764198 +0.002433688991004601 +0.004027754999697208 +0.0021763469849247485 +0.0024271839938592166 +0.004050527000799775 +0.002145113976439461 +0.002414992020931095 +0.004021048021968454 +0.002184302022214979 +0.00221773301018402 +0.004001781984698027 +0.0022790610091760755 +0.004185956000583246 +0.0022272839851211756 +0.002265735005494207 +0.004063106985995546 +0.0021658600016962737 +0.002354391006520018 +0.004035115998703986 +0.0021672830043826252 +0.0022658090165350586 +0.004110531997866929 +0.0022050149855203927 +0.0024185249931178987 +0.003994989994680509 +0.0022006520011927933 +0.0024466309987474233 +0.004076242999872193 +0.002077364013530314 +0.0023052119940984994 +0.004097614990314469 +0.0021625669905915856 +0.004224647011142224 +0.0021768790029454976 +0.0022615780180785805 +0.004181477997917682 +0.0021204329968895763 +0.002342584019061178 +0.004178445000434294 +0.0021222760260570794 +0.002555615996243432 +0.0038669700152240694 +0.0023163149890024215 +0.0022484030050691217 +0.004119302990147844 +0.0021224359807092696 +0.0024181650078389794 +0.004026480979518965 +0.002245993004180491 +0.002312652999535203 +0.004044239001814276 +0.0023320479958783835 +0.0008780329953879118 +0.005338821007171646 +0.002303138986462727 +0.004090050992090255 +0.0023327500093728304 +0.0009435350075364113 +0.0025137829943560064 +0.005124418006744236 +0.0022518730256706476 +0.004138074000366032 +0.0022226430010050535 +0.0024834880023263395 +0.003949505975469947 +0.002243377995910123 +0.002323529974091798 +0.004106370994122699 +0.002282193978317082 +0.0023164019803516567 +0.004153910995228216 +0.002297686005476862 +0.004165222984738648 +0.0022575170150958 +0.002343210013350472 +0.004016576014691964 +0.002175664994865656 +0.0024816309742163867 +0.003969550016336143 +0.00220515500404872 +0.0024072400119621307 +0.004023035988211632 +0.0022471740085165948 +0.0023357390018645674 +0.003974822000600398 +0.002260413981275633 +0.0023292179976124316 +0.00401116898865439 +0.002262683992739767 +0.002307768998434767 +0.004063013009727001 +0.002336967008886859 +0.003968801989685744 +0.0021309029834810644 +0.0024001089914236218 +0.004125381994526833 +0.0021623210050165653 +0.0023971770133357495 +0.004038725019199774 +0.002243937982711941 +0.0023966339940670878 +0.004063580010551959 +0.0022440809989348054 +0.00235769001301378 +0.004150580003624782 +0.002258518012240529 +0.002292860997840762 +0.004045746027259156 +0.0023870919831097126 +0.004025211004773155 +0.002265969989821315 +0.002334602002520114 +0.004057279002154246 +0.002187584002967924 +0.0024047399929258972 +0.004046212008688599 +0.0022270510089583695 +0.002319318999070674 +0.00393388097290881 +0.0022577100025955588 +0.0023659400176256895 +0.004046515008667484 +0.00222234200919047 +0.0023200739815365523 +0.00409131302149035 +0.002213746978668496 +0.002355157019337639 +0.003990833996795118 +0.0023118769749999046 +0.004169183986959979 +0.002254333987366408 +0.0023180970165412873 +0.0022479789913631976 +0.004149671993218362 +0.0023457469942513853 +0.004048590984893963 +0.0022434350103139877 +0.0023250660160556436 +0.004291797988116741 +0.0022397929860744625 +0.002338056976441294 +0.00425269000697881 +0.000796557025751099 +0.003566186991520226 +0.004044887988129631 +0.0023007449926808476 +0.0022141480003483593 +0.004194398003164679 +0.0025657789956312627 +0.003962721995776519 +0.002205975994002074 +0.0023601650027558208 +0.004089508991455659 +0.002236959000583738 +0.0023139980039559305 +0.0040715920040383935 +0.002259244996821508 +0.002271375007694587 +0.004082797007868066 +0.0022584650141652673 +0.00225521600805223 +0.004117794014746323 +0.0022164569818414748 +0.002350431022932753 +0.00409777500317432 +0.002311092015588656 +0.004125231003854424 +0.0021591449913103133 +0.0023149960034061223 +0.004057473997818306 +0.002246290008770302 +0.0023130479967221618 +0.004033534991322085 +0.002298535022418946 +0.00229479098925367 +0.004188872000668198 +0.002171402011299506 +0.0029857040208298713 +0.003357014007633552 +0.002303105022292584 +0.004106056003365666 +0.0022276269737631083 +0.0009289949957747012 +0.002358761994400993 +0.00519201101269573 +0.0023228809877764434 +0.004059778002556413 +0.0022443119960371405 +0.002345081011299044 +0.004105647007236257 +0.0009483709873165935 +0.003609720995882526 +0.004324238019762561 +0.0022536200121976435 +0.0023139379918575287 +0.0040317189996130764 +0.002265834016725421 +0.004120946017792448 +0.0022526139800902456 +0.002357166027650237 +0.0021525540214497596 +0.003955975989811122 +0.0024443859874736518 +0.004107721004402265 +0.0021406190062407404 +0.0024362379917874932 +0.004069779010023922 +0.002256331004900858 +0.002315307006938383 +0.004070132999913767 +0.0022429029922932386 +0.004161661985563114 +0.002228990982985124 +0.00224494599387981 +0.0040792129875626415 +0.002477103000273928 +0.002377137017901987 +0.0021260729990899563 +0.003999900014605373 +0.002348260983126238 +0.004100972000742331 +0.0021405069855973125 +0.0024692490114830434 +0.003968482022173703 +0.0022528860135935247 +0.0023395360040012747 +0.004024244000902399 +0.002243466005893424 +0.0023516719811595976 +0.004192080989014357 +0.002229342993814498 +0.004197395028313622 +0.002325592009583488 +0.0022518810001201928 +0.004135814990149811 +0.0022610460000578314 +0.0021640280028805137 +0.00429683699621819 +0.0021315649792086333 +0.002343840984394774 +0.004060505016241223 +0.002171222004108131 +0.002248281001811847 +0.004291685996577144 +0.0021148989908397198 +0.003261582984123379 +0.0033072690130211413 +0.002144928992493078 +0.002511220023734495 +0.004007051000371575 +0.0023674420081079006 +0.002246405987534672 +0.0040041820029728115 +0.0022497359896078706 +0.0042151089874096215 +0.002195768989622593 +0.0021981209865771234 +0.004286812007194385 +0.0020792630093637854 +0.00239529597456567 +0.004065941990120336 +0.002119618991855532 +0.0025340699939988554 +0.004135349998250604 +0.0021541889873333275 +0.002415511989966035 +0.004015944025013596 +0.0023039780207909644 +0.0040716659859754145 +0.0022651460021734238 +0.002231318998383358 +0.004197130998363718 +0.0022700450208503753 +0.0023141190176829696 +0.00417878502048552 +0.002139685006113723 +0.002332012023543939 +0.004136128991376609 +0.002240130997961387 +0.0024117669963743538 +0.004083252017153427 +0.002070213988190517 +0.002467468992108479 +0.004083073989022523 +0.0022437929874286056 +0.004146154009504244 +0.0023072040057741106 +0.0022061819909140468 +0.004158166004344821 +0.002321856009075418 +0.0024048020131886005 +0.004145754995988682 +0.0022535900061484426 +0.0024638930044602603 +0.004111062007723376 +0.002219467976829037 +0.004238661000272259 +0.0022286509920377284 +0.0024861650017555803 +0.003932064981199801 +0.0022350960061885417 +0.002175650995923206 +0.004240401001879945 +0.0021792459883727133 +0.0024185040092561394 +0.004086636006832123 +0.002240494010038674 +0.0024605240032542497 +0.004048412985866889 +0.002278739004395902 +0.0041645940218586475 +0.0022327780025079846 +0.0022726930037606508 +0.0023207789927255362 +0.003998356987722218 +0.0023250810045283288 +0.0022797679994255304 +0.004080941987922415 +0.0023687490029260516 +0.004120506986510009 +0.0022260129917412996 +0.00234648201148957 +0.004073240008438006 +0.0022239900135900825 +0.00234232799266465 +0.004058952006744221 +0.002203086012741551 +0.0023952220217324793 +0.004089101013960317 +0.0023006569826975465 +0.002279211999848485 +0.0041252970113419 +0.000893111020559445 +0.0025934570003300905 +0.005309428001055494 +0.002216235996456817 +0.004037951002828777 +0.0022503319778479636 +0.002335526020033285 +0.003988573007518426 +0.0022853660047985613 +0.0024892989895306528 +0.0041073829925153404 +0.002228714991360903 +0.002341541985515505 +0.004110706999199465 +0.002194661006797105 +0.004081870021764189 +0.0022445340000558645 +0.0024439870030619204 +0.004175156005658209 +0.002307053975528106 +0.0007742180023342371 +0.005523751024156809 +0.002179222006816417 +0.0024095150001812726 +0.004095754004083574 +0.002251937985420227 +0.002329962997464463 +0.004073574993526563 +0.002262889000121504 +0.0023292239930015057 +0.004042907996335998 +0.0023015149927232414 +0.004146160994423553 +0.0023630550131201744 +0.0023390759888570756 +0.0040594490128569305 +0.0021600339969154447 +0.00238347498816438 +0.004031362012028694 +0.0021991620014887303 +0.002310897980351001 +0.004225848999340087 +0.002263007016154006 +0.0023934989876579493 +0.003929995000362396 +0.0023319039901252836 +0.0023327830131165683 +0.004024383990326896 +0.0023756699811201543 +0.003990023018559441 +0.0022478100145235658 +0.0023799109912943095 +0.004024157009553164 +0.002211734012234956 +0.002373833005549386 +0.003965416020946577 +0.0022691679769195616 +0.0022911420091986656 +0.0041419089830014855 +0.0022505550005007535 +0.0025222940021194518 +0.004047647991683334 +0.0022647330188192427 +0.0023274790146388113 +0.004047711001476273 +0.0023325830115936697 +0.004095432988833636 +0.00217187000089325 +0.002384661987889558 +0.004195479996269569 +0.002104254992445931 +0.0025087009998969734 +0.004032732977066189 +0.0021391829941421747 +0.0024114609987009317 +0.004043937020469457 +0.0023318229941651225 +0.003052429005037993 +0.003363117983099073 +0.0022683049901388586 +0.0022824539919383824 +0.004059842001879588 +0.0023611139913555235 +0.00402258598478511 +0.0021399020042736083 +0.0025234490167349577 +0.0040800709975883365 +0.0021809799945913255 +0.0024295890179928392 +0.0040327259921468794 +0.0022481790219899267 +0.0023037140199448913 +0.004111567017389461 +0.0022209800081327558 +0.0041999759851023555 +0.0022016389993950725 +0.0022608659928664565 +0.00232400800450705 +0.004044825007440522 +0.0023759379982948303 +0.0040147679974325 +0.002373410010477528 +0.0023882369860075414 +0.0040866140043362975 +0.0021715600159950554 +0.002434889000141993 +0.004006470000604168 +0.0022329310013446957 +0.0023632700031157583 +0.004105044004973024 +0.0021565599890891463 +0.004248504992574453 +0.0022277410025708377 +0.002219802001491189 +0.004309409996494651 +0.002105028019286692 +0.002444874990032986 +0.003978844993980601 +0.0023154070076998323 +0.0022384269977919757 +0.004113792005227879 +0.0021676990145351738 +0.002430658001685515 +0.0040436399867758155 +0.0023087390000000596 +0.0022737050021532923 +0.004093380004633218 +0.002232088998425752 +0.0023927649890538305 +0.003993816004367545 +0.002214045001892373 +0.002378975972533226 +0.003988988988567144 +0.0022582839883398265 +0.0023684189945925027 +0.004034086014144123 +0.0023515920038335025 +0.0040334080113098025 +0.0021685440151486546 +0.0023787190148141235 +0.004133371985517442 +0.0020837369957007468 +0.0024633000139147043 +0.004048864007927477 +0.002229153993539512 +0.002399163000518456 +0.004010070988442749 +0.0023932940093800426 +0.0022513339936267585 +0.004016234015580267 +0.002313994977157563 +0.002306342008523643 +0.004144017992075533 +0.0008378589991480112 +0.003518739016726613 +0.00416220398619771 +0.0022846909996587783 +0.004126691987039521 +0.002153426001314074 +0.001076232991181314 +0.0035714900004677474 +0.003966763993958011 +0.002417354000499472 +0.004001450986834243 +0.002378301986027509 +0.002362610975978896 +0.004066686000442132 +0.0022731329954694957 +0.004240145004587248 +0.0022462170163635164 +0.0021492880186997354 +0.004234004009049386 +0.002178330993046984 +0.002375467011006549 +0.0041047330014407635 +0.002158521005185321 +0.0023378570040222257 +0.004139008990023285 +0.002147962019080296 +0.0023867399722803384 +0.004057718004332855 +0.0021114289993420243 +0.0025049840041901916 +0.00401050501386635 +0.002258659020299092 +0.002433910995023325 +0.003975732979597524 +0.002216852008132264 +0.0022695439984090626 +0.00419556099222973 +0.002124732010997832 +0.0041738239815458655 +0.002304277993971482 +0.0008696879958733916 +0.0054448099981527776 +0.0020859350042883307 +0.0024146600044332445 +0.004100345016922802 +0.002269176999107003 +0.0023055220081005245 +0.004255148989614099 +0.0007060199859552085 +0.003981426008976996 +0.004084429005160928 +0.002206375007517636 +0.004280997003661469 +0.0021892079967074096 +0.0022506460081785917 +0.004008017014712095 +0.002232580998679623 +0.002337685989914462 +0.004154055000981316 +0.0020982100104447454 +0.0024799540115054697 +0.004068206006195396 +0.0021617960010189563 +0.0023320780019275844 +0.0040493909909855574 +0.002263021015096456 +0.0042373059841338545 +0.002257979998830706 +0.002091608999762684 +0.004202937998343259 +0.0024311720044352114 +0.0021127530199009925 +0.00410777100478299 +0.002251424011774361 +0.0008556800021324307 +0.00368979899212718 +0.003916419023880735 +0.0023554790241178125 +0.004126281011849642 +0.0021316859929356724 +0.0025004879862535745 +0.00423527299426496 +0.002038089995039627 +0.002416654984699562 +0.004025544010801241 +0.0021968770015519112 +0.004145473998505622 +0.002229352976428345 +0.0022381989983841777 +0.004235642001731321 +0.0021961270249448717 +0.002255300001706928 +0.0041536890203133225 +0.0021088440262246877 +0.00230436900164932 +0.004189843020867556 +0.002159517986001447 +0.0022607189894188195 +0.004201308009214699 +0.002376155025558546 +0.0023347169917542487 +0.004242154012899846 +0.0024746129929553717 +0.0041137419757433236 +0.002253988990560174 +0.002251978003187105 +0.0040383319719694555 +0.0021670499991159886 +0.002399337972747162 +0.004121070000110194 +0.002167144004488364 +0.0024335910275112838 +0.004029103001812473 +0.0023134209914132953 +0.0023237790155690163 +0.004049634007969871 +0.0022702999995090067 +0.0023581160057801753 +0.004015162994619459 +0.002280316984979436 +0.004060171981109306 +0.002337815996725112 +0.002226075012004003 +0.004032810014905408 +0.0022202610271051526 +0.0022661520051769912 +0.004182040021987632 +0.0021554699924308807 +0.002417012001387775 +0.0040673459880054 +0.0021634750009980053 +0.0023339170147664845 +0.0041549559973645955 +0.002137597999535501 +0.0024751430028118193 +0.004019087995402515 +0.0021927730122115463 +0.004205678997095674 +0.0024279680219478905 +0.002062218001810834 +0.004327016009483486 +0.002263364993268624 +0.0023722649784758687 +0.004398289020173252 +0.002311121003003791 +0.00436945998808369 +0.002241511974716559 +0.002413685986539349 +0.0040631509909871966 +0.0023106459993869066 +0.0022183860128279775 +0.0041689999925438315 +0.002158339018933475 +0.002314181998372078 +0.004205653996905312 +0.002120176999596879 +0.0024359610106330365 +0.003996890998678282 +0.002305022004293278 +0.0023921109968796372 +0.004048838978633285 +0.0022573470196221024 +0.004189933999441564 +0.0023002499947324395 +0.002384930005064234 +0.004112555005121976 +0.0023142950085457414 +0.0023907959985081106 +0.004162744007771835 +0.0022259030083660036 +0.0023288530064746737 +0.004169777996139601 +0.00212712399661541 +0.002480087016010657 +0.003931143990484998 +0.0022152659948915243 +0.0041849609988275915 +0.0022265590087044984 +0.002205863012932241 +0.004172290995484218 +0.002155689027858898 +0.0022538710036315024 +0.004162597004324198 +0.0022160350054036826 +0.002366422995692119 +0.004038888000650331 +0.0021134419948793948 +0.002343282016227022 +0.004138557007536292 +0.002155613008653745 +0.002362389990594238 +0.004087834007805213 +0.002271973993629217 +0.0023571640194859356 +0.0028388430073391646 +0.003504485997837037 +0.004232512990711257 +0.00225920497905463 +0.002212565013905987 +0.004086291999556124 +0.0022608689905609936 +0.002216739987488836 +0.004162092023761943 +0.0021097760181874037 +0.0024573559931013733 +0.004135235998546705 +0.0021399699908215553 +0.0023697399883531034 +0.004106142994714901 +0.002230985992355272 +0.0024698330089449883 +0.0042702999780885875 +0.0007692489889450371 +0.0036538060230668634 +0.00413527199998498 +0.002132560999598354 +0.004187287006061524 +0.0022972460137680173 +0.0022474690049421042 +0.004155531991273165 +0.0021210619888734072 +0.002316792990313843 +0.004112954979063943 +0.002160642994567752 +0.002392966009210795 +0.004115483985515311 +0.0021548170188907534 +0.002336090023163706 +0.004153829999268055 +0.002299227984622121 +0.004134963994147256 +0.002168351988075301 +0.0023341049964074045 +0.004056814999785274 +0.002238003973616287 +0.002295444021001458 +0.0041482659871689975 +0.0021658859914168715 +0.002314179000677541 +0.0042163119942415506 +0.002089179994072765 +0.0023167229956015944 +0.004132508998736739 +0.002257760992506519 +0.0023743199999444187 +0.002858816005755216 +0.0033971140219364315 +0.004171644017333165 +0.002286078000906855 +0.002139575983164832 +0.004217856010654941 +0.0024796139914542437 +0.0021561010216828436 +0.00411086599342525 +0.0021065079781692475 +0.002412120986264199 +0.0041376200097147375 +0.0020945330034010112 +0.0023768180108163506 +0.004307997005525976 +0.0021603239874821156 +0.002351246017497033 +0.004121369973290712 +0.0008652459946461022 +0.0036963830061722547 +0.0041040639916900545 +0.002225494012236595 +0.00416764902183786 +0.0022206759895198047 +0.0022511389979626983 +0.00415420500212349 +0.0022503850050270557 +0.0024159610038623214 +0.003959856985602528 +0.0021341520186979324 +0.0023905069974716753 +0.004094278003321961 +0.0022529289999511093 +0.0023178529809229076 +0.004108524997718632 +0.002142616984201595 +0.002458460978232324 +0.004080915998201817 +0.0022078929760027677 +0.004170578991761431 +0.002251986996270716 +0.002183196018449962 +0.004152217006776482 +0.002245864976430312 +0.002159711002605036 +0.004182100994512439 +0.0020934630010742694 +0.0024790210009086877 +0.003980221983511001 +0.002254242019262165 +0.002299477026099339 +0.004255387000739574 +0.002328506001504138 +0.004265945026418194 +0.0023300499888136983 +0.0023340040061157197 +0.004474815999856219 +0.0019865799986291677 +0.002448844024911523 +0.004221352020977065 +0.002403353981208056 +0.004316805978305638 +0.002542297006584704 +0.0024076420231722295 +0.004398378980113193 +0.002028794988291338 +0.0025279640103690326 +0.004046325018862262 +0.0020671820093411952 +0.0025480339827481657 +0.004037425009300932 +0.0021099690056871623 +0.0026021339872386307 +0.004107070999452844 +0.0021863700239919126 +0.004068799986271188 +0.0022703020076733083 +0.0022337400005199015 +0.004211030027363449 +0.002181918011046946 +0.002296749997185543 +0.004104598017875105 +0.00215325498720631 +0.0023915180063340813 +0.003963857976486906 +0.0022831750102341175 +0.0024067870108410716 +0.0040624350076541305 +0.0021291679877322167 +0.0024644540098961443 +0.004097707016626373 +0.0022036510054022074 +0.0021921159932389855 +0.004421871999511495 +0.0007152570178732276 +0.0037097879976499826 +0.004049955023219809 +0.0022411080135498196 +0.00425840201205574 +0.0022850690002087504 +0.002250677003758028 +0.004190681996988133 +0.0021685099927708507 +0.0024544149928260595 +0.0039671010163147 +0.0023069559829309583 +0.0022996740008238703 +0.004127549997065216 +0.002216967986896634 +0.002536880987463519 +0.0040480869938619435 +0.0023690359957981855 +0.003906336001819 +0.0023603149747941643 +0.002236217987956479 +0.004152932990109548 +0.002122648002114147 +0.0022645979770459235 +0.004118176002521068 +0.0021665249951183796 +0.0024706489930395037 +0.004055124998558313 +0.002236350002931431 +0.002311037009349093 +0.004081688006408513 +0.0021755030029453337 +0.002366940985666588 +0.00402231200132519 +0.0021784249984193593 +0.004202323994832113 +0.002297713013831526 +0.002262449008412659 +0.0041558500088285655 +0.002312166994670406 +0.002019620005739853 +0.004201522999210283 +0.0022774619865231216 +0.0023561849957332015 +0.0041361589974258095 +0.002218581998022273 +0.0022082600044086576 +0.004235711006913334 +0.002117461001034826 +0.002427861007163301 +0.004041052976390347 +0.0008864049741532654 +0.0037479960010387003 +0.004034379991935566 +0.0022453920100815594 +0.004107278014998883 +0.002172845008317381 +0.002297332015587017 +0.004132564004976302 +0.0022566280094906688 +0.0022358600108418614 +0.004109653003979474 +0.0021917590056546032 +0.0025921560009010136 +0.00435075699351728 +0.0021446550090331584 +0.0041588360036257654 +0.002326146000996232 +0.0021346230059862137 +0.004215052002109587 +0.002216210006736219 +0.002226479002274573 +0.004105171974515542 +0.002305971021996811 +0.002052571013337001 +0.004181002004770562 +0.0021354880009312183 +0.0023299430031329393 +0.004225865995977074 +0.002062754996586591 +0.002317557024070993 +0.004212533007375896 +0.0022151999874040484 +0.0024695970059838146 +0.004019216983579099 +0.0021877480030525476 +0.0023890519805718213 +0.004078439000295475 +0.0022164700203575194 +0.004208322003250942 +0.0023057449725456536 +0.0020775380253326148 +0.004167500010225922 +0.0021794479980599135 +0.0023884359980002046 +0.004156468989094719 +0.0021191209962125868 +0.002382643026066944 +0.004102072998648509 +0.0021685689862351865 +0.004212347004795447 +0.0022613070032093674 +0.002234401006717235 +0.002233068022178486 +0.004164431011304259 +0.0023189990024548024 +0.002227349003078416 +0.004125581996049732 +0.002238078013760969 +0.004163747013080865 +0.0021695600007660687 +0.002334799006348476 +0.004120990983210504 +0.0021141680190339684 +0.0023275139974430203 +0.00409239501459524 +0.002185747987823561 +0.0023733979905955493 +0.004119663994060829 +0.002149739011656493 +0.002609926013974473 +0.003962355986004695 +0.0021563019836321473 +0.002331477007828653 +0.004160267009865493 +0.002258636988699436 +0.00415494802291505 +0.0022527760011143982 +0.0023285459901671857 +0.004131348978262395 +0.0021313450124580413 +0.0023534570063930005 +0.004100096004549414 +0.002098783996189013 +0.0031869699887465686 +0.0032979480165522546 +0.00223990497761406 +0.002325278997886926 +0.0041820870246738195 +0.0021375350188463926 +0.004277900996385142 +0.0022661639959551394 +0.0022345309844240546 +0.0041183359862770885 +0.002242329006548971 +0.002312297001481056 +0.004117720993235707 +0.0021745779959019274 +0.0023213849926833063 +0.004073137999512255 +0.0021954390103928745 +0.0031002990144770592 +0.0032865930115804076 +0.002331461990252137 +0.0022932020074222237 +0.004116618016269058 +0.0022256859811022878 +0.00415706800413318 +0.002267840987769887 +0.0023375189921353012 +0.004261166992364451 +0.002249316981760785 +0.002238039014628157 +0.004208075988572091 +0.0021734150068368763 +0.002456616988638416 +0.0041943859832827 +0.002082728984532878 +0.002327457012142986 +0.004285863018594682 +0.0022415250132326037 +0.0021921870065853 +0.004034134006360546 +0.0023061040265019983 +0.002415769995423034 +0.004084179003257304 +0.0022851350076962262 +0.004038924002088606 +0.002190661005442962 +0.0023384770029224455 +0.004105519998120144 +0.0022186620044521987 +0.002318459009984508 +0.004139316006330773 +0.0021581600012723356 +0.0024209569965023547 +0.004000806977273896 +0.002156133996322751 +0.002431922999676317 +0.004071133997058496 +0.0007102560193743557 +0.0037664510018657893 +0.0041026830149348825 +0.0021763149998150766 +0.004114868002943695 +0.002224633004516363 +0.002255311992485076 +0.004115789022762328 +0.002207882993388921 +0.00229044898878783 +0.0041301019955426455 +0.002111690992023796 +0.0023809539852663875 +0.0040926760120783 +0.0022191200114320964 +0.002334735996555537 +0.00419393100310117 +0.002211554005043581 +0.002320175990462303 +0.004110704001504928 +0.002254071005154401 +0.004086583998287097 +0.002314312005182728 +0.0022549690038431436 +0.00411951300338842 +0.00218933800351806 +0.0024109389923978597 +0.004134332993999124 +0.0020807980035897344 +0.0024132639809977263 +0.004055049997987226 +0.0021785639983136207 +0.002553897997131571 +0.004092345014214516 +0.0021665040112566203 +0.0024142549955286086 +0.004061291983816773 +0.0022341310104820877 +0.004042755987029523 +0.002346738998312503 +0.0022005109931342304 +0.004194409993942827 +0.002113468013703823 +0.0024293539754580706 +0.0040944220090750605 +0.002074773015920073 +0.0023869629949331284 +0.004070489987498149 +0.002253745013149455 +0.0023345579975284636 +0.004179383016889915 +0.0020952660124748945 +0.0026190350181423128 +0.004149443004280329 +0.0021907580085098743 +0.004201016010483727 +0.0024590859829913825 +0.0021877230028621852 +0.0040113629947882146 +0.0022842199832666665 +0.002381010999670252 +0.004146253981161863 +0.0020526039879769087 +0.002488072990672663 +0.004041754989884794 +0.002167619008105248 +0.0025854900013655424 +0.004094172007171437 +0.0022900860058143735 +0.004230357997585088 +0.0021756350179202855 +0.0023654399847146124 +0.00396870297845453 +0.002359256992349401 +0.00225249701179564 +0.004172451997874305 +0.002100765996146947 +0.0024321249802596867 +0.0040879970183596015 +0.002225689997430891 +0.0023341620108112693 +0.004156571987550706 +0.0020731760014314204 +0.002518401015549898 +0.004057387006469071 +0.002122003003023565 +0.004195603018160909 +0.002167562022805214 +0.0022819089936092496 +0.004140895005548373 +0.0023420169891323894 +0.002201185008743778 +0.00404547801008448 +0.0021413619979284704 +0.002410519984550774 +0.004132692003622651 +0.0021624480141326785 +0.002327556983800605 +0.004102690989384428 +0.0021448770130518824 +0.00249502100632526 +0.003976398991653696 +0.002148761006537825 +0.0025003420014400035 +0.0039837409858591855 +0.002325662993825972 +0.0040630309958942235 +0.0022476770100183785 +0.0022618109942413867 +0.0040631419979035854 +0.002162578981369734 +0.002432148001389578 +0.004106325999600813 +0.002105625986587256 +0.0023956480144988745 +0.0041228579939343035 +0.0021204549993854016 +0.0024989300000015646 +0.003995534003479406 +0.002197147987317294 +0.0023527560115326196 +0.004171567998128012 +0.0021102929895278066 +0.004336568992584944 +0.0021350379975046962 +0.0023155559902079403 +0.004152882000198588 +0.0021582060144282877 +0.0023991629714146256 +0.004069582995725796 +0.0021406020096037537 +0.0024414270010311157 +0.004072011011885479 +0.0021471799991559237 +0.002340006991289556 +0.004434346017660573 +0.002229553007055074 +0.004761305986903608 +0.002497392997611314 +0.002078401012113318 +0.004317582002840936 +0.0020757380116265267 +0.00251076600397937 +0.004040743020595983 +0.002364119980484247 +0.002214447013102472 +0.004280774999642745 +0.002176359004806727 +0.004135497991228476 +0.002414057991700247 +0.0021434820082504302 +0.004098636010894552 +0.002253732003737241 +0.002268329990329221 +0.004108523979084566 +0.0024549920053686947 +0.0022891679836902767 +0.004172588000074029 +0.00225330499233678 +0.0023718869779258966 +0.004072892013937235 +0.0021678530029021204 +0.002398632001131773 +0.004087118984898552 +0.0022511029965244234 +0.004179676994681358 +0.002200410992372781 +0.0022756080143153667 +0.004237397981341928 +0.0022740270069334656 +0.002328789996681735 +0.004040360974613577 +0.0021623389911837876 +0.002415196009678766 +0.0040736070077400655 +0.0021602979977615178 +0.002421212993795052 +0.004027237999252975 +0.00225010298890993 +0.0022333840024657547 +0.0029547549784183502 +0.003437289997236803 +0.004096235003089532 +0.0022499500191770494 +0.002228781988378614 +0.004169291001744568 +0.002117452007951215 +0.0023392060247715563 +0.004091098002390936 +0.0022395499981939793 +0.002357524004764855 +0.004120946017792448 +0.0021840679983142763 +0.002308267983607948 +0.00417228601872921 +0.00219148097676225 +0.002439414005493745 +0.004041492007672787 +0.0021901080035604537 +0.002463476004777476 +0.003988932992797345 +0.002235805004602298 +0.004110670008230954 +0.002247602998977527 +0.0023241960152518004 +0.004032700991956517 +0.0021893999946769327 +0.0023845350078772753 +0.00405313799274154 +0.0022013330017216504 +0.0023943760024849325 +0.0040848930075298995 +0.0021611269912682474 +0.002400129014858976 +0.0040910949755925685 +0.002171708008972928 +0.002415097987977788 +0.0040399399877060205 +0.002358758996706456 +0.0039789240108802915 +0.0022781800071243197 +0.0023036350030452013 +0.004056403995491564 +0.0021445110032800585 +0.0024352679902222008 +0.0041060470102820545 +0.0021864150185137987 +0.00233492098050192 +0.004107855987967923 +0.0021957439894322306 +0.002264793001813814 +0.004125000996282324 +0.002394009003182873 +0.0024076269764918834 +0.004008642979897559 +0.002423402009299025 +0.0038969960005488247 +0.0022891330008860677 +0.0023859450011514127 +0.0041324579797219485 +0.0022442240151576698 +0.0023519799869973212 +0.004108480003196746 +0.00221316100214608 +0.002367359003983438 +0.004045929992571473 +0.002211500017438084 +0.0024182310153264552 +0.0041052179876714945 +0.002216502994997427 +0.0024249679991044104 +0.0039893890207167715 +0.002246076997835189 +0.004099420999409631 +0.002265123010147363 +0.0023176409886218607 +0.004041905980557203 +0.00215019698953256 +0.00245996200828813 +0.004083254985744134 +0.0022123100061435252 +0.002397128992015496 +0.004043283988721669 +0.002212934981798753 +0.0023051080061122775 +0.004098335019079968 +0.0021628850081469864 +0.0024326519924215972 +0.004007236013421789 +0.002397925010882318 +0.004065224988153204 +0.0022505100059788674 +0.0023337599996011704 +0.004019966989289969 +0.0021452060027513653 +0.002417051000520587 +0.004028124007163569 +0.0021602129854727536 +0.002411694993497804 +0.004002789006335661 +0.002189028018619865 +0.0023261109890881926 +0.004111580987228081 +0.0021936820121482015 +0.002421909011900425 +0.004139280994422734 +0.0022387900098692626 +0.004098039004020393 +0.002248524979222566 +0.0023709689849056304 +0.002186199009884149 +0.004197261005174369 +0.002110948000336066 +0.0043550420086830854 +0.002225937001639977 +0.0024295750190503895 +0.004401587008032948 +0.0023780629853717983 +0.0024574129784014076 +0.004454844020074233 +0.00260054599493742 +0.004594823985826224 +0.0027295839972794056 +0.004789276019437239 +0.002636270975926891 +0.0048415070050396025 +0.002512973005650565 +0.002505480981199071 +0.004498178022913635 +0.002653496980201453 +0.004866198025410995 +0.002481407980667427 +0.002501048002159223 +0.004319425002904609 +0.0025651149917393923 +0.0043815360113512725 +0.0025928670074790716 +0.0025887240190058947 +0.004517168010352179 +0.0025577020132914186 +0.0045610080123879015 +0.002675733994692564 +0.0029295040003489703 +0.004871265991823748 +0.0027330009907018393 +0.00463368502096273 +0.002675766998436302 +0.004671875998610631 +0.0023399339988827705 +0.002708042011363432 +0.004394144983962178 +0.0024556659918744117 +0.004434481990756467 +0.002286581991938874 +0.0021241609938442707 +0.004350442992290482 +0.0008305450028274208 +0.0037084909854456782 +0.004325551009969786 +0.0021798349916934967 +0.002406218001851812 +0.004041456995764747 +0.002417600975604728 +0.0022694709768984467 +0.004499172995565459 +0.000810412981081754 +0.003751660988200456 +0.004362075997050852 +0.0026842360093723983 +0.004318110004533082 +0.002241622976725921 +0.004076878016348928 +0.0022551550064235926 +0.0023148959735408425 +0.004092794988537207 +0.00213954399805516 +0.0024528789799660444 +0.004045667999889702 +0.0022244229912757874 +0.0022402949980460107 +0.004126978979911655 +0.002179189003072679 +0.0023715099960099906 +0.004347003006841987 +0.0021648080146405846 +0.0023308689997065812 +0.004029740986879915 +0.0022959600028116256 +0.004163888981565833 +0.002255995001178235 +0.0024284590035676956 +0.003911576990503818 +0.0022194829944055527 +0.0023430200235452503 +0.004051398980664089 +0.0021445480233523995 +0.002451022999593988 +0.003966636984841898 +0.0021813330240547657 +0.0023718849988654256 +0.004039923020172864 +0.0022476949961856008 +0.0023168140032794327 +0.004039530991576612 +0.002264679002109915 +0.0023252739920280874 +0.004023375018732622 +0.002265343995532021 +0.004250285011949018 +0.002236136991996318 +0.0024335510097444057 +0.001966898998944089 +0.004173234978225082 +0.0009765999857336283 +0.002548254997236654 +0.00515097298193723 +0.0022589430154766887 +0.004123505001189187 +0.0022915869776625186 +0.0022197219950612634 +0.00415187599719502 +0.0022480030020233244 +0.002367915993090719 +0.00399494799785316 +0.0022719860135111958 +0.0022870840039104223 +0.004018889012513682 +0.0022813609975855798 +0.002188735001254827 +0.00414429500233382 +0.002325263019884005 +0.004153596004471183 +0.0020774579897988588 +0.002463557990267873 +0.004019299987703562 +0.0023280690074898303 +0.0021672059956472367 +0.004241165996063501 +0.0022475919977296144 +0.0023361020139418542 +0.003972963982960209 +0.0009229029819834977 +0.0038377820164896548 +0.004075800999999046 +0.002212146995589137 +0.0041660110000520945 +0.0022532060102093965 +0.002391188987530768 +0.00391725599183701 +0.002142946992535144 +0.0024253260053228587 +0.004031595017295331 +0.0023585210146848112 +0.002251341997180134 +0.004058347985846922 +0.002127725980244577 +0.0024314929905813187 +0.004023821005830541 +0.002246666990686208 +0.0022285500017460436 +0.004244562995154411 +0.0008927599992603064 +0.003774776996579021 +0.004083150008227676 +0.002391512010945007 +0.004060034989379346 +0.002238962013507262 +0.0023552759957965463 +0.004025510977953672 +0.002240544999949634 +0.002335092023713514 +0.004116308991797268 +0.0022309299965854734 +0.002384507009992376 +0.0040492829866707325 +0.0023851270088925958 +0.00405553198652342 +0.002244054980110377 +0.0023544179857708514 +0.004115207004360855 +0.002235491992905736 +0.0023726219951640815 +0.004046385991387069 +0.0021673589944839478 +0.0023809460108168423 +0.004001603985670954 +0.0023371489951387048 +0.002314045006642118 +0.004128133994527161 +0.0022087690012995154 +0.002454241010127589 +0.004038401995785534 +0.00226941701839678 +0.0024046300095506012 +0.0028210669988766313 +0.003525904001435265 +0.00407367802108638 +0.0022878989984747022 +0.002301161002833396 +0.004017881001345813 +0.002203354990342632 +0.0024041990109253675 +0.004067271016538143 +0.002183342003263533 +0.002541515015764162 +0.004204818978905678 +0.0022796599951107055 +0.002392769994912669 +0.003995334991486743 +0.002333220007130876 +0.0024047769838944077 +0.003943871008232236 +0.0022852290130686015 +0.004048442002385855 +0.0022436610015574843 +0.0023666280030738562 +0.0040361330029554665 +0.0021499459980987012 +0.0024559019948355854 +0.00416146099450998 +0.002184879995184019 +0.0024649149854667485 +0.004080735001480207 +0.0022937909816391766 +0.0022459080209955573 +0.004026534996228293 +0.002384769992204383 +0.004074288997799158 +0.002276473998790607 +0.002327369002159685 +0.003984686016337946 +0.002203564014052972 +0.0023249139776453376 +0.004264390998287126 +0.0022579920187126845 +0.0023362209904007614 +0.0041048139974009246 +0.0022484780056402087 +0.0023358749749604613 +0.00411209900630638 +0.0023347899841610342 +0.004061810992425308 +0.0023460040101781487 +0.0024285539984703064 +0.002112155983923003 +0.003990819997852668 +0.002394241018919274 +0.004048100992804393 +0.0021441690041683614 +0.0023495849745813757 +0.0040959150064736605 +0.0021874490194022655 +0.0024183480127248913 +0.004069939983310178 +0.0022229579917620867 +0.002300787018612027 +0.004193908011075109 +0.0022019599855411798 +0.0022225709981285036 +0.00431841699173674 +0.0007814099953975528 +0.003648323006927967 +0.004064022999955341 +0.002339265018235892 +0.0040525700023863465 +0.002152278000721708 +0.0024692970036994666 +0.004017567000119016 +0.00215291598578915 +0.0024616919981781393 +0.004124271014006808 +0.002236711996374652 +0.0023839529894758016 +0.004030164011055604 +0.002271738980198279 +0.0022636369976680726 +0.00403717698645778 +0.0023161330027505755 +0.004047335998620838 +0.002248008007882163 +0.002242353977635503 +0.004201955016469583 +0.0022877150040585548 +0.002557479980168864 +0.00425364199327305 +0.0021667979890480638 +0.0023951780167408288 +0.004083713021827862 +0.002257279003970325 +0.0023624039895366877 +0.0027458000113256276 +0.0036159270093776286 +0.002203225012635812 +0.004088178975507617 +0.0022600739903282374 +0.004104252002434805 +0.002193861990235746 +0.002356934011913836 +0.004109365021577105 +0.002229489997262135 +0.0024069779901765287 +0.004089391994057223 +0.0022716149978805333 +0.002333431999431923 +0.00405309401685372 +0.002194232016336173 +0.002380969002842903 +0.004083781008375809 +0.0021518460125662386 +0.002366606000578031 +0.00404221098870039 +0.002333620999706909 +0.002320075989700854 +0.004040761006763205 +0.0024563420156482607 +0.0040384859894402325 +0.002167370024835691 +0.002379905985435471 +0.004360107996035367 +0.002201777999289334 +0.0023160380078479648 +0.004115062009077519 +0.00237424299120903 +0.004177947994321585 +0.002276173996506259 +0.0022411340032704175 +0.004146959021454677 +0.002133664005668834 +0.002337951009394601 +0.00414614100009203 +0.002170857012970373 +0.0023954719945322722 +0.004031221993500367 +0.0021619920153170824 +0.002390309004113078 +0.004074294993188232 +0.0022574689937755466 +0.0023420719953719527 +0.004038238024804741 +0.002219585992861539 +0.002271376986755058 +0.004038404003949836 +0.002518663997761905 +0.004032060009194538 +0.0022803879983257502 +0.0023436149931512773 +0.004021255008410662 +0.002225569012807682 +0.0024227260146290064 +0.003999075997853652 +0.0023246490163728595 +0.00228959001833573 +0.004086308996193111 +0.0022588419960811734 +0.002547270996728912 +0.004077336983755231 +0.002251706988317892 +0.004491888015763834 +0.0023451799934264272 +0.0023612910008523613 +0.004196421010419726 +0.0021319770021364093 +0.0026178449916187674 +0.004548375989543274 +0.0025601979868952185 +0.0045147850178182125 +0.0021291050070431083 +0.0025310280034318566 +0.004179334006039426 +0.0020560459815897048 +0.002394786977674812 +0.0041857399919535965 +0.0021412729984149337 +0.004156092996709049 +0.0021727379935327917 +0.0023274560226127505 +0.004294876009225845 +0.0022465729853138328 +0.002230482001323253 +0.0042338680068496615 +0.002305506990524009 +0.0023870009754318744 +0.004297331004636362 +0.002206571982242167 +0.0041324909834656864 +0.002472834981745109 +0.0022589979926124215 +0.002263998001581058 +0.0041242410079576075 +0.001071417995262891 +0.003481188992736861 +0.004015187005279586 +0.002255013008834794 +0.004088393005076796 +0.0021661710052285343 +0.0024406530137639493 +0.0040723750134930015 +0.0020978469983674586 +0.0023516800138168037 +0.004013625002698973 +0.0021699320059269667 +0.0024759600055404007 +0.004129259003093466 +0.0022261870035436004 +0.002361120015848428 +0.004029211006127298 +0.0023434750037267804 +0.003923786018276587 +0.002283626003190875 +0.002349040994886309 +0.003937098983442411 +0.0022453590063378215 +0.00233321898849681 +0.0042159350123256445 +0.002069257985567674 +0.002497384004527703 +0.004040152009110898 +0.002098056982504204 +0.0024135019921232015 +0.004053370008477941 +0.0022752590011805296 +0.0022780489816796035 +0.00415049001458101 +0.00245045599876903 +0.0038789389946032315 +0.0022757539991289377 +0.0022362849849741906 +0.004105698986677453 +0.0022635909845121205 +0.0024339950177818537 +0.004103985003894195 +0.0021444130106829107 +0.002451423992170021 +0.0040123710059560835 +0.0022132119920570403 +0.002376327000092715 +0.00417350500356406 +0.002146312006516382 +0.0024168819945771247 +0.003972217993577942 +0.002283834997797385 +0.004229092999594286 +0.0022330459905788302 +0.0021713459864258766 +0.004169216001173481 +0.002200777002144605 +0.002254149003420025 +0.0042085350141860545 +0.0021576840081252158 +0.0024008110049180686 +0.004031303978990763 +0.00209996200283058 +0.0024377600057050586 +0.0040354260127060115 +0.002235633000964299 +0.0023310529941227287 +0.004049712006235495 +0.002062102983472869 +0.0032175140222534537 +0.0034028789959847927 +0.002311113988980651 +0.004023954999865964 +0.002506728982552886 +0.002226329001132399 +0.0041586629813537 +0.0022154230100568384 +0.0022870179964229465 +0.004136061994358897 +0.0021327360009308904 +0.00238234200514853 +0.004239918984239921 +0.002243205002741888 +0.0023454430047422647 +0.0039941669965628535 +0.0021526450000237674 +0.0024672209983691573 +0.00401266201515682 +0.0023286330106202513 +0.004094139992957935 +0.002335813012905419 +0.0021904399909544736 +0.0041198340186383575 +0.0023108879977371544 +0.0023222140152938664 +0.004013758996734396 +0.002224402007414028 +0.0023182779841590673 +0.004076654004165903 +0.002262968977447599 +0.0023395399912260473 +0.004020647000288591 +0.0022842400067020208 +0.002397317992290482 +0.0041935130138881505 +0.002373077004449442 +0.0007764809997752309 +0.00534831199911423 +0.002491288003511727 +0.004029727017041296 +0.0022002060140948743 +0.002410408022115007 +0.004079127014847472 +0.0022197020007297397 +0.0023435920011252165 +0.0040562689828220755 +0.0023965580039657652 +0.00218519099871628 +0.0042016999796032906 +0.0008389129943680018 +0.002432866982417181 +0.005456558981677517 +0.0023789610131643713 +0.004102238017367199 +0.002122179983416572 +0.002425322018098086 +0.004031275020679459 +0.002187859994592145 +0.0024125749769154936 +0.003998245985712856 +0.002213590982137248 +0.0024099790025502443 +0.004148259002249688 +0.0023971369955688715 +0.002110539993736893 +0.004093605995876715 +0.002317990001756698 +0.00227816600818187 +0.004049921000842005 +0.0024297859927173704 +0.002165810001315549 +0.0041986719879787415 +0.0023925020068418235 +0.004227465018630028 +0.0022521879873238504 +0.002342134015634656 +0.004113398987101391 +0.0023437550116796046 +0.002332791016669944 +0.003970739024225622 +0.00248969899257645 +0.002114306000294164 +0.004071539995493367 +0.002397912001470104 +0.004044862987939268 +0.0022364470059983432 +0.002366681001149118 +0.004041260021040216 +0.002194492000853643 +0.0023818409827072173 +0.004218033980578184 +0.0021192140120547265 +0.0023956210061442107 +0.004168935003690422 +0.002374381001573056 +0.002291986980708316 +0.004079559992533177 +0.00218661199323833 +0.0042921240092255175 +0.002138687006663531 +0.0024104249896481633 +0.004098862002138048 +0.002127095009200275 +0.00319280699477531 +0.0033679999760352075 +0.002314264012966305 +0.0023598890111315995 +0.004016799008240923 +0.0022321829746942967 +0.002315709978574887 +0.004107588989427313 +0.0023334099969360977 +0.003988570999354124 +0.0022844430059194565 +0.0022869429958518595 +0.0039677910099271685 +0.002436194015899673 +0.000708341016434133 +0.005536907003261149 +0.002190213999710977 +0.002388165012234822 +0.004232009989209473 +0.0021469130006153136 +0.002510215010261163 +0.00406199399731122 +0.002203070995165035 +0.004200465977191925 +0.0022563390084542334 +0.002317036996828392 +0.004151933011598885 +0.002160566975362599 +0.002384481980698183 +0.004051074996823445 +0.002251486002933234 +0.002279376989463344 +0.0040942000050563365 +0.00224283299758099 +0.002416573988739401 +0.0038584769936278462 +0.0022416360152419657 +0.0024713220191188157 +0.004070638999110088 +0.002151757013052702 +0.0024260649806819856 +0.004053610988194123 +0.0024021930003073066 +0.004065090004587546 +0.0022161229862831533 +0.002284211979713291 +0.004231166996760294 +0.0022105129901319742 +0.0023595110105816275 +0.004137040989007801 +0.002066732005914673 +0.002480501017998904 +0.004106261010747403 +0.002228126977570355 +0.0022954030137043446 +0.004154903988819569 +0.000828534975880757 +0.0024855330120772123 +0.005224282998824492 +0.00224739100667648 +0.0041713899991009384 +0.002316116006113589 +0.0023555249790661037 +0.003965640993556008 +0.002226551005151123 +0.00237655098317191 +0.004108574998099357 +0.002158716000849381 +0.0024320319935213774 +0.004033617995446548 +0.002170566003769636 +0.0023924470006022602 +0.003999580017989501 +0.002330381015781313 +0.00234016400645487 +0.004064145992742851 +0.0023777660098858178 +0.004017785977339372 +0.0021983080077916384 +0.0024078150163404644 +0.004033035016618669 +0.002241920999949798 +0.0022226099972613156 +0.004076306009665132 +0.002310594019945711 +0.0022768510098103434 +0.0041084319818764925 +0.0021610230032820255 +0.002384957013418898 +0.004072148003615439 +0.0023041059903334826 +0.002346052002394572 +0.004014854988781735 +0.002179528004489839 +0.003992329002358019 +0.0023163709847722203 +0.0022264949802774936 +0.004117164993658662 +0.00216930900933221 +0.0024005399900488555 +0.0039724300149828196 +0.0024097099958453327 +0.0022227629960980266 +0.004066021996550262 +0.002209870988735929 +0.002457060996675864 +0.0040661990060471 +0.0021023559966124594 +0.0024653019791003317 +0.003941386996302754 +0.002240516012534499 +0.0022594179899897426 +0.004140399018069729 +0.0008811939915176481 +0.002478411013726145 +0.005286624014843255 +0.0023617859988007694 +0.004096038988791406 +0.0022405530035030097 +0.0022761489963158965 +0.004011615994386375 +0.0022543730156030506 +0.002425493992632255 +0.004068007983732969 +0.002119657990988344 +0.0010530760046094656 +0.005238486977759749 +0.0022963260125834495 +0.00231238899868913 +0.004021947999717668 +0.002312012977199629 +0.0022963800001889467 +0.004117784992558882 +0.002249178010970354 +0.0041893660090863705 +0.0022863560006953776 +0.0022571529843844473 +0.004048597998917103 +0.0022782839951105416 +0.002278593019582331 +0.0040957300225272775 +0.002187806006986648 +0.002308463997906074 +0.004132934991503134 +0.002079022000543773 +0.002454206987749785 +0.00404198799515143 +0.00216032299795188 +0.002476572000887245 +0.003977366985054687 +0.0023774459841661155 +0.00395816401578486 +0.0023229540092870593 +0.002229414996691048 +0.004326589987613261 +0.0022975269821472466 +0.0024349740124307573 +0.004087934008566663 +0.002269417978823185 +0.0023488830192945898 +0.004308172006858513 +0.0022360279981512576 +0.00450819797697477 +0.0024531840172130615 +0.002495811990229413 +0.004481441021198407 +0.002257187996292487 +0.002468504011631012 +0.004194312990875915 +0.002293116005603224 +0.0024845339939929545 +0.004233626998029649 +0.0024342460092157125 +0.004112880997126922 +0.0027937039849348366 +0.0010540939983911812 +0.006092294992413372 +0.0024384249991271645 +0.004128757020225748 +0.0022650790051557124 +0.0024963089963421226 +0.004174175002845004 +0.0021617949823848903 +0.0024267889966722578 +0.003988580981967971 +0.0021706990082748234 +0.00241567098419182 +0.004233857995131984 +0.0024165789945982397 +0.00415527299628593 +0.0021944080071989447 +0.0023249780060723424 +0.004141610988881439 +0.002209822996519506 +0.002393536997260526 +0.004078761994605884 +0.0022102859802544117 +0.0024367489968426526 +0.004047011025249958 +0.0023529409954790026 +0.0022266559826675802 +0.004054022021591663 +0.0022387619828805327 +0.004172301996732131 +0.0022429660020861775 +0.0022933149884920567 +0.004133253998588771 +0.0022219980019144714 +0.002318753016879782 +0.004040296014863998 +0.002228447003290057 +0.0023920550011098385 +0.004154966009082273 +0.002237446984509006 +0.0023762399796396494 +0.004012068995507434 +0.0022608840081375092 +0.0023413260059896857 +0.004032874014228582 +0.002202103001764044 +0.0023342340136878192 +0.004073524003615603 +0.0008960439881775528 +0.0035594280052464455 +0.0041012260189745575 +0.002434027992421761 +0.003915581997716799 +0.0022115370084065944 +0.00234227700275369 +0.00412710799719207 +0.0021637820173054934 +0.0023289480013772845 +0.004126610001549125 +0.002186469006119296 +0.0023391290160361677 +0.003966605989262462 +0.0022932880092412233 +0.0024229470000136644 +0.00401040498400107 +0.002484713011654094 +0.0007988100114744157 +0.005445310001960024 +0.0008514630026184022 +0.003565787978004664 +0.004071573988767341 +0.0023155949893407524 +0.004077176010468975 +0.00216067599831149 +0.002310753014171496 +0.0040952299896162 +0.0022335939866025 +0.0024053200031630695 +0.004089811001904309 +0.002182734984671697 +0.0023467599821742624 +0.002874490019166842 +0.0037029959785286337 +0.0007486500253435224 +0.005560923978919163 +0.0007137049979064614 +0.00367745800758712 +0.004022293025627732 +0.0023325009969994426 +0.004076515993801877 +0.0021525170013774186 +0.0023561760026495904 +0.004150235996348783 +0.0022657529916614294 +0.0024616419977974147 +0.0040414789982605726 +0.002165601006709039 +0.0024109719961415976 +0.0041506949928589165 +0.0023116049997042865 +0.0021675459865946323 +0.0040437190036755055 +0.002545812982134521 +0.003877153998473659 +0.002236564992927015 +0.0021886570029892027 +0.00416148200747557 +0.002285129012307152 +0.002201939991209656 +0.0041717290005180985 +0.0022534730087500066 +0.0023419659992214292 +0.004128656000830233 +0.0021578360174316913 +0.002360865008085966 +0.004140428005484864 +0.002366214001085609 +0.0021386989974416792 +0.004083875013748184 +0.0023160479904618114 +0.0023593700025230646 +0.003965935000451282 +0.002337234007427469 +0.004110173002118245 +0.002211813989561051 +0.0023401690123137087 +0.00417789100902155 +0.0021805289725307375 +0.0024328469880856574 +0.003987450996646658 +0.0022485140070784837 +0.0023576660023536533 +0.004186212987406179 +0.0023842390219215304 +0.002194404980400577 +0.004078686994034797 +0.002545503986766562 +0.002191950014093891 +0.004071531002409756 +0.0024388360034208745 +0.004018086998257786 +0.0022726549941580743 +0.002207507990533486 +0.004293883015634492 +0.002241968992166221 +0.0009668949933256954 +0.005347300990251824 +0.0023645310138817877 +0.004019940010039136 +0.0022867439838591963 +0.002409923996310681 +0.004038679995574057 +0.00224215499474667 +0.0023771619889885187 +0.003997707972303033 +0.002272098994581029 +0.002354488999117166 +0.004033104982227087 +0.002212035993579775 +0.002295479003805667 +0.004208797006867826 +0.0021906679903622717 +0.0024688699922990054 +0.00394870198215358 +0.002202739007771015 +0.0042777719791047275 +0.0021689900022465736 +0.0023880020016804338 +0.004123013990465552 +0.0021068839996587485 +0.002359213016461581 +0.004120658995816484 +0.0022253119968809187 +0.002485475008143112 +0.004267849028110504 +0.0022625709825661033 +0.002293597994139418 +0.0039749660063534975 +0.0022468189999926835 +0.004157768998993561 +0.0023271190002560616 +0.0023173270164988935 +0.002178874012315646 +0.004055500001413748 +0.002407550986390561 +0.004048137983772904 +0.0022254459909163415 +0.002372310991631821 +0.0041498750215396285 +0.002186550002079457 +0.002337025973247364 +0.004132959002163261 +0.002253893995657563 +0.0023122930142562836 +0.004130429006181657 +0.002236202999483794 +0.0022784509928897023 +0.0042454169888515025 +0.0023016560007818043 +0.004077587014762685 +0.002368641027715057 +0.0022647189907729626 +0.00396487201214768 +0.0023031339806038886 +0.00233148000552319 +0.004118601995287463 +0.002200752991484478 +0.002471635991241783 +0.00421287800418213 +0.002275795995956287 +0.0022231490002013743 +0.004102011997019872 +0.002210464997915551 +0.002279890002682805 +0.004055649013025686 +0.0009343869751319289 +0.002426791994366795 +0.005355300003429875 +0.0022313280205707997 +0.004111578018637374 +0.0021558559965342283 +0.0023512009938713163 +0.004092841001693159 +0.00221874300041236 +0.0023028459982015193 +0.00407365697901696 +0.0024001889978535473 +0.0023704250052105635 +0.003956127999117598 +0.0023762409982737154 +0.0022257740201894194 +0.004084223008248955 +0.0009307669824920595 +0.002409729000646621 +0.005337267997674644 +0.002290343021741137 +0.00393090900615789 +0.002429671003483236 +0.0023558560060337186 +0.0043869139917660505 +0.0024174209975171834 +0.004365330998552963 +0.002536393003538251 +0.002375131007283926 +0.003976708016125485 +0.002240981993963942 +0.0023487720172852278 +0.004055691999383271 +0.0022367819910869002 +0.0023463210090994835 +0.004114123992621899 +0.002329565992113203 +0.002428865002002567 +0.0028241919935680926 +0.003401304013095796 +0.004188058985164389 +0.0022570129949599504 +0.0023653619864489883 +0.002237815991975367 +0.0040170820138882846 +0.002422300021862611 +0.00400710798567161 +0.002230460988357663 +0.0023295599967241287 +0.004088866000529379 +0.002265638002427295 +0.0023693300026934594 +0.004024148016469553 +0.002227754972409457 +0.0024078080023173243 +0.004062216990860179 +0.002322274027392268 +0.002208341989899054 +0.004195273999357596 +0.002495781984180212 +0.0021003379952162504 +0.004106611013412476 +0.002330677001737058 +0.003973821003455669 +0.002196374989580363 +0.0024479699786752462 +0.004057740006828681 +0.002422585996100679 +0.0021962180035188794 +0.004126493993680924 +0.0021572149998974055 +0.002420540986349806 +0.003999647015007213 +0.0023246710188686848 +0.00403631100198254 +0.0022287920000962913 +0.0022713139769621193 +0.00412623499869369 +0.002235694002592936 +0.0023816199973225594 +0.004091691022040322 +0.00224237801739946 +0.002289299009134993 +0.0041295439878012985 +0.0022493470169138163 +0.0023210419749375433 +0.004038572020363063 +0.0021860359993297607 +0.0023995079973246902 +0.004073888005223125 +0.0023282190086320043 +0.002272946003358811 +0.004023087996756658 +0.002273780992254615 +0.00413832301273942 +0.0022873150010127574 +0.002377786993747577 +0.0040241790120489895 +0.002179022994823754 +0.0024242969811894 +0.00409400399075821 +0.002342427003895864 +0.0022874650021549314 +0.004025860980618745 +0.0021821249974891543 +0.0024191239790525287 +0.004024166992167011 +0.0023005789844319224 +0.0023039639927446842 +0.003979930013883859 +0.0022601679957006127 +0.004247789009241387 +0.0022554650204256177 +0.0024371180043090135 +0.004070897004567087 +0.0021835470106452703 +0.0023182349978014827 +0.0041361219773534685 +0.0022377560089807957 +0.002361132006626576 +0.0040604990208521485 +0.002281230001244694 +0.004173502995399758 +0.002242714981548488 +0.0022877829906065017 +0.002262646012241021 +0.004441524011781439 +0.0021323099790606648 +0.003999175998615101 +0.0021524609765037894 +0.002532929996959865 +0.004025722009828314 +0.0022374170075636357 +0.0023948769958224148 +0.004000382003141567 +0.0023209300125017762 +0.004171340988250449 +0.0023622509906999767 +0.002195333014242351 +0.004202044976409525 +0.002196152985561639 +0.0023984180006664246 +0.004075087024830282 +0.002349118993151933 +0.0021114780101925135 +0.00417206299607642 +0.002099657984217629 +0.0024753139878157526 +0.00399462302448228 +0.0024010660126805305 +0.0022444830101449043 +0.004034136014524847 +0.002228642988484353 +0.0023826819960959256 +0.0040686369757167995 +0.0022453849960584193 +0.004195705987513065 +0.0022311770007945597 +0.0023742839985061437 +0.003972095990320668 +0.00237615400692448 +0.002151304011931643 +0.00403350600390695 +0.002190296014305204 +0.0024103829928208143 +0.004060715000377968 +0.0022634769848082215 +0.0023301079927477986 +0.004056167992530391 +0.002270356984809041 +0.003061308991163969 +0.003323737997561693 +0.0021989789966028184 +0.002423664991511032 +0.0029459439974743873 +0.0035954280174337327 +0.003973359998781234 +0.0023747719824314117 +0.0021753989858552814 +0.004058391001308337 +0.0021930920192971826 +0.002368096000282094 +0.00410978400032036 +0.0022435349819716066 +0.002331830997718498 +0.004035392979858443 +0.0022085889941081405 +0.0031472629925701767 +0.003328245977172628 +0.0022523940133396536 +0.002347853995161131 +0.004050796007504687 +0.0024103570031002164 +0.002189762017223984 +0.0040873229736462235 +0.0023760360199958086 +0.004239327012328431 +0.002139089978300035 +0.0024435980012640357 +0.004027455986943096 +0.0022021160111762583 +0.0024578000011388212 +0.004045010980917141 +0.0022299560077954084 +0.0024737419735174626 +0.00406332899001427 +0.0023232790117617697 +0.0008540659910067916 +0.005352604988729581 +0.0023238040157593787 +0.002208972000516951 +0.0042116369877476245 +0.0021695940231438726 +0.004097807017387822 +0.0021691400033887476 +0.0023995469964575022 +0.004220615985104814 +0.0022616899805143476 +0.0023672689858358353 +0.004036750993691385 +0.0022466589871328324 +0.0023647960042580962 +0.004088577989023179 +0.0022827599896118045 +0.0022803439933340997 +0.004040439001983032 +0.002391229005297646 +0.003972878999775276 +0.0022574460017494857 +0.002243760012788698 +0.004294938989914954 +0.002169952989788726 +0.0024738679931033403 +0.004372205003164709 +0.0023378870100714266 +0.004635646007955074 +0.0018382550042588264 +0.0023822349903639406 +0.00427264699828811 +0.002420353004708886 +0.0025149450229946524 +0.004551933001494035 +0.00243233100627549 +0.004466509009944275 +0.0023092479968909174 +0.0024979319714475423 +0.004317906976211816 +0.002273749007144943 +0.0024353039916604757 +0.004131833004066721 +0.002085860993247479 +0.004258894012309611 +0.0022351400111801922 +0.002179675007937476 +0.004210105980746448 +0.0022968630073592067 +0.0022700379777234048 +0.004166731989243999 +0.0021427069732453674 +0.0024990829988382757 +0.003971573984017596 +0.0022562140075024217 +0.0024667079851496965 +0.004038168000988662 +0.0022878620075061917 +0.002400560973910615 +0.004052181990118697 +0.002280766988405958 +0.0022906759986653924 +0.0041244289895985276 +0.002397556003415957 +0.004001617024186999 +0.0022682090057060122 +0.0023585609742440283 +0.0039872199995443225 +0.002272008016007021 +0.00230335199739784 +0.004055533994687721 +0.0022908899991307408 +0.0023279380111489445 +0.004059166007209569 +0.0022925900120753795 +0.0023224670148920268 +0.00402461300836876 +0.0024043910088948905 +0.004077062010765076 +0.002249101991765201 +0.002304249006556347 +0.004034541983855888 +0.0022615030175074935 +0.0023338230093941092 +0.00401941200834699 +0.002044460008619353 +0.0025054009747691453 +0.004053167998790741 +0.002113513008225709 +0.0024461779976263642 +0.00403611600631848 +0.002104811981553212 +0.0022932520078029484 +0.004167664999840781 +0.0023934920027386397 +0.0023426919942721725 +0.004056701000081375 +0.0021642350184265524 +0.004232124018017203 +0.0022367810015566647 +0.0024306080013047904 +0.003915312001481652 +0.0021766319987364113 +0.002394273004028946 +0.0040419230062980205 +0.0022439849853981286 +0.002388303983025253 +0.004122681013541296 +0.0022131939767859876 +0.0024481619766447693 +0.004058702994370833 +0.0022732829966116697 +0.0022970849822741 +0.004028341005323455 +0.0024118690053001046 +0.003927815996576101 +0.0023553659848403186 +0.0021792420011479408 +0.004157282994128764 +0.0023441429948434234 +0.00221316100214608 +0.004083400999661535 +0.0022375959961209446 +0.002384363004239276 +0.004064577980898321 +0.0023553399951197207 +0.002246427000500262 +0.004115293006179854 +0.002322459011338651 +0.0023269850062206388 +0.00403052000910975 +0.00228998702368699 +0.003995980980107561 +0.0023329270188696682 +0.002255343017168343 +0.004153735004365444 +0.002239769004518166 +0.002264334005303681 +0.00411893698037602 +0.0022586790146306157 +0.0022814699914306402 +0.004062669991981238 +0.0022890980180818588 +0.0023289000091608614 +0.00413587799994275 +0.002082835999317467 +0.0025639599771238863 +0.0040301469853147864 +0.002398926008027047 +0.004111432004719973 +0.002263933012727648 +0.0021796700020786375 +0.00426917799632065 +0.00217270600842312 +0.002446202008286491 +0.004056389996549115 +0.002356485987547785 +0.0009467539784964174 +0.00535286997910589 +0.0023661039886064827 +0.00233202101662755 +0.004069606016855687 +0.0022551820147782564 +0.00412661797599867 +0.00224685700959526 +0.002300385996932164 +0.004096564021892846 +0.002152353001292795 +0.0024148260126821697 +0.004167489998508245 +0.0022269159962888807 +0.002329126000404358 +0.003979606000939384 +0.0023144650040194392 +0.002249400014989078 +0.004119404999073595 +0.0021974649862386286 +0.004251195990946144 +0.0022007160005159676 +0.002284301008330658 +0.004194069013465196 +0.002247661992441863 +0.002393263013800606 +0.0040511590195819736 +0.002328843984287232 +0.0022118659981060773 +0.0040691269969101995 +0.0022567429987248033 +0.002353749005123973 +0.004042844986543059 +0.0022643900010734797 +0.002288971998495981 +0.004121667006984353 +0.0022314759844448417 +0.0023795640154276043 +0.004016594000859186 +0.0022866399958729744 +0.002304019988514483 +0.004024439986096695 +0.0023766429803799838 +0.0022698609973303974 +0.004102250008145347 +0.0022655309876427054 +0.004146154999034479 +0.0021578910236712545 +0.002265414979774505 +0.004113403003429994 +0.0021477009868249297 +0.002487106976332143 +0.004082664992893115 +0.002250075980555266 +0.0023448139836546034 +0.004190978012047708 +0.002321146981557831 +0.0022473949939012527 +0.0041827179957181215 +0.0007138479850254953 +0.0036820259992964566 +0.004163728008279577 +0.0022532209986820817 +0.004026365000754595 +0.0022113810118753463 +0.0024265769752673805 +0.004055401979712769 +0.0021891280193813145 +0.002438823983538896 +0.004041576001327485 +0.002285933995153755 +0.002377027994953096 +0.003954253013944253 +0.0023456579947378486 +0.0021640740160364658 +0.0040991679998114705 +0.002307527989614755 +0.002319940977031365 +0.004065596003783867 +0.0025021230103448033 +0.004133898008149117 +0.002237280976260081 +0.002281149005284533 +0.004155983013333753 +0.002223041985416785 +0.0024427309981547296 +0.004023956978926435 +0.002351282018935308 +0.0023299249878618866 +0.0040429649816360325 +0.002278475003549829 +0.004069714981596917 +0.002267247997224331 +0.0022865119972266257 +0.00429186798282899 +0.0021631059935316443 +0.0023398349876515567 +0.0042517660185694695 +0.0024303109967149794 +0.0024242389772552997 +0.003957214008551091 +0.0022948409896343946 +0.002428398991469294 +0.0041493869794066995 +0.0024617969756945968 +0.004063570988364518 +0.0020605949976015836 +0.002606598980491981 +0.003916476998711005 +0.0022108630219008774 +0.002318657992873341 +0.004183428012765944 +0.002173058979678899 +0.002250479010399431 +0.004222654999466613 +0.0023532109917141497 +0.002239931985968724 +0.004087039997102693 +0.0023236060224007815 +0.004196007008431479 +0.0021139610034879297 +0.0024774929916020483 +0.004104797000763938 +0.0022724340087734163 +0.0022599719814024866 +0.004087897978024557 +0.002216488996054977 +0.0023204500030260533 +0.0041248339985031635 +0.002270860015414655 +0.0022712729987688363 +0.004209544014884159 +0.0022942019859328866 +0.0007669670158065856 +0.005474665988003835 +0.0023379969934467226 +0.0041589169995859265 +0.0023166539904195815 +0.002137811010470614 +0.004105305997654796 +0.002170836989535019 +0.002398741024080664 +0.004092721006600186 +0.0021722749806940556 +0.0023972970084287226 +0.004046843008836731 +0.0022299590054899454 +0.0023857849882915616 +0.0040474160050507635 +0.0023502580006606877 +0.0022391910024452955 +0.004058277001604438 +0.002289791009388864 +0.004112558002816513 +0.0022999280190560967 +0.0022130979923531413 +0.004110551992198452 +0.002210159000242129 +0.002366942004300654 +0.003997859021183103 +0.0022997049964033067 +0.002326738991541788 +0.004051676020026207 +0.002202247007517144 +0.0023883579997345805 +0.004056651989230886 +0.0024365710269194096 +0.0021903369924984872 +0.00404994998825714 +0.0023209810024127364 +0.004130003013415262 +0.0022139049833640456 +0.002382906008278951 +0.00401432000217028 +0.002064536005491391 +0.002588348987046629 +0.004077999998116866 +0.0021963249891996384 +0.0024166569928638637 +0.004040401021484286 +0.002234075014712289 +0.002387060987530276 +0.004110013978788629 +0.0022897540184203535 +0.004079058009665459 +0.002289160998770967 +0.002230052021332085 +0.004192224994767457 +0.002203123993240297 +0.0023006410046946257 +0.003949494974222034 +0.002130271983332932 +0.0024380440008826554 +0.004029847012134269 +0.002198914997279644 +0.0023844949901103973 +0.004093524010386318 +0.0021684649982489645 +0.002383507991908118 +0.004047169990371913 +0.0022507680114358664 +0.002426194987492636 +0.002877797989640385 +0.0033838460221886635 +0.004209261998767033 +0.002261171001009643 +0.0023910900054033846 +0.003948713972931728 +0.0023876799969002604 +0.0021601709886454046 +0.004037639009766281 +0.002138430019840598 +0.00241357198683545 +0.004247863020282239 +0.0022100719797890633 +0.0023187480110209435 +0.004078646015841514 +0.0021956329874228686 +0.0024183070054277778 +0.004074203025083989 +0.0021941629820503294 +0.002422203018795699 +0.003973736020270735 +0.002351253991946578 +0.0022706740128342062 +0.004225022013997659 +0.0021354159980546683 +0.004175354988547042 +0.0021798560046590865 +0.002379457000643015 +0.004284716007532552 +0.002154085988877341 +0.0023399959900416434 +0.004162799014011398 +0.0022430169919971377 +0.0041714349936228245 +0.002192738000303507 +0.0023433940077666193 +0.00414458301384002 +0.0022584619873669 +0.0022479569888673723 +0.0041504710097797215 +0.0021837220119778067 +0.002389413013588637 +0.004078485013451427 +0.0021432389912661165 +0.00233851998928003 +0.004200608003884554 +0.0021263310045469552 +0.002443930017761886 +0.004029679985251278 +0.002268103009555489 +0.002408035012194887 +0.004055366007378325 +0.0022663960116915405 +0.004178478004178032 +0.002229061006801203 +0.002426983992336318 +0.0039768719871062785 +0.002113119000568986 +0.0024878430122043937 +0.0040481289906892926 +0.0021963609906379133 +0.0024052660155575722 +0.00418145302683115 +0.002136106020770967 +0.002384520979830995 +0.003929931001039222 +0.0022766769980080426 +0.004139428987400606 +0.0023652669915463775 +0.0022819929872639477 +0.004047499998705462 +0.0023331779811996967 +0.0022530260030180216 +0.0040588479896541685 +0.0020959940156899393 +0.0025130700087174773 +0.004042659013066441 +0.0021679729979950935 +0.0024568090157117695 +0.004164117999607697 +0.0022321389988064766 +0.002347624016692862 +0.003998350992333144 +0.0022386540076695383 +0.002410782006336376 +0.004023802001029253 +0.002397150994511321 +0.004059172992128879 +0.002250193996587768 +0.002368227986153215 +0.0041538350051268935 +0.0021586229850072414 +0.002352348994463682 +0.004016254999442026 +0.0022342409938573837 +0.002315434016054496 +0.004146455001318827 +0.002157523005735129 +0.0022633970074821264 +0.004115282004931942 +0.0022306200116872787 +0.002413505979347974 +0.004036449012346566 +0.002205819997470826 +0.0041968789882957935 +0.0022638300142716616 +0.00227659399388358 +0.004131855996092781 +0.0022507459798362106 +0.0022679539979435503 +0.00413600102183409 +0.0022360419970937073 +0.0023310139949899167 +0.004198197013465688 +0.002135657996404916 +0.003181744978064671 +0.003398599015781656 +0.002286497998284176 +0.004122939018998295 +0.002258197986520827 +0.002321787003893405 +0.004116077994694933 +0.0022155869810376316 +0.00242001298465766 +0.004157139017479494 +0.0022158549982123077 +0.00239280000096187 +0.004080043989233673 +0.0022188859875313938 +0.002396531985141337 +0.004054074990563095 +0.0022611079912167042 +0.004141793993767351 +0.002246054995339364 +0.002246923977509141 +0.0023405940155498683 +0.004053167998790741 +0.002271588979056105 +0.004121587990084663 +0.0021977909782435745 +0.002374108007643372 +0.004061854007886723 +0.002193972992245108 +0.002367698005400598 +0.004161336022661999 +0.002270760014653206 +0.002392249007243663 +0.004111886984901503 +0.0022294619993772358 +0.002344185981201008 +0.004340779996709898 +0.002342297986615449 +0.004285255010472611 +0.002154570014681667 +0.0024378859961871058 +0.004021950007881969 +0.002136822004104033 +0.0024438670079689473 +0.004139172000577673 +0.0022364559990819544 +0.002332192991161719 +0.004196294990833849 +0.002309029980096966 +0.004170078987954184 +0.0023635749821551144 +0.002390251000178978 +0.004103380022570491 +0.0021312639873940498 +0.002430904016364366 +0.004111660004127771 +0.002233145001810044 +0.0023585449962411076 +0.00408410798991099 +0.0020941260154359043 +0.002413581998553127 +0.004087142006028444 +0.002375374984694645 +0.004042922984808683 +0.0022940860071685165 +0.002368788991589099 +0.002121722005540505 +0.004039935010951012 +0.002467332989908755 +0.004203509975923225 +0.0023500380048062652 +0.0012259010109119117 +0.005380548973334953 +0.0024590989924035966 +0.002147913008229807 +0.004068929003551602 +0.0023297499865293503 +0.0022791030060034245 +0.004118459997698665 +0.0007262860017362982 +0.0025358580169267952 +0.005190955998841673 +0.0023259509762283415 +0.003925188007997349 +0.0022260969853959978 +0.002521871996577829 +0.004033895995235071 +0.002190371014876291 +0.002474234002875164 +0.004026614013127983 +0.0024383109994232655 +0.004211370018310845 +0.0022482779750134796 +0.002342408988624811 +0.004008575982879847 +0.0023408280103467405 +0.002355451986659318 +0.00400796698522754 +0.0023715589777566493 +0.002361225982895121 +0.004038662009406835 +0.002225143980467692 +0.002404561993898824 +0.004134832008276135 +0.002267055999254808 +0.0023010509903542697 +0.004014317994005978 +0.002250717021524906 +0.004232472012517974 +0.0022612930042669177 +0.0023451610177289695 +0.0038983889971859753 +0.0023662390012759715 +0.0022934660082682967 +0.004086319007910788 +0.0022656779910903424 +0.00225515101919882 +0.004140916018513963 +0.0021930349757894874 +0.002293122000992298 +0.004241535993060097 +0.002205606986535713 +0.0023948779853526503 +0.0042805729899555445 +0.002342710009543225 +0.002248566976049915 +0.003986060997704044 +0.0021989099914208055 +0.004295622988138348 +0.0008210180094465613 +0.003816976008238271 +0.004034468001918867 +0.0021761579846497625 +0.0023466589918825775 +0.004153863992542028 +0.002272673009429127 +0.002299236017279327 +0.003982709982665256 +0.0022564379905816168 +0.002325919980648905 +0.0040939000027719885 +0.002318531012861058 +0.004177844006335363 +0.0021629169932566583 +0.00232110102660954 +0.004125140025280416 +0.002260626992210746 +0.0023949139867909253 +0.004047050984809175 +0.002310450014192611 +0.0023359539918601513 +0.003962238988606259 +0.00226538599235937 +0.0024522250168956816 +0.004035521007608622 +0.00232181599130854 +0.003940786991734058 +0.0024429459881503135 +0.0023288500087801367 +0.004081685998244211 +0.002230457990663126 +0.002382759004831314 +0.004065307992277667 +0.002204207004979253 +0.0023593480000272393 +0.003965402982430533 +0.0021618799946736544 +0.002431601984426379 +0.004068365000421181 +0.0022761500149499625 +0.0023085990105755627 +0.0040794409869704396 +0.0022231939947232604 +0.0023816240136511624 +0.0029115699871908873 +0.0034439860028214753 +0.004226470016874373 +0.0021942220046184957 +0.002390438021393493 +0.003977409971412271 +0.002264946000650525 +0.0023994699877221137 +0.004121326986933127 +0.0022457440209109336 +0.002378718985710293 +0.004035413992824033 +0.0022908129903953522 +0.002347753004869446 +0.004018159001134336 +0.0022637139772996306 +0.0023047600116115063 +0.00408984100795351 +0.002310459007276222 +0.004055293014971539 +0.00226027998724021 +0.0023077929799910635 +0.004023315996164456 +0.0021753940091002733 +0.0024465140013489872 +0.004047352005727589 +0.002174225985072553 +0.0024279119970742613 +0.004054201999679208 +0.0021975910058245063 +0.0024130759993568063 +0.0040089309914037585 +0.0022330750070977956 +0.0023355679877568036 +0.004037764010718092 +0.0023350960109382868 +0.004071299976203591 +0.002173754997784272 +0.002419108001049608 +0.004010597011074424 +0.002158792980480939 +0.002485496021108702 +0.00411360600264743 +0.002146165003068745 +0.002405951003311202 +0.004099077981663868 +0.002238678018329665 +0.0023565559822600335 +0.004000542016001418 +0.0022344690223690122 +0.0024673970183357596 +0.003923297976143658 +0.0014301110059022903 +0.003934517008019611 +0.003362697985721752 +0.0023275429848581553 +0.004023272020276636 +0.0023301019973587245 +0.0023881540109869093 +0.0040512310224585235 +0.00217063698801212 +0.002412123983958736 +0.004086244007339701 +0.002327997994143516 +0.0023366720124613494 +0.004087273991899565 +0.0022748810006305575 +0.0023634899989701807 +0.004123656981391832 +0.0022775669931434095 +0.004359582992037758 +0.002233329985756427 +0.0023551190097350627 +0.004247849981766194 +0.0021206550009083003 +0.002441891992930323 +0.004047594993608072 +0.0022975430183578283 +0.0023740429896861315 +0.004069934977451339 +0.002351591014303267 +0.004092601011507213 +0.0022335569956339896 +0.0022967040131334215 +0.004122988000744954 +0.0021068040223326534 +0.002506996999727562 +0.004111375019419938 +0.002201828989200294 +0.002375578013015911 +0.004125784005736932 +0.0022379069996532053 +0.002341211016755551 +0.004051537020131946 +0.0022840889869257808 +0.002364700980251655 +0.003979756991611794 +0.002330134011572227 +0.0021691069996450096 +0.004070736991707236 +0.0023082800034899265 +0.004104079998796806 +0.002178788010496646 +0.002358102996367961 +0.004073646996403113 +0.0022145950060803443 +0.002393017988651991 +0.004014598991489038 +0.002216991997556761 +0.00238138300483115 +0.0041150090110022575 +0.002333704993361607 +0.004019004001747817 +0.0022897579765412956 +0.0024873720249161124 +0.004098339006304741 +0.0022910730040166527 +0.002118728996720165 +0.002331352006876841 +0.004125572013435885 +0.002357469988055527 +0.004088674992090091 +0.0022289509943220764 +0.0022199550003279 +0.004186003003269434 +0.002231938997283578 +0.0023147690226323903 +0.004189111001323909 +0.002254288992844522 +0.0022762930020689964 +0.004109564004465938 +0.0008694829884916544 +0.003617231996031478 +0.004093436989933252 +0.002467116981279105 +0.004026753013022244 +0.002342446008697152 +0.0023974340001586825 +0.003944030002458021 +0.002290118020027876 +0.0023839919886086136 +0.004064467997523025 +0.0021991529793012887 +0.0023901269887574017 +0.004071523988386616 +0.002303613000549376 +0.004060369014041498 +0.0020977660024072975 +0.0023882290115579963 +0.004117779986700043 +0.0022208009904716164 +0.0023939530074130744 +0.00418518902733922 +0.002198428992414847 +0.0023188620107248425 +0.004153415997279808 +0.002304696012288332 +0.0022661830007564276 +0.004125884996028617 +0.0021928050264250487 +0.002350035007111728 +0.00420031399698928 +0.0023054519842844456 +0.0021520400187000632 +0.0042454930080566555 +0.0008641580061521381 +0.0036060149723198265 +0.00394729501567781 +0.0023173920053523034 +0.004074889002367854 +0.0022332799853757024 +0.002327238005818799 +0.004216792993247509 +0.002142318000551313 +0.0023435819894075394 +0.0040951669798232615 +0.002234065002994612 +0.0023128480243030936 +0.004076880984939635 +0.002289387019118294 +0.002175550995161757 +0.004148926993366331 +0.002188726997701451 +0.004201264993753284 +0.0023376230092253536 +0.0008444369887001812 +0.00237492797896266 +0.005225842003710568 +0.002293785015353933 +0.004031732009025291 +0.0009469339856877923 +0.003607299004215747 +0.004099589976249263 +0.0022290839988272637 +0.0022751379874534905 +0.004190731007838622 +0.0021396589872892946 +0.002275887003634125 +0.004266167001333088 +0.0008089070033747703 +0.0036489079939201474 +0.004100735008250922 +0.002219841000624001 +0.0021910700015723705 +0.0041331730026286095 +0.0009874340030364692 +0.003490648989100009 +0.004358720994787291 +0.002298430976225063 +0.004169683990767226 +0.0021787080040667206 +0.0023102189879864454 +0.0042651859985198826 +0.0021432189969345927 +0.002392716007307172 +0.004092227987712249 +0.0023278529988601804 +0.004076179000549018 +0.002179928997065872 +0.00232291899737902 +0.004157429997576401 +0.002142460987670347 +0.002297081984579563 +0.004153593006776646 +0.002105273015331477 +0.002349456015508622 +0.004117482021683827 +0.0021823760180268437 +0.0023586589959450066 +0.004137331998208538 +0.0021415689843706787 +0.0023029610165394843 +0.004071244999067858 +0.0022906280064489692 +0.003963825001846999 +0.0023363079817499965 +0.0022553500020876527 +0.004182648001005873 +0.0022253420029301196 +0.0022947749821469188 +0.004056898003909737 +0.0023154219961725175 +0.0023843810195103288 +0.004173605004325509 +0.0021533590042963624 +0.0023964829742908478 +0.004070669005159289 +0.0021772640175186098 +0.0023688900109846145 +0.004142792982747778 +0.0022519890044350177 +0.0023607980110682547 +0.004030325973872095 +0.0023005039838608354 +0.004038815008243546 +0.0022686090087518096 +0.0023199600109364837 +0.004065482004079968 +0.0022003469930496067 +0.002374261006480083 +0.00407277699559927 +0.0022037349990569055 +0.0025130260037258267 +0.003932867984985933 +0.0022361040173564106 +0.0022815940028522164 +0.004068069014465436 +0.0022426490031648427 +0.0023297809821087867 +0.0041515170014463365 +0.002234070998383686 +0.002266363997478038 +0.0041625820158515126 +0.002349600981688127 +0.004037650011014193 +0.0022071170096751302 +0.0023478890070691705 +0.004166725993854925 +0.0008932589844334871 +0.0036921660066582263 +0.004144308011746034 +0.0021078980062156916 +0.0023764299985487014 +0.004054303979501128 +0.0021579129970632493 +0.0024192319833673537 +0.003978451015427709 +0.00221813001553528 +0.002329478011233732 +0.004222807998303324 +0.0009190560085698962 +0.003803320985753089 +0.004034397978102788 +0.0022375769913196564 +0.004169774008914828 +0.0021217330067884177 +0.002422655001282692 +0.004102122999029234 +0.0021622320055030286 +0.002359703998081386 +0.004155975999310613 +0.00213691100361757 +0.0023333830176852643 +0.004119207995245233 +0.002167640981497243 +0.004292842000722885 +0.002259733999380842 +0.0023709159868303686 +0.004053886979818344 +0.002224373019998893 +0.0024462000001221895 +0.004080162005266175 +0.0022026719816494733 +0.0024965110060293227 +0.004100866004591808 +0.0022401240130420774 +0.002351545001147315 +0.004048603004775941 +0.002379677025601268 +0.0022575960028916597 +0.004053861019201577 +0.0023582229914609343 +0.002140527998562902 +0.004184182995231822 +0.0008809909923002124 +0.003684761992190033 +0.0039878920069895685 +0.00228806197992526 +0.004105314990738407 +0.002200316987000406 +0.002306962007423863 +0.004101726022781804 +0.0022337069967761636 +0.002409421023912728 +0.004005022987257689 +0.0022376830165740103 +0.002395240997429937 +0.004023474990390241 +0.0022798280115239322 +0.004161671997280791 +0.002079913014313206 +0.0023170630156528205 +0.0022987090051174164 +0.004113961011171341 +0.0023430639994330704 +0.0007555460033472627 +0.005388589983340353 +0.0024065100005827844 +0.0021436199895106256 +0.004059761995449662 +0.0024238370242528617 +0.004017689992906526 +0.002240161004010588 +0.0023938670055940747 +0.004078824975294992 +0.0022777740086894482 +0.0024027810140978545 +0.003949843987356871 +0.0022650779865216464 +0.0023098310048226267 +0.004015672020614147 +0.002406411018455401 +0.002287093026097864 +0.004203730990411714 +0.000862353976117447 +0.0034848299983423203 +0.004118379001738504 +0.0022752289951313287 +0.004102351987967268 +0.002323713997611776 +0.0023348119866568595 +0.004088061978109181 +0.002272242010803893 +0.002255644998513162 +0.004089213005499914 +0.0022555019822902977 +0.002299387997481972 +0.004189686995232478 +0.002382403996307403 +0.0007371569809038192 +0.005392102000769228 +0.0024306730192620307 +0.004136026982450858 +0.0021601790213026106 +0.0024184529902413487 +0.0041702400194481015 +0.00215101198409684 +0.0023855989857111126 +0.0040651629969943315 +0.0022522700019180775 +0.002325187000678852 +0.004209681996144354 +0.0023078520025592297 +0.004079703998286277 +0.00231858401093632 +0.0008851339807733893 +0.0024160030006896704 +0.005277471995214 +0.0022573240275960416 +0.004114198993192986 +0.002216369000962004 +0.0023543270071968436 +0.00408935800078325 +0.0021435520029626787 +0.0023560909903608263 +0.004130597022594884 +0.002156531991204247 +0.002315787016414106 +0.004144733014982194 +0.0023832939914427698 +0.002360814978601411 +0.004199240996968001 +0.0008451209869235754 +0.002631542010931298 +0.005109843012178317 +0.002354080992517993 +0.004169680003542453 +0.0021472059888765216 +0.002353381976718083 +0.004213345004245639 +0.002253346989164129 +0.002368879009736702 +0.004141460987739265 +0.002212374994996935 +0.002333583979634568 +0.004202692012768239 +0.0023567400057800114 +0.004219465015921742 +0.002173593995394185 +0.002456560992868617 +0.004069982998771593 +0.0022333860106300563 +0.0023622460139449686 +0.004132027010200545 +0.002121854980941862 +0.0023632350203115493 +0.004108246008399874 +0.0023846790136303753 +0.004021939006634057 +0.002363156992942095 +0.0023053500044625252 +0.00416066701291129 +0.0022936570167075843 +0.0021940229926258326 +0.004158270981861278 +0.002183381002396345 +0.0023963729909155518 +0.004090053989784792 +0.0021939239813946187 +0.002388876979239285 +0.003980056004365906 +0.002265860006446019 +0.002312459022505209 +0.004187287006061524 +0.00237024700618349 +0.0007855510048102587 +0.00539998899330385 +0.00223639199975878 +0.0042400720121804625 +0.0021973690018057823 +0.002392156980931759 +0.004235189000610262 +0.0022951049904804677 +0.0007146779971662909 +0.0037151039869058877 +0.004224014992360026 +0.0021386660228017718 +0.0022729469928890467 +0.0023562280111946166 +0.004311425000196323 +0.0024760609958320856 +0.002184234996093437 +0.004149860993493348 +0.0023014949983917177 +0.004146496008615941 +0.0022384870098903775 +0.002252723992569372 +0.004186593985650688 +0.002292327000759542 +0.0023027940187603235 +0.004104189021745697 +0.0022767040063627064 +0.0010672350181266665 +0.005256294010905549 +0.0022470889962278306 +0.004073543997947127 +0.0022086339886300266 +0.0024428609758615494 +0.004104055988136679 +0.0020436930062714964 +0.0024554349947720766 +0.004303570021875203 +0.0023080490063875914 +0.002213981992099434 +0.004167944978689775 +0.002213794010458514 +0.0024184540088754147 +0.004039327002828941 +0.002329793991521001 +0.004181766998954117 +0.002224325988208875 +0.002322366985026747 +0.004085857013706118 +0.0020592969958670437 +0.0025095769960898906 +0.0040999180055223405 +0.002168692008126527 +0.002417535986751318 +0.00404758402146399 +0.0021728700085077435 +0.0024221109924837947 +0.004023563989903778 +0.0022621999960392714 +0.002266308991238475 +0.003984440001659095 +0.00227674501365982 +0.0024818690144456923 +0.003924523014575243 +0.002294687001267448 +0.0022844229824841022 +0.003993149002781138 +0.0024123690091073513 +0.004089932015631348 +0.0021982929902151227 +0.002353726013097912 +0.00411258899839595 +0.002180859009968117 +0.0023450909939128906 +0.004055306984810159 +0.0022270629997365177 +0.0023802279902156442 +0.004043361986987293 +0.002174705994548276 +0.002568762982264161 +0.004086774977622554 +0.0023170200001914054 +0.004031318996567279 +0.002245445008156821 +0.0024399539979640394 +0.003991612989921123 +0.002231013000709936 +0.002213620988186449 +0.00417709001339972 +0.0022363349853549153 +0.00226941701839678 +0.004148177016759291 +0.0021768209990113974 +0.0024433340004179627 +0.004018002015072852 +0.002246104006189853 +0.002451451000524685 +0.004099233017768711 +0.0023156639945227653 +0.003948187979403883 +0.0022596789931412786 +0.0023510839964728802 +0.004084768006578088 +0.002141403005225584 +0.002458189002936706 +0.004112487979000434 +0.0022623459808528423 +0.0007995339983608574 +0.005443259986350313 +0.0021819350076839328 +0.0024463660083711147 +0.004074673022842035 +0.002263244998175651 +0.002356056997086853 +0.003967447992181405 +0.0023456669878214598 +0.0021838920074515045 +0.004040822008391842 +0.0023507350124418736 +0.004086246015504003 +0.002234348008641973 +0.002241524984128773 +0.0041676199762150645 +0.0020864939724560827 +0.0024354750057682395 +0.004060634993948042 +0.002216199995018542 +0.0024026169849094003 +0.0041299200092907995 +0.002234573010355234 +0.002370616013649851 +0.004050985007779673 +0.0021882919827476144 +0.0024008280015550554 +0.00429364200681448 +0.0023642599990125746 +0.004038434999529272 +0.0022883799974806607 +0.002244586998131126 +0.004024394002044573 +0.002198590023908764 +0.0009643759985920042 +0.005392991006374359 +0.0021222610084805638 +0.002419510012259707 +0.00410665399977006 +0.0022468030219897628 +0.0023436500050593168 +0.004050990013638511 +0.0022060069895815104 +0.0023296290019061416 +0.00410030601778999 +0.0022601039963774383 +0.004283434973331168 +0.0022950799902901053 +0.002447009988827631 +0.004053507000207901 +0.002192315994761884 +0.0022995070030447096 +0.004031919001135975 +0.0022058550093788654 +0.0023455840128008276 +0.004219919006573036 +0.0020747069793287665 +0.0024800639948807657 +0.004018859006464481 +0.0021473559900186956 +0.004212732019368559 +0.0022580169897992164 +0.002251738013001159 +0.004055941972183064 +0.002404554979875684 +0.0021396210067905486 +0.004024529014714062 +0.0022184490226209164 +0.0022382549941539764 +0.004122381011256948 +0.002218684006948024 +0.0024139070010278374 +0.0040947539964690804 +0.0021779040107503533 +0.002463757002260536 +0.004024366004159674 +0.00249528099084273 +0.0007230720075313002 +0.00551295600598678 +0.00227713500498794 +0.004079846024978906 +0.002244452014565468 +0.0023578850086778402 +0.0041069730068556964 +0.002203540992923081 +0.00226784500409849 +0.00410555099369958 +0.0021574340062215924 +0.0023359539918601513 +0.004100516001926735 +0.002284461021190509 +0.002464687015162781 +0.0039835570205468684 +0.0021461510041262954 +0.002600184001494199 +0.004042291024234146 +0.002143777994206175 +0.004255071020452306 +0.0021518869907595217 +0.0022982360096648335 +0.004183926997939125 +0.002201828989200294 +0.0024222419888246804 +0.004144426988204941 +0.0020847530104219913 +0.0032428689883090556 +0.003316734015243128 +0.002107684005750343 +0.0025096939934883267 +0.004072028008522466 +0.0020992609788663685 +0.004280066001228988 +0.0021689650020562112 +0.0023525569995399565 +0.004092839022632688 +0.0022388579964172095 +0.002311262011062354 +0.0042209489911329 +0.0021325339912436903 +0.002322860003914684 +0.004133190988795832 +0.002112415008014068 +0.0022838730073999614 +0.004158825991908088 +0.0021641720086336136 +0.0024746760027483106 +0.004014570004073903 +0.00209302399889566 +0.0025087340036407113 +0.004004478018032387 +0.0021411189809441566 +0.004235211992636323 +0.0021984320192132145 +0.002253484009997919 +0.004061156010720879 +0.002243038994492963 +0.0021915730030741543 +0.004240000998834148 +0.00215726500027813 +0.002407419990049675 +0.0040986399981193244 +0.0021752960165031254 +0.0023196010151878 +0.00412205999600701 +0.0020640859729610384 +0.0031387979979626834 +0.0034118609910365194 +0.0021229200065135956 +0.0024669539998285472 +0.0040021280001383275 +0.002240900998003781 +0.0041863789956551045 +0.0022262409911490977 +0.0023238750000018626 +0.00418086998979561 +0.0021802959963679314 +0.0023161799763329327 +0.004010103002656251 +0.0021243880037218332 +0.002317478007171303 +0.004180792981060222 +0.0021026040194556117 +0.00240237801335752 +0.004105772008188069 +0.0020835250033997 +0.002465149009367451 +0.004004767019068822 +0.0021858279942534864 +0.004170630010776222 +0.0022443780035246164 +0.0022457530139945447 +0.004143975005717948 +0.002219641988631338 +0.0023596810060553253 +0.004060655977809802 +0.0021894090168643743 +0.002226851007435471 +0.004103098006453365 +0.0022299860138446093 +0.002226996992249042 +0.004232406005030498 +0.0021141890028957278 +0.0024917609989643097 +0.004065988992806524 +0.002194369997596368 +0.004260902001988143 +0.0022363720054272562 +0.0022684319992549717 +0.004169541993178427 +0.002221022004960105 +0.0022724620066583157 +0.004161858989391476 +0.00226538599235937 +0.002301631000591442 +0.004121870006201789 +0.0021046379988547415 +0.002451628999551758 +0.004089424008270726 +0.002233412000350654 +0.002391955000348389 +0.004166558996075764 +0.002215467015048489 +0.004146197985392064 +0.002122430014424026 +0.0023174700036179274 +0.004250179015798494 +0.0023417810152750462 +0.0021188590035308152 +0.004070613998919725 +0.002206245990237221 +0.0023660020087845623 +0.003954649990191683 +0.0021031869982834905 +0.0024406799930147827 +0.004087868001079187 +0.002148231986211613 +0.0023371429997496307 +0.004156479000812396 +0.0021239700145088136 +0.004177547001745552 +0.002259419998154044 +0.0021445270103868097 +0.002444540004944429 +0.004021614004159346 +0.002169137995224446 +0.0041964550036937 +0.002284399000927806 +0.0022629010200034827 +0.004151647997787222 +0.002194989996496588 +0.00234131800243631 +0.004058910009916872 +0.002318157989066094 +0.0021484289900399745 +0.004156593000516295 +0.0021874799858778715 +0.0024435969826299697 +0.00427658497937955 +0.0022405440104193985 +0.004200085997581482 +0.00218857399886474 +0.002350255992496386 +0.0021500820002984256 +0.00427167399902828 +0.002168800012441352 +0.004111400019610301 +0.002234453975688666 +0.0023272559919860214 +0.0040555300074629486 +0.0022788319911342114 +0.0023379700141958892 +0.004110300011234358 +0.002166746009606868 +0.0031269640021491796 +0.0033707660040818155 +0.002249407989438623 +0.0022481909836642444 +0.004065663000801578 +0.0021632490097545087 +0.004286784998839721 +0.002389650995610282 +0.002133344009052962 +0.004248005978297442 +0.0022454689897131175 +0.00240473699523136 +0.004279968998162076 +0.002168942999560386 +0.002411257999483496 +0.004061932006152347 +0.0022346389887388796 +0.0023974459909368306 +0.004049954004585743 +0.002264168986584991 +0.004042928019771352 +0.002248311007861048 +0.002348788024391979 +0.004027538001537323 +0.0023078089870978147 +0.0022380860173143446 +0.003984300012234598 +0.0022781620209570974 +0.002291593002155423 +0.004167745006270707 +0.0023143549915403128 +0.002269713004352525 +0.004077799996593967 +0.0021654800220858306 +0.0024666410172358155 +0.004050082992762327 +0.0022416060091927648 +0.004019789019366726 +0.0023458320065401495 +0.002319827995961532 +0.004191863001324236 +0.002314513985766098 +0.0023257989960256964 +0.004086778004420921 +0.0021185690129641443 +0.002347462985198945 +0.004116639989661053 +0.0021857199899386615 +0.002489251986844465 +0.004013942991150543 +0.002222242997959256 +0.0024349020095542073 +0.004183134995400906 +0.002296833001310006 +0.004108815017389134 +0.002216100983787328 +0.002231610007584095 +0.004081118997419253 +0.002227096993010491 +0.002339430997380987 +0.0041184900037478656 +0.002133737987605855 +0.0024092450039461255 +0.0040657619829289615 +0.0022418209991883487 +0.0024236410099547356 +0.004001118999440223 +0.002312099008122459 +0.004153373010922223 +0.0023348070099018514 +0.0022253649949561805 +0.004222010000376031 +0.00229725701501593 +0.0022046339872758836 +0.004094801988685504 +0.002136772993253544 +0.0023760470212437212 +0.004422199999680743 +0.0021272549929562956 +0.002538865024689585 +0.004138599993893877 +0.0022099149937275797 +0.004231186991091818 +0.0022694719955325127 +0.0022425780189223588 +0.004111893998924643 +0.0023675050179008394 +0.002112746995408088 +0.0040627810230944306 +0.002273246005643159 +0.0022477000020444393 +0.003990288998465985 +0.002253195008961484 +0.002416794013697654 +0.004051544005051255 +0.002181079995352775 +0.0024001440033316612 +0.003952905972255394 +0.002259472996229306 +0.002489928010618314 +0.004259227018337697 +0.0023939679958857596 +0.003983770002378151 +0.00226184498751536 +0.002381010999670252 +0.0040011529927141964 +0.0022003530175425112 +0.002456593996612355 +0.0039807950088288635 +0.002244784001959488 +0.0025186210114043206 +0.004045761976158246 +0.0021884890156798065 +0.002346255991142243 +0.003919003996998072 +0.0023253379913512617 +0.0024133029801305383 +0.004152573004830629 +0.0022728269977960736 +0.0040533219871576875 +0.002298574981978163 +0.0022449360112659633 +0.004092101997230202 +0.0020988690084777772 +0.002436113980365917 +0.003974688006564975 +0.0021776359935756773 +0.0023714249837212265 +0.004070761991897598 +0.002234927989775315 +0.0022552749724127352 +0.004209233971778303 +0.0022389449877664447 +0.002334657998289913 +0.004029425996122882 +0.002399080025497824 +0.004249580990290269 +0.002097807009704411 +0.002363122010137886 +0.004176205984549597 +0.0022549029963556677 +0.002325892011867836 +0.004065388988237828 +0.002304367983015254 +0.0023601490247529 +0.004030946001876146 +0.0023161820136010647 +0.004134007991524413 +0.002070518006803468 +0.0023342000204138458 +0.002344194013858214 +0.0040103860083036125 +0.0024400189868174493 +0.004137157986406237 +0.002249456971185282 +0.0022461229818873107 +0.0040288459858857095 +0.0022103500086814165 +0.00239675201009959 +0.003965165989939123 +0.0022836769931018353 +0.0009788979950826615 +0.0054007149883545935 +0.0022131500008981675 +0.0023290399985853583 +0.004032154974993318 +0.002364054002100602 +0.004091604001587257 +0.0022500970226246864 +0.0023345249937847257 +0.0040177539922297 +0.0022155610204208642 +0.002473859000019729 +0.004056728997966275 +0.0022517989855259657 +0.0023614789824932814 +0.003934879001462832 +0.0022345009783748537 +0.0023355430166702718 +0.004101162980077788 +0.002277144987601787 +0.0022797339770477265 +0.004101311991689727 +0.002310873009264469 +0.002301308006281033 +0.0039937600085977465 +0.002275959006510675 +0.001222449995111674 +0.005405447009252384 +0.0006356880185194314 +0.003837233001831919 +0.0038926510023884475 +0.002375213021878153 +0.0039899100083857775 +0.0023267779906746 +0.0023206580081023276 +0.0040741729899309576 +0.0022628580045420676 +0.0022970909776631743 +0.004057347017806023 +0.0007541299855802208 +0.0038357180019374937 +0.00405042601050809 +0.0024480709980707616 +0.004108863999135792 +0.002355510980123654 +0.0022492629941552877 +0.004040086001623422 +0.0022476500016637146 +0.0023303570051211864 +0.00398279499495402 +0.0022781620209570974 +0.0009218709892593324 +0.005437398998765275 +0.0022023729979991913 +0.003205343004083261 +0.003258449985878542 +0.0023114669893402606 +0.002331598981982097 +0.004015047015855089 +0.0023098550154827535 +0.002276273997267708 +0.003925147990230471 +0.0024974209954962134 +0.003976179024903104 +0.002131938992533833 +0.00242356100352481 +0.0039653999847359955 +0.002347464003833011 +0.002272263984195888 +0.004013877012766898 +0.0022543559898622334 +0.0025112320145126432 +0.00398844201117754 +0.0022872549889143556 +0.0024316119961440563 +0.0040334020159207284 +0.002401274017756805 +0.00391909500467591 +0.0023344609944615513 +0.0023836510081309825 +0.00392928600194864 +0.002205701981438324 +0.0023547119926661253 +0.004160562006291002 +0.0021323940018191934 +0.002467545011313632 +0.004079796985024586 +0.0022402610047720373 +0.0022801879968028516 +0.004134427988901734 +0.0022557259944733232 +0.0023643049935344607 +0.003964264004025608 +0.0023704599880147725 +0.0022050359984859824 +0.004036825994262472 +0.002255954983411357 +0.0041420670168008655 +0.002206920995377004 +0.0023234940017573535 +0.004024925990961492 +0.0022235860233195126 +0.002437574992654845 +0.0041979259985964745 +0.002175634988816455 +0.0042749730055220425 +0.00225701997987926 +0.002336614008527249 +0.0043682369869202375 +0.0023869549913797528 +0.002156603994080797 +0.004195518005872145 +0.00232821999816224 +0.0025574920000508428 +0.0044782389886677265 +0.0024421009875368327 +0.00446290397667326 +0.0024571630056016147 +0.0025204200064763427 +0.0043248930014669895 +0.0022036810114514083 +0.004398271004902199 +0.00234208902111277 +0.0022301360149867833 +0.004375511023681611 +0.0023310579999815673 +0.0022911620035301894 +0.004396635020384565 +0.0022367210185620934 +0.0024216200108639896 +0.0040421049925498664 +0.002231473015854135 +0.002336842007935047 +0.004112583992537111 +0.0021289190044626594 +0.001082736998796463 +0.0053834900027140975 +0.0022212290205061436 +0.004258077999111265 +0.0020700040040537715 +0.002356437995331362 +0.0042686159722507 +0.002186569996410981 +0.002210562990512699 +0.00416127301286906 +0.002237818989669904 +0.002512110979296267 +0.004011932003777474 +0.0021417700045276433 +0.00242415998945944 +0.004020385997137055 +0.002190955972764641 +0.00258084898814559 +0.004011235985672101 +0.002348759997403249 +0.0040640090010128915 +0.002376727992668748 +0.0022828940127510577 +0.004016381979454309 +0.0021621559862978756 +0.0024176730075851083 +0.003944927011616528 +0.002277280989801511 +0.0032241450098808855 +0.0033300549839623272 +0.0022065509983804077 +0.002356078999582678 +0.004070009017596021 +0.002295320009579882 +0.004235202999552712 +0.0022372360108420253 +0.002198662987211719 +0.0040930389950517565 +0.002380814985372126 +0.0021516859997063875 +0.004081883991602808 +0.002194604981923476 +0.0009588529937900603 +0.004318288003560156 +0.0031937320018187165 +0.0023953900090418756 +0.0040401660080533475 +0.0021888779883738607 +0.002373941009864211 +0.003937835979741067 +0.002232674974948168 +0.0024124080082401633 +0.004053147014928982 +0.0023113269999157637 +0.004164944984950125 +0.0021240569767542183 +0.0024021420103963464 +0.004118815995752811 +0.0021783459815196693 +0.002342357998713851 +0.004070907976711169 +0.002138952986570075 +0.002379117999225855 +0.004129339009523392 +0.002312233002157882 +0.002116028015734628 +0.004101003985852003 +0.002296709979418665 +0.002388556022197008 +0.002840289002051577 +0.0034589389979373664 +0.004107869986910373 +0.0022126800031401217 +0.0023014589969534427 +0.00233656499767676 +0.003954018990043551 +0.002249654004117474 +0.00409065600251779 +0.0023885210102889687 +0.0022178250073920935 +0.004110890993615612 +0.002177399001084268 +0.0024686669930815697 +0.004107254004338756 +0.0022594430192839354 +0.002417473995592445 +0.004004176007583737 +0.002249748009489849 +0.0023313929850701243 +0.0039902479911688715 +0.0010314520040992647 +0.0034800730063579977 +0.004104198014829308 +0.0022388419893104583 +0.0039751149888616055 +0.0023965699947439134 +0.0022507570101879537 +0.004043777997139841 +0.0022925529920030385 +0.0022849839879199862 +0.003982767986599356 +0.0022322199947666377 +0.002427266997983679 +0.004061263985931873 +0.002217566012404859 +0.002332932985154912 +0.004023750021588057 +0.002321856009075418 +0.0024301890225615352 +0.003964715986512601 +0.002178782975533977 +0.004098361998330802 +0.002604392997454852 +0.0021046579931862652 +0.0040839559806045145 +0.002258161985082552 +0.002225989999715239 +0.004091882990906015 +0.002211497019743547 +0.0024383949930779636 +0.003952125000068918 +0.002386363979894668 +0.002236870990600437 +0.00417274099891074 +0.0023716739960946143 +0.002315880003152415 +0.004016546998172998 +0.00220291901496239 +0.0040000019944272935 +0.002270589000545442 +0.002412987989373505 +0.0041063789976760745 +0.002108557993778959 +0.0025206739956047386 +0.004093102004844695 +0.002195864013629034 +0.0024472590012010187 +0.004037740989588201 +0.002154376998078078 +0.0024379010137636214 +0.004058065009303391 +0.002152468980057165 +0.002652783994562924 +0.004260407004039735 +0.002274832979310304 +0.0041933300090022385 +0.0023663280007895082 +0.0022288879845291376 +0.004237451998051256 +0.002195651992224157 +0.002381935017183423 +0.00408063898794353 +0.0023100710241124034 +0.0024791680043563247 +0.003852344991173595 +0.002445152000291273 +0.0007694640080444515 +0.005363403004594147 +0.0009401889983564615 +0.002338285994483158 +0.00529535798705183 +0.002260826004203409 +0.00405363499885425 +0.0024084780015982687 +0.002478395006619394 +0.004011246986920014 +0.0022335640096571296 +0.002378895995207131 +0.003975422994699329 +0.002352028008317575 +0.00235320400679484 +0.00405644002603367 +0.00234097198699601 +0.0022505579981952906 +0.004002756992122158 +0.002417465002508834 +0.0009573659917805344 +0.005215029988903552 +0.0023182579898275435 +0.004067025991389528 +0.002333034004550427 +0.002303038985701278 +0.0040622119850013405 +0.0021785389981232584 +0.002423069003270939 +0.00400174901005812 +0.0023172669752966613 +0.002393919014139101 +0.004041495005367324 +0.0022900289914105088 +0.0008874300110619515 +0.005339308001566678 +0.0008479260141029954 +0.00370059598935768 +0.004011570010334253 +0.0024662459909450263 +0.0038855689927004278 +0.002289586002007127 +0.002407838008366525 +0.004084209009306505 +0.0021683509985450655 +0.0023524999851360917 +0.00406325698713772 +0.0022039510076865554 +0.0025135950127150863 +0.004150478984229267 +0.0021814870124217123 +0.0024329980078618973 +0.003988021024269983 +0.0024371619801968336 +0.004044903995236382 +0.0022225769935175776 +0.0023389900161419064 +0.004232254985254258 +0.002278718980960548 +0.0022744800080545247 +0.004083592997631058 +0.0022140830114949495 +0.0025180139928124845 +0.004345552995800972 +0.0008152340014930815 +0.003667662007501349 +0.004149369982769713 +0.002373144990997389 +0.00396099899080582 +0.0023030299926176667 +0.002419400989310816 +0.004049359995406121 +0.002158434974262491 +0.002406207990134135 +0.004075788019690663 +0.0022456320002675056 +0.0023380600032396615 +0.004002047004178166 +0.00223680300405249 +0.002349371003219858 +0.004084412998054177 +0.00226709499838762 +0.004189167986623943 +0.0022654749918729067 +0.0024511649971827865 +0.0020854210015386343 +0.0042072259820997715 +0.0007172510086093098 +0.003687154996441677 +0.003960551985073835 +0.002350490976823494 +0.004018031992018223 +0.0022594799811486155 +0.0023387080000247806 +0.004086929024197161 +0.002259266999317333 +0.0024040940043050796 +0.004032427998026833 +0.002237716020317748 +0.0024210119736380875 +0.004050521005410701 +0.002340748003916815 +0.002157359995180741 +0.004234760999679565 +0.0008403950196225196 +0.005369043006794527 +0.002280169981531799 +0.002252072998089716 +0.00408839900046587 +0.0023463440011255443 +0.002364927000598982 +0.0038836990133859217 +0.0020953369967173785 +0.0024883790174499154 +0.003980091976700351 +0.002398698008619249 +0.004048361006425694 +0.002185894991271198 +0.0024320630182046443 +0.0023979879915714264 +0.003988926997408271 +0.002399260993115604 +0.0021025780006311834 +0.0040681950049474835 +0.0024667679972480983 +0.0038620230043306947 +0.002378909004619345 +0.0022835770214442164 +0.004012449993751943 +0.002235464984551072 +0.0025108190020546317 +0.004126715997699648 +0.00239111200789921 +0.004140558012295514 +0.0022984870010986924 +0.0024252079892903566 +0.0009572549897711724 +0.0052939970046281815 +0.0023771380074322224 +0.00411136299953796 +0.0021938160061836243 +0.0009341660188511014 +0.005401645990787074 +0.00220935299876146 +0.002330485003767535 +0.004198698996333405 +0.002199809008743614 +0.002312594006070867 +0.004011309007182717 +0.0023314190038945526 +0.00235770401195623 +0.004164832993410528 +0.002406154992058873 +0.0038488630088977516 +0.002368289977312088 +0.0022936909808777273 +0.00408051599515602 +0.0021012729848735034 +0.0023913710028864443 +0.00411459497991018 +0.002289416006533429 +0.004258011991623789 +0.0007047470135148615 +0.0025773210218176246 +0.003424763010116294 +0.004083506006281823 +0.002409074018942192 +0.004004335991339758 +0.0023462910030502826 +0.002283995010657236 +0.00414001097669825 +0.0022568380227312446 +0.002417196985334158 +0.004082362982444465 +0.0022198520018719137 +0.00224646701826714 +0.004213590989820659 +0.002198311995016411 +0.002351168979657814 +0.002817631990183145 +0.003503860003547743 +0.0010147129942197353 +0.005286065977998078 +0.0008702559862285852 +0.003591935004806146 +0.004022997978609055 +0.0022731719946023077 +0.0041048849816434085 +0.0022127990087028593 +0.0023188320046756417 +0.004246680997312069 +0.0021394710056483746 +0.0023517079825978726 +0.0041475489852018654 +0.0021909979986958206 +0.0023305999930016696 +0.004123521997826174 +0.0021530880185309798 +0.0022921400086488575 +0.004246855998644605 +0.002193837979575619 +0.002244641975266859 +0.004095262003829703 +0.002276946004712954 +0.004027977003715932 +0.0022689290053676814 +0.0023690300004091114 +0.0040791360079310834 +0.002140954980859533 +0.002397878997726366 +0.004135290015256032 +0.00218700198456645 +0.0023208970087580383 +0.004097694996744394 +0.002302561013493687 +0.002290573000209406 +0.004224845004500821 +0.0022887200175318867 +0.0021634319855365902 +0.004119352990528569 +0.0022514059965033084 +0.0021984080085530877 +0.004196541995042935 +0.0008601110021118075 +0.002394549024756998 +0.005167800991330296 +0.002302103996044025 +0.0040542939968872815 +0.00226892699720338 +0.002358499012188986 +0.004158663010457531 +0.000869337993208319 +0.0035877559857908636 +0.004185522993793711 +0.0021473210072144866 +0.0009547100053168833 +0.005372353014536202 +0.002194364002207294 +0.002269166026962921 +0.004238963010720909 +0.0008204659970942885 +0.0035735279961954802 +0.004103947023395449 +0.0022154480102472007 +0.004162183991866186 +0.002189708990044892 +0.0023536140215583146 +0.004141996003454551 +0.002116451010806486 +0.00234987199655734 +0.004158979980275035 +0.0022984220122452825 +0.0023617350088898093 +0.004151931992964819 +0.002300513006048277 +0.0023336360172834247 +0.004094377014553174 +0.0023645760084036738 +0.002199251001002267 +0.0040136349853128195 +0.0023509339953307062 +0.003993216989329085 +0.002275321021443233 +0.002276901010191068 +0.004041494015837088 +0.002266254014102742 +0.001016149006318301 +0.005670070997439325 +0.0023715909919701517 +0.002473721979185939 +0.0039857240044511855 +0.0024244270171038806 +0.0041882469959091395 +0.0021521839953493327 +0.00239965200307779 +0.00408245698781684 +0.002252753998618573 +0.0023420689976774156 +0.004230744001688436 +0.0022873329871799797 +0.0023708319931756705 +0.004107929999008775 +0.0023988379980437458 +0.004053551994729787 +0.0024752089811954647 +0.002305058005731553 +0.004511105013079941 +0.00222092101466842 +0.002440707990899682 +0.0044843690120615065 +0.0022246729931794107 +0.004310272983275354 +0.0022070749837439507 +0.002357962977839634 +0.0038637770048808306 +0.002486957993824035 +0.0021367570152506232 +0.004106275999220088 +0.0022807689965702593 +0.002309520001290366 +0.00409930499154143 +0.0021811090118717402 +0.00313236698275432 +0.003403316019102931 +0.0021905649919062853 +0.0023674420081079006 +0.004116832016734406 +0.002220856986241415 +0.004081534018041566 +0.002278608997585252 +0.002417356998194009 +0.004087444976903498 +0.0022866069921292365 +0.0022037079907022417 +0.004075514996657148 +0.0022084579977672547 +0.002419963013380766 +0.004006486007710919 +0.0022121490037534386 +0.0024172840057872236 +0.004055352008435875 +0.002212888008216396 +0.0023536719963885844 +0.0043621119984891266 +0.0007094769971445203 +0.003713070007506758 +0.004067526024300605 +0.0023687449865974486 +0.004044561996124685 +0.0023239549773279577 +0.0022947199759073555 +0.004079830017872155 +0.0021973690018057823 +0.0025503700016997755 +0.004160787008004263 +0.0022869749809615314 +0.002421395998680964 +0.0028455219871830195 +0.003572307003196329 +0.004074280004715547 +0.0022283059952314943 +0.0023646360205020756 +0.004033106000861153 +0.0022336319962050766 +0.0023626890033483505 +0.004062413994688541 +0.002203186973929405 +0.0010184160200878978 +0.005354847002308816 +0.0009234799945261329 +0.00364860100671649 +0.004101122001884505 +0.002253489976283163 +0.0023491529864259064 +0.004080746992258355 +0.0022488479735329747 +0.0010004109935835004 +0.005253615003312007 +0.0009177270112559199 +0.002404358994681388 +0.005281541991280392 +0.0023584729933645576 +0.004024714988190681 +0.002259070024592802 +0.002306462003616616 +0.004060976003529504 +0.002249776996904984 +0.0023184090096037835 +0.004175112990196794 +0.0021654529846273363 +0.0023377480101771653 +0.004062705003889278 +0.002191651990870014 +0.002259453001897782 +0.0041524110129103065 +0.0022843500191811472 +0.002260464010760188 +0.004172027023741975 +0.0023372349969577044 +0.002284119982505217 +0.004131931986194104 +0.002344032982364297 +0.0041746819915715605 +0.002128966007148847 +0.002341798011912033 +0.004146810999372974 +0.002254449005704373 +0.0009534079872537404 +0.0035432989825494587 +0.004079206002643332 +0.0022456560109276325 +0.0009254930191673338 +0.003611488005844876 +0.004126411979086697 +0.002383392013143748 +0.003996920015197247 +0.002229617995908484 +0.0023631130170542747 +0.004105692001758143 +0.0022084259835537523 +0.002294808014994487 +0.004286613984731957 +0.002158971008611843 +0.002349444985156879 +0.0042292390135116875 +0.0022727599716745317 +0.004351880023023114 +0.0022412629914470017 +0.0022705769806634635 +0.0041515720076859 +0.0021351969917304814 +0.0023524849966634065 +0.0040484300116077065 +0.0023100610123947263 +0.0023209310020320117 +0.0040637810016050935 +0.002224260999355465 +0.0023620120191480964 +0.004041445994516835 +0.002115579991368577 +0.0025636759819462895 +0.004196437017526478 +0.0022153810132294893 +0.004186840000329539 +0.0023484400007873774 +0.0022456489969044924 +0.004166225000517443 +0.0022241619881242514 +0.0022561600198969245 +0.004089175025001168 +0.0022229149763006717 +0.0022699010150972754 +0.004160957993008196 +0.0021234180021565408 +0.0031430080125574023 +0.0033677180181257427 +0.0022135569888632745 +0.0023646320041734725 +0.0040043030166998506 +0.0023014640028122813 +0.0023023039975669235 +0.004036962025566027 +0.0022346129990182817 +0.0041317089926451445 +0.0021379720128607005 +0.0023220979783218354 +0.004095418000360951 +0.0022320249991025776 +0.0022690040059387684 +0.004109693982172757 +0.002199492009822279 +0.002471550978953019 +0.004027852992294356 +0.002087094006128609 +0.0024290869769174606 +0.004070673021487892 +0.0022504949884023517 +0.002353097021114081 +0.004012746998341754 +0.002286122995428741 +0.004179249983280897 +0.0022186879941727966 +0.0023735970025882125 +0.003951667982619256 +0.002204571006586775 +0.0024575089919380844 +0.0021993120026309043 +0.004060369014041498 +0.0023648420174140483 +0.003998227010015398 +0.0021464739984367043 +0.0010603700065985322 +0.005344692996004596 +0.0022576000192202628 +0.0023278519802261144 +0.004050374001963064 +0.002184628014219925 +0.0024326690181624144 +0.003986262017861009 +0.0024835449876263738 +0.004024594003567472 +0.002183027972932905 +0.0023890140000730753 +0.004002002999186516 +0.0022439110034611076 +0.002318460989044979 +0.0040351579955313355 +0.002214564010500908 +0.0009962780168280005 +0.005345921992557123 +0.002202909003244713 +0.002290461998200044 +0.004026587004773319 +0.0022378190187737346 +0.0023298000160139054 +0.004059398983372375 +0.002301480999449268 +0.0022694779909215868 +0.004061022016685456 +0.0023159569827839732 +0.00415833099395968 +0.0021978800068609416 +0.002318723010830581 +0.004099492012755945 +0.002230387006420642 +0.002322548010852188 +0.004320758016547188 +0.0008703499916009605 +0.003637310001067817 +0.004029266012366861 +0.002213012019637972 +0.002334663993678987 +0.00421906600240618 +0.0022963130031712353 +0.0022301000135485083 +0.004094317002454773 +0.0022657310182694346 +0.004117604985367507 +0.0022117030166555196 +0.0023061030078679323 +0.004054842022014782 +0.0022183170076459646 +0.0023041930107865483 +0.004006678995210677 +0.0022166450216900557 +0.0023611789802089334 +0.003998234984464943 +0.002247128024464473 +0.0023248599900398403 +0.004096363001735881 +0.0022599250078201294 +0.0023247430217452347 +0.004036888014525175 +0.002205336990300566 +0.0023297299921978265 +0.004018223989987746 +0.0022747640032321215 +0.004098826000699773 +0.0023901420063339174 +0.0009591600100975484 +0.0023268290096893907 +0.005317822011420503 +0.0021975740091875196 +0.004060296021634713 +0.002212238992797211 +0.00249683199217543 +0.004085451015271246 +0.0022333530068863183 +0.0022243410057853907 +0.004090214002644643 +0.002256012987345457 +0.0023870989971328527 +0.00411677299416624 +0.0022781339939683676 +0.004106121981749311 +0.0021896100079175085 +0.002244527015136555 +0.0041804779903031886 +0.0022062349889893085 +0.0023375420132651925 +0.003999118984211236 +0.0022490679984912276 +0.0023596399987582117 +0.004044733010232449 +0.002239595982246101 +0.0011765160015784204 +0.005394670995883644 +0.0021811889891978353 +0.0024096749839372933 +0.0040862140012905 +0.0022225620050448924 +0.0023354779987130314 +0.004075322998687625 +0.0022485050139948726 +0.004184815974440426 +0.0022394580009859055 +0.0023588479962199926 +0.004083969979546964 +0.0021939130092505366 +0.002556974010076374 +0.003894057997968048 +0.0022493069991469383 +0.002346000022953376 +0.004015749000245705 +0.0022010639950167388 +0.002397146017756313 +0.004052562988363206 +0.002278001978993416 +0.0023048240109346807 +0.004123031016206369 +0.002437930990708992 +0.00214205399970524 +0.004044380009872839 +0.002367865003179759 +0.004216920991893858 +0.002237865002825856 +0.0024358399969059974 +0.004161730001214892 +0.0022496119781862944 +0.002501398994354531 +0.004051322001032531 +0.002166038000723347 +0.0023264960036613047 +0.004115105984965339 +0.0024949150101747364 +0.0008297100139316171 +0.005197138001676649 +0.0008896419894881546 +0.003655156004242599 +0.004052332980791107 +0.0023321769840549678 +0.004013056022813544 +0.0021285760158207268 +0.002559206011937931 +0.003943306015571579 +0.002301270986208692 +0.0023204349854495376 +0.004040746978716925 +0.002136641996912658 +0.002432925015455112 +0.004072782990988344 +0.0022637959918938577 +0.004177080991212279 +0.0021705740073230118 +0.002305455011082813 +0.004302385001210496 +0.002168489998439327 +0.0023977879900485277 +0.0041188950126525015 +0.002163491997634992 +0.002365936990827322 +0.004118651006137952 +0.0022575450129806995 +0.0023963190033100545 +0.00405872700503096 +0.0021765530109405518 +0.002420042990706861 +0.0041659820126369596 +0.00241725001251325 +0.004145407991018146 +0.0021453439840115607 +0.0023755700094625354 +0.004070119000971317 +0.002375333016971126 +0.002458197996020317 +0.004081742983544245 +0.002242376998765394 +0.002458114002365619 +0.004028631985420361 +0.0022630509920418262 +0.0042520769929979 +0.0021310199808795005 +0.0023052009928505868 +0.00413411800400354 +0.002309147996129468 +0.002309372997842729 +0.002166299003874883 +0.004111991001991555 +0.0023409330169670284 +0.004064194014063105 +0.00220821300172247 +0.002399293996859342 +0.004040472995257005 +0.002160194009775296 +0.0024549280060455203 +0.004027321003377438 +0.002261082991026342 +0.002401320991339162 +0.00406306199147366 +0.002320811996469274 +0.0041730779921635985 +0.0022411110112443566 +0.0022461079934146255 +0.004124495986616239 +0.0021569269883912057 +0.0023961790138855577 +0.004021707980427891 +0.0021774440247099847 +0.002399979013716802 +0.003972594015067443 +0.0021434560185298324 +0.002417922980384901 +0.004110453010071069 +0.0021194030123297125 +0.002422727004159242 +0.004006183997262269 +0.0022418160224333405 +0.004128722008317709 +0.002271511999424547 +0.0022918280155863613 +0.004122479003854096 +0.0022650040045846254 +0.0022209479939192533 +0.004116686002817005 +0.002152516011847183 +0.0023783500073477626 +0.0040561630157753825 +0.0021948580106254667 +0.0024782500113360584 +0.0040587770054116845 +0.002170831023249775 +0.002473964006640017 +0.003984824026701972 +0.0021682580118067563 +0.0042184350022580475 +0.002220750000560656 +0.0021714560280088335 +0.004236993991071358 +0.002272002981044352 +0.002250353019917384 +0.004117582022445276 +0.0021898369886912405 +0.002321590989595279 +0.004096891003428027 +0.002138511015800759 +0.0024346470017917454 +0.004026879003504291 +0.0021748839935753495 +0.002412683010334149 +0.004030356009025127 +0.002203248004661873 +0.0022828049841336906 +0.004154485010076314 +0.0021530950034502894 +0.0024093500105664134 +0.003999206004664302 +0.002274302998557687 +0.004112302005523816 +0.0022149300202727318 +0.002274991013109684 +0.004036754020489752 +0.0022563139791600406 +0.0022739260166417807 +0.004063278989633545 +0.002174441993702203 +0.0024164930218830705 +0.00403257500147447 +0.0021947940113022923 +0.002398229989921674 +0.004071698000188917 +0.002243556984467432 +0.004165500984527171 +0.0022238300007302314 +0.0022541510115843266 +0.004176002985332161 +0.0023038199869915843 +0.002350727008888498 +0.004054454999277368 +0.0022774529934395105 +0.0022050590196158737 +0.004146238992689177 +0.002240080008050427 +0.002266122988658026 +0.004158958996413276 +0.0021574179991148412 +0.0023985749867279083 +0.004075258009834215 +0.0021807760058436543 +0.003189980023307726 +0.003293899993877858 +0.0022500859922729433 +0.002401845995336771 +0.004006290022516623 +0.0021865970047656447 +0.0023498179798480123 +0.004077650984982029 +0.002179676986997947 +0.004151172994170338 +0.002195705979829654 +0.002391005022218451 +0.004032819997519255 +0.002142408018698916 +0.0023090259928721935 +0.004145209997659549 +0.002177304995711893 +0.002447250997647643 +0.004027930001029745 +0.002236008003819734 +0.0022672270133625716 +0.004025200003525242 +0.0021707699925173074 +0.002340706007089466 +0.004149208980379626 +0.0022359279973898083 +0.004170892003457993 +0.0022196399804670364 +0.0022194170160219073 +0.0041111219907179475 +0.0021549460070673376 +0.002327788999537006 +0.004180910007562488 +0.0022438459855038673 +0.0023412220180034637 +0.003987625997979194 +0.0021540359884966165 +0.0023175030073616654 +0.004087359004188329 +0.002159946016035974 +0.0024325220147147775 +0.004036533995531499 +0.002172743988921866 +0.004244743991876021 +0.002255310013424605 +0.0023022390087135136 +0.004092448012670502 +0.0022356459812726825 +0.002319827995961532 +0.004008056013844907 +0.0021217549801804125 +0.0023327110102400184 +0.004117641015909612 +0.002149880019715056 +0.002343583997571841 +0.004113890987355262 +0.002137489995220676 +0.002448205021210015 +0.0040301940171048045 +0.0021592180128209293 +0.002410222019534558 +0.004026995011372492 +0.002192682004533708 +0.0041542460094206035 +0.0022075280139688402 +0.002283462992636487 +0.004073862015502527 +0.0022207349829841405 +0.002326384012121707 +0.0041814399883151054 +0.0021364119893405586 +0.002355378004722297 +0.004172801011009142 +0.0021203180076554418 +0.0024287129926960915 +0.004026988986879587 +0.002243868977529928 +0.002334763004910201 +0.004088373010745272 +0.0021847430034540594 +0.004173966008238494 +0.0021273719903547317 +0.0022748959891032428 +0.004208498983643949 +0.002254093997180462 +0.002175125991925597 +0.003915435023372993 +0.0023220170114655048 +0.0024533760151825845 +0.004173761990386993 +0.0021751220047008246 +0.002384559018537402 +0.004074857017258182 +0.0021915289980825037 +0.004115202988032252 +0.0024592470144852996 +0.004039724997710437 +0.0021971960086375475 +0.002406932006124407 +0.004071659001056105 +0.0022345200122799724 +0.002391185989836231 +0.004022615001304075 +0.0023173519875854254 +0.004085076012415811 +0.0023374930024147034 +0.0021335850178729743 +0.004103370010852814 +0.0021573720150627196 +0.00232731198775582 +0.004145567014347762 +0.002183692005928606 +0.002425579004921019 +0.004066304012667388 +0.0022039359901100397 +0.0024398819950874895 +0.004267740005161613 +0.0006722309917677194 +0.003787719993852079 +0.004048158007208258 +0.0023787439859006554 +0.00401565499487333 +0.002326004992937669 +0.0021951580129098147 +0.003932646010071039 +0.0023016839986667037 +0.002345051005249843 +0.00408553599845618 +0.0021876059763599187 +0.0024232499999925494 +0.0040862720052246004 +0.0022876079892739654 +0.0022460850013885647 +0.004243495990522206 +0.002098336990457028 +0.004274195991456509 +0.0021960150043014437 +0.002371854003285989 +0.004085212014615536 +0.002175155997974798 +0.002356326993322 +0.004013177007436752 +0.0021945589978713542 +0.0025134090101346374 +0.004124061000766233 +0.0020659620058722794 +0.0011709629907272756 +0.005267341999569908 +0.002093390008667484 +0.002458161994582042 +0.004110019013751298 +0.002233692997833714 +0.002339705009944737 +0.0040902430191636086 +0.002342941996175796 +0.004240384005242959 +0.002186976984376088 +0.002369891997659579 +0.004243755975039676 +0.002170583000406623 +0.002397887990809977 +0.0040305260044988245 +0.0023158100084401667 +0.002321674022823572 +0.004085848981048912 +0.002208065998274833 +0.0023661449959035963 +0.00418501699459739 +0.000690590008161962 +0.0025902010092977434 +0.005420822009909898 +0.002217857982032001 +0.004190030012978241 +0.0020123900030739605 +0.0025333949888590723 +0.0040023949986789376 +0.00217602401971817 +0.0024446049937978387 +0.004049292008858174 +0.002190330997109413 +0.002386573003605008 +0.004071369010489434 +0.0024143829941749573 +0.0010714500094763935 +0.005252337985439226 +0.002286875998834148 +0.004084596992470324 +0.0023380379716400057 +0.00226077000843361 +0.004119406017707661 +0.002169991988921538 +0.002279408014146611 +0.0041559640085324645 +0.00220202500349842 +0.003227632987545803 +0.0031756310199853033 +0.0022787109774071723 +0.0023458999930880964 +0.0040233499894384295 +0.002073984971502796 +0.0023872169840615243 +0.004155716975219548 +0.002135782007826492 +0.004163003002759069 +0.0023485069978050888 +0.0022146860137581825 +0.004260980000253767 +0.002227360993856564 +0.0023697429860476404 +0.00404383399290964 +0.0021807260054629296 +0.002401118981651962 +0.00403081500553526 +0.0022866159852128476 +0.002367250999668613 +0.004012258985312656 +0.0020999819971621037 +0.00247277898597531 +0.004026012000394985 +0.0022642250114586204 +0.004154802008997649 +0.002212291001342237 +0.002286873001139611 +0.00411765300668776 +0.0022707779717165977 +0.002381320984568447 +0.004142152989516035 +0.0022175039921421558 +0.002377492986852303 +0.004063400003360584 +0.0022272359929047525 +0.0023789269907865673 +0.004182525008218363 +0.002286241011461243 +0.0023296790022868663 +0.004044039989821613 +0.0021910470095463097 +0.004062277002958581 +0.002313400007551536 +0.0022651150065939873 +0.0041750599921215326 +0.0021738350042141974 +0.002396180003415793 +0.004023235000204295 +0.002210717007983476 +0.0024216920137405396 +0.003963836003094912 +0.0023282080073840916 +0.00237554099294357 +0.004077366000274196 +0.0022032330161891878 +0.0023329999821726233 +0.004345155000919476 +0.0007626950100529939 +0.0037050870014354587 +0.004056617995956913 +0.002279264008393511 +0.0041662419971544296 +0.0021088859939482063 +0.0023867340059950948 +0.004120010009501129 +0.00228842900833115 +0.0022812740062363446 +0.0042306850082241 +0.002224836003733799 +0.0042428720043972135 +0.002314606012078002 +0.002186672994866967 +0.004278473003068939 +0.0021672169968951494 +0.0023475789930671453 +0.004027809016406536 +0.0023691339883953333 +0.002223732997663319 +0.004127813008381054 +0.002214366977568716 +0.0023795560118742287 +0.004041163017973304 +0.002115442999638617 +0.0024447959731332958 +0.003989920020103455 +0.0022957650071475655 +0.002418551972368732 +0.004130471003009006 +0.00211372398189269 +0.0042226270015817136 +0.0021237710025161505 +0.0024753529869485646 +0.003995966020738706 +0.0024012670037336648 +0.0022690980113111436 +0.00398786598816514 +0.002211213984992355 +0.0024453240039292723 +0.004005127993877977 +0.0022566929983440787 +0.002317448001122102 +0.004148006992181763 +0.002232911007013172 +0.0024993119877763093 +0.003972576989326626 +0.0022284199949353933 +0.004192141001112759 +0.002303491986822337 +0.002302555978531018 +0.00404471400543116 +0.002183700999012217 +0.0024095929984468967 +0.0041563319973647594 +0.0021631809941027313 +0.0024036540125962347 +0.004009877011412755 +0.0022972940059844404 +0.0023202240117825568 +0.004169659019680694 +0.0021920799918007106 +0.0022271680063568056 +0.004497974005062133 +0.0024099750153254718 +0.0044030249991919845 +0.002236083004390821 +0.002436293987557292 +0.004066564986715093 +0.002276944986078888 +0.0023533689964096993 +0.004094243980944157 +0.0022212309995666146 +0.002426919003482908 +0.004002678004326299 +0.002310248004505411 +0.004168838000623509 +0.00227347100735642 +0.0023759320029057562 +0.004121692996704951 +0.002321268984815106 +0.0024384590215049684 +0.00404656701721251 +0.002192585001466796 +0.002355759992497042 +0.004066256020450965 +0.0023272370162885636 +0.0041306299972347915 +0.0023157579998951405 +0.0021535959967877716 +0.004185580997727811 +0.0022870929969940335 +0.002223129995400086 +0.004175127018243074 +0.0021265690156724304 +0.0023209670034702867 +0.004107527987798676 +0.002134409995051101 +0.0024834790092427284 +0.004033898003399372 +0.002139502001227811 +0.0023123419960029423 +0.003974549006670713 +0.002265129005536437 +0.0023057150247041136 +0.004137307987548411 +0.0022552129812538624 +0.002354530995944515 +0.0039994699764065444 +0.0022755099926143885 +0.004117757023777813 +0.0022290879860520363 +0.002395377989159897 +0.004020947992103174 +0.002136144001269713 +0.0024674750166013837 +0.004011171986348927 +0.0023014990147203207 +0.0021960620069876313 +0.004030370997497812 +0.002212065999628976 +0.0023300749890040606 +0.004084942978806794 +0.0022384240000974387 +0.0022853449918329716 +0.004091398004675284 +0.0022579209762625396 +0.0009453879902139306 +0.00538497997331433 +0.000860449974425137 +0.003538997989380732 +0.004167197999777272 +0.0022208919981494546 +0.004074519994901493 +0.0021784209820907563 +0.0022970010177232325 +0.004096232005394995 +0.0010025560040958226 +0.0022083480143919587 +0.003464504989096895 +0.004037389997392893 +0.000979197007836774 +0.005239883001195267 +0.002288482995936647 +0.00229689700063318 +0.004062608990352601 +0.0022184359841048717 +0.0023514839995186776 +0.004192035994492471 +0.002295090991538018 +0.004021311993710697 +0.002246671007014811 +0.0009277590143028647 +0.002403363003395498 +0.005332178989192471 +0.0022849469969514757 +0.0041558530065231025 +0.001018920011119917 +0.0021624350047204643 +0.004206527984933928 +0.003323065990116447 +0.0023463380057364702 +0.00411005099886097 +0.0022258290264289826 +0.002481775009073317 +0.004190617997664958 +0.0021346260036807507 +0.002265661023557186 +0.00407127698417753 +0.0009909759974107146 +0.0035167730238754302 +0.004032775992527604 +0.0022840349993202835 +0.0041466939728707075 +0.002353372023208067 +0.002218013978563249 +0.004079525999259204 +0.00230213301256299 +0.000807648990303278 +0.0023304900096263736 +0.005204768996918574 +0.002377169003011659 +0.00405960000352934 +0.002266727009555325 +0.002299329004017636 +0.004027736023999751 +0.0022696579981129616 +0.0023082249972503632 +0.004105119005544111 +0.0022530359856318682 +0.0023157320101745427 +0.0041239440033677965 +0.0022185799898579717 +0.004101019003428519 +0.002199987997300923 +0.0023118029930628836 +0.004069012007676065 +0.0022102590010035783 +0.0023268779914360493 +0.0040951709961518645 +0.002242223999928683 +0.0023862620000727475 +0.0041174020152539015 +0.002160807023756206 +0.002313596982276067 +0.004081455001141876 +0.0022749729978386313 +0.0022621380048803985 +0.004227953002555296 +0.002178313006879762 +0.0022433410049416125 +0.004149062995566055 +0.002187540987506509 +0.004085588996531442 +0.0023729479871690273 +0.0008821850060485303 +0.0035618359979707748 +0.004003637994173914 +0.0025180630036629736 +0.004098053002962843 +0.0009352919878438115 +0.0022635979985352606 +0.005275174975395203 +0.0022255009971559048 +0.0010220309777650982 +0.005253787006950006 +0.002363219013204798 +0.002331399009563029 +0.004066922003403306 +0.002373935014475137 +0.0040616530168335885 +0.0022842700127512217 +0.0023363660147879273 +0.004057594982441515 +0.0022217280056793243 +0.0023358050093520433 +0.004082106985151768 +0.0022303359874058515 +0.002369914000155404 +0.0039387989963870496 +0.0022693860228173435 +0.002406222018180415 +0.004446363978786394 +0.002465838013449684 +0.0010879349720198661 +0.005594095011474565 +0.0007049629930406809 +0.0024819649988785386 +0.005268869019346312 +0.0022364459873642772 +0.0041302200115751475 +0.0022017879819031805 +0.002345501008676365 +0.004257872002199292 +0.002177440997911617 +0.002491694991476834 +0.004075008997460827 +0.002368932997342199 +0.004093978990567848 +0.002230793994385749 +0.002293422003276646 +0.002191651990870014 +0.004119474004255608 +0.002261978981550783 +0.004140644014114514 +0.0021524089970625937 +0.002359361998969689 +0.0041285009938292205 +0.0022181060048751533 +0.0025056500162463635 +0.00389742900733836 +0.002260035980725661 +0.0023449109867215157 +0.00411059200996533 +0.0021913069940637797 +0.0022571659937966615 +0.00294690000009723 +0.0033626100048422813 +0.002375242009293288 +0.00400723799248226 +0.0022366689809132367 +0.0041219249833375216 +0.0022520310012623668 +0.0021925079927314073 +0.004098147008335218 +0.0022425999923143536 +0.0024035719980020076 +0.004018514999188483 +0.002144508995115757 +0.002447912993375212 +0.004026013979455456 +0.002174638008000329 +0.002323391003301367 +0.004151236003963277 +0.0021373839990701526 +0.0041626860038377345 +0.002246524003567174 +0.002169948013033718 +0.004189303988823667 +0.002220880996901542 +0.0023018119973130524 +0.004009461001260206 +0.0022253000061027706 +0.0022190060117281973 +0.004032678989460692 +0.002179927018005401 +0.0023543319839518517 +0.0041050649888347834 +0.0021519309957511723 +0.00232950400095433 +0.004127669992158189 +0.002146864018868655 +0.0024665030068717897 +0.004007387004094198 +0.0021750269806943834 +0.0023320319887716323 +0.004154975002165884 +0.002162549993954599 +0.004150488006416708 +0.002231085003586486 +0.002193191001424566 +0.004195318993879482 +0.002180961979320273 +0.0022361890005413443 +0.0041041029908228666 +0.002237433014670387 +0.0022338150010909885 +0.0040632559976074845 +0.002186400000937283 +0.002357407007366419 +0.004097909986739978 +0.002109738008584827 +0.0024404830182902515 +0.004027388000395149 +0.0021660689963027835 +0.0023541599803138524 +0.0041369799873791635 +0.0021700469951611012 +0.004194206994725391 +0.002222310024080798 +0.002208821999374777 +0.004060816019773483 +0.00229616099386476 +0.0021896190010011196 +0.004090946982614696 +0.0023151409986894578 +0.0022093479929026216 +0.004107486980501562 +0.0021437339892145246 +0.0023647130001336336 +0.0040882190223783255 +0.002136416995199397 +0.002338024991331622 +0.004103628976736218 +0.0021439169941004366 +0.002421756013063714 +0.0040828409837558866 +0.002172053005779162 +0.002258989989059046 +0.004076776007423177 +0.0022045120131224394 +0.004224408010486513 +0.0022000769968144596 +0.00221549000707455 +0.004113875009352341 +0.0022092410072218627 +0.002208832011092454 +0.004113950009923428 +0.0022516280005220324 +0.0021706169936805964 +0.004183223994914442 +0.002138990006642416 +0.002339346014196053 +0.004116252006497234 +0.00212507598917 +0.002330268995137885 +0.00413011500495486 +0.0021308549912646413 +0.003090384998358786 +0.0033764439867809415 +0.0021741260134149343 +0.0023997550015337765 +0.004028127994388342 +0.0021884400048293173 +0.004150740016484633 +0.0022180640080478042 +0.0022051109990570694 +0.004176316986558959 +0.002238480985397473 +0.0022291140048764646 +0.0041219260019715875 +0.002114836999680847 +0.002438694005832076 +0.004048773000249639 +0.0021645569941028953 +0.002334656019229442 +0.004172446992015466 +0.002173479995690286 +0.0024090000079013407 +0.004077816003700718 +0.0022409550147131085 +0.002270382014103234 +0.004044711007736623 +0.0022197290090844035 +0.0024400850234087557 +0.0044272340019233525 +0.0008415459888055921 +0.005565144005231559 +0.002174560009734705 +0.0023626670008525252 +0.004124134982703254 +0.0021994130220264196 +0.002351951989112422 +0.00410474999807775 +0.0022142189845908433 +0.0024245209933724254 +0.004007053008535877 +0.0023317309969570488 +0.004089610010851175 +0.002234118990600109 +0.0022346689947880805 +0.004160713986493647 +0.00217870797496289 +0.0024082669988274574 +0.004014179983641952 +0.0021809219906572253 +0.0023318739840760827 +0.00412504599080421 +0.0022187019931152463 +0.002480385999660939 +0.00404370398609899 +0.002160438016289845 +0.002411983994534239 +0.00406719499733299 +0.0023371520219370723 +0.0042282949725631624 +0.0022885150101501495 +0.002334983990294859 +0.004066227993462235 +0.0021577519946731627 +0.0025586659903638065 +0.00395317398943007 +0.002181413001380861 +0.002423188998363912 +0.004046235990244895 +0.0022326709877233952 +0.002362889004871249 +0.00418151100166142 +0.002294831007020548 +0.002270880009746179 +0.004021129017928615 +0.00240039499476552 +0.004007081995951012 +0.002257546002510935 +0.0022903570206835866 +0.004083859996171668 +0.002167308994103223 +0.0024263240047730505 +0.004011293989606202 +0.002278607978951186 +0.002342086983844638 +0.004044099012389779 +0.0021996840077918023 +0.0024500800063833594 +0.004046940011903644 +0.0023072949843481183 +0.002448737999657169 +0.004058060003444552 +0.0022671790211461484 +0.004200936993584037 +0.002164464007364586 +0.00234064701362513 +0.00404466298641637 +0.0021461900032591075 +0.002389569010119885 +0.004110665991902351 +0.002250420016935095 +0.002347891015233472 +0.004027285001939163 +0.002258365013403818 +0.00235645700013265 +0.004061640007421374 +0.002296178019605577 +0.0022886060178279877 +0.0040715530049055815 +0.0022137770138215274 +0.004182139993645251 +0.0022705479932483286 +0.002204922988312319 +0.004138521995628253 +0.0021713740134146065 +0.0024172090052161366 +0.004018095001811162 +0.0022245729924179614 +0.002331262017833069 +0.004149401996983215 +0.0022101580107118934 +0.0024323319958057255 +0.004065231973072514 +0.002199546026531607 +0.0023610609932802618 +0.004062011023052037 +0.0023047210124786943 +0.0022996700135990977 +0.004154708993155509 +0.0023695100098848343 +0.004210748011246324 +0.002165247016819194 +0.002581112988991663 +0.004199743998469785 +0.002113613998517394 +0.00237011699937284 +0.004412426002090797 +0.0020646759949158877 +0.00425180999445729 +0.0021351710020098835 +0.0022929279948584735 +0.00433972998871468 +0.0023301290057133883 +0.0023774009896442294 +0.0042729899869300425 +0.0021470310166478157 +0.0023917430080473423 +0.004093197989277542 +0.002134712995029986 +0.002303396991919726 +0.004225823009619489 +0.002322542015463114 +0.004065913992235437 +0.0022906980011612177 +0.0023545360018033534 +0.004031736985780299 +0.002132661989890039 +0.002505991025827825 +0.0039883729768916965 +0.002182719996199012 +0.0023860140063334256 +0.004073978983797133 +0.002233503997558728 +0.0023660729930270463 +0.004033608012832701 +0.002276087994687259 +0.0023493760090786964 +0.002834423998137936 +0.0035336349974386394 +0.004114201001357287 +0.0022301629942376167 +0.0022478920000139624 +0.004235225991578773 +0.0021473339875228703 +0.00248007700429298 +0.0039663730130996555 +0.0021971800015307963 +0.0024583640042692423 +0.004012374993180856 +0.0022044230136089027 +0.002443001023493707 +0.004079252976225689 +0.0022409190132748336 +0.0023403179948218167 +0.004066110006533563 +0.0022924619843252003 +0.0022931619896553457 +0.004050288000144064 +0.00239999798941426 +0.004049782990477979 +0.002168345992686227 +0.0023358519829344004 +0.004142795980442315 +0.0022460540058091283 +0.0023621089931111783 +0.004103907005628571 +0.002146291022654623 +0.002324455010239035 +0.004135928000323474 +0.0021261959918774664 +0.0025830509839579463 +0.004003793001174927 +0.0021960160229355097 +0.0041598459938541055 +0.0022785869950894266 +0.0022042389900889248 +0.0021887370094191283 +0.004360420978628099 +0.001994969992665574 +0.00423990297713317 +0.00218143398524262 +0.002222766983322799 +0.004187304992228746 +0.002217847009887919 +0.0023258439905475825 +0.0041197219979949296 +0.0021562969777733088 +0.0025179790100082755 +0.004010287986602634 +0.002121264988090843 +0.004271676996722817 +0.002229173987871036 +0.0022516989847645164 +0.004148192994762212 +0.0023774320143274963 +0.0020449179864954203 +0.004129511013161391 +0.0022468320094048977 +0.002244042989332229 +0.004085977008799091 +0.002058802987448871 +0.002506065007764846 +0.004018300009192899 +0.0020867639977950603 +0.0026341030024923384 +0.003980034991400316 +0.002107092004735023 +0.0025135569740086794 +0.004273016005754471 +0.000761950999731198 +0.0036199470050632954 +0.00415522902039811 +0.002120021003065631 +0.0041650790080893785 +0.0023548940080218017 +0.002204826014349237 +0.0041993120103143156 +0.0021461010037455708 +0.0022030719846952707 +0.004155147005803883 +0.0022364519827533513 +0.003201404004357755 +0.0034216539934277534 +0.002118648000760004 +0.002419601019937545 +0.0040902000037021935 +0.0020754420256707817 +0.004227127996273339 +0.002204869990237057 +0.0022688430035486817 +0.004114732990274206 +0.0023454239999409765 +0.0022735160018783063 +0.004010795004433021 +0.0021780809911433607 +0.0021690069988835603 +0.0042602340108715 +0.002081559010548517 +0.002325595007278025 +0.00417043300694786 +0.002169398998375982 +0.0023526930017396808 +0.004202534008072689 +0.002129525993950665 +0.0024149719974957407 +0.004012422985397279 +0.0024249460257124156 +0.00430866697570309 +0.002306120004504919 +0.002264604001538828 +0.004160454991506413 +0.0021684739913325757 +0.002442427008645609 +0.0041625390003900975 +0.0020832400186918676 +0.002529951016185805 +0.00406080498942174 +0.0022319499985314906 +0.00419440702535212 +0.0022243460116442293 +0.0023887589923106134 +0.004129498993279412 +0.0023104439896997064 +0.0022330259962473065 +0.004040138999698684 +0.0022008730156812817 +0.002355978009290993 +0.004076263983733952 +0.002273397985845804 +0.0024244819942396134 +0.004296188009902835 +0.002193324005929753 +0.00423100299667567 +0.0022098080080468208 +0.002455565001582727 +0.0020882009994238615 +0.004238048015395179 +0.0007566369895357639 +0.003656132990727201 +0.0039619609888177365 +0.0023871080193202943 +0.004063639004016295 +0.0021834569924976677 +0.0024941109877545387 +0.004027464019600302 +0.0022547650150954723 +0.0023420630022883415 +0.00402640801621601 +0.002346433000639081 +0.002312903990969062 +0.004007341980468482 +0.0024861910205800086 +0.000910376023966819 +0.005483076995005831 +0.0007533130119554698 +0.0023975269868969917 +0.005188888986594975 +0.002357602003030479 +0.0040929290116764605 +0.0021579449821729213 +0.002391608984908089 +0.004030313983093947 +0.0022220920072868466 +0.0023652639938518405 +0.004069674003403634 +0.0022284130100160837 +0.002320350002264604 +0.004089953989023343 +0.0022717720130458474 +0.0041035310132429 +0.002341612009331584 +0.0023368959955405444 +0.00404826199519448 +0.0022155860206112266 +0.002443615987431258 +0.00396777901914902 +0.002162680000765249 +0.0024073249951470643 +0.0040214819891843945 +0.00224421001621522 +0.0022457879967987537 +0.0042767670238390565 +0.0008428310102317482 +0.003750842995941639 +0.004043191991513595 +0.0022598419745918363 +0.002279376989463344 +0.003999904001830146 +0.0022943730000406504 +0.0041160980181302875 +0.002258038002764806 +0.0024008320178836584 +0.004077665013028309 +0.0021879640116821975 +0.0024071549996733665 +0.004090745002031326 +0.002140585012966767 +0.0023537079978268594 +0.004286654002498835 +0.0007891810091678053 +0.0037387159827630967 +0.004072340001584962 +0.0022409160155802965 +0.0011037829972337931 +0.00536389701301232 +0.0008738499891478568 +0.003640473005361855 +0.004015460988739505 +0.0025063020002562553 +0.003942739014746621 +0.002153469016775489 +0.00241853398620151 +0.004057437006849796 +0.002168836974306032 +0.0024018090043682605 +0.004025419009849429 +0.0022766889887861907 +0.0023289490200113505 +0.004050062008900568 +0.0021424349979497492 +0.0025150710134766996 +0.004050128016388044 +0.002354719996219501 +0.00403473200276494 +0.0022635140048805624 +0.002346941997529939 +0.004016194026917219 +0.0021407589956652373 +0.0025233569904230535 +0.003984169015893713 +0.002179720002459362 +0.0023810379789210856 +0.004301744018448517 +0.0024084849865175784 +0.0022400709858629853 +0.003995923005277291 +0.0023186689941212535 +0.00232230601250194 +0.00418856501346454 +0.0025524089869577438 +0.0040256289939861745 +0.0021755019843112677 +0.0024609020038042217 +0.004560173983918503 +0.002225094009190798 +0.0024460279964841902 +0.004122785001527518 +0.0024534859985578805 +0.003993742022430524 +0.0021797130175400525 +0.002328015019884333 +0.004115488001843914 +0.0021886409958824515 +0.002283773006638512 +0.004126434010686353 +0.002188971993746236 +0.0024588480009697378 +0.003975703002652153 +0.0023989659966900945 +0.0022643420088570565 +0.0041007330000866205 +0.00216602798900567 +0.00240609297179617 +0.0040593309968244284 +0.0023415279865730554 +0.004113661008886993 +0.00229588701040484 +0.0023752640117891133 +0.0040488539962098 +0.0021497549896594137 +0.0023923359985928982 +0.004091559007065371 +0.002135854010703042 +0.0025145990075543523 +0.0039061220013536513 +0.002260970009956509 +0.0023424169921781868 +0.004107293993001804 +0.0022140950022730976 +0.0024523100000806153 +0.004007248004199937 +0.0023174209927674383 +0.0040121400088537484 +0.002390399022260681 +0.0024235259916167706 +0.0020901630050502717 +0.004058387014083564 +0.0010071659926325083 +0.0037613220047205687 +0.0038924720138311386 +0.002501620998373255 +0.004066852998221293 +0.002105975989252329 +0.0024766179849393666 +0.003986649011494592 +0.002348409005207941 +0.0023599199776072055 +0.0039941740105859935 +0.0022124990064185113 +0.002351897011976689 +0.003994838974904269 +0.0023312300036195666 +0.004130263987462968 +0.002204247983172536 +0.0023568180040456355 +0.004109905014047399 +0.002076798991765827 +0.0025564469979144633 +0.004014348000055179 +0.0021593759884126484 +0.002434541005641222 +0.004028411989565939 +0.0022581189987249672 +0.00245243901736103 +0.00415401000645943 +0.002434698981232941 +0.004509750986471772 +0.002417281997622922 +0.0024845179868862033 +0.004553470003884286 +0.0024524129985366017 +0.0047889249981381 +0.0025276179949287325 +0.004632384981960058 +0.002491901977919042 +0.002669226989382878 +0.004593459976604208 +0.002826960990205407 +0.004520065005635843 +0.0023938709928188473 +0.002697803021874279 +0.004239069006871432 +0.0027678879851009697 +0.004151597997406498 +0.0022260629921220243 +0.0024600270262453705 +0.004186280013527721 +0.002228539000498131 +0.0026038380165118724 +0.004312267992645502 +0.00213956501102075 +0.003153739991830662 +0.0034302469866815954 +0.0022558270138688385 +0.004231781989801675 +0.002222131995949894 +0.0022929869883228093 +0.00406823298544623 +0.0021623400098178536 +0.0023030469892546535 +0.004120994999539107 +0.0022036659938748926 +0.002392543014138937 +0.004054946010001004 +0.0020610119972843677 +0.00260409401380457 +0.004075600998476148 +0.002173437998862937 +0.00428497398388572 +0.0008423889812547714 +0.003669831989100203 +0.004163640987826511 +0.002287348994286731 +0.0022666720033157617 +0.004136818024562672 +0.002260273991851136 +0.002394981012912467 +0.004131547990255058 +0.0021023100125603378 +0.002515300002414733 +0.004060144012328237 +0.002152974979253486 +0.002453296008752659 +0.004018860985524952 +0.0021374819916673005 +0.004252154991263524 +0.002250093995826319 +0.0022857369913253933 +0.004107034998014569 +0.0022752369986847043 +0.002315621997695416 +0.004083226987859234 +0.0022808069770690054 +0.0023123520077206194 +0.004063008993398398 +0.0021221710194367915 +0.0026793369906954467 +0.004007067997008562 +0.0021682940132450312 +0.002501394017599523 +0.004110042005777359 +0.0021695989998988807 +0.0025360260042361915 +0.00399161601671949 +0.002341710001928732 +0.004092583025339991 +0.0021938329737167805 +0.0024209620023611933 +0.004221590992528945 +0.0021616039739456028 +0.0024363510019611567 +0.00404274498578161 +0.002242441987618804 +0.0023024919792078435 +0.0041754330159164965 +0.0022338379931170493 +0.0023052449978422374 +0.004120603000046685 +0.002299031999427825 +0.004167537990724668 +0.0022823270119260997 +0.002211315993918106 +0.004090959002496675 +0.0020943300041835755 +0.0025180829979944974 +0.004093683994142339 +0.0022455310099758208 +0.002338624995900318 +0.004143614001804963 +0.0020809880224987864 +0.0023428569838870317 +0.004343254986451939 +0.0020808230037800968 +0.0024689269775990397 +0.004014321020804346 +0.002314759010914713 +0.0040859419968910515 +0.0023050619929563254 +0.002297819999512285 +0.004044292989419773 +0.002233995997812599 +0.002319238003110513 +0.004062710999278352 +0.0022945950040593743 +0.002348448004340753 +0.004072590993018821 +0.0022098880144767463 +0.0024082770105451345 +0.004069401999004185 +0.0022883510100655258 +0.004064695996930823 +0.002236549014924094 +0.002249034005217254 +0.004136845993343741 +0.0022857139992993325 +0.002385416009929031 +0.004157736984780058 +0.0021295729966368526 +0.0024412219936493784 +0.004123659018659964 +0.002257231011753902 +0.002435297006741166 +0.00398366100853309 +0.0022904800134710968 +0.0023731680121272802 +0.004192530992440879 +0.0023588769836351275 +0.003981690009823069 +0.002156144008040428 +0.0024041529977694154 +0.00420316300005652 +0.0022475630103144795 +0.002284707996295765 +0.0040591089928057045 +0.002195131004555151 +0.0024544729967601597 +0.004048090981086716 +0.002277349994983524 +0.0023821810027584434 +0.0040127400134224445 +0.0022648870071861893 +0.0024112029932439327 +0.004066029010573402 +0.0022929009865038097 +0.0021950830123387277 +0.004065378016093746 +0.0023654079996049404 +0.004158309020567685 +0.0022361430164892226 +0.0023495590139646083 +0.00413802798721008 +0.0021483160089701414 +0.0024760639935266227 +0.003982767986599356 +0.002248246979434043 +0.0024040869902819395 +0.00408104999223724 +0.002330929011804983 +0.002326193993212655 +0.004036044992972165 +0.002255882980534807 +0.004157283023232594 +0.0021365800057537854 +0.0024466429895255715 +0.004109493980649859 +0.0021659030171576887 +0.0024781649990472943 +0.004256457003066316 +0.002120835008099675 +0.0024194190045818686 +0.0042049839976243675 +0.0022770730138290673 +0.004057191021274775 +0.002293462021043524 +0.002217542991274968 +0.004142744990531355 +0.0022339019924402237 +0.0024474120000377297 +0.004074020980624482 +0.0021543920156545937 +0.002422507997835055 +0.004132505011511967 +0.0023259249865077436 +0.00247361499350518 +0.004048646020237356 +0.002272265002829954 +0.0023833019949961454 +0.0040269779856316745 +0.0023967219749465585 +0.004088462999789044 +0.0021384719875641167 +0.0024287319974973798 +0.004123580001760274 +0.0022557259944733232 +0.0022838370059616864 +0.0041224120068363845 +0.0022160579974297434 +0.0024099950096569955 +0.0040626619884278625 +0.002152034983737394 +0.004239043017150834 +0.002267876989208162 +0.0023451760062016547 +0.004080845974385738 +0.0022227469889912754 +0.0023595690145157278 +0.004028165014460683 +0.0022062979987822473 +0.002178491005906835 +0.004194519016891718 +0.0021314469922799617 +0.002442200988298282 +0.004139372002100572 +0.00214920801226981 +0.0026361109921708703 +0.0040816430118866265 +0.0022383760078810155 +0.0041495769983157516 +0.0022224670101422817 +0.0023738410091027617 +0.004064912995090708 +0.0022559509961865842 +0.002430887980153784 +0.004125231993384659 +0.0020913819898851216 +0.002490099024726078 +0.004037932987557724 +0.0021942059975117445 +0.002499721013009548 +0.004054582008393481 +0.002197567984694615 +0.0023970920010469854 +0.004203162010526285 +0.0007999569934327155 +0.002518950990634039 +0.005231468006968498 +0.0023773799766786397 +0.0041466559923719615 +0.002200677990913391 +0.002264311973704025 +0.004273236001608893 +0.0021553169935941696 +0.0024425270094070584 +0.004113681992748752 +0.002197585010435432 +0.0023387039836961776 +0.004235244996380061 +0.0021702320082113147 +0.0042707870015874505 +0.0022646150027867407 +0.002223652001703158 +0.004156260984018445 +0.0021382450067903847 +0.0024546299828216434 +0.0041169149917550385 +0.002123687998391688 +0.002410471992334351 +0.00408797399722971 +0.002323416993021965 +0.0023088890011422336 +0.004136300995014608 +0.0023452180030290037 +0.004149930988205597 +0.0022808069770690054 +0.0009092580003198236 +0.002461361000314355 +0.005274638009723276 +0.002230147016234696 +0.004128036001930013 +0.0023086389992386103 +0.0023307150113396347 +0.003986558003816754 +0.0023669950023759156 +0.002245172974653542 +0.004125431994907558 +0.002154265996068716 +0.0024284259998239577 +0.004152850015088916 +0.002294519013958052 +0.004054890014231205 +0.0022868720116093755 +0.0023417589836753905 +0.0040675979980733246 +0.0022978810011409223 +0.002380670979619026 +0.004159516014624387 +0.0022413980041164905 +0.0030759809887968004 +0.0034428600047249347 +0.0022548599808942527 +0.00228394300211221 +0.004282554000383243 +0.000964622013270855 +0.0035820630146190524 +0.004071511997608468 +0.0024237820180132985 +0.004087595007149503 +0.0021876749815419316 +0.002380370016908273 +0.00398792399209924 +0.002309287985553965 +0.0023741689801681787 +0.0040253750048577785 +0.0021953179966658354 +0.0023829389829188585 +0.004144520004047081 +0.0023015449987724423 +0.0022517679899465293 +0.00408358100685291 +0.0022497329919133335 +0.004136436997214332 +0.0022926050005480647 +0.0008596370171289891 +0.002447581005981192 +0.005223732994636521 +0.0022815599804744124 +0.00425282699870877 +0.002221788017777726 +0.0023299080203287303 +0.004068430018378422 +0.0022785929904785007 +0.0023640019935555756 +0.004090403002919629 +0.0023677720164414495 +0.004041373002110049 +0.002270872995723039 +0.0023332400014624 +0.004086261993506923 +0.0023705509956926107 +0.0023341859923675656 +0.003975094994530082 +0.002132984984200448 +0.0024294559843838215 +0.003966760006733239 +0.0022184889821801335 +0.0024784569977782667 +0.0041425880044698715 +0.0022627569851465523 +0.002393873000983149 +0.004033409990370274 +0.0023571299971081316 +0.002221659990027547 +0.004163432982750237 +0.0025213080225512385 +0.0006908969953656197 +0.005331480992026627 +0.002282724977703765 +0.0040272430051118135 +0.0023982010025065392 +0.0008918219828046858 +0.005436690989881754 +0.002221701986854896 +0.0023720379977021366 +0.0041598459938541055 +0.0022170189768075943 +0.002389786997810006 +0.0040632159798406065 +0.002276757004437968 +0.004174196015810594 +0.002248392003821209 +0.002358578989515081 +0.004157049988862127 +0.002094141993438825 +0.0025103900115936995 +0.004029274015920237 +0.0021867509931325912 +0.0025081029743887484 +0.004028339986689389 +0.0021546520001720637 +0.002456733025610447 +0.004073629999766126 +0.0021669779962394387 +0.004213172011077404 +0.002231085003586486 +0.002381002006586641 +0.002308983006514609 +0.00419657799648121 +0.002377247001277283 +0.004067382018547505 +0.0022287000028882176 +0.002478076989063993 +0.004123641992919147 +0.002193858992541209 +0.0024276509939227253 +0.004019253014121205 +0.0022523829829879105 +0.002414335001958534 +0.004006595001555979 +0.002283868001541123 +0.0022948650002945215 +0.0040508189995307475 +0.0022054410073906183 +0.004244192008627579 +0.0021256929903756827 +0.0024598950112704188 +0.004109613015316427 +0.0022642989933956414 +0.002334956981940195 +0.004137370007811114 +0.002279758977238089 +0.0023315540165640414 +0.004068595997523516 +0.002259400993352756 +0.00419449299806729 +0.002418785006739199 +0.0022281259880401194 +0.004160586977377534 +0.002137533010682091 +0.0024582119949627668 +0.003995447012130171 +0.0021556279971264303 +0.0025655769859440625 +0.004205119999824092 +0.002259069005958736 +0.0022631419997196645 +0.0043004930194001645 +0.0008016119827516377 +0.003777895006351173 +0.004197096015559509 +0.0022758189879823476 +0.00415847499971278 +0.0021310510055627674 +0.002331583993509412 +0.004215469991322607 +0.0021860749984625727 +0.0024128869990818202 +0.004164310987107456 +0.002228130993898958 +0.002530152996769175 +0.003952930012019351 +0.0023664699983783066 +0.004131346009671688 +0.0022876010043546557 +0.002357100020162761 +0.00398799599497579 +0.002239068999188021 +0.002365765016293153 +0.0040456079877913 +0.0022630530002061278 +0.0007780820014886558 +0.005518687976291403 +0.0021215089946053922 +0.0024417380045633763 +0.004205664008622989 +0.002172412001527846 +0.004276274994481355 +0.0022017589944880456 +0.0023452139867004007 +0.004078202007804066 +0.0023256440181285143 +0.0023809980193618685 +0.0040218169742729515 +0.002238907996797934 +0.002346680994378403 +0.004049250012030825 +0.002221250004367903 +0.0023848600103519857 +0.004086765984538943 +0.0020986760209780186 +0.0024889750056900084 +0.0040358749974984676 +0.0021694640163332224 +0.0042374169861432165 +0.002227313001640141 +0.000937454984523356 +0.0037231479946058244 +0.004028308001579717 +0.002337420010007918 +0.004048937989864498 +0.0022839389857836068 +0.0023259249865077436 +0.004046229994855821 +0.0022567630221601576 +0.0023708279768470675 +0.004055281024193391 +0.0022001070028636605 +0.002492169995093718 +0.0027896769752260298 +0.0035046919947490096 +0.004174057976342738 +0.002175261004595086 +0.002359631995204836 +0.004178342001978308 +0.0022349630016833544 +0.002313988021342084 +0.004072530980920419 +0.0022329989878926426 +0.002234402985777706 +0.004103404993657023 +0.002187243022490293 +0.0024563479819335043 +0.004081434017280117 +0.0021595619909930974 +0.00242226998670958 +0.004051343013998121 +0.002274551981827244 +0.004184842022368684 +0.002224901021691039 +0.0023364950029645115 +0.00417797701084055 +0.0023515830107498914 +0.0007097540074028075 +0.005535463016713038 +0.0022851009853184223 +0.002216445020167157 +0.0041792410193011165 +0.0021603119967039675 +0.0025544079835526645 +0.004068487003678456 +0.002307490009116009 +0.00428795101470314 +0.002217433007899672 +0.002204199001425877 +0.0024376200162805617 +0.004029792995424941 +0.002360166981816292 +0.004073699004948139 +0.0022521129867527634 +0.0023232839885167778 +0.0040629990107845515 +0.002225649979664013 +0.002362859988352284 +0.004120694997254759 +0.002126430015778169 +0.002510132995666936 +0.0040700919926166534 +0.002295904007041827 +0.004207467980450019 +0.0022474360011983663 +0.002372752991504967 +0.0040251440077554435 +0.002268008014652878 +0.0023450560111086816 +0.004039057996124029 +0.0021673909795936197 +0.0024372230109293014 +0.004057781014125794 +0.002194811007939279 +0.0024138320004567504 +0.004055046010762453 +0.002105077001033351 +0.0025340240099467337 +0.003959463007049635 +0.002346855995710939 +0.0041989700112026185 +0.0022213140036910772 +0.0022957479814067483 +0.004078114987351 +0.0022676770167890936 +0.002313305012648925 +0.004306846996769309 +0.002265679999254644 +0.002395056013483554 +0.004029378993436694 +0.0022288210166152567 +0.004163485980825499 +0.0022781380102969706 +0.0023655480181332678 +0.0040858959837350994 +0.0022332199732773006 +0.0023984769941307604 +0.004203458986012265 +0.002122798003256321 +0.0024061520234681666 +0.004141196986893192 +0.0020835879840888083 +0.002463434007950127 +0.004244354000547901 +0.0022037870076019317 +0.002436123992083594 +0.0039826939755585045 +0.002225662989076227 +0.004230680002365261 +0.0022360650182235986 +0.002236380008980632 +0.004249577992595732 +0.0022052840213291347 +0.0024519769940525293 +0.00403219202416949 +0.0021683139784727246 +0.002332009986275807 +0.004225879005389288 +0.002092003996949643 +0.0025060199841391295 +0.0040271680045407265 +0.0021893189987167716 +0.0023626140027772635 +0.004341430991189554 +0.0022099060006439686 +0.004190422012470663 +0.0020917509973514825 +0.0024503110034856945 +0.004150448017753661 +0.002086473017698154 +0.0024371949839405715 +0.004143355996347964 +0.0021766360150650144 +0.002393030998064205 +0.00414989297860302 +0.0022626009886153042 +0.0023452590103261173 +0.004087965004146099 +0.0022904299839865416 +0.0041973229963332415 +0.0022607129940297455 +0.0022700400149915367 +0.004111818998353556 +0.0022398799774236977 +0.002323620021343231 +0.004070992988999933 +0.0022520250058732927 +0.0023511250037699938 +0.004077179997693747 +0.002173437998862937 +0.002384763996815309 +0.004063477012095973 +0.0008896429790183902 +0.0038156879891175777 +0.004078664002008736 +0.0023567979806102812 +0.004165969003224745 +0.0023557579843327403 +0.0021270989964250475 +0.004183529003057629 +0.002206250006565824 +0.002353765012230724 +0.0040171459841076285 +0.002164995006751269 +0.00239916899590753 +0.0041603680001571774 +0.0021927159978076816 +0.002413303009234369 +0.004139232012676075 +0.0022687579912599176 +0.0042444749851711094 +0.0020902639953419566 +0.0023181030119303614 +0.004170483007328585 +0.002310897019924596 +0.0022788259957451373 +0.004063953005243093 +0.002246604999527335 +0.00236950401449576 +0.004065216984599829 +0.0022034920111764222 +0.0024908159975893795 +0.003989213990280405 +0.00219571401248686 +0.0024423150171060115 +0.002825837000273168 +0.0034828479983843863 +0.004232572973705828 +0.002257059997646138 +0.0023784000077284873 +0.003984284994658083 +0.0022379170113708824 +0.0023330010008066893 +0.004036397993331775 +0.002165406011044979 +0.002473664004355669 +0.004048235015943646 +0.0022002090117894113 +0.0024405769945587963 +0.004029325995361432 +0.002128716994775459 +0.002498649002518505 +0.004049142007716 +0.002266257011797279 +0.0041139289969578385 +0.002267186006065458 +0.0023048489820212126 +0.00412987798335962 +0.0021325289853848517 +0.0024742349924053997 +0.004131422989303246 +0.0020484670239966363 +0.0025067819806281477 +0.00400024899863638 +0.0023421039804816246 +0.0023344480141531676 +0.0040543299983255565 +0.00220542200258933 +0.0024067249905783683 +0.00405891498667188 +0.0023717839794699103 +0.004084885993506759 +0.0023595200036652386 +0.002433645975543186 +0.004135622002650052 +0.0021342379914131016 +0.002365701016969979 +0.004275236977264285 +0.0022178789949975908 +0.0024373230116907507 +0.003997968975454569 +0.002335755998501554 +0.0024819879909045994 +0.004030024021631107 +0.002198180998675525 +0.004202436975901946 +0.002227839024271816 +0.0023098019883036613 +0.00405932599096559 +0.00224904902279377 +0.002355181990424171 +0.004067726986249909 +0.0022185799898579717 +0.0023517919762525707 +0.004213397012790665 +0.0022454310092143714 +0.0022466730151791126 +0.004050197981996462 +0.0025369590148329735 +0.004101807018741965 +0.00217196301673539 +0.002377761004026979 +0.004141182987950742 +0.002127444982761517 +0.002417114010313526 +0.004091049020644277 +0.0022053160064388067 +0.0024843509891070426 +0.003948001976823434 +0.0023399140045512468 +0.002325237001059577 +0.004191362007986754 +0.0023422790109179914 +0.0021562920010183007 +0.004111463000299409 +0.0023326079826802015 +0.00408831299864687 +0.0021781260147690773 +0.002324435015907511 +0.004201362986350432 +0.0023364990192931145 +0.002395109011558816 +0.0041651510109659284 +0.002143115008948371 +0.0024655329762026668 +0.004059759987285361 +0.002181198011385277 +0.004166458995314315 +0.002296877995831892 +0.0023147710016928613 +0.004308524978114292 +0.0023039799998514354 +0.000870872987434268 +0.005705118004698306 +0.000863516004756093 +0.003677489992696792 +0.00423862598836422 +0.0023121839913073927 +0.0023236600100062788 +0.00412602600408718 +0.0023790569975972176 +0.0021582460030913353 +0.004167835984844714 +0.002389563014730811 +0.004220396978780627 +0.002189322985941544 +0.002325352019397542 +0.004144884005654603 +0.0022679840039927512 +0.003067118988838047 +0.0033264749799855053 +0.002353381016291678 +0.002253895014291629 +0.004068488982738927 +0.0022210240131244063 +0.004219838010612875 +0.002172784006688744 +0.002502683026250452 +0.003947161021642387 +0.002248654986033216 +0.002434619003906846 +0.004046049987664446 +0.002361630991799757 +0.0023636269907001406 +0.004169323015958071 +0.0022306079918053 +0.002291687997058034 +0.0041523390100337565 +0.002286463975906372 +0.004082286992343143 +0.002265547984279692 +0.0024618799798190594 +0.004119928984437138 +0.0023538900131825358 +0.0023917149810586125 +0.00420859400765039 +0.0022932830033823848 +0.0024389949976466596 +0.004103156010387465 +0.002308742987224832 +0.004237120010657236 +0.002275885985000059 +0.002192418003687635 +0.004157165996730328 +0.0021466129983309656 +0.0023631649964954704 +0.004202809010166675 +0.002231471997220069 +0.0022840030142106116 +0.004111254995223135 +0.002162225981010124 +0.002496656001312658 +0.0039033440116327256 +0.0025962009967770427 +0.002173510001739487 +0.004142410005442798 +0.0023586009920109063 +0.0043886330095119774 +0.002234646992292255 +0.0024505279725417495 +0.004159386997343972 +0.0020811010035686195 +0.0023883160029072315 +0.00414640101371333 +0.0022458499879576266 +0.0024195360019803047 +0.004131396999582648 +0.002202153002144769 +0.004136842006118968 +0.0023066700086928904 +0.002279431006172672 +0.0041656040120869875 +0.002177775983000174 +0.0022747039911337197 +0.004144537990214303 +0.0022301670105662197 +0.0024782200052868575 +0.004242552007781342 +0.0022218780068214983 +0.002189824008382857 +0.004113524977583438 +0.002246885997010395 +0.0023813199950382113 +0.0041573460039217025 +0.0022422419860959053 +0.004120610014069825 +0.0023352330026682466 +0.0023217730049509555 +0.004048756003612652 +0.0021428519976325333 +0.002368478017160669 +0.004103858984308317 +0.00231226600590162 +0.0023426859988830984 +0.004071953997481614 +0.002349387010326609 +0.002262434019939974 +0.004077322984812781 +0.002259403991047293 +0.0024611699918750674 +0.004004190996056423 +0.002398559998255223 +0.003937091008992866 +0.0022420900058932602 +0.0025713720242492855 +0.003927554003894329 +0.0023044839908834547 +0.002314515004400164 +0.004098814999451861 +0.002252614009194076 +0.00234011301654391 +0.00406337997992523 +0.0023145390150602907 +0.0022810430091340095 +0.00405553198652342 +0.002307918999576941 +0.004147094005020335 +0.002281971013871953 +0.0022792310046497732 +0.004097441007615998 +0.0021819880057591945 +0.0024219939950853586 +0.0041815610020421445 +0.002176859008613974 +0.002434104011626914 +0.004078900994500145 +0.002190658007748425 +0.0024036410031840205 +0.004073923017131165 +0.0022895399888511747 +0.004178555012913421 +0.0022825690102763474 +0.0024468189803883433 +0.004020498978206888 +0.0021396390220616013 +0.002374766016146168 +0.004140866978559643 +0.002156022994313389 +0.002455668000038713 +0.004015782993519679 +0.0021912849915679544 +0.002570353011833504 +0.004106432985281572 +0.0022179649968165904 +0.004164463985944167 +0.00224603500100784 +0.0022978650231380016 +0.0022781380102969706 +0.004100207996089011 +0.0024871200148481876 +0.004049797978950664 +0.002197030989918858 +0.0023513929918408394 +0.004179134004516527 +0.0022533050214406103 +0.0024137730069924146 +0.0040959150064736605 +0.0022130550059955567 +0.002401514007942751 +0.004046636982820928 +0.002368244982790202 +0.004043282999191433 +0.00231258399435319 +0.002292824996402487 +0.002251911995699629 +0.004115105024538934 +0.0010395999997854233 +0.005511175986612216 +0.002307865011971444 +0.002180590992793441 +0.00413023799774237 +0.002214234002167359 +0.0024374310160055757 +0.004067452013259754 +0.002225863980129361 +0.0022800189908593893 +0.004060286999447271 +0.0024031579960137606 +0.0040632229938637465 +0.002174441993702203 +0.0024514999822713435 +0.004059217986650765 +0.002214984007878229 +0.0024929580104071647 +0.0041539790108799934 +0.0023705520143266767 +0.0022079749905969948 +0.004058691003592685 +0.0023655869881622493 +0.0024318459909409285 +0.004005693015642464 +0.0022342790034599602 +0.004188280989183113 +0.002222606010036543 +0.0024208670074585825 +0.0041447549883741885 +0.0021379319950938225 +0.0023760260082781315 +0.0039919989940244704 +0.002252341015264392 +0.002421304991003126 +0.004141459008678794 +0.0022427960066124797 +0.0023572150093968958 +0.004032705997815356 +0.002224768977612257 +0.004217524023260921 +0.002241946989670396 +0.002255386993056163 +0.004140733013628051 +0.0021788970043417066 +0.0023267150099854916 +0.004037032020278275 +0.0021918159909546375 +0.002362460014410317 +0.00398198701441288 +0.002234381012385711 +0.0024934009998105466 +0.00400040001841262 +0.0021398289827629924 +0.002511015016352758 +0.004119224002351984 +0.0020962209964636713 +0.002486689016222954 +0.003995123988715932 +0.0024094220134429634 +0.003967764001572505 +0.0023843770031817257 +0.002326329005882144 +0.003961731999879703 +0.0022931570129003376 +0.0008886890136636794 +0.0054945049923844635 +0.002192448009736836 +0.0023253789986483753 +0.004115035000722855 +0.0023176459944806993 +0.0023729800013825297 +0.004204312019282952 +0.0023794549924787134 +0.00414414401166141 +0.002294878999236971 +0.0008534989901818335 +0.00242078400333412 +0.005360640003345907 +0.002119564014719799 +0.0041505490080453455 +0.002265048009576276 +0.002392397989751771 +0.004139814991503954 +0.0022121539805084467 +0.00230273898341693 +0.00410756201017648 +0.002299158979440108 +0.0022393630060832947 +0.004113581991987303 +0.0023602840083185583 +0.004089572001248598 +0.0021860529959667474 +0.0025435920106247067 +0.003996174986241385 +0.0021553199912887067 +0.0024756019993219525 +0.004068351001478732 +0.0022395300038624555 +0.002326111978618428 +0.003961095993872732 +0.002309678995516151 +0.0022848990047350526 +0.004388201981782913 +0.002366953995078802 +0.0047038400080055 +0.0022747149923816323 +0.002585156005807221 +0.004345282010035589 +0.0024325760023202747 +0.0046263900003395975 +0.0024796829966362566 +0.002718194999033585 +0.004508978017838672 +0.0025421370228286833 +0.004560597997624427 +0.0028314910014159977 +0.004715888993814588 +0.0024901859869714826 +0.0025318559783045202 +0.004321660002460703 +0.0022256810043472797 +0.002615696983411908 +0.004241761984303594 +0.00227349202032201 +0.0041055580077227205 +0.0023256310087163 +0.00223497100523673 +0.00427177399978973 +0.0024226259847637266 +0.0025573010207153857 +0.004012143996078521 +0.0022132880112621933 +0.0025368729839101434 +0.004047534981509671 +0.0021959499863442034 +0.0024388780002482235 +0.003977776010287926 +0.00240835701697506 +0.0022064149961806834 +0.004144317004829645 +0.0023144810111261904 +0.00403025999548845 +0.0022706199961248785 +0.0022778580023441464 +0.004037092003272846 +0.0021835909865330905 +0.002315896999789402 +0.004241709015332162 +0.0022218509984668344 +0.0024213310098275542 +0.004078416008269414 +0.002265120012452826 +0.004121445002965629 +0.0023308370145969093 +0.002233934006653726 +0.004137451003771275 +0.0022141380177345127 +0.002372112008742988 +0.004100302001461387 +0.002175589994294569 +0.0024215999874286354 +0.004056002013385296 +0.00219100498361513 +0.002382954000495374 +0.004246508004143834 +0.0022185420093592256 +0.00419884201255627 +0.0022772770025767386 +0.00216041601379402 +0.004153627989580855 +0.002322584012290463 +0.0022831019887235016 +0.004098353994777426 +0.002175546978833154 +0.0023490749881602824 +0.004142057005083188 +0.0021948550129309297 +0.002461355004925281 +0.004053898999700323 +0.0022109639830887318 +0.0023824810050427914 +0.004068530979566276 +0.002286226983414963 +0.004171231994405389 +0.0022637119982391596 +0.002212451014202088 +0.004137882991926745 +0.0023262730101123452 +0.002305466012330726 +0.004079164005815983 +0.002123354992363602 +0.002410974004305899 +0.004235397005686536 +0.002204057003837079 +0.0024679559865035117 +0.0040556729945819825 +0.0021993080154061317 +0.0025020949833560735 +0.003995529987150803 +0.002203789015766233 +0.0041748330113478005 +0.0024089479993563145 +0.0020056699868291616 +0.004192971013253555 +0.002314399986062199 +0.0022645900025963783 +0.004098249017260969 +0.0021140009921509773 +0.0023775329755153507 +0.004052790027344599 +0.002252373000374064 +0.0031830149819143116 +0.00333014500210993 +0.0021905730245634913 +0.002302085020346567 +0.00417180301155895 +0.0022576010087504983 +0.004161852004472166 +0.0021719389769714326 +0.002381361002335325 +0.00408553599845618 +0.0022150310105644166 +0.002322671003639698 +0.004142841004068032 +0.0022245619911700487 +0.002367885987041518 +0.00406299700262025 +0.0022291930217761546 +0.0024642290081828833 +0.004075196979101747 +0.002180879993829876 +0.002375754003878683 +0.003994747996330261 +0.0023394219751935452 +0.0024197270104195923 +0.003960294998250902 +0.0023084180138539523 +0.004227869008900598 +0.0021393350034486502 +0.002427264000289142 +0.004148173000430688 +0.002153368986910209 +0.002365954016568139 +0.004071361006936058 +0.0022561039950232953 +0.0009940119925886393 +0.0055306750000454485 +0.0007204180001281202 +0.0037142410001251847 +0.00416038601542823 +0.002252770005725324 +0.004175040987320244 +0.002237017994048074 +0.0023604189918842167 +0.0040846350020729005 +0.0021547990036197007 +0.0024346369900740683 +0.0040759239927865565 +0.0022307450126390904 +0.002293736004503444 +0.004138399992370978 +0.002359556994633749 +0.0023431509907823056 +0.003938095003832132 +0.0024067409976851195 +0.004057156998896971 +0.002420534990960732 +0.0022301179997157305 +0.00411901599727571 +0.0023304279893636703 +0.002417215990135446 +0.003972859005443752 +0.0022949549893382937 +0.0023556280066259205 +0.0041921660013031214 +0.0022274380025919527 +0.0042090979986824095 +0.002246657997602597 +0.002225175005150959 +0.002303245011717081 +0.004117114993277937 +0.0023182290024124086 +0.004056831996422261 +0.0023830930003896356 +0.002366861008340493 +0.004108459019334987 +0.0021856910025235265 +0.0024141980102285743 +0.0040416590054519475 +0.0022109270212240517 +0.002389401983236894 +0.004092699004104361 +0.002195654989918694 +0.00244243600172922 +0.003993075981270522 +0.002338446007343009 +0.0022513929870910943 +0.004118993005249649 +0.0009595240117050707 +0.0023230609949678183 +0.005254585994407535 +0.0025206490245182067 +0.004027773975394666 +0.002213407977251336 +0.002379458979703486 +0.004059622995555401 +0.002341687009902671 +0.0022846999927423894 +0.004150524007854983 +0.0023769419931340963 +0.0023446620034519583 +0.004205942008411512 +0.0023541490081697702 +0.004029163013910875 +0.002385689993388951 +0.0023750469845253974 +0.004078022000612691 +0.002309378993231803 +0.0023468290164601058 +0.004121225007111207 +0.0022714750084560364 +0.002322669985005632 +0.0041957980138249695 +0.0023173040244728327 +0.0023443910176865757 +0.004134882008656859 +0.002330360992345959 +0.004133312992053106 +0.0022049469989724457 +0.0022987049887888134 +0.00406868098070845 +0.0022329290222842246 +0.0023952040064614266 +0.004098366014659405 +0.002250866004033014 +0.0024177180021069944 +0.0027644759975373745 +0.003744676010683179 +0.0007615709910169244 +0.005371803999878466 +0.0009104730270337313 +0.002421139011858031 +0.005429901008028537 +0.0022815160045865923 +0.0040483089978806674 +0.002264326991280541 +0.002370727015659213 +0.0042453029891476035 +0.0021703849779441953 +0.0024419839901383966 +0.00406788699910976 +0.0022403740149457008 +0.0023278480221051723 +0.004281529982108623 +0.002523581002606079 +0.0020890999876428396 +0.004196483991108835 +0.002371295995544642 +0.004074566008057445 +0.002230258978670463 +0.002316703990800306 +0.004146858002059162 +0.0022481330088339746 +0.0024082669988274574 +0.004004511021776125 +0.0023640230065211654 +0.002239430003101006 +0.004167645995039493 +0.002336674981052056 +0.002199968002969399 +0.00420165600371547 +0.0023023920075502247 +0.004070145980222151 +0.002256453997688368 +0.002309069997863844 +0.004127888998482376 +0.0022134800092317164 +0.002392445021541789 +0.004132172995014116 +0.00224535699817352 +0.002273677004268393 +0.004175501991994679 +0.0008758500043768436 +0.0024554459960199893 +0.005322798999259248 +0.0023546890006400645 +0.004091598006198183 +0.0021672549773938954 +0.00236576099996455 +0.004158242983976379 +0.002201105991844088 +0.0024150540120899677 +0.004096613003639504 +0.002170183986891061 +0.002419071999611333 +0.004151429980993271 +0.0022859509917907417 +0.002201930998126045 +0.004131425986997783 +0.0022424540075007826 +0.004117137985303998 +0.002371887007029727 +0.0025232589978259057 +0.004220683011226356 +0.0023294700076803565 +0.0024472629884257913 +0.004440112999873236 +0.002148344006855041 +0.0042638760060071945 +0.0021797090012114495 +0.002411076973658055 +0.004241541988449171 +0.002407772990409285 +0.004423306992975995 +0.002301959990290925 +0.0023894020123407245 +0.004176734015345573 +0.0022877469891682267 +0.0022747089969925582 +0.004346290021203458 +0.0021461299911607057 +0.0026287809887435287 +0.004100509017007425 +0.002058834012132138 +0.0024001139972824603 +0.0040557160100433975 +0.0023716329887975007 +0.002331943018361926 +0.0040842580201569945 +0.0021320109954103827 +0.0024260770005639642 +0.004030570999020711 +0.0021206819801591337 +0.00425010800245218 +0.002252276986837387 +0.0023760850017424673 +0.004188338993117213 +0.0020520009857136756 +0.0024756009806878865 +0.004192876018350944 +0.002123660990037024 +0.002402620011707768 +0.004122087004361674 +0.0021630889968946576 +0.0026315020222682506 +0.003962061979109421 +0.0023681519960518926 +0.0024077029956970364 +0.003989720979006961 +0.0022931109997443855 +0.00409416199545376 +0.0021546229836530983 +0.00256487398291938 +0.003991963021690026 +0.002172473003156483 +0.002406039013294503 +0.004132140020374209 +0.0021222599898464978 +0.0024267479893751442 +0.004105365980649367 +0.002193201013142243 +0.004207719000987709 +0.0023053349868860096 +0.002208171004895121 +0.004147875995840877 +0.0022145120019558817 +0.0024098569992929697 +0.004154030990321189 +0.0021040980063844472 +0.0025619660154916346 +0.004112537979381159 +0.002296143997227773 +0.0031900769972708076 +0.00339633398107253 +0.002270916971610859 +0.0024887780018616468 +0.0039087119803298265 +0.002299921994563192 +0.0022604500118177384 +0.004079745995113626 +0.0023412650043610483 +0.004091570997843519 +0.002163760014809668 +0.002376451011514291 +0.004008201009128243 +0.0022677959932480007 +0.0024363549891859293 +0.004209031991194934 +0.0022198240039870143 +0.002225331001682207 +0.004200015013338998 +0.002204110991442576 +0.004220363014610484 +0.0022293969814199954 +0.0023602829896844923 +0.004043552005896345 +0.002188895974541083 +0.002513120009098202 +0.004061305982759222 +0.002149765001377091 +0.0024531829985789955 +0.004111093992833048 +0.002237283013528213 +0.002421345008770004 +0.004005986993433908 +0.0021792070183437318 +0.002393977018073201 +0.004252131009707227 +0.0022587470011785626 +0.004183301003649831 +0.002200043003540486 +0.002291476004756987 +0.0041582419944461435 +0.002265951014123857 +0.002382405975367874 +0.004127986991079524 +0.0021644289954565465 +0.0025038830062840134 +0.004086155007826164 +0.0021255209867376834 +0.004052445001434535 +0.0023227180063258857 +0.002221439004642889 +0.004203810996841639 +0.0022077140165492892 +0.0022370679944287986 +0.004119173012441024 +0.00215270699118264 +0.0023144540027715266 +0.004173280001850799 +0.00213119899854064 +0.0025325409951619804 +0.004032860015286133 +0.0020906619902234524 +0.0024962740135379136 +0.004106567008420825 +0.002145261998521164 +0.00200242199935019 +0.004185546014923602 +0.002187745994888246 +0.004299322987208143 +0.002199729991843924 +0.002295760001288727 +0.004155618022195995 +0.0021115039999131113 +0.0023861869995016605 +0.0041143760026898235 +0.002266444993438199 +0.002424564998364076 +0.004035935999127105 +0.0021578550222329795 +0.0024720969959162176 +0.004072884010383859 +0.002181211981223896 +0.002396375988610089 +0.004091348004294559 +0.002312303986400366 +0.0040759610128588974 +0.002372801012825221 +0.0023016820196062326 +0.004152498004259542 +0.0020777370082214475 +0.0025086560053750873 +0.004051719995914027 +0.0021180429903324693 +0.0024380009854212403 +0.004138274001888931 +0.002210353995906189 +0.002455868001561612 +0.003906940022716299 +0.0023127129825297743 +0.004146706982282922 +0.0022628809965681285 +0.0024150309909600765 +0.004013397003291175 +0.0022681230038870126 +0.002367474022321403 +0.0040950539987534285 +0.0021333949989639223 +0.002486956014763564 +0.004093849012861028 +0.0021147550141904503 +0.002517420012736693 +0.004051411000546068 +0.002192716987337917 +0.004164644982665777 +0.0021812139893881977 +0.002288785995915532 +0.004281925008399412 +0.002257012005429715 +0.002219926012912765 +0.004149922984652221 +0.0022174269834067672 +0.00242558799800463 +0.004145843995502219 +0.002088624984025955 +0.0024482299922965467 +0.004058260994497687 +0.002184821991249919 +0.002532751008402556 +0.00401615200098604 +0.0021818539826199412 +0.0041477089980617166 +0.0022827629873063415 +0.0021524040203075856 +0.004221812007017434 +0.0021715449984185398 +0.0023477149952668697 +0.0041849970002658665 +0.0020738559833262116 +0.0023357030004262924 +0.00419388001319021 +0.0021016329992562532 +0.0026147739845328033 +0.004065524000907317 +0.0021735219925176352 +0.004310624994104728 +0.0022128240088932216 +0.0023574589868076146 +0.004068224021466449 +0.002372387010836974 +0.00224229198647663 +0.004102035978576168 +0.002131875022314489 +0.002478064998285845 +0.004137685988098383 +0.0021254120219964534 +0.0024564029881730676 +0.004098500998225063 +0.002140666008926928 +0.002502926014130935 +0.004025648988317698 +0.0021642670035362244 +0.00426470601814799 +0.0022111899743322283 +0.0022244559950195253 +0.0041993870108854026 +0.002304800000274554 +0.002291470009367913 +0.004108375025680289 +0.0021664439991582185 +0.002426477993139997 +0.004102849983610213 +0.0021845659939572215 +0.002447701001074165 +0.004007402982097119 +0.0021499739959836006 +0.002400274999672547 +0.004104260005988181 +0.0022185980051290244 +0.0042119309946428984 +0.0022252079797908664 +0.0022592589957639575 +0.004285254020942375 +0.0021824879804626107 +0.002500975999282673 +0.004041017993586138 +0.002161271986551583 +0.0024516390112694353 +0.004113653005333617 +0.0021322730171959847 +0.0025043900241144 +0.004063931992277503 +0.0021572529803961515 +0.002498969988664612 +0.004198725015157834 +0.0023936849902383983 +0.0040416650008410215 +0.002140919998055324 +0.0025444220227655023 +0.004236553009832278 +0.0021734900074079633 +0.0024249569978564978 +0.0042243450006935745 +0.002127336018020287 +0.00239932700060308 +0.004112980997888371 +0.002306081005372107 +0.004191988991806284 +0.002186818019254133 +0.002336556004593149 +0.004159005009569228 +0.002095205010846257 +0.0024829079920891672 +0.0041132929909508675 +0.0022144719841890037 +0.002526937983930111 +0.00405491900164634 +0.002360223006689921 +0.0023891909804660827 +0.00404597501619719 +0.0023118430108297616 +0.004121766018215567 +0.0021849570039194077 +0.002358646015636623 +0.004250557016348466 +0.0021400869882199913 +0.0024334359914064407 +0.004137377982260659 +0.00222499601659365 +0.002362175000598654 +0.004135403025429696 +0.0021275920153129846 +0.0025007759977597743 +0.004148765001446009 +0.0022443310008384287 +0.004255439998814836 +0.0020699140150099993 +0.0023861730005592108 +0.004255364008713514 +0.0020961809786967933 +0.002501415990991518 +0.004069564020028338 +0.0022138009953778237 +0.0024212219868786633 +0.004144117992836982 +0.00212941798963584 +0.002372935996390879 +0.00416724500246346 +0.0023836669861339033 +0.004178880015388131 +0.002092341019306332 +0.002563145011663437 +0.004037820006487891 +0.0021586619841400534 +0.002445975987939164 +0.004199900024104863 +0.0021418659889604896 +0.002526314987335354 +0.004086986999027431 +0.0021737150091212243 +0.0023999080003704876 +0.004194968001684174 +0.0022033810091670603 +0.0042538220004644245 +0.0021409149921964854 +0.0026812939904630184 +0.004094360978342593 +0.002197857014834881 +0.002408902015304193 +0.004124753992073238 +0.002174391003791243 +0.0023274339910130948 +0.004147799976635724 +0.0022366350167430937 +0.004204691998893395 +0.002216556982602924 +0.0022276270028669387 +0.004255944979377091 +0.002113444992573932 +0.0025330970238428563 +0.00407284198445268 +0.0021530000085476786 +0.002507110999431461 +0.004223622003337368 +0.00216719601303339 +0.0024363609845750034 +0.00395468799979426 +0.0023070540046319366 +0.002387565007666126 +0.004082339000888169 +0.0023590759956277907 +0.0040250690071843565 +0.002170978987123817 +0.0025184910045936704 +0.00407315298798494 +0.0021009680058341473 +0.0025316899991594255 +0.0040761159907560796 +0.0022229749883990735 +0.0023907279828563333 +0.00403980101691559 +0.002152809000108391 +0.0023030150041449815 +0.004135448980377987 +0.0022570489963982254 +0.002244511997560039 +0.004307519004214555 +0.002410998975392431 +0.004085703985765576 +0.00216431898297742 +0.0024234550073742867 +0.004143352998653427 +0.0021647519897669554 +0.002494983986252919 +0.004026612004963681 +0.002298842999152839 +0.004275001992937177 +0.0022516949975397438 +0.0023610640200786293 +0.004119956982322037 +0.0021707559935748577 +0.002523181989090517 +0.00419834497733973 +0.0021345950081013143 +0.0024793889897409827 +0.004052823001984507 +0.002218498004367575 +0.002473964006640017 +0.004083609994268045 +0.002437277988065034 +0.004221173003315926 +0.002247796976007521 +0.0022541350044775754 +0.004206507990602404 +0.0021299979998730123 +0.002427375002298504 +0.004177191993221641 +0.0021928470232523978 +0.002419286989606917 +0.004123355989577249 +0.0022103159863036126 +0.0024819890095386654 +0.004082822008058429 +0.002159193012630567 +0.002414357993984595 +0.004103039012989029 +0.0022984420065768063 +0.004077462013810873 +0.002161437994800508 +0.002495524997357279 +0.004099336016224697 +0.0022561319929081947 +0.002386970998486504 +0.004105211002752185 +0.0021564489870797843 +0.002521714981412515 +0.004032665980048478 +0.002238482004031539 +0.0041610790067352355 +0.0023105920117814094 +0.002260781009681523 +0.004233846993884072 +0.0022075760061852634 +0.0024186489754356444 +0.004134574992349371 +0.002120374992955476 +0.002488658996298909 +0.004227600991725922 +0.0021994260023348033 +0.002449435996823013 +0.00401366499136202 +0.00218382099410519 +0.004320566018577665 +0.002210415987065062 +0.0023958570091053843 +0.004080360988155007 +0.002151245978893712 +0.0024261639919131994 +0.004180560994427651 +0.0021530270169023424 +0.002477529982570559 +0.004107703018235043 +0.002152797009330243 +0.0024713120074011385 +0.004038515005959198 +0.002304492983967066 +0.0023647230118513107 +0.004033450008137152 +0.002282153000123799 +0.004181455995421857 +0.002078767982311547 +0.0025362799933645874 +0.004090659000212327 +0.0021258910128381103 +0.002583102002972737 +0.0040818290144670755 +0.0023038190265651792 +0.002450370986480266 +0.004027035989565775 +0.0022617429785896093 +0.004269344994099811 +0.0022230970207601786 +0.0022428550000768155 +0.0044125510030426085 +0.002280198998050764 +0.0024792190233711153 +0.0043128929974045604 +0.0021424370061140507 +0.0044243200100027025 +0.0022929850092623383 +0.0021837450040038675 +0.004182958015007898 +0.002194756001699716 +0.0023867810086812824 +0.004114799987291917 +0.0021020510175731033 +0.0025221050018444657 +0.0040710309986025095 +0.0021467409969773144 +0.002309530013008043 +0.004279438988305628 +0.002287392009748146 +0.002419592026853934 +0.0039887890161480755 +0.0023785090015735477 +0.004183211975032464 +0.0022545520041603595 +0.002527351985918358 +0.004207371996017173 +0.0021923049935139716 +0.0032215210085269064 +0.003328480990603566 +0.0022148780117277056 +0.0024292159941978753 +0.004236928012687713 +0.0007276470132637769 +0.003773309988901019 +0.004154169000685215 +0.002301926986547187 +0.004098367993719876 +0.002194328000769019 +0.0023633030068594962 +0.004214937012875453 +0.002211179002188146 +0.002473250002367422 +0.00409566899179481 +0.002185576013289392 +0.002423105004709214 +0.004128072992898524 +0.0006712130270898342 +0.003732209006557241 +0.004161482997005805 +0.0023874009784776717 +0.0041875749884638935 +0.0021788349840790033 +0.0025060199841391295 +0.004074500990100205 +0.002214537002146244 +0.0023417450138367712 +0.004121119010960683 +0.002229925012215972 +0.0024736819905228913 +0.004092393995961174 +0.002267097996082157 +0.004150630004005507 +0.00236475100973621 +0.002195903012761846 +0.004083473002538085 +0.002235428983112797 +0.002358244004426524 +0.004085512977326289 +0.002173463988583535 +0.0031681160035077482 +0.0034400020085740834 +0.0022695829975418746 +0.0024058900016825646 +0.003983117989264429 +0.0023031030141282827 +0.004207658988889307 +0.0021894919918850064 +0.0023715110146440566 +0.004176090005785227 +0.0021871089993510395 +0.0022797219862695783 +0.004165505990386009 +0.0021335710189305246 +0.002418296004179865 +0.004175516020040959 +0.0021743199904449284 +0.0023857199994381517 +0.004079300008015707 +0.002374897012487054 +0.00407155798166059 +0.002328006987227127 +0.0022902409837115556 +0.004098801000509411 +0.002215309999883175 +0.0023450730077456683 +0.004136989009566605 +0.002243866998469457 +0.0024108710058499128 +0.004043798981001601 +0.0022639539965894073 +0.0024051629879977554 +0.0040674810006748885 +0.0021937259880360216 +0.0024525810149498284 +0.004161013988777995 +0.00238969101337716 +0.002357807010412216 +0.003985285002272576 +0.0022994850005488843 +0.004142933990806341 +0.0022393369872588664 +0.0024814339994918555 +0.004001572990091518 +0.0022482560016214848 +0.0024189420219045132 +0.004033124016132206 +0.002277783991303295 +0.004280884983018041 +0.0024143659975379705 +0.002353604999370873 +0.003990291996160522 +0.002184410986956209 +0.002373519993852824 +0.00414579501375556 +0.002222787996288389 +0.002324439992662519 +0.0040813309897203 +0.002216090011643246 +0.0025312500074505806 +0.004050343006383628 +0.0022605470148846507 +0.004183937999187037 +0.0022348130005411804 +0.002332598000066355 +0.004126004001591355 +0.0022461710032075644 +0.0023536790104117244 +0.004116514988709241 +0.0023122559941839427 +0.0023154620139393955 +0.004158919007750228 +0.0021456260001286864 +0.002400480007054284 +0.0041031669825315475 +0.002251152996905148 +0.00235476199304685 +0.004103702987777069 +0.0023475470079574734 +0.0022703440045006573 +0.004135530994972214 +0.002350135997403413 +0.004001481982413679 +0.002195064997067675 +0.002434554015053436 +0.004184335004538298 +0.0021475130051840097 +0.0024781259999144822 +0.003930031991330907 +0.0023127259919419885 +0.0023490310122724622 +0.0042963409796357155 +0.002316744008567184 +0.004070422990480438 +0.0024195559963118285 +0.0023682210012339056 +0.004093741998076439 +0.0021971370151732117 +0.0025401549937669188 +0.004052517004311085 +0.0022274680086411536 +0.0024162770132534206 +0.0042913810175377876 +0.0021547069773077965 +0.0024557939905207604 +0.004261616995790973 +0.0022875219874549657 +0.004092918999958783 +0.0023262309841811657 +0.002328784001292661 +0.004171908978605643 +0.0021283410023897886 +0.0024102360184770077 +0.004189215978840366 +0.002229970006737858 +0.0024495290126651525 +0.003993532998720184 +0.0023390789865516126 +0.004113923991099 +0.002229316014563665 +0.0023542209819424897 +0.0042192960099782795 +0.0022977159824222326 +0.0008249280217569321 +0.0037875490088481456 +0.004039163002744317 +0.0024101729795802385 +0.004051258001709357 +0.0023238330031745136 +0.00252867498784326 +0.004124883998883888 +0.0023792259744368494 +0.004103416984435171 +0.0022168800060171634 +0.00232441199477762 +0.004154049005592242 +0.002139579999493435 +0.0025169150030706078 +0.004173875000560656 +0.002314398007001728 +0.0030962019809521735 +0.003433731006225571 +0.002282686997205019 +0.0022745869937352836 +0.0040480869938619435 +0.002268898009788245 +0.004241098999045789 +0.0022459790052380413 +0.0023322059714701027 +0.004056054982356727 +0.002227184973889962 +0.002421151992166415 +0.004081118997419253 +0.0022341810108628124 +0.0024554319970775396 +0.004085309017682448 +0.00220948999049142 +0.0024327609862666577 +0.004203224001685157 +0.0023170600179582834 +0.004193708009552211 +0.0021703280217479914 +0.0024064309836830944 +0.004079671984072775 +0.0022411569952964783 +0.0024993900151457638 +0.003932210005586967 +0.002287773007992655 +0.0022941019851714373 +0.004168493993347511 +0.002220594004029408 +0.0023771309934090823 +0.0041514449985697865 +0.002216844994109124 +0.004285800998331979 +0.002160729985916987 +0.002315593999810517 +0.004145137005252764 +0.002297941013239324 +0.0023334089783020318 +0.0040504329954274 +0.0021034739911556244 +0.0024538490106351674 +0.004120410012546927 +0.0024032430083025247 +0.0022035260044503957 +0.004179559997282922 +0.002120674995239824 +0.0024096260021906346 +0.004169468011241406 +0.002236330008599907 +0.004123894002987072 +0.0022290259948931634 +0.0024200780026149005 +0.003980780020356178 +0.0021613189892377704 +0.002451250999001786 +0.004158440016908571 +0.0021672370203305036 +0.00241005199495703 +0.004107988002942875 +0.002182402997277677 +0.002355177974095568 +0.00405610998859629 +0.002319301012903452 +0.0042079369886778295 +0.0021997260046191514 +0.002387302025454119 +0.004251756006851792 +0.002226148993941024 +0.0022994360188022256 +0.004129712004214525 +0.0022624510165769607 +0.002412981993984431 +0.004142491990933195 +0.0022350259823724627 +0.0024775490164756775 +0.004089644993655384 +0.0021698250202462077 +0.0024577169970143586 +0.004004729009466246 +0.00241432199254632 +0.003977190004661679 +0.0024146109935827553 +0.0023189990024548024 +0.004129426000872627 +0.0021607769886031747 +0.0024116970016621053 +0.004150478023802862 +0.0021162630000617355 +0.0024509719805791974 +0.004147319006733596 +0.0022920100018382072 +0.004134474991587922 +0.0022193990007508546 +0.0024275699979625642 +0.004196600028080866 +0.0022620310191996396 +0.0023138769902288914 +0.004132297006435692 +0.002203861018642783 +0.002345562999835238 +0.0041951950115617365 +0.0021388909954112023 +0.0031388189818244427 +0.003343626012792811 +0.002263855014462024 +0.002356149023398757 +0.004142009012866765 +0.0023060689854901284 +0.0040117000171449035 +0.0023904109839349985 +0.002277840016176924 +0.004104421997908503 +0.002319049002835527 +0.0023009809956420213 +0.004053651005961001 +0.0023011020093690604 +0.0023169499763753265 +0.004175909009063616 +0.002131048997398466 +0.002433652989566326 +0.004115376999834552 +0.0022551610018126667 +0.004131691006477922 +0.0023293300182558596 +0.0023863020178396255 +0.003847366984700784 +0.002425945014692843 +0.0021952819952275604 +0.004264159011654556 +0.0023596559767611325 +0.0030219370091799647 +0.0034041279868688434 +0.0022793049865867943 +0.004177589988103136 +0.0022351020015776157 +0.002339898986974731 +0.0041922120144590735 +0.002294020989211276 +0.002252912992844358 +0.004162920988164842 +0.0022249419998843223 +0.0023313109995797276 +0.004190939012914896 +0.0022346649784594774 +0.0023882320092525333 +0.004056031990330666 +0.002267790987389162 +0.0024523909960407764 +0.0040473029948771 +0.0022635950008407235 +0.002509673999156803 +0.004111012996872887 +0.0021721939847338945 +0.004181209020316601 +0.0021492369996849447 +0.002397628006292507 +0.004220378992613405 +0.0023076900106389076 +0.002329196984646842 +0.004164691985351965 +0.0022310339845716953 +0.0023964600113686174 +0.00408696397789754 +0.002331794996280223 +0.004074641998158768 +0.0022565779800061136 +0.002356821991270408 +0.004159780975896865 +0.002159197989385575 +0.0023941709951031953 +0.0041303619800601155 +0.0021074970136396587 +0.0024059029819909483 +0.004244904994266108 +0.002202606003265828 +0.0023926409776322544 +0.004076355020515621 +0.0010015199950430542 +0.003692331985803321 +0.004174189001787454 +0.0023288389784283936 +0.004340742016211152 +0.002106130006723106 +0.002437007991829887 +0.004219055001158267 +0.002233830018667504 +0.00230969101539813 +0.004185808007605374 +0.002324319997569546 +0.0023343099746853113 +0.004165569000178948 +0.002306668000528589 +0.0041910120053216815 +0.002222409995738417 +0.002379576995735988 +0.004133345995796844 +0.0022454790014307946 +0.0023075689969118685 +0.004099630983546376 +0.00224603500100784 +0.002452660002745688 +0.004105055995751172 +0.0022722819994669408 +0.002445666992571205 +0.003994931990746409 +0.0022989010030869395 +0.004110108013264835 +0.0022506240056827664 +0.002344014006666839 +0.004059704020619392 +0.0023401319922413677 +0.002426457009278238 +0.004169136984273791 +0.0023200449941214174 +0.002291590004460886 +0.004143728991039097 +0.0021690050198230892 +0.0024584670027252287 +0.004050126008223742 +0.0023705489875283092 +0.00407680802163668 +0.0022065300145186484 +0.0023017449711915106 +0.0042588259966578335 +0.002202373987529427 +0.002374461997533217 +0.004164453013800085 +0.0022318040137179196 +0.002424740989226848 +0.0041623900178819895 +0.002262558991787955 +0.004150755004957318 +0.0023717120056971908 +0.002229264995548874 +0.004198896000161767 +0.002236178028397262 +0.0023011270095594227 +0.004225317999953404 +0.0022460500185843557 +0.002358828001888469 +0.004092082002898678 +0.002258854015963152 +0.004314429999794811 +0.002275061997352168 +0.002190958010032773 +0.0042885309958364815 +0.00218138299533166 +0.0022895080037415028 +0.002480233000824228 +0.004118481010664254 +0.0024126420030370355 +0.004160152981057763 +0.002234359009889886 +0.0023604999878443778 +0.00417266198201105 +0.0020911160099785775 +0.0025293359940405935 +0.003958843008149415 +0.0022110599966254085 +0.0024057890113908798 +0.0040234260086435825 +0.0022347109916154295 +0.004319834988564253 +0.0021303950052242726 +0.002380948018981144 +0.004137409006943926 +0.002126868988852948 +0.0023773520078975707 +0.004109498986508697 +0.002260915993247181 +0.002461731986841187 +0.004074155993293971 +0.002140243974281475 +0.0024861510028131306 +0.003963391995057464 +0.0022246309963520616 +0.004260452988091856 +0.002223877003416419 +0.0023171260254457593 +0.004213123000226915 +0.0020978459797333926 +0.0026281109894625843 +0.004079265985637903 +0.0021510770020540804 +0.00310303398873657 +0.003427832998568192 +0.0022805709741078317 +0.004259159002685919 +0.0023091970069799572 +0.0022276219970081 +0.002354497992200777 +0.004104210005607456 +0.0022920379997231066 +0.004145307000726461 +0.0023832500155549496 +0.0023186400067061186 +0.004107234010007232 +0.002312808996066451 +0.002310505020432174 +0.00421587799792178 +0.002212811989011243 +0.002401896985247731 +0.004149326006881893 +0.0008475199865642935 +0.00359960098285228 +0.004175253998255357 +0.0023370679991785437 +0.004147467989241704 +0.0022456920123659074 +0.0023633870005141944 +0.004120616998989135 +0.0023135360097512603 +0.002381430007517338 +0.004081110004335642 +0.002289969997946173 +0.002342835010495037 +0.004064915992785245 +0.0022666759905405343 +0.002371275011682883 +0.0041593640053179115 +0.0022647430014330894 +0.004019624000648037 +0.002392958995187655 +0.002277068007970229 +0.004161993012530729 +0.002291576995048672 +0.0023617440019734204 +0.003982748981798068 +0.0022857759904582053 +0.004212091997032985 +0.002306565991602838 +0.002341601997613907 +0.0041503949905745685 +0.002257349988212809 +0.0023436470073647797 +0.004145995015278459 +0.002283498994074762 +0.002276290993904695 +0.004197877977276221 +0.0022393210092559457 +0.0024735000042710453 +0.003952886996557936 +0.0022927899844944477 +0.004245613992679864 +0.0022087160032242537 +0.000900759972864762 +0.002432862005662173 +0.005263236002065241 +0.002272898011142388 +0.004038785002194345 +0.0022832950053270906 +0.002486465993570164 +0.004056609992403537 +0.002294834004715085 +0.002278458996443078 +0.004215414985083044 +0.0022064819931983948 +0.004327214002842084 +0.002270167984534055 +0.0022317350085359067 +0.004121596022741869 +0.0022393830004148185 +0.002343421016121283 +0.004103170009329915 +0.0023352709831669927 +0.0009326849831268191 +0.005540379002923146 +0.002201318013248965 +0.0024568810185883194 +0.004069863993208855 +0.0023275359999388456 +0.004110062989639118 +0.002234630985185504 +0.0023900839732959867 +0.00417103900690563 +0.0023580199922434986 +0.0008596320112701505 +0.0037953919963911176 +0.004177460010396317 +0.0024189900141209364 +0.004064104985445738 +0.002315694000571966 +0.0024456349783577025 +0.003963658993598074 +0.002423194993752986 +0.004128025000682101 +0.002153465000446886 +0.002416055998764932 +0.004224002012051642 +0.0022687329910695553 +0.0022040699841454625 +0.004217431996949017 +0.0022108620032668114 +0.0024165320210158825 +0.0041132220067083836 +0.002238564018625766 +0.0025376769772265106 +0.004118270007893443 +0.002377030992647633 +0.004237512999679893 +0.002254881983390078 +0.0023029129952192307 +0.004185261990642175 +0.002147490013157949 +0.002430129999993369 +0.004215700027998537 +0.00231657997937873 +0.0027059070125687867 +0.004277668020222336 +0.0021767680009361356 +0.004368915018858388 +0.002317147998837754 +0.002472873020451516 +0.004004602989880368 +0.00220624401117675 +0.0024110279919113964 +0.004084596992470324 +0.002241088019218296 +0.0024355440109502524 +0.004076165001606569 +0.002285195019794628 +0.004182890988886356 +0.002312119002453983 +0.0022862569894641638 +0.004332001990405843 +0.0023303419875446707 +0.0023003880050964653 +0.004005649010650814 +0.002349342015804723 +0.0024397409870289266 +0.004000809014542028 +0.0022651199833489954 +0.0024658209877088666 +0.004019073996460065 +0.00251626901444979 +0.0042210349929519 +0.0022862240148242563 +0.0023231590166687965 +0.0041095580090768635 +0.002226065000286326 +0.0023670749797020108 +0.004148386011365801 +0.002324586996110156 +0.0023147680039983243 +0.004062418011017144 +0.0022218149970285594 +0.004242892988258973 +0.0022150949807837605 +0.002465611993102357 +0.004171755019342527 +0.002270260010845959 +0.0023047900176607072 +0.004098395991604775 +0.002242480986751616 +0.0024451540084555745 +0.004053150012623519 +0.002158271992811933 +0.0025864699855446815 +0.003985805989941582 +0.0022123380040284246 +0.004151147993979976 +0.002343736996408552 +0.002236650005215779 +0.004186565027339384 +0.0023646130284760147 +0.002221100003225729 +0.004107265005586669 +0.0022794549877289683 +0.002391917019849643 +0.004100724996533245 +0.0021904740133322775 +0.0032138180104084313 +0.0033066280011553317 +0.002443881006911397 +0.0022899940086062998 +0.004037282022181898 +0.0024880639975890517 +0.004034350014990196 +0.0022706979943905026 +0.0022964059899095446 +0.00417828798526898 +0.0021502119780052453 +0.0023741980257909745 +0.004221512004733086 +0.0022603739926125854 +0.002432152978144586 +0.004024657013360411 +0.002242413000203669 +0.0024192489800043404 +0.004146789986407384 +0.00233036998542957 +0.004095014010090381 +0.002177551999920979 +0.002540679997764528 +0.004279485990991816 +0.0022018220042809844 +0.00317292200634256 +0.0033365959825459868 +0.002303815010236576 +0.0024156139988917857 +0.004200150026008487 +0.001090171019313857 +0.0035450319992378354 +0.004093088995432481 +0.002409084001556039 +0.004168023006059229 +0.0022207570145837963 +0.0023600560089107603 +0.004209599021123722 +0.002276220009662211 +0.002315018995432183 +0.004170391010120511 +0.0022624470002483577 +0.0024172810080926865 +0.003971380996517837 +0.0023844410025049 +0.004056659003254026 +0.0021994230046402663 +0.0025520869821775705 +0.00411907400120981 +0.0021897770056966692 +0.0023999139957595617 +0.004145123006310314 +0.002199600014137104 +0.0023936379875522107 +0.00413633300922811 +0.002224867988843471 +0.0023896000056993216 +0.0040379219863098115 +0.002268818992888555 +0.0022478390019387007 +0.004148729000007734 +0.0023951740004122257 +0.0041042889934033155 +0.002183699019951746 +0.0024108980142045766 +0.004165657999692485 +0.002180455019697547 +0.0024593349953647703 +0.004093320021638647 +0.002298151986906305 +0.0022650470200460404 +0.004035018995637074 +0.002377438999246806 +0.004172821005340666 +0.002176035981392488 +0.002366197993978858 +0.004158252006163821 +0.0021614180004689842 +0.0024026250175666064 +0.004182927979854867 +0.0021885400055907667 +0.002456380025250837 +0.004059642000356689 +0.002240241999970749 +0.0023791450075805187 +0.004103118990315124 +0.002240900998003781 +0.00427636198583059 +0.002227883000159636 +0.002266430004965514 +0.004177462978987023 +0.0021272259764373302 +0.0025481129996478558 +0.004035833990201354 +0.002214823995018378 +0.002376880991505459 +0.0042445889848750085 +0.002146929007722065 +0.0024194580037146807 +0.00411742998403497 +0.0023228369827847928 +0.004112909984542057 +0.002296052989549935 +0.0022501729836221784 +0.004232047009281814 +0.002088979003019631 +0.002448732004268095 +0.004114808019949123 +0.0021376829827204347 +0.002436236012727022 +0.004140653996728361 +0.0021835800143890083 +0.0024497680133208632 +0.004089215974090621 +0.0022304979793261737 +0.004213370004436001 +0.002328823000425473 +0.002316825994057581 +0.004143398982705548 +0.002175903005991131 +0.002413804002571851 +0.0040402470040135086 +0.0022268320026341826 +0.0023900610103737563 +0.004151164990616962 +0.002288377989316359 +0.002355807984713465 +0.00410260702483356 +0.0022030610125511885 +0.002433184999972582 +0.004053860990097746 +0.0021545049967244267 +0.004282958980184048 +0.0022806490014772862 +0.0021955730044282973 +0.004247356002451852 +0.002112938993377611 +0.002464179997332394 +0.004084482992766425 +0.002115855982992798 +0.0023487779835704714 +0.004288703989004716 +0.0021175120200496167 +0.0023801410279702395 +0.004057711979839951 +0.0022328949999064207 +0.0042610719974618405 +0.0022409480006899685 +0.002187431004131213 +0.004185812984360382 +0.0023655550030525774 +0.0024076830013655126 +0.004043279011966661 +0.0022217989899218082 +0.0025901549961417913 +0.004027565999422222 +0.0021546370116993785 +0.0024420740082859993 +0.004168959014350548 +0.002261232992168516 +0.002342494990443811 +0.004318884981330484 +0.0022042150085326284 +0.004145052982494235 +0.002234601997770369 +0.002272607001941651 +0.004374755983008072 +0.0008789080020505935 +0.0036265479866415262 +0.004124992003198713 +0.0021190190163906664 +0.0025049799878615886 +0.00404785800492391 +0.0021665779931936413 +0.002309017989318818 +0.004153550980845466 +0.0011047270090784878 +0.003623174998210743 +0.004064845998072997 +0.0024771539901848882 +0.004122963000554591 +0.002187822974519804 +0.0031106509850360453 +0.0034464730124454945 +0.0022242319828365 +0.002294697012985125 +0.004113758011953905 +0.002334543998586014 +0.004153856978518888 +0.0022961779905017465 +0.002299005020176992 +0.004174745990894735 +0.002234267012681812 +0.002381661004619673 +0.00410272300359793 +0.002242704009404406 +0.002531288017053157 +0.004137901996728033 +0.002315332996658981 +0.004189616010989994 +0.002289407013449818 +0.0023753829882480204 +0.0040824239840731025 +0.0022591750021092594 +0.002332647010916844 +0.004091628012247384 +0.002196343004470691 +0.0024513329844921827 +0.004049723997013643 +0.0023133920039981604 +0.002283242007251829 +0.004157507995842025 +0.0021192509739194065 +0.002501450013369322 +0.004044560017064214 +0.0024112719984259456 +0.004007861018180847 +0.002206703007686883 +0.002442304015858099 +0.004209549981169403 +0.002217753994045779 +0.002413535985397175 +0.004106297012185678 +0.002286798000568524 +0.0024028709740377963 +0.004051677999086678 +0.0023170159838628024 +0.004195969988359138 +0.0023244860058184713 +0.002216289984062314 +0.004194322973489761 +0.0022251239861361682 +0.0023784959921613336 +0.004046092013595626 +0.0021962820028420538 +0.0023957750236149877 +0.004113399016205221 +0.0021408990141935647 +0.0024426259915344417 +0.004029060975881293 +0.0023833499872125685 +0.0022993250167928636 +0.0039735120080877095 +0.002347741974517703 +0.0043066570069640875 +0.0022786600166000426 +0.0022871939872857183 +0.004070127004524693 +0.0022201400133781135 +0.002379285986535251 +0.004150778986513615 +0.0023719259770587087 +0.0007773810066282749 +0.005736413993872702 +0.002220334019511938 +0.00232779499492608 +0.004191980988252908 +0.002301839995197952 +0.004119021992664784 +0.00238014999195002 +0.002336326986551285 +0.0040876989951357245 +0.002202118979766965 +0.002458484988892451 +0.004169227002421394 +0.0021451900247484446 +0.002323491993593052 +0.004200641007628292 +0.0022806909983046353 +0.0041933630127459764 +0.0022895369911566377 +0.002290125994477421 +0.004422408004757017 +0.002367865003179759 +0.002416973002254963 +0.004251267993822694 +0.0025487109960522503 +0.0026645149919204414 +0.004467806982574984 +0.002885086985770613 +0.004374908981844783 +0.002483638992998749 +0.0040892710094340146 +0.00243730001966469 +0.002307174989255145 +0.004209781007375568 +0.002240735979285091 +0.0024998370208777487 +0.004213601001538336 +0.0022008469968568534 +0.0024449439952149987 +0.004176038986770436 +0.0022151620069053024 +0.004170290980255231 +0.002303338987985626 +0.00249895901652053 +0.004187935002846643 +0.002326679998077452 +0.0023844839888624847 +0.004109636996872723 +0.002282419998664409 +0.002413217007415369 +0.00414938002359122 +0.00229098298586905 +0.0023609740019310266 +0.004056917008711025 +0.0023800950148142874 +0.00421455898322165 +0.002279151987750083 +0.0023184280144050717 +0.004369140980998054 +0.0022427009826060385 +0.0024367620062548667 +0.004123780992813408 +0.002342245017644018 +0.0023209319915622473 +0.004199859977234155 +0.002305929025169462 +0.004235302010783926 +0.002338017977308482 +0.002206736011430621 +0.004146115999901667 +0.002168863982660696 +0.002562676992965862 +0.004347212990978733 +0.0022455949801951647 +0.002492731000529602 +0.004023744986625388 +0.0022958749905228615 +0.004110615001991391 +0.0023262279864866287 +0.0024189139949157834 +0.004060838022269309 +0.0021278229833114892 +0.002415589988231659 +0.0042098810081370175 +0.0021690319990739226 +0.0024070969957392663 +0.004152507986873388 +0.002345304994378239 +0.004077300982316956 +0.0022834549890831113 +0.002396577998297289 +0.004195045999949798 +0.0021858810214325786 +0.0023518939851783216 +0.004418316995725036 +0.0021424659935291857 +0.0024539360019844025 +0.0042749370040837675 +0.0022010850079823285 +0.0024843149876687676 +0.0041348490049131215 +0.0021468089835252613 +0.0024475380196236074 +0.0040892290126066655 +0.0022368169738911092 +0.004163930017966777 +0.00228223399608396 +0.0023494040069635957 +0.004100957012269646 +0.002318340993952006 +0.002290476026246324 +0.004422890022397041 +0.0006402540020644665 +0.0038048400019761175 +0.004165927006397396 +0.002207643003202975 +0.0042550539947114885 +0.0022198630031198263 +0.0023484709963668138 +0.004205555014777929 +0.0021674179879482836 +0.0023968959867488593 +0.00413803500123322 +0.002217140019638464 +0.002343981002923101 +0.004240599984768778 +0.0021943589963484555 +0.0024171200057026 +0.004131007997784764 +0.002306438982486725 +0.0042403739935252815 +0.0023955199867486954 +0.002337228012038395 +0.0042072520009242 +0.0022175379854161292 +0.002341097977478057 +0.004178976989351213 +0.0022874870046507567 +0.00225629800115712 +0.004177195020020008 +0.0021788599842693657 +0.002564872003858909 +0.0038724869955331087 +0.0023366259993053973 +0.0023455420159734786 +0.00414998599444516 +0.0022716830135323107 +0.004236648994265124 +0.002147082006558776 +0.00240897701587528 +0.004136122006457299 +0.0022339069982990623 +0.00235267000971362 +0.004251279024174437 +0.002322246989933774 +0.002415255003143102 +0.004006853996543214 +0.002407070016488433 +0.004150029009906575 +0.0021127479849383235 +0.0024825379950925708 +0.00414691399782896 +0.002256651991046965 +0.002346376975765452 +0.004108697990886867 +0.002250536985229701 +0.0024850379850249738 +0.0041161289846058935 +0.0022926550009287894 +0.0022988509736023843 +0.0042810240120161325 +0.002078398014418781 +0.004272496997145936 +0.00212317198747769 +0.002493727981345728 +0.004090263013495132 +0.002177853981265798 +0.002492422005161643 +0.0041182260029017925 +0.002204996009822935 +0.0024543029721826315 +0.004125036008190364 +0.002150483982404694 +0.001079567999113351 +0.005371633014874533 +0.002284376008901745 +0.0024155039864126593 +0.00411447900114581 +0.0007602199912071228 +0.003688406985020265 +0.003959739988204092 +0.0024086319899652153 +0.004229724989272654 +0.0021825389994774014 +0.002346052002394572 +0.004094231000635773 +0.0022822980245109648 +0.0043950279941782355 +0.0022899319883435965 +0.0022358600108418614 +0.004229031997965649 +0.0021352259791456163 +0.0023744119971524924 +0.004334759985795245 +0.002260412002215162 +0.002495529013685882 +0.004169052001088858 +0.002180989016778767 +0.002383940009167418 +0.004156298004090786 +0.002205280994530767 +0.0023920520034153014 +0.0039229879912454635 +0.002394750015810132 +0.004151684988755733 +0.002260195993585512 +0.0022505639935843647 +0.004272252990631387 +0.002128772990545258 +0.002485837001586333 +0.004057753016240895 +0.002234082028735429 +0.0024747559800744057 +0.0039689510012976825 +0.002237622014945373 +0.0042028620082419366 +0.00225627698819153 +0.0023907640133984387 +0.004150366992689669 +0.0021530709927901626 +0.0024120319867506623 +0.004191307001747191 +0.002143718011211604 +0.0024440489942207932 +0.004170110973063856 +0.002124835009453818 +0.0023810839920770377 +0.0041730029915925115 +0.002244038973003626 +0.00416776500060223 +0.002207971003372222 +0.00245419901330024 +0.00412025602417998 +0.0021458589762914926 +0.002436554990708828 +0.004158958996413276 +0.0021733879984822124 +0.0026268990186508745 +0.00418699299916625 +0.002167422993807122 +0.0024111389939207584 +0.004054207995068282 +0.002236819011159241 +0.0040763019933365285 +0.0022117999906186014 +0.0024741640081629157 +0.004164134996244684 +0.0021019970008637756 +0.0023916090140119195 +0.004168881016084924 +0.002243745984742418 +0.0025696789962239563 +0.004140724980970845 +0.0022024520148988813 +0.0022338810085784644 +0.004141996003454551 +0.0023396509932354093 +0.004093681985978037 +0.002214859996456653 +0.0025320480053778738 +0.004133602982619777 +0.0020905749988742173 +0.002455453999573365 +0.00407862602150999 +0.002193374006310478 +0.0024305029946845025 +0.0042328580166213214 +0.0023518340021837503 +0.004309789015678689 +0.0022055440058466047 +0.002468571998178959 +0.004250338999554515 +0.0024317200004588813 +0.002230365003924817 +0.004274037986760959 +0.002227007003966719 +0.004378926008939743 +0.0022823589970357716 +0.0023150670167524368 +0.004160829994361848 +0.0022804790060035884 +0.002419742988422513 +0.004071722010849044 +0.0023127469758037478 +0.0023638809798285365 +0.004115990974241868 +0.0022940860071685165 +0.002371153997955844 +0.004075753997312859 +0.0023979000106919557 +0.00405308700283058 +0.002274598984513432 +0.00236982898786664 +0.004104095016373321 +0.0022694180079270154 +0.0024258360208477825 +0.004016828024759889 +0.002317614998901263 +0.002486162993591279 +0.004078564001247287 +0.0022077879984863102 +0.0012096120044589043 +0.005251371010672301 +0.0024335049965884537 +0.0039918170077726245 +0.002366002998314798 +0.0023942920088302344 +0.004047765978612006 +0.002245781011879444 +0.002377017983235419 +0.004203070013318211 +0.002243963012006134 +0.0010456419840920717 +0.00555923898355104 +0.0022325039899442345 +0.0040716670046094805 +0.002366317989071831 +0.0022918590111657977 +0.004184986988548189 +0.002211496001109481 +0.0024602570047136396 +0.004122060985537246 +0.002093401999445632 +0.0024522060120943934 +0.004184566991170868 +0.0022060329793021083 +0.0024320899974554777 +0.004115877993172035 +0.0022260610130615532 +0.004134146001888439 +0.002261889021610841 +0.0024031639914028347 +0.0041766219947021455 +0.00217553399852477 +0.002447845006827265 +0.004089612019015476 +0.0021977389988023788 +0.0023971140035428107 +0.00408393400721252 +0.0023049130104482174 +0.00238615000853315 +0.004151303990511224 +0.002384322986472398 +0.004135522001888603 +0.002279549022205174 +0.0023333639837801456 +0.004075581004144624 +0.0022774619865231216 +0.002326297020772472 +0.004092534014489502 +0.002178330993046984 +0.002486079989466816 +0.004075610020663589 +0.0023700299789197743 +0.002378604986006394 +0.004095210984814912 +0.002249793993541971 +0.004198540991637856 +0.0023133170034270734 +0.0024320619995705783 +0.004030986980069429 +0.0022563979728147388 +0.0025306140014436096 +0.004017875005956739 +0.0022688570024911314 +0.0025149270077235997 +0.004116063995752484 +0.0022947460238356143 +0.0023589319898746908 +0.003997913998318836 +0.0023252989922184497 +0.004168451006989926 +0.002174469002056867 +0.002374178991885856 +0.004129229986574501 +0.0022298319963738322 +0.0023398609773721546 +0.004164515994489193 +0.0022593550093006343 +0.002488051017280668 +0.004027465998660773 +0.0023044169938657433 +0.0024371049948967993 +0.004112260008696467 +0.0025535160093568265 +0.004066645982675254 +0.0022762199805583805 +0.002279139996971935 +0.004084710992174223 +0.0022670670005027205 +0.002280032989801839 +0.00418124400312081 +0.002317349018994719 +0.002374648000113666 +0.004086619999725372 +0.002242753020254895 +0.0023121029953472316 +0.004180346004432067 +0.0022231720213312656 +0.004243981995387003 +0.002169538027374074 +0.0023649420181754977 +0.00422295302269049 +0.0022648730082437396 +0.0022960880014579743 +0.00416988501092419 +0.002258458989672363 +0.0023273940023500472 +0.0041220810089726 +0.0022641620016656816 +0.0023552339989691973 +0.004032566008390859 +0.002376707998337224 +0.004097408993402496 +0.0023626699985470623 +0.0023310729884542525 +0.004142418008996174 +0.002202049014158547 +0.0023951790062710643 +0.004101389000425115 +0.002354210999328643 +0.0025172810128424317 +0.004347342997789383 +0.002280856017023325 +0.004206673998851329 +0.002182701980927959 +0.002528390003135428 +0.004041992011480033 +0.0021741599775850773 +0.0024821969855111092 +0.004098717006854713 +0.0021906789916101843 +0.0024311979941558093 +0.004076515004271641 +0.0022887189988978207 +0.002340836013900116 +0.004094481002539396 +0.0024353220069315284 +0.004068148002261296 +0.002198460977524519 +0.0025035020080395043 +0.004152017005253583 +0.0022094559972174466 +0.002406268991762772 +0.004131805006181821 +0.0022731450153514743 +0.002360097016207874 +0.004131894005695358 +0.002334060991415754 +0.0023530760081484914 +0.004001674009487033 +0.002475868008332327 +0.0020923299889545888 +0.004203591000987217 +0.0009734760096762329 +0.003810438996879384 +0.004045222012791783 +0.002349148999201134 +0.0040536939923185855 +0.002342997002415359 +0.0022919319744687527 +0.004087626992259175 +0.002214640990132466 +0.0024492929806001484 +0.004073526011779904 +0.0024356910143978894 +0.0020025100093334913 +0.004256427026120946 +0.002442934986902401 +0.003935335989808664 +0.0021451849897857755 +0.002523453993489966 +0.004075712990015745 +0.0022176649945322424 +0.0023356650199275464 +0.004154659021878615 +0.0023419329954776913 +0.00418402801733464 +0.002269540971610695 +0.002340370003366843 +0.004111850983463228 +0.002298688981682062 +0.002406952000455931 +0.004059197002789006 +0.002177418995415792 +0.002535053004976362 +0.00401344001875259 +0.0022510470007546246 +0.002360701997531578 +0.004123980994336307 +0.002281903987750411 +0.0022189629962667823 +0.00438835599925369 +0.002446942002279684 +0.002134637994458899 +0.004187925980659202 +0.0023691669921390712 +0.004107725981157273 +0.002220750000560656 +0.002463456999976188 +0.004066252993652597 +0.002266962983412668 +0.002452621003612876 +0.00394871601019986 +0.0023068920127116144 +0.0023266859934665263 +0.00412567998864688 +0.002290367992827669 +0.0041295450064353645 +0.0022776660043746233 +0.0024616589944344014 +0.003973162994952872 +0.0021793550113216043 +0.0024580699973739684 +0.004127758002141491 +0.002343549014767632 +0.0024552950053475797 +0.00413377201766707 +0.002224822004791349 +0.002456535992678255 +0.0040665059932507575 +0.0024266469990834594 +0.0041367570229340345 +0.0021626419911626726 +0.0024630120024085045 +0.004046052985358983 +0.002409959997748956 +0.0024650859995745122 +0.0040603780071251094 +0.00213026802521199 +0.002359261008678004 +0.00408656700165011 +0.0023776140005793422 +0.0009666469995863736 +0.005287102976581082 +0.0023339489998761564 +0.0022248989844229072 +0.004182058008154854 +0.0026046099956147373 +0.004006560979178175 +0.0022097720066085458 +0.002406487998086959 +0.004065977002028376 +0.0022430979879572988 +0.0024296620103996247 +0.004066571011207998 +0.002446414000587538 +0.002331160008907318 +0.0028451289981603622 +0.0037395920080598444 +0.004089408001163974 +0.002227551012765616 +0.002512492996174842 +0.004061796993482858 +0.002182251017075032 +0.0024557219876442105 +0.004074253985891119 +0.0022821509919594973 +0.002231853984994814 +0.004167384991887957 +0.0024499430146533996 +0.0022107149998191744 +0.004085402993950993 +0.002321049978490919 +0.004085722990566865 +0.002306331996805966 +0.0023827709956094623 +0.003978419001214206 +0.0023359339975286275 +0.0023104450083337724 +0.004145379993133247 +0.0021939389989711344 +0.002443572971969843 +0.004048861999763176 +0.0022937489848118275 +0.0042924159788526595 +0.0022668490128125995 +0.002500392001820728 +0.004363885003840551 +0.002212863997556269 +0.002382516977377236 +0.004324407986132428 +0.0022256489901337773 +0.0023486680001951754 +0.004319475992815569 +0.002356509998207912 +0.004096426971955225 +0.0022549349814653397 +0.0022989310091361403 +0.004242833994794637 +0.0022775339893996716 +0.0024047259939834476 +0.004263098002411425 +0.002180937008233741 +0.002470473002176732 +0.0040485369972884655 +0.00235233100829646 +0.002347981004277244 +0.004062057996634394 +0.0009735289786476642 +0.0035730550007428974 +0.004148617008468136 +0.002362177998293191 +0.004050137009471655 +0.0021962830214761198 +0.002415585011476651 +0.004058274003909901 +0.002294837002409622 +0.002353267016587779 +0.004092374001629651 +0.002343480009585619 +0.002276256011100486 +0.004101851984160021 +0.002417690004222095 +0.003929405007511377 +0.0022895569854881614 +0.002501959999790415 +0.0040720739925745875 +0.0021240189962554723 +0.002401571982773021 +0.004256018000887707 +0.0021655180025845766 +0.002528885001083836 +0.004037914011860266 +0.0023497770016547292 +0.0023231969971675426 +0.004082014987943694 +0.002130009001120925 +0.004258575005223975 +0.0023137670068535954 +0.002270892000524327 +0.004162522993283346 +0.002109772991389036 +0.002464012010022998 +0.004200538998702541 +0.0021493450039997697 +0.002378778997808695 +0.004201383999316022 +0.0021580659958999604 +0.002415969007415697 +0.004107569984626025 +0.0024506710178684443 +0.002083738974761218 +0.004247434000717476 +0.00235700499615632 +0.004117495001992211 +0.0023690219968557358 +0.00223550500231795 +0.0041575740033295006 +0.002207982004620135 +0.002554334991145879 +0.004006480012321845 +0.002361630991799757 +0.0023398010234814137 +0.00406167798792012 +0.0024775279744062573 +0.0021191109844949096 +0.004199581017019227 +0.002253009006381035 +0.0040407259948551655 +0.002259225002489984 +0.0024579310265835375 +0.0041045480174943805 +0.002222907991381362 +0.002456279005855322 +0.004106345993932337 +0.0024716169864404947 +0.0022335629910230637 +0.004055845987750217 +0.0024308029969688505 +0.003977807005867362 +0.0022345980105455965 +0.0024410299956798553 +0.004101587022887543 +0.0023345680092461407 +0.002264632988953963 +0.004226223012665287 +0.0022370129881892353 +0.0023953439958859235 +0.004078700992977247 +0.0023692510148976 +0.002200008020736277 +0.004132372007006779 +0.002231652004411444 +0.002363659004913643 +0.004208978003589436 +0.0007629640167579055 +0.003949582984205335 +0.004036811005789787 +0.0022631750034634024 +0.004053048003697768 +0.002294537000125274 +0.004149613989284262 +0.002304699009982869 +0.0023298150044865906 +0.004192143998807296 +0.0023190810170490295 +0.002352587995119393 +0.004045245994348079 +0.0023043669934850186 +0.002371563983615488 +0.004240853013470769 +0.00223801500396803 +0.0024881870194803923 +0.0042008369928225875 +0.002356862009037286 +0.0040508130041416734 +0.0022789029753766954 +0.0028104579832870513 +0.003900846990291029 +0.0021800179965794086 +0.0024439629924017936 +0.004128777014557272 +0.0021772379986941814 +0.0024082509917207062 +0.004142557998420671 +0.002272665995405987 +0.0023883219982963055 +0.00407696099136956 +0.0022590489825233817 +0.004235945001710206 +0.0023039060179144144 +0.0023890819866210222 +0.004054382996400818 +0.002261977002490312 +0.0022648239973932505 +0.00414415099658072 +0.00224366900511086 +0.0023765680089127272 +0.004120119992876425 +0.0022564259998034686 +0.002341241022804752 +0.00394795200554654 +0.002367240027524531 +0.0023775869922246784 +0.00416955299442634 +0.0006770910113118589 +0.0027898010157514364 +0.005325083009665832 +0.002257624000776559 +0.004108072986127809 +0.0021966090134810656 +0.0025063600041903555 +0.004048894974403083 +0.0022901100164745003 +0.002369330992223695 +0.0041128819866571575 +0.00242871098453179 +0.0022619380033575 +0.004246823984431103 +0.0007677869871258736 +0.003683611983433366 +0.0040640090010128915 +0.0024697369954083115 +0.004185301979305223 +0.0023637549893464893 +0.0023439970100298524 +0.0040963320061564445 +0.0024345400161109865 +0.0023402509978041053 +0.003965997020713985 +0.002518275985494256 +0.004059950006194413 +0.0021496100234799087 +0.0024973200052045286 +0.004273265018127859 +0.0022942600189708173 +0.0023569560144096613 +0.00412885399418883 +0.0021841400011908263 +0.0024453689984511584 +0.004073524003615603 +0.002423002995783463 +0.0022136929910629988 +0.004057603015098721 +0.002387964981608093 +0.0040511910046916455 +0.002313026983756572 +0.002334563003387302 +0.004110603011213243 +0.0022659219976048917 +0.0023996320087462664 +0.004094269999768585 +0.002289719006512314 +0.0023472020111512393 +0.004121100006159395 +0.0007537209894508123 +0.00259273499250412 +0.005188415001612157 +0.002292097022291273 +0.002339457016205415 +0.004110022011445835 +0.0009657880000304431 +0.005450724012916908 +0.0022155389888212085 +0.0024017890100367367 +0.004062375024659559 +0.00229683899669908 +0.0024209750117734075 +0.004037965991301462 +0.002247355005238205 +0.002421006007352844 +0.00413553198450245 +0.0008333639998454601 +0.003649057005532086 +0.004124926985241473 +0.002352045994484797 +0.004051901982165873 +0.002181112999096513 +0.0024373240012209862 +0.004092425981070846 +0.0022958100016694516 +0.0023205009929370135 +0.004065426008310169 +0.002272869984153658 +0.0025240140093956143 +0.00412507398868911 +0.002440227981423959 +0.004024110996397212 +0.0022611370077356696 +0.0024224410008173436 +0.004049512994242832 +0.0022562519880011678 +0.002375108015257865 +0.004092976014362648 +0.0023955820070113987 +0.002266966999741271 +0.004117914009839296 +0.0024044820165727288 +0.002270007011247799 +0.004053116019349545 +0.002336893987376243 +0.004137786017963663 +0.002458268019836396 +0.0007670139893889427 +0.0038120250101201236 +0.004056768986629322 +0.002314960991498083 +0.004074164986377582 +0.002282269997522235 +0.0023806759854778647 +0.004175670008407906 +0.0023127349850255996 +0.0023044130066409707 +0.004087984008947387 +0.002469277009367943 +0.002091855014441535 +0.004152823006734252 +0.0023816849861759692 +0.004170506988884881 +0.0022528689878527075 +0.002442297001834959 +0.004112538998015225 +0.002277566003613174 +0.0023793000145815313 +0.004106017993763089 +0.0024427910102531314 +0.004136701987590641 +0.0022328470076899976 +0.002413490990875289 +0.0041580060205888 +0.0022498900070786476 +0.002433546003885567 +0.00421689500217326 +0.0023032979806885123 +0.00312355300411582 +0.003422181005589664 +0.002341437997529283 +0.002283326000906527 +0.004071647010277957 +0.001081134018022567 +0.0036016090016346425 +0.004121676000067964 +0.002349093003431335 +0.004082514991750941 +0.00221308899926953 +0.0024092280073091388 +0.004213601001538336 +0.0021519139991141856 +0.0024313050089403987 +0.004110429988941178 +0.0024714609899092466 +0.002465994009980932 +0.00403937601367943 +0.0024459899868816137 +0.002262365014757961 +0.004084168991539627 +0.002390552021097392 +0.004111360001843423 +0.002306216018041596 +0.0023567519965581596 +0.004114851006306708 +0.0023077810183167458 +0.002317537000635639 +0.00406091200420633 +0.0024861179990693927 +0.004002452013082802 +0.002230480022262782 +0.002302607987076044 +0.004155861010076478 +0.002228277997346595 +0.002328944974578917 +0.004096649994608015 +0.0023328659881372005 +0.0023432709858752787 +0.004121384990867227 +0.002335846016649157 +0.002310921991011128 +0.004169736988842487 +0.000932675990043208 +0.0024310089938808233 +0.005575654999120161 +0.0020514099742285907 +0.004084615007741377 +0.002240009984234348 +0.002400269004283473 +0.004184933000942692 +0.0009435459796804935 +0.003713016980327666 +0.004105141997570172 +0.002263100992422551 +0.0010284549789503217 +0.005422532005468383 +0.00230511199333705 +0.004184710996923968 +0.0022454900026787072 +0.0023579460103064775 +0.004082288010977209 +0.0022535199823323637 +0.0023865450057201087 +0.004059306986164302 +0.0022604200057685375 +0.0023565919836983085 +0.004159192001679912 +0.0009887049964163452 +0.0036795980122406036 +0.004110042005777359 +0.002309998992132023 +0.002291023003635928 +0.004128942004172131 +0.0023974610085133463 +0.004082272003870457 +0.002243885974166915 +0.0023991760099306703 +0.0022640699753537774 +0.004103970975847915 +0.002378421020694077 +0.004104915977222845 +0.002273819991387427 +0.0023318219755310565 +0.004255889012711123 +0.002109694993123412 +0.004091217997483909 +0.00225730799138546 +0.0023436069895979017 +0.0041159429820254445 +0.0022842450125608593 +0.0009645299869589508 +0.002409070002613589 +0.005207354988669977 +0.00238961901050061 +0.004369250003946945 +0.0021120090095791966 +0.0023580740089528263 +0.004151720000663772 +0.002295690996106714 +0.002324321976630017 +0.004170972999418154 +0.0022736809914931655 +0.0022469809919130057 +0.004086733009899035 +0.002356335986405611 +0.0041124330018647015 +0.0022980170033406466 +0.0023739070165902376 +0.004218421992845833 +0.002202619973104447 +0.0023092640039976686 +0.004173471010290086 +0.002442218014039099 +0.0009957849979400635 +0.005266054009553045 +0.0023540469992440194 +0.0040096059965435416 +0.0023387680121231824 +0.002443000004859641 +0.0040431929810438305 +0.002286001981701702 +0.002367050008615479 +0.004086336004547775 +0.002277902007335797 +0.0023656979901716113 +0.004114750976441428 +0.002298987004905939 +0.0022977329790592194 +0.0041315649868920445 +0.0023180069983936846 +0.002299917017808184 +0.004047576017910615 +0.000991045992122963 +0.0035731719981413335 +0.004125300998566672 +0.0023552679922431707 +0.004150844004470855 +0.002219137008069083 +0.002402935002464801 +0.004075225006090477 +0.002441126009216532 +0.0023197030241135508 +0.004081994004081935 +0.002277421997860074 +0.0023566320014651865 +0.004087901004822925 +0.0023354239820037037 +0.004199963004793972 +0.002281869004946202 +0.0024231579736806452 +0.0040720060060266405 +0.002338908991077915 +0.0025178620126098394 +0.0040567980031482875 +0.00227455300046131 +0.004163000994594768 +0.002322300977539271 +0.002262959023937583 +0.004168359999312088 +0.00226695800665766 +0.002364035986829549 +0.004040186002384871 +0.002193541993619874 +0.0024667319958098233 +0.0041496110206935555 +0.0021842470159754157 +0.001219986006617546 +0.0053938759956508875 +0.002423184021608904 +0.004294746991945431 +0.002205231983680278 +0.002244338014861569 +0.004192786989733577 +0.0023113310162443668 +0.0022736980172339827 +0.004120825993595645 +0.002232423983514309 +0.002410027023870498 +0.004103104991372675 +0.0023882900131866336 +0.00224972001160495 +0.004118949989788234 +0.002264569979161024 +0.004202056996291503 +0.0022630800085607916 +0.002360551996389404 +0.004186543024843559 +0.0022442250046879053 +0.00229322598897852 +0.004216467001242563 +0.002204257994890213 +0.002373797004111111 +0.00419557499117218 +0.002222328999778256 +0.002422221004962921 +0.0041821819904726 +0.0022361960145644844 +0.004236061999108642 +0.002269582008011639 +0.002272479992825538 +0.004237174987792969 +0.002136916999006644 +0.0024237179895862937 +0.004082118975929916 +0.0022116859909147024 +0.002425825980026275 +0.004107073007617146 +0.0022327180195134133 +0.00243953600875102 +0.004110158974071965 +0.002213308005593717 +0.004238319990690798 +0.0022930720006115735 +0.002398134005488828 +0.004230158985592425 +0.002208194986451417 +0.002480919996742159 +0.004107116983504966 +0.0021819940011482686 +0.002462189004290849 +0.004141828016145155 +0.0022207619913388044 +0.002519429981475696 +0.004233971994835883 +0.002360601007239893 +0.004292669997084886 +0.0009309099987149239 +0.003844094986561686 +0.004228778998367488 +0.0023254380212165415 +0.0023160119890235364 +0.0041199770057573915 +0.0022032969864085317 +0.002470437000738457 +0.004147525003645569 +0.0021687539992854 +0.004109283996513113 +0.0022475809964817017 +0.0023350440023932606 +0.004139544005738571 +0.0021026070171501487 +0.002468649996444583 +0.004110885987756774 +0.0022009650128893554 +0.002431172993965447 +0.00434544199379161 +0.002496094995876774 +0.004179264011327177 +0.0024705809773877263 +0.002338830992812291 +0.004056883015437052 +0.002207693993113935 +0.00255003001075238 +0.003981396992458031 +0.0023504279961343855 +0.0022815449920017272 +0.004208027006825432 +0.002393245988059789 +0.002323328983038664 +0.004071959003340453 +0.002227165998192504 +0.004267740005161613 +0.0022787299822084606 +0.002293425000971183 +0.004113052011234686 +0.0021709270076826215 +0.002513109997380525 +0.004239000001689419 +0.0020785339875146747 +0.0024765570124145597 +0.0041946299897972494 +0.0023585569870192558 +0.003978548978921026 +0.0023568469914607704 +0.0024240229977294803 +0.004237154993461445 +0.0022073810105212033 +0.0024302630044985563 +0.004049901006510481 +0.002310807991307229 +0.0024218189937528223 +0.004011238983366638 +0.002386627980740741 +0.0023641329898964614 +0.004056300997035578 +0.00226027998724021 +0.0041286839987151325 +0.0024361939867958426 +0.002150723012164235 +0.004384969011880457 +0.0021511699887923896 +0.0024863209982868284 +0.0041505449917167425 +0.002173691987991333 +0.002484917000401765 +0.004136133997235447 +0.0022334359819069505 +0.0023479440133087337 +0.004082460014615208 +0.0023072240001056343 +0.004173768975306302 +0.0022111900034360588 +0.0025816170091275126 +0.004025854985229671 +0.002322672022273764 +0.0022311890206765383 +0.004255664010997862 +0.002164017001632601 +0.0024711500154808164 +0.0040501829935237765 +0.0021754659828729928 +0.0024532880051992834 +0.004142515012063086 +0.002442979020997882 +0.004049362993100658 +0.0022111439902801067 +0.0025819310103543103 +0.003994812985183671 +0.0021621619816869497 +0.0024679420166648924 +0.004117345000850037 +0.002286275994265452 +0.0024891179928090423 +0.004204947006655857 +0.002508489997126162 +0.001974618004169315 +0.004248209006618708 +0.002387398009886965 +0.004040635016281158 +0.002292341989232227 +0.0022571250156033784 +0.004373233998194337 +0.002205521013820544 +0.002381842990871519 +0.004133252979954705 +0.0022575350012630224 +0.002312606986379251 +0.004156665003392845 +0.0024241819919552654 +0.00401659298222512 +0.002139388001523912 +0.0025070580013561994 +0.004153913003392518 +0.0021308859868440777 +0.002467862010234967 +0.004133041016757488 +0.002233176026493311 +0.003058358997805044 +0.003461198997683823 +0.0022845949861221015 +0.004276060004485771 +0.0020951859769411385 +0.0026154259976465255 +0.003904301003785804 +0.0022722760040778667 +0.002415180002572015 +0.004117143020266667 +0.0022913540014997125 +0.0023900039959698915 +0.004172875982476398 +0.0022876180009916425 +0.0022926620149519295 +0.00419842402334325 +0.002366514003369957 +0.002205347002018243 +0.004047019989229739 +0.0025289650075137615 +0.004092087998287752 +0.002350288996240124 +0.0022710089979227632 +0.0041335450077895075 +0.002166875987313688 +0.002465466008288786 +0.004149218002567068 +0.0022544410021509975 +0.002323205000720918 +0.004085202002897859 +0.0008789610001258552 +0.003688639000756666 +0.004051505005918443 +0.0024510299845132977 +0.004128897009650245 +0.0021410439803730696 +0.002422836027108133 +0.004195911984425038 +0.002353649993892759 +0.0023512050101999193 +0.003999428008683026 +0.002391715010162443 +0.004138306016102433 +0.0024267839908134192 +0.0021699200151488185 +0.004486533987801522 +0.002231621998362243 +0.0022210940078366548 +0.004299741005524993 +0.0022131410078145564 +0.002555866987677291 +0.004157957009738311 +0.002251856989460066 +0.004224506003083661 +0.002328276983462274 +0.0023464120167773217 +0.004123297985643148 +0.002125149010680616 +0.0025080340274143964 +0.004077693010913208 +0.0021762940159533173 +0.002505528012989089 +0.004128450993448496 +0.002393289003521204 +0.004178466013399884 +0.0022769019997213036 +0.0023273830011021346 +0.004086210014065728 +0.0023148489999584854 +0.0023176909890025854 +0.004173355991952121 +0.0022571860172320157 +0.002411919995211065 +0.00413326799753122 +0.0021944829786662012 +0.0024686749966349453 +0.004164566023973748 +0.002252801990834996 +0.002388133987551555 +0.004167041013715789 +0.0023371910210698843 +0.004206587007502094 +0.0022047929815016687 +0.000947217020438984 +0.003692758997203782 +0.003969815006712452 +0.0024645139928907156 +0.004182964010396972 +0.0023175880196504295 +0.0031708439928479493 +0.0034203699906356633 +0.0022609870065934956 +0.004191027022898197 +0.0022697090171277523 +0.0023749270185362548 +0.004188085993519053 +0.002221150993136689 +0.002412974979961291 +0.004165509977610782 +0.0022391249949578196 +0.0023560870031360537 +0.004140595003264025 +0.002322679996723309 +0.0022931459825485945 +0.004033414006698877 +0.00255325497710146 +0.0022729279880877584 +0.0040730460023041815 +0.0024105519987642765 +0.004083142994204536 +0.0023309930111281574 +0.002382150007179007 +0.0041060470102820545 +0.002353561983909458 +0.002280031010741368 +0.004174417001195252 +0.002231038990430534 +0.0023689740046393126 +0.0044706540065817535 +0.0006401059799827635 +0.0037392709928099066 +0.0041113889892585576 +0.0024591420078650117 +0.004173661000095308 +0.002250506018754095 +0.002397929987637326 +0.0042336479818914086 +0.002327172987861559 +0.004127650987356901 +0.0023499539820477366 +0.002367869019508362 +0.00419595799758099 +0.0021802879928145558 +0.002623870997922495 +0.003928585996618494 +0.0023451209999620914 +0.002356176992179826 +0.004167423991020769 +0.0022469109972007573 +0.0011985420132987201 +0.005374353990191594 +0.0022297980030998588 +0.0041952010069508106 +0.0023286910145543516 +0.002321334002772346 +0.004101379017811269 +0.002290904987603426 +0.0025004720082506537 +0.0040888900111895055 +0.002332937001483515 +0.0011572010116651654 +0.005298566014971584 +0.00239042000612244 +0.0022775600082241 +0.0042249349935445935 +0.0025874190032482147 +0.0041898940107785165 +0.0021644879889208823 +0.002463006996549666 +0.004148109001107514 +0.002286070986883715 +0.002398225013166666 +0.004197983973426744 +0.002378877979936078 +0.0041505089902784675 +0.002238373999716714 +0.002441946999169886 +0.004150625987676904 +0.002154048008378595 +0.0024449260090477765 +0.004122482001548633 +0.0022607260034419596 +0.0024381249968428165 +0.0041067179990932345 +0.0022478830069303513 +0.0023549369943793863 +0.004075921984622255 +0.002318754995940253 +0.0023338510072790086 +0.004078853002283722 +0.0024148509837687016 +0.00407501301378943 +0.0021662770013790578 +0.002404846978606656 +0.0042326669790782034 +0.002185905002988875 +0.0025410600064788014 +0.004151086002821103 +0.002261568995891139 +0.002322609012480825 +0.0040460730087943375 +0.002395616000285372 +0.0041122120164800435 +0.0021727400016970932 +0.0025635559868533164 +0.004188054008409381 +0.0022271460038609803 +0.00249451698618941 +0.004035182995721698 +0.0022547609987668693 +0.0023703670012764633 +0.004013746976852417 +0.002291848009917885 +0.002319154009455815 +0.004199914023047313 +0.002421490993583575 +0.004320828011259437 +0.0023126970045268536 +0.002350324997678399 +0.004141081997659057 +0.0023250500089488924 +0.0023650630027987063 +0.004170725995209068 +0.0023694009869359434 +0.00217004501610063 +0.004277639993233606 +0.002375701005803421 +0.004250682017300278 +0.0022723480069544166 +0.0026303670019842684 +0.004247484001098201 +0.002345561020774767 +0.004154787980951369 +0.0024491420190315694 +0.0007751329976599663 +0.003710902004968375 +0.004107032989850268 +0.002412416011793539 +0.004250258003594354 +0.002218056994024664 +0.002425519982352853 +0.004215027001919225 +0.002329887996893376 +0.0023267840151675045 +0.002809622004861012 +0.0038182369899004698 +0.003962176007917151 +0.0022938179899938405 +0.002444520010612905 +0.004087420005816966 +0.0024334960035048425 +0.0008711160044185817 +0.005657083995174617 +0.0024162569898180664 +0.0007424419745802879 +0.005666466022375971 +0.0023603900044690818 +0.004112613998586312 +0.002234546991530806 +0.0024865489976946265 +0.004037006001453847 +0.0022196439967956394 +0.0023839900095481426 +0.004174931993475184 +0.0022327240149024874 +0.002335457014851272 +0.004110903013497591 +0.0022918569738976657 +0.004210426995996386 +0.00225481201778166 +0.0023935970093589276 +0.002245395997306332 +0.004084751999471337 +0.002394642971921712 +0.0041870469867717475 +0.002151524997316301 +0.002425045007839799 +0.0041811819828581065 +0.002278085972648114 +0.002416614006506279 +0.0041188579925801605 +0.0023899420048110187 +0.004219424008624628 +0.0022065910161472857 +0.0025843609764706343 +0.004324755020206794 +0.0022854060225654393 +0.0023055089986883104 +0.0041233780211769044 +0.0023759870091453195 +0.0023538139939773828 +0.004087273002369329 +0.0024802710104268044 +0.002104749990394339 +0.004230558988638222 +0.0024191680131480098 +0.004056386009324342 +0.0022298730036709458 +0.002496861998224631 +0.004092428978765383 +0.0022707800089847296 +0.00248889799695462 +0.004253919003531337 +0.002351278002606705 +0.004137820011237636 +0.0022601569944527 +0.002351024013478309 +0.004248380981152877 +0.00221419200534001 +0.002384371997322887 +0.004151922999881208 +0.002220360009232536 +0.002416878007352352 +0.004107815999304876 +0.0023240279988385737 +0.002299719984875992 +0.004125991981709376 +0.0023781109775882214 +0.004142891004448757 +0.0021729959989897907 +0.0024245039967354387 +0.0040845589828677475 +0.0022607470164075494 +0.002535044011892751 +0.0041546909778844565 +0.002204805990913883 +0.002394751994870603 +0.0041109370067715645 +0.002316288009751588 +0.0023951939947437495 +0.004000141023425385 +0.0023404739913530648 +0.004198618000373244 +0.002290781994815916 +0.0024492669908795506 +0.004168574989307672 +0.0023214800166897476 +0.002406807994702831 +0.004148949985392392 +0.0023677510034758598 +0.002365911001106724 +0.004045866022352129 +0.0025415839918423444 +0.003925230004824698 +0.002285783994011581 +0.0025442629994358867 +0.004024041001684964 +0.0021453810040839016 +0.002483673015376553 +0.004107142012799159 +0.002266105992021039 +0.0024293509777635336 +0.004168214014498517 +0.002256392006529495 +0.004077393998159096 +0.0022531040012836456 +0.002309600997250527 +0.004414991999510676 +0.0024863900034688413 +0.00260327200521715 +0.0039778799982741475 +0.002372937015024945 +0.0042618580046109855 +0.0023056049831211567 +0.002298571984283626 +0.0022465290094260126 +0.004194028006168082 +0.0023230960068758577 +0.004108035995159298 +0.0022320820135064423 +0.0024695629836060107 +0.0041283550090156496 +0.002227585995569825 +0.0024181469925679266 +0.004027584014693275 +0.0023558659886475652 +0.0023634219833184034 +0.004074850003235042 +0.0026298720040358603 +0.003921210998669267 +0.002257546002510935 +0.002371927024796605 +0.004224728007102385 +0.002209048019722104 +0.002452590997563675 +0.004125970997847617 +0.00229987598140724 +0.004214042011881247 +0.0021707290143240243 +0.002339160011615604 +0.004223737021675333 +0.0022811150120105594 +0.002409358014119789 +0.004082356026628986 +0.0021384420106187463 +0.0024586209910921752 +0.004146084014791995 +0.00220197401358746 +0.0024584290222264826 +0.004049026989378035 +0.00223220101906918 +0.004206157987937331 +0.0023017599887680262 +0.0022285309969447553 +0.004179009993094951 +0.002176314010284841 +0.002365459018619731 +0.0041905649995896965 +0.002201264986069873 +0.0023784910154063255 +0.004207867983495817 +0.002203134004957974 +0.002439923002384603 +0.0040072519914247096 +0.0021950940135866404 +0.0041939289949368685 +0.0023422939993906766 +0.002243800990981981 +0.004234974010614678 +0.0021883739973418415 +0.002327555004740134 +0.004158195981290191 +0.0021754190092906356 +0.0024306300038006157 +0.004109708999749273 +0.0021756489877589047 +0.0032158640096895397 +0.0033576209971215576 +0.002224921016022563 +0.004176574002485722 +0.0022796429984737188 +0.002390568988630548 +0.004155581002123654 +0.0022563620004802942 +0.0023846380063332617 +0.004089277994353324 +0.0021843859867658466 +0.0023834409948904067 +0.004204816999845207 +0.0022148060088511556 +0.002417657000478357 +0.004070041002705693 +0.0022107190161477774 +0.004251314006978646 +0.002245776995550841 +0.002287498995428905 +0.004195992980385199 +0.0022613300243392587 +0.002241098991362378 +0.0041586169973015785 +0.002227310003945604 +0.002374783012783155 +0.004069463990163058 +0.002178622002247721 +0.0024714019964449108 +0.004167068982496858 +0.002232735976576805 +0.002354160009417683 +0.0042369690199848264 +0.0022726909955963492 +0.0041763639892451465 +0.002312105003511533 +0.0023015119950287044 +0.004114020004635677 +0.0023935390054248273 +0.0023429900174960494 +0.004125244013266638 +0.0023742910125292838 +0.0023206750047393143 +0.004127184016397223 +0.0022265899751801044 +0.004128445987589657 +0.0022448500094469637 +0.00239434398827143 +0.004273817990906537 +0.0021695120085496455 +0.0024380079994443804 +0.004097276978427544 +0.002309483999852091 +0.0023755440197419375 +0.004142988007515669 +0.0022867250081617385 +0.002378086996031925 +0.004092638002475724 +0.0022214140044525266 +0.00427582100383006 +0.0022501639905385673 +0.0009557050070725381 +0.003574932983610779 +0.00405362798483111 +0.0023713840055279434 +0.004314035992138088 +0.0022280380071606487 +0.0025304230221081525 +0.004191917018033564 +0.0021904569875914603 +0.002383312996244058 +0.004074641008628532 +0.0022990780125837773 +0.0042035700171254575 +0.0022237980156205595 +0.002352270996198058 +0.0040963650099001825 +0.0021680409845430404 +0.0023824700037948787 +0.004151957982685417 +0.002170191000914201 +0.002607768983580172 +0.0039872210181783885 +0.0022207600122783333 +0.0024470739881508052 +0.0040563479997217655 +0.0022003159974701703 +0.004169385996647179 +0.0022297620016615838 +0.0023659880098421127 +0.004160212003625929 +0.002157537004677579 +0.002461675991071388 +0.004219305992592126 +0.002192968997405842 +0.0024192080018110573 +0.0041741539898794144 +0.0021139230229891837 +0.0025869050004985183 +0.00400153300142847 +0.0021782290132250637 +0.004275778017472476 +0.0022688949829898775 +0.002272128011099994 +0.004297135979868472 +0.0021195980079937726 +0.00251443701563403 +0.004086544999154285 +0.002128520980477333 +0.0025034360005520284 +0.004119508987059817 +0.0022518409823533148 +0.0023940530081745237 +0.003987250005593523 +0.0022127439733594656 +0.004264452989445999 +0.0022678380191791803 +0.0023739449970889837 +0.004075125005329028 +0.002156950009521097 +0.002415975002804771 +0.004247739998390898 +0.002096651995088905 +0.0025304620212409645 +0.004053163022035733 +0.002189717983128503 +0.0024193170247599483 +0.004052702017361298 +0.002236579020973295 +0.002379390993155539 +0.0040967010136228055 +0.002306804002728313 +0.004147469997406006 +0.002124496008036658 +0.002398937998805195 +0.0042460169934201986 +0.0022430380049627274 +0.0023993199865799397 +0.004153963003773242 +0.002082496997900307 +0.0024257689947262406 +0.0041868620028253645 +0.0022249160101637244 +0.004135135997785255 +0.0022866459912620485 +0.0023395050084218383 +0.0042259070032741874 +0.0021160900068935007 +0.002378798002609983 +0.00455721199978143 +0.0021199859911575913 +0.0024476689868606627 +0.004179467010544613 +0.002157563983928412 +0.002279929001815617 +0.004185494995908812 +0.0022717609826941043 +0.004321385000366718 +0.0020825279934797436 +0.002410218003205955 +0.00419589300872758 +0.0022394609986804426 +0.0023444709950126708 +0.0041489709983579814 +0.00212047400418669 +0.0023373909934889525 +0.004224520002026111 +0.0022860330063849688 +0.00419815699569881 +0.002279259992064908 +0.002259340981254354 +0.004164278012467548 +0.0022637790243607014 +0.002386783016845584 +0.004156352981226519 +0.002228336001280695 +0.002377077005803585 +0.0041342549957334995 +0.002185727993492037 +0.002364025014685467 +0.004170330998022109 +0.002180757001042366 +0.004287523013772443 +0.0022135190083645284 +0.002275765989907086 +0.004220509988954291 +0.00211211500572972 +0.002381788013735786 +0.004389239998999983 +0.002131560002453625 +0.0032300580060109496 +0.00341361400205642 +0.002204691991209984 +0.00428186499630101 +0.0023238600115291774 +0.0021754269837401807 +0.004312867997214198 +0.0021982479956932366 +0.0023128399916458875 +0.004195963003439829 +0.0021209830010775477 +0.002436958020552993 +0.004135691007832065 +0.0022345189936459064 +0.0024318229989148676 +0.00415243100724183 +0.0022813779942225665 +0.004325490997871384 +0.002221495989942923 +0.0023391349823214114 +0.004246558994054794 +0.0021236790053080767 +0.0024677100009284914 +0.004147650994127616 +0.0021356399811338633 +0.0024810059985611588 +0.004111935006221756 +0.002185491001000628 +0.0023902489920146763 +0.004074372001923621 +0.0022210939787328243 +0.004244281997671351 +0.002355364995310083 +0.0022779809951316565 +0.004142218997003511 +0.0021405830048024654 +0.0023980470141395926 +0.004217982001136988 +0.0021743540128227323 +0.0024836069787852466 +0.004070997005328536 +0.002116034011123702 +0.002531953010475263 +0.004021865985123441 +0.002214544016169384 +0.0023819030029699206 +0.004027262009913102 +0.0022402979957405478 +0.004278765991330147 +0.0021767090074718 +0.0022703329741489142 +0.004223217983962968 +0.002163688011933118 +0.0023887720017228276 +0.004231333005009219 +0.002118541015079245 +0.002515963016776368 +0.004086395987542346 +0.002205252996645868 +0.0024576419964432716 +0.0038662390143144876 +0.002312516007805243 +0.004202389012789354 +0.0022403750044759363 +0.00229569201474078 +0.004231650993460789 +0.0021264009992592037 +0.0025214659981429577 +0.004102105973288417 +0.002191846026107669 +0.002426443010335788 +0.004114987008506432 +0.0021464799938257784 +0.002486940997187048 +0.004065949993673712 +0.002267021016450599 +0.00420907698571682 +0.002333014999749139 +0.002248710981803015 +0.0041690779908094555 +0.0021140770113561302 +0.002534074999857694 +0.0041236079996451735 +0.002296634018421173 +0.002240974979940802 +0.004113731003599241 +0.002237743989098817 +0.004303609021008015 +0.002316878002602607 +0.0021858380059711635 +0.004204822995234281 +0.00228148399037309 +0.0022349299979396164 +0.004154443013248965 +0.002295995014719665 +0.002277804014738649 +0.004184932011412457 +0.002073743991786614 +0.0025801020092330873 +0.004077167017385364 +0.0021752390020992607 +0.002464944001985714 +0.004059544997289777 +0.002204894000897184 +0.004277826985344291 +0.0023559569963254035 +0.0024492999946232885 +0.004037493985379115 +0.0021435749949887395 +0.0024442540016025305 +0.0041978899971581995 +0.002225011005066335 +0.0032055329938884825 +0.0034566069953143597 +0.0020707079966086894 +0.0024626489903312176 +0.0042643650085665286 +0.00222118099918589 +0.004145926999626681 +0.0021865449962206185 +0.002453747991239652 +0.004062276013428345 +0.0021747339924331754 +0.0024800699902698398 +0.004178771981969476 +0.002205603988841176 +0.002595272002508864 +0.004046111018396914 +0.0023967129818629473 +0.004239806003170088 +0.0025854340055957437 +0.0022334099921863526 +0.00422959600109607 +0.002330115996301174 +0.002404777012998238 +0.004375782998977229 +0.002366415981668979 +0.0043344190053176135 +0.0021788669982925057 +0.0024562600010540336 +0.004111271002329886 +0.0022637149959336966 +0.002270555996801704 +0.0042005060240626335 +0.002242891991045326 +0.0024151580000761896 +0.004067878006026149 +0.0022361559967976063 +0.004223783005727455 +0.0021709850116167217 +0.0027881150017492473 +0.003928460995666683 +0.0023742739867884666 +0.002340678998734802 +0.00410410700715147 +0.002175186004023999 +0.0024811009934637696 +0.004151307977735996 +0.00244937400566414 +0.004183851997368038 +0.002263960981508717 +0.002247486001579091 +0.004237064975313842 +0.002192173997173086 +0.0024990450183395296 +0.004088628978934139 +0.002159947995096445 +0.002455648995237425 +0.004073214979143813 +0.002266161987790838 +0.0024395359796471894 +0.004097909986739978 +0.0025432640104554594 +0.0021203899814281613 +0.00436317702406086 +0.002298942010384053 +0.004118589014979079 +0.0022060069895815104 +0.0024147230142261833 +0.004097533994354308 +0.0022970630088821054 +0.0023956650111358613 +0.004227631987305358 +0.0023293939884752035 +0.002436473994748667 +0.0040282480185851455 +0.0023403649975080043 +0.004113847011467442 +0.002241784008219838 +0.0024379209789913148 +0.004198638984235004 +0.002247213007649407 +0.00246925899409689 +0.004210947023238987 +0.0022131369914859533 +0.0024478849954903126 +0.0040982300124596804 +0.002418246993329376 +0.00410178501624614 +0.00215434399433434 +0.0026434309838805348 +0.004140810022363439 +0.0022088559926487505 +0.0024304480175487697 +0.004178441013209522 +0.002312230004463345 +0.002404605009360239 +0.004032530996482819 +0.002508028002921492 +0.003988662996562198 +0.0023784640070516616 +0.002310421987203881 +0.004187045997241512 +0.0022121160000097007 +0.0024618230236228555 +0.004100865975487977 +0.002356929995585233 +0.0023496490030083805 +0.004073855991009623 +0.002277007995871827 +0.0024005849845707417 +0.004190177976852283 +0.000761800998589024 +0.003675620013382286 +0.0040463659970555454 +0.0023687059874646366 +0.004196570022031665 +0.0022514059965033084 +0.0023414049937855452 +0.004167632025200874 +0.002273452002555132 +0.002250616002129391 +0.0042162699974142015 +0.002207482000812888 +0.002439547999529168 +0.004121299018152058 +0.0023602610162924975 +0.004127168998820707 +0.002164450997952372 +0.0024521269951947033 +0.004192699008854106 +0.002262296009575948 +0.0024127890064846724 +0.004011609998997301 +0.002207957993960008 +0.0024212579883169383 +0.004109482018975541 +0.0024251220165751874 +0.0023230350052472204 +0.004063236003275961 +0.0024884860031306744 +0.003978193999500945 +0.0021952159877400845 +0.002492856001481414 +0.004181289987172931 +0.0022909500112291425 +0.0023787030077073723 +0.00409932600450702 +0.002270526980282739 +0.001089907018467784 +0.005482638982357457 +0.0023652239760849625 +0.004221957002300769 +0.0021784440032206476 +0.0025586830161046237 +0.004022203997010365 +0.0022128830023575574 +0.0023504510172642767 +0.0041912749875336885 +0.0023418740020133555 +0.002278775005834177 +0.004466983984457329 +0.0024729760189075023 +0.004015384009107947 +0.002204142016125843 +0.002576272003352642 +0.004103296989342198 +0.002275145991006866 +0.0024922429875005037 +0.004015890997834504 +0.002289967000251636 +0.003090420999797061 +0.003360542992595583 +0.002356877987040207 +0.004141606012126431 +0.0021838259999640286 +0.0024394060019403696 +0.004128286993363872 +0.0021945639746263623 +0.002542272995924577 +0.004019566025817767 +0.002304980007465929 +0.0023686569766141474 +0.004237164976075292 +0.0021978699951432645 +0.003311117005068809 +0.0035017560003325343 +0.0024275199975818396 +0.004131986002903432 +0.0024037520051933825 +0.0010915070015471429 +0.005548844987060875 +0.0022812200186308473 +0.0023912700125947595 +0.004140000994084403 +0.002290391974383965 +0.004346676985733211 +0.0022309659980237484 +0.002324836008483544 +0.004169988998910412 +0.0022468119859695435 +0.002514839987270534 +0.003881885000737384 +0.002298070990946144 +0.0024766739807091653 +0.0041467030241619796 +0.0022421420144382864 +0.0022786549816373736 +0.0043566160020418465 +0.0022945100208744407 +0.004173067020019516 +0.002135046001058072 +0.0026331190019845963 +0.004104126011952758 +0.0022239289828576148 +0.002449710009386763 +0.00415427700500004 +0.0022093619918450713 +0.004259412991814315 +0.0021886369795538485 +0.0023630440118722618 +0.0042301680077798665 +0.002210208011092618 +0.0024654129811096936 +0.004073550982866436 +0.00221086700912565 +0.0024270480207633227 +0.004147708008531481 +0.0022355760156642646 +0.0023432729940395802 +0.004182347998721525 +0.0022401969763450325 +0.0024676510074641556 +0.0040092299750540406 +0.002363984996918589 +0.004121640988159925 +0.0021491470106411725 +0.002621491003083065 +0.0041493129974696785 +0.002241879003122449 +0.0025091220159083605 +0.004108513006940484 +0.002296332997502759 +0.0023471160093322396 +0.00420047200168483 +0.002241384005174041 +0.004246680007781833 +0.002268568001454696 +0.002253877988550812 +0.00424832000862807 +0.0022535290045198053 +0.00244040199322626 +0.004101632017409429 +0.002243780007120222 +0.002379646000918001 +0.004188552004052326 +0.0021898889972362667 +0.004349210998043418 +0.0021444240119308233 +0.002568124997196719 +0.003996062005171552 +0.0021896669932175428 +0.0024821829865686595 +0.004113053000764921 +0.0022577960044145584 +0.002470936975441873 +0.004138429998420179 +0.0023170030035544187 +0.004151764005655423 +0.002222240000264719 +0.0022054729925002903 +0.004250389989465475 +0.0022989200078882277 +0.0023709670058451593 +0.004081897001015022 +0.0021705569815821946 +0.002714696020120755 +0.004161390999797732 +0.0022458180028479546 +0.002423288009595126 +0.002787762990919873 +0.003549677989212796 +0.0022411700047086924 +0.004270120000001043 +0.0008277989982161671 +0.003783230989938602 +0.003999734006356448 +0.00239238198264502 +0.004164543002843857 +0.002210760023444891 +0.00246620099642314 +0.00411513599101454 +0.0022151780140120536 +0.002467584010446444 +0.004073532996699214 +0.002275467006256804 +0.0022680220135953277 +0.004206543992040679 +0.0023475729976780713 +0.004196733993012458 +0.0022481319901999086 +0.002380295016337186 +0.004119404009543359 +0.0022741190041415393 +0.0023736889997962862 +0.004283612011931837 +0.0021925330220256 +0.002425958984531462 +0.004126493004150689 +0.0008949990151450038 +0.0037378859997261316 +0.00408547100960277 +0.002365381980780512 +0.004118138982448727 +0.0022014910064172 +0.002549153985455632 +0.00404534800327383 +0.0022112909937277436 +0.0024711890146136284 +0.004056428006151691 +0.0023038730141706765 +0.0023020890075713396 +0.004249277990311384 +0.002233428996987641 +0.002358942001592368 +0.004065726010594517 +0.00254256502375938 +0.00420423099421896 +0.0022102090006228536 +0.002397799020400271 +0.004226656979881227 +0.002174500987166539 +0.0024265959800686687 +0.004137979994993657 +0.002317581995157525 +0.002270952012622729 +0.00413253900478594 +0.00234273899695836 +0.004101169994100928 +0.002217077009845525 +0.002405332983471453 +0.004220656002871692 +0.0021841010020580143 +0.002510893013095483 +0.004132041009142995 +0.0022881659970153123 +0.002330173010705039 +0.004115497024031356 +0.0025375969999004155 +0.004056693986058235 +0.0024437560059595853 +0.0024599600001238286 +0.004120664001675323 +0.002300942986039445 +0.0023042840184643865 +0.004264760995283723 +0.0022581870143767446 +0.003162904002238065 +0.003383857983862981 +0.0022886369843035936 +0.0024348509905394167 +0.004027380025945604 +0.0023345289810094982 +0.004156908980803564 +0.0022906399972271174 +0.000890791998244822 +0.005407113989349455 +0.0023155600065365434 +0.0023684340121690184 +0.004161299002589658 +0.002239291003206745 +0.004249209014233202 +0.0022547339904122055 +0.0024621550110168755 +0.004104750987607986 +0.0021977269789204 +0.002433154993923381 +0.004144759004702792 +0.002233158011222258 +0.0031603949901182204 +0.0034302280109841377 +0.002283866982907057 +0.004238058987539262 +0.0008892740006558597 +0.003627008991315961 +0.004223700001602992 +0.0023449739965144545 +0.0022843139886390418 +0.0042569579964037985 +0.002275670995004475 +0.0023432570160366595 +0.004087177978362888 +0.0022487860114779323 +0.0024519370053894818 +0.004147728002863005 +0.002286787988850847 +0.0041292820242233574 +0.002257463987916708 +0.0024797350051812828 +0.0022394160041585565 +0.0041106800199486315 +0.0008898430096451193 +0.003685909992782399 +0.004028000985272229 +0.0026116310036741197 +0.00413995300186798 +0.0023875900078564882 +0.002295860991580412 +0.004131497989874333 +0.0022319949930533767 +0.004215992987155914 +0.0022202699910849333 +0.0023473309993278235 +0.004244109004503116 +0.0023208950005937368 +0.002335327008040622 +0.004169968975475058 +0.0022213489864952862 +0.0024351190077140927 +0.004220578994136304 +0.0022672199993394315 +0.002333273005206138 +0.004159350995905697 +0.0024566029896959662 +0.004057668993482366 +0.0022074669832363725 +0.0024607570085208863 +0.0040959139878395945 +0.0023222809832077473 +0.001084974006516859 +0.005315238027833402 +0.0021906300098635256 +0.0024773930199444294 +0.00414000399177894 +0.002360407990636304 +0.00421498401556164 +0.002344640000956133 +0.0022754829842597246 +0.004136264993576333 +0.002282023982843384 +0.0023811849823687226 +0.004110777023015544 +0.0022305609891191125 +0.002513518003979698 +0.004100619989912957 +0.002400348981609568 +0.0022579430078621954 +0.00410158300655894 +0.002276582003105432 +0.004204825992928818 +0.002236288011772558 +0.0023907700087875128 +0.004116446012631059 +0.002393483999185264 +0.0009263340034522116 +0.005380463000619784 +0.0022623739787377417 +0.002441420016111806 +0.004037203005282208 +0.0023285509960260242 +0.004083686013473198 +0.0023082650150172412 +0.0008851150050759315 +0.0024547509965486825 +0.00535953399958089 +0.0024487310147378594 +0.004065731976879761 +0.0022273210051935166 +0.0024516310077160597 +0.004213265987345949 +0.002525320975109935 +0.004009459022199735 +0.002283051988342777 +0.0022559099888894707 +0.00417566898977384 +0.002366949978750199 +0.0006797829992137849 +0.004503431002376601 +0.0034319359983783215 +0.0022327199985738844 +0.004092667979421094 +0.0023348300019279122 +0.0025236759975086898 +0.004091465001692995 +0.0022276309900917113 +0.002353693009354174 +0.00412228298955597 +0.002347678004298359 +0.002225905016530305 +0.004295449994970113 +0.0008320730121340603 +0.0054614330001641065 +0.002261935005662963 +0.0025166090053971857 +0.00419449299806729 +0.0022177649952936918 +0.0023757159942761064 +0.004170268977759406 +0.0022886399819981307 +0.0024738929932937026 +0.00406891101738438 +0.0023729980166535825 +0.004124797007534653 +0.0023251170059666038 +0.0023500649840570986 +0.004194501001620665 +0.002184853976359591 +0.003325555007904768 +0.003248608991270885 +0.0023061420070007443 +0.0042124230240006 +0.0022888800012879074 +0.002381446014624089 +0.004248503013513982 +0.002220124995801598 +0.0024570560199208558 +0.004110908979782835 +0.0022237609955482185 +0.0025521859934087843 +0.004084393003722653 +0.0022521110076922923 +0.004174660018179566 +0.0024126599892042577 +0.00214855998638086 +0.004392757982714102 +0.002314831013791263 +0.0022308710031211376 +0.004205790988635272 +0.0021732450113631785 +0.002503711002646014 +0.004101469996385276 +0.0021893430093768984 +0.0024274419993162155 +0.004205409000860527 +0.002260490000480786 +0.004121095989830792 +0.0023721029865555465 +0.00220713100861758 +0.004155331989750266 +0.002273648016853258 +0.0023677549907006323 +0.0042680219921749085 +0.0021432990033645183 +0.00254520500311628 +0.004178392002359033 +0.002183870004955679 +0.0024606739752925932 +0.004088510002475232 +0.002271036006277427 +0.00419331097509712 +0.0022925319790374488 +0.0022910510015208274 +0.004230881022522226 +0.0021681379876099527 +0.002377069991780445 +0.004310824995627627 +0.0021675270108971745 +0.0025148169952444732 +0.004088151996256784 +0.002290331991389394 +0.004074115975527093 +0.0022957030159886926 +0.0023590959899593145 +0.004197224014205858 +0.002288508985657245 +0.0022191890166141093 +0.00422014799551107 +0.0023418420169036835 +0.002246761985588819 +0.004198697017272934 +0.0021478910057339817 +0.0025187380088027567 +0.004043469001771882 +0.002212527993833646 +0.004250600992236286 +0.0022751219803467393 +0.0023236999986693263 +0.004211738996673375 +0.002258854015963152 +0.00239186902763322 +0.004111813992494717 +0.0021666089887730777 +0.0024247649998869747 +0.00423208498978056 +0.0022527720138896257 +0.0023361380153801292 +0.004031324002426118 +0.002319977997103706 +0.004245357995387167 +0.002222297975094989 +0.002405801002169028 +0.004117352014873177 +0.0022191879979800433 +0.00230552299763076 +0.004206330020679161 +0.002198750007664785 +0.002489837002940476 +0.004323797998949885 +0.0022235500218812376 +0.00427263299934566 +0.002286197995999828 +0.0023666009947191924 +0.004103699990082532 +0.002233303996035829 +0.0024133429978974164 +0.004089547001058236 +0.0022510949929710478 +0.002420608012471348 +0.004181075986707583 +0.0021798009984195232 +0.00430315500125289 +0.0023550220066681504 +0.0021518879802897573 +0.004235453990986571 +0.0022708449978381395 +0.002394956012722105 +0.004153443005634472 +0.0021666809916496277 +0.0024392519844695926 +0.0042168729996774346 +0.002181960007874295 +0.0023819479974918067 +0.004230051999911666 +0.002487821999238804 +0.004027038026833907 +0.002280507003888488 +0.0023786640085745603 +0.004111058020498604 +0.002166095975553617 +0.002528680022805929 +0.004070482013048604 +0.0021674019808415323 +0.002424983016680926 +0.004113921022508293 +0.002230375976068899 +0.002495197986718267 +0.004029650997836143 +0.0009054529946297407 +0.0038100640231277794 +0.004016580991446972 +0.0023925710120238364 +0.004130773013457656 +0.0023283220070879906 +0.0022501600033137947 +0.0042760939977597445 +0.002165988989872858 +0.0024896170070860535 +0.004108849010663107 +0.0022645340068265796 +0.0023189210041891783 +0.0041075709741562605 +0.002311693999217823 +0.00420779999694787 +0.002221925009507686 +0.002300340012880042 +0.004190064006252214 +0.002198910980951041 +0.002502659015590325 +0.004083592997631058 +0.002173784014303237 +0.0025486219965387136 +0.004045005014631897 +0.00229805099661462 +0.002353980002226308 +0.004242584982421249 +0.002352599985897541 +0.004181395983323455 +0.0023180640127975494 +0.002119462995324284 +0.004241143993567675 +0.0022071750136092305 +0.002397772012045607 +0.004181141004664823 +0.002260014007333666 +0.002342740015592426 +0.004244607000146061 +0.0009093820117413998 +0.0038251630030572414 +0.004206671001156792 +0.002335807017516345 +0.00413933998788707 +0.002093257993692532 +0.002569013013271615 +0.004111146001378074 +0.002263996982946992 +0.0023035670164972544 +0.004212180007016286 +0.002344937005545944 +0.004365606000646949 +0.002150354004697874 +0.0023813490115571767 +0.004188977007288486 +0.0023182879958767444 +0.0022860770113766193 +0.004150875000050291 +0.002151766006136313 +0.0025384709879290313 +0.004083441977854818 +0.0022862170008011162 +0.00230555102461949 +0.004060952021973208 +0.0024839969992171973 +0.004282719019101933 +0.0022744850139133632 +0.002199086971813813 +0.004277411004295573 +0.0022411909885704517 +0.0023597430263180286 +0.004079349018866196 +0.002241996000520885 +0.0024380510149057955 +0.003945917007513344 +0.002414995018625632 +0.004122546000871807 +0.0023494329943787307 +0.002232195023680106 +0.004272760997992009 +0.002410956978565082 +0.0020619189890567213 +0.004190748994005844 +0.002192305983044207 +0.002372152986936271 +0.004248531011398882 +0.002369231020566076 +0.0023304650094360113 +0.004118396987905726 +0.0022845600033178926 +0.004258583998307586 +0.002253999002277851 +0.002327783004147932 +0.004177285998594016 +0.002145818987628445 +0.00251245399704203 +0.003982673981226981 +0.0022389389923773706 +0.0024629269901197404 +0.004065149987582117 +0.0022900660114828497 +0.002486051991581917 +0.0040960320038720965 +0.0008216970018111169 +0.0026050449814647436 +0.005294850008795038 +0.002251822006655857 +0.004169530991930515 +0.0021721720113418996 +0.0024946419871412218 +0.004008211981272325 +0.0023790700070094317 +0.0023980689875315875 +0.004022200999315828 +0.0022028230014257133 +0.002416900999378413 +0.00411333900410682 +0.0023934719793032855 +0.004173902998445556 +0.002310993993887678 +0.002207070996519178 +0.004196397989289835 +0.0022273049980867654 +0.002421046025119722 +0.004289258999051526 +0.0021618210012093186 +0.002506769000319764 +0.0041716730047483 +0.0021859119879081845 +0.0025189259904436767 +0.004116440017241985 +0.002184451004723087 +0.004201537987682968 +0.0024040089920163155 +0.00206084200181067 +0.004248753015417606 +0.0021407400199677795 +0.0025688899913802743 +0.004063947009854019 +0.002138901996659115 +0.004307233000872657 +0.0023189669882413 +0.0023415330215357244 +0.004168084997218102 +0.00228720300947316 +0.002252005011541769 +0.0041202830034308136 +0.0022511299757752568 +0.0024075690016616136 +0.004113619012059644 +0.0022164949914440513 +0.0024382389965467155 +0.004139741009566933 +0.0021484880126081407 +0.0025311549834441394 +0.004084607004188001 +0.0022248890018090606 +0.004360841994639486 +0.0020740749896503985 +0.0023996990057639778 +0.0042338750208728015 +0.0021648530091624707 +0.002401424018898979 +0.004085954977199435 +0.002203356008976698 +0.0025067479873541743 +0.004144653008552268 +0.00221251102630049 +0.00240924401441589 +0.004159439995419234 +0.00229241099441424 +0.004208901984384283 +0.0021998040028847754 +0.0023098190140444785 +0.004200928990030661 +0.002239827997982502 +0.002371556998696178 +0.004233999003190547 +0.0021668740082532167 +0.0024823809799272567 +0.004057705984450877 +0.002285077003762126 +0.0024668319965712726 +0.003960948990425095 +0.0022041400079615414 +0.0024431089987047017 +0.004120276018511504 +0.0022603679972235113 +0.004240303009282798 +0.0021710589935537428 +0.0024215829907916486 +0.004188266990240663 +0.0023018149950075895 +0.002354825002839789 +0.004165128018939868 +0.0021375769865699112 +0.0025294240040238947 +0.004065557004651055 +0.0022073450090829283 +0.004192104999674484 +0.002279034990351647 +0.002336092002224177 +0.004143972008023411 +0.0022021610056981444 +0.002389856002992019 +0.004184702993370593 +0.002162447985028848 +0.00240222699358128 +0.0041141130204778165 +0.0021809930040035397 +0.0023507610021624714 +0.004206243989756331 +0.0021490879880730063 +0.004341883002780378 +0.002214342006482184 +0.0023356410092674196 +0.004193726985249668 +0.0022734790109097958 +0.0022834200062789023 +0.00405517898616381 +0.0022031200060155243 +0.0025141490041278303 +0.0040381510043516755 +0.0022335710236802697 +0.002563718007877469 +0.004046312009450048 +0.0022613680048380047 +0.004287733987439424 +0.002198419999331236 +0.002233031002106145 +0.004317362996516749 +0.0022707239841111004 +0.0024357860093005 +0.0041082510142587125 +0.002227329008746892 +0.0024805699940770864 +0.00428216700674966 +0.0021924489992670715 +0.0024840790138114244 +0.003999979002401233 +0.002363914012676105 +0.004073407006217167 +0.002361378021305427 +0.0021760269883088768 +0.0041923899843823165 +0.0021203219948802143 +0.002380130987148732 +0.004189410014078021 +0.0022958809859119356 +0.0023425270046573132 +0.004113509989110753 +0.0021391880000010133 +0.00253744499059394 +0.004087162989890203 +0.0023166739847511053 +0.004142857011174783 +0.00234776598517783 +0.0022911510022822767 +0.004106742999283597 +0.0021813189960084856 +0.0025322349974885583 +0.004165356018347666 +0.0021400539844762534 +0.00245221599470824 +0.004246360011165962 +0.0023793729778844863 +0.004145478014834225 +0.0022400769812520593 +0.002194398985011503 +0.004240138980094343 +0.0021229730045888573 +0.0024116899876389652 +0.0041744550107978284 +0.0022821119928266853 +0.0025059549952857196 +0.004088604007847607 +0.0021346639841794968 +0.0025242520205210894 +0.00398299700464122 +0.0022312490036711097 +0.0041759910236578435 +0.0023505490098614246 +0.0023008649877738208 +0.004045373003464192 +0.0022841269965283573 +0.0024379619862884283 +0.004027918999781832 +0.0021743389952462167 +0.002550157980294898 +0.0040947209927253425 +0.0021623529901262373 +0.002415135008050129 +0.004003528010798618 +0.0023070349998306483 +0.0035189729824196547 +0.0031663929985370487 +0.0007762169989291579 +0.003718198015121743 +0.003996328014181927 +0.0023266220232471824 +0.004236932989442721 +0.0021973400143906474 +0.0026624710008036345 +0.004076254001120105 +0.002279200009070337 +0.002434497990179807 +0.0039686149975750595 +0.0022633650223724544 +0.004260261019226164 +0.002282344998093322 +0.0022359139984473586 +0.004206383979180828 +0.00217398299719207 +0.002480635012034327 +0.004036439000628889 +0.0022239210084080696 +0.0024359789968002588 +0.004143778991419822 +0.002149748004740104 +0.002555365994339809 +0.004056865000165999 +0.0022292339999694377 +0.004229179001413286 +0.0022941670031286776 +0.0023453430039808154 +0.004113667004276067 +0.0021916569967288524 +0.002456029993481934 +0.004104621009901166 +0.0021913179953116924 +0.0024984919873531908 +0.003989079996244982 +0.0021798200032208115 +0.002395124000031501 +0.00416362498071976 +0.0021745089907199144 +0.0024364380224142224 +0.004053074022522196 +0.002332909993128851 +0.004177643015282229 +0.0020961980044376105 +0.0024941709998529404 +0.00404362499830313 +0.0021940189762972295 +0.0025111589930020273 +0.0040214500040747225 +0.002284221991430968 +0.0023557799868285656 +0.0041005889943335205 +0.0022088369878474623 +0.0043313179921824485 +0.002180911018513143 +0.00223828898742795 +0.004272852005669847 +0.002359486010391265 +0.0022834650008007884 +0.004115030984394252 +0.0022275949886534363 +0.0026084459968842566 +0.004086255008587614 +0.002099595993058756 +0.0023992329952307045 +0.00444841300486587 +0.0026503799890633672 +0.004435506009031087 +0.0021811559854540974 +0.0025253029889427125 +0.004082574014319107 +0.0022252280032262206 +0.002691014000447467 +0.003968679986428469 +0.002295776008395478 +0.004255500010913238 +0.0023751729750074446 +0.0021553050028160214 +0.00416235497687012 +0.0022100729984231293 +0.0024064870085567236 +0.004135265975492075 +0.0022399770095944405 +0.002368355984799564 +0.004039179999381304 +0.002232231985544786 +0.0024433899961877614 +0.004216667992295697 +0.002325061010196805 +0.004282018984667957 +0.0023972449998836964 +0.00236799698905088 +0.004371401999378577 +0.0022667540179099888 +0.0024318389769177884 +0.004152253997744992 +0.002364377985941246 +0.004108328983420506 +0.002241880021756515 +0.0023794999870005995 +0.0043366249883547425 +0.002240139991044998 +0.002333076990908012 +0.004148781998082995 +0.002138573006959632 +0.0025612640019971877 +0.004074889002367854 +0.0023045660054776818 +0.0023034119803924114 +0.004012388992123306 +0.00231769701349549 +0.0041496880003251135 +0.002330880000954494 +0.002268487005494535 +0.004075378004927188 +0.0022128810232970864 +0.0024265130050480366 +0.004094920994248241 +0.0023145769955590367 +0.0031446169887203723 +0.00344408699311316 +0.0022408310032915324 +0.002438188996165991 +0.004178558010607958 +0.000722161988960579 +0.00279212900204584 +0.00526135100517422 +0.002475484012393281 +0.004144349979469553 +0.002209491009125486 +0.0024572989786975086 +0.004132662026677281 +0.002271914010634646 +0.0023342959757428616 +0.004232305975165218 +0.0022718720138072968 +0.004210200975649059 +0.0021269779826980084 +0.0025197979994118214 +0.004112583992537111 +0.0023662449966650456 +0.0008586730109527707 +0.005571143003180623 +0.0021702080266550183 +0.002436122013023123 +0.004199649003567174 +0.002259708009660244 +0.0041392660059500486 +0.0023156320094130933 +0.0022725540038663894 +0.0023050150193739682 +0.004144351987633854 +0.0009553880081512034 +0.0057105690066237 +0.002151986991520971 +0.002412231988273561 +0.004190286999801174 +0.00233907499932684 +0.002220808994024992 +0.004131145018618554 +0.0022472080017905682 +0.002415505994576961 +0.00395447199116461 +0.002461524010868743 +0.004128432017751038 +0.0022654080239590257 +0.0023685060150455683 +0.004143183003179729 +0.0023320790205616504 +0.0021660259808413684 +0.004365425993455574 +0.002312210010131821 +0.004118469980312511 +0.002332467003725469 +0.0024770960153546184 +0.0021053749951533973 +0.00419406799483113 +0.0008257279987446964 +0.005607016995782033 +0.002309108996996656 +0.002355066011659801 +0.004013300989754498 +0.0022276300005614758 +0.002426180988550186 +0.004082228988409042 +0.002344228996662423 +0.002501901995856315 +0.003987430973211303 +0.0025909540127031505 +0.0041069790022447705 +0.0021920169820077717 +0.0024129420053213835 +0.004183418990578502 +0.0021115660201758146 +0.0024577990116085857 +0.004161180986557156 +0.0022995850013103336 +0.002288712974404916 +0.004156504990532994 +0.002302268025232479 +0.0023405870015267283 +0.004180452990112826 +0.0006574959843419492 +0.0037618629867210984 +0.004023993998998776 +0.0024669889826327562 +0.004195782996248454 +0.0022390270023606718 +0.002424089005216956 +0.003999688982730731 +0.0009320700191892684 +0.0038088529836386442 +0.004098809993593022 +0.0024030439963098615 +0.004151108005316928 +0.002138496987754479 +0.0025413900148123503 +0.004122148995520547 +0.002186299010645598 +0.0023780579795129597 +0.0042377600038889796 +0.0021470309875439852 +0.0025103689986281097 +0.004084996995516121 +0.0023228690261021256 +0.004099893994862214 +0.00259593001101166 +0.0008150709909386933 +0.003745909983990714 +0.004207819001749158 +0.002393069997197017 +0.004097602010006085 +0.0023944989952724427 +0.002440245996695012 +0.0029259540024213493 +0.00363288598600775 +0.0022455709986388683 +0.004190870007732883 +0.002317724021850154 +0.004077024990692735 +0.002260781009681523 +0.0025214079942088574 +0.004041692998725921 +0.0021904069872107357 +0.0024738390056882054 +0.004066339985001832 +0.002575960010290146 +0.0007731910154689103 +0.0054882660042494535 +0.002333128999453038 +0.004362688981927931 +0.002231692022178322 +0.0024859309778548777 +0.0041021899960469455 +0.0022582189994864166 +0.002543348993640393 +0.00409090201719664 +0.0022599250078201294 +0.0042403709958307445 +0.002287342998897657 +0.0024037869879975915 +0.004149263986619189 +0.0023130360059440136 +0.0023055000056046993 +0.00413635399308987 +0.00222198199480772 +0.002379604004090652 +0.004378893994726241 +0.0022465760121122003 +0.002311618998646736 +0.004118954006116837 +0.0010254610097035766 +0.003598547977162525 +0.004224820993840694 +0.0022259999823290855 +0.0022578980133403093 +0.0041636319947429 +0.002280979009810835 +0.004078892001416534 +0.0022835939889773726 +0.00244271699921228 +0.004061101004481316 +0.0022624509874731302 +0.002428817009786144 +0.004177962022367865 +0.0023871389857959002 +0.0021885610185563564 +0.004213329986669123 +0.0021960929734632373 +0.004298593994462863 +0.0021927609923295677 +0.002435144007904455 +0.004082545987330377 +0.0023994509829208255 +0.00233567800023593 +0.004036418977193534 +0.0023166329774539918 +0.002444430021569133 +0.004136435018153861 +0.002477406000252813 +0.00413004300207831 +0.0022071939893066883 +0.002505358977941796 +0.004140164994169027 +0.002341279003303498 +0.002490825019776821 +0.004176739021204412 +0.0024294840113725513 +0.004058151011122391 +0.0023654789838474244 +0.002429237007163465 +0.004056981997564435 +0.0022607950086239725 +0.002461480995407328 +0.004031037009553984 +0.002309658011654392 +0.002371567999944091 +0.004248765006195754 +0.0023989490000531077 +0.0007902629731688648 +0.005556707008508965 +0.0007742900052107871 +0.003705869021359831 +0.004144212987739593 +0.0024600809847470373 +0.004039971012389287 +0.0022635200002696365 +0.0024194750003516674 +0.00411352000082843 +0.00220392199116759 +0.0024556529824621975 +0.004109687986783683 +0.002363057021284476 +0.002272764017106965 +0.004121700010728091 +0.0024686389951966703 +0.0021087830245960504 +0.004021205008029938 +0.002443247998598963 +0.004091718001291156 +0.0022235649812500924 +0.003147436014842242 +0.0034086060186382383 +0.0022727930045221 +0.002331738010980189 +0.004226901015499607 +0.002258440013974905 +0.004223886004183441 +0.002199142996687442 +0.0025650649913586676 +0.0040731600020080805 +0.0022938809997867793 +0.0023510959872510284 +0.00408467001398094 +0.0022607040009461343 +0.002483347023371607 +0.004087109002284706 +0.00223658699542284 +0.004198516020551324 +0.0022395430132746696 +0.0023277389991562814 +0.004163539008004591 +0.002243046008516103 +0.0024118009896483272 +0.004083533014636487 +0.002235444000689313 +0.002455914014717564 +0.00407292801537551 +0.0023459029907826334 +0.0023028339783195406 +0.004032961995108053 +0.0023607249895576388 +0.004173756984528154 +0.002290228003403172 +0.002512856008252129 +0.004109052009880543 +0.0022005469945725054 +0.0025701289996504784 +0.004094140022061765 +0.0021923009771853685 +0.0024969400255940855 +0.004084917978616431 +0.002264197013573721 +0.0023908620059955865 +0.004045271984068677 +0.0023064859851729125 +0.002440919983200729 +0.0040717030060477555 +0.0021610709954984486 +0.004157873976510018 +0.0021937649871688336 +0.0024175900034606457 +0.004136126983212307 +0.00227189197903499 +0.0024834460054989904 +0.004346456989878789 +0.0007008039974607527 +0.003912031999789178 +0.004129103996092454 +0.0022306600003503263 +0.002321481006219983 +0.004251194011885673 +0.002312052994966507 +0.004139934986596927 +0.002177766989916563 +0.002457590977428481 +0.004172223998466507 +0.0022219509992282838 +0.002379003999521956 +0.004111401998670772 +0.002298003004398197 +0.004231800994602963 +0.002320123981917277 +0.002354705997277051 +0.004105025000171736 +0.002147401013644412 +0.0023677829885855317 +0.004182725009741262 +0.002145469014067203 +0.002542441012337804 +0.0040733419882599264 +0.002223201998276636 +0.002573817007942125 +0.004132381989620626 +0.0022131129808258265 +0.0042673469870351255 +0.0021882010041736066 +0.0024024450103752315 +0.004142727004364133 +0.002269729011459276 +0.00242566000088118 +0.004195484012598172 +0.0021905979956500232 +0.002513237006496638 +0.0041544669948052615 +0.0022317759867291898 +0.0042366780107840896 +0.002385366999078542 +0.0022832429967820644 +0.004059365979628637 +0.002271781995659694 +0.002385914995102212 +0.004098561010323465 +0.0022492840071208775 +0.002469216997269541 +0.004087178996996954 +0.002264743990963325 +0.0024021540011744946 +0.004048472997965291 +0.0024843940045684576 +0.004058023012476042 +0.0023195359972305596 +0.0024712489976081997 +0.004184918012470007 +0.0021406959858722985 +0.0025156869960483164 +0.004109992005396634 +0.0022292539943009615 +0.0024434709921479225 +0.004039738007122651 +0.0023772759886924177 +0.0023817629844415933 +0.004114503011805937 +0.002381566009717062 +0.0040884830232243985 +0.0022674149950034916 +0.0023184650053735822 +0.00416774902259931 +0.0022052959830034524 +0.002386501000728458 +0.004223238007398322 +0.002213414991274476 +0.0024662570212967694 +0.0040444619953632355 +0.002409889013506472 +0.004088735993718728 +0.0023655160039197654 +0.0022741350112482905 +0.004098403005627915 +0.0022843560145702213 +0.0022294579830486327 +0.004279743006918579 +0.002220217982539907 +0.0024512560048606247 +0.004085666994797066 +0.002279636013554409 +0.0024231389979831874 +0.004187024023849517 +0.0007703610172029585 +0.0024447040050290525 +0.005394264997448772 +0.0022254560026340187 +0.004206475015962496 +0.0021954149997327477 +0.0024364429991692305 +0.004197130008833483 +0.0022004219936206937 +0.002402529993560165 +0.0041528570000082254 +0.0023755570000503212 +0.004114851995836943 +0.002339255006518215 +0.002365274995099753 +0.004102624021470547 +0.002230441983556375 +0.002458970993757248 +0.004079417994944379 +0.002207646000897512 +0.002443522011162713 +0.0041400829795747995 +0.002214915002696216 +0.002420281001832336 +0.004058824997628108 +0.0023579850094392896 +0.004138794000027701 +0.0021562329784501344 +0.0025244530115742236 +0.00406632901285775 +0.0023214519897010177 +0.002325987006770447 +0.004162792989518493 +0.002158496994525194 +0.002684059989405796 +0.004117821983527392 +0.002341515995794907 +0.0023029689909890294 +0.004231227008858696 +0.0007350149971898645 +0.002540157991461456 +0.00523388700094074 +0.0025323210284113884 +0.003998934000264853 +0.002192568004829809 +0.0025098999904002994 +0.0041189679759554565 +0.002233368984889239 +0.002371137001318857 +0.004158067982643843 +0.0023204780009109527 +0.0022706879826728255 +0.0041157050000038 +0.0023098120000213385 +0.004057715996168554 +0.002362250001169741 +0.00233207197743468 +0.004159621021244675 +0.0023634149983990937 +0.000924496998777613 +0.00538674698327668 +0.0022938509937375784 +0.0025262089911848307 +0.004062036983668804 +0.0022486599918920547 +0.004217887006234378 +0.0021286050032358617 +0.0024185200163628906 +0.004135591007070616 +0.002245993004180491 +0.0023357820173259825 +0.004203518998110667 +0.0022499230108223855 +0.0024475009995512664 +0.004134672984946519 +0.0023088740126695484 +0.002997055009473115 +0.0035147719900123775 +0.0023228749923873693 +0.004129022010602057 +0.002393724018475041 +0.0006992069829721004 +0.0037709419848397374 +0.0041197200189344585 +0.002361744991503656 +0.004059792991029099 +0.0023026909912005067 +0.0024105249904096127 +0.004159097996307537 +0.0022326430189423263 +0.002444801008095965 +0.004026245995191857 +0.002460860996507108 +0.0021995140123181045 +0.00418824001098983 +0.0022734109952580184 +0.0041274149843957275 +0.0023184259771369398 +0.0023880249937064946 +0.004162133991485462 +0.0023050000017974526 +0.00416113599203527 +0.0023814989835955203 +0.0008660220191814005 +0.0024093349929898977 +0.005384868010878563 +0.002484599011950195 +0.004061384010128677 +0.0023475389753002673 +0.0022759540006518364 +0.004127658001380041 +0.002312444004928693 +0.002369204012211412 +0.004156345996307209 +0.0023558969842270017 +0.002273531979881227 +0.004260518995579332 +0.0007673799991607666 +0.002532951009925455 +0.005466455011628568 +0.002198046015109867 +0.004156954004429281 +0.002299677988048643 +0.0024672159925103188 +0.004096468008356169 +0.0021495719847735018 +0.0025719130062498152 +0.004155057016760111 +0.002131121000275016 +0.004330494994064793 +0.0022457869781646878 +0.0022021839977242053 +0.004222303978167474 +0.0021351519972085953 +0.0024739769869484007 +0.004181400989182293 +0.002109694993123412 +0.0024656890018377453 +0.004171753011178225 +0.002159775991458446 +0.0025337350089102983 +0.003976767999120057 +0.002333662996534258 +0.0042113380040973425 +0.0021364779968280345 +0.0023415620089508593 +0.004221198003506288 +0.002180723997298628 +0.002360865008085966 +0.004115615010960028 +0.0021403789869509637 +0.0025578000058885664 +0.0040715200011618435 +0.002219668007455766 +0.002532685990445316 +0.004026284994324669 +0.002315076009836048 +0.00414042201009579 +0.002249094017315656 +0.0022921430063433945 +0.004158891999395564 +0.00221885897917673 +0.0024191179836634547 +0.00409009400755167 +0.002088716020807624 +0.0025320330169051886 +0.004047052003443241 +0.00214193100691773 +0.0025403590116184205 +0.004077969992067665 +0.0021589229872915894 +0.004303027002606541 +0.00224100099876523 +0.0023975299845915288 +0.004109986999537796 +0.002132718014763668 +0.0025282799906563014 +0.004085241002030671 +0.0021328429866116494 +0.0024715499894227833 +0.004105695988982916 +0.0022090999991633 +0.0023999410041142255 +0.00407832398195751 +0.00223892301437445 +0.004255570995155722 +0.002260234992718324 +0.0023051380121614784 +0.004102800012333319 +0.0021487869962584227 +0.0025284020230174065 +0.004099814017536119 +0.0021051270014140755 +0.0025546280085109174 +0.004039096005726606 +0.0021908289927523583 +0.0025172909954562783 +0.004054144985275343 +0.0022035630245227367 +0.0041779010207392275 +0.0021695949835702777 +0.0023394989839289337 +0.004168767016381025 +0.0022669319878332317 +0.002262969996081665 +0.004190250998362899 +0.002164713019737974 +0.002395296993199736 +0.0041658999980427325 +0.002142596000339836 +0.002550496981712058 +0.004086072003701702 +0.002162459015380591 +0.00429463098407723 +0.0022024740173947066 +0.002309665025677532 +0.004142905992921442 +0.002224066003691405 +0.002395830990280956 +0.004133831011131406 +0.0021217259927652776 +0.002499879978131503 +0.004099487006897107 +0.002152063010726124 +0.0025509919796604663 +0.004090494010597467 +0.002132405003067106 +0.0025085250090342015 +0.003993883001385257 +0.0022940609778743237 +0.004242655006237328 +0.002204008982516825 +0.0023252250102814287 +0.0041562989936210215 +0.00212299101985991 +0.0025283579889219254 +0.004082294006366283 +0.0021900739811826497 +0.0023866029805503786 +0.0041607790044508874 +0.0021553120168391615 +0.004335252015152946 +0.0022656650107819587 +0.0021768269944004714 +0.004458848008653149 +0.0021410049812402576 +0.00251559101161547 +0.004051458003232256 +0.0022003669873811305 +0.002378705015871674 +0.004172941000433639 +0.0021835590014234185 +0.0025169879954773933 +0.004076696990523487 +0.0021583010093308985 +0.00423779699485749 +0.0022665010183118284 +0.0022616279893554747 +0.004271217010682449 +0.002198652015067637 +0.002474306005751714 +0.004085836000740528 +0.0022515169985126704 +0.002402938000159338 +0.004216111992718652 +0.002175214991439134 +0.0025381020095665008 +0.004183995013590902 +0.0022287160099949688 +0.004337250982644036 +0.0023247440112754703 +0.002431405009701848 +0.00457640498643741 +0.0022370500082615763 +0.0024218710022978485 +0.004276974010281265 +0.0024876079987734556 +0.004418296011863276 +0.0024086899938993156 +0.002659106015926227 +0.004258019005646929 +0.002492449013516307 +0.004323367000324652 +0.0025400820013601333 +0.0028405100165400654 +0.004511093982728198 +0.0024335469934158027 +0.004535616986686364 +0.00211414200020954 +0.0025490859989076853 +0.004088634013896808 +0.0021071260271128267 +0.002615027013234794 +0.004166118014836684 +0.002305466012330726 +0.0022931690036784858 +0.004182072996627539 +0.00218185898847878 +0.004245576012181118 +0.002197729016188532 +0.002427021012408659 +0.004182505013886839 +0.0021103129838593304 +0.0025323440204374492 +0.004072665993589908 +0.0021584810165222734 +0.002440773998387158 +0.004177282011369243 +0.0022024840000085533 +0.0024289160210173577 +0.004062894004164264 +0.0022638000082224607 +0.00427604399737902 +0.0021766629943158478 +0.0024745019909460098 +0.004157162009505555 +0.002108190004946664 +0.0024631939886603504 +0.004226527002174407 +0.002216550026787445 +0.0024497919948771596 +0.00399038300383836 +0.0023452260065823793 +0.004299227002775297 +0.0021881040011066943 +0.0023634019889868796 +0.004149790009250864 +0.0021980039891786873 +0.0023796409950591624 +0.004187211015960202 +0.002197837980929762 +0.002390265988651663 +0.004137554002227262 +0.0022028999810572714 +0.0023953829950187355 +0.0041307810170110315 +0.00220503201126121 +0.0024172200064640492 +0.003996929997811094 +0.0023667339992243797 +0.004076611978234723 +0.002194914995925501 +0.0023933489865157753 +0.004175170004600659 +0.0022602399985771626 +0.002589256997453049 +0.0040520910115446895 +0.0022885120124556124 +0.00415660600992851 +0.0022729170159436762 +0.0024270959838759154 +0.004262848990038037 +0.0020575599919538945 +0.0025450990069657564 +0.004251256992574781 +0.0022030450054444373 +0.0024399439862463623 +0.004381546983495355 +0.002199719980126247 +0.0030597359873354435 +0.0033043120056390762 +0.00241404099506326 +0.004189528001006693 +0.0022209710150491446 +0.0022958040062803775 +0.00427613701322116 +0.0021626570087391883 +0.0025157679920084774 +0.004098959005204961 +0.002220846014097333 +0.004321871005231515 +0.0021517369896173477 +0.0024474259989801794 +0.0023250649974215776 +0.0041053720051422715 +0.0022516050084959716 +0.004273972997907549 +0.002207596000516787 +0.002415891009150073 +0.004142910009250045 +0.0021472929802257568 +0.0024522589810658246 +0.004218902991851792 +0.0022748219780623913 +0.0023563799913972616 +0.004078182973898947 +0.0023767640232108533 +0.004228628997225314 +0.0022199780214577913 +0.0025618229992687702 +0.004210794024402276 +0.0021551820100285113 +0.0024615520087536424 +0.003960252011893317 +0.0022590570151805878 +0.0024641220225021243 +0.004167474980931729 +0.002191887004300952 +0.004119849996641278 +0.002387995016761124 +0.0022463250206783414 +0.004164348996710032 +0.002204241987783462 +0.0023697159776929766 +0.004240907001076266 +0.002163775992812589 +0.002438880008412525 +0.004162886005360633 +0.0022335220128297806 +0.0022720390115864575 +0.004159078991506249 +0.0022821680177003145 +0.004181875992799178 +0.0021983360056765378 +0.0024391820188611746 +0.004156965005677193 +0.0021544690243899822 +0.0024153020058292896 +0.004314371006330475 +0.002183911972679198 +0.0023243880132213235 +0.004144758015172556 +0.0022696059895679355 +0.0023057340004015714 +0.004159347008680925 +0.0022932509891688824 +0.002344728010939434 +0.004104592982912436 +0.002190555998822674 +0.004276615974958986 +0.002140466996934265 +0.0024445420131087303 +0.004118826997000724 +0.0022970130085013807 +0.002340941980946809 +0.004153788991970941 +0.002257984015159309 +0.004174828005488962 +0.002332108997507021 +0.0022042340133339167 +0.004336868005339056 +0.0021750669984612614 +0.0024084649921860546 +0.004050056013511494 +0.0022550800058525056 +0.00247062198468484 +0.004178242001216859 +0.0021067190100438893 +0.0024351509928237647 +0.003989382996223867 +0.0023458320065401495 +0.0023825259995646775 +0.004032274009659886 +0.002233544015325606 +0.004131541994865984 +0.002350887021748349 +0.0023484340053983033 +0.004137338983127847 +0.0021884669840801507 +0.0023697270080447197 +0.004069391987286508 +0.002365740016102791 +0.002396906987996772 +0.004127747000893578 +0.0022355089895427227 +0.0023839290079195052 +0.004185236990451813 +0.00224646701826714 +0.004156643990427256 +0.002250288991490379 +0.002446046011755243 +0.004042256012326106 +0.0022803959727752954 +0.002451722975820303 +0.004035179008496925 +0.0022089970007073134 +0.002417997980955988 +0.004124887986108661 +0.002266461990075186 +0.004251321981428191 +0.0022845960047561675 +0.0022751720098312944 +0.0042703740182332695 +0.0020955180225428194 +0.002471514977514744 +0.004146335006225854 +0.002321424020919949 +0.002381361002335325 +0.004094619012903422 +0.002249732002383098 +0.003156785009196028 +0.003439697000430897 +0.0021973979892209172 +0.004279211978428066 +0.002191003004554659 +0.0024631030100863427 +0.004098612989764661 +0.0023129379842430353 +0.002309786999830976 +0.004187647980870679 +0.002216318011051044 +0.0024183930072467774 +0.004199029004666954 +0.0021922860178165138 +0.004253768012858927 +0.002392588008660823 +0.0022250439797062427 +0.004260109009919688 +0.002165907993912697 +0.0023456650087609887 +0.004084849992068484 +0.00230626598931849 +0.0025253930070903152 +0.004024916008347645 +0.0022652559855487198 +0.0023464789846912026 +0.003972823004005477 +0.002389500994468108 +0.002265863004140556 +0.004151513014221564 +0.0023921850079204887 +0.004242583992891014 +0.002143027988495305 +0.0024553610128350556 +0.004130751010961831 +0.0022285199956968427 +0.0024777800135780126 +0.004083854000782594 +0.002372643008129671 +0.004144827020354569 +0.0021939550060778856 +0.002288289018906653 +0.004244952986482531 +0.0021747120190411806 +0.002370194997638464 +0.004314566001994535 +0.0021563760237768292 +0.0024525919870939106 +0.003984556999057531 +0.0022456279839389026 +0.002414507995126769 +0.0041663140000309795 +0.0022083459771238267 +0.0024181060143746436 +0.0041233770025428385 +0.0021990509994793683 +0.004187384998658672 +0.00220238501788117 +0.002554745995439589 +0.00399271200876683 +0.0021986500069033355 +0.0025370400107931346 +0.004082815983565524 +0.0021677260228898376 +0.0025211659958586097 +0.004085188003955409 +0.002533835999201983 +0.0022850119858048856 +0.003970669989939779 +0.002481720002833754 +0.004120862984564155 +0.0024050080101005733 +0.0022313259833026677 +0.004231674014590681 +0.002242593007395044 +0.0023641849984414876 +0.004126454005017877 +0.0008069339965004474 +0.003784417000133544 +0.004123599006561562 +0.0023963760177139193 +0.0022125090181361884 +0.004196075984509662 +0.0023058869992382824 +0.004234174004523084 +0.002217175002442673 +0.002456924004945904 +0.0040833640086930245 +0.0023895580088719726 +0.0023937280056998134 +0.004094988980796188 +0.002352758019696921 +0.0041037980117835104 +0.0023406060063280165 +0.0023029089788906276 +0.004212458006804809 +0.002217519999248907 +0.0025168770225718617 +0.004015447018900886 +0.00240100099472329 +0.004122359998291358 +0.002303581975866109 +0.0022391009842976928 +0.0042175769922323525 +0.0023069590097293258 +0.0008357449842151254 +0.003635698987636715 +0.004158128023846075 +0.0023732970003038645 +0.0041193399811163545 +0.002192862011725083 +0.0024548200017306954 +0.0040800390124786645 +0.0023522429983131588 +0.0023913060140330344 +0.004039099992951378 +0.0023902140092104673 +0.002342228021007031 +0.004035241989186034 +0.0025778620038181543 +0.00400484399870038 +0.0021830800105817616 +0.002491024002665654 +0.0042374589829705656 +0.0023295709979720414 +0.0030430810002144426 +0.0035557759983930737 +0.002295080019393936 +0.004308875999413431 +0.002291640004841611 +0.002467581012751907 +0.004123614984564483 +0.0023886249982751906 +0.002365009015193209 +0.004227297991747037 +0.0021945190092083067 +0.0023917939979583025 +0.004234566004015505 +0.002477266010828316 +0.0021232909930404276 +0.004089969006599858 +0.0024479689891450107 +0.004216264991555363 +0.0022820309968665242 +0.002365830005146563 +0.004231375001836568 +0.0023906400019768625 +0.0023025030095595866 +0.004134460003115237 +0.0009078989969566464 +0.0024684689997229725 +0.005426489020464942 +0.002450388012221083 +0.002114926028298214 +0.004109785018954426 +0.0024032600049395114 +0.00412065300042741 +0.002309919975232333 +0.0023691990063525736 +0.004161015007412061 +0.0024198429891839623 +0.002367498993407935 +0.0040409149951301515 +0.0024831329938024282 +0.0021316400088835508 +0.004094648000318557 +0.002401250007096678 +0.0041289160144515336 +0.0021601880143862218 +0.0024245509994216263 +0.004179021983873099 +0.0021843219874426723 +0.0025153339956887066 +0.0041526030108798295 +0.0022777359990868717 +0.004322188993683085 +0.0022575399780180305 +0.002511730999685824 +0.004261233989382163 +0.002298940991749987 +0.0024190550029743463 +0.004312317003495991 +0.002463680983055383 +0.004622177017154172 +0.002678977994946763 +0.0028958810144104064 +0.004559107997920364 +0.0026723460177890956 +0.004379601974505931 +0.002225553005700931 +0.004199175018584356 +0.002470699982950464 +0.004015095008071512 +0.0023320179898291826 +0.0022716280072927475 +0.0042597650026436895 +0.002322800981346518 +0.004166240978520364 +0.002279473003000021 +0.0023862750094849616 +0.004336270998464897 +0.002259780012536794 +0.0024369129969272763 +0.004445872997166589 +0.002282808010932058 +0.004638587997760624 +0.0024592050176579505 +0.0026713959814514965 +0.004482199001358822 +0.0027492289955262095 +0.00434550698264502 +0.0021997349977027625 +0.002385539992246777 +0.004174352012341842 +0.0022633399930782616 +0.0009899559954646975 +0.00545474499813281 +0.00229562001186423 +0.002353198011405766 +0.0041332019900437444 +0.0022386979835573584 +0.004189706000033766 +0.0022723240253981203 +0.0025607270072214305 +0.003994836995843798 +0.0023565960000269115 +0.0008006099960766733 +0.004374070005724207 +0.003573102003429085 +0.0023612079967278987 +0.002297456987434998 +0.002364132000366226 +0.004051672003697604 +0.0008838240173645318 +0.0037087090022396296 +0.004164982005022466 +0.0023817199980840087 +0.0041912689921446145 +0.002223152987426147 +0.0023413430026266724 +0.004190325998933986 +0.0023086100118234754 +0.002337775978958234 +0.004087384993908927 +0.0008618060091976076 +0.0024533359974157065 +0.005741081986343488 +0.0026478430081624538 +0.00409650697838515 +0.0022621940006501973 +0.0025398819998372346 +0.004057395999552682 +0.002205447992309928 +0.002433702989947051 +0.004155591013841331 +0.0024460949935019016 +0.004028791998280212 +0.0022049800027161837 +0.0025367319758515805 +0.004091698996489868 +0.002118140982929617 +0.002482660987880081 +0.004093629017006606 +0.00225098998635076 +0.0024704700044821948 +0.004083662002813071 +0.0023729249951429665 +0.004016760998638347 +0.002369645982980728 +0.0025614280020818114 +0.004086092987563461 +0.0021868970070499927 +0.0025206840073224157 +0.004364508000435308 +0.002235148014733568 +0.0025257699890062213 +0.0039965949836187065 +0.002370050991885364 +0.004143350990489125 +0.0022142709931358695 +0.0023835949832573533 +0.004166366008576006 +0.0022245229920372367 +0.0023773270077072084 +0.004212866013403982 +0.002187923004385084 +0.0024699390050955117 +0.004097203986020759 +0.0022475619916804135 +0.0043418560235295445 +0.0024016039969865233 +0.002302993001649156 +0.004171373002463952 +0.0021872200013604015 +0.002518670982681215 +0.004094768984941766 +0.002218704001279548 +0.0024111790116876364 +0.0041404229996260256 +0.002295287005836144 +0.004038309998577461 +0.0022211649920791388 +0.0022387009812518954 +0.0024294689937960356 +0.004073821008205414 +0.0024443680013064295 +0.004084151005372405 +0.002312619995791465 +0.0025301169953309 +0.004034297016914934 +0.0021949399961158633 +0.0032031150185503066 +0.0034364020102657378 +0.002302490989677608 +0.004178478004178032 +0.002275330014526844 +0.002347244997508824 +0.0023194650129880756 +0.004144300008192658 +0.0023652130039408803 +0.004184682999039069 +0.0021812240011058748 +0.002384279010584578 +0.004188908002106473 +0.0022520269849337637 +0.002450992993544787 +0.004072338982950896 +0.002289410011144355 +0.004311191005399451 +0.0021704540122300386 +0.0023393250012304634 +0.004225793003570288 +0.0022251500049605966 +0.0012232130102347583 +0.005612224980723113 +0.002133158006472513 +0.0024724169925320894 +0.0040963639912661165 +0.0023880419903434813 +0.004086342989467084 +0.002351467002881691 +0.00237274999381043 +0.00427435600431636 +0.0022173100151121616 +0.002440086012938991 +0.004175931011559442 +0.0022610219893977046 +0.0023697050055488944 +0.004117374977795407 +0.0023295260034501553 +0.0024751849996391684 +0.004089549009222537 +0.0022893890272825956 +0.004185136000160128 +0.0021265409886837006 +0.002615993988001719 +0.004200705006951466 +0.002197306981543079 +0.00424983398988843 +0.002347664994886145 +0.002291868004249409 +0.002391640009591356 +0.004114070994546637 +0.002397773991106078 +0.004092076007509604 +0.002253779995953664 +0.002378154982579872 +0.004161149001447484 +0.0021473380038514733 +0.0024488829949405044 +0.004161760996794328 +0.0022738880070392042 +0.002342780993785709 +0.004184658988378942 +0.0022849090164527297 +0.0024163479974959046 +0.004016821010736749 +0.0024660640046931803 +0.0020890419837087393 +0.004312534991186112 +0.0022980239882599562 +0.004293035017326474 +0.0021616309823002666 +0.002562879992183298 +0.004118807992199436 +0.0022535739990416914 +0.0041255120013374835 +0.002319432998774573 +0.0008845670090522617 +0.002458577015204355 +0.005390791979152709 +0.0023696289863437414 +0.00403860499500297 +0.002305081026861444 +0.0023654350079596043 +0.00422529800562188 +0.0021651790011674166 +0.002518485998734832 +0.0041385899821761996 +0.002206756005762145 +0.0044130689930170774 +0.0021540359884966165 +0.0008498330134898424 +0.0037795839889440686 +0.0040863110043574125 +0.00231198500841856 +0.004308240982936695 +0.002250396995805204 +0.002467598009388894 +0.004265688010491431 +0.0023861340014263988 +0.004266576986992732 +0.0021830859768670052 +0.0024345070123672485 +0.0040207379788625985 +0.0021868640033062547 +0.002420139004243538 +0.0042262130009476095 +0.0020999250118620694 +0.0024567790096625686 +0.0041678779816720635 +0.002208593999966979 +0.0024028630286920816 +0.004222465999191627 +0.002386387001024559 +0.003993088990682736 +0.002434830996207893 +0.002143724006600678 +0.004363589017884806 +0.0022685499861836433 +0.002580261992989108 +0.004084817017428577 +0.0021968790097162127 +0.00244534999364987 +0.004004215006716549 +0.002401049976469949 +0.004173632012680173 +0.002166783990105614 +0.0024780759995337576 +0.00425174500560388 +0.0021360000246204436 +0.0024739769869484007 +0.004089460009709001 +0.0022737010149285197 +0.0024400999827776104 +0.004055764002259821 +0.0022758039995096624 +0.0011730300029739738 +0.005437351996079087 +0.0022551669972017407 +0.004683306004153565 +0.0022179539955686778 +0.0023647880007047206 +0.004067834990564734 +0.002243862982140854 +0.004312798992032185 +0.002306590002262965 +0.0023331929987762123 +0.004169677005847916 +0.002304705005371943 +0.002273532998515293 +0.004298816988011822 +0.002270594995934516 +0.002384516003075987 +0.0042709400004241616 +0.002239268011180684 +0.0024476090038660914 +0.004155069007538259 +0.0024466280010528862 +0.004293386009521782 +0.0021232459985185415 +0.0024929479986894876 +0.00409817899344489 +0.0021827390010003 +0.0024854220100678504 +0.004156523005804047 +0.0022101070208009332 +0.0024830499896779656 +0.004014734993688762 +0.002230055019026622 +0.004224459000397474 +0.002355981996515766 +0.0023862429952714592 +0.004125879000639543 +0.0021812930062878877 +0.0024312819878105074 +0.0041574579954613 +0.002227468998171389 +0.0024588730011601 +0.0040904280031099916 +0.0022507210087496787 +0.002489067002898082 +0.004157375020440668 +0.0022705579758621752 +0.002394195005763322 +0.004193077009404078 +0.0022544540115632117 +0.00411704697762616 +0.0021226419776212424 +0.002456663001794368 +0.004156464012339711 +0.002252443984616548 +0.002407901978585869 +0.004133757000090554 +0.0021963199833408 +0.0023542720009572804 +0.004403389000799507 +0.002301980013726279 +0.002289689000463113 +0.0042252379935234785 +0.0023969839967321604 +0.004003326001111418 +0.002128715015714988 +0.0025846259959507734 +0.004112012014957145 +0.0022634300112258643 +0.0025091959978453815 +0.004030570999020711 +0.002128888008883223 +0.0025463530037086457 +0.004072720999829471 +0.002406353014521301 +0.004132395988563076 +0.0022099420020822436 +0.0024598540039733052 +0.004107811022549868 +0.002236789994640276 +0.0023385839886032045 +0.004202548996545374 +0.002255611994769424 +0.002464032993884757 +0.004002386995125562 +0.002334163000341505 +0.004108566005015746 +0.0022185920097399503 +0.002560504013672471 +0.0040901269821915776 +0.0022316290123853832 +0.0032113390043377876 +0.003432217985391617 +0.0022862940095365047 +0.002400327008217573 +0.004025453003123403 +0.0023053030017763376 +0.004238942026859149 +0.0023368440160993487 +0.0023720249882899225 +0.004083308012923226 +0.00227551200077869 +0.002395289979176596 +0.004111627000384033 +0.002226307988166809 +0.0024037580005824566 +0.004085897002369165 +0.0023638040001969784 +0.004260667017661035 +0.0022490050178021193 +0.0023130289919208735 +0.002262310008518398 +0.004173527006059885 +0.0023390830028802156 +0.004165758000453934 +0.002236272004665807 +0.003196915000444278 +0.00337970198597759 +0.002242190996184945 +0.0024568469962105155 +0.0041094069893006235 +0.002328842005226761 +0.002395682007772848 +0.004162277007708326 +0.002242279995698482 +0.004136893985560164 +0.0023012209858279675 +0.002363744017202407 +0.0041382519993931055 +0.0022192909964360297 +0.0032275319972541183 +0.0033923900045920163 +0.002244536008220166 +0.0024407170130871236 +0.00403276999713853 +0.0023993000213522464 +0.004116368014365435 +0.002269156975671649 +0.0023315189755521715 +0.004139879019930959 +0.0021902959852013737 +0.0032945139973890036 +0.003316399990580976 +0.0022510090202558786 +0.0023252929968293756 +0.0041418379987590015 +0.002308546012500301 +0.002370761998463422 +0.004114103998290375 +0.002388633001828566 +0.00410143201588653 +0.00205337000079453 +0.0026382080104667693 +0.0041226370085496455 +0.0022293739893939346 +0.002454520988976583 +0.004072816984262317 +0.0022079730115365237 +0.0024488799972459674 +0.004207351012155414 +0.0023621850123163313 +0.0022494050208479166 +0.004210154991596937 +0.0024436529783997685 +0.004174909001449123 +0.0021962220198474824 +0.003149775991914794 +0.0033113309764303267 +0.0023768690007273108 +0.004283543996280059 +0.002290798001922667 +0.0022703470021951944 +0.004157477989792824 +0.002311949006980285 +0.0023087709851097316 +0.004214542015688494 +0.0021849350014235824 +0.0026043210236821324 +0.004159646981861442 +0.0022382590104825795 +0.002462931995978579 +0.004150422988459468 +0.002308555005583912 +0.004133779992116615 +0.0023000490036793053 +0.002409392996923998 +0.004007523995824158 +0.0022735870152246207 +0.0023759629984851927 +0.004082907020347193 +0.002174502005800605 +0.002465319004841149 +0.004115075018489733 +0.002247187017928809 +0.0023411029833368957 +0.004096163000212982 +0.002331327006686479 +0.004074174998095259 +0.00252848700620234 +0.0022893119894433767 +0.004076148004969582 +0.002181870018830523 +0.0024722680100239813 +0.004120598023291677 +0.002252435020636767 +0.0025394549884367734 +0.004087726003490388 +0.002271996025228873 +0.0024147249932866544 +0.004152370005613193 +0.0023393559968099 +0.004135822004172951 +0.002272974990773946 +0.002425882004899904 +0.004111732007004321 +0.002314021985512227 +0.002345897984923795 +0.0040826519834809005 +0.0022094229934737086 +0.00436381297186017 +0.002184905984904617 +0.002293013996677473 +0.004182698990916833 +0.0024317450006492436 +0.002339130995096639 +0.004104630002984777 +0.0022843420156277716 +0.002355324977543205 +0.004097531025763601 +0.0022337809787131846 +0.0024552250106353313 +0.0041115289786830544 +0.002340302977245301 +0.0023646149784326553 +0.004096001997822896 +0.0023124210129026324 +0.004265647003194317 +0.002184815995860845 +0.002454030007356778 +0.004072677984368056 +0.0022856379800941795 +0.002389897999819368 +0.004150680004386231 +0.0022407490178011358 +0.0011393679887987673 +0.005274361988995224 +0.002257751999422908 +0.0041873859881889075 +0.0022952730068936944 +0.002412717993138358 +0.004028747003758326 +0.0022427350049838424 +0.00236352501087822 +0.004137131996685639 +0.002304058987647295 +0.004031079995911568 +0.0023993589857127517 +0.004107479006052017 +0.0022491730051115155 +0.0042266169912181795 +0.0022799180005677044 +0.002276364015415311 +0.004203412012429908 +0.002276880986755714 +0.0023872760066296905 +0.002290492004249245 +0.004072290990734473 +0.0023299370077438653 +0.004069704009452835 +0.002299885993124917 +0.002439509000396356 +0.004320074018323794 +0.00222342400229536 +0.004225745011353865 +0.0022221280087251216 +0.0023371490242425352 +0.004206829995382577 +0.0022976679902058095 +0.00239027600036934 +0.004080934973899275 +0.0022607000137213618 +0.0024110040103551 +0.004106102016521618 +0.002264791022753343 +0.00436511798761785 +0.0008930299954954535 +0.003561397024895996 +0.0024339609954040498 +0.004010617994936183 +0.0009074280096683651 +0.003655022010207176 +0.004267095995601267 +0.0023639310093130916 +0.004083195992279798 +0.002198191999923438 +0.0031895670108497143 +0.003396425017854199 +0.002357110002776608 +0.00425021699629724 +0.00227842599269934 +0.002267495001433417 +0.004158105992246419 +0.002374484989559278 +0.0022515409800689667 +0.00406672601820901 +0.002289925003424287 +0.0023946299916133285 +0.004114009992918 +0.002217483997810632 +0.003236710006603971 +0.0033396259823348373 +0.0022126840194687247 +0.0024402430281043053 +0.004064918990479782 +0.0023473569890484214 +0.002314912009751424 +0.0040639670041855425 +0.0024452969955746084 +0.0040618740022182465 +0.0022586379782296717 +0.0023679859878029674 +0.0041503990069031715 +0.0022657649824395776 +0.0024777749786153436 +0.0039721939829178154 +0.00232400800450705 +0.0023905780108179897 +0.004015520011307672 +0.0023856120242271572 +0.004078752011992037 +0.0023015580081846565 +0.0023002630041446537 +0.0040865000046323985 +0.002282553003169596 +0.00238445500144735 +0.00404826199519448 +0.002257187996292487 +0.0025018810119945556 +0.003985563991591334 +0.0022255220101214945 +0.0024463500012643635 +0.004068086011102423 +0.002316827973118052 +0.004191559011815116 +0.002315301011549309 +0.0022840489982627332 +0.0041786830115597695 +0.0022681419795844704 +0.0023584309965372086 +0.004082077997736633 +0.0022662179835606366 +0.002437766990624368 +0.00416508800117299 +0.0023470119922421873 +0.004126838000956923 +0.002417890995275229 +0.0024981090100482106 +0.004430956993019208 +0.0024595909926574677 +0.002362211002036929 +0.0043530619877856225 +0.002450764994136989 +0.0043115099833812565 +0.0022703020076733083 +0.0023761430056765676 +0.004088792979018763 +0.002216352993855253 +0.0025499449984636158 +0.003912956017302349 +0.0022724080190528184 +0.0024689580022823066 +0.004074980999575928 +0.002248077013064176 +0.0024572350084781647 +0.004055694007547572 +0.0023891710152383894 +0.004167862993199378 +0.0021893309894949198 +0.002440319018205628 +0.004181824973784387 +0.00219456700142473 +0.0024164709902834147 +0.004044770990731195 +0.002411699009826407 +0.004314329999033362 +0.002327371999854222 +0.0007717260159552097 +0.002679025026736781 +0.005293283989885822 +0.0023543120187241584 +0.004117431992199272 +0.002212444000178948 +0.00255144399125129 +0.00403325300430879 +0.002329571987502277 +0.0023245009942911565 +0.0039551290101371706 +0.0024198039900511503 +0.0023455550253856927 +0.0041407560056541115 +0.0024450620112475008 +0.00404694999451749 +0.0024105909978970885 +0.0022424409980885684 +0.004287645977456123 +0.0021934079995844513 +0.002537046995712444 +0.004084085987415165 +0.002306789974682033 +0.002362392988288775 +0.004166911996435374 +0.000782470015110448 +0.0036694750015158206 +0.004119584016734734 +0.0023900940141174942 +0.0042467580060474575 +0.002281641005538404 +0.0024129330122377723 +0.004057847982039675 +0.0024003650178201497 +0.004245349002303556 +0.0022583529935218394 +0.0023460369848180562 +0.002361594990361482 +0.004086518019903451 +0.0025059260078705847 +0.004201233998173848 +0.002215584012446925 +0.0023573640210088342 +0.004146088991547003 +0.002202323987148702 +0.002461060998030007 +0.004137546988204122 +0.002276446990435943 +0.004277013998944312 +0.002276031009387225 +0.002411328023299575 +0.00396288899355568 +0.002259394997963682 +0.0023665000044275075 +0.004163442004937679 +0.00093585200374946 +0.0024751939927227795 +0.005413170001702383 +0.002325979992747307 +0.002358754980377853 +0.004148092004470527 +0.0024062760057859123 +0.004151145985815674 +0.0023176440154202282 +0.002371515001868829 +0.004031304008094594 +0.002266297989990562 +0.002318746002856642 +0.004209930018987507 +0.0021475960093084723 +0.002528652985347435 +0.004126187996007502 +0.0023912430042400956 +0.004160753975156695 +0.0023038229846861213 +0.002385744999628514 +0.004178803996182978 +0.0022734020021744072 +0.0023950469912961125 +0.004121531994314864 +0.002216958993813023 +0.0024348490114789456 +0.004117487987969071 +0.00245405500754714 +0.0007532550080213696 +0.005473039986100048 +0.0023524310090579093 +0.004110790992854163 +0.0023560210247524083 +0.002365251013543457 +0.0041627220052760094 +0.002112014015438035 +0.0024961180170066655 +0.004084883985342458 +0.002362040977459401 +0.0023019500076770782 +0.004065943998284638 +0.0022994249884504825 +0.004137073003221303 +0.0022845769999548793 +0.002286189002916217 +0.0041648369806353 +0.002335568016860634 +0.0023705570201855153 +0.004087011009687558 +0.0023112440248951316 +0.002403370977845043 +0.0040573579899501055 +0.0022516159806400537 +0.004261138004949316 +0.0023012989840935916 +0.002257004991406575 +0.00427640401176177 +0.002181340998504311 +0.0023531010083388537 +0.004242569993948564 +0.0021393269998952746 +0.002504667005268857 +0.004083106003236026 +0.00222565999138169 +0.0023396410106215626 +0.004247600008966401 +0.0022709949989803135 +0.002286572998855263 +0.004184313002042472 +0.002265627001179382 +0.004226540011586621 +0.0023608120100107044 +0.0022370010265149176 +0.00415189698105678 +0.0022628920269198716 +0.0024317520146723837 +0.004104330990230665 +0.002273447025800124 +0.002475824992870912 +0.00408179999794811 +0.00223950098734349 +0.00420247798319906 +0.0023224180040415376 +0.002325181005289778 +0.0022258959943428636 +0.004154673020821065 +0.0024954880063887686 +0.004108690016437322 +0.0022452439879998565 +0.003148662013700232 +0.003506031003780663 +0.002567523013567552 +0.0041116109932772815 +0.002278731990372762 +0.0022596530034206808 +0.004530219011940062 +0.002455993992043659 +0.003115972998784855 +0.0035259420110378414 +0.0022493389842566103 +0.004175110021606088 +0.002118181000696495 +0.002362043014727533 +0.004271337005775422 +0.002269563003210351 +0.0022932869906071573 +0.004148720996454358 +0.0022773419914301485 +0.002423177007585764 +0.004152904992224649 +0.0023381039791274816 +0.002375206007855013 +0.0041478600178379565 +0.002225977019406855 +0.004210990999126807 +0.0023680260055698454 +0.0022339799907058477 +0.0022029860119801015 +0.004186839010799304 +0.002267819014377892 +0.004136514005949721 +0.0022908709943294525 +0.0023027109855320305 +0.004214229993522167 +0.0022208359732758254 +0.0024303300015162677 +0.004062046995386481 +0.0022726469906046987 +0.004282287001842633 +0.0024194370198529214 +0.002325906010810286 +0.004135079012485221 +0.0022843780170660466 +0.0023969349858816713 +0.004077882011188194 +0.002210250007919967 +0.0032298010191880167 +0.0033433909993618727 +0.0022710699995514005 +0.002457511000102386 +0.0027647819952107966 +0.003805064014159143 +0.004191446001641452 +0.002293425000971183 +0.002356488985242322 +0.004095856013009325 +0.002236908010672778 +0.00242680698283948 +0.004102834995137528 +0.002260459994431585 +0.002347954985452816 +0.004117223987122998 +0.002290870004799217 +0.004290137003408745 +0.002225489995907992 +0.002339856990147382 +0.004126699990592897 +0.0022930930135771632 +0.002284502988914028 +0.004186920006759465 +0.0021878709958400577 +0.0024803490086924285 +0.004110120004042983 +0.0022304659942165017 +0.0024079269787762314 +0.003992893995018676 +0.002366448024986312 +0.0024002290156204253 +0.004098539997357875 +0.0023476959904655814 +0.004087908018846065 +0.002264625974930823 +0.00235349201830104 +0.004095836018677801 +0.002239719993667677 +0.002505648008082062 +0.004042467015096918 +0.002480507013387978 +0.004230227001244202 +0.0025040739856194705 +0.0023983040009625256 +0.004046643996844068 +0.002390940993791446 +0.0009622799989301711 +0.0055922140018083155 +0.002210070990258828 +0.0024377559893764555 +0.004067697998834774 +0.002320687985047698 +0.0023116420197766274 +0.004084921994945034 +0.0022696660016663373 +0.004175824025878683 +0.002331113995751366 +0.0022428969969041646 +0.004199539980618283 +0.002247421012725681 +0.0025869990058708936 +0.00415045500267297 +0.002283998008351773 +0.0024764570116531104 +0.004055501980474219 +0.0023970619949977845 +0.00401007998152636 +0.0024874649825505912 +0.002260245004436001 +0.0040819389978423715 +0.0021979970042593777 +0.0024702720111235976 +0.004083542997250333 +0.0022295539965853095 +0.0024941729789134115 +0.0040453200053889304 +0.0024211610143538564 +0.002161648008041084 +0.004111913003725931 +0.0023282170004677027 +0.004228739999234676 +0.002206942008342594 +0.002345993008930236 +0.004236928012687713 +0.0023423300008289516 +0.002318968006875366 +0.00419012998463586 +0.0022009219974279404 +0.0024397840024903417 +0.0041360439790878445 +0.0022891810222063214 +0.004015006998088211 +0.0023905249836388975 +0.0022441000037360936 +0.004155925998929888 +0.002182143012760207 +0.002488730999175459 +0.004289461008738726 +0.0022353559907060117 +0.002436514012515545 +0.004090502014150843 +0.0023740309989079833 +0.0021913970122113824 +0.004285879025701433 +0.0023611439974047244 +0.004376502998638898 +0.002239739987999201 +0.002473998989444226 +0.004157814983045682 +0.0022585749975405633 +0.0024573130067437887 +0.003905885008862242 +0.002492011000867933 +0.004279788990970701 +0.0021986429928801954 +0.0024747739953454584 +0.00403632500092499 +0.0023918059887364507 +0.002343747008126229 +0.004089357971679419 +0.002287695009727031 +0.0031329159974120557 +0.0034574279852677137 +0.0022450110118370503 +0.0023365480010397732 +0.004109827015781775 +0.0024389559985138476 +0.002319179999176413 +0.004138218006119132 +0.0022039940231479704 +0.004190007981378585 +0.0022325800091493875 +0.0023351999989245087 +0.0043613960151560605 +0.0022665929864160717 +0.004057844984345138 +0.0023754769936203957 +0.002260729990666732 +0.004188819992123172 +0.0023632129887118936 +0.0008528860053047538 +0.002536051004426554 +0.005398781999247149 +0.0022376549895852804 +0.00425417599035427 +0.0023266139905899763 +0.0030761559901293367 +0.003317669004900381 +0.002362001978326589 +0.0023782300122547895 +0.004073150979820639 +0.002388546010479331 +0.004130604997044429 +0.0022316240065265447 +0.0025437980075366795 +0.004096732998732477 +0.002457299007801339 +0.0022628779988735914 +0.0041567140142433345 +0.0023074159980751574 +0.002354947995627299 +0.00413916798424907 +0.002336671022931114 +0.004034398007206619 +0.0023048309958539903 +0.002489131991751492 +0.004057971003931016 +0.0024419769761152565 +0.000925350992474705 +0.0055156169983092695 +0.002239979978185147 +0.002401186997303739 +0.0041511029994580895 +0.0023023980029392987 +0.0024553360126446933 +0.004063856991706416 +0.0024587420048192143 +0.0040292940102517605 +0.0022712570207659155 +0.0023763799981679767 +0.004157485003815964 +0.0022938149922993034 +0.0024066059850156307 +0.004130382993025705 +0.0022963579976931214 +0.0008819120121188462 +0.005450791009934619 +0.002374274015892297 +0.004203884018352255 +0.0024093309766612947 +0.002339302998734638 +0.004022499022539705 +0.002350480994209647 +0.0023826580145396292 +0.004107748012756929 +0.0023050570162013173 +0.0011425750271882862 +0.0054897590016480535 +0.0006393789954017848 +0.0040193329914473 +0.004116044990951195 +0.00237378099700436 +0.004080002981936559 +0.002308866009116173 +0.0023950609902385622 +0.004092199000297114 +0.0023697710130363703 +0.0022876239963807166 +0.004157810006290674 +0.0009757299849297851 +0.0035718060098588467 +0.004204681987175718 +0.002376746997470036 +0.0041489409923087806 +0.0024185579968616366 +0.0023040389933157712 +0.004100642981939018 +0.002380908001214266 +0.002500314003555104 +0.004175807989668101 +0.002433635003399104 +0.00421456599724479 +0.002278644999023527 +0.002334438991965726 +0.004268185002729297 +0.0022501999919768423 +0.0024203430220950395 +0.004165293998084962 +0.002200002985773608 +0.0023837110202293843 +0.004205685982014984 +0.0022197980142664164 +0.00238817700301297 +0.004136087984079495 +0.0023164330050349236 +0.004203880002023652 +0.002173295011743903 +0.00248726099380292 +0.004133826005272567 +0.00236652500461787 +0.002726598992012441 +0.0041684460011310875 +0.002279934997204691 +0.004226337012369186 +0.0023029590083751827 +0.0023933530028443784 +0.004157942021265626 +0.0021543059847317636 +0.002507388999219984 +0.004169217019807547 +0.0022122139926068485 +0.0024598790041636676 +0.004155014990828931 +0.00221038400195539 +0.0024302910023834556 +0.004018177976831794 +0.0023462809913326055 +0.00427075699553825 +0.0022427859948948026 +0.0023204780009109527 +0.004341546999057755 +0.002295084996148944 +0.0022812480165157467 +0.004195824003545567 +0.0021613899734802544 +0.0025291019992437214 +0.004139164986554533 +0.0022548560227733105 +0.004207731020869687 +0.0024700380163267255 +0.0021125480125192553 +0.0042070380004588515 +0.00232537102419883 +0.0024086880148388445 +0.004114943993045017 +0.0022623080003540963 +0.002389952016528696 +0.004102228005649522 +0.002311986987479031 +0.004165628022747114 +0.0023253699764609337 +0.002265922987135127 +0.004181573982350528 +0.002194033993873745 +0.002490707003744319 +0.0041745360067579895 +0.0021533750114031136 +0.002429577987641096 +0.004208361002383754 +0.0022529880225192755 +0.002471179992426187 +0.004165649006608874 +0.002297669998370111 +0.0040951300179585814 +0.0023723159974906594 +0.0022459980100393295 +0.004234382999129593 +0.002178773982450366 +0.0023793799919076264 +0.004257721011526883 +0.002180371986469254 +0.002453494002111256 +0.0041283910104539245 +0.0024211080162785947 +0.00208827099413611 +0.0041991519974544644 +0.0022768870112486184 +0.004245176009135321 +0.0022042420168872923 +0.002598052000394091 +0.003943213989259675 +0.0022669770114589483 +0.0023762329947203398 +0.004077887017047033 +0.0023066849971655756 +0.0024671999854035676 +0.004118103999644518 +0.0022840870078653097 +0.00420195801416412 +0.0023000789806246758 +0.0023680480080656707 +0.004110657988348976 +0.0022572999878320843 +0.0010429239773657173 +0.005417560983914882 +0.002251705009257421 +0.0023934920027386397 +0.004135052993660793 +0.0021699369826819748 +0.003092950995778665 +0.0034501900081522763 +0.0022248949971981347 +0.002404983009910211 +0.004058816994074732 +0.002372510003624484 +0.004138340998906642 +0.0022154840116854757 +0.0023056079808156937 +0.004232035018503666 +0.002195662003941834 +0.0023880449880380183 +0.004204542987281457 +0.002246150019345805 +0.0024090709921438247 +0.004134488001000136 +0.002388244989560917 +0.004204301018035039 +0.0021677420008927584 +0.002412093977909535 +0.004221479000989348 +0.0022037950111553073 +0.0023806389945093542 +0.004224820004310459 +0.002190219995100051 +0.002458272996591404 +0.004143807978834957 +0.00222619398846291 +0.0024982549948617816 +0.004051693977089599 +0.002332144998945296 +0.004147384985117242 +0.002305974019691348 +0.00226091401418671 +0.00420045800274238 +0.002152842003852129 +0.0024889130145311356 +0.004047848982736468 +0.0022279360273387283 +0.0024429949990008026 +0.0041046569822356105 +0.0022417159925680608 +0.002510321995941922 +0.004029414005344734 +0.002285530004883185 +0.004141131998039782 +0.00221588701242581 +0.0025042220077011734 +0.004115199000807479 +0.0022108219854999334 +0.00245718500809744 +0.004070054012117907 +0.002315941994311288 +0.002407585008768365 +0.004214051994495094 +0.0009135209838859737 +0.003677066008094698 +0.004242990980856121 +0.0021722380188293755 +0.00411376598640345 +0.002310495008714497 +0.002527853997889906 +0.004126455023651943 +0.002252761012641713 +0.0024460169952362776 +0.004011534008895978 +0.0023068200098350644 +0.0042444779828656465 +0.002276026993058622 +0.002401668985839933 +0.004124589991988614 +0.0023832549923099577 +0.002395934017840773 +0.004141325014643371 +0.002233116014394909 +0.0024854729999788105 +0.004062007006723434 +0.001029225008096546 +0.003708084987010807 +0.004062966996571049 +0.0024830330221448094 +0.0022058789909351617 +0.004119019984500483 +0.0024227099784184247 +0.004100682999705896 +0.0022395289852283895 +0.0024269330024253577 +0.004261513007804751 +0.0020941900147590786 +0.004425507999258116 +0.0022808299981988966 +0.002346138993743807 +0.004474141984246671 +0.0022891949920449406 +0.0034267299924977124 +0.0032822180073708296 +0.002346516994293779 +0.0024756829952821136 +0.004090024012839422 +0.0022697589884046465 +0.004349088994786143 +0.0021482279989868402 +0.002295123995281756 +0.004219125985400751 +0.0022197980142664164 +0.002525192016037181 +0.004158994997851551 +0.0021976419957354665 +0.0024937760026659817 +0.004076315002748743 +0.00228592602070421 +0.0042119729914702475 +0.0021685569954570383 +0.002444654004648328 +0.004140467004617676 +0.002248156990390271 +0.0024369329912588 +0.004154417983954772 +0.0021138119918759912 +0.002523047005524859 +0.004064361011842266 +0.0023458350042346865 +0.004169570980593562 +0.002391209010966122 +0.002276699000503868 +0.004330661991843954 +0.002323364984476939 +0.0024526779889129102 +0.00426156900357455 +0.00216948299203068 +0.0024210039991885424 +0.004043800989165902 +0.002259442990180105 +0.002449375984724611 +0.00409862698870711 +0.002340940001886338 +0.004071324976393953 +0.002212819003034383 +0.002390645007835701 +0.00413362801191397 +0.0022994820028543472 +0.0023280910099856555 +0.004169531021034345 +0.0022033229761291295 +0.0024753169855102897 +0.004151603992795572 +0.0021783789852634072 +0.004283499991288409 +0.0022042409982532263 +0.0024825449800118804 +0.0041819259931799024 +0.002262793976115063 +0.0022959350026212633 +0.004117531992960721 +0.002345711982343346 +0.0025133089802693576 +0.004124180995859206 +0.0021941440063528717 +0.002462385018588975 +0.004076315992278978 +0.002279820997500792 +0.004124052997212857 +0.002378495002631098 +0.0023945430002640933 +0.004181583994068205 +0.0022676350199617445 +0.0023203880118671805 +0.004154836002271622 +0.0023213809763547033 +0.0024720460060052574 +0.003972195001551881 +0.002292824996402487 +0.004260673973476514 +0.002263656002469361 +0.0022560840006917715 +0.0042127990163862705 +0.0023174890084192157 +0.0023251080128829926 +0.004178152012173086 +0.0022769620118197054 +0.002440253010718152 +0.004100543999811634 +0.0024168650270439684 +0.002408127998933196 +0.004097732016816735 +0.002379953977651894 +0.004140824981732294 +0.002387314976658672 +0.0024570229870732874 +0.004315892001613975 +0.0023152850044425577 +0.0024533809919375926 +0.0046678700018674135 +0.0026361180061940104 +0.004675825999584049 +0.0021563280024565756 +0.002447090984787792 +0.004521131020737812 +0.0024339289811905473 +0.004364663996966556 +0.0022319599811453372 +0.002384885010542348 +0.0041598470124881715 +0.0021960900048725307 +0.0025021650071721524 +0.004149952990701422 +0.0022710989869665354 +0.004124909028178081 +0.00233308898168616 +0.0022423760092351586 +0.00439073599409312 +0.0022581939992960542 +0.0025574160099495202 +0.004134467017138377 +0.0023463010147679597 +0.002337648009415716 +0.004210978018818423 +0.002370229020016268 +0.002292696008225903 +0.004246925003826618 +0.000835637009004131 +0.003628103993833065 +0.004016824008431286 +0.00245814400841482 +0.003971594996983185 +0.002302167995367199 +0.002459617011481896 +0.004180799995083362 +0.0021056460100226104 +0.002523774019209668 +0.0040583979862276465 +0.002178649010602385 +0.0042070399795193225 +0.0023474430199712515 +0.002469817001838237 +0.0022453709971159697 +0.0038709929795004427 +0.00239937799051404 +0.004220206988975406 +0.0022403320181183517 +0.0024184469948522747 +0.004125547013245523 +0.002341304993024096 +0.002267934993142262 +0.004210866987705231 +0.0023855239851400256 +0.0040961790073197335 +0.0022462490014731884 +0.0025165340048260987 +0.004042991000460461 +0.002310323005076498 +0.002442320983391255 +0.004105450992938131 +0.002227201999630779 +0.0024600290053058416 +0.004067850008141249 +0.002308420982444659 +0.0041718400025274605 +0.0021984239865560085 +0.002497820998542011 +0.004045237990794703 +0.002168474020436406 +0.00242541401530616 +0.004164635989582166 +0.002322373999049887 +0.0024045120226219296 +0.004147836996708065 +0.002288115007104352 +0.002381554979365319 +0.004094238014658913 +0.002466882986482233 +0.004158658994128928 +0.0022060280025471 +0.00252055301098153 +0.004096006014151499 +0.0022258049866650254 +0.0024512380186934024 +0.0040802209987305105 +0.002293105993885547 +0.0022607489954680204 +0.004273983999155462 +0.0023180169810075313 +0.0023302650079131126 +0.004109197005163878 +0.0024247129913419485 +0.0022601030068472028 +0.004058795981109142 +0.002373117982642725 +0.004118679993553087 +0.002235621999716386 +0.0024294239992741495 +0.0042253890132997185 +0.0023277809959836304 +0.0024597320007160306 +0.003932207997422665 +0.002440056996420026 +0.0042126869957428426 +0.002189619990531355 +0.0025906800001394004 +0.0040246220014523715 +0.0022254500072449446 +0.0024679180060047656 +0.002848835982149467 +0.003552365000359714 +0.002427194995107129 +0.004093181021744385 +0.00228486699052155 +0.0022984610113780946 +0.004254316008882597 +0.002103639009874314 +0.004259829001966864 +0.002274252998176962 +0.0023368880210909992 +0.004152152017923072 +0.0022463670175056905 +0.0024745030095800757 +0.002866599999833852 +0.0022550249996129423 +0.002441121992887929 +0.005309306987328455 +0.002353566000238061 +0.00417106700479053 +0.0023711909889243543 +0.0023474289919249713 +0.004073582007549703 +0.0022084590164013207 +0.0024908720224630088 +0.004183671990176663 +0.002199461974669248 +0.002435204020002857 +0.004102591978153214 +0.0009718159853946418 +0.0036244869988877326 +0.004166166007053107 +0.002310291980393231 +0.004247970005962998 +0.0024234690063167363 +0.002179531002184376 +0.004180668009212241 +0.002221155009465292 +0.002445480989990756 +0.004122418002225459 +0.0022661080001853406 +0.004244720010319725 +0.0023169580090325326 +0.002312575001269579 +0.004172615997958928 +0.002251661993796006 +0.002387640008237213 +0.004172814020421356 +0.0022858479933347553 +0.002415032999124378 +0.0041394089930690825 +0.002210835024015978 +0.0024584640050306916 +0.0040950550173874944 +0.002453074004733935 +0.003969582001445815 +0.0023452469904441386 +0.0024389749742113054 +0.0041631420026533306 +0.0022750119969714433 +0.0023949859896674752 +0.004166960017755628 +0.0021930880029685795 +0.003173442994011566 +0.0034058140008710325 +0.0023166419996414334 +0.004246202006470412 +0.0023283130140043795 +0.0025076089950744063 +0.004154713999014348 +0.0021813010098412633 +0.0024661880161147565 +0.004106148000573739 +0.0023089000023901463 +0.002478088019415736 +0.004193925007712096 +0.0023466139973606914 +0.0007696250104345381 +0.00566168999648653 +0.0008927249873522669 +0.0024645990051794797 +0.005187325994484127 +0.0024836020020302385 +0.004166266007814556 +0.0023655729892197996 +0.002457233000313863 +0.004050359013490379 +0.002229440986411646 +0.0024666610115673393 +0.004225229000439867 +0.0023552310012746602 +0.004071530012879521 +0.0023149990011006594 +0.0023542149865534157 +0.004122343001654372 +0.0021829759934917092 +0.0024889610067475587 +0.004083167994394898 +0.0023201839940156788 +0.002435136993881315 +0.004099662008229643 +0.002345763990888372 +0.004111036978429183 +0.002367092005442828 +0.002273069985676557 +0.004223572992486879 +0.0021329220035113394 +0.002399709017481655 +0.004103123006643727 +0.0023038180079311132 +0.0023840880021452904 +0.004132470989134163 +0.0023291069956030697 +0.0023628449998795986 +0.00416751200100407 +0.002192871004808694 +0.004315135010983795 +0.002173534012399614 +0.0023895230260677636 +0.004100913996808231 +0.0022291339992079884 +0.0025664150016382337 +0.00405673700151965 +0.002347892994293943 +0.0023044130066409707 +0.004144457983784378 +0.0023785129887983203 +0.0041270090150646865 +0.0023941319959703833 +0.0021582279878202826 +0.0041865279781632125 +0.0022841650061309338 +0.0024689359997864813 +0.004136660019867122 +0.0023558310058433563 +0.0023241529997903854 +0.0040280569810420275 +0.002306031994521618 +0.0024306150153279305 +0.00409612400108017 +0.0022287479951046407 +0.002374241012148559 +0.004249090008670464 +0.002298679988598451 +0.004163681995123625 +0.0022159710060805082 +0.0024829229805618525 +0.004052495991345495 +0.002302976994542405 +0.0022972269798628986 +0.004200827999738976 +0.0023755359870847315 +0.0024708950077183545 +0.004601782013196498 +0.0008715889998711646 +0.005895709997275844 +0.001023554999846965 +0.00364417300443165 +0.0040822040173225105 +0.0023817600158508867 +0.0041901899967342615 +0.0024300799996126443 +0.002281763998325914 +0.0042409320012666285 +0.002109573018969968 +0.00244698699680157 +0.004108366993023083 +0.0023765450168866664 +0.0026026700215879828 +0.0041406890086364 +0.0024014629889279604 +0.004227861005347222 +0.0022326799808070064 +0.0024431140045635402 +0.0041870179993566126 +0.0022487780079245567 +0.0024162670015357435 +0.004121920996112749 +0.002346808003494516 +0.002422626013867557 +0.004042221000418067 +0.0022470990079455078 +0.004209164995700121 +0.0022362169984262437 +0.0024364299897570163 +0.004114033014047891 +0.0022557030024472624 +0.0024317200004588813 +0.004166886006714776 +0.0023113540082704276 +0.002374079020228237 +0.004174449015408754 +0.0023451340093743056 +0.004137445997912437 +0.0023578199907206 +0.002286068018293008 +0.0041951969906222075 +0.0023019950021989644 +0.0024368010053876787 +0.004186737001873553 +0.0022279050026554614 +0.0024723100068513304 +0.0041019709897227585 +0.0022691840131301433 +0.00434242602204904 +0.0022132520098239183 +0.0023161589924711734 +0.004167612001765519 +0.0022670729958917946 +0.0023776529997121543 +0.004134374990826473 +0.0022561229998245835 +0.002416468021692708 +0.00409947699517943 +0.0021951769886072725 +0.002437037997879088 +0.004061935003846884 +0.0009370739862788469 +0.0037547860119957477 +0.004067305009812117 +0.0023461959790438414 +0.004141448996961117 +0.002219841000624001 +0.0024395630171056837 +0.004164232988841832 +0.0023038159997668117 +0.002290562988491729 +0.004240554990246892 +0.002309419010998681 +0.0041600000113248825 +0.0023170830099843442 +0.0023558380198664963 +0.00413650501286611 +0.0022710470075253397 +0.002405870007351041 +0.004098398989299312 +0.0022567530104424804 +0.0024116440035868436 +0.004153879010118544 +0.0023265880008693784 +0.0022956160246394575 +0.004067695990670472 +0.0023588259937241673 +0.004242455004714429 +0.002325731999007985 +0.0022717230021953583 +0.004152235022047535 +0.002194215019699186 +0.0024999179877340794 +0.0040279139939229935 +0.0022382519964594394 +0.0024478620034642518 +0.004126389976590872 +0.0022231680050026625 +0.002415786002529785 +0.004160899989074096 +0.002228660974651575 +0.004203229007543996 +0.002265454997541383 +0.0023890390002634376 +0.004127839987631887 +0.0022117200132925063 +0.0024738179927226156 +0.00407221497152932 +0.0022325689787976444 +0.0024515560071449727 +0.004119104996789247 +0.0022891849803272635 +0.0023330620024353266 +0.004077919002156705 +0.002337465004529804 +0.004181119002168998 +0.0023097519879229367 +0.0022654059866908938 +0.004149568994762376 +0.0022597780043724924 +0.002291607001097873 +0.0041585809958633035 +0.0022394680127035826 +0.0025508429971523583 +0.004139506025239825 +0.0022908709943294525 +0.004190576990367845 +0.002260826004203409 +0.0022407570213545114 +0.004200827010208741 +0.00222219098941423 +0.0023574859951622784 +0.004216934001306072 +0.002154071000404656 +0.002391044981777668 +0.004160305019468069 +0.002202235977165401 +0.0023309109965339303 +0.00421785400249064 +0.002221558999735862 +0.00416914199013263 +0.0022902160126250237 +0.002228052995633334 +0.00419181797769852 +0.0022708030010107905 +0.002390372013906017 +0.004153870017034933 +0.0022012900153640658 +0.0024409360194113106 +0.004070312017574906 +0.0022105600219219923 +0.004319056024542078 +0.002264178008772433 +0.002263660018797964 +0.004160951008088887 +0.0022289360058493912 +0.002317220001714304 +0.004147053987253457 +0.0022565440158359706 +0.0023271089885383844 +0.0041095910128206015 +0.002209786995081231 +0.002477328001987189 +0.004094776988495141 +0.002230963989859447 +0.002453583001624793 +0.004084032989339903 +0.0021972479880787432 +0.002440156997181475 +0.00411985200480558 +0.0022381169837899506 +0.00412619998678565 +0.002225821983302012 +0.002429927990306169 +0.004069635004270822 +0.002157208014978096 +0.0023991170164663345 +0.004177627008175477 +0.002213747997302562 +0.002332765987375751 +0.004135622992180288 +0.002187963982578367 +0.00429220698424615 +0.0022176119964569807 +0.002358619007281959 +0.004366045002825558 +0.002162382996175438 +0.002331940020667389 +0.00415776701993309 +0.00224385698675178 +0.0025110509886872023 +0.0041493820026516914 +0.002187742997193709 +0.0024824179999995977 +0.004064073989866301 +0.002255855011753738 +0.004287155985366553 +0.0022014080022927374 +0.0023022450041025877 +0.004281614004867151 +0.0020836659823544323 +0.0024691970029380172 +0.004251761012710631 +0.00229086700710468 +0.0023790720151737332 +0.004136559000471607 +0.002395830990280956 +0.002373772003920749 +0.004153287009103224 +0.0023518659872934222 +0.0022622430115006864 +0.00413028200273402 +0.002571744000306353 +0.0040242889954242855 +0.002281477994984016 +0.0023581060231663287 +0.004124465020140633 +0.0022928979888092726 +0.002368996007135138 +0.004084690997842699 +0.0023373479780275375 +0.0023354779987130314 +0.0029051410092506558 +0.0036700040218420327 +0.0022719370026607066 +0.004053951008245349 +0.002541263005696237 +0.004012841003714129 +0.002317500999197364 +0.0023668780049774796 +0.004164154990576208 +0.002312127995537594 +0.0011552399955689907 +0.005279598000925034 +0.0023638299899175763 +0.004165446007391438 +0.0021896910038776696 +0.0025125510001089424 +0.004079418984474614 +0.002333343989448622 +0.0024423380091320723 +0.004102745006093755 +0.0022693270002491772 +0.0023890919983386993 +0.004155358008574694 +0.002401703008217737 +0.0040523910138290375 +0.002277396008139476 +0.0025238500093109906 +0.004105338011868298 +0.0022527020191773772 +0.0024838199897203594 +0.004179575975285843 +0.002255622996017337 +0.002391952002653852 +0.00412627900368534 +0.002347484027268365 +0.004166847007581964 +0.0023483319964725524 +0.0022398130095098168 +0.0042316299804951996 +0.002209182013757527 +0.002431132015772164 +0.00412567297462374 +0.00228701502783224 +0.0024440060078632087 +0.004137167998123914 +0.0023426760162692517 +0.0023683409963268787 +0.004104930005269125 +0.0022605789999943227 +0.0042241890041623265 +0.0021832410129718482 +0.002454786008456722 +0.004159644013270736 +0.0022436240105889738 +0.0023997249954845756 +0.004216012021061033 +0.002342317020520568 +0.0022732250217814 +0.004301932989619672 +0.0023895089980214834 +0.004167314997175708 +0.0021682580118067563 +0.002492573024937883 +0.004268114978913218 +0.002318543993169442 +0.0023506369907408953 +0.004173658991931006 +0.002348116016946733 +0.0010817910078912973 +0.005424521979875863 +0.0023137959942687303 +0.004174318019067869 +0.00221125700045377 +0.0024394049833063036 +0.004054211021866649 +0.002260032983031124 +0.0024589590029790998 +0.004118523997021839 +0.0022242169943638146 +0.002440700016450137 +0.00413553201360628 +0.002272338984766975 +0.0024136270221788436 +0.0028760879940818995 +0.0035419000196270645 +0.004163000005064532 +0.0022259379911702126 +0.002428742009215057 +0.004204997996566817 +0.0022425549977924675 +0.0024495089892297983 +0.004139997996389866 +0.0022549800050910562 +0.0023976530064828694 +0.0040713280031923205 +0.002293889003340155 +0.0041868650005199015 +0.0023496329959016293 +0.0024427309981547296 +0.004121520003536716 +0.0022746729955542833 +0.0024365150020457804 +0.004051565018016845 +0.0023328569950535893 +0.0023402809747494757 +0.004232497012708336 +0.0022927649843040854 +0.004147762985667214 +0.002290499018272385 +0.0022538409975823015 +0.004199855990009382 +0.0022287859756033868 +0.002468496997607872 +0.004063505999511108 +0.00232598400907591 +0.0023960749967955053 +0.004289450997021049 +0.0021483610034920275 +0.0024635519948787987 +0.0040995010058395565 +0.0010015349835157394 +0.00366190800559707 +0.0041431059944443405 +0.002351925999391824 +0.0042357319907750934 +0.0022315019741654396 +0.0024710670113563538 +0.004171262989984825 +0.002275699021993205 +0.002344459993764758 +0.004205578006803989 +0.0007314730028156191 +0.0038242919836193323 +0.004118600976653397 +0.0022384299954865128 +0.004172234999714419 +0.002204061980592087 +0.00245475402334705 +0.004109868023078889 +0.0022180399973876774 +0.002647233981406316 +0.004156810988206416 +0.0023241360031533986 +0.004227114986861125 +0.0023062639811541885 +0.002328360016690567 +0.004202164011076093 +0.0023989879991859198 +0.0009531459945719689 +0.005590275977738202 +0.0022763169836252928 +0.0041682599985506386 +0.002281019988004118 +0.0022454599966295063 +0.004176393995294347 +0.0023119280231185257 +0.002300619991729036 +0.004195881017949432 +0.002228909026598558 +0.002374339004745707 +0.004242855007760227 +0.0022286479943431914 +0.0024641990021336824 +0.00413004300207831 +0.002320614003110677 +0.0042763910023495555 +0.002328452013898641 +0.002280490007251501 +0.004191481973975897 +0.0022771049989387393 +0.002313762000994757 +0.00416125199990347 +0.0022081130009610206 +0.002390309004113078 +0.004221572016831487 +0.0022990060097072273 +0.002342569991014898 +0.004067636997206137 +0.002236960979644209 +0.002366665023146197 +0.004017039987957105 +0.0022971429862082005 +0.004290095996111631 +0.002259795001009479 +0.0023271989775821567 +0.0041762930050026625 +0.002296632999787107 +0.002300768013810739 +0.004192597989458591 +0.002240647008875385 +0.0023490820021834224 +0.004206829005852342 +0.0023242699971888214 +0.0023017500061541796 +0.004091660986887291 +0.002423619996989146 +0.0041789789975155145 +0.002186803991207853 +0.0024532899842597544 +0.004134885995881632 +0.0022196499921847135 +0.0024789199815131724 +0.004119110002648085 +0.0022966710093896836 +0.004425124992849305 +0.0023684950137976557 +0.0025144490064121783 +0.004161479009781033 +0.0022380070004146546 +0.002445603982778266 +0.004094410018296912 +0.002330768998945132 +0.002508634002879262 +0.0041438240150455385 +0.002161723008612171 +0.004317542974604294 +0.002259748987853527 +0.0022933649888727814 +0.00416775798657909 +0.002367915993090719 +0.0023500139941461384 +0.004135621013119817 +0.0021794850181322545 +0.0025011670077219605 +0.0041736760176718235 +0.0022682190174236894 +0.002530806988943368 +0.0041690430080052465 +0.0024615790171083063 +0.004123824997805059 +0.0021860130073037 +0.0024701670045033097 +0.004062905005412176 +0.0021965689957141876 +0.002624137996463105 +0.0041053319873753935 +0.0022152629971969873 +0.002540290995966643 +0.003953006002120674 +0.002303710993146524 +0.004153594985837117 +0.0023633780074305832 +0.002153679000912234 +0.0041916109912563115 +0.0021969859953969717 +0.002365117019508034 +0.004032425989862531 +0.0023711840040050447 +0.003994779021013528 +0.0022499639890156686 +0.002212882012827322 +0.0024584450002294034 +0.004111774993361905 +0.0023157419927883893 +0.004164801997831091 +0.002309926989255473 +0.0023198389972094446 +0.004081902006873861 +0.002189364022342488 +0.0024596319999545813 +0.004139644996030256 +0.0021631089912261814 +0.0024824169813655317 +0.004134454997256398 +0.0022270439949352294 +0.0024384190037380904 +0.004093054012628272 +0.002312742988578975 +0.0041596559749450535 +0.002337055979296565 +0.002328397997189313 +0.004093329014722258 +0.002283930021803826 +0.002291461976710707 +0.004262378002749756 +0.0021668599802069366 +0.0023921940010041 +0.0042000929825007915 +0.0022115700121503323 +0.004312210017815232 +0.002262812020489946 +0.002217029017629102 +0.004261772992322221 +0.002379562007263303 +0.002176371985115111 +0.004185426980257034 +0.002126301027601585 +0.0024649190017953515 +0.004212500993162394 +0.0021638880134560168 +0.002495271008228883 +0.004068141017341986 +0.0023904510017018765 +0.004173905996140093 +0.0023020020162221044 +0.0021935770055279136 +0.00415668697678484 +0.002314051002031192 +0.002467845974024385 +0.004210993996821344 +0.002176270994823426 +0.0024490359937772155 +0.004159898002399132 +0.002317302016308531 +0.004323915985878557 +0.0022257829841692 +0.002402862999588251 +0.004094368021469563 +0.0023221030132845044 +0.002297525992617011 +0.004088882997166365 +0.002212718012742698 +0.0024688889971002936 +0.004166736995102838 +0.002235535008367151 +0.002547935990151018 +0.004222741990815848 +0.002123869984643534 +0.004191979009192437 +0.002297753992024809 +0.002311613003257662 +0.0042473989888094366 +0.002192820014897734 +0.0023134950024541467 +0.0042127560009248555 +0.0021806120057590306 +0.002342788007808849 +0.004291496996302158 +0.002186776982853189 +0.0026668909995350987 +0.004014876991277561 +0.0023069310118444264 +0.004179364012088627 +0.0021834439830854535 +0.002314672979991883 +0.004201748000923544 +0.002183156000683084 +0.0023603650042787194 +0.004167610983131453 +0.002308906987309456 +0.0024550829839427024 +0.00403929699677974 +0.0022006549988873303 +0.002673933980986476 +0.004079970996826887 +0.0022130059951450676 +0.004190909006865695 +0.0022309919877443463 +0.0022731439967174083 +0.004305782989831641 +0.0021683919767383486 +0.00255421397741884 +0.004069407994393259 +0.0021960279846098274 +0.0025001039903145283 +0.004219294001813978 +0.0007891609857324511 +0.003693629987537861 +0.004291810997528955 +0.0021824470022693276 +0.00412086900905706 +0.002148375002434477 +0.0023761909978929907 +0.004304397996747866 +0.0021636669989675283 +0.0025024219939950854 +0.00415779699687846 +0.0021545419876929373 +0.00431021602707915 +0.002295863989274949 +0.002282150002429262 +0.004138162999879569 +0.002291855023941025 +0.002240465022623539 +0.00422360299853608 +0.0021267520205583423 +0.002460775984218344 +0.004223869007546455 +0.0021092829992994666 +0.002524187002563849 +0.00400673397234641 +0.002289942989591509 +0.004231850994983688 +0.0022748199990019202 +0.0022170089941937476 +0.004421435005497187 +0.002209819998824969 +0.002263016998767853 +0.00430082599632442 +0.0021977720025461167 +0.002240546979010105 +0.0042351400188636035 +0.0022265820007305592 +0.0024925890029408038 +0.00406196599942632 +0.0023050630115903914 +0.004162397002801299 +0.0022848069784231484 +0.002183723001508042 +0.0043142850045114756 +0.0021869299816899 +0.002537042979383841 +0.004141888988669962 +0.0022341949807014316 +0.002481802017427981 +0.0039961860165931284 +0.002252653008326888 +0.00427018798654899 +0.0022793130192440003 +0.002190626022638753 +0.004359927988843992 +0.0023060549865476787 +0.002310366980964318 +0.004162395023740828 +0.002208151010563597 +0.002272758982144296 +0.00433738500578329 +0.0021520049776881933 +0.0025417139986529946 +0.004053898010170087 +0.002272751007694751 +0.004208861995721236 +0.002406477986369282 +0.0020988160104025155 +0.004220967995934188 +0.0022019550087861717 +0.002274152997415513 +0.00430409298860468 +0.002204961987445131 +0.0025045109796337783 +0.004111813992494717 +0.002300313994055614 +0.004290195007342845 +0.0022570760047528893 +0.002427984989481047 +0.004007828014437109 +0.002369494002778083 +0.00225357900490053 +0.004154344002017751 +0.0021561229950748384 +0.002422310004476458 +0.004159158997936174 +0.0022354880056809634 +0.002448484010528773 +0.004102307022549212 +0.0022568010026589036 +0.004227614990668371 +0.0022094489831943065 +0.0023744910140521824 +0.004194945009658113 +0.0022248949971981347 +0.0009077650029212236 +0.0037855780101381242 +0.004039676015963778 +0.0024363109841942787 +0.004215220978949219 +0.0024137040018104017 +0.004725285980384797 +0.0023398410121444613 +0.002659441001014784 +0.00448632100597024 +0.002229644014732912 +0.0025379479920957237 +0.00425106700276956 +0.002317538019269705 +0.0042337949853390455 +0.0022469660034403205 +0.0023907889844849706 +0.004109180998057127 +0.0022298019903246313 +0.00260299802175723 +0.0041496490011923015 +0.0021867160103283823 +0.0024549629888497293 +0.004043213004479185 +0.002418885997030884 +0.004088838992174715 +0.0023462329991161823 +0.0023732979898341 +0.004090900998562574 +0.0023242949973791838 +0.0024312789901159704 +0.004085068008862436 +0.00220038098632358 +0.002481584990164265 +0.004105611005797982 +0.0024113499966915697 +0.0009254559990949929 +0.00574263499584049 +0.0006265900155995041 +0.0055882849846966565 +0.002244998002424836 +0.002343600004678592 +0.004326483991462737 +0.0022299820266198367 +0.0024657949979882687 +0.004084115993464366 +0.0009321990073658526 +0.0038409710105042905 +0.004064342996571213 +0.0022927509853616357 +0.004135477007366717 +0.0022899579780641943 +0.002291312994202599 +0.004101697006262839 +0.0022747339971829206 +0.002427589992294088 +0.004195272020297125 +0.002216138003859669 +0.0024675070017110556 +0.004028207011288032 +0.0023216449772007763 +0.002340197010198608 +0.0040148289990611374 +0.0023990180052351207 +0.004167384002357721 +0.002252297999802977 +0.0024087990168482065 +0.0042604359914548695 +0.0022401790192816406 +0.0024222040083259344 +0.004140770994126797 +0.0022626070131082088 +0.0024268430133815855 +0.004052520991535857 +0.002389665984082967 +0.0022348040074575692 +0.004123253020225093 +0.002384944004006684 +0.0041831690177787095 +0.0022637940128333867 +0.002455303998431191 +0.004216809989884496 +0.00221819500438869 +0.0024266830005217344 +0.003957153996452689 +0.002404655999271199 +0.0022523259976878762 +0.004158760013524443 +0.002279628999531269 +0.0041840210033115 +0.0023000119836069643 +0.0023998850083444268 +0.00410027799080126 +0.0021557710133492947 +0.002517066983273253 +0.0041537559882272035 +0.002234786021290347 +0.0025093659933190793 +0.003988220007158816 +0.002414222981315106 +0.0042297629988752306 +0.002322279993677512 +0.0022894900175742805 +0.004125588980969042 +0.0022699359979014844 +0.002447258011670783 +0.004089855996426195 +0.002173385990317911 +0.0024313959875144064 +0.004136950010433793 +0.002254440012620762 +0.004192439984763041 +0.002312387019628659 +0.002468250022502616 +0.004221005976432934 +0.002254021994303912 +0.002460352989146486 +0.004089769994607195 +0.0022419430024456233 +0.00437499099643901 +0.0022517019824590534 +0.002291009994223714 +0.0041746500064618886 +0.0022372030070982873 +0.0023854909813962877 +0.002284421003423631 +0.00403732800623402 +0.0024794500204734504 +0.004073486983543262 +0.0022736520040780306 +0.0031284349970519543 +0.0034191989980172366 +0.0021946159831713885 +0.003223765001166612 +0.0034166459809057415 +0.0022712979989591986 +0.004237279994413257 +0.0022079039772506803 +0.0024409279867541045 +0.0041026419785339385 +0.002224699012003839 +0.0025523130025248975 +0.004181496013188735 +0.0021742940007243305 +0.002421690005576238 +0.004147355008171871 +0.002192949003074318 +0.0042566579941194504 +0.0022212790208868682 +0.0022564660175703466 +0.004203960997983813 +0.0023139950062613934 +0.0023334760044235736 +0.004112739989068359 +0.0022439549793489277 +0.003139078995445743 +0.0033996749843936414 +0.0022050379775464535 +0.0024173590063583106 +0.0040700949903111905 +0.0022453230048995465 +0.0042347669950686395 +0.0023470640007872134 +0.0021658290061168373 +0.004182541975751519 +0.002281391993165016 +0.0023618539853487164 +0.004135050985496491 +0.0022480449988506734 +0.002330190996872261 +0.00419929000781849 +0.002261026995256543 +0.004283671005396172 +0.00227872101822868 +0.0022542999940924346 +0.0042021439876407385 +0.002530286001274362 +0.002148822008166462 +0.004163598001468927 +0.0021849219920113683 +0.0024729760189075023 +0.004346764006186277 +0.002152650005882606 +0.002508329984266311 +0.003956575004849583 +0.0023606890172231942 +0.004193799017230049 +0.0022814340190961957 +0.0022872500121593475 +0.0041649680060800165 +0.0022550199937541038 +0.0023952990013640374 +0.0042110380018129945 +0.0022872350236866623 +0.0031801099830772728 +0.0033799319935496897 +0.0022281229903455824 +0.004259295004885644 +0.0022774919925723225 +0.002321934007341042 +0.004102328995941207 +0.0024874730152077973 +0.002011892996961251 +0.004251093021593988 +0.002258004999021068 +0.0023039199877530336 +0.004220621020067483 +0.002129117026925087 +0.002442758996039629 +0.004140125995036215 +0.0022285570157691836 +0.004268271994078532 +0.0023003440001048148 +0.0023269949888344854 +0.004155292990617454 +0.0023302609915845096 +0.0021428189938887954 +0.004218086018227041 +0.0022947010002098978 +0.002328303991816938 +0.004205907986033708 +0.0021399009856395423 +0.002443208999466151 +0.0043723430135287344 +0.0022271799971349537 +0.004180686984909698 +0.0022867569932714105 +0.002246225019916892 +0.004287463001674041 +0.0022487819951493293 +0.002291865006554872 +0.004206448997138068 +0.0021907509944867343 +0.0024355020141229033 +0.00416114300605841 +0.002244063012767583 +0.0024198879837058485 +0.004108289984287694 +0.0022402909817174077 +0.004223455005558208 +0.002500951988622546 +0.002103637991240248 +0.0041615279915276915 +0.0022255799849517643 +0.00235469700419344 +0.004243711999151856 +0.0021743859979324043 +0.002493861975381151 +0.004170254978816956 +0.002265488001285121 +0.00427217801916413 +0.0022837519936729223 +0.0022539680066984147 +0.004206116020213813 +0.0022637499787379056 +0.0022925060184206814 +0.004144406004343182 +0.0022224780113901943 +0.002335330005735159 +0.004214757995214313 +0.0021408399916253984 +0.0024308649881277233 +0.004097082011867315 +0.002331224997760728 +0.0041895869944710284 +0.0022696460073348135 +0.0022689609904773533 +0.004162750003160909 +0.002289867989020422 +0.0022833840048406273 +0.004271921003237367 +0.0022467279923148453 +0.0023684579937253147 +0.004125520994421095 +0.0022294180234894156 +0.002495934983016923 +0.004057796992128715 +0.0022811859962530434 +0.0042245989898219705 +0.002263706992380321 +0.002280229004099965 +0.004220366012305021 +0.0022365240147337317 +0.0024071939988061786 +0.004152562003582716 +0.0021904770110268146 +0.0025145509862340987 +0.004093701980309561 +0.0022258509998209774 +0.004274720005923882 +0.0023490980092901736 +0.0022394590196199715 +0.004213754000375047 +0.0023112029884941876 +0.0022865660139359534 +0.004185459023574367 +0.00220309998258017 +0.0024638070026412606 +0.004064387001562864 +0.002218970999820158 +0.0042599940206855536 +0.0022967160039115697 +0.002297317987540737 +0.004251549980835989 +0.002179331990191713 +0.0022606279817409813 +0.00423400299041532 +0.002275657025165856 +0.002327877009520307 +0.004206248995615169 +0.0022004749916959554 +0.002381997008342296 +0.004152774985413998 +0.0023190610227175057 +0.004314121004426852 +0.0022094979940447956 +0.0023273350088857114 +0.004102003003936261 +0.0023261049936991185 +0.0022808319772593677 +0.004125726001802832 +0.00225331902038306 +0.0024433340004179627 +0.0041101880196947604 +0.0022504180087707937 +0.00311030400916934 +0.003367056982824579 +0.002187966019846499 +0.002411644993117079 +0.004069293005159125 +0.002226036012871191 +0.004235557978972793 +0.002303976012626663 +0.0022434989805333316 +0.004193656001007184 +0.0022661999973934144 +0.0022432790137827396 +0.004219851020025089 +0.002210133010521531 +0.002339340018806979 +0.004318583989515901 +0.002150528016500175 +0.004256604006513953 +0.0023673550167586654 +0.0023394880117848516 +0.004127214022446424 +0.002357750985538587 +0.002168389008147642 +0.004230032005580142 +0.0021773950138594955 +0.0023971500049810857 +0.004249213001457974 +0.0022124359966255724 +0.0024603549973107874 +0.004057706973981112 +0.002437708026263863 +0.004039141000248492 +0.002369998022913933 +0.0024352900218218565 +0.004068064008606598 +0.002256830019177869 +0.002228175988420844 +0.0042141420126426965 +0.002216891007265076 +0.00249256900860928 +0.0041446739924140275 +0.0021792939805891365 +0.00423227102146484 +0.0022741470020264387 +0.0022593629837501794 +0.004202037991490215 +0.002268532000016421 +0.002288007002789527 +0.004204074008157477 +0.0022568269923795015 +0.00245676698978059 +0.004033935983898118 +0.0022607980063185096 +0.00244570299400948 +0.004145590006373823 +0.0023056720092426986 +0.0041941509989555925 +0.002272436016937718 +0.002431203000014648 +0.004036483005620539 +0.0023173029767349362 +0.0023948419839143753 +0.004011474025901407 +0.002248528995551169 +0.0024332149769179523 +0.004100493009900674 +0.0022634970082435757 +0.0024690419959370047 +0.0039763810054864734 +0.0022745619935449213 +0.004145535989664495 +0.002272473997436464 +0.00231692599481903 +0.0041572309855837375 +0.002368857996771112 +0.0022289580083452165 +0.004086153989192098 +0.002296540013048798 +0.002389058005064726 +0.004157849994953722 +0.0022305609891191125 +0.003127270989352837 +0.003354094020323828 +0.002302691020304337 +0.0023101310071069747 +0.00413348400616087 +0.0023580930137541145 +0.004114979004953057 +0.002339519007364288 +0.0022098479967098683 +0.0042055829835589975 +0.002308732975507155 +0.0025174710026476532 +0.004090412985533476 +0.002262102992972359 +0.0031273780041374266 +0.0033623820054344833 +0.002323082007933408 +0.004141780984355137 +0.002339895989280194 +0.002374724019318819 +0.004106617998331785 +0.00234003399964422 +0.0023285129864234477 +0.0041449369746260345 +0.0022413709957618266 +0.0031590909929946065 +0.003346331010106951 +0.0022623630065936595 +0.00236435400438495 +0.00414491500123404 +0.0023311520053539425 +0.0022440030006691813 +0.004112049995455891 +0.002486548008164391 +0.004093938012374565 +0.002389050991041586 +0.002306289999978617 +0.004064030013978481 +0.002274831000249833 +0.0023565870069433004 +0.0041074279870372266 +0.002332447998924181 +0.0023711519897915423 +0.004045446985401213 +0.002344742009881884 +0.004131366993533447 +0.002317517006304115 +0.0023228730133268982 +0.004081199993379414 +0.0022572249872609973 +0.0023957339872140437 +0.004166058002738282 +0.00215306700556539 +0.0024167879892047495 +0.004148174979491159 +0.0023072180047165602 +0.004094136995263398 +0.0022880900069139898 +0.0023671899980399758 +0.004086188011569902 +0.0023810359998606145 +0.002117083000484854 +0.004187707992969081 +0.0021947740169707686 +0.0024990369856823236 +0.004041422012960538 +0.0022773619857616723 +0.002358650992391631 +0.0041244229942094535 +0.00221953698201105 +0.004248292010743171 +0.002254176011774689 +0.0023373129952233285 +0.004097402998013422 +0.002311044983798638 +0.002239422989077866 +0.004208214988466352 +0.0022630180174019188 +0.002336341014597565 +0.0041778470040299 +0.002261287998408079 +0.004375995980808511 +0.0021423170110210776 +0.0022603250108659267 +0.004212614992866293 +0.002366214001085609 +0.0021712890011258423 +0.004149827000219375 +0.0023992299975361675 +0.00216617900878191 +0.004142466001212597 +0.002254202001495287 +0.0023616630060132593 +0.004223427007673308 +0.002160963020287454 +0.0023352830030489713 +0.0041867130203172565 +0.0023570189950987697 +0.0042038259853143245 +0.0022473480203188956 +0.002382621983997524 +0.00409892198513262 +0.002344827982597053 +0.002216964989202097 +0.004215309018036351 +0.002198626985773444 +0.002476786990882829 +0.004092472983757034 +0.0022341940202750266 +0.004292653989978135 +0.0023684719926677644 +0.002211611979873851 +0.004225049982778728 +0.0022727549949195236 +0.00227462500333786 +0.004267454001819715 +0.0022846049978397787 +0.002302039007190615 +0.0042134260002058 +0.002277756982948631 +0.002275701001053676 +0.004193201020825654 +0.0022969399869907647 +0.002389305009273812 +0.0040229050209745765 +0.0024417139939032495 +0.004086757980985567 +0.002260487002786249 +0.0022648599988315254 +0.004273004014976323 +0.002162841003155336 +0.0025668260059319437 +0.004041060019517317 +0.0021727459970861673 +0.0024657150206621736 +0.00416255698655732 +0.0021578710002359003 +0.002398434007773176 +0.004053801007103175 +0.002283966023242101 +0.00421245998586528 +0.00235740898642689 +0.002340328006539494 +0.004177380003966391 +0.0022359800059348345 +0.0024279190110974014 +0.004128140979446471 +0.002245889016194269 +0.002473244006978348 +0.004038815997773781 +0.0022501650091726333 +0.0041095509950537235 +0.002269205986522138 +0.0022821449965704232 +0.0041914189932867885 +0.002387545973761007 +0.00213533200439997 +0.004214735992718488 +0.0021814270003233105 +0.0024635599984321743 +0.004138656018767506 +0.002197558991611004 +0.0023605960013810545 +0.0041956049972213805 +0.002232752973213792 +0.004202904994599521 +0.002339607977773994 +0.0023349080001935363 +0.004099796002265066 +0.002317534002941102 +0.0022948609839659184 +0.004171898006461561 +0.0022498019970953465 +0.002404416009085253 +0.004116049007279798 +0.002252654987387359 +0.0024338650109712034 +0.004107396001927555 +0.0022581450175493956 +0.004178738978225738 +0.0023328190145548433 +0.0023836290056351572 +0.0040984459919855 +0.0022667039884254336 +0.0023007300042081624 +0.00416252898867242 +0.002227955003036186 +0.0024020040000323206 +0.004122573998756707 +0.0022114950115792453 +0.0024329160223715007 +0.004164395009865984 +0.0024236099852714688 +0.004030634998343885 +0.0022406940115615726 +0.002294796024216339 +0.004216128989355639 +0.002242741989903152 +0.0023755590082146227 +0.004161955992458388 +0.0022155400074552745 +0.002377531985985115 +0.004338278988143429 +0.0023413359886035323 +0.004195487010292709 +0.0022809680085629225 +0.0022693669889122248 +0.004193753993604332 +0.0023272389953490347 +0.002272904006531462 +0.0041407240205444396 +0.002187780977692455 +0.0023788849939592183 +0.004197817004751414 +0.0023586309980601072 +0.002448527025990188 +0.004164087004028261 +0.0022076250170357525 +0.004178175993729383 +0.0024989670200739056 +0.002118389995303005 +0.004308309988118708 +0.002281938010128215 +0.003224193991627544 +0.003630266000982374 +0.0023186100006569177 +0.004281797009753063 +0.002353952993871644 +0.0025097299949266016 +0.004167723993305117 +0.0023233569809235632 +0.0024583729973528534 +0.004495408007642254 +0.0024335409980267286 +0.0046326720039360225 +0.002466459001880139 +0.0026088299928233027 +0.004342583008110523 +0.0022374760010279715 +0.004395002993987873 +0.002467526006512344 +0.0022832340036984533 +0.0042220589821226895 +0.0021415239898487926 +0.002470852981787175 +0.004143886995734647 +0.0021607879898510873 +0.002511621016310528 +0.004122728016227484 +0.0021351900068111718 +0.0024574879789724946 +0.004147489002207294 +0.002140992000931874 +0.004347623995272443 +0.0022773130040150136 +0.0021886570029892027 +0.004222780000418425 +0.002083375002257526 +0.002605679997941479 +0.004055101977428421 +0.002177326998207718 +0.0023886359995231032 +0.004198604001430795 +0.0022864209895487875 +0.002349609014345333 +0.004256284999428317 +0.0023933449992910028 +0.004043803986860439 +0.002347842004382983 +0.0022768800263293087 +0.00410842100973241 +0.0023162139987107366 +0.002404211991233751 +0.0041668360063340515 +0.002142632001778111 +0.004463989986106753 +0.0007190489850472659 +0.0036571529926732183 +0.002476015011779964 +0.003954487998271361 +0.0024370070022996515 +0.004385050997370854 +0.002321467996807769 +0.0023814410087652504 +0.004631368996342644 +0.0021756599890068173 +0.0025261279952246696 +0.004161427001236007 +0.0023289480013772845 +0.004150154010858387 +0.0022862300102133304 +0.002388442982919514 +0.0041700110014062375 +0.0022608040017075837 +0.0024526179768145084 +0.004063052998390049 +0.0022628599836025387 +0.00229555502301082 +0.00417844598996453 +0.0022495409939438105 +0.004252579004969448 +0.0022364879841916263 +0.002405987004749477 +0.00414997199550271 +0.0022920350020285696 +0.0023690719972364604 +0.004137423005886376 +0.002245273004518822 +0.004182372998911887 +0.0023785110097378492 +0.002219593006884679 +0.004239902016706765 +0.0022553929884452373 +0.0023234260152094066 +0.004344724002294242 +0.0021349950111471117 +0.0024297199852298945 +0.004293110017897561 +0.00218422498437576 +0.0024730070144869387 +0.004139469005167484 +0.0021872519864700735 +0.004147277999436483 +0.0022929449914954603 +0.002237323991721496 +0.00431963600567542 +0.0024144959752447903 +0.0007532899908255786 +0.004437308991327882 +0.0032798280008137226 +0.0022548269771505147 +0.004226744000334293 +0.0022047270031180233 +0.002410918998066336 +0.004122571990592405 +0.002328585018403828 +0.0025133370072580874 +0.004176283982815221 +0.0010337179992347956 +0.003756521997274831 +0.004079479986103252 +0.0024451730132568628 +0.004133639973588288 +0.0021282760135363787 +0.0025535709864925593 +0.004190903011476621 +0.002294059988344088 +0.004306747985538095 +0.002317400008905679 +0.0024077389971353114 +0.0041987049917224795 +0.002336489997105673 +0.0026017970230896026 +0.004463269986445084 +0.002433860005112365 +0.004458304989384487 +0.002269115997478366 +0.0024772970064077526 +0.004278882988728583 +0.002274528000270948 +0.0023702589969616383 +0.004162658005952835 +0.002224555006250739 +0.0024782530090305954 +0.003993766993517056 +0.0023280940076801926 +0.0022906129888724536 +0.004034522018628195 +0.0024804099812172353 +0.0043339319818187505 +0.002218163019279018 +0.002433876012219116 +0.004245693009579554 +0.0021144130150787532 +0.0025407499924767762 +0.004204341996228322 +0.002350496011786163 +0.004064623004524037 +0.0021885210007894784 +0.002431808999972418 +0.004113936010980979 +0.0022577800264116377 +0.002420062985038385 +0.004138879012316465 +0.0022880469914525747 +0.0023652759846299887 +0.004148047009948641 +0.0023408099950756878 +0.002464507007971406 +0.004106395004782826 +0.002302056993357837 +0.0041975869971793145 +0.0022725659946445376 +0.0023803729854989797 +0.004091194015927613 +0.0023094530042726547 +0.002325556008145213 +0.004148607986280695 +0.0022552069858647883 +0.002475992019753903 +0.004150505003053695 +0.0023152670182753354 +0.004186643986031413 +0.0022450039978139102 +0.0023236499982886016 +0.004126018000533804 +0.0021540549932979047 +0.0024642650096211582 +0.004124159982893616 +0.0023520560062024742 +0.0024488679773639888 +0.004051797994179651 +0.0021745040139649063 +0.002484638011083007 +0.00407745799748227 +0.0023464969999622554 +0.004157707997364923 +0.00231422099750489 +0.0024170669785235077 +0.0040393829985987395 +0.002224330004537478 +0.002525343996239826 +0.004031379998195916 +0.0022179090010467917 +0.0023200720024760813 +0.00423555399174802 +0.002407824998954311 +0.004134463990340009 +0.002232876984635368 +0.0024514130200259387 +0.004007239011116326 +0.0023015349870547652 +0.0023826610122341663 +0.00421683699823916 +0.0021894029923714697 +0.0024796510115265846 +0.004156314011197537 +0.002230676996987313 +0.002430574008030817 +0.0040222319948952645 +0.0022474940051324666 +0.0023503729898948222 +0.0040930400136858225 +0.0024522450112272054 +0.004069602990057319 +0.0023200419964268804 +0.0023883249959908426 +0.00406670497613959 +0.002279478998389095 +0.0023632069933228195 +0.004161218006629497 +0.002240653004264459 +0.004395127994939685 +0.0023280899913515896 +0.0022978399938438088 +0.004089393012691289 +0.0021931020019110292 +0.002514226012863219 +0.00409872000454925 +0.0022439640015363693 +0.002497642009984702 +0.004059102007886395 +0.0022474449942819774 +0.0025218800001312047 +0.004048150993185118 +0.002472177002346143 +0.004100607999134809 +0.0022364860051311553 +0.0023575279919896275 +0.004137246985919774 +0.0022880840115249157 +0.0023802409996278584 +0.004271884012268856 +0.002236444008303806 +0.0042332279845140874 +0.0023284070193767548 +0.0008572149963583797 +0.0036584310000762343 +0.0042482209973968565 +0.0022557859774678946 +0.004160214011790231 +0.0023216419795062393 +0.002287944982526824 +0.004152935987804085 +0.0022414659906644374 +0.002461107011185959 +0.004028853989439085 +0.002283767011249438 +0.0024154820130206645 +0.004195692017674446 +0.0007084779790602624 +0.002517150976927951 +0.005416875996161252 +0.002288613992277533 +0.0040416969859506935 +0.002268148004077375 +0.0023464529949706048 +0.004172155982814729 +0.0022621249954681844 +0.0023079439997673035 +0.004226118006044999 +0.002267885982291773 +0.0024901939905248582 +0.00404513900866732 +0.002421601995592937 +0.004143850994296372 +0.002267278003273532 +0.0023492919863201678 +0.004308652976760641 +0.0022023080091457814 +0.002475593995768577 +0.004165785008808598 +0.0006688080029562116 +0.003886082995450124 +0.004134182003326714 +0.002310819982085377 +0.00226470798952505 +0.00418919901130721 +0.0023087900190148503 +0.0041054500034078956 +0.0022909719846211374 +0.0023481950047425926 +0.00418190099298954 +0.002191771025536582 +0.002465326018864289 +0.003987812000559643 +0.0022791439841967076 +0.0023646159970667213 +0.0041214700031559914 +0.0023858049826230854 +0.004362186009529978 +0.002353685995331034 +0.002359347010497004 +0.004095342999789864 +0.002234712999779731 +0.0024179100000765175 +0.0041619059920776635 +0.0022210949973668903 +0.004242850991431624 +0.002299090992892161 +0.002350182010559365 +0.004248747980454937 +0.002267322997795418 +0.002486102981492877 +0.0041258469864260405 +0.002259572996990755 +0.0024764019763097167 +0.004113725997740403 +0.0022449610114563257 +0.0024289739958476275 +0.004038404993480071 +0.0023039859952405095 +0.002449613995850086 +0.004185352008789778 +0.0023222769959829748 +0.004091786016942933 +0.002231785998446867 +0.0024267870176117867 +0.004146377992583439 +0.0022807939967606217 +0.002462118020048365 +0.004132800007937476 +0.002159683994250372 +0.004275387997040525 +0.0022648209996987134 +0.0023730259854346514 +0.004102868988411501 +0.0022583540121559054 +0.0023401879880111665 +0.0041477799823042005 +0.002329140988877043 +0.002381734986556694 +0.004155550996074453 +0.002266369992867112 +0.004169320018263534 +0.002319332998013124 +0.0023270699894055724 +0.004209856997476891 +0.002234262996353209 +0.0022737739782314748 +0.004088961984962225 +0.0023361709900200367 +0.0023052100150380284 +0.004086394008481875 +0.0023268230143003166 +0.003171939984895289 +0.00331947099766694 +0.0022673970088362694 +0.004195424990030006 +0.0022506289824377745 +0.002336920006200671 +0.004184343008091673 +0.0021763000113423914 +0.0024049119965638965 +0.004180494986940175 +0.002185493998695165 +0.003243234008550644 +0.003342494979733601 +0.0022426570067182183 +0.002353407006012276 +0.0043033669935539365 +0.0023182019940577447 +0.00417978098266758 +0.0022573730093427002 +0.002358934987569228 +0.004076302982866764 +0.0023729579988867044 +0.0022430380049627274 +0.004114361974643543 +0.002325776993529871 +0.002339193015359342 +0.004116439988138154 +0.0022997380001470447 +0.0024251889844890684 +0.004049876995850354 +0.002266281982883811 +0.002545241004554555 +0.004107345012016594 +0.002395044022705406 +0.0041089970036409795 +0.0022901779739186168 +0.0024561430036555976 +0.004307927010813728 +0.0025912789860740304 +0.004122078011278063 +0.0023018729989416897 +0.002472066000336781 +0.00225229500210844 +0.0041496880003251135 +0.002317068981938064 +0.004051916010212153 +0.0023704019840806723 +0.0023838700144551694 +0.004079903999809176 +0.00225593798677437 +0.002505000011296943 +0.004080432991031557 +0.002366434026043862 +0.0041605629958212376 +0.002298200997756794 +0.0023152259818743914 +0.004163420991972089 +0.002255988016258925 +0.002346288994885981 +0.004117838019737974 +0.0022763540036976337 +0.002422018995275721 +0.00412870102445595 +0.0021437419927679002 +0.004320362000726163 +0.002281371009303257 +0.002288182993652299 +0.004064332984853536 +0.0023716310097370297 +0.0022241640253923833 +0.004188512975815684 +0.0022212379844859242 +0.0023794849985279143 +0.00430980499368161 +0.0022117699845694005 +0.0024679759808350354 +0.003982785012340173 +0.002342780993785709 +0.004142890014918521 +0.0022182769898790866 +0.0023551220074295998 +0.004183550016023219 +0.0022489959956146777 +0.002321724983630702 +0.004116672003874555 +0.002211351995356381 +0.0026190810021944344 +0.004171626002062112 +0.002265792019898072 +0.002601729007437825 +0.004069137998158112 +0.00239999100449495 +0.0039891240012366325 +0.002327885013073683 +0.0024103850009851158 +0.004208096012007445 +0.002141590026440099 +0.002386890002526343 +0.004208547004964203 +0.0022378190187737346 +0.0024477600236423314 +0.0041921660013031214 +0.002281850000144914 +0.004189222992863506 +0.002385551983024925 +0.0022009050007909536 +0.004227978002745658 +0.002135416987584904 +0.0025448889937251806 +0.004170035012066364 +0.0021977830037940294 +0.0025308559997938573 +0.004291069024475291 +0.0022163650137372315 +0.004233975021634251 +0.002211484999861568 +0.0024014180235099047 +0.004164765996392816 +0.002216177002992481 +0.0024260469945147634 +0.004104118997929618 +0.0022042799973860383 +0.0033168320078402758 +0.0033180319878738374 +0.002181783987907693 +0.00254098599543795 +0.004014535981696099 +0.002335044991923496 +0.004110204987227917 +0.002236772998003289 +0.0023207349877338856 +0.0041252899973187596 +0.002299682004377246 +0.0022838519944343716 +0.004219278984237462 +0.0022342939919326454 +0.0024033900117501616 +0.004133362992433831 +0.002251447003800422 +0.002494404005119577 +0.004072427982464433 +0.002219888992840424 +0.004261472990037873 +0.0024062760057859123 +0.00206648200401105 +0.004170897998847067 +0.0021947179920971394 +0.0023636539990548044 +0.004268741991836578 +0.002227580000180751 +0.002432683017104864 +0.004094706993782893 +0.0022968589910306036 +0.004174072004389018 +0.0022874999849591404 +0.0023606519971508533 +0.004076801997143775 +0.0023689590161666274 +0.002306771988514811 +0.0040852699894458055 +0.0022123120143078268 +0.0025908649840857834 +0.004325210000388324 +0.0021161249896977097 +0.0022551190049853176 +0.004192162014078349 +0.002378119999775663 +0.004198549024295062 +0.0022841239988338202 +0.0021545409981627017 +0.004170166997937486 +0.002261003013700247 +0.002279462991282344 +0.004178323986707255 +0.002252048027003184 +0.0024022720172069967 +0.004134843009524047 +0.0022337560076266527 +0.004253633989719674 +0.002310303010744974 +0.002349563001189381 +0.0041257700067944825 +0.0023021149972919375 +0.0023846449912525713 +0.004076624987646937 +0.00217182602500543 +0.002420239005004987 +0.004135396011406556 +0.0022561319929081947 +0.0024137430009432137 +0.004113338014576584 +0.002217071014456451 +0.004189144994597882 +0.002271301986183971 +0.0023105230065993965 +0.004321050975704566 +0.002335910015972331 +0.0022873629932291806 +0.004166629019891843 +0.002263268019305542 +0.0024922299780882895 +0.004135014023631811 +0.002136686001904309 +0.002563536982052028 +0.003963766997912899 +0.002366097003687173 +0.004195370012894273 +0.002297597995493561 +0.0023578130058012903 +0.004188830993371084 +0.0021585419890470803 +0.002282340981764719 +0.004168783983914182 +0.0021985330095048994 +0.002520042995456606 +0.004066108987899497 +0.002318743005162105 +0.002445237012580037 +0.004051816009450704 +0.0022513080039061606 +0.004209373000776395 +0.002320808998774737 +0.0022330880165100098 +0.004079321981407702 +0.002249262004625052 +0.002403666003374383 +0.0040797750116325915 +0.0022142620000522584 +0.003227623994462192 +0.0034395550028420985 +0.002114609000273049 +0.0023471780004911125 +0.004234793013893068 +0.0022824929910711944 +0.004204750992357731 +0.0024337559880223125 +0.0022214199998416007 +0.004177070019068196 +0.0022143340029288083 +0.0022210869938135147 +0.0043572850117925555 +0.0022213390038814396 +0.0024325760023202747 +0.004091337992576882 +0.002163826022297144 +0.004273595986887813 +0.0023069549934007227 +0.0022775770048610866 +0.0041666849865578115 +0.0023858179920352995 +0.0021325229899957776 +0.004149640997638926 +0.0022105330135673285 +0.0024138870066963136 +0.004202668002108112 +0.0022210390015970916 +0.002405653998721391 +0.00415228700148873 +0.0022569689899683 +0.004195932007860392 +0.0023218940186779946 +0.002320569008588791 +0.004158525000093505 +0.0023436099872924387 +0.0022364869946613908 +0.004388950008433312 +0.0022320790158119053 +0.0025118759949691594 +0.004070563998539001 +0.0022450189862865955 +0.0024055339745245874 +0.004129123000893742 +0.002273750986205414 +0.004180961987003684 +0.0023903209948912263 +0.0021549550001509488 +0.004127305990550667 +0.002293791010743007 +0.0023255589767359197 +0.004151232016738504 +0.002280997985508293 +0.0023583759902976453 +0.004164838988799602 +0.002275589999044314 +0.0023862110101617873 +0.0040938179881777614 +0.002224282012321055 +0.004168938001384959 +0.0022963789815548807 +0.0022695650113746524 +0.004159902018727735 +0.0022298329859040678 +0.0024660569906700402 +0.0041065690165851265 +0.0023124939762055874 +0.002449555991915986 +0.004049709998071194 +0.002337378973606974 +0.004218115995172411 +0.0022895839938428253 +0.0023434969771187752 +0.004193000990198925 +0.0022839359880890697 +0.002164699020795524 +0.004082577012013644 +0.0022379060101229697 +0.0024192039854824543 +0.0041326179925818 +0.002210411010310054 +0.003251117013860494 +0.003350888000568375 +0.0021875009988434613 +0.00429137799073942 +0.002181121992180124 +0.002359139994950965 +0.004187398997601122 +0.002319200022611767 +0.002317664009751752 +0.00414805201580748 +0.002184276992920786 +0.0024179639876820147 +0.004128675995161757 +0.00228644598973915 +0.0023956669901963323 +0.004023043991765007 +0.0023570990015286952 +0.0041986359865404665 +0.0023309240059461445 +0.002331601979676634 +0.004146132996538654 +0.00221016799332574 +0.0022384249896276742 +0.004273831989848986 +0.0021528080105781555 +0.0023948489979375154 +0.00418334300047718 +0.0021998050215188414 +0.0024141920148395 +0.004129637993173674 +0.0022730189957655966 +0.0042152210080530494 +0.0022811960079707205 +0.002192496001953259 +0.004208514001220465 +0.0023132929927669466 +0.0024277479969896376 +0.004027335991850123 +0.0021841879934072495 +0.002403215999947861 +0.0041317509894724935 +0.0022563420061487705 +0.0024731020093895495 +0.004152378998696804 +0.002361574996029958 +0.004160365991992876 +0.0022799959988333285 +0.0023611469950992614 +0.004156121023697779 +0.002151331980712712 +0.002434105990687385 +0.004227459983667359 +0.002145628008292988 +0.0023839770001359284 +0.004165215999819338 +0.0022026809747330844 +0.004259220993844792 +0.0022479970066342503 +0.0023044389963615686 +0.0042614870180841535 +0.0021651959978044033 +0.002360737998969853 +0.004236187000060454 +0.0024198359751608223 +0.0023468220024369657 +0.004481225012568757 +0.0022285870218183845 +0.004136397008551285 +0.002416889008600265 +0.0024003910075407475 +0.004450829001143575 +0.0024450990022160113 +0.002467420999892056 +0.0042290129931643605 +0.0022727389878127724 +0.00420596799813211 +0.002251784986583516 +0.0024716669868212193 +0.004095039010280743 +0.0023538889945484698 +0.0023398489865940064 +0.004154130001552403 +0.0021881590073462576 +0.0032068919972516596 +0.003313085006084293 +0.0022554680181201547 +0.0024909759813454 +0.004053830984048545 +0.0022748509945813566 +0.0024292920134030282 +0.004121862992178649 +0.002295977988978848 +0.004112750990316272 +0.002251052006613463 +0.002282208006363362 +0.004185995989246294 +0.002207537996582687 +0.002464346995111555 +0.004243302013492212 +0.002300546009792015 +0.0024921589938458055 +0.004046982008730993 +0.002339564001886174 +0.004130327986786142 +0.0023887360002845526 +0.002142223995178938 +0.004214040993247181 +0.0022360839939210564 +0.002382241014856845 +0.0041595860093366355 +0.002173967019189149 +0.002497532987035811 +0.004137240001000464 +0.0021956469863653183 +0.0025607070128899068 +0.004056458012200892 +0.002380402002017945 +0.004099459998542443 +0.0022331540239974856 +0.0024652839929331094 +0.0041797680023591965 +0.0021448140032589436 +0.0031982679793145508 +0.0034910590038634837 +0.002190097002312541 +0.0025138510100077838 +0.0041170270123984665 +0.0023310539836529642 +0.004111272020963952 +0.0023426040133927017 +0.0022595780028495938 +0.004178672999842092 +0.0022374050167854875 +0.0022542160004377365 +0.00424207400646992 +0.002257013024063781 +0.002459064999129623 +0.00416360201779753 +0.002258836990222335 +0.004208805010421202 +0.0023324200010392815 +0.002386793988989666 +0.004047393013024703 +0.002096921991324052 +0.0024720800283830613 +0.004155793023528531 +0.0021944140025880188 +0.002424944017548114 +0.004165437014307827 +0.002144444006262347 +0.002544052986195311 +0.004129547014599666 +0.002352487004827708 +0.004165663995081559 +0.0024312169989570975 +0.0020763310021720827 +0.0042204939818475395 +0.0022417989966925234 +0.00224087099195458 +0.004280594002921134 +0.0022468730167020112 +0.002548819000367075 +0.004095414013136178 +0.002186257974244654 +0.002472739986842498 +0.004180447984253988 +0.002358407014980912 +0.004130227986024693 +0.002302528009749949 +0.002395162999164313 +0.004212025989545509 +0.0021938039863016456 +0.0032360079931095243 +0.003343988995766267 +0.002140220021829009 +0.004379407997475937 +0.002277615014463663 +0.00227531700511463 +0.00419700299971737 +0.0022274899820331484 +0.0024176950100809336 +0.004073358984896913 +0.002262701018480584 +0.0024309830041602254 +0.004136920004384592 +0.0021935469994787127 +0.00435344799188897 +0.002255621977383271 +0.0022555750038009137 +0.0023853349848650396 +0.00414237700169906 +0.002438769006403163 +0.0020937879744451493 +0.004097778000868857 +0.002331830997718498 +0.004169537016423419 +0.0021927790076006204 +0.0026769079850055277 +0.004096554999705404 +0.002243349008494988 +0.0024210329866036773 +0.004340343992225826 +0.0008464109851047397 +0.003644051990704611 +0.004212299012579024 +0.0021910149953328073 +0.004181130992947146 +0.002232986007584259 +0.0024424840230494738 +0.004088357993168756 +0.0022291610075626522 +0.004301895009120926 +0.0022520490165334195 +0.002229773992439732 +0.004296465020161122 +0.0024342969991266727 +0.002283284004079178 +0.004213120992062613 +0.002242933987872675 +0.002394663984887302 +0.0040485039935447276 +0.0023090460163075477 +0.0022199640225153416 +0.004180982999969274 +0.002309328003320843 +0.0023131310008466244 +0.004035185003885999 +0.0024199860054068267 +0.004192797990981489 +0.0023698369914200157 +0.0021705190010834485 +0.004212931002257392 +0.0022297920077107847 +0.0023740299802739173 +0.0040926180081442 +0.0022194490011315793 +0.0031670969910919666 +0.0035055949992965907 +0.002169202984077856 +0.0023494640190619975 +0.004239300003973767 +0.002216115011833608 +0.0022402589966077358 +0.004185604979284108 +0.0023535910004284233 +0.004149258020333946 +0.0021447910112328827 +0.0025048840034287423 +0.0040674439806025475 +0.0022848649823572487 +0.002480291004758328 +0.00406870199367404 +0.0022967240074649453 +0.0022944749798625708 +0.0041450849967077374 +0.0022593350149691105 +0.0042951909999828786 +0.002211989019997418 +0.002428436011541635 +0.004070580005645752 +0.0022287949977908283 +0.002512298000510782 +0.004044293978950009 +0.0022571940207853913 +0.002455495996400714 +0.004140593984629959 +0.0022050270054023713 +0.002453137974953279 +0.004028948023915291 +0.002415188995655626 +0.004089434019988403 +0.002230727026471868 +0.0024908720224630088 +0.0041293189860880375 +0.002210075006587431 +0.0025104120140895247 +0.004045864974614233 +0.0022233759809751064 +0.00245201398502104 +0.0028396669949870557 +0.003514470998197794 +0.0024026749888435006 +0.004112648981390521 +0.002363990992307663 +0.004079987003933638 +0.002149681997252628 +0.002405915001872927 +0.004016877996036783 +0.002301300992257893 +0.002431669010547921 +0.004118772019864991 +0.002312726021045819 +0.002457779017277062 +0.0041771079995669425 +0.0021877639810554683 +0.0042072299984283745 +0.0022575980110559613 +0.0023751560074742883 +0.0041747250070329756 +0.0022238329984247684 +0.0022919679759070277 +0.004186505975667387 +0.0022214789933059365 +0.002506431977963075 +0.004078130004927516 +0.002335957018658519 +0.004228010977385566 +0.002483454009052366 +0.0023244589974638075 +0.004286265990231186 +0.0021809049940202385 +0.0025168160209432244 +0.0040713640046305954 +0.0022691859921906143 +0.0025693849893286824 +0.004021198983537033 +0.002396804979071021 +0.0042932769865728915 +0.0023264090123120695 +0.002299549989402294 +0.0041757709986995906 +0.0021052600059192628 +0.0024834579962771386 +0.0041725940245669335 +0.002153770998120308 +0.003285101003712043 +0.0034357249969616532 +0.0022668979945592582 +0.0024279550125356764 +0.004148832987993956 +0.0024589459935668856 +0.0040639670041855425 +0.0022779619903303683 +0.0023819319903850555 +0.004159484000410885 +0.0022349170176312327 +0.002427127998089418 +0.004143895988818258 +0.002184392011258751 +0.003143737994832918 +0.003321768977912143 +0.0023010600125417113 +0.004256651998730376 +0.0021674899908248335 +0.0023081990075297654 +0.004159678996074945 +0.002339678001590073 +0.0023109070025384426 +0.004225272015901282 +0.00218926600064151 +0.002405892009846866 +0.004253937979228795 +0.0022115260071586818 +0.0023270710080396384 +0.004185828001936898 +0.0023973999777808785 +0.004086994013050571 +0.0022986719850450754 +0.002296898019267246 +0.004198887007078156 +0.0022958280169405043 +0.0023691630049142987 +0.0042219500173814595 +0.002153389999875799 +0.0032151610066648573 +0.0034072119742631912 +0.002316752972546965 +0.002375059004407376 +0.003983047005021945 +0.002401694015134126 +0.004144250997342169 +0.0022285159793682396 +0.002342836989555508 +0.00421533701592125 +0.002173277986003086 +0.002507041994249448 +0.004087425011675805 +0.0022523190127685666 +0.0024222669890150428 +0.004057618003571406 +0.0024628069950267673 +0.004251986014423892 +0.002316277998033911 +0.002453446009894833 +0.004114502022275701 +0.002212727995356545 +0.002462310018017888 +0.0041126330033876 +0.002234651008620858 +0.0024310230219271034 +0.004458637005882338 +0.002392041002167389 +0.004103665996808559 +0.0023224019969347864 +0.0024840320111252367 +0.004075873992405832 +0.002535695006372407 +0.0041364950011484325 +0.0023040189989842474 +0.0023421279911417514 +0.004148734995396808 +0.0026227390044368804 +0.0022422320034820586 +0.004129770997678861 +0.002209714992204681 +0.0026742340123746544 +0.004108264984097332 +0.002512833976652473 +0.00430780800525099 +0.0022438649903051555 +0.002500900998711586 +0.004028624010970816 +0.0023148420150391757 +0.0024701409856788814 +0.004092549002962187 +0.0023001920199021697 +0.00235254701692611 +0.004121260979445651 +0.0022278560209088027 +0.004205487988656387 +0.0023881449887994677 +0.002278283005580306 +0.004178392991889268 +0.0022169070143718272 +0.002414281014353037 +0.004093785013537854 +0.002251933008665219 +0.0024395389773417264 +0.004358656005933881 +0.0023161619901657104 +0.0021290059958118945 +0.0045409750018734485 +0.0007665809825994074 +0.002550504985265434 +0.005305514001520351 +0.0024305530241690576 +0.003994319005869329 +0.0023906269925646484 +0.0023805660021025687 +0.00414855100098066 +0.0022810939990449697 +0.0023287289950530976 +0.004235036991303787 +0.0025333250232506543 +0.004179738985840231 +0.0022232229821383953 +0.002384630002779886 +0.004189414001302794 +0.0022289780026767403 +0.00258526299148798 +0.0042906250164378434 +0.002335341996513307 +0.0043777280079666525 +0.002171658998122439 +0.0025101939972955734 +0.004120044002775103 +0.0022203729895409197 +0.0024599049938842654 +0.004106648004380986 +0.0022008919913787395 +0.0024300109944306314 +0.004187765996903181 +0.002242788003059104 +0.004258227010723203 +0.002277114981552586 +0.0022782490123063326 +0.004207625024719164 +0.002269169985083863 +0.0024429690092802048 +0.004040597996208817 +0.0022556099866051227 +0.002468289021635428 +0.004501831979723647 +0.0022433020058088005 +0.004264706978574395 +0.0022732139914296567 +0.002340901002753526 +0.004085794003913179 +0.0022515000018756837 +0.0023959759855642915 +0.004101361992070451 +0.0022335220128297806 +0.002430252992780879 +0.004263851005816832 +0.002246952004497871 +0.004507300996920094 +0.0022160060179885477 +0.0024023849982768297 +0.004271989979315549 +0.002163940982427448 +0.002487157005816698 +0.004119706980418414 +0.0022974879830144346 +0.0023933170014061034 +0.004150347987888381 +0.0023284979979507625 +0.002339272992685437 +0.004061521001858637 +0.0023842320078983903 +0.004098481003893539 +0.0022754379897378385 +0.002369063993683085 +0.004155117989284918 +0.0021469560160767287 +0.00245855501270853 +0.004095881973626092 +0.0021945250045973808 +0.0011475129867903888 +0.005274956987705082 +0.002305631001945585 +0.004222243995172903 +0.0022453050187323242 +0.0023221699811983854 +0.004172418994130567 +0.0021912909869570285 +0.0024255200114566833 +0.004370784998172894 +0.0022132710146252066 +0.002453399996738881 +0.004095715004950762 +0.0023005589901003987 +0.002494228014256805 +0.004111046000616625 +0.002374594012508169 +0.0022558690106961876 +0.0041014099842868745 +0.002475893998052925 +0.003980255016358569 +0.0021921330189798027 +0.0025985690008383244 +0.003948447993025184 +0.0023040430096443743 +0.0023808499972801656 +0.0040919930033851415 +0.002267756004584953 +0.0024709629942663014 +0.004145373008213937 +0.0025175060145556927 +0.002112461981596425 +0.004134159011300653 +0.002504651027265936 +0.003961315000196919 +0.002282881992869079 +0.0023958040110301226 +0.004079681006260216 +0.002347547997487709 +0.0023507860023528337 +0.0041155689978040755 +0.002314023004146293 +0.0023469860025215894 +0.004078923986526206 +0.0023023250105325133 +0.0041595099901314825 +0.0022650489991065115 +0.0010829329839907587 +0.003564014012226835 +0.004026988986879587 +0.002465455007040873 +0.004105088009964675 +0.0023203970049507916 +0.0031221869867295027 +0.0034165240067522973 +0.0023108769964892417 +0.0023197809932753444 +0.00419081500149332 +0.0008814799948595464 +0.0025290430057793856 +0.005539960984606296 +0.0022862490150146186 +0.004160719981882721 +0.0023223529860842973 +0.0023121679842006415 +0.004116730997338891 +0.0023880339867901057 +0.002277075982419774 +0.004169968015048653 +0.002257772983284667 +0.004211324005154893 +0.0022051109990570694 +0.0024435280065517873 +0.0041160910041071475 +0.0021856880048289895 +0.0024675599997863173 +0.004320315987570211 +0.002332022995688021 +0.001050332997692749 +0.005430587014416233 +0.0023466359998565167 +0.004161846009083092 +0.0022897870221640915 +0.002384687977610156 +0.004086305998498574 +0.002226826996775344 +0.002379216020926833 +0.004213727981550619 +0.0022079759801272303 +0.0024699259956832975 +0.004174722998868674 +0.002271219011163339 +0.0010972539894282818 +0.005370009021135047 +0.0023664260224904865 +0.004101557977264747 +0.0021885989990551025 +0.0024950219958554953 +0.004039151972392574 +0.0021991620014887303 +0.002539050008635968 +0.003993935009930283 +0.002239975001430139 +0.0024466549803037196 +0.004163380974205211 +0.0023476419737562537 +0.0023410230060108006 +0.0040431120141875 +0.00244576099794358 +0.004189353989204392 +0.0022301629942376167 +0.002467854996211827 +0.004322986991610378 +0.0007622570265084505 +0.00384213199140504 +0.004300281987525523 +0.002320327010238543 +0.0024004570150282234 +0.004091707000043243 +0.002419103984721005 +0.004152179986704141 +0.002181963005568832 +0.0023214819957502186 +0.004196105001028627 +0.0022210919996723533 +0.0024625980004202574 +0.004076762008480728 +0.0023220919829327613 +0.0024075660039670765 +0.004088282003067434 +0.0022684329887852073 +0.004208942991681397 +0.0021967659995425493 +0.0024737120256759226 +0.004116308991797268 +0.0022286640014499426 +0.0024238759942818433 +0.004147044994169846 +0.002256584004499018 +0.002471034007612616 +0.0040847779891919345 +0.0022898329771123827 +0.004239536996465176 +0.0023826989927329123 +0.002336222998565063 +0.004110737994778901 +0.002231539983768016 +0.002549228986026719 +0.004057184007251635 +0.0022523499792441726 +0.002349827002035454 +0.004189945000689477 +0.0023088369925972074 +0.004195740999421105 +0.002306241018231958 +0.0009934839908964932 +0.0024705530086066574 +0.005219865997787565 +0.0023936530051287264 +0.004225229000439867 +0.00227489898679778 +0.002414878981653601 +0.0041028620034921914 +0.0022447099909186363 +0.0023962020059116185 +0.004125425009988248 +0.002309233008418232 +0.0043077390000689775 +0.0023641430016141385 +0.0008121859864331782 +0.003683321992866695 +0.004023286979645491 +0.0023996729869395494 +0.004207168996799737 +0.002258730004541576 +0.0024126000062096864 +0.004185758007224649 +0.0022744610032532364 +0.002403692022198811 +0.004065209010150284 +0.0009455399995204061 +0.00356974100577645 +0.004128376982407644 +0.0024389309983234853 +0.004113279021112248 +0.0022460960026364774 +0.002351453003939241 +0.004244562005624175 +0.0021738510113209486 +0.002476603985996917 +0.004033637000247836 +0.0023283910122700036 +0.0042536790133453906 +0.0022943059739191085 +0.002384351013461128 +0.004076330020325258 +0.0022657439985778183 +0.00237276399275288 +0.004203852993668988 +0.002145155012840405 +0.0024306149862241 +0.004115536983590573 +0.0022248669993132353 +0.002403470018180087 +0.004065478016855195 +0.002419511991320178 +0.004233790998114273 +0.0022429619857575744 +0.0023486480058636516 +0.004212234984152019 +0.002278622006997466 +0.0024699709902051836 +0.004112902999622747 +0.002232661994639784 +0.0042405209969729185 +0.002558331994805485 +0.0023515700013376772 +0.00436444699880667 +0.0024831530172377825 +0.00255797101999633 +0.004234035994159058 +0.0021348230075091124 +0.004552169004455209 +0.002327519003301859 +0.002374686999246478 +0.004391260008560494 +0.0022701139969285578 +0.002338293008506298 +0.00434876699000597 +0.0021462120057549328 +0.004185530997347087 +0.002237651002360508 +0.0021484349854290485 +0.004190955980448052 +0.00243878600304015 +0.002376085991272703 +0.004276248975656927 +0.0021665010135620832 +0.0024033450172282755 +0.004177697002887726 +0.002201530005550012 +0.002535602980060503 +0.004104406019905582 +0.002140033000614494 +0.004232620005495846 +0.0022502479841932654 +0.002305092988535762 +0.004244256007950753 +0.0022277230164036155 +0.002532109007006511 +0.004109175002668053 +0.0022227570007089525 +0.002366077998885885 +0.004272439982742071 +0.002247839991468936 +0.002370844013057649 +0.004227646015351638 +0.0022019479947630316 +0.0024319550138898194 +0.004139530996326357 +0.002182461990742013 +0.0043037029972765595 +0.002073893992928788 +0.002476520021446049 +0.004174600006081164 +0.0021743150136899203 +0.00245641398942098 +0.0040983029757626355 +0.002227563993074 +0.0022647809819318354 +0.00421261100564152 +0.0022712359786964953 +0.004261744994437322 +0.0022384510084521025 +0.00226898500113748 +0.004485040990402922 +0.002172557986341417 +0.0024079989816527814 +0.0041104900010395795 +0.002202023984864354 +0.0024707179982215166 +0.004284345981432125 +0.002229704987257719 +0.004212605010252446 +0.002255564002553001 +0.0022782149899285287 +0.004234008985804394 +0.0021443160076159984 +0.00247654301347211 +0.004189809988019988 +0.0021263830130919814 +0.002447967999614775 +0.004243678005877882 +0.002160417992854491 +0.002418796007987112 +0.004079733014805242 +0.002243350987555459 +0.004300939996028319 +0.0021157980081625283 +0.002456807007547468 +0.004159083007834852 +0.002183271019021049 +0.0024164750066120178 +0.004166218015598133 +0.0021148820233065635 +0.002571376011474058 +0.004043315013404936 +0.0021639770129695535 +0.0042646590154618025 +0.002319053979590535 +0.002445567981339991 +0.004021842003567144 +0.0021724500111304224 +0.002539434004575014 +0.004080803017131984 +0.002185721998102963 +0.0024394360079895705 +0.004063736996613443 +0.002203762996941805 +0.002416872011963278 +0.004191098996670917 +0.0022408429940696806 +0.0023436339979525656 +0.004046678979648277 +0.0024593889829702675 +0.004223316995194182 +0.0023090829781722277 +0.0008456719806417823 +0.004359121987363324 +0.0033088609925471246 +0.002422457007924095 +0.004104630992515013 +0.0023870599980000407 +0.002442284021526575 +0.0039060400158632547 +0.0025214269990101457 +0.0022494900040328503 +0.004149547021370381 +0.002365908003412187 +0.004108822002308443 +0.002304091991391033 +0.002288382005644962 +0.004247444012435153 +0.0022103920055087656 +0.0031428369984496385 +0.003423408983508125 +0.0022862469777464867 +0.0042627929942682385 +0.0022623800032306463 +0.0024610520049463958 +0.004238729976350442 +0.002213567990111187 +0.002314376994036138 +0.004218554997351021 +0.0022624609991908073 +0.002464076009346172 +0.003980100998887792 +0.0024872979847714305 +0.0022090359998401254 +0.004188797000097111 +0.0008396540069952607 +0.0037056940200272948 +0.004123371996684 +0.002285366994328797 +0.00436120099038817 +0.002243415015982464 +0.002306141017470509 +0.004130158020416275 +0.002351264003664255 +0.004302649991586804 +0.002337499987334013 +0.00246878998586908 +0.0008296119922306389 +0.005560260004131123 +0.0008391049923375249 +0.0043963179923594 +0.003292061999673024 +0.002427828003419563 +0.0042210879910271615 +0.002233092993265018 +0.002467418002197519 +0.004174119996605441 +0.000923823012271896 +0.0038202459982130677 +0.0040531659906264395 +0.0024475259997416288 +0.004119512013858184 +0.002254818013170734 +0.0023650340153835714 +0.004130053013795987 +0.002283923007780686 +0.00240598400705494 +0.004167390987277031 +0.002328734000911936 +0.00238600600278005 +0.004071487026521936 +0.002482231007888913 +0.0008420000085607171 +0.005672569997841492 +0.000893221003934741 +0.0036471089988481253 +0.004156460985541344 +0.002436114998999983 +0.004161705001024529 +0.002313498000148684 +0.002349182002944872 +0.003962584974942729 +0.002591585012851283 +0.002101007994497195 +0.004225857992423698 +0.002302932000020519 +0.004151108005316928 +0.0022965180105529726 +0.0025374210090376437 +0.004085199994733557 +0.002282981004100293 +0.0024260859936475754 +0.004108015011297539 +0.0022470969997812063 +0.004211366001982242 +0.002340056002140045 +0.0022373319952748716 +0.004171636974206194 +0.0022102940129116178 +0.002421576005872339 +0.0041172130149789155 +0.0022788649948779494 +0.00243173202034086 +0.004125380015466362 +0.0022322270087897778 +0.002402777026873082 +0.004103245009901002 +0.0024346909776795655 +0.004248073004418984 +0.002237593987956643 +0.002308989001903683 +0.004297482024412602 +0.002174043998820707 +0.0023889220028650016 +0.00415677999262698 +0.0022101080103311688 +0.002462703996570781 +0.004151214990997687 +0.002506650023860857 +0.00415688898647204 +0.002277768013300374 +0.0024021610151976347 +0.004146115010371432 +0.0021750529995188117 +0.0024892869987525046 +0.004067889996804297 +0.0022346159967128187 +0.0024522250168956816 +0.00425403198460117 +0.0006818940164521337 +0.003937587986001745 +0.004062002000864595 +0.002385719009907916 +0.004142906982451677 +0.0022089449921622872 +0.0024777179933153093 +0.004115833988180384 +0.0023215670080389827 +0.002395729999989271 +0.0040850040095392615 +0.0022669399913866073 +0.004226571007166058 +0.002271243982249871 +0.0024040249991230667 +0.00418539100792259 +0.002228625991847366 +0.0023700699966866523 +0.004102165985386819 +0.0022567519918084145 +0.0024419899855274707 +0.004117612028494477 +0.00234234900563024 +0.0024375969951506704 +0.0042350959847681224 +0.0008212240063585341 +0.003686811018269509 +0.0041962020040955395 +0.0023216950066853315 +0.004184823017567396 +0.0022709990153089166 +0.002349788002902642 +0.004229679005220532 +0.0022817900171503425 +0.0024661179922986776 +0.004003395006293431 +0.0023586690076626837 +0.004148403997533023 +0.002177816000767052 +0.002352195995626971 +0.0044688929920084774 +0.0021345630229916424 +0.002629283000715077 +0.004026612004963681 +0.0024766580027062446 +0.002335355995455757 +0.004320389998611063 +0.002388905006228015 +0.0041156399820465595 +0.002251519006676972 +0.0027425310108810663 +0.004067055007908493 +0.0022549010172951967 +0.0031923629867378622 +0.0034387889900244772 +0.0022208990121725947 +0.003006592014571652 +0.003420847002416849 +0.0023418109922204167 +0.00410225402447395 +0.0022504889930132776 +0.00238364000688307 +0.004178072995273396 +0.002195336011936888 +0.0024031149805523455 +0.004095865006092936 +0.002244422008516267 +0.0023450359876733273 +0.004204376979032531 +0.0022637409856542945 +0.002481503994204104 +0.003950893005821854 +0.002428527979645878 +0.004092913994099945 +0.0022224719868972898 +0.0023680739977862686 +0.00428769298014231 +0.0021639380138367414 +0.0024367219884879887 +0.0040744339930824935 +0.0023307279916480184 +0.002392270020209253 +0.004311219992814586 +0.002330863004317507 +0.0022218410158529878 +0.004156623006565496 +0.0023591910139657557 +0.004121865989873186 +0.0021683699742425233 +0.0024577719741500914 +0.004144947015447542 +0.0022912459971848875 +0.0022485910158138722 +0.004142339981626719 +0.0022144970134831965 +0.004306997987441719 +0.0023499790113419294 +0.002247233991511166 +0.004202243988402188 +0.0022279050026554614 +0.002379809011472389 +0.004185733996564522 +0.002235464024124667 +0.002410702989436686 +0.004174577014055103 +0.002243985014501959 +0.0023997400130610913 +0.004513107007369399 +0.00225703400792554 +0.0041181469860021025 +0.0022863270132802427 +0.002476527006365359 +0.004079739999724552 +0.0022171860036905855 +0.0025181669916491956 +0.00404653899022378 +0.002181421994464472 +0.002484651980921626 +0.0041029020212590694 +0.002235355001175776 +0.0024541130114812404 +0.0040551100100856274 +0.0024196119920816272 +0.004173547989921644 +0.0022691310150548816 +0.0009812969947233796 +0.00554135101265274 +0.0008087679743766785 +0.0038234979729168117 +0.004385323991300538 +0.0022915530134923756 +0.0010196940274909139 +0.0054363209928851575 +0.002280253975186497 +0.004256126005202532 +0.0021798679954372346 +0.0025971169816330075 +0.00421927499701269 +0.0023344060173258185 +0.002348941983655095 +0.00413601499167271 +0.0022991780133452266 +0.002337430982152 +0.0041656749963294715 +0.0007667269965168089 +0.0025821510062087327 +0.005308079998940229 +0.0009585529915057123 +0.003743496985407546 +0.003906815021764487 +0.002518917986890301 +0.004063433007104322 +0.0022275029914453626 +0.0024430280027445406 +0.004081157996552065 +0.002344398992136121 +0.002286754024680704 +0.004068584006745368 +0.0022896390000823885 +0.004187134996755049 +0.0023029099975246936 +0.0025821939925663173 +0.003954499989049509 +0.00223720699432306 +0.0010071959986817092 +0.005472777003888041 +0.0008732900023460388 +0.003855885996017605 +0.004142185993259773 +0.0023735460126772523 +0.0022718039981555194 +0.004274431994417682 +0.002311089978320524 +0.0043184209789615124 +0.0022776449914090335 +0.0023961080005392432 +0.00424697101698257 +0.0023683450126554817 +0.0023191910004243255 +0.004088857996976003 +0.002372951013967395 +0.0023298799933400005 +0.0041437449981458485 +0.0023871579905971885 +0.004117101983865723 +0.002170192019548267 +0.002560977009125054 +0.004133798007387668 +0.0021954309777356684 +0.0025112800067290664 +0.004090717004146427 +0.002347204019315541 +0.004125868988921866 +0.0023347469978034496 +0.002313407982001081 +0.004143972008023411 +0.002229377016192302 +0.0023754709982313216 +0.004206454992527142 +0.00222151298657991 +0.0023305750219151378 +0.0042472849891055375 +0.002275297010783106 +0.002287409995915368 +0.004195947985863313 +0.002330313000129536 +0.004132643021875992 +0.002314810990355909 +0.002324920002138242 +0.004064279986778274 +0.002243904018541798 +0.002500671980669722 +0.004034731013234705 +0.002219050016719848 +0.0024484159948769957 +0.004115249990718439 +0.002310137002496049 +0.002333762007765472 +0.004178976989351213 +0.0025157509953714907 +0.004052828007843345 +0.0022045439982321113 +0.002371966023929417 +0.004166597005678341 +0.00222810500417836 +0.0024577440053690225 +0.004084795975359157 +0.0023326079826802015 +0.0022522179933730513 +0.004289117001462728 +0.0022693749924656004 +0.004245072981575504 +0.00230274599744007 +0.002312144002644345 +0.00418325699865818 +0.002175572997657582 +0.0024588549858890474 +0.00409548802417703 +0.0022973630111664534 +0.0025023240013979375 +0.004095759009942412 +0.0022856419964227825 +0.002394897979684174 +0.004116943018743768 +0.0022278769756667316 +0.0023189280182123184 +0.0041561819962225854 +0.0024261469952762127 +0.004141407000133768 +0.002292913995916024 +0.0024027280160225928 +0.004139369004406035 +0.002298161998623982 +0.002363842009799555 +0.004113039001822472 +0.0022652650077361614 +0.004205610021017492 +0.0022641260002274066 +0.0023258450091816485 +0.004189417988527566 +0.0021537590073421597 +0.00246906399843283 +0.00424381997436285 +0.002227657998446375 +0.002467194019118324 +0.004277325002476573 +0.002234330022474751 +0.004213173990137875 +0.0022654169879388064 +0.002317848993698135 +0.002273324003908783 +0.004423178004799411 +0.0008267200028058141 +0.005596197996055707 +0.002379254001425579 +0.0022769139904994518 +0.0041214340017177165 +0.0022793929965700954 +0.004228885984048247 +0.002275198989082128 +0.002241391979623586 +0.004331856995122507 +0.0021955700067337602 +0.002308474009623751 +0.004158719006227329 +0.0022092650178819895 +0.0024982700124382973 +0.004114127019420266 +0.0022099439811427146 +0.002440955984639004 +0.004169216001173481 +0.00238776599871926 +0.004200049996143207 +0.0022850760142318904 +0.002308199997060001 +0.00415094499476254 +0.0022344900062307715 +0.0009921269956976175 +0.0037903560150880367 +0.004009466007119045 +0.0022627320140600204 +0.002303843997651711 +0.0023464510159101337 +0.004064534994540736 +0.0022486799862235785 +0.0024185279908124357 +0.004104081017430872 +0.002449215011438355 +0.003989415999967605 +0.002209173981100321 +0.002422980993287638 +0.004132497007958591 +0.002399845019681379 +0.0023709789966233075 +0.0040880320011638105 +0.0023202250013127923 +0.002338357997359708 +0.0040890400123316795 +0.002466115984134376 +0.0009297789947595447 +0.005401453003287315 +0.002311902993824333 +0.004216269007883966 +0.00224394301767461 +0.0024578509910497814 +0.004179354989901185 +0.0023033629986457527 +0.0023675270203966647 +0.0042019590036943555 +0.0007692140061408281 +0.0038776090077590197 +0.004103665996808559 +0.002461564989062026 +0.00417310101329349 +0.0021895599784329534 +0.0024700150243006647 +0.004088799993041903 +0.0022464249923359603 +0.0024737830099184066 +0.004107632004888728 +0.002364752988796681 +0.004202280979370698 +0.0022838099976070225 +0.0022695900115650147 +0.004182084987405688 +0.00222272498649545 +0.0024068350030574948 +0.0040900099847931415 +0.0022001680044922978 +0.0023666560009587556 +0.004155615984927863 +0.0022286580060608685 +0.0024315150221809745 +0.004121764999581501 +0.002230528014479205 +0.002423601021291688 +0.004102476988919079 +0.002363300009164959 +0.0041089179867412895 +0.0021756099886260927 +0.0024073230160865933 +0.004172465007286519 +0.0022345939942169935 +0.00238058200920932 +0.004200741997919977 +0.0022773590171709657 +0.0023360149934887886 +0.00422682601492852 +0.002283477981109172 +0.004151538014411926 +0.0022797560086473823 +0.002498688001651317 +0.004093168012332171 +0.0021870180207770318 +0.002471393992891535 +0.004089998983545229 +0.0021858369873370975 +0.002394198003457859 +0.004230252001434565 +0.002161165000870824 +0.00427120499080047 +0.002293765021022409 +0.002292769990162924 +0.004219680995447561 +0.0022716959938406944 +0.002333697979338467 +0.004144844016991556 +0.002206211007433012 +0.0024865749874152243 +0.004095415992196649 +0.0021851150086149573 +0.0024477620027028024 +0.004103624989511445 +0.0022695219959132373 +0.00241386701236479 +0.004077352990861982 +0.0009913420071825385 +0.003643424977781251 +0.0041627280006650835 +0.0023038210056256503 +0.004238190012983978 +0.0021991230023559183 +0.002471641026204452 +0.004080040991539136 +0.0022490359842777252 +0.0024830980109982193 +0.0040486100187990814 +0.0010021280031651258 +0.0037465030036401004 +0.0041023389785550535 +0.002337140991585329 +0.004211709019728005 +0.0021904129825998098 +0.002362005994655192 +0.004195808025542647 +0.0022586900158785284 +0.0024032809888012707 +0.004166146012721583 +0.002190065977629274 +0.0024475299869664013 +0.004060331993969157 +0.0022288210166152567 +0.004277240979718044 +0.0022823559993412346 +0.002276068989885971 +0.004144523001741618 +0.002178702998207882 +0.002352909999899566 +0.004230121994623914 +0.0022039810137357563 +0.0024654429871588945 +0.004263846989488229 +0.00225770499673672 +0.0023796340101398528 +0.004293750011129305 +0.002281309978570789 +0.004291162011213601 +0.002166861988371238 +0.0024341449898201972 +0.004238738009007648 +0.0022137310006655753 +0.00235613199765794 +0.004163231991697103 +0.002198479982325807 +0.004351729003246874 +0.002342441992368549 +0.0026362919888924807 +0.004194802022539079 +0.0021844950097147375 +0.0023984049912542105 +0.004161890014074743 +0.002220970985945314 +0.00247286498779431 +0.004097065015230328 +0.0022126639960333705 +0.00422260700725019 +0.0022870090033393353 +0.0022793060052208602 +0.004144086997257546 +0.002268377022119239 +0.0022761129948776215 +0.0041641459974925965 +0.002194063999922946 +0.0023953919881023467 +0.004118372016819194 +0.002245221985504031 +0.0023212640080600977 +0.004096794000361115 +0.0022546389955095947 +0.0024844399886205792 +0.004043490014737472 +0.0022975750034675 +0.002337883022846654 +0.00404988499940373 +0.002324494009371847 +0.00415900198277086 +0.0022703270078636706 +0.0024717170163057745 +0.004120372992474586 +0.0023442179954145104 +0.0023054920020513237 +0.004172922024736181 +0.0026266759959980845 +0.0009927790088113397 +0.005530951981199905 +0.0008325150120072067 +0.0025412579998373985 +0.005537188990274444 +0.002332642994588241 +0.0042813959880732 +0.0023722320038359612 +0.002329656999791041 +0.004082249011844397 +0.0023100659891497344 +0.004194248002022505 +0.0022744509915355593 +0.0024456990067847073 +0.004135720984777436 +0.0022793830139562488 +0.00241323999944143 +0.003953132982132956 +0.002364254993153736 +0.0025021189940162003 +0.003937553003197536 +0.0023364819935522974 +0.004128306987695396 +0.0022592159803025424 +0.002346358000067994 +0.004150603985181078 +0.0022972200240474194 +0.002447061997372657 +0.004401887999847531 +0.0022821699967607856 +0.002444521989673376 +0.004036597994854674 +0.002272434998303652 +0.004209161998005584 +0.0022801909944973886 +0.002310415991814807 +0.004215691995341331 +0.002207905985414982 +0.002477103000273928 +0.0040798140107654035 +0.0022438430169131607 +0.0024084949982352555 +0.004178500006673858 +0.002309061004780233 +0.002351889997953549 +0.004122983984416351 +0.002341336978133768 +0.004082811996340752 +0.0022705899900756776 +0.0023982030106708407 +0.004244934010785073 +0.0022328959894366562 +0.002458467992255464 +0.004139475990086794 +0.0022856580035295337 +0.0023680870071984828 +0.004166486993199214 +0.0023176620015874505 +0.004232762003084645 +0.0023067989968694746 +0.002370005997363478 +0.0040835069958120584 +0.0022092580038588494 +0.0025785839825402945 +0.004179002018645406 +0.002368984976783395 +0.004240173002472147 +0.002255870000226423 +0.0023166720056906343 +0.004161764984019101 +0.002215674991020933 +0.00242765701841563 +0.004122537997318432 +0.0022169239819049835 +0.0025512659922242165 +0.004081082995980978 +0.002282886009197682 +0.002456736983731389 +0.004138913995120674 +0.0022256649972405285 +0.0041848900145851076 +0.0022590069856960326 +0.002341550978599116 +0.004128818982280791 +0.002177627000492066 +0.0024315229966305196 +0.00408390600932762 +0.002194872999098152 +0.0024521820014342666 +0.004065041983267292 +0.0022721709974575788 +0.002522057999158278 +0.0041143340058624744 +0.002275276026921347 +0.0022928949911147356 +0.00412886100821197 +0.0022446949733421206 +0.004200496012344956 +0.0022511479910463095 +0.0024255409953184426 +0.004207582009257749 +0.0022564200044143945 +0.0023566939926240593 +0.004234816995449364 +0.0023471149906981736 +0.0023772130080033094 +0.0040606450056657195 +0.000816359999589622 +0.0038794220017734915 +0.004198493988951668 +0.0023367890098597854 +0.0023574600054416806 +0.004059828992467374 +0.002422541001578793 +0.004111332003958523 +0.0022458019957412034 +0.0024371299950871617 +0.0041740140004549176 +0.0021907670015934855 +0.002507025987142697 +0.003905810008291155 +0.002378581993980333 +0.0024244249798357487 +0.003962952992878854 +0.002445804013404995 +0.00417572699370794 +0.0022379459987860173 +0.0024504640023224056 +0.004139806987950578 +0.002226515003712848 +0.002467970014549792 +0.004091634997166693 +0.002406591986073181 +0.0023430279979947954 +0.004116406023968011 +0.0009218420018441975 +0.0024148189986590296 +0.0052655269973911345 +0.0024100570008158684 +0.004199927992885932 +0.0022533790033776313 +0.0032087439903989434 +0.003351108985953033 +0.0022590080043300986 +0.004153249989030883 +0.0023703159822616726 +0.0008450979948975146 +0.0025552430015522987 +0.005480490013724193 +0.0023019959917292 +0.004110349982511252 +0.0023364030057564378 +0.0023557980020996183 +0.0041094789921771735 +0.002357463992666453 +0.0030638739990536124 +0.0035152519994881004 +0.0022867869993206114 +0.0022735560196451843 +0.004178500006673858 +0.0009522520122118294 +0.00242878298740834 +0.005270210007438436 +0.002370678004808724 +0.004141737997997552 +0.002258314983919263 +0.0024071449879556894 +0.004126291023567319 +0.0022294519876595587 +0.0023633790260646492 +0.004146085004322231 +0.00248087799991481 +0.004215682012727484 +0.002200857998104766 +0.0023797260073479265 +0.004201934993034229 +0.002169110986869782 +0.002422389981802553 +0.004207924008369446 +0.0022200740058906376 +0.0023899819934740663 +0.004087120003532618 +0.0023443899990525097 +0.004178324976237491 +0.002302685985341668 +0.00233100401237607 +0.004095715994480997 +0.002262721012812108 +0.002407976018730551 +0.004089152003871277 +0.0023550389742013067 +0.0023198449925985187 +0.004133049980737269 +0.002213075989857316 +0.002362725994316861 +0.0029239899886306375 +0.0034598810016177595 +0.004238228983012959 +0.0023766500235069543 +0.0008863710099831223 +0.004363406012998894 +0.0033885110169649124 +0.002299596992088482 +0.004164840996963903 +0.0022157320054247975 +0.002475579996826127 +0.003951666003558785 +0.002279705018736422 +0.0023630149953532964 +0.004060441016918048 +0.0023355019802693278 +0.002300521999131888 +0.0041523349937051535 +0.002325736015336588 +0.004052928008604795 +0.002334252989385277 +0.0023120839905459434 +0.004104336985619739 +0.0022838219883851707 +0.0023525409924332052 +0.004106570995645598 +0.0023714639828540385 +0.0022997079940978438 +0.004222757008392364 +0.0023357269819825888 +0.002331438008695841 +0.003992067009676248 +0.0024972439859993756 +0.0008498289971612394 +0.005389889993239194 +0.002437444985844195 +0.004054473014548421 +0.002496497007086873 +0.0021927130001131445 +0.004264547023922205 +0.002304142020875588 +0.0023946930014062673 +0.004054080985952169 +0.0023879180080257356 +0.004126307991100475 +0.002308867988176644 +0.002486621990101412 +0.004028274997835979 +0.0022419089800678194 +0.00244141899747774 +0.004177908005658537 +0.002228052995633334 +0.002422461984679103 +0.003932772000553086 +0.002578380983322859 +0.004022951994556934 +0.002528862009057775 +0.0023071779869496822 +0.004295424994779751 +0.002299462998053059 +0.0023622389999218285 +0.004135249997489154 +0.0024127920041792095 +0.0023438530042767525 +0.004169054998783395 +0.0022412659891415387 +0.002189678983995691 +0.004169774998445064 +0.002404939994448796 +0.004082647006725892 +0.0022950049897190183 +0.002346321998629719 +0.004123344988329336 +0.0022616939968429506 +0.0023930630122777075 +0.004073478019563481 +0.002329206996364519 +0.002388657972915098 +0.004105914995307103 +0.0023753919813316315 +0.002333354001166299 +0.003999499982455745 +0.002377441996941343 +0.004223399999318644 +0.0021730869775637984 +0.002484909986378625 +0.004324267007177696 +0.002222007984528318 +0.002430020016618073 +0.004095376003533602 +0.002241854992462322 +0.004244623996783048 +0.002277846011565998 +0.002363933017477393 +0.004197016009129584 +0.002353521005716175 +0.0023579260159749538 +0.004152922978391871 +0.0022007639927323908 +0.0024794100027065724 +0.0043990989797748625 +0.0025768080085981637 +0.004774350993102416 +0.0022500449849758297 +0.0024406230077147484 +0.004098881006939337 +0.002292817982379347 +0.0024120049783959985 +0.004086583008756861 +0.0023693210096098483 +0.004160765995038673 +0.0022233600029721856 +0.0025073249998968095 +0.004103676008526236 +0.0022911499836482108 +0.002362613013247028 +0.004130790999624878 +0.002361249993555248 +0.002342646010220051 +0.003963333001593128 +0.002546720003010705 +0.0022894770081620663 +0.004028423019917682 +0.002477581991115585 +0.0040931139956228435 +0.002223047980805859 +0.0023777939786668867 +0.004194134002318606 +0.0022170619922690094 +0.0023387659748550504 +0.004151065018959343 +0.002319482999155298 +0.0023757300223223865 +0.0040498859889339656 +0.0024256560136564076 +0.0041271530208177865 +0.0023332139826379716 +0.002312291006091982 +0.0041514860058669 +0.0023070670140441507 +0.0023228430072776973 +0.004126471991185099 +0.0023561440175399184 +0.0024256189935840666 +0.0039837520162109286 +0.0024906429753173143 +0.002293892001034692 +0.0039822160033509135 +0.0022856839932501316 +0.004304514994146302 +0.0022147130221128464 +0.0023830319987609982 +0.0042422719998285174 +0.002222704002633691 +0.0023935429926496 +0.004137517011258751 +0.0025125490210484713 +0.002339373982977122 +0.004088442015927285 +0.0025252690247725695 +0.0007698559784330428 +0.005487862013978884 +0.0023865840048529208 +0.00413719899370335 +0.0023676659911870956 +0.0023424120154231787 +0.004210346000036225 +0.0023085020075086504 +0.0023854280007071793 +0.004157977004069835 +0.0024231149873230606 +0.004126404004637152 +0.0024157049774657935 +0.002304146997630596 +0.004179601004580036 +0.0023731830005999655 +0.0022059179900679737 +0.004266681004082784 +0.0022710269840899855 +0.004186803009361029 +0.0023235930129885674 +0.002408097992883995 +0.004122457001358271 +0.002211888990132138 +0.002452488988637924 +0.0038440429780166596 +0.0023262339818757027 +0.002438206982333213 +0.004169702006038278 +0.0022085350065026432 +0.0023828450066503137 +0.004336037993198261 +0.0023490129970014095 +0.00405729899648577 +0.002291495999088511 +0.0023543529969174415 +0.00401732898899354 +0.0023225159966386855 +0.002407591004157439 +0.004054721997817978 +0.0023729699896648526 +0.0009492149983998388 +0.005427708005299792 +0.002326417015865445 +0.0023813099833205342 +0.004185063007753342 +0.0024616809969302267 +0.0040474470006302 +0.00239349901676178 +0.002277952997246757 +0.003987456002505496 +0.002256109000882134 +0.0024479919811710715 +0.004154161986662075 +0.002247031981823966 +0.0024524189939256757 +0.004068063019076362 +0.002353306015720591 +0.002373884024564177 +0.004155534988967702 +0.002451203006785363 +0.004069481015903875 +0.0022835939889773726 +0.0023663329775445163 +0.004076176002854481 +0.0023851930163800716 +0.0024048560007940978 +0.0040825400210451335 +0.0022996019979473203 +0.00232863100245595 +0.004194995999569073 +0.0024634379951748997 +0.0020862410019617528 +0.004094886011444032 +0.0024023760051932186 +0.004098248988157138 +0.002406411018455401 +0.002290842996444553 +0.004107119981199503 +0.0023518319940194488 +0.0023906329879537225 +0.004118316021049395 +0.002454097004374489 +0.002226921991677955 +0.0041754709964152426 +0.0022564379905816168 +0.0041593970090616494 +0.0022338349954225123 +0.0023845529940444976 +0.004057308979099616 +0.00228114498895593 +0.0024532050010748208 +0.004010512988315895 +0.0022486750094685704 +0.0023823600204195827 +0.004201681993436068 +0.0024601269979029894 +0.004030019015772268 +0.0023892850149422884 +0.0021979130106046796 +0.004115877993172035 +0.0022250780020840466 +0.0025225229910574853 +0.00408045097719878 +0.002225553005700931 +0.002334641001652926 +0.00410109999938868 +0.002333049022126943 +0.0024307080020662397 +0.004062041989527643 +0.002462517993990332 +0.004020458000013605 +0.002341315004741773 +0.0023760500189382583 +0.004116688010981306 +0.002263558009872213 +0.0023256360145751387 +0.0041937020141631365 +0.0022145889815874398 +0.0024397720117121935 +0.004041212989250198 +0.002463032986270264 +0.00216359700425528 +0.004199136019451544 +0.002307236019987613 +0.004144545004237443 +0.0022245780273806304 +0.0024973609833978117 +0.004219478985760361 +0.002273273013997823 +0.00234656801330857 +0.004157151997787878 +0.0023179360141512007 +0.0023753739951644093 +0.004077063000295311 +0.0024214629956986755 +0.004040517000248656 +0.002352965995669365 +0.002554534003138542 +0.003979595989221707 +0.0022815209813416004 +0.0023954239732120186 +0.004120730998693034 +0.00227292298222892 +0.0024280979996547103 +0.004081496997969225 +0.0024067650083452463 +0.00238056099624373 +0.002719596988754347 +0.0037323209980968386 +0.004248265002388507 +0.0022413780097849667 +0.0023079410020727664 +0.004132442001719028 +0.0023635140096303076 +0.0023601129942107946 +0.004140880017075688 +0.0023277319851331413 +0.0023961430124472827 +0.004038675979245454 +0.002451357984682545 +0.003994030004832894 +0.002404618018772453 +0.0022106069955043495 +0.004262581001967192 +0.002191756007960066 +0.002575655991677195 +0.004199896997306496 +0.002374223986407742 +0.004163222009083256 +0.002188842016039416 +0.0025878860033117235 +0.003970306977862492 +0.0023500400129705667 +0.0008658779843244702 +0.005665845004841685 +0.0022579170181415975 +0.0024261479848064482 +0.004183223005384207 +0.0023718989978078753 +0.002308183000423014 +0.00410808200831525 +0.0022392889950424433 +0.004105343017727137 +0.0022804689942859113 +0.0024071219959296286 +0.004217205016175285 +0.0021378090023063123 +0.0011284979991614819 +0.0053487750119529665 +0.0023275389976333827 +0.0024287669803015888 +0.004139142984058708 +0.0023992389906197786 +0.0022848429798614234 +0.004075854987604544 +0.002385186991887167 +0.004102303006220609 +0.0023875139886513352 +0.002286492002895102 +0.004200558003503829 +0.002353840012801811 +0.0010035790037363768 +0.005443447997095063 +0.002356697979848832 +0.0023008080024737865 +0.0040110959962476045 +0.0024436049861833453 +0.004084679007064551 +0.0023215149994939566 +0.0024539529986213893 +0.004062515014084056 +0.002372368995565921 +0.0022407470096368343 +0.004123182996409014 +0.0023242710158228874 +0.0023726439976599067 +0.004132002999540418 +0.002386164997005835 +0.002257250976981595 +0.004176322981948033 +0.0022668340243399143 +0.004234549996908754 +0.0022919480106793344 +0.0025102999934460968 +0.004144133010413498 +0.002217320987256244 +0.0023694559931755066 +0.00417123400256969 +0.0022015279973857105 +0.002387608983553946 +0.004201133007882163 +0.0024552269896958023 +0.004064384993398562 +0.0023168399930000305 +0.00225065799895674 +0.004271598008926958 +0.0022271409980021417 +0.002488758007530123 +0.0039616290014237165 +0.0022972419974394143 +0.0024479750136379153 +0.004068353009643033 +0.002358770987484604 +0.0022837999858893454 +0.004006338014733046 +0.002507594006601721 +0.004148965992499143 +0.002385972999036312 +0.0032075650233309716 +0.003464303008513525 +0.002197237976361066 +0.004269678989658132 +0.0023842859955038875 +0.002406360988970846 +0.004013836005469784 +0.002265451999846846 +0.0023613299999851733 +0.004147073021158576 +0.002247014985186979 +0.0010783369943965226 +0.005395132990088314 +0.0022800769947934896 +0.0043194780009798706 +0.002270943019539118 +0.0023315139987971634 +0.004158413008553907 +0.00228798997704871 +0.002342857973417267 +0.004098431003512815 +0.002246953983558342 +0.002484002005076036 +0.004199500021059066 +0.002203834999818355 +0.0024562239996157587 +0.0042292339785490185 +0.0021090620139148086 +0.0023442499805241823 +0.004292033001547679 +0.0023423830280080438 +0.004147997009567916 +0.002218271023593843 +0.0023734979913569987 +0.004183164011919871 +0.0023333400022238493 +0.002512225997634232 +0.004014599020592868 +0.0022942909854464233 +0.0024145609932020307 +0.0043194400204811245 +0.002388519002124667 +0.0040902420005295426 +0.00239963797503151 +0.002413856011116877 +0.004131330002564937 +0.00220917901606299 +0.0024877950199879706 +0.00408858701121062 +0.00229344901163131 +0.0042116050026379526 +0.0023767520033288747 +0.0022398850123863667 +0.004174698988208547 +0.0023339820036198944 +0.0022622520045842975 +0.004186304984614253 +0.0022908319951966405 +0.0023136810050345957 +0.004115653980989009 +0.0023032820026855916 +0.00251137200393714 +0.00395194100565277 +0.002317805017810315 +0.004265052994014695 +0.0022632170002907515 +0.0023776930174790323 +0.004218554007820785 +0.0022887559898663312 +0.0023774110013619065 +0.004155597009230405 +0.002191240986576304 +0.0032586000161245465 +0.0034251920005772263 +0.002263030008180067 +0.004181134019745514 +0.0022479519830085337 +0.0009272120078094304 +0.0037147060211282223 +0.004123688995605335 +0.0022442159825004637 +0.004150538996327668 +0.002313949982635677 +0.0023151230125222355 +0.004172336019109935 +0.00216623701271601 +0.0025090650015044957 +0.0040940500039141625 +0.002303773013409227 +0.0024484410241711885 +0.0040200999937951565 +0.0023063329863362014 +0.00417947702226229 +0.002499444002751261 +0.0020890489977318794 +0.0041715039988048375 +0.002202001982368529 +0.002470907988026738 +0.004112450988031924 +0.0022504150110762566 +0.0023850349825806916 +0.004036638012621552 +0.002242684015072882 +0.0044045550166629255 +0.0021697120100725442 +0.0023352779971901327 +0.004114798008231446 +0.0024873380025383085 +0.002210961014498025 +0.00416258501354605 +0.0021836759988218546 +0.0025749510095920414 +0.0040992760041262954 +0.002188842016039416 +0.0023874060134403408 +0.004157001996645704 +0.0008454030030407012 +0.003796211996814236 +0.004110305977519602 +0.002254950988572091 +0.004141098004765809 +0.002202538016717881 +0.00237284300965257 +0.004221929993946105 +0.0021998170122969896 +0.0024638159957248718 +0.004226638993714005 +0.0021974060218781233 +0.004298743995605037 +0.002272164012538269 +0.0023426270054187626 +0.004227571014780551 +0.0022582569799851626 +0.0023647430061828345 +0.004202915006317198 +0.002225925010861829 +0.002328504022443667 +0.004141212004469708 +0.0023281080066226423 +0.002370136004174128 +0.004115402000024915 +0.0010003350034821779 +0.0026457310013938695 +0.0055249940196517855 +0.002181741001550108 +0.004137809999519959 +0.0023228080244734883 +0.002354401018237695 +0.004221334005706012 +0.002203962008934468 +0.002443354023853317 +0.003972716978751123 +0.0023461579985450953 +0.004186699021374807 +0.002413815993349999 +0.0024897329858504236 +0.004052076983498409 +0.0021905249741394073 +0.0024652590218465775 +0.004246700991643593 +0.002353627991396934 +0.003158054983941838 +0.0033598820155020803 +0.0023222140152938664 +0.004235227999743074 +0.0023099819954950362 +0.00236816902179271 +0.004179372015642002 +0.0021751690073870122 +0.002449780993629247 +0.004189218016108498 +0.0022397279972210526 +0.00237655799719505 +0.004111039015697315 +0.002342202002182603 +0.0023012419987935573 +0.004112418013392016 +0.0022414569975808263 +0.004221831011818722 +0.002284454007167369 +0.0023322899942286313 +0.0040774210065137595 +0.002212182997027412 +0.002459381998050958 +0.0040947250090539455 +0.0021645239903591573 +0.002459923009155318 +0.004260779009200633 +0.002241537004010752 +0.004234811989590526 +0.0022785580076742917 +0.002236625994555652 +0.004097972996532917 +0.0022333439846988767 +0.0023728020023554564 +0.004151319997617975 +0.0021899839921388775 +0.00246118099312298 +0.004066952998982742 +0.002264645998366177 +0.0024449369811918586 +0.004121299018152058 +0.0022548309934791178 +0.0024488190247211605 +0.0040273480117321014 +0.002317614998901263 +0.004109340981813148 +0.0022592099849134684 +0.0023715230054222047 +0.004161429009400308 +0.0022017890005372465 +0.002583565015811473 +0.004018604988232255 +0.0021803190174978226 +0.002621665975311771 +0.004044119996251538 +0.0023333819990511984 +0.004196870984742418 +0.002312238997546956 +0.00234266699408181 +0.004051662981510162 +0.0022804909967817366 +0.00247336202301085 +0.004048483009682968 +0.002233452978543937 +0.002481790987076238 +0.004105125990463421 +0.0022021800104994327 +0.004280533001292497 +0.002296594000654295 +0.0022499059850815684 +0.004221919982228428 +0.0021093969990033656 +0.002389592002145946 +0.0041723279864527285 +0.0022059000039007515 +0.00247626900090836 +0.004124377010157332 +0.002213695988757536 +0.002467618993250653 +0.004344571003457531 +0.002253396000014618 +0.004194606008240953 +0.002272931975312531 +0.0022714259976055473 +0.004171395004959777 +0.0022029140091035515 +0.00243708401103504 +0.004083943000296131 +0.0022009999956935644 +0.0024742289970163256 +0.004127249994780868 +0.002210406993981451 +0.002413276000879705 +0.004068863985594362 +0.0022157909988891333 +0.0041765160276554525 +0.002165465004509315 +0.002333126001758501 +0.0042252360144630075 +0.002123696991475299 +0.002430317021207884 +0.004104077990632504 +0.0022416360152419657 +0.002247483003884554 +0.00417724100407213 +0.0021892960066907108 +0.004387286986457184 +0.002258248976431787 +0.0022617939976044 +0.004243336996296421 +0.002273785008583218 +0.002366649016039446 +0.004069791990332305 +0.0021433930087368935 +0.0023958289821166545 +0.004139566997764632 +0.002239616005681455 +0.0024019189877435565 +0.004110456007765606 +0.0021882310102228075 +0.002349690010305494 +0.004035207006381825 +0.0023033739998936653 +0.004296081024222076 +0.002298834006069228 +0.0022891630069352686 +0.004152173001784831 +0.002219209010945633 +0.0024304160033352673 +0.004082292987732217 +0.0023199580027721822 +0.0024999060260597616 +0.004120814002817497 +0.002215043001342565 +0.0024457510153297335 +0.004162013006862253 +0.0022439120220951736 +0.004213086009258404 +0.002317551989108324 +0.0023850229918025434 +0.004095220996532589 +0.002206391975050792 +0.002392344002146274 +0.004179507988737896 +0.002206948003731668 +0.0025041359767783433 +0.00408662500558421 +0.002202652976848185 +0.004257277003489435 +0.002348742011236027 +0.0022351460065692663 +0.00431859798845835 +0.00222967000445351 +0.0023799019982106984 +0.0041257370030507445 +0.0023079540114849806 +0.002403805003268644 +0.004085624997969717 +0.002298926003277302 +0.0043010200024582446 +0.002240267989691347 +0.002287979004904628 +0.004211131017655134 +0.002271804987685755 +0.0023583999718539417 +0.004085324995685369 +0.0022130490106064826 +0.002442551020067185 +0.004031018994282931 +0.002235168998595327 +0.0025018409942276776 +0.003989096992881969 +0.0021959180012345314 +0.0024328439903911203 +0.004045783978654072 +0.0023214129905682057 +0.004125014005694538 +0.0022684360155835748 +0.002264817972900346 +0.004205145000014454 +0.002193088992498815 +0.002624892978928983 +0.004049420997034758 +0.002173752000089735 +0.002476121997460723 +0.004090997012099251 +0.0021943589963484555 +0.0024710510042496026 +0.004126318002818152 +0.0022482540225610137 +0.004250106983818114 +0.0021474369859788567 +0.0023785110097378492 +0.004133220005314797 +0.002237694017821923 +0.0024688999983482063 +0.004120361001696438 +0.0023224019969347864 +0.0023659330036025494 +0.004212839005049318 +0.0022252339986152947 +0.002466420002747327 +0.004008452990092337 +0.002278718020534143 +0.004183117998763919 +0.002225592004833743 +0.002376329997787252 +0.00428805299452506 +0.0021540210000239313 +0.0024696080072317272 +0.004004157002782449 +0.0022178280050866306 +0.002378118981141597 +0.004197450005449355 +0.002340188017114997 +0.00406440399819985 +0.002368432004004717 +0.002246198011562228 +0.004063685017172247 +0.002248770004371181 +0.0023805139935575426 +0.004137721989536658 +0.002208793011959642 +0.002444035984808579 +0.004108309018192813 +0.0022908639803063124 +0.002363291976507753 +0.004160287993727252 +0.002243617025669664 +0.004213005013298243 +0.002271894016303122 +0.0022500719933304936 +0.004161335993558168 +0.002215704007539898 +0.00253717799205333 +0.003913738008122891 +0.002234749001218006 +0.0023967439774423838 +0.004336876998422667 +0.0024819399986881763 +0.004258046014001593 +0.0022885409998707473 +0.00233404099708423 +0.0040610859869048 +0.0022564980026800185 +0.0024110320082399994 +0.0041580529941711575 +0.0021827580058015883 +0.002420142001938075 +0.0041324909834656864 +0.0022259349934756756 +0.0024453490041196346 +0.004034484998555854 +0.002211561019066721 +0.0042517260008025914 +0.002340113976970315 +0.0022531310096383095 +0.004165120975812897 +0.0022117710032034665 +0.0024490980140399188 +0.00454081199131906 +0.002179222006816417 +0.002594046003650874 +0.004009096010122448 +0.00228053200407885 +0.004206198005704209 +0.002400501020019874 +0.0023557999811600894 +0.0040869830118026584 +0.0022952740255277604 +0.0024848220054991543 +0.004090292000910267 +0.002179177012294531 +0.002458306000335142 +0.004162222001468763 +0.0022630339954048395 +0.00429602200165391 +0.0023024370020721108 +0.0023228669888339937 +0.004272084013791755 +0.0022536339820362628 +0.0022966230171732605 +0.004209248989354819 +0.002214772015577182 +0.0025134420138783753 +0.004075984994415194 +0.002249231009045616 +0.002347177010960877 +0.004194645996904001 +0.002343291009310633 +0.004116677009733394 +0.0022819149889983237 +0.0023599370033480227 +0.004218388989102095 +0.0022864369966555387 +0.002352794981561601 +0.004177752998657525 +0.002236472995718941 +0.002478556998539716 +0.0041389199905097485 +0.0023121419944800436 +0.0024131299869623035 +0.0041381759801879525 +0.002381789992796257 +0.0041150109900627285 +0.002309214003616944 +0.0023756370064802468 +0.004097152006579563 +0.0021879419800825417 +0.0025462440098635852 +0.004154858994297683 +0.0022381570015568286 +0.0024152389960363507 +0.004083464998984709 +0.002457365015288815 +0.004077546996995807 +0.002286684000864625 +0.0023259909939952195 +0.0041515099874231964 +0.002176171983592212 +0.0024116239801514894 +0.004312450997531414 +0.002233599981991574 +0.004213466017972678 +0.0022782720043323934 +0.002435700997011736 +0.0042379029910080135 +0.0022088270052336156 +0.002450172003591433 +0.004082739003933966 +0.0022040879994165152 +0.00240259402198717 +0.004226521996315569 +0.002226565993623808 +0.004274670995073393 +0.002276565006468445 +0.0022345780162140727 +0.004230823979014531 +0.0023485020210500807 +0.0023996949894353747 +0.004121019010199234 +0.002133047004463151 +0.0023960419930517673 +0.004151811997871846 +0.002249994984595105 +0.0025008310039993376 +0.004150473017944023 +0.002241929993033409 +0.004326171998400241 +0.0021958459983579814 +0.0022853799746371806 +0.00426298298407346 +0.002273546007927507 +0.0023259099980350584 +0.004198759997962043 +0.0022227739973459393 +0.0023581629793625325 +0.004179909999947995 +0.0022463919885922223 +0.002453783992677927 +0.004114993993425742 +0.002176068985136226 +0.004375703982077539 +0.002279920008732006 +0.002257735002785921 +0.0041525239939801395 +0.0023842299997340888 +0.0008240089809987694 +0.005548599001485854 +0.0022877439914736897 +0.002477556001394987 +0.004141303012147546 +0.002174084016587585 +0.004312281991587952 +0.002278784988448024 +0.0022261959966272116 +0.004318845982197672 +0.002246509015094489 +0.002372671995544806 +0.004134656977839768 +0.0021955459960736334 +0.002484458003891632 +0.00415515000349842 +0.0022414530103560537 +0.002464220015099272 +0.0042261480120942 +0.0007486960093956441 +0.0038292729877866805 +0.004143123020185158 +0.002300627005752176 +0.004161883000051603 +0.0021784659766126424 +0.002459659008309245 +0.0041098149958997965 +0.002181874995585531 +0.002401108999038115 +0.004232954990584403 +0.0022138380154501647 +0.004403488012030721 +0.0022666169970761985 +0.0024184150097426027 +0.004212489002384245 +0.002211181999882683 +0.00252245701267384 +0.004194396984530613 +0.0022892840206623077 +0.0025020060129463673 +0.004248137993272394 +0.0021746440033894032 +0.004166824015555903 +0.002368256013141945 +0.0023738929885439575 +0.004111862013814971 +0.002148765983292833 +0.002546155999880284 +0.004079742997419089 +0.0022655639913864434 +0.0023420389916282147 +0.0041188260074704885 +0.0022300619748421013 +0.0024549939844291657 +0.004062858002725989 +0.0022610549931414425 +0.0042869619792327285 +0.002284133981447667 +0.002257946995086968 +0.004253358987625688 +0.0021735990012530237 +0.002397225995082408 +0.004149638989474624 +0.0022190280142240226 +0.002444449986796826 +0.004186998994555324 +0.0021637720055878162 +0.004281631991034374 +0.0022983129892963916 +0.002332167001441121 +0.004180534015176818 +0.002237688982859254 +0.0023870409931987524 +0.00417634699260816 +0.002232351980637759 +0.002502185001503676 +0.004089686000952497 +0.0022102580114733428 +0.0022776899859309196 +0.004405847023008391 +0.0006830589845776558 +0.003755512007046491 +0.004149378975853324 +0.002384660008829087 +0.004106885986402631 +0.0021051850053481758 +0.0026193509984295815 +0.004132670001126826 +0.0023640829895157367 +0.002479214977938682 +0.004063571977894753 +0.002371399983530864 +0.004241646995069459 +0.002416592004010454 +0.002296280988957733 +0.004248726007062942 +0.002328944014152512 +0.0025036110018845648 +0.004509637015871704 +0.0021899619896430522 +0.004495061002671719 +0.0024297259806189686 +0.0026552380004432052 +0.004616121994331479 +0.0027048399788327515 +0.004354083008365706 +0.002369494002778083 +0.002199591981479898 +0.004237699991790578 +0.0023205970064736903 +0.0024059780116658658 +0.00421709698275663 +0.0023032980097923428 +0.0009559759928379208 +0.005451259989058599 +0.0022796940174885094 +0.00414549297420308 +0.002301219996297732 +0.0022506619861815125 +0.0043034779955632985 +0.002200983988586813 +0.0024950139923021197 +0.00412337901070714 +0.0022656530200038105 +0.002283626003190875 +0.004208102007396519 +0.002251301979413256 +0.004212222003843635 +0.0023471619933843613 +0.002225374977570027 +0.004264313000021502 +0.0024036239774432033 +0.0022267439926508814 +0.004146744002355263 +0.002244189992779866 +0.002423694997560233 +0.004174086992861703 +0.002178069989895448 +0.0024560170131735504 +0.004104768013348803 +0.0021968060173094273 +0.004274264007108286 +0.002308052993612364 +0.0022178009967319667 +0.0042953309894073755 +0.002172243024688214 +0.0024637369788251817 +0.004154968977672979 +0.0022210059978533536 +0.002443384990328923 +0.004181138996500522 +0.0021955939882900566 +0.004292179015465081 +0.002304335997905582 +0.0023710149980615824 +0.00412494401098229 +0.0024348720035050064 +0.00218457099981606 +0.004230753023875877 +0.002246392017696053 +0.0025191490130964667 +0.0041209889750462025 +0.0023187250189948827 +0.002398042008280754 +0.004143636004300788 +0.0024531210074201226 +0.004002072993898764 +0.0023159020056482404 +0.0023009389988146722 +0.0041828279790934175 +0.0021535339765250683 +0.0026283320039510727 +0.004094948002602905 +0.002311604010174051 +0.002342200983548537 +0.004088084999239072 +0.0022723139845766127 +0.004458423994947225 +0.002296054008184001 +0.0023820429923944175 +0.004165840015048161 +0.002350446011405438 +0.002296625985763967 +0.004114942013984546 +0.0023523639829363674 +0.004212546977214515 +0.0023487430007662624 +0.0022236919903662056 +0.004234238003846258 +0.0023495439963880926 +0.002282678004121408 +0.004194806999294087 +0.002158101007808 +0.0024346840218640864 +0.004177394002908841 +0.0022824899933766574 +0.0023656330013182014 +0.004212198982713744 +0.0023538910027127713 +0.0023105000145733356 +0.0040767530153971165 +0.0022936879831831902 +0.004173120978521183 +0.0023808109981473535 +0.002391229005297646 +0.004118902987102047 +0.002160550997359678 +0.0025128719862550497 +0.004166889993939549 +0.002282061002915725 +0.0043652419990394264 +0.002382648002821952 +0.0023406970140058547 +0.004154627997195348 +0.0021944280015304685 +0.0023981999838724732 +0.0041945260018110275 +0.002136891009286046 +0.002466008998453617 +0.004197900998406112 +0.00223942898446694 +0.0024791950127109885 +0.004054008983075619 +0.0023163680161815137 +0.004057194018969312 +0.0023815829772502184 +0.002330073999473825 +0.0041320899908896536 +0.002121311001246795 +0.002479727001627907 +0.004196998983388767 +0.002231659978860989 +0.002501544979168102 +0.004113039991352707 +0.002142549987183884 +0.004434503003722057 +0.002316750993486494 +0.002313860022695735 +0.004184110992355272 +0.0022744369925931096 +0.002398210985120386 +0.004157824994763359 +0.0022107730037532747 +0.0025768699997570366 +0.004191812011413276 +0.0022350350045599043 +0.0041788300150074065 +0.0023894210171420127 +0.0008710839902050793 +0.003708470001583919 +0.00420961799682118 +0.002256409003166482 +0.004429147986229509 +0.0021336840000003576 +0.002479325979948044 +0.004147320985794067 +0.0022717390093021095 +0.004289688018616289 +0.0023103440180420876 +0.0023575439990963787 +0.004141359007917345 +0.002364571002544835 +0.0021842849964741617 +0.004248328012181446 +0.002255559986224398 +0.00235712798894383 +0.004160984011832625 +0.002298969979165122 +0.0024925500038079917 +0.004372652008896694 +0.002775342989480123 +0.004957740020472556 +0.0027025960152968764 +0.004785573983099312 +0.0027905379829462618 +0.00493265301338397 +0.002640841994434595 +0.0036934210220351815 +0.003994478000095114 +0.0025718420220073313 +0.004736336006317288 +0.0028218259976711124 +0.004819256981136277 +0.002689906978048384 +0.002683864993741736 +0.004752250999445096 +0.0029170150228310376 +0.004467193997697905 +0.0025255219952668995 +0.004741065000416711 +0.0027024680166505277 +0.002670725021744147 +0.004653034993680194 +0.0026958680246025324 +0.004687973007094115 +0.0026361359923612326 +0.0046642780071124434 +0.0025350450014229864 +0.0025230769824702293 +0.0046188489941414446 +0.0027448850159998983 +0.004653996991692111 +0.0027214789879508317 +0.002665348001755774 +0.004516012006206438 +0.002834206010447815 +0.004982309008482844 +0.0030845880100969225 +0.0024633859866298735 +0.0027115599950775504 +0.004877319996012375 +0.002823745016939938 +0.005004557984648272 +0.0011191469966433942 +0.006395252014044672 +0.0026358559844084084 +0.004633985983673483 +0.0024605139915365726 +0.002591180003946647 +0.004609663999872282 +0.002410519984550774 +0.004599815001711249 +0.0022247750021051615 +0.0026324609934818 +0.0044795499998144805 +0.0026036290219053626 +0.004598350002197549 +0.002294067991897464 +0.0026923849945887923 +0.00427991698961705 +0.002231944992672652 +0.0023820979986339808 +0.004070427996339276 +0.002417029987554997 +0.0008753149886615574 +0.005461216002004221 +0.0024019760021474212 +0.004071748000569642 +0.00237663701409474 +0.00227639899821952 +0.004101797996554524 +0.002363309991778806 +0.0008751570130698383 +0.005442244000732899 +0.002309294999577105 +0.0009608579857740551 +0.005674084008205682 +0.000802722992375493 +0.002516742009902373 +0.005625568999676034 +0.002191717008827254 +0.004173186025582254 +0.0008712690032552928 +0.0037099530163686723 +0.004221664014039561 +0.002257064013974741 +0.001064247015165165 +0.005392471997765824 +0.0023214940156321973 +0.004155183996772394 +0.00231359398458153 +0.0023841930087655783 +0.004112477006856352 +0.002375791984377429 +0.0023066939902491868 +0.00412187198526226 +0.002219014015281573 +0.002405923994956538 +0.004121470992686227 +0.002311944990651682 +0.000986453000223264 +0.005551668000407517 +0.0007129810110200197 +0.003786421992117539 +0.0043466800125315785 +0.002242431015474722 +0.004160998010775074 +0.0023726810177322477 +0.0022884949867147952 +0.004024493013275787 +0.0022081449860706925 +0.0011810220021288842 +0.005341173004126176 +0.002321423002285883 +0.004230046994052827 +0.0023228609934449196 +0.002348563983105123 +0.004126101994188502 +0.002291353011969477 +0.0023647059861104935 +0.004163520992733538 +0.0022932100109755993 +0.0009421890135854483 +0.005439316009869799 +0.0023248849902302027 +0.00232374100596644 +0.004206338984658942 +0.002387938991887495 +0.0041219620034098625 +0.0023723820049781352 +0.002323355001863092 +0.004068367998115718 +0.00242498199804686 +0.0008339459891431034 +0.0055028320057317615 +0.0023406899999827147 +0.0009992569976020604 +0.005436165985884145 +0.002353579009650275 +0.004279953020159155 +0.0022428550000768155 +0.0025742129946593195 +0.004031897988170385 +0.0023701419995632023 +0.0024437520187348127 +0.004170864995103329 +0.002304451016243547 +0.0024796599755063653 +0.004137423005886376 +0.0021656099997926503 +0.004174283996690065 +0.0024123799812514335 +0.0022525299864355475 +0.004616578022250906 +0.0022009439999237657 +0.0023931239848025143 +0.004141930985497311 +0.0022512360010296106 +0.000988657004199922 +0.005501223000464961 +0.002545245981309563 +0.000708895007846877 +0.0056242719874717295 +0.0009319730161223561 +0.0025296229869127274 +0.00527904400951229 +0.0023914479825180024 +0.004050731018651277 +0.002380192978307605 +0.0009510439995210618 +0.0055588450049981475 +0.0008894749917089939 +0.0025014239945448935 +0.005326548998709768 +0.002451630018185824 +0.004042489017592743 +0.0022575589828193188 +0.0025081440107896924 +0.004061510000610724 +0.0023244420008268207 +0.0024067309859674424 +0.004140881006605923 +0.0023665000044275075 +0.002328612987184897 +0.004149880987824872 +0.0025877319858409464 +0.0040799640119075775 +0.0023521370021626353 +0.0023400190111715347 +0.0041649720224086195 +0.0024437319952994585 +0.0023377510078717023 +0.004092418996151537 +0.0023674200056120753 +0.004187178012216464 +0.0023268490040209144 +0.0023179489944595844 +0.004205208009807393 +0.0023377749894279987 +0.00238837199867703 +0.003934591979486868 +0.0023472920001950115 +0.002324207976926118 +0.004132971982471645 +0.002366036002058536 +0.0023407650005538017 +0.004250764002790675 +0.0024115519772749394 +0.0041255460237152874 +0.0024152679834514856 +0.002326887013623491 +0.004011318989796564 +0.002377072989474982 +0.0023053750046528876 +0.004147752013523132 +0.002329612005269155 +0.0011310899863019586 +0.00525752198882401 +0.0023724919883534312 +0.004122882994124666 +0.002387937012827024 +0.002300765016116202 +0.0041453129961155355 +0.0023737429874017835 +0.002306874986970797 +0.004183899000054225 +0.000994780013570562 +0.003698175016324967 +0.00411896500736475 +0.0009371670021209866 +0.003729565010871738 +0.004191641986835748 +0.0023021299857646227 +0.004233401996316388 +0.0024251169816125184 +0.002226242999313399 +0.004199346003588289 +0.00232515498646535 +0.002367734006838873 +0.004141238983720541 +0.0022213920019567013 +0.0025060389889404178 +0.0040722629928495735 +0.002247149997856468 +0.0024420310219284147 +0.004094753006938845 +0.0023774830042384565 +0.004230293008731678 +0.002237915003206581 +0.002479269984178245 +0.004064791981363669 +0.002258431981317699 +0.002686277002794668 +0.00405177500215359 +0.002338408987270668 +0.0024092899984680116 +0.004078903002664447 +0.0023521609837189317 +0.004219819005811587 +0.00232726099784486 +0.0024258519988507032 +0.004129793989704922 +0.0022844659979455173 +0.0009511490061413497 +0.005540278012631461 +0.0022357160050887614 +0.002406594983767718 +0.004220661998260766 +0.002346138993743807 +0.004172522982116789 +0.002291009994223714 +0.002315259975148365 +0.004253279999829829 +0.002210975013440475 +0.0024738840002100915 +0.004143764002947137 +0.0021749529987573624 +0.0025039250031113625 +0.004238917026668787 +0.002374892996158451 +0.004116073017939925 +0.002264490001834929 +0.0024815060023684055 +0.004101177997654304 +0.002209401020081714 +0.004349316004663706 +0.002258492022519931 +0.0022486390080302954 +0.004282341978978366 +0.0022093959851190448 +0.0024988029908854514 +0.004147802013903856 +0.0022314579982776195 +0.0025073509896174073 +0.004050001007271931 +0.002267588017275557 +0.002472238993505016 +0.004231405007885769 +0.0021794089989271015 +0.0030900150013621897 +0.003403745999094099 +0.0022528599947690964 +0.0042302820074837655 +0.002297550003277138 +0.002347406989429146 +0.004129675013246015 +0.0022408170043490827 +0.0023029219883028418 +0.004393712006276473 +0.002242490998469293 +0.0025128120032604784 +0.004242652008542791 +0.0023351660056505352 +0.004094939999049529 +0.0024005830055102706 +0.002233136008726433 +0.004103779996512458 +0.0023767040111124516 +0.0023481080133933574 +0.004072912008268759 +0.002298993000295013 +0.002369065012317151 +0.004187658021692187 +0.0024987829965539277 +0.002356584998778999 +0.004233276005834341 +0.002371651993598789 +0.0042351750016678125 +0.002185025019571185 +0.0024133319966495037 +0.0042968699999619275 +0.002327616006368771 +0.004032570024719462 +0.002348830981645733 +0.0023458439973182976 +0.004060878010932356 +0.0024482399749103934 +0.0024663489894010127 +0.004006641014711931 +0.0022978439810685813 +0.00251157398452051 +0.004192346998024732 +0.0022692159982398152 +0.002447399980155751 +0.004015722981421277 +0.0024726249976083636 +0.0042797890200745314 +0.0026166739990003407 +0.0008847579883877188 +0.005712442012736574 +0.002170977008063346 +0.002488774014636874 +0.004197493981337175 +0.0023812070139683783 +0.004153330984991044 +0.002339730999665335 +0.0023381789796985686 +0.0040114680014085025 +0.00232488801702857 +0.0023264390183612704 +0.004294206999475136 +0.0022237820085138083 +0.002470435021677986 +0.004164959012996405 +0.0021997349977027625 +0.00425513499067165 +0.0023216459958348423 +0.0023736739822197706 +0.004103582992684096 +0.0023417820048052818 +0.002254077000543475 +0.004160390992183238 +0.002247056021587923 +0.0024939639843069017 +0.004155111004365608 +0.002376266027567908 +0.004378131998237222 +0.0023869280121289194 +0.0024554000119678676 +0.004558304004603997 +0.0023544830037280917 +0.004702559002907947 +0.002579169988166541 +0.0010446579835843295 +0.005927794991293922 +0.002648819994647056 +0.004386432992760092 +0.002520602021832019 +0.0025397709978278726 +0.004639602004317567 +0.002353082993067801 +0.0024649809929542243 +0.004249254998285323 +0.0024263630039058626 +0.004350754985352978 +0.0022137240157462656 +0.002500066999346018 +0.004105596017325297 +0.002222618000814691 +0.0023630840005353093 +0.0041562569967936724 +0.0022697709791827947 +0.004180310992524028 +0.0022741569846402854 +0.0022564300161320716 +0.004230286984238774 +0.0023888549767434597 +0.0023705589992459863 +0.004159148025792092 +0.002253946993732825 +0.0010695479868445545 +0.003628837992437184 +0.004003888985607773 +0.0025282959977630526 +0.004238362977048382 +0.002246393996756524 +0.002387871005339548 +0.004059875995153561 +0.0024055610119830817 +0.004078341997228563 +0.002267969015520066 +0.002487086982000619 +0.004281446017557755 +0.002108823013259098 +0.002298418985446915 +0.004132667003432289 +0.002269808988785371 +0.004234020016156137 +0.0022840230085421354 +0.0023681250168010592 +0.0041812970011960715 +0.00226192400441505 +0.002313257020432502 +0.004183648998150602 +0.0022473260178230703 +0.002398945012828335 +0.004247891018167138 +0.00218016401049681 +0.0024953829997684807 +0.004084463987965137 +0.002322581014595926 +0.004135054012294859 +0.002294333011377603 +0.0022821020102128386 +0.00419089401839301 +0.0021658999903593212 +0.002452022017678246 +0.004189773026155308 +0.0022155359911266714 +0.0025196670030709356 +0.003968089004047215 +0.002349876012885943 +0.004315977013902739 +0.002274528000270948 +0.0022708250035066158 +0.0041381409973837435 +0.002269137999974191 +0.0022777399863116443 +0.00419053400401026 +0.002174066990846768 +0.0026295260176993906 +0.004015241021988913 +0.0023257310094777495 +0.002478444017469883 +0.004039555002236739 +0.0023361030034720898 +0.004098224017070606 +0.002490237995516509 +0.002251865982543677 +0.004194654989987612 +0.0022821279999334365 +0.0024454619851894677 +0.004112792987143621 +0.002226382988737896 +0.0025554400053806603 +0.004123105987673625 +0.0023225389886647463 +0.004233303014189005 +0.0023409069981426 +0.002343069005291909 +0.004103057988686487 +0.0022364999749697745 +0.0023667640052735806 +0.004111881018616259 +0.0022863619960844517 +0.0025198560033459216 +0.00410679099150002 +0.002252351987408474 +0.004252975981216878 +0.0021489220089279115 +0.0024432290229015052 +0.0040746140002738684 +0.002259847999084741 +0.0024871939967852086 +0.00412482998217456 +0.002254884981084615 +0.002437672985251993 +0.004318886989494786 +0.0022126279945950955 +0.0025763589947018772 +0.0041648540063761175 +0.0007150489836931229 +0.0037447470240294933 +0.004154057998675853 +0.002334213990252465 +0.0041375810105819255 +0.0022032779816072434 +0.0024705050163902342 +0.004245013988111168 +0.002254323015222326 +0.004169438005192205 +0.002333431999431923 +0.0022304700105451047 +0.004271426994819194 +0.0022091359714977443 +0.0024709340068511665 +0.004077669989783317 +0.002165595011319965 +0.002522611990571022 +0.004086664004717022 +0.0022585850092582405 +0.002281492023030296 +0.004174788016825914 +0.002300901018315926 +0.0024626399972476065 +0.004189599014353007 +0.002338633988983929 +0.004268077987944707 +0.002413779991911724 +0.0021795600187033415 +0.004231097991578281 +0.0022142130183055997 +0.002432736975606531 +0.004388130008010194 +0.0022558780037797987 +0.002425170998321846 +0.00434355199104175 +0.0024160130124073476 +0.004439234995516017 +0.0022785549808759242 +0.002455924986861646 +0.004678263008827344 +0.0024911460059229285 +0.004837830987526104 +0.002526836993638426 +0.004435801005456597 +0.002595141006167978 +0.00249086701660417 +0.004507990001002327 +0.0024107019999064505 +0.0024013669753912836 +0.0047248839982785285 +0.002397958014626056 +0.004188529012026265 +0.0023216460249386728 +0.002322518004802987 +0.00415941298706457 +0.002170303021557629 +0.002458906004903838 +0.004248964018188417 +0.0023239800066221505 +0.0023215539986267686 +0.0044653140066657215 +0.0023353879805654287 +0.004216684988932684 +0.002246434974949807 +0.002487562975147739 +0.0041696370171848685 +0.002222117007477209 +0.0024274619936477393 +0.004222905001370236 +0.002302016015164554 +0.004176352987997234 +0.0023442700039595366 +0.0023656600096728653 +0.004114222974749282 +0.002217725006630644 +0.0025406710046809167 +0.004245282005285844 +0.002285925002070144 diff --git a/assets/abg/benchmarking-python/benchmarking/render_wo_sc/prim-rlib.py b/assets/abg/benchmarking-python/benchmarking/render_wo_sc/prim-rlib.py @@ -0,0 +1,135 @@ +import pyray as pr +import heapq +import random +import math +import time + +VERTICES = 100000 +EDGES = 1000000 +RADIUS = 5 + +pr.init_window(5120,1440, "prim") + +class Vertex(): + def __init__(self, x, y): + self.x = x + self.y = y + self.visited = False + def draw_vertex(self): + if self.visited: + pr.draw_circle(int(self.x),int(self.y), RADIUS, pr.WHITE) + else: + pr.draw_circle(int(self.x),int(self.y), RADIUS, pr.GRAY) +class Edge(): + def __init__(self, v1, v2): + self.v1 = v1 + self.v2 = v2 + self.dist = math.sqrt(((v1.x - v2.x) ** 2) + ((v1.y - v2.y) ** 2)) + def draw_edge(self, c): + pr.draw_line(int(self.v1.x), int(self.v1.y), int(self.v2.x), int(self.v2.y), c) + + def __lt__(self,otr): + return self.dist < otr.dist + + +graph = {} + +for i in range(0,VERTICES): + x = random.random() * 5120 + y = random.random() * 1440 + graph[Vertex(x,y)] = [] + + +edge_list = [] +keys = list(graph.keys()) + +for i in range(0,EDGES): + k1 = None + k2 = None + while k1 == k2: + k1 = random.choice(keys) + k2 = random.choice(keys) + + edge = Edge(k1,k2) + graph[k1].append(edge) + graph[k2].append(edge) + edge_list.append(edge) + + +edge_heap = [] +visited_vertices = set() + + +start = random.choice(keys) +start.visited = True +visited_vertices.add(start) +for edge in graph[start]: + heapq.heappush(edge_heap, edge) + + +first = True + +to_draw_vert = [] +to_draw_edge = [] + +texture = pr.load_render_texture(5120,1440) + +while True: + st = time.monotonic() + + pr.begin_texture_mode(texture) + + if first: + pr.clear_background(pr.BLACK) + + for edge in edge_list: + edge.draw_edge(pr.DARKGRAY) + first = False + + for vertex in graph: + vertex.draw_vertex() + + for edge in to_draw_edge: + edge.draw_edge(pr.WHITE) + for vert in to_draw_vert: + vert.draw_vertex() + + to_draw_vert = [] + to_draw_edge = [] + + + item = None + while edge_heap: + candidate = heapq.heappop(edge_heap) + if (candidate.v1 in visited_vertices) != (candidate.v2 in visited_vertices): + item = candidate + break + + if item is None: + break + + new_vertex = item.v2 if item.v1 in visited_vertices else item.v1 + visited_vertices.add(new_vertex) + new_vertex.visited = True + + to_draw_vert.append(new_vertex) + to_draw_edge.append(item) + + for edge in graph[new_vertex]: + if not edge.v1 in visited_vertices or not edge.v2 in visited_vertices: + heapq.heappush(edge_heap, edge) + + pr.end_texture_mode() + + source_rec = pr.Rectangle(0, 0, 5120, 1440) + dest_rec = pr.Rectangle(0, 0, 5120,1440) + + pr.begin_drawing() + pr.draw_texture_pro(texture.texture, source_rec, dest_rec, pr.Vector2(0, 0), 0, pr.WHITE) + pr.end_drawing() + + end = time.monotonic() + print(end - st) + +pr.unload_render_texture(texture) +pr.close_window() diff --git a/assets/abg/benchmarking-python/benchmarking/render_wo_sc/prim.py b/assets/abg/benchmarking-python/benchmarking/render_wo_sc/prim.py @@ -0,0 +1,132 @@ +import pygame +import heapq +import random +import math +import time + +pygame.init() + +display = pygame.display.set_mode((5120,1440)) + +VERTICES = 100000 +EDGES = 1000000 + +white = (255, 255, 255) +red = (255, 0, 0) +black = (0, 0, 0) +grey = (100,100,100) +light_grey = (50,50,50) + + +class Vertex(): + def __init__(self, x, y): + self.x = x + self.y = y + self.visited = False + def draw_vertex(self,display): + if self.visited: + pygame.draw.circle(display, white, (self.x,self.y), 5) + else: + pygame.draw.circle(display, grey, (self.x,self.y), 5) +class Edge(): + def __init__(self, v1, v2): + self.v1 = v1 + self.v2 = v2 + self.dist = math.sqrt(((v1.x - v2.x) ** 2) + ((v1.y - v2.y) ** 2)) + def draw_edge(self,display, c): + pygame.draw.line(display, c, (self.v1.x,self.v1.y), (self.v2.x,self.v2.y), 1) + + def __lt__(self,otr): + return self.dist < otr.dist + + +graph = {} + +for i in range(0,VERTICES): + x = random.random() * 5120 + y = random.random() * 1440 + graph[Vertex(x,y)] = [] + + +edge_list = [] +keys = list(graph.keys()) + +for i in range(0,EDGES): + k1 = None + k2 = None + while k1 == k2: + k1 = random.choice(keys) + k2 = random.choice(keys) + + edge = Edge(k1,k2) + graph[k1].append(edge) + graph[k2].append(edge) + edge_list.append(edge) + + +edge_heap = [] +visited_vertices = set() + + +start = random.choice(keys) +start.visited = True +visited_vertices.add(start) +for edge in graph[start]: + heapq.heappush(edge_heap, edge) + + +first = True + +to_draw_vert = [] +to_draw_edge = [] + +while True: + start = time.monotonic() + for event in pygame.event.get(): + if event.type == pygame.QUIT: + pygame.quit() + quit() + + if first: + display.fill(black) + + for edge in edge_list: + edge.draw_edge(display, light_grey) + first = False + + for vertex in graph: + vertex.draw_vertex(display) + + for edge in to_draw_edge: + edge.draw_edge(display, white) + for vert in to_draw_vert: + vert.draw_vertex(display) + + to_draw_vert = [] + to_draw_edge = [] + + + item = None + while edge_heap: + candidate = heapq.heappop(edge_heap) + if (candidate.v1 in visited_vertices) != (candidate.v2 in visited_vertices): + item = candidate + break + + if item is None: + break + + new_vertex = item.v2 if item.v1 in visited_vertices else item.v1 + visited_vertices.add(new_vertex) + new_vertex.visited = True + + to_draw_vert.append(new_vertex) + to_draw_edge.append(item) + + for edge in graph[new_vertex]: + if not edge.v1 in visited_vertices or not edge.v2 in visited_vertices: + heapq.heappush(edge_heap, edge) + + pygame.display.update() + end = time.monotonic() + print(end - start) diff --git a/posts/notes/abg.md b/posts/notes/abg.md @@ -0,0 +1,807 @@ +# abg + +this is associated with the preliminary post titled: "to make a cool background" + +# To Make a Cool Background + +I wrote a visualization program for prim's algorithm that induces a minimum spanning tree (MST) on a procedurally generated graph. How does one go about making this their background and screensaver with X11 / dwm? + +## MST + +IMPLEMENTATION DETAILS + +## Background making + +[https://github.com/python-xlib/python-xlib](https://github.com/python-xlib/python-xlib.md) + +```python3 +os.environ["SDL_VIDEODRIVER"] = "dummy" +``` + +why not just use screenshots in a shared location? + +indeed, why not? + +## fuck you and your bullshit. + +Benchmarking + +## c -> c++ + +realized I needed a heap. + +## bmp vs png vs jpg + +bmp is crazy fucking fast (benchmark) + +(looked in the code for supported file formats, looked in feh -> lib(whatever) for support) + +note larger file size. + +this is interesting, look further. + +### patched upstream xl + +### x11 + +x11 is weird with this because they are kind hacky in that they just put up a window and take away your inputs, forcing them to go to that window. + +(should learn more about this) + +### Benchmarking + +uhhh... is it actually that fast? + +wait; did this just optimize all of my code? + +Well yes, but actually no. + +adding: + +std::cout << g.toString() << std::endl; + +gives ~ the same perf (minus the amount of time it takes to send so much data to stdout) + +(this would require the full traversal because toString is dependent upon prior prim algo steps being performed otherwise the traversal status for edges and vertices would be incorrect). + +(fixed a bug in the python code slowing it down) + +see no_render_2_fixed_itr. + +## C++ benchmarking + +330 ms for init stuff w/ graph +1405 ms for iteration + +broken further down: + +average iteration time is ~0ms, reaching ~20ms for later stages. Over time the percentage of valid edges declines. + +added getUnvisitedEdges function to return only non-traversed edges + +Init time: 332 +Loop time: 1344 +Init time: 327 +Loop time: 1350 +Init time: 322 +Loop time: 1374 + +still has a similar issue as before; degredation in perf towards the end bc things are pushed earlier on and then get invalidated later on. + +that's basically all I could squeeze out without changes to the algo to be eager instead of lazy wrt tracking vertices. Basically, what's the shortest distance to a given vertex instead of what's the edge that we have that's shortest. + +such a refactor though is likely irrelevant right now due to the added cost of + +ope; realized my function for get edges with unvisited vertices above was wrong. I was just not pushing visited edges, but we really care about vertices that haven't been visited so refactored the edge generation and stuff to get a stable ref to v2index and then push only if that hasn't been visited. + +Init time: 389 +Loop time: 706 +Init time: 315 +Loop time: 671 +Init time: 337 +Loop time: 692 + +now we're cooking with gas. + +tests now fail. bc snapshots. updated and everything seems right again. + +actually the stable things isn't really necessary as this approach that's unstable is functionally the same, but safer in case there are changes to the IR of edges. + +Init time: 334 +Loop time: 694 +Init time: 321 +Loop time: 668 +Init time: 323 +Loop time: 701 + +now we find this: + +(see benchmarking/no_render_v_100000_e_1000000_s_0/out1.csv) + +same optimization performed for python code so that's then down to 8.6 seconds ~~~ see andrew@deepthought:no_render_3_fixed_itr_fixed_check$ + +at this point it's worth worrying about the return for the get untraversed edges for vertices not traversed. after that: + +Init time: 314 +Loop time: 678 +Init time: 312 +Loop time: 671 +Init time: 311 +Loop time: 680 + +and with the optimization for edge ordering: + +Init time: 311 +Loop time: 659 +Init time: 333 +Loop time: 673 +Init time: 320 +Loop time: 709 +Init time: 311 +Loop time: 674 + +this is still too fucking slow. + +what's making the graph induction so incredibly slow? + +just graph creation: + +graph create: 317 +Loop time: 691 +graph create: 314 +Loop time: 657 +graph create: 311 +Loop time: 665 + +reserving instead of pushing: + +graph create: 314 +Loop time: 636 +graph create: 324 +Loop time: 688 +graph create: 315 +Loop time: 693 + +replaced map with vector where we were using indices to index into the map (dumb): + +graph create: 174 +Loop time: 654 +graph create: 179 +Loop time: 610 +graph create: 184 +Loop time: 618 +graph create: 185 +Loop time: 622 + +ok, let's now run the full benchmarks again: + +benchmarking/no_render_only_grab_unvisited_edges_vector_instead_of_map_v_100000_e_1000000_s_0/out1.csv + +0.04,0.79,0.84 +0.03,0.79,0.84 +0.04,0.77,0.82 + +this was kind of just stalling though becaus I'm out of my depth as it relates to rendering, the larger perf issue. + +back to that. + +here are where this stands w/ 1000 v and 10_000 edges + +prior was ~34s per iteration (final col) + +this is basically the same: + +benchmarking/better_render_v_1000_e_10000_s_0/out1.csv + +(snippet from above file) + +0.26,10.71,34.22 +0.29,10.64,33.24 +0.31,10.62,33.57 +0.28,10.53,33.56 + +fine. we'll fix the raylib shit. (queue montage) + +make debug-build && time ./abg.out -s 0 --edges 2000 --vertices 200 + +real 0m1.948s +user 0m0.529s +sys 0m0.060s + +~20 milliseconds per render call w/ make debug-build && time ./abg.out -s 0 --edges 20000 --vertices 2000 + +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 19 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 + +huh; what's the other iteration cost? + + + while (!WindowShouldClose() && toVisit.size() != 0) { + auto startLoop = std::chrono::steady_clock::now(); + BeginDrawing(); + ClearBackground(BLACK); + auto startRender = std::chrono::steady_clock::now(); + g.render(); + auto endRender = std::chrono::steady_clock::now(); + auto diff = std::chrono::duration_cast<std::chrono::milliseconds>(endRender - startRender); + std::cout << "Amount of time calling render: " << diff.count() << std::endl; + EndDrawing(); + + // since we wait sleepTime here, the bg render has a render delta of + // at minimum sleepTime when switching tags in dwm, this is rather + // annoying because the screen doesn't repaint until the sleep time + // passes, which results in artifacts on screen. + + // despite this, calling render a lot of times is rather intensive + // (at least on my hardware) and so this tradeoff is accepted for + // now, unless there's a simple approach that allows for preemption + + //usleep((int)(sleepTime * 1000000)); + + oneStepPrim(toVisit, visitedIndices, g); + auto endLoop = std::chrono::steady_clock::now(); + auto loopDiff = std::chrono::duration_cast<std::chrono::milliseconds>(endLoop - startLoop); + std::cout << "Total single iteration cost: " << loopDiff.count() << std::endl; + + } + +so it's somewhere in that first block; in the render area. the actual computation cost at the end is inconsequential. + +begindrawing is ~free. + +clear background is ~free. + +~46 of 65ms are spent on enddrawing. + +so two things: + +19ms on render +46ms on enddrawing + +what about when the numbers are much bigger (100_000 edges, 10_000 vertices)? + +Render time: 56 +End Drawing time: 237 +Total single iteration cost: 316 + +the other 23 ms is the prim step + begin drawing / clear background. + +can we just not clear the screen? does that help? nope. doesn't do anything. + +target 60 fps? + +nope. + +ahh; the slowness is being realized later on. while render is cool with me double calling on edges; this is felt when enddrawing is called as the gpu does the rendering and stuff at that point. + +what happens if I use the better single time render method? + +before: + +Render time: 62 +End Drawing time: 244 +Total single iteration cost: 306 +Render time: 60 +End Drawing time: 245 +Total single iteration cost: 305 +Render time: 60 +End Drawing time: 245 +Total single iteration cost: 305 +Render time: 55 +End Drawing time: 252 +Total single iteration cost: 307 +Render time: 60 +End Drawing time: 245 +Total single iteration cost: 305 +Render time: 58 +End Drawing time: 247 +Total single iteration cost: 306 + +after: + +Total single iteration cost: 158 +Render time: 46 +End Drawing time: 112 +Total single iteration cost: 159 +Render time: 46 +End Drawing time: 112 +Total single iteration cost: 159 +Render time: 45 +End Drawing time: 113 +Total single iteration cost: 159 +Render time: 46 +End Drawing time: 111 +Total single iteration cost: 158 +Render time: 46 +End Drawing time: 112 +Total single iteration cost: 158 +Render time: 46 +End Drawing time: 113 + +hell yeah. + +why so slow still? + +Like this is only ~100_000 and ~10_000 vertices so like why so slow? + +benchmarked now: + +benchmarking/simpler_render_v_1000_e_10000_s_0/out1.csv +0.29,7.77,18.96 +0.27,7.80,19.17 +0.29,7.90,19.17 +0.31,7.76,19.05 +0.29,7.72,18.68 +0.30,7.90,18.56 +0.27,7.78,18.80 +0.27,7.77,18.74 +0.29,7.69,18.77 +0.32,7.67,18.85 + +alright then. unfortunately, we're only calling the draw function once per vertex and edge now. we could change the rendering to only render connections, this would increase speed a lot, but it also makes the animation look less cool so fuck that. + +could we draw in the background? like create a new thread that doesn't block us and then wait until that's done once we get back? + +well maybe, but the issue is I don't know how well this handles drawing while there's a queue of messages still being sent. + +std::thread t(endDrawing); +t.join(); + +vs endDrawing() + +result in entirely different outcomes. + +the second sort of renders some stuff, but gets totally fucked up and then just black screens. + +due to an import? no this shit's just fucked. + +opengl affinity. + +can prebake the graph though and then only render additions. + +after: + +0.19,1.77,3.86 +0.17,1.76,3.81 +0.19,1.76,3.82 +0.18,1.75,3.85 +0.18,1.71,3.86 +0.19,1.68,3.83 +0.18,1.72,3.83 + +holy shit. can we make this faster? + +of fucking course we can. track if a traversed state has been rendered and skip it if it has, using this to update our incremental texture. we then render that. + +benchmarking/cache_first_use_blank_graph_v_1000_e_10000_s_0/out1.csv + +0.17,0.65,3.06 +0.18,0.63,3.05 +0.18,0.66,3.05 +0.18,0.64,3.05 +0.18,0.64,3.04 +0.17,0.63,3.02 +0.18,0.62,3.04 +0.19,0.64,3.05 +0.17,0.65,3.04 +0.17,0.66,3.03 +0.18,0.62,3.04 +0.17,0.63,3.03 + +this is too boring; let's turn this shit up. + +how fast are we relative to the python bloatware webshit? + +benchmarking/cache_first_use_blank_graph_v_10000_e_100000_s_0/out1.csv + +1.40,28.92,35.76 +1.53,29.30,35.95 + +(notice the edges and vertices) + +vs python: + +1.33,10730.71,10772.74 + +that's only >300x slower for the python code so the average python developer would totally be cool with shipping it. Job done, webshit: built. + +alright then. enough messing around. We really should have a queue for items that are to be rendered so we don't have to iterate over all vertices and edges, checking if they have the 'rendered' flag set. + +after doing this we find: + +benchmarking/track_to_render_v_10000_e_100000_s_0/out1.csv + +1.50,3.12,29.43 +1.51,3.20,29.67 +1.57,3.08,30.00 +1.57,3.04,30.07 + +35.855000000000004 / 29.7925 = 1.2034908114458338 + +okay, so 20 percent faster. still too fucking slow. + +i'm also getting sick of this bs chrono / time shit. time to bring in perf. + + 3.20% 395 abg.out libraylib.so.6.0.0 [.] rlVertex3f + 2.08% 338 abg.out abg.out [.] Edge::operator>(Edge const&) const + 1.55% 245 abg.out abg.out [.] oneStepPrim(std::priority_queue<Edge, std::vector<Edge, st> + 1.41% 255 abg.out libraylib.so.6.0.0 [.] rlDrawRenderBatch + 1.22% 225 abg.out libc.so.6 [.] 0x0000000000185dde + 0.85% 129 abg.out libraylib.so.6.0.0 [.] DrawCircleSector + 0.79% 136 abg.out libc.so.6 [.] pthread_mutex_lock + 0.74% 133 abg.out libc.so.6 [.] ioctl + 0.64% 115 abg.out libgallium-26.2.2-arch1.1.so [.] 0x00000000007f8138 + 0.62% 113 abg.out libraylib.so.6.0.0 [.] PollInputEvents + 0.57% 91 abg.out libc.so.6 [.] cfree + 0.56% 95 abg.out libc.so.6 [.] malloc + 0.54% 27 abg.out libc.so.6 [.] 0x00000000001866c9 + 0.53% 99 abg.out libgallium-26.2.2-arch1.1.so [.] 0x000000000180c45c + +alright so raylib is spending a decent amount of time on Vertex3f though not a crazy amount. Comparisons between edges are common; not surprising as we are using a heap with lots of elements towards the end, as we've seen. prim's algorithm generally taking some time, makes sense. + +render drawing is rather low, but within reason. This is rather disappointing. It's nice when it's like, no, dude, you spent 99.95% of your time in one function. + +looking at the call stack: + +|--14.80%--EndTextureMode +|--58.02%--EndDrawing +--1.62%--Graph::render() + +well. huh. end texture mode is where I add things though the function itself is just clearing the queue. + +It's a bit surprising enddrawing is more expensive since it just loads in the texture I've baked. + +--- + +I shall call this ~done. final findings with + +rendered below is using vertices = 10_000, edges = 100_000 + +unrendered below is using vertices = 200_000, edges = 2_000_000 + +- python (with overdraw mostly fixing + texture map) + - rendered + - 58.758 seconds + - unrendered + - 20.253333333333334 seconds + +- c++ (with overdraw fixing + texture map) + - rendered + - - 29.7925 seconds + + - unrendered + - 2.118 seconds + + +benchmarking/final_no_render_v_200000_e_2000000_s_0/ + +takeaway: + +the rendered python implementation w/ 10_000 v and 100_000 edges using perf: + +Performance counter stats for 'python3 prim.py': + + 0 context-switches:u # 0.0 cs/sec cs_per_second + 0 cpu-migrations:u # 0.0 migrations/sec migrations_per_second + 14,233 page-faults:u # 252.0 faults/sec page_faults_per_second + 56,487.57 msec task-clock:u # nan CPUs CPUs_utilized + 30,763,483 branch-misses:u # 0.7 % branch_miss_rate (88.90%) + 4,305,442,939 branches:u # 76.2 M/sec branch_frequency (88.90%) + 128,137,043,750 cpu-cycles:u # 2.3 GHz cycles_frequency (88.90%) + 18,736,054,409 instructions:u # 0.1 instructions insn_per_cycle (88.85%) + TopdownL1 # 0.1 % tma_backend_bound + # 98.9 % tma_bad_speculation (88.87%) + # 0.5 % tma_frontend_bound (77.81%) + # 0.5 % tma_retiring (88.92%) + + 59.936596362 seconds time elapsed + + 52.628026000 seconds user + 1.492521000 seconds sys + +gpu constrained though. + +the rendered c++ implementation w/ 10_000 v and 100_000 edges using perf: + + Performance counter stats for './abg.out -s 0 --vertices 10000 --edges 100000': + + 0 context-switches:u # 0.0 cs/sec cs_per_second + 0 cpu-migrations:u # 0.0 migrations/sec migrations_per_second + 9,363 page-faults:u # 1819.4 faults/sec page_faults_per_second + 5,146.21 msec task-clock:u # nan CPUs CPUs_utilized + 28,144,835 branch-misses:u # 5.9 % branch_miss_rate (89.55%) + 473,319,266 branches:u # 92.0 M/sec branch_frequency (88.64%) + 3,973,233,282 cpu-cycles:u # 0.8 GHz cycles_frequency (88.55%) + 2,925,854,560 instructions:u # 0.7 instructions insn_per_cycle (89.12%) + TopdownL1 # 2.7 % tma_backend_bound + # 93.6 % tma_bad_speculation (88.66%) + # 0.9 % tma_frontend_bound (77.75%) + # 2.8 % tma_retiring (88.67%) + + 29.577542431 seconds time elapsed + + 2.925597000 seconds user + 2.094917000 seconds sys + +32x less instructions than the python version. Neither is cpu constrained, but this is a non-trivial amount of overhead from the python version; c++ version also had 7x higher instructions per cycle. + +gpu constrained too. + +memory overhead? + +c++ rendered sits at ~171mb-175mb. it's not great, hasn't been optimized, def room for improvement. + +python rendered sits at ~240mb-248mb + +the default invocation method for the c++ implementation I use as my lock screen is running at 160mb. This is rather annoying, but also, it's doing a bunch of rendering stuff so IG that's fine, and this does improve the computational cost in terms of cycles so... + +huh... after 2 hours it's chilling at 163mb (TODO). + +bc it's always holding onto at least one frame which is 5120x1440 pixels which is ~21mb minimum (assuming r g and b bytes per pixel.) + +an eager approach for this would be better, but c++ stl doesn't have an indexed priority queue, so I'll just retcon what I have. + +basically, I just want to minimize the useless things I push to the queue. One way to do this is to track the minimum weighted edge with an untraversed vertex and then updating this and only pushing edges with it when they are < that weight. + +before: + +benchmarking/final_no_render_v_200000_e_2000000_s_0/ + +0.08,2.03,2.12 +0.09,2.02,2.12 +0.09,2.00,2.11 +0.09,2.00,2.11 +0.08,1.99,2.09 +0.07,1.99,2.08 +0.10,2.00,2.11 +0.09,2.00,2.11 +0.09,2.07,2.18 +0.06,2.08,2.15 + + +after: + +benchmarking/final_min_no_render_v_200000_e_2000000_s_0/out.csv + +0.06,0.97,1.04 +0.06,0.93,1.00 +0.07,0.95,1.03 +0.09,0.92,1.02 +0.08,0.94,1.02 +0.08,0.94,1.03 +0.08,0.94,1.03 +0.06,0.95,1.02 +0.08,0.93,1.02 +0.07,0.95,1.02 +0.07,0.95,1.03 +0.07,0.95,1.03 +0.08,0.95,1.04 +0.09,0.93,1.03 +0.07,0.98,1.06 +0.07,0.95,1.04 +0.08,0.94,1.03 +0.07,0.96,1.04 +0.07,0.95,1.04 +0.07,1.00,1.08 + +this doesn't really impact time wrt rendered because that is basically all spent on rendering not computation. + +do I have a memory leak? + + + +> time valgrind --tool=memcheck abg + +==944657== Process terminating with default action of signal 2 (SIGINT) +==944657== at 0x50D3952: __syscall_cancel_arch (syscall_cancel.S:56) +==944657== by 0x5117AEC: internal_syscall_cancel (sysdep-cancel.h:53) +==944657== by 0x5117AEC: clock_nanosleep@@GLIBC_2.17 (clock_nanosleep.c:48) +==944657== by 0x5123F26: nanosleep (nanosleep.c:25) +==944657== by 0x51532E9: usleep (usleep.c:31) +==944657== by 0x40065B8: main (in /usr/local/bin/abg) +==944657== +==944657== HEAP SUMMARY: +==944657== in use at exit: 11,776,171 bytes in 27,368 blocks +==944657== total heap usage: 86,922 allocs, 59,554 frees, 29,848,973 bytes allocated +==944657== +==944657== LEAK SUMMARY: +==944657== definitely lost: 0 bytes in 0 blocks +==944657== indirectly lost: 0 bytes in 0 blocks +==944657== possibly lost: 6,876,540 bytes in 3,237 blocks +==944657== still reachable: 4,899,631 bytes in 24,131 blocks +==944657== suppressed: 0 bytes in 0 blocks +==944657== Rerun with --leak-check=full to see details of leaked memory +==944657== +==944657== For lists of detected and suppressed errors, rerun with: -s +==944657== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) + + +real 12m18.560s +user 0m23.848s +sys 0m0.969s + +andrew@deepthought:~$ time valgrind --tool=memcheck abg +==947393== Memcheck, a memory error detector +==947393== Copyright (C) 2002-2024, and GNU GPL'd, by Julian Seward et al. +==947393== Using Valgrind-3.25.1 and LibVEX; rerun with -h for copyright info +==947393== Command: abg +==947393== +^C==947393== +==947393== Process terminating with default action of signal 2 (SIGINT) +==947393== at 0x50D3952: __syscall_cancel_arch (syscall_cancel.S:56) +==947393== by 0x5117AEC: internal_syscall_cancel (sysdep-cancel.h:53) +==947393== by 0x5117AEC: clock_nanosleep@@GLIBC_2.17 (clock_nanosleep.c:48) +==947393== by 0x5123F26: nanosleep (nanosleep.c:25) +==947393== by 0x51532E9: usleep (usleep.c:31) +==947393== by 0x40065B8: main (in /usr/local/bin/abg) +==947393== +==947393== HEAP SUMMARY: +==947393== in use at exit: 11,656,499 bytes in 27,404 blocks +==947393== total heap usage: 64,820 allocs, 37,416 frees, 24,650,054 bytes allocated +==947393== +==947393== LEAK SUMMARY: +==947393== definitely lost: 0 bytes in 0 blocks +==947393== indirectly lost: 0 bytes in 0 blocks +==947393== possibly lost: 6,744,916 bytes in 3,235 blocks +==947393== still reachable: 4,911,583 bytes in 24,169 blocks +==947393== suppressed: 0 bytes in 0 blocks +==947393== Rerun with --leak-check=full to see details of leaked memory +==947393== +==947393== For lists of detected and suppressed errors, rerun with: -s +==947393== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) + + +real 0m53.077s +user 0m20.121s +sys 0m0.750s + +andrew@deepthought:~$ time valgrind --leak-check=full --tool=memcheck abg -s 0 + +==948338== +==948338== LEAK SUMMARY: +==948338== definitely lost: 0 bytes in 0 blocks +==948338== indirectly lost: 0 bytes in 0 blocks +==948338== possibly lost: 6,948,380 bytes in 3,271 blocks +==948338== still reachable: 4,899,399 bytes in 24,179 blocks +==948338== suppressed: 0 bytes in 0 blocks +==948338== Reachable blocks (those to which a pointer was found) are not shown. +==948338== To see them, rerun with: --leak-check=full --show-leak-kinds=all +==948338== +==948338== For lists of detected and suppressed errors, rerun with: -s +==948338== ERROR SUMMARY: 2838 errors from 2838 contexts (suppressed: 0 from 0) + + +real 21m9.471s +user 19m30.601s +sys 1m12.207s + +seems like this was just me not closing the window. fixed that. + +--- + +profiling: + +start: 121mb (time 5:15pm after running for ~a minute) +check-in: 121mb (time 8:55pm) -- this is just the default `abg` cmd so not a ton of churn +stopped: 121mb (9:11pm) + +running again w/ s=0: + +--- + +(recompile) + +start: 123mb (time 9:13pm) +end: 123mb (time: 11:00pm) + +--- + +seems good; calling it here. further refactors can be done that'd improve perf, mostly be improving cache utilization by removing unnecessary bits. This is what I'd say: + +- It's unlikely there's an optimization for my hardware that'd improve performance by 2x +- It's unlikely there's an optimization for my hardware that'd improve performance by 5x across the workloads I've evaluated. There are ways to make prim's algorithm much faster on much larger graphs, but given what I care about, this is likely inconsequential. +- These further optimizations are probably not worth it + - They could make this faster but two things: + 1. They would decrease code readability and extensibility a non-trivial amount + - sometimes worth it + 2. The improvements wouldn't be meaningful for average usage + - most ppl will be draw constrained. I believe I'm close to what is optimal as it relates to using raylib, without diving straight into opengl + + +--- + +Pygame vs raylib: + +- Not a super great comparison +- SDL (pygame) will basically always be slower than opengl (raylib) + +--- + +okay, so, this is a comparison between pygame, rlib w/ python, rlib from c++: + +these are all only rendering deltas, using a texture with rlib, and just doing incremental writes with pygame (functionally the same amount of computation) + + +each is running one iteration of prim, rendering each step, with 100000 edges and 10000 vertices + +(kept each render in the foreground as that makes it slower, disabled picom) + +sleep 1 for each + +max memory is me running /usr/bin/time -v {command}, taking the max resident set size + +py rlib: + +- (render_rlib) + - 24.347371951736843 seconds avg + - 7,884,780,154.947369 avg cycles +- (render_rlib/mem) + - 160.2857894736842 MiB avg + +py pygame: + +- (render_pygame/v...) + - 52.71620356077778 seconds avg + - 12,353,392,498.666666 avg cycles +- (render_pygame/mem) + - 201.89875 MiB avg + +c++ rlib: + +- (benchmarking/final_render/out.txt) + - 23.859886112999998 seconds avg + - 3,796,753,782.428571 avg cycles +- (benchmarking/final_render_mem/out.txt) + - 137.27142857142857 MiB avg + +summary: + +this is strictly rendering information. + +raylib and pygame, with the same algorithm / write count, albeit randomized so not technically the same graphs, but each with multiple runs, we find: + +- pygame used ~1.25x the memory of raylib +- pygame ran ~2.15x slower than raylib + +python vs c++ (normalized with raylib) + +- python used 1.15x more memory than c++ (c++ not really optimized for memory as it used OO paradigm that increasde overhead relative to python, but still better) +- python version ran ~1.02x slower than c++ version + - the overhead of computation for the graph is trivial relative to the rendering, which was gpu bound in both +- python spent ~3.25x more cpu cycles than the c++ version + - again, gpu bound, so this doesn't change max fps, but does increase energy usage, espeically when considering this is to run in the background for a long time + +without rendering: + +since I didn't do the heap-push optimization in the python code, I'll compare the comparable c++ implementation without that optimization which improved perf by ~2x. + +- benchmarking/final_no_render_v_200000_e_2000000_s_0/ + - 2.118 seconds +- no_render_final/v200000e2000000 + - 20.253333333333334 seconds + +- c++ ran ~9.56x faster + +takeaway: + +- the overhead for the python raylib bindings aren't that encumbering. The default pygame ones are (pygame -> sdl -> opengl), instead of raylib -> opengl. +- rendering performance is excellerated greatly by re-using texture maps +- raylib -> screenshot is far faster when going -> bmp instead of other image file formats + +--- + +headline: + diff --git a/posts/wip/pygame-vs-raylib.md b/posts/wip/pygame-vs-raylib.md @@ -0,0 +1,979 @@ +# Pygame vs Raylib + +I wanted my visualization of [Prim's algorithm](https://cp-algorithms.com/graph/mst_prim.html) to be my background. My original implementation was in Python, so I was curious to see how far I could go with Python rendering libraries, but realized Python was not going to be what I ran in the background all day. Despite this, it gave me an excellent opportunity to compare Pygame and Raylib (from both Python and C++) to see how the two compare in terms of performance, and how the Python bindings for Raylib compare with direct usage from C++. + +## Saving Screenshots + +My plan is as follows: + +1. Run one step of the simulation +2. Save a screenshot of the simulation to `/dev/shm` +3. Execute `feh` to set the screenshot as my background +4. Repeat until the MST was induced + +This approach is quite janky, but it also stops me from having to dig deep into X11, a nightmare. + +### Benchmarking + +My approach to this using Pygame looked something like this: + +```python +# ... imports ... + +os.environ["SDL_VIDEODRIVER"] = "dummy" +VERTICES = 1000 # number of vertices in the graph +EDGES = 10000 # number of edges in the graph + +# ... pygame initialization ... +# ... mst implementation ... + + now = time.monotonic() + pygame.image.save(display, dir_name + "out.png") + os.system("/usr/bin/feh --no-fehbg --bg-tile '/dev/shm/bg/out.png' ") + after = time.monotonic() + pygame.display.update() +``` + +(NOTE: All screenshots are 5120x1440) + +We set the "SDL_VIDEODRIVER" environment variable to dummy, forcing SDL to not try rendering to any screens, because we want screenshots for `feh` to operate on, not an actual window showing the rendering. + +Averaging across ten steps, the amount of time taken to save the screenshot was 0.42 seconds, an eternity. That's not great. Looking at the code for pygame, we can find the file, `src_c/image.c` that contains the save definition, and notably there are some other file formats: + +```c +static PyObject * +image_save(PyObject *self, PyObject *arg) +{ +// ... + else { + const char *name = NULL; + const char *ext = NULL; + if (oencoded == Py_None) { + name = (namehint ? namehint : "tga"); + } + else { + name = PyBytes_AS_STRING(oencoded); + } + + ext = find_extension(name); + if (!strcasecmp(ext, "png") || !strcasecmp(ext, "jpg") || + !strcasecmp(ext, "jpeg")) { + /* If it is .png .jpg .jpeg use the extended module. */ + /* try to get extended formats */ + ret = image_save_extended(self, arg); + result = (ret == NULL ? -2 : 0); + } + else if (oencoded == Py_None) { + SDL_RWops *rw = pgRWops_FromFileObject(obj); + if (rw != NULL) { + if (!strcasecmp(ext, "bmp")) { + // ... +} +``` + +Well, that's interesting. It seems like there are four options. Below are the average times for each file format across 10 iterations: + + +| bmp | jpg | png | tga | +| ---- | ---- | ---- | ---- | +| 0.05 | 0.09 | 0.42 | 0.07 | + +Huh, so bmp is probably the best. Very interesting. Also, notice the benchmarking contains the `feh` invocation too because `feh` will take varying amounts of time to set the X11 background depending on the fileformat too. + +Let's compare this with raylib. It looks like this: + +```python +# ... imports, mst, raylib texture initialization and incremental updating +pr.begin_drawing() +pr.draw_texture_pro(texture.texture, source_rec, dest_rec, pr.Vector2(0, 0), 0, pr.WHITE) +before = time.monotonic() +pr.take_screenshot("../../../../../../../../../dev/shm/bg/out.png") +os.system("/usr/bin/feh --no-fehbg --bg-tile '/dev/shm/bg/out.jpg' ") +after = time.monotonic() +print(after - before) +pr.end_drawing() +``` + +We call `begin_drawing()` to initiate frame creation, load in our texture which is the rendered graph and mst, take the screenshot, set the background with `feh`, and print the time elapsed between starting the screenshot and it being set as our background. + +One thing to notice about this is the series of `../`'s. Raylib does not support absolute path specification for screenshots, and it seems like they only have screenshotting for ["convenience"](https://github.com/raysan5/raylib/issues/3530#issuecomment-1808299932). + +| png | jpg | bmp | tga | +| ----- | ----- | ----- | ----- | +| 0.48 | 0.27 | 0.15 | N/A | + +The only other promising option supported by Raylib, not supported by Pygame, as .raw, but this appears to be a file format not understood by feh, to it is omitted. + +Interestingly, writing the bmp from Raylib is 3x slower than Pygame, with comparable performance on PNGs, and poor results on JPGs. + +### Finding + +Raylib's lack of prioritization for screenshotting appears to have resulted in worse performance relative to Pygame for screenshotting. So if I was planning to stick with this approach of screenshotting, I likely would've favored Pygame because screenshotting at the aspect ratio I use (5120x1440), was taking the bulk of the processing time. + +## Rendering comparison + +As I said before, the bulk of the time per frame was often spent on screenshotting because the cost of screenshotting was only loosely impacted by the complexity of the graph being rendered, but what if we scale up the size of the graph? Our baseline before was using 1,000 vertices and 10,000 edges in the graph. Once the screenshotting is removed we find one iteration takes: + +rlib: 0.0032 seconds + +pygame: 0.0057 seconds + + +So raylib is ~1.75x faster? Let's see with larger values. We'll use 1,000,000 edges and 100,000 vertices for this: + +rlib: 0.0029 seconds +pygame: 0.0056 + +Huh. Why's that? Let's look at the code for the Pygame version: + +```python +# ... +to_draw_vert = [] +to_draw_edge = [] + +# ... + +for edge in to_draw_edge: + edge.draw_edge(display, white) +for vert in to_draw_vert: + vert.draw_vertex(display) + +to_draw_vert = [] +to_draw_edge = [] + +# ... + +pygame.display.update() + +# ... +``` + +A lot is removed from the code, but what we see here is an approach that mitigates step-wise overdrawing, only drawing one edge between any two frames. This larger evaluation thus shows that the number of elements on screen is functionaly irrelevant for render times, dictating that render times are almost entirely constrained by the addition of new elements with both approaches. Despite this, we still say raylib is ~1.75x faster than Pygame for this task of rendering. + +## Takeaways + +You can expect better performance using Raylib than Pygame for most rendering tasks, excluding screenshotting due to it seemingly being a lesser priority for the Raylib team. Raylib uses OpenGL for rendering while PyGame uses SDL which in turn uses OpenGL for rendering. This added layer of overhead, likely also coupled with heavier Python ecosystem baggage, makes the rendering performance for PyGame fall short of Raylib. + + +## Time to go lower + +Raylib is at its core a C library. Raylib from Python uses a [Python package](https://pypi.org/project/raylib/) to call this library. This begs the question: Should we go lower? + +To evaluate this, I'm going to be comparing calling Raylib directly from C++ with what we've shown previously, invoking Raylib from Python. + +### Benchmarking + + +1_000_000 edges and 100_000 vertices: + +rlib: 0.00295373 +rlibcpp: 0.00294624 + +both of these were across 30_000 frames. We find rlibcpp is 1.0025x faster than the python version. This is .25%. Very impressive. + + +--- + + + + +I wrote a visualization program for prim's algorithm that induces a minimum spanning tree (MST) on a procedurally generated graph. How does one go about making this their background and screensaver with X11 / dwm? + +## MST + +IMPLEMENTATION DETAILS + +## Background making + +[https://github.com/python-xlib/python-xlib](https://github.com/python-xlib/python-xlib.md) + +```python3 +os.environ["SDL_VIDEODRIVER"] = "dummy" +``` + +why not just use screenshots in a shared location? + +indeed, why not? + +## fuck you and your bullshit. + +Benchmarking + +## c -> c++ + +realized I needed a heap. + +## bmp vs png vs jpg + +bmp is crazy fucking fast (benchmark) + +(looked in the code for supported file formats, looked in feh -> lib(whatever) for support) + +note larger file size. + +this is interesting, look further. + +### patched upstream xl + +### x11 + +x11 is weird with this because they are kind hacky in that they just put up a window and take away your inputs, forcing them to go to that window. + +(should learn more about this) + +### Benchmarking + +uhhh... is it actually that fast? + +wait; did this just optimize all of my code? + +Well yes, but actually no. + +adding: + +std::cout << g.toString() << std::endl; + +gives ~ the same perf (minus the amount of time it takes to send so much data to stdout) + +(this would require the full traversal because toString is dependent upon prior prim algo steps being performed otherwise the traversal status for edges and vertices would be incorrect). + +(fixed a bug in the python code slowing it down) + +see no_render_2_fixed_itr. + +## C++ benchmarking + +330 ms for init stuff w/ graph +1405 ms for iteration + +broken further down: + +average iteration time is ~0ms, reaching ~20ms for later stages. Over time the percentage of valid edges declines. + +added getUnvisitedEdges function to return only non-traversed edges + +Init time: 332 +Loop time: 1344 +Init time: 327 +Loop time: 1350 +Init time: 322 +Loop time: 1374 + +still has a similar issue as before; degredation in perf towards the end bc things are pushed earlier on and then get invalidated later on. + +that's basically all I could squeeze out without changes to the algo to be eager instead of lazy wrt tracking vertices. Basically, what's the shortest distance to a given vertex instead of what's the edge that we have that's shortest. + +such a refactor though is likely irrelevant right now due to the added cost of + +ope; realized my function for get edges with unvisited vertices above was wrong. I was just not pushing visited edges, but we really care about vertices that haven't been visited so refactored the edge generation and stuff to get a stable ref to v2index and then push only if that hasn't been visited. + +Init time: 389 +Loop time: 706 +Init time: 315 +Loop time: 671 +Init time: 337 +Loop time: 692 + +now we're cooking with gas. + +tests now fail. bc snapshots. updated and everything seems right again. + +actually the stable things isn't really necessary as this approach that's unstable is functionally the same, but safer in case there are changes to the IR of edges. + +Init time: 334 +Loop time: 694 +Init time: 321 +Loop time: 668 +Init time: 323 +Loop time: 701 + +now we find this: + +(see benchmarking/no_render_v_100000_e_1000000_s_0/out1.csv) + +same optimization performed for python code so that's then down to 8.6 seconds ~~~ see andrew@deepthought:no_render_3_fixed_itr_fixed_check$ + +at this point it's worth worrying about the return for the get untraversed edges for vertices not traversed. after that: + +Init time: 314 +Loop time: 678 +Init time: 312 +Loop time: 671 +Init time: 311 +Loop time: 680 + +and with the optimization for edge ordering: + +Init time: 311 +Loop time: 659 +Init time: 333 +Loop time: 673 +Init time: 320 +Loop time: 709 +Init time: 311 +Loop time: 674 + +this is still too fucking slow. + +what's making the graph induction so incredibly slow? + +just graph creation: + +graph create: 317 +Loop time: 691 +graph create: 314 +Loop time: 657 +graph create: 311 +Loop time: 665 + +reserving instead of pushing: + +graph create: 314 +Loop time: 636 +graph create: 324 +Loop time: 688 +graph create: 315 +Loop time: 693 + +replaced map with vector where we were using indices to index into the map (dumb): + +graph create: 174 +Loop time: 654 +graph create: 179 +Loop time: 610 +graph create: 184 +Loop time: 618 +graph create: 185 +Loop time: 622 + +ok, let's now run the full benchmarks again: + +benchmarking/no_render_only_grab_unvisited_edges_vector_instead_of_map_v_100000_e_1000000_s_0/out1.csv + +0.04,0.79,0.84 +0.03,0.79,0.84 +0.04,0.77,0.82 + +this was kind of just stalling though becaus I'm out of my depth as it relates to rendering, the larger perf issue. + +back to that. + +here are where this stands w/ 1000 v and 10_000 edges + +prior was ~34s per iteration (final col) + +this is basically the same: + +benchmarking/better_render_v_1000_e_10000_s_0/out1.csv + +(snippet from above file) + +0.26,10.71,34.22 +0.29,10.64,33.24 +0.31,10.62,33.57 +0.28,10.53,33.56 + +fine. we'll fix the raylib shit. (queue montage) + +make debug-build && time ./abg.out -s 0 --edges 2000 --vertices 200 + +real 0m1.948s +user 0m0.529s +sys 0m0.060s + +~20 milliseconds per render call w/ make debug-build && time ./abg.out -s 0 --edges 20000 --vertices 2000 + +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 19 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 +Amount of time calling render: 18 +Total single iteration cost: 65 + +huh; what's the other iteration cost? + + + while (!WindowShouldClose() && toVisit.size() != 0) { + auto startLoop = std::chrono::steady_clock::now(); + BeginDrawing(); + ClearBackground(BLACK); + auto startRender = std::chrono::steady_clock::now(); + g.render(); + auto endRender = std::chrono::steady_clock::now(); + auto diff = std::chrono::duration_cast<std::chrono::milliseconds>(endRender - startRender); + std::cout << "Amount of time calling render: " << diff.count() << std::endl; + EndDrawing(); + + // since we wait sleepTime here, the bg render has a render delta of + // at minimum sleepTime when switching tags in dwm, this is rather + // annoying because the screen doesn't repaint until the sleep time + // passes, which results in artifacts on screen. + + // despite this, calling render a lot of times is rather intensive + // (at least on my hardware) and so this tradeoff is accepted for + // now, unless there's a simple approach that allows for preemption + + //usleep((int)(sleepTime * 1000000)); + + oneStepPrim(toVisit, visitedIndices, g); + auto endLoop = std::chrono::steady_clock::now(); + auto loopDiff = std::chrono::duration_cast<std::chrono::milliseconds>(endLoop - startLoop); + std::cout << "Total single iteration cost: " << loopDiff.count() << std::endl; + + } + +so it's somewhere in that first block; in the render area. the actual computation cost at the end is inconsequential. + +begindrawing is ~free. + +clear background is ~free. + +~46 of 65ms are spent on enddrawing. + +so two things: + +19ms on render +46ms on enddrawing + +what about when the numbers are much bigger (100_000 edges, 10_000 vertices)? + +Render time: 56 +End Drawing time: 237 +Total single iteration cost: 316 + +the other 23 ms is the prim step + begin drawing / clear background. + +can we just not clear the screen? does that help? nope. doesn't do anything. + +target 60 fps? + +nope. + +ahh; the slowness is being realized later on. while render is cool with me double calling on edges; this is felt when enddrawing is called as the gpu does the rendering and stuff at that point. + +what happens if I use the better single time render method? + +before: + +Render time: 62 +End Drawing time: 244 +Total single iteration cost: 306 +Render time: 60 +End Drawing time: 245 +Total single iteration cost: 305 +Render time: 60 +End Drawing time: 245 +Total single iteration cost: 305 +Render time: 55 +End Drawing time: 252 +Total single iteration cost: 307 +Render time: 60 +End Drawing time: 245 +Total single iteration cost: 305 +Render time: 58 +End Drawing time: 247 +Total single iteration cost: 306 + +after: + +Total single iteration cost: 158 +Render time: 46 +End Drawing time: 112 +Total single iteration cost: 159 +Render time: 46 +End Drawing time: 112 +Total single iteration cost: 159 +Render time: 45 +End Drawing time: 113 +Total single iteration cost: 159 +Render time: 46 +End Drawing time: 111 +Total single iteration cost: 158 +Render time: 46 +End Drawing time: 112 +Total single iteration cost: 158 +Render time: 46 +End Drawing time: 113 + +hell yeah. + +why so slow still? + +Like this is only ~100_000 and ~10_000 vertices so like why so slow? + +benchmarked now: + +benchmarking/simpler_render_v_1000_e_10000_s_0/out1.csv +0.29,7.77,18.96 +0.27,7.80,19.17 +0.29,7.90,19.17 +0.31,7.76,19.05 +0.29,7.72,18.68 +0.30,7.90,18.56 +0.27,7.78,18.80 +0.27,7.77,18.74 +0.29,7.69,18.77 +0.32,7.67,18.85 + +alright then. unfortunately, we're only calling the draw function once per vertex and edge now. we could change the rendering to only render connections, this would increase speed a lot, but it also makes the animation look less cool so fuck that. + +could we draw in the background? like create a new thread that doesn't block us and then wait until that's done once we get back? + +well maybe, but the issue is I don't know how well this handles drawing while there's a queue of messages still being sent. + +std::thread t(endDrawing); +t.join(); + +vs endDrawing() + +result in entirely different outcomes. + +the second sort of renders some stuff, but gets totally fucked up and then just black screens. + +due to an import? no this shit's just fucked. + +opengl affinity. + +can prebake the graph though and then only render additions. + +after: + +0.19,1.77,3.86 +0.17,1.76,3.81 +0.19,1.76,3.82 +0.18,1.75,3.85 +0.18,1.71,3.86 +0.19,1.68,3.83 +0.18,1.72,3.83 + +holy shit. can we make this faster? + +of fucking course we can. track if a traversed state has been rendered and skip it if it has, using this to update our incremental texture. we then render that. + +benchmarking/cache_first_use_blank_graph_v_1000_e_10000_s_0/out1.csv + +0.17,0.65,3.06 +0.18,0.63,3.05 +0.18,0.66,3.05 +0.18,0.64,3.05 +0.18,0.64,3.04 +0.17,0.63,3.02 +0.18,0.62,3.04 +0.19,0.64,3.05 +0.17,0.65,3.04 +0.17,0.66,3.03 +0.18,0.62,3.04 +0.17,0.63,3.03 + +this is too boring; let's turn this shit up. + +how fast are we relative to the python bloatware webshit? + +benchmarking/cache_first_use_blank_graph_v_10000_e_100000_s_0/out1.csv + +1.40,28.92,35.76 +1.53,29.30,35.95 + +(notice the edges and vertices) + +vs python: + +1.33,10730.71,10772.74 + +that's only >300x slower for the python code so the average python developer would totally be cool with shipping it. Job done, webshit: built. + +alright then. enough messing around. We really should have a queue for items that are to be rendered so we don't have to iterate over all vertices and edges, checking if they have the 'rendered' flag set. + +after doing this we find: + +benchmarking/track_to_render_v_10000_e_100000_s_0/out1.csv + +1.50,3.12,29.43 +1.51,3.20,29.67 +1.57,3.08,30.00 +1.57,3.04,30.07 + +35.855000000000004 / 29.7925 = 1.2034908114458338 + +okay, so 20 percent faster. still too fucking slow. + +i'm also getting sick of this bs chrono / time shit. time to bring in perf. + + 3.20% 395 abg.out libraylib.so.6.0.0 [.] rlVertex3f + 2.08% 338 abg.out abg.out [.] Edge::operator>(Edge const&) const + 1.55% 245 abg.out abg.out [.] oneStepPrim(std::priority_queue<Edge, std::vector<Edge, st> + 1.41% 255 abg.out libraylib.so.6.0.0 [.] rlDrawRenderBatch + 1.22% 225 abg.out libc.so.6 [.] 0x0000000000185dde + 0.85% 129 abg.out libraylib.so.6.0.0 [.] DrawCircleSector + 0.79% 136 abg.out libc.so.6 [.] pthread_mutex_lock + 0.74% 133 abg.out libc.so.6 [.] ioctl + 0.64% 115 abg.out libgallium-26.2.2-arch1.1.so [.] 0x00000000007f8138 + 0.62% 113 abg.out libraylib.so.6.0.0 [.] PollInputEvents + 0.57% 91 abg.out libc.so.6 [.] cfree + 0.56% 95 abg.out libc.so.6 [.] malloc + 0.54% 27 abg.out libc.so.6 [.] 0x00000000001866c9 + 0.53% 99 abg.out libgallium-26.2.2-arch1.1.so [.] 0x000000000180c45c + +alright so raylib is spending a decent amount of time on Vertex3f though not a crazy amount. Comparisons between edges are common; not surprising as we are using a heap with lots of elements towards the end, as we've seen. prim's algorithm generally taking some time, makes sense. + +render drawing is rather low, but within reason. This is rather disappointing. It's nice when it's like, no, dude, you spent 99.95% of your time in one function. + +looking at the call stack: + +|--14.80%--EndTextureMode +|--58.02%--EndDrawing +--1.62%--Graph::render() + +well. huh. end texture mode is where I add things though the function itself is just clearing the queue. + +It's a bit surprising enddrawing is more expensive since it just loads in the texture I've baked. + +--- + +I shall call this ~done. final findings with + +rendered below is using vertices = 10_000, edges = 100_000 + +unrendered below is using vertices = 200_000, edges = 2_000_000 + +- python (with overdraw mostly fixing + texture map) + - rendered + - 58.758 seconds + - unrendered + - 20.253333333333334 seconds + +- c++ (with overdraw fixing + texture map) + - rendered + - - 29.7925 seconds + + - unrendered + - 2.118 seconds + + +benchmarking/final_no_render_v_200000_e_2000000_s_0/ + +takeaway: + +the rendered python implementation w/ 10_000 v and 100_000 edges using perf: + +Performance counter stats for 'python3 prim.py': + + 0 context-switches:u # 0.0 cs/sec cs_per_second + 0 cpu-migrations:u # 0.0 migrations/sec migrations_per_second + 14,233 page-faults:u # 252.0 faults/sec page_faults_per_second + 56,487.57 msec task-clock:u # nan CPUs CPUs_utilized + 30,763,483 branch-misses:u # 0.7 % branch_miss_rate (88.90%) + 4,305,442,939 branches:u # 76.2 M/sec branch_frequency (88.90%) + 128,137,043,750 cpu-cycles:u # 2.3 GHz cycles_frequency (88.90%) + 18,736,054,409 instructions:u # 0.1 instructions insn_per_cycle (88.85%) + TopdownL1 # 0.1 % tma_backend_bound + # 98.9 % tma_bad_speculation (88.87%) + # 0.5 % tma_frontend_bound (77.81%) + # 0.5 % tma_retiring (88.92%) + + 59.936596362 seconds time elapsed + + 52.628026000 seconds user + 1.492521000 seconds sys + +gpu constrained though. + +the rendered c++ implementation w/ 10_000 v and 100_000 edges using perf: + + Performance counter stats for './abg.out -s 0 --vertices 10000 --edges 100000': + + 0 context-switches:u # 0.0 cs/sec cs_per_second + 0 cpu-migrations:u # 0.0 migrations/sec migrations_per_second + 9,363 page-faults:u # 1819.4 faults/sec page_faults_per_second + 5,146.21 msec task-clock:u # nan CPUs CPUs_utilized + 28,144,835 branch-misses:u # 5.9 % branch_miss_rate (89.55%) + 473,319,266 branches:u # 92.0 M/sec branch_frequency (88.64%) + 3,973,233,282 cpu-cycles:u # 0.8 GHz cycles_frequency (88.55%) + 2,925,854,560 instructions:u # 0.7 instructions insn_per_cycle (89.12%) + TopdownL1 # 2.7 % tma_backend_bound + # 93.6 % tma_bad_speculation (88.66%) + # 0.9 % tma_frontend_bound (77.75%) + # 2.8 % tma_retiring (88.67%) + + 29.577542431 seconds time elapsed + + 2.925597000 seconds user + 2.094917000 seconds sys + +32x less instructions than the python version. Neither is cpu constrained, but this is a non-trivial amount of overhead from the python version; c++ version also had 7x higher instructions per cycle. + +gpu constrained too. + +memory overhead? + +c++ rendered sits at ~171mb-175mb. it's not great, hasn't been optimized, def room for improvement. + +python rendered sits at ~240mb-248mb + +the default invocation method for the c++ implementation I use as my lock screen is running at 160mb. This is rather annoying, but also, it's doing a bunch of rendering stuff so IG that's fine, and this does improve the computational cost in terms of cycles so... + +huh... after 2 hours it's chilling at 163mb (TODO). + +bc it's always holding onto at least one frame which is 5120x1440 pixels which is ~21mb minimum (assuming r g and b bytes per pixel.) + +an eager approach for this would be better, but c++ stl doesn't have an indexed priority queue, so I'll just retcon what I have. + +basically, I just want to minimize the useless things I push to the queue. One way to do this is to track the minimum weighted edge with an untraversed vertex and then updating this and only pushing edges with it when they are < that weight. + +before: + +benchmarking/final_no_render_v_200000_e_2000000_s_0/ + +0.08,2.03,2.12 +0.09,2.02,2.12 +0.09,2.00,2.11 +0.09,2.00,2.11 +0.08,1.99,2.09 +0.07,1.99,2.08 +0.10,2.00,2.11 +0.09,2.00,2.11 +0.09,2.07,2.18 +0.06,2.08,2.15 + + +after: + +benchmarking/final_min_no_render_v_200000_e_2000000_s_0/out.csv + +0.06,0.97,1.04 +0.06,0.93,1.00 +0.07,0.95,1.03 +0.09,0.92,1.02 +0.08,0.94,1.02 +0.08,0.94,1.03 +0.08,0.94,1.03 +0.06,0.95,1.02 +0.08,0.93,1.02 +0.07,0.95,1.02 +0.07,0.95,1.03 +0.07,0.95,1.03 +0.08,0.95,1.04 +0.09,0.93,1.03 +0.07,0.98,1.06 +0.07,0.95,1.04 +0.08,0.94,1.03 +0.07,0.96,1.04 +0.07,0.95,1.04 +0.07,1.00,1.08 + +this doesn't really impact time wrt rendered because that is basically all spent on rendering not computation. + +do I have a memory leak? + + + +> time valgrind --tool=memcheck abg + +==944657== Process terminating with default action of signal 2 (SIGINT) +==944657== at 0x50D3952: __syscall_cancel_arch (syscall_cancel.S:56) +==944657== by 0x5117AEC: internal_syscall_cancel (sysdep-cancel.h:53) +==944657== by 0x5117AEC: clock_nanosleep@@GLIBC_2.17 (clock_nanosleep.c:48) +==944657== by 0x5123F26: nanosleep (nanosleep.c:25) +==944657== by 0x51532E9: usleep (usleep.c:31) +==944657== by 0x40065B8: main (in /usr/local/bin/abg) +==944657== +==944657== HEAP SUMMARY: +==944657== in use at exit: 11,776,171 bytes in 27,368 blocks +==944657== total heap usage: 86,922 allocs, 59,554 frees, 29,848,973 bytes allocated +==944657== +==944657== LEAK SUMMARY: +==944657== definitely lost: 0 bytes in 0 blocks +==944657== indirectly lost: 0 bytes in 0 blocks +==944657== possibly lost: 6,876,540 bytes in 3,237 blocks +==944657== still reachable: 4,899,631 bytes in 24,131 blocks +==944657== suppressed: 0 bytes in 0 blocks +==944657== Rerun with --leak-check=full to see details of leaked memory +==944657== +==944657== For lists of detected and suppressed errors, rerun with: -s +==944657== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) + + +real 12m18.560s +user 0m23.848s +sys 0m0.969s + +andrew@deepthought:~$ time valgrind --tool=memcheck abg +==947393== Memcheck, a memory error detector +==947393== Copyright (C) 2002-2024, and GNU GPL'd, by Julian Seward et al. +==947393== Using Valgrind-3.25.1 and LibVEX; rerun with -h for copyright info +==947393== Command: abg +==947393== +^C==947393== +==947393== Process terminating with default action of signal 2 (SIGINT) +==947393== at 0x50D3952: __syscall_cancel_arch (syscall_cancel.S:56) +==947393== by 0x5117AEC: internal_syscall_cancel (sysdep-cancel.h:53) +==947393== by 0x5117AEC: clock_nanosleep@@GLIBC_2.17 (clock_nanosleep.c:48) +==947393== by 0x5123F26: nanosleep (nanosleep.c:25) +==947393== by 0x51532E9: usleep (usleep.c:31) +==947393== by 0x40065B8: main (in /usr/local/bin/abg) +==947393== +==947393== HEAP SUMMARY: +==947393== in use at exit: 11,656,499 bytes in 27,404 blocks +==947393== total heap usage: 64,820 allocs, 37,416 frees, 24,650,054 bytes allocated +==947393== +==947393== LEAK SUMMARY: +==947393== definitely lost: 0 bytes in 0 blocks +==947393== indirectly lost: 0 bytes in 0 blocks +==947393== possibly lost: 6,744,916 bytes in 3,235 blocks +==947393== still reachable: 4,911,583 bytes in 24,169 blocks +==947393== suppressed: 0 bytes in 0 blocks +==947393== Rerun with --leak-check=full to see details of leaked memory +==947393== +==947393== For lists of detected and suppressed errors, rerun with: -s +==947393== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) + + +real 0m53.077s +user 0m20.121s +sys 0m0.750s + +andrew@deepthought:~$ time valgrind --leak-check=full --tool=memcheck abg -s 0 + +==948338== +==948338== LEAK SUMMARY: +==948338== definitely lost: 0 bytes in 0 blocks +==948338== indirectly lost: 0 bytes in 0 blocks +==948338== possibly lost: 6,948,380 bytes in 3,271 blocks +==948338== still reachable: 4,899,399 bytes in 24,179 blocks +==948338== suppressed: 0 bytes in 0 blocks +==948338== Reachable blocks (those to which a pointer was found) are not shown. +==948338== To see them, rerun with: --leak-check=full --show-leak-kinds=all +==948338== +==948338== For lists of detected and suppressed errors, rerun with: -s +==948338== ERROR SUMMARY: 2838 errors from 2838 contexts (suppressed: 0 from 0) + + +real 21m9.471s +user 19m30.601s +sys 1m12.207s + +seems like this was just me not closing the window. fixed that. + +--- + +profiling: + +start: 121mb (time 5:15pm after running for ~a minute) +check-in: 121mb (time 8:55pm) -- this is just the default `abg` cmd so not a ton of churn +stopped: 121mb (9:11pm) + +running again w/ s=0: + +--- + +(recompile) + +start: 123mb (time 9:13pm) +end: 123mb (time: 11:00pm) + +--- + +seems good; calling it here. further refactors can be done that'd improve perf, mostly be improving cache utilization by removing unnecessary bits. This is what I'd say: + +- It's unlikely there's an optimization for my hardware that'd improve performance by 2x +- It's unlikely there's an optimization for my hardware that'd improve performance by 5x across the workloads I've evaluated. There are ways to make prim's algorithm much faster on much larger graphs, but given what I care about, this is likely inconsequential. +- These further optimizations are probably not worth it + - They could make this faster but two things: + 1. They would decrease code readability and extensibility a non-trivial amount + - sometimes worth it + 2. The improvements wouldn't be meaningful for average usage + - most ppl will be draw constrained. I believe I'm close to what is optimal as it relates to using raylib, without diving straight into opengl + + +--- + +Pygame vs raylib: + +- Not a super great comparison +- SDL (pygame) will basically always be slower than opengl (raylib) + +--- + +okay, so, this is a comparison between pygame, rlib w/ python, rlib from c++: + +these are all only rendering deltas, using a texture with rlib, and just doing incremental writes with pygame (functionally the same amount of computation) + + +each is running one iteration of prim, rendering each step, with 100000 edges and 10000 vertices + +(kept each render in the foreground as that makes it slower, disabled picom) + +sleep 1 for each + +max memory is me running /usr/bin/time -v {command}, taking the max resident set size + +py rlib: + +- (render_rlib) + - 24.347371951736843 seconds avg + - 7,884,780,154.947369 avg cycles +- (render_rlib/mem) + - 160.2857894736842 MiB avg + +py pygame: + +- (render_pygame/v...) + - 52.71620356077778 seconds avg + - 12,353,392,498.666666 avg cycles +- (render_pygame/mem) + - 201.89875 MiB avg + +c++ rlib: + +- (benchmarking/final_render/out.txt) + - 23.859886112999998 seconds avg + - 3,796,753,782.428571 avg cycles +- (benchmarking/final_render_mem/out.txt) + - 137.27142857142857 MiB avg + +summary: + +this is strictly rendering information. + +raylib and pygame, with the same algorithm / write count, albeit randomized so not technically the same graphs, but each with multiple runs, we find: + +- pygame used ~1.25x the memory of raylib +- pygame ran ~2.15x slower than raylib + +python vs c++ (normalized with raylib) + +- python used 1.15x more memory than c++ (c++ not really optimized for memory as it used OO paradigm that increasde overhead relative to python, but still better) +- python version ran ~1.02x slower than c++ version + - the overhead of computation for the graph is trivial relative to the rendering, which was gpu bound in both +- python spent ~3.25x more cpu cycles than the c++ version + - again, gpu bound, so this doesn't change max fps, but does increase energy usage, espeically when considering this is to run in the background for a long time + +without rendering: + +since I didn't do the heap-push optimization in the python code, I'll compare the comparable c++ implementation without that optimization which improved perf by ~2x. + +- benchmarking/final_no_render_v_200000_e_2000000_s_0/ + - 2.118 seconds +- no_render_final/v200000e2000000 + - 20.253333333333334 seconds + +- c++ ran ~9.56x faster + +takeaway: + +- the overhead for the python raylib bindings aren't that encumbering. The default pygame ones are (pygame -> sdl -> opengl), instead of raylib -> opengl. +- rendering performance is excellerated greatly by re-using texture maps +- raylib -> screenshot is far faster when going -> bmp instead of other image file formats + +--- + +headline: diff --git a/posts/wip/to-make-a-cool-background.md b/posts/wip/to-make-a-cool-background.md @@ -1,802 +0,0 @@ -# To Make a Cool Background - -I wrote a visualization program for prim's algorithm that induces a minimum spanning tree (MST) on a procedurally generated graph. How does one go about making this their background and screensaver with X11 / dwm? - -## MST - -IMPLEMENTATION DETAILS - -## Background making - -[https://github.com/python-xlib/python-xlib](https://github.com/python-xlib/python-xlib.md) - -```python3 -os.environ["SDL_VIDEODRIVER"] = "dummy" -``` - -why not just use screenshots in a shared location? - -indeed, why not? - -## fuck you and your bullshit. - -Benchmarking - -## c -> c++ - -realized I needed a heap. - -## bmp vs png vs jpg - -bmp is crazy fucking fast (benchmark) - -(looked in the code for supported file formats, looked in feh -> lib(whatever) for support) - -note larger file size. - -this is interesting, look further. - -### patched upstream xl - -### x11 - -x11 is weird with this because they are kind hacky in that they just put up a window and take away your inputs, forcing them to go to that window. - -(should learn more about this) - -### Benchmarking - -uhhh... is it actually that fast? - -wait; did this just optimize all of my code? - -Well yes, but actually no. - -adding: - -std::cout << g.toString() << std::endl; - -gives ~ the same perf (minus the amount of time it takes to send so much data to stdout) - -(this would require the full traversal because toString is dependent upon prior prim algo steps being performed otherwise the traversal status for edges and vertices would be incorrect). - -(fixed a bug in the python code slowing it down) - -see no_render_2_fixed_itr. - -## C++ benchmarking - -330 ms for init stuff w/ graph -1405 ms for iteration - -broken further down: - -average iteration time is ~0ms, reaching ~20ms for later stages. Over time the percentage of valid edges declines. - -added getUnvisitedEdges function to return only non-traversed edges - -Init time: 332 -Loop time: 1344 -Init time: 327 -Loop time: 1350 -Init time: 322 -Loop time: 1374 - -still has a similar issue as before; degredation in perf towards the end bc things are pushed earlier on and then get invalidated later on. - -that's basically all I could squeeze out without changes to the algo to be eager instead of lazy wrt tracking vertices. Basically, what's the shortest distance to a given vertex instead of what's the edge that we have that's shortest. - -such a refactor though is likely irrelevant right now due to the added cost of - -ope; realized my function for get edges with unvisited vertices above was wrong. I was just not pushing visited edges, but we really care about vertices that haven't been visited so refactored the edge generation and stuff to get a stable ref to v2index and then push only if that hasn't been visited. - -Init time: 389 -Loop time: 706 -Init time: 315 -Loop time: 671 -Init time: 337 -Loop time: 692 - -now we're cooking with gas. - -tests now fail. bc snapshots. updated and everything seems right again. - -actually the stable things isn't really necessary as this approach that's unstable is functionally the same, but safer in case there are changes to the IR of edges. - -Init time: 334 -Loop time: 694 -Init time: 321 -Loop time: 668 -Init time: 323 -Loop time: 701 - -now we find this: - -(see benchmarking/no_render_v_100000_e_1000000_s_0/out1.csv) - -same optimization performed for python code so that's then down to 8.6 seconds ~~~ see andrew@deepthought:no_render_3_fixed_itr_fixed_check$ - -at this point it's worth worrying about the return for the get untraversed edges for vertices not traversed. after that: - -Init time: 314 -Loop time: 678 -Init time: 312 -Loop time: 671 -Init time: 311 -Loop time: 680 - -and with the optimization for edge ordering: - -Init time: 311 -Loop time: 659 -Init time: 333 -Loop time: 673 -Init time: 320 -Loop time: 709 -Init time: 311 -Loop time: 674 - -this is still too fucking slow. - -what's making the graph induction so incredibly slow? - -just graph creation: - -graph create: 317 -Loop time: 691 -graph create: 314 -Loop time: 657 -graph create: 311 -Loop time: 665 - -reserving instead of pushing: - -graph create: 314 -Loop time: 636 -graph create: 324 -Loop time: 688 -graph create: 315 -Loop time: 693 - -replaced map with vector where we were using indices to index into the map (dumb): - -graph create: 174 -Loop time: 654 -graph create: 179 -Loop time: 610 -graph create: 184 -Loop time: 618 -graph create: 185 -Loop time: 622 - -ok, let's now run the full benchmarks again: - -benchmarking/no_render_only_grab_unvisited_edges_vector_instead_of_map_v_100000_e_1000000_s_0/out1.csv - -0.04,0.79,0.84 -0.03,0.79,0.84 -0.04,0.77,0.82 - -this was kind of just stalling though becaus I'm out of my depth as it relates to rendering, the larger perf issue. - -back to that. - -here are where this stands w/ 1000 v and 10_000 edges - -prior was ~34s per iteration (final col) - -this is basically the same: - -benchmarking/better_render_v_1000_e_10000_s_0/out1.csv - -(snippet from above file) - -0.26,10.71,34.22 -0.29,10.64,33.24 -0.31,10.62,33.57 -0.28,10.53,33.56 - -fine. we'll fix the raylib shit. (queue montage) - -make debug-build && time ./abg.out -s 0 --edges 2000 --vertices 200 - -real 0m1.948s -user 0m0.529s -sys 0m0.060s - -~20 milliseconds per render call w/ make debug-build && time ./abg.out -s 0 --edges 20000 --vertices 2000 - -Total single iteration cost: 65 -Amount of time calling render: 18 -Total single iteration cost: 65 -Amount of time calling render: 18 -Total single iteration cost: 65 -Amount of time calling render: 18 -Total single iteration cost: 65 -Amount of time calling render: 18 -Total single iteration cost: 65 -Amount of time calling render: 19 -Total single iteration cost: 65 -Amount of time calling render: 18 -Total single iteration cost: 65 -Amount of time calling render: 18 -Total single iteration cost: 65 - -huh; what's the other iteration cost? - - - while (!WindowShouldClose() && toVisit.size() != 0) { - auto startLoop = std::chrono::steady_clock::now(); - BeginDrawing(); - ClearBackground(BLACK); - auto startRender = std::chrono::steady_clock::now(); - g.render(); - auto endRender = std::chrono::steady_clock::now(); - auto diff = std::chrono::duration_cast<std::chrono::milliseconds>(endRender - startRender); - std::cout << "Amount of time calling render: " << diff.count() << std::endl; - EndDrawing(); - - // since we wait sleepTime here, the bg render has a render delta of - // at minimum sleepTime when switching tags in dwm, this is rather - // annoying because the screen doesn't repaint until the sleep time - // passes, which results in artifacts on screen. - - // despite this, calling render a lot of times is rather intensive - // (at least on my hardware) and so this tradeoff is accepted for - // now, unless there's a simple approach that allows for preemption - - //usleep((int)(sleepTime * 1000000)); - - oneStepPrim(toVisit, visitedIndices, g); - auto endLoop = std::chrono::steady_clock::now(); - auto loopDiff = std::chrono::duration_cast<std::chrono::milliseconds>(endLoop - startLoop); - std::cout << "Total single iteration cost: " << loopDiff.count() << std::endl; - - } - -so it's somewhere in that first block; in the render area. the actual computation cost at the end is inconsequential. - -begindrawing is ~free. - -clear background is ~free. - -~46 of 65ms are spent on enddrawing. - -so two things: - -19ms on render -46ms on enddrawing - -what about when the numbers are much bigger (100_000 edges, 10_000 vertices)? - -Render time: 56 -End Drawing time: 237 -Total single iteration cost: 316 - -the other 23 ms is the prim step + begin drawing / clear background. - -can we just not clear the screen? does that help? nope. doesn't do anything. - -target 60 fps? - -nope. - -ahh; the slowness is being realized later on. while render is cool with me double calling on edges; this is felt when enddrawing is called as the gpu does the rendering and stuff at that point. - -what happens if I use the better single time render method? - -before: - -Render time: 62 -End Drawing time: 244 -Total single iteration cost: 306 -Render time: 60 -End Drawing time: 245 -Total single iteration cost: 305 -Render time: 60 -End Drawing time: 245 -Total single iteration cost: 305 -Render time: 55 -End Drawing time: 252 -Total single iteration cost: 307 -Render time: 60 -End Drawing time: 245 -Total single iteration cost: 305 -Render time: 58 -End Drawing time: 247 -Total single iteration cost: 306 - -after: - -Total single iteration cost: 158 -Render time: 46 -End Drawing time: 112 -Total single iteration cost: 159 -Render time: 46 -End Drawing time: 112 -Total single iteration cost: 159 -Render time: 45 -End Drawing time: 113 -Total single iteration cost: 159 -Render time: 46 -End Drawing time: 111 -Total single iteration cost: 158 -Render time: 46 -End Drawing time: 112 -Total single iteration cost: 158 -Render time: 46 -End Drawing time: 113 - -hell yeah. - -why so slow still? - -Like this is only ~100_000 and ~10_000 vertices so like why so slow? - -benchmarked now: - -benchmarking/simpler_render_v_1000_e_10000_s_0/out1.csv -0.29,7.77,18.96 -0.27,7.80,19.17 -0.29,7.90,19.17 -0.31,7.76,19.05 -0.29,7.72,18.68 -0.30,7.90,18.56 -0.27,7.78,18.80 -0.27,7.77,18.74 -0.29,7.69,18.77 -0.32,7.67,18.85 - -alright then. unfortunately, we're only calling the draw function once per vertex and edge now. we could change the rendering to only render connections, this would increase speed a lot, but it also makes the animation look less cool so fuck that. - -could we draw in the background? like create a new thread that doesn't block us and then wait until that's done once we get back? - -well maybe, but the issue is I don't know how well this handles drawing while there's a queue of messages still being sent. - -std::thread t(endDrawing); -t.join(); - -vs endDrawing() - -result in entirely different outcomes. - -the second sort of renders some stuff, but gets totally fucked up and then just black screens. - -due to an import? no this shit's just fucked. - -opengl affinity. - -can prebake the graph though and then only render additions. - -after: - -0.19,1.77,3.86 -0.17,1.76,3.81 -0.19,1.76,3.82 -0.18,1.75,3.85 -0.18,1.71,3.86 -0.19,1.68,3.83 -0.18,1.72,3.83 - -holy shit. can we make this faster? - -of fucking course we can. track if a traversed state has been rendered and skip it if it has, using this to update our incremental texture. we then render that. - -benchmarking/cache_first_use_blank_graph_v_1000_e_10000_s_0/out1.csv - -0.17,0.65,3.06 -0.18,0.63,3.05 -0.18,0.66,3.05 -0.18,0.64,3.05 -0.18,0.64,3.04 -0.17,0.63,3.02 -0.18,0.62,3.04 -0.19,0.64,3.05 -0.17,0.65,3.04 -0.17,0.66,3.03 -0.18,0.62,3.04 -0.17,0.63,3.03 - -this is too boring; let's turn this shit up. - -how fast are we relative to the python bloatware webshit? - -benchmarking/cache_first_use_blank_graph_v_10000_e_100000_s_0/out1.csv - -1.40,28.92,35.76 -1.53,29.30,35.95 - -(notice the edges and vertices) - -vs python: - -1.33,10730.71,10772.74 - -that's only >300x slower for the python code so the average python developer would totally be cool with shipping it. Job done, webshit: built. - -alright then. enough messing around. We really should have a queue for items that are to be rendered so we don't have to iterate over all vertices and edges, checking if they have the 'rendered' flag set. - -after doing this we find: - -benchmarking/track_to_render_v_10000_e_100000_s_0/out1.csv - -1.50,3.12,29.43 -1.51,3.20,29.67 -1.57,3.08,30.00 -1.57,3.04,30.07 - -35.855000000000004 / 29.7925 = 1.2034908114458338 - -okay, so 20 percent faster. still too fucking slow. - -i'm also getting sick of this bs chrono / time shit. time to bring in perf. - - 3.20% 395 abg.out libraylib.so.6.0.0 [.] rlVertex3f - 2.08% 338 abg.out abg.out [.] Edge::operator>(Edge const&) const - 1.55% 245 abg.out abg.out [.] oneStepPrim(std::priority_queue<Edge, std::vector<Edge, st> - 1.41% 255 abg.out libraylib.so.6.0.0 [.] rlDrawRenderBatch - 1.22% 225 abg.out libc.so.6 [.] 0x0000000000185dde - 0.85% 129 abg.out libraylib.so.6.0.0 [.] DrawCircleSector - 0.79% 136 abg.out libc.so.6 [.] pthread_mutex_lock - 0.74% 133 abg.out libc.so.6 [.] ioctl - 0.64% 115 abg.out libgallium-26.2.2-arch1.1.so [.] 0x00000000007f8138 - 0.62% 113 abg.out libraylib.so.6.0.0 [.] PollInputEvents - 0.57% 91 abg.out libc.so.6 [.] cfree - 0.56% 95 abg.out libc.so.6 [.] malloc - 0.54% 27 abg.out libc.so.6 [.] 0x00000000001866c9 - 0.53% 99 abg.out libgallium-26.2.2-arch1.1.so [.] 0x000000000180c45c - -alright so raylib is spending a decent amount of time on Vertex3f though not a crazy amount. Comparisons between edges are common; not surprising as we are using a heap with lots of elements towards the end, as we've seen. prim's algorithm generally taking some time, makes sense. - -render drawing is rather low, but within reason. This is rather disappointing. It's nice when it's like, no, dude, you spent 99.95% of your time in one function. - -looking at the call stack: - -|--14.80%--EndTextureMode -|--58.02%--EndDrawing ---1.62%--Graph::render() - -well. huh. end texture mode is where I add things though the function itself is just clearing the queue. - -It's a bit surprising enddrawing is more expensive since it just loads in the texture I've baked. - ---- - -I shall call this ~done. final findings with - -rendered below is using vertices = 10_000, edges = 100_000 - -unrendered below is using vertices = 200_000, edges = 2_000_000 - -- python (with overdraw mostly fixing + texture map) - - rendered - - 58.758 seconds - - unrendered - - 20.253333333333334 seconds - -- c++ (with overdraw fixing + texture map) - - rendered - - - 29.7925 seconds - - - unrendered - - 2.118 seconds - - -benchmarking/final_no_render_v_200000_e_2000000_s_0/ - -takeaway: - -the rendered python implementation w/ 10_000 v and 100_000 edges using perf: - -Performance counter stats for 'python3 prim.py': - - 0 context-switches:u # 0.0 cs/sec cs_per_second - 0 cpu-migrations:u # 0.0 migrations/sec migrations_per_second - 14,233 page-faults:u # 252.0 faults/sec page_faults_per_second - 56,487.57 msec task-clock:u # nan CPUs CPUs_utilized - 30,763,483 branch-misses:u # 0.7 % branch_miss_rate (88.90%) - 4,305,442,939 branches:u # 76.2 M/sec branch_frequency (88.90%) - 128,137,043,750 cpu-cycles:u # 2.3 GHz cycles_frequency (88.90%) - 18,736,054,409 instructions:u # 0.1 instructions insn_per_cycle (88.85%) - TopdownL1 # 0.1 % tma_backend_bound - # 98.9 % tma_bad_speculation (88.87%) - # 0.5 % tma_frontend_bound (77.81%) - # 0.5 % tma_retiring (88.92%) - - 59.936596362 seconds time elapsed - - 52.628026000 seconds user - 1.492521000 seconds sys - -gpu constrained though. - -the rendered c++ implementation w/ 10_000 v and 100_000 edges using perf: - - Performance counter stats for './abg.out -s 0 --vertices 10000 --edges 100000': - - 0 context-switches:u # 0.0 cs/sec cs_per_second - 0 cpu-migrations:u # 0.0 migrations/sec migrations_per_second - 9,363 page-faults:u # 1819.4 faults/sec page_faults_per_second - 5,146.21 msec task-clock:u # nan CPUs CPUs_utilized - 28,144,835 branch-misses:u # 5.9 % branch_miss_rate (89.55%) - 473,319,266 branches:u # 92.0 M/sec branch_frequency (88.64%) - 3,973,233,282 cpu-cycles:u # 0.8 GHz cycles_frequency (88.55%) - 2,925,854,560 instructions:u # 0.7 instructions insn_per_cycle (89.12%) - TopdownL1 # 2.7 % tma_backend_bound - # 93.6 % tma_bad_speculation (88.66%) - # 0.9 % tma_frontend_bound (77.75%) - # 2.8 % tma_retiring (88.67%) - - 29.577542431 seconds time elapsed - - 2.925597000 seconds user - 2.094917000 seconds sys - -32x less instructions than the python version. Neither is cpu constrained, but this is a non-trivial amount of overhead from the python version; c++ version also had 7x higher instructions per cycle. - -gpu constrained too. - -memory overhead? - -c++ rendered sits at ~171mb-175mb. it's not great, hasn't been optimized, def room for improvement. - -python rendered sits at ~240mb-248mb - -the default invocation method for the c++ implementation I use as my lock screen is running at 160mb. This is rather annoying, but also, it's doing a bunch of rendering stuff so IG that's fine, and this does improve the computational cost in terms of cycles so... - -huh... after 2 hours it's chilling at 163mb (TODO). - -bc it's always holding onto at least one frame which is 5120x1440 pixels which is ~21mb minimum (assuming r g and b bytes per pixel.) - -an eager approach for this would be better, but c++ stl doesn't have an indexed priority queue, so I'll just retcon what I have. - -basically, I just want to minimize the useless things I push to the queue. One way to do this is to track the minimum weighted edge with an untraversed vertex and then updating this and only pushing edges with it when they are < that weight. - -before: - -benchmarking/final_no_render_v_200000_e_2000000_s_0/ - -0.08,2.03,2.12 -0.09,2.02,2.12 -0.09,2.00,2.11 -0.09,2.00,2.11 -0.08,1.99,2.09 -0.07,1.99,2.08 -0.10,2.00,2.11 -0.09,2.00,2.11 -0.09,2.07,2.18 -0.06,2.08,2.15 - - -after: - -benchmarking/final_min_no_render_v_200000_e_2000000_s_0/out.csv - -0.06,0.97,1.04 -0.06,0.93,1.00 -0.07,0.95,1.03 -0.09,0.92,1.02 -0.08,0.94,1.02 -0.08,0.94,1.03 -0.08,0.94,1.03 -0.06,0.95,1.02 -0.08,0.93,1.02 -0.07,0.95,1.02 -0.07,0.95,1.03 -0.07,0.95,1.03 -0.08,0.95,1.04 -0.09,0.93,1.03 -0.07,0.98,1.06 -0.07,0.95,1.04 -0.08,0.94,1.03 -0.07,0.96,1.04 -0.07,0.95,1.04 -0.07,1.00,1.08 - -this doesn't really impact time wrt rendered because that is basically all spent on rendering not computation. - -do I have a memory leak? - - - -> time valgrind --tool=memcheck abg - -==944657== Process terminating with default action of signal 2 (SIGINT) -==944657== at 0x50D3952: __syscall_cancel_arch (syscall_cancel.S:56) -==944657== by 0x5117AEC: internal_syscall_cancel (sysdep-cancel.h:53) -==944657== by 0x5117AEC: clock_nanosleep@@GLIBC_2.17 (clock_nanosleep.c:48) -==944657== by 0x5123F26: nanosleep (nanosleep.c:25) -==944657== by 0x51532E9: usleep (usleep.c:31) -==944657== by 0x40065B8: main (in /usr/local/bin/abg) -==944657== -==944657== HEAP SUMMARY: -==944657== in use at exit: 11,776,171 bytes in 27,368 blocks -==944657== total heap usage: 86,922 allocs, 59,554 frees, 29,848,973 bytes allocated -==944657== -==944657== LEAK SUMMARY: -==944657== definitely lost: 0 bytes in 0 blocks -==944657== indirectly lost: 0 bytes in 0 blocks -==944657== possibly lost: 6,876,540 bytes in 3,237 blocks -==944657== still reachable: 4,899,631 bytes in 24,131 blocks -==944657== suppressed: 0 bytes in 0 blocks -==944657== Rerun with --leak-check=full to see details of leaked memory -==944657== -==944657== For lists of detected and suppressed errors, rerun with: -s -==944657== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) - - -real 12m18.560s -user 0m23.848s -sys 0m0.969s - -andrew@deepthought:~$ time valgrind --tool=memcheck abg -==947393== Memcheck, a memory error detector -==947393== Copyright (C) 2002-2024, and GNU GPL'd, by Julian Seward et al. -==947393== Using Valgrind-3.25.1 and LibVEX; rerun with -h for copyright info -==947393== Command: abg -==947393== -^C==947393== -==947393== Process terminating with default action of signal 2 (SIGINT) -==947393== at 0x50D3952: __syscall_cancel_arch (syscall_cancel.S:56) -==947393== by 0x5117AEC: internal_syscall_cancel (sysdep-cancel.h:53) -==947393== by 0x5117AEC: clock_nanosleep@@GLIBC_2.17 (clock_nanosleep.c:48) -==947393== by 0x5123F26: nanosleep (nanosleep.c:25) -==947393== by 0x51532E9: usleep (usleep.c:31) -==947393== by 0x40065B8: main (in /usr/local/bin/abg) -==947393== -==947393== HEAP SUMMARY: -==947393== in use at exit: 11,656,499 bytes in 27,404 blocks -==947393== total heap usage: 64,820 allocs, 37,416 frees, 24,650,054 bytes allocated -==947393== -==947393== LEAK SUMMARY: -==947393== definitely lost: 0 bytes in 0 blocks -==947393== indirectly lost: 0 bytes in 0 blocks -==947393== possibly lost: 6,744,916 bytes in 3,235 blocks -==947393== still reachable: 4,911,583 bytes in 24,169 blocks -==947393== suppressed: 0 bytes in 0 blocks -==947393== Rerun with --leak-check=full to see details of leaked memory -==947393== -==947393== For lists of detected and suppressed errors, rerun with: -s -==947393== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) - - -real 0m53.077s -user 0m20.121s -sys 0m0.750s - -andrew@deepthought:~$ time valgrind --leak-check=full --tool=memcheck abg -s 0 - -==948338== -==948338== LEAK SUMMARY: -==948338== definitely lost: 0 bytes in 0 blocks -==948338== indirectly lost: 0 bytes in 0 blocks -==948338== possibly lost: 6,948,380 bytes in 3,271 blocks -==948338== still reachable: 4,899,399 bytes in 24,179 blocks -==948338== suppressed: 0 bytes in 0 blocks -==948338== Reachable blocks (those to which a pointer was found) are not shown. -==948338== To see them, rerun with: --leak-check=full --show-leak-kinds=all -==948338== -==948338== For lists of detected and suppressed errors, rerun with: -s -==948338== ERROR SUMMARY: 2838 errors from 2838 contexts (suppressed: 0 from 0) - - -real 21m9.471s -user 19m30.601s -sys 1m12.207s - -seems like this was just me not closing the window. fixed that. - ---- - -profiling: - -start: 121mb (time 5:15pm after running for ~a minute) -check-in: 121mb (time 8:55pm) -- this is just the default `abg` cmd so not a ton of churn -stopped: 121mb (9:11pm) - -running again w/ s=0: - ---- - -(recompile) - -start: 123mb (time 9:13pm) -end: 123mb (time: 11:00pm) - ---- - -seems good; calling it here. further refactors can be done that'd improve perf, mostly be improving cache utilization by removing unnecessary bits. This is what I'd say: - -- It's unlikely there's an optimization for my hardware that'd improve performance by 2x -- It's unlikely there's an optimization for my hardware that'd improve performance by 5x across the workloads I've evaluated. There are ways to make prim's algorithm much faster on much larger graphs, but given what I care about, this is likely inconsequential. -- These further optimizations are probably not worth it - - They could make this faster but two things: - 1. They would decrease code readability and extensibility a non-trivial amount - - sometimes worth it - 2. The improvements wouldn't be meaningful for average usage - - most ppl will be draw constrained. I believe I'm close to what is optimal as it relates to using raylib, without diving straight into opengl - - ---- - -Pygame vs raylib: - -- Not a super great comparison -- SDL (pygame) will basically always be slower than opengl (raylib) - ---- - -okay, so, this is a comparison between pygame, rlib w/ python, rlib from c++: - -these are all only rendering deltas, using a texture with rlib, and just doing incremental writes with pygame (functionally the same amount of computation) - - -each is running one iteration of prim, rendering each step, with 100000 edges and 10000 vertices - -(kept each render in the foreground as that makes it slower, disabled picom) - -sleep 1 for each - -max memory is me running /usr/bin/time -v {command}, taking the max resident set size - -py rlib: - -- (render_rlib) - - 24.347371951736843 seconds avg - - 7,884,780,154.947369 avg cycles -- (render_rlib/mem) - - 160.2857894736842 MiB avg - -py pygame: - -- (render_pygame/v...) - - 52.71620356077778 seconds avg - - 12,353,392,498.666666 avg cycles -- (render_pygame/mem) - - 201.89875 MiB avg - -c++ rlib: - -- (benchmarking/final_render/out.txt) - - 23.859886112999998 seconds avg - - 3,796,753,782.428571 avg cycles -- (benchmarking/final_render_mem/out.txt) - - 137.27142857142857 MiB avg - -summary: - -this is strictly rendering information. - -raylib and pygame, with the same algorithm / write count, albeit randomized so not technically the same graphs, but each with multiple runs, we find: - -- pygame used ~1.25x the memory of raylib -- pygame ran ~2.15x slower than raylib - -python vs c++ (normalized with raylib) - -- python used 1.15x more memory than c++ (c++ not really optimized for memory as it used OO paradigm that increasde overhead relative to python, but still better) -- python version ran ~1.02x slower than c++ version - - the overhead of computation for the graph is trivial relative to the rendering, which was gpu bound in both -- python spent ~3.25x more cpu cycles than the c++ version - - again, gpu bound, so this doesn't change max fps, but does increase energy usage, espeically when considering this is to run in the background for a long time - -without rendering: - -since I didn't do the heap-push optimization in the python code, I'll compare the comparable c++ implementation without that optimization which improved perf by ~2x. - -- benchmarking/final_no_render_v_200000_e_2000000_s_0/ - - 2.118 seconds -- no_render_final/v200000e2000000 - - 20.253333333333334 seconds - -- c++ ran ~9.56x faster - -takeaway: - -- the overhead for the python raylib bindings aren't that encumbering. The default pygame ones are (pygame -> sdl -> opengl), instead of raylib -> opengl. -- rendering performance is excellerated greatly by re-using texture maps -- raylib -> screenshot is far faster when going -> bmp instead of other image file formats - ---- - -headline: