diff --git a/calculate_profit_from_logs.py b/calculate_profit_from_logs.py new file mode 100644 index 0000000..762d288 --- /dev/null +++ b/calculate_profit_from_logs.py @@ -0,0 +1,107 @@ +import pygraphviz as pgv +import csv, csv_hack, os +import json +from exchanges import get_trade_data_from_log_item + +COLORS = ["red", "blue", "green", "orange", "purple", "black", "yellow", "grey", "darkgreen"] * 10 + +logsdict = csv.DictReader(open('data/all_logs_bigquery.csv'), delimiter=',', + quotechar='"', quoting=csv.QUOTE_MINIMAL) +logs = {} + +def get_rate_label(token1, amount1, token2, amount2): + if (token1 >= token2 and token1 != "ETH" and token1 != "WETH") or (token2 == "ETH" or token2 == "WETH"): # arbitrary ordering/ tiebreak + try: + return "%4g %s" % (amount1/amount2, token1 + '/' + token2) + except ZeroDivisionError: + return "[INF] %s" % (token1 + '/' + token2) + try: + return "%4g %s" % (amount2/amount1, token2 + '/' + token1) + except ZeroDivisionError: + return "[INF] %s" % (token2 + '/' + token1) + + +def get_profit_graph(logset, txhash): + dot = pgv.AGraph(label=txhash + ' Profit Flow', directed=True, strict=False, nodesep=1.0, ranksep=0.5, sep=0.0, labelfloat=False) + unknown = False + graph_edges = [] + logindex = 1 + tokens_involved = set() + trades = [] + for logitem in logset: + address = logitem[0] + data = logitem[1] + topicstext = logitem[2].replace('\'', '\"') + topics = json.loads(topicstext) + data = data[2:] # strip 0x from hex + trades_data = get_trade_data_from_log_item(topics, data, address) + if trades_data is not None: + for trade_data in trades_data: + (tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive, exchange) = trade_data + graph_edges.append((tokenget, "!" + exchange, amountget)) # (add "!" to mark special exchange node) + graph_edges.append(("!" + exchange, tokengive, amountgive)) + + rate_label = get_rate_label(tokenget, amountget, tokengive, amountgive) + tradenode_label = "Trade #" + str(logindex) + " (" + exchange + ")\n" + rate_label + dot.add_edge(tokenget_label, tradenode_label, label=("%4g" % amountget), color=COLORS[logindex]) + dot.add_edge(tradenode_label, tokengive_label, label=("%4g" % amountgive), color=COLORS[logindex]) + trades.append(tradenode_label) + tokens_involved.add(tokenget_label) + tokens_involved.add(tokengive_label) + logindex += 1 + else: + # some item in the logset failed to parse => we don't have complete profit picture + unknown = True + for token in list(tokens_involved): + dot.add_subgraph(token, rank='same') + dot.add_subgraph(trades, rank='same') + for i in range(0, len(trades) - 1): + dot.add_edge(trades[i], trades[i+1], style="invis") + return(graph_edges, unknown, dot) + +def calculate_profit_for(profit_graph): + token_profits = {} + for edge in profit_graph: + if not edge[0] in token_profits: + token_profits[edge[0]] = 0 + if not edge[1] in token_profits: + token_profits[edge[1]] = 0 + token_profits[edge[0]] -= edge[2] + token_profits[edge[1]] += edge[2] + return token_profits + +for log in logsdict: + hash = log['transaction_hash'] + if not hash in logs: + logs[hash] = [] + logs[hash].append((log['address'], log['data'], log['topics'])) + + +spamwriter = csv.writer(open('data/profits.csv', 'w'), delimiter=',', + quotechar='"', quoting=csv.QUOTE_MINIMAL) +spamwriter.writerow(["txhash","drawn","unknown","all_positive","eth_profit","profit_graph","profit_calcs"]) + +i = 0 +total = len(logs) +for txhash in logs: + i += 1 + print(txhash, i, "of", total) + output_file_name = 'profit_graphs/' + txhash + '.png' + drawn = False + (profit_graph, unknown, dot) = get_profit_graph(logs[txhash], txhash) + if unknown: + # failed to process given entry because some exchange that's in dex_list.py is missing a log parser + print("UNKNOWN!", txhash) + if not unknown and len(profit_graph) > 2: + if not os.path.exists(output_file_name): + dot.draw(output_file_name, prog="dot") + drawn = True + profit_calcs = calculate_profit_for(profit_graph) + all_positive = True + for token in profit_calcs: + if token[0] != "!": + if profit_calcs[token] < 0: + all_positive = False + profit_graph_data = json.dumps(profit_graph) + profit_calcs_data = json.dumps(profit_calcs) + spamwriter.writerow([txhash, drawn, unknown, all_positive, profit_calcs.get('ETH', 0), profit_graph_data, profit_calcs_data]) diff --git a/calculate_slots.py b/calculate_slots.py new file mode 100644 index 0000000..c0f5a86 --- /dev/null +++ b/calculate_slots.py @@ -0,0 +1,34 @@ +from statistics import mean +import csv +import numpy as np + +import csv_hack + +arbitrageurs = {} +slotprices = {} + +def add_to_count(arbitrageurs, arbitrageur): + if arbitrageur in arbitrageurs: + arbitrageurs[arbitrageur] += 1 + else: + arbitrageurs[arbitrageur] = 1 + +slotsdict = csv.DictReader(open('data/gas_slots_6207336_6146507.csv')) +slotsdict = csv.DictReader(open('data/gas_slots.csv')) +for tx in slotsdict: + slot = int(tx['tx_position']) + if int(tx['gas_used']) < (int(tx['gas_limit']) * 0.6) and int(tx['gas_price']) > 310000000000 and tx['log_topics'].count("~") > 1 and not tx['to'].lower() in ["0xa62142888aba8370742be823c1782d17a0389da1", "0xdd9fd6b6f8f7ea932997992bbe67eabb3e316f3c"]: + print(tx['hash'], tx['from'], tx['to']) + add_to_count(arbitrageurs, tx['from']) + if not slot in slotprices: + slotprices[slot] = [] + slotprices[slot].append(int(tx['gas_price'])) + +for arbitrageur in arbitrageurs.keys(): + if arbitrageurs[arbitrageur] > 0: + print("arber", "https://etherscan.io/address/" + arbitrageur, arbitrageurs[arbitrageur]) + +open("data/slots_new.csv", "w").write("\n".join([",".join([str(x/(10**9)) for x in [ np.percentile(slotprices[slot], 10), np.percentile(slotprices[slot], 50), np.percentile(slotprices[slot], 75), np.percentile(slotprices[slot], 90), np.percentile(slotprices[slot], 99)]]) for slot in range(0, 10)])) +for slot in slotprices: + prices = slotprices[slot] + print(slot, np.percentile(prices, 10), np.percentile(prices, 50), np.percentile(prices, 75), np.percentile(prices, 99)) diff --git a/count_wins.py b/count_wins.py new file mode 100644 index 0000000..040046d --- /dev/null +++ b/count_wins.py @@ -0,0 +1,23 @@ +import csv +def get_winner_dict(): + winner_dict = {} + slotsdict = csv.DictReader(open('data/slot_auction.csv')) + for slot in slotsdict: + slot['log_count'] = slot['log_addrs'].count("~") + min(1, len(slot['log_addrs'])) + winner_dict[slot['hash']] = slot + return winner_dict + + +arbs = {} + +winner_dict = get_winner_dict() +print(len(winner_dict.keys())) + +for hash in winner_dict: + if winner_dict[hash]['log_count'] > 0: + sender = winner_dict[hash]['from'] + if not sender in arbs: + arbs[sender] = 0 + arbs[sender] += 1 + +print(arbs) diff --git a/csv_hack.py b/csv_hack.py new file mode 100644 index 0000000..33d7b32 --- /dev/null +++ b/csv_hack.py @@ -0,0 +1,12 @@ +# QUICK AND DIRTY HACK FROM https://stackoverflow.com/questions/15063936/csv-error-field-larger-than-field-limit-131072 +import sys, csv +maxInt = sys.maxsize + +decrement = False +try: + csv.field_size_limit(maxInt) +except OverflowError: + maxInt = int(maxInt/10) + decrement = True +# END HACK + diff --git a/csv_to_sqlite.py b/csv_to_sqlite.py new file mode 100644 index 0000000..87e06a3 --- /dev/null +++ b/csv_to_sqlite.py @@ -0,0 +1,4 @@ +import os + +os.system('sqlite3 data/arbitrage_new.db ".mode csv" ".import data/block_fees.csv block_fees" ".import data/eth.csv eth_data" ".import data/all_logs_bigquery.csv logs" ".import data/block_data.csv blocks" ".import data/all_success_arb_txs_bigquery.csv success" ".import data/all_inclfail_arb_txs_bigquery.csv wfail" ".import data/auctions.csv auctions" ".import data/profits.csv profits" "CREATE TABLE mergedprofitabletxs AS SELECT *,substr(timestamp,0,11) as date FROM wfail LEFT JOIN profits on profits.txhash=wfail.transaction_hash LEFT JOIN success on success.transaction_hash=wfail.transaction_hash LEFT JOIN blocks on blocks.number=wfail.block_number GROUP BY wfail.transaction_hash ORDER BY CAST(wfail.block_number as INTEGER) DESC, CAST(wfail.transaction_index AS INTEGER) ASC;" ".quit" ""') +os.system('mv data/arbitrage_new.db data/arbitrage.db') diff --git a/data/README.md b/data/README.md new file mode 100644 index 0000000..6d2b511 --- /dev/null +++ b/data/README.md @@ -0,0 +1 @@ +Coming soon; check/star this space over the next day! diff --git a/etherdelta/readme.txt b/etherdelta/readme.txt new file mode 100644 index 0000000..549b46e --- /dev/null +++ b/etherdelta/readme.txt @@ -0,0 +1,33 @@ +The file contract_addr.txt contains all the contracts (including EtherDelta contract itself) with successful trade transactions sent to it within [3900000, 5550000) + +for each file: + +all_txs/all_txs-{begin_block}-{end_block}-1.txt + +contains all the transactions sent to the addresses in contract_addr.txt in the block range [begin_block, end_block). + +There are 5 coloumns in each file, each line represents one transaction: + +BlockNumber TransactionHash From To GasPrice(Wei) GasUsed InputData + + +for each file: + +succ_txs/succ_txs-{begin_block}-{end_block}-1.txt + +contains all the transactions with one or more Etherdelta Trade Event in the block range [begin_block, end_block), + +There are 6 coloumns in each file, each line represents one transaction: + +BlockNumber TransactionHash Tag From To InputData + + +The Tag is one of { Trade, Arbitrage, Unknown}: + +Trade means this transctions only generated one Trade Event, which means it is a normal trade transaction. + +Arbitrage mean this transction generated exactly 2 Trade Events and the buy/sell tokens form a pair. + +Otherwise, the transation will be tagged as Unknown. + + diff --git a/etherdelta/scripts/find_all_txs.py b/etherdelta/scripts/find_all_txs.py new file mode 100644 index 0000000..3b0a3d5 --- /dev/null +++ b/etherdelta/scripts/find_all_txs.py @@ -0,0 +1,50 @@ +import argparse +from _pysha3 import keccak_256 +from web3 import Web3, HTTPProvider +import json + +web3 = Web3(HTTPProvider('http://localhost:8549')) +#web3 = Web3(HTTPProvider('https://mainnet.infura.io/Ky03pelFIxoZdAUsr82w')) + + +parser = argparse.ArgumentParser(description='EtherDelta Arbitrage Bot.') +parser.add_argument('--st',dest='st' ,type=int, action='store', default='5000000') +parser.add_argument('--len',dest='len' ,type=int, action='store', default='100') +parser.add_argument('--r',dest='r' ,type=int, action='store', default='20') +args = parser.parse_args() + +startBlock = args.st +endBlock = args.st + args.len +ratio = args.r +result_dir = '../results/all_txs-{}-{}-{}.txt'.format(startBlock,endBlock,ratio) + +addr_lst = ['0x8d12A197cB00D4747a1fe03395095ce2A5CC6819', '0xbF29685856FAE1e228878DFB35B280C0adCC3B05', '0x98cA85c59DeE34dbC26667EaC04f13E39f5f765a', '0x567221F768451625A3fef8Bf03Ba03BE52269F82', '0x4203997775fD00EB4650B276c006AE476B1388F1', '0xB6DbA64619F3a70BdD4FFdE2E1f5281a0009f041', '0xb0e9697bCCB637BCA9832BB2e6d27242C96808Ac', '0xd58112C0497206326A0344838d5b41eA80174047', '0x1a375D0880cCEFaE658d6351a9a700d5FF496C92', '0xD6bA445EAdc80c7bA0F256E46Ac959d7D109FB58', '0x4406Fa4e664352d256388a5fBcDa800E40f17F75', '0x87484390A99aCA31B1C9bff68C2457C74237847A', '0xceBAa7B80e3f0F1b6FE8bDC4D3C628DA8ef330Fa', '0x20cbCAA2efE89d85C402Da26369a90fb8bEDA471', '0xa081c776C889936062F003Bf145cb531956a59e1', '0xdE6f48bC183611D2fb53F67e7FB126eFC6B72A17', '0x042c135Aad449c3cC38B93d951fB1388357C992f', '0x8c04deef1FBA3e11135BaB15FC28F644081479e3', '0x73BdFa78eACB6C6801F4D5182aeE9447E220be01', '0xAD440E6B26dD3A044a97294bF87c017D7Fb81C67', '0x0Effb1825953479fC01224CcE28fea02Bd9A211D', '0xf22B9431279708FD7D18e979291E356189de7f94', '0x6AC362960f28E731813b694A6e0FdD524cE2e1e5', '0x39dC3F7ADc8cad2b03C831C7771A25d4fb99021E', '0x5A9F97ACae529b61E664bf24e2D63Dd072ff9da0', '0x95FdfFB33690407f5D4a943A8A725Ece16CcEA3B', '0x8Ae21E19D6C89328B36dc0B3131793ac75E996d9', '0x162CAF2D552806A404ABA22F5D3AA06457bD4923', '0xBcfEce4bFAfc1CeeaE5fA5c202041446c0033B60', '0xDD5Ed75A9175b77685cFD27124f86b3A6C053660', '0x8cAadfb10e620108B6D0F65865a7cd4028D74536', '0x807bcFB5c2Fb614781016B63A6cB6672bA6660DF', '0x9ff9C2611dcCEA9402fc0e297118FEfA38af5cD4', '0x8DC56eD3a0CC5c80f57eF86c213a57eE6e83666C', '0x9f831d9B6EfD7D2Bf51C6b0Bd596D17F11ddE013', '0x4D55F76Ce2dBBAE7B48661bef9bD144Ce0C9091b', '0x2A9F4b1510Ca802bF99aA3bAD2A8065313471640', '0x5Ae933bfBbaa04C3e05Ae56295138174adA9799C', '0x7Ab155F4DD53C345c67AcF8BD9e610eB504e31C9', '0x7aA6e2506316f6D613277D4F2f4E4E1DC55e528e', '0xf6869BBAa72Ef6ca160Cb09a92c4A83f9b8a3c3c', '0x9018A83534cd5A0Ebad3E70710F6b6c248107105', '0xF182A17307284F94005751314c50ED074343d4a8', '0x9257100ba86f888AECf2862c60b7a340fc638ED6', '0x66cF045ddBCfD02cdc0Ee347f744d728494217BD', '0x8b24d80C6dd6E1aF5A000E03cA8f00886a05F6f5', '0xC333F4508973434D5012692A789f54B5AdA32874', '0x73b7424a32B34806F9Ba10129843Ce9Cc3069397', '0xD91D1Eccc96B170d963E85b9FA4ADf3B83E9BD3B', '0x1f8ac99600c61189d92c85cC760735b9E0067a60', '0x0f657C396DFCD6C59bB82B89fc3adBe5f90CE153', '0xDDf3e4B40448Ef7ea3dE2E0958991956E4bb6e52', '0xFeB6A6abB0dd91b39273936A66EaBEF9B74617Cc', '0x350F6F675B20d606bB7F6c412ef4775c9BC57168', '0x2755d1E38bC41AA42Ca9Bbef7cBdE67944BF2173', '0xBB37eaD38937B16b014227825A39c29A94b84848', '0x65f2DDDf638C7a7118b22d610c9aEBa141F2467F', '0xe755445D9ae759292262342586B90A48A44411A6', '0x84A8FcE7Ec6d6ce29bA0bb4F59DCe54DCd00174D', '0x794D1e70AfBDA0852DEC91652c38C1B84273292B', '0x115774d5b1BD334D4e165b6c6A180a79A5168D0B', '0x9E42c0225eB49fDE6F6885C33d20577c879DebD3', '0x5D8a38A1D5781b7644CfF3272ee0a02F21a17B14', '0xD71BC33865a07750c6C8B8EBA93bD69A01BA32ff', '0xd868B838B5de79F1e540b5d83c9E9A3D0b3810Cd', '0x18A902Dc44442205B4Ba2b1dC038e67506d22c55', '0x2Ba19EC4bcd5aE8De66b110bDe5EBf41092bD02f', '0x452b06F1c61cfF4c9beBaA405319a7C3B12553A2', '0xc22f5ab4F1591613a92B4D172cC7f4e4A5AF58CD', '0x17203E2784BAB9F40cf6b805f4BD0B0B95777218', '0xE6752641b59bffAB5Cce0e14DC517f9422aCCe12', '0x160506E5A5ce5DaDD43623689f53D5aa1F288f0f', '0xE5a759EB3e214fF0A2bBBEa31aCC41c9Bf27B239', '0x23eE598E50fF1b1bDE1022Bf3c8A41d4C23321a0', '0x91e9512663E9f1e9E83Af82c809A1FAd199A5978', '0xE37bD4D49c619e748d4efE74525489D26b6afF43', '0xC886B21B865e7C90432d9B8bdb14aD254f2232f5', '0xB8878CD00f51f088588602aCb43C7008333e767e', '0x9267AbDC61A6C51a069766A910a79f51bAAD9D3e', '0x2ad988635E24da9d008749b142393300fF3ED01D', '0xDD93e1919391CD90eB993F53559Af69A8D568912', '0x0249924245A19Aa2D7F5ddb0739A7132b7D094AB', '0x3b39f6E82cF73e4bD4c87cB50c8f6850906987A6', '0x5e054654A9c682f3aDF29a30263D30fD9b6aC7F4', '0x69607eF7BFFDfa21434BC8f6dE55f07911576618', '0x41a314f6b17E2cfEFD3692be7453ed76BB783122', '0x724EAcb94FF15aDa043Ed22734AF830519390A3a', '0x468D01b3FE0b746430aB4bA3d652aF70B913D122', '0x387687C0546DA077576D2F308BbE805C8D378b5C', '0x273A5D3E6721b9f5C1A6474F560c1334c63dda01', '0xd53955Fa72aE2844f9aDD18bB455898Af8e470F1', '0x483b43ad3FfAc4d887Daed5c1Fa9dAE7bce3bf73', '0xfe423F6b9B3aa093CC08831D9B106027F97E132E', '0xd2eA382E498316d91b9dE8557670149b479721a0', '0xc1fd2a0fDa4140bbe5817C4C1B2d80350b39397a', '0xb3b778007C914c705dfAe1A6506869A95bE9aFdF', '0x1D5321e125f6C7079A716705541c7b371CA79e69', '0xB078C6c920Bd68D3cdC9Ab9e544b5Bf0f45eaD4e', '0x94c78D10bcE1fA43D17B392e7ee68D88a49Ac60D', '0x3Ac636AC5C3a2576156aC5f10066ca68aBe0AD54', '0xD7a7628DafA2EA4B8014167aBc6196BE72d30F0f', '0xe6502a7FAF3187B64eE772f733Aa8B2De5e159f9', '0xC9D56287b414E1AA0963016AA721b527F095fD9C', '0xd815BBdB973fCfaE73f27ddc9a135e377028C1C5', '0x253e497fBD3D0397D3cb78D20D0D8BA74Dd19480', '0x6Ca59cF604A7873DF78ef3F5Ee8790f302a1f2A7', '0x6c2B0D8D82C2fDbdaec59A87C1a92Ee3f474071e', '0x3B2cEb8A5411aa1AB60d3D8eb450d9Fa39A41176', '0xE7e00fF5133991a09dd6f91A8e9cD5E901ee18e1', '0x72bd4A4454e135FEc00a491B16D7236a2D5b8706', '0x0150503118e27ac541296ED8af51337eB0164e47', '0xB811579F1EAa44599C0318534c6C997c9E5F7934', '0xcD912aF5286DC0B0A23Edb30209734EcB60838b3', '0xD9E727Ec4c8717Fe2dB6952B5ac41c6fe13B01cd', '0x16e5D97bBc92417E051e3b2cAbfBF8CEea2aCB9C', '0xd445f61ebCa3d6B4c57EEF1F39fdAb6595ef8972', '0x379374d13077E8867ef31803c37BaF9785A17c00', '0xF9695Cd65d6DfdF257fAb76A3Eb0cb8f001971CC', '0x86f07EE309655dBB0C169668f4e27848c0dEDa77', '0xd9662F305464831981A6A91D9F3E88595e447186', '0xd237F45a2279bee8Aa7D3526B7a065e34C2D0F43', '0x7c7b6909fcb9B6f672D37cf47e4C9D233D3BBA24', '0xeFb571EFd5602e8A521342b15e7Cf93bb99A9694', '0x4A57d0208164a1c1c63C75395dc444428a07B50A', '0x13c8A8Ea68B8b54Bb271D1C4177bE2A0d0edF220', '0x4395F5eC2379dE4502955E2CFbcb68D7536a09E7', '0xE8fC3EcF7815a38220f5d3E28c155B762a4310d8', '0x422d7C1F2f04e7582163D1381A436516F4De3C2A', '0x6D2f27149FBf6c559008e95EdE61ff20F3e4b847', '0xBC65F1DE15538c4418a45B78be49DD14E7344F06', '0xC5Ff06991DBaF57bef6dd7a75056E62b7A2383Fb', '0x65C34104C1266D5499b9Dbb3BFe0e68D5f50B00c', '0xe0FDA40eD2DB6505c7D9b47249ef869031aE84cB', '0xe444a40689f51f63Bcd29910622035707d533d29', '0x34f9560c63078Eb61872A4Dc2ccd20e21C34FEaf', '0x5892746DC50c211A397e38587c37A2C3c4f62A1d', '0x1Be71e871294156b43e52fFE77Deeddb9AB994eb', '0x0CD2795a623ADEb9370E2895E8D7526A6e4c556d', '0xF44072EdA87eDe9613B6AE1b812DE8a60aDE27A2', '0xCdDBa866A6B9DDD221848a7D29B582bE3e6A00d8', '0x0c8A9eA8A3844253ECeb6a0301d7901119A6dA8d', '0x4FdA9e6bcd83AF6c5Cc771b5d20aCcc2b7720074', '0x3075f7f189912f4f425dD7021B9c396434197477', '0xBf57Bd607D0785705b7A065dFE5f9Be86e946bd5', '0xF43B43869DD95E53923b30A79902915c1faa47d3', '0x21d7E78fd9b56b274cdA096A8F3DbC3f02eCc312', '0xaBAbEEa381E891235DDb2Ad5ca59c5D48360FE4f', '0x4203D1Fc8cC0557615ce5592b0cEE4FfBa04e21b', '0xf8a900E4B2568EF2f9D65609867BD74768657FDa', '0x5F6c1a41446537EF88eea3643ab5aafcD337a31A', '0x81b1DbB248A5FdC1521CC23306C83B2ABBEc53d1', '0xcca702A7C8f9055b8B83CC5C6f9D0b09c15765cc', '0xedBa536Cc155BB7d7Ca41B696254184eF210822B', '0x9a2d163aB40F88C625Fd475e807Bbc3556566f80', '0x215F4D5aE68b80DF77e827af4Ee334F3ce459733', '0xDFa01C48B6FD9276d35567469313059E2F3423b4', '0xf2982A81F0b9e40Dd5e040c8aAbf6AA7D9eF5092', '0xc883e75CeBA68dc6459443A6413D1Ff7F8A355B7', '0x6712D56eC56a811ED19A564Ab5f96E4Ce0B76527', '0x39C968c2984b750FB0dB989782638b8a56cC9cbC', '0x3F7070f10257BFd19b92032940362BE0731Fa43A', '0x653Cc58dd1ea31D6cD65A15554184E97C9FA5277', '0xC5674F926f929B480A644d771C34e09E2173Fbb1', '0xfB0db40592Df60B4B994e89cfAF00B68150fc43D', '0x0C06a951BB84FbcAfF105529971AF83b680C0DD1', '0x1A3885c9404e5eCfF0BCCBF571292B237156389B', '0xDC8756a8A11da6319ac30CaAf204190D2b1cD714', '0x02F66A7d5657Ee67be39349988aa1F944206eAd3', '0x74352E297D3d42a0E2De98B38e4AA9CF1cfE2de3', '0xbD463552cC313bFa2E7912F70c8AD7c5B7aB550e', '0x78273e3651c97979e6d7dAad0F0585D6bB7E6303', '0x033226720ff886982508c9704960118a72466FA9', '0x4B882992F3D4081C1F3A9336c4cc45db5675B42f', '0x58Db1C0b1944702C70e904992CE61b4Ff1843131', '0xc1ceeA569672598107a9378ceBafC543fEe60E3B', '0x09385Fd889D4e5BaB449B5983e237BDED4c22167', '0xfcFf15d3F81b57Cce122539ddf8d859c8C844C71', '0x7e9bA0c66e56BB24f1D77cbD687bF8E68eaEF0Da', '0xB39f7c953209AaD21d10f32dDA30a815Bd16aed9', '0x662d56dc4ab5F9Ef3aBE60C5de9Eb1B8E9F880fF', '0x16723234c2f30Bea552BF938142bf56a1B1966AC', '0xAF4E91CC1fA2FAfD9A4c43C8F41359F6aBe52b2d', '0xE6b8833744D27477F2F43CabFc5eF2e0DDd7fA04', '0x3Fc04e4063BEa08c66574E5bCFd5C8193B0EB401', '0x43Fef46b0Bd25778d60fc34df8F1AF6b3fb1bB6f', '0x4683eE96ED9C35FE564d2e8dE4E47283B95Fe280', '0x53165Bfd03e5158157894A278e0a9640277ba66D', '0x26AFfb7F84B9985c4cf53B03f51098210aF279a1', '0x2c6512deAAAcf0C27470b91C1781859C0C46a20F', '0x9Aa3B504CA7948646147Aa4150A356EB31D6E7bF', '0x34006681FAae8E2CB3De5F92A4304C011ddA3E3B', '0x7601563E13Cd42F557d2028201114FA6A44adF23', '0x70495b1dB3C9Be88fD15A60238739f69e1EE33C6', '0x33516d47CE28afd27E786613b67e3341c846220e', '0x94E48a41D774bdebF72Fa6947797d54bA20A7aCd', '0x85717d25CC2867160546a89cdF99481698C3B51e', '0x974650493b2ADa6d6Ed7908aef585939A078B756', '0x80D9dA31Aed9e95E18D115Ce7C2bAB4259CF1704', '0xa48e8B340c0Dde5339F28b441dEC00A3c959b2d9', '0x6aea70a3faC3b62244C14eC379A1E2eFd0b8DBda', '0x120542dB9292f64035725C3aB25361a491D6C5bb', '0x131ADB933ddBa23A1D02231D3E53Fd5df751dBc7', '0x3CAe1C388f2DE16dc053f1c6b5Dce10Bc6f4aD99', '0xcfB1CfCd476c1b85546EA5Fd2acD16b16b81cAE1', '0x1108BdE874aD1a0B50C6987a525258DC1f745003', '0xB2c85Cf9888AfF6dDA93b52cB75B5714C10cd620', '0x1c764a70797DeB7100037581e679684Cc5C9CA42', '0x6b47550722FF8cfA3Fc4aa866416fe2fedfa41F6', '0xb93FB6Ae27c3daBD8Fc4E23c952b2409fA67B307', '0xFBA8039Dbb9AB3a4bef0d69467bC9D7Cc9C13B90', '0x735cc07903c8f42c03D1101C494F7398be5ae0E7', '0xdbcC2E02deFcf97AFA83A42ae9B66596c0f1f5d1', '0x0B6F3985871A9dA9F02Ef9208f71BbAd7471B087', '0x75bAA33eb5e887F6f6E337f5fB073Ee68B9629B0', '0x83fbC98514197C1D547eacd417b4C3E6A11C8ba8', '0xd94531278c53BBBB3CC716F9e198b1FdCCc50315', '0x25975e7AC29347AC5a248E29D681b871F2CE437F', '0x9FcA8718E214c579228CA64672216195e9f7b02F', '0x477e17F7296e667ec54eEcBB37b50b1dD8340808', '0xbE24F35c9Df97f736BFa1264636c2E25A94fc45F', '0x7F2507072b0970D978A50D6F643eC0D86982A0cC', '0xd318914b05ad3C4bE34e71e02D4fAb8Dbf66Dc57', '0x99612b338566b2ac4B08ca0bAB93b549565cC37F', '0x81328DEFcb7F30Dd92C3D8c51ba4D2dF6f9E8424', '0xb8D8BBedc508E08913a5a38f035481C52C2fb6c6', '0x509B3f7EF9e29953f929baA4893cfBaC9eC805d3', '0xEE151566B9CBAd8baf1A56b7E8c6EdFE0a497AfE', '0xD8a608eA9E66b442a62D41507cCcc5a4DBCc81Fe', '0x36f74dA7d812a10356fD69a120eE138C53CE7A77', '0x414Bb2324e61349309e242a38b59948E17F8EAaA', '0x9E8f4f6a7B32EeF43DA3C8479038CFfe7bc6E579', '0x6E55d725Cf7f8Cd641F3F4ad8471381c346d9a0E', '0x300780Ac51B03751736FF15c9E805996f0dC64F1', '0xea79d06f277647d6f5650cD80588068DBA3FAc79', '0xA0D804e43ddC621fD183AEf1A5560bd09Ef692e5', '0x9Dfa3bAB158f46af15553d86134165fcA881a7e7', '0xb476CBC60ad08E4A707C5aa4b3AEBf7eA12BB054', '0xE52dE9Fb2E29bb8e1d9938A4C6daF243FBaB2AC2', '0x1a38d09a2929f502a45A5EE09828e8fc63b68277', '0xb954f03876c46d3E9c8FB5C861ad5eD151aC9BeB', '0xC032f183D7c0Dd0071265aD660AE96290431873E', '0x8961dAA25A98A4c8eD84462E17D9CE6cD709AA55', '0x8A2CF9AEb7633040d6Ed23F84787647c912ecFee', '0xf46fB3a5052aB45B51F64e2672a8CCd6154349D6', '0x613365b3e73e30119b67dE2961a68d608AEa377C', '0x435b9D077f4Cf97E6E4B48F73ddA354E0577B266', '0x405cE992B71Bf9E3570f3D30e65203075A296044', '0x00D3095Bb5fb5DEBA1a0b38aB0233805150f3f61', '0xc7781081a25ebC4C59893319aC27aba05c481c51', '0x2Bbf66aA46D62C7216F17E8DFc836FECA7Becb87', '0x7B8Dd45daeEcFfd47768D4939DE05104D231d2Aa', '0xd6287A691c1026Ee4C5c35380c2d219F8668A0F4', '0xC228B119f1c9503a92a935bcC6ade3Dc394e0013', '0x544c66db3B7Ab8e998222C79E859F0888e173Af2', '0x4Ac0F0b6C3b51b8377767A3d461b62B4444608e1', '0xFe6a1b20DAdD47e60811522e58D95D572E0E2557', '0x7c1D6Fc09594121A7e096126a077dd0bFb9923C9', '0xABB05Cc1C1874Da687E34ddf69F3eE6FAe1cEf89', '0x18d10e679f48a9B19EBf9f80093EF141F3A12b81', '0xb82651033562A0B797cD93148b7Fe46Fca910A26', '0x31cd68B798d390DD4ad84Da4D01A9c1f58FdE3B9', '0x06Db439Df1cE981c063812D226A4dd540FAB99cB', '0x12cF6cB8Cbe3f958682A5ebE05F2f5e4C52f804d', '0xF0a483B0279D1F26Eb5d6526f393cdCA4a0643f3', '0x666A32d58b86188fF5563b122c38793345251B9E', '0x91E1b7f779ae3839C61198757d24F37495ACb6EE', '0xE78fcafA7e25C7D8a0e6D5a453d1822e7CcA4Ce0', '0x0Ed5E1f8e5aE8b3f2E22B89Be67178C4F8fed2E6', '0xbb798eC6B9e02B65C27314F0DEd04626D278fF98', '0x14B0743F603eF2104Bfd01C30f8f98D9d3310470', '0x8A2C35D88aEA27E60DB7e0Dcd0Cf52321Ed64C18', '0x721A54e52E149bF9313B260230B1459ef8dC148d', '0x22A409ba1C5F63fFD008406E7D03922233e24461', '0x9d917Df8dcACBeb66bDa85B8c56895DF5749Cb52', '0xC8f1DfafB5CAeC6ed2714B6a0F9c803D4DEC172E', '0xF90D947Bf2997Be92E6cCB99d703f5f25831A7a2', '0x3622BadA99B27dBFe535853e5741364EEC6E1301', '0x508148CE48b695dC03ab8Afc3D61909f51AA7fe5', '0x889557C0caB2CD6f013CBAC9f95A41aDe3b1c1f1', '0xDb8785C60590012bFe3bB745B0A80d0A24504Ea2', '0x20A05c1Dd33ACdbF032004f96f4b245c7C96E7c7', '0x0af0dA6c41a5e53d5b6464750F638Af7561D95f0', '0xb9e78eB05591B472655f79FF6611933D562e1b82', '0x62BFCA846eF86eBdfF8a8d4fc3a9732232413411', '0x04b606A6168F3bBB06dd1E7cFe9b4fE595D8a7D7', '0x94B3F35A7a3A24d791504f45bF2E137Fa7A5486e', '0x72b10bc8188907431157849888Ca95143b889bC6', '0x6Fd97249C09FA6CA6dbA887BE4ca6123FedE2097', '0x162428775A4C6c513FF8722B91D1aF45a9Caff41', '0x21d4B5aD9aDB6FBFe7Ce93AAd570EA14dAc62F8F', '0xA20F15cc94b2E9F8770036E7250278F8A4bcBb85', '0x1FF2a53DD11d24fB5161632939D77cD7676ca1eC', '0x028990D32a8e48110Ea88Be2BDb2Fe5369C150b9', '0x7244D17F7B3eD84A56F7f28630Ba7Bb07635baaC', '0x9c81F882cF20D132C96F4Acd7F6A2c27EFD3309E', '0x7655B0BadBeFC5a450346D2B5D70762132F81E04', '0xB8cE310E46B13829C5c542A3cFa89f46E450f8Ae', '0x8ccA4b977347790D5F7319DaDf81DFA3091668c2', '0x9C19B04669860DC557741e743bc07eEA5d8fFF69', '0xe06B7D0eaD20f4f76a61506f528bFB71877EecC9', '0xf4cb3f94D79BAEc15087f6Aabf5d1375FFA25B9F', '0xE9c69E1F950b28a32524681827bec2641a5F693B', '0x8E29228162A0aCcFFd1E96904f8AA77ccb5e4335', '0xd5AEfbF0038A6CdA8615699bc6092D26D46c2B27', '0x80d3a88549c2db69E324B0c079B4Ac2ce54DBf94', '0xd3Dec84E51AAeEA96f42a83d302f563bF1BF4932', '0x9Ae4Ed3bF7a3a529Afbc126b4541c0D636D455f6', '0x45F8939B05227697B152D3c16A911b8906F589CA', '0xBC41F47c9DF84EA0C2C198e50Df4B3666ffE3bd4', '0x6D2373D56789558206b767a96342B63C295Daf3c', '0xb64b74a4866eE8e52689cd7d6d6f7b4ECd7ec411', '0xf29439C52819ff9e352eCeB89165f4Ad7226F21b', '0xb15657374327EB26B7FBAfdc7CC765130371d49B', '0x4574e46844BFb63D5659461Ee7Cf4167A0384a6A', '0x5a514eCD2220504B8d43dE281723f2847F5cE80f', '0x418223d772D1F38438Fb691bDe3d630b6AE114A9', '0x1d8A5212Ae7C196cafBf58ad5f75B7aC9bDeb0B9', '0x9c63fb7eFEE378027B91D4eFB7C1f62762e073C2', '0x59759e6544cce643b102BcE92bed99938C38FB51', '0xcb866b3e8bF16c792Ec451A7e7090a78F3A09dad', '0x83d58DC5ADd4534497F68D44Ec2c405243f95544', '0xC3960D2072c1C9d2136332137142d96CCBbA1445', '0xD697955B1715D11B0D10cE82396c00F28C1b2EBa', '0x79CcE91857d98b72E1Fb96AC6166A56E68c0c06B', '0x25Ce833289EF3A1464E82D4DBe4223aff739259B', '0x74057b78e9fBb5F096B6d20b43993D05C5922449', '0xAAc4Bd9c59C0E26e0d4f51f5B8d38d46AeF4ec7e', '0xB137d598a8D7A3B6291D10d4B1B5F41fD2Ccbc34', '0x42a82AAD780ED8654621e6ef2fB1f8DeD9A33F55', '0xEbF31E95D9709ACFA18048B5686F9576aBA6D63E', '0xaE16202c161D22Db810D0a5A0Aad233373432895', '0xb4c7Ef881e5feBbca6F5dbaB999425cC3b4BB2Bc', '0x5e92bCDeB896eFCb5a53751C3D55Eedc9f2bBfeE', '0xE6A3D583Db48Bd8AE51c53C6ca717d7dde4c7f75', '0xFaFf5C7DC62a279909b25Eddd9f40634Dac9140C', '0xcb804B9ceB413C3940134B1e2a022402F3b35d50', '0x363C45a9C4650E73FfC79f1e09cbAB07ADF33C7f', '0x150a2704F761bfE5ABa3fd57892258AcAf3d2860', '0x3c6e9be59D3B071d17a32790624c3e42B7C464c7', '0xAee203A6D904BFb6707223990bB268248eF972AE', '0x17455b6CE4CdF9054E3B3BD6CF7658Dac56B3043', '0x54bF2D4A393aBC35BEb10F4Cf4663b3A27092268', '0x5e9a063dbC650944bDc824bD1c3B3196a5f1F582', '0x6513c4521413788749Db03C3770FD8d37847e3EC', '0x7058bCD089203bE4Dce6e47337ADF69bFc6B42b9', '0x36309A61594F804fc9d3bABbB4beC064911Ee06F', '0x0470CCBD8Ea7D2C233dff3ffEF012984DE883E98', '0x227F2eE0f16f11b62e9e36849236C55618FCbA8a', '0xD2Db24B25307e1B03EF404E4b793d8f9EF2c4316', '0xe4aE86485Bb48f22037AaFaadf7E62f821Bdd7a2', '0x65F946a7f89ab5365f143213A526e82AeA68B660', '0x2CB3F1De33b0fE6c9F02d85c4C16dB69cB243C83', '0x4529D44f539fEaCE353ecDABd985b61CE5D48408', '0x980cAe4F2C7301D1D23FC709C379657C90D27D52', '0xD307C5686441Fe6677e9251d1C1C469e0785E331', '0x44CD20CeCd1e8466477f2f11aA207f2623EbfF17', '0xf5Da24cCa079DE78D678d47457bc6a443fD44097', '0xF6831feF8A943c0bAf023Ec5be4621dEDc5Df150', '0x30Bc40ddBd9A466B88Dc0ba6a1c014d3d26caaf7', '0x8FB1A19844A76C2Ddac7EEd8ddec8a55f2e75F7C', '0x15B4b2dc2123FF401a6406Ddd32CfaFFf6ac178C', '0x0aC35155Dd11C415F8022BBAC274c6b756e0E3Ef', '0x99515eE5c0E549B1622f785fb0A9Eff14Caaac16', '0x5F77fb1Ba409569Bd330C02D762d125716c6dE8d', '0xAD18a7D263Ad82C291030970Adca2e2cc9d89E67', '0xD4aEb8168DF9CCfcC32A7600d832a9eB25648dd2', '0xeBE9403259ae1B7Ad53eaBb0bD9b0a12E66B1870', '0xf8cE91853C0B3756F2b9e79f4f0aAA034ca70643', '0x98809767970397b90d8DfCf3E186B599999319Da', '0xd51a47E2c1e105bB2d2B658766BAE5eBf86fC8C4', '0x8139Ba933d84D73Ad4BE4A75853265c4fff01ce3', '0x7d7b0BE9ee2ad8967Bf2454ec4998Ee02824fa3b', '0x2f4ECDae84F234EF7cE4e0C24604E8FE0BfDB9b8', '0x98dB9047E80260B407ffBc67543f9A010ef0fC6A', '0x213b57ac2Cbbf92FfD13b580838879FCB29F35b9', '0x857C7803DE6Fc5e1f3FB0C5e13CF026E3976E590', '0x73619C511d753e53753cA549D695eB0993D84726', '0xdEe1645558e3B8F8f20e186Acd5e8a7699127F30', '0x0C3E18f66d976799910253df76DaF867e70dcA4a', '0x8826979607bBb47328a5F8c5696FEA1E4249C671', '0x059A62926aB1DF24A6FffF082CCef1D5C6A3BC7e', '0x728325A626Ef65B5EcFF44310C6808B3736C686C', '0x34EF8b7D2EC51A62cfba2ac9f11f9feD29FA3Fed', '0x69689cdf0455beC07aC5FEaa4180E30A5f7a8d9b', '0x51a941d3C8F5D761dba43A7621F8eEBBcbE7Dd3B', '0x3a07803DAc02d9BBa6636129639902C1653141eE', '0x2a64f5825E434D7517e8ECeaf9162BF6e0C5AF6B', '0x5950a8a5eA5F071ac826Ff5265e9190f754c73e3', '0x6EAA3825ed251C48b33011F260bCA92AfF24aeAC', '0x3e0767EBB315460B02d438e9fA52111C85D74434', '0x3617dAb70DF912856829C08A54F6A7AaDd5d1a43', '0x6292d961B8B084C22ff2F28dCb223668b967a576', '0x2D17698b21663a928242412c2734A8FC536F95e6', '0x4dE3Df9E40de01AdB4B33a4D750aDbae867C25E2', '0x5C799fb67abF48Cb534a7A68F05EE896a5c3800B', '0xa582F6B0085E0B35E36C8689127DAf970f08F63F', '0xb6f12C68542A3358abFaC79E44dF380c1e03b82c', '0x01da76b7D1EC4Ba99E27f8E4acdb15b79F5eEbEA', '0x13dC9Ceb6598db3c2FfB9ea9E94569893Ee1E1db', '0xe6A4ECFF9f9179b7bbB910c8A3d0Bfd5de55d3AD', '0xfC6558d4Ec528dc6Be1cd49729974942f7Cf4dde', '0xbF45F4280Cfbe7C2D2515A7D984B8c71c15E82B7', '0x17235F077f0D004E91f5a9196737895edD246B2c', '0x6546eaA75455f10f4B4f3E967Bf64C0c979Ce6fe', '0x618f8De3413e93CC631a69deA9FdBb49527aF37e', '0xB40A23904B697cA776aFd518bea3361F17e4Bb71', '0x351c11a5C538b53404Cf952a3ED544a86E8Af28B', '0xCa39A956c4A2D03380E60Bf7143B26B905A1DBaf', '0x91A96E0f7705a206B782a7d80DC92e0f7e53d927', '0xF534e9531231f8D70d09C97b1e6D8d475FC6cAED', '0x5ff00d3836c515F3363c00fEd1Fc39be345C3D82', '0xA58AFFD719561f52625963d8774b0c2FBAE071f2', '0x85C5c26DC2aF5546341Fc1988B9d178148b4838B', '0xF9E1D0F54f557a183BD949d7664eA7C8aaAA8fd7', '0x2c20E7995fca71Dda024450D6DE9103af3Aa9033', '0x16466faA872E7Ab4815Da0eBdF12D7b188872A60', '0xa78d62Ab83Ad81b005e34457f6ec3367Cd287d81', '0x00E71F15A5cE671a40CD06fa734Fa51436C2A0Bf', '0xA1C48d9400420EA49E82C0b7f7EA9cD673ADDc6B', '0x0eBc5a3a74245588E5C599be1036b7D98041F0e6', '0x69DEA231D61d47c974EafF7878aE1e1f0D292235', '0x648Bc2B0f68bE949f93Af9A04A586199eaEd4f37', '0x5BBbf0418b56D781ff94287df5DbA24644447154', '0xB5Adb233F28c86CEf693451b67E1F2d41da97d21', '0xe4f62AE333713e8F782BD83F9FB6867c48d092c8', '0xC015260F3D8F13590A43d92e189fc31252574e07', '0x7f9608ccBB245027fC4f3393f8b9e7Bf38C46C50', '0x11C9e9d921C30D8441131d543DF2dB72a9c7b2B2', '0x3115b83aF820875cc1128F987eDa32150f056d71', '0x3c4c9B867D2FC758c5562D70DcF3bDa94Fb13F4E', '0xB5Eb3e246D26D8DB12c5740dA5f2270cF5a6115b', '0x97DA9Af6345fD337BfB3ceAa0A46D03239fA304F'] + +import os +if os.path.isfile(result_dir): + print('Previous file exists.') + with open(result_dir, 'r') as f: + lines = f.readlines() + if(len(lines) >= 1): + print('last line:',lines[-1]) + number = int(lines[-1].split()[0]) + +else: + print('No previous file.') + number = 0 + + + +for idx in range(max(startBlock, number), endBlock + 1, ratio): + block = web3.eth.getBlock(idx) + transactions = block['transactions'] + print('block number:', idx) + for txHash in transactions: + tx = web3.eth.getTransaction(txHash) + receipt = web3.eth.getTransactionReceipt(txHash) + if tx['to'] in addr_lst: + result = '{} {} {} {} {} {} {} \n'.format(idx, txHash.hex(), tx['from'], tx['to'], tx['gasPrice'],receipt['gasUsed'], tx['input']) + print(result) + with open(result_dir,'a') as f: + f.write(result) + diff --git a/etherdelta/scripts/find_succ_txs.py b/etherdelta/scripts/find_succ_txs.py new file mode 100644 index 0000000..de476ae --- /dev/null +++ b/etherdelta/scripts/find_succ_txs.py @@ -0,0 +1,71 @@ +import argparse +from _pysha3 import keccak_256 +from web3 import Web3, HTTPProvider +import json + +web3 = Web3(HTTPProvider('http://localhost:8549')) +#web3 = Web3(HTTPProvider('https://mainnet.infura.io/Ky03pelFIxoZdAUsr82w')) + +etherDeltaAddress = '0x8d12A197cB00D4747a1fe03395095ce2A5CC6819' +etherAddress = '0000000000000000000000000000000000000000000000000000000000000000' + +tradeAPI = '0x' + \ + keccak_256( + b'Trade(address,uint256,address,uint256,address,address)' + ).hexdigest() + +parser = argparse.ArgumentParser(description='EtherDelta Arbitrage Bot.') +parser.add_argument('--st',dest='st' ,type=int, action='store', default='5000000') +parser.add_argument('--len',dest='len' ,type=int, action='store', default='100') +parser.add_argument('--r',dest='r' ,type=int, action='store', default='20') +args = parser.parse_args() + +startBlock = args.st +endBlock = args.st + args.len +ratio = args.r +result_dir = '../results/succ_txs-{}-{}-{}.txt'.format(startBlock,endBlock,ratio) + + +import os +if os.path.isfile(result_dir): + print('Previous file exists.') + with open(result_dir, 'r') as f: + lines = f.readlines() + if(len(lines) >= 1): + print('last line:',lines[-1]) + number = int(lines[-1].split()[0]) + +else: + print('No previous file.') + number = 0 + + + +for idx in range(max(startBlock, number), endBlock + 1, ratio): + block = web3.eth.getBlock(idx) + transactions = block['transactions'] + print('block number:', idx) + for txHash in transactions: + tx = web3.eth.getTransaction(txHash) + receipt = web3.eth.getTransactionReceipt(txHash) + token_pair_list = [] + for log in receipt['logs']: + if 'topics' in log and len(log['topics']): + if log['topics'][0].hex() == tradeAPI: + token_pair_list.append((log['data'][24 + 2: 64 + 2],log['data'][24 + 128 + 2: 64 + 128+ 2])) + + num = len(token_pair_list) + tag = None + if num == 2 and token_pair_list[0][0] == token_pair_list[1][1] and token_pair_list[1][0] == token_pair_list[0][1]: + tag = 'Arbitrage' + elif num == 1: + tag = 'Trade' + elif num: + tag = 'Unknown' + if tag is not None: + result = "{} {} {} {} {} {}\n".format(idx, txHash.hex(), tag, tx['from'], tx['to'], tx['input']) + print(result) + with open(result_dir,'a') as f: + f.write(result) + + diff --git a/etherdelta/scripts/run_find_all_txs.sh b/etherdelta/scripts/run_find_all_txs.sh new file mode 100644 index 0000000..6c1f3fe --- /dev/null +++ b/etherdelta/scripts/run_find_all_txs.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +onexit() { + kill -TERM -0 + wait +} +trap onexit INT + +set -x + +for (( i=3900000; i<5550000; i+=10000)) +do + python3 find_all_txs.py --st $i --len 10000 --r 1 & + +done + +wait + +#python3 find_succ_txs.py --st 3900000 --len 100000 --r 20 diff --git a/etherdelta/scripts/run_find_succ_txs.sh b/etherdelta/scripts/run_find_succ_txs.sh new file mode 100644 index 0000000..3f15fe3 --- /dev/null +++ b/etherdelta/scripts/run_find_succ_txs.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +onexit() { + kill -TERM -0 + wait +} +trap onexit INT + +set -x + +for (( i=3900000; i<=5550000; i+=50000)) +do + python3 find_succ_txs.py --st $i --len 50000 --r 1 & +# cmd="python3 find_succ_txs.py --st $i --len 100000 --r 20 &" +# echo "running $cmd" +# eval $cmd +done + +wait + +#python3 find_succ_txs.py --st 3900000 --len 100000 --r 20 diff --git a/exchanges.py b/exchanges.py new file mode 100644 index 0000000..424d731 --- /dev/null +++ b/exchanges.py @@ -0,0 +1,230 @@ +import json +from persistence import persist_to_file +import web3 +from web3 import Web3 +from eth_abi import decode_abi + +ERC20_ABI = json.loads('[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]') # noqa: 501 +UNISWAP_ABI = json.loads('[{"name": "TokenPurchase", "inputs": [{"type": "address", "name": "buyer", "indexed": true}, {"type": "uint256", "name": "eth_sold", "indexed": true}, {"type": "uint256", "name": "tokens_bought", "indexed": true}], "anonymous": false, "type": "event"}, {"name": "EthPurchase", "inputs": [{"type": "address", "name": "buyer", "indexed": true}, {"type": "uint256", "name": "tokens_sold", "indexed": true}, {"type": "uint256", "name": "eth_bought", "indexed": true}], "anonymous": false, "type": "event"}, {"name": "AddLiquidity", "inputs": [{"type": "address", "name": "provider", "indexed": true}, {"type": "uint256", "name": "eth_amount", "indexed": true}, {"type": "uint256", "name": "token_amount", "indexed": true}], "anonymous": false, "type": "event"}, {"name": "RemoveLiquidity", "inputs": [{"type": "address", "name": "provider", "indexed": true}, {"type": "uint256", "name": "eth_amount", "indexed": true}, {"type": "uint256", "name": "token_amount", "indexed": true}], "anonymous": false, "type": "event"}, {"name": "Transfer", "inputs": [{"type": "address", "name": "_from", "indexed": true}, {"type": "address", "name": "_to", "indexed": true}, {"type": "uint256", "name": "_value", "indexed": false}], "anonymous": false, "type": "event"}, {"name": "Approval", "inputs": [{"type": "address", "name": "_owner", "indexed": true}, {"type": "address", "name": "_spender", "indexed": true}, {"type": "uint256", "name": "_value", "indexed": false}], "anonymous": false, "type": "event"}, {"name": "setup", "outputs": [], "inputs": [{"type": "address", "name": "token_addr"}], "constant": false, "payable": false, "type": "function", "gas": 175875}, {"name": "addLiquidity", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "min_liquidity"}, {"type": "uint256", "name": "max_tokens"}, {"type": "uint256", "name": "deadline"}], "constant": false, "payable": true, "type": "function", "gas": 82616}, {"name": "removeLiquidity", "outputs": [{"type": "uint256", "name": "out"}, {"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "amount"}, {"type": "uint256", "name": "min_eth"}, {"type": "uint256", "name": "min_tokens"}, {"type": "uint256", "name": "deadline"}], "constant": false, "payable": false, "type": "function", "gas": 116814}, {"name": "__default__", "outputs": [], "inputs": [], "constant": false, "payable": true, "type": "function"}, {"name": "ethToTokenSwapInput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "min_tokens"}, {"type": "uint256", "name": "deadline"}], "constant": false, "payable": true, "type": "function", "gas": 12757}, {"name": "ethToTokenTransferInput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "min_tokens"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "recipient"}], "constant": false, "payable": true, "type": "function", "gas": 12965}, {"name": "ethToTokenSwapOutput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_bought"}, {"type": "uint256", "name": "deadline"}], "constant": false, "payable": true, "type": "function", "gas": 50463}, {"name": "ethToTokenTransferOutput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_bought"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "recipient"}], "constant": false, "payable": true, "type": "function", "gas": 50671}, {"name": "tokenToEthSwapInput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_sold"}, {"type": "uint256", "name": "min_eth"}, {"type": "uint256", "name": "deadline"}], "constant": false, "payable": false, "type": "function", "gas": 47503}, {"name": "tokenToEthTransferInput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_sold"}, {"type": "uint256", "name": "min_eth"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "recipient"}], "constant": false, "payable": false, "type": "function", "gas": 47712}, {"name": "tokenToEthSwapOutput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "eth_bought"}, {"type": "uint256", "name": "max_tokens"}, {"type": "uint256", "name": "deadline"}], "constant": false, "payable": false, "type": "function", "gas": 50175}, {"name": "tokenToEthTransferOutput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "eth_bought"}, {"type": "uint256", "name": "max_tokens"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "recipient"}], "constant": false, "payable": false, "type": "function", "gas": 50384}, {"name": "tokenToTokenSwapInput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_sold"}, {"type": "uint256", "name": "min_tokens_bought"}, {"type": "uint256", "name": "min_eth_bought"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "token_addr"}], "constant": false, "payable": false, "type": "function", "gas": 51007}, {"name": "tokenToTokenTransferInput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_sold"}, {"type": "uint256", "name": "min_tokens_bought"}, {"type": "uint256", "name": "min_eth_bought"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "recipient"}, {"type": "address", "name": "token_addr"}], "constant": false, "payable": false, "type": "function", "gas": 51098}, {"name": "tokenToTokenSwapOutput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_bought"}, {"type": "uint256", "name": "max_tokens_sold"}, {"type": "uint256", "name": "max_eth_sold"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "token_addr"}], "constant": false, "payable": false, "type": "function", "gas": 54928}, {"name": "tokenToTokenTransferOutput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_bought"}, {"type": "uint256", "name": "max_tokens_sold"}, {"type": "uint256", "name": "max_eth_sold"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "recipient"}, {"type": "address", "name": "token_addr"}], "constant": false, "payable": false, "type": "function", "gas": 55019}, {"name": "tokenToExchangeSwapInput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_sold"}, {"type": "uint256", "name": "min_tokens_bought"}, {"type": "uint256", "name": "min_eth_bought"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "exchange_addr"}], "constant": false, "payable": false, "type": "function", "gas": 49342}, {"name": "tokenToExchangeTransferInput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_sold"}, {"type": "uint256", "name": "min_tokens_bought"}, {"type": "uint256", "name": "min_eth_bought"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "recipient"}, {"type": "address", "name": "exchange_addr"}], "constant": false, "payable": false, "type": "function", "gas": 49532}, {"name": "tokenToExchangeSwapOutput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_bought"}, {"type": "uint256", "name": "max_tokens_sold"}, {"type": "uint256", "name": "max_eth_sold"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "exchange_addr"}], "constant": false, "payable": false, "type": "function", "gas": 53233}, {"name": "tokenToExchangeTransferOutput", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_bought"}, {"type": "uint256", "name": "max_tokens_sold"}, {"type": "uint256", "name": "max_eth_sold"}, {"type": "uint256", "name": "deadline"}, {"type": "address", "name": "recipient"}, {"type": "address", "name": "exchange_addr"}], "constant": false, "payable": false, "type": "function", "gas": 53423}, {"name": "getEthToTokenInputPrice", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "eth_sold"}], "constant": true, "payable": false, "type": "function", "gas": 5542}, {"name": "getEthToTokenOutputPrice", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_bought"}], "constant": true, "payable": false, "type": "function", "gas": 6872}, {"name": "getTokenToEthInputPrice", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "tokens_sold"}], "constant": true, "payable": false, "type": "function", "gas": 5637}, {"name": "getTokenToEthOutputPrice", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "uint256", "name": "eth_bought"}], "constant": true, "payable": false, "type": "function", "gas": 6897}, {"name": "tokenAddress", "outputs": [{"type": "address", "name": "out"}], "inputs": [], "constant": true, "payable": false, "type": "function", "gas": 1413}, {"name": "factoryAddress", "outputs": [{"type": "address", "name": "out"}], "inputs": [], "constant": true, "payable": false, "type": "function", "gas": 1443}, {"name": "balanceOf", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "address", "name": "_owner"}], "constant": true, "payable": false, "type": "function", "gas": 1645}, {"name": "transfer", "outputs": [{"type": "bool", "name": "out"}], "inputs": [{"type": "address", "name": "_to"}, {"type": "uint256", "name": "_value"}], "constant": false, "payable": false, "type": "function", "gas": 75034}, {"name": "transferFrom", "outputs": [{"type": "bool", "name": "out"}], "inputs": [{"type": "address", "name": "_from"}, {"type": "address", "name": "_to"}, {"type": "uint256", "name": "_value"}], "constant": false, "payable": false, "type": "function", "gas": 110907}, {"name": "approve", "outputs": [{"type": "bool", "name": "out"}], "inputs": [{"type": "address", "name": "_spender"}, {"type": "uint256", "name": "_value"}], "constant": false, "payable": false, "type": "function", "gas": 38769}, {"name": "allowance", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [{"type": "address", "name": "_owner"}, {"type": "address", "name": "_spender"}], "constant": true, "payable": false, "type": "function", "gas": 1925}, {"name": "name", "outputs": [{"type": "bytes32", "name": "out"}], "inputs": [], "constant": true, "payable": false, "type": "function", "gas": 1623}, {"name": "symbol", "outputs": [{"type": "bytes32", "name": "out"}], "inputs": [], "constant": true, "payable": false, "type": "function", "gas": 1653}, {"name": "decimals", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [], "constant": true, "payable": false, "type": "function", "gas": 1683}, {"name": "totalSupply", "outputs": [{"type": "uint256", "name": "out"}], "inputs": [], "constant": true, "payable": false, "type": "function", "gas": 1713}]') + +my_provider = Web3.HTTPProvider('https://mainnet.infura.io/v3/c534d76d934f40498f6d6113a46c6ab3') +w3 = Web3(my_provider) + + +"""1 IDEX 57849 55.5056% 0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208 +2 DEx.top 11628 11.1570% 0x7600977eb9effa627d6bd0da2e5be35e11566341 +3 Ether Delta 6596 6.3288% 0x8d12a197cb00d4747a1fe03395095ce2a5cc6819 +4 Bancor Network 6569 6.3029% ??? +5 DDEX 5146 4.9375% 0x12459c951127e0c374ff9105dda097662a027093 +6 Token Store 3750 3.5981% 0x1ce7ae555139c5ef5a57cc8d814a867ee6ee33d8 +7 Star Bit 3448 3.3083% 0x12459c951127e0c374ff9105dda097662a027093 +8 Kyber Network 2550 2.4467% ????? +9 Joyso 2205 2.1157% 0x04f062809b244e37e7fdc21d9409469c989c2342 +10 Oasis Dex 1865 1.7894% 0x12459c951127e0c374ff9105dda097662a027093 +11 Radar Relay 1303 1.2502% 0x12459c951127e0c374ff9105dda097662a027093 +12 Paradex 820 0.7868% 0x12459c951127e0c374ff9105dda097662a027093 +13 Airswap 243 0.2332% 0x8fd3121013a07c57f0d69646e86e7a4880b467b7 +14 TokenJar 106 0.1017% 0x12459c951127e0c374ff9105dda097662a027093 +15 The Ocean 91 0.0873% 0x12459c951127e0c374ff9105dda097662a027093 +16 Erc dEX 25 0.0240% 0x12459c951127e0c374ff9105dda097662a027093 +17 Enclaves 22 0.0211% 0xed06d46ffb309128c4458a270c99c824dc127f5d +18 Shark Relay 6 0.0058% 0x12459c951127e0c374ff9105dda097662a027093 +19 Bamboo Relay 0 0.0000% +20 IDT Exchange 0 0.0000% +21 Tokenlon 0 0.0000% + +Source: dexwatch Thus Sep 20 3:48PM EST +""" + + +dex_list = ["0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208", # IDEX + "0x7600977eb9effa627d6bd0da2e5be35e11566341", # DEx.top + "0x8d12a197cb00d4747a1fe03395095ce2a5cc6819", # Etherdelta (done) + "0x12459c951127e0c374ff9105dda097662a027093", # 0x v1 (done) + "0x4f833a24e1f95d70f028921e27040ca56e09ab0b", # 0x v2 (done) + "0x1ce7ae555139c5ef5a57cc8d814a867ee6ee33d8", # Token Store (done) + "0x04f062809b244e37e7fdc21d9409469c989c2342", # Joyso + "0x8fd3121013a07c57f0d69646e86e7a4880b467b7", # Airswap + "0xed06d46ffb309128c4458a270c99c824dc127f5d", # Enclaves + ] + + +bancor_relayers = open('data/bancor_relayers').read().strip().splitlines() +kyber_relayers = open('data/kyber_relayers').read().strip().splitlines() +uniswap_relayers = open('data/uniswap_relayers').read().strip().splitlines() + +dex_list = dex_list + bancor_relayers + kyber_relayers + uniswap_relayers + +def parse_address(raw_hex): + """ Extract address from lowest hex bits, ignoring junk. """ + return raw_hex[-40:] + +def parse_amount(raw_hex): + return int(raw_hex, 16) + +@persist_to_file('uniswap.dat') +def get_uniswap_token(address): + token_addr = address + erc20 = w3.eth.contract(address=Web3.toChecksumAddress('0x' + address), abi=UNISWAP_ABI) + try: + token_addr = erc20.functions.tokenAddress().call() + except web3.exceptions.BadFunctionCallOutput: # todo handle chainsync errors? + pass + return token_addr.lower().replace("0x", "") + +@persist_to_file('decimals.dat') +def get_decimals_for(address): + if int(address, 16) == 0 or int(address, 16) == 1364068194842176056990105843868530818345537040110: + return 18 + erc20 = w3.eth.contract(address=Web3.toChecksumAddress('0x' + address), abi=ERC20_ABI) + try: + decimals = int(erc20.functions.decimals().call()) + except web3.exceptions.BadFunctionCallOutput: # todo handle chainsync errors? + return 0 + return decimals + +@persist_to_file('labels.dat') +def get_node_label_for(address): + if int(address, 16) == 0 or int(address, 16) == 1364068194842176056990105843868530818345537040110 or address.lower() == "c0829421c1d260bd3cb3e0f06cfe2d52db2ce315" or address.lower() == "c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" or address.lower() == "2956356cd2a2bf3202f771f50d3d14a367b48070": + return ("ETH", "ETH") + erc20 = w3.eth.contract(address=Web3.toChecksumAddress('0x' + address), abi=ERC20_ABI) + name = "Unknown" + symbol = "Unknown" + try: + name = erc20.functions.name().call() + except OverflowError: + pass + except web3.exceptions.BadFunctionCallOutput: + pass + try: + symbol = erc20.functions.symbol().call() + except OverflowError: + pass + except web3.exceptions.BadFunctionCallOutput: + pass + return (symbol, "%s (%s)\n0x%s" % (name, symbol, address)) + +def parse_bancor(topics, data, address): + tokenget_addr = parse_address(topics[1]) + tokenget,tokenget_label = get_node_label_for(tokenget_addr) + amountget = (parse_amount(data[0:64]) / (10 ** get_decimals_for(tokenget_addr))) + tokengive_addr = parse_address(topics[2]) + tokengive,tokengive_label = get_node_label_for(tokengive_addr) + amountgive = (parse_amount(data[64:128]) / (10 ** get_decimals_for(tokengive_addr))) + assert(len(data) == 192) + return (tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive) + +def parse_etherdelta_clone(topics, data, address, data_length): + tokenget_addr = parse_address(data[0:64]) + tokenget,tokenget_label = get_node_label_for(tokenget_addr) + amountget = (parse_amount(data[64:128]) / (10 ** get_decimals_for(tokenget_addr))) + tokengive_addr = parse_address(data[128:192]) + tokengive,tokengive_label = get_node_label_for(tokengive_addr) + amountgive = (parse_amount(data[192:256]) / (10 ** get_decimals_for(tokengive_addr))) + assert(len(data) == data_length) + return (tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive) + +parse_etherdelta = lambda topics, data, address : parse_etherdelta_clone(topics, data, address, 384) +parse_tokenstore = lambda topics, data, address : parse_etherdelta_clone(topics, data, address, 448) + +def parse_0x(topics, data, address): + tokenget_addr = parse_address(data[128:192]) + tokenget,tokenget_label = get_node_label_for(tokenget_addr) + amountget = (parse_amount(data[256:320]) / (10 ** get_decimals_for(tokenget_addr))) + tokengive_addr = parse_address(data[64:128]) + tokengive,tokengive_label = get_node_label_for(tokengive_addr) + amountgive = (parse_amount(data[192:256]) / (10 ** get_decimals_for(tokengive_addr))) + assert(len(data) == 512) + return (tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive) + +def parse_0x_v2(topics, data, address): + abi_data = decode_abi(['address', 'address', 'uint256', 'uint256', 'uint256', 'uint256', 'bytes', 'bytes'], bytes(Web3.toBytes(hexstr=data))) + tokenget_addr = parse_address(Web3.toHex(abi_data[-1])[2:]) + tokenget,tokenget_label = get_node_label_for(tokenget_addr) + amountget = (parse_amount(data[192:256]) / (10 ** get_decimals_for(tokenget_addr))) + tokengive_addr = parse_address(Web3.toHex(abi_data[-2])[2:]) + tokengive,tokengive_label = get_node_label_for(tokengive_addr) + amountgive = (parse_amount(data[128:192]) / (10 ** get_decimals_for(tokengive_addr))) + assert(len(data) >= 896) + return (tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive) + +def parse_kyber(topics, data, address): + abi_data = decode_abi(['address', 'address', 'uint256', 'uint256', 'address', 'uint256', 'address', 'address', 'bytes'], bytes(Web3.toBytes(hexstr=data))) + tokenget_addr = parse_address(abi_data[0]) + tokenget,tokenget_label = get_node_label_for(tokenget_addr) + amountget = (abi_data[2] / (10 ** get_decimals_for(tokenget_addr))) + tokengive_addr = parse_address(abi_data[1]) + tokengive,tokengive_label = get_node_label_for(tokengive_addr) + amountgive = (abi_data[3] / (10 ** get_decimals_for(tokengive_addr))) + assert(len(data) >= 512) + return (tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive) + +def parse_uniswap_tokenpurchase(topics, data, address): + abi_data = decode_abi(['uint256', 'address', 'uint256', 'uint256'], Web3.toBytes(hexstr="".join([x.replace("0x", "") for x in topics]))) + tokenget_addr = get_uniswap_token(address[2:]) + tokenget,tokenget_label = get_node_label_for(tokenget_addr) + amountget = (abi_data[-1] / (10 ** get_decimals_for(tokenget_addr))) + tokengive_addr = "0"*40 # (eth given by definition) + tokengive,tokengive_label = get_node_label_for(tokengive_addr) + amountgive = (abi_data[-2] / (10 ** get_decimals_for(tokengive_addr))) + assert(len(topics) == 4) + return (tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive) + +def parse_uniswap_ethpurchase(topics, data, address): + abi_data = decode_abi(['uint256', 'address', 'uint256', 'uint256'], Web3.toBytes(hexstr="".join([x.replace("0x", "") for x in topics]))) + tokenget_addr = "0"*40 # (eth gotten by definition) + tokenget,tokenget_label = get_node_label_for(tokenget_addr) + amountget = (abi_data[-1] / (10 ** get_decimals_for(tokenget_addr))) + tokengive_addr = get_uniswap_token(address[2:]) + tokengive,tokengive_label = get_node_label_for(tokengive_addr) + amountgive = (abi_data[-2] / (10 ** get_decimals_for(tokengive_addr))) + assert(len(topics) == 4) + return (tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive) + + +def get_trade_data_from_log_item(topics, data, address): + exchange = None + parser = None + if address == '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819': # etherdelta + # TODO handle clones + if topics[0] == '0x6effdda786735d5033bfad5f53e5131abcced9e52be6c507b62d639685fbed6d': # trade log event + exchange = "Etherdelta" + parser = parse_etherdelta + elif address == '0x1ce7ae555139c5ef5a57cc8d814a867ee6ee33d8': # Tokenstore + if topics[0] == '0x3314c351c2a2a45771640a1442b843167a4da29bd543612311c031bbfb4ffa98': + exchange = "Tokenstore" + parser = parse_tokenstore + elif address == '0x12459c951127e0c374ff9105dda097662a027093': # 0x v1 + if topics[0] == '0x0d0b9391970d9a25552f37d436d2aae2925e2bfe1b2a923754bada030c498cb3': + exchange = "0x v1" + parser = parse_0x + elif address == '0x4f833a24e1f95d70f028921e27040ca56e09ab0b': # 0x v2 + if topics[0] == '0x0bcc4c97732e47d9946f229edb95f5b6323f601300e4690de719993f3c371129': + exchange = "0x v2" + parser = parse_0x_v2 + elif address in bancor_relayers: + if topics[0] == '0x276856b36cbc45526a0ba64f44611557a2a8b68662c5388e9fe6d72e86e1c8cb': + exchange = "Bancor" + parser = parse_bancor + elif address in kyber_relayers: + if topics[0] == '0xd30ca399cb43507ecec6a629a35cf45eb98cda550c27696dcb0d8c4a3873ce6c': + exchange = "Kyber" + parser = parse_kyber + elif address in uniswap_relayers: + if topics[0] == '0x7f4091b46c33e918a0f3aa42307641d17bb67029427a5369e54b353984238705': + exchange = "Uniswap" + parser = parse_uniswap_ethpurchase + if topics[0] == '0xcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f' and len(topics) == 4: # (ZRXcoin has same event; eg https://etherscan.io/tx/0x3d774851984b665b6db16d8bbf7a138520c76db923599fc8929b29edd384db7b#eventlog) + exchange = "Uniswap" + parser = parse_uniswap_tokenpurchase + else: + # parsing failed + return None + + if not parser: + # no logs to parse + return [] + + # 1 log generated; return it + (tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive) = parser(topics, data, address) + return [(tokenget_addr, tokenget_label, tokenget, amountget, tokengive_addr, tokengive_label, tokengive, amountgive, exchange)] diff --git a/gastoken.py b/gastoken.py new file mode 100644 index 0000000..4820edc --- /dev/null +++ b/gastoken.py @@ -0,0 +1,26 @@ +from web3 import Web3 +import os, binascii + +my_provider = Web3.IPCProvider('/home/geth/parity_mainnet/jsonrpc.ipc') +w3 = Web3(my_provider) + + +def is_using_gastoken(hash): + while True: + try: + trace = w3.parity.traceReplayTransaction(hash,mode=["vmTrace"]) + break + except Exception as e: + print(e) + zerostores = 0 + if trace['vmTrace'] is None or trace['vmTrace']['ops'] is None: + return -1 + for op in trace['vmTrace']['ops']: + if op['ex'] is None or op['ex']['store'] is None: + continue + storeop = op['ex']['store'] + if storeop is not None and storeop['val'] == '0x0': + zerostores += 1 + return (zerostores) + + diff --git a/generate_graphs.py b/generate_graphs.py new file mode 100644 index 0000000..4f92171 --- /dev/null +++ b/generate_graphs.py @@ -0,0 +1,389 @@ +from sqlite_adapter import query_db +import json +from datetime import datetime +import numpy as np + +PRINCETON_TEMPLATE = open('graph_templates/princeton1.tex').read() +BREADTH_SCATTER_TEMPLATE = open('graph_templates/breadth_scatter.tex').read() +LINE_TEMPLATE = open('graph_templates/date_line.tex').read() + +COORDS_CONSTANT = "\\addplot+ coordinates {%coords%};" +HIST_COORDS = "\\addplot+[only marks, scatter,opacity=0.1,mark=*] coordinates {%coords%};" +buckets = {} + +def init_dict(d,k,v): + if not k in d: + d[k] = v + +def get_princeton_graph_tikz(desiredsize): + results = query_db("SELECT SUM(CAST(eth_profit as FLOAT)) as total_profit,mergedprofitabletxs.block_number as block_number,total_fees,substr(timestamp,0,11) as date FROM mergedprofitabletxs LEFT JOIN block_fees ON block_fees.block_number=mergedprofitabletxs.block_number WHERE all_positive='True' GROUP BY mergedprofitabletxs.block_number ORDER BY CAST(total_profit as FLOAT) DESC LIMIT %d;" % desiredsize) + labels = "" + profits = "" + fees = "" + rewards = "" + dates = "" + datespoints = "" + + for result in results: + label = result['block_number'] + date = result['date'] + date = date.split("-") + date = date[2] + "-" + date[1] + "-" + date[0][2:] + if date in dates: + date = date + " " # (dirty hack for repeated labels) + dates += date + ", " + datespoints += "("+ date+ ", 0) " + labels += label + ", " + profits += "(" + label + ", " + str(result['total_profit']) + ") " + fees += "("+ label+ ", "+ str(result['total_fees']) + ") " + blocknum = int(result['block_number']) + if blocknum < 4370000: + reward = 5 + elif blocknum < 7280000: + reward = 3 + else: + reward = 2 + rewards += "("+ label+ ", "+ str(reward) + ") " + + print(PRINCETON_TEMPLATE.replace("%labels%", labels).replace("%profits%", profits).replace("%fees%", fees).replace("%rewards%", rewards).replace("%dates%", dates).replace("%datespoints%", datespoints)) + + +def get_princeton_graph_tikz_2(skip_under=0): + block_nums = [] + results = query_db("SELECT SUM(CAST(eth_profit as FLOAT)) as eth_profit,total_fees,mergedprofitabletxs.block_number as block_number,total_fees FROM mergedprofitabletxs LEFT JOIN block_fees ON block_fees.block_number=mergedprofitabletxs.block_number WHERE all_positive='True' GROUP BY mergedprofitabletxs.block_number ORDER BY mergedprofitabletxs.block_number ASC;") + for result in results: + if int(result['block_number']) < skip_under: + continue + fees = float(result['total_fees']) + eth_revenue = float(result['eth_profit']) + block_nums.append(int(result['block_number'])) + ratio = eth_revenue/(eth_revenue + fees) + bucket = float("{0:.2f}".format(ratio)) + if ratio - bucket > .00000001: + print("adding") + bucket += .01 + bucket = round(bucket, 2) + bucket = str(bucket) + print(ratio,bucket) + if not bucket in buckets: + buckets[bucket] = 1 + else: + buckets[bucket] += 1 + + + numtotal = sum(buckets.values()) + print(buckets) + + for bucketlabel in sorted(buckets.keys(), key=float): + #print("(%s, %f)" % (bucketlabel, float(buckets[bucketlabel])/float(numtotal))) + print("(%s, %f)" % (bucketlabel, buckets[bucketlabel])) + print(numtotal, max(block_nums), min(block_nums)) + +def get_moving_average(coords, width): + coords = np.convolve(coords, np.ones((width,))/width, mode='same') + return coords + +def get_cumulative(coords): + newcoords = [] + runningtotal = 0 + for i in range(len(coords)): + runningtotal += coords[i] + newcoords.append(runningtotal) + return newcoords + +def calculate_top(valuesdict, num): + # return top num keys in valuesdict with highest mapped values + # used to find top *n* arbitrage bots, exchanges, etc + return sorted(valuesdict.keys(), key=lambda x : sum(valuesdict[x].values()), reverse=True)[:num] + +def get_breadth_graphs_tikz(graphs_to_generate, skip_until='2017-09-01'): + prices = {} + price_data = query_db("SELECT * FROM eth_data") + for price_datum in price_data: + prices[price_datum['date']] = price_datum['price(USD)'] + results = query_db("SELECT * FROM mergedprofitabletxs WHERE all_positive = 'True' AND CAST(eth_profit as FLOAT) > 0.0;") + eth_revenues = {} + usd_revenues = {} + usd_profits = {} + gas_ratios_pertx = {} + num_trades_pertx = {} + exchange_breakdowns_eth = {} + bot_breakdowns_usd = {} + bot_breakdowns_usd_profit = {} + pertx_ratios = open('reports/data/ratios.csv', 'w') + for result in results: + date = result['date'] + eth_revenue = float(result['eth_profit']) + gas_used = float(result['receipt_gas_used']) + eth_profit = eth_revenue - ((gas_used * float(result['gas_price'])) / (10 ** 18)) + usd_revenue = eth_revenue * float (prices.get(result['date'], 0)) + usd_profit = eth_profit * float (prices.get(result['date'], 0)) + pertx_ratios.write("%f\n" % (eth_profit/eth_revenue)) + + revenue_graph = json.loads(result['profit_graph']) + num_trades = len(revenue_graph) / 2 # revenue graph contains two edges per trade + init_dict(eth_revenues, date, 0) + init_dict(usd_revenues, date, 0) + init_dict(usd_profits, date, 0) + init_dict(gas_ratios_pertx, date, []) + init_dict(num_trades_pertx, date, []) + eth_revenues[date] += eth_revenue + usd_revenues[date] += usd_revenue + usd_profits[date] += usd_profit + gas_ratios_pertx[date].append(gas_used/num_trades) + num_trades_pertx[date].append(num_trades) + for edge in revenue_graph: + if edge[0][0] == "!": # ! is a special marker for exchange node + # each exchange will appear once with a special "!" label, in two edges in the revenue graph + # however, it will be the source of only one edge + exchange = edge[0][1:] + + if not exchange in exchange_breakdowns_eth: + exchange_breakdowns_eth[exchange] = {} + if not date in exchange_breakdowns_eth[exchange]: + exchange_breakdowns_eth[exchange][date] = 0 + exchange_breakdowns_eth[exchange][date] += ((1.0/num_trades) * eth_revenue) + bot = result['from_address'] + init_dict(bot_breakdowns_usd, bot, {}) + init_dict(bot_breakdowns_usd[bot], date, 0) + bot_breakdowns_usd[bot][date] += usd_revenue + init_dict(bot_breakdowns_usd_profit, bot, {}) + init_dict(bot_breakdowns_usd_profit[bot], date, 0) + bot_breakdowns_usd_profit[bot][date] += usd_profit + + + eth_revenue_coords = "" + usd_revenue_coords = "" + usd_profit_coords = "" + gas_usage_coords = "" + + xs = [] + eth_revenue_ys = [] + usd_revenue_ys = [] + usd_profit_ys = [] + sorted_dates = sorted(prices.keys()) + sorted_dates = sorted_dates[sorted_dates.index(sorted(eth_revenues.keys())[0]):sorted_dates.index(sorted(eth_revenues.keys())[-3])] # (prune last 3 days for potential data quality issues) + if skip_until is not None: + sorted_dates = sorted_dates[sorted_dates.index(skip_until):] # trim early non-representative data + for date in sorted_dates: + eth_revenue_coords += "(%s,%f) [%f] " % (date, eth_revenues.get(date, 0.0), sum(num_trades_pertx.get(date, [0]))) + usd_revenue_coords += "(%s,%f) [%f] " % (date, usd_revenues.get(date, 0.0), sum(num_trades_pertx.get(date, [0]))) + usd_profit_coords += "(%s,%f) " % (date, usd_profits.get(date, 0.0)) + gas_usage_coords += "(%s,%f) [%f] " % (date, np.mean(gas_ratios_pertx.get(date, [0.0])), np.mean(num_trades_pertx.get(date, [0]))) + xs.append(date) + eth_revenue_ys.append(float(eth_revenues.get(date, 0.0))) + usd_revenue_ys.append(float(usd_revenues.get(date, 0.0))) + usd_profit_ys.append(float(usd_profits.get(date, 0.0))) + + + ma_eth_coords = "" + ma_usd_coords = "" + ma_usd_profit_coords = "" + ma_eth_revenue=get_moving_average(eth_revenue_ys,14) + ma_usd_revenue=get_moving_average(usd_revenue_ys,14) + ma_usd_profit=get_moving_average(usd_profit_ys,14) + + cum_eth_graph_lines = "" + ma_botusd_graph_lines = "" + ma_botusd_profit_graph_lines = "" + price_coords = "" + cum_eth_coords = "" + cum_usd_coords = "" + cum_usd_profit_coords = "" + cumulative_eth_revenue=get_cumulative(eth_revenue_ys) + cumulative_usd_revenue=get_cumulative(usd_revenue_ys) + cumulative_usd_profit=get_cumulative(usd_profit_ys) + + for i in range(len(xs)): + ma_eth_coords += "(%s,%f)" % (xs[i], ma_eth_revenue[i]) + ma_usd_coords += "(%s,%f)" % (xs[i], ma_usd_revenue[i]) + ma_usd_profit_coords += "(%s,%f)" % (xs[i], ma_usd_profit[i]) + price_coords += "(%s,%f) " % (xs[i], float(prices[xs[i]])) + cum_eth_coords += "(%s,%f) " % (xs[i], cumulative_eth_revenue[i]) + cum_usd_coords += "(%s,%f) " % (xs[i], cumulative_usd_revenue[i]) + cum_usd_profit_coords += "(%s,%f) " % (xs[i], cumulative_usd_profit[i]) + cum_eth_graph_lines += COORDS_CONSTANT.replace("addplot+", "addplot+[black]").replace("%coords%", cum_eth_coords) + "\n" + ma_botusd_graph_lines += COORDS_CONSTANT.replace("addplot+", "addplot+[black]").replace("%coords%", ma_usd_coords) + "\n" + ma_botusd_profit_graph_lines += COORDS_CONSTANT.replace("addplot+", "addplot+[black]").replace("%coords%", ma_usd_profit_coords) + "\n" + + top_5_exchanges = calculate_top(exchange_breakdowns_eth, 6) + for exchange in top_5_exchanges: + exchange_coords = "" + exchange_revenues = [] + for i in range(len(xs)): + exchange_revenues.append(exchange_breakdowns_eth[exchange].get(xs[i], 0)) + cumulative_exchange_revenue = get_cumulative(exchange_revenues) + for i in range(len(xs)): + exchange_coords += "(%s,%f) " % (xs[i], cumulative_exchange_revenue[i]) + cum_eth_graph_lines += COORDS_CONSTANT.replace("%coords%", exchange_coords) + "\n" + + + top_bots = calculate_top(bot_breakdowns_usd, 10) + # todo consolidate this + above into method + for bot in top_bots: + bot_revenue_coords = "" + bot_revenues = [] + bot_profit_coords = "" + bot_profits = [] + for i in range(len(xs)): + bot_revenues.append(bot_breakdowns_usd[bot].get(xs[i], 0)) + bot_profits.append(bot_breakdowns_usd_profit[bot].get(xs[i], 0)) + bot_revenue_ma = get_moving_average(bot_revenues, 14) + bot_profit_ma = get_moving_average(bot_profits, 14) + for i in range(len(xs)): + bot_revenue_coords += "(%s,%f) " % (xs[i], bot_revenue_ma[i]) + bot_profit_coords += "(%s,%f) " % (xs[i], bot_profit_ma[i]) + ma_botusd_graph_lines += COORDS_CONSTANT.replace("%coords%", bot_revenue_coords) + "\n" + ma_botusd_profit_graph_lines += COORDS_CONSTANT.replace("%coords%", bot_profit_coords) + "\n" + + + if "pure_revenue_eth" in graphs_to_generate: + open('reports/pure_revenue_eth.tex', 'w').write(BREADTH_SCATTER_TEMPLATE.replace("%coords%", eth_revenue_coords).replace("%macoords%", ma_eth_coords).replace("%title%", "Pure Revenue Market Size (ETH)").replace("%ylabel%", "Daily Pure Revenue Captured (ETH)").replace("%cumcoords%", cum_eth_coords).replace("%extra%", "").replace("%max%", str(2*max(cumulative_eth_revenue))).replace("%colorbartitle%", "\\# Trades").replace("%extraaxisoptions%", " point meta max=1000,").replace("%extracolorbar%", "ytick={0,200,400,...,800}, extra y ticks={1000}, extra y tick labels={1000+}")) + if "pure_revenue_usd" in graphs_to_generate: + open('reports/pure_revenue_usd.tex', 'w').write(BREADTH_SCATTER_TEMPLATE.replace("%coords%", usd_revenue_coords).replace("%macoords%", ma_usd_coords).replace("%title%", "Pure Revenue Market Size (USD)").replace("%ylabel%", "Daily Pure Revenue Captured (USD)").replace("%cumcoords%", cum_usd_coords).replace("%extra%", open('graph_templates/eth_price_line.tex').read().replace("%coords%", price_coords)).replace("%max%", str(2*max(cumulative_usd_revenue))).replace("%colorbartitle%", "\\# Trades")) + if "pure_revenue_exch" in graphs_to_generate: + open('reports/pure_revenue_exch_breakdown.tex', 'w').write(LINE_TEMPLATE.replace("%plots%", cum_eth_graph_lines).replace("%legendkeys%", "Market Total," + ",".join(top_5_exchanges)).replace("%title%", "Pure Revenue Per Exchange Since 04/18").replace("%ylabel%", "Cumulative Pure Revenue Captured (ETH)").replace("%max%", str(2*max(cumulative_eth_revenue))).replace("%legendpos%", "south east").replace("%extraaxisoptions%", "")) + if "pure_revenue_botmas" in graphs_to_generate: + open('reports/pure_revenue_bot_revenue.tex', 'w').write(LINE_TEMPLATE.replace("%plots%", ma_botusd_graph_lines).replace("%legendkeys%", "Market Total," + ",".join([x[:8] + ".." for x in top_bots])).replace("%title%", "Pure Revenue Per Bot, 14-Day Moving Average").replace("%ylabel%", "Daily Pure Revenue Captured (USD)").replace("%max%", str(2*max(ma_usd_revenue))).replace("%legendpos%", "outer north east").replace("%extraaxisoptions%", ",enlarge x limits=-1,width=.9\\textwidth, height=0.4\\textwidth,x label style={at={(1.15,-.15)},anchor=south,}")) + open('reports/pure_revenue_bot_profit.tex', 'w').write(LINE_TEMPLATE.replace("%plots%", ma_botusd_profit_graph_lines).replace("%legendkeys%", "Market Total," + ",".join([x[:8] + ".." for x in top_bots])).replace("%title%", "Pure Revenue Profit Per Bot, 14-Day Moving Average").replace("%ylabel%", "Daily Pure Revenue Profit (USD)").replace("%max%", str(2*max(ma_usd_profit))).replace("%legendpos%", "outer north east").replace("%extraaxisoptions%", ",enlarge x limits=-1,width=.9\\textwidth, height=0.4\\textwidth,x label style={at={(1.15,-.15)},anchor=south,}")) + if "pure_revenue_gas_numtrades" in graphs_to_generate: + open('reports/pure_revenue_gas.tex', 'w').write(BREADTH_SCATTER_TEMPLATE.replace("%coords%", gas_usage_coords).replace("%macoords%", "").replace("%title%", "Gas Trends in Pure Revenue").replace("%cumcoords%", "(2018-03-08, 0) (2018-03-08, 300000)").replace("%extra%", "").replace("%max%", "300000").replace("%ylabel%", "Mean Gas Used Per Trade").replace("ymode=log,", "").replace("scatter,", "scatter, only marks,").replace("%colorbartitle%", "Mean Trades/TX")) + +def get_pga_winner_graphs(): + results = query_db("SELECT *,substr(timestamp,0,11) as date FROM auctions JOIN mergedprofitabletxs ON auctions.hash=mergedprofitabletxs.transaction_hash WHERE all_positive='True' GROUP BY transaction_hash") + revenue_file = open('reports/data/revenue.csv', 'w') + profit_file = open('reports/data/profit.csv', 'w') + cost_file = open('reports/data/cost.csv', 'w') + gas_used_file = open('reports/data/gas_used.csv', 'w') + gas_prices_file = open('reports/data/gas_prices.csv', 'w') + for result in results: + revenue = float(result['eth_profit']) + gas_price = float(result['gas_price']) + gas_used = float(result['receipt_gas_used']) + cost = (gas_price * gas_used) / (10 ** 18) + profit=revenue-cost + revenue_file.write(str(revenue) + "\n") + profit_file.write(str(profit) + "\n") + cost_file.write(str(cost) + "\n") + gas_used_file.write(str(gas_used) + "\n") + gas_prices_file.write(str(gas_price) + "\n") + print(result['txhash'], revenue, cost, profit) + +def get_pga_dynamics_graphs(): + good_auctions = set() + auction_dates = {} + auction_profits = {} + good_auctions_res = query_db("SELECT auction_id,eth_profit FROM auctions JOIN profits ON auctions.hash=profits.txhash WHERE all_positive='True' GROUP BY txhash") + for auction in good_auctions_res: + good_auctions.add(int(auction['auction_id'])) + auction_profits[int(auction['auction_id'])] = float(auction['eth_profit']) + print(good_auctions) + # todo consolidate w auction postprocessing code in read_csv.py; move this there or that here? + per_auction_bot_traces = {} + for auction_id in sorted(list(good_auctions)): + bids = query_db("SELECT * FROM auctions WHERE auction_id='%d'" % auction_id) + for result in bids: + bot = result['sender'] + auction_date = datetime.utcfromtimestamp(int(result['time_seen']) / (10 ** 9)).strftime('%Y-%m-%d') + auction_dates[int(result['auction_id'])] = auction_date + init_dict(per_auction_bot_traces, auction_id, {}) + init_dict(per_auction_bot_traces[auction_id], bot, []) + per_auction_bot_traces[auction_id][bot].append(dict(result)) + + sorted_bot_deltas = {} + min_bid_ratios = [] + for auction in per_auction_bot_traces: + for bot in per_auction_bot_traces[auction]: + trace = per_auction_bot_traces[auction][bot] + if len(trace) < 5: + # no repeated bids; probably noise + continue + trace = sorted(trace, key=lambda x : float(x['gas_price'])) + min_bid = float(trace[0]['gas_price']) * float(trace[0]['gas_limit']) / (10 ** 18) + profit = float(auction_profits[int(trace[0]['auction_id'])]) + min_bid_profit_ratio = min_bid/profit + min_bid_ratios.append(min_bid_profit_ratio) + + per_auction_bot_traces[auction][bot] = trace + init_dict(sorted_bot_deltas, auction, {}) + init_dict(sorted_bot_deltas[auction], bot, ([],[])) + for i in range(1, len(trace)): + try: + bid_price_percent_delta = round((float(trace[i]['gas_price']) - float(trace[i-1]['gas_price']))/float(trace[i-1]['gas_price']), 8) * 100 + bid_time_delta = (float(trace[i]['time_seen']) - float(trace[i-1]['time_seen'])) / (10 ** 9) + except: + print(result['auction_id'], "has a failed bid") + pass + sorted_bot_deltas[auction][bot][0].append(bid_price_percent_delta) + sorted_bot_deltas[auction][bot][1].append(bid_time_delta) + + xs = [] + median_raise_ys = [] + mean_time_delta_ys = [] + raises = [] + eth_profit_ys = [] + num_raises = [] + for auction in sorted_bot_deltas: + for bot in sorted_bot_deltas[auction]: + #print(auction, bot, np.mean(sorted_bot_deltas[auction][bot][1]), auction_dates[auction]) + print(auction, bot, sorted_bot_deltas[auction][bot][0], auction_dates[auction]) + raises += sorted_bot_deltas[auction][bot][0] + xs.append(auction_dates[auction]) + eth_profit_ys.append(auction_profits[auction]) + median_raise_ys.append(np.median(sorted_bot_deltas[auction][bot][0])) + mean_time_delta_ys.append(np.mean(sorted_bot_deltas[auction][bot][1])) + num_raises.append(len(sorted_bot_deltas[auction][bot][1])) + + print([np.min(raises), np.max(raises), np.median(raises), np.mean(raises), np.var(raises), sum((y < .13 and y >= .12 for y in raises))], len(raises)) + + + median_raise_plots = "" + time_delta_plots = "" + median_raise_coords = "" + time_delta_coords = "" + for i in range(len(xs)): + median_raise_coords += "(%s,%f) [%f] " % (xs[i], median_raise_ys[i], eth_profit_ys[i]) + time_delta_coords += "(%s,%f) [%f] " % (xs[i], mean_time_delta_ys[i], num_raises[i]) + median_raise_plots += HIST_COORDS.replace("%coords%", median_raise_coords) + time_delta_plots += HIST_COORDS.replace("%coords%", time_delta_coords) + open('reports/data/pga_raises.csv', 'w').write(median_raise_plots) + median_raise_plots += " \\addplot+[red] coordinates {(%s,15.0) (%s,15.0)}; \\addplot+[green] coordinates {(%s,12.5) (%s,12.5)};" % (xs[0], xs[-1], xs[0], xs[-1]) # draw horizontal lines at model prediction through coords; hack to get around no horizontal lines in pgfplots datelib + open('reports/median_raise_scatter.tex', 'w').write(LINE_TEMPLATE.replace("%plots%", median_raise_plots).replace("%legendkeys%", "\\\\y=15\\\\y=12.5\\\\").replace("%title%", "Raise Strategy Evolution").replace("ymode=log,", "").replace("%ylabel%", "Median Raise Percent Over Own Bid").replace("%max%", "75").replace("%legendpos%", "north east").replace("%extraaxisoptions%", open('graph_templates/median_raise_extraaxisoptions.tex').read())) + open('reports/latency_scatter.tex', 'w').write(LINE_TEMPLATE.replace("%plots%", time_delta_plots).replace("%legendkeys%", "").replace("%title%", "Bot Latency Evolution").replace("ymode=log,", "").replace("%ylabel%", "Mean Observed Time Between Bids (s)").replace("%max%", "1").replace("%legendpos%", "north east").replace("%extraaxisoptions%", open('graph_templates/latency_extraaxisoptions.tex').read())) + min_bid_ratios_file = open('reports/data/min_bid_ratios.csv', 'w') + for bid in min_bid_ratios: + min_bid_ratios_file.write(str(bid) + "\n") + +if __name__ == "__main__": + get_breadth_graphs_tikz(["pure_revenue_gas_numtrades"], skip_until=None) + get_breadth_graphs_tikz(["pure_revenue_eth", "pure_revenue_usd", "pure_revenue_botmas"], skip_until=None) + get_breadth_graphs_tikz(["pure_revenue_exch"], skip_until="2018-04-01") + #get_pga_winner_graphs() + get_pga_dynamics_graphs() + + #get_princeton_graph_tikz_2() + #get_princeton_graph_tikz_2(skip_under=7000000) + #get_princeton_graph_tikz(20) + + +# TODO + +# - MA on latency graph? +# - color bucketing for breadth graph 1pm +# - authorship info? 4pm +# - pgf out all existing figures 5pm +# - regen all graphs + +# - mention github, website features throughout +# - texttexttexttext + +# - get GH, etc ready for release [tyler] + # me, steven, iddo, (tyler, yunqi, xueyuan), lorenz, ari + + +# - defer +# - share of fees/blocks by mining pool +# - add gnosis dex +# - investigate uniswap 0s (reflected in db) +# - fix loser issue on frontrun.me + diff --git a/get_all_arb_receipts.py b/get_all_arb_receipts.py new file mode 100644 index 0000000..1481d04 --- /dev/null +++ b/get_all_arb_receipts.py @@ -0,0 +1,40 @@ +from web3 import Web3 +import csv, csv_hack, time +from receipts import write_receipt + +my_provider = Web3.IPCProvider('/home/geth/parity_mainnet/jsonrpc.ipc', timeout=60) +w3 = Web3(my_provider) + +bidder_txs = [] + +print("Preprocessing phase 1 done!") + +bidsdict = csv.DictReader(open('data/all_success_arb_txs_bigquery.csv')) +for bid in bidsdict: + bidder_txs.append(bid['transaction_hash']) + +print("Preprocessing phase 2 done!") + +bidsdict = csv.DictReader(open('data/arb_receipts.csv')) +for bid in bidsdict: + bidder_txs.remove(bid['hash']) + +print("Preprocessing done!") + +f = open('data/arb_receipts.csv', 'a') +#f.write("block_num,tx_position,gas_limit,gas_price,gas_used,from,to,input,hash,log_addrs,log_topics,log_data,gastoken\n") + +i = 0 +curr_time = time.time() + +for txhash in bidder_txs: + print(txhash) + receipt = w3.eth.getTransactionReceipt(txhash) + tx = w3.eth.getTransaction(txhash) + i += 1 + if (i % 10) == 0: + print(i, "processed", time.time() - curr_time) + curr_time = time.time() + if receipt is None: + continue + write_receipt(receipt, tx, f) diff --git a/get_auction_slots_intersection.py b/get_auction_slots_intersection.py new file mode 100644 index 0000000..4dd5077 --- /dev/null +++ b/get_auction_slots_intersection.py @@ -0,0 +1,40 @@ +from web3 import Web3 +import csv, csv_hack +from receipts import write_receipt + +my_provider = Web3.HTTPProvider('https://mainnet.infura.io/v3/c534d76d934f40498f6d6113a46c6ab3') +w3 = Web3(my_provider) + +bidder_txs = [] + +highest_block_seen = -1 +old_auctions = csv.DictReader(open('data/slot_auction.csv')) +for line in old_auctions: + if int(line['block_num']) > highest_block_seen: + highest_block_seen = int(line['block_num']) + last_tx_seen = line['hash'] + +print('seen to', highest_block_seen) + +bidsdict = csv.DictReader(open('data/auctions.csv')) +reached_new_txs = False +for bid in bidsdict: + if bid['hash'] == last_tx_seen: + reached_new_txs = True + if reached_new_txs: + bidder_txs.append(bid['hash']) + +#bidder_txs = bidder_txs.difference(seen_hashes) +print('done') +print(len(bidder_txs)) + +f = open('data/slot_auction.csv', 'a') +#f.write("block_num,tx_position,gas_limit,gas_price,gas_used,from,to,input,hash,log_addrs,log_topics,log_data,gastoken\n") + +for txhash in bidder_txs: + receipt = w3.eth.getTransactionReceipt(txhash) + tx = w3.eth.getTransaction(txhash) + if receipt is None: + continue + + write_receipt(receipt, tx, f) diff --git a/get_bq_blocks.py b/get_bq_blocks.py new file mode 100644 index 0000000..ff77211 --- /dev/null +++ b/get_bq_blocks.py @@ -0,0 +1,33 @@ +import csv, os +from google.cloud import bigquery + +os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "etharbskey.json" +client = bigquery.Client() + + +FIELDS_TO_GRAB = 'number,timestamp,gas_limit,gas_used,miner,extra_data' + +query = """SELECT """ + FIELDS_TO_GRAB + """ FROM `bigquery-public-data.ethereum_blockchain.blocks`;""" + + +with open('data/block_data.csv', 'w') as csvfile: + spamwriter = csv.writer(csvfile, delimiter=',', + quotechar='"', quoting=csv.QUOTE_MINIMAL) + + spamwriter.writerow(FIELDS_TO_GRAB.split(",")) + + job_config = bigquery.QueryJobConfig() + query_job = client.query( + query, + # Location must match that of the dataset(s) referenced in the query. + location='US', + job_config=job_config) # API request - starts the query + + + for item in query_job: + spamwriter.writerow([item[x] for x in FIELDS_TO_GRAB.split(',')]) + + +assert query_job.state == 'DONE' +print("[database fetcher] Wrote all block data") + diff --git a/get_bq_fees.py b/get_bq_fees.py new file mode 100644 index 0000000..3f7eef4 --- /dev/null +++ b/get_bq_fees.py @@ -0,0 +1,33 @@ +import csv, os +from google.cloud import bigquery + +os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "etharbskey.json" +client = bigquery.Client() + + +FIELDS_TO_GRAB = 'block_number,total_fees' + +query = """SELECT block_number,SUM(((CAST(receipt_gas_used as INT64)) * (CAST(gas_price as INT64)/1000000000))/1000000000) as total_fees FROM `bigquery-public-data.ethereum_blockchain.transactions` GROUP BY block_number;""" + + +with open('data/block_fees.csv', 'w') as csvfile: + spamwriter = csv.writer(csvfile, delimiter=',', + quotechar='"', quoting=csv.QUOTE_MINIMAL) + + spamwriter.writerow(FIELDS_TO_GRAB.split(",")) + + job_config = bigquery.QueryJobConfig() + query_job = client.query( + query, + # Location must match that of the dataset(s) referenced in the query. + location='US', + job_config=job_config) # API request - starts the query + + + for item in query_job: + spamwriter.writerow([item[x] for x in FIELDS_TO_GRAB.split(',')]) + + +assert query_job.state == 'DONE' +print("[database fetcher] Wrote all block fees") + diff --git a/get_bq_logs.py b/get_bq_logs.py new file mode 100644 index 0000000..4ce92d5 --- /dev/null +++ b/get_bq_logs.py @@ -0,0 +1,41 @@ +import csv, os +from google.cloud import bigquery +from exchanges import dex_list + +FIELDS_TO_GRAB = 'block_number,transaction_hash,to_address,from_address,address,num_logs,gas,gas_price,receipt_gas_used,input,transaction_index' + +os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "etharbskey.json" +client = bigquery.Client() + +txs = set(['0xe1844a185ced1361f7e695b589f8dc1f9c917e7e85c08825bd192d079e3c4cd6']) + + +query = """SELECT log_index,transaction_hash,logs.transaction_index,address,data,topics,logs.block_timestamp,logs.block_number FROM + `bigquery-public-data.ethereum_blockchain.logs` AS logs + JOIN `bigquery-public-data.ethereum_blockchain.transactions` AS transactions ON logs.transaction_hash = transactions.hash +WHERE NOT logs.address = transactions.to_address + AND logs.address in UNNEST(@dex_list) + AND NOT transactions.to_address IN UNNEST(@dex_list) ORDER BY block_number ASC, transaction_index ASC""" + +aqp = bigquery.ArrayQueryParameter('dex_list', 'STRING', dex_list) +query_params = [aqp] +job_config = bigquery.QueryJobConfig() +job_config.query_parameters = query_params +query_job = client.query( + query, + # Location must match that of the dataset(s) referenced in the query. + location='US', + job_config=job_config) # API request - starts the query + + +with open('data/all_logs_bigquery.csv', 'w') as csvfile: + spamwriter = csv.writer(csvfile, delimiter=',', + quotechar='"', quoting=csv.QUOTE_MINIMAL) + + spamwriter.writerow("log_index,transaction_hash,transaction_index,address,data,topics,block_timestamp,block_number".split(",")) + for item in query_job: + spamwriter.writerow(item) + +assert query_job.state == 'DONE' +print("[database fetcher] Wrote all logs") + diff --git a/get_bq_relayers.py b/get_bq_relayers.py new file mode 100644 index 0000000..28ffb21 --- /dev/null +++ b/get_bq_relayers.py @@ -0,0 +1,31 @@ +import csv, os +from google.cloud import bigquery + +os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "etharbskey.json" +client = bigquery.Client() + + +query = """SELECT DISTINCT logs.address FROM `bigquery-public-data.ethereum_blockchain.logs` AS logs JOIN UNNEST(topics) AS topic WHERE topic IN UNNEST(@topics)""" + + +for exchange in (('bancor', ['0x276856b36cbc45526a0ba64f44611557a2a8b68662c5388e9fe6d72e86e1c8cb']), ('kyber', ['0xd30ca399cb43507ecec6a629a35cf45eb98cda550c27696dcb0d8c4a3873ce6c']), ('uniswap', ['0x7f4091b46c33e918a0f3aa42307641d17bb67029427a5369e54b353984238705', '0xcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f'])): + outfile = 'data/' + exchange[0] + '_relayers' + open(outfile, 'w').write('') + topics = set(exchange[1]) + aqp = bigquery.ArrayQueryParameter('topics', 'STRING', topics) + query_params = [aqp] + job_config = bigquery.QueryJobConfig() + job_config.query_parameters = query_params + query_job = client.query( + query, + # Location must match that of the dataset(s) referenced in the query. + location='US', + job_config=job_config) # API request - starts the query + + + for item in query_job: + open(outfile, 'a').write(item['address'] + '\n') + + assert query_job.state == 'DONE' + print("[database fetcher] Wrote all %s relayers" % (exchange[0])) + diff --git a/get_bq_summarystats.py b/get_bq_summarystats.py new file mode 100644 index 0000000..5cc3166 --- /dev/null +++ b/get_bq_summarystats.py @@ -0,0 +1,67 @@ +import csv, csv_hack, sys + +infile = sys.argv[1] +outfile = sys.argv[2] + +def init_zero_dict(dict, val): + if not val in dict: + dict[val] = 0 + +total_gwei_bid = {} +total_gwei_used = {} +total_gas_bid = {} +total_gas_used = {} + +BINWIDTH = 10000 +num_txs = 0 + +bidsdict = csv.DictReader(open(infile)) +for bid in bidsdict: + if len(bid['input']) < 8: + continue + num_txs += 1 + blocknum = int(bid['block_number']) + price_bid = int(bid['gas_price']) + gas_bid = int(bid['gas']) + gas_used = int(bid['receipt_gas_used']) + init_zero_dict(total_gwei_bid, blocknum) + init_zero_dict(total_gwei_used, blocknum) + init_zero_dict(total_gas_bid, blocknum) + init_zero_dict(total_gas_used, blocknum) + total_gwei_bid[blocknum] += (price_bid * float(gas_bid)) / (10 ** 9) + total_gwei_used[blocknum] += (price_bid * float(gas_used)) / (10 ** 9) + total_gas_bid[blocknum] += gas_bid + total_gas_used[blocknum] += gas_used + +print("Block range", min(total_gwei_bid.keys()), max(total_gwei_bid.keys())) +print("Num txs", num_txs) +print("Total gwei bid", sum(total_gwei_bid.values())) +print("Total gwei used", sum(total_gwei_used.values())) +print("Total gas bid", sum(total_gas_bid.values())) + +blockstats = [0, 0] +data = [] +for blocknum in range(min(total_gwei_bid.keys()), max(total_gwei_bid.keys()) + 1, BINWIDTH): + start = blocknum + end = min(blocknum + BINWIDTH, max(total_gwei_bid.keys()) + 1) + total_gwei_bid_range = 0 + total_gwei_used_range = 0 + total_gas_bid_range = 0 + total_gas_used_range = 0 + for i in range(start, end): + if i in total_gwei_bid: + blockstats[0] += 1 + total_gwei_bid_range += total_gwei_bid[i] + total_gwei_used_range += total_gwei_used[i] + total_gas_bid_range += total_gas_bid[i] + total_gas_used_range += total_gas_used[i] + else: + blockstats[1] += 1 + + data.append([start, end, total_gwei_bid_range, total_gwei_used_range, total_gas_bid_range, total_gas_used_range]) + +print("Yes/no", blockstats) + +open(outfile, 'w').write(str(data)) + + diff --git a/get_bq_txlist.py b/get_bq_txlist.py new file mode 100644 index 0000000..bbf561c --- /dev/null +++ b/get_bq_txlist.py @@ -0,0 +1,76 @@ +from exchanges import dex_list +import csv, os +from google.cloud import bigquery + +FIELDS_TO_GRAB = 'block_number,transaction_hash,to_address,from_address,address,num_logs,gas,gas_price,receipt_gas_used,input,transaction_index' + +os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "etharbskey.json" +client = bigquery.Client() + +query = "(SELECT " + FIELDS_TO_GRAB + " FROM " +query += "(SELECT " + FIELDS_TO_GRAB.replace("num_logs,", "") + ", COUNT(*) AS num_logs FROM " +query += "(SELECT " + FIELDS_TO_GRAB.replace("num_logs,", "") +query += " FROM (SELECT " + FIELDS_TO_GRAB.replace("num_logs,", "").replace("block_number", "transactions.block_number").replace("transaction_index", "transactions.transaction_index") +query += """ FROM + `bigquery-public-data.ethereum_blockchain.transactions` AS transactions + JOIN `bigquery-public-data.ethereum_blockchain.logs` AS logs ON logs.transaction_hash = transactions.hash +WHERE TRUE + AND NOT address = to_address + AND address in UNNEST(@dex_list) + AND NOT to_address IN UNNEST(@dex_list) + )) GROUP BY block_number,transaction_hash,to_address,from_address,address,gas,gas_price,receipt_gas_used,input,transaction_index)) ORDER BY block_number ASC, transaction_index ASC; +""" + +aqp = bigquery.ArrayQueryParameter('dex_list', 'STRING', dex_list) +query_params = [aqp] +job_config = bigquery.QueryJobConfig() +job_config.query_parameters = query_params +query_job = client.query( + query, + # Location must match that of the dataset(s) referenced in the query. + location='US', + job_config=job_config) # API request - starts the query + +# Print the results + +addresses = set() + +with open('data/all_success_arb_txs_bigquery.csv', 'w') as csvfile: + spamwriter = csv.writer(csvfile, delimiter=',', + quotechar='"', quoting=csv.QUOTE_MINIMAL) + + spamwriter.writerow(FIELDS_TO_GRAB.split(",")) + for item in query_job: + addresses.add(item['from_address']) + spamwriter.writerow(item) + +assert query_job.state == 'DONE' +print("[database fetcher] Wrote all BQ success data") + +query = """SELECT block_number,transactions.hash,to_address,from_address,gas,gas_price,receipt_gas_used,input,transaction_index FROM + `bigquery-public-data.ethereum_blockchain.transactions` AS transactions +WHERE from_address IN UNNEST(@addrs)""" + + +aqp = bigquery.ArrayQueryParameter('addrs', 'STRING', [x.lower() for x in addresses]) +query_params = [aqp] +job_config = bigquery.QueryJobConfig() +job_config.query_parameters = query_params +query_job = client.query( + query, + # Location must match that of the dataset(s) referenced in the query. + location='US', + job_config=job_config) # API request - starts the query + + +with open('data/all_inclfail_arb_txs_bigquery.csv', 'w') as csvfile: + spamwriter = csv.writer(csvfile, delimiter=',', + quotechar='"', quoting=csv.QUOTE_MINIMAL) + + spamwriter.writerow("block_number,transaction_hash,to_address,from_address,gas,gas_price,receipt_gas_used,input,transaction_index".split(",")) + for item in query_job: + spamwriter.writerow(item) + +assert query_job.state == 'DONE' +print("[database fetcher] Wrote all BQ incl fail data") + diff --git a/get_pairwise_data.py b/get_pairwise_data.py new file mode 100644 index 0000000..025ccf1 --- /dev/null +++ b/get_pairwise_data.py @@ -0,0 +1,80 @@ +import csv, csv_hack, json +from receipts import write_receipt + +auctions = {} + +bidsdict = csv.DictReader(open('data/auctions.csv')) +for bid in bidsdict: + auction_num = bid['auction_id'] + if not auction_num in auctions: + auctions[auction_num] = [] + auctions[auction_num].append(bid) + +self_price_deltas = {} +pairwise_price_deltas = {} +pairwise_price_percent_deltas = {} +self_price_percent_deltas = {} +self_time_deltas = {} +pairwise_time_deltas = {} + +pairs = {} +auctions_participated = {} + +for auction_num in auctions: + last_bid = None + last_bids_by_id = {} + for bid in auctions[auction_num]: + sender = bid['sender'] + if not sender in auctions_participated: + auctions_participated[sender] = set() + auctions_participated[sender].add(auction_num) + bid['gas_price'] = int(bid['gas_price']) + bid['time_seen'] = int(bid['time_seen']) + if last_bid is not None: + counterbidder = last_bid['sender'] + price_delta = bid['gas_price'] - last_bid['gas_price'] + price_percent_delta = (price_delta / (float(bid['gas_price'] + last_bid['gas_price'])/2)) * 100 + time_delta = (bid['time_seen'] - last_bid['time_seen']) / (10 ** 9) + price_delta /=(10 ** 9) + if price_delta < 0: + continue # ignore bids that aren't raises; TODO check effects + bidder_pairs = str(sender) + "-" + str(counterbidder) + if not bidder_pairs in pairwise_price_deltas: + pairwise_price_deltas[bidder_pairs] = [] + pairwise_price_percent_deltas[bidder_pairs] = [] + pairwise_time_deltas[bidder_pairs] = [] + pairs[sender] = set() + pairwise_time_deltas[bidder_pairs].append(time_delta) + pairwise_price_deltas[bidder_pairs].append(price_delta) + pairwise_price_percent_deltas[bidder_pairs].append(price_percent_delta) + pairs[sender].add(bidder_pairs) + + if sender in last_bids_by_id: + last_self_bid = last_bids_by_id[sender] + price_delta = bid['gas_price'] - last_self_bid['gas_price'] + time_delta = (bid['time_seen'] - last_self_bid['time_seen']) / (10 ** 9) + price_percent_delta = (price_delta / ((bid['gas_price'] + last_self_bid['gas_price'])/2)) * 100 + price_delta /=(10 ** 9) + if not sender in self_price_deltas: + self_time_deltas[sender] = [] + self_price_deltas[sender] = [] + self_price_percent_deltas[sender] = [] + self_time_deltas[sender].append(time_delta) + self_price_deltas[sender].append(price_delta) + self_price_percent_deltas[sender].append(price_percent_delta) + last_bid = bid + last_bids_by_id[sender] = bid + +# convert sets to lists for json reasons +for pair in pairs: + pairs[pair] = list(pairs[pair]) + +for sender in auctions_participated: + auctions_participated[sender] = list(auctions_participated[sender]) + +print(pairs) + +data = {"pairwise_time": pairwise_time_deltas, "pairwise_price": pairwise_price_deltas,"pairwise_price_percent": pairwise_price_percent_deltas,"self_time": self_time_deltas,"self_price": self_price_deltas, "self_price_percent": self_price_deltas, "pairs": pairs, "auctions": auctions_participated} +f = open('data/pairwise_self.csv', 'w') +f.write(json.dumps(data)) + diff --git a/graph_templates/1.tex b/graph_templates/1.tex new file mode 100644 index 0000000..a7fc729 --- /dev/null +++ b/graph_templates/1.tex @@ -0,0 +1,51 @@ +\begin{tikzpicture} +\begin{axis}[ + ybar stacked, + bar width=5pt, + ymin=0, ymax=149, + legend style={at={(0.5,0)}, + anchor=south,legend columns=-1}, + xtick=data, + x label style={ + at={(0.5,-.25)}, + anchor=south, +}, + ylabel={Miner Revenue (ETH)}, + xlabel={Block Number}, + title={Highest Observed Pure Revenue OO Blocks}, + symbolic x coords={7029147, 4618363, 7372878, 4725889, 6129904, 4359715, 4321329, 4218201, 4511858, 4526402, 4769615, 5074099, 4820021, 4929936, 4956461, 6129903, 7372880, 6335886, 4289436, 4597319, }, + xtick=data, + x tick label style={rotate=90,anchor=east, at={(axis description cs:0.5,-4.1)}}, + axis y line*=left, + axis x line*=bottom + ] +\addplot+[ybar] plot coordinates {(7029147, 101.59262742592085) (4618363, 99.99999999910933) (7372878, 86.5121832) (4725889, 83.4136428437622) (6129904, 68.49918638712944) (4359715, 67.61327299999999) (4321329, 59.567595240292775) (4218201, 58.0644545028598) (4511858, 57.92863275000001) (4526402, 57.900954944999995) (4769615, 50.48518124961362) (5074099, 49.99715453337096) (4820021, 49.9455756) (4929936, 45.12279620448) (4956461, 45.065462) (6129903, 39.166612487152236) (7372880, 35.96297207421013) (6335886, 35.5276) (4289436, 35.4804) (4597319, 33.100512) }; +\addplot+[ybar] plot coordinates {(7029147, 0.022575947652901183) (4618363, 0.37137142620000024) (7372878, 2.3880345276524992) (4725889, 4.281388080429975) (6129904, 0.043478875041119955) (4359715, 0.5285118109871835) (4321329, 0.36483124409254397) (4218201, 3.7654935693258866) (4511858, 9.53601230737791) (4526402, 2.0243883310000004) (4769615, 0.34298219062115803) (5074099, 2.720158228981349) (4820021, 3.799417844730175) (4929936, 4.256290607017646) (4956461, 3.0070182564024783) (6129903, 0.050692708979768596) (7372880, 1.8197112616186384) (6335886, 2.0335207370366497) (4289436, 0.14780711818369202) (4597319, 4.267211257) }; +\addplot+[ybar] plot coordinates {(7029147, 3) (4618363, 3) (7372878, 2) (4725889, 3) (6129904, 3) (4359715, 5) (4321329, 5) (4218201, 5) (4511858, 3) (4526402, 3) (4769615, 3) (5074099, 3) (4820021, 3) (4929936, 3) (4956461, 3) (6129903, 3) (7372880, 2) (6335886, 3) (4289436, 5) (4597319, 3) }; +\legend{\strut OO fees, \strut Transaction fees, \strut Block reward} +\end{axis} + +\begin{axis}[ + ybar stacked, + bar width=5pt, + ymin=0, ymax=149, + symbolic x coords={08-01-19, 25-11-17, 15-03-19, 13-12-17, 11-08-18, 12-10-17, 29-09-17, 30-08-17, 08-11-17, 10-11-17, 21-12-17, 12-02-18, 29-12-17, 18-01-18, 23-01-18, 11-08-18 , 15-03-19 , 15-09-18, 19-09-17, 21-11-17, }, + xlabel={Date of Block (DD-MM-YY)}, + xtick=data, + x label style={ + %at={(0.5,1.065)}, + at={(0.5,.75)}, + anchor=south, +}, + x tick label style={rotate=90,anchor=east}, + axis y line*=right, + axis x line*=top, + ] + \addplot+[ybar] plot coordinates {(08-01-19, 0) (25-11-17, 0) (15-03-19, 0) (13-12-17, 0) (11-08-18, 0) (12-10-17, 0) (29-09-17, 0) (30-08-17, 0) (08-11-17, 0) (10-11-17, 0) (21-12-17, 0) (12-02-18, 0) (29-12-17, 0) (18-01-18, 0) (23-01-18, 0) (11-08-18 , 0) (15-03-19 , 0) (15-09-18, 0) (19-09-17, 0) (21-11-17, 0) }; + +\end{axis} + + +\end{tikzpicture} + + diff --git a/graph_templates/breadth_scatter.tex b/graph_templates/breadth_scatter.tex new file mode 100644 index 0000000..0ed180d --- /dev/null +++ b/graph_templates/breadth_scatter.tex @@ -0,0 +1,29 @@ + +\begin{tikzpicture} +\begin{axis}[clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year},ymode=log, xlabel={Date (MM-YY)}, ylabel={%ylabel%},title={%title%}, + log basis y={10}, ymin=0, ymax=%max%, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, +scatter/use mapped color={ + draw=mapped color, + fill=mapped color!70, + }, colorbar, point meta= explicit, + colorbar style={ + title={%colorbartitle%}, + %extracolorbar% + }, +%extraaxisoptions% +] +\addplot[scatter,opacity=0.5] coordinates { %coords% }; +\addplot[mark=none, black, line width=2pt] coordinates { %macoords% }; +\addplot[mark=none, orange, dashed, line width=3pt] coordinates { %cumcoords% }; +\end{axis} +%extra% +\end{tikzpicture} + diff --git a/graph_templates/date_line.tex b/graph_templates/date_line.tex new file mode 100644 index 0000000..358c450 --- /dev/null +++ b/graph_templates/date_line.tex @@ -0,0 +1,27 @@ +\begin{tikzpicture} +\begin{axis}[cycle list/RdGy-6, clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year},ymode=log, xlabel={Date (MM-YY)}, ylabel={%ylabel%},title={%title%}, + log basis y={10}, ymin=0, ymax=%max%, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, + cycle multiindex* list={ + color list + \nextlist + linestyles + \nextlist + very thick + \nextlist + }, legend pos=%legendpos%, + legend entries = {%legendkeys%},legend style={fill=none},legend cell align={right}, %extraaxisoptions%] + + + +%plots% + +\end{axis} +\end{tikzpicture} diff --git a/graph_templates/eth_price_line.tex b/graph_templates/eth_price_line.tex new file mode 100644 index 0000000..2494112 --- /dev/null +++ b/graph_templates/eth_price_line.tex @@ -0,0 +1,9 @@ +\begin{axis}[clip mode=individual, date coordinates in=x, + xticklabel=\month-\year,ymode=log, xmajorticks=false, y tick style={draw=none}, y tick label style={color=green}, ylabel={\color{green}ETH Price (USD)}, + log basis y={10}, ymin=0, ymax=2000,y label style={ + at={(1.25,0.75)}, + anchor=east, +}, yticklabel pos=right] +\addplot[mark=none, green, dashed, line width=2pt] coordinates { %coords% }; + +\end{axis} diff --git a/graph_templates/latency_extraaxisoptions.tex b/graph_templates/latency_extraaxisoptions.tex new file mode 100644 index 0000000..4f95e02 --- /dev/null +++ b/graph_templates/latency_extraaxisoptions.tex @@ -0,0 +1,8 @@ +scatter/use mapped color={ + draw=mapped color, + fill=mapped color!70, + }, colorbar, point meta= explicit, point meta max=50, + colorbar style={ + title={\# of Raises}, + ytick={0,10,...,40}, extra y ticks={50}, + extra y tick labels={50+}}, diff --git a/graph_templates/median_raise_extraaxisoptions.tex b/graph_templates/median_raise_extraaxisoptions.tex new file mode 100644 index 0000000..fe18785 --- /dev/null +++ b/graph_templates/median_raise_extraaxisoptions.tex @@ -0,0 +1,8 @@ +x label style={at={(0.5,-.25)},anchor=south,}, scatter/use mapped color={ + draw=mapped color, + fill=mapped color!70, + }, colorbar, point meta= explicit, point meta max=1, + colorbar style={ + title={Revenue (ETH)}, + ytick={0,.2,...,0.8}, extra y ticks={1}, + extra y tick labels={1+}}, diff --git a/graph_templates/princeton1.tex b/graph_templates/princeton1.tex new file mode 100644 index 0000000..e2c844b --- /dev/null +++ b/graph_templates/princeton1.tex @@ -0,0 +1,51 @@ +\begin{tikzpicture} +\begin{axis}[ + ybar stacked, + bar width=5pt, + ymin=0, ymax=149, + legend style={at={(0.5,0)}, + anchor=south,legend columns=-1}, + xtick=data, + x label style={ + at={(0.5,-.25)}, + anchor=south, +}, + ylabel={Miner Revenue (ETH)}, + xlabel={Block Number}, + title={Highest Observed Pure Revenue OO Blocks}, + symbolic x coords={%labels%}, + xtick=data, + x tick label style={rotate=90,anchor=east, at={(axis description cs:0.5,-4.1)}}, + axis y line*=left, + axis x line*=bottom + ] +\addplot+[ybar] plot coordinates {%profits%}; +\addplot+[ybar] plot coordinates {%fees%}; +\addplot+[ybar] plot coordinates {%rewards%}; +\legend{\strut OO fees, \strut Transaction fees, \strut Block reward} +\end{axis} + +\begin{axis}[ + ybar stacked, + bar width=5pt, + ymin=0, ymax=149, + symbolic x coords={%dates%}, + xlabel={Date of Block (DD-MM-YY)}, + xtick=data, + x label style={ + at={(0.5,.75)}, + anchor=south, +}, + x tick label style={rotate=90,anchor=east}, + axis y line*=right, + axis x line*=top, + ] + \addplot+[ybar] plot coordinates {%datespoints%}; + +\end{axis} + + +\end{tikzpicture} + + + diff --git a/persistence.py b/persistence.py new file mode 100644 index 0000000..4f6aa9e --- /dev/null +++ b/persistence.py @@ -0,0 +1,22 @@ +# https://stackoverflow.com/questions/16463582/memoize-to-disk-python-persistent-memoization + +import json + +def persist_to_file(file_name): + + def decorator(original_func): + + try: + cache = json.load(open(file_name, 'r')) + except (IOError, ValueError): + cache = {} + + def new_func(param): + if param not in cache: + cache[param] = original_func(param) + json.dump(cache, open(file_name, 'w')) + return cache[param] + + return new_func + + return decorator diff --git a/read_csv.py b/read_csv.py new file mode 100644 index 0000000..101c126 --- /dev/null +++ b/read_csv.py @@ -0,0 +1,356 @@ +import csv + +all_txs = set() # set of all tx ids seen as hashes +earliest_seen = {} # hash to earliest line (orderdict) observed of this instance +all_seen = {} # hash to each line (ordereddict) observed of this instance +hits = {} # hash to number of times seen total by all monitors + +num_processed = 0 +CUTOFF = 10000000000000000000000 +#CUTOFF = 1000000 + +def print_seen_line(seen_item, prev_seen_item, display_payload): + print("%.6f" % ((seen_item['time_seen'] - prev_seen_item['time_seen'])/10**9), "%.6f" % (seen_item['time_seen'] / (10 ** 9)), seen_item['hash'], seen_item['sender'], seen_item['account_nonce'], seen_item['gas_price'], "H:" + str(hits[seen_item['hash']]), seen_item['payload'] if display_payload else "", sep="\t") + +def print_seen_dict(seen_tuple_dictionary): + for monitor_ip in seen_tuple_dictionary: + monitor_seen = seen_tuple_dictionary[monitor_ip] + print_seen_list(monitor_seen) + print("-" * 50, "\n") + +def print_seen_list(seen_list, display_payload=True, print_first_item=True): + if print_first_item: + # first line doesn't have a prev item + print_seen_line(seen_list[0], seen_list[0], display_payload) + + for i in range(len(seen_list) - 1): + prev_item = seen_list[i] + item = seen_list[i+1] + print_seen_line(item, prev_item, display_payload) + #open(monitor_ip, "a").write(item['hash'] + "\n") + +def get_bidder(item): + return (item['sender'], item['account_nonce']) + +def add_bidder_to(auction_participation, bidder, auction_id): + if bidder in auction_participation: + if auction_id in auction_participation[bidder]: + auction_participation[bidder][auction_id] += 1 + else: + auction_participation[bidder][auction_id] = 1 + else: + auction_participation[bidder] = {auction_id: 1} + +def should_filter_frontier(frontier, bidder_id): + bid_addr = bidder_id[0] + bid_nonce = int(bidder_id[1]) + if bid_addr in frontier: + if frontier[bid_addr] > bid_nonce + 2: # (choose magic number 2 as threshold for out-of-ordering TODO repair) + return True + frontier[bid_addr] = max(frontier[bid_addr], bid_nonce) + else: + frontier[bid_addr] = bid_nonce + return False + +def prefilter_list(seen_list): + allowed_addrs = open("filter_list.txt").read().strip().splitlines() + frontier = {} # maps address bidding to latest known nonce + filtered_list = [] + for item in seen_list: + bidder_id = get_bidder(item) + print(item) + #if int(item['gas_price']) < 20000000000 or int(item['gas_limit']) < 100000: # was <= 80 + #if int(item['gas_price']) < 2000 or int(item['gas_limit']) < 100000: # was <= 80 + # continue + if should_filter_frontier(frontier, bidder_id): + continue + #if not item['sender'].lower() in allowed_addrs: + # continue + filtered_list.append(item) + return filtered_list + + +def get_individual_auctions(seen_list): + # IMPORTANT: ASSUMES DEDUPING (see map to line below) + auctions = [] # list of seen lists for output auctions. each transaction represents a "bid" + auction_bidders = [] # list of set of bidders [bidder is a tuple of (hash, nonce)] in each of the above auctions, indexed similarly + non_auction_txs = [] + # garbage_txs = [] # transactions that were a product of syncing (behind the frontier) TODO populate + + auction_participation = {} # maps bidders to maps of (auction_id : tuple(str,str) to num_bid : int) + + curr_auction = [] + curr_bidders = set() + auction_id = 0 + for i in range(len(seen_list) - 1): + prev_item = seen_list[i] + item = seen_list[i+1] + time_difference = (item['time_seen'] - prev_item['time_seen'])/10**9 + + if time_difference < 3: + # this tx is part of the auction + bidder_id = get_bidder(item) + if len(curr_auction) == 0: + # new auction; previous tx must have triggered + curr_auction = [prev_item, item] + # previous tx actually isn't non-auction + non_auction_txs = non_auction_txs[:-1] + original_bidder_id = get_bidder(prev_item) + curr_bidders.add(original_bidder_id) + curr_bidders.add(bidder_id) + add_bidder_to(auction_participation, original_bidder_id, auction_id) + else: + curr_auction.append(item) + curr_bidders.add(bidder_id) + add_bidder_to(auction_participation, bidder_id, auction_id) + else: + # tx is not part of an auction + if len(curr_auction) != 0: + # some previous auction ended; log and reset + auctions.append(curr_auction) + auction_bidders += [curr_bidders] + curr_auction = [] + curr_bidders = set() + auction_id += 1 + non_auction_txs.append(item) + + if len(curr_auction) != 0: + # last straggler auction + auctions.append(curr_auction) + auction_bidders += [curr_bidders] + return auctions, non_auction_txs, auction_bidders, auction_participation + +with open('arbitrage_data.csv', 'r' ) as f: + reader = csv.DictReader(f) + for line in reader: + if line['time_seen'] == 'time_seen': + # duplicate header line, ignore (happens when combining datasets) + continue + + if line['gas_price'] == '': + # [NOTE this prunes all gas-empty bids] + continue + + # line preprocessing (eg type conversions) + line['time_seen'] = int(line['time_seen']) + line['gas_price'] = int(line['gas_price']) + hash = line['hash'] + + all_txs.add(hash) + if hash in earliest_seen: + if earliest_seen[hash]['time_seen'] > line['time_seen']: + earliest_seen[hash] = line + #all_seen[hash].append(line) + hits[hash] += 1 + else: + #all_seen[hash] = [line] + earliest_seen[hash] = line + hits[hash] = 1 + num_processed += 1 + if num_processed > CUTOFF: + break + +seen_times = {} # monitor ip to list of (time_seen, tx_data) for all txs seen +global_seen = [] # list of (time_first_ever_seen, tx_data) for all txs seen + +# comments - disable all_seen for resource reasons (TODO refactor) +#for hash in all_seen: +for hash in earliest_seen: +# for line in all_seen[hash]: + #for line in earliest_seen[hash]: + #monitor_ip = line['monitor_ip'] + #if not monitor_ip in seen_times: + # seen_times[monitor_ip] = [] + #seen_times[monitor_ip].append(line) + global_seen.append(earliest_seen[hash]) + + +print("DONE2") +# sort seen_times and global_seen +for monitor_ip in seen_times: + seen_times[monitor_ip] = sorted(seen_times[monitor_ip], key=lambda line: line['time_seen']) + +global_seen = sorted(global_seen, key=lambda line: line['time_seen']) + +print("UNFILTERED GLOBAL LIST") +print_seen_list(global_seen,display_payload=False) +global_seen = prefilter_list(global_seen) + +print("FILTERED GLOBAL LIST") +print_seen_list(global_seen,display_payload=False) +auctions, non_auctions, bidders, participation = get_individual_auctions(global_seen) + +def postprocess_bid_list(all_bids): + last_bid = None + last_bids_by_id = {} + for bid in all_bids: + # insert blanks for first bids, etc + bid['price_delta'] = '' + bid['price_percent_delta'] = '' + bid['time_delta'] = '' + bid['self_price_delta'] = '' + bid['self_price_percent_delta'] = '' + bid['self_time_delta'] = '' + sender = bid['sender'] + if last_bid is not None: + price_delta = bid['gas_price'] - last_bid['gas_price'] + try: + price_percent_delta = (price_delta / (float(bid['gas_price'] + last_bid['gas_price'])/2)) * 100 + except: + price_percent_delta = 0.0 + try: + time_delta = (bid['time_seen'] - last_bid['time_seen']) / (10 ** 9) + except: + # todo when do these division-by-0 cases happen (this and above)? + time_delta = 0.0 + price_delta /=(10 ** 9) + bid['price_delta'] = price_delta + bid['price_percent_delta'] = price_percent_delta + bid['time_delta'] = time_delta + + if sender in last_bids_by_id: + last_self_bid = last_bids_by_id[sender] + price_delta = bid['gas_price'] - last_self_bid['gas_price'] + time_delta = (bid['time_seen'] - last_self_bid['time_seen']) / (10 ** 9) + try: + price_percent_delta = (price_delta / (last_self_bid['gas_price'])) * 100 + except: + price_percent_delta = 0.0 + price_delta /=(10 ** 9) + bid['self_price_delta'] = price_delta + bid['self_price_percent_delta'] = price_percent_delta + bid['self_time_delta'] = time_delta + last_bid = bid + last_bids_by_id[sender] = bid + + return all_bids + +def normalize_auction_ids(participation, auction_list): + auctionspans = [] + bids_per_auction = {} + for bidder in participation: + bidder_auctions = participation[bidder] + if sum(bidder_auctions.values()) == 1: + continue + # not a repeated bid; ignore + + # keep track of total repeated bids in each auction ID; heaviest ID is the canonical auction + for auction_id in bidder_auctions: + if not auction_id in bids_per_auction: + bids_per_auction[auction_id] = 0 + bids_per_auction[auction_id] += bidder_auctions[auction_id] + + auctionspan = max(bidder_auctions.keys()) - min(bidder_auctions.keys()) + auctionspans.append(auctionspan) + print(bidder, bidder_auctions, auctionspan) + + # show delta statistics + for i in range(max(auctionspans)): + print(i, auctionspans.count(i)) + + # populate canonical auction list with repeated bidders in each of those auctions + canonical_bidders = {} # maps canonical auction ids to list of bidders + for bidder in participation: + bidder_auctions = participation[bidder] + if sum(bidder_auctions.values()) == 1: + continue + # not a repeated bid; ignore + + auctionspan = max(bidder_auctions.keys()) - min(bidder_auctions.keys()) + if auctionspan > 1: + # data quality issues; todo check manually and validate constants + continue + + canonical_auction = -1 + best_bids = -1 + for auction_id in bidder_auctions: + auction_bids = bids_per_auction[auction_id] + canonical_auction = canonical_auction if auction_bids < best_bids else auction_id + best_bids = bids_per_auction[canonical_auction] + if not canonical_auction in canonical_bidders: + canonical_bidders[canonical_auction] = [] + canonical_bidders[canonical_auction].append(bidder) + + print("CANONICAL LIST") + for auction_id in canonical_bidders: + print(auction_id, canonical_bidders[auction_id], len(canonical_bidders[auction_id])) + + + normalized_auction_list = [] + for canonical_auction_id in range(0, max(canonical_bidders.keys())): + if canonical_auction_id in canonical_bidders: + if len(canonical_bidders[canonical_auction_id]) < 2: + continue # todo check these + auction_bidders = canonical_bidders[canonical_auction_id] + # add all bids out-of-period by accounts that rebid here + all_bids = [] + auctions_bid_in = set([canonical_auction_id]) + for bidder in auction_bidders: + for auction in participation[bidder]: + auctions_bid_in.add(auction) + auctions_bid_in = sorted(list(auctions_bid_in)) + for auction in auctions_bid_in: + if auction == canonical_auction_id: + all_bids += auction_list[auction] # add all in-period bids + else: + for bid in auction_list[auction]: + if bid['sender'] == bidder[0] and bid['account_nonce'] == bidder[1]: + all_bids.append(bid) + max_gas_price = max([int(x['gas_price']) for x in all_bids]) + min_gas_price = min([int(x['gas_price']) for x in all_bids]) + if max_gas_price - min_gas_price >= 100000000000: + all_bids = postprocess_bid_list(all_bids) + normalized_auction_list.append(all_bids) + + for auction in normalized_auction_list: + print("NORMD AUCTION:") + print_seen_list(auction, display_payload=False) + print("\n\n") + + return normalized_auction_list + +for bidder_group in bidders: + print(bidder_group) + print("\n\n") + +for auction in auctions: + print("AUCTION:") + print_seen_list(auction, display_payload=False) + print("\n\n") + +print("NON-AUCTION") +print_seen_list(auction, display_payload=False) + + +normalized_auctions = normalize_auction_ids(participation, auctions) + +def write_normalized_list(normalized_auctions, output_file): + f = open(output_file, 'w') + w = csv.DictWriter(f, ["auction_id"] + list(normalized_auctions[0][0].keys())) + w.writeheader() + for auction_id in range(len(normalized_auctions)): + auction = normalized_auctions[auction_id] + for bid in auction: + bid["auction_id"] = auction_id + w.writerows(auction) + f.close() + +write_normalized_list(normalized_auctions, "data/auctions.csv") + +exit(1) + +unique_seen_times = {} # duplicate seens removed, structure as seen_times + +for monitor_ip in seen_times: + txs_seen_by_monitor = set() + unique_seen_times[monitor_ip] = [] + monitor_seen = seen_times[monitor_ip] + for item in monitor_seen: + hash = item['hash'] + if hash not in txs_seen_by_monitor and hits[hash] > 4: + unique_seen_times[monitor_ip].append(item) + txs_seen_by_monitor.add(hash) + +#unique_seen_times = {'35.200.170.118': unique_seen_times['35.200.170.118']} + +print_seen_dict(unique_seen_times) diff --git a/receipts.py b/receipts.py new file mode 100644 index 0000000..3f23c01 --- /dev/null +++ b/receipts.py @@ -0,0 +1,18 @@ +from gastoken import is_using_gastoken +import binascii + +def hex2str(hex): + return "0x" + binascii.hexlify(hex).decode("utf-8") + +def write_receipt(receipt, tx, loghandle): + addrs = "~".join([log['address'] for log in receipt['logs']]) + topics = "~".join(["|".join([hex2str(x) for x in log['topics']]) for log in receipt['logs']]) + data = "~".join([log['data'] for log in receipt['logs']]) + gas_used = receipt['gasUsed'] + txhash = hex2str(tx['hash']) + gastoken = -1 + #if gas_used < (0.6 * tx['gas']): + # gastoken = is_using_gastoken(txhash) + gastoken = -200 # TODO fix this check + loghandle.write(str(receipt['blockNumber']) + "," + str(receipt['transactionIndex']) + "," + str(tx['gas']) + "," + str(tx['gasPrice']) + "," + str(gas_used) + "," + str(tx['from']) + ","+ str(tx['to']) + ","+ str(tx['input']) + ","+ txhash + "," + addrs + "," + topics + "," + data + "," + str(gastoken) + "\n") + diff --git a/reports/data/cost.csv b/reports/data/cost.csv new file mode 100644 index 0000000..6a5ff41 --- /dev/null +++ b/reports/data/cost.csv @@ -0,0 +1,2135 @@ +0.1006576741564274 +3.7331230491016436 +0.021426317707187316 +0.20719839103556942 +0.3224546857380221 +0.4492388207573486 +0.022005845521918487 +0.01289102861625808 +0.004521508277286644 +0.3287720748335016 +0.0191390765237485 +0.08632334799314409 +0.013132086384648 +0.011037629049863069 +0.036240263149314306 +0.013185258015427486 +0.006859880664184763 +0.07207570450946194 +0.7382980233044382 +0.020058801170239796 +0.6550354005479565 +0.0337235867521273 +0.01781565431118885 +0.07131071438895956 +0.0009377037763 +0.019327499968041624 +0.002824725 +0.02328431891161376 +0.015009634597538466 +0.04108680685297709 +0.17425937256041962 +0.47829238598717383 +0.019249391416247076 +0.01612158468624864 +0.5710960368678651 +0.31700326666451306 +0.04566287896664582 +0.21055838712645844 +0.08558872320666938 +0.26425856175332535 +0.06470993420647811 +0.0032473662 +1.0489869816860402 +0.00951803199356688 +0.001899547372339928 +0.006224851306078874 +0.007255194741466071 +0.10685691201825438 +0.13068476900072154 +0.030724261323861156 +0.04042687267553933 +0.01542958277767168 +0.023528387697998848 +0.031808114904585766 +0.06642876392824311 +0.16313444428934123 +0.0191503976529725 +0.03169684210853425 +0.2964766232302588 +0.01023512476896 +0.006755840000337792 +0.012041871324644104 +0.0771208601932631 +0.07277739409291008 +0.032007930321784395 +0.003631160000363116 +0.003119963 +0.000931453047555237 +0.00623867088 +0.0032656470075 +0.001415948818457921 +0.00433749959989724 +0.05950112596923024 +0.07508024477383454 +0.0040431331 +0.007473525355924362 +0.005189806273011968 +0.104200175531088 +0.08046845245289815 +0.10272464897689575 +0.003183566001 +0.02010772226341507 +5.783911800701733 +0.012089387239749456 +0.021732840154365992 +0.21361518310111935 +0.029334789278724696 +0.09495542676144147 +0.00214678416 +0.005408806 +0.11877852060991018 +0.007543091525939478 +0.15901660712450233 +0.024154848285130353 +0.07445715432909046 +0.001743912000290652 +0.011861884009444363 +0.4414631728263364 +0.05366809562126107 +0.09802009561799699 +0.036479359214692704 +0.25406748018448605 +0.14291550948514084 +0.020333364762629143 +0.14376432019894705 +0.009426941878015791 +0.01936317434187109 +0.015163046717888687 +0.009306192392742696 +0.07969847783888902 +0.5741725254016768 +0.14590895093571507 +0.0068986 +0.02797741488980275 +0.5394428469336604 +0.5004251728787952 +0.015677487256133105 +0.04448349141504906 +0.012907488540606592 +0.009865744 +0.002314762500308635 +0.014223187416215142 +0.006245495373412568 +0.015458909969435572 +0.031901981439531525 +0.09633059526149679 +0.011031156138285533 +0.16049322080392656 +0.05154994958452955 +1.1972515018009235 +0.10822959407677528 +0.03362069775472218 +0.00148798771966 +0.01599358374924437 +0.04329442936333708 +0.041739291554582225 +0.10728925707085335 +0.12671289835238353 +0.001477949701889208 +0.03585561183689508 +0.011666303605539875 +0.10997149366298173 +0.0658106253727897 +0.14626883666946208 +0.001463762662654453 +0.6847159611849044 +0.07168205923462617 +0.01102270618176 +0.10854463812848125 +0.005577891972342327 +0.027592580341300074 +0.043900761596785666 +0.0036395251 +0.0401539059 +0.08054012706194107 +0.029136421684008873 +0.002503764 +0.020190284423928447 +0.15632859507485722 +0.10750167912185232 +0.0036760205 +0.017209023795753245 +0.00188199930637691 +0.14412888402677057 +0.01598835768794844 +0.12857656075261054 +0.050098374760083 +0.30072578534570255 +0.007140783525894096 +0.022965365467364624 +0.036126391883772174 +0.005672329 +0.4003294320193803 +0.004187861892920494 +0.23988703625057575 +0.13439888683944978 +0.4159550406893576 +0.07084632196157564 +0.014429089510439896 +0.08061912630685138 +0.00283568376 +0.02028164894032508 +0.03800506241632081 +0.00814771436125 +0.1279729894534458 +0.012917132141527678 +0.01637159312193843 +0.008795093179851738 +0.004082288 +0.09443645537180438 +0.11810209019954078 +0.07950747742964111 +0.19582483501739367 +0.003464950510312536 +1.2935935096185198 +0.116335664966241 +0.13583725194241283 +0.009937448717735223 +0.02076357742872815 +0.19685310075727164 +0.02495133576979291 +0.004931094375 +0.20257667785589067 +0.18133045455128052 +0.024075174092675088 +0.08049625294627266 +0.10790453454180435 +0.008009073935924064 +0.0031947865695 +0.040487561857942465 +1.0557387717633817 +0.06772133173823353 +0.011421418094225585 +0.07062759005990023 +0.03202810216928107 +0.07333253174562339 +0.2624278891608149 +0.020614573029495126 +0.011488142186088884 +0.012573383461829292 +0.10693462216466304 +0.00224497728 +0.047831929245266386 +0.021431752012472896 +0.015906865212136342 +0.011471927590683283 +0.12935133154939785 +0.10576095840246173 +0.02685987401834149 +0.08128126797972049 +0.02419985469848696 +0.001096898 +0.41449580986529727 +0.011475170509764404 +0.09917878658201379 +0.09101235460188717 +0.026962022515294008 +0.34316313004317434 +0.02887827667481956 +0.07640086148027138 +0.05431941965409389 +0.10301558276252713 +0.015083570625154145 +0.5261942549947707 +0.05304798802238166 +0.00505036272 +0.21438505647809494 +0.008752090171064788 +0.017663357960661763 +0.5560771660161371 +0.0140972368 +0.18848225133711313 +0.17245341344615703 +0.002668515200290056 +0.011785199207689544 +0.09585248683050404 +0.007771659236342478 +0.007538714064131096 +0.3604425369233147 +0.07573206854617325 +0.10248612280784282 +0.01787053106255834 +0.03012365168611154 +0.02457985847736224 +0.03583436346222854 +0.108392409675772 +0.03370452219657833 +0.11132213694652529 +0.03677072945041221 +0.027058496519952385 +0.024401753723560633 +0.005407272 +0.009556399221717997 +0.19423938329144746 +0.00552272789005742 +0.006022905410704974 +0.2948653047057191 +0.028723536018315815 +0.118530521084532 +0.04337689994044571 +0.0040057472 +0.061186221597493255 +0.016600318326521632 +0.18368171724232174 +0.10575245076152655 +0.11811807751564607 +0.0069431884704 +0.019213992 +0.0233568677524 +0.28183984478133883 +0.07141322616637634 +0.0896089459460258 +0.015154469196919025 +0.020584159651433672 +0.27726020118019085 +0.03291569101513385 +0.023523938168023152 +0.12499136426340492 +0.02350959846070259 +0.0357534 +0.00689604 +0.001744296000290716 +0.010156815664494844 +0.021865098305328096 +0.004115176012206162 +0.1419895723965927 +0.028268155057075035 +0.02696989758191208 +0.03299213744260078 +0.012012957968783284 +0.014663790726484481 +0.019877487098868524 +0.003191516125 +1.7990594306333882 +0.015475063406131615 +0.01775694507628392 +0.23845293242087393 +0.23997805856336504 +0.014652630787120048 +0.0027065 +0.00239899296 +0.00654821870457834 +0.021673899344795328 +0.025560608136808417 +0.021327352925843025 +0.017989794980436576 +0.002497026 +0.01149346736448027 +0.00754724315187612 +0.010650480997004512 +0.001745064000290844 +0.03833393660402008 +0.008257367182813013 +0.004078704 +0.001650939 +0.26960241496517284 +0.07720870923368199 +0.13020958443245179 +0.045900425435778575 +0.01062633921981844 +0.003774836000290372 +0.1035237796471687 +0.01926437804360532 +0.1124813242577874 +0.006589939587664771 +0.029248678831703186 +0.012325956007944417 +0.01927551648584172 +0.005540262 +0.05586942641542203 +0.025804052125882816 +0.5812949360610029 +0.11827250882438298 +0.4269495267815797 +0.07172007163530643 +0.006892867285173238 +0.04576920446203497 +0.023449293432883277 +0.37969031878764903 +0.0217781773623504 +0.45759382452992176 +0.010262902445426728 +0.0301778091803826 +0.016509963718780024 +0.060296403496523425 +0.015729191775189857 +0.10947419416681532 +0.11892828215603518 +0.02690924934732078 +0.02363941544578 +0.10786739668790016 +0.01962152421923579 +0.19696981976507935 +0.0279819743846499 +0.11643696404866058 +0.010328123239451472 +0.0323862256368674 +0.003826257 +0.008985204 +0.09609488821711998 +0.01311451536687684 +0.003813342624 +0.039769884508688715 +0.1148443856917232 +0.002036216000290888 +0.01441162807896 +0.4927347660200777 +0.13814563168061958 +0.06534777094191803 +0.002240784 +0.01662931002270612 +0.6820979983302814 +0.002707175 +0.03449728994310821 +0.10293091401983724 +0.013014018359897229 +0.04258474249050493 +0.08213307128745781 +0.17802845067765546 +0.024545648336386647 +0.1003209445260055 +0.002736961587345046 +0.00086133882542139 +0.03960092790794907 +0.038949751344369433 +0.007087872 +0.04920029646618708 +0.012001769897953396 +0.00240528288 +0.009201230559582366 +0.003045471285 +0.07579609697538511 +0.19694172754217962 +0.1408233019898567 +0.005596610078974992 +0.2118353235123964 +0.01645705063918125 +0.011337589454771393 +0.00223056288 +0.0018074558318376 +0.03348426482240357 +0.009733785823122391 +0.05637862072565186 +0.00599818880398556 +0.08295404837571083 +0.0709196133328447 +0.0317702815230096 +0.03227037169227641 +0.2808483285974027 +0.009972769279609772 +0.0028924 +0.011410717493027144 +0.04525575015148877 +0.00767471106693318 +0.008994970398511276 +0.01785725720474624 +0.01455472195406494 +0.11909905262012871 +0.08974715855054863 +0.11302724353572327 +0.43743344047082733 +0.0022442784 +0.006226780398642488 +0.1041184339982282 +0.45398737692929564 +0.03206448093102863 +0.025038143686734383 +0.004151358288350128 +0.001744296000290716 +0.12375033483715488 +1.8038866952291077 +0.12571774562414026 +0.1639615261443126 +0.11283419752236105 +0.01505529399950114 +0.06356866769689086 +0.1425224862928225 +0.36195577386338035 +0.10112671789690049 +0.039726983165285806 +0.015923994847735344 +0.010657088 +0.08578175330184386 +0.03176022550847743 +0.06923405130350795 +0.11301932589306597 +0.0022097714 +0.1997448544412495 +0.010178777046577148 +0.2284163949582302 +0.003840193825 +0.0262720173813916 +0.027394173231246377 +0.10269483320576413 +0.00358146225 +0.014133707359968953 +0.1778752675926983 +0.06107036270640286 +0.014246100000569844 +0.018663694832440132 +0.02116516908683892 +0.12269726238583382 +0.011943060000398102 +0.0420710994498 +0.008866500473355505 +0.001211997600275454 +0.08657968001702594 +0.04802129503259062 +0.009474884204595416 +0.06410181169983897 +0.07521324805451828 +0.22393704914795334 +0.08081741806314438 +0.0024693 +0.3395378865479388 +0.022625793945069438 +0.0961093813196248 +0.01646215805476125 +0.035264607126625595 +0.009880922982399351 +0.002413236475 +0.00941733837546972 +0.0024041472 +0.807075493104762 +0.0040738835021248 +0.016637753007893052 +0.04228286553128536 +0.004023819251924073 +0.4606106490139691 +0.10204422367490126 +0.23285858734112624 +0.00332166 +0.03205317081293423 +0.0040527715 +0.006273805089173006 +0.001299762 +0.014445424978143112 +0.1174700225151451 +0.039876002744800174 +0.01598658437443364 +0.04414810335661234 +0.08624429359962488 +0.1406369749679884 +0.019462338617761674 +0.01587686574264908 +0.0552313022663142 +0.12093229930973126 +0.09549805144887032 +0.00743400541786993 +0.01008361415061 +0.0691316190523685 +0.00782620234877818 +0.00864775867339163 +0.01068582373717554 +0.003179372529 +0.01381919042471961 +0.10515033139699566 +0.002082531360095354 +0.01039781198628357 +0.02509221939534352 +0.46334224878800234 +0.13360175873093807 +0.019956366170672025 +0.042236038453975513 +0.00578605911764748 +0.0011740236669 +0.10433806648201628 +0.008752090171064788 +0.001144258321929102 +0.03624165120922864 +0.013181994828102101 +0.011943217129305324 +0.007252058332035768 +0.012012957968783284 +0.06741521320944661 +0.01721554591153325 +0.07015141648738671 +0.028142358089519377 +0.3226529904451653 +0.1604683871786392 +0.020345432 +0.040670942114595834 +0.09844708765771358 +0.14824187012717716 +0.031961406959387394 +0.6856641607023805 +0.01408096 +0.0949055168499165 +0.03466904708942937 +0.011458955914358804 +0.04336041477358209 +0.10726521164243658 +0.08796877685182514 +0.11301653346960666 +0.12933271379243513 +0.10272464897689575 +0.0042157891907811 +0.03149502677522065 +0.07983796070896966 +0.14372415752704568 +0.017727411695699663 +0.023087189351588624 +0.20114971609304472 +0.0058561464 +0.039250889 +0.023437992318360704 +0.6989901923075412 +0.01678411709651826 +0.010998791580397852 +0.1319040694736891 +0.0060666408 +0.01829289499399808 +0.5214303736671141 +0.015888320512875205 +0.005739360000191312 +0.0358965849240999 +0.001680272 +0.11328168782381218 +0.016055013107756377 +0.05313517295083427 +0.03262694884125516 +0.2600981413557034 +0.001161328000145166 +0.03766315558415132 +0.001580043714241472 +0.04474529401065472 +0.004045854827743414 +0.005667589806977028 +0.0025400554803 +0.011987249761382723 +0.002816723805180733 +0.10929168468857665 +0.02783394958137519 +0.01408352 +0.09899224415162915 +0.0040351011 +0.03591773544772915 +0.006080031074294832 +0.619310436454424 +0.0747115341689648 +0.009995620527470304 +0.15838793917579785 +0.023349874870584625 +0.421234180621742 +0.0930898428089264 +0.03059217209919571 +0.03662384902795025 +0.01303746186846356 +0.03592628604155488 +0.006010613933932156 +0.015444028916299457 +0.030367839573142114 +0.06926658092265557 +0.0074779439912905 +0.08499128138356225 +0.01658059276770893 +0.07471487112663282 +0.01231624785497184 +0.007390128502050435 +0.00248014 +0.0059111995134 +0.024177351491808656 +0.21872611938352562 +0.0032636 +0.012700712341808073 +0.00948807663069414 +0.015153130571380416 +0.08575843472604695 +0.02416234935402312 +0.001404795293027893 +0.07340084002535857 +0.008902049057686944 +1.474310195663381 +0.01045253624577747 +0.0035380164482 +0.16995342718959344 +0.00731677320054972 +0.005492214076938984 +0.02113320000140888 +0.011478413428845523 +0.026341837337346408 +0.024192353629594193 +0.01828155122251565 +0.09289651399630199 +0.7311585761623335 +0.0210651202944 +0.01044929332669635 +0.024826698032266153 +0.04712908108056869 +0.021059839540686992 +0.018858995212592572 +1.746292627182236 +0.07810399335866945 +0.015186063453095236 +0.00231615000030882 +0.12437117091136729 +0.025745815122390884 +0.000982981569046576 +0.04538023330579476 +0.13767716720386816 +0.03662495536298979 +0.010995287600024333 +0.050936622815708266 +0.41441472516877553 +0.00882745941266655 +0.09501112874657013 +0.003045440000304544 +0.02541569348329657 +0.09992206556994743 +0.2147188260122605 +0.02416328698763472 +0.00928638078170946 +0.0812756601680886 +0.02427859203545024 +0.032539710239107345 +0.011817220936839307 +0.06738553161880184 +0.15841677226462125 +0.0319897744004898 +0.002622200406784 +0.026870127789555547 +0.0022442784 +0.030230832153487784 +0.3342335645280527 +0.11575052434119774 +0.045905468669073544 +0.09066178920510556 +0.007260165 +0.00997840913888126 +0.10277553148517023 +0.051992596238544 +0.011702210344130213 +0.00021474785516912 +0.03487929525540403 +0.5118963122063256 +0.005471458948902644 +0.0422688646319497 +0.3084727739956173 +0.003757075793660156 +0.08018666788417127 +0.00227232 +0.001452138796727555 +0.1659490364267656 +0.15720153596266975 +0.03462761812640832 +0.511106756389795 +0.006580451582150448 +0.019287875948557624 +0.002818986 +0.09487337197200953 +0.021610263366658423 +0.3316038077683333 +0.00743433255 +0.00224497728 +0.06870027174793375 +0.02320527978517937 +0.08600697605059482 +0.01398275768927044 +0.014246100000569844 +0.018176230165496573 +0.00206929632 +0.004635357395259915 +0.01548946857362631 +0.3912785393888443 +0.0082347046065144 +0.11144753932662836 +0.00597812567249932 +0.2976497614197502 +0.008647855072025895 +0.08103402638619338 +0.025824572919138197 +0.13676309126063751 +0.037059533369246306 +0.023050314 +0.09083035613855654 +0.21318026276406365 +0.010980815375348136 +0.1513707786622803 +0.05310730864198596 +0.0265352656165697 +0.0145637616276579 +0.021598492159719 +0.01657778595082582 +0.015439612425089242 +0.005017188 +0.015384035446620448 +0.007627694328698956 +0.009050035429113666 +0.34995487024521477 +0.001694003486003235 +0.10619990794926187 +0.9073747542132 +0.0134316178724519 +0.00256628736 +0.013177130985673337 +0.01848324719846864 +0.01724819973215976 +0.012248201345726384 +0.12141131284995464 +0.01544082180545424 +0.003488352 +0.014887601797576727 +0.039526892445695315 +0.01848866801186612 +0.003190555121 +0.4576008912396337 +0.04093261590653897 +0.04041386303570008 +0.007077211336101312 +0.03902758196857332 +0.36112839307060446 +0.11610794179680631 +0.2661656663305023 +0.01408352 +0.001763419863598456 +0.023139270938635353 +0.01926355715176582 +0.02171898727537968 +0.03891958753502282 +0.028338335051668807 +0.001743912000290652 +0.1536674951325441 +0.007553639967684888 +0.5343136566657186 +0.011481656347926644 +0.08321630971105812 +0.29859278319163846 +0.41669125752002584 +0.0032500909575 +0.01233103465337952 +0.02114472000176206 +0.24987561528944513 +0.3569636537424645 +0.0047117716258496 +0.00297578142909 +0.13545292858095323 +0.02524896693789177 +0.01892509010083976 +0.0945813549659848 +0.2624220714942609 +0.6649658299341847 +0.013196258207963774 +0.019857083766251876 +0.008372280000279076 +0.017427639576496453 +0.023441233789630436 +0.07761425376878853 +0.007151785063185008 +0.021549877895360475 +0.026766517111398613 +0.039487639479631416 +0.0303662192697402 +0.001833912000305652 +0.03455351713788416 +0.013947225934158 +0.109883381436108 +0.011471927590683283 +0.001744296000290716 +0.005447106 +0.0134656704 +0.14681846369589527 +0.05364920749563511 +0.019875445749166824 +0.07042720425925283 +0.14627579127271503 +0.007380241651553142 +0.013735292563097664 +0.08933131248032235 +0.016464558574695264 +0.6392640067224824 +0.04487599469146296 +0.04484839407434595 +0.042957410379351704 +0.0876983485839715 +0.005489174212051008 +0.02000839614802636 +1.2816476442171831 +0.13513265692755688 +0.05300200463959699 +0.002972185005 +0.02424520788282889 +0.0044164203 +0.22869290033092565 +0.01746479748231295 +0.00182512322593156 +0.017531013653732504 +0.04372705214789006 +0.01146817796549574 +0.003039963800152762 +0.27416831461213564 +0.024065773092028737 +0.0719541433095116 +0.014992900000599716 +0.015499906710499048 +0.001746984000291164 +0.031184585910141057 +0.002555467500340729 +0.014318994979848 +0.02243788310572428 +0.0392333343558 +0.01351723809514432 +0.07800792913582807 +0.36259968577554674 +0.05338698454947274 +0.008610475346108771 +0.007547756821105442 +0.03696519032677902 +0.5560052332154589 +0.02062056973086387 +0.257216260341884 +0.00379752379852992 +0.08556547606165593 +0.001405588312582172 +0.06421166122751217 +0.03381379406256971 +0.10762133963771683 +0.02451095849178008 +0.03196462718451996 +0.03537163554810384 +0.009926188052847463 +0.08627775070384566 +0.024154848285130353 +0.02021849082762652 +0.1350872803493693 +0.007903808053976983 +0.007006252189578138 +0.00224943264 +0.002316032 +0.5238030143329 +0.01347839779232544 +0.08549573462661561 +0.6241874873499529 +0.08821817660100306 +0.003814085184 +0.01320017544320067 +0.0013265451 +0.01888517138255496 +0.07186747051133387 +0.0134630496 +0.06158580607775128 +0.007637981085039984 +0.003775668000290436 +0.002221282 +0.11618181725594343 +0.02316590502805633 +0.009205630998416876 +0.13153589743520566 +0.01121570163 +0.000879551598042775 +0.09653745480147542 +0.032035074616429016 +0.0972006521885155 +0.029061772731733725 +0.004971069480308379 +0.040613795576580514 +0.04159498026829542 +0.00417316 +0.11134589159061323 +0.00625734096 +0.242559411181308 +0.10158887374588835 +0.06801305383833275 +0.12426102110750836 +0.143277809233168 +0.014288002428187578 +0.030154327517672743 +0.01195525783923044 +0.004202888 +0.002073025265615656 +0.8907820877748867 +0.06803079511010252 +0.10980216764926311 +0.06596087648239327 +0.04598301429953423 +0.03441492413198479 +0.5331976928506258 +0.10813073722479881 +0.004271795678125 +0.12789521180800337 +0.00574597392168174 +0.024415582112761 +0.019267668 +0.15195849944642076 +0.012296095834455048 +0.0027240399 +0.0036061265332 +0.6470849056207709 +0.09171651101346275 +0.00421122 +0.1883699225573529 +0.04035682209493816 +0.018492402033688043 +0.8580383675179324 +0.09518718288927575 +0.04665077615722636 +0.01676222582944234 +0.04097042421795936 +0.015153654718770984 +0.001856335750322841 +0.09335441052386714 +0.001833912000305652 +0.0204908425472 +0.13811517912043525 +0.008023151963745073 +0.09639296135773127 +0.011444333556517469 +0.019561921245306844 +0.007694984149860675 +0.01501850000060074 +0.015093107633761248 +0.008025499431384114 +0.00866952117384127 +0.05264662119910023 +0.01509266718280989 +0.133308368014835 +0.01254752443997523 +0.04779468880895319 +0.04555572917963848 +0.042123629833190145 +0.1079213800762586 +0.04724497770532328 +0.03231921082870706 +0.11957732545781091 +0.004908716564545604 +0.09023457217938081 +0.06163093327635551 +0.02211906433964164 +0.11432773572117526 +0.00383509361627217 +0.003977191076501474 +0.050574010735817354 +0.020300596374134647 +0.15263586659365846 +0.015845628435767443 +0.24509684752698208 +0.02476278279734292 +0.025539097420389015 +0.004886519802131231 +0.05067819122694123 +0.014262100000570484 +0.01822592672462208 +0.07852923268231034 +0.015679793128172432 +0.09731707151280934 +0.003807947702464314 +0.001368858121717812 +0.0011000658 +0.001795702999861869 +0.24676529126316635 +0.0018643101416 +0.00926798993620637 +0.017966839441832125 +0.026508 +0.050632679536243015 +0.00926034315740304 +0.0572889221838902 +0.06417500100831576 +0.23778290702821775 +0.001745448000290908 +0.3722097800382412 +0.062357037875782874 +0.003539189472 +0.02919990957958838 +0.00096440000019288 +0.016806525986718723 +0.03042419822416392 +0.091524470373829 +0.38506013121316557 +0.013207051445064871 +0.0802629635681096 +0.018322687624919533 +0.12874985078766635 +0.017437503725611588 +0.12686859976686954 +0.010654608158273902 +0.048854416938288 +0.002387489765305476 +0.08893531203176774 +0.013196446086257373 +0.3877462127827404 +0.01775789648892 +0.001477949701889208 +0.001177271493445953 +0.017053630830601386 +0.08503051021531542 +0.18634406387981176 +0.04622443528596375 +0.9844295528388514 +0.011462198833439925 +0.5777318949197107 +0.007165259670225273 +0.11669342823062548 +0.025794240251276954 +0.01900820399911936 +0.05620454584658282 +0.10402072503437297 +0.0511103801090523 +0.016007143259973797 +0.47636666650071147 +0.00239645952 +0.00112538 +0.00545267112 +0.09904967994493473 +0.00493108 +0.1476020599595505 +0.04665163371249602 +0.10711388980911482 +0.4386493455199117 +0.08682263370616526 +0.003830925 +0.02652336 +0.07830303626949511 +0.0269586450432 +0.06183181507169245 +0.01755720716471237 +0.0381244601810445 +0.051396422518643695 +0.5421591117057788 +0.09099183735981647 +0.001045183079878304 +0.1040050905284911 +0.013871801801158271 +0.00295455349675364 +0.10424996390508062 +0.02416234935402312 +0.085082232463176 +0.0044255567 +0.09594080248879659 +0.016888599484094543 +0.11928313127221088 +0.4270669646166891 +0.037356443401155376 +0.04904335035113241 +0.01495304074270371 +0.06187979152965472 +0.1222050191529255 +0.00818161199995338 +0.10143512152490637 +0.01928115 +0.017776466906176253 +0.003966083731573758 +0.00660539723086125 +0.0037944788596 +0.021246188909516475 +0.00445168666538397 +0.008393880000279796 +0.01486070626682671 +0.004038312 +0.002997 +0.003594812000276524 +0.22916423042363832 +0.519312773995751 +0.04078799436194928 +0.004160079 +0.4270770423254788 +0.05921934668972258 +0.03590836779962163 +0.0306005576136 +0.04742896407517188 +0.6264425302043721 +0.03272912450273863 +0.004706364203215483 +0.009089161952809614 +0.00734811215831964 +0.024169251699477808 +0.013971407169120318 +0.06984864483137897 +0.013452854961714576 +0.1016730106015077 +0.07205297853063407 +0.003113446642704432 +0.13538875799442895 +0.004294672310719674 +0.001483729135360953 +0.04697582114487571 +0.02152077832983688 +0.018287223108256864 +0.00451751786260782 +0.008802281688904548 +0.00889777976512842 +0.010269375357004264 +0.16335662923648778 +0.13537628445845654 +0.024253629884171988 +0.02202946695024925 +0.014575005567805981 +0.01494037772886915 +0.04242983475597675 +0.5501221762512084 +0.089218729336041 +0.09574540847711656 +0.09258432938223361 +0.0032243343374 +0.04700482938663603 +0.00239601925 +0.6026356064533096 +0.0123201708102498 +0.010858111143866237 +0.022334113893912266 +0.08808930033821656 +0.014201888861849586 +0.006626416775796564 +0.07210162166434422 +0.001258506480390033 +0.01045577916485859 +0.01710887771245047 +0.1570493750625879 +0.11360449888902978 +0.023321838543025636 +0.0916375758365961 +0.003186361649 +0.10220021978855655 +0.00239969184 +0.03217744813278143 +0.15956422540590728 +0.09741680493409552 +0.01345728384 +1.0733845987674433 +0.00132637203186701 +0.15826734826421834 +0.027999070892266633 +0.001736100292690569 +0.16718846644994392 +0.04514890198850178 +0.01931510784432285 +0.04720293029180198 +0.018738600508992 +0.011613805906035429 +0.009619547015837468 +0.16720721119666201 +0.01828155122251565 +0.02891772238410242 +0.19412810387782575 +0.003814085184 +0.022948717598 +0.021022028645298167 +0.004076912 +0.02479373387402617 +0.0743195603349708 +0.542733221159537 +0.014187219683824257 +0.026579728472686675 +0.040532014971459376 +0.0106242296002768 +0.0032582722875 +0.05731759265032728 +0.09016822456089825 +0.10408844421270472 +0.03041682988793669 +0.008208937259633151 +0.058460791263037215 +0.0073152330202 +0.0039258381355125 +0.10897950117845184 +0.04217065926718617 +0.128504034001863 +0.08317631693163277 +0.054440268693987326 +0.048546088620821486 +0.2256924355440516 +0.05325800344324682 +0.055212561678993195 +0.3723506801357961 +0.011861884009444363 +0.00358146225 +0.6684053618039631 +0.07556055729632027 +0.25223166189708357 +0.00083732554 +0.07369161455827158 +0.01649217983769089 +0.000801624 +0.005665895538985824 +0.006200997353040525 +0.2697218851867607 +0.05368691946161576 +0.00427425444266304 +0.01343040157910151 +0.703125301607711 +0.001069334000152762 +0.019840102072415877 +0.002143463000306209 +0.01600262342283733 +0.011397148370561072 +0.00429505990013376 +0.015200669825396203 +0.04307456144000427 +0.0258082025613885 +0.01417232276266 +0.013585519295701573 +0.5668845732664419 +0.001743384000290564 +0.023554091574441764 +0.010923832899951892 +0.03958516955345149 +0.01444008384 +0.02419903406680755 +0.037299170801605414 +0.10067845075704873 +0.015604504048524202 +0.00411170257788818 +0.018185412921845057 +0.10347899785299552 +0.00224523936 +0.00706480000035324 +0.038176634158110505 +0.06618544102271887 +0.0165964092085026 +0.4010465120639687 +0.010588260000352942 +0.009671163201044273 +0.07673479565534447 +0.004013464 +0.11455526351959465 +0.00240694272 +0.02008148871320466 +0.0036285815 +0.050940170301120725 +0.016394859599338302 +0.20567304158926916 +0.02345638392133001 +0.011475170509764404 +0.034917348360138684 +0.01741999571420945 +0.07565116702781632 +0.19238946088575662 +0.04153567111090661 +0.03688933825543725 +0.08831987497042673 +0.15021530274324565 +0.05335905458852477 +0.13254814609320376 +0.7331361237395836 +0.02481926582849497 +0.08577286001177732 +0.15375023084585626 +0.11996336866894727 +0.000581816000145454 +1.6033992 +0.01045253624577747 +0.0140088846558028 +0.001446875976 +0.01906153972999497 +0.12445583455605916 +0.015487007978318977 +0.018062534805406875 +0.00438072835 +0.00428498904644304 +0.001453280000145328 +0.011393949785174308 +0.018165780016139953 +0.09494351965473397 +0.043736054121001386 +0.002066063708904314 +0.08254736258441034 +0.044954748 +0.26807030725743247 +0.01784150819641145 +0.05335680989180963 +0.014799468111280757 +0.06463768270769325 +0.0110963675769429 +0.030382398686377883 +0.00267204800029044 +0.09113894877660274 +0.01719896565024232 +0.9460945187543326 +0.2290188049624151 +0.01608173955862458 +0.01149812085105909 +0.10204902761144927 +0.10929529954002563 +0.02849243513585616 +0.020093885065824203 +0.09451072703993404 +0.1254035380156462 +0.11773322712149177 +0.5005522044147036 +0.05344529934962231 +0.01709510953514778 +0.045709230069174274 +0.4733310197766987 +0.02568293072184666 +0.0802873725969031 +0.031628810180763925 +0.013559587674088536 +0.10269483320576413 +0.1941753448632047 +0.027065982616651777 +0.404333917643705 +0.12661710679007698 +0.09943899251670436 +0.04143513906705978 +0.002736205 +0.017537820001461483 +0.019854068708580447 +0.010266138901215496 +0.025179610161594913 +0.030462180665845003 +0.11081073071790196 +0.2679282916163987 +0.029958859516481324 +1.166740412116853 +0.09008031627502881 +0.0008294464 +0.00257746944 +0.002906960000290696 +0.0074813189776 +0.3003537969073778 +0.009812317007090003 +0.004033528 +0.02388200085475808 +0.012020416682669876 +0.05171967571647838 +0.1175118377649719 +0.01704555310644858 +0.00240318624 +0.003774836000290372 +0.03960250934954132 +0.09857909552351818 +0.002122525 +0.0978288419416801 +0.15607581732276832 +0.10368927007530751 +0.003194748593 +0.09792845300364952 +0.11402253080899621 +0.01225756274879136 +0.3536601601547244 +0.0598578245791432 +0.10550911167660641 +0.004238533837201704 +0.003665452207499567 +0.099311664603142 +0.00515037568544442 +0.013927882625966084 +0.02068795399751724 +0.208129375371447 +0.02657991986324803 +0.00557256371526626 +0.019239168202528644 +0.14760738207267415 +0.010105080760175763 +1.7194008 +0.00631570923879448 +0.00099941083328 +0.01616318738760708 +0.08274970280426909 +0.10367013508091884 +0.01057528172924862 +0.014464770450692091 +0.6223337730338487 +0.13067556039195574 +0.00862614942998741 +0.02005312928449858 +0.00961201412776678 +0.03109144396440168 +0.010439560872 +0.46956016834762654 +0.0104498421713686 +0.00409058597284 +0.7403274317179501 +0.08578590830707751 +0.12533103090182013 +0.07134045986619426 +0.12787390124299045 +0.06303462434371457 +0.18599265482728763 +0.023104198022703217 +0.17969888083241434 +0.06801770918806664 +0.29704246276775337 +0.02554292927328246 +0.01531596803506938 +0.03553143678041088 +0.01943851446251056 +0.1562332909445688 +0.08731216930902909 +0.00914308634040139 +0.098965461294977 +0.02221360072872257 +0.01709157342126068 +0.33725079520157625 +0.07284609454457452 +0.19813039106151203 +0.009948533533778644 +0.039017114069614216 +0.004362934325510607 +0.005196667973339904 +0.05534932917405199 +0.027011350917909 +0.01045577916485859 +0.00301243785 +0.004542903029946514 +0.10971272033586825 +0.02227393268517442 +0.03383359480753969 +0.1000794163601388 +0.032528701704971116 +0.013917650039890091 +0.0334235113186908 +0.00240554496 +0.009083522093538125 +0.03195602962203408 +0.021210000001414 +0.1614040987323636 +0.014811242539829184 +0.020817889589362724 +0.006866858832515712 +0.00456079153753483 +0.027268686421493073 +0.001449760000144976 +0.001104163842857793 +0.005701963202896443 +0.5768298094329705 +0.4530908313119648 +0.20949071504626268 +0.10269483320576413 +0.15658293775537502 +0.054734748 +0.02448382787691692 +0.21181508837885565 +0.5931411040108351 +0.00224637504 +0.003728063557125 +0.005242418529641822 +0.0152748897981 +0.01682071328967246 +0.06462499494830752 +0.002541891081375945 +0.018185838150632624 +0.060830680064457424 +0.08384341765271872 +0.26984388910195023 +0.00962085720722348 +0.08537949890154842 +0.01821428912248288 +0.0033235 +1.5583362337592637 +0.022200581410914952 +0.0755269410512874 +0.024147347216237583 +0.011843274395858925 +0.00686025600010994 +0.07754507140072157 +0.00553799693262004 +0.019131647032695247 +0.00069256672716 +0.11025860228262221 +0.25304849918629846 +0.5171298363621746 +0.1661138136670034 +0.01933582932925205 +0.07807329383356794 +0.06607735392603603 +0.018356989026349073 +0.009106081530624078 +0.1914135163992135 +0.06906366485403169 +0.012726982114974077 +0.00257117952 +0.00410915362338514 +0.002134063007767932 +0.009709781568522945 +0.3830058407799689 +0.03719441343806328 +0.08149472696839113 +0.14084616928631355 +0.06597614330633325 +0.039558234421612846 +0.01346862169358181 +0.00537746906118 +0.002511078081850233 +0.004479684038280703 +0.00226106645037421 +0.11845569378114675 +0.030168004987771727 +0.10031951764565925 +0.02113320000140888 +0.024930761606887345 +0.08014017359414438 +0.45922619176480334 +0.01834883081156879 +0.01142719164616496 +0.025677262752706594 +0.12017433380888624 +0.08725264540512914 +0.040402454847547696 +0.0203682839568 +0.02583262077995504 +0.09571844424756526 +0.10365970913227888 +0.01649274161864249 +0.0016850721672 +0.009120421189794798 +0.022801351646461583 +0.1123569741236038 +0.25629028803559223 +0.03689455138514859 +0.01441171470564496 +0.07743259962538829 +0.03675932126225982 +0.39974440140145184 +0.06809102487322725 +0.018067642220986876 +0.049925295569424294 +0.10074850034246945 +0.14468606772983983 +0.0069775244448 +0.08004718501409062 +0.003974262 +0.0193686433443949 +0.023833977740567697 +0.005536410133541664 +0.09833308069961376 +0.07863499128592134 +0.025094072452495904 +0.006856932072123588 +0.5118849605273437 +0.5772012204107844 +0.02387240432166952 +0.017364139116567763 +0.016181091237975682 +0.001452960000145296 +1.567158488867631 +0.17231499644620607 +0.001565619059036505 +0.2205698324870276 +0.01643650240100587 +0.01212315822744064 +0.002899920000289992 +0.024780942891477673 +0.350188884417999 +0.3314902171904248 +0.09357191395541861 +0.13812339968972076 +0.06221220307841583 +0.005101885771314647 +0.063972741645636 +0.027795327986471847 +0.06405330305261331 +0.03498152492815458 +0.0044230020625 +0.1273628019067395 +0.011832362189519692 +0.0040502 +0.09815642207996086 +0.002905240000145262 +0.06185113180003856 +0.08033978067524325 +0.00603791230527136 +0.013594079715070918 +0.08009367930411751 +0.0021696363188 +0.015353935653561301 +0.0622469041644711 +0.026254803882432527 +0.10451806161825221 +0.014209697770546576 +0.09541506620147791 +0.03973978007585696 +0.12023174809023399 +0.1441213401774078 +0.004416487682283768 +0.00470052942958126 +0.4524176481869225 +0.012470771399162075 +0.016816715467281727 +0.08696525210120652 +0.010700352 +0.017563514104912074 +0.010285744 +0.11213788521627027 +0.003068511800443905 +0.02773828327166607 +0.04268308705954964 +0.15330057269768582 +0.06987696153467675 +0.08969616887007172 +0.00688022400033078 +0.3070184268535096 +0.00880287181608975 +0.42139367760606466 +0.043682644099624496 +0.03592347183686314 +1.331391321278935 +0.05792012134889336 +0.1561680826716195 +0.29957686252027976 +0.047803983883070014 +0.07256280422861211 +0.04919010482016477 +0.0055572589773792 +0.02791840966650308 +0.0076895998181628 +0.001512618622749405 +0.03683657360488903 +0.10268278730441578 +0.022254155986789752 +1.7199 +0.08963537749746174 +0.00511565808519255 +0.01234393117693205 +0.005284593 +0.002515980211371633 +0.4248491863811259 +0.024968248161556853 +0.10600301899527005 +0.047925423951562685 +0.027556090484445316 +0.015180201759828016 +0.00041098523994 +0.11747071281085616 +0.003050560000305056 +0.1020570489181059 +0.03069300958030115 +0.10387400197747228 +0.20891951254197139 +0.10075934827013688 +0.026461192561253614 +0.01799333457420288 +0.002389855386523564 +0.006679064193613488 +0.028329855861843015 +0.05136773123983287 +0.18908533231768698 +0.014645611955006329 +0.0018285588 +0.0020804784 +0.3163994198457302 +0.011475170509764404 +0.006049496273279368 +0.019994812047659957 +0.003569468704645905 +0.11952685755954519 +0.016243726241858752 +0.007219871444566572 +0.024049479373495344 +0.031014341332851744 +0.00241017504 +0.14074305972882423 +0.05178594291516168 +0.014957603836681077 +0.0512811636620822 +0.02050083969825041 +0.21092892302590274 +0.19874111467755687 +0.002480268 +0.07988445499899655 +0.10471288298817151 +0.013303218336875687 +0.0141632896424 +0.068457090448656 +0.019267668 +0.008106856 +0.08788525643762429 +0.0371081511457061 +0.029218005776093597 +0.010042705210916592 +0.10604459769005908 +0.09656823159815515 +0.05168576760797373 +0.02360011500047677 +0.005269748950192248 +0.03599073380462514 +0.032753957668915 +0.10083509768486962 +0.012027067004955807 +0.003775668000290436 +0.5581796529477305 +0.07469162398161938 +0.013207634157087263 +0.18826592595704747 +0.020265069935741706 +0.00432600743663466 +0.012468500454466938 +0.0058088 +0.017153838221902272 +0.02288907030650024 +0.013215092870973853 +0.01929814982357568 +0.03780276985680966 +0.003175716 +0.013802035382780282 +0.23180658857539493 +0.1553279124659592 +0.013209577069497068 +0.07836702040764072 +0.08119358915007109 +0.2814432634399224 +0.08558872320666938 +0.012288611527925968 +0.07682850586443063 +0.00152025379942246 +0.035139303589182325 +0.11294600827811332 +0.003774836000290372 +0.012625039024114968 +0.02184804415375283 +0.06733885995171006 +0.09934256879315038 +0.010119664681388328 +0.11066846574820105 +0.012807411788384968 +0.4332181118380335 +0.005409252 +0.200165752781098 +0.5981090575048787 +0.012696742062959104 +0.3090070490355431 +0.2604704595867966 +0.22736807186680527 +0.001234559405590953 +0.003168861300320087 +0.483650506922719 +0.1151893827065205 +0.13825623844878854 +0.09654961171337298 +0.0029566306 +0.42269541763889373 +0.01410965713966394 +0.08229030477932295 +0.02167792621606912 +0.10074069937064933 +0.012042792824329651 +0.0022403472 +0.002784177737616128 +0.14114614567939657 +0.012047372841243732 +0.09693656931761564 +0.015158757957403856 +0.01391892365025 +0.021838310894745992 +0.13473752795021757 +0.10662657908456173 +0.033937563600956434 +0.011843274395858925 +0.04693609810027096 +0.0358881285267507 +0.05014180662778648 +0.15544394676453824 +0.2713877715703271 +0.01739682 +0.11930039229337798 +0.03385897576342633 +0.5007569903121322 +0.1150639592550585 +0.046154020001343735 +0.01413216 +0.00266820156558949 +0.00116184000014523 +0.010587585307141927 +0.151180683606435 +0.04524062935789994 +0.12576939194841597 +0.027580005011764993 +0.017521611086981827 +0.015173461221426144 +0.000777671520481644 +0.005525840000276292 +0.02179338550603032 +0.06463191214649197 +0.00124990536425422 +0.04335790351313888 +0.13651762309453994 +0.2672124498729695 +0.21488054704113377 +0.00932924321004226 +0.13291790867405076 +0.02209409928105792 +0.017099171801349382 +0.04961895660680122 +0.12573562344460912 +0.0335603248130535 +0.003978648476625 +0.10798758316173601 +0.021622971797024 +0.10090181704868516 +0.013412221167387207 +0.011907121981033147 +0.6212495311085918 +0.001743144000290524 +0.08390605308876327 +0.3389130412152961 +0.05179873702855176 +0.44252333281661127 +0.03360592680442463 +0.2713088396504152 +0.07106843604819067 +3.3022799129050218 +0.013833138523541445 +0.01445266368 +0.02006447305598101 +0.09381593785418388 +0.00106858648947809 +0.04555664560140889 +0.024853860195275832 +0.07377221014736914 +0.13269849004792422 +0.0197238712944 +0.030501198604864384 +0.01175989150614713 +0.1244661726967419 +0.012904284048604702 +0.002424799509922154 +0.36513160313692516 +0.00257397504 +0.008181019605600085 +0.44433152450176394 +0.025295286806723712 +0.03966900017252294 +0.020648536474767124 +0.044143910151920526 +0.48698721041421633 +0.00220365 +0.003192913949 +0.09744051776483476 +0.007900304733864825 +0.09315039977532778 +0.2571958807412637 +0.030330954412500444 +0.01341949838871034 +0.00459967602444375 +0.0079568904860168 +0.07966660116945376 +0.08456193676742797 +0.02135589086463764 +0.03153134029978495 +0.07912378064356873 +0.05712905399275808 +0.02532523119352128 +0.009395702484590164 +0.016691087528802624 +0.0840160742655908 +0.12912534910899892 +0.18502891435631594 +0.6274720054260251 +0.11153072075030586 +0.5385727562740771 +0.004959630875424962 +0.008188169779102457 +0.00240668064 +0.4983910957530104 +0.048973350291821344 +0.1162031441058315 +0.41071292492950734 +0.0058382013023498 +0.1181279775651297 +0.1985575890324584 +0.5881315957671779 +0.034752115847060915 +0.1032352917589534 +0.020287964751594938 +0.6797093736260185 +0.39436110035114935 +0.16506880910636829 +0.006274582748261512 +0.13990725826298206 +0.09030757273918574 +0.08011692644913095 +0.037885740344217454 +0.542075151033777 +0.07225085103382285 +0.022983139258204447 +0.11928575074000303 +0.11047468211326236 +0.012526046334833087 +0.002181828999832167 +0.001745064000290844 +0.12428670944821682 +0.08043305497843083 +0.11696872251355211 +0.012569721217211368 +0.04762036744053283 +0.049077175832291285 +0.029199504037338776 +0.02877958599984 +0.00346639 +0.19513925430583084 +0.01457732113804734 +0.006404985600205288 +0.00231824686045421 +0.014012350544045654 +0.00671991488783124 +0.04609815728944896 +0.055910455485656194 +0.4188653559394707 +0.02359377900047664 +0.01125278324533748 +0.12424217100245757 +0.008755980000291866 +0.05785482765945705 +0.038006687678179586 +0.12362870096106664 +0.024818297906404607 +0.06102145582566489 +0.02390690908368207 +0.11779773622272545 +0.3694777990064719 +0.011465441752521044 +0.16494078797640643 +0.09720629826377587 +0.001745064000290844 +0.05013070403867964 +0.008534696557370536 +0.07874665022752922 +0.001743912000290652 +0.01456828146445438 +0.09519219895675703 +0.00223868736 +0.05207368490397198 +0.01065147489764904 +0.8493402698104944 +0.6117449995143327 +0.00330303 +0.02922564010899423 +0.003323621 +0.001404340374470468 +0.5810388592526936 +0.010575643668380793 +0.028514842986388608 +0.01718929410664284 +0.08191494869756955 +0.020209630838449 +0.3070260761805878 +0.5677798711671961 +0.012729933750352128 +0.48595770159765783 +0.01086011512716837 +0.0183656743720681 +0.004850244 +0.0428296094283 +0.007549131482826258 +0.32508399623496503 +0.00400724187062661 +0.002037567000291081 +0.06423399810928966 +0.051010283821480755 +0.003513539829 +0.023235050048385816 +0.2791707656050314 +0.040534077985906976 +0.04691959530182837 +0.0169046425392 +0.026512762409891397 +0.005172132 +0.13172411031603803 +0.08445662720051712 +0.001744296000290716 +0.009981229068517004 +0.5843738300786131 +0.05995605066788762 +0.05700597707642751 +0.00791475240370584 +0.16172044872712857 +0.09664784792752922 +0.015163046717888687 +0.09789077467865236 +0.00898347000029454 +0.09398032512181725 +0.030550060376092217 +0.10443501598856848 +0.10848416118894731 +0.030881166017794726 +0.07967523069387558 +0.35843773444467486 +0.5257101413342468 +0.10594132585469349 +0.084968302318368 +0.018012124035528123 +0.009308965339758618 +0.010693311030100622 +0.00223309632 +0.017011702191119995 +0.01790795588550971 +0.030664596031375908 +0.019321538616784 +0.39631335988165517 +0.131265727638465 +0.3638723219828697 +0.10524213591306339 +0.030532432256785536 +0.007203599838544536 +0.00548032 +0.02676297391938324 +0.001425009000475003 +0.12375075767006205 +0.13750072565470164 +0.07924634017944861 +0.002003290082113705 +0.012973620940942876 +0.09527471903957238 +0.020862031856973353 +0.01706723404400448 +0.0152386915593299 +0.019022950346783585 +0.5788747894878411 +0.02340300562382976 +0.08136312553312255 +0.5486893523399058 +0.07331794140779307 +0.02085174236465391 +0.023416205967614154 +0.019948839067215448 +0.07838067416302844 +0.1608943849891108 +0.013211363514030558 +0.04407344854905661 +0.001549584 +0.0033806285136 +0.07067468688618633 +0.04034801541125811 +0.021653223080344945 +0.018103484591799748 +0.6884649869240639 +0.02337782577612243 +0.1016919052927766 +1.2228535680379706 +0.01368657127200384 +0.013064910134194849 +0.0170253709600982 +0.05835301601318906 +0.04170304424517687 +0.014610094488969935 +0.2051809436629855 +0.5716650836855475 +0.12408517043197312 +0.002036664000290952 +0.022716028489604776 +0.01187252386 +0.02993123306308015 +0.10312791172295009 +0.10033042092822 +0.010579772112 +0.012650289674895168 +0.009769733784548705 +0.06334443402190729 +0.35903707564078385 +0.00852160221526974 +0.026985974958177023 +0.01361067370780432 +0.002998807 +0.01892509010083976 +0.017756659123229664 +0.4461854207077025 +0.3506108914876023 +0.015402300004692192 +2.355613166986851 +0.01839882525482803 +0.12141693671778876 +0.006585097834473652 +0.13896577180612724 +0.001667774387653495 +0.01239708386840398 +0.015478913366599126 diff --git a/reports/data/gas_prices.csv b/reports/data/gas_prices.csv new file mode 100644 index 0000000..2770440 --- /dev/null +++ b/reports/data/gas_prices.csv @@ -0,0 +1,2135 @@ +927395696958.0 +32148560976065.0 +200568368847.0 +1877715468033.0 +3138581120490.0 +3615022296269.0 +118086886296.0 +107281302721.0 +47417134499.0 +3313566567562.0 +176892644125.0 +717060663647.0 +111667401230.0 +101139243399.0 +355795508893.0 +116542404478.0 +37128000001.0 +622286438989.0 +7744249470860.0 +177246429413.0 +1803561222908.0 +159765336467.0 +157469742977.0 +694805955034.0 +9200300000.0 +176892944125.0 +25000000000.0 +197780637670.0 +137818128874.0 +270631986016.0 +1514271820508.0 +4220388302969.0 +181326043164.0 +134023765151.0 +4855350503034.0 +2553553726092.0 +446729269064.0 +1977333988754.0 +726473281670.0 +2572660699715.0 +456929749585.0 +7800000000.0 +9509101126657.0 +41989959120.0 +14916427468.0 +57826519142.0 +47823100419.0 +1055053879980.0 +1108747732620.0 +299205941646.0 +365973282477.0 +131025668968.0 +222536959916.0 +241539649512.0 +645974268763.0 +1587019002163.0 +176892644125.0 +307026890375.0 +2883621133603.0 +107299920000.0 +20000000001.0 +110949199103.0 +661175735955.0 +715629704838.0 +282753070395.0 +10000000001.0 +5500000000.0 +6000200001.0 +53040000000.0 +28807500000.0 +8814806537.0 +42209999999.0 +540948833293.0 +742875961232.0 +25100000000.0 +66500497014.0 +47041498432.0 +1094459184000.0 +405546076267.0 +931742847863.0 +21841000000.0 +182260634707.0 +47383091258913.0 +109612548868.0 +193124151621.0 +1163956862014.0 +285346769374.0 +728705493653.0 +16530000000.0 +13000000000.0 +1088383171084.0 +76475571567.0 +1460516060550.0 +234408402899.0 +724869587892.0 +6000000001.0 +116310084909.0 +4304522054119.0 +486692744432.0 +889071162068.0 +330273414829.0 +1950718888420.0 +1298924885801.0 +188298048457.0 +1396990770566.0 +78191651416.0 +170906328869.0 +134023765151.0 +90618840001.0 +726473281670.0 +4882834640715.0 +1344745776022.0 +20000000000.0 +233940521856.0 +5266453645745.0 +3298585930161.0 +153819990543.0 +378499152656.0 +114087244143.0 +28000000000.0 +7500000001.0 +128784225351.0 +57826519142.0 +127872664004.0 +294122356885.0 +873239980977.0 +101139243399.0 +1057455679231.0 +483374431151.0 +7793489876456.0 +954010190457.0 +285346769374.0 +5589610000.0 +141244899890.0 +204649542733.0 +404929194926.0 +948312727674.0 +1075533454024.0 +10758740514.0 +318441981908.0 +99103821043.0 +973397184055.0 +639366423845.0 +1424872256994.0 +11130513217.0 +4829459660351.0 +697493059663.0 +107299920000.0 +988359798298.0 +58173940869.0 +243748556473.0 +426904863099.0 +25100000000.0 +376290000000.0 +783197618145.0 +141244899890.0 +6000000000.0 +75753526575.0 +1418770034985.0 +948312727674.0 +25100000000.0 +159317735132.0 +12996424990.0 +1251640301747.0 +141244899890.0 +989149382266.0 +221654609150.0 +2727671522410.0 +49114005763.0 +223344181545.0 +349841590895.0 +13000000000.0 +1762789220693.0 +31679666951.0 +2176260659632.0 +1142323141070.0 +3569387824063.0 +688931997487.0 +133756252646.0 +766662161996.0 +21840000000.0 +197369102183.0 +302263191763.0 +32316170000.0 +404649997007.0 +88540823102.0 +118937247070.0 +54607218258.0 +14000000000.0 +870358011961.0 +946073106682.0 +720528858587.0 +1975753526418.0 +33708367483.0 +8555682385355.0 +1055198775204.0 +1038868509368.0 +94670319025.0 +183490287372.0 +1915025203390.0 +228974357803.0 +8437500000.0 +1675378184957.0 +1756975898216.0 +234139637562.0 +729773922253.0 +917883381325.0 +77626862736.0 +28206300000.0 +325748138304.0 +8129885273746.0 +613896076094.0 +111029844988.0 +608224094349.0 +151120149144.0 +622612383434.0 +2380989395206.0 +176892944125.0 +101341221285.0 +133756552646.0 +969365829946.0 +21840000000.0 +366531002117.0 +177246429413.0 +154127329924.0 +101341221285.0 +1258501795542.0 +959744443156.0 +248914575549.0 +800256652913.0 +234408402899.0 +2000000000.0 +3521091165882.0 +101341221285.0 +900103339644.0 +715629704838.0 +261777374998.0 +3340827606098.0 +210179745519.0 +647959133918.0 +404828025653.0 +875104765308.0 +134023765151.0 +4771352124506.0 +480324405773.0 +53040000000.0 +1412537516410.0 +28915228148.0 +171412359147.0 +5417004364332.0 +59200000000.0 +1832094824327.0 +842629584758.0 +9200000001.0 +123757709998.0 +937542663496.0 +56358027211.0 +66633498008.0 +3278836868219.0 +667872518993.0 +931742847863.0 +162548035861.0 +212757185943.0 +209144006240.0 +309386340156.0 +924802567068.0 +155364052552.0 +1097061651341.0 +356505879762.0 +233940521856.0 +51412593755.0 +13000000000.0 +86528668638.0 +1762319977603.0 +53838251999.0 +53205408174.0 +2861131048290.0 +278658258972.0 +1006628629168.0 +398168732988.0 +36400000000.0 +645921665391.0 +120730465869.0 +1670897091261.0 +1048081295146.0 +1161744784905.0 +63117600000.0 +126000000000.0 +178833200000.0 +2738994983249.0 +649057733321.0 +882247003968.0 +134023765151.0 +145316020723.0 +2361711453178.0 +274904505910.0 +223433172828.0 +1059769753467.0 +203426540744.0 +100000000000.0 +20000000000.0 +6000000001.0 +69472538557.0 +203426540744.0 +27148363002.0 +1384048858530.0 +274544064499.0 +262373507490.0 +282949009379.0 +116542404478.0 +112524004746.0 +150942653516.0 +21841000000.0 +16572486625767.0 +133756252646.0 +153819690543.0 +2023977900936.0 +2331921665177.0 +111622932963.0 +25000000000.0 +21840000000.0 +57942172180.0 +205058841818.0 +233940821856.0 +206796657932.0 +175011625228.0 +6000000000.0 +75192454005.0 +66633498008.0 +34840105847.0 +6000000001.0 +372463433774.0 +72985558949.0 +14000000000.0 +3000000000.0 +2382299171727.0 +751810756241.0 +1180696618056.0 +417625881972.0 +94169237080.0 +13000000001.0 +940355887430.0 +153819690543.0 +1094921875380.0 +50384497547.0 +289215758093.0 +119898796805.0 +206796657932.0 +13000000000.0 +542205786196.0 +241864615757.0 +5275578894424.0 +1163137846902.0 +2162930619885.0 +633743088967.0 +66766765001.0 +443887154127.0 +206796657932.0 +3349391049723.0 +206045426150.0 +4296332900157.0 +101139243399.0 +52437366300.0 +94066899425.0 +607961478317.0 +152028684688.0 +931742847863.0 +1011105763854.0 +282482147253.0 +84275390000.0 +929250488352.0 +166432200002.0 +1641729829593.0 +135774848900.0 +1055198775204.0 +64168566224.0 +315261911425.0 +33062500000.0 +18000000000.0 +871103288949.0 +57942172180.0 +37128000000.0 +293856008724.0 +916526094073.0 +7000000001.0 +43778260000.0 +4183447097350.0 +1172573986798.0 +472421984037.0 +21840000000.0 +133098367398.0 +5791190490315.0 +25000000000.0 +335602867374.0 +877007941140.0 +126629999999.0 +386445447117.0 +698659991557.0 +1618528744092.0 +188305702619.0 +909676506828.0 +18568512377.0 +5394122190.0 +384184092706.0 +379864158387.0 +24000000000.0 +496295924408.0 +116542404478.0 +21840000000.0 +62881290258.0 +28807500000.0 +702121265508.0 +1792563008958.0 +1251640301747.0 +34923807996.0 +1803437056345.0 +159606736875.0 +106268647409.0 +21840000000.0 +17529394160.0 +309386340156.0 +94595533709.0 +484927325572.0 +58553190199.0 +754532416257.0 +643448559517.0 +309651866696.0 +212757185943.0 +2738994983249.0 +88122801117.0 +25000000000.0 +101341221285.0 +456796573719.0 +38798005515.0 +61548259595.0 +151641110774.0 +141244899890.0 +1158393337679.0 +871103288949.0 +1026978897815.0 +3726072339144.0 +21840000000.0 +60557655787.0 +944659075634.0 +4113024125544.0 +311838490343.0 +215281879271.0 +40373437022.0 +6000000001.0 +1127031701036.0 +16345920016212.0 +1140959338066.0 +1408108193371.0 +1102262445757.0 +146537804161.0 +617519260330.0 +1386365050561.0 +3402479543743.0 +917249141922.0 +337200868872.0 +128759904002.0 +104000000000.0 +728705493653.0 +245552299396.0 +587495980377.0 +866652806885.0 +5300000000.0 +1941362579491.0 +63244608629.0 +2073007414356.0 +21841000000.0 +103749698416.0 +269031900135.0 +931742847863.0 +33062500000.0 +120096760532.0 +1672593186387.0 +639366423845.0 +50000000002.0 +154435584583.0 +206348533556.0 +1197490409965.0 +60000000002.0 +416269400000.0 +52708393117.0 +8800000002.0 +787818522785.0 +408601458678.0 +92270457556.0 +565945452698.0 +391988826401.0 +1936635612529.0 +188305702623.0 +25000000000.0 +3075245779802.0 +200155642157.0 +937707390868.0 +159606736875.0 +294487696153.0 +87946907303.0 +7475000000.0 +75872851881.0 +21840000000.0 +6874695421598.0 +39607640800.0 +153819690543.0 +384522521701.0 +33337082973.0 +4487020954020.0 +994166418313.0 +2112096030305.0 +28750000000.0 +282753070394.0 +25100000000.0 +57826819142.0 +2000000000.0 +106112588264.0 +1065178565089.0 +322061161772.0 +141183085977.0 +430553583614.0 +848318434069.0 +1369156087229.0 +108951529772.0 +154360132055.0 +501692272380.0 +1025910681465.0 +931742847863.0 +65707994890.0 +18348890000.0 +673233148164.0 +42765198295.0 +76628522710.0 +101341221285.0 +21841000000.0 +134023765151.0 +1026027062020.0 +21840000001.0 +101341221285.0 +244182750052.0 +1532860191906.0 +1137404085840.0 +196728799703.0 +410672641172.0 +56306530923.0 +2944740000.0 +947752443292.0 +28915228148.0 +7112097918.0 +300498745568.0 +116542404478.0 +34384999998.0 +70259628476.0 +116542404478.0 +610766757954.0 +176892644125.0 +567558910757.0 +274003564372.0 +3390850520684.0 +1454651151972.0 +46000000000.0 +394319890196.0 +893462759858.0 +1134457803716.0 +150836771968.0 +5272271345106.0 +40000000000.0 +923654665206.0 +336227084039.0 +101341221285.0 +382606524134.0 +952105978488.0 +798134395941.0 +941239701759.0 +1176500625784.0 +931742847863.0 +37220581740.0 +242891612941.0 +726473281670.0 +754366441464.0 +153819690543.0 +203833393825.0 +1160816214476.0 +53040000000.0 +368380000000.0 +203426540744.0 +6336368840832.0 +77397879212.0 +101139243399.0 +1121423453722.0 +19800000000.0 +177246429413.0 +4736400887157.0 +51215969573.0 +60000000002.0 +309386640156.0 +11000000000.0 +1027796619643.0 +151422389442.0 +516005719413.0 +243094652917.0 +2522530708522.0 +8000000001.0 +275698379212.0 +8937353792.0 +379970227672.0 +38326811047.0 +38936718492.0 +25000300000.0 +74743728949.0 +15585000001.0 +927662966104.0 +271420975157.0 +40000000000.0 +900764746871.0 +25100000000.0 +361607355909.0 +50283929688.0 +5614069260968.0 +677262488614.0 +90618840001.0 +1438020928936.0 +235662127032.0 +3329388085850.0 +905419911772.0 +297519762888.0 +356505879762.0 +115040826871.0 +309386640156.0 +58311317002.0 +142836270544.0 +267973594059.0 +587527723166.0 +67689628250.0 +835221271667.0 +157156058232.0 +726473281670.0 +115521862560.0 +48691984095.0 +20000000000.0 +13518420000.0 +234408402899.0 +1903588443922.0 +25000000000.0 +116310084909.0 +85918597411.0 +106902654528.0 +728705493653.0 +234408402899.0 +13830945397.0 +608605281915.0 +86718969136.0 +14336657710540.0 +101341221285.0 +8000200000.0 +1443733559775.0 +53240000004.0 +53413736841.0 +60000000004.0 +101341221285.0 +234147583909.0 +234408402899.0 +177246429413.0 +842927527256.0 +3427648590620.0 +178833200000.0 +101341221285.0 +230021662086.0 +409163434857.0 +106183707991.0 +198061240654.0 +15876253497302.0 +694017126140.0 +143393262387.0 +7500000001.0 +1211556986687.0 +177600214689.0 +10276214446.0 +336227084040.0 +1250951018589.0 +369486253208.0 +97466449194.0 +555864274739.0 +3765421188544.0 +85373599225.0 +863533426159.0 +10000000001.0 +247407654031.0 +905796776202.0 +1949065728791.0 +234408402899.0 +88122801117.0 +590983960619.0 +214170588081.0 +316851614352.0 +116310084909.0 +622286438989.0 +1541769073135.0 +301579787700.0 +24592966000.0 +267489550233.0 +21840000000.0 +236278056004.0 +3032477131939.0 +917737217871.0 +323635771022.0 +770370215702.0 +45000000000.0 +88122801117.0 +802871115422.0 +442995384000.0 +90016310214.0 +805989548.0 +310005112836.0 +4107987418396.0 +53305200001.0 +411463910832.0 +3008727288645.0 +36482839658.0 +726473281670.0 +6000000000.0 +9014960155.0 +1409716750427.0 +1424623783034.0 +340397516160.0 +4631855766315.0 +50485266542.0 +176892944125.0 +6000000000.0 +860279755282.0 +104662856843.0 +3005127578420.0 +10350000000.0 +21840000000.0 +636201988683.0 +177246429413.0 +836619320940.0 +116542404478.0 +50000000002.0 +133249981053.0 +21840000000.0 +40924887611.0 +150036503745.0 +3367053381771.0 +78035580256.0 +859914811591.0 +57942172180.0 +2642745309110.0 +76781779755.0 +694474190002.0 +106977460498.0 +1243007027981.0 +309386340156.0 +126000000000.0 +778356880231.0 +1828147352406.0 +35588216493.0 +1284828447063.0 +516005719413.0 +234408402899.0 +141244899890.0 +204241060612.0 +116530784620.0 +73104917779.0 +11000000000.0 +149988646036.0 +74219576623.0 +88122801117.0 +2973632124851.0 +9676425819.0 +902645961457.0 +8266145160000.0 +49233067853.0 +21840000000.0 +133756252646.0 +183111226456.0 +167604700536.0 +101341221285.0 +1103478385563.0 +133756252646.0 +24000000000.0 +131489200936.0 +271628887462.0 +158377460740.0 +21841000000.0 +4156607241708.0 +374741285799.0 +356505879762.0 +62883950598.0 +344374184618.0 +3520490481196.0 +550974421525.0 +2412100722550.0 +40000000000.0 +10025754104.0 +198662982946.0 +159441455001.0 +173228056560.0 +188305702622.0 +234408402899.0 +6000000001.0 +1199833651893.0 +66633498008.0 +4543869858540.0 +101341221285.0 +762075054361.0 +2909041855671.0 +4058746968490.0 +28807500000.0 +115521862560.0 +60000000005.0 +2427343701205.0 +3474098819878.0 +42820273600.0 +24680330000.0 +1317456071945.0 +223880039173.0 +124745994640.0 +920598360564.0 +2256540075105.0 +5658031669028.0 +130170139262.0 +176892644125.0 +30000000001.0 +154127329924.0 +154514457215.0 +659323584913.0 +49114005763.0 +203833393825.0 +259109379406.0 +384150901623.0 +233227490551.0 +6000000001.0 +293423209391.0 +38007482925.0 +996674661552.0 +101341221285.0 +6000000001.0 +18000000000.0 +131040000000.0 +1331686745541.0 +498209645775.0 +193514095778.0 +623531011866.0 +1334511370064.0 +50543715126.0 +86306780377.0 +810496583864.0 +172932511708.0 +5427518693200.0 +395550494407.0 +234147583909.0 +403045639783.0 +794988383922.0 +48829118738.0 +165562520360.0 +11624921943013.0 +1228188400265.0 +497288516256.0 +28807500000.0 +159847622796.0 +25100000000.0 +2017955689461.0 +164902251745.0 +16738567880.0 +183124039294.0 +395583891041.0 +101341221285.0 +19900000001.0 +2492575182393.0 +234408402899.0 +635093103167.0 +50000000002.0 +116542404476.0 +6000000001.0 +275246351714.0 +7500000001.0 +131723425600.0 +146404039578.0 +333191799200.0 +127617429146.0 +488416496380.0 +3079402851597.0 +471479025986.0 +83533589574.0 +68539954061.0 +269099998011.0 +5040205533436.0 +175011625228.0 +2189186344340.0 +32186769380.0 +726473281670.0 +14916727468.0 +625582467655.0 +309386640156.0 +975405262498.0 +238872620789.0 +310005112836.0 +188870330778.0 +58564000005.0 +732520679763.0 +234408402899.0 +197369102183.0 +1227062224992.0 +76821025737.0 +50072198206.0 +21840000000.0 +16000000000.0 +4763967715918.0 +115521862560.0 +726473281670.0 +5663208254096.0 +581005793061.0 +37128000000.0 +116542404478.0 +2700000000.0 +124745994640.0 +651669996113.0 +131040000000.0 +566426058640.0 +66500497014.0 +13000000001.0 +14000000000.0 +1058720017277.0 +187149326063.0 +48193236125.0 +743480900498.0 +105210000000.0 +5468997967.0 +820296847556.0 +282753070394.0 +825258971562.0 +135544887675.0 +16120000001.0 +395352733204.0 +272172145239.0 +10000000000.0 +1026172668706.0 +53040000000.0 +2060512506000.0 +861579795996.0 +670046340952.0 +1069804663741.0 +1343225263982.0 +134257976999.0 +237986579307.0 +116341551569.0 +8000000000.0 +21671670001.0 +3813948885613.0 +600633868451.0 +931742847863.0 +639366423845.0 +409163434857.0 +333969840579.0 +4083834569140.0 +917310585731.0 +38021875000.0 +1027155274170.0 +56607791948.0 +172286505400.0 +126000000000.0 +1379108956187.0 +121252510472.0 +3700000000.0 +33062800000.0 +6297663315044.0 +809751565033.0 +10000000000.0 +1598875537350.0 +356505879762.0 +180355612668.0 +7773635756382.0 +925531210638.0 +453977969611.0 +153819990543.0 +355794291180.0 +147541133298.0 +5750000001.0 +849711562484.0 +6000000001.0 +23725040000.0 +1173590564047.0 +66500497014.0 +874058879579.0 +74818148014.0 +137083280743.0 +37090517195.0 +50000000002.0 +129523441866.0 +76475571567.0 +76628522710.0 +477659013946.0 +149333285670.0 +1290872160500.0 +110686430430.0 +421614918790.0 +442537828871.0 +408170752543.0 +573241866923.0 +428650290382.0 +274697084916.0 +1083343831722.0 +40348489738.0 +879839429195.0 +523547233867.0 +167322755493.0 +1113372180445.0 +37194196647.0 +36040298281.0 +304373010844.0 +197369102183.0 +1297328323675.0 +114642292869.0 +2080936369963.0 +260441552349.0 +236716416135.0 +43130178223.0 +333978234142.0 +50000000002.0 +176378798117.0 +670010346589.0 +153043767661.0 +828498335741.0 +37677458542.0 +12092279412.0 +1900000000.0 +12999999999.0 +1090559636826.0 +12000400000.0 +76628522710.0 +176892944125.0 +60000000000.0 +491808605333.0 +82375668565.0 +83623940900.0 +549180196210.0 +2050913464104.0 +6000000001.0 +3378013359576.0 +565760927215.0 +37128000000.0 +282753070394.0 +5000000001.0 +153819990543.0 +190942456706.0 +891955739383.0 +3400750090200.0 +116542404478.0 +787107868514.0 +153285600001.0 +1170176601782.0 +154127329924.0 +1083624590161.0 +50384497547.0 +442995384000.0 +20633748447.0 +865550482061.0 +116542404478.0 +1491371739942.0 +56620890000.0 +10758740514.0 +8066100001.0 +178800465837.0 +892980647287.0 +1813567531677.0 +394278606646.0 +6510432998511.0 +101341221285.0 +4906427982333.0 +63278899881.0 +990219678484.0 +250337159604.0 +203426840744.0 +481722970384.0 +885086917230.0 +470538662957.0 +141244899893.0 +4639558475780.0 +21840000000.0 +10000000000.0 +53040000000.0 +758635141234.0 +14000000000.0 +1253520679062.0 +386608273148.0 +971836631123.0 +3982146318063.0 +874672674674.0 +7000000000.0 +60000000000.0 +600322277529.0 +245256960000.0 +546367071121.0 +170906328869.0 +371040974998.0 +470538250086.0 +4913754581101.0 +481897242664.0 +7608414232.0 +943083100855.0 +125493511744.0 +28653827845.0 +946127129627.0 +234408402899.0 +730162904640.0 +25100000000.0 +869958855378.0 +133756252646.0 +1053133194475.0 +3538222256789.0 +362184594066.0 +320490311131.0 +131906394110.0 +579833129026.0 +1037834557562.0 +79658955485.0 +986694177455.0 +126000000000.0 +100623599204.0 +34986315678.0 +58290288750.0 +8000200000.0 +182409864001.0 +27811743138.0 +60000000002.0 +131906394110.0 +8000000000.0 +25000000000.0 +13000000001.0 +2313621710486.0 +5063600830708.0 +411775338320.0 +27000000000.0 +4157762440132.0 +310005112836.0 +349725036032.0 +260585520000.0 +204649542733.0 +5686970334299.0 +296518549917.0 +21841000001.0 +88122801117.0 +59769905306.0 +114315418631.0 +138165239358.0 +678735252467.0 +116309784909.0 +715090592350.0 +659856023908.0 +30288803046.0 +931742847863.0 +29731820742.0 +9218400001.0 +222987198432.0 +217342082549.0 +177246429413.0 +43812606562.0 +77648236068.0 +76781779755.0 +101139243399.0 +1587867466674.0 +1042486731443.0 +114773137566.0 +203426540744.0 +128826162686.0 +131906394110.0 +390853051908.0 +4986875430600.0 +868308801324.0 +868943499874.0 +839279958865.0 +25100300000.0 +414764353225.0 +5750000000.0 +5112844192635.0 +94949487960.0 +50384497547.0 +126624261649.0 +702948595833.0 +137607201731.0 +33275000004.0 +703327529282.0 +9680000003.0 +101341221285.0 +156816873470.0 +1334477975822.0 +1028634929547.0 +205963266389.0 +830780448733.0 +21841000000.0 +926179651175.0 +21840000000.0 +291296163718.0 +1355847130550.0 +828895775693.0 +131040000000.0 +7070811888722.0 +10415498185.0 +1345318873747.0 +270647941966.0 +11926305001.0 +1420631735720.0 +382267941109.0 +177246729413.0 +246713377055.0 +182409864000.0 +107327541203.0 +28915228149.0 +1448433915425.0 +177246429413.0 +261888447601.0 +1759777579254.0 +37128000000.0 +30423860000.0 +138802325773.0 +14000000000.0 +205468959501.0 +555116561237.0 +4607947064573.0 +134023765151.0 +153838349275.0 +315171613193.0 +88299046719.0 +28807500000.0 +578177158928.0 +877549630763.0 +943565134187.0 +160079310608.0 +77724371872.0 +447300177227.0 +73687300000.0 +38097918750.0 +758033896599.0 +408987094047.0 +1091329375812.0 +705996884340.0 +471479025990.0 +472615204938.0 +1917229612668.0 +452543237456.0 +602106475305.0 +3375371033013.0 +116310084909.0 +33062500000.0 +5147162397708.0 +734239211897.0 +2456339344186.0 +5585000000.0 +650796274569.0 +161124103263.0 +2000000000.0 +37092120162.0 +42411871725.0 +2671545301520.0 +485920436816.0 +40402435370.0 +122812454430.0 +6370158017066.0 +7000000001.0 +176892644125.0 +7000000001.0 +141244899890.0 +87605678657.0 +40564206720.0 +125746960494.0 +390550188953.0 +227931276375.0 +27827390000.0 +133756552646.0 +5143816393391.0 +6000000001.0 +155455107839.0 +96472167124.0 +349143304287.0 +131040000000.0 +114544049468.0 +363199840321.0 +979029034444.0 +151244538823.0 +39827414110.0 +160510983714.0 +952854058076.0 +21840000000.0 +20000000001.0 +369563359452.0 +602244272168.0 +142297218675.0 +3923903802751.0 +60000000002.0 +80146211546.0 +745649554517.0 +36400000000.0 +975785477773.0 +21840000000.0 +177246429413.0 +25100000000.0 +495305313781.0 +150272312805.0 +857800213495.0 +222542114204.0 +101341221285.0 +296643799573.0 +133204836623.0 +686377606451.0 +1749090503898.0 +284533772972.0 +201856844079.0 +803653159934.0 +1278841691298.0 +260585520001.0 +1202250758215.0 +4829459660351.0 +190094175444.0 +692951631632.0 +1310363840369.0 +1021295130927.0 +4000000001.0 +15600000000000.0 +101341221285.0 +127101604600.0 +14028000000.0 +174868489794.0 +1128196190475.0 +131477587428.0 +159606736875.0 +38021875000.0 +40483240240.0 +10000000001.0 +110867363217.0 +160292423088.0 +726473281670.0 +193124151621.0 +13338220693.0 +757892363767.0 +326000000000.0 +2648471178334.0 +161733852425.0 +471479025986.0 +104431204257.0 +335506536008.0 +107836419601.0 +267938926445.0 +9200000001.0 +781718090855.0 +151725234220.0 +7553648852330.0 +2111317252032.0 +60342879930.0 +101543903730.0 +935088631408.0 +931742847863.0 +269569663335.0 +211079090149.0 +859985869078.0 +960012386533.0 +1070360448038.0 +4876110082556.0 +519234237981.0 +154863839685.0 +259113806045.0 +4294498355774.0 +188369998620.0 +783910920795.0 +286549948185.0 +131871816639.0 +931742847863.0 +1646362999298.0 +233940521856.0 +3243129422684.0 +1153812779439.0 +901156294897.0 +333858182798.0 +5000000000.0 +60000000005.0 +94255033225.0 +101139243399.0 +237545733088.0 +269569663335.0 +1005669783075.0 +2439393007779.0 +271550958681.0 +9911316978855.0 +879158285755.0 +2900000000.0 +21840000000.0 +10000000001.0 +67818400000.0 +2927710273003.0 +95075063534.0 +8000000000.0 +112906584979.0 +116542404478.0 +233468948329.0 +998248677050.0 +154863839685.0 +21840000000.0 +13000000001.0 +349956782630.0 +822973815564.0 +5000000000.0 +831044036950.0 +1195012612918.0 +881306798539.0 +21841000000.0 +953966265354.0 +1033617952472.0 +115521862560.0 +2719395930479.0 +317728496171.0 +932578304857.0 +41132444124.0 +25117363499.0 +901571115013.0 +45471908228.0 +146404324745.0 +201323024499.0 +1885605604119.0 +263185763996.0 +40448310338.0 +181977130828.0 +1304309325634.0 +98540008193.0 +15600000000000.0 +61460774998.0 +4543520000.0 +142863849913.0 +702948595833.0 +882103833032.0 +93420391421.0 +153819990543.0 +5649670216550.0 +1187333591306.0 +76628522710.0 +177246429413.0 +87947207303.0 +269031600135.0 +90168000000.0 +4578484061191.0 +94884703550.0 +3842470000.0 +6288990908085.0 +835940717459.0 +1219007439666.0 +654661795731.0 +1090422966172.0 +613541345971.0 +1717510571670.0 +203895352937.0 +1768115482495.0 +637598278821.0 +2637470368374.0 +234515224970.0 +143399884230.0 +156762332591.0 +188591610355.0 +1520207947228.0 +741706190294.0 +88535744557.0 +901571115013.0 +203426840744.0 +130612603233.0 +3404132341468.0 +715629704838.0 +1931076608040.0 +73798345292.0 +334228049732.0 +27097792801.0 +47263060002.0 +539130846003.0 +263268527465.0 +101341221285.0 +25050000000.0 +30820655843.0 +931742847863.0 +177867032015.0 +309386640156.0 +974615978421.0 +269569663335.0 +126629999999.0 +257208795268.0 +21840000000.0 +88122801117.0 +150818512120.0 +60000000004.0 +1371853899845.0 +140130587154.0 +108796529809.0 +64869812127.0 +40348489738.0 +234377811006.0 +10000000001.0 +11717877117.0 +50384497547.0 +4905432514950.0 +4413766938570.0 +1780081870794.0 +931742847863.0 +1524871333535.0 +326000000000.0 +131685166097.0 +2062102926253.0 +5384653339968.0 +21840000000.0 +33128625000.0 +48206590678.0 +23261100000.0 +163133675586.0 +512343779320.0 +22441981913.0 +177246429413.0 +552714750990.0 +796589338572.0 +2628392237880.0 +79938657177.0 +726473281670.0 +116962948766.0 +28750000000.0 +13469231725896.0 +203426840744.0 +734597827643.0 +234408402899.0 +116310084909.0 +62400000001.0 +702948595833.0 +57942172180.0 +176892644125.0 +2941260000.0 +936124384733.0 +2294558488115.0 +4701436772571.0 +1410349745012.0 +170906328869.0 +707326585312.0 +645974268763.0 +158387812029.0 +88122801117.0 +1736177019494.0 +671316169191.0 +117237783975.0 +21840000000.0 +39827414110.0 +20677702922.0 +91092967282.0 +3734856905284.0 +310005112836.0 +737896153351.0 +1195496030067.0 +560306949523.0 +384837676294.0 +130381035155.0 +20150220000.0 +16555430829.0 +47718653539.0 +20029821946.0 +1074428061507.0 +267169735184.0 +910985249502.0 +60000000004.0 +196387166352.0 +726473281670.0 +4164108302033.0 +157533146842.0 +111029844988.0 +133866821433.0 +1089384246867.0 +848381516103.0 +356505879762.0 +153285600000.0 +250223956101.0 +824682676795.0 +884664764643.0 +116405931683.0 +12000400000.0 +88535744557.0 +169140709655.0 +956799575267.0 +1960080211354.0 +348446411465.0 +78704370580.0 +702948595833.0 +356505879762.0 +3888034717076.0 +565760927216.0 +159606736875.0 +441032283897.0 +845354469684.0 +1424061453429.0 +63117600000.0 +726473281670.0 +11500000000.0 +170906328869.0 +204260890444.0 +53854034216.0 +818623715448.0 +667631652425.0 +135756643111.0 +44665620564.0 +4420728206848.0 +5614033306853.0 +120027574509.0 +154127329924.0 +134023765151.0 +10000000001.0 +14198105499897.0 +1470590715058.0 +10737759741.0 +2002376967582.0 +150477459292.0 +102948014839.0 +10000000001.0 +219096794054.0 +3408164325236.0 +3109255981301.0 +849464512913.0 +1173341372515.0 +565760927215.0 +45272428379.0 +569071499125.0 +269569663335.0 +321793425065.0 +198330450891.0 +33062500000.0 +1155553556649.0 +36614449731.0 +8000000000.0 +964881421030.0 +20000000001.0 +404049777238.0 +728705493653.0 +51412741019.0 +133756552646.0 +726473281670.0 +12000400000.0 +130358931361.0 +549413525199.0 +196387166352.0 +887385692366.0 +125526256575.0 +865191655950.0 +417171741296.0 +1019967662246.0 +1403077748568.0 +32149838994.0 +41558988812.0 +3843232540367.0 +113300608707.0 +143077146298.0 +719928906357.0 +104000000000.0 +161680497325.0 +28000000000.0 +1090559636826.0 +27083786865.0 +270108802661.0 +415447606186.0 +1402656827955.0 +639366110061.0 +843088343548.0 +62400000003.0 +3101979559015.0 +85373599225.0 +4279064132152.0 +355794291180.0 +363542699356.0 +11735800164649.0 +563348584326.0 +1326268218018.0 +2721199586886.0 +421935125229.0 +658291413590.0 +183798919479.0 +54107362400.0 +271178895665.0 +74938601900.0 +12509768207.0 +334215587335.0 +931633556265.0 +176892644125.0 +15600000000000.0 +686193340561.0 +49629000225.0 +109013548850.0 +9000000000.0 +14346124129.0 +3515188409670.0 +245748055251.0 +902199422909.0 +412598888998.0 +233894872294.0 +134023765151.0 +1997770000.0 +973495370069.0 +10000000001.0 +925956276816.0 +206141387307.0 +943083100855.0 +2032231671663.0 +854776533960.0 +234408402899.0 +152796659088.0 +17396961437.0 +60610768028.0 +250223956101.0 +517767677047.0 +939372406429.0 +133098367398.0 +2700000000.0 +21840000000.0 +2900910614801.0 +101341221285.0 +63433188001.0 +113802808515.0 +31514313377.0 +918173112096.0 +96203249324.0 +40113071119.0 +227476323728.0 +285108073403.0 +21840000000.0 +1274731090742.0 +457339670548.0 +105499431063.0 +439325637274.0 +176205797348.0 +1791328433341.0 +1932621332013.0 +6000000000.0 +726473281670.0 +949776716446.0 +129403703522.0 +42251360000.0 +620925990464.0 +126000000000.0 +23000000000.0 +796913879306.0 +269569663335.0 +282753070394.0 +97608129334.0 +901571115013.0 +878707816322.0 +503132228876.0 +99000000002.0 +40256592237.0 +377435439874.0 +207776945375.0 +914073442037.0 +102159783611.0 +13000000001.0 +4785408797412.0 +726473281670.0 +116542404478.0 +1831131226847.0 +197369102183.0 +41955265606.0 +107375069578.0 +20000000000.0 +160833316662.0 +221437129293.0 +116542404478.0 +143018118528.0 +366700325513.0 +6000000000.0 +134023765151.0 +2257431281532.0 +1629285283117.0 +128826162686.0 +622286438989.0 +688793406319.0 +1854760832207.0 +726473281670.0 +119720699972.0 +590983960619.0 +10313937770.0 +341775474052.0 +1025541920025.0 +13000000001.0 +123343191224.0 +212678570144.0 +339813790354.0 +901156294897.0 +98540008193.0 +1076059990162.0 +124249711756.0 +3679134707754.0 +9000000000.0 +1813637706752.0 +5421878070824.0 +133150950784.0 +2622125901902.0 +2366213897172.0 +2073126464493.0 +7670310001.0 +9900000001.0 +4113024125544.0 +1044801657202.0 +922784838637.0 +826991569135.0 +7700000000.0 +3253430244367.0 +119399325895.0 +730009357102.0 +184085650612.0 +855082582466.0 +116542404478.0 +21840000000.0 +24759691036.0 +1251772800619.0 +116731322222.0 +825258971562.0 +134023765151.0 +23789250000.0 +126235200002.0 +1310090114834.0 +908001184404.0 +329404559979.0 +116310084909.0 +455062904542.0 +336718475228.0 +353661731482.0 +1409922419633.0 +2087084498972.0 +126000000000.0 +922784838636.0 +231261360313.0 +4545971914884.0 +1119843885694.0 +409206748897.0 +40000000000.0 +27944550445.0 +8000000001.0 +56266363254.0 +1092740756100.0 +399648672343.0 +1110399434498.0 +233950911134.0 +132673141361.0 +121259639592.0 +5275997778.0 +20000000001.0 +65302055260.0 +652162497442.0 +9098690885.0 +406357168419.0 +1328367176485.0 +2272407941772.0 +1949029905135.0 +82436384611.0 +1146417248918.0 +104453948946.0 +154959598004.0 +482510396332.0 +1068980492124.0 +355794591180.0 +33128625000.0 +916593810258.0 +195995176000.0 +697785087783.0 +129996134369.0 +125051166597.0 +5284621472878.0 +6000000001.0 +741003533323.0 +3066919816257.0 +443881374768.0 +4327010196701.0 +155053944663.0 +2332575375499.0 +692310441368.0 +32563972752961.0 +114515580052.0 +131040000000.0 +177246429413.0 +796089284780.0 +7638325705.0 +403031323054.0 +156320468167.0 +805162513614.0 +1130638260211.0 +178833200000.0 +217885936586.0 +57219345310.0 +957999528157.0 +124995486629.0 +14606610022.0 +3691106155728.0 +21840000000.0 +37677458542.0 +4175027949014.0 +233940521856.0 +341959399789.0 +176892944125.0 +311497795942.0 +4414554910657.0 +6000000000.0 +21841000000.0 +828498335741.0 +76572631999.0 +881304872231.0 +2217741185297.0 +267938926445.0 +50200692020.0 +38097918750.0 +68831232578.0 +725547814880.0 +822730991491.0 +206796657932.0 +307035719987.0 +275698379212.0 +495018144260.0 +233940521856.0 +85288320001.0 +176892944125.0 +827703800459.0 +994534209643.0 +1676320592476.0 +5339005883175.0 +1013970950691.0 +4879348749516.0 +43812606562.0 +85936166108.0 +21840000000.0 +4229172782725.0 +288957301274.0 +1056757280750.0 +3487060203847.0 +51602935400.0 +1074574525290.0 +1727263616480.0 +5346942522021.0 +107149821316.0 +1005976221073.0 +197369102183.0 +6231920835673.0 +3582170045882.0 +1497657452561.0 +65823745838.0 +1201178435398.0 +878905817413.0 +726473281670.0 +366974760691.0 +4614898018370.0 +703534193149.0 +215996797690.0 +1081329212430.0 +946420187899.0 +75088098016.0 +12999999999.0 +6000000001.0 +955206620668.0 +728705493653.0 +933248673663.0 +82325071502.0 +376576575572.0 +476945119314.0 +283914824469.0 +260585520000.0 +10000000000.0 +1778406903550.0 +141244899890.0 +62400000002.0 +20496413602.0 +120131260987.0 +51051545148.0 +409834257552.0 +493346411648.0 +4220646056503.0 +99000000002.0 +109505481173.0 +1164068274470.0 +60000000002.0 +548777117946.0 +344863237498.0 +1145007047763.0 +232485554429.0 +542200879884.0 +99184800002.0 +1074071668971.0 +3169660358476.0 +101341221285.0 +623531011868.0 +882458179129.0 +6000000001.0 +355794291180.0 +77457177476.0 +715709470739.0 +6000000001.0 +141244899890.0 +927311151604.0 +21840000000.0 +252751750518.0 +103302055064.0 +6530824598123.0 +5543880154372.0 +28750000000.0 +282753070394.0 +7000000000.0 +9638773444.0 +4943917594853.0 +102948014839.0 +267323311456.0 +155852592270.0 +826472029154.0 +132045938180.0 +2784817017511.0 +4821909733904.0 +107983287106.0 +4129273673994.0 +101772234347.0 +129595839340.0 +9000000000.0 +335918505320.0 +51215969571.0 +2616622903097.0 +22741414290.0 +7000000001.0 +582732294671.0 +440533748631.0 +21841000000.0 +225202570884.0 +2379282779118.0 +367123249578.0 +349502002293.0 +153285600000.0 +234408402899.0 +14000000000.0 +1196980474852.0 +822730991491.0 +6000000001.0 +88122801117.0 +5305062277163.0 +583394641172.0 +485446453857.0 +42989959120.0 +1472407894888.0 +939541815427.0 +134023765151.0 +953404184842.0 +61000000002.0 +798134395939.0 +269569663335.0 +946252194846.0 +921810250913.0 +203426540745.0 +726473281670.0 +2459179681278.0 +4464629650397.0 +881661486295.0 +721599170432.0 +176892944125.0 +61412481378.0 +104103575129.0 +21840000000.0 +120095884894.0 +133756252646.0 +254054200308.0 +187689798500.0 +3836453891325.0 +1128158272500.0 +3410940606150.0 +954300211395.0 +269718750336.0 +66500497014.0 +10000000000.0 +260441552349.0 +3000000001.0 +1202514407444.0 +1344487392732.0 +673737397591.0 +13816651255.0 +111112622716.0 +883514958266.0 +109013548850.0 +154863839685.0 +126128270879.0 +99184800002.0 +5245997041015.0 +237545733088.0 +853731000421.0 +4842929224427.0 +665081698925.0 +192176643638.0 +206796657932.0 +105535453338.0 +710317312481.0 +1366778105210.0 +116542404478.0 +409163434857.0 +4000000000.0 +8000200000.0 +662573119017.0 +393416558545.0 +152897726155.0 +155132390651.0 +5842073442663.0 +237545733088.0 +880175056197.0 +10404962034256.0 +64611109248.0 +85198897488.0 +123311491150.0 +528971989169.0 +347259136705.0 +133756552646.0 +715090592350.0 +5073710271279.0 +1056961536244.0 +7000000001.0 +209603865151.0 +65210000000.0 +272806455422.0 +854634676039.0 +910026493680.0 +90168000000.0 +123335637576.0 +53519591249.0 +622286738989.0 +3393962165869.0 +48305390340.0 +233940521856.0 +116709601336.0 +7000000000.0 +124745994640.0 +147112775563.0 +4052915075917.0 +3188473213361.0 +133756252646.0 +20485017801124.0 +172558009968.0 +1180696618056.0 +63844969406.0 +1355842993796.0 +10391441401.0 +106525205740.0 +68394530557.0 diff --git a/reports/data/gas_used.csv b/reports/data/gas_used.csv new file mode 100644 index 0000000..8cbbad6 --- /dev/null +++ b/reports/data/gas_used.csv @@ -0,0 +1,2135 @@ +108538.0 +116121.0 +106828.0 +110346.0 +102739.0 +124270.0 +186353.0 +120161.0 +95356.0 +99220.0 +108196.0 +120385.0 +117600.0 +109133.0 +101857.0 +113137.0 +184763.0 +115824.0 +95335.0 +113169.0 +363190.0 +211082.0 +113137.0 +102634.0 +101921.0 +109261.0 +112989.0 +117728.0 +108909.0 +151818.0 +115078.0 +113329.0 +106159.0 +120289.0 +117622.0 +124142.0 +102216.0 +106486.0 +117814.0 +102718.0 +141619.0 +416329.0 +110314.0 +226674.0 +127346.0 +107647.0 +151709.0 +101281.0 +117867.0 +102686.0 +110464.0 +117760.0 +105728.0 +131689.0 +102835.0 +102793.0 +108260.0 +103238.0 +102814.0 +95388.0 +337792.0 +108535.0 +116642.0 +101697.0 +113201.0 +363116.0 +567266.0 +155237.0 +117622.0 +113361.0 +160633.0 +102760.0 +109994.0 +101067.0 +161081.0 +112383.0 +110324.0 +95207.0 +198420.0 +110250.0 +145761.0 +110324.0 +122067.0 +110292.0 +112533.0 +183525.0 +102804.0 +130307.0 +129872.0 +416062.0 +109133.0 +98634.0 +108877.0 +103046.0 +102718.0 +290652.0 +101985.0 +102558.0 +110271.0 +110250.0 +110452.0 +130243.0 +110026.0 +107985.0 +102910.0 +120562.0 +113297.0 +113137.0 +102696.0 +109706.0 +117590.0 +108503.0 +344930.0 +119592.0 +102430.0 +151709.0 +101921.0 +117526.0 +113137.0 +352348.0 +308635.0 +110442.0 +108004.0 +120893.0 +108465.0 +110314.0 +109069.0 +151773.0 +106646.0 +153622.0 +113447.0 +117824.0 +266206.0 +113233.0 +211554.0 +103078.0 +113137.0 +117814.0 +137372.0 +112597.0 +117718.0 +112977.0 +102931.0 +102654.0 +131509.0 +141779.0 +102771.0 +102728.0 +109823.0 +95883.0 +113201.0 +102835.0 +145001.0 +106710.0 +102835.0 +206283.0 +417294.0 +266526.0 +110186.0 +113361.0 +146455.0 +108017.0 +144809.0 +115152.0 +113196.0 +129987.0 +226020.0 +110250.0 +145392.0 +102825.0 +103265.0 +436333.0 +227100.0 +132194.0 +110229.0 +117654.0 +116534.0 +102835.0 +107876.0 +105156.0 +129839.0 +102760.0 +125735.0 +252125.0 +316256.0 +145889.0 +137649.0 +161061.0 +291592.0 +108503.0 +124834.0 +110346.0 +99114.0 +102792.0 +151197.0 +110250.0 +130755.0 +104969.0 +113159.0 +102794.0 +108970.0 +584426.0 +120914.0 +103206.0 +102824.0 +110303.0 +117558.0 +103174.0 +113265.0 +124291.0 +129859.0 +110314.0 +102868.0 +116121.0 +211938.0 +117782.0 +110218.0 +116537.0 +113361.0 +94002.0 +110314.0 +102792.0 +130499.0 +120915.0 +103206.0 +113201.0 +102782.0 +110197.0 +107908.0 +101569.0 +103238.0 +548449.0 +117718.0 +113233.0 +110186.0 +127178.0 +102996.0 +102718.0 +137398.0 +117910.0 +134179.0 +117718.0 +112544.0 +110282.0 +110442.0 +95218.0 +151773.0 +302681.0 +103046.0 +102654.0 +238129.0 +102878.0 +204661.0 +290056.0 +95228.0 +102238.0 +137898.0 +113137.0 +109930.0 +113393.0 +109994.0 +109940.0 +141587.0 +117526.0 +115824.0 +117206.0 +216939.0 +101473.0 +103142.0 +115664.0 +474626.0 +415944.0 +110442.0 +110218.0 +102580.0 +113201.0 +103059.0 +103078.0 +117750.0 +108941.0 +110048.0 +94727.0 +137499.0 +109930.0 +100901.0 +101673.0 +110004.0 +152492.0 +130607.0 +102899.0 +110026.0 +101569.0 +113073.0 +141651.0 +117398.0 +119735.0 +105284.0 +117942.0 +115568.0 +357534.0 +344802.0 +290716.0 +146199.0 +107484.0 +151581.0 +102590.0 +102964.0 +102792.0 +116601.0 +103078.0 +130317.0 +131689.0 +146125.0 +108557.0 +115696.0 +115440.0 +117814.0 +102910.0 +131269.0 +108260.0 +109844.0 +113013.0 +105696.0 +109261.0 +103132.0 +102792.0 +416171.0 +152854.0 +113265.0 +305696.0 +290844.0 +102920.0 +113137.0 +291336.0 +550313.0 +113169.0 +102697.0 +110282.0 +109908.0 +112843.0 +290372.0 +110090.0 +125240.0 +102730.0 +130793.0 +101131.0 +102803.0 +93210.0 +426174.0 +103041.0 +106688.0 +110186.0 +101684.0 +197394.0 +113169.0 +103238.0 +103110.0 +113393.0 +113361.0 +105696.0 +106508.0 +101473.0 +575502.0 +175513.0 +99178.0 +103462.0 +117494.0 +117622.0 +95260.0 +280502.0 +116080.0 +117895.0 +119977.0 +206091.0 +110346.0 +160953.0 +102728.0 +115728.0 +499178.0 +110314.0 +226338.0 +102708.0 +135338.0 +125304.0 +290888.0 +329196.0 +117782.0 +117814.0 +138325.0 +102600.0 +124940.0 +117782.0 +108287.0 +102792.0 +117366.0 +102772.0 +110196.0 +117558.0 +109994.0 +130350.0 +110282.0 +147398.0 +159681.0 +103078.0 +102536.0 +295328.0 +99135.0 +102982.0 +110132.0 +146327.0 +105718.0 +107953.0 +109866.0 +112511.0 +160252.0 +117462.0 +103110.0 +106688.0 +102132.0 +103110.0 +108228.0 +102899.0 +116262.0 +102440.0 +109941.0 +110218.0 +102600.0 +151677.0 +102537.0 +113169.0 +115696.0 +112597.0 +99072.0 +197812.0 +146145.0 +117760.0 +103046.0 +102814.0 +103027.0 +110058.0 +117398.0 +102760.0 +102824.0 +110218.0 +110378.0 +102824.0 +116304.0 +102824.0 +290716.0 +109802.0 +110357.0 +110186.0 +116441.0 +102366.0 +102740.0 +102942.0 +102803.0 +106380.0 +110250.0 +117814.0 +123672.0 +102472.0 +117718.0 +129342.0 +117846.0 +130409.0 +416938.0 +102889.0 +160943.0 +110186.0 +175825.0 +253225.0 +101825.0 +110218.0 +108324.0 +117686.0 +106347.0 +95517.0 +284922.0 +120851.0 +102570.0 +102462.0 +199051.0 +101067.0 +168218.0 +137727.0 +109898.0 +117526.0 +102686.0 +113265.0 +191876.0 +115632.0 +429182.0 +98772.0 +110410.0 +113041.0 +102494.0 +103142.0 +119749.0 +112351.0 +322841.0 +124120.0 +110080.0 +117398.0 +102856.0 +108164.0 +109962.0 +120701.0 +102654.0 +102643.0 +110250.0 +115536.0 +113361.0 +161465.0 +108493.0 +649881.0 +136133.0 +110282.0 +123815.0 +113233.0 +102538.0 +101665.0 +102718.0 +178633.0 +102856.0 +110090.0 +117878.0 +102494.0 +113137.0 +549549.0 +102686.0 +183004.0 +112853.0 +105444.0 +145569.0 +103110.0 +102483.0 +95354.0 +102602.0 +102760.0 +302273.0 +117462.0 +101441.0 +102846.0 +102760.0 +398685.0 +110090.0 +302681.0 +160889.0 +120605.0 +113109.0 +347338.0 +103218.0 +103078.0 +110378.0 +97322.0 +123602.0 +102708.0 +95154.0 +110314.0 +442292.0 +103142.0 +110186.0 +130672.0 +211894.0 +130051.0 +352024.0 +102750.0 +103112.0 +113073.0 +113329.0 +112661.0 +110218.0 +120072.0 +109930.0 +110250.0 +113265.0 +129667.0 +109898.0 +190523.0 +115248.0 +113265.0 +173283.0 +110410.0 +106550.0 +115216.0 +110314.0 +216855.0 +108749.0 +117622.0 +306396.0 +103206.0 +110090.0 +310222.0 +95656.0 +116025.0 +152752.0 +110218.0 +106028.0 +102974.0 +134215.0 +103110.0 +145166.0 +136610.0 +176791.0 +117760.0 +105562.0 +145559.0 +101601.0 +160378.0 +180733.0 +117814.0 +102549.0 +352088.0 +109898.0 +160761.0 +99328.0 +120914.0 +110314.0 +110314.0 +110304.0 +110143.0 +99082.0 +126520.0 +102814.0 +102824.0 +102730.0 +113329.0 +116121.0 +103078.0 +108124.0 +113324.0 +117895.0 +110474.0 +101759.0 +105504.0 +102846.0 +106614.0 +151773.0 +124007.0 +437270.0 +103142.0 +114902.0 +130544.0 +109197.0 +110431.0 +141747.0 +117686.0 +103078.0 +101569.0 +120605.0 +102654.0 +102835.0 +103142.0 +442241.0 +117718.0 +137430.0 +102824.0 +352220.0 +113265.0 +112501.0 +103206.0 +103142.0 +110207.0 +213312.0 +117792.0 +103110.0 +107932.0 +115184.0 +198334.0 +95218.0 +109994.0 +112539.0 +105905.0 +308820.0 +102654.0 +144965.0 +95656.0 +134969.0 +110058.0 +99124.0 +112811.0 +91635.0 +110058.0 +103398.0 +110026.0 +304544.0 +102728.0 +110314.0 +110165.0 +103082.0 +105380.0 +137526.0 +113361.0 +102697.0 +101601.0 +108287.0 +102750.0 +106074.0 +106624.0 +100453.0 +102760.0 +127946.0 +110218.0 +126126.0 +141843.0 +117686.0 +161337.0 +113233.0 +128010.0 +117366.0 +130001.0 +266440.0 +112512.0 +124610.0 +102644.0 +102728.0 +102526.0 +102982.0 +110378.0 +378720.0 +161081.0 +117718.0 +110346.0 +101727.0 +110346.0 +130344.0 +109037.0 +469831.0 +110282.0 +206475.0 +110346.0 +718293.0 +102792.0 +107985.0 +130921.0 +102803.0 +119980.0 +284922.0 +136407.0 +94748.0 +113265.0 +103238.0 +116208.0 +105525.0 +129603.0 +103174.0 +112629.0 +112629.0 +116684.0 +241402.0 +110026.0 +119784.0 +182939.0 +116695.0 +116610.0 +308552.0 +117814.0 +102920.0 +113201.0 +103110.0 +105750.0 +142261.0 +211198.0 +456108.0 +102568.0 +102772.0 +102698.0 +117686.0 +175065.0 +117654.0 +109770.0 +272817.0 +117504.0 +98516.0 +100940.0 +102910.0 +120861.0 +110026.0 +115440.0 +145348.0 +113223.0 +145518.0 +116738.0 +146081.0 +110090.0 +109229.0 +113361.0 +112544.0 +113329.0 +102579.0 +210732.0 +110346.0 +352088.0 +175889.0 +116475.0 +120819.0 +125378.0 +206683.0 +120893.0 +290652.0 +128074.0 +113361.0 +117590.0 +113297.0 +109197.0 +102643.0 +102665.0 +112821.0 +106742.0 +352412.0 +102942.0 +102750.0 +110036.0 +120573.0 +102814.0 +112779.0 +151709.0 +102739.0 +116294.0 +117526.0 +101377.0 +112255.0 +279076.0 +113073.0 +151709.0 +117718.0 +145616.0 +105723.0 +103302.0 +102792.0 +130200.0 +305652.0 +117760.0 +366960.0 +110250.0 +113201.0 +290716.0 +302617.0 +102760.0 +110250.0 +107684.0 +102708.0 +112949.0 +109610.0 +146017.0 +159145.0 +110218.0 +95208.0 +117782.0 +113452.0 +191539.0 +106582.0 +110314.0 +112416.0 +120851.0 +110250.0 +110026.0 +106582.0 +103174.0 +151677.0 +175953.0 +113329.0 +105910.0 +109037.0 +95733.0 +110538.0 +113164.0 +152762.0 +109994.0 +102666.0 +113297.0 +299858.0 +132998.0 +291164.0 +113297.0 +340729.0 +108705.0 +153260.0 +117750.0 +105920.0 +159716.0 +117750.0 +113233.0 +103078.0 +110122.0 +137366.0 +110314.0 +117824.0 +117494.0 +117984.0 +117782.0 +94229.0 +102643.0 +109293.0 +110335.0 +102611.0 +103110.0 +187280.0 +169493.0 +117782.0 +103046.0 +102440.0 +110090.0 +102886.0 +139923.0 +102996.0 +144752.0 +109951.0 +116674.0 +117686.0 +110218.0 +151837.0 +102728.0 +113265.0 +491313.0 +151389.0 +110282.0 +102740.0 +108727.0 +114856.0 +290436.0 +158663.0 +109738.0 +123783.0 +191015.0 +176919.0 +106603.0 +160825.0 +117686.0 +113297.0 +117782.0 +214407.0 +308379.0 +102728.0 +152826.0 +417316.0 +108506.0 +117974.0 +117718.0 +117910.0 +101505.0 +116153.0 +106667.0 +106422.0 +126706.0 +102760.0 +525361.0 +95656.0 +233559.0 +113265.0 +117846.0 +103166.0 +112383.0 +103048.0 +130563.0 +117878.0 +112351.0 +124514.0 +101505.0 +141715.0 +152918.0 +110186.0 +101409.0 +736227.0 +109069.0 +102750.0 +113265.0 +421122.0 +117814.0 +113201.0 +102533.0 +110378.0 +102846.0 +102760.0 +108973.0 +115152.0 +102708.0 +322841.0 +109866.0 +305652.0 +863680.0 +117686.0 +120648.0 +110282.0 +152962.0 +142701.0 +207465.0 +300370.0 +116528.0 +104942.0 +113137.0 +110218.0 +101067.0 +103270.0 +113361.0 +113361.0 +102942.0 +103201.0 +188265.0 +110218.0 +117654.0 +110378.0 +121658.0 +102558.0 +117718.0 +132194.0 +102686.0 +103110.0 +110354.0 +166158.0 +102856.0 +117654.0 +138218.0 +117782.0 +95080.0 +107889.0 +113297.0 +151741.0 +285242.0 +103334.0 +117206.0 +102453.0 +117462.0 +101067.0 +113201.0 +578982.0 +138131.0 +226274.0 +155354.0 +120947.0 +101569.0 +441800.0 +102952.0 +112416.0 +685078.0 +116856.0 +115940.0 +290908.0 +110186.0 +110218.0 +95324.0 +103270.0 +192880.0 +109261.0 +159337.0 +102611.0 +113228.0 +113324.0 +101972.0 +119533.0 +110026.0 +113137.0 +117078.0 +211466.0 +110282.0 +115708.0 +102750.0 +113233.0 +259993.0 +313628.0 +137372.0 +145953.0 +95378.0 +95221.0 +102750.0 +117238.0 +151208.0 +113105.0 +117750.0 +113233.0 +117846.0 +103038.0 +93440.0 +116674.0 +117526.0 +108621.0 +113329.0 +102675.0 +109728.0 +112538.0 +102803.0 +130563.0 +352220.0 +117750.0 +120669.0 +110218.0 +110154.0 +99263.0 +547275.0 +442056.0 +130435.0 +109920.0 +113169.0 +102730.0 +102750.0 +109229.0 +110335.0 +188820.0 +137372.0 +110282.0 +110538.0 +103112.0 +110186.0 +103078.0 +116525.0 +176317.0 +110282.0 +126264.0 +113265.0 +120701.0 +103142.0 +153026.0 +113361.0 +106720.0 +117750.0 +102708.0 +102803.0 +153025.0 +176663.0 +113361.0 +113319.0 +474298.0 +116475.0 +160065.0 +139898.0 +112661.0 +504789.0 +119880.0 +276524.0 +99050.0 +102558.0 +99054.0 +154077.0 +102718.0 +191027.0 +102676.0 +117430.0 +231757.0 +110154.0 +110378.0 +215483.0 +103142.0 +122940.0 +211426.0 +101121.0 +102910.0 +115664.0 +142182.0 +109195.0 +102792.0 +145307.0 +144447.0 +160953.0 +210666.0 +99018.0 +103174.0 +103110.0 +113361.0 +115884.0 +101537.0 +102878.0 +129859.0 +211318.0 +108292.0 +113137.0 +113265.0 +108557.0 +110314.0 +102750.0 +110186.0 +110314.0 +128458.0 +113329.0 +416699.0 +117867.0 +129755.0 +215505.0 +176381.0 +125314.0 +103206.0 +199141.0 +102515.0 +130011.0 +103174.0 +109101.0 +117686.0 +110442.0 +113233.0 +110303.0 +145889.0 +110346.0 +109876.0 +110463.0 +117686.0 +117526.0 +102696.0 +151805.0 +127346.0 +117643.0 +103452.0 +145569.0 +117686.0 +118108.0 +108973.0 +191327.0 +102728.0 +108209.0 +332681.0 +115440.0 +103142.0 +110420.0 +110314.0 +102728.0 +754300.0 +151453.0 +291208.0 +120669.0 +133881.0 +117782.0 +105856.0 +172777.0 +128603.0 +120321.0 +113105.0 +99135.0 +102750.0 +110314.0 +190011.0 +105616.0 +130697.0 +99274.0 +103046.0 +143766.0 +103110.0 +117750.0 +117814.0 +115467.0 +102718.0 +117718.0 +117686.0 +91699.0 +110314.0 +101985.0 +108324.0 +129859.0 +102910.0 +102686.0 +149924.0 +113233.0 +102357.0 +400812.0 +152752.0 +146209.0 +100961.0 +110485.0 +105792.0 +109357.0 +110378.0 +152762.0 +112159.0 +306209.0 +113297.0 +130096.0 +105883.0 +120883.0 +110292.0 +113228.0 +509294.0 +101569.0 +110207.0 +290564.0 +151517.0 +113233.0 +113378.0 +110196.0 +211264.0 +102696.0 +102835.0 +103174.0 +103238.0 +113297.0 +108599.0 +102804.0 +353240.0 +103302.0 +109898.0 +116632.0 +102206.0 +176471.0 +120669.0 +102910.0 +110260.0 +117398.0 +110208.0 +113297.0 +144565.0 +102846.0 +109101.0 +239768.0 +105402.0 +113233.0 +117708.0 +130776.0 +110218.0 +109994.0 +145978.0 +182750.0 +109898.0 +117462.0 +204766.0 +110250.0 +151805.0 +130563.0 +123779.0 +117334.0 +117462.0 +145454.0 +102782.0 +103142.0 +110218.0 +103142.0 +109005.0 +110314.0 +117792.0 +113169.0 +115216.0 +105846.0 +145328.0 +102771.0 +113329.0 +130691.0 +226466.0 +154898.0 +108917.0 +137898.0 +101217.0 +110314.0 +113169.0 +141715.0 +192657.0 +102900.0 +113393.0 +290440.0 +116588.0 +113356.0 +125250.0 +108472.0 +266506.0 +113233.0 +109133.0 +117302.0 +105696.0 +95196.0 +109898.0 +130627.0 +109994.0 +102654.0 +102931.0 +110388.0 +176406.0 +110218.0 +136343.0 +102419.0 +110378.0 +102824.0 +110218.0 +117942.0 +115696.0 +124674.0 +109738.0 +110346.0 +124110.0 +547241.0 +292297.0 +210642.0 +101505.0 +105999.0 +113003.0 +110186.0 +109834.0 +110325.0 +117718.0 +102462.0 +286016.0 +118016.0 +290696.0 +110314.0 +102590.0 +103206.0 +504191.0 +211520.0 +103142.0 +221527.0 +117718.0 +110068.0 +110036.0 +290372.0 +113164.0 +119784.0 +424505.0 +117718.0 +130606.0 +117654.0 +146273.0 +102654.0 +110314.0 +106106.0 +130051.0 +188393.0 +113137.0 +103046.0 +145933.0 +110154.0 +113265.0 +95133.0 +102760.0 +110378.0 +100993.0 +137770.0 +105723.0 +113169.0 +102548.0 +110218.0 +102760.0 +219964.0 +113137.0 +117718.0 +117526.0 +113201.0 +94037.0 +110154.0 +110058.0 +112571.0 +113137.0 +109293.0 +115568.0 +115779.0 +102558.0 +110132.0 +1064572.0 +117718.0 +102622.0 +102814.0 +108973.0 +117270.0 +102739.0 +108292.0 +113314.0 +101633.0 +106678.0 +112624.0 +108918.0 +106806.0 +226658.0 +103072.0 +102771.0 +117718.0 +103270.0 +109770.0 +109197.0 +130857.0 +99071.0 +101793.0 +102601.0 +134807.0 +116738.0 +161007.0 +109952.0 +102664.0 +102600.0 +103174.0 +120257.0 +147398.0 +117750.0 +125228.0 +109357.0 +102686.0 +120669.0 +109908.0 +129947.0 +110144.0 +103078.0 +211884.0 +353500.0 +117654.0 +105696.0 +191347.0 +105856.0 +113035.0 +116345.0 +144976.0 +94229.0 +113169.0 +117590.0 +102654.0 +117686.0 +110218.0 +102686.0 +167898.0 +185927.0 +102718.0 +110154.0 +102856.0 +112533.0 +108749.0 +656671.0 +103110.0 +126136.0 +113265.0 +102602.0 +110058.0 +105253.0 +102665.0 +120353.0 +117526.0 +155727.0 +115600.0 +115696.0 +109133.0 +102814.0 +103014.0 +101825.0 +109940.0 +110314.0 +95578.0 +108154.0 +235466.0 +117782.0 +110282.0 +109994.0 +117782.0 +113137.0 +110378.0 +102291.0 +115899.0 +103334.0 +110250.0 +102878.0 +108557.0 +117728.0 +103174.0 +103206.0 +106592.0 +102549.0 +119980.0 +110442.0 +117814.0 +117750.0 +102792.0 +103302.0 +266869.0 +151677.0 +93877.0 +112885.0 +110250.0 +112917.0 +110122.0 +352220.0 +126947.0 +110314.0 +110282.0 +116476.0 +102920.0 +191812.0 +110314.0 +102846.0 +113329.0 +132878.0 +103238.0 +116067.0 +117174.0 +141683.0 +140418.0 +103014.0 +134807.0 +117430.0 +130755.0 +105883.0 +183112.0 +110154.0 +103110.0 +102814.0 +120353.0 +113201.0 +113201.0 +119179.0 +101601.0 +110548.0 +110186.0 +345588.0 +113329.0 +116684.0 +102804.0 +120120.0 +117782.0 +184846.0 +153517.0 +115792.0 +102814.0 +198891.0 +112661.0 +120733.0 +145296.0 +110378.0 +117174.0 +145805.0 +110154.0 +109229.0 +117760.0 +289992.0 +113105.0 +102750.0 +106614.0 +110154.0 +117718.0 +109962.0 +112693.0 +112416.0 +103110.0 +199051.0 +176380.0 +133777.0 +110218.0 +323161.0 +506275.0 +101729.0 +145262.0 +153078.0 +110250.0 +117440.0 +101633.0 +110250.0 +180797.0 +117782.0 +113297.0 +133689.0 +117782.0 +113201.0 +110282.0 +95260.0 +117878.0 +102718.0 +137372.0 +113105.0 +117718.0 +110068.0 +117536.0 +120797.0 +102888.0 +108631.0 +367348.0 +102826.0 +113297.0 +102693.0 +102740.0 +109293.0 +109291.0 +106390.0 +110260.0 +98975.0 +103110.0 +98478.0 +122775.0 +98815.0 +113447.0 +102814.0 +117750.0 +110090.0 +113297.0 +110229.0 +267630.0 +102708.0 +102952.0 +102612.0 +120915.0 +110218.0 +110218.0 +125806.0 +110250.0 +130627.0 +103078.0 +113233.0 +587177.0 +175377.0 +120861.0 +101601.0 +117494.0 +116155.0 +117814.0 +113265.0 +205722.0 +120669.0 +305056.0 +110218.0 +148893.0 +110143.0 +102803.0 +117878.0 +112885.0 +117760.0 +137372.0 +110196.0 +113218.0 +99210.0 +201289.0 +110036.0 +677244.0 +95260.0 +109069.0 +113233.0 +95368.0 +175697.0 +113265.0 +130179.0 +168848.0 +179988.0 +105723.0 +108781.0 +110356.0 +110410.0 +113233.0 +141779.0 +116727.0 +116346.0 +117750.0 +102835.0 +413378.0 +109962.0 +110250.0 +102804.0 +335215.0 +110250.0 +152918.0 +352472.0 +110282.0 +137657.0 +103334.0 +102888.0 +117622.0 +109898.0 +102728.0 +238385.0 +130904.0 +95356.0 +157640.0 +110314.0 +117728.0 +290436.0 +116642.0 +102814.0 +113329.0 +102814.0 +102676.0 +103110.0 +116121.0 +290440.0 +106656.0 +103366.0 +113393.0 +134935.0 +103089.0 +529286.0 +102982.0 +102686.0 +95335.0 +102538.0 +125934.0 +117878.0 +151741.0 +117814.0 +102644.0 +130001.0 +147398.0 +102814.0 +110133.0 +290372.0 +102357.0 +102728.0 +198164.0 +110239.0 +102696.0 +102846.0 +103078.0 +117750.0 +601028.0 +110367.0 +110314.0 +95356.0 +117846.0 +110079.0 +109674.0 +160953.0 +320087.0 +117590.0 +110250.0 +149825.0 +116748.0 +383978.0 +129923.0 +118172.0 +112725.0 +117760.0 +117814.0 +103334.0 +102580.0 +112448.0 +112757.0 +103206.0 +117462.0 +113105.0 +585093.0 +172997.0 +102846.0 +117430.0 +103027.0 +101825.0 +103142.0 +106582.0 +141779.0 +110250.0 +130032.0 +138070.0 +129283.0 +146410.0 +110154.0 +102750.0 +112789.0 +353304.0 +95482.0 +145230.0 +188169.0 +138350.0 +113201.0 +113265.0 +117888.0 +132066.0 +125132.0 +147398.0 +276292.0 +333732.0 +99104.0 +137372.0 +106699.0 +102771.0 +117590.0 +110250.0 +113169.0 +115942.0 +211520.0 +110346.0 +102835.0 +117622.0 +94325.0 +120097.0 +117814.0 +110324.0 +144603.0 +103174.0 +95218.0 +117558.0 +290524.0 +113233.0 +110506.0 +116695.0 +102270.0 +216737.0 +116313.0 +102654.0 +101409.0 +120797.0 +110292.0 +113201.0 +117846.0 +139898.0 +113035.0 +158993.0 +91624.0 +117366.0 +110292.0 +139987.0 +205523.0 +129923.0 +103238.0 +166007.0 +98922.0 +117856.0 +217133.0 +106426.0 +108127.0 +116005.0 +116729.0 +141715.0 +110314.0 +367275.0 +146189.0 +117611.0 +103174.0 +105696.0 +115972.0 +113201.0 +267317.0 +120733.0 +115600.0 +109802.0 +102782.0 +103270.0 +102696.0 +286994.0 +115408.0 +108255.0 +110164.0 +94357.0 +101505.0 +129835.0 +110378.0 +117526.0 +109994.0 +110378.0 +113201.0 +95282.0 +110196.0 +117846.0 +169483.0 +109962.0 +117782.0 +113137.0 +109930.0 +114955.0 +109994.0 +324332.0 +102622.0 +102792.0 +109069.0 +110090.0 +110218.0 +95324.0 +116475.0 +102750.0 +110282.0 +103238.0 +117462.0 +102697.0 +106405.0 +110314.0 +116729.0 +166818.0 +167833.0 +290844.0 +130115.0 +110378.0 +125335.0 +152684.0 +126456.0 +102899.0 +102846.0 +110442.0 +346639.0 +109727.0 +103206.0 +102644.0 +113105.0 +116642.0 +131630.0 +112480.0 +113329.0 +99242.0 +238321.0 +102760.0 +106731.0 +145933.0 +105425.0 +110208.0 +107972.0 +106752.0 +112544.0 +241034.0 +109674.0 +116567.0 +113137.0 +264527.0 +110154.0 +290844.0 +140898.0 +110186.0 +110026.0 +290652.0 +103142.0 +102654.0 +102504.0 +206027.0 +103110.0 +130051.0 +110346.0 +114888.0 +103361.0 +474803.0 +145697.0 +117526.0 +102728.0 +106668.0 +110292.0 +99114.0 +153050.0 +110250.0 +117750.0 +117888.0 +117686.0 +106710.0 +141715.0 +538916.0 +127500.0 +147398.0 +124238.0 +176209.0 +291081.0 +110229.0 +115792.0 +160869.0 +103174.0 +117334.0 +110410.0 +134247.0 +110282.0 +113105.0 +369438.0 +110047.0 +102654.0 +290716.0 +113265.0 +110154.0 +102771.0 +117430.0 +184107.0 +109834.0 +102867.0 +113137.0 +102675.0 +147270.0 +117750.0 +113329.0 +110367.0 +117686.0 +151805.0 +109674.0 +145755.0 +117750.0 +120161.0 +117750.0 +101825.0 +151581.0 +102718.0 +102248.0 +141651.0 +133885.0 +120701.0 +102944.0 +103302.0 +116354.0 +106678.0 +110282.0 +113201.0 +108324.0 +548032.0 +102760.0 +475003.0 +102910.0 +102270.0 +117622.0 +144991.0 +116761.0 +107836.0 +191371.0 +110208.0 +120819.0 +191793.0 +110346.0 +98520.0 +95303.0 +113297.0 +110239.0 +108503.0 +113233.0 +189025.0 +110346.0 +117718.0 +113361.0 +107716.0 +387396.0 +422568.0 +106667.0 +102558.0 +141619.0 +116697.0 +117846.0 +98414.0 +115536.0 +117526.0 +211830.0 +153346.0 +138068.0 +110314.0 +120092.0 +109229.0 +286930.0 +112672.0 +117398.0 +290952.0 +108376.0 +182066.0 +109716.0 +120669.0 +110250.0 +117334.0 +102568.0 +182545.0 +101793.0 +105787.0 +176411.0 +115354.0 +116620.0 +428401.0 +151709.0 +120701.0 +110090.0 +109962.0 +115152.0 +114992.0 +106624.0 +102835.0 +103142.0 +102494.0 +160495.0 +116377.0 +226318.0 diff --git a/reports/data/min_bid_ratios.csv b/reports/data/min_bid_ratios.csv new file mode 100644 index 0000000..576a08c --- /dev/null +++ b/reports/data/min_bid_ratios.csv @@ -0,0 +1,4007 @@ +0.12204560595479126 +0.15961772321494835 +0.076974608495313 +0.12271679669235935 +0.08189819138391956 +0.12493842578299832 +0.1464469954033034 +0.0231797090101783 +0.08920778572788747 +0.08505580392513755 +0.13099581485734388 +0.08306128902559082 +0.12692221140307314 +0.08531061702436614 +0.13474527778019138 +0.3008531456222088 +0.27186843967023905 +0.4832347202832279 +0.38030446390228334 +0.47220020333412455 +0.08314454008248867 +0.12498068418553683 +0.09523464350950225 +0.21916753414292964 +0.7975542568143118 +0.1109221899645252 +0.09987198615458813 +0.08144172732021522 +0.17468629624223647 +0.1521084158276039 +0.14195881434625987 +0.28788722030532143 +0.11279560361558019 +0.14241167628006304 +0.08241441059210514 +0.129452387920934 +0.11953524465604347 +0.13867027261457157 +0.14093201016632562 +0.26410979183393707 +0.08327443542719438 +0.13066391118187298 +0.08428677928866754 +0.1523477140240031 +0.2635930794331282 +0.2794333684146946 +0.16911568406840685 +0.1960486864806481 +0.0805977094873822 +0.11776878555882722 +0.12237107717545063 +0.07579407700453213 +0.07299935901389426 +0.12300338660887908 +0.11743220083839365 +0.0956947102651181 +0.07979664831042244 +0.121686396006677 +0.07706441509106281 +0.14244886537319498 +0.17734922481221685 +0.16087793948546447 +0.07946616732139095 +0.14800199522270574 +0.33762353051379224 +0.7727203424709042 +0.6340637554740385 +1.4355124161318544 +2.503553621338204 +2.3509820294784425 +2.352497006956794 +2.510496533136552 +0.08576568505461186 +0.13593742242854248 +0.08593249218183527 +0.13349828377601838 +0.058892961494182106 +0.12562937912664163 +0.08331853614891159 +0.13066469872585798 +0.22913463030081535 +0.23025523437667497 +0.09142018981452023 +0.1393549562048082 +0.08334575656160194 +0.13573591085464046 +0.1145550037693842 +0.12479861298225324 +0.251405396113484 +0.41803805195837945 +0.0821525536172712 +0.12952513324032267 +0.15058431122524926 +0.18800717864661595 +0.057667666397508206 +0.08092751937984412 +0.41170392189065896 +0.19352969589117364 +0.6276219574022265 +0.815841416498753 +0.1766275751827376 +0.1798360982411881 +0.15334846244251338 +0.1953625623607554 +0.16613118184173747 +0.20881813324843118 +0.4706449034538786 +0.7869961285006678 +0.0799237497617215 +0.12710962478483062 +0.10181424182872227 +0.1361911055322327 +0.26440166283424377 +0.18053854951511633 +0.35170881023298073 +0.09119499396833916 +0.18731819140958003 +0.172679816349091 +0.21677536418025337 +0.1271243893531422 +0.08243149516198973 +0.1269909440068891 +0.12708633220372373 +0.08553098354576882 +0.13666797567918237 +0.13646681980532704 +0.17406775057029314 +0.18068959913248347 +0.16965829087400858 +0.11561739512308705 +0.07847875514240493 +0.10903631296784083 +0.14529222503347686 +0.1642507868428174 +0.09331903196582908 +0.1282696880513585 +0.13611656456116847 +0.17363386144528375 +1.7322666350893234 +1.0809781862114987 +0.16996859223205701 +0.213438137337023 +0.10038992795299927 +0.1420352533991673 +0.12203505562661641 +0.18538907627085974 +0.21895420909416097 +0.1267197186576171 +0.08364579496190562 +0.15895592574407583 +0.17526055736417354 +0.1554175244116778 +0.19839001600715664 +0.13744463825283051 +0.08668849723849861 +1.258221160295093 +1.6054160798121924 +0.09599580260685246 +0.12230989468296329 +0.08177145137490797 +0.13180850529192956 +0.11049930599136543 +0.14101993581477976 +0.0704822707441554 +0.13967236375130115 +0.09719203643664806 +0.14999999998439026 +0.08510037415043206 +0.1354032869413559 +0.14044177928304144 +0.12534432235899748 +0.00934331386893206 +0.03453940555655973 +0.6387278593583611 +0.33785443039763247 +0.34961554024345987 +0.1919314464077541 +0.4113434991465901 +0.12062598272903632 +0.8789965854678375 +0.08600689130233018 +0.18182751587676743 +0.1970858120842232 +0.4871820459023888 +0.45053193896780347 +0.09152433925049305 +0.1196711822369328 +0.3540157223502526 +0.48067401595845693 +0.4608097072557853 +0.4497932035556155 +0.15820015436856938 +0.30797948226978067 +0.11595408513791224 +0.12206821494553631 +0.08732832346075459 +0.14016125680605904 +0.10852697518594316 +0.1384623816202723 +0.4584560011719406 +0.13392838527401682 +0.17011486674807585 +0.1680067223883362 +0.1816069717463702 +0.1033281272307636 +0.13181012263926387 +0.17336334335864592 +0.37127867198291536 +0.1001737336471039 +0.12586747265945503 +0.13237732493545395 +0.15659600714816332 +0.20279802269532568 +1.2558018660859847 +2.012371955535642 +0.022839902423596806 +0.3550303825849843 +0.3741252029207614 +0.29727730752215603 +0.48389544884059266 +0.14132128478313388 +0.1797884552728913 +0.3491728427234447 +0.22881718254786163 +0.40661855103019945 +0.03422879732588892 +0.12363718550715758 +0.28659002332897765 +0.24573254825949378 +0.19121046507989697 +0.08303382804263719 +0.12817589892934458 +0.06073145143510803 +0.1409207760839414 +0.08495998385894506 +0.13908826535920776 +0.16952539303651032 +0.21618095670673207 +0.21361627287125765 +0.18944154647231376 +0.13310337235897024 +0.16974267337000698 +0.1698222449398691 +0.13889026636286503 +0.13898489554030233 +0.08315106446135066 +0.2313692861324982 +2.6966488664042023 +3.545996303378804 +0.15930099915460777 +0.16942187386428445 +1.442522077032088 +0.14366631633322607 +0.2892662584522039 +0.26149733424628 +0.4847785398684973 +0.0026487798839945416 +0.14573499019337668 +0.29968891662479225 +0.14345136401212433 +0.2747793525845716 +0.1400750150862069 +0.17612102311206898 +0.11899419612068968 +0.15427443637068966 +0.09453614200897831 +0.13531782284103283 +0.2977437811013125 +0.5757789003160911 +0.1099787721583611 +0.27731753433806067 +0.12093212798997853 +0.19323760646100419 +0.12052831758620541 +0.14973191901379124 +0.14090968059999825 +0.10387813734013152 +0.13231034130582642 +0.10500058708828365 +0.13057553747102296 +0.18897107088643805 +0.381010469259613 +0.0910146144016526 +0.18350703513058847 +0.14342427422041365 +0.1830440061771639 +0.022710239068652306 +0.1443205038194126 +0.11791734906090925 +0.11669170222701136 +0.2581715512590156 +0.03484209904294955 +0.04305322533979881 +0.3471441770213332 +0.36142556593822345 +1.1415481814621344 +0.08346286373067129 +0.12073201091109967 +0.11551912161358048 +0.16024552828750416 +0.12626665763724704 +0.11220519431149306 +0.13005152675635603 +0.21277235145152917 +0.2644764153878555 +0.15826095925093478 +0.3209334091901421 +0.12713674856385454 +0.16480261952837522 +0.0888794194856255 +0.12953580449967628 +0.0809937479213432 +0.13018644881988756 +0.1719464615760152 +0.21580763314133408 +0.2801323197341589 +0.37064881978913383 +0.14773182119226158 +0.2858005487227554 +0.10791083497956062 +0.13957110818158694 +0.08132147665989022 +0.1221369370427426 +0.028610192138198466 +0.12584255467073657 +0.1014404690190781 +0.13827355471023375 +0.12202587792987984 +1.2975412823806391 +1.8702895471674446 +1.763184743204053 +1.870399353199804 +0.14558293033486824 +0.13878973615418946 +0.12851170278053947 +0.25984110472395844 +0.21490982759839597 +0.38676829351650505 +0.14046937125729833 +0.22555033864362342 +0.08208369805232298 +0.12637598596424163 +1.1659847184463072 +1.2491833385199844 +0.1386294920020283 +0.1764965028257963 +0.1643568340923026 +0.2747460472200317 +0.1452740431633484 +0.3057054976767186 +0.16676410814220974 +0.14284857236403595 +0.11404621039948859 +0.12807980952436063 +0.09753764577922075 +0.13121022393509452 +0.17406007696859996 +0.22178150715402217 +0.11948962381460454 +0.14127792212859805 +0.31242695275425086 +0.12556563880568133 +0.15769858620543 +0.08163163339103631 +0.13098573071558106 +0.08163163339103631 +0.7593560481833733 +0.8948689383208044 +0.8945951397577573 +0.31656470209151255 +0.40546965018812214 +0.4027055138278564 +0.1153803148920821 +0.14349907689604893 +0.17929286760062013 +0.22523321338347596 +0.15386848758852742 +0.14290499911668567 +0.17998743372493578 +0.11571714224921407 +0.14734343216777063 +0.27644192867409273 +1.3830163043478263 +0.1167050726095366 +0.14691883132415812 +0.11877767638052082 +0.15382660534473427 +0.11912214983559784 +0.15174971521144398 +0.14177214554410816 +0.15639714332604207 +0.18550234967486548 +0.23322188458731338 +0.17524422602838735 +0.1392899944594149 +0.15351265029948827 +0.005059140387191039 +0.007663168148313395 +0.06260441904761904 +0.12177883140320495 +0.32453977299930364 +0.6311543335673457 +0.11520058465513698 +0.09217936926560041 +0.12849302950964556 +0.14666708003484052 +0.1304680489194994 +0.06161594857101876 +0.13300309018264841 +0.15554297134703196 +0.12051608425222758 +0.14789206581842346 +0.1510295372122297 +0.27142695692416396 +0.40818798029337966 +0.47692873617748743 +0.117811561316376 +0.13905158052443026 +0.18985534783886085 +0.12017705449561777 +0.05736059133810335 +0.15340318438711778 +0.17250886629798773 +0.30987030489619377 +0.1759690450998777 +0.22449771938925095 +0.2248245690214444 +0.1177613295417763 +0.11594697322119255 +0.14783905013533394 +0.1503233229144398 +0.1752119243696571 +0.220200545029126 +0.11551250049582329 +0.1287450494455605 +0.08688703682026201 +0.1690330609548441 +0.27367781686409026 +0.5059558535013614 +0.08755646467324435 +0.14999999999990193 +0.12468552186388067 +0.1694058845677072 +0.1593217030795413 +0.11734336771622718 +0.14733332226036971 +7.99036009430081 +8.87100639353871 +0.14872110434518415 +0.18509253069204273 +0.5112786068243609 +0.19461176270130612 +0.34289498014166253 +0.6630925887338509 +0.86157893582268 +1.1709028545628817 +0.11707026197361722 +0.14703782626396047 +0.1571549338803824 +0.16218003849398907 +0.16226029041067225 +0.16214824056473728 +0.16222773538786683 +0.26223938973039906 +0.1424611264136592 +0.2654522679066004 +0.23125030127480042 +0.8823226117301393 +0.18580977873038962 +0.3134688963908948 +0.1207079211462654 +0.15208145442819493 +0.09436683045527891 +0.1597173306406364 +0.25210198229869996 +0.48685218584555173 +0.32314660988198307 +0.7157067465727134 +0.19604736388609834 +0.39473335768196305 +0.201084489111116 +0.3905195345214764 +0.1321275377916383 +0.24409551521220205 +0.13226767013979648 +0.4168196940684979 +0.14023315402717634 +0.25215807754365066 +0.23157499716515084 +0.4273402308558864 +0.12841858244302765 +0.09836551809628351 +0.16938972697200996 +0.13169318428546986 +0.1455135867508741 +0.30607465970392667 +0.030750177132092594 +0.01609670695545179 +0.016090036883712164 +0.11608226971329774 +0.12525408167995755 +0.06495360754291285 +0.16221740675048613 +0.15380361511453425 +0.11102614937388242 +0.1397208824686947 +0.16280804740665014 +0.11731743670331436 +0.14963888850152318 +0.14199817443817458 +0.27546031717403974 +0.12029292728634297 +0.1533260604469053 +0.11861659628765839 +0.0614781794862977 +0.007646098226759808 +0.14251997291226456 +0.14969059745855479 +0.009233565254491687 +0.009235476749296196 +0.009235476749296196 +0.14423293162991097 +0.290592157539576 +0.1409352038376638 +0.2539284947451783 +0.04569923663879288 +0.11756455812147669 +0.06300962293445916 +0.1374203507826559 +0.13762406449738562 +0.8956110953022418 +1.1418365433095377 +0.11375310447317548 +0.1340697893344854 +0.16248325034223488 +0.17268818676465386 +0.1556635721281544 +0.14981124103516186 +0.37534014856827447 +0.1367630225930929 +0.24969252476998138 +0.060545583030675164 +0.06060368021092464 +0.12024483833647932 +0.011858118048730106 +0.024913207125003875 +0.2464489016645859 +0.024897754029374566 +0.11474313105826581 +0.14432331555821884 +0.11452125890424779 +0.11062683138297678 +0.14596409015062387 +0.14596279839871762 +0.007923094362922444 +0.17355577262597321 +0.05467497322980433 +0.4121214293398978 +0.16029266961630356 +0.06784953235394753 +0.14999999999835395 +0.11005604789112781 +0.14031631289572485 +0.2955216986722563 +0.12494353193826692 +0.1249928492693885 +0.11610558107877447 +0.14790573704253304 +0.9435342554757453 +0.2795347474680357 +0.11216506274391438 +0.12239427781479498 +2.1110597060949585 +0.452178002719896 +0.8111732053849245 +0.22606521208001146 +0.40570568913318694 +0.14223214759861869 +0.14194372861186455 +0.3169553086497853 +0.5994721356678968 +0.29387796023958135 +0.5595251011921443 +0.15794426490971544 +0.2014603968648036 +0.11621982315793171 +0.14438481944277007 +0.12797214757995448 +0.16287466259805775 +0.14440876516497544 +0.11633097441404781 +0.13932775642431197 +0.12088457412658381 +0.1523298049521186 +0.1347648006077802 +0.11775397152394018 +0.13880162685906366 +0.8304340815790722 +3.5498106954095836 +0.3236109728138962 +0.5496270176321085 +0.12977509579346064 +0.11314661225903547 +0.14220067811203776 +0.15811785682718338 +0.08811735659642393 +0.273173313330298 +0.44671091974750193 +0.8801642726556912 +0.11703864725177043 +0.19794810659999665 +0.04354950336719922 +0.19125114975289814 +0.3932803907883686 +0.16406377448745027 +0.193556369195592 +0.19325221175720061 +0.1423533326071811 +0.2950920545918413 +0.12092053664324819 +0.15409073604072707 +0.30731681769965624 +0.007197504492289209 +0.007200004222517271 +0.007200004222517271 +0.0032341548394539984 +0.14705312557340403 +0.18733714265076226 +0.20802162519296627 +0.4768025527628597 +0.08980936081578107 +0.11898660929873661 +0.1498509244831597 +0.550012022719157 +1.552107197453578 +0.11940630966816211 +0.1320687557956651 +0.11591307091904635 +0.02716326872148075 +0.1969256156603822 +0.1512211741203834 +0.610129677775439 +0.12039229800750718 +0.23646411120764022 +0.04959026616718588 +0.12592234197258925 +0.1359467448063543 +0.16030724552816547 +0.3030097020391275 +0.11143781602511005 +0.13994606945454083 +0.1344957254138604 +0.12120003896398773 +0.11676068212852526 +0.15175994634674284 +0.07547445351718485 +0.14999999999749397 +0.06062640351220858 +0.20886730026540756 +0.042206829128062825 +0.2657341500158517 +0.026401793297391563 +0.13627715198747173 +0.11724969527618852 +0.14753323181525071 +0.02767417253994641 +0.02765929253320386 +0.1499999999998373 +0.04112005862580246 +0.08790088895969607 +0.08812645323937215 +0.1500000011773812 +0.8152730278842825 +1.191826097180219 +1.4972093609820742 +0.26853696864934584 +0.21327217819468153 +0.3732245459328381 +0.3725804444077328 +0.20051400252474796 +0.4853742685350065 +0.14402102878763237 +0.18097574549399212 +0.11041274775065665 +0.14065628339759917 +0.14076497353638598 +0.010564888257520744 +0.04605443932571547 +0.07471652835408021 +0.035766078848393154 +0.030929575845820078 +0.17317146377203918 +0.10159816513796477 +0.3407271943590992 +0.10161666349238496 +0.22401172694471186 +0.14265044965900936 +0.579787904883432 +0.11892110361369297 +0.14956345251050718 +0.13241772381732886 +0.11949972294035381 +0.11772045713642101 +0.13876425170267323 +0.11945673872727156 +0.142238535481453 +0.1175604153178513 +0.1573252192794037 +0.24098865191693292 +0.455640892296802 +0.032908646717694945 +0.03266118625909553 +0.14357078857095876 +0.11950177220409444 +0.225793197006377 +0.12359370950592884 +0.16017638041377474 +2.4700950253368847 +4.719037915027741 +0.5118537038708902 +0.12059188939535936 +0.055074057062627 +0.14997632875406341 +0.11614675823070324 +0.14786012520151923 +0.11926228448792933 +0.11926228448792933 +0.15201163887444838 +0.12406350020403996 +0.14614643611515143 +0.12142746804666178 +0.040567557049920475 +0.04463725106845384 +0.11290458812482701 +0.1311261117116868 +0.04697084175365901 +0.14879200927312364 +0.1499999999857372 +0.26411135690049076 +0.14759170996538992 +0.11118263960319938 +0.13952747253632847 +0.10364038957409528 +0.11882820784489267 +0.11682399914334435 +0.12589574068313933 +0.1499999999919847 +0.13886837725169093 +0.03086004545454545 +0.14993863636338137 +0.08586946510343 +0.14999999999077054 +0.151999032803163 +0.19012994286292012 +0.05773470595173985 +0.14999999999940467 +0.06771853495376089 +0.14999999999189625 +0.02312156194484514 +0.1145363527330492 +0.06379702761832277 +0.08129422273206194 +0.17022374651496286 +0.16834019990182889 +0.016315053353968906 +0.13003604709884486 +0.1514153775775433 +0.1415236655453997 +0.149999999989882 +0.11975131436127896 +0.07045524115500051 +0.11629934110335534 +0.22898831892949328 +0.07878787605583712 +0.14999999999792799 +0.07506319292409101 +0.14999999999825187 +0.14791247975649213 +0.18608730693561068 +0.12346381673282948 +0.1469767675152899 +0.1178541800251562 +0.12706010015348196 +0.114318793166379 +0.14581499570225376 +0.08102488770660304 +0.149999999998791 +0.1185207942275522 +0.2254790237784972 +0.11704314620994169 +0.2784740913664155 +0.13206148557335257 +0.1153948220901947 +0.2032694606081716 +0.12447515852806725 +0.019769223347092416 +0.0031368142664406546 +0.019012031688460215 +0.11836754526761982 +0.11836754526761982 +0.13333168414495325 +0.11537219377663219 +0.14355802374860077 +0.1499999999956618 +0.13904693704906154 +0.12003797850415918 +0.1530953008205827 +0.04049246151055016 +0.1768940315775031 +0.13246592970033616 +0.12003990402667021 +0.16304325379705903 +0.07394757329476521 +0.149999999989125 +0.00957393208090868 +0.05428728689627403 +0.11949416432472929 +0.1394095129579717 +0.07604309124969631 +0.1945003584431006 +0.024205878071880467 +0.20318251838097548 +0.007328091073447796 +0.118360350775218 +0.1276894940870399 +0.09070710999999919 +0.0876072465762458 +0.18324027573670298 +0.34622421841598483 +0.37223665008481366 +0.16339682194707997 +0.16259929920040672 +0.30826730237507516 +0.009399598518287422 +0.08460816817086748 +0.14999999999612523 +0.03739434373282445 +0.1181500681326208 +0.13940623405217037 +0.33332405339222493 +0.08182518283972369 +0.04818548866617518 +0.07934389848654483 +0.1167321215410758 +0.14680482199088324 +0.14448522076111656 +0.13528272415169912 +0.29196721439560025 +0.11554442898761628 +0.14513791744561905 +0.1192961428720337 +0.15463281509715412 +0.12150993290907466 +0.13508243735090542 +0.12103434982154718 +0.14379137712927273 +0.1191218165554339 +0.14961162735266412 +0.11909354754772015 +0.1496377538269778 +0.12075392961467409 +0.15390743120512282 +0.12461977027331245 +0.1729984383559127 +0.12219642830257739 +0.15593139266332298 +0.021444512584174673 +0.12508151962271657 +0.13861959772757715 +0.18283802693446363 +0.18229390757805303 +0.10513181759066964 +0.12200377224939674 +0.1343513814112099 +0.11636951374727537 +0.12553796848731613 +0.12081478215581076 +0.15390798843845616 +0.12994295172644701 +0.119896058954135 +0.11789804603316124 +0.1256701746295893 +0.151162780272395 +0.11955945098535194 +0.15035732702388757 +0.12142432195798965 +0.15492382256959442 +0.12347662325384627 +0.16017193629503326 +0.12384373201780204 +0.1604315488671025 +0.11996929299136581 +0.15103327497710642 +0.3271022810572087 +0.16446193791029212 +0.6174276147149509 +0.12016901654118647 +0.12980472939081733 +0.15105896788247472 +0.13057925734358714 +0.11989786926398353 +0.15051471467082983 +0.14454981613839102 +0.1548447873246835 +0.12149899967192422 +0.15483944883528786 +0.16041722256784005 +0.12016253261222962 +0.153237258639763 +0.12150135862148846 +0.15510671292043252 +0.11732737224841355 +0.14973312859426507 +0.12953137775722207 +0.15512024817012995 +0.13571363595849084 +0.11917634751229936 +0.14991068459216977 +0.119819623105853 +0.15062192177255004 +0.11994750959413057 +0.1509728794597963 +0.15080729328020506 +0.15414649766666652 +0.13799999999502785 +0.15492200620310131 +0.19067823035875586 +0.1364096454719029 +0.12048835481137267 +0.1517501102221376 +0.11688972683110285 +0.05528826643994608 +0.21358881891890258 +0.10531049665413421 +0.1499749205818045 +0.23194934002903783 +0.1683231479804243 +0.117274318168759 +0.15424512164972898 +0.3317817836510374 +0.2203355328463062 +0.1491775362175873 +0.2734199234783525 +0.16204898909974222 +0.3068448628997234 +0.032703683673858355 +0.11688790961120343 +0.11698052861181277 +0.12840357035679417 +0.14999999999202465 +0.12838495908106826 +0.04418754502759921 +0.14895027463759353 +0.16840048752391426 +0.021294659796840993 +0.12015468191734067 +0.15283385715302025 +0.008088970077179574 +7072.062742817127 +19162.848065464725 +25487.984042002678 +83912.43135870386 +52076.4060047516 +0.09004139882017805 +0.031021629083740464 +0.015542414504169723 +0.12521806537433877 +0.181500000006322 +295.57064302457024 +0.11750058107983724 +0.14761147765172136 +0.020317776485927804 +0.08552698759226278 +0.020314612685742653 +0.14758821367841538 +0.0331879462506124 +0.0332168901209723 +0.1154029904716061 +0.1363084558607972 +0.06165278554754186 +0.1774968569078814 +0.025017754036032083 +0.14999999999827945 +0.1163366660131531 +0.14445747021264715 +0.09996334503646731 +0.07679428505307802 +0.03839714253293832 +0.11788141048530099 +0.14858922823768028 +0.11696162756021602 +0.21365406842102977 +0.07583687508392613 +0.06332563504788036 +0.07204873746265646 +0.14999999999848118 +0.14999999999474495 +0.1938845272552064 +0.184182863170817 +0.10567981619477451 +0.14999999999411479 +0.116940058106415 +0.07553458882428442 +0.21336914165107665 +0.11782148149868292 +0.11782148149868292 +0.2839726172532777 +0.15015316888623226 +0.08824647052736088 +0.1814738652109848 +0.4145086426620787 +0.11137711804876715 +0.12578862970733 +0.11607882088097012 +0.22649641661491507 +0.25326674155833884 +0.2534930586409597 +0.14900478185305055 +0.24274413797306146 +0.15996368839939448 +0.16150747220420267 +0.43358866884034847 +0.11699764111438353 +0.21458940164295678 +0.0860292214883101 +0.11927504480295609 +0.15216569052177223 +0.11774495793462116 +0.1343510883571131 +0.11859508647524289 +0.15116792881542676 +0.19815436428532268 +0.09417629366970177 +0.23964458560351698 +0.14993052875450474 +0.19502252577101004 +0.08897466668833443 +0.06616090331686654 +0.14363585038718624 +0.2684008452627201 +0.1588635621823958 +0.15039675869300823 +0.32166129935282245 +0.14761843204682443 +0.17321475130792835 +0.1730538434904712 +0.17308602505396264 +0.1737618378872825 +0.11657242088734864 +0.149940475859817 +0.11694626366532593 +0.11657242088734864 +0.11659318993056961 +0.11651011375768576 +0.18722094248224008 +0.0396306424127135 +0.11978440930926765 +0.5402255549737128 +0.6263285047023263 +0.12476980582827842 +0.14999244105433812 +0.14924674707229144 +0.07838987553595178 +0.1498334077072431 +0.7817329236566403 +0.9765426203725638 +0.16375310452212283 +0.4223893664643079 +0.24362528833935662 +0.25019842615911286 +0.2822551564731129 +0.4057688758527593 +0.20440742379418775 +0.24378329970618617 +0.152563405808837 +0.15685398553137764 +0.18191370106367935 +0.18640639676960694 +0.11850576513663265 +0.2149405924007991 +0.10390723365412155 +0.3180504998219925 +0.599045716227429 +1.522293445842119 +1.942876551788534 +0.15731793815980524 +0.05730878034913904 +0.020598486781330333 +0.1186563082075626 +0.21674629581376856 +0.060202279659656445 +0.15609480003121898 +0.4027587200309815 +0.10919199882209722 +0.27567655758363674 +0.2755020525914132 +0.07690303030083769 +0.09523449955122942 +0.09507147883293256 +0.09504233850705499 +0.27499633621915837 +0.5227072708074942 +0.49472294328803845 +0.2918291143812451 +0.4209025661639918 +0.30203718013869235 +0.5127795834637888 +0.26804302045720546 +0.3021522428745028 +0.04311732267226077 +0.043115397718499975 +0.07905989908165227 +0.02858181159604406 +0.024406088509712195 +0.1296690607582123 +0.11570737815441753 +0.11434883381371366 +0.20284586849922176 +0.1896237864077671 +0.14379674370821974 +0.11817625525417051 +0.17179580213521567 +0.11691077652319704 +0.22060352193015917 +0.06860249827867416 +0.068590287048863 +0.15350772403176513 +0.12351876951731253 +0.1455767159341073 +0.4379506459288734 +0.8283161753955829 +0.4383661567096158 +0.4383433264469377 +0.4035317419152795 +0.40350891165260133 +0.7839703772089152 +0.2359921576377549 +0.15562873252298431 +0.15428664769116832 +0.40219333663612916 +0.21552299691169602 +0.7136778328595642 +0.6238826220646647 +0.3903523065066496 +0.2181649570549332 +0.7591388167313384 +0.1183656907416462 +0.03173170591629295 +0.22381913081806265 +0.2541135687938713 +0.4660872676147086 +0.028381262221444534 +0.06454385277071312 +0.3972634604323667 +0.14957737975153637 +0.07122753814162314 +0.1926738404745606 +0.1985579638706493 +0.2697364646794192 +0.5104395405021573 +0.44621584736348846 +0.1250402429019076 +0.1499914003709752 +0.33335495324413855 +0.29490919904912166 +0.29499210555795186 +0.5570319444928339 +0.5272099671757675 +0.10349100924454482 +0.15012613173387832 +0.15886279714113785 +0.308613323800062 +0.1179844596610006 +0.1378931278971794 +0.14189931308630566 +0.2554672298368091 +0.5500633902625225 +0.5000006520808503 +0.21265614070418137 +0.45838562716634285 +0.4166667270444532 +0.23981182956139896 +0.5159092955278032 +0.46890288109533035 +0.1918385395874381 +0.4127274364222425 +0.27407066235588445 +0.5896106234603464 +0.5358890069660918 +0.11851936180346855 +0.22568223039339858 +0.1777776665284647 +0.031786725456666276 +0.08969211118937204 +0.12038277618557745 +0.05764629707857789 +0.37733026040203144 +0.40530183390097946 +0.68820526452129 +0.2000415087366665 +0.6255003236351184 +0.19284825501361164 +0.2659208210065756 +0.14307032905196831 +0.5502383842497537 +115.5888883236377 +189.16588018006516 +0.11942694792162079 +0.23479876261021562 +0.09474482061647302 +0.14262432038077405 +0.3581647757803248 +0.06581445813428252 +0.07469838108777668 +0.010523005265857808 +0.15980467451724534 +0.12150837248992 +0.21640628515565294 +0.19013685302712202 +0.12117236220112322 +0.0581456653219544 +0.11827617157855787 +0.22355198921089864 +0.03472788161514928 +0.28568012227231343 +0.10640504828856479 +0.5870038656361677 +0.1843512910495369 +0.15529659766991039 +0.12594680337259956 +0.12113047331525502 +0.3480913960736141 +0.2163627971382414 +0.19409871841881218 +0.36674075503896636 +0.008918808286811209 +0.008918808286811209 +0.00891722074087098 +0.008921983378691671 +0.008557840028651236 +0.023255067483849323 +0.05988989975654078 +0.04326445898610562 +0.11300859687169243 +0.021837839036512173 +0.05687964242635521 +0.031992728421931425 +0.060348244851251176 +0.02193300675010798 +0.20623012055650874 +0.42359970557208027 +0.07682614855724425 +0.10920316739578019 +0.20778009376990345 +0.047699988787031244 +0.19665611191463356 +0.0954335401980826 +0.1661761642939402 +0.16887471710820573 +0.16608956619810225 +0.10845942837610813 +0.1082593610644207 +0.31555997848624007 +0.135632738661537 +0.07911167961362532 +0.2968964360297674 +0.5602255102954176 +0.12407064996856816 +0.16837569489042697 +0.19162338837477913 +0.37569115205673675 +0.07809727007469074 +0.13332152565487418 +0.005561238793897496 +0.11555206519259363 +0.2179671652629141 +0.10997862787593018 +0.20766122057844696 +0.10125698825473296 +0.19907580291744423 +0.24346322175135449 +0.25067651512488076 +1.3809060402684565 +1.19092841557047 +0.11487313164889229 +0.18747615978301857 +0.26491916557687056 +0.5433603764036623 +0.14795146202050402 +0.10586844888084976 +0.11903102467302469 +0.13329394267587613 +0.2110919013179231 +0.21118208908063982 +0.47091313545092967 +0.11552374908416788 +0.21805886711787215 +0.11317356645034306 +0.20592397051860206 +0.07799694807520482 +0.39885750636263895 +0.2972245987110103 +0.3015166304002469 +0.6192564957893876 +0.22462287347606125 +0.16388825987805297 +0.309659459162478 +0.4000300922500119 +1.2195994277539328 +0.12033756115826268 +0.23684611634648395 +0.30256159398939264 +0.22634077620430534 +0.42737577984962166 +0.09320622051806803 +0.11840567547042928 +0.21440128076012607 +0.14057281579929232 +0.2654290481165939 +0.120400986332217 +0.15340845584530602 +0.2653307011308571 +0.14127969239645913 +0.26658618347055657 +0.07860975284911614 +0.1427734092350435 +0.3301081741224651 +0.12038473725997799 +0.10606171321476655 +0.2469141709991706 +0.12040254141711167 +0.24712951130498467 +0.1060056091487663 +0.11849421031684772 +0.10600122708833842 +0.14948738548573023 +0.10677666452732416 +0.12039634058998572 +0.14947016320205075 +0.12036835338231903 +0.2368451657332804 +0.35743353543917494 +0.6753545089667371 +0.2676943966161558 +0.5057964624324288 +0.9212465960132487 +1.8895156040535817 +0.6831780138848761 +1.4007201247703682 +0.2619805994648222 +0.5153045157017749 +0.11751773894118787 +0.2128643865583889 +0.1193977022076385 +0.23434122663185003 +1.3178173457010107 +0.6226420199414653 +2.384628719780096 +0.11981038293244825 +0.23516446302436952 +0.1176848908228591 +0.11744292534222557 +0.2216076543704786 +0.25116409176332977 +0.45524661441877656 +0.14901990843220128 +0.1195235670629386 +0.14792600985372917 +0.2904384733734343 +0.11768380205181092 +0.21309415941914683 +0.11764377410813981 +0.2221345201085646 +0.11947815140135622 +0.23449912382368668 +0.1806326514938385 +0.35465481420841205 +0.20589838874506203 +0.42428266143364246 +0.2056878199583825 +0.4238487547587444 +0.15611041808373666 +0.1561916899269818 +0.15615105400535922 +0.27302447970674604 +0.15623232584860433 +1.2693506210042973 +2.492247691292776 +0.11939897093958331 +0.2443618610549498 +0.1175126915090386 +0.06914533419978885 +0.22188701045006154 +0.1175428507968485 +0.22179620762082156 +0.2306844163211887 +0.45374627615621793 +0.12862644500870815 +0.2702759064893727 +0.48972433628315337 +0.463361002897245 +0.6113049520387248 +0.5053221880369893 +0.2602154713348916 +0.5118325849633782 +0.26012129113726884 +0.5118325849633782 +0.26374358792734987 +0.5403627063740163 +0.14713522719219976 +0.2602154713348916 +0.5118325849633782 +0.13949439215973516 +0.1437969859625253 +0.07404968973323682 +0.1430991912183601 +0.11737246290959909 +0.2236267056767427 +0.12040086108641418 +0.236909034595111 +0.10060920328440355 +0.1193629452040267 +0.09762762433577607 +0.23469680986545377 +0.3415531902463513 +0.6710916946067069 +0.14376201649020567 +0.2717223962412524 +0.07396088909482475 +0.07392138699681784 +0.07397405646082704 +0.13458453826643016 +0.07516335359250147 +0.2762384479584224 +0.2689876520825146 +0.5082400101800629 +0.2393587975133896 +0.45255930192240773 +0.1231833989443999 +0.24797528999067192 +0.5082400101800629 +0.13831465997701725 +0.2690571094420668 +0.5085672355738455 +0.1381819110888684 +0.2648644604150573 +0.5434447924825048 +0.14765843086960348 +0.2814799735782723 +0.5325536809035889 +0.26258670093770436 +0.5159364899691522 +0.2617756669957801 +0.5365246983432614 +0.2899604265990308 +0.5693093711065798 +0.18428632385679963 +0.33380488454485446 +0.329558960470853 +0.1184772829553693 +0.1535392118027071 +0.07480072042637058 +0.1203628573867126 +0.24665734758707555 +0.15046339830757924 +0.3248634028293258 +0.1940556702358877 +0.05273371586535222 +0.17267604355525346 +0.17279106409242567 +0.33903278083376326 +1.787770001552887 +3.5101142151508444 +0.6754877619505776 +0.145660229998033 +0.30243785792974087 +0.12040281197070858 +0.24713006662358145 +0.21046458518761418 +0.15400641046109512 +0.30215842809263654 +0.1579019293031287 +0.12387387056938946 +0.234054079255346 +0.14994916733037583 +0.126937108101413 +0.11444274604849351 +0.22437306568268836 +0.045437827143923824 +0.08573841517848362 +0.41606158842651403 +0.4022662328056848 +0.2965153516173214 +0.35860072433780565 +0.12044080386679851 +0.24720804602889246 +0.1408777788703368 +0.27650005733230437 +0.1287631268767068 +0.2526457094477388 +0.32286769763578266 +0.10173683590446063 +0.06127947153345061 +0.185401877561288 +0.1779891706187231 +0.29631717061297774 +0.17679183967308698 +0.36277978674121714 +0.3433575423291178 +0.11962576178920448 +0.24518006770671197 +0.22883714118336265 +0.4322350580749255 +0.52273787533909 +0.14939143694806153 +0.4303140529496278 +0.5095378734139142 +0.5907497181618319 +0.22921519182841116 +0.2657482731632927 +0.12373138955597515 +0.508907228840858 +0.19015097992919766 +0.35940146900696807 +0.17541890257069015 +0.35940146900696807 +0.06847855308042951 +0.06847855308042951 +0.06847855308042951 +0.19014107401381405 +0.06845417040513306 +0.19019456595688555 +0.34016009055028956 +0.13658541889319056 +0.16410699649727423 +0.3498856680172603 +0.26160943166095096 +0.5361839892013585 +0.5074781547840959 +0.16213740642815389 +0.30639917035654807 +0.2724899351570306 +0.26010686508767866 +0.5332971979696024 +0.105851638666797 +0.2651510713509514 +0.479958365050839 +0.24770616786641544 +0.4482314972473349 +0.18064924263347054 +0.3406473582758426 +0.15250546978260238 +0.28776854235995264 +0.01824743168126655 +0.28606801380212493 +0.5620159751531678 +0.10718015683967876 +0.5548672566371701 +0.12445428997398164 +0.2346814439280556 +0.04476278921120238 +0.5224310660582587 +0.9861238690442665 +0.3761166960509886 +0.9333294755714983 +0.021638380525650737 +0.1372633093237639 +0.02163300450961946 +0.11800009191606041 +0.27527900263862826 +0.12563607741831406 +0.4922810333963487 +0.3139092350054853 +0.11207314355282308 +0.6088690369313585 +0.12439035169508038 +0.23495163833921975 +0.014898306582912997 +0.30385157967449133 +0.5733494431468077 +0.036356144794406 +0.30321290827607555 +0.5723348125075921 +0.03629180696540297 +0.11805146139967952 +0.22305290029921201 +0.06784923357505752 +0.3257195825853968 +0.5819020095636787 +0.11259484891499852 +0.14988460597516656 +0.29065106803464186 +0.571491247438268 +0.11953192694329484 +0.119278499509607 +0.11767547276041536 +0.11925623795989027 +0.2952268108090516 +0.5270753064798613 +0.12035960188222034 +0.10089044912759208 +0.0002318459875350275 +0.15826235065312302 +9.857294059141024e-08 +0.3577944686870242 +0.6409113881517844 +0.12162492594109499 +0.13947024336045338 +0.12162492594109499 +0.3094047189648084 +0.5531236470595611 +0.15440404126683976 +0.30006020407934647 +0.15440404126683976 +0.30006020407934647 +0.15445996544746737 +0.30006020407934647 +0.15440404126683976 +0.30006020407934647 +0.30006020407934647 +0.23107137911052475 +0.3541846244892453 +0.6338103342960334 +0.1764923488903737 +0.12027141006711382 +0.22175414555032483 +0.5263896687254358 +0.29464655621841696 +0.12035398562302199 +0.19357826489657304 +0.11841105959250356 +0.17064372692431423 +0.5576042403943379 +0.31232675779227376 +0.11445768917209363 +0.18560155510461449 +0.004167226312016253 +0.008219021690454046 +0.2051786135179719 +0.36692061118098424 +0.13147632222364808 +0.23496228823945464 +0.015969459185475092 +0.01383780125356796 +0.11519741342249813 +0.18531636537816693 +0.5702670330995213 +0.4132140338504937 +0.23083442728534914 +0.24916055511030263 +0.4460194229445902 +0.303610144881784 +0.5037614185921548 +0.12694787748522302 +0.1138768740348685 +0.09303607186954484 +0.07707434817709921 +0.21602304161275618 +0.4190482501050168 +0.1512500806935944 +0.27030011529921716 +0.33734706349067806 +0.6546330563508135 +0.11844563353743408 +0.15115404558189455 +0.28464126082927527 +0.5095330231749208 +0.12322337244162125 +0.07502881106344836 +0.11847444198498201 +0.17795823531224045 +0.3180304519690811 +0.3177686903795513 +0.5680759412207587 +0.3103853065371025 +0.602312881464825 +0.3515611141304523 +0.6291811613593793 +0.16916752491505765 +0.1287453944788973 +0.2516320688229144 +0.12502322075073755 +0.2426116660628332 +0.026434236652426484 +0.022928592439917708 +0.1825236352061153 +0.5056695674828983 +0.5056548708988178 +0.08346799322273679 +0.4833493402523182 +0.08223707303989337 +0.6305567568386146 +0.1511179712606523 +0.08243340687531725 +0.18102398118955534 +0.7550740979381444 +0.17534720831440173 +0.17424803286732674 +1.4741956788376265 +0.3529253939756705 +0.08416468339037825 +0.6260852143715774 +0.0827882394805831 +0.4051828833462272 +0.1549394479607641 +0.003998115239249048 +0.036845899754234 +0.08273191455899223 +0.2413434670078839 +0.6712356994576701 +0.0837537239450324 +0.1883755883128528 +0.7549216057194633 +0.08252506082593317 +0.6858083394294076 +0.08383834958524819 +0.6858083394294076 +0.08383215247240638 +0.6858083394294076 +0.18029559627419503 +0.08244671528808772 +0.7520359116199375 +0.08382596076304519 +0.16444723851130938 +0.6858083394294076 +0.08382596076304519 +0.16441797735548788 +0.6858083394294076 +0.0827281289250713 +0.1601347145052626 +0.6682991119373369 +0.08252506082593317 +0.6858083394294076 +0.4194190607707972 +0.4194216097559213 +0.10526026572657494 +0.08333028893645246 +0.08089633277918956 +0.39689931669813633 +0.04995728902949121 +0.08164551617233286 +0.6306921063734712 +0.08368782408591163 +0.2797103900997739 +0.08357075900104317 +0.7208765755019697 +0.3970425224999886 +0.17396447249999503 +0.7066430917192613 +0.7974173210295837 +0.0841434612062237 +0.6262525050100199 +0.8072835874881399 +0.35499341906919335 +0.1407710372557885 +0.08270770074738377 +0.17416041604920574 +0.4983680108870153 +0.14123449745383115 +0.11081147113247435 +0.08280590466286174 +0.31050720614904304 +0.08171989938294105 +0.16935647870129858 +0.08416878818218672 +0.23162988290531897 +0.2398393935116715 +0.3627986822075522 +0.0828214176872118 +0.09903096775299793 +0.28881901978470875 +0.10196459330530826 +0.1018014204942622 +0.0509279057248984 +0.2888039966738813 +0.0828436801735278 +0.10499804316630462 +0.08416956296786704 +0.18858049961447207 +0.14925087411316776 +0.2761549684110339 +0.3643240161331266 +0.0828381717185619 +0.10827838955682353 +0.11142285675630725 +0.10429137038055666 +0.5802736215755184 +0.30003593526351885 +0.29945004693891797 +0.531775666677244 +0.08411055630431928 +0.06814596789149145 +0.06814596789149145 +0.06814596789149145 +0.08278376780930678 +0.04559225703915157 +0.04373856989918756 +0.045576023325829496 +0.04559225703915157 +0.045576023325829496 +0.042465144499161736 +0.025151045724896355 +0.12140095905734946 +0.13511713921694374 +0.08124379373834324 +0.17384660238939906 +0.30223955870878155 +0.1657588473152611 +0.29798987946905353 +0.1617659446185065 +0.08419556089348963 +0.121695951542009 +0.2942253312224012 +0.132723838304478 +0.590271800725323 +0.08285021610987184 +0.17655881945484964 +0.05920758764208642 +0.08285072082520493 +0.030512151583542643 +0.030512151583542643 +0.030512151583542643 +0.030512151583542643 +0.15914423666179828 +0.12435925148972254 +0.15633947790065533 +0.07799581133398902 +0.0494160438510742 +0.2477137057103375 +0.08285392255753736 +0.14328140866027986 +0.08287991501056766 +0.05342160542485485 +0.2790304396843292 +0.14785327662780073 +0.08289160943064636 +0.10309973196762777 +0.5160256939513532 +0.08421909342784749 +0.10266179097004688 +0.5344103245224509 +0.11067961165048545 +0.1107790177396189 +0.09916207062537219 +0.1638828434328867 +0.21486347902728067 +0.0043676673484179295 +0.08422036228649672 +0.27108067939324193 +0.08290522256181822 +0.5242913259006067 +0.08290591679419337 +0.4359921646976097 +0.08289565470237122 +0.37370756974080843 +0.08422122049732984 +0.331153621766094 +0.04250025398413611 +0.060422613026702536 +0.05050720095772502 +0.3831559617449363 +0.9988646646042226 +0.08327299100787437 +0.06628886915201639 +0.09919227839459911 +0.08283123264814132 +0.05169944491670014 +0.02584052329874583 +0.02584512288070209 +0.02584512288070209 +0.0898355850682621 +0.025849722462658355 +0.08007573833533559 +0.12804630232288297 +0.07351886006762277 +0.08268685431687414 +0.11140189811526047 +0.11158039451797208 +0.38736198498665286 +0.11023694128783325 +0.1535681804712206 +0.08269288532761371 +0.08073050761805228 +0.2804630637525645 +0.13901074697147808 +0.11936138819927376 +0.14188436093608936 +0.08425166383746524 +0.1339689616981291 +0.08289937223426966 +0.16946584759044916 +0.5898896129342562 +0.08291176676024996 +0.09126725924312594 +0.23809777780486804 +0.08290129841154492 +0.09134140322589403 +0.2382487737735872 +0.11884645809401 +0.1400216607530492 +0.07149677189486196 +0.08955794546602686 +0.2272727272727263 +0.0829094752205419 +0.26067951760140673 +0.4721352094517691 +0.2608187690930377 +0.01364439984833888 +0.013106300296368967 +0.01310863278682122 +0.01310863278682122 +0.013110965277273472 +0.021225040512659325 +0.012599575226310038 +0.013130248501185295 +0.01313492283795387 +0.01313492283795387 +0.01313492283795387 +0.08271672807341303 +0.07740142629569398 +0.1630842856476835 +0.07431013104407275 +0.07738764893524107 +0.08423092970626238 +0.4691722550295265 +0.08017287969646139 +0.27287098850474717 +0.1033625954207615 +0.06811272826338005 +0.0934821791040832 +0.16736713905558148 +0.11613005139713369 +0.14590796700346126 +0.02013615763788053 +0.2015448154111125 +0.08424828901712647 +0.20229417781172723 +0.08426617081145293 +0.20284304816305337 +0.186304308772707 +0.2067270434885266 +0.08292043158849913 +0.11585769636344054 +0.1460038263502043 +0.13676868672893006 +0.08291963068411436 +0.4168148675084475 +0.028044724914055314 +0.2299639622470439 +0.2805865379269303 +0.08289666519918 +0.17371890486522326 +0.3656990964735031 +0.2525277955271566 +0.0338817891389162 +0.33895567731629395 +0.11970463383522649 +0.1504563886737496 +0.15986576375231212 +0.29385301216327464 +0.33689400781447204 +0.4678511028710878 +0.1216681226627871 +0.2236879281879497 +0.07874979316522723 +0.4697714004877819 +0.23488570026998937 +0.0829178580698739 +0.23441375794408031 +0.6111026398782731 +0.36623408379800415 +0.9168345492596867 +0.11353800584567016 +0.14718932191792736 +0.23228793858137528 +0.023203347520598973 +0.08424080649345517 +0.07011199931292025 +0.18274526413028902 +0.1164422155121279 +0.1465112931991624 +0.018457751137978286 +0.18458427922043888 +0.020867852010720302 +0.012447900231934894 +0.012450115548827155 +0.012450115548827155 +0.012452330865719414 +0.012447900231934894 +0.032450931034907204 +0.11773397071439166 +0.1177406932432605 +0.13892014640711367 +0.08432058453689847 +0.30824397253605007 +0.48669998203752596 +0.08025602346063894 +0.122484298378732 +0.11561341195178346 +0.1351588358313729 +0.08293976051603812 +0.1832260675158014 +0.31860970212932554 +0.11659234956933898 +0.13758201588276217 +0.018442955844099957 +0.18473263767998563 +0.11625411691777514 +0.0043152247095839 +0.14636571712099047 +0.04311369775339625 +0.04168200594473698 +0.15854808018635957 +0.25762749125784 +0.13657532368864944 +0.08236153332073506 +0.19620245630580924 +0.15726898765927566 +0.11631365218749982 +0.14819575392729686 +0.13370872869662867 +0.08427340708674118 +0.08424735840165633 +0.1897604898769675 +0.5652642495806568 +0.08488141956806955 +0.23664153868756665 +0.1553462468061481 +0.12616689969244876 +0.11721152061216093 +0.11721152061216093 +0.20767996881016562 +0.15542753592909475 +0.10908250055146952 +0.11869305292755801 +0.15153117939641392 +0.11726233538194691 +0.1540163802856396 +0.30730459679843 +0.37341891991667775 +0.1148354931966675 +0.08286323489375383 +0.02551914311201027 +0.055987037546504206 +0.03175351144833181 +0.010935896250456083 +0.031079558899724396 +0.02371141141743621 +0.33357105289133154 +0.357929182514228 +0.16514603905101977 +1.2268878023069196 +1.3198965674690182 +0.6686874656181022 +1.0901306868247664 +0.015743915568276822 +0.008844791026564396 +0.008510028878934508 +0.005007582179186611 +0.4179317336483447 +0.4887156521068797 +0.1177491130638156 +0.14800122797152987 +0.1941586528333333 +0.2670633737824815 +0.10633462792347784 +0.1694216808520755 +0.11823992709532768 +0.12536512158781696 +0.32818357384508345 +0.9069063838434077 +0.040377331951186625 +0.060614532766990296 +0.044957396680182615 +0.13465037679436412 +0.08803728019004521 +0.3330830426485201 +0.515509471330498 +0.19253772027253788 +0.15945006224388453 +0.24256733190877325 +0.054952624155738546 +0.12042167609926818 +0.1339630415435939 +0.04803317759112578 +0.1367376467896626 +0.16124761170826224 +0.04729974770323935 +0.11447965556104207 +0.5346612062546543 +0.11956313320759519 +0.25897601957850913 +0.030489787953688043 +0.08305320731972035 +0.4412133920549532 +0.08295160134089355 +0.021418767049862186 +0.11736216941730808 +0.14755305534184757 +0.1211738607123661 +0.1211738607123661 +0.13881238157139206 +0.7122700972047442 +0.08353524349673376 +0.19177688958476405 +0.32538754884671733 +0.08300486057690235 +0.0830005114234354 +0.20181003373946432 +0.3218301893742358 +0.08432446310908663 +0.3862579919606848 +0.31885745778312496 +0.023915075235203004 +0.14033169995815284 +0.1163001992700163 +0.1370360059840376 +0.05546933471858379 +0.17698812146387327 +0.15419526611122844 +0.060115931982106366 +0.3293673583815759 +0.119825845850815 +0.16992055212765972 +0.05105180906297877 +0.43667199085077996 +0.05561313829787222 +0.026731015894755267 +0.09191560869690928 +0.033068835290383965 +0.13130093825257422 +0.03556804189146299 +0.04160343256109167 +0.017756619999125742 +0.023455451155172405 +0.20388308429118765 +0.0958231162196679 +0.12986485083609176 +0.18285682685253202 +0.1125762826123021 +0.13275211092614667 +0.08185404791340711 +0.23517542988213974 +0.07739839479829974 +0.20462119711000806 +0.11974936242692283 +0.0015050786373426474 +0.010250927816267906 +0.25190141960623613 +0.008393390272612107 +0.11846177389755866 +0.12212739125712993 +0.14402442999881104 +0.18574365127597178 +0.013013107422046461 +0.0811086448297993 +0.19725677585099163 +0.018777871339953192 +0.2646548732177212 +0.06769286810970283 +0.12618579806728591 +0.058160082910029796 +0.1383574367831946 +0.11867865627106626 +0.15131540270996965 +0.09373203673506127 +0.12774883810091497 +0.07847659498364176 +0.09283517671182806 +0.17320841104792795 +0.21056110903565656 +0.30407919454200577 +0.0017321338834456542 +0.07230239194152425 +0.07230239194152425 +0.14502503548961 +0.05898730460010853 +0.127237704116025 +0.04489044000279404 +0.12236732098145556 +0.061879749153383116 +0.32485668789808975 +0.08295557280143655 +0.15546481574385135 +0.16236924894107496 +0.021502400525006914 +0.12905724294606183 +0.118184848557254 +0.15314219471917756 +0.08294550990987748 +0.4167926937585603 +0.14058293821547738 +0.20191864175331342 +0.09341371699214149 +0.5496397751829817 +0.08426157270710921 +0.5342147148687721 +0.18027285714285662 +0.016867621263607545 +0.09030650994575018 +0.08424996661038231 +0.26239357204888997 +0.08424996661306407 +0.17492904803259332 +0.08610926482441855 +0.5496397751829817 +0.047830646443991154 +0.12803635946425013 +0.08297554189523708 +0.39178653083448567 +0.08257696930578821 +0.39179623567921484 +0.3270335515820813 +0.0833268486651135 +0.12404111255270846 +0.16203170613039253 +0.04311523180842496 +0.06713656773803978 +0.028990531004454232 +0.13227052907438805 +0.0806483875678503 +0.2967765234482688 +0.16121328566338317 +0.08028114463138519 +0.4730151256695227 +0.08204391303255801 +0.2817188970287807 +0.0829149586078133 +0.26917524867526266 +0.1405552508309378 +0.18634307090891766 +0.2970033913022876 +0.11100258043422694 +0.05657025150530588 +0.3311106395957692 +0.04261598674989579 +0.03964322003342808 +0.5244943073767533 +0.6502632019136537 +0.9279523799733053 +0.7483480268438266 +0.2180473750000003 +0.1275349142294639 +0.1580057609174449 +0.31388281470400625 +0.2766917348813271 +0.3430346328961023 +0.07576375735858655 +0.13213170691883094 +0.26707850989109727 +0.4578257255899949 +0.1296890128981308 +0.16096867597472986 +0.31503861226638524 +0.4065608844580144 +0.024611739931560885 +0.08027293517858261 +0.20633468149646125 +0.12012851931376975 +0.18246710105516195 +0.16096408306060953 +0.4599841585689552 +0.34744565016547335 +0.6991703276674652 +0.7436204538006569 +0.2745783435649838 +0.36496437890074673 +0.08191425030847975 +0.11222582458939138 +0.10712686414207732 +0.08860539252585585 +0.17740012041430542 +0.1682924011048899 +0.22338569625837554 +0.11762678567727004 +0.16559489567245006 +0.12654121575394212 +0.13861690799873522 +0.16111286753820195 +0.3921657286377376 +0.08782534745804839 +0.3417777096758167 +0.6212003246807039 +0.08089996918115408 +0.10202061227624978 +0.0829986427029187 +0.06379042417053998 +0.1785162503257511 +0.362109305785119 +0.4211570248126664 +0.08291798163805975 +0.10719147173050661 +0.27164989509067755 +0.7538609131312891 +0.8235959596336437 +0.13332713005936286 +0.16500809498866661 +0.12169454937938448 +0.005518207446117718 +0.008578331157456792 +0.004530981871392177 +0.09494125534121928 +0.02344198930481254 +0.053453872727272055 +0.049887145454544826 +0.022002340106951596 +0.06618181818306512 +0.021925133689839296 +0.029261773194255453 +0.025293933657882524 +0.025293933657882524 +0.025293933657882524 +0.025293933657882524 +0.025285291168331305 +0.042199656011810936 +0.0010469340007162754 +0.0009356813477338933 +0.0009356813477338933 +0.0009358478386140203 +0.0009358478386140203 +0.0009358478386140203 +0.0016258875012404971 +0.3502069408748027 +0.14926727369070655 +0.08299365299463718 +0.050321517640128044 +0.08408422746458283 +0.2838167926829268 +0.31073170733130084 +0.08407939324070113 +0.06008582040816278 +0.18009234475374736 +0.057533625546838635 +0.12295175207613533 +0.1567952122570603 +0.1875040335813709 +0.11769179080840249 +0.1659266753272039 +0.14828587268807342 +0.0844539393541706 +0.4977897740723794 +0.2412708600740622 +0.28531299707747804 +0.4990351604896465 +0.58089341591108 +0.3069517318632043 +0.3808114780947237 +0.2864123927849072 +0.31313776094859846 +0.3638401910093416 +0.0335216700122825 +0.12253657080106183 +0.04410000001650845 +0.01173625582504523 +0.009782562512528655 +0.01823852748957554 +0.15179380922924632 +0.18913769640851139 +0.10773076100114738 +0.02922266776859389 +0.02916581157024679 +0.036099173555370484 +0.02420306965761416 +0.17131802818060826 +0.22658652872880736 +0.009965501218926889 +0.016809236338031167 +0.0007216825511736582 +0.030033668491684554 +0.017182917885087096 +0.030018095928071118 +0.15879288795577765 +0.1964468350710067 +0.08291792080072478 +0.06453691084523668 +0.09613935129780433 +0.08319252212231178 +0.15331934153506943 +0.35149170423932874 +0.05493222358019151 +0.09096675381807677 +0.13910507135208203 +0.12690525169207967 +0.08266275865335461 +0.03883210874682831 +0.07778854618937725 +0.1247604081675432 +0.3130483744802712 +0.4477991287478447 +0.483847976362074 +0.6432834925788516 +0.08106132449396498 +0.20567859654433743 +0.084554020214717 +0.029111431297141353 +0.029888648595032766 +0.034897936668784206 +0.01241248660859455 +0.018886513696522427 +0.1322709862882585 +0.32113743349215235 +0.3987480438396103 +0.08209926126456131 +0.38010540121638364 +0.20847458963694065 +0.07777045334889486 +0.18323290435161993 +0.12422122097435931 +0.11913069856137344 +0.06889109308894713 +0.3849671169665104 +0.4043664731250468 +0.5376166897602447 +0.03743537663235336 +0.05273543225705927 +0.12679448192102907 +0.17301161815057284 +0.11891427619419077 +0.27449674229116877 +0.22614630871540745 +0.18952960299193936 +0.16033894867852333 +0.18654367084827653 +0.16837804337652448 +0.11768542166986286 +0.16546446897731554 +0.14794532737820087 +0.18841729678587532 +0.21997416150664087 +0.1642230100150733 +0.21820031227020048 +0.08174924447063346 +0.046264500052980224 +0.3790674802068199 +0.16325858840053048 +0.18448641709511568 +0.14971519924003857 +0.11689633541693745 +0.11689063492148637 +0.11688493838988864 +0.1529799300651121 +0.14527909521828086 +0.19272981118748234 +0.23984474074548767 +1.2073088269841588 +1.496926725164354 +1.4443247200073592 +0.17102633115989585 +0.14174006584990495 +0.27282043092319486 +0.4519228091188518 +0.08429573918404064 +0.231403979175311 +0.338182852309527 +0.10114291534427979 +0.35780442904797904 +0.5878374361891989 +0.7132512104425457 +0.7137020346658001 +0.8966956312682404 +1.0460446572478614 +1.0460446572478614 +0.255852192705218 +0.31714358931152165 +0.2116356431690057 +0.2665112643230574 +1.0414787791174762 +1.3811145860940668 +1.1136716115501448 +0.2126956429439773 +1.0833916466987565 +0.7084702814593412 +0.5845372665834346 +0.6115206136892368 +0.08843916682923426 +0.5208699871103268 +0.583675663250686 +0.09968993695373697 +0.1361561058277352 +0.18130060364235573 +0.006119401385484355 +0.007346327570823185 +0.11786507056663971 +0.16676210085566112 +0.16471447048024843 +0.13780967073170733 +0.07531496677836585 +0.15092682927113824 +0.07520820462112196 +0.1086811387950604 +0.15280454166211174 +0.13665703086577197 +0.09805444980518403 +0.43154708791399116 +0.5779175613378925 +0.11402995766669252 +0.033055932767372176 +0.14329715039670746 +0.026623012135817067 +0.22131060602241565 +0.3664863008153537 +0.48684250666678813 +0.3224569679307296 +1.2291845948793758 +0.5410018098221309 +0.035220055558807375 +0.021454585445853377 +0.025731914568606372 +0.04060968742298191 +0.08418063523193471 +0.13613380826656954 +0.01902870222926316 +0.019022590921616112 +0.06716904910421657 +0.06693969558494826 +0.24171678934485308 +0.3446319675447743 +0.034066858335019747 +0.12656318909103276 +0.0842702588112144 +0.31913513992600545 +0.30427319832797295 +0.07844154580558844 +0.08225367742394449 +0.13112117528328368 +0.09534037581419512 +0.13802293797078646 +0.11684012218668835 +0.15190416882847646 +1.6905840210367247 +0.08218148102893894 +0.14774999999644528 +0.11003909969221151 +0.01573301030207147 +0.0077047889813450015 +0.06405094018685721 +0.137272462693935 +0.12037094121624449 +0.15332695914978925 +0.12036804977630414 +0.07824452656496994 +0.09969727459306219 +0.053812909142084066 +0.05857961303443827 +0.028088349674259723 +0.06971387065435491 +0.1317090406154292 +0.11546157680182896 +0.14507615305926333 +0.07536100750702925 +0.10874438839786672 +0.2957246235887778 +0.08675965725228908 +0.17638561591866564 +0.5199071275229126 +0.07908520963825451 +0.058819902572102324 +0.2545457736389675 +0.09699833487643231 +0.09699833487643231 +0.09660662864254978 +0.09660662864254978 +0.09660662864254978 +0.3517561486628449 +0.3515621457020044 +0.10082575160354242 +0.24991430400945114 +0.10071045627845165 +0.10071045627845165 +0.10071045627845165 +0.0007262971292836572 +0.09247569677749268 +0.08083698470804926 +0.18327191358756625 +0.18321536699827737 +0.41810493742049115 +0.08318165746179292 +0.1556206797235023 +0.0066301435035440665 +0.010313212016226031 +0.007799482168834482 +0.08107981726836068 +0.16636322977777465 +0.24955340144551583 +0.07901118003460841 +0.29989643308524083 +0.11020180374471973 +0.23923320713831148 +0.003939139798940102 +0.004714190126001522 +0.0842650052808741 +0.1468442928955455 +0.022339714756850846 +0.023234522980603627 +0.014816536402972433 +0.009762140388773046 +0.030136026566139465 +0.08377815228338595 +0.1825058287592426 +0.05831369132357271 +0.21380816575013836 +0.08271077843901435 +0.18466818920765604 +0.2964821621621622 +0.07987484908573352 +0.16933764843995625 +0.0474177210783876 +0.052738676724167544 +0.11779654983386435 +0.2159198916758735 +0.6562732830964632 +0.18816467656878164 +0.12190859099867934 +0.5188026258205689 +0.03533151199864341 +0.21372685173972383 +0.0832642498202413 +0.05753258119778484 +0.1501075820243258 +0.10939212012074885 +0.1999181817165724 +0.027392677315653122 +0.21096891430649276 +0.08089210923312277 +0.324196562568436 +0.11841833867863717 +0.009347503989411981 +0.04073798159986821 +0.044038743741430714 +0.044024600143609344 +0.04070969440422547 +0.20758321155370976 +0.16044501195899913 +0.2143192689676294 +0.1604707931202962 +0.014382130721136381 +0.07898146187685838 +0.2080292116231076 +0.017322899681563513 +0.32898485117467685 +0.3287970375832975 +0.3273399269187212 +2.8410570960116566 +0.40350576274936073 +0.40350576274936073 +0.07889368481934281 +0.039048486941010284 +0.048456478106728436 +0.1260155732131235 +0.23030343471088505 +0.12600529774288047 +0.23030445969928628 +0.0758791368514979 +0.07360276276435367 +0.0762391691475799 +0.13086642356192896 +0.2608345329922327 +0.14762855173521375 +0.09029092933459508 +0.24182597451096335 +0.5321383112314059 +0.015926103506627008 +0.01707582823399243 +0.018832617481383634 +0.0239196184746785 +0.008402733745127365 +0.02502891368107464 +0.028680939369393317 +0.04927749265173568 +0.05769186876239106 +0.08258854977743635 +0.08257999531334864 +0.0825792038080363 +0.05348940569860335 +0.05581967917451398 +0.05582960088161455 +0.05997539062292376 +0.08285111025862829 +0.3014791905353027 +0.4837921818414781 +0.081758149682858 +0.08663961442084114 +0.06337285820710206 +0.08218311120260895 +0.1312006433408534 +0.17529710995306563 +0.08330420049251165 +0.1079990093999698 +0.13501142485849868 +0.08291539101440687 +0.10977643213636505 +0.11022917817311535 +0.07962569271382472 +0.4625851982486105 +0.011971168153015516 +0.02416800945602565 +0.02320855850577509 +0.015268458738340986 +0.011134876005087332 +0.023229202958712166 +0.11320041082129176 +0.23351323308434546 +0.030487253690314867 +0.024266787589166162 +0.030976529581331944 +0.005486087906541036 +0.005054636000254657 +0.006546001891734575 +0.006290617724097788 +0.04943598888862753 +0.05546985278339311 +0.14392783509112758 +0.04527366598132917 +0.02810242644160975 +0.054131486949567445 +0.2443716385122342 +0.20604068354282407 +0.11777434666389264 +0.12573556801252445 +0.3108724339065226 +0.37251553396587095 +0.07237295693105253 +0.08228613970924692 +0.10944172965875773 +0.17563442450583253 +0.08362472818177288 +0.27227983309076537 +0.0816800156557716 +0.12242980276805356 +0.14521299083825326 +0.05242763804370437 +0.3128837319493217 +0.08177663165963665 +0.22945301837508028 +0.08166205950663447 +0.2252471941313143 +0.14709757066378254 +0.06615564354355517 +0.23244746700107705 +0.0026463722820766343 +0.003180124377509569 +0.004613152714776207 +0.004429070991730216 +0.004430628531428121 +0.08319320612858055 +0.07719311677160846 +0.08270964510589583 +0.08319241569361348 +0.1933547413088331 +0.3754130213767826 +0.08303332124493643 +0.19365500114505707 +0.3760086762078134 +0.08295326056737065 +0.2027175430477962 +0.3938294870715068 +0.08429484541183738 +0.37585361506650694 +0.19283124153150505 +0.08429484541183738 +0.19279693612223453 +0.37585361506650694 +0.0842765405526601 +0.3938294870715068 +0.19368146216520235 +0.9597199292846361 +0.8233084054844745 +0.8771002647634262 +1.0971928399730662 +1.8720620998747715 +3.9181157727452818 +0.1338040048739279 +0.08189534538851959 +0.06210673721168786 +0.049723624091784956 +0.06197114258105211 +0.06060365475033681 +0.10935101574314211 +0.1190345674604958 +0.16859553230934524 +0.16649662220447384 +0.11676610281137714 +0.08453435537934897 +0.1782123801916233 +0.18568816386271286 +0.1334750455866349 +0.17387506341128825 +0.16679561841392243 +0.2607009494920738 +0.03047667404842595 +0.20850296987120337 +0.08298323925407455 +0.08326244459201214 +0.06826444456543088 +0.24893671855733196 +0.2395740004246018 +0.15769818211718176 +0.12717556314398887 +0.27800276013243863 +0.11805807595100926 +0.13897763698045565 +0.08285544964078126 +0.1334365910964192 +0.29272159625801053 +0.08215106206384441 +0.41985158307741066 +0.17572358389059603 +0.2917190467104529 +0.5846354667301152 +0.030207157415457646 +0.0348825016964032 +0.035747233913882875 +0.08289676994026664 +0.08107941389245642 +0.028667164411329743 +0.043657815171138536 +0.04014876521323256 +0.03493409567593329 +0.0784888962949611 +0.038995745064296476 +0.11605287654010199 +0.21146301607876697 +0.21661483185026384 +0.19089578633321214 +0.08330559699206126 +0.08012868786784474 +0.35452463377347837 +0.1772623169044654 +0.17716779406873948 +0.2845531200214829 +0.4149719872141665 +0.08320353092404242 +0.264673149761476 +0.16480648856439514 +0.16262235856013788 +0.08879724781902987 +0.4852563891500578 +0.8775742861148383 +0.07749727144182697 +0.10869469899068691 +0.10871329522499945 +0.17837130214803673 +0.11529022062160993 +0.20879808659039736 +2.322473536415431 +6.4801571875073725 +0.8004833411109255 +0.009246002057757819 +0.0026737831631705724 +0.011899571626898394 +0.04310867849790887 +0.1216519319293078 +0.22058732388907232 +0.03165021740748317 +0.03802155226364043 +0.016190174682894968 +0.021217776088243316 +0.12579467158183566 +0.2265391800231117 +0.10984837940773966 +0.08419379096558824 +0.3081613122527804 +0.12663175347897784 +0.0805300039239775 +0.3090187928968973 +0.0249051985201388 +0.04686630886270271 +0.10558022762815278 +0.05621021265068414 +0.008814431835861121 +0.006569001614795676 +0.006839273365066978 +0.006303402309693841 +0.0065643291696262105 +0.010567026777513845 +0.08409544458434995 +0.5369478475658391 +0.08961960115080171 +0.24416983626818353 +0.12165939872778965 +0.2603197519969769 +0.12251134123359626 +0.22196616901942323 +0.07011556365234997 +0.21594520772078274 +0.025819595210165823 +0.2124606777783437 +0.044550866433649895 +0.050695844570182454 +0.05429373983844743 +0.08437879268794125 +0.1308616669909575 +0.2803811341512202 +0.0832449465381295 +0.16051460997335534 +0.08081127226854967 +0.07768424706045349 +0.20015725733458856 +0.45848519734852317 +0.0901169048625788 +0.20811222109810001 +0.08714444749741934 +0.08714444749741934 +0.21421594567751215 +0.0842463397933733 +0.3687278952410727 +0.08312839145182971 +0.06089732216683173 +0.0914209922970775 +0.21114100839778788 +0.07339000338693892 +0.2628578194655046 +0.0817919991615683 +0.08883951309572635 +0.32854050711193566 +0.11840122462306334 +0.2177530487165544 +0.11743379362146261 +0.20593618759173063 +0.34524774984425083 +0.13139804316573703 +0.13139804316573703 +0.13139804316573703 +0.002272405627687311 +0.11752754448427019 +0.2153133837996362 +0.3123374432039275 +0.3123374432039275 +0.3123374432039275 +0.6390645481512551 +1.0714625787308958 +0.3098730413943909 +0.13851483524147457 +0.13851483524147457 +0.13851483524147457 +0.5803295637922933 +0.27089940489693576 +0.11015236790697136 +0.19984922373103312 +0.129838596388567 +0.04646439147170964 +0.052031517503348765 +0.08228391480032451 +0.3764476633725208 +0.1657098551766004 +0.2781804273951752 +0.5830248353245939 +0.08950665321833164 +0.21706451890474432 +0.5271273292378484 +0.16432896027526334 +0.11721176960377823 +0.22083458103100034 +0.681143513625899 +0.6485028458016318 +1.9648257599204502 +0.14410626396869186 +0.13873228251018227 +2.0394424300140375 +0.9170572655052197 +2.040068474440622 +1.6923932687671013 +3.1436606247982826 +3.2772208610434723 +0.4229506147984612 +0.5048514642771685 +0.916297240244117 +0.4881207361817212 +0.883935546197853 +1.258278090915436 +2.2788976716754243 +0.08211397750957318 +0.23414129054447325 +0.12274863161484147 +0.036156308097429785 +0.5140507880991438 +0.21499662106305337 +0.28782222107440375 +0.3254905448401428 +0.015536340404163613 +0.03545459322830029 +0.01866149027220189 +0.015535526186033604 +0.035448364946190254 +0.03136200249082328 +0.07161634766649186 +0.03767534084950183 +0.1157791134663395 +0.21557794490793292 +0.05285775449687345 +0.11864644716036232 +0.21299382190023844 +1.8773846176082245 +0.1123584358642686 +0.2026523092235764 +0.14116062393845402 +0.04093409103213727 +0.04379634832978984 +0.028549451611427006 +0.06617601945004316 +0.12802700492253996 +0.09769308042019362 +0.17957035258894377 +0.5065090829017377 +0.5407731670091025 +0.08266055452869346 +0.21723261709319155 +0.10874317709171845 +0.29096249798808926 +0.08191880382601029 +0.10013265949937625 +0.3219101946463152 +0.05127509266157821 +0.03351558308775421 +0.15576697919973015 +1.5637685542494986 +2.8632327117259395 +2.1696907161506878 +3.8335971274588356 +0.08035371483099917 +0.0640377971067262 +0.11597200314896833 +0.2272174196415551 +0.041311244239631235 +0.022408305150886102 +0.138390696347408 +0.048673941013824766 +0.05412043412073174 +0.06715851589560724 +0.17833774509803946 +0.2818431372549023 +0.08294576088354888 +0.10914169196051408 +0.1347182049333871 +0.08025684769169503 +0.08438742302416455 +0.11326741261662064 +0.000876712319473957 +0.0009012659611867299 +0.0005811791410061148 +0.0027127681181145368 +0.015289813650179512 +0.20654259381975557 +0.12331162346466872 +0.224394648933141 +0.3059095609756095 +0.11910216535499799 +0.11866508035749092 +1.3243957099934853 +0.36060769756097527 +0.043987685482637345 +0.09273419750749039 +0.06685507113354758 +0.224968226534296 +0.3735024655184735 +0.3765613685356964 +0.3895553656299508 +0.40499457609994727 +0.12609480578653945 +0.08382819176846132 +0.19101737603314511 +0.1155722560996085 +0.4100394297303844 +0.17143274543686887 +0.08301023253558304 +0.2541050226115946 +0.17527477506414835 +0.1020059220638928 +0.030670579912787606 +0.01695810296062694 +0.0933042134284972 +0.04215617072568098 +0.036859403785899365 +0.12122757885338988 +0.21946381965246817 +0.11937940705128214 +0.044773463120923236 +0.04841762736345197 +0.04841796691427854 +0.03642412584812619 +0.06054822278355075 +0.05373928750627196 +0.0772785600274963 +0.09609716796703748 +0.10024145009972693 +0.0772785600274963 +0.015238122399577333 +0.03526633498354327 +0.00206291938132235 +0.4529536197348904 +0.5437514294976503 +0.08742765226541885 +0.13289093301998695 +0.11969402716577113 +0.21548162135840956 +0.13709453832254417 +0.0829558847707185 +0.18793897310005084 +0.1751726605099039 +0.4908917183129417 +0.4721882010294743 +0.0066496217661070455 +0.06635470006647545 +0.1417494237013249 +0.008412991017968207 +0.010898038276778876 +0.01279856787344722 +0.010104687181135523 +0.13003340618183956 +0.24099042811226942 +0.10553618754836822 +0.1194284150868595 +0.09208218435789718 +0.16629345064427178 +0.19062858209168518 +0.21575988122696318 +0.06140003605862065 +0.06586013875045685 +0.30624636286407975 +0.33015227250212703 +0.3693716184843119 +0.3963347511324212 +0.5073965691100256 +0.5471429115355894 +20.6972208314944 +37.76887376128712 +0.12288410429026511 +0.22333832766552436 +0.08191739188212094 +0.1042181179010316 +0.07712006438132002 +0.061962156706150344 +0.12118287554048084 +0.21580392026592118 +0.0919597763843692 +0.21190339034581754 +0.29832302073103617 +0.25384777885057275 +0.6423963826947758 +0.1790007260207804 +0.19209148554485886 +0.34363463265768174 +0.3707333077989527 +0.09550207742708407 +0.131316141511316 +0.11288870848620994 +0.1128794138638445 +0.07307007577645401 +0.20166340853881554 +0.20169246525894732 +0.16524543455500068 +0.2964813817714627 +0.3532910923971492 +0.5426537313803915 +1.4688985618572146 +0.5745689839115795 +0.0833478355457655 +0.184717119311501 +0.10694139892585887 +0.11531714505231425 +0.2096046416036642 +0.1166368868608285 +0.21188169744527913 +0.21748479091490375 +0.00586216060517568 +0.06526388454081075 +0.09858577359320404 +0.08519487913041371 +0.13518695608163078 +0.10841099535860829 +0.08342939804329588 +0.1240670542694573 +0.2246033901966613 +0.4050225759586784 +0.3949428335528089 +186.82169504624235 +0.0830171523213309 +0.12837915280410184 +0.321599235157131 +0.24573631844423396 +0.08295121365820715 +0.08192788758132058 +0.08193215223771778 +0.20199613645498393 +0.48184775293501836 +0.025601510852223446 +0.033185041830583246 +0.030759655641335888 +0.06235444528916063 +0.12908231618763136 +0.12141189669418613 +0.3070952553364562 +0.08267461864392663 +0.025677162155430235 +0.05993328053952751 +0.013334485513708593 +0.21753764415827018 +0.20146277044113517 +0.08187777861149674 +0.2153905591458275 +0.1473711250561956 +0.12147377232226794 +0.22228833062302064 +0.12215426226499275 +0.22355927825421826 +0.21621789381950046 +0.11963353194335795 +0.09500300636023429 +0.11715075164517048 +0.2102508627693332 +0.21262629583750567 +0.11841963148598356 +0.18758536859876196 +0.08371037328831364 +0.18755655599324705 +0.12516030016882387 +0.07078243398002317 +0.03029575652168124 +0.10022255487053305 +0.03029482118684006 +0.10027127338210469 +0.10020270658413057 +0.08256699778460659 +0.09629968146595412 +0.19896039448295577 +0.2045006720587009 +0.09633619611440007 +0.13833446015175516 +0.291233822004295 +0.3127111867840728 +0.0028881372259241963 +0.0037344409005869066 +0.004017694967937632 +0.03209284136359939 +0.04158841541314983 +0.03855716952215177 +0.3959148423928421 +0.40541719104932117 +0.21546308285838736 +0.11762811554058834 +0.12096036808069231 +0.21676592690977828 +0.06659117575442146 +0.07472120880765937 +0.08989041800541969 +0.11153541828031463 +0.4942673279470475 +0.5123433756362407 +0.06798428343826168 +0.050317954373306474 +0.06798183340077207 +0.06797771563957314 +0.23672423346878463 +0.08183365690604448 +0.06797171209793919 +0.23859147591891394 +0.36555790676169087 +0.41677561826371723 +0.4556267923651946 +0.4858868697610409 +0.11638208164376783 +0.20654318313773865 +0.20775726479826867 +0.11769751733441527 +0.11431754896518709 +0.20837727192052063 +0.1772948198932007 +0.08103658509915113 +0.22557674043630843 +0.2476122271779383 +0.04381812481564397 +0.047713115604360486 +0.051608106393076995 +0.0401240282930008 +0.09846448116677076 +0.25575250476477845 +0.08567193727742037 +0.07687591519753091 +0.08251927793989945 +0.08846915904647756 +0.20564800275035247 +0.08200846633006084 +0.11071162105176303 +0.2977709123688545 +0.14336583371234468 +0.14888545618442725 +0.143503038206731 +0.08045353869429218 +0.0795426441597887 +0.06680714825176104 +0.07408000585849442 +0.07408358603826982 +0.1328434082438511 +0.09217002516638743 +0.17079712659892557 +0.5319849988870212 +0.6110582542905061 +0.25382254933062837 +0.27383873557659333 +0.052240395782328426 +0.15970293760504045 +0.10330554079155543 +0.0681533629918702 +0.15298303606749514 +0.11549932122590774 +0.1295492902204246 +0.3514691138247733 +0.21401337513337132 +0.22978295223957174 +0.21601389691508907 +0.23303274310991084 +0.23290511621927498 +0.21588627155595752 +0.20015527738592448 +0.574362253156407 +0.2006169484359308 +0.21642273240754112 +0.2006169484359308 +0.21642273240754112 +0.03904869797145004 +0.04957488403155522 +0.05026821938392186 +0.09351188580015027 +0.0256099381387843 +0.02962570739475298 +0.02785025551371706 +0.03011962076385154 +0.02539518309141854 +0.045921212670037626 +0.06995536573756064 +0.08195389287302028 +0.10278266377556063 +0.1503156023199694 +0.11149063092413096 +0.1672440032392282 +0.17340829684175255 +0.06711321373087326 +0.14861137261933924 +0.34466456440760695 +0.21967416832758258 +0.18889727088394226 +0.03654914898127204 +0.05777747474543943 +0.18683014620725977 +0.2656187464190646 +0.0683692488464663 +0.03259476997819101 +0.08073892870474553 +0.141019393821265 +0.15133818676054966 +0.15425714753720476 +0.2795516007097212 +0.9087745115798267 +1.441177239674526 +0.529732079560296 +0.5715062087418981 +0.06749660621888992 +0.04044890235624614 +0.05218711215143489 +0.008233957818086508 +0.1328222868894325 +0.13303519583859783 +0.10851731193998496 +0.048489206699104816 +0.07907509732915892 +0.18750337989504345 +0.173352241592008 +0.4723470025004024 +0.11405261287918733 +0.2048907077539174 +0.1537067843221946 +0.11898139424731913 +0.09751451907976084 +0.19611214710617056 +0.2158360589787621 +0.08434612415253424 +0.11832502323671427 +0.0823428575558889 +0.15783613978381575 +0.08295370204845239 +0.02222760366586539 +0.032674027959735584 +0.027036258012820516 +0.16608544121685953 +0.0829312067443529 +0.11451233843236594 +0.1481337001584664 +0.09075195823984021 +0.21234991007913948 +0.030722548237873158 +0.03732201995065234 +0.10542027346845001 +0.03689464268647282 +0.08186711553133874 +0.15810762359730263 +0.4263791147840606 +0.11490278095605017 +0.20928938664510624 +0.006986865072166637 +0.01266275593068878 +0.006171031349347128 +0.07921994587619008 +0.10081520316267842 +0.22032435232042583 +0.27258615046523726 +0.006816912057256188 +0.008154063346781312 +0.013329180587444128 +0.013329875039261719 +0.01332930915462341 +0.009453134190725646 +0.011330920078087448 +0.019810447274075365 +0.046831819960423085 +0.10052655183157806 +0.3943913297659824 +0.44234052144168784 +0.06425415742070759 +0.06868761541616535 +0.11647546281476848 +0.20953840909543262 +0.12573895390466078 +0.22680187502959737 +0.08294773744987281 +0.1071477578642301 +0.06899253655298654 +0.11436265167783081 +0.206441227960993 +0.20644274863761541 +0.08168603256611129 +0.08489285507775189 +0.09368006337029933 +0.09738547612440589 +0.6298818203353249 +0.6531228848893218 +0.09714812585499275 +0.21428807845209655 +0.026399361427665254 +0.05540226993702488 +0.03209890396150158 +2.5038562655139365 +6.716780483585567 +0.09207092536176667 +0.09207092536176667 +0.21003929305635136 +0.22867503231052974 +0.240959877208242 +0.04313911966014651 +0.04316907413186453 +0.058810535735711295 +0.021324017864266135 +0.06641012128131672 +0.04484535729859516 +0.02597794577078005 +0.08189555292340621 +0.08189487515391226 +0.0982533816407756 +0.16012531249815729 +0.050760193849980706 +0.06686983155408786 +0.06174150476762305 +0.008657917797510628 +0.011182387176958472 +0.010373073834685628 +0.04372319729279859 +0.05770719862284476 +0.07334072422348543 +0.2814319286676636 +0.2935343837403548 +0.03003628851890689 +0.03115941707930442 +5.23505378422047 +0.11950464031026058 +0.21580881062849044 +0.08311578440316322 +0.12111608299602539 +0.15113355087618802 +0.08170278546301286 +0.018199340093924266 +0.03976769495004285 +0.01571224729862361 +1.399393537795896 +1.1323560116358402 +2.0812006396530482 +1.2443651650148575 +2.081356698987474 +0.8217260755001923 +0.027825455287380153 +0.02784480329305574 +0.2340773007645108 +0.24509113907945415 +0.08440244463792762 +0.12554250804345948 +0.2693031505937871 +0.004452033885815745 +0.00587785278155332 +0.007236062745483573 +0.08429904056431924 +0.08430430010485797 +0.1110439607470774 +0.0564028082186788 +0.09277557556207316 +0.09638862135340122 +0.0842980670351905 +0.14280207791900687 +0.08314787950386678 +0.10766898576232693 +0.0656767048054921 +0.07020366132723124 +0.11716504288994913 +0.20564083102305605 +0.0856944189689826 +0.19977288257883863 +0.25196569511524436 +0.5055402046850167 +0.11012811712562301 +0.19978372459029145 +0.12052736042934573 +0.11030474898493091 +0.1992386447317621 +0.15642081055093013 +0.2099498326592888 +0.1994027199461104 +0.0647079908727401 +0.2766834494832603 +0.0412407354917272 +0.05987727163765691 +0.16483385123978475 +0.05987727163765691 +0.14245607672919625 +0.0647079908727401 +0.08130303160165346 +0.007172645233379097 +0.0027430946766780484 +0.02663144485183394 +0.02663144485183394 +0.21715981567560363 +0.027832799281896824 +0.20646668838684612 +0.11875971359251059 +0.2132802969877964 +0.149322127759127 +0.11786777830434898 +0.21089495614383663 +0.08426609385398055 +0.1810009742587326 +0.12495525158656896 +0.30376904816826694 +0.09160836897352968 +0.19770487063840467 +0.24936873594964606 +0.5006819890150486 +0.224610182434146 +0.08298339979294699 +0.1549126707619751 +0.23309564093385388 +0.11228842382793534 +0.20177415539959828 +0.02542123210412134 +0.14511328412545918 +0.035314576803653006 +0.0605224328767124 +0.045585995804931556 +0.5638860725525274 +0.5861836223418604 +2.351871540028024 +4.225474290071784 +0.08092043646598916 +0.24529059041429252 +0.08400186711398086 +0.11066501569745596 +0.11561956591088993 +0.20818846010130704 +0.08763493251750304 +0.20847873729285019 +0.11583638987980723 +0.20809897640239378 +0.013468184533569348 +0.00592194949514923 +0.006763719805673418 +0.006428612680797884 +0.009282474911290044 +0.012912956284600548 +0.013465784843676451 +0.08282034024886292 +0.00819621944829956 +0.00818281435626023 +0.008202921994319224 +0.009823759221282763 +0.01965865169399874 +0.010254944323325584 +0.08153355995987158 +0.10858324426694896 +0.14859001180873727 +0.08297620884172521 +0.18683016811759465 +0.17938072736621474 +0.36258416592619636 +0.12140861729475616 +0.21566972697184703 +0.12140861729475616 +0.08123903636167801 +0.10902414353306408 +0.16911555241935486 +0.08362360981684001 +0.14137216180759427 +0.35780919434279695 +0.021308865557201354 +0.02817863638678322 +0.026008538816763956 +0.0771563376234779 +0.022046538457727707 +0.05412371384953779 +0.026484756611083037 +0.0995154942906298 +0.22200282484158765 +0.09632945319306799 +0.21815382941965838 +0.27399381587435756 +0.039439508506616136 +0.026169485153772168 +0.20145755395849912 +0.11510300178352768 +0.20283715361128707 +0.0809420644064892 +0.10146579141874594 +0.09032465073916648 +0.12366750906211849 +0.2246006494666472 +0.0842370083231796 +0.3198408673576708 +0.11406538944016818 +0.2049821367241018 +0.07838694187908676 +0.030146993044750464 +0.22128167422716388 +0.21545008202488844 +0.10091583368283018 +0.08208680835551176 +0.23100500520353118 +0.07307477579883652 +0.11949496091131169 +0.21576357189889975 +0.0067200649135412995 +0.028572090943403093 +0.02635769846851897 +0.03646882601830862 +0.03692255660274958 +0.08196741824993492 +0.4014080973647127 +0.3979573007841275 +0.1041635703489655 +0.3450492695596225 +0.08331757542665144 +0.2599229053616641 +0.08224646603079058 +0.17638145154591614 +0.3580650732762119 +0.2147885905073363 +0.027544350303638353 +0.027544350303638353 +0.21570727423631403 +0.11840403312965857 +0.21452162305619404 +0.16076265254918254 +2.052078778276055 +2.2965289005981444 +0.04657195419810905 +0.08666669508465516 +0.09028319355996148 +0.7629481913371414 +0.09353694915254232 +0.07068133412861546 +0.9692195119264242 +0.09353694915254232 +0.09479071405837952 +0.032339202769093335 +0.22132358202997765 +0.02912316742081448 +0.029133303167420813 +0.029133303167420813 +0.19354519368688233 +0.029133303167420813 +0.16549785754418522 +0.22462946979257897 +0.0655865535612041 +0.06560934794087653 +2.286550583475627 +1.5168163854487657 +0.08180020405098476 +0.3843433712357866 +0.16815172020136662 +0.2378589549785151 +0.22838715890721586 +0.07255618028375778 +0.17379142768549982 +0.08066814313965474 +0.061772778074679804 +0.11859298557555724 +0.21285293683122627 +0.02661999674232849 +0.07813257073580078 +0.03155456909047048 +0.2894642591879963 +0.08275559740702715 +0.582313204871056 +0.4672359238801891 +0.0796630173564753 +0.0796630173564753 +0.21577383674524023 +0.06075459230870888 +0.14101054683234446 +0.03990188933873145 +0.13719861570296582 +0.0070474526237483195 +0.0070474526237483195 +0.16269777370473082 +0.05256787853626712 +0.14322592130609238 +0.05796576596208324 +0.221815081014699 +0.0895938696432548 +0.5220058682008427 +0.19373986860956272 +0.03988664879834878 +0.051634079800080744 +0.05099889991663125 +0.05971243668334505 +0.0829663976355643 +0.11026216413902698 +0.17377839644180432 +0.28880011939317646 +0.00552418862747846 +0.0059284093311694 +0.007105606924716567 +0.00837916719091123 +0.4529145941891146 +0.4863363008561672 +0.0804963700992092 +0.09637538704467881 +0.18292525430778675 +0.1112853190414876 +0.025750388728660943 +0.0257661864310228 +0.010538615310369098 +0.030863604884411835 +0.03810075346260794 +0.12100838133945015 +0.21489307621397497 +0.0750304194429533 +0.09125374489854529 +0.11884038800705507 +0.08286422704383395 +0.16171018172493662 +0.1276743855930314 +0.09052358878334925 +0.5266560170257174 +0.17209322851633937 +0.8378450056254526 +0.08751804107267883 +0.1664044213327419 +0.18891608938714127 +0.5091951594393831 +0.03433829982119205 +0.08052957829955465 +0.10240640051652256 +0.1729042167339232 +0.4516543204154423 +0.48495286884106725 +0.1204891727695501 +0.2184171328622668 +0.22446290600491736 +0.2894424279026375 +0.5003936193677556 +0.50039949011262 +0.36867660904614913 +0.1995224996908997 +0.3689217234727472 +0.19595147688040998 +0.24365868753268605 +0.6574956229109348 +0.20778427030254448 +0.17104040294801565 +0.11906327872766669 +0.21515041413156172 +0.025433079949154416 +0.03017921613489165 +0.0343128939585405 +0.025439301348359197 +0.0343128939585405 +0.1152819434524557 +0.20436878333564923 +0.1346394851649141 +0.20065519505630236 +0.08309088602020731 +0.11389211346063345 +0.09058575632539172 +0.08309197488579247 +0.10117466352513299 +0.08308144214410923 +0.1076714945242653 +0.03292074636584891 +0.244014755606594 +0.008376703808476927 +0.12009261727860045 +0.21560204622058526 +0.14852672535443937 +0.11812724674719685 +0.2689107045805431 +0.21406941183401426 +0.11932607936047428 +0.21608188772836626 +0.08922795795834135 +0.09326201413945298 +0.22399348966843177 +0.5646169088559811 +0.21155250161262426 +0.21946295487768464 +0.3596982888166099 +0.3730486074361795 +0.41952575525842983 +0.4036738531342574 +0.5621460078230012 +0.5845411941772441 +0.5783974470563656 +0.6030878221758406 +1.1566012146718274 +1.2020198839993623 +0.018686562055010625 +0.01866979810811519 +0.016279627378072106 +0.01782150623437065 +0.001182535965291198 +0.6572795602711246 +0.6250632044597274 +4.432113445976425 +4.962602704907902 +0.11729636018303176 +0.21244284135108815 +0.025169706554995144 +0.0798860964075137 +0.23826512455516002 +0.10657758218533787 +0.0747330960854092 +0.11879306769911042 +0.16257524121326913 +0.21793123916179433 +0.11241639054426521 +0.20394313339740158 +0.09965334009704445 +0.09964883193647982 +0.5884340538156148 +0.5783968833348031 +0.050138437537903015 +0.051984964895419004 +0.11490063527937823 +0.17193312940141176 +0.23361748968502477 +3.0751900275179853 +3.4441282449153707 +0.007160451091182385 +0.007183356638556797 +0.00736941377186018 +0.00028851851971510464 +0.00028841831575332033 +0.0008874352715957576 +0.019749360856459643 +0.0014719645690730399 +0.09860571626259684 +0.10229610395942298 +0.027033100558659175 +0.027033100558659175 +0.23997313971038303 +0.0292234357541899 +0.0292234357541899 +0.11676129609759775 +0.20948247803267417 +0.1377950942054571 +0.11404276592940665 +0.20528943611102915 +0.05777480299068986 +0.12015261032764869 +0.09093455721491152 +0.07573205623199118 +0.7817879948914431 +1.3792561350399106 +0.07145103335908409 +0.5803179725624399 +0.6030879828212196 +0.5989077347032804 +0.6224071538286959 +0.13607492669256915 +0.21174984043056044 +0.06649125465535458 +0.20802177232824237 +0.01885217947835841 +0.21879245892728205 +0.12219221765297071 +0.21937925822447152 +0.5985975180207782 +0.6209924705149782 +0.07690099009900983 +0.21823238030715375 +0.09698696329589268 +0.22348385814888613 +0.1237463462558636 +0.12143257877808408 +0.217866918454563 +0.12118207504970223 +0.22158613116233122 +0.32330834214357734 +0.4124840543434348 +0.2156569044157593 +0.22416759867985817 +0.06937545549207752 +0.0524505440310975 +0.25404880355506204 +0.3328261751698112 +0.3008190033639429 +0.42034756992023825 +0.11942234497469396 +0.26599182257342013 +0.0008884507835028307 +0.0008116985074835582 +0.005571555817994476 +0.03015757686630841 +0.11772295716576087 +0.21579467624393694 +0.11350118905587978 +0.049804972299179906 +0.14447063390361423 +0.11332409066996914 +0.11773943172049837 +0.08186486846753309 +0.20812143472649977 +0.28453856429606306 +0.1462494775833548 +0.3009507746139506 +0.3122160769895541 +0.11481625160180411 +0.09152954422715193 +0.08307430362142826 +0.21334912886459273 +0.1810114985071952 +0.3020841891598565 +0.2464752230452692 +0.2036291797814764 +0.2639696366140542 +0.14688004209537597 +0.19359720019505147 +5.960718842742638 +6.726442847168607 +0.1574661707313614 +0.21820569712728446 +0.03842120676677804 +0.2516258791007859 +0.4454582808554207 +0.4718599223911208 +0.20793886038401777 +0.3693638689678254 +4.436599314774683 +4.761795554701198 +0.08911842697223914 +0.21634048746923545 +0.11847338551633645 +0.06581601349545547 +0.05811900941044876 +0.08502589714377962 +0.08372699075791484 +0.22464992790331845 +0.19847716914399977 +0.11576936496273206 +0.3100835592662965 +0.11959605970571723 +0.2609372345737633 +0.12428630391415009 +0.06394584432396644 +0.06477028314839334 +0.09277464401183187 +0.18554928802366374 +0.09947396875586931 +0.14293760985869194 +0.2089211246921005 +0.12200606476457014 +0.22432935304990587 +0.22056307645573356 +0.0647571645918293 +0.10208138517742149 +0.2580855053617449 +0.6501250647770723 +0.31549953203322284 +0.4127953383333712 +0.10399601775383241 +0.2484833201857802 +0.10245343854544679 +0.11765275830804331 +5.273021095091996 +9.222987015272155 +0.03178717880593618 +0.005511798418542278 +0.10201438762895122 +0.007357335147885278 +0.007780567361862011 +0.01422897618585984 +0.1127620817368175 +0.1127620817368175 +0.2073647088607587 diff --git a/reports/data/pga_raises.csv b/reports/data/pga_raises.csv new file mode 100644 index 0000000..54bcdf0 --- /dev/null +++ b/reports/data/pga_raises.csv @@ -0,0 +1 @@ +\addplot+[only marks, scatter,opacity=0.1,mark=*] coordinates {(2018-06-27,31.500699) [0.037470] (2018-06-27,10.068602) [0.037470] (2018-06-28,50.442478) [0.120306] (2018-06-28,6.633603) [0.120306] (2018-06-28,69.886114) [0.103800] (2018-06-28,13.294065) [0.103800] (2018-06-28,59.260923) [0.030139] (2018-06-28,40.148706) [2.801722] (2018-06-28,21.299728) [2.801722] (2018-06-28,69.875985) [0.185946] (2018-06-28,69.751970) [0.185946] (2018-06-28,20.472668) [0.102670] (2018-06-28,13.250000) [0.102670] (2018-06-28,50.707909) [0.105482] (2018-06-28,69.387047) [0.105482] (2018-06-29,41.476739) [0.027443] (2018-06-29,48.880573) [0.027443] (2018-06-29,13.250000) [0.027443] (2018-06-29,37.178050) [0.027443] (2018-06-29,34.506690) [0.027443] (2018-06-29,14.514562) [0.340444] (2018-06-29,11.535689) [0.340444] (2018-06-30,21.000000) [0.054128] (2018-06-30,21.000000) [0.054128] (2018-06-30,15.500000) [0.054128] (2018-06-30,51.161744) [0.078083] (2018-06-30,69.660730) [0.078083] (2018-06-30,69.595079) [0.078083] (2018-06-30,69.529479) [0.078083] (2018-06-30,70.000000) [0.078083] (2018-07-01,21.000000) [0.079404] (2018-07-01,21.000000) [0.079404] (2018-07-02,56.773097) [0.531852] (2018-07-02,70.000000) [0.531852] (2018-07-02,70.000000) [0.118155] (2018-07-02,41.446835) [0.118155] (2018-07-02,56.773097) [0.583332] (2018-07-02,13.250000) [0.583332] (2018-07-03,21.000000) [0.155721] (2018-07-03,21.000000) [0.155721] (2018-07-03,70.000000) [0.180618] (2018-07-03,70.000000) [0.180618] (2018-07-04,59.495815) [0.077932] (2018-07-04,13.250000) [0.077932] (2018-07-04,13.250000) [0.071191] (2018-07-04,10.963438) [0.071191] (2018-07-04,13.250000) [0.088880] (2018-07-04,13.250000) [0.088880] (2018-07-04,69.974517) [0.189998] (2018-07-04,69.820365) [0.189998] (2018-07-04,34.918948) [0.364060] (2018-07-04,69.830340) [0.149266] (2018-07-04,69.830340) [0.149266] (2018-07-04,69.943618) [0.149266] (2018-07-04,70.000000) [0.149266] (2018-07-04,70.000000) [0.149266] (2018-07-05,70.000000) [0.207447] (2018-07-05,70.000000) [0.207447] (2018-07-05,13.000000) [0.083325] (2018-07-05,13.250000) [0.083325] (2018-07-05,12.882582) [0.083325] (2018-07-05,35.000000) [0.073823] (2018-07-05,13.250000) [0.085404] (2018-07-05,22.967474) [0.085404] (2018-07-05,6.327003) [0.085404] (2018-07-05,31.696096) [0.010421] (2018-07-05,31.546254) [0.010421] (2018-07-05,11.945958) [0.010421] (2018-07-05,6.611976) [0.010421] (2018-07-05,31.830298) [0.010421] (2018-07-05,41.625000) [0.010421] (2018-07-05,51.162649) [0.010421] (2018-07-06,70.000000) [0.112668] (2018-07-06,13.043065) [0.112668] (2018-07-06,40.044378) [0.098500] (2018-07-06,41.424766) [0.098500] (2018-07-06,70.000000) [1.101137] (2018-07-06,69.475149) [1.101137] (2018-07-07,70.000000) [0.218069] (2018-07-07,0.190807) [0.218069] (2018-07-07,0.000000) [0.075096] (2018-07-07,13.250000) [0.075096] (2018-07-08,70.000000) [0.120699] (2018-07-08,0.188170) [0.120699] (2018-07-08,69.963202) [0.141908] (2018-07-08,6.589153) [0.141908] (2018-07-08,30.716193) [0.113546] (2018-07-08,13.250000) [0.113546] (2018-07-09,19.557616) [0.047345] (2018-07-09,21.000000) [0.047345] (2018-07-09,70.000000) [0.224940] (2018-07-09,70.000000) [0.224940] (2018-07-09,13.250000) [0.085949] (2018-07-09,13.250000) [0.085949] (2018-07-10,50.219004) [1.040280] (2018-07-10,13.043416) [1.040280] (2018-07-10,33.346896) [0.066401] (2018-07-10,54.609488) [0.066401] (2018-07-10,16.995396) [0.066401] (2018-07-10,46.506847) [0.066401] (2018-07-10,13.250000) [0.072247] (2018-07-10,38.549818) [0.072247] (2018-07-11,63.386548) [0.078280] (2018-07-11,6.625000) [0.078280] (2018-07-11,13.250000) [0.078321] (2018-07-11,0.000000) [0.078321] (2018-07-11,21.000000) [0.011168] (2018-07-11,21.000000) [0.011168] (2018-07-11,69.939256) [0.172504] (2018-07-11,34.963508) [0.172504] (2018-07-11,12.800639) [0.172504] (2018-07-11,21.000000) [0.038200] (2018-07-11,21.000000) [0.038200] (2018-07-12,13.000000) [0.094100] (2018-07-12,21.000000) [0.094100] (2018-07-12,63.386548) [0.150000] (2018-07-12,6.625000) [0.150000] (2018-07-13,13.250000) [0.075302] (2018-07-13,0.000000) [0.075302] (2018-07-13,0.038932) [1.200000] (2018-07-13,69.986673) [0.180562] (2018-07-13,34.985455) [0.180562] (2018-07-13,63.135268) [0.378170] (2018-07-13,52.777613) [0.155343] (2018-07-13,50.170781) [0.155343] (2018-07-13,31.846239) [0.088025] (2018-07-13,6.625000) [0.088025] (2018-07-14,13.250000) [0.029074] (2018-07-14,43.730289) [0.029074] (2018-07-14,13.000000) [0.279530] (2018-07-14,17.749201) [0.279530] (2018-07-14,19.285470) [0.279530] (2018-07-14,30.617491) [0.279530] (2018-07-14,70.000000) [0.279530] (2018-07-14,32.258859) [0.139385] (2018-07-14,12.942100) [0.139385] (2018-07-16,63.386548) [0.087899] (2018-07-16,6.442438) [0.087899] (2018-07-16,21.779647) [0.011071] (2018-07-16,13.250000) [0.011071] (2018-07-17,13.000000) [0.076429] (2018-07-17,1.627925) [0.076429] (2018-07-17,60.204597) [0.129360] (2018-07-17,0.172778) [0.129360] (2018-07-17,36.415125) [0.129360] (2018-07-17,63.386548) [0.069656] (2018-07-17,0.000000) [0.069656] (2018-07-18,69.990793) [0.259799] (2018-07-18,48.100359) [0.213439] (2018-07-18,70.000000) [0.089940] (2018-07-18,54.368627) [0.089940] (2018-07-18,27.862745) [0.077292] (2018-07-18,32.955068) [0.077292] (2018-07-20,70.000000) [0.174400] (2018-07-20,69.948020) [0.174400] (2018-07-20,13.250000) [0.047712] (2018-07-20,13.250000) [0.047712] (2018-07-21,50.435995) [0.145210] (2018-07-21,13.247560) [0.145210] (2018-07-21,46.518057) [0.197778] (2018-07-21,69.924508) [0.197778] (2018-07-21,55.750698) [0.108673] (2018-07-21,13.250000) [0.108673] (2018-07-22,70.000037) [0.777472] (2018-07-22,0.222710) [0.777472] (2018-07-22,20.619668) [0.012568] (2018-07-22,21.000000) [0.012568] (2018-07-22,30.163849) [0.298800] (2018-07-22,3.677569) [0.298800] (2018-07-23,28.976546) [0.368241] (2018-07-23,0.282268) [0.394672] (2018-07-23,20.837982) [0.584779] (2018-07-23,21.000000) [0.584779] (2018-07-23,10.000000) [0.028279] (2018-07-23,41.625000) [0.028279] (2018-07-23,23.251007) [0.028279] (2018-07-24,13.250000) [0.025736] (2018-07-24,13.250000) [0.025736] (2018-07-24,82.298912) [0.091648] (2018-07-24,0.000000) [0.091648] (2018-07-24,19.557616) [0.130151] (2018-07-24,21.000000) [0.130151] (2018-07-24,31.896552) [0.025043] (2018-07-24,13.234912) [0.025043] (2018-07-24,13.250000) [0.025043] (2018-07-24,13.000000) [0.709800] (2018-07-24,13.105334) [0.709800] (2018-07-24,27.345527) [0.034003] (2018-07-24,24.784379) [0.034003] (2018-07-24,13.250000) [0.034003] (2018-07-24,13.250000) [0.034003] (2018-07-25,13.000000) [0.029449] (2018-07-25,21.000000) [0.029449] (2018-07-25,31.721239) [0.175980] (2018-07-25,70.000000) [0.175980] (2018-07-25,50.661906) [0.187706] (2018-07-25,69.860834) [0.187706] (2018-07-25,63.386548) [0.110648] (2018-07-25,13.250000) [0.110648] (2018-07-26,6.625000) [0.026097] (2018-07-26,13.000000) [0.089818] (2018-07-26,13.250000) [0.089818] (2018-07-26,34.865783) [0.089818] (2018-07-26,13.250000) [0.089818] (2018-07-26,63.386548) [0.115670] (2018-07-26,0.000000) [0.115670] (2018-07-27,13.250000) [0.030369] (2018-07-27,13.250000) [0.030369] (2018-07-28,38.737254) [0.129681] (2018-07-28,13.250000) [0.129681] (2018-07-28,69.714687) [0.239510] (2018-07-29,70.000000) [0.070544] (2018-07-29,41.625000) [0.070544] (2018-07-30,50.536364) [0.013031] (2018-07-30,70.053045) [0.013031] (2018-07-30,20.812407) [0.068747] (2018-07-30,20.948670) [0.068747] (2018-07-30,17.802649) [0.068747] (2018-07-30,21.000000) [0.068747] (2018-07-30,21.000000) [0.068747] (2018-07-30,63.386548) [0.085178] (2018-07-30,70.000000) [0.085178] (2018-07-30,69.740068) [0.048805] (2018-07-30,13.250000) [0.048805] (2018-07-30,21.000000) [0.048805] (2018-07-30,15.000000) [0.048805] (2018-07-30,70.000000) [0.236547] (2018-07-31,13.250000) [0.018362] (2018-07-31,45.622945) [0.018362] (2018-07-31,13.250000) [0.066761] (2018-07-31,39.103987) [0.196800] (2018-07-31,45.782140) [0.196800] (2018-07-31,70.114076) [0.196800] (2018-07-31,69.801180) [0.196800] (2018-07-31,31.501326) [0.167954] (2018-07-31,48.596498) [0.167954] (2018-08-01,13.000000) [0.070884] (2018-08-01,13.125000) [0.070884] (2018-08-01,70.000000) [0.080395] (2018-08-01,13.250000) [0.080395] (2018-08-01,56.773097) [0.451647] (2018-08-01,41.625000) [0.451647] (2018-08-01,70.000000) [0.451647] (2018-08-03,69.727594) [0.271288] (2018-08-03,69.949477) [0.271288] (2018-08-03,60.202021) [0.157407] (2018-08-03,35.000000) [0.157407] (2018-08-04,69.977020) [0.025919] (2018-08-04,13.257655) [0.025919] (2018-08-04,27.862745) [0.075512] (2018-08-04,13.395466) [0.075512] (2018-08-04,69.801799) [0.035317] (2018-08-04,13.000000) [0.067896] (2018-08-04,21.000000) [0.067896] (2018-08-04,13.000000) [0.017938] (2018-08-04,21.000000) [0.017938] (2018-08-04,21.000000) [8.218463] (2018-08-05,27.862745) [0.088838] (2018-08-05,12.501000) [0.088838] (2018-08-05,27.862745) [0.088838] (2018-08-05,13.250000) [0.088838] (2018-08-05,63.386548) [0.092800] (2018-08-05,13.250000) [0.092800] (2018-08-05,63.386548) [0.092800] (2018-08-05,13.250000) [0.092800] (2018-08-05,70.000000) [0.127288] (2018-08-05,70.000000) [0.127288] (2018-08-05,13.000000) [0.205422] (2018-08-05,21.000000) [0.205422] (2018-08-05,21.000000) [0.016920] (2018-08-05,13.830253) [0.016920] (2018-08-05,21.000000) [0.024290] (2018-08-05,13.146555) [0.024290] (2018-08-05,63.386548) [0.116000] (2018-08-05,41.625000) [0.116000] (2018-08-05,60.581325) [0.116000] (2018-08-05,63.386548) [0.115760] (2018-08-05,0.000000) [0.115760] (2018-08-06,63.386548) [0.132518] (2018-08-06,0.000000) [0.132518] (2018-08-06,13.000000) [0.297597] (2018-08-06,21.000000) [0.297597] (2018-08-06,14.146555) [0.051652] (2018-08-06,23.360303) [0.051652] (2018-08-07,50.442478) [0.083391] (2018-08-07,41.625000) [0.083391] (2018-08-07,58.311699) [0.083391] (2018-08-07,46.320257) [0.111360] (2018-08-07,60.371681) [0.111360] (2018-08-07,50.743363) [0.111360] (2018-08-07,70.000000) [0.111360] (2018-08-07,20.898652) [0.473788] (2018-08-07,21.000000) [0.473788] (2018-08-07,66.968996) [0.023146] (2018-08-07,13.250000) [0.023146] (2018-08-07,21.000000) [0.023146] (2018-08-08,69.960765) [0.775608] (2018-08-08,41.585765) [0.775608] (2018-08-08,62.120277) [0.103734] (2018-08-08,6.619429) [0.103734] (2018-08-08,69.399034) [0.103734] (2018-08-08,63.386548) [0.107132] (2018-08-08,70.000000) [0.107132] (2018-08-08,20.821129) [0.084543] (2018-08-08,21.000000) [0.084543] (2018-08-08,21.000000) [0.027095] (2018-08-08,21.000000) [0.027095] (2018-08-08,63.386548) [0.086922] (2018-08-08,70.000000) [0.086922] (2018-08-08,70.000000) [0.157212] (2018-08-08,70.000000) [0.157212] (2018-08-08,70.000000) [0.161383] (2018-08-08,63.882426) [0.161383] (2018-08-08,13.250000) [0.075575] (2018-08-08,13.250000) [0.075575] (2018-08-09,13.250000) [0.051339] (2018-08-09,21.000000) [0.051339] (2018-08-09,13.000000) [0.031738] (2018-08-09,22.650000) [0.031738] (2018-08-09,50.442478) [0.102254] (2018-08-09,13.000000) [0.102254] (2018-08-10,70.000000) [0.172213] (2018-08-10,69.967618) [0.172213] (2018-08-10,69.850524) [2.269200] (2018-08-10,69.850524) [2.269200] (2018-08-10,70.000000) [0.118460] (2018-08-10,0.153744) [0.118460] (2018-08-10,0.166013) [0.293750] (2018-08-10,23.181821) [0.046314] (2018-08-10,31.554654) [0.046314] (2018-08-10,62.199330) [0.046314] (2018-08-10,55.096244) [0.046314] (2018-08-10,21.000000) [0.076510] (2018-08-10,13.000000) [0.076510] (2018-08-11,13.000000) [0.044552] (2018-08-11,21.000000) [0.044552] (2018-08-11,19.557616) [0.055642] (2018-08-11,21.000000) [0.055642] (2018-08-11,41.770625) [0.164807] (2018-08-11,0.268523) [0.164807] (2018-08-11,50.442478) [0.187205] (2018-08-11,0.092781) [0.187205] (2018-08-11,59.469036) [0.010320] (2018-08-11,69.966794) [0.010320] (2018-08-11,32.955068) [0.086772] (2018-08-11,13.250000) [0.086772] (2018-08-12,38.549818) [0.078988] (2018-08-12,13.250000) [0.078988] (2018-08-12,13.000000) [0.099953] (2018-08-12,21.000000) [0.099953] (2018-08-12,6.625000) [0.097758] (2018-08-12,63.386548) [0.097758] (2018-08-12,62.963360) [0.105403] (2018-08-12,13.250039) [0.105403] (2018-08-12,70.000000) [0.123200] (2018-08-12,69.921933) [0.123200] (2018-08-12,13.250000) [0.069061] (2018-08-12,13.250000) [0.069061] (2018-08-13,15.393806) [0.092450] (2018-08-13,19.675731) [0.092450] (2018-08-13,21.000000) [0.092450] (2018-08-13,63.386548) [0.103490] (2018-08-13,13.250000) [0.103490] (2018-08-13,46.059453) [0.200699] (2018-08-13,69.751258) [0.200699] (2018-08-13,69.947405) [0.200699] (2018-08-13,13.250000) [0.017091] (2018-08-13,13.250000) [0.017091] (2018-08-13,32.081325) [0.017091] (2018-08-13,32.236175) [0.193978] (2018-08-13,13.250000) [0.193978] (2018-08-13,60.973127) [0.193978] (2018-08-13,63.386548) [0.152694] (2018-08-13,13.250000) [0.152694] (2018-08-13,13.000000) [0.072455] (2018-08-13,12.959812) [0.072455] (2018-08-14,70.000000) [0.336750] (2018-08-14,13.000000) [0.090568] (2018-08-14,12.730822) [0.090568] (2018-08-14,35.011548) [0.510725] (2018-08-14,13.250000) [0.510725] (2018-08-14,13.250000) [0.017811] (2018-08-14,12.501000) [0.017811] (2018-08-14,63.386548) [0.196800] (2018-08-14,70.000000) [0.196800] (2018-08-14,63.386548) [0.163630] (2018-08-14,0.000000) [0.163630] (2018-08-14,63.542984) [2.069600] (2018-08-14,69.240154) [2.069600] (2018-08-14,50.442478) [2.069600] (2018-08-15,0.000000) [0.384187] (2018-08-15,13.250000) [0.070074] (2018-08-15,13.250000) [0.070074] (2018-08-15,13.250000) [0.093203] (2018-08-15,35.011548) [0.093203] (2018-08-15,70.000000) [0.756120] (2018-08-15,20.930672) [2.874550] (2018-08-15,21.000000) [2.874550] (2018-08-16,18.023186) [0.971250] (2018-08-16,21.000000) [0.971250] (2018-08-16,13.000000) [0.014370] (2018-08-16,21.000000) [0.014370] (2018-08-16,14.301810) [0.553855] (2018-08-16,14.301810) [0.553855] (2018-08-16,14.301810) [0.553855] (2018-08-16,70.000000) [0.553855] (2018-08-16,0.153726) [0.249024] (2018-08-16,70.061492) [0.249024] (2018-08-16,35.011548) [0.105120] (2018-08-16,13.250000) [0.105120] (2018-08-16,35.011548) [0.123990] (2018-08-16,13.250000) [0.123990] (2018-08-16,70.000000) [0.084275] (2018-08-16,70.000000) [0.084275] (2018-08-17,35.011548) [0.034211] (2018-08-17,0.000000) [0.034211] (2018-08-17,70.000000) [0.455490] (2018-08-17,70.000000) [0.455490] (2018-08-17,14.000000) [0.024587] (2018-08-17,13.250000) [1.497910] (2018-08-17,13.250000) [1.497910] (2018-08-17,38.764423) [1.497910] (2018-08-17,70.000000) [0.073819] (2018-08-17,70.000000) [0.073819] (2018-08-17,13.250000) [0.067850] (2018-08-17,13.250000) [0.067850] (2018-08-17,13.250000) [0.067850] (2018-08-18,31.571096) [0.133243] (2018-08-18,31.721239) [0.133243] (2018-08-18,40.752575) [0.133243] (2018-08-18,70.000000) [0.133243] (2018-08-18,13.250000) [0.074023] (2018-08-18,13.250000) [0.074023] (2018-08-19,25.058737) [0.114501] (2018-08-19,13.896861) [0.114501] (2018-08-19,15.000000) [0.699650] (2018-08-19,21.000000) [0.699650] (2018-08-19,18.115232) [0.017969] (2018-08-19,70.000000) [0.017969] (2018-08-19,20.704381) [0.029968] (2018-08-19,21.000000) [0.029968] (2018-08-19,31.923749) [0.264535] (2018-08-19,35.134610) [0.264535] (2018-08-19,13.000000) [0.264535] (2018-08-20,63.386548) [0.140428] (2018-08-20,0.000000) [0.140428] (2018-08-20,54.019764) [0.020959] (2018-08-20,69.383744) [0.020959] (2018-08-20,35.011548) [0.093491] (2018-08-20,6.625000) [0.093491] (2018-08-20,21.000000) [0.025937] (2018-08-20,15.000000) [0.025937] (2018-08-21,13.000000) [0.178373] (2018-08-21,21.000000) [0.178373] (2018-08-21,70.000000) [0.020374] (2018-08-21,0.000000) [0.020374] (2018-08-21,63.386548) [0.252025] (2018-08-21,0.000000) [0.252025] (2018-08-21,13.250000) [0.154846] (2018-08-21,53.575234) [0.154846] (2018-08-21,54.036128) [0.154846] (2018-08-21,53.729839) [0.154846] (2018-08-21,53.884169) [0.154846] (2018-08-21,66.759372) [0.154846] (2018-08-22,21.000000) [0.095075] (2018-08-22,21.000000) [0.095075] (2018-08-22,19.511593) [0.020187] (2018-08-22,21.000000) [0.020187] (2018-08-22,41.625000) [0.033880] (2018-08-22,70.000000) [0.033880] (2018-08-22,35.011548) [0.107050] (2018-08-22,41.625000) [0.107050] (2018-08-22,21.000000) [0.022393] (2018-08-22,20.589014) [0.022393] (2018-08-23,21.000000) [0.018631] (2018-08-23,21.000000) [0.018631] (2018-08-23,15.000000) [0.013365] (2018-08-23,21.000000) [0.013365] (2018-08-23,21.000000) [0.022029] (2018-08-23,21.000000) [0.022029] (2018-08-23,13.000000) [0.023227] (2018-08-23,19.247686) [0.023227] (2018-08-23,14.400000) [0.379580] (2018-08-23,21.000000) [0.379580] (2018-08-23,15.015904) [0.384781] (2018-08-23,21.000000) [0.384781] (2018-08-23,15.000000) [0.039677] (2018-08-23,21.000000) [0.039677] (2018-08-23,19.557616) [0.021308] (2018-08-23,21.000000) [0.021308] (2018-08-23,17.930750) [0.021308] (2018-08-23,15.000000) [0.021308] (2018-08-24,21.000000) [0.027510] (2018-08-24,21.000000) [0.027510] (2018-08-24,13.000000) [0.095951] (2018-08-24,21.000000) [0.095951] (2018-08-24,15.000000) [0.095951] (2018-08-24,13.973378) [0.095951] (2018-08-24,12.943312) [0.095951] (2018-08-24,70.000000) [0.155495] (2018-08-24,70.000000) [0.155495] (2018-08-24,60.183442) [0.328138] (2018-08-24,70.000000) [0.328138] (2018-08-24,70.000000) [0.325600] (2018-08-24,35.011548) [0.116272] (2018-08-24,0.000000) [0.116272] (2018-08-24,35.000000) [0.393339] (2018-08-25,35.011548) [0.548096] (2018-08-25,13.250000) [0.548096] (2018-08-25,13.000000) [0.034671] (2018-08-25,21.000000) [0.034671] (2018-08-25,56.773097) [0.109942] (2018-08-25,13.250000) [0.109942] (2018-08-25,13.000000) [0.207767] (2018-08-25,41.625000) [0.207767] (2018-08-25,15.000000) [0.207767] (2018-08-25,13.000000) [0.100445] (2018-08-25,21.000000) [0.100445] (2018-08-25,15.000000) [0.100445] (2018-08-25,15.000000) [0.100445] (2018-08-25,26.522717) [0.100445] (2018-08-26,21.000000) [0.030216] (2018-08-26,21.000000) [0.030216] (2018-08-26,13.000000) [0.062867] (2018-08-26,21.000000) [0.062867] (2018-08-26,15.000000) [0.062867] (2018-08-26,63.216888) [1.105727] (2018-08-26,70.340000) [1.105727] (2018-08-26,50.110375) [1.105727] (2018-08-26,70.000000) [1.105727] (2018-08-26,13.250000) [0.013408] (2018-08-26,13.250000) [0.013408] (2018-08-26,34.886548) [0.114237] (2018-08-26,6.442438) [0.114237] (2018-08-27,17.805229) [0.073905] (2018-08-27,20.953314) [0.073905] (2018-08-27,13.000000) [0.024811] (2018-08-27,21.000000) [0.024811] (2018-08-27,15.000000) [0.024811] (2018-08-27,13.146555) [0.033048] (2018-08-27,21.000000) [0.033048] (2018-08-27,15.000000) [0.033048] (2018-08-27,15.000000) [0.033048] (2018-08-27,13.000000) [0.124247] (2018-08-27,26.784320) [0.124247] (2018-08-27,15.000000) [0.124247] (2018-08-27,21.000000) [0.124247] (2018-08-27,12.934854) [0.124247] (2018-08-28,70.000000) [0.150963] (2018-08-28,0.000000) [0.150963] (2018-08-28,13.476500) [0.474794] (2018-08-28,13.363250) [0.474794] (2018-08-28,13.250000) [0.474794] (2018-08-28,51.464974) [0.474794] (2018-08-28,15.000000) [0.414612] (2018-08-28,13.000000) [0.414612] (2018-08-28,21.000000) [0.414612] (2018-08-28,13.000000) [0.010968] (2018-08-28,15.000000) [0.010968] (2018-08-29,20.718827) [0.055201] (2018-08-29,21.000000) [0.055201] (2018-08-29,63.386548) [0.129297] (2018-08-29,13.250000) [0.129297] (2018-08-29,13.000000) [0.015313] (2018-08-29,15.000000) [0.015313] (2018-08-29,15.000000) [0.015313] (2018-08-30,56.773097) [0.116310] (2018-08-30,0.000000) [0.116310] (2018-08-30,21.000000) [0.016145] (2018-08-30,20.397171) [0.016145] (2018-08-30,25.646290) [0.222764] (2018-08-30,15.173441) [0.222764] (2018-08-30,21.000000) [0.222764] (2018-08-30,13.250000) [0.011629] (2018-08-30,21.000000) [0.011629] (2018-08-30,13.825000) [0.023251] (2018-08-30,45.500000) [0.023251] (2018-08-30,13.000000) [0.084061] (2018-08-30,4.208000) [0.084061] (2018-08-31,13.000000) [0.013219] (2018-08-31,21.000000) [0.013219] (2018-08-31,6.625000) [0.043359] (2018-08-31,70.000000) [0.043359] (2018-08-31,35.011548) [0.075778] (2018-08-31,0.000000) [0.075778] (2018-08-31,13.250000) [0.411901] (2018-08-31,12.461644) [0.411901] (2018-09-01,35.011548) [0.093900] (2018-09-01,0.000000) [0.093900] (2018-09-02,0.000000) [0.355500] (2018-09-02,50.442478) [0.207995] (2018-09-02,0.266232) [0.207995] (2018-09-02,70.000000) [0.153956] (2018-09-02,13.250000) [0.153956] (2018-09-02,4.253020) [0.363802] (2018-09-02,56.773097) [0.121997] (2018-09-02,6.625000) [0.121997] (2018-09-02,15.000000) [0.002232] (2018-09-02,21.000000) [0.002232] (2018-09-02,13.000000) [0.015014] (2018-09-02,21.000000) [0.015014] (2018-09-02,15.000000) [0.015014] (2018-09-03,35.011548) [0.115278] (2018-09-03,6.625000) [0.115278] (2018-09-03,15.000000) [0.032606] (2018-09-03,15.000000) [0.032606] (2018-09-03,15.000000) [0.032606] (2018-09-03,21.000000) [0.008631] (2018-09-03,21.000000) [0.008631] (2018-09-03,13.000000) [0.086391] (2018-09-03,21.000000) [0.086391] (2018-09-03,15.000000) [0.086391] (2018-09-03,21.000000) [0.018483] (2018-09-03,21.000000) [0.018483] (2018-09-03,35.011548) [0.079155] (2018-09-03,13.250000) [0.079155] (2018-09-03,13.250000) [0.079155] (2018-09-03,35.000000) [0.346320] (2018-09-03,0.000000) [0.185810] (2018-09-03,13.250000) [0.406186] (2018-09-03,13.250000) [0.406186] (2018-09-03,0.000000) [0.176412] (2018-09-03,70.340000) [8.525720] (2018-09-03,31.721239) [8.525720] (2018-09-03,70.170000) [8.525720] (2018-09-03,226.909108) [8.525720] (2018-09-03,35.011548) [0.081801] (2018-09-03,13.250000) [0.081801] (2018-09-03,21.000000) [0.021589] (2018-09-03,0.000000) [0.021589] (2018-09-03,21.000000) [0.021589] (2018-09-03,63.386548) [0.183680] (2018-09-03,0.000000) [0.183680] (2018-09-04,102.555642) [0.138774] (2018-09-04,0.000000) [0.138774] (2018-09-04,61.868350) [0.703716] (2018-09-04,0.121871) [0.703716] (2018-09-04,13.000000) [0.143401] (2018-09-04,15.000000) [0.143401] (2018-09-04,20.123843) [0.143401] (2018-09-04,18.115232) [0.032583] (2018-09-04,21.000000) [0.032583] (2018-09-04,13.000000) [0.035730] (2018-09-04,18.174451) [0.035730] (2018-09-04,15.000000) [0.035730] (2018-09-05,13.274005) [0.095495] (2018-09-05,13.476500) [0.095495] (2018-09-05,0.902402) [0.095495] (2018-09-05,13.250000) [0.095495] (2018-09-05,56.773097) [0.132480] (2018-09-05,0.000000) [0.132480] (2018-09-05,0.090443) [0.116098] (2018-09-05,54.450834) [0.116098] (2018-09-05,63.386548) [0.120969] (2018-09-05,0.000000) [0.120969] (2018-09-05,21.000000) [0.051962] (2018-09-05,21.000000) [0.051962] (2018-09-05,21.000000) [0.064650] (2018-09-05,21.000000) [0.064650] (2018-09-06,21.000000) [0.088745] (2018-09-06,21.000000) [0.088745] (2018-09-06,21.000000) [0.148630] (2018-09-06,21.000000) [0.148630] (2018-09-06,63.386548) [0.702758] (2018-09-06,0.000000) [0.702758] (2018-09-06,21.000000) [0.100000] (2018-09-06,21.000000) [0.100000] (2018-09-06,21.000000) [0.100000] (2018-09-06,21.000000) [0.100000] (2018-09-06,21.000000) [0.022637] (2018-09-06,21.000000) [0.022637] (2018-09-06,21.000000) [0.022637] (2018-09-06,13.000000) [0.005511] (2018-09-06,15.000000) [0.005511] (2018-09-06,21.000000) [0.005511] (2018-09-06,13.792130) [0.056178] (2018-09-06,15.404222) [0.056178] (2018-09-06,13.250000) [0.056178] (2018-09-06,13.250000) [0.056178] (2018-09-07,21.000000) [0.019555] (2018-09-07,21.000000) [0.019555] (2018-09-07,35.011548) [0.089953] (2018-09-07,0.000000) [0.089953] (2018-09-07,63.386548) [0.227581] (2018-09-07,0.000000) [0.227581] (2018-09-07,6.625000) [0.227581] (2018-09-07,21.000000) [0.615653] (2018-09-07,21.000000) [0.615653] (2018-09-07,21.000000) [0.086760] (2018-09-07,21.000000) [0.086760] (2018-09-07,21.000000) [0.086760] (2018-09-07,13.879764) [0.024218] (2018-09-07,15.000000) [0.024218] (2018-09-07,21.000000) [0.024218] (2018-09-07,48.312728) [0.024218] (2018-09-07,13.000000) [0.017242] (2018-09-07,15.000000) [0.017242] (2018-09-07,21.000000) [0.017242] (2018-09-07,13.000000) [0.523600] (2018-09-07,12.730822) [0.523600] (2018-09-08,0.184998) [0.178545] (2018-09-08,53.009541) [0.178545] (2018-09-08,63.386548) [0.169125] (2018-09-08,0.000000) [0.169125] (2018-09-08,63.386548) [0.169125] (2018-09-08,0.000000) [0.169125] (2018-09-08,35.011548) [0.576344] (2018-09-08,0.000000) [0.576344] (2018-09-08,21.000000) [0.259585] (2018-09-08,21.000000) [0.259585] (2018-09-08,21.000000) [0.128538] (2018-09-08,21.000000) [0.128538] (2018-09-08,21.000000) [0.128538] (2018-09-08,21.000000) [0.523832] (2018-09-08,21.000000) [0.523832] (2018-09-08,26.004196) [0.319776] (2018-09-08,2.104000) [0.319776] (2018-09-09,21.000000) [0.004440] (2018-09-09,20.699005) [0.004440] (2018-09-09,21.000000) [0.004440] (2018-09-09,13.000000) [0.099865] (2018-09-09,15.000000) [0.099865] (2018-09-09,21.000000) [0.099865] (2018-09-09,56.773097) [0.120006] (2018-09-09,0.000000) [0.120006] (2018-09-09,35.124798) [0.101313] (2018-09-09,35.168322) [0.101313] (2018-09-09,0.000000) [0.101313] (2018-09-10,63.386548) [0.123441] (2018-09-10,7.003838) [0.123441] (2018-09-10,13.476500) [0.295904] (2018-09-10,70.000000) [0.295904] (2018-09-10,0.902402) [0.295904] (2018-09-10,55.307416) [0.269702] (2018-09-10,11.491153) [0.269702] (2018-09-11,21.000000) [0.104928] (2018-09-11,21.000000) [0.104928] (2018-09-11,21.000000) [0.015854] (2018-09-11,18.000000) [0.015854] (2018-09-11,4.208000) [0.373808] (2018-09-11,70.000000) [0.157233] (2018-09-11,6.442438) [0.157233] (2018-09-12,11.626211) [0.123385] (2018-09-12,17.915945) [0.123385] (2018-09-12,34.021172) [0.229790] (2018-09-12,16.976367) [0.229790] (2018-09-12,21.000000) [0.020846] (2018-09-12,21.000000) [0.020846] (2018-09-12,21.000000) [0.176000] (2018-09-12,21.000000) [0.176000] (2018-09-12,21.000000) [0.028545] (2018-09-12,21.000000) [0.028545] (2018-09-12,21.000000) [0.028545] (2018-09-12,21.000000) [0.021840] (2018-09-12,21.000000) [0.081566] (2018-09-12,21.000000) [0.081566] (2018-09-12,21.000000) [0.037909] (2018-09-12,21.000000) [0.037909] (2018-09-12,17.579756) [0.212547] (2018-09-12,28.255625) [0.212547] (2018-09-12,48.690986) [0.212547] (2018-09-12,0.701000) [0.212547] (2018-09-12,21.000000) [0.014602] (2018-09-12,10.000000) [0.014602] (2018-09-12,49.982947) [3.751386] (2018-09-12,1.398014) [3.751386] (2018-09-12,0.000000) [1.562008] (2018-09-12,21.000000) [0.019315] (2018-09-12,21.000000) [0.019315] (2018-09-12,18.394707) [0.381917] (2018-09-13,70.000000) [0.051452] (2018-09-13,21.000000) [0.016905] (2018-09-13,21.000000) [0.016905] (2018-09-13,21.000000) [0.023816] (2018-09-13,20.679412) [0.023816] (2018-09-13,21.000000) [0.024980] (2018-09-13,21.000000) [0.024980] (2018-09-13,35.011548) [0.087742] (2018-09-13,12.461644) [0.087742] (2018-09-13,35.011548) [0.097008] (2018-09-13,0.000000) [0.097008] (2018-09-13,70.000000) [0.151110] (2018-09-13,2.104000) [0.151110] (2018-09-13,63.386548) [0.171996] (2018-09-13,4.208000) [0.171996] (2018-09-13,21.000000) [0.060755] (2018-09-13,21.000000) [0.060755] (2018-09-13,13.000000) [0.035253] (2018-09-13,21.000000) [0.035253] (2018-09-14,34.886548) [0.298607] (2018-09-14,21.000000) [0.298607] (2018-09-14,0.000000) [0.298607] (2018-09-14,21.000000) [0.054810] (2018-09-14,21.000000) [0.054810] (2018-09-14,21.000000) [0.220759] (2018-09-14,21.000000) [0.220759] (2018-09-14,21.000000) [1.445350] (2018-09-14,21.000000) [1.445350] (2018-09-14,63.373661) [1.235839] (2018-09-14,63.216888) [1.235839] (2018-09-14,4.208000) [1.235839] (2018-09-14,32.587512) [0.161456] (2018-09-14,6.581322) [0.161456] (2018-09-14,21.000000) [0.063438] (2018-09-14,21.000000) [0.063438] (2018-09-14,63.386548) [0.235273] (2018-09-14,0.000000) [0.235273] (2018-09-14,21.000000) [0.091719] (2018-09-14,21.000000) [0.091719] (2018-09-14,12.841171) [2.744238] (2018-09-14,35.011548) [0.527507] (2018-09-14,0.000000) [0.527507] (2018-09-14,21.000000) [0.025398] (2018-09-14,21.000000) [0.025398] (2018-09-14,21.000000) [0.376645] (2018-09-14,21.000000) [0.376645] (2018-09-14,25.644268) [0.249975] (2018-09-14,13.000000) [0.249975] (2018-09-14,21.000000) [0.024717] (2018-09-14,21.000000) [0.024717] (2018-09-14,21.000000) [0.076978] (2018-09-14,21.000000) [0.076978] (2018-09-15,70.000000) [35.527600] (2018-09-15,16.471691) [0.513354] (2018-09-15,10.007526) [0.513354] (2018-09-15,35.011548) [0.164000] (2018-09-15,0.000000) [0.164000] (2018-09-15,15.000000) [0.022888] (2018-09-15,21.000000) [0.022888] (2018-09-16,13.000000) [0.010394] (2018-09-16,15.000000) [0.010394] (2018-09-16,13.000000) [0.415411] (2018-09-16,10.220000) [0.415411] (2018-09-16,15.000000) [0.415411] (2018-09-16,21.000000) [0.044447] (2018-09-16,21.000000) [0.044447] (2018-09-16,21.000000) [0.059781] (2018-09-16,21.000000) [0.059781] (2018-09-16,16.511593) [0.029902] (2018-09-16,21.000000) [0.029902] (2018-09-16,15.000000) [0.029902] (2018-09-16,0.000000) [2.400536] (2018-09-16,66.567634) [2.400536] (2018-09-17,63.386548) [0.246200] (2018-09-17,0.000000) [0.246200] (2018-09-17,13.000000) [3.990200] (2018-09-17,14.586644) [0.369713] (2018-09-17,40.495868) [0.369713] (2018-09-17,13.250000) [0.431727] (2018-09-17,0.000000) [0.431727] (2018-09-17,70.000000) [0.572738] (2018-09-17,0.000000) [0.572738] (2018-09-17,70.000000) [0.655820] (2018-09-17,0.000000) [0.655820] (2018-09-17,70.000000) [0.526269] (2018-09-17,2.104000) [0.526269] (2018-09-17,63.386548) [0.742800] (2018-09-17,2.104000) [0.742800] (2018-09-17,63.386548) [0.677781] (2018-09-17,0.000000) [0.677781] (2018-09-17,63.386548) [1.007850] (2018-09-17,0.000000) [1.007850] (2018-09-17,63.386548) [0.720261] (2018-09-17,0.000000) [0.720261] (2018-09-17,46.027250) [0.212590] (2018-09-17,0.000000) [0.212590] (2018-09-17,40.992208) [0.212590] (2018-09-17,70.000000) [0.129012] (2018-09-17,4.208000) [0.129012] (2018-09-17,13.250000) [0.065632] (2018-09-17,0.000000) [0.065632] (2018-09-17,13.250000) [0.104878] (2018-09-17,11.617309) [0.104878] (2018-09-17,7.275366) [0.883847] (2018-09-17,56.773097) [0.681580] (2018-09-17,0.000000) [0.681580] (2018-09-17,63.386548) [0.829970] (2018-09-17,0.000000) [0.829970] (2018-09-17,10.529623) [0.519306] (2018-09-17,16.037331) [0.519306] (2018-09-17,35.011548) [0.530082] (2018-09-17,0.000000) [0.530082] (2018-09-17,0.000000) [0.285662] (2018-09-17,35.011548) [0.571214] (2018-09-17,0.000000) [0.571214] (2018-09-17,34.886548) [0.363907] (2018-09-17,5.452869) [0.363907] (2018-09-17,13.250000) [0.427776] (2018-09-17,0.000000) [0.427776] (2018-09-17,56.773097) [0.494707] (2018-09-17,0.000000) [0.494707] (2018-09-17,13.250000) [0.441521] (2018-09-17,0.000000) [0.441521] (2018-09-17,13.000000) [0.012834] (2018-09-17,15.000000) [0.012834] (2018-09-17,21.000000) [0.012834] (2018-09-17,13.000000) [0.292481] (2018-09-17,13.000000) [0.292481] (2018-09-17,0.000000) [0.315326] (2018-09-17,0.000000) [0.298270] (2018-09-17,13.250000) [0.417475] (2018-09-17,0.000000) [0.417475] (2018-09-17,0.000000) [0.348936] (2018-09-17,0.000000) [0.370290] (2018-09-17,70.000000) [0.722729] (2018-09-17,0.000000) [0.722729] (2018-09-17,2.104000) [0.361773] (2018-09-17,56.773097) [0.566530] (2018-09-17,0.000000) [0.566530] (2018-09-17,35.011548) [0.478342] (2018-09-17,0.000000) [0.478342] (2018-09-17,13.250000) [0.421399] (2018-09-17,4.208000) [0.421399] (2018-09-17,0.000000) [0.266865] (2018-09-17,0.000000) [0.367571] (2018-09-17,14.257542) [0.384094] (2018-09-17,70.000000) [0.770754] (2018-09-17,0.000000) [0.770754] (2018-09-17,35.011548) [0.457413] (2018-09-17,0.000000) [0.457413] (2018-09-17,56.773097) [0.650943] (2018-09-17,0.000000) [0.650943] (2018-09-17,0.000000) [0.368809] (2018-09-17,20.879241) [0.027000] (2018-09-17,21.000000) [0.027000] (2018-09-17,0.000000) [0.346132] (2018-09-17,21.000000) [0.015632] (2018-09-17,21.000000) [0.015632] (2018-09-18,56.773097) [0.623544] (2018-09-18,4.208000) [0.623544] (2018-09-18,13.000000) [0.072752] (2018-09-18,15.000000) [0.072752] (2018-09-18,19.247686) [0.072752] (2018-09-18,21.000000) [0.035994] (2018-09-18,21.000000) [0.035994] (2018-09-19,21.000000) [0.038941] (2018-09-19,21.000000) [0.038941] (2018-09-20,17.252676) [0.082483] (2018-09-20,0.000000) [0.082483] (2018-09-20,13.000000) [0.012628] (2018-09-20,15.000000) [0.012628] (2018-09-20,21.000000) [0.012628] (2018-09-20,0.048842) [0.294392] (2018-09-20,15.000000) [0.417337] (2018-09-20,21.000000) [0.417337] (2018-09-20,15.000000) [0.201477] (2018-09-20,15.000000) [0.201477] (2018-09-20,21.000000) [0.201477] (2018-09-20,21.000000) [0.032883] (2018-09-20,21.000000) [0.032883] (2018-09-20,21.000000) [0.032883] (2018-09-20,70.000000) [0.256703] (2018-09-20,35.000000) [0.256703] (2018-09-20,56.773097) [0.256703] (2018-09-20,10.000001) [0.249113] (2018-09-20,63.386548) [0.249113] (2018-09-20,4.208000) [0.249113] (2018-09-20,10.001000) [0.249113] (2018-09-21,0.000000) [0.000000] (2018-09-21,8.333334) [0.000000] (2018-09-21,10.001000) [0.000000] (2018-09-21,10.000001) [0.000000] (2018-09-21,10.001000) [0.000000] (2018-09-21,21.000000) [0.233340] (2018-09-21,0.000000) [0.233340] (2018-09-21,21.000000) [0.233340] (2018-09-21,21.000000) [0.023551] (2018-09-21,21.000000) [0.023551] (2018-09-21,10.000000) [0.016037] (2018-09-21,63.386548) [0.176013] (2018-09-21,0.000000) [0.176013] (2018-09-22,21.000000) [0.315570] (2018-09-22,21.000000) [0.315570] (2018-09-22,21.000000) [0.315570] (2018-09-23,21.000000) [0.132675] (2018-09-23,21.000000) [0.132675] (2018-09-23,21.000000) [0.132675] (2018-09-23,56.773097) [0.115680] (2018-09-23,13.250000) [0.115680] (2018-09-23,21.000000) [0.030446] (2018-09-23,21.000000) [0.030446] (2018-09-23,21.000000) [0.104188] (2018-09-23,21.000000) [0.104188] (2018-09-23,63.386548) [1.718752] (2018-09-23,13.000000) [1.718752] (2018-09-23,18.374407) [0.048899] (2018-09-23,21.000000) [0.048899] (2018-09-23,21.000000) [0.048899] (2018-09-24,70.000000) [0.150000] (2018-09-24,13.000000) [0.150000] (2018-09-24,13.000000) [0.098896] (2018-09-24,16.313982) [0.098896] (2018-09-24,15.000000) [0.098896] (2018-09-24,15.000000) [0.098896] (2018-09-24,21.000000) [0.031430] (2018-09-24,21.000000) [0.031430] (2018-09-24,5.267409) [0.042106] (2018-09-24,21.000000) [0.042106] (2018-09-24,21.000000) [0.042106] (2018-09-24,21.000000) [0.041151] (2018-09-24,21.000000) [0.041151] (2018-09-24,21.000000) [0.099242] (2018-09-24,21.000000) [0.099242] (2018-09-24,10.220000) [0.099242] (2018-09-25,63.652476) [0.172908] (2018-09-25,63.497931) [0.172908] (2018-09-25,21.000000) [0.172908] (2018-09-25,21.000000) [0.172908] (2018-09-25,21.000000) [0.096497] (2018-09-25,21.000000) [0.096497] (2018-09-25,15.000000) [0.008583] (2018-09-25,13.250000) [0.107840] (2018-09-25,13.250000) [0.107840] (2018-09-25,19.263797) [0.054394] (2018-09-25,21.000000) [0.054394] (2018-09-25,70.000000) [0.158255] (2018-09-25,13.000000) [0.158255] (2018-09-25,0.000000) [0.602701] (2018-09-25,13.000000) [0.017298] (2018-09-25,15.369565) [0.017298] (2018-09-25,21.000000) [0.017298] (2018-09-25,15.000000) [0.017298] (2018-09-25,13.000000) [0.087180] (2018-09-25,21.000000) [0.087180] (2018-09-25,15.000000) [0.087180] (2018-09-25,13.250000) [0.083374] (2018-09-25,0.000000) [0.083374] (2018-09-25,13.250000) [0.094881] (2018-09-25,5.689810) [0.094881] (2018-09-26,35.011548) [0.097061] (2018-09-26,0.000000) [0.097061] (2018-09-26,15.000000) [0.037849] (2018-09-26,15.000000) [0.037849] (2018-09-26,15.500000) [0.037849] (2018-09-26,21.000000) [0.038457] (2018-09-26,15.000000) [0.038457] (2018-09-26,15.000000) [0.038457] (2018-09-26,21.000000) [0.113360] (2018-09-26,21.000000) [0.113360] (2018-09-26,0.000000) [0.572000] (2018-09-27,15.000000) [0.023316] (2018-09-27,21.000000) [0.023316] (2018-09-27,17.231674) [0.023316] (2018-09-28,21.000000) [0.025853] (2018-09-28,21.000000) [0.025853] (2018-09-28,15.741506) [0.025853] (2018-09-28,15.000000) [0.025853] (2018-09-28,16.483011) [0.025853] (2018-09-28,18.741506) [0.040060] (2018-09-28,21.000000) [0.040060] (2018-09-28,16.483011) [0.040060] (2018-09-28,16.111071) [0.040060] (2018-09-28,16.111071) [0.040060] (2018-09-28,16.111071) [0.040060] (2018-09-28,21.000000) [0.040060] (2018-09-28,21.000000) [0.189248] (2018-09-28,21.000000) [0.189248] (2018-09-28,21.000000) [0.013883] (2018-09-28,21.000000) [0.013883] (2018-09-28,15.000000) [0.060111] (2018-09-28,21.000000) [0.060111] (2018-09-28,15.000000) [0.060111] (2018-09-28,21.000000) [0.095676] (2018-09-28,5.000000) [0.095676] (2018-09-28,21.000000) [0.009594] (2018-09-28,21.000000) [0.009594] (2018-09-29,21.000000) [0.010620] (2018-09-29,21.000000) [0.010620] (2018-09-29,21.000000) [0.046022] (2018-09-29,21.000000) [0.046022] (2018-09-29,15.000000) [0.018483] (2018-09-29,15.000000) [0.018483] (2018-09-29,12.500000) [0.018483] (2018-09-29,15.000000) [0.018483] (2018-09-29,21.000000) [0.035880] (2018-09-29,21.000000) [0.035880] (2018-09-29,21.000000) [0.060383] (2018-09-29,21.000000) [0.060383] (2018-09-29,21.000000) [0.089968] (2018-09-29,21.000000) [0.089968] (2018-09-29,15.000000) [0.089968] (2018-09-29,21.000000) [0.012134] (2018-09-29,21.000000) [0.012134] (2018-09-30,56.773097) [0.009050] (2018-09-30,0.000000) [0.009050] (2018-09-30,21.000000) [0.364104] (2018-09-30,21.000000) [0.364104] (2018-09-30,15.000000) [0.364104] (2018-09-30,13.000000) [0.124580] (2018-09-30,21.000000) [0.124580] (2018-09-30,15.000000) [0.124580] (2018-09-30,21.000000) [0.012500] (2018-09-30,21.000000) [0.012500] (2018-09-30,70.000000) [0.134100] (2018-09-30,0.000000) [0.134100] (2018-09-30,70.000000) [0.134100] (2018-09-30,65.902561) [0.148159] (2018-09-30,0.378348) [0.148159] (2018-09-30,10.038986) [0.148159] (2018-09-30,9.982275) [0.148159] (2018-09-30,21.000000) [0.015160] (2018-09-30,21.000000) [0.015160] (2018-09-30,21.000000) [0.015160] (2018-10-01,15.000000) [0.020789] (2018-10-01,0.000000) [0.020789] (2018-10-01,16.332143) [0.020789] (2018-10-01,70.000000) [0.020789] (2018-10-01,15.000000) [0.020789] (2018-10-01,15.000000) [0.020789] (2018-10-02,13.000000) [0.307300] (2018-10-02,13.000000) [0.307300] (2018-10-02,12.900660) [0.307300] (2018-10-02,13.000000) [0.307300] (2018-10-02,15.000000) [0.307300] (2018-10-03,16.759558) [0.234349] (2018-10-03,18.366326) [0.039552] (2018-10-03,20.758483) [0.039552] (2018-10-03,21.000000) [0.039552] (2018-10-03,15.000000) [0.039552] (2018-10-03,21.000000) [0.043656] (2018-10-03,13.000000) [0.043656] (2018-10-03,15.000000) [0.043656] (2018-10-03,13.000000) [0.036688] (2018-10-03,21.000000) [0.036688] (2018-10-03,15.000000) [0.036688] (2018-10-03,15.000000) [0.036688] (2018-10-03,0.000000) [0.452148] (2018-10-03,35.011548) [0.098280] (2018-10-03,0.000000) [0.098280] (2018-10-04,13.000000) [0.009567] (2018-10-04,21.000000) [0.009567] (2018-10-04,17.868677) [0.009567] (2018-10-04,20.276894) [0.009567] (2018-10-04,15.460460) [0.009567] (2018-10-04,20.758483) [0.009567] (2018-10-04,15.000000) [0.009567] (2018-10-04,0.000000) [0.020889] (2018-10-04,0.000000) [0.294165] (2018-10-04,0.000000) [0.318030] (2018-10-04,13.000000) [0.012021] (2018-10-04,15.000000) [0.012021] (2018-10-04,21.000000) [0.012021] (2018-10-04,15.000000) [0.012021] (2018-10-05,13.000000) [0.009880] (2018-10-05,15.000000) [0.009880] (2018-10-05,15.000000) [0.009880] (2018-10-05,13.830253) [0.067998] (2018-10-05,15.000000) [0.067998] (2018-10-05,21.000000) [0.067998] (2018-10-05,15.000000) [0.264259] (2018-10-05,21.000000) [0.264259] (2018-10-05,15.000000) [0.264259] (2018-10-05,8.587635) [0.185406] (2018-10-05,32.636037) [0.185406] (2018-10-05,21.000000) [0.084602] (2018-10-05,21.000000) [0.084602] (2018-10-05,21.000000) [0.015088] (2018-10-05,21.000000) [0.015088] (2018-10-05,13.000000) [0.016808] (2018-10-05,21.000000) [0.016808] (2018-10-05,15.000000) [0.016808] (2018-10-05,15.000000) [0.022499] (2018-10-05,21.000000) [0.022499] (2018-10-05,15.000000) [0.022499] (2018-10-05,15.741506) [0.014226] (2018-10-05,19.508857) [0.014226] (2018-10-05,21.000000) [0.014226] (2018-10-05,15.000000) [0.014226] (2018-10-05,15.000000) [0.024302] (2018-10-05,10.220000) [0.024302] (2018-10-05,13.000000) [0.024302] (2018-10-05,15.000000) [0.024302] (2018-10-05,63.386548) [0.285600] (2018-10-05,70.000000) [0.285600] (2018-10-05,0.263848) [0.571200] (2018-10-05,13.000000) [0.015000] (2018-10-05,21.000000) [0.015000] (2018-10-05,15.000000) [0.015000] (2018-10-05,13.000000) [0.018000] (2018-10-05,21.000000) [0.018000] (2018-10-05,15.000000) [0.018000] (2018-10-05,15.000000) [0.015995] (2018-10-05,21.000000) [0.015995] (2018-10-05,15.000000) [0.015995] (2018-10-05,21.000000) [0.019993] (2018-10-05,10.220000) [0.019993] (2018-10-05,13.000000) [0.013995] (2018-10-05,21.000000) [0.013995] (2018-10-05,15.000000) [0.013995] (2018-10-05,13.000000) [0.042188] (2018-10-05,21.000000) [0.042188] (2018-10-05,15.000000) [0.042188] (2018-10-05,15.000000) [0.130104] (2018-10-05,21.000000) [0.130104] (2018-10-05,13.000000) [0.130104] (2018-10-05,15.000000) [0.130104] (2018-10-05,13.000000) [0.011990] (2018-10-05,13.000000) [0.011990] (2018-10-05,21.000000) [0.011990] (2018-10-05,15.000000) [0.011990] (2018-10-05,15.000000) [0.011990] (2018-10-05,15.000000) [0.011990] (2018-10-05,13.000000) [0.014400] (2018-10-05,15.000000) [0.014400] (2018-10-05,21.000000) [0.014400] (2018-10-06,45.869565) [0.000025] (2018-10-06,70.000000) [0.000025] (2018-10-06,21.000000) [0.079160] (2018-10-06,21.000000) [0.079160] (2018-10-06,21.000000) [0.079160] (2018-10-06,13.000000) [0.026914] (2018-10-06,21.000000) [0.026914] (2018-10-06,15.000000) [0.026914] (2018-10-06,21.000000) [0.327886] (2018-10-06,21.000000) [0.327886] (2018-10-06,70.000000) [0.096649] (2018-10-06,70.000000) [0.096649] (2018-10-06,70.000000) [0.096649] (2018-10-06,70.000000) [0.096649] (2018-10-06,53.398883) [0.206050] (2018-10-06,14.602088) [0.206050] (2018-10-06,21.000000) [0.041406] (2018-10-06,21.000000) [0.041406] (2018-10-06,15.000000) [0.041406] (2018-10-06,13.000000) [0.013499] (2018-10-06,15.000000) [0.013499] (2018-10-06,21.000000) [0.013499] (2018-10-06,13.703036) [0.034664] (2018-10-06,14.770459) [0.034664] (2018-10-06,14.885229) [0.034664] (2018-10-06,15.000000) [0.034664] (2018-10-06,21.000000) [0.034664] (2018-10-06,15.000000) [0.034664] (2018-10-06,13.000000) [0.322510] (2018-10-06,21.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,13.000000) [0.131857] (2018-10-06,13.000000) [0.131857] (2018-10-06,21.000000) [0.131857] (2018-10-06,15.000000) [0.131857] (2018-10-06,15.000000) [0.131857] (2018-10-06,13.000000) [0.131309] (2018-10-06,21.000000) [0.131309] (2018-10-06,15.000000) [0.131309] (2018-10-06,13.000000) [0.018707] (2018-10-06,21.000000) [0.018707] (2018-10-06,15.000000) [0.018707] (2018-10-07,13.000000) [0.038138] (2018-10-07,21.000000) [0.038138] (2018-10-07,15.000000) [0.038138] (2018-10-07,15.000000) [0.038138] (2018-10-07,15.000000) [0.038138] (2018-10-07,13.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,21.000000) [0.055296] (2018-10-07,15.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,21.000000) [0.014145] (2018-10-07,21.000000) [0.014145] (2018-10-07,21.000000) [0.041657] (2018-10-07,21.000000) [0.041657] (2018-10-07,21.000000) [0.020220] (2018-10-07,21.000000) [0.020220] (2018-10-07,13.000000) [0.923839] (2018-10-07,21.000000) [0.923839] (2018-10-07,15.000000) [0.923839] (2018-10-07,21.000000) [0.070969] (2018-10-07,10.110000) [0.070969] (2018-10-07,21.000000) [0.569570] (2018-10-07,10.220000) [0.569570] (2018-10-07,21.000000) [0.569570] (2018-10-07,10.220000) [0.569570] (2018-10-08,21.000000) [0.014137] (2018-10-08,21.000000) [0.014137] (2018-10-08,12.501000) [0.013708] (2018-10-08,0.000000) [0.013708] (2018-10-08,13.250000) [0.072328] (2018-10-08,6.442438) [0.072328] (2018-10-08,13.000000) [0.014584] (2018-10-08,21.000000) [0.014584] (2018-10-08,15.000000) [0.014584] (2018-10-08,13.250000) [0.107311] (2018-10-08,11.785246) [0.107311] (2018-10-08,0.000000) [0.107311] (2018-10-08,13.250000) [0.107311] (2018-10-08,67.139423) [0.107311] (2018-10-08,0.000000) [0.011194] (2018-10-08,21.000000) [0.051459] (2018-10-08,21.000000) [0.051459] (2018-10-08,13.000000) [0.040072] (2018-10-08,21.000000) [0.040072] (2018-10-08,15.000000) [0.040072] (2018-10-08,13.000000) [0.009669] (2018-10-08,15.000000) [0.009669] (2018-10-08,18.913951) [0.012796] (2018-10-08,21.000000) [0.012796] (2018-10-08,15.000000) [0.012796] (2018-10-08,21.000000) [0.381961] (2018-10-08,21.000000) [0.381961] (2018-10-08,0.000000) [0.021893] (2018-10-08,13.250000) [0.021893] (2018-10-08,21.000000) [0.164713] (2018-10-08,13.000000) [0.164713] (2018-10-08,70.000000) [0.027152] (2018-10-09,21.000000) [0.018542] (2018-10-09,21.000000) [0.018542] (2018-10-09,21.000000) [0.018542] (2018-10-09,21.000000) [0.062942] (2018-10-09,21.000000) [0.062942] (2018-10-09,21.000000) [0.029854] (2018-10-09,21.000000) [0.029854] (2018-10-09,13.250000) [0.093187] (2018-10-09,0.000000) [0.093187] (2018-10-09,37.035579) [0.093187] (2018-10-09,20.378753) [0.029725] (2018-10-09,21.000000) [0.029725] (2018-10-09,17.272592) [0.029725] (2018-10-09,0.000000) [0.751507] (2018-10-09,0.000000) [0.026557] (2018-10-10,17.787611) [0.040687] (2018-10-10,15.000000) [0.040687] (2018-10-10,10.000220) [0.040687] (2018-10-10,21.000000) [0.040687] (2018-10-10,21.000000) [0.040687] (2018-10-10,21.000000) [0.040687] (2018-10-10,21.000000) [0.040687] (2018-10-10,21.000000) [0.040682] (2018-10-10,10.000000) [0.040682] (2018-10-10,20.879241) [0.040386] (2018-10-10,18.023186) [0.040386] (2018-10-10,21.000000) [0.040386] (2018-10-10,13.000000) [0.040386] (2018-10-10,0.000000) [0.054219] (2018-10-10,19.511593) [0.011733] (2018-10-10,21.000000) [0.011733] (2018-10-10,21.000000) [0.015667] (2018-10-10,21.000000) [0.015667] (2018-10-10,21.000000) [0.004194] (2018-10-10,13.000000) [0.004194] (2018-10-10,21.000000) [0.005657] (2018-10-10,21.000000) [0.005657] (2018-10-10,21.000000) [0.014742] (2018-10-10,21.000000) [0.014742] (2018-10-10,21.000000) [0.044551] (2018-10-10,21.000000) [0.044551] (2018-10-10,21.000000) [0.035016] (2018-10-10,10.220000) [0.035016] (2018-10-10,21.000000) [0.003327] (2018-10-10,20.758483) [0.003327] (2018-10-10,21.000000) [0.003327] (2018-10-10,21.000000) [0.037177] (2018-10-10,21.000000) [0.037177] (2018-10-10,21.000000) [0.037177] (2018-10-10,21.000000) [0.051562] (2018-10-10,13.000000) [0.051562] (2018-10-10,21.000000) [0.016687] (2018-10-10,21.000000) [0.016687] (2018-10-10,21.000000) [0.093294] (2018-10-10,21.000000) [0.093294] (2018-10-10,21.000000) [0.026156] (2018-10-10,21.000000) [0.026156] (2018-10-10,21.000000) [0.048547] (2018-10-10,10.220000) [0.048547] (2018-10-10,21.000000) [0.053799] (2018-10-10,21.000000) [0.053799] (2018-10-10,21.000000) [0.122228] (2018-10-10,21.000000) [0.122228] (2018-10-10,21.000000) [0.021420] (2018-10-10,21.000000) [0.021420] (2018-10-10,21.000000) [0.018677] (2018-10-10,21.000000) [0.018677] (2018-10-10,21.000000) [0.018696] (2018-10-10,21.000000) [0.018696] (2018-10-10,20.758483) [0.029024] (2018-10-10,20.758483) [0.029024] (2018-10-10,20.517448) [0.029024] (2018-10-10,21.000000) [0.029024] (2018-10-10,20.758483) [0.029024] (2018-10-10,21.000000) [0.003048] (2018-10-10,7.079646) [0.003048] (2018-10-10,21.000000) [0.081065] (2018-10-10,17.787611) [0.081065] (2018-10-10,21.000000) [0.062410] (2018-10-10,15.000000) [0.062410] (2018-10-10,21.000000) [0.062410] (2018-10-10,21.000000) [0.082060] (2018-10-10,21.000000) [0.082060] (2018-10-10,21.000000) [0.016742] (2018-10-10,21.000000) [0.016742] (2018-10-10,15.970609) [0.016742] (2018-10-10,21.000000) [0.015512] (2018-10-10,21.000000) [0.015512] (2018-10-10,13.000000) [0.014752] (2018-10-10,15.000000) [0.014752] (2018-10-10,15.000000) [0.014842] (2018-10-10,21.000000) [0.014842] (2018-10-10,21.000000) [0.014842] (2018-10-10,21.000000) [0.014842] (2018-10-10,15.500000) [0.014842] (2018-10-10,21.000000) [0.014665] (2018-10-10,21.000000) [0.014665] (2018-10-10,15.970609) [0.014665] (2018-10-10,21.000000) [0.014842] (2018-10-10,21.000000) [0.014842] (2018-10-10,19.659821) [0.014842] (2018-10-10,21.000000) [0.029185] (2018-10-10,16.715977) [0.029185] (2018-10-10,10.220000) [0.029185] (2018-10-10,21.000000) [0.055557] (2018-10-10,21.000000) [0.055557] (2018-10-10,21.000000) [0.042885] (2018-10-10,10.220000) [0.042885] (2018-10-10,21.000000) [0.042885] (2018-10-10,13.830253) [0.044226] (2018-10-10,15.000000) [0.044226] (2018-10-10,10.220000) [0.044226] (2018-10-10,21.000000) [0.011320] (2018-10-10,21.000000) [0.011320] (2018-10-10,20.378753) [0.029163] (2018-10-10,21.000000) [0.029163] (2018-10-10,16.219943) [0.029163] (2018-10-10,15.000000) [0.029163] (2018-10-10,16.219943) [0.029163] (2018-10-10,13.000000) [0.028686] (2018-10-10,15.000000) [0.028686] (2018-10-10,21.000000) [0.028686] (2018-10-10,21.000000) [0.015592] (2018-10-10,21.000000) [0.015592] (2018-10-10,13.000000) [0.017510] (2018-10-10,21.000000) [0.017510] (2018-10-10,15.000000) [0.017510] (2018-10-10,16.341846) [0.015592] (2018-10-10,21.000000) [0.015592] (2018-10-10,15.000000) [0.015592] (2018-10-10,16.378753) [0.015582] (2018-10-10,21.000000) [0.015582] (2018-10-10,15.000000) [0.015582] (2018-10-10,13.000000) [0.014582] (2018-10-10,15.487244) [0.014582] (2018-10-10,15.000000) [0.014582] (2018-10-10,21.000000) [0.014880] (2018-10-10,21.000000) [0.014880] (2018-10-10,21.000000) [0.014724] (2018-10-10,21.000000) [0.014724] (2018-10-10,21.000000) [0.014770] (2018-10-10,21.000000) [0.014770] (2018-10-10,21.000000) [0.013344] (2018-10-10,21.000000) [0.013344] (2018-10-10,13.000000) [0.022758] (2018-10-10,21.000000) [0.022758] (2018-10-10,15.000000) [0.022758] (2018-10-10,21.000000) [0.092425] (2018-10-10,10.000000) [0.092425] (2018-10-10,21.000000) [0.092425] (2018-10-10,21.000000) [0.080936] (2018-10-10,21.000000) [0.080936] (2018-10-10,20.879241) [0.081819] (2018-10-10,21.000000) [0.081819] (2018-10-10,21.000000) [0.081819] (2018-10-10,15.741506) [0.081819] (2018-10-10,20.758483) [0.022407] (2018-10-10,20.758483) [0.022407] (2018-10-10,21.000000) [0.022407] (2018-10-10,13.293110) [0.006392] (2018-10-10,21.000000) [0.006392] (2018-10-10,15.000000) [0.006392] (2018-10-10,21.000000) [0.028821] (2018-10-10,21.000000) [0.028821] (2018-10-10,13.000000) [0.040986] (2018-10-10,21.000000) [0.040986] (2018-10-10,15.000000) [0.040986] (2018-10-10,14.660506) [0.025141] (2018-10-10,21.000000) [0.025141] (2018-10-10,15.000000) [0.025141] (2018-10-10,21.000000) [0.033856] (2018-10-10,21.000000) [0.033856] (2018-10-10,21.000000) [0.054428] (2018-10-10,21.000000) [0.054428] (2018-10-10,21.000000) [0.106283] (2018-10-10,21.000000) [0.106283] (2018-10-10,21.000000) [1.379518] (2018-10-10,10.220000) [1.379518] (2018-10-11,21.000000) [0.012970] (2018-10-11,15.500000) [0.012970] (2018-10-11,21.000000) [0.025294] (2018-10-11,21.000000) [0.025294] (2018-10-11,21.000000) [0.046995] (2018-10-11,21.000000) [0.046995] (2018-10-12,21.000000) [0.027474] (2018-10-12,21.000000) [0.027474] (2018-10-12,21.000000) [0.030068] (2018-10-12,21.000000) [0.030068] (2018-10-12,0.000000) [0.062600] (2018-10-12,18.023186) [0.122390] (2018-10-12,15.000000) [0.122390] (2018-10-12,21.000000) [0.122390] (2018-10-12,0.000000) [0.031409] (2018-10-12,20.000000) [0.031409] (2018-10-12,21.000000) [0.021843] (2018-10-12,13.000000) [0.021843] (2018-10-12,15.000000) [0.021843] (2018-10-12,21.000000) [0.032774] (2018-10-12,10.039823) [0.032774] (2018-10-12,15.000000) [0.032774] (2018-10-12,21.000000) [0.017352] (2018-10-12,21.000000) [0.017352] (2018-10-12,21.000000) [0.017429] (2018-10-12,21.000000) [0.017429] (2018-10-12,21.000000) [0.014719] (2018-10-12,4.881423) [0.014719] (2018-10-12,21.000000) [0.032720] (2018-10-12,21.000000) [0.032720] (2018-10-12,21.000000) [0.014737] (2018-10-12,21.000000) [0.014737] (2018-10-12,21.000000) [0.022048] (2018-10-12,21.000000) [0.022048] (2018-10-12,19.511593) [0.022048] (2018-10-12,2.727273) [0.022048] (2018-10-12,6.710840) [0.022048] (2018-10-12,7.876069) [0.022048] (2018-10-12,10.023117) [0.022048] (2018-10-12,21.000000) [0.022048] (2018-10-12,15.000000) [0.022048] (2018-10-12,21.000000) [0.022048] (2018-10-12,15.000000) [0.022048] (2018-10-12,15.000000) [0.011054] (2018-10-12,21.000000) [0.011054] (2018-10-12,13.000000) [0.011054] (2018-10-12,21.000000) [0.014779] (2018-10-12,21.000000) [0.014779] (2018-10-12,15.000000) [0.014779] (2018-10-12,20.758483) [0.025862] (2018-10-12,21.000000) [0.025862] (2018-10-12,21.000000) [0.025862] (2018-10-12,21.000000) [0.014859] (2018-10-12,21.000000) [0.014859] (2018-10-12,18.857989) [0.014859] (2018-10-12,21.000000) [0.015828] (2018-10-12,21.000000) [0.015828] (2018-10-12,21.000000) [0.016948] (2018-10-12,21.000000) [0.016948] (2018-10-12,21.000000) [0.023262] (2018-10-12,21.000000) [0.023262] (2018-10-12,21.000000) [0.411017] (2018-10-12,21.000000) [0.411017] (2018-10-12,15.000000) [0.411017] (2018-10-12,13.000000) [0.013517] (2018-10-12,13.000000) [0.013517] (2018-10-12,15.000000) [0.013517] (2018-10-12,15.000000) [0.013517] (2018-10-12,21.000000) [0.033766] (2018-10-12,13.000000) [0.033766] (2018-10-12,21.000000) [0.033766] (2018-10-12,21.000000) [0.008036] (2018-10-12,21.000000) [0.008036] (2018-10-12,21.000000) [0.008036] (2018-10-12,15.741506) [0.008036] (2018-10-13,21.000000) [0.199999] (2018-10-13,21.000000) [0.199999] (2018-10-13,21.000000) [0.199999] (2018-10-13,15.000000) [0.015235] (2018-10-13,13.000000) [0.015235] (2018-10-13,21.000000) [0.015235] (2018-10-13,15.000000) [0.015235] (2018-10-13,15.000000) [0.012318] (2018-10-13,14.770459) [0.012318] (2018-10-13,15.000000) [0.012318] (2018-10-13,13.000000) [0.503413] (2018-10-13,21.000000) [0.503413] (2018-10-13,15.000000) [0.503413] (2018-10-13,15.000000) [0.206292] (2018-10-13,18.000000) [0.206292] (2018-10-13,15.000000) [0.206292] (2018-10-13,13.000000) [0.206658] (2018-10-13,10.000000) [0.206658] (2018-10-13,15.000000) [0.206658] (2018-10-13,13.000000) [0.110539] (2018-10-13,21.000000) [0.110539] (2018-10-13,15.000000) [0.110539] (2018-10-13,15.000000) [0.012889] (2018-10-13,15.000000) [0.012889] (2018-10-13,21.000000) [0.066611] (2018-10-13,21.000000) [0.066611] (2018-10-13,21.000000) [0.013293] (2018-10-13,21.000000) [0.013293] (2018-10-13,15.000000) [0.062878] (2018-10-13,15.000000) [0.062878] (2018-10-13,15.000000) [0.062890] (2018-10-13,15.000000) [0.062890] (2018-10-13,13.000000) [0.014229] (2018-10-13,15.000000) [0.014229] (2018-10-13,15.000000) [0.074338] (2018-10-13,15.000000) [0.074338] (2018-10-13,5.383529) [0.113222] (2018-10-13,0.000000) [0.113222] (2018-10-14,39.642857) [0.011702] (2018-10-14,13.000000) [0.011702] (2018-10-14,15.000000) [0.011702] (2018-10-14,13.000000) [0.079995] (2018-10-14,0.100000) [0.079995] (2018-10-14,13.000000) [0.079995] (2018-10-14,13.000000) [0.013559] (2018-10-14,15.000000) [0.013559] (2018-10-14,14.880265) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,14.880265) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,14.880265) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,14.880265) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,15.000000) [0.011833] (2018-10-14,15.000000) [0.011833] (2018-10-14,14.000000) [0.075009] (2018-10-14,14.000000) [0.075009] (2018-10-14,2.596587) [0.075009] (2018-10-15,15.000000) [0.014248] (2018-10-15,15.000000) [0.014248] (2018-10-15,15.000000) [0.038744] (2018-10-15,15.000000) [0.038744] (2018-10-15,15.000000) [0.043951] (2018-10-15,15.000000) [0.043951] (2018-10-15,15.000000) [0.013450] (2018-10-15,15.000000) [0.013450] (2018-10-15,15.000000) [0.040409] (2018-10-15,15.000000) [0.040409] (2018-10-15,52.380952) [0.020157] (2018-10-15,16.034570) [0.020440] (2018-10-15,13.880265) [0.020440] (2018-10-15,15.000000) [0.020440] (2018-10-15,15.000000) [0.031920] (2018-10-15,15.000000) [0.031920] (2018-10-15,13.146555) [0.541994] (2018-10-15,15.000000) [0.541994] (2018-10-15,15.000000) [0.040471] (2018-10-15,15.000000) [0.040471] (2018-10-15,7.000000) [0.188800] (2018-10-16,15.000000) [0.018150] (2018-10-16,15.000000) [0.018150] (2018-10-16,13.000000) [0.016815] (2018-10-16,15.000000) [0.016815] (2018-10-16,13.000000) [0.014888] (2018-10-16,15.000000) [0.014888] (2018-10-16,2.500000) [0.014888] (2018-10-16,15.000000) [0.097309] (2018-10-16,15.000000) [0.097309] (2018-10-16,15.000000) [0.097309] (2018-10-16,13.000000) [0.017898] (2018-10-16,15.000000) [0.017898] (2018-10-16,14.880265) [0.027747] (2018-10-16,15.000000) [0.027747] (2018-10-16,15.000000) [0.011457] (2018-10-16,15.000000) [0.011457] (2018-10-16,14.000000) [0.082736] (2018-10-16,0.076855) [0.082736] (2018-10-16,13.000000) [0.014719] (2018-10-16,15.000000) [0.014719] (2018-10-16,15.000000) [0.099962] (2018-10-16,15.000000) [0.099962] (2018-10-16,14.770459) [0.099962] (2018-10-16,14.760530) [0.023583] (2018-10-16,15.000000) [0.023583] (2018-10-16,13.000000) [0.013202] (2018-10-16,15.000000) [0.013202] (2018-10-16,13.000000) [0.012452] (2018-10-16,15.000000) [0.012452] (2018-10-17,15.000000) [0.011920] (2018-10-17,15.000000) [0.011920] (2018-10-17,14.770459) [0.029805] (2018-10-17,15.000000) [0.029805] (2018-10-17,15.000000) [0.029805] (2018-10-17,15.000000) [0.030914] (2018-10-17,15.000000) [0.030914] (2018-10-17,15.000000) [0.327103] (2018-10-17,15.000000) [0.327103] (2018-10-17,59.371544) [0.136729] (2018-10-17,0.000000) [0.136729] (2018-10-17,6.625000) [0.136729] (2018-10-18,15.000000) [0.015517] (2018-10-18,15.000000) [0.015517] (2018-10-18,15.000000) [0.011894] (2018-10-18,15.000000) [0.011894] (2018-10-18,15.000000) [0.011894] (2018-10-18,15.000000) [0.009933] (2018-10-18,15.000000) [0.009933] (2018-10-18,15.000000) [0.009933] (2018-10-18,15.000000) [0.005088] (2018-10-18,15.000000) [0.005088] (2018-10-18,15.000000) [0.005088] (2018-10-18,15.000000) [0.005088] (2018-10-18,15.000000) [0.011979] (2018-10-18,15.000000) [0.011979] (2018-10-18,15.000000) [0.018510] (2018-10-18,15.000000) [0.018510] (2018-10-18,24.171472) [0.203550] (2018-10-18,15.000000) [0.203550] (2018-10-18,15.000000) [0.203550] (2018-10-18,15.000000) [0.011173] (2018-10-18,15.000000) [0.011173] (2018-10-18,15.000000) [0.011173] (2018-10-18,15.000000) [0.009935] (2018-10-18,15.000000) [0.009935] (2018-10-18,15.000000) [0.009935] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.009973] (2018-10-18,15.000000) [0.009973] (2018-10-18,15.000000) [0.009973] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.011223] (2018-10-18,15.000000) [0.011223] (2018-10-18,15.000000) [0.011223] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.018896] (2018-10-18,15.000000) [0.018896] (2018-10-18,15.230000) [0.018896] (2018-10-18,15.000000) [0.018896] (2018-10-18,15.230000) [0.018896] (2018-10-18,15.000000) [0.018896] (2018-10-18,15.230000) [0.018896] (2018-10-18,15.000000) [0.011892] (2018-10-18,15.000000) [0.011892] (2018-10-18,15.000000) [0.026813] (2018-10-18,15.000000) [0.026813] (2018-10-18,15.000000) [0.010404] (2018-10-18,15.000000) [0.010404] (2018-10-18,13.250000) [0.032000] (2018-10-18,31.647436) [0.032000] (2018-10-18,20.000000) [0.032000] (2018-10-18,0.000000) [0.277600] (2018-10-19,15.000000) [0.011976] (2018-10-19,15.000000) [0.011976] (2018-10-19,15.000000) [0.021127] (2018-10-19,15.000000) [0.021127] (2018-10-19,15.000000) [0.021127] (2018-10-19,13.979312) [0.015049] (2018-10-19,15.000000) [0.015049] (2018-10-19,15.000000) [0.015049] (2018-10-19,15.000000) [0.053103] (2018-10-19,15.000000) [0.053103] (2018-10-19,15.000000) [0.010858] (2018-10-19,15.000000) [0.010858] (2018-10-19,13.000000) [0.019901] (2018-10-19,15.000000) [0.019901] (2018-10-19,15.000000) [0.013975] (2018-10-19,15.000000) [0.013975] (2018-10-19,13.000000) [0.019001] (2018-10-19,15.000000) [0.019001] (2018-10-20,15.000000) [0.019962] (2018-10-20,15.000000) [0.019962] (2018-10-20,13.000000) [0.038830] (2018-10-20,15.000000) [0.038830] (2018-10-20,15.000000) [0.038830] (2018-10-20,15.000000) [0.038830] (2018-10-20,13.000000) [0.038830] (2018-10-20,15.000000) [0.018045] (2018-10-20,15.000000) [0.018045] (2018-10-20,15.000000) [0.010481] (2018-10-20,15.000000) [0.010481] (2018-10-20,0.000000) [3.260975] (2018-10-20,13.250000) [0.048977] (2018-10-20,20.000000) [0.048977] (2018-10-20,13.000000) [0.018263] (2018-10-20,15.000000) [0.018263] (2018-10-20,15.000000) [0.018457] (2018-10-20,13.146555) [0.018457] (2018-10-20,0.000000) [0.018457] (2018-10-20,0.000000) [0.016439] (2018-10-20,13.187175) [0.016439] (2018-10-20,35.140000) [0.016439] (2018-10-20,13.000000) [0.036914] (2018-10-20,15.000000) [0.036914] (2018-10-20,15.000000) [0.036914] (2018-10-20,15.000000) [0.036914] (2018-10-20,13.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-21,15.000000) [0.148666] (2018-10-21,15.000000) [0.148666] (2018-10-21,62.286496) [0.117007] (2018-10-21,14.608378) [0.117007] (2018-10-21,15.000000) [0.024815] (2018-10-21,15.000000) [0.024815] (2018-10-21,15.000000) [0.024815] (2018-10-21,15.000000) [0.025169] (2018-10-21,15.000000) [0.025169] (2018-10-21,42.739888) [0.208341] (2018-10-21,13.000000) [0.025491] (2018-10-21,15.000000) [0.025491] (2018-10-21,15.000000) [0.025491] (2018-10-21,16.406275) [0.036207] (2018-10-21,20.000000) [0.036207] (2018-10-21,15.000000) [0.042479] (2018-10-21,15.000000) [0.042479] (2018-10-21,15.000000) [0.042479] (2018-10-21,13.000000) [0.047127] (2018-10-21,14.000000) [0.047127] (2018-10-21,15.000000) [0.047127] (2018-10-21,15.000000) [0.047127] (2018-10-21,15.000000) [0.047127] (2018-10-21,15.000000) [0.047127] (2018-10-21,62.698948) [0.250046] (2018-10-21,0.000000) [0.250046] (2018-10-21,14.770459) [0.030277] (2018-10-21,15.000000) [0.030277] (2018-10-21,15.000000) [0.030277] (2018-10-21,15.000000) [0.052345] (2018-10-21,15.000000) [0.052345] (2018-10-22,13.069227) [0.026879] (2018-10-22,15.000000) [0.026879] (2018-10-22,15.000000) [0.026879] (2018-10-22,0.000000) [0.388930] (2018-10-22,15.000000) [0.014534] (2018-10-22,15.000000) [0.014534] (2018-10-22,15.000000) [0.014534] (2018-10-22,15.000000) [0.014034] (2018-10-22,15.000000) [0.014034] (2018-10-22,15.000000) [0.014034] (2018-10-22,15.000000) [0.067763] (2018-10-22,15.000000) [0.067763] (2018-10-22,15.000000) [0.045764] (2018-10-22,15.000000) [0.045764] (2018-10-22,8.759739) [0.021396] (2018-10-22,33.666666) [0.021396] (2018-10-22,15.000000) [0.027667] (2018-10-22,15.000000) [0.027667] (2018-10-22,15.000000) [0.014305] (2018-10-22,15.000000) [0.014305] (2018-10-22,15.000000) [0.017202] (2018-10-22,15.000000) [0.017202] (2018-10-22,15.000000) [0.020069] (2018-10-22,15.000000) [0.020069] (2018-10-22,15.000000) [0.014385] (2018-10-22,15.000000) [0.014385] (2018-10-22,15.000000) [0.148494] (2018-10-22,15.000000) [0.148494] (2018-10-22,15.000000) [0.148494] (2018-10-22,15.000000) [0.007509] (2018-10-22,15.000000) [0.007509] (2018-10-22,15.000000) [0.075611] (2018-10-22,15.000000) [0.075611] (2018-10-22,15.000000) [0.075611] (2018-10-22,15.000000) [0.083486] (2018-10-22,15.000000) [0.083486] (2018-10-22,14.885229) [0.083486] (2018-10-22,15.000000) [0.083486] (2018-10-22,15.000000) [0.083486] (2018-10-22,15.000000) [0.083486] (2018-10-22,13.000000) [0.083486] (2018-10-22,15.000000) [0.058573] (2018-10-22,15.000000) [0.058573] (2018-10-22,15.000000) [0.058573] (2018-10-22,15.000000) [0.019362] (2018-10-22,15.000000) [0.019362] (2018-10-22,15.000000) [0.019362] (2018-10-22,15.000000) [0.019362] (2018-10-23,24.274134) [0.083126] (2018-10-23,0.000000) [0.083126] (2018-10-23,14.096880) [0.026741] (2018-10-23,15.000000) [0.026741] (2018-10-23,15.000000) [0.026741] (2018-10-23,2.243643) [0.455862] (2018-10-23,14.000000) [1.118934] (2018-10-23,4.208000) [1.118934] (2018-10-23,13.146555) [0.016086] (2018-10-23,15.000000) [0.016086] (2018-10-23,15.000000) [0.012714] (2018-10-23,15.000000) [0.012714] (2018-10-23,15.000000) [0.012714] (2018-10-23,13.000000) [0.031500] (2018-10-23,15.000000) [0.031500] (2018-10-23,15.000000) [0.031500] (2018-10-23,15.000000) [0.031480] (2018-10-23,15.000000) [0.031480] (2018-10-23,15.000000) [0.031480] (2018-10-23,62.698948) [0.126360] (2018-10-23,0.000000) [0.126360] (2018-10-23,15.000000) [0.033000] (2018-10-23,15.000000) [0.033000] (2018-10-23,15.000000) [0.033000] (2018-10-23,15.000000) [0.015885] (2018-10-23,15.000000) [0.015885] (2018-10-23,15.000000) [0.015885] (2018-10-23,15.115000) [0.015885] (2018-10-23,13.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,13.000000) [0.352649] (2018-10-23,15.000000) [0.352649] (2018-10-23,15.000000) [0.352649] (2018-10-23,15.000000) [0.352649] (2018-10-23,15.000000) [0.352649] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.015986] (2018-10-23,15.000000) [0.015986] (2018-10-23,15.000000) [0.027486] (2018-10-23,15.000000) [0.027486] (2018-10-23,15.000000) [0.027486] (2018-10-23,15.000000) [0.044812] (2018-10-23,15.000000) [0.044812] (2018-10-23,15.000000) [0.044812] (2018-10-24,62.698948) [0.136640] (2018-10-24,0.000000) [0.136640] (2018-10-24,30.833334) [0.136640] (2018-10-24,30.833334) [0.136640] (2018-10-24,15.000000) [0.037075] (2018-10-24,15.000000) [0.037075] (2018-10-24,15.000000) [0.036974] (2018-10-24,15.000000) [0.036974] (2018-10-24,13.000000) [0.019986] (2018-10-24,15.000000) [0.019986] (2018-10-24,15.230000) [0.019986] (2018-10-24,62.698948) [0.214500] (2018-10-24,0.000000) [0.214500] (2018-10-24,60.581325) [0.214500] (2018-10-25,15.000000) [0.017994] (2018-10-25,15.000000) [0.017994] (2018-10-25,37.350000) [0.021394] (2018-10-25,13.250000) [0.021394] (2018-10-25,37.350000) [0.021394] (2018-10-25,15.000000) [0.020509] (2018-10-25,15.000000) [0.020509] (2018-10-25,15.000000) [0.020509] (2018-10-25,13.250000) [0.019531] (2018-10-25,68.316832) [0.019531] (2018-10-25,68.316832) [0.019531] (2018-10-25,55.397895) [0.121153] (2018-10-25,4.208000) [0.121153] (2018-10-25,15.000000) [0.046914] (2018-10-25,15.000000) [0.046914] (2018-10-25,25.156972) [0.134182] (2018-10-25,0.000000) [0.134182] (2018-10-25,59.561403) [0.134182] (2018-10-25,14.000000) [0.014381] (2018-10-25,14.031785) [0.014381] (2018-10-25,15.000000) [0.014381] (2018-10-25,15.000000) [0.014381] (2018-10-25,13.033488) [0.012273] (2018-10-25,15.000000) [0.012273] (2018-10-25,15.000000) [0.012273] (2018-10-25,15.000000) [0.008180] (2018-10-25,15.000000) [0.008180] (2018-10-25,62.698948) [0.123913] (2018-10-25,0.000000) [0.123913] (2018-10-25,30.833334) [0.123913] (2018-10-25,41.666667) [0.123913] (2018-10-25,15.000000) [0.041041] (2018-10-25,15.000000) [0.041041] (2018-10-25,15.000000) [0.041041] (2018-10-25,62.698948) [0.210106] (2018-10-25,0.000000) [0.210106] (2018-10-25,30.132013) [0.210106] (2018-10-25,30.132013) [0.210106] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,62.714176) [0.184056] (2018-10-25,62.529287) [0.184056] (2018-10-25,0.000000) [0.184056] (2018-10-26,15.000000) [0.015410] (2018-10-26,15.000000) [0.015410] (2018-10-26,15.000000) [0.015410] (2018-10-26,15.000000) [0.029360] (2018-10-26,15.000000) [0.029360] (2018-10-26,34.698948) [0.118759] (2018-10-26,0.000000) [0.118759] (2018-10-26,15.000000) [0.023540] (2018-10-26,15.000000) [0.023540] (2018-10-26,15.000000) [0.023540] (2018-10-26,70.000000) [0.146440] (2018-10-26,6.583593) [0.146440] (2018-10-26,20.000000) [0.146440] (2018-10-26,20.000000) [0.146440] (2018-10-26,62.698948) [0.175920] (2018-10-26,30.833334) [0.175920] (2018-10-26,0.000000) [0.175920] (2018-10-26,41.950000) [0.175920] (2018-10-26,15.000000) [0.029112] (2018-10-26,15.000000) [0.029112] (2018-10-26,15.000000) [0.029112] (2018-10-26,0.000000) [0.427227] (2018-10-26,15.000000) [0.047689] (2018-10-26,15.000000) [0.047689] (2018-10-26,15.000000) [0.047689] (2018-10-26,62.698948) [0.172624] (2018-10-26,0.000000) [0.172624] (2018-10-26,15.000000) [0.021482] (2018-10-26,15.000000) [0.021482] (2018-10-26,15.000000) [0.013268] (2018-10-26,15.000000) [0.013268] (2018-10-26,15.000000) [0.013268] (2018-10-26,15.000000) [0.010638] (2018-10-26,15.000000) [0.010638] (2018-10-26,15.000000) [0.010638] (2018-10-26,1.104660) [0.108088] (2018-10-26,14.000000) [0.108088] (2018-10-26,32.783729) [0.108088] (2018-10-27,0.000000) [0.023792] (2018-10-27,15.000000) [0.054026] (2018-10-27,15.000000) [0.054026] (2018-10-27,62.698948) [0.160189] (2018-10-27,0.000000) [0.160189] (2018-10-27,14.000000) [0.082734] (2018-10-27,2.104000) [0.082734] (2018-10-27,0.000000) [0.016049] (2018-10-27,20.000000) [0.016049] (2018-10-27,19.939154) [0.016049] (2018-10-27,15.000000) [0.064129] (2018-10-27,15.000000) [0.064129] (2018-10-27,15.000000) [0.064129] (2018-10-27,15.000000) [0.151988] (2018-10-27,15.000000) [0.151988] (2018-10-27,15.000000) [0.151988] (2018-10-27,15.000000) [0.151988] (2018-10-27,19.579277) [0.013783] (2018-10-27,19.579277) [0.013783] (2018-10-27,21.448509) [0.013783] (2018-10-27,0.170597) [0.013783] (2018-10-27,21.657877) [0.013783] (2018-10-27,15.000000) [0.008588] (2018-10-27,15.000000) [0.008588] (2018-10-27,15.000000) [0.330324] (2018-10-27,15.000000) [0.330324] (2018-10-27,15.000000) [0.330324] (2018-10-27,15.000000) [0.330324] (2018-10-27,13.250000) [0.011208] (2018-10-27,0.000000) [0.011208] (2018-10-28,57.330018) [1.223745] (2018-10-28,0.000000) [1.223745] (2018-10-28,15.000000) [0.029561] (2018-10-28,15.000000) [0.029561] (2018-10-28,33.631955) [0.080022] (2018-10-28,0.000000) [0.080022] (2018-10-28,25.464370) [0.214573] (2018-10-28,0.000000) [0.214573] (2018-10-29,15.000000) [0.010382] (2018-10-29,15.000000) [0.010382] (2018-10-29,15.000000) [0.118656] (2018-10-29,15.000000) [0.118656] (2018-10-29,13.250000) [0.516641] (2018-10-29,0.168715) [0.516641] (2018-10-29,15.000000) [0.012900] (2018-10-29,15.000000) [0.012900] (2018-10-29,15.000000) [0.012900] (2018-10-29,0.000000) [0.027296] (2018-10-29,13.250000) [0.027296] (2018-10-29,30.833334) [0.027296] (2018-10-29,40.144217) [0.027296] (2018-10-29,13.250000) [0.178773] (2018-10-29,13.250000) [0.178773] (2018-10-29,0.000000) [0.031713] (2018-10-29,13.250000) [0.031713] (2018-10-29,0.000000) [0.031713] (2018-10-29,45.249495) [0.031713] (2018-10-29,15.000000) [0.010744] (2018-10-29,15.000000) [0.010744] (2018-10-29,13.250000) [0.049197] (2018-10-29,0.000000) [0.049197] (2018-10-29,28.255625) [0.049197] (2018-10-29,15.000000) [0.015000] (2018-10-29,15.000000) [0.015000] (2018-10-29,12.600000) [0.083949] (2018-10-29,15.000000) [0.083949] (2018-10-29,13.250000) [0.131544] (2018-10-29,0.000000) [0.131544] (2018-10-29,13.343046) [0.131544] (2018-10-29,13.296523) [0.131544] (2018-10-29,12.461644) [0.131544] (2018-10-29,13.250000) [0.131544] (2018-10-30,15.000000) [0.016516] (2018-10-30,15.000000) [0.016516] (2018-10-30,15.000000) [0.016516] (2018-10-30,10.124823) [0.017809] (2018-10-30,15.000000) [0.017809] (2018-10-30,10.124823) [0.017809] (2018-10-30,15.000000) [0.017809] (2018-10-30,15.000000) [0.016809] (2018-10-30,15.000000) [0.016809] (2018-10-30,15.000000) [0.016809] (2018-10-30,69.969749) [0.892192] (2018-10-30,0.229313) [0.892192] (2018-10-30,13.250000) [0.197438] (2018-10-30,0.000000) [0.197438] (2018-10-30,46.148691) [0.197438] (2018-10-30,46.166337) [0.197438] (2018-10-30,0.000000) [0.034129] (2018-10-30,68.440744) [0.034129] (2018-10-30,69.158416) [0.034129] (2018-10-30,12.600000) [0.075200] (2018-10-30,4.208000) [0.075200] (2018-10-30,30.073491) [0.075200] (2018-10-30,20.000000) [0.075200] (2018-10-30,13.388587) [0.451200] (2018-10-30,69.726450) [0.451200] (2018-10-30,0.577921) [0.451200] (2018-10-30,31.966192) [0.756240] (2018-10-30,6.611590) [0.756240] (2018-10-30,31.637779) [0.756240] (2018-10-30,43.728589) [0.756240] (2018-10-30,12.600000) [0.756240] (2018-10-30,69.467933) [0.062640] (2018-10-30,0.000000) [0.062640] (2018-10-30,70.000000) [0.062640] (2018-10-30,24.651503) [0.065424] (2018-10-30,4.208000) [0.065424] (2018-10-30,13.250000) [0.137610] (2018-10-30,0.000000) [0.137610] (2018-10-30,15.000000) [0.019872] (2018-10-30,15.000000) [0.019872] (2018-10-30,15.000000) [0.018144] (2018-10-30,15.000000) [0.018144] (2018-10-30,0.000000) [0.041161] (2018-10-30,70.000000) [0.041161] (2018-10-30,69.826729) [0.041161] (2018-10-30,0.000000) [0.050603] (2018-10-30,69.764614) [0.050603] (2018-10-30,70.000000) [0.050603] (2018-10-31,13.250000) [0.156791] (2018-10-31,0.000000) [0.156791] (2018-10-31,20.000000) [0.156791] (2018-10-31,19.996601) [0.156791] (2018-10-31,1.741294) [0.060723] (2018-10-31,0.000000) [0.060723] (2018-10-31,68.420966) [0.060723] (2018-10-31,69.158416) [0.060723] (2018-10-31,13.250000) [0.398604] (2018-10-31,0.044317) [0.398604] (2018-10-31,13.250000) [0.399083] (2018-10-31,0.239674) [0.399083] (2018-10-31,13.250000) [0.202600] (2018-10-31,0.000000) [0.202600] (2018-10-31,13.250000) [0.247800] (2018-10-31,0.078446) [0.247800] (2018-10-31,15.000000) [0.073503] (2018-10-31,15.000000) [0.073503] (2018-10-31,14.285714) [0.028506] (2018-10-31,70.000000) [0.028506] (2018-10-31,0.000000) [0.041827] (2018-10-31,70.000000) [0.041827] (2018-10-31,41.738250) [0.321134] (2018-10-31,13.476500) [0.321134] (2018-10-31,8.676877) [0.321134] (2018-11-01,70.000000) [0.425527] (2018-11-01,41.625000) [0.425527] (2018-11-01,70.000000) [0.600000] (2018-11-01,2.132054) [0.600000] (2018-11-01,15.000000) [0.018840] (2018-11-01,15.000000) [0.018840] (2018-11-01,15.000000) [0.039368] (2018-11-01,15.000000) [0.039368] (2018-11-01,15.000000) [0.039368] (2018-11-01,70.000000) [1.167345] (2018-11-01,0.065733) [1.167345] (2018-11-01,13.250000) [0.162081] (2018-11-01,4.208000) [0.162081] (2018-11-01,15.000000) [0.013838] (2018-11-01,15.000000) [0.013838] (2018-11-01,0.272693) [0.032824] (2018-11-01,70.000000) [0.032824] (2018-11-01,15.000000) [0.010494] (2018-11-01,15.000000) [0.010494] (2018-11-01,15.000000) [0.010794] (2018-11-01,15.000000) [0.010794] (2018-11-01,0.000000) [0.066360] (2018-11-01,69.839069) [0.066360] (2018-11-01,70.000000) [0.066360] (2018-11-01,15.000000) [0.021987] (2018-11-01,15.000000) [0.021987] (2018-11-01,15.000000) [0.032981] (2018-11-01,15.000000) [0.032981] (2018-11-01,15.000000) [0.010494] (2018-11-01,15.000000) [0.010494] (2018-11-02,12.600000) [0.524699] (2018-11-02,11.183775) [0.524699] (2018-11-02,15.000000) [0.014734] (2018-11-02,15.000000) [0.014734] (2018-11-02,15.000000) [0.014664] (2018-11-02,15.000000) [0.014664] (2018-11-02,15.115000) [0.014664] (2018-11-02,15.000000) [0.049328] (2018-11-02,15.000000) [0.049328] (2018-11-02,15.000000) [0.049328] (2018-11-02,15.000000) [0.111713] (2018-11-02,15.000000) [0.111713] (2018-11-02,70.000000) [0.799240] (2018-11-02,4.208000) [0.799240] (2018-11-02,15.000000) [0.020139] (2018-11-02,15.000000) [0.020139] (2018-11-02,0.000000) [0.020139] (2018-11-02,15.000000) [0.014152] (2018-11-02,15.000000) [0.014152] (2018-11-02,15.000000) [0.020473] (2018-11-02,15.000000) [0.020473] (2018-11-02,15.000000) [0.020034] (2018-11-02,15.000000) [0.020034] (2018-11-08,16.001936) [0.257215] (2018-11-08,70.000000) [0.257215] (2018-11-08,0.183009) [0.108099] (2018-11-08,13.010000) [0.108099] (2018-11-08,70.000000) [0.108099] (2018-11-08,0.000000) [0.108099] (2018-11-08,2.250000) [0.108099] (2018-11-08,6.331731) [0.108099] (2018-11-08,4.000000) [0.177227] (2018-11-08,41.505000) [0.177227] (2018-11-08,0.000000) [0.177227] (2018-11-08,0.106186) [0.005717] (2018-11-08,0.000000) [0.021120] (2018-11-08,0.500000) [0.168566] (2018-11-08,41.505000) [0.168566] (2018-11-08,0.000000) [0.017827] (2018-11-08,12.447761) [0.017827] (2018-11-08,70.000000) [0.017827] (2018-11-09,13.010000) [0.281304] (2018-11-09,0.698430) [0.281304] (2018-11-09,0.000000) [0.020622] (2018-11-09,21.000000) [0.020622] (2018-11-09,0.000000) [0.037990] (2018-11-09,42.857143) [0.037990] (2018-11-09,4.000000) [0.037990] (2018-11-09,16.711538) [0.037990] (2018-11-09,0.000000) [0.037990] (2018-11-09,15.000000) [0.029670] (2018-11-09,15.000000) [0.029670] (2018-11-09,13.010000) [0.079040] (2018-11-09,13.010000) [0.079040] (2018-11-09,0.000000) [0.079040] (2018-11-09,12.897215) [0.053083] (2018-11-09,32.701116) [0.053083] (2018-11-09,13.010226) [0.053083] (2018-11-09,0.000000) [0.053083] (2018-11-09,0.000000) [0.016756] (2018-11-09,41.505000) [0.016756] (2018-11-09,15.000000) [0.066830] (2018-11-09,15.000000) [0.066830] (2018-11-09,12.600000) [0.134972] (2018-11-09,0.701000) [0.134972] (2018-11-09,12.600000) [0.134972] (2018-11-09,4.000000) [0.027375] (2018-11-09,70.000000) [0.027375] (2018-11-09,12.600000) [0.123941] (2018-11-09,12.600000) [0.123941] (2018-11-09,4.475278) [0.123941] (2018-11-09,1.034488) [0.037956] (2018-11-09,13.010000) [0.037956] (2018-11-09,15.000000) [0.012073] (2018-11-09,12.600000) [0.012073] (2018-11-09,15.000000) [0.012073] (2018-11-09,15.000000) [0.012073] (2018-11-09,15.000000) [0.022495] (2018-11-09,15.000000) [0.022495] (2018-11-10,15.000000) [0.032233] (2018-11-10,15.000000) [0.032233] (2018-11-10,15.000000) [0.032233] (2018-11-10,13.010000) [0.014520] (2018-11-10,13.010000) [0.014520] (2018-11-10,15.000000) [0.021295] (2018-11-10,15.000000) [0.021295] (2018-11-10,15.000000) [0.021295] (2018-11-10,12.651017) [0.007425] (2018-11-10,13.010000) [0.007425] (2018-11-10,0.000000) [0.037060] (2018-11-10,13.010000) [0.037060] (2018-11-10,70.000000) [0.037060] (2018-11-10,15.000000) [0.874296] (2018-11-10,15.000000) [0.874296] (2018-11-10,15.000000) [0.874296] (2018-11-10,0.120297) [0.224400] (2018-11-10,33.880716) [0.224400] (2018-11-10,70.000000) [0.224400] (2018-11-10,70.000000) [0.224400] (2018-11-10,33.880716) [0.224400] (2018-11-10,70.000000) [0.224400] (2018-11-10,70.000000) [0.224400] (2018-11-10,15.000000) [0.177727] (2018-11-10,15.000000) [0.177727] (2018-11-10,12.600000) [0.177727] (2018-11-10,12.600000) [0.177727] (2018-11-10,13.800000) [0.177727] (2018-11-10,11.425043) [0.177727] (2018-11-10,15.000000) [0.177727] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [0.013886] (2018-11-10,15.000000) [0.013886] (2018-11-10,15.000000) [0.089196] (2018-11-10,15.000000) [0.089196] (2018-11-10,15.000000) [0.089196] (2018-11-10,4.000000) [0.019680] (2018-11-10,13.010000) [0.019680] (2018-11-11,15.000000) [0.029888] (2018-11-11,15.000000) [0.029888] (2018-11-11,15.000000) [0.029888] (2018-11-11,15.000000) [0.029888] (2018-11-11,13.010000) [0.144354] (2018-11-11,0.000000) [0.144354] (2018-11-11,13.010000) [0.144354] (2018-11-11,12.600000) [0.167846] (2018-11-11,12.600000) [0.167846] (2018-11-11,2.454500) [0.167846] (2018-11-11,15.000000) [0.011595] (2018-11-11,15.000000) [0.011595] (2018-11-11,0.000000) [0.052052] (2018-11-11,13.010000) [0.052052] (2018-11-11,4.000000) [0.010527] (2018-11-11,13.010000) [0.010527] (2018-11-11,0.000000) [0.016058] (2018-11-11,41.505000) [0.016058] (2018-11-11,0.000000) [0.016058] (2018-11-11,4.000000) [0.016807] (2018-11-11,41.505000) [0.016807] (2018-11-11,69.824254) [0.800000] (2018-11-11,0.364121) [0.800000] (2018-11-11,70.000000) [0.800000] (2018-11-12,15.000000) [0.411217] (2018-11-12,15.000000) [0.411217] (2018-11-12,15.000000) [0.411217] (2018-11-12,4.000000) [0.032332] (2018-11-12,41.505000) [0.032332] (2018-11-12,0.063113) [0.169400] (2018-11-12,13.010000) [0.169400] (2018-11-12,4.000000) [0.169400] (2018-11-12,41.505000) [0.169400] (2018-11-12,70.000000) [0.169400] (2018-11-12,0.000000) [0.065543] (2018-11-12,70.000000) [0.065543] (2018-11-12,15.000000) [0.446183] (2018-11-12,15.000000) [0.446183] (2018-11-12,0.000000) [0.436480] (2018-11-12,15.000000) [0.436480] (2018-11-12,15.000000) [0.436480] (2018-11-12,15.000000) [0.436480] (2018-11-12,0.000000) [0.075599] (2018-11-12,70.000000) [0.075599] (2018-11-12,15.000000) [0.078012] (2018-11-12,15.000000) [0.078012] (2018-11-12,15.000000) [0.078012] (2018-11-12,12.600000) [0.016390] (2018-11-12,15.000000) [0.016390] (2018-11-12,15.000000) [0.016390] (2018-11-12,12.600000) [0.387834] (2018-11-12,12.917600) [0.387834] (2018-11-12,0.568330) [0.387834] (2018-11-12,0.134146) [4.500239] (2018-11-12,15.000000) [0.046329] (2018-11-12,15.000000) [0.046329] (2018-11-12,15.000000) [0.046329] (2018-11-12,15.000000) [0.046329] (2018-11-13,0.000000) [0.013656] (2018-11-13,70.000000) [0.013656] (2018-11-13,4.000000) [0.009506] (2018-11-13,13.010000) [0.009506] (2018-11-13,15.000000) [0.028125] (2018-11-13,15.000000) [0.028125] (2018-11-13,15.000000) [0.028125] (2018-11-13,15.000000) [0.165672] (2018-11-13,15.000000) [0.165672] (2018-11-13,15.000000) [0.165672] (2018-11-13,70.000000) [1.868000] (2018-11-13,69.830340) [1.868000] (2018-11-13,69.915354) [1.868000] (2018-11-13,8.663462) [0.015336] (2018-11-13,70.000000) [0.015336] (2018-11-13,15.000000) [0.016167] (2018-11-13,15.000000) [0.016167] (2018-11-13,15.000000) [0.016167] (2018-11-13,15.000000) [0.029341] (2018-11-13,15.000000) [0.029341] (2018-11-13,58.067859) [0.029341] (2018-11-13,15.000000) [0.029341] (2018-11-13,15.000000) [0.014930] (2018-11-13,15.000000) [0.014930] (2018-11-13,13.010000) [0.011375] (2018-11-13,13.010000) [0.011375] (2018-11-13,13.010000) [0.669000] (2018-11-13,26.274953) [0.669000] (2018-11-13,4.208000) [0.669000] (2018-11-13,12.600000) [0.156005] (2018-11-13,42.669638) [0.156005] (2018-11-13,0.308380) [0.156005] (2018-11-13,12.901278) [0.156005] (2018-11-13,57.933648) [0.156005] (2018-11-13,0.000000) [0.032782] (2018-11-13,13.010000) [0.032782] (2018-11-13,13.010000) [0.032782] (2018-11-14,13.010000) [0.167532] (2018-11-14,13.123010) [0.167532] (2018-11-14,0.000000) [0.167532] (2018-11-14,13.010000) [0.027800] (2018-11-14,70.000000) [0.027800] (2018-11-14,0.000000) [0.028922] (2018-11-14,70.000000) [0.028922] (2018-11-14,15.000000) [0.014266] (2018-11-14,0.000000) [0.014266] (2018-11-14,15.000000) [0.014266] (2018-11-14,15.000000) [0.014266] (2018-11-14,2.000000) [0.024896] (2018-11-14,70.000000) [0.024896] (2018-11-14,12.600000) [0.223000] (2018-11-14,12.600000) [0.223000] (2018-11-14,12.600000) [0.223000] (2018-11-14,12.825200) [0.223000] (2018-11-14,0.000000) [0.223000] (2018-11-14,0.000000) [0.061920] (2018-11-14,70.000000) [0.061920] (2018-11-14,6.372668) [0.007781] (2018-11-14,14.485769) [0.007781] (2018-11-14,70.000000) [0.007781] (2018-11-14,0.159852) [0.146191] (2018-11-14,13.010000) [0.146191] (2018-11-14,70.000000) [0.030056] (2018-11-14,4.000000) [0.030056] (2018-11-14,15.000000) [0.017101] (2018-11-14,15.000000) [0.017101] (2018-11-14,15.000000) [0.017101] (2018-11-15,14.244883) [0.010484] (2018-11-15,15.000000) [0.010484] (2018-11-15,15.000000) [0.010484] (2018-11-15,0.000000) [0.006928] (2018-11-15,0.000000) [0.006928] (2018-11-15,0.000000) [0.005846] (2018-11-15,13.010000) [0.005846] (2018-11-15,13.010000) [0.005846] (2018-11-15,0.000000) [0.046828] (2018-11-15,13.010000) [0.046828] (2018-11-15,0.000000) [0.055724] (2018-11-15,13.010000) [0.055724] (2018-11-15,0.000000) [0.004428] (2018-11-15,13.010000) [0.004428] (2018-11-15,6.505000) [0.004428] (2018-11-15,15.000000) [0.005659] (2018-11-15,15.000000) [0.005659] (2018-11-15,15.000000) [0.005659] (2018-11-15,0.000000) [0.010000] (2018-11-15,13.010000) [0.010000] (2018-11-15,15.000000) [0.011106] (2018-11-15,15.000000) [0.011106] (2018-11-15,15.000000) [0.011106] (2018-11-15,0.000000) [0.049782] (2018-11-15,13.010000) [0.038107] (2018-11-15,41.505000) [0.038107] (2018-11-15,15.000000) [0.787877] (2018-11-15,15.000000) [0.787877] (2018-11-15,13.010000) [0.081945] (2018-11-15,13.123010) [0.081945] (2018-11-15,0.000000) [0.081945] (2018-11-16,0.000000) [0.098400] (2018-11-16,32.139423) [0.098400] (2018-11-16,13.010000) [0.098400] (2018-11-16,0.000000) [0.098400] (2018-11-16,13.010000) [0.180273] (2018-11-16,63.507993) [0.180273] (2018-11-16,4.208000) [0.180273] (2018-11-16,15.000000) [0.010007] (2018-11-16,15.000000) [0.010007] (2018-11-16,15.000000) [0.010007] (2018-11-16,13.010000) [0.184996] (2018-11-16,13.010000) [0.184996] (2018-11-16,0.701000) [0.184996] (2018-11-16,13.010000) [0.184996] (2018-11-16,13.010000) [0.060165] (2018-11-16,50.976909) [0.060165] (2018-11-16,13.010000) [0.060165] (2018-11-16,23.771285) [0.060165] (2018-11-16,33.730769) [0.009745] (2018-11-16,70.000000) [0.009745] (2018-11-16,15.000000) [0.224873] (2018-11-16,15.000000) [0.224873] (2018-11-16,15.000000) [0.224873] (2018-11-16,15.000000) [0.224873] (2018-11-16,15.000000) [0.043936] (2018-11-16,15.000000) [0.043936] (2018-11-16,69.660679) [1.319521] (2018-11-16,70.000000) [1.319521] (2018-11-16,13.010000) [1.319521] (2018-11-16,12.600000) [0.015697] (2018-11-16,15.000000) [0.015697] (2018-11-16,15.000000) [0.015697] (2018-11-16,70.000000) [0.736452] (2018-11-16,6.502282) [0.736452] (2018-11-16,15.000000) [0.017748] (2018-11-16,15.000000) [0.017748] (2018-11-16,15.000000) [0.017748] (2018-11-16,13.123010) [0.296001] (2018-11-16,19.597559) [0.296001] (2018-11-16,0.215516) [0.296001] (2018-11-16,13.092908) [0.223966] (2018-11-16,0.146727) [0.223966] (2018-11-16,13.010000) [0.125071] (2018-11-16,41.505000) [0.125071] (2018-11-16,6.334983) [0.125071] (2018-11-16,0.000000) [0.031100] (2018-11-16,21.000000) [0.031100] (2018-11-16,21.000000) [0.031100] (2018-11-16,30.527389) [1.717084] (2018-11-16,20.728289) [1.717084] (2018-11-17,13.010000) [0.332493] (2018-11-17,4.176954) [0.332493] (2018-11-17,13.010000) [0.194073] (2018-11-17,0.000000) [0.194073] (2018-11-17,13.010000) [0.121588] (2018-11-17,69.660679) [0.121588] (2018-11-17,12.616657) [0.121588] (2018-11-17,13.123010) [0.396500] (2018-11-17,38.367220) [0.396500] (2018-11-17,60.488455) [0.396500] (2018-11-17,0.000000) [0.396500] (2018-11-17,1.082855) [0.396500] (2018-11-17,13.010000) [0.094575] (2018-11-17,0.000000) [0.094575] (2018-11-17,15.000000) [0.019540] (2018-11-17,15.000000) [0.019540] (2018-11-17,15.000000) [0.019540] (2018-11-17,15.000000) [0.010396] (2018-11-17,15.000000) [0.010396] (2018-11-17,15.000000) [0.010396] (2018-11-18,15.000000) [0.074410] (2018-11-18,15.000000) [0.074410] (2018-11-19,0.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,19.515407) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,15.000000) [0.085296] (2018-11-19,0.049646) [0.085296] (2018-11-19,20.000000) [0.085296] (2018-11-19,20.000000) [0.085296] (2018-11-19,20.000000) [0.085296] (2018-11-19,20.000000) [0.085296] (2018-11-19,14.130112) [0.014714] (2018-11-19,15.000000) [0.014714] (2018-11-19,15.000000) [0.014714] (2018-11-19,15.000000) [0.014714] (2018-11-19,15.000000) [0.014714] (2018-11-19,15.000000) [0.034720] (2018-11-19,15.000000) [0.034720] (2018-11-19,15.000000) [0.953980] (2018-11-19,15.000000) [0.953980] (2018-11-19,15.000000) [0.953980] (2018-11-19,15.000000) [0.021620] (2018-11-19,15.000000) [0.021620] (2018-11-19,15.000000) [0.021620] (2018-11-20,15.000000) [0.019939] (2018-11-20,15.000000) [0.019939] (2018-11-20,12.600000) [0.098338] (2018-11-20,4.687797) [0.098338] (2018-11-20,15.000000) [1.227104] (2018-11-20,15.000000) [1.227104] (2018-11-20,15.000000) [0.023981] (2018-11-20,15.000000) [0.023981] (2018-11-20,0.000000) [0.221380] (2018-11-20,15.000000) [0.221380] (2018-11-20,15.000000) [0.221380] (2018-11-20,15.000000) [0.221380] (2018-11-20,15.000000) [0.221380] (2018-11-20,15.000000) [0.018872] (2018-11-20,15.000000) [0.018872] (2018-11-21,12.600000) [0.397202] (2018-11-21,4.208000) [0.397202] (2018-11-21,15.000000) [0.019474] (2018-11-21,15.000000) [0.019474] (2018-11-21,15.000000) [0.019474] (2018-11-21,15.000000) [0.041603] (2018-11-21,15.000000) [0.041603] (2018-11-21,15.000000) [0.109172] (2018-11-21,15.000000) [0.109172] (2018-11-22,12.600000) [0.165000] (2018-11-22,4.625462) [0.165000] (2018-11-22,14.770459) [0.009711] (2018-11-22,15.000000) [0.009711] (2018-11-22,15.000000) [0.009711] (2018-11-22,15.000000) [0.009711] (2018-11-22,12.600000) [0.711119] (2018-11-22,4.876742) [0.711119] (2018-11-23,15.000000) [0.035880] (2018-11-23,15.000000) [0.035880] (2018-11-23,15.000000) [0.035880] (2018-11-24,12.600000) [0.166124] (2018-11-24,4.374785) [0.166124] (2018-11-24,12.600000) [0.910000] (2018-11-24,4.784355) [0.910000] (2018-11-24,15.000000) [0.019020] (2018-11-24,15.000000) [0.019020] (2018-11-24,15.000000) [0.019020] (2018-11-25,0.000000) [0.117678] (2018-11-25,12.600000) [0.570152] (2018-11-25,12.600000) [0.570152] (2018-11-25,12.600000) [0.570152] (2018-11-25,12.600000) [0.570152] (2018-11-25,7.966759) [0.570152] (2018-11-25,7.373262) [0.570152] (2018-11-25,7.848625) [0.570152] (2018-11-25,11.748241) [0.570152] (2018-11-25,41.625000) [0.570152] (2018-11-26,12.600000) [0.317499] (2018-11-26,0.094055) [0.317499] (2018-11-26,13.000000) [0.317499] (2018-11-26,12.600000) [0.013631] (2018-11-26,12.600000) [0.013631] (2018-11-26,12.600000) [0.013631] (2018-11-26,4.499942) [0.013631] (2018-11-26,0.000000) [0.013631] (2018-11-26,13.000000) [0.013631] (2018-11-26,15.000000) [0.123500] (2018-11-26,15.000000) [0.123500] (2018-11-26,15.000000) [0.123500] (2018-11-26,12.600000) [0.093103] (2018-11-26,6.230842) [0.093103] (2018-11-26,12.600000) [0.139520] (2018-11-26,6.423927) [0.139520] (2018-11-26,57.500000) [0.021086] (2018-11-26,0.000000) [0.021086] (2018-11-26,0.000000) [0.021086] (2018-11-26,0.000000) [0.021086] (2018-11-26,0.000000) [0.021086] (2018-11-26,15.000000) [0.021086] (2018-11-27,15.000000) [0.010820] (2018-11-27,15.000000) [0.010820] (2018-11-27,15.000000) [0.010820] (2018-11-27,15.000000) [0.327251] (2018-11-27,15.000000) [0.327251] (2018-11-27,15.000000) [0.327251] (2018-11-27,15.000000) [0.201081] (2018-11-27,14.885229) [0.201081] (2018-11-27,15.000000) [0.201081] (2018-11-27,15.000000) [0.201081] (2018-11-27,14.770459) [0.090307] (2018-11-27,14.770459) [0.090307] (2018-11-27,14.312979) [0.090307] (2018-11-27,14.541376) [0.090307] (2018-11-27,14.427064) [0.090307] (2018-11-27,14.579453) [0.090307] (2018-11-27,15.000000) [0.090307] (2018-11-27,15.000000) [0.090307] (2018-11-27,15.000000) [0.090307] (2018-11-28,15.000000) [0.011954] (2018-11-28,15.000000) [0.011954] (2018-11-28,15.000000) [0.011954] (2018-11-28,15.000000) [0.070875] (2018-11-28,15.000000) [0.070875] (2018-11-28,15.000000) [0.070875] (2018-11-28,15.000000) [0.032845] (2018-11-28,15.000000) [0.032845] (2018-11-28,15.000000) [0.032845] (2018-11-28,15.000000) [0.039880] (2018-11-28,15.000000) [0.039880] (2018-11-28,15.000000) [0.039880] (2018-11-28,13.716745) [0.052480] (2018-11-28,15.000000) [0.052480] (2018-11-28,15.000000) [0.052480] (2018-11-29,15.000000) [0.013309] (2018-11-29,15.000000) [0.013309] (2018-11-29,15.000000) [0.403014] (2018-11-29,15.000000) [0.403014] (2018-11-29,15.000000) [0.403014] (2018-11-29,15.000000) [0.403014] (2018-11-29,15.000000) [0.403014] (2018-11-29,23.740000) [0.403014] (2018-11-29,12.600000) [0.112154] (2018-11-29,0.314121) [0.112154] (2018-11-29,15.000000) [0.198596] (2018-11-29,15.000000) [0.198596] (2018-11-29,15.000000) [0.198596] (2018-11-29,14.770459) [0.879616] (2018-11-29,14.770459) [0.879616] (2018-11-29,15.000000) [0.879616] (2018-11-29,15.000000) [0.879616] (2018-11-29,15.000000) [0.097238] (2018-11-29,15.000000) [0.097238] (2018-11-30,15.000000) [0.041673] (2018-11-30,12.600000) [0.106370] (2018-11-30,15.000000) [0.106370] (2018-11-30,15.000000) [0.106370] (2018-11-30,12.600000) [0.095047] (2018-11-30,12.600000) [0.095047] (2018-11-30,12.600000) [0.095047] (2018-11-30,0.000000) [0.095047] (2018-11-30,0.200000) [0.095047] (2018-11-30,0.000000) [0.095047] (2018-11-30,36.571908) [0.095047] (2018-11-30,13.716745) [0.032900] (2018-11-30,15.000000) [0.032900] (2018-11-30,15.000000) [0.032900] (2018-11-30,15.000000) [0.019845] (2018-11-30,15.000000) [0.019845] (2018-12-01,13.951660) [0.039826] (2018-12-01,15.000000) [0.039826] (2018-12-01,15.000000) [0.039826] (2018-12-01,15.000000) [0.017285] (2018-12-01,15.000000) [0.017285] (2018-12-01,15.000000) [0.023584] (2018-12-01,15.000000) [0.023584] (2018-12-01,15.000000) [0.027311] (2018-12-01,15.000000) [0.027311] (2018-12-01,15.000000) [0.027311] (2018-12-01,15.000000) [0.024880] (2018-12-01,15.000000) [0.024880] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [0.069880] (2018-12-01,15.000000) [0.069880] (2018-12-01,15.000000) [0.069880] (2018-12-01,15.000000) [0.014951] (2018-12-01,15.000000) [0.014951] (2018-12-01,15.000000) [0.014951] (2018-12-01,15.000000) [0.014914] (2018-12-01,15.000000) [0.014914] (2018-12-01,15.000000) [0.014914] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.230000) [0.014925] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014248] (2018-12-02,49.719118) [0.005979] (2018-12-02,0.000000) [0.005979] (2018-12-02,0.000000) [0.005979] (2018-12-02,70.000000) [0.005979] (2018-12-02,12.600000) [0.005979] (2018-12-02,0.000000) [0.005979] (2018-12-02,0.000000) [0.005979] (2018-12-02,15.000000) [0.098897] (2018-12-02,15.000000) [0.098897] (2018-12-02,15.000000) [0.088975] (2018-12-02,15.000000) [0.088975] (2018-12-02,15.000000) [0.088975] (2018-12-02,14.770459) [0.040301] (2018-12-02,14.770459) [0.040301] (2018-12-02,14.770459) [0.040301] (2018-12-02,14.541376) [0.040301] (2018-12-02,14.858470) [0.040301] (2018-12-02,14.471263) [0.040301] (2018-12-02,15.000000) [0.040301] (2018-12-02,15.000000) [0.040301] (2018-12-02,15.000000) [0.040301] (2018-12-02,15.000000) [0.020646] (2018-12-02,15.000000) [0.020646] (2018-12-02,15.000000) [0.020646] (2018-12-02,12.600000) [0.823869] (2018-12-02,2.538009) [0.823869] (2018-12-03,13.158372) [0.090000] (2018-12-03,15.000000) [0.090000] (2018-12-03,15.000000) [0.090000] (2018-12-03,12.600000) [0.030000] (2018-12-03,15.000000) [0.030000] (2018-12-03,12.600000) [0.026955] (2018-12-03,12.600000) [0.026955] (2018-12-03,15.000000) [0.026955] (2018-12-03,12.600000) [0.026955] (2018-12-03,15.000000) [0.026955] (2018-12-03,12.600000) [0.026955] (2018-12-03,15.000000) [0.026955] (2018-12-03,15.000000) [0.013725] (2018-12-03,15.000000) [0.013725] (2018-12-03,15.000000) [0.013725] (2018-12-03,15.000000) [0.009853] (2018-12-03,15.000000) [0.009853] (2018-12-03,15.000000) [0.009853] (2018-12-03,15.000000) [0.172271] (2018-12-03,15.000000) [0.172271] (2018-12-03,15.000000) [0.172271] (2018-12-04,15.000000) [0.071249] (2018-12-04,15.000000) [0.071249] (2018-12-04,15.000000) [0.154216] (2018-12-04,15.000000) [0.154216] (2018-12-04,15.000000) [0.154216] (2018-12-04,15.000000) [0.154216] (2018-12-04,14.770459) [0.029007] (2018-12-04,14.770459) [0.029007] (2018-12-04,15.000000) [0.029007] (2018-12-04,15.000000) [0.029007] (2018-12-04,0.000000) [0.020313] (2018-12-04,14.770459) [0.020313] (2018-12-04,12.600000) [0.020313] (2018-12-04,12.600000) [0.020313] (2018-12-04,15.000000) [0.020313] (2018-12-04,15.000000) [0.020313] (2018-12-04,13.800000) [0.020313] (2018-12-04,15.000000) [0.020313] (2018-12-04,15.000000) [0.020313] (2018-12-04,15.000000) [0.021832] (2018-12-04,15.000000) [0.021832] (2018-12-04,15.000000) [0.021832] (2018-12-05,15.000000) [0.011851] (2018-12-05,15.000000) [0.011851] (2018-12-05,15.000000) [0.011851] (2018-12-05,0.000000) [0.011851] (2018-12-05,15.000000) [0.034416] (2018-12-05,15.000000) [0.034416] (2018-12-05,15.000000) [0.034416] (2018-12-05,15.000000) [0.034416] (2018-12-06,12.600000) [0.118848] (2018-12-06,4.291359) [0.118848] (2018-12-06,12.600000) [0.009994] (2018-12-06,4.291359) [0.009994] (2018-12-06,0.000000) [0.009994] (2018-12-06,0.000000) [0.605667] (2018-12-06,15.000000) [0.605667] (2018-12-06,15.000000) [0.605667] (2018-12-06,15.000000) [0.605667] (2018-12-06,12.600000) [0.156148] (2018-12-06,0.641738) [0.156148] (2018-12-06,15.000000) [0.151137] (2018-12-06,15.000000) [0.151137] (2018-12-07,15.000000) [0.275103] (2018-12-07,15.000000) [0.275103] (2018-12-07,12.600000) [0.142818] (2018-12-07,4.876742) [0.142818] (2018-12-07,15.000000) [0.014966] (2018-12-07,15.000000) [0.014966] (2018-12-07,15.000000) [0.014966] (2018-12-07,14.652662) [0.035113] (2018-12-07,15.000000) [0.035113] (2018-12-07,15.000000) [0.035113] (2018-12-07,3.333333) [0.035113] (2018-12-07,15.000000) [0.102771] (2018-12-07,15.000000) [0.102771] (2018-12-07,15.000000) [0.102771] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.010776] (2018-12-07,15.000000) [0.010776] (2018-12-07,12.600000) [0.300000] (2018-12-07,4.709155) [0.300000] (2018-12-07,12.600000) [0.150000] (2018-12-07,4.535659) [0.150000] (2018-12-07,12.600000) [0.098104] (2018-12-07,0.140077) [0.098104] (2018-12-08,12.600000) [0.330000] (2018-12-08,4.648373) [0.330000] (2018-12-08,12.600000) [0.899582] (2018-12-08,0.157722) [0.899582] (2018-12-08,15.000000) [0.099197] (2018-12-08,15.000000) [0.099197] (2018-12-08,15.000000) [0.099197] (2018-12-08,13.716745) [0.019197] (2018-12-08,15.000000) [0.019197] (2018-12-08,15.000000) [0.019197] (2018-12-08,15.000000) [0.035880] (2018-12-08,15.000000) [0.035880] (2018-12-08,15.000000) [0.014565] (2018-12-08,15.000000) [0.014565] (2018-12-08,15.230230) [0.014565] (2018-12-08,15.000000) [0.014565] (2018-12-08,12.600000) [0.236500] (2018-12-08,0.000000) [0.236500] (2018-12-09,12.600000) [0.266625] (2018-12-09,12.600000) [0.266625] (2018-12-09,0.057074) [0.266625] (2018-12-09,15.000000) [0.015684] (2018-12-09,15.000000) [0.015684] (2018-12-09,15.000000) [0.058860] (2018-12-09,15.000000) [0.058860] (2018-12-09,15.000000) [0.058860] (2018-12-09,15.000000) [0.007032] (2018-12-09,15.000000) [0.020592] (2018-12-09,15.000000) [0.020592] (2018-12-10,15.000000) [0.017593] (2018-12-10,15.000000) [0.017593] (2018-12-10,15.000000) [0.017593] (2018-12-10,12.600000) [0.173000] (2018-12-10,6.243142) [0.173000] (2018-12-10,12.600000) [0.247896] (2018-12-10,0.068636) [0.247896] (2018-12-10,0.000000) [0.041124] (2018-12-10,20.000000) [0.041124] (2018-12-10,20.000000) [0.041124] (2018-12-10,20.000000) [0.041124] (2018-12-10,20.000000) [0.041124] (2018-12-10,12.600000) [0.071648] (2018-12-10,0.072344) [0.071648] (2018-12-10,20.000000) [0.011033] (2018-12-10,20.000000) [0.011033] (2018-12-10,20.000000) [0.011033] (2018-12-10,0.000000) [0.011033] (2018-12-10,20.000000) [0.011033] (2018-12-10,0.020210) [0.296348] (2018-12-10,20.000000) [0.296348] (2018-12-10,20.000000) [0.296348] (2018-12-10,20.000000) [0.296348] (2018-12-10,20.000000) [0.296348] (2018-12-10,0.019869) [0.120323] (2018-12-11,12.600000) [0.139957] (2018-12-11,0.112574) [0.139957] (2018-12-11,12.510000) [0.139957] (2018-12-11,11.241197) [0.199547] (2018-12-11,0.115955) [0.199547] (2018-12-11,13.489766) [0.014379] (2018-12-11,15.000000) [0.014379] (2018-12-11,15.000000) [0.014379] (2018-12-11,0.000000) [0.014379] (2018-12-11,0.000000) [0.010977] (2018-12-11,15.000000) [0.010977] (2018-12-11,15.000000) [0.010977] (2018-12-11,15.000000) [0.010977] (2018-12-11,12.600000) [0.099260] (2018-12-11,12.600000) [0.099260] (2018-12-11,0.105925) [0.099260] (2018-12-11,15.000000) [0.008178] (2018-12-11,14.770459) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,12.600000) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,12.600000) [0.011633] (2018-12-11,0.199040) [0.011633] (2018-12-11,12.330216) [0.011633] (2018-12-11,70.000000) [0.011633] (2018-12-12,12.600000) [0.018114] (2018-12-12,12.510000) [0.018114] (2018-12-12,12.600000) [0.018114] (2018-12-12,12.510000) [0.018114] (2018-12-12,12.600000) [0.018114] (2018-12-12,12.322056) [0.018114] (2018-12-12,15.000000) [0.054429] (2018-12-12,15.000000) [0.054429] (2018-12-12,15.000000) [0.054429] (2018-12-12,12.600000) [0.694897] (2018-12-12,4.271958) [0.694897] (2018-12-12,10.533861) [0.694897] (2018-12-12,15.000000) [0.018784] (2018-12-12,14.999932) [0.018784] (2018-12-12,15.000000) [0.308271] (2018-12-12,15.000000) [0.308271] (2018-12-12,15.000000) [0.308271] (2018-12-12,12.600000) [0.308271] (2018-12-12,15.000000) [0.308271] (2018-12-12,15.000000) [0.152560] (2018-12-12,15.000000) [0.152560] (2018-12-12,15.000000) [0.152560] (2018-12-13,12.600000) [0.089987] (2018-12-13,4.792915) [0.089987] (2018-12-13,0.000000) [0.151350] (2018-12-13,12.600000) [0.151350] (2018-12-13,0.051190) [0.151350] (2018-12-13,0.000000) [0.151350] (2018-12-13,12.600000) [0.112303] (2018-12-13,4.208000) [0.112303] (2018-12-13,12.510000) [0.112303] (2018-12-13,12.510000) [0.112303] (2018-12-13,12.510000) [0.112303] (2018-12-13,0.000000) [0.028022] (2018-12-13,15.000000) [0.087198] (2018-12-13,15.000000) [0.087198] (2018-12-13,12.600000) [0.120462] (2018-12-13,0.024642) [0.120462] (2018-12-13,15.000000) [0.009616] (2018-12-13,14.999916) [0.009616] (2018-12-14,12.695704) [0.019882] (2018-12-14,15.000000) [0.019882] (2018-12-14,19.728210) [0.019882] (2018-12-14,15.000000) [0.019882] (2018-12-14,12.600000) [0.019003] (2018-12-14,13.044829) [0.019003] (2018-12-14,15.000000) [0.019003] (2018-12-14,4.208000) [0.748686] (2018-12-14,12.600000) [0.748686] (2018-12-14,12.510000) [0.748686] (2018-12-14,12.600000) [0.007800] (2018-12-14,6.594565) [0.007800] (2018-12-14,12.510000) [0.007800] (2018-12-14,12.240431) [0.007800] (2018-12-14,12.600000) [0.289359] (2018-12-14,12.600000) [0.289359] (2018-12-14,4.120467) [0.289359] (2018-12-14,12.510000) [0.289359] (2018-12-14,12.600000) [0.607600] (2018-12-14,12.600000) [0.607600] (2018-12-14,4.208000) [0.607600] (2018-12-14,12.510000) [0.607600] (2018-12-15,15.000000) [0.020400] (2018-12-15,13.799781) [0.020400] (2018-12-15,15.000000) [0.020400] (2018-12-15,15.000000) [0.020400] (2018-12-15,15.000000) [0.076788] (2018-12-15,71.952874) [0.076788] (2018-12-15,15.000000) [0.076788] (2018-12-15,15.000000) [0.076788] (2018-12-15,12.600000) [0.019526] (2018-12-15,12.599913) [0.019526] (2018-12-15,15.000000) [6.603763] (2018-12-15,14.999995) [6.603763] (2018-12-15,14.999995) [1.995969] (2018-12-15,15.000000) [1.995969] (2018-12-15,12.600000) [1.760000] (2018-12-15,0.032290) [1.760000] (2018-12-15,12.600000) [0.158931] (2018-12-15,0.178164) [0.158931] (2018-12-15,12.600000) [0.082000] (2018-12-15,12.689966) [0.082000] (2018-12-15,12.600000) [0.082000] (2018-12-15,4.114795) [0.082000] (2018-12-15,12.510000) [0.082000] (2018-12-15,15.000000) [0.130740] (2018-12-15,14.999934) [0.130740] (2018-12-15,15.000000) [0.130740] (2018-12-15,0.000000) [0.053184] (2019-01-05,15.000000) [0.017491] (2019-01-05,14.999927) [0.017491] (2019-01-05,15.000000) [0.014392] (2019-01-05,14.999927) [0.014392] (2019-01-05,15.000000) [0.011211] (2019-01-05,12.600000) [0.011211] (2019-01-05,12.501000) [0.011211] (2019-01-06,15.000000) [0.014000] (2019-01-06,15.000000) [0.014000] (2019-01-06,12.550486) [0.014000] (2019-01-06,15.000000) [0.056585] (2019-01-06,15.000000) [0.056585] (2019-01-06,12.501000) [0.056585] (2019-01-06,15.000000) [0.056585] (2019-01-06,15.000000) [0.156104] (2019-01-06,15.000000) [0.156104] (2019-01-06,15.000000) [0.156104] (2019-01-06,12.501000) [0.156104] (2019-01-06,15.000000) [0.156104] (2019-01-07,12.600000) [0.099840] (2019-01-07,12.203499) [0.099840] (2019-01-07,15.000000) [0.099840] (2019-01-07,12.600000) [0.124562] (2019-01-07,12.600000) [0.124562] (2019-01-07,12.600000) [0.124562] (2019-01-07,15.000000) [0.124562] (2019-01-07,12.501000) [0.124562] (2019-01-07,15.000000) [0.124562] (2019-01-07,15.000000) [0.074774] (2019-01-07,14.999971) [0.074774] (2019-01-07,14.999970) [0.074774] (2019-01-07,15.000000) [0.074774] (2019-01-07,12.600000) [2.615420] (2019-01-07,12.501000) [2.615420] (2019-01-07,15.000000) [2.615420] (2019-01-07,15.000000) [0.010670] (2019-01-07,14.999922) [0.010670] (2019-01-07,12.600000) [0.162135] (2019-01-07,4.249680) [0.162135] (2019-01-07,12.600000) [0.222867] (2019-01-07,0.087133) [0.222867] (2019-01-08,12.726002) [0.035109] (2019-01-08,12.600000) [0.035109] (2019-01-08,12.501000) [0.035109] (2019-01-08,15.000000) [0.035109] (2019-01-10,14.999916) [0.011880] (2019-01-10,15.000000) [0.011880] (2019-01-10,12.600000) [3.763237] (2019-01-10,12.393883) [3.763237] (2019-01-10,12.510000) [3.763237] (2019-01-10,12.600000) [0.569350] (2019-01-10,12.501000) [0.569350] (2019-01-10,15.000000) [0.569350] (2019-01-10,15.000000) [0.569350] (2019-01-11,12.600000) [0.074113] (2019-01-11,0.480918) [0.074113] (2019-01-11,12.600000) [0.097601] (2019-01-11,12.600000) [0.097601] (2019-01-11,12.600000) [0.097601] (2019-01-11,4.208000) [0.097601] (2019-01-11,12.510000) [0.097601] (2019-01-11,8.504726) [0.097601] (2019-01-11,15.000000) [0.094241] (2019-01-11,14.999971) [0.094241] (2019-01-11,15.000000) [0.017649] (2019-01-11,14.999937) [0.017649] (2019-01-11,15.000000) [0.015648] (2019-01-11,14.999927) [0.015648] (2019-01-11,15.000000) [0.010656] (2019-01-11,14.999820) [0.010656] (2019-01-11,12.600000) [0.000618] (2019-01-11,0.138702) [0.000618] (2019-01-12,12.600000) [0.079248] (2019-01-12,0.090378) [0.079248] (2019-01-12,12.600000) [0.098969] (2019-01-12,12.501000) [0.098969] (2019-01-12,15.000000) [0.098969] (2019-01-12,15.000000) [0.098969] (2019-01-12,12.600000) [0.078695] (2019-01-12,0.157419) [0.078695] (2019-01-13,12.600000) [0.252401] (2019-01-13,4.291359) [0.252401] (2019-01-14,15.000000) [0.008970] (2019-01-14,14.999890) [0.008970] (2019-01-14,15.000000) [0.008970] (2019-01-14,15.000000) [0.032353] (2019-01-14,14.999945) [0.032353] (2019-01-14,15.000000) [0.015756] (2019-01-14,14.999927) [0.015756] (2019-01-14,74.900625) [0.200992] (2019-01-14,12.600000) [0.200992] (2019-01-14,12.600000) [0.200992] (2019-01-14,12.600000) [0.200992] (2019-01-14,12.600000) [0.200992] (2019-01-14,3.107507) [0.200992] (2019-01-14,12.510000) [0.200992] (2019-01-14,12.510000) [0.200992] (2019-01-14,12.510000) [0.200992] (2019-01-14,12.510000) [0.200992] (2019-01-14,15.000000) [0.009373] (2019-01-14,15.000000) [0.009373] (2019-01-14,15.000000) [0.009373] (2019-01-14,12.600000) [0.050347] (2019-01-14,12.501000) [0.050347] (2019-01-14,15.000000) [0.050347] (2019-01-15,12.600000) [0.098400] (2019-01-15,0.197788) [0.098400] (2019-01-15,12.600000) [0.139418] (2019-01-15,4.208000) [0.139418] (2019-01-15,4.668290) [3.964915] (2019-01-15,12.600000) [3.964915] (2019-01-17,15.000000) [0.088711] (2019-01-17,14.999975) [0.088711] (2019-01-17,12.501000) [0.061699] (2019-01-17,15.000000) [0.061699] (2019-01-17,15.000000) [0.061699] (2019-01-17,12.600000) [0.061699] (2019-01-17,12.600000) [0.174240] (2019-01-17,0.109024) [0.174240] (2019-01-17,15.000000) [0.014802] (2019-01-17,14.999922) [0.014802] (2019-01-17,0.000000) [0.000002] (2019-01-17,12.600000) [0.024995] (2019-01-17,12.599818) [0.024995] (2019-01-17,12.600000) [0.024995] (2019-01-17,15.000000) [0.024995] (2019-01-18,12.600000) [0.011982] (2019-01-18,12.726002) [0.011982] (2019-01-18,12.600000) [0.011982] (2019-01-18,12.501000) [0.011982] (2019-01-18,15.000000) [0.011982] (2019-01-18,12.600000) [0.186782] (2019-01-18,12.501000) [0.186782] (2019-01-18,15.000000) [0.186782] (2019-01-18,15.000000) [0.186782] (2019-01-18,15.000000) [0.018698] (2019-01-18,14.999864) [0.018698] (2019-01-18,15.000000) [0.018698] (2019-01-18,15.000000) [0.018698] (2019-01-18,15.000000) [0.186284] (2019-01-18,15.000000) [0.186284] (2019-01-18,12.600000) [1.884205] (2019-01-18,12.209326) [1.884205] (2019-01-18,15.000000) [0.028472] (2019-01-18,15.000000) [0.028472] (2019-01-18,15.000000) [0.028472] (2019-01-18,32.249746) [0.028472] (2019-01-19,12.600000) [0.097141] (2019-01-19,0.013512) [0.097141] (2019-01-19,12.600000) [0.096600] (2019-01-19,12.278889) [0.096600] (2019-01-19,11.346525) [0.124422] (2019-01-19,12.600000) [0.124422] (2019-01-19,12.600000) [0.124422] (2019-01-19,12.600000) [0.194724] (2019-01-19,4.620853) [0.194724] (2019-01-20,5.483094) [0.121516] (2019-01-20,12.600000) [0.121516] (2019-01-20,15.000000) [0.079965] (2019-01-20,15.000000) [0.079965] (2019-01-20,15.000000) [0.079965] (2019-01-20,12.501000) [0.079965] (2019-01-20,14.541376) [0.079965] (2019-01-20,12.600000) [0.079965] (2019-01-20,12.600000) [0.079965] (2019-01-20,12.600000) [0.079965] (2019-01-20,12.600000) [0.079965] (2019-01-20,13.489766) [0.079965] (2019-01-20,15.000000) [0.069965] (2019-01-20,14.999969) [0.069965] (2019-01-20,15.000000) [0.069965] (2019-01-20,15.000000) [0.059965] (2019-01-20,15.000000) [0.059965] (2019-01-20,14.999969) [0.059965] (2019-01-21,15.000000) [0.019869] (2019-01-21,14.999937) [0.019869] (2019-01-21,12.600000) [1.660927] (2019-01-21,12.501000) [1.660927] (2019-01-21,15.000000) [1.660927] (2019-01-21,15.000000) [0.149002] (2019-01-21,12.599996) [0.149002] (2019-01-21,15.000000) [0.149002] (2019-01-21,14.999932) [0.013695] (2019-01-21,15.000000) [0.013695] (2019-01-21,0.064048) [0.246767] (2019-01-21,12.600000) [0.246767] (2019-01-22,12.600000) [0.136635] (2019-01-22,12.486404) [0.136635] (2019-01-22,15.000000) [0.073070] (2019-01-22,14.999969) [0.073070] (2019-01-22,15.000000) [0.060162] (2019-01-22,14.999966) [0.060162] (2019-01-22,15.000000) [0.012124] (2019-01-22,14.999916) [0.012124] (2019-01-22,15.000000) [0.025987] (2019-01-22,15.230000) [0.025987] (2019-01-22,15.000000) [0.025987] (2019-01-22,15.000000) [0.025987] (2019-01-22,15.000000) [0.025987] (2019-01-22,15.229656) [0.025987] (2019-01-22,15.000000) [0.025987] (2019-01-22,12.501000) [0.025987] (2019-01-22,14.999927) [0.015940] (2019-01-22,15.000000) [0.015940] (2019-01-22,14.999922) [0.012789] (2019-01-22,15.000000) [0.012789] (2019-01-22,12.600000) [0.118554] (2019-01-22,4.887451) [0.118554] (2019-01-22,2.930724) [0.126600] (2019-01-22,12.600000) [0.126600] (2019-01-23,12.600000) [0.085597] (2019-01-23,0.047393) [0.085597] (2019-01-23,12.600000) [0.026950] (2019-01-23,12.600000) [0.026950] (2019-01-23,12.501000) [0.026950] (2019-01-23,15.000000) [0.026950] (2019-01-23,12.600000) [0.483168] (2019-01-23,12.600000) [0.483168] (2019-01-23,12.600000) [0.483168] (2019-01-23,12.600000) [0.483168] (2019-01-23,12.510000) [0.483168] (2019-01-23,0.000000) [0.023460] (2019-01-23,12.501000) [0.023460] (2019-01-23,15.000000) [0.075332] (2019-01-23,14.999966) [0.075332] (2019-01-23,12.600000) [0.011127] (2019-01-23,12.501000) [0.011127] (2019-01-23,12.600000) [0.040750] (2019-01-23,12.599953) [0.040750] (2019-01-23,15.000000) [0.050377] (2019-01-23,15.000000) [0.050377] (2019-01-23,15.000000) [0.050377] (2019-01-23,15.000000) [0.050377] (2019-01-23,14.885229) [0.050377] (2019-01-23,14.541376) [0.050377] (2019-01-23,14.198667) [0.050377] (2019-01-23,14.770459) [0.050377] (2019-01-23,14.655917) [0.050377] (2019-01-23,15.000000) [0.050377] (2019-01-23,14.999956) [0.033794] (2019-01-23,15.000000) [0.033794] (2019-01-23,15.000000) [0.010139] (2019-01-23,14.999911) [0.010139] (2019-01-23,15.000000) [0.021331] (2019-01-23,14.999941) [0.021331] (2019-01-24,15.000000) [0.084574] (2019-01-24,15.000000) [0.084574] (2019-01-24,12.501000) [0.084574] (2019-01-24,15.000000) [0.084574] (2019-01-24,15.000000) [0.084574] (2019-01-24,12.600000) [0.192603] (2019-01-24,12.600000) [0.192603] (2019-01-24,0.131854) [0.192603] (2019-01-24,15.000000) [0.027060] (2019-01-24,14.999945) [0.027060] (2019-01-24,15.000000) [0.025073] (2019-01-24,14.999949) [0.025073] (2019-01-24,14.999949) [0.025073] (2019-01-24,15.000000) [0.025073] (2019-01-24,15.000000) [0.027060] (2019-01-24,14.999982) [0.027060] (2019-01-24,15.000000) [0.026998] (2019-01-24,14.999949) [0.026998] (2019-01-24,15.000000) [0.026998] (2019-01-24,14.999949) [0.026998] (2019-01-24,12.600000) [0.133100] (2019-01-24,12.501000) [0.133100] (2019-01-24,15.000000) [0.133100] (2019-01-24,15.000000) [0.133100] (2019-01-24,12.600000) [0.832832] (2019-01-24,12.600000) [0.832832] (2019-01-24,12.600000) [0.832832] (2019-01-24,12.600000) [0.832832] (2019-01-24,12.600000) [0.832832] (2019-01-24,4.208000) [0.832832] (2019-01-24,11.748321) [0.832832] (2019-01-24,15.000000) [0.059819] (2019-01-24,15.000000) [0.059819] (2019-01-24,15.000000) [0.059819] (2019-01-24,14.430283) [0.059819] (2019-01-24,15.000000) [0.035811] (2019-01-24,14.999953) [0.035811] (2019-01-24,15.000000) [0.015710] (2019-01-24,12.501000) [0.015710] (2019-01-24,15.000000) [0.015710] (2019-01-24,15.000000) [0.015710] (2019-01-24,5.816835) [0.687428] (2019-01-24,12.600000) [0.687428] (2019-01-25,15.000000) [0.030989] (2019-01-25,15.000000) [0.030989] (2019-01-25,14.999916) [0.030989] (2019-01-25,12.600000) [0.364835] (2019-01-25,12.600000) [0.364835] (2019-01-25,6.087379) [0.364835] (2019-01-25,15.000000) [0.041044] (2019-01-25,14.999956) [0.041044] (2019-01-25,15.000000) [0.007362] (2019-01-25,15.000000) [0.007362] (2019-01-25,15.000000) [0.007362] (2019-01-25,12.501000) [0.007362] (2019-01-25,15.000000) [0.010221] (2019-01-25,14.999916) [0.010221] (2019-01-25,22.700000) [0.005667] (2019-01-25,12.600000) [0.119037] (2019-01-25,12.600000) [0.119037] (2019-01-25,12.600000) [0.119037] (2019-01-25,15.000000) [0.119037] (2019-01-25,12.712600) [0.119037] (2019-01-25,12.501000) [0.119037] (2019-01-25,15.000000) [0.119037] (2019-01-25,15.000000) [0.011439] (2019-01-25,12.501000) [0.011439] (2019-01-25,15.000000) [0.011439] (2019-01-25,15.000000) [0.011439] (2019-01-25,12.600000) [0.110708] (2019-01-25,12.258787) [0.110708] (2019-01-26,12.600000) [0.105188] (2019-01-26,12.600000) [0.105188] (2019-01-26,12.600000) [0.105188] (2019-01-26,7.839895) [0.105188] (2019-01-26,26.787600) [0.105188] (2019-01-26,12.600000) [0.070000] (2019-01-26,12.599930) [0.070000] (2019-01-26,15.000000) [0.070000] (2019-01-27,12.501000) [0.014457] (2019-01-27,12.600000) [0.014457] (2019-01-27,15.000000) [0.199680] (2019-01-27,14.231813) [0.199680] (2019-01-27,15.000000) [0.199680] (2019-01-28,15.000000) [0.038965] (2019-01-28,15.000000) [0.038965] (2019-01-28,12.501000) [0.038965] (2019-01-28,15.000000) [0.038965] (2019-01-28,12.600000) [0.235200] (2019-01-28,12.426473) [0.235200] (2019-01-28,12.600000) [0.156879] (2019-01-28,12.599849) [0.156879] (2019-01-28,15.000000) [0.156879] (2019-01-28,15.000000) [0.156879] (2019-01-28,15.000000) [0.014428] (2019-01-28,12.501000) [0.014428] (2019-01-28,15.000000) [0.014428] (2019-01-28,12.600000) [0.216010] (2019-01-28,0.173191) [0.216010] (2019-01-28,12.600000) [2.703762] (2019-01-28,12.249854) [2.703762] (2019-01-28,15.000000) [2.703762] (2019-01-28,15.000000) [0.027803] (2019-01-28,14.999873) [0.027803] (2019-01-28,15.000000) [0.027803] (2019-01-28,15.000000) [0.027803] (2019-01-28,15.230000) [0.509685] (2019-01-28,14.541376) [0.509685] (2019-01-28,15.345204) [0.509685] (2019-01-28,15.210769) [0.509685] (2019-01-28,15.230000) [0.509685] (2019-01-28,15.230230) [0.509685] (2019-01-28,15.000000) [0.509685] (2019-01-28,14.999990) [0.509685] (2019-01-28,15.000000) [0.115408] (2019-01-28,14.999982) [0.115408] (2019-01-28,15.000000) [0.012361] (2019-01-28,14.999927) [0.012361] (2019-01-29,15.000000) [0.095891] (2019-01-29,14.999969) [0.095891] (2019-01-29,12.600000) [0.107860] (2019-01-29,12.423063) [0.107860] (2019-01-29,12.600000) [0.100128] (2019-01-29,12.510000) [0.100128] (2019-01-29,12.600000) [0.089278] (2019-01-29,12.501000) [0.089278] (2019-01-29,15.000000) [0.089278] (2019-01-29,12.600000) [0.115974] (2019-01-29,12.510000) [0.115974] (2019-01-29,12.480871) [0.115974] (2019-01-29,15.000000) [0.068789] (2019-01-29,14.999949) [0.068789] (2019-01-29,15.000000) [0.059965] (2019-01-29,14.999963) [0.059965] (2019-01-30,15.000000) [0.009498] (2019-01-30,14.999904) [0.009498] (2019-01-30,12.600000) [0.219300] (2019-01-30,4.285007) [0.219300] (2019-01-30,15.000000) [0.168186] (2019-01-30,12.501000) [0.168186] (2019-01-30,15.000000) [0.168186] (2019-01-30,12.600000) [0.009241] (2019-01-30,0.113533) [0.009241] (2019-01-31,12.600000) [0.252096] (2019-01-31,12.600000) [0.252096] (2019-01-31,0.247255) [0.252096] (2019-01-31,14.999904) [0.022411] (2019-01-31,15.000000) [0.022411] (2019-01-31,12.600000) [0.538417] (2019-01-31,12.600000) [0.538417] (2019-01-31,7.149829) [0.538417] (2019-02-01,15.000000) [0.207322] (2019-02-01,15.000000) [0.207322] (2019-02-01,12.501000) [0.207322] (2019-02-01,15.000000) [0.207322] (2019-02-02,12.600000) [0.038259] (2019-02-02,12.600000) [0.038259] (2019-02-02,12.501000) [0.038259] (2019-02-02,15.000000) [0.038259] (2019-02-02,15.000000) [0.087439] (2019-02-02,12.501000) [0.087439] (2019-02-02,15.000000) [0.087439] (2019-02-03,12.600000) [0.557983] (2019-02-03,14.999983) [0.557983] (2019-02-03,15.000000) [0.557983] (2019-02-03,12.600000) [0.127364] (2019-02-03,12.501000) [0.127364] (2019-02-03,15.000000) [0.127364] (2019-02-03,15.000000) [0.018644] (2019-02-03,14.999937) [0.018644] (2019-02-03,15.000000) [0.199398] (2019-02-03,14.999969) [0.199398] (2019-02-05,0.000000) [0.004411] (2019-02-06,12.600000) [0.189960] (2019-02-06,0.061563) [0.189960] (2019-02-06,12.600000) [0.038073] (2019-02-06,12.501000) [0.038073] (2019-02-06,15.000000) [0.038073] (2019-02-06,12.600000) [0.053907] (2019-02-06,12.600000) [0.053907] (2019-02-06,12.501000) [0.053907] (2019-02-06,15.000000) [0.053907] (2019-02-06,12.600000) [0.013875] (2019-02-06,12.600000) [0.013875] (2019-02-06,7.922707) [0.013875] (2019-02-06,12.510000) [0.013875] (2019-02-06,12.510000) [0.013875] (2019-02-06,12.510000) [0.013875] (2019-02-07,12.600000) [0.833574] (2019-02-07,12.600000) [0.833574] (2019-02-07,12.305842) [0.833574] (2019-02-07,12.510000) [0.833574] (2019-02-07,12.600000) [0.019974] (2019-02-07,12.599740) [0.019974] (2019-02-07,15.000000) [0.019974] (2019-02-07,12.600000) [0.992294] (2019-02-07,12.599956) [0.992294] (2019-02-07,12.600000) [0.992294] (2019-02-08,12.600000) [0.020000] (2019-02-08,12.600000) [0.020000] (2019-02-08,12.501000) [0.020000] (2019-02-08,15.000000) [0.020000] (2019-02-08,15.000000) [0.029736] (2019-02-08,14.999871) [0.029736] (2019-02-08,12.600000) [0.015004] (2019-02-08,12.501000) [0.015004] (2019-02-08,12.600000) [0.087400] (2019-02-08,12.501000) [0.087400] (2019-02-08,15.000000) [0.087400] (2019-02-08,15.000000) [0.087400] (2019-02-08,12.600000) [0.079320] (2019-02-08,12.510000) [0.079320] (2019-02-08,12.600000) [0.011401] (2019-02-08,12.501000) [0.011401] (2019-02-08,15.000000) [0.011401] (2019-02-08,15.000000) [0.011401] (2019-02-09,12.600000) [0.175200] (2019-02-09,12.227568) [0.175200] (2019-02-10,12.600000) [0.176694] (2019-02-10,12.600000) [0.176694] (2019-02-10,12.510000) [0.176694] (2019-02-10,12.510000) [0.176694] (2019-02-10,12.510000) [0.176694] (2019-02-10,12.510000) [0.176694] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.409312) [0.387907] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.510000) [0.387907] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.510000) [0.387907] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.510000) [0.387907] (2019-02-11,15.000000) [0.784303] (2019-02-11,14.999986) [0.784303] (2019-02-11,12.600000) [0.940099] (2019-02-11,12.600000) [0.940099] (2019-02-11,12.398933) [0.940099] (2019-02-11,12.600000) [0.965544] (2019-02-11,9.988177) [0.965544] (2019-02-11,12.600000) [0.073200] (2019-02-11,12.494186) [0.073200] (2019-02-11,12.510000) [0.073200] (2019-02-12,12.600000) [0.105228] (2019-02-12,0.802815) [0.105228] (2019-02-12,12.600000) [0.019049] (2019-02-12,15.000000) [0.019049] (2019-02-12,12.501000) [0.019049] (2019-02-12,15.000000) [0.019049] (2019-02-12,15.000000) [0.011544] (2019-02-12,12.501000) [0.011544] (2019-02-12,15.000000) [0.011544] (2019-02-12,15.000000) [0.011544] (2019-02-12,15.000000) [0.023972] (2019-02-12,12.600000) [0.023972] (2019-02-12,12.501000) [0.023972] (2019-02-12,15.000000) [0.023972] (2019-02-12,12.600000) [0.193620] (2019-02-12,11.703230) [0.193620] (2019-02-12,0.000000) [0.193620] (2019-02-12,0.000000) [0.080827] (2019-02-13,12.600000) [0.136875] (2019-02-13,15.000000) [0.136875] (2019-02-13,12.501000) [0.136875] (2019-02-13,15.000000) [0.009965] (2019-02-13,14.999911) [0.009965] (2019-02-13,12.600000) [0.009965] (2019-02-13,12.365096) [0.009965] (2019-02-13,12.600000) [0.014039] (2019-02-13,12.501000) [0.014039] (2019-02-13,12.600000) [0.082630] (2019-02-13,12.599979) [0.082630] (2019-02-15,12.600000) [0.083336] (2019-02-15,0.110340) [0.083336] (2019-02-16,12.600000) [0.010249] (2019-02-16,12.501000) [0.010249] (2019-02-17,12.600000) [0.097085] (2019-02-17,12.475161) [0.097085] (2019-02-17,15.000000) [0.746763] (2019-02-17,12.600000) [0.746763] (2019-02-17,12.600000) [0.746763] (2019-02-17,12.600000) [0.746763] (2019-02-17,12.501000) [0.746763] (2019-02-17,15.000000) [0.746763] (2019-02-17,12.600000) [0.746763] (2019-02-17,15.000000) [0.746763] (2019-02-17,12.600000) [0.681562] (2019-02-17,12.600000) [0.681562] (2019-02-17,12.600000) [0.681562] (2019-02-17,15.000000) [0.681562] (2019-02-17,15.000000) [0.681562] (2019-02-17,12.501000) [0.681562] (2019-02-18,12.600000) [0.038964] (2019-02-18,12.501000) [0.038964] (2019-02-18,15.000000) [0.038964] (2019-02-19,15.000000) [0.015928] (2019-02-19,15.000000) [0.015928] (2019-02-19,14.885003) [0.015928] (2019-02-19,15.000000) [0.015928] (2019-02-19,12.600000) [0.074888] (2019-02-19,6.235381) [0.074888] (2019-02-19,12.600000) [0.074888] (2019-02-19,12.600000) [0.039553] (2019-02-19,12.501000) [0.039553] (2019-02-19,15.000000) [0.039553] (2019-02-19,12.600000) [0.016136] (2019-02-19,12.501000) [0.016136] (2019-02-19,15.000000) [0.016136] (2019-02-20,12.600000) [0.206586] (2019-02-20,12.501000) [0.206586] (2019-02-20,15.000000) [0.206586] (2019-02-20,15.000000) [0.252323] (2019-02-20,15.000000) [0.252323] (2019-02-20,12.501000) [0.252323] (2019-02-20,15.000000) [0.252323] (2019-02-20,12.600000) [0.233318] (2019-02-20,0.078104) [0.233318] (2019-02-20,12.600000) [0.261468] (2019-02-20,7.966759) [0.261468] (2019-02-20,12.510000) [0.261468] (2019-02-20,12.600000) [0.634800] (2019-02-20,12.600000) [0.634800] (2019-02-20,0.189821) [0.634800] (2019-02-21,12.600000) [0.200000] (2019-02-21,0.077727) [0.200000] (2019-02-22,15.000000) [0.073859] (2019-02-22,14.885200) [0.073859] (2019-02-22,15.000000) [0.073859] (2019-02-22,12.600000) [0.079792] (2019-02-22,0.039375) [0.079792] (2019-02-23,12.600000) [0.073098] (2019-02-23,12.599986) [0.073098] (2019-02-23,12.600000) [0.232502] (2019-02-23,0.166125) [0.232502] (2019-02-23,12.600000) [0.296413] (2019-02-23,12.600000) [0.296413] (2019-02-23,8.149699) [0.296413] (2019-02-23,11.514280) [0.296413] (2019-02-23,12.510000) [0.296413] (2019-02-24,15.000000) [0.084203] (2019-02-24,15.000000) [0.084203] (2019-02-24,15.000000) [0.084203] (2019-02-24,12.600000) [0.097994] (2019-02-24,0.179813) [0.097994] (2019-02-24,15.115000) [0.168687] (2019-02-24,15.000000) [0.168687] (2019-02-24,15.000000) [0.168687] (2019-02-24,15.000000) [0.168687] (2019-02-24,14.999843) [0.168687] (2019-02-24,32.250000) [0.168687] (2019-02-24,14.999937) [0.014524] (2019-02-24,15.000000) [0.014524] (2019-02-25,12.600000) [0.010183] (2019-02-25,12.501000) [0.010183] (2019-02-26,12.600000) [0.014802] (2019-02-26,12.501000) [0.014802] (2019-02-26,12.600000) [0.014159] (2019-02-26,12.501000) [0.014159] (2019-02-26,15.000000) [0.014159] (2019-02-26,0.078716) [4.380053] (2019-02-26,12.600000) [0.841789] (2019-02-26,12.600000) [0.841789] (2019-02-26,1.316114) [0.841789] (2019-02-26,12.600000) [0.075974] (2019-02-26,12.315898) [0.075974] (2019-02-26,12.510000) [0.075974] (2019-02-27,15.000000) [0.006163] (2019-02-27,14.999987) [0.006163] (2019-02-27,12.600000) [0.247800] (2019-02-27,7.880462) [0.247800] (2019-02-27,12.420072) [0.247800] (2019-02-27,12.510000) [0.247800] (2019-02-27,12.600000) [0.247800] (2019-02-27,12.600000) [0.247800] (2019-02-27,12.510000) [0.247800] (2019-02-27,12.600000) [0.247800] (2019-02-27,12.600000) [0.247800] (2019-02-27,12.600000) [0.716480] (2019-02-27,0.085413) [0.716480] (2019-02-27,12.600000) [0.795600] (2019-02-27,12.600000) [0.795600] (2019-02-27,12.600000) [0.795600] (2019-02-27,1.908485) [0.795600] (2019-02-27,12.600000) [0.795600] (2019-02-27,12.510000) [0.795600] (2019-02-27,5.694805) [0.353771] (2019-02-27,12.600000) [0.353771] (2019-02-27,12.600000) [0.353771] (2019-02-27,21.000000) [0.008899] (2019-02-27,20.999975) [0.008899] (2019-02-27,15.000000) [0.016006] (2019-02-27,15.000000) [0.016006] (2019-02-27,12.501000) [0.016006] (2019-02-27,15.000000) [0.084522] (2019-02-27,15.000000) [0.084522] (2019-02-27,15.000000) [0.084522] (2019-02-27,12.501000) [0.084522] (2019-02-27,15.000000) [0.084522] (2019-02-27,15.000000) [0.084522] (2019-02-28,12.600000) [0.134206] (2019-02-28,0.092907) [0.134206] (2019-02-28,15.000000) [0.194004] (2019-02-28,15.000000) [0.194004] (2019-02-28,15.000000) [0.194004] (2019-02-28,12.501000) [0.194004] (2019-02-28,15.000000) [0.012381] (2019-02-28,15.000000) [0.012381] (2019-02-28,15.000000) [0.012381] (2019-02-28,12.600000) [0.314580] (2019-02-28,12.600000) [0.314580] (2019-02-28,0.212064) [0.314580] (2019-02-28,12.600000) [0.381377] (2019-02-28,6.083836) [0.381377] (2019-02-28,12.600000) [0.533520] (2019-02-28,11.792585) [0.533520] (2019-02-28,12.600000) [3.291201] (2019-02-28,12.600000) [3.291201] (2019-02-28,7.622097) [3.291201] (2019-02-28,12.600000) [0.404664] (2019-02-28,0.107294) [0.404664] (2019-02-28,12.600000) [0.367120] (2019-02-28,6.935739) [0.367120] (2019-03-01,15.000000) [0.011735] (2019-03-01,15.000000) [0.011735] (2019-03-01,12.501000) [0.011735] (2019-03-01,15.000000) [0.120438] (2019-03-01,12.501000) [0.120438] (2019-03-01,15.000000) [0.120438] (2019-03-01,15.000000) [0.120438] (2019-03-01,12.600000) [0.020699] (2019-03-01,12.501000) [0.020699] (2019-03-01,15.000000) [0.020699] (2019-03-01,15.000000) [0.020699] (2019-03-02,15.000000) [1.047756] (2019-03-02,14.999853) [1.047756] (2019-03-02,15.000000) [1.047756] (2019-03-02,15.000000) [1.047756] (2019-03-02,15.000000) [0.012775] (2019-03-02,14.999922) [0.012775] (2019-03-02,12.600000) [0.033683] (2019-03-02,12.501000) [0.033683] (2019-03-02,15.000000) [0.033683] (2019-03-02,15.000000) [0.033683] (2019-03-02,15.000229) [0.187483] (2019-03-02,15.000000) [0.187483] (2019-03-02,15.000000) [0.187483] (2019-03-02,15.000000) [0.187483] (2019-03-02,12.501000) [0.187483] (2019-03-03,12.600000) [0.100810] (2019-03-03,0.083060) [0.100810] (2019-03-03,13.044883) [0.045360] (2019-03-03,12.501000) [0.045360] (2019-03-03,15.000000) [0.045360] (2019-03-03,13.489766) [0.038062] (2019-03-03,15.000000) [0.038062] (2019-03-03,12.501000) [0.038062] (2019-03-04,12.600000) [0.011672] (2019-03-04,15.000000) [0.011672] (2019-03-04,15.000000) [0.011672] (2019-03-04,12.501000) [0.011672] (2019-03-04,15.000000) [0.012069] (2019-03-04,15.000000) [0.012069] (2019-03-04,12.501000) [0.012069] (2019-03-04,15.000000) [0.012069] (2019-03-04,15.000000) [0.035524] (2019-03-04,12.600000) [0.035524] (2019-03-04,12.501000) [0.035524] (2019-03-04,15.000000) [0.035524] (2019-03-05,15.000000) [0.012815] (2019-03-05,14.999922) [0.012815] (2019-03-06,10.046344) [0.127440] (2019-03-06,0.202809) [0.127440] (2019-03-06,12.600000) [0.070601] (2019-03-06,12.600000) [0.070601] (2019-03-06,12.510000) [0.070601] (2019-03-06,12.061078) [0.070601] (2019-03-06,12.510000) [0.070601] (2019-03-06,12.510000) [0.070601] (2019-03-06,12.510000) [0.070601] (2019-03-06,15.000000) [0.008796] (2019-03-06,14.999873) [0.008796] (2019-03-06,15.000000) [0.008796] (2019-03-06,12.441284) [0.037382] (2019-03-06,15.000000) [0.037382] (2019-03-06,12.600000) [0.099200] (2019-03-06,0.049393) [0.099200] (2019-03-07,7.950361) [0.217861] (2019-03-07,12.106269) [0.217861] (2019-03-07,10.250087) [0.217861] (2019-03-07,12.600000) [0.217861] (2019-03-07,15.000000) [0.217861] (2019-03-07,12.600000) [0.071114] (2019-03-07,0.105452) [0.071114] (2019-03-07,11.794336) [0.071114] (2019-03-07,11.971509) [0.071114] (2019-03-07,12.600000) [0.019799] (2019-03-07,12.599906) [0.019799] (2019-03-07,12.600000) [0.019799] (2019-03-07,12.600000) [0.069599] (2019-03-07,12.599973) [0.069599] (2019-03-07,12.600000) [0.068155] (2019-03-07,12.599941) [0.068155] (2019-03-08,12.600000) [0.760989] (2019-03-08,12.312155) [0.760989] (2019-03-08,15.000000) [0.760989] (2019-03-09,12.600000) [0.102400] (2019-03-09,12.415083) [0.102400] (2019-03-09,12.600000) [0.078820] (2019-03-09,12.600000) [0.078820] (2019-03-09,12.510000) [0.078820] (2019-03-09,12.510000) [0.078820] (2019-03-09,12.600000) [0.097841] (2019-03-09,7.880462) [0.097841] (2019-03-09,15.000000) [0.097841] (2019-03-10,15.000000) [0.009579] (2019-03-10,12.501000) [0.009579] (2019-03-10,15.000000) [0.009579] (2019-03-10,15.000000) [0.028311] (2019-03-10,7.499910) [0.028311] (2019-03-10,15.000000) [0.016655] (2019-03-10,14.999927) [0.016655] (2019-03-10,14.999927) [0.013916] (2019-03-10,15.000000) [0.013916] (2019-03-10,15.000000) [0.009993] (2019-03-10,14.999911) [0.009993] (2019-03-10,15.000000) [0.009064] (2019-03-10,14.999843) [0.009064] (2019-03-10,15.000000) [0.004857] (2019-03-10,14.999897) [0.004857] (2019-03-10,12.600000) [1.443097] (2019-03-10,12.600000) [1.443097] (2019-03-10,7.966759) [1.443097] (2019-03-10,12.600000) [1.443097] (2019-03-10,15.000000) [1.443097] (2019-03-11,15.000000) [0.009930] (2019-03-11,14.999904) [0.009930] (2019-03-11,15.000000) [0.002856] (2019-03-11,14.999980) [0.002856] (2019-03-11,12.600000) [0.182918] (2019-03-11,12.412575) [0.182918] (2019-03-11,6.255000) [0.182918] (2019-03-11,12.600000) [0.028100] (2019-03-11,15.000000) [0.028100] (2019-03-11,12.501000) [0.028100] (2019-03-11,15.000000) [0.028100] (2019-03-12,12.600000) [0.085170] (2019-03-12,12.600000) [0.085170] (2019-03-12,12.510000) [0.085170] (2019-03-12,12.600000) [0.110230] (2019-03-12,12.510000) [0.110230] (2019-03-13,12.600000) [0.011335] (2019-03-13,12.600000) [0.011335] (2019-03-13,15.000000) [0.011335] (2019-03-13,12.501000) [0.011335] (2019-03-13,15.000000) [0.119549] (2019-03-13,14.999971) [0.119549] (2019-03-14,12.600000) [0.146141] (2019-03-14,12.600000) [0.146141] (2019-03-14,4.274724) [0.146141] (2019-03-15,15.000000) [0.004117] (2019-03-15,14.999966) [0.004117] (2019-03-15,25.878329) [80.475860] (2019-03-15,12.244052) [80.475860] (2019-03-15,11.685770) [80.475860] (2019-03-15,98.527136) [80.475860] (2019-03-15,12.600000) [80.475860] (2019-03-15,12.510000) [80.475860] (2019-03-15,12.600000) [34.164800] (2019-03-15,21.287446) [34.164800] (2019-03-15,15.000000) [0.060752] (2019-03-15,14.999961) [0.060752] (2019-03-15,12.600000) [0.859200] (2019-03-15,12.600000) [0.859200] (2019-03-15,5.951352) [0.859200] (2019-03-15,12.600000) [0.859200] (2019-03-15,12.600000) [0.859200] (2019-03-15,12.600000) [0.090044] (2019-03-15,12.490400) [0.090044] (2019-03-15,12.510000) [0.090044] (2019-03-16,12.600000) [0.083175] (2019-03-16,4.109352) [0.083175] (2019-03-16,12.600000) [0.432853] (2019-03-16,12.510000) [0.432853] (2019-03-16,12.510000) [0.432853] (2019-03-17,15.000000) [0.007830] (2019-03-17,15.000000) [0.007830] (2019-03-17,14.999922) [0.007830] (2019-03-17,191.450217) [0.009699] (2019-03-17,15.000000) [0.009699] (2019-03-17,14.999911) [0.009699] (2019-03-17,15.000000) [0.009398] (2019-03-17,14.999911) [0.009398] (2019-03-17,12.600000) [0.029547] (2019-03-17,12.484384) [0.029547] (2019-03-17,12.600000) [0.377443] (2019-03-17,8.013148) [0.377443] (2019-03-17,12.600000) [1.232478] (2019-03-17,12.286610) [1.232478] (2019-03-17,12.600000) [0.123264] (2019-03-17,6.666359) [0.123264] (2019-03-18,15.000000) [0.010000] (2019-03-18,14.999911) [0.010000] (2019-03-18,12.600000) [0.277144] (2019-03-18,12.510000) [0.277144] (2019-03-18,12.600000) [0.239401] (2019-03-18,7.966759) [0.239401] (2019-03-18,27.397345) [0.239401] (2019-03-18,12.600000) [0.067811] (2019-03-18,8.231562) [0.067811] (2019-03-18,12.600000) [0.032934] (2019-03-18,12.510000) [0.032934] (2019-03-19,12.600000) [0.012440] (2019-03-19,12.510000) [0.012440] (2019-03-19,12.378487) [0.394168] (2019-03-19,12.600000) [0.394168] (2019-03-19,12.600000) [0.022670] (2019-03-19,15.000000) [0.022670] (2019-03-19,15.000000) [0.022670] (2019-03-19,12.501000) [0.022670] (2019-03-19,12.600000) [0.015571] (2019-03-19,12.510000) [0.015571] (2019-03-19,12.600000) [0.041912] (2019-03-19,0.000000) [0.041912] (2019-03-19,15.000000) [7.090995] (2019-03-19,15.000000) [7.090995] (2019-03-19,12.600000) [7.090995] (2019-03-19,12.501000) [7.090995] (2019-03-19,12.600000) [0.038208] (2019-03-19,12.510000) [0.038208] (2019-03-19,12.600000) [0.080755] (2019-03-19,12.600000) [0.080755] (2019-03-19,12.510000) [0.080755] (2019-03-20,15.000000) [0.049599] (2019-03-20,14.999961) [0.049599] (2019-03-20,12.600000) [0.021598] (2019-03-20,15.000000) [0.021598] (2019-03-20,15.000000) [0.021598] (2019-03-20,12.501000) [0.021598] (2019-03-21,15.000000) [0.019880] (2019-03-21,14.999932) [0.019880] (2019-03-21,12.600000) [0.084753] (2019-03-21,11.971509) [0.084753] (2019-03-22,12.600000) [0.013446] (2019-03-22,15.000000) [0.013446] (2019-03-22,12.599889) [0.013446] (2019-03-22,12.510000) [0.016341] (2019-03-22,12.600000) [0.016341] (2019-03-22,12.600000) [0.018122] (2019-03-22,12.330216) [0.018122] (2019-03-22,12.600000) [0.029580] (2019-03-22,12.478339) [0.029580] (2019-03-22,12.600000) [0.004220] (2019-03-22,9.474403) [0.004220] (2019-03-22,12.600000) [0.033539] (2019-03-22,9.048363) [0.033539] (2019-03-22,12.600000) [0.556390] (2019-03-22,12.510000) [0.556390] (2019-03-22,12.600000) [0.009731] (2019-03-22,12.510000) [0.009731] (2019-03-22,12.600000) [0.074767] (2019-03-22,12.510000) [0.074767] (2019-03-22,15.000000) [0.003373] (2019-03-22,14.999971) [0.003373] (2019-03-22,12.510000) [0.058948] (2019-03-22,12.510000) [0.058948] (2019-03-22,12.600000) [0.058948] (2019-03-23,15.000000) [0.064667] (2019-03-23,15.000000) [0.064667] (2019-03-23,14.999927) [0.064667] (2019-03-23,15.000000) [0.064667] (2019-03-23,12.436404) [0.035200] (2019-03-23,12.600000) [0.035200] (2019-03-23,12.600000) [0.043789] (2019-03-23,12.510000) [0.043789] (2019-03-24,12.600000) [0.048000] (2019-03-24,12.461588) [0.048000] (2019-03-24,15.000000) [0.046518] (2019-03-24,14.999961) [0.046518] (2019-03-24,12.600000) [0.046518] (2019-03-24,15.000000) [0.046518] (2019-03-24,15.000000) [0.046518] (2019-03-24,15.000000) [0.046518] (2019-03-24,12.600000) [0.030430] (2019-03-24,6.992718) [0.030430] (2019-03-24,12.600000) [0.100346] (2019-03-24,6.227175) [0.100346] (2019-03-24,6.234469) [0.358551] (2019-03-24,12.600000) [0.358551] (2019-03-25,15.000000) [0.008306] (2019-03-25,14.999897) [0.008306] (2019-03-25,15.000000) [0.008306] (2019-03-25,12.600000) [0.012710] (2019-03-25,12.510000) [0.012710] (2019-03-25,15.000000) [0.012710] (2019-03-25,12.510000) [0.048222] (2019-03-25,12.510000) [0.048222] (2019-03-25,12.600000) [0.048222] (2019-03-26,12.600000) [0.006076] (2019-03-26,12.510000) [0.006076] (2019-03-26,12.600000) [0.790410] (2019-03-26,12.600000) [0.790410] (2019-03-26,12.510000) [0.790410] (2019-03-26,6.255000) [0.790410] (2019-03-26,12.600000) [0.475358] (2019-03-26,12.510000) [0.475358] (2019-03-26,12.600000) [0.061620] (2019-03-26,12.600000) [0.061620] (2019-03-26,0.000000) [0.061620] }; \ No newline at end of file diff --git a/reports/data/profit.csv b/reports/data/profit.csv new file mode 100644 index 0000000..6436ef0 --- /dev/null +++ b/reports/data/profit.csv @@ -0,0 +1,2135 @@ +0.22339082684357242 +3.3578718793528575 +0.10644380837132447 +-0.048267506385955616 +2.9648685142619784 +0.2783927581900196 +-0.001818361651562482 +0.01646897138374192 +0.001195079735970427 +0.11803137527117374 +-0.0034417515235737467 +-0.01544814799314409 +0.0005759136153519976 +-0.0011078740498630685 +-0.009180272172624307 +0.0015341019845725116 +0.0003064127696712892 +0.023887123953338085 +0.20968468747956204 +0.00044986311776020263 +2.0487265892149393 +-0.0175783355521273 +0.09013314568881114 +-0.012451147622126096 +0.0014301734258753789 +-0.002672499968710624 +0.012692002499999994 +0.009497281088386985 +-0.002940784597538465 +0.4144032326270229 +-0.018155382560419542 +-0.0672756395756906 +0.12969797700265293 +0.0023618438030313348 +0.5300410490368112 +0.09270809333548691 +-0.009455878966645723 +0.10492115478298139 +0.017901276793330922 +-0.027758561753324085 +-0.013057667561478123 +0.41412709753705823 +0.4448636743139591 +-0.002053645004420653 +0.03179620752723706 +0.021495984398263362 +0.033426485258391335 +-0.02228294901825438 +0.9364698229992869 +0.02349442709613895 +-0.01469107370955789 +-0.0038004486571041936 +0.000911612302001142 +0.022619940873085546 +0.00491345667175784 +-0.018274081682181392 +-0.004771240796197257 +0.0010775578914657483 +-0.07251098624122587 +0.011211626726016074 +0.0256906299996622 +0.004878128675355942 +0.3029591398067369 +-0.012615809354546273 +-0.0028449223217843905 +0.004547173329636887 +0.002342613943377151 +0.008878546952444749 +0.04436465712000001 +0.007711586915025541 +0.01662894462154208 +-0.00017027639989724164 +-0.0038595521350830164 +-0.007184384773834512 +0.3493130829 +0.0015903545534368358 +0.012910193726988924 +0.05180502393771215 +0.15712954754710184 +-0.0146998489768954 +0.011658449998999992 +-0.0037670624833434987 +8.680346753442478 +0.003959183628960687 +0.008169347845634008 +0.10575529310498735 +0.006691241875771289 +-0.014933192937440831 +0.012688408384079196 +-0.004727192455948548 +-0.024537533609910178 +0.06552740084597096 +-0.03857871512995428 +0.0008401357148696484 +0.027796845670909606 +0.0039133511997093496 +-0.0024639840093908637 +-0.0743431728263364 +-0.006606424221261037 +0.3541275444050431 +-0.0015495434405421518 +-0.031067480184486046 +0.2411789604958592 +0.0028939952373709978 +0.24042219486464708 +0.03250585812240555 +0.0034124313172386525 +0.0016523644821113143 +0.003664246815257644 +-0.010042777838889697 +-0.13265162142158726 +0.059513112872859236 +0.1421776260722529 +-0.008038614889802752 +2.2047948799851387 +0.02340677409090175 +-0.000875040785564855 +-0.0011245967581921187 +0.0129549914593934 +0.483934256 +0.027240264386544994 +0.2202460125837879 +0.01616570462621661 +0.024126616963032997 +-0.00016398143953150895 +-0.012956195261496772 +-0.0015329061382855329 +-0.02863585180392611 +0.024424541621246687 +-0.24327150172716472 +0.4974375867239626 +-0.0032518916507215667 +0.008422012840890005 +-0.000402047749244374 +-0.02170466936333708 +0.0011455724454177765 +0.0044233349291466495 +-0.02860851435238354 +0.02359543713733348 +0.002282028163104896 +0.13380369639446005 +-0.019971493822490527 +0.0233649746272111 +-0.036103556669461995 +0.022508485848828766 +-0.11514553455013588 +0.00716843676537382 +0.0017061795782400309 +0.15599000899441734 +0.3961765450292526 +-0.004834892341300089 +0.003759238403215258 +0.9886542474328076 +0.5618894880393936 +0.016109107466048003 +-0.014412463284008872 +0.24227413630754677 +0.27960011557607156 +-0.02972859507485706 +0.7667942488781476 +0.09479287852918654 +0.020990976204246878 +0.027458800693623036 +-0.03495663402677057 +-0.0004068536879484434 +0.22692343917600505 +-0.008299974760083012 +-0.06740758534570274 +0.0010767654846059052 +0.19061613800618457 +0.0011612314826278114 +-0.005133472620320042 +-0.08475956617107944 +0.04013583140876612 +-0.05013698665057578 +0.12540031316055023 +0.34503402443064235 +0.015822078038425447 +-0.004290081810439895 +-0.0026966463068513608 +0.0020443168005500048 +-0.004280848940325072 +-0.008556062416320807 +0.004321754033565524 +2.7465770105465546 +0.11718662785847234 +0.015058631475003796 +0.0715391386558438 +0.043870282175917 +0.08393635712819562 +0.00045215080445921985 +0.04778068415894125 +0.019554226442766165 +0.02937849589302649 +-0.32234350961851976 +-0.03424708256624094 +0.24607924805758805 +0.025712551282264736 +-0.0008911691352672287 +-0.042637000533115144 +-0.005424835769792913 +0.0012315549998081488 +-0.013329177855890662 +-0.01661753589099349 +0.008749282043541598 +-0.010090055946272158 +0.010854585458195704 +0.028904526064075932 +0.008759106480170972 +0.3349746404723584 +0.6630132281161383 +-0.013593157114233423 +0.00020840904593022805 +-0.012127600059900226 +0.05827893783071892 +-0.006571531009256795 +-0.05780788916081486 +-0.004608573029495126 +0.0027413235236399443 +-0.002957267651829293 +0.092145377835337 +0.002089585429459713 +0.4064180707547337 +-0.003838792012472895 +0.001990835107863659 +0.00036126539177285324 +-0.018466745106015564 +0.07926464159753828 +-0.005239651778341448 +-0.006543767979720505 +0.0026135933015130307 +0.004854530521219771 +-0.03705248848289727 +0.002084184690235552 +-0.016003575982013463 +-0.01715377950188715 +0.0005219676684137219 +-0.06704458255926515 +-0.006485204926461086 +-0.0008887281990153234 +0.030433341781312802 +0.23742810244339202 +-8.357262152214502e-05 +-0.10634695579477182 +-0.0062199880223814605 +0.055472231403027296 +-0.008092556478094953 +0.021123909828935212 +0.0010435540393382362 +0.13952283398386311 +0.05272259771654894 +0.03389186346160969 +0.0035465865538429897 +0.00668048479970994 +-0.0016423662476895435 +0.025116513169496507 +0.07092307760576277 +0.03641250603156267 +-0.0708515369233143 +-0.004763254017075488 +-0.026708484367842802 +9.797590796494296e-05 +0.029987045370853536 +0.0234783049149587 +0.03949742263904445 +0.045563770324227995 +-0.013880522196578336 +-0.023883386946525295 +0.001973289688343767 +-0.0021788965199523724 +0.4476130822764392 +-0.004561970815085143 +0.13860293411161534 +-0.021239383291447478 +0.0015754517099426674 +0.009026214589295025 +-0.007332420526154293 +-3.7296018315813306e-05 +0.2277894789154693 +-0.002626899940445765 +0.0023559198533882816 +-0.01602962159749382 +0.16913514311001243 +-0.01868172243297722 +-0.005799506449526551 +0.333269024975021 +0.016203156858778794 +0.344274008 +0.008052067412400006 +-0.06825834130778963 +0.04125480376626291 +-0.01487144594602581 +-0.0008494451969190252 +-0.005864939763518675 +-0.04475780118018996 +0.13564997671134832 +0.19596806183197682 +1.0779881464044854 +-0.003969798460702591 +23.018278323344173 +0.12479187489141162 +0.0012595579997092842 +0.09214199134666835 +-0.005348793305189128 +0.010764530390193833 +0.10798532760340729 +0.00527105046268022 +-0.0033124531819220537 +-0.004892137442600766 +0.0020212020312167164 +-0.002642298646484482 +-0.005388718188497682 +0.022671666114999996 +-0.13813194528338824 +-0.004369028996100026 +0.015804488783716084 +0.18877363560220325 +0.017236505194831803 +-0.004652640822124968 +0.032958166631001956 +0.029933007040000056 +0.03241658129586307 +-8.413934479532814e-05 +-0.005692036690753417 +0.000515767074156976 +-0.0012341871627677484 +4.9656282469681245e-05 +0.10640053263551967 +0.012893145780923874 +0.05922951900299549 +0.002448731699709157 +-0.002055754740468721 +0.011728232817186986 +0.059610688276320004 +0.002466445580041517 +-0.010017088011424868 +-0.02889177219368204 +0.15497382414754846 +-0.010700425585778578 +0.06378337260578153 +0.005913938999709626 +-0.01792657964716822 +-0.0044600280436053255 +-0.013283884257787384 +0.013549372412335225 +0.0009668363198119742 +0.1399690439920561 +-0.0007924886370304016 +-0.005433585777985579 +0.001549712810177968 +0.07203703041997045 +3.7987585492789986 +0.16628889468438837 +-0.09906372678157971 +-0.003956913740569598 +0.005735528108766154 +0.0012259922163650322 +-0.00018698940249041104 +0.03152708921235092 +-0.003237601362350403 +0.07248783176859824 +-0.0014671024454267281 +1.4129191029543555 +0.69437252288122 +0.03684474482883542 +0.4847979300102523 +-0.019521078367988956 +0.17934177782456445 +-0.0014146944142732487 +0.07527975355422001 +0.08473518691209989 +0.1360995507807642 +0.11033054903492065 +-0.013400470384649896 +-0.005788979439988268 +0.09363347676054853 +-0.00914494813686735 +0.18365670300000037 +0.21405548015107193 +0.15376111178287943 +0.018365184953123156 +0.005979003890788927 +-0.009801840346647363 +-0.030322295691723206 +0.007675033999709114 +0.005962540969040005 +0.3311338739799229 +0.25078436831938045 +0.033617029058081976 +0.0049192160000000274 +-0.0008629481997452018 +0.6374232016697187 +0.007513746497701593 +-0.0016820549645434543 +0.09386908594016273 +-0.001352018359897223 +-0.004376411290504929 +0.003270928712542448 +0.3003134693031444 +0.059997384992817676 +0.08562458736330729 +0.036630788412654935 +0.01406915717457857 +0.0010863152920509295 +-0.0008425513443693147 +0.09458692800000007 +0.05687970353381243 +-0.0016056823779533966 +0.0043269376632558525 +0.08409252193417997 +0.037641771915000004 +0.0007139030246148537 +0.35115387245782115 +0.6434793948479409 +0.004785589921025006 +-0.01821532351239538 +-0.0016150346391812578 +0.08748218725974213 +0.005499563656600004 +0.014317686113935931 +-0.009900351922403537 +0.1428697106165155 +0.029570704636935063 +0.0027305742926564402 +-0.020554048375710593 +-0.005495613332844998 +0.0022377184769903982 +-0.0069765716947660095 +-0.06272832859740271 +0.01006139072039023 +0.4217308659178581 +0.007429282506972824 +0.5274823697102511 +0.06465304012923906 +0.08160205463883337 +0.013594754843254172 +-0.0024204019540649407 +0.20903923338818436 +0.06850765283397572 +0.7708202524441573 +0.18611011926202803 +0.023190857103484223 +0.00010345754541391666 +-0.02432654399822834 +-0.0023406384990156126 +-0.004389276031028656 +0.0066744990404755886 +0.0035643984160263053 +0.0012595579997092842 +-0.02455033483715484 +7.749716298108576 +-0.0249076316311779 +-0.030861526144312618 +0.08396580243763892 +-0.003968879318325147 +-0.010719368649415043 +-0.02538980633982235 +0.059443668670579874 +0.21801607998863998 +0.023774013855514115 +0.005470402917574703 +-0.0018637879999999826 +-0.010581753301843924 +-0.007944556217139603 +-0.0014235412043080292 +0.810820162106934 +-0.0022081977069665047 +0.0012404667987506168 +0.08277930375342285 +0.44936487102176026 +0.018019006175 +0.050706061859974304 +-0.006062932117017056 +-0.021080317525763906 +0.02341625674745411 +0.18266649264003115 +0.15212473233206172 +0.017254244479206766 +0.017189228749430154 +-0.0018556948324401357 +0.005748430913161077 +0.19707873761405253 +0.5837650918296019 +0.2555262086259728 +0.08117735917576725 +0.014641830304510946 +0.06876320340568647 +0.6029219749479591 +0.13243311579540473 +-0.0116220590982642 +-0.014829901798730602 +-0.05826536331526133 +0.5581329819368558 +0.004153036323763959 +-0.05017936654793842 +0.0009139788549305632 +-0.021996565316924774 +0.00028988994523874295 +0.02045986680134241 +0.004035076174800641 +0.03101165913121953 +0.03437146162453027 +0.007815872800000052 +3.6931639792159783 +0.014557745639492206 +0.0006472619921069345 +0.34249781277295105 +0.014432990780075927 +-0.07277664901396896 +-0.04187894367490122 +-0.03025884934112616 +0.01261814 +-0.0023282904301591897 +0.5539303386409887 +0.001556194910826994 +0.00038406658951332527 +-0.0018778109524657024 +0.10059891470485494 +0.2080198372551998 +0.008231786075566364 +0.05571713798098767 +-0.013146267721477894 +-0.005664974967986319 +0.0031742242643722184 +0.0010559342573511106 +0.011128697733685994 +0.21637784470958166 +0.0015100485511297251 +0.07651503778213006 +-0.005164192588466175 +0.051567260947631505 +0.07529979446142898 +0.002753411691666036 +0.004114176211384456 +0.006700243471000001 +0.002166409575280392 +0.045446338043004283 +0.04101236663990519 +0.038930188013716414 +-0.005748219395343548 +0.15231045301599766 +0.23520752124948183 +-0.004952493007039135 +0.5723278381131012 +0.0029443113322725843 +0.006616456774692183 +0.06828555430078419 +0.021123909828935212 +0.013780501678070897 +0.0033117778178845883 +0.019718161369967763 +0.034078942870694656 +0.07368364385461064 +-0.0015193578684632829 +0.04025038900794124 +-0.00654546891153325 +0.02333952591261329 +-0.003964358089519289 +0.5564272495548348 +-0.0335415236087587 +0.7129028508493119 +1.650172540416245e-05 +-0.0013862724705655943 +-0.025851780716794823 +0.2675860490406126 +0.2544350392956217 +0.03010904 +0.07304808315008354 +0.002134539703654896 +0.0002431298008411971 +-0.0060727914071821015 +0.011390788357563408 +-0.017376427714233006 +0.020962476530393348 +0.11017728620756487 +-0.008824232462495682 +0.049583172409218904 +0.017481629476239352 +0.00355305929103035 +-0.07541342152704575 +-0.004002561695699663 +0.0004954580130390566 +-0.05141287398778199 +0.038300773110678574 +0.49260069099999965 +-0.007048416318360704 +-0.011331792307541111 +-0.00781931709651826 +-0.002028628990397855 +-0.021196056421688703 +0.061685359399631025 +-0.002608700565966078 +0.3085392351768347 +0.010574729487124783 +0.13430852699980883 +-0.008093484924100044 +0.044084128 +0.09276784817618791 +0.07425202689224361 +-0.011756569298173827 +-0.006492216940714696 +-0.06041814135570345 +0.004564769499854834 +0.5471158721729512 +0.03447909850358033 +-0.006789294010654673 +0.016335155443385017 +0.08433241003351417 +0.008412658024699999 +0.1314136067386173 +0.0030613322648192663 +0.014092893587808394 +0.015822530418624806 +0.03758323 +0.061196955848370885 +0.1945604189 +0.13040786455227082 +0.00142849361956017 +0.0918084084159767 +0.048488465831035235 +4.837947252974914e-05 +-0.03679993917579785 +0.05153812512941537 +-0.09398280379681412 +-0.017788642808926405 +-0.0032170979440136784 +-0.006735849027950255 +-0.00020317615381955888 +-0.007454286041554882 +0.011307982557295915 +0.02910783507483452 +0.10501413809830921 +-0.006399880922655574 +0.09441242197722903 +0.028076744134779022 +0.01852876723229107 +-0.004171342966632949 +0.06497532248416685 +0.047063343297949575 +0.02602635879025645 +-0.002677002105623322 +0.019758648508191347 +-0.06972399938352564 +0.0046461000000000054 +-0.0027007126428580715 +0.09281738794964259 +0.08052249014778108 +-0.006770130335192262 +0.0008326346459768819 +0.028331220714269106 +-0.0006486403453585671 +0.12264195094231307 +7.051409804336625 +0.00048346375422252813 +0.01201779704614021 +-0.03079342718959338 +0.04464507371904466 +0.0006165421644565095 +0.2638146335985911 +0.00041583703895107897 +0.0006581626626536163 +0.006721246370405807 +-0.001180743300099648 +-0.019696464396301974 +0.10241570898223273 +0.0054919973028991174 +0.00048670667330364716 +-0.00023962811226611522 +-0.01124948108056869 +0.057759937173826575 +0.15242885612635518 +-0.24838285349634615 +0.10818048664133052 +-0.0007036634530952369 +0.0027526319665385265 +-0.02657117091136718 +0.2703474848776091 +0.01802356753095343 +-0.008320233305794664 +0.23261301277688193 +0.26933004463701016 +0.04997819444197566 +0.40156580646490364 +0.24140491481142412 +0.011392946028770556 +0.03400096723332004 +0.011967595287695455 +-0.0010460998832965245 +0.010020264791433198 +-0.041690986012260456 +-0.004318262335372799 +0.006474590418290514 +0.06735424370998214 +0.027180738108090408 +0.020631438560892612 +-0.0022386909368114667 +-0.002718810039677458 +-0.018998372264620977 +0.016010202028323005 +0.009817863593216 +0.00022497221044443655 +0.023691165542753266 +-0.004772577303487784 +-0.05647356452805258 +-0.031547050122697734 +0.06037791747996644 +-0.01746178920510555 +0.534733455414673 +0.028083510861118738 +-0.022810531485170232 +0.030490393070456 +0.09248615440996755 +0.00018195214483088005 +-0.005209295255404055 +0.2881036875005506 +0.000448541051097354 +-0.009334424631949688 +0.21779647598458246 +0.014052316206339843 +0.0049916205701990984 +0.049180175042995315 +0.017058021203272444 +-0.031743430346765605 +-0.0195915359626693 +0.3498849229118692 +1.8894292436102074 +0.004817483690345035 +-0.0036396785485576268 +0.018352862297296237 +0.03442382802799125 +0.11172267702568581 +-0.06497862776833307 +0.01272296002558796 +0.01252682823168028 +4.673825206630289e-05 +-0.0041853372196305715 +0.05014611994940532 +0.005019902374729558 +0.20484055899943018 +-0.002544406675659413 +0.00671870368000024 +0.22648281890397506 +-0.0007105072936263116 +0.1850654373903557 +0.03069809539390694 +0.05000846067337179 +0.027002674628460677 +0.02938127858024986 +0.01766956992797411 +0.34449333361380596 +-0.014856572919138195 +0.23080765872036263 +-0.007210033369246294 +0.4485816859999996 +0.04912704617404258 +-0.018455765156408233 +0.030169786097925737 +0.1006537213377198 +-0.03448657187398616 +-0.005240208616569698 +0.00017825437234209734 +-8.732159718999322e-06 +0.024546034049174187 +0.03582006757516357 +0.007334680901901625 +0.0027379645533799676 +-0.00024769432869895837 +0.0056299645708863325 +0.17104512975478603 +0.02097565651399658 +0.06981324644714196 +0.46602524578680105 +0.001926024449148087 +0.008935529659907342 +0.0007086589071616644 +-0.004483252115618638 +0.13393180026783988 +-0.0017640102742063953 +0.06629518692003201 +-0.003845565533354238 +0.05298464800000001 +-0.002905393797576728 +0.059312204990614674 +0.1428943726579902 +0.018857886799 +-0.1187208912396337 +-0.009944040895858864 +1.186689805968534 +0.011066788663898682 +-0.0023400405012687156 +0.23170042217700354 +-0.060720927796806407 +-0.02676466633050234 +0.03259873 +0.01813769656383376 +0.2754678518406847 +0.022409882848234187 +0.008337412724620637 +0.16107981606497707 +-0.0035235820390543543 +0.0039133511997093496 +-0.02910499513254411 +0.006694360032315095 +0.23644074331468146 +0.0014071116520732955 +0.005494315479810691 +-0.000792783191638391 +-0.02909125752002567 +0.01903562350649996 +0.069470411137689 +0.07887977999823789 +0.3065139882376453 +-0.07565965374246231 +0.004664470472207164 +0.030072294090909998 +-0.028712808580953014 +0.05811903306210812 +-0.0041555139008397565 +-0.01572121212566463 +0.17043056850573912 +0.004034090808047286 +-0.0019857250582024366 +-0.0049062837662518805 +0.002342712739620211 +-0.00022549557649645044 +-0.006143733787937422 +0.026185746231211587 +0.001854376234036349 +3.988210463952424e-05 +0.07276254644760609 +-0.013568171479631415 +0.0035137807302598016 +0.0038233511996943496 +-0.004123517137884135 +0.100894574065842 +0.18428141732389225 +-0.0014989995906832844 +0.0012595579997092842 +0.024428894 +-0.0014146703999999097 +0.08845464830410471 +-0.013769619485635105 +-0.006959298785166594 +0.026811200556107112 +-0.021853563472715026 +0.0669578157647148 +0.009581158670202343 +0.19323028751967775 +0.0007676344329847519 +5.377741634877518 +-0.008787989370419344 +-0.02244163034882691 +0.16480973475621447 +0.08828165141602941 +0.064109545787949 +0.05792120385197364 +0.7879523557828172 +0.22877472305264307 +0.0479047680479177 +0.008484614995 +-0.006893538091388891 +0.32590766441999997 +-0.022034686614817223 +0.004947202517687051 +0.01887422763500594 +-0.0025649370987085827 +0.13467294785211695 +-0.0006931379654957423 +0.0002870361998472382 +-0.02740152361213563 +-0.004868333092028738 +0.006057616690488404 +0.20398409999940031 +-0.002600240710499045 +0.0015264212990120588 +-0.0019995075101410624 +0.0002430265172727636 +0.022684465579948448 +0.1935722902879998 +0.03084104164419999 +0.000863752303558566 +0.2986371597917038 +0.8047449542244529 +-0.0010424405494727437 +0.01287150289389123 +0.11060736317889473 +0.02768466143641713 +3.408909678784541 +-0.0038131906908638845 +0.37758373965811803 +0.03358417017434538 +0.007234523938344062 +0.032192620719742264 +0.5313883387724879 +-0.0014608526598197946 +-0.04122005732847603 +0.20207570750821993 +0.005110092815480041 +-0.002788665149543443 +0.010143940481613866 +0.2074722492961554 +0.0008401357148696484 +-0.0015837034822105064 +0.0775022565825309 +0.06209619159490303 +0.012308566924295088 +0.0012560508169248072 +0.024633767999999997 +-0.1647030143328998 +0.10075837860320887 +0.012262267773384392 +2.6670136371300477 +-0.021607669350693665 +-0.00021809430329810652 +-0.0024561754432006807 +0.0015116439058929438 +-0.00018925137242466888 +0.034074629488666394 +0.006085162142000054 +0.028232033922248732 +0.0009501864749600145 +0.005134431999709565 +0.20523786434146346 +-0.005169487255942212 +0.09568209497194363 +0.005616904274292352 +-0.001384933128735888 +0.07124324573842096 +0.010342968177957223 +0.09066755519852464 +-0.0021806089067001877 +-0.024953192601315302 +0.034375967505301905 +0.029638457024538344 +-0.003100899576580468 +-0.0027649818182954172 +0.8365574728566513 +0.253488656409386 +0.04399865904000019 +0.15762058881869243 +0.05564391735742699 +-0.00804805383833275 +-0.02529174169584926 +0.169232297272245 +0.08370559757181242 +-0.009532715684336734 +-0.0005806109639499655 +0.01868944325301848 +0.027116277725384375 +-0.10037208777488704 +0.2544795568898975 +-0.0046821676492631165 +-0.00041770371039309695 +0.022806285700465778 +-0.00613604959135302 +-0.12129689285062578 +0.013022498898321203 +0.002798104321875004 +0.4441047512548366 +0.004319026078318259 +0.05474441788723895 +0.37981553199999996 +0.03684150055357932 +-0.0006243408344550529 +0.0006492140132306227 +0.03304373166679997 +0.4718490943792292 +-0.01492867075746275 +0.0014557315906112579 +-0.045551522557352564 +0.002121939505061836 +0.001501077166312894 +0.529112732552935 +0.028254312950724114 +-0.0045509177372260595 +-0.002334220829442341 +-0.008125615757959358 +0.004936757329229121 +0.022860702568847098 +0.022325589476133084 +0.0038233511996943496 +0.1139557174528001 +-0.014174379120435232 +0.00015716803625492708 +-0.020662961357731283 +0.16105994814362706 +0.018347566933892414 +0.0029251198501393265 +0.7956064104993993 +0.01448680684623861 +0.010618707090741343 +9.057482615872775e-05 +-0.011276470323100224 +-0.0006599171828098813 +-0.011080528014835028 +0.0695122915297682 +-0.0018061990521748908 +-0.005321769194039948 +-0.0017372895131901461 +-0.02331918607625859 +-0.012312107705323719 +0.28517959717129326 +0.10536260481634258 +0.21996378503545438 +0.028620620241653336 +-0.0026832132763555117 +0.019986743969425434 +0.4568722642788249 +0.020975606383727828 +0.07078961728889936 +-0.009350970735817352 +-0.004217373174134318 +0.02328413340634161 +0.14778391700510193 +-0.04798356752698213 +-0.011583902797343028 +0.001970902579611019 +0.05752376499786874 +-0.012828911313021482 +0.06361790648600651 +0.06283890528189184 +0.019970767317689694 +-0.0006798126905724292 +-0.006749071512809249 +0.018221411220765996 +0.01134538507828219 +0.0006528001042652662 +0.05071769330928119 +-0.1439939312631666 +0.03865488985839986 +0.030557648022326325 +-0.0035752394418321256 +0.04742310860966681 +-0.015612140322659958 +0.010539016842596963 +0.3377610778161098 +0.01414552603395379 +-0.04377930702821775 +0.004646501999709099 +0.6356405199416584 +0.0012886223698963181 +0.010116933569997842 +-0.004138482379588394 +4.1588671188663175 +-0.004031159340917967 +0.009648151753336085 +-0.010697182555913079 +0.05122216599457041 +-0.0011336514450648871 +0.05994477965358101 +0.031459709191151125 +0.21738255919253355 +0.0007128962743884089 +1.0731314002331076 +0.008819076052252411 +0.01849198306171214 +0.03943953105128322 +0.6625713289682322 +6.0141057426285616e-06 +0.026865787217259574 +-0.003128652484355055 +0.02359543713733348 +0.012090859306554047 +0.217269479888644 +0.001722649784684352 +-0.046824031879811684 +0.0054355647140371804 +-0.2847794528388513 +-0.0005261988334399267 +-0.05022485639971064 +0.04802852023408093 +-0.022118428230625292 +0.09452865596794259 +-0.005313175464119361 +0.016250174153417167 +0.10342589969416795 +-0.01303710010841281 +0.012814204427426475 +1.0067779364299905 +0.004013540480000138 +-0.001125261962117934 +0.04670729479247496 +-0.0197296799449347 +0.043996970897210004 +0.0985979400404497 +-0.007099633712496042 +0.09307507019088537 +-0.044481697999911696 +0.1483778447627342 +0.005778143373601203 +0.8626769690137595 +-0.00718913626949505 +0.002098004327223405 +-0.0020511133173065008 +0.0011195928454199346 +0.008189935218955516 +-0.010352422518643697 +-0.01746037008647472 +0.009008117344035893 +0.016604006120121705 +0.11495527459150917 +0.11414535706923484 +0.031044238044032026 +0.07980643609491939 +0.0008326346459768819 +0.009798788270476297 +0.22688301353532905 +-0.0027537494887966 +-0.0035794836210936397 +0.26267739504357857 +-0.011655764616689102 +0.003684291830444622 +0.4616821496488671 +-0.0008083039005984446 +0.12124753324230642 +0.25619798084707324 +0.005226188000046645 +-0.0282271615249063 +0.45335084999999903 +0.07607572916631093 +0.036505247468426205 +0.8730106027691387 +0.0621785362230352 +0.019914451114833573 +0.05967762178423203 +6.595368689999721 +0.0002992940965147097 +0.029614359912019373 +0.11655150000000003 +0.026837483731993263 +0.6036677695763615 +-0.09153640401576113 +0.17485981104097567 +0.08993992100000002 +-0.07330562516528699 +-0.02224494668972258 +-0.00526436779962168 +0.024227309957177676 +-0.022516964075171883 +0.17279746979562793 +0.26477477631726204 +0.016882899796784517 +0.0013148381976703857 +0.07782192921316201 +-0.01305533169947781 +-0.003722419189120316 +0.3248230428253994 +-0.0034458913619032847 +0.37211448939849257 +0.11375683906936597 +0.029627610091022306 +-0.011399157994428921 +0.06386044288928033 +0.010789168264483272 +0.012524178855124177 +0.310972701670163 +-0.004039623108256864 +0.007458482137392181 +0.019323153320824286 +-0.00046039646842442085 +0.002519424642995736 +0.04498487076351218 +0.01462371530178827 +-0.01313970988417199 +-0.006319699950249242 +-0.001356305408316355 +0.0008873022711307493 +-0.004171049155976755 +0.1535940237487916 +0.36664327066395896 +0.07337939152288346 +0.03377567061776636 +0.5875604597323266 +-9.046933878914531e-05 +-0.002371094036237815 +0.09226122682669091 +0.009519332416282587 +0.0037070264846092837 +-0.01106965389391227 +-0.012993327806216579 +0.11004506113815041 +0.01061605253454139 +-0.018342435891383763 +0.01064142771681744 +0.00048022083514140737 +-0.0029501189317877076 +-0.03378537506258808 +0.18078751111096947 +0.02522482065697436 +-0.02176794243659602 +0.009610019929947365 +0.06979600576375232 +0.006841308260000035 +0.029466082739218823 +0.09048130607280805 +0.35999629504630426 +0.004642716160000004 +0.3061334358748049 +0.022201920834408022 +0.5839355703917799 +0.24710419310806872 +0.015073291707309434 +-0.0356444664499439 +-0.005471932896401778 +-0.003387219804182849 +-0.006816690291801986 +0.002381399491007973 +0.023057181132764577 +0.02025645298416253 +-0.048170411196662016 +-0.0033567912225156496 +-0.00022732353701753957 +-0.0373374118778258 +0.012244254314787099 +0.165245375402 +0.06804627635260183 +0.05406043799999999 +0.0011934661259738293 +0.12568003838502922 +0.1600247948404634 +0.0005263114166542109 +-0.0011821675163547311 +0.007690024524154654 +0.018382970399723156 +0.007235327812820001 +0.03931400734967254 +0.18111977543910185 +0.007207740987295125 +-0.014422046527935939 +0.018746262740647748 +-0.008083432774045232 +0.07960698580978386 +0.006867761964807501 +-0.027413224493221977 +-0.0017834160671861693 +-0.026104034001862952 +0.0740359830683672 +-0.007921868693987325 +-0.0033959686208213033 +-0.04069689954405098 +0.00938199655675321 +0.05348903584338965 +-0.0763496801357959 +-0.0021629340094176126 +0.02341625674745411 +0.29713833819603686 +0.016087870926920766 +-0.03293166189708263 +0.010590654460000005 +-0.010749854558271599 +0.0015078175539891096 +0.0020542839442090908 +0.08404970446101417 +0.05667705720695945 +-0.06313588518676067 +0.6249444970773398 +0.041534599557336946 +-0.0023034108785021674 +0.5327133463922891 +0.001132615999847239 +-0.004925752072415883 +0.006940751005893783 +0.0009453765771626314 +0.06421357578443893 +0.03286894009986621 +0.013823256614731792 +-0.005983894441331135 +-0.0037597606413885022 +0.02420279687841679 +-0.002146047950701566 +-0.17038417326644173 +0.006887535989709435 +0.07239690042555824 +0.011963769970861494 +-0.002371485667563976 +0.0032399161600000156 +-0.013115114066807551 +-0.001981810801605338 +-0.014377250757048723 +0.0021475439514757905 +0.009231881422111812 +0.03737177107815495 +-0.0030340478529955056 +0.003993062777511448 +0.010785142328065277 +-0.003177218238318534 +0.03929615896138114 +0.09937712495428618 +-0.06744651206396812 +0.20195858141645928 +0.010200627838953329 +1.2024652043446729 +0.016775195189573176 +0.20077027646100565 +0.025614611280000393 +0.00766544728679534 +0.2439414173 +0.05190007469887938 +-0.002948413320100169 +-0.11928225158926917 +0.06039053825909477 +-0.0003017481097644034 +-0.005843697938521325 +-0.0018485207222094513 +0.04734883297218301 +-0.048035260886246905 +0.04375999852928725 +0.31204697666718284 +0.026181421029573743 +-0.028698933700386717 +0.00924094541147525 +0.1164758539067966 +-0.16356569710481506 +0.10254473417150503 +0.2142271361359347 +0.23958862915414375 +0.17251791131145292 +0.0049996839998545355 +32.5614008 +0.0015266637542225292 +0.21499111534419818 +0.008487930424 +-0.004604987471904529 +0.21229456544394074 +-0.0009670079783187773 +-0.0005526916054068819 +0.002651302099999999 +0.03037901095355696 +0.0048956154859206725 +0.039385714169576556 +0.029523215199171036 +0.02105648034526747 +-0.01839045412100153 +0.031728415829115675 +0.051552637415589325 +7.0719876055999995 +-0.06074829467328355 +0.16769449180359114 +-0.003019529891809626 +-6.200797128076523e-05 +-0.00198158121206507 +0.0010716324230571669 +0.0033835535028036642 +0.00718118589983358 +0.006511687587033618 +0.3360291943497576 +8.266632814845668 +-0.04223680496241511 +-0.0030507076564570985 +0.002749479148940909 +-0.012770530142821757 +-0.002245549720025622 +-0.003323795135856157 +0.015808034934175718 +-0.010450103039933961 +-0.017563218015645976 +0.24606837287828592 +0.03296779558529639 +-0.003045841535822026 +0.0022776848899059045 +0.059218844795825724 +0.2827889802233014 +0.0132577621000938 +-0.024109563463903028 +0.24790140515503611 +0.004550412325912422 +-0.009491673205763843 +1.6420446551367927 +-0.007184382616651764 +3.5943660659914967 +0.47608409320992506 +0.08425867548329628 +0.059334060932940115 +0.0016743980491784522 +0.011517437292564683 +0.7269090881914195 +-0.001959737113965951 +0.11180238983840503 +0.012782627343579316 +0.06358926928209793 +-0.0891553618020087 +0.02902017237152103 +1.1024595878831485 +-0.010085396275028802 +0.0006029447637805775 +0.008616876360000116 +0.026877470749709285 +0.07929068102240001 +-0.05255379690737766 +0.0012419039529099948 +-0.004033512443350038 +-0.009656169654758098 +0.00043158331733012326 +0.0030903242835215866 +-0.020426777764971732 +-0.0017095531065595866 +0.003080644489861 +0.005714558999709627 +0.00108473385045868 +0.10081887590793895 +0.002734399693438014 +-0.023924048341680076 +-0.04252941732276838 +0.004398729924692563 +0.005866451399868446 +0.0711963469963505 +0.24591946919100383 +0.103412293662209 +0.24633983980793078 +-0.012960576169143201 +-0.015541111651526412 +0.011847386162798297 +0.037021790992500435 +-0.03368010862326232 +0.02676964031455556 +0.17983290824302126 +0.00675504600248281 +0.35840037730136914 +-0.006605589863248027 +0.09695375207420709 +-0.0009331682025286413 +-0.02410738302571415 +0.001014919239824311 +33.8081992 +-0.0005919112618654951 +0.0034408969795515568 +-0.0002779073876070792 +-0.007175085909607484 +0.18199167489938106 +0.008425834698183593 +-0.0038091997804307904 +0.417946226966154 +0.0969055301771243 +0.0032246991700125537 +1.6038715501418e-05 +0.05114029544469893 +-0.009259233159461675 +0.04161274712800005 +0.02514733163257382 +0.005227157828631406 +0.06141590207283565 +0.4834178192820501 +0.7098140916929225 +-0.028731030901820123 +-0.01475550986314808 +0.08662609875700991 +-0.01821552529731449 +1.8099759514991998 +0.01728204197729678 +-0.02281973582521435 +0.0482922428119333 +0.011228737232246488 +0.1824517317208855 +0.1097547197861746 +-0.01872342773206688 +-0.0005665144625105686 +-0.024323890944568743 +-0.008411673309029102 +0.0012511381619909126 +-0.03111586130866499 +0.013597399271277427 +-0.0020780148612606804 +0.11087070879842326 +-0.01288109454457452 +-0.03045039106151176 +0.018596188357459825 +0.1587604687763881 +0.03958828577018317 +0.0007822263112427716 +-0.017048263174051885 +-0.0021153509179089973 +0.00048022083514140737 +0.027264449650000015 +0.07023074697005349 +-0.021971008335868 +0.0009248186748255782 +-0.006773603830849691 +-0.010092316360138479 +-0.005217373704971117 +-0.002392650039890077 +-0.008443758562786882 +0.007339059040000045 +0.01858351790646187 +0.05835101037796591 +0.4019928587088301 +0.5260237812676365 +-5.9194531344002044e-05 +0.3318310704106373 +0.016006817403528814 +0.19652048846246514 +-0.005670911036622234 +0.007923439999854995 +0.02235601694996901 +0.009031825597103558 +-0.0056159854529806985 +0.2633891686880354 +-0.02921738897620227 +-0.027494833205764194 +-0.025038937755374996 +2.7469877400382763 +-0.010113827876916899 +-0.06562395837885737 +1.2748584943891652 +0.030793624960001514 +0.016671936442874975 +0.08215758147035804 +0.06387994569541945 +0.02416552671032754 +0.6169369050516925 +0.043786908935356326 +-0.003521838150632641 +0.6594302347007707 +0.002917708647281164 +2.47915611089805 +0.0892766259927811 +0.0034584210984517083 +0.014669002118847724 +0.011200671283228623 +3.0545290439907364 +-0.002321001410914951 +0.04293305894871266 +0.0008476367837624184 +-0.0018782738868659242 +0.03127734399989072 +-0.008483793195217124 +-0.0004504769326200411 +-0.004865849299137231 +0.0035279242343671706 +0.005019413717378213 +-0.05897549918629846 +0.2055991356185356 +0.04620538633299662 +-0.002648989329252057 +0.042232619088027376 +-0.012757448326035592 +0.13164301097361078 +0.0032118383258351695 +-0.01621351639921148 +0.2747364119459683 +-0.0009920565649740795 +0.01579075764331616 +0.009183486376614855 +0.03258593699223207 +0.01983701843147704 +-0.018901424779968923 +0.02963512448193672 +0.14290527303161168 +0.07372656891368667 +-0.004356143306333021 +-0.01226199474161279 +4.8124717901394665e-05 +0.00569378717012608 +0.037548542922949776 +0.010322756866568535 +0.043098933549625636 +1.6262452068753146 +-0.005172920667771724 +0.021677486354340747 +0.11031206999859113 +0.09134123839311215 +0.035620323733856485 +-0.10067473037284463 +0.07998888585554786 +0.00020537212808185816 +0.010202737247293429 +0.2054253932375139 +0.0701541740712244 +6.6893310806462325e-06 +0.0309704437332 +0.0003230993183956088 +-0.01667844424756526 +0.047450255976434194 +0.009360570333891552 +0.0380049158327999 +0.0005485228102052025 +-0.0019557171667878917 +0.07132299387591577 +-0.05529836613559175 +0.0003191325007389223 +0.13806571681935498 +-0.005458199625388238 +-0.007197929502259819 +-0.07861012940145262 +0.0075080551267735635 +-0.002555594212501698 +-0.002798235505424289 +0.03802591339243509 +-0.029278423855066682 +-4.994638021567268e-05 +-0.001767185014090275 +0.18852571199999998 +-0.0008270160716676647 +0.17360401585943222 +-0.0011086819335416834 +-0.01115340069961375 +0.010245008714078643 +-0.0037863617738641622 +0.07016874688467636 +0.03600803926328866 +0.31499082958921554 +0.012121253678330477 +0.014869060883432234 +-0.001293091237975684 +0.005909372365854705 +-0.33468008886763134 +-0.03567999644620601 +0.018434378031683494 +-0.03060983248702759 +-0.004055605076245871 +-0.0015959258078945358 +0.01361174399971001 +0.029245433108522328 +-0.07304488441799872 +0.24554978280957362 +0.023435093945381374 +0.0916665836970566 +-0.00029214615275899997 +0.05347067637177572 +0.060607258354363994 +-0.005808127785831847 +0.03244330411038668 +-0.003881524928154592 +0.05727599791323333 +-0.027522801906739558 +0.03261478849698882 +0.017035964998573187 +-0.015526184354960865 +0.002975639999854736 +0.08741521588736109 +-0.002407585131243256 +-0.00019189038076857304 +-0.0017142297150709185 +0.02857932069588562 +0.039487212221199997 +0.20740970274855525 +0.00064288783552887 +0.13774519611756894 +0.032121938381748 +0.0010255022294533168 +0.017806647398521863 +-0.004720200771699684 +0.019153627068425244 +0.1255805814785948 +0.07035716231771624 +0.01356286097041874 +0.155182351813079 +0.005340428600837924 +0.005199924532718527 +0.08530541966141027 +0.013091349184799785 +0.001067885895087932 +1.620649256 +-0.023163053216224402 +0.02367297743400585 +0.0020671387283338997 +-0.002736317059549506 +-0.016425572697685964 +0.09196514372848115 +0.0724383340535759 +0.0075347759996692585 +0.07435837314649035 +0.007939144183910242 +0.06177460239393501 +-0.009267074296219507 +0.11407652527392084 +-0.28363564342078096 +0.05073871625518494 +0.1005349573283805 +0.07013596640210767 +0.2792985201041707 +-0.023330804228612168 +0.042528535179835084 +0.002765741022620936 +0.0007650748823568587 +0.00011041018183727963 +0.020982850177250583 +0.02388642639511216 +-0.023435133736415772 +-0.006087192875150794 +78.75596 +0.08257738330253829 +0.00552203052315945 +-0.0006104751769320498 +0.012144454935475061 +0.027484019735458765 +-0.007512266381125898 +-0.005919566161556852 +0.16086205098552991 +0.09821537604843728 +0.12793840951555488 +0.77269645418834 +0.0025149372094164556 +-0.018574232810856156 +0.017595126217894323 +-0.002137047797005895 +-0.002893380940301147 +0.14012739802252966 +-0.031692775085493174 +0.7584406517298644 +0.0010243237301549926 +0.003899345425797146 +0.04242180861347646 +0.01420946146479744 +-0.0024673758618430214 +0.11475669793896179 +-0.09401065595722095 +-0.00193530795500633 +0.0013254316521903362 +0.009965090754479341 +-0.030197919845730004 +0.00041652739513817205 +-0.00018629959917535778 +0.18148230795234002 +0.005013067180521557 +0.03316714244045492 +-0.0037437262418587545 +0.10997176033374287 +-0.002001037453495346 +-0.007042743332931922 +0.002949159034100719 +0.15560458027117713 +-0.007234982915161704 +-0.001988021566981057 +0.10204275978289383 +0.1473455603017496 +-0.04339674812350497 +-0.022046628677556718 +0.12113612577685175 +0.008014251514591453 +0.011384711153756819 +-0.00042946291744243477 +0.03892016735872733 +0.002426909551344017 +0.34722860599875405 +0.05478114400000005 +-0.005149256437624206 +-0.0045021571457061 +-0.0017437712727061128 +0.0002776116248259901 +-0.032021397690059086 +0.08197642800184486 +-0.013695767607973648 +0.04319916502833631 +0.002155251049807989 +0.0008452252097753687 +0.014591383521085001 +-0.017499173512904725 +-0.0008593348114740353 +0.002673181999709565 +0.19050635183695874 +0.018108376018380612 +0.006154100578597818 +-0.026184601957047166 +-0.003174148975741687 +0.00964935256336534 +-0.0011335004544669267 +0.034491991630062 +0.09307636177809744 +0.002252136123852319 +0.13877290719172614 +-0.002393479670883422 +0.024501920143190394 +0.016379147753298514 +0.0016078686172197182 +0.029661091424605934 +-0.04722869357338563 +0.00078585837050359 +-0.018548080382640726 +0.0214767177033071 +17.06643159966407 +0.0440921227300895 +-0.0018674915279259623 +0.05170920145264152 +0.023553133039800226 +0.03278559359762706 +-0.015345408278113315 +0.005819233499709626 +0.0017747653518850309 +-0.004168044153752801 +0.118067359948289 +0.055503431206849654 +0.00931456207438073 +-0.018218305748201047 +0.0015778682116150324 +-0.03461411183803331 +0.010627523342447907 +-0.027398556781097427 +-0.08146793245863082 +-0.003646758963786311 +-0.06120660844923714 +-0.06135045958679655 +-0.0531280718668051 +0.012603734994409047 +0.024538115221133177 +0.09968198384718757 +0.26298061729348027 +-0.03985623844878855 +0.035930388286627174 +0.05143744363404585 +1.3373045807707702 +0.011827762217393878 +0.006905971694277049 +0.0015735150456656494 +0.05022181662935099 +-0.0012667928343296584 +0.0044196738000000305 +0.03246878226238387 +0.007347531613818847 +-0.000727567401243738 +-0.014202969317615596 +0.01634090604259614 +0.02029225295020535 +-0.0004424506917363111 +-0.02258324795021674 +-0.008226829084561613 +0.13546243639905023 +-0.0018502744957889245 +-0.0027100501002709707 +0.06542467147324932 +-0.011684710605933658 +0.09366873145946178 +-0.007128911570327134 +0.5527551386349644 +-0.03735580029337798 +0.021341752525485654 +-0.04955699031213123 +-0.021960508578058396 +0.10251216433542736 +0.03629952140727453 +-0.00043590156558948956 +0.006970677999854768 +0.0035496464918580717 +0.017505854230335016 +-0.003834475757899948 +-0.015230191948415961 +0.006549087876235041 +-0.002919371086981506 +0.004506538778573856 +0.012037438926543551 +0.0025099074997237316 +0.1430137426356745 +0.040245639604107125 +0.019877246850751044 +0.051689296486861006 +0.014831976905460093 +0.47558760690717944 +-0.03743054704113344 +0.010632457106670832 +0.7770820782843493 +0.013019051866597589 +0.15152466722847732 +0.6833869024605254 +0.08437012589939105 +-0.0052497401858538 +0.02902135152337514 +0.25607241683826515 +0.012379769889376162 +0.08909667695131483 +0.0011715482046287928 +0.1535343247740262 +0.4844775067177284 +0.0013049588997094764 +-0.00042020508876326745 +-0.04250009993943604 +0.055511982971447875 +0.3349486671833888 +-0.014709446804424632 +-0.018986339650415185 +0.14237092395180934 +-0.6868602077774759 +-0.0018427370535414444 +-0.004458701795799569 +-0.0020708730559810123 +-0.018513941854183785 +0.01506738791052192 +0.06081338641645369 +0.005592494363438529 +0.3062626782098873 +0.24110917627399958 +0.007428128705600036 +-0.00695025975661084 +0.03858730849385285 +0.11208107319510227 +0.0017603889976472893 +0.0032342804900778463 +0.03953239686307486 +0.0029375169600000008 +0.01610934928771998 +3.3070547978182363 +-0.0065116432790670135 +0.06555895982082213 +-0.0031572864747671237 +-0.011423565831922548 +0.41259466958578495 +0.010791763846372373 +0.011168024932730253 +-0.016096237764834376 +0.0739185454874381 +0.006811200224672215 +-0.0393349212712637 +0.003525504917643099 +0.007539020059943686 +0.00694457786687463 +0.04052965951398322 +-0.008018601169453743 +0.010933307774780396 +6.388721536235153e-05 +-0.002609336299784895 +1.3662262193564312 +0.030068696007241907 +-0.004733300502601408 +-0.0016144264845901531 +-0.004329761018676836 +-0.014051074265590796 +-0.015765349108998794 +-0.028881076778862508 +3.1357651951538976 +0.008931537169697565 +-0.13238713591407703 +0.04814354246543471 +0.0347999666025423 +0.014032356622879874 +0.014962960246989676 +0.14961664994645676 +-0.015856863109631372 +0.2990870750704931 +0.006789789128272205 +0.0854224866663257 +-0.045997589032458375 +0.16810840423282303 +0.026003105657538973 +1.420812708241047 +-0.00688003452050779 +-0.17002437362601852 +-0.07978110035114933 +0.13373119089363167 +0.023864383094233072 +0.5416727424506176 +0.18098042726081434 +0.02701547035086925 +-0.0021561075505192526 +-0.12460052705373703 +-0.012240851033822622 +0.14992531218179556 +0.0271542492599971 +-0.014583610666197871 +0.16803555526516692 +0.47317617100016757 +0.002448731699709157 +0.020923289962788194 +0.0028919779651697813 +-0.009108572820535343 +0.18812944678278862 +-0.013937757440532834 +-0.007523486046428184 +0.25934298139009954 +0.04504382147283628 +0.11421208344552962 +0.08246074569416934 +0.0010142148619526562 +0.007225550832594923 +0.008539906939545792 +0.09829101235195409 +0.04217957244517163 +-0.003910630889448964 +-0.004348156861259125 +0.055929072684281045 +0.0323318500142732 +0.0026222167546630457 +0.26366528310726844 +0.22458401999970812 +-0.0025584436594570173 +-0.012963347075403121 +0.04455772703893336 +0.055936218808108784 +0.0901151932031351 +0.002190234130531942 +0.2002322637772746 +0.06224937008507819 +-0.0005294417525210458 +0.056438762023593575 +0.08341121573622416 +0.002448731699709157 +-0.008528024038679638 +0.044649303442629476 +0.02498726215526062 +0.0039133511997093496 +0.0002906798155456157 +0.0287208010432438 +0.0074926713380033105 +-0.02777142890397198 +0.004190541102350953 +3.1408597099448494 +-0.07332789265209416 +0.005421077699999997 +0.0008426615928370483 +-0.0027059129128860783 +0.009076459625529533 +-0.06173317927279398 +-0.001069414966996203 +0.22388585776113112 +0.0023419058933571574 +0.05132785130243034 +0.1110989504615509 +-0.05493007618058704 +0.9942283961884496 +-0.001521893750352112 +0.2504945932771422 +0.0945428733447213 +-0.005000849822068099 +0.013264245518104015 +0.04591508135704908 +0.1231908685171736 +1.392000241385035 +0.033169461182973384 +0.008995332689708906 +-0.01652199810928924 +-0.012046695828417789 +0.008406715354413076 +0.002255617151614188 +-0.05630404900503139 +0.07797244777584628 +-0.011903450132800607 +0.026565096854760148 +0.0003660254688964762 +0.08158786800000001 +-0.03159644407612716 +0.0054831327994828705 +0.0012595579997092842 +-4.8429068517005444e-05 +0.25741476701664223 +0.018126644332112585 +-0.007809177076427504 +0.04089020514210309 +-0.03428044873032857 +0.0400814855104228 +-0.0006288867178886864 +-0.015890774678652284 +8.209479729703803 +-0.017550825121817257 +0.37246376737510395 +-0.029425597762137018 +0.03194376691652247 +-0.008382625267127557 +0.0007195613061244249 +-0.06255853444467407 +-0.0021101413342469177 +-0.00863268585469354 +0.04439169768163215 +-0.0022559996946104575 +0.004190506945274612 +0.08856668896989942 +0.007498159590000028 +-0.003128612191120001 +-0.003755660035509742 +0.14706197116862407 +0.0046592613832159985 +0.04986990800607921 +0.6443423584786556 +0.18998276105165401 +0.014763888086936877 +0.061892329025388895 +0.019794119158909572 +0.0034185603255553025 +-0.012980122559383002 +0.004651434154725003 +0.24449038597793793 +0.05630683434529857 +-0.008055640179448612 +0.027108509917886343 +-0.0027904209368875763 +-0.015870519039572345 +-0.011295343856973356 +0.0007595374065975935 +0.0386684284206701 +0.0652516623875084 +1.305330189712159 +0.06380734437617024 +0.21454125010449135 +-0.045276433679618755 +0.03804205859220705 +-0.0029142263646538963 +-0.0013677640476141562 +-0.004860610207215449 +-0.0077796741630282995 +0.12470561501088928 +0.00023903635146543985 +-0.00819384854905661 +0.004797808697037879 +0.013506007054005613 +0.12887242644434 +0.0015640453887418929 +-0.004224092080344945 +-0.004064249868675433 +2.572509821754336 +0.08181017422387757 +-0.030443240278222622 +18.31954642987133 +0.006625980562126909 +0.11924771226580512 +0.17695245282850786 +0.039926983986811306 +0.03179967575482293 +-0.0024863414889699353 +0.015578285133014513 +-0.002315444565547442 +0.11026361222002676 +0.007674585999709049 +-0.004017758489604773 +0.12064587613999993 +0.0020687669369207663 +-0.0038863309229500848 +0.033851458421379904 +0.06323950427233818 +0.024820192119377645 +0.04465938621545129 +-0.013745756752401597 +0.07744292444751216 +0.12415339778473025 +-0.006512729958177022 +0.18708849429219565 +-0.0007733041863107271 +-0.003258230002106975 +-0.0024435839232296655 +-0.04898319470770196 +0.028969205740204007 +-0.004582556568673641 +-0.5476335669868511 +0.1645187304163286 +0.05499460569983937 +0.011162768325526349 +0.2228074861745828 +0.016141617612346504 +0.023126630451716017 +0.05251900663340088 diff --git a/reports/data/ratios.csv b/reports/data/ratios.csv new file mode 100644 index 0000000..832528f --- /dev/null +++ b/reports/data/ratios.csv @@ -0,0 +1,138948 @@ +0.794995 +0.602130 +0.758111 +0.973136 +0.012980 +0.763550 +0.748307 +0.498658 +0.258526 +0.105897 +0.132023 +0.944569 +0.691561 +0.513888 +0.931284 +0.580242 +0.918552 +0.208348 +0.552345 +0.059839 +0.412886 +0.398368 +0.748633 +0.462983 +0.718197 +0.644206 +0.901917 +0.796828 +0.744748 +0.181569 +0.930338 +0.843318 +0.120175 +0.697326 +0.931462 +0.710623 +0.403720 +0.679004 +0.737033 +0.237214 +0.139264 +0.288200 +0.846628 +0.582425 +-0.407924 +0.822956 +0.426670 +0.730665 +0.986460 +0.604903 +0.096452 +0.148881 +0.458447 +0.846876 +0.867346 +0.962460 +0.618431 +0.333416 +0.283674 +0.667299 +0.914880 +0.059635 +0.941663 +0.861574 +0.854642 +0.916551 +0.942635 +0.958260 +0.573211 +0.893473 +0.763937 +0.339916 +0.858008 +0.705234 +0.673948 +0.933614 +0.793381 +0.364686 +0.391871 +0.994729 +0.189514 +0.357868 +0.561606 +0.627126 +0.443179 +0.888069 +0.011504 +0.206531 +0.705484 +0.528001 +0.968946 +0.302836 +0.745920 +0.937594 +0.952357 +0.890683 +0.918652 +0.772213 +0.762213 +0.040524 +0.265212 +0.739788 +0.846026 +0.929415 +0.845724 +0.473416 +0.493910 +0.723955 +0.701965 +0.963367 +0.457818 +0.888702 +0.639215 +0.846678 +0.508709 +0.395987 +0.465146 +0.927213 +0.935657 +0.387441 +0.935159 +0.729568 +0.921615 +0.954930 +0.875126 +0.497812 +0.933421 +0.275086 +0.646703 +0.493730 +0.354999 +0.936850 +0.797250 +0.639996 +0.665545 +0.528463 +0.902003 +-2.330325 +0.900732 +0.990693 +0.986564 +0.861828 +0.523714 +0.739181 +0.454970 +0.233466 +0.522845 +0.427887 +0.467287 +0.756685 +0.683974 +0.495837 +0.515148 +0.693127 +0.720555 +0.702546 +0.666278 +0.654418 +0.716401 +0.951388 +0.502296 +0.897879 +-0.054543 +-0.002489 +0.857995 +-0.016072 +0.405990 +0.089118 +0.455013 +0.064683 +0.220398 +0.456461 +0.303550 +0.321012 +0.284063 +0.735134 +0.935170 +0.581424 +0.514704 +0.900164 +0.769141 +0.366937 +0.926475 +0.856877 +0.705465 +0.538262 +0.401210 +0.681226 +0.778683 +0.404094 +0.319887 +0.899321 +0.038875 +0.293329 +0.460928 +0.739990 +0.887609 +0.930599 +0.679509 +0.756257 +0.645967 +0.934984 +0.931396 +0.743982 +0.930547 +0.932104 +0.788421 +0.789669 +0.482360 +0.846049 +0.943520 +0.398117 +0.906806 +0.738875 +0.273875 +0.425680 +0.446008 +0.959813 +0.062953 +0.851542 +0.942743 +0.915461 +-0.039420 +0.927259 +0.907410 +0.856417 +0.935268 +0.968975 +0.493290 +0.430121 +0.718760 +0.811549 +0.718876 +0.359396 +0.987562 +0.793532 +0.743494 +-23.675313 +0.720209 +0.718257 +0.725494 +0.346381 +0.590595 +0.728513 +0.781860 +0.491338 +0.793721 +0.276512 +0.663451 +0.417945 +0.749961 +0.155509 +0.756167 +0.198734 +0.807944 +0.671192 +0.472150 +0.964165 +0.339995 +0.855839 +0.691322 +0.318082 +0.759273 +0.739598 +0.399429 +0.714812 +0.730806 +0.631226 +0.425174 +0.799699 +0.791710 +0.166773 +0.804434 +0.811989 +-442.104242 +0.514069 +-49.463463 +0.906025 +0.901618 +0.771185 +0.598643 +0.678403 +0.793714 +0.892875 +0.973483 +0.938750 +0.602916 +0.201753 +0.425284 +0.115986 +0.311778 +0.876845 +0.745317 +0.273446 +0.375800 +0.170928 +0.425348 +0.409805 +0.476997 +0.333622 +0.792099 +0.862250 +0.628091 +0.397271 +0.709501 +0.563082 +0.468813 +-0.134266 +0.939710 +0.861272 +0.577946 +0.845536 +0.749203 +0.759932 +0.703374 +0.981766 +0.742250 +0.842565 +0.804753 +0.919241 +0.435754 +0.251667 +0.137781 +0.184287 +0.991143 +0.174112 +0.464905 +0.590209 +0.994534 +0.890148 +0.981602 +0.463471 +0.040711 +0.724965 +0.204952 +0.215017 +0.510845 +0.169854 +0.589582 +0.371846 +0.488300 +0.350512 +0.977165 +0.896041 +0.609866 +0.087697 +0.471075 +0.112349 +0.030539 +0.875533 +0.573190 +0.894453 +0.973544 +0.659754 +0.066170 +0.281970 +0.350474 +0.846719 +0.200804 +0.977759 +0.057974 +0.226722 +0.237404 +-1.945171 +0.822190 +0.750620 +0.818528 +0.843596 +0.236323 +0.684054 +0.830022 +0.032177 +0.337412 +0.747391 +0.983914 +-17.366705 +0.764034 +0.617158 +0.817252 +0.679195 +0.482515 +-0.178826 +0.783258 +0.856970 +-20.532622 +0.693964 +0.996519 +0.879116 +0.467530 +0.853057 +0.859881 +0.850118 +0.677428 +0.580461 +0.511924 +0.869344 +0.064844 +0.508242 +0.564762 +0.256988 +0.208250 +0.534559 +0.715413 +0.929955 +0.313460 +0.552242 +0.907474 +0.574239 +0.570416 +0.348681 +0.893467 +0.331718 +0.236904 +0.295418 +0.966249 +0.132753 +0.681996 +0.666581 +0.579927 +0.501610 +0.500472 +0.542035 +0.340454 +0.462068 +0.260354 +-2.886679 +0.633552 +0.763112 +0.850432 +0.232623 +0.907366 +0.634307 +0.172829 +-0.557929 +0.615814 +0.394794 +0.974513 +0.894463 +0.026564 +0.034352 +0.167136 +0.735775 +0.934663 +0.292673 +0.603365 +0.336421 +0.584578 +0.459373 +0.565868 +0.788338 +0.946774 +0.930165 +0.754630 +-0.187554 +-0.081999 +-0.313874 +0.914779 +0.970750 +0.841784 +0.810774 +0.629577 +0.761176 +0.820179 +0.773114 +0.892420 +0.764985 +0.080999 +0.488534 +0.586607 +-1.082060 +0.891113 +0.970172 +0.720371 +0.468879 +0.785735 +0.886435 +0.949287 +0.755047 +0.790808 +0.916287 +0.782435 +0.793111 +0.951466 +0.930749 +0.974723 +0.771063 +0.541207 +0.831915 +0.989361 +0.758804 +0.582086 +0.758260 +0.894284 +0.839337 +0.805280 +0.933624 +0.798796 +0.538361 +0.885828 +-0.292207 +0.555878 +0.593834 +0.932723 +-0.186378 +0.885840 +0.885840 +0.503414 +0.517694 +-0.243842 +0.413508 +0.316163 +0.884518 +0.954554 +-0.097912 +0.838092 +0.486774 +0.885787 +0.832548 +0.027122 +0.844372 +0.212687 +0.673498 +0.934314 +0.862250 +0.861596 +0.346188 +0.812688 +0.890088 +0.914215 +0.628711 +0.785310 +0.548941 +0.870413 +0.891855 +0.861485 +0.555413 +0.932466 +0.803688 +0.819661 +0.384330 +0.424554 +0.199089 +0.253534 +0.862836 +0.795672 +0.904522 +0.867139 +0.745309 +0.882338 +0.638787 +0.836629 +0.326796 +0.973597 +0.973260 +0.840511 +0.711563 +0.907170 +0.083951 +0.902143 +0.469905 +0.963185 +0.744323 +0.368058 +0.975912 +0.659320 +0.731999 +0.491736 +0.598009 +0.510388 +0.509025 +0.969852 +0.761143 +0.268063 +0.822319 +0.420109 +0.925397 +0.349369 +0.362927 +0.680873 +0.984507 +0.313796 +0.871387 +0.654421 +0.490485 +0.978673 +0.758546 +-0.018644 +0.093921 +0.059784 +-0.226129 +0.166102 +0.791116 +0.907644 +0.463974 +0.444608 +0.775719 +0.832275 +0.866511 +0.001587 +0.429015 +0.429015 +0.615892 +0.444091 +0.900715 +0.508667 +0.871295 +0.868237 +0.855988 +0.955444 +0.432126 +0.368368 +0.951726 +0.778791 +0.848855 +0.834071 +0.565814 +0.879268 +0.890662 +0.847095 +0.240409 +0.828106 +0.836646 +0.979416 +0.953083 +0.782212 +0.826719 +0.952928 +0.966724 +0.960544 +0.860714 +0.836478 +0.848423 +0.985284 +0.903368 +0.156321 +0.877835 +0.468638 +0.789090 +0.902720 +0.782701 +0.794522 +0.869199 +0.872991 +0.603494 +0.776589 +-0.184126 +-0.100560 +0.496732 +0.380381 +0.173537 +0.162969 +0.658245 +0.773084 +0.358917 +-3.973261 +0.595127 +0.032143 +-1.946452 +0.466723 +0.158387 +0.190323 +0.643116 +0.096540 +0.847836 +0.144321 +0.826273 +0.405176 +0.991121 +-0.216247 +0.886626 +0.105839 +0.928049 +0.572820 +0.925628 +0.448872 +-0.001752 +0.222333 +0.076102 +0.581852 +0.679365 +0.056125 +0.422753 +0.096715 +0.364518 +0.530313 +0.488420 +0.347814 +0.938375 +0.575251 +0.671732 +0.568043 +0.157910 +0.180522 +0.465870 +0.850867 +0.406296 +0.937395 +0.895648 +0.179899 +0.562641 +0.789370 +0.313862 +0.241477 +0.586339 +0.883161 +0.936617 +0.490052 +0.918555 +0.863424 +0.563469 +0.740220 +0.349781 +-0.135372 +0.748475 +0.638344 +0.975980 +0.645309 +0.656435 +0.836917 +0.902855 +0.451815 +0.683812 +0.664388 +0.583469 +0.980941 +0.366981 +0.970303 +0.338117 +0.995050 +0.738657 +0.400921 +0.496112 +0.819426 +0.411048 +0.581139 +0.511686 +0.775039 +0.325689 +0.562048 +0.957577 +0.418308 +0.743365 +0.961369 +0.362823 +0.452467 +0.474972 +0.435257 +0.352782 +0.453569 +0.380943 +0.262665 +0.599616 +0.567010 +0.429959 +0.624208 +0.386935 +0.811248 +0.890377 +0.835571 +0.800474 +0.949451 +-0.078098 +0.839971 +0.188885 +0.822643 +0.523029 +0.969355 +0.962894 +0.691276 +0.926460 +0.299158 +0.387684 +0.985123 +0.118735 +0.962987 +0.859030 +0.682908 +0.573092 +0.327446 +0.961470 +0.564815 +0.635569 +0.298773 +0.361672 +0.230282 +0.227755 +0.493157 +0.718579 +0.080144 +-0.000403 +0.220489 +0.717618 +0.949131 +0.815353 +0.447456 +0.557864 +0.358064 +0.018557 +0.275222 +0.083050 +0.736202 +0.423762 +0.184377 +0.979785 +-1.112606 +0.144499 +0.435456 +0.654027 +0.240263 +-0.005553 +0.725737 +0.994171 +0.777486 +0.766166 +0.276870 +0.611672 +0.294496 +0.130861 +0.852826 +0.529627 +0.175461 +0.898864 +-1.451537 +0.841542 +-0.266036 +0.898525 +0.829602 +-0.097359 +0.054409 +0.411946 +0.479225 +0.842201 +0.697089 +0.488878 +0.838287 +0.418276 +0.745742 +0.531414 +0.706267 +0.123402 +0.711876 +0.345965 +0.997710 +0.039930 +0.220186 +-0.153319 +0.038664 +0.823212 +0.126395 +0.406575 +0.031721 +0.948238 +0.799655 +0.769556 +0.930426 +0.590501 +0.708473 +0.801782 +0.671511 +0.317118 +0.919706 +0.182503 +0.567907 +0.899446 +0.313487 +0.638700 +0.932956 +0.950881 +0.426772 +0.914948 +0.953520 +0.449518 +0.867349 +0.726549 +0.925576 +0.266853 +0.420011 +0.296244 +0.436878 +0.972471 +0.582799 +0.409487 +0.841496 +0.980980 +0.571176 +0.054271 +0.169007 +0.251242 +0.251392 +0.104951 +0.945136 +0.281398 +0.241216 +0.223724 +0.195079 +0.440914 +0.467855 +0.619133 +0.457349 +0.250535 +0.327601 +0.909509 +0.057998 +0.776910 +0.530693 +0.499877 +0.199896 +0.526087 +0.280693 +0.559202 +0.528343 +0.388751 +0.243986 +0.466966 +0.047941 +0.326999 +0.288570 +0.289298 +0.683343 +-0.231232 +0.370888 +0.301628 +0.117410 +0.671185 +-0.016944 +0.360469 +0.826033 +0.326640 +-0.010857 +0.924384 +0.995787 +0.808982 +0.058285 +0.693433 +0.411635 +0.771283 +-1.638371 +0.991002 +-0.166594 +-0.024546 +0.873648 +-0.232594 +0.624449 +0.312759 +0.860805 +0.708330 +0.705164 +0.946728 +0.422130 +0.442533 +0.522881 +0.744220 +0.757082 +0.292832 +0.428393 +0.083367 +0.523634 +0.998754 +0.640898 +0.768418 +0.458921 +0.641043 +0.570355 +0.570300 +0.139596 +0.615925 +0.576521 +0.571715 +0.727053 +0.386873 +0.734519 +0.969973 +0.766590 +0.592961 +0.345281 +0.761564 +0.798515 +0.831809 +0.202802 +0.302645 +0.692729 +0.716436 +0.655266 +0.834789 +0.393099 +0.705958 +0.759155 +0.599831 +0.537396 +0.872709 +0.864594 +0.632157 +0.841536 +0.723654 +0.384307 +0.331054 +0.960813 +0.724018 +0.647470 +-0.074519 +0.883101 +0.926200 +0.706124 +0.075456 +0.679976 +0.450927 +0.934106 +0.941392 +-0.562364 +0.486724 +0.895461 +0.953045 +0.603738 +0.849401 +0.707993 +0.916749 +0.649461 +0.846849 +0.815739 +0.859854 +0.938945 +0.809098 +0.939686 +0.832111 +0.558321 +0.262803 +0.053933 +0.256334 +0.173045 +0.233766 +0.993567 +0.968308 +0.032386 +0.178343 +0.231333 +0.576076 +0.799694 +0.829082 +0.505352 +0.356719 +0.461163 +0.393894 +0.292922 +0.995614 +0.411749 +0.359339 +0.112428 +0.255252 +0.419172 +0.657158 +0.959185 +0.352260 +0.215308 +0.985882 +0.970775 +0.739464 +0.529363 +0.595747 +0.338000 +0.794245 +0.541318 +0.708634 +0.799980 +0.713318 +0.780495 +0.592019 +-0.199010 +0.888311 +0.530995 +-0.080272 +0.721847 +0.435740 +0.371451 +0.746242 +0.645379 +0.925950 +0.346879 +0.986865 +0.714278 +0.352636 +0.455374 +0.759115 +0.892538 +0.720371 +0.636964 +0.949504 +0.374321 +0.339121 +0.419227 +0.407015 +0.611380 +0.749770 +0.614224 +0.460571 +-0.042481 +0.487787 +0.596912 +0.699147 +0.979522 +0.706951 +0.830228 +0.166159 +0.544168 +0.909330 +0.615911 +0.140844 +0.315900 +0.649155 +0.412595 +0.306415 +0.361786 +0.649775 +0.853829 +0.849497 +0.250547 +0.479263 +-0.128912 +0.386150 +0.012635 +0.378687 +0.320290 +0.419989 +-0.241688 +0.126395 +0.064952 +0.886349 +-0.347357 +0.948684 +0.342824 +0.222523 +0.010834 +0.499648 +0.367236 +-0.318076 +0.381268 +0.837656 +0.852531 +0.186647 +0.856834 +0.699370 +0.710179 +0.923666 +0.730023 +0.692476 +0.625182 +0.705916 +0.706205 +0.780502 +0.679062 +0.764558 +0.182793 +0.866197 +0.562291 +0.829867 +0.850880 +0.380926 +0.933044 +0.661190 +0.678285 +0.983341 +0.842951 +0.775906 +0.832511 +0.708895 +0.920881 +0.921071 +0.976621 +0.557081 +0.953596 +0.934157 +0.828035 +0.937915 +0.171177 +0.609914 +0.835680 +0.709509 +0.888142 +0.349662 +0.541427 +0.119938 +0.159311 +0.632362 +0.411623 +0.135897 +0.213276 +0.373477 +0.778100 +-0.000212 +0.929882 +0.407681 +0.540421 +0.885572 +0.881704 +0.940531 +0.918551 +0.920978 +0.807464 +0.931970 +0.845056 +0.400316 +0.479061 +0.917686 +0.915080 +0.904225 +0.882340 +0.979845 +0.741070 +0.476407 +0.171584 +0.113891 +0.921701 +0.962893 +0.851811 +0.956518 +0.657117 +0.456866 +0.491153 +0.568808 +0.470501 +0.292801 +0.853727 +0.351836 +0.860088 +-0.062257 +-0.125866 +0.611367 +0.707054 +0.326410 +0.639576 +0.382357 +0.926484 +0.693215 +0.912970 +0.850338 +0.937955 +0.625934 +0.969025 +0.964602 +0.873579 +0.834607 +0.739027 +0.921386 +0.652805 +0.990023 +0.989887 +0.894703 +0.175856 +0.538914 +0.446570 +0.118222 +0.994831 +-0.343198 +0.348805 +0.961320 +0.474371 +0.307742 +-0.042926 +0.311290 +0.471167 +0.716508 +0.091960 +0.673485 +0.667379 +-0.650355 +0.658970 +0.390250 +0.873091 +0.524639 +0.879175 +0.420902 +-0.018970 +0.411467 +0.127310 +0.679712 +0.615336 +0.489593 +0.410123 +0.637878 +0.493608 +0.623545 +0.977464 +0.512351 +0.617385 +0.399675 +0.602740 +-0.823113 +0.804196 +0.935669 +0.316454 +0.698638 +0.050871 +0.574861 +0.682051 +0.107187 +0.879419 +0.991515 +0.446599 +0.269176 +0.698833 +0.235092 +0.098198 +0.892894 +-2.271703 +0.810140 +0.674855 +0.828964 +0.702507 +0.498226 +0.903838 +0.319062 +0.407894 +0.373668 +-0.226153 +0.006172 +0.323932 +0.562408 +0.378137 +0.802508 +0.692613 +0.939361 +0.928027 +0.968823 +0.779593 +0.787555 +0.981063 +0.077582 +0.440540 +0.941157 +0.504501 +0.937713 +0.838393 +0.871294 +0.639905 +0.937969 +0.867926 +0.041703 +0.439596 +0.611506 +0.365716 +0.873334 +0.912804 +0.974440 +0.264709 +0.853863 +0.921160 +0.795476 +0.493728 +0.792124 +0.933810 +0.601193 +0.773997 +0.836233 +0.789376 +0.342963 +0.942922 +0.854911 +0.696953 +0.804257 +-0.960969 +-0.177101 +-0.160584 +0.779461 +0.905438 +0.663317 +0.644815 +0.793785 +0.769533 +0.361161 +0.462617 +0.746275 +0.736970 +0.648399 +0.643259 +0.460559 +0.430268 +0.693772 +0.547333 +0.788886 +0.692331 +0.535603 +0.515496 +0.178718 +0.678599 +0.756860 +0.878497 +0.883574 +0.886464 +0.818511 +0.901336 +0.886426 +0.886426 +0.886426 +0.844824 +0.641736 +0.745371 +0.750384 +0.753008 +0.664470 +0.871350 +0.853985 +0.884411 +0.292702 +0.495676 +0.628614 +0.495553 +0.676468 +0.475890 +0.956811 +0.428233 +0.837417 +-0.069710 +0.990219 +0.407667 +0.306744 +0.186534 +0.842521 +0.846458 +0.484539 +0.713490 +0.702676 +0.191892 +0.441617 +0.705764 +0.692926 +0.791768 +0.265829 +0.906354 +0.775709 +0.304174 +0.959979 +-0.198782 +-0.140914 +0.291469 +0.983681 +0.264126 +0.475075 +0.106064 +0.303767 +0.765066 +0.166101 +0.843159 +0.355865 +0.972156 +0.669731 +0.255268 +0.259792 +0.324507 +0.605604 +0.178117 +0.576741 +0.582328 +0.652274 +0.891001 +0.618244 +0.495521 +0.257625 +0.075109 +0.619147 +0.470912 +0.507652 +0.939578 +0.633272 +0.872298 +0.984556 +0.837424 +0.124010 +0.829312 +0.776746 +0.838694 +0.928208 +0.370677 +0.801355 +0.858899 +-0.074393 +0.867786 +0.471851 +0.378301 +0.430071 +0.792092 +0.928928 +0.505379 +0.789639 +0.857428 +0.577760 +0.126340 +0.856769 +0.888972 +0.971743 +0.862840 +0.929334 +0.690490 +0.549562 +0.941851 +0.893962 +0.181302 +0.919725 +0.268230 +0.319698 +0.818532 +0.504440 +0.609111 +0.950606 +0.911813 +0.560543 +0.384494 +0.697626 +0.920522 +0.843655 +0.705864 +0.647388 +0.390431 +0.801881 +0.445716 +0.706172 +0.937725 +0.068138 +0.871416 +0.034660 +0.039277 +0.104223 +0.295998 +0.727891 +0.312295 +0.817280 +0.417858 +0.829093 +0.915826 +0.903611 +0.855651 +-0.167802 +0.871254 +0.740217 +0.926429 +0.928055 +0.632577 +0.357131 +-0.059028 +0.927556 +0.927574 +0.894325 +0.890596 +0.766297 +0.758926 +0.927816 +0.882222 +0.790808 +0.408815 +0.408184 +0.918383 +0.728067 +0.506991 +0.568257 +0.499054 +0.386419 +0.577698 +0.444199 +0.675090 +0.324086 +0.689664 +0.605797 +0.351713 +0.719368 +0.430807 +0.410649 +0.649859 +0.302054 +0.944725 +0.260658 +0.899196 +0.348043 +0.858597 +0.815750 +0.902037 +0.609938 +-0.099061 +0.515722 +0.935536 +0.349154 +0.693047 +-0.347048 +-0.047018 +0.853965 +-0.075488 +0.789450 +0.282798 +0.924422 +0.169995 +0.810347 +-0.229324 +0.691486 +0.412163 +0.023421 +0.075658 +0.808837 +0.625917 +0.854608 +0.254687 +0.436966 +0.365715 +0.437372 +0.366639 +0.873659 +0.936918 +0.869619 +0.364682 +0.723623 +0.941228 +-1.953801 +0.750127 +0.333928 +0.688158 +0.495370 +0.926927 +0.837536 +0.375194 +0.686317 +0.579413 +0.638310 +0.920523 +0.567688 +0.578748 +0.969562 +0.972290 +0.925255 +0.976804 +0.565411 +0.921570 +0.930417 +0.925543 +0.548778 +0.640909 +0.600208 +0.508377 +0.973475 +0.455282 +0.979419 +0.128893 +0.490489 +0.918837 +0.892629 +0.980887 +0.553513 +0.575311 +0.665839 +0.541187 +0.916286 +0.442510 +0.740145 +0.802066 +0.378736 +0.593131 +0.645131 +0.609095 +0.513685 +0.600479 +0.336847 +0.982275 +0.796101 +0.913155 +0.774736 +0.553978 +0.400216 +0.305338 +0.941674 +0.589428 +0.924502 +0.933601 +0.802600 +0.574632 +0.731861 +0.465692 +0.582614 +0.369559 +0.807993 +0.914440 +0.769815 +0.759284 +0.413996 +0.946317 +0.725921 +0.459058 +0.631537 +0.705246 +0.500319 +0.973086 +0.785577 +0.567928 +0.666386 +0.366438 +0.039719 +0.940191 +0.971361 +0.947064 +0.724133 +0.899638 +0.923179 +0.748503 +0.474961 +0.514655 +0.239316 +0.119179 +0.680797 +0.112108 +-0.755167 +-0.615369 +-0.083606 +0.197025 +0.174863 +0.560913 +0.869539 +0.930517 +0.267312 +0.772203 +0.294078 +0.860839 +0.457698 +0.783936 +0.583883 +0.927132 +0.479895 +0.235689 +0.923517 +0.490757 +0.886240 +0.852031 +0.495328 +0.901609 +0.599274 +0.896235 +0.437265 +0.451689 +0.893433 +0.896234 +0.278520 +0.466576 +0.332215 +0.485655 +0.923370 +0.587850 +0.972009 +0.841958 +0.535381 +0.698489 +0.861366 +0.956701 +0.869629 +0.937423 +0.610234 +0.438442 +0.825974 +0.924988 +0.808741 +0.225733 +0.819428 +0.594567 +0.810035 +0.460980 +0.829098 +0.872100 +0.796579 +0.705501 +0.936019 +0.878831 +0.464779 +0.112868 +0.612568 +0.385730 +0.718774 +0.816434 +0.957408 +0.836971 +0.550913 +0.580876 +0.922628 +0.819368 +0.856334 +0.412552 +0.937386 +0.492146 +0.681947 +0.854162 +0.711730 +0.729323 +0.784170 +0.758704 +0.825047 +0.846998 +0.820650 +0.869448 +0.921087 +0.699401 +0.855826 +0.352308 +0.137114 +0.951229 +0.782067 +0.840060 +0.714119 +0.939032 +0.845246 +0.728724 +0.892370 +0.848882 +0.701956 +0.913160 +0.565123 +0.739592 +0.780294 +0.754290 +0.876213 +0.500991 +0.579981 +0.874130 +0.910642 +0.767638 +0.933614 +0.458598 +0.810100 +0.960079 +0.971598 +0.411317 +0.722075 +0.925126 +0.931408 +0.941867 +0.671432 +0.918516 +0.200625 +0.619262 +0.404691 +0.660649 +0.932493 +0.942112 +-36.624322 +0.040696 +0.425170 +0.504330 +0.307343 +0.907196 +-0.004718 +0.798122 +0.277392 +0.825844 +0.563350 +0.862937 +0.491458 +0.011215 +0.205943 +0.233049 +0.870764 +0.929604 +0.258063 +0.555083 +0.014815 +0.885586 +0.045372 +0.617026 +0.378501 +0.323696 +0.898412 +0.520562 +0.578005 +0.151565 +-0.264226 +0.174429 +0.302315 +-0.139459 +0.865990 +0.528075 +0.326584 +0.598581 +0.248546 +0.310431 +0.049295 +0.349070 +0.686110 +0.938230 +0.172153 +0.260191 +0.965588 +0.953492 +0.935143 +0.761578 +0.612953 +0.766518 +0.698966 +0.435907 +0.913534 +0.886280 +0.449906 +0.687613 +0.224607 +0.657238 +0.914390 +0.857734 +0.931349 +0.539124 +0.574778 +0.819329 +0.886296 +0.694124 +0.648941 +0.697539 +0.178267 +0.567243 +0.726431 +0.449179 +0.444700 +0.374746 +0.102158 +0.016174 +0.829854 +0.473471 +0.709573 +0.237499 +0.517131 +0.778352 +0.385217 +0.424299 +0.572040 +0.268273 +0.399956 +0.118955 +0.597942 +0.981597 +0.672680 +0.841879 +0.720008 +0.723731 +0.293900 +0.873510 +0.921495 +0.800023 +0.917451 +0.922873 +0.921030 +0.849168 +0.917692 +0.831127 +0.941961 +0.917306 +0.400757 +0.826045 +0.455714 +0.410660 +0.707334 +0.797475 +0.162933 +0.724107 +0.941055 +0.941055 +0.941055 +-0.263473 +0.056968 +0.972448 +0.475646 +0.671126 +0.705238 +0.679040 +0.071465 +0.797110 +0.322172 +0.676275 +0.292135 +0.931147 +0.867126 +0.889923 +0.954576 +0.937960 +0.934688 +0.828765 +0.858567 +0.841021 +0.614027 +0.811198 +0.321004 +0.727194 +0.565558 +0.418494 +0.431390 +0.886045 +0.769476 +0.646154 +0.833590 +0.228955 +0.872249 +0.889428 +0.904192 +0.210206 +0.228685 +0.859891 +0.381015 +0.245320 +0.610748 +0.931334 +0.791599 +0.589226 +0.505724 +0.998055 +0.731049 +0.779534 +0.889796 +0.866743 +0.370982 +0.997827 +0.660147 +0.973155 +0.679746 +0.356490 +0.595863 +0.708548 +0.861553 +0.330927 +0.127310 +0.932027 +0.835833 +-0.320197 +0.702242 +0.911211 +0.562574 +0.571843 +-1.338681 +0.779137 +0.929351 +0.919063 +0.921787 +0.926657 +0.631861 +0.727761 +0.748325 +0.939244 +0.032238 +0.522733 +0.614828 +0.142236 +0.919817 +0.924597 +0.924477 +0.303374 +0.377383 +0.563738 +0.627667 +0.533863 +0.639807 +0.283688 +0.587791 +0.797485 +0.473196 +0.708010 +0.684901 +0.448956 +0.636349 +0.174735 +0.512841 +0.851079 +0.918731 +0.232306 +0.952371 +0.925585 +0.207174 +0.599616 +0.422021 +0.781026 +0.384407 +0.209063 +0.751998 +0.835810 +0.230079 +-0.128286 +0.441774 +0.607675 +0.525707 +0.172043 +0.962870 +0.507651 +0.373284 +-0.217893 +0.757307 +-3.824686 +0.604196 +0.389083 +0.216034 +0.221011 +0.256967 +0.353673 +0.655228 +0.099156 +0.838776 +0.750507 +0.967555 +0.655491 +0.177016 +0.847565 +0.786542 +0.629529 +0.605023 +0.664934 +0.441315 +0.929278 +0.778738 +0.685948 +0.851815 +0.578788 +0.956345 +0.851893 +0.677051 +0.543556 +-0.374555 +0.551072 +0.463078 +0.993389 +0.498771 +0.926127 +0.682151 +0.763340 +0.769580 +0.858166 +0.456232 +0.719467 +0.235003 +0.737871 +0.741019 +0.518373 +0.831448 +0.839897 +0.009992 +0.906036 +0.591952 +0.898021 +0.699246 +0.744908 +0.672139 +0.807125 +-0.015059 +0.771131 +0.601697 +0.819390 +0.828069 +0.565363 +-2.729314 +0.897038 +0.604718 +0.820790 +0.069988 +0.305995 +0.464742 +0.183741 +0.102811 +0.612048 +0.176368 +0.086442 +0.325688 +0.621725 +0.559127 +0.173343 +0.417689 +0.653482 +0.633651 +0.498492 +0.230571 +0.529582 +0.489914 +0.041355 +0.750026 +0.606476 +0.684890 +0.581784 +0.161340 +0.596143 +0.740058 +0.688839 +0.705431 +0.397350 +-6.860391 +0.245564 +-3.632543 +-0.080562 +0.993998 +0.678570 +0.821544 +0.262260 +0.428581 +0.403357 +0.301754 +0.296465 +0.140795 +0.467951 +0.087034 +-16.754137 +0.492131 +-0.327264 +0.378430 +0.560394 +-0.214476 +0.684393 +0.637757 +0.772818 +0.501319 +-44.934333 +0.449726 +0.886411 +0.447636 +0.823079 +0.531135 +0.322935 +0.314264 +0.527042 +0.258775 +0.914446 +0.931669 +0.842659 +-0.239262 +0.928286 +0.487542 +0.932680 +-0.344378 +0.509421 +0.018425 +0.809105 +0.786505 +0.281091 +0.551635 +0.989478 +0.286684 +0.076376 +0.870757 +0.916827 +0.010332 +0.662833 +0.827386 +0.561569 +0.951240 +0.745504 +0.840418 +0.348796 +0.557888 +-5926.916681 +0.567377 +-0.063469 +-0.163681 +0.937496 +0.946882 +0.928549 +0.618480 +0.773266 +0.870216 +0.813795 +0.699429 +0.947042 +0.466463 +0.902654 +0.040374 +0.069374 +0.532576 +0.874754 +0.570113 +0.833105 +0.994478 +0.284028 +0.187374 +0.802299 +0.407210 +0.249789 +0.278265 +0.194046 +0.240057 +0.199354 +0.924682 +0.350790 +0.524985 +0.711383 +0.852698 +0.467719 +0.875707 +0.206553 +0.356193 +0.989157 +0.995113 +0.887543 +-0.227159 +0.597459 +-0.013327 +0.774698 +0.855865 +0.644079 +0.939052 +0.746781 +0.740182 +0.846466 +0.025724 +0.934154 +0.317305 +0.686597 +0.802045 +0.391881 +-0.868484 +0.495030 +-0.055373 +0.358615 +0.800457 +0.874190 +0.982973 +0.880540 +0.613926 +-0.303526 +0.839330 +0.471010 +0.880709 +0.872086 +0.873985 +0.910478 +0.882916 +0.686166 +0.342732 +0.267597 +0.793466 +0.915351 +0.233478 +0.362477 +0.886195 +0.353001 +-0.162023 +0.728376 +0.775380 +0.470828 +0.243786 +0.797236 +0.751159 +-0.154095 +0.140394 +0.602154 +0.705277 +0.361444 +0.370345 +0.569836 +0.394684 +0.793148 +0.887369 +0.937981 +0.857166 +0.378943 +0.992558 +0.861200 +0.757283 +0.947334 +0.931749 +0.378940 +0.918944 +0.736284 +0.352782 +0.748513 +-0.406145 +0.851601 +0.557342 +0.776275 +0.916797 +0.376904 +0.663210 +0.834249 +0.853075 +0.390369 +0.735234 +0.603342 +0.726270 +0.857974 +0.628970 +0.435771 +0.288295 +0.583889 +0.692047 +0.683924 +0.585013 +0.381556 +0.226844 +0.216619 +0.865061 +0.782989 +0.608607 +0.768058 +0.938200 +0.930441 +0.412931 +0.130283 +0.585501 +0.530728 +0.145940 +0.466451 +0.873274 +0.069226 +0.555847 +0.603963 +0.504093 +0.239675 +-0.786244 +0.914112 +0.931761 +0.648581 +-0.502847 +-0.307637 +0.422164 +0.315304 +0.816203 +0.898446 +0.968782 +0.836126 +0.942968 +0.613224 +0.569522 +0.961474 +0.580496 +0.800834 +0.895592 +0.977987 +0.837195 +0.919053 +0.672266 +0.277599 +0.894960 +0.718395 +0.921669 +0.618375 +-0.240950 +0.974625 +0.126245 +0.986823 +0.985191 +0.951680 +0.825175 +0.881477 +0.947875 +0.785013 +0.485836 +0.912132 +0.452941 +0.134264 +0.523681 +0.717577 +0.935028 +0.952640 +0.928790 +0.969607 +0.623661 +-0.153283 +0.409911 +0.710747 +0.899788 +0.852935 +0.673545 +0.681116 +0.569446 +0.828638 +0.919067 +0.277944 +0.887635 +0.383549 +0.896990 +0.950046 +0.217728 +0.902356 +0.520517 +0.329420 +0.344269 +0.878167 +0.731331 +0.845117 +0.953368 +0.905719 +0.948477 +0.704687 +0.956182 +0.548453 +0.937487 +0.920702 +0.840179 +0.750242 +0.768578 +0.673978 +0.909519 +0.842678 +0.938271 +0.397944 +0.576254 +-0.116603 +0.677730 +0.966390 +0.644220 +0.866966 +0.712237 +0.873125 +0.893813 +0.438949 +0.520800 +0.787060 +0.842983 +0.446396 +0.617470 +0.926526 +0.930545 +0.750545 +0.928871 +0.818271 +0.852876 +0.588185 +0.829806 +0.924070 +0.925867 +0.683121 +0.697752 +0.570441 +0.987048 +0.612303 +0.539352 +0.942861 +0.662987 +0.386395 +0.869243 +0.730995 +0.814525 +0.384722 +0.466359 +0.929158 +0.946971 +0.926706 +0.930539 +0.473218 +0.063474 +0.922560 +0.750039 +0.695338 +0.921409 +0.001184 +0.269016 +0.683921 +0.950730 +0.834692 +0.426920 +0.821015 +0.622983 +0.167731 +0.938234 +0.886527 +0.841504 +0.800020 +0.922200 +0.646280 +0.844956 +0.596469 +0.566347 +0.937462 +0.746966 +0.957887 +0.745528 +0.697719 +-0.814974 +0.446713 +0.789995 +0.881383 +0.514895 +0.610761 +0.492312 +-0.056889 +0.844703 +0.944143 +0.576939 +0.945514 +0.349799 +0.887674 +0.465763 +0.810996 +0.341002 +0.951400 +0.891901 +0.581654 +0.647071 +0.260920 +0.770916 +0.811772 +0.897921 +0.604779 +0.922349 +0.789335 +-0.376262 +0.866106 +0.746095 +0.856024 +0.749530 +0.604923 +-0.061279 +0.854880 +0.790394 +0.899645 +0.825538 +0.842444 +0.527511 +0.780532 +0.666548 +-0.304875 +0.662602 +0.950299 +0.888544 +-0.068533 +0.477941 +0.860885 +-0.132826 +0.775047 +-0.250395 +0.092686 +-0.082262 +0.909016 +-0.393392 +0.777151 +0.743614 +0.387423 +0.896234 +0.523491 +0.376011 +0.486489 +0.972473 +0.749196 +0.714511 +0.991088 +0.192493 +0.666185 +0.289621 +0.232387 +0.283666 +0.158771 +0.312219 +0.291193 +0.107674 +0.785960 +0.355629 +0.788709 +-0.223007 +0.091489 +-0.528738 +0.538420 +0.109907 +0.543396 +0.175641 +0.489532 +0.262955 +0.688579 +0.259948 +0.614721 +0.491280 +0.245191 +0.257452 +0.219681 +0.837497 +0.379121 +0.940077 +-1.738172 +0.595639 +0.033379 +0.287550 +0.266225 +0.931334 +0.871426 +0.819606 +0.558498 +0.295186 +-0.036311 +0.474031 +0.544921 +0.093019 +-2.133801 +0.984295 +0.300146 +-0.296066 +0.954477 +0.217368 +0.147471 +-2.231033 +0.075622 +0.784006 +0.468333 +0.595517 +0.831767 +-2.953722 +0.369357 +0.493140 +0.475221 +0.902547 +0.736170 +0.690483 +0.937645 +0.410994 +0.971758 +0.425894 +0.795509 +0.570930 +0.931468 +0.869169 +0.735604 +0.717588 +0.638067 +0.075369 +0.652150 +0.959607 +0.750224 +0.430931 +-0.297140 +0.699106 +0.572686 +0.121370 +0.068687 +0.933150 +0.698218 +0.932293 +-0.196179 +-0.247617 +0.035868 +0.933078 +0.807213 +0.438849 +-0.452347 +0.478332 +0.910524 +0.660673 +0.613482 +0.203394 +0.298966 +0.054372 +0.571032 +0.384494 +0.169781 +0.116971 +0.267159 +0.105525 +0.301293 +0.978253 +0.845492 +-1.867811 +0.068622 +0.272489 +-0.030262 +0.500217 +0.465045 +-0.429704 +0.730467 +0.329380 +0.331103 +0.128032 +0.167968 +0.097538 +0.777478 +0.108162 +0.719345 +0.239112 +-0.268950 +0.913325 +0.888569 +0.977551 +0.439437 +0.828883 +0.979682 +0.126670 +0.811168 +-0.016915 +0.959435 +0.981473 +0.901910 +0.963115 +0.215476 +0.121093 +0.043830 +0.693767 +0.297152 +0.528183 +0.674085 +0.356854 +0.360078 +0.322896 +-0.015041 +0.898470 +0.131377 +0.815763 +0.263083 +0.217862 +0.599032 +0.892475 +0.315642 +0.978628 +0.127834 +0.031103 +0.085377 +0.482826 +0.376109 +0.160531 +0.032994 +0.025469 +-0.279756 +0.790257 +0.962067 +0.782216 +0.689546 +0.642101 +0.898458 +0.563342 +0.866114 +0.837701 +0.238492 +0.915083 +-6.376132 +-3.721910 +0.406879 +0.905745 +0.978749 +0.935676 +0.663258 +0.881314 +0.932568 +0.875896 +0.973037 +0.936036 +0.883745 +0.854231 +0.933560 +0.647859 +0.815493 +0.761866 +0.322734 +0.690819 +0.845649 +0.937613 +0.812448 +0.986404 +0.520600 +0.935453 +0.765167 +0.876374 +0.944229 +0.921960 +0.291806 +0.935946 +0.917919 +0.882767 +0.085622 +0.737326 +0.900431 +0.581049 +0.538083 +0.714448 +0.625675 +0.630238 +0.851347 +0.748168 +0.930426 +0.896294 +0.957226 +0.928228 +0.549046 +-0.016247 +0.767354 +0.950378 +0.936071 +0.862591 +0.874058 +0.949493 +0.310711 +0.360044 +0.980102 +0.459656 +0.512423 +0.873589 +0.491623 +0.542991 +0.521415 +0.461707 +0.419185 +0.436562 +0.914466 +0.746098 +0.933334 +0.953544 +0.656339 +0.853912 +0.370962 +0.868467 +0.463307 +0.701204 +0.450224 +0.975436 +0.428303 +0.319455 +0.384605 +0.428030 +0.444861 +0.934417 +0.945905 +0.926215 +0.452094 +0.712618 +0.346687 +0.741206 +0.487981 +0.309435 +-0.084861 +0.549805 +0.435212 +0.900898 +0.967911 +0.666052 +0.693419 +0.260457 +0.612204 +0.894651 +0.667309 +0.849180 +0.783220 +0.109747 +0.449776 +0.013963 +0.625803 +0.218254 +0.881633 +0.578688 +0.840064 +-0.107068 +0.748698 +-0.127712 +0.189588 +0.874841 +0.345447 +0.284599 +0.110418 +0.523063 +0.915237 +0.585362 +0.259371 +0.427199 +0.370665 +0.710577 +0.687492 +0.538314 +0.922591 +0.457564 +0.093163 +0.677299 +0.725089 +0.671636 +0.260468 +0.975514 +0.828323 +0.410376 +-1.302369 +0.893125 +0.923643 +0.992651 +0.129518 +0.130056 +0.456284 +-0.093027 +0.953009 +0.910914 +0.421596 +0.537572 +0.997058 +0.195479 +0.446499 +0.518846 +0.526872 +0.176910 +0.469419 +0.683118 +0.206898 +0.937345 +0.455396 +0.268210 +0.778578 +0.475173 +0.499170 +0.980753 +0.410724 +0.843304 +0.634315 +0.663221 +0.992869 +0.330071 +0.939718 +0.821329 +0.882702 +0.711954 +0.465380 +0.369723 +0.586659 +0.723570 +-0.493128 +0.760092 +0.773724 +0.147323 +-0.387883 +0.586074 +0.930230 +0.855179 +0.882962 +0.454141 +-225.128439 +-0.289638 +0.860598 +0.764741 +0.739697 +0.023405 +0.480049 +0.705696 +0.570205 +0.728490 +0.106350 +0.150889 +0.040161 +0.123125 +0.240493 +0.253628 +0.889383 +0.229927 +-0.252551 +0.414514 +0.115215 +0.522068 +0.445761 +0.078938 +0.011669 +-5.962999 +0.458214 +0.166632 +0.219493 +0.050981 +0.344944 +0.025764 +0.203399 +-0.292905 +0.086255 +0.245687 +0.130720 +0.661904 +0.839279 +0.783032 +0.424183 +0.913079 +0.487545 +0.957237 +0.507189 +0.889617 +0.887824 +0.351187 +0.931442 +0.397400 +-3.106266 +0.673562 +0.900666 +0.941045 +0.892814 +0.853600 +0.781987 +0.805149 +0.729327 +0.894430 +0.900996 +0.907722 +0.921390 +0.680118 +0.887255 +0.901940 +0.813232 +0.868953 +0.807754 +0.939964 +0.971328 +0.712126 +0.874021 +0.760611 +0.921555 +0.035089 +0.440742 +0.660020 +0.797069 +0.248035 +0.931625 +-5.602606 +0.431248 +0.246320 +0.604464 +0.920264 +0.652992 +0.507693 +0.291434 +0.309626 +0.960882 +0.506410 +0.703361 +0.924965 +0.125958 +-0.072034 +0.707780 +0.992007 +0.876483 +0.954088 +0.571665 +0.763125 +0.920695 +0.620430 +0.946211 +0.958413 +0.613189 +0.731582 +0.834187 +0.674961 +0.488050 +0.918638 +0.921461 +0.420322 +0.885774 +0.905987 +0.920692 +0.677246 +0.982729 +0.937966 +0.724785 +0.652686 +0.827434 +0.925718 +0.744946 +0.727067 +0.510193 +0.941540 +0.870621 +0.936423 +0.408023 +0.686749 +0.945197 +0.879727 +0.707739 +0.960867 +0.939480 +0.535403 +-0.447685 +0.531105 +0.876542 +0.782430 +0.478374 +0.888241 +0.872996 +0.839490 +0.935055 +0.514906 +0.810232 +0.714425 +0.817754 +0.635438 +0.836430 +0.794529 +-0.568538 +-0.395943 +0.890042 +0.874965 +0.900221 +0.888762 +0.863677 +-0.569553 +0.889814 +0.843808 +0.570784 +0.845694 +0.543579 +0.582734 +0.329371 +0.771632 +0.935788 +0.520866 +0.931511 +0.178557 +0.449350 +0.819161 +0.571480 +0.628525 +0.611827 +0.278663 +0.930093 +-0.105748 +0.249605 +0.641354 +0.656199 +0.709881 +0.873717 +0.642528 +0.057136 +0.672029 +0.335661 +0.288973 +0.266911 +0.060004 +0.773060 +0.872915 +0.152334 +0.075355 +-4.188263 +0.206441 +0.259251 +0.032340 +0.775743 +0.242754 +0.191319 +0.131223 +0.103713 +-0.357757 +0.182726 +0.201070 +0.235721 +0.904981 +0.974894 +0.672257 +0.491774 +0.779238 +0.131815 +-0.571785 +0.010821 +0.131377 +0.489924 +0.537779 +0.338496 +0.865093 +0.892684 +0.873468 +-0.009031 +0.312659 +0.000440 +0.825433 +0.540378 +-0.000011 +0.644090 +0.748215 +0.501082 +0.406706 +0.837272 +0.534291 +0.977342 +-0.108502 +0.536660 +0.553373 +0.723699 +0.933868 +0.416547 +0.286469 +0.882569 +0.655527 +0.162007 +0.688805 +-0.049042 +0.329104 +0.926560 +-0.151951 +0.781550 +0.941162 +0.528193 +0.522353 +0.585177 +0.701426 +0.692757 +-0.100423 +-0.576381 +0.524744 +0.636362 +0.231930 +0.732455 +0.855368 +0.619514 +0.856704 +0.632648 +0.811421 +0.670821 +0.404079 +0.884609 +0.425858 +0.582275 +0.783775 +-0.156039 +0.945500 +0.089997 +0.586093 +0.150955 +0.773406 +0.368423 +0.894224 +0.227312 +-0.473940 +0.626358 +0.932885 +0.894388 +-0.344985 +0.646917 +0.622477 +0.569074 +0.683122 +0.895738 +0.612372 +0.589947 +0.016209 +0.892538 +0.892789 +0.658083 +0.988403 +0.969427 +0.858184 +0.597805 +0.482115 +0.320550 +0.495079 +0.986300 +0.689874 +0.599713 +0.945347 +0.739337 +0.993928 +0.621528 +-0.351692 +0.922746 +0.963946 +0.889623 +-0.005033 +0.956095 +0.931707 +0.810291 +0.963284 +0.975152 +0.047498 +0.817939 +0.709370 +-0.173416 +0.995398 +0.621995 +0.966822 +0.867022 +0.890985 +0.903410 +0.462616 +-0.361358 +0.373300 +0.633520 +0.962753 +0.906186 +0.662354 +0.930251 +0.882991 +0.865039 +0.547441 +0.540800 +0.729383 +0.904395 +0.732653 +0.398670 +0.679439 +0.894392 +0.631265 +0.679846 +0.661295 +0.943379 +0.078086 +0.029003 +0.888453 +0.484801 +0.209117 +0.012715 +0.006345 +0.687081 +0.417474 +0.283158 +0.707070 +0.830900 +0.685913 +0.050383 +0.905380 +0.798741 +0.427996 +0.542497 +0.286630 +0.973147 +0.925817 +0.528738 +0.529001 +0.392072 +0.609428 +0.457262 +0.784645 +0.877650 +-0.232605 +0.249547 +0.902679 +0.685061 +0.621155 +0.035832 +0.699304 +0.932254 +0.411805 +-0.207653 +0.582263 +0.679514 +0.633272 +0.664726 +-0.152373 +0.009129 +0.658340 +0.933109 +0.866535 +0.636299 +0.952937 +0.937281 +0.772362 +0.636804 +0.993093 +0.824758 +0.489225 +0.646609 +-0.275633 +0.876175 +0.856451 +0.626727 +0.056151 +0.938330 +0.733243 +0.408442 +0.995451 +0.969145 +0.916015 +0.948537 +0.972653 +0.707923 +-0.026977 +0.933563 +0.851428 +0.836259 +0.106004 +0.735598 +0.577238 +0.177316 +0.251542 +0.518604 +0.747507 +0.947321 +-0.094191 +0.861211 +0.798523 +0.929556 +0.842805 +0.238788 +0.922953 +0.805910 +0.843864 +0.693262 +0.680017 +0.862088 +0.942460 +0.947477 +0.826477 +0.770301 +0.474819 +0.733908 +0.901249 +0.704745 +0.905925 +0.298437 +-3.858112 +0.319566 +0.876385 +0.820838 +-95.128333 +0.774393 +0.520838 +0.329330 +0.585584 +0.247709 +0.876147 +0.768338 +-134.850120 +0.044684 +0.870225 +0.855664 +0.885115 +0.827489 +0.974512 +0.916303 +0.964200 +0.934362 +0.936405 +-2.698389 +0.528192 +0.406238 +0.290864 +0.977979 +0.907002 +0.939963 +0.901490 +0.884239 +0.091176 +0.052775 +0.599377 +0.235825 +0.204831 +0.961555 +0.926801 +0.922841 +0.747396 +0.656134 +0.938195 +0.873241 +0.685918 +0.373816 +0.223200 +0.862217 +0.817326 +0.665330 +-0.108741 +0.682810 +0.826064 +0.165725 +0.289542 +0.521954 +0.653058 +0.990558 +0.908018 +0.415603 +0.726530 +0.839848 +-1.367022 +0.612814 +0.639829 +0.662720 +0.168781 +0.766122 +0.712424 +0.975981 +0.946862 +0.270850 +0.880879 +0.362933 +-0.249705 +0.384659 +0.703952 +-0.081261 +0.677574 +0.689876 +0.806299 +0.385067 +0.715343 +0.940134 +0.898071 +0.619723 +0.782357 +0.902179 +0.468013 +0.664284 +0.940360 +0.720324 +0.529883 +0.938764 +0.470511 +0.352836 +0.135146 +0.406257 +0.380014 +0.667932 +0.475818 +0.429141 +-0.754840 +0.679864 +0.121170 +0.428473 +-0.834688 +0.393137 +0.513591 +0.544944 +0.232272 +0.556734 +0.629223 +0.702666 +0.739196 +-0.022023 +0.397324 +0.831358 +0.846605 +0.908668 +0.874549 +0.811140 +0.875980 +0.758194 +0.827431 +0.784547 +0.792017 +0.883621 +0.832594 +0.833354 +0.856129 +0.930277 +0.646860 +0.723399 +0.605513 +0.682571 +0.858624 +0.859028 +-0.498775 +0.890375 +0.841281 +-0.343231 +-0.410026 +0.928191 +0.931329 +0.114543 +0.765114 +0.737550 +0.926370 +-1.526372 +0.228163 +0.311964 +0.002897 +0.859724 +-0.188737 +-0.126577 +0.868207 +-0.312017 +0.108028 +0.114122 +-0.281260 +0.806491 +0.550511 +0.262406 +0.719487 +0.626634 +0.620188 +0.727473 +0.722380 +0.388304 +-0.316331 +-0.195226 +-0.186792 +0.749700 +0.636290 +0.652651 +0.311879 +0.674234 +0.240325 +0.733621 +0.752621 +0.752621 +0.626228 +0.460529 +0.277413 +0.415625 +0.454765 +0.361895 +0.752540 +0.708820 +0.804886 +0.459028 +0.591539 +0.766397 +0.589035 +0.758458 +0.622833 +0.667780 +0.303029 +-0.347639 +0.937003 +0.942885 +0.723136 +0.579866 +0.908457 +0.896591 +0.890089 +0.926548 +0.732061 +0.111072 +0.797644 +0.445829 +0.439881 +0.352895 +0.811731 +0.475565 +-0.428675 +0.499965 +0.671983 +0.538505 +0.797858 +-0.026211 +-0.344008 +0.363932 +-0.346525 +0.346323 +0.599098 +0.803506 +0.098256 +0.687983 +0.552210 +0.782802 +0.566523 +0.229956 +0.513698 +0.776549 +0.883467 +0.552515 +0.831457 +0.784852 +0.633268 +0.767464 +0.668328 +0.299784 +0.434181 +0.387571 +0.999375 +0.180307 +0.764382 +0.345012 +0.019268 +0.173770 +0.141007 +0.580596 +0.483077 +0.282480 +-0.151600 +-9.638440 +0.991974 +0.563980 +-0.225370 +0.797761 +0.929943 +0.854058 +0.814312 +0.965871 +0.935858 +0.318743 +-0.060518 +0.955094 +0.312279 +0.265690 +0.909014 +0.829277 +0.965455 +0.978993 +0.461449 +0.419435 +0.963628 +0.545699 +0.337492 +0.180507 +0.364623 +0.149030 +0.296878 +0.511028 +0.717719 +0.753239 +0.583220 +0.697349 +0.949702 +0.480238 +0.271746 +0.855127 +0.607543 +0.170189 +0.351865 +0.768779 +0.811766 +0.892216 +0.470557 +0.386384 +0.694732 +0.976567 +0.143773 +0.291048 +0.264687 +0.528256 +0.160302 +0.246143 +0.125713 +0.781500 +0.084142 +0.460681 +0.061913 +0.886910 +0.140482 +0.706969 +0.237947 +0.180776 +0.867030 +0.607617 +0.759319 +0.131578 +0.346192 +0.557855 +0.976123 +0.630122 +0.292738 +0.224083 +0.239847 +0.368738 +0.548370 +0.992727 +-0.005326 +0.156684 +0.406183 +0.958496 +0.825288 +0.962967 +-0.140378 +0.394901 +0.499593 +0.513553 +0.931226 +0.964682 +-0.137093 +0.499590 +0.528459 +0.862290 +0.801580 +0.948228 +0.862781 +0.540037 +0.874792 +0.178203 +0.781253 +0.117768 +0.147132 +-0.211476 +-0.321352 +0.731626 +0.788425 +0.363754 +0.965775 +0.544949 +0.553032 +-0.033499 +0.260790 +0.357336 +0.627084 +0.719681 +-0.023151 +0.508676 +0.175617 +-0.026792 +0.038120 +0.103777 +0.139141 +0.583868 +0.637966 +0.056860 +0.066212 +0.057235 +0.456220 +-1.491146 +0.055789 +0.058462 +0.101369 +0.843015 +0.738058 +0.982093 +0.831972 +0.508297 +0.811303 +0.925309 +0.464122 +0.901938 +0.383926 +0.377682 +0.989829 +0.868273 +0.716324 +0.685788 +0.932279 +0.812485 +0.651887 +0.777373 +0.876043 +0.685980 +0.156894 +0.773995 +0.934226 +-0.089013 +0.264301 +0.717048 +-0.330659 +0.899434 +0.251986 +0.047972 +0.906073 +0.004653 +0.938502 +0.900061 +0.736385 +0.561804 +0.094235 +0.658337 +0.882238 +0.699766 +-0.192294 +0.571384 +0.325788 +0.901516 +0.841696 +0.792191 +0.793901 +0.392163 +0.805864 +0.701339 +0.553882 +0.626546 +0.820844 +0.844137 +0.891381 +0.773445 +0.168533 +0.163103 +0.975631 +0.081929 +0.888774 +-12.271669 +0.606111 +0.392982 +0.788574 +0.946329 +0.873399 +-468.126082 +0.505653 +0.821782 +0.973746 +0.512877 +0.772045 +0.611161 +-5566.485908 +0.797177 +0.907914 +0.722047 +0.699989 +0.633334 +0.855562 +0.250268 +0.665977 +0.619065 +0.820635 +0.842936 +0.735277 +0.691382 +0.327952 +0.681981 +0.222146 +-0.405076 +0.831009 +0.819643 +0.890789 +0.814913 +0.480449 +0.111674 +0.697329 +0.083814 +-0.151533 +0.432478 +0.564382 +0.856797 +0.410889 +-0.128205 +0.225923 +0.390546 +-0.218761 +0.711796 +0.383812 +0.096994 +-0.828456 +0.556414 +0.218539 +0.595641 +0.345768 +0.479645 +0.526418 +0.384950 +0.585632 +0.977301 +0.898456 +0.823432 +0.875501 +0.804553 +0.588813 +0.004718 +-0.236773 +0.627127 +0.414483 +0.723708 +0.845037 +0.777000 +-0.032148 +0.934042 +0.606233 +0.405325 +-0.189329 +0.243433 +0.599350 +-0.224908 +-0.020327 +-0.391988 +0.291472 +0.384405 +0.748720 +0.752032 +0.700048 +0.455025 +0.916477 +0.700627 +0.933054 +0.877876 +0.817300 +-0.024834 +0.859917 +0.982517 +0.596209 +0.902477 +0.247453 +0.162738 +0.912371 +0.991309 +0.911606 +0.810380 +0.797410 +0.925432 +0.872092 +0.760492 +0.575426 +0.696617 +0.845096 +0.908661 +0.927624 +0.932570 +0.150778 +0.976940 +0.905779 +0.684947 +0.931436 +0.556713 +0.883850 +0.931856 +0.875493 +0.620222 +0.707189 +0.747343 +-0.633253 +0.771918 +0.929576 +0.841350 +0.832437 +0.861790 +0.963504 +0.933837 +0.777360 +0.854645 +0.556802 +-1.342476 +-0.064837 +0.730411 +0.994372 +-0.081732 +0.584674 +0.433954 +0.907514 +0.462125 +0.298246 +0.618391 +0.599202 +-0.884524 +0.832973 +-0.054105 +0.969875 +0.894650 +0.764423 +0.842731 +0.759699 +0.835474 +0.313042 +0.557984 +0.780061 +-0.199915 +0.822738 +0.287528 +0.366595 +0.638690 +0.924465 +0.705826 +0.347193 +0.346880 +0.820585 +0.100422 +0.884952 +0.574884 +0.256165 +0.482740 +0.598212 +0.658352 +0.406496 +0.876224 +-0.133538 +0.583398 +0.421507 +0.765739 +0.147556 +0.358278 +0.623259 +0.691448 +0.727629 +0.588309 +0.752280 +0.015790 +-1.288157 +0.783423 +0.034216 +0.564688 +0.378319 +0.643984 +0.649547 +0.571798 +0.396533 +0.379207 +0.186105 +0.875118 +0.579240 +0.845772 +-71205.871503 +0.186929 +0.374890 +0.606960 +0.898794 +0.223885 +0.773901 +0.833645 +0.648721 +0.998582 +0.352768 +0.866213 +0.872544 +0.719056 +0.977408 +0.421259 +0.350410 +0.691705 +0.691101 +0.459898 +0.707053 +-0.134213 +0.855008 +0.604482 +0.152403 +0.091680 +0.372017 +0.289133 +0.304170 +0.097116 +0.464502 +0.941186 +0.635375 +0.946022 +-0.277039 +0.896835 +0.950570 +0.350687 +0.278004 +0.379355 +0.904182 +0.932716 +0.960207 +0.615943 +0.510321 +0.716676 +0.995446 +0.418945 +0.663725 +0.749466 +-0.137405 +0.636314 +-0.187542 +0.865916 +0.452554 +0.688546 +0.892405 +0.646063 +0.452295 +0.766772 +0.878678 +0.865299 +0.927779 +0.826081 +0.919156 +0.971294 +0.350159 +0.724669 +0.925811 +0.385967 +-0.487386 +0.912165 +0.925383 +0.801109 +0.917743 +0.938361 +0.720878 +0.766099 +0.930686 +0.489768 +0.917548 +0.818090 +0.839955 +0.728937 +0.860861 +0.777910 +0.454476 +-0.030313 +-0.101745 +0.231384 +0.624730 +0.474872 +0.369970 +0.481026 +0.951151 +0.821361 +0.653684 +0.465504 +0.525445 +0.971876 +0.767245 +0.874836 +0.790084 +0.876002 +0.428803 +0.842450 +0.538855 +0.836357 +0.190820 +0.641002 +0.930076 +0.898637 +0.388436 +0.569776 +-0.107449 +0.919375 +0.860701 +0.281160 +0.401675 +0.851788 +0.871341 +0.833028 +0.482421 +0.453919 +0.745811 +0.922610 +0.786734 +0.868043 +0.552244 +0.765673 +0.785382 +0.912608 +0.692176 +0.829689 +0.174925 +0.334446 +0.296158 +0.993874 +0.947630 +0.986392 +0.919520 +0.359795 +0.389928 +0.800053 +0.689644 +0.783991 +0.754070 +0.415777 +0.344180 +0.925565 +0.871113 +0.824178 +0.414559 +0.125435 +0.962210 +0.692674 +0.423171 +0.655054 +0.896627 +-0.349430 +0.421480 +0.919320 +0.612126 +0.468925 +0.871900 +0.894308 +0.925238 +0.877220 +0.654634 +0.526199 +0.838007 +0.464575 +0.383812 +-0.148911 +-8.970625 +0.301775 +0.738120 +-0.445112 +-0.354800 +0.729259 +0.657700 +0.734058 +0.989779 +0.092218 +0.597449 +0.869398 +0.985668 +0.925727 +0.616397 +0.236843 +0.247412 +0.555964 +0.703062 +0.455115 +0.040289 +-0.714265 +0.694653 +0.848584 +0.728052 +0.881819 +0.479192 +0.837527 +0.835522 +0.581114 +0.832096 +0.391128 +-0.065737 +0.918062 +0.128403 +-1.377435 +0.098606 +0.038195 +0.377401 +0.721734 +0.833554 +0.469775 +0.560834 +0.683031 +0.730172 +0.550813 +0.877004 +0.604652 +0.621007 +0.926391 +0.048031 +0.883212 +0.688455 +0.867774 +-0.443125 +0.941745 +0.820237 +0.796932 +0.643683 +0.798114 +0.815442 +0.858984 +0.913533 +0.615826 +0.835730 +0.642698 +0.781779 +-14.179692 +0.914778 +0.926098 +0.938183 +-0.074794 +0.943864 +0.825283 +0.852959 +-0.008856 +0.596352 +0.830490 +0.505634 +0.993572 +-0.118675 +0.669810 +0.007476 +0.652389 +0.507176 +0.657807 +0.839775 +0.583032 +0.874684 +0.551326 +0.657909 +0.763760 +0.831029 +0.753823 +0.922106 +0.876216 +0.242368 +0.724321 +0.529399 +0.845815 +0.668639 +0.639847 +0.765403 +0.552438 +-1.036929 +0.781795 +0.634635 +0.858709 +0.317874 +0.332886 +0.440430 +0.355456 +0.521105 +0.820805 +0.665947 +0.438561 +0.938154 +0.307813 +0.729512 +0.450753 +0.930498 +0.363218 +-0.478448 +0.716092 +0.393354 +0.762312 +0.804404 +0.809468 +0.773206 +0.703555 +0.688372 +0.560144 +0.937305 +0.875759 +0.527859 +0.992220 +0.691695 +0.516274 +0.517301 +0.524470 +0.974046 +0.848662 +0.930074 +0.999915 +0.998352 +0.999732 +0.026900 +0.626582 +0.711758 +0.890580 +-5.901313 +0.577090 +0.351549 +0.903425 +0.930705 +0.085229 +0.778869 +-0.228609 +0.176227 +0.982656 +0.501986 +0.864363 +-0.158600 +-0.270970 +0.439898 +0.948207 +0.915288 +0.555192 +0.314822 +0.948793 +0.429746 +0.306808 +0.588027 +0.115082 +0.095651 +0.611996 +0.765192 +0.446300 +0.845355 +0.851586 +0.439981 +0.333006 +0.512531 +0.024741 +0.812192 +0.296729 +-0.155035 +0.561490 +0.409067 +0.071115 +0.299827 +0.776638 +0.819528 +0.217148 +0.051819 +0.011049 +0.122595 +0.844299 +0.410282 +0.653470 +0.461224 +0.655635 +0.551212 +0.408629 +-0.124773 +0.827088 +0.216132 +0.613488 +0.185859 +0.969185 +0.865388 +0.963332 +0.707594 +0.751704 +0.758103 +0.796322 +0.863720 +0.928526 +0.873468 +0.952354 +0.977665 +0.894644 +0.984771 +0.708097 +0.806775 +0.645648 +0.585726 +0.528763 +0.346312 +0.754607 +0.797402 +0.593232 +0.853153 +0.746791 +0.465867 +0.522959 +0.501641 +0.713439 +0.992605 +0.707797 +0.753634 +0.643276 +0.571713 +0.431667 +0.858148 +0.531591 +0.918525 +0.352464 +0.666376 +0.344712 +0.916879 +0.875383 +0.862033 +0.814345 +0.746038 +-0.180507 +0.465888 +0.497967 +-650.980980 +-10.902113 +-0.472415 +-3.166054 +-43.108978 +-7.591799 +0.691212 +0.747243 +0.800607 +0.918409 +0.685988 +0.518220 +0.271608 +0.417707 +0.615496 +0.587801 +0.363483 +0.463020 +0.648915 +0.373081 +0.535791 +0.521084 +0.457065 +0.558005 +0.509389 +0.600970 +0.525855 +0.877265 +0.680925 +0.964852 +0.983149 +0.714453 +0.811940 +0.739566 +0.733825 +0.977652 +0.527912 +0.572279 +0.808639 +0.966507 +0.353347 +0.469584 +0.531765 +0.600143 +0.514804 +0.567982 +0.498010 +0.460325 +0.440608 +0.777637 +0.731882 +0.697890 +0.417654 +0.631704 +0.777785 +0.251922 +0.526683 +0.755514 +0.279069 +0.703698 +0.927523 +0.752276 +0.641817 +0.857245 +0.370705 +0.790888 +0.480825 +0.266863 +0.764653 +0.268103 +0.160675 +0.314952 +0.498497 +0.714755 +0.241103 +0.214719 +0.761133 +0.783087 +0.649069 +0.401966 +0.408654 +0.748163 +0.196799 +0.020087 +0.019384 +-0.175981 +-0.045613 +0.756399 +0.524620 +0.170698 +0.658598 +-0.096695 +0.671099 +0.246498 +0.322273 +0.297470 +0.124476 +0.169808 +0.081163 +0.564491 +0.408103 +0.531527 +0.034728 +0.651645 +0.756622 +0.802882 +0.651019 +0.303166 +0.532108 +0.831761 +0.398793 +0.350531 +0.926869 +0.985669 +0.669148 +0.716768 +0.068274 +0.930436 +0.878692 +0.628085 +0.001051 +0.696670 +0.681500 +0.038658 +0.663606 +0.763308 +0.839407 +0.855164 +0.528872 +0.992371 +0.590101 +0.916134 +0.873478 +0.648004 +-0.208012 +0.648739 +0.925490 +0.736540 +0.978333 +0.936846 +0.854163 +0.871091 +0.505282 +0.888139 +0.437165 +0.933370 +0.880444 +-0.130801 +0.940919 +0.871235 +0.803010 +0.522277 +0.937580 +0.630151 +0.944752 +0.986433 +0.736980 +0.942149 +0.520523 +0.827531 +0.211520 +0.784427 +0.564582 +0.038392 +0.825294 +0.935922 +0.521319 +0.234790 +0.675883 +0.507322 +0.210914 +0.449862 +0.366115 +-0.010506 +0.398647 +0.709251 +0.300496 +0.692560 +0.938475 +0.487830 +0.478484 +0.738574 +0.711951 +-0.125192 +0.512474 +0.971200 +0.717882 +0.288657 +0.251761 +0.629927 +0.618130 +0.755360 +0.749969 +0.875047 +0.184832 +0.690251 +0.394321 +0.997960 +0.400324 +0.292871 +0.773936 +0.629501 +0.619430 +0.660785 +0.635342 +0.117158 +0.851035 +0.581825 +0.367856 +0.983765 +0.742043 +0.664935 +0.674216 +0.582058 +0.406883 +0.857237 +0.603115 +-0.211880 +0.821202 +0.634218 +0.994547 +0.573981 +0.514660 +0.779176 +0.689194 +-0.159268 +0.296615 +0.084418 +0.582040 +0.703422 +0.320699 +0.568290 +0.262955 +0.967779 +-0.549787 +0.923463 +0.250315 +0.012918 +0.356363 +0.215048 +0.916030 +0.006179 +0.451237 +0.314922 +0.208044 +0.638341 +0.464669 +0.988568 +0.996043 +0.614133 +0.714933 +0.026268 +0.206553 +0.129522 +0.829409 +0.432633 +0.787071 +0.500245 +0.270267 +0.641571 +0.850650 +0.954275 +0.221952 +-0.288611 +0.578909 +0.751710 +0.559638 +0.521534 +0.772334 +0.801074 +0.243809 +0.271034 +0.731095 +0.767469 +0.804943 +0.693699 +-0.315666 +-0.098879 +0.229764 +0.631501 +0.918949 +-0.197163 +0.941791 +0.837035 +0.771423 +0.931263 +0.715838 +0.930960 +0.883535 +0.663121 +0.804886 +-0.235790 +0.981095 +-0.171908 +-0.262955 +0.814337 +0.701867 +0.739127 +0.356920 +0.976980 +0.896338 +0.978564 +0.569039 +0.933224 +0.719395 +0.987761 +0.428215 +-0.475794 +0.927754 +0.383893 +0.937394 +0.992790 +0.875336 +0.435896 +0.849123 +0.915765 +0.473971 +0.908148 +0.954126 +0.808360 +0.837987 +0.935344 +0.559357 +0.482210 +0.752540 +0.060965 +0.493465 +0.678104 +0.493380 +0.365334 +0.518644 +0.846962 +0.788260 +0.740531 +0.965244 +0.765704 +0.863662 +0.526628 +0.611593 +0.896967 +0.629181 +0.468756 +0.890103 +0.511755 +0.925023 +0.543635 +0.888947 +0.890947 +0.598648 +0.668781 +0.622809 +0.766283 +0.739105 +-1.435824 +0.891131 +0.368724 +-0.021168 +0.905991 +0.575728 +0.767760 +0.543006 +0.624573 +0.489240 +0.720809 +0.600056 +0.978315 +0.414423 +0.556270 +0.833219 +0.661793 +0.432947 +0.339052 +0.791048 +0.754718 +0.768284 +0.870518 +0.922158 +0.827199 +0.463738 +0.718701 +0.571136 +0.834098 +0.883734 +0.610538 +0.969582 +0.732384 +0.407522 +0.886982 +0.492125 +0.559785 +0.885335 +0.875088 +0.775112 +0.344776 +0.775039 +0.977634 +0.439424 +0.845051 +0.617436 +0.539472 +0.487770 +0.890523 +0.411651 +0.883108 +0.935399 +0.911452 +0.797929 +0.816706 +0.157445 +0.751774 +0.852916 +0.706891 +0.866738 +0.918727 +0.939764 +0.673411 +0.857286 +0.859149 +0.661340 +0.880047 +0.577071 +0.936612 +0.907834 +0.846988 +0.861004 +0.814703 +0.727609 +0.848723 +0.801825 +0.665929 +0.605321 +0.695454 +0.622229 +0.468740 +0.394859 +0.778891 +0.922381 +0.539033 +0.691747 +0.516481 +0.480766 +0.685027 +0.737239 +0.690236 +0.831781 +0.903319 +0.779361 +0.847864 +0.905683 +0.834854 +0.768509 +0.779858 +-0.034510 +0.911549 +0.348345 +0.919889 +0.739015 +0.933893 +0.954736 +0.980511 +0.373794 +0.664313 +0.698342 +0.945052 +0.334180 +0.763697 +0.334524 +0.084207 +0.919520 +0.971831 +0.699022 +0.475096 +-0.198640 +0.559513 +0.637702 +0.641828 +0.967850 +0.009241 +0.535583 +0.126678 +0.754111 +0.084521 +0.063721 +0.079193 +0.233927 +0.063242 +0.248234 +0.190565 +0.877601 +0.088623 +0.957991 +0.501505 +0.892559 +-0.001876 +0.203422 +0.578915 +0.892451 +0.094355 +0.045716 +0.350452 +-0.002662 +0.029630 +0.738702 +0.469417 +0.770677 +-0.207442 +0.728226 +0.849298 +0.362668 +0.343293 +0.508636 +0.557436 +0.795443 +0.995834 +0.748111 +-6.405625 +0.330364 +0.747029 +0.939174 +0.903971 +0.954671 +0.756461 +0.818022 +0.985017 +0.314943 +-0.164322 +0.661308 +0.500887 +0.115767 +0.599635 +0.684687 +0.347659 +0.579297 +0.361701 +0.934975 +0.751058 +0.440841 +0.709813 +0.610377 +0.381510 +0.577929 +0.860683 +0.383505 +0.723655 +0.577752 +0.994004 +0.530272 +0.783102 +0.592426 +0.476745 +0.932441 +0.790254 +0.985200 +-0.063997 +0.916167 +0.430657 +0.182793 +0.254544 +0.528363 +0.109033 +0.323833 +0.323833 +0.323833 +0.947128 +0.056576 +0.235057 +0.683982 +0.778267 +0.718581 +0.853222 +0.502066 +0.844396 +0.356747 +0.602992 +0.989552 +0.993465 +0.757011 +0.425601 +0.868605 +0.981638 +0.326680 +0.500683 +0.326319 +0.748178 +0.915049 +0.866371 +0.377210 +0.921118 +0.925976 +0.096619 +0.876539 +0.706535 +0.718933 +0.718933 +0.425095 +0.239492 +0.882505 +0.467270 +0.533456 +-3.235962 +0.489621 +0.619086 +0.459876 +0.752776 +0.850244 +0.753646 +0.510064 +0.347694 +0.688064 +0.605866 +0.740525 +0.878545 +-1.308241 +-0.096866 +0.441177 +0.919718 +0.039713 +0.916893 +0.415010 +0.915932 +0.690623 +0.470112 +0.907185 +0.658502 +0.619401 +0.413492 +0.740463 +0.042731 +0.117250 +0.709025 +0.880811 +0.463337 +0.526349 +0.752069 +0.936482 +0.790551 +0.911266 +0.922735 +0.918049 +0.933569 +-0.091754 +0.651448 +0.733165 +0.643773 +0.371463 +0.680029 +0.808571 +0.917058 +0.092693 +0.985819 +0.758649 +0.769389 +0.788992 +0.649829 +0.454923 +-0.218495 +0.776960 +0.837205 +0.189664 +0.577573 +0.837291 +0.704406 +0.636983 +0.367051 +0.974042 +0.887843 +0.838279 +0.829405 +0.866969 +0.451563 +0.390251 +0.814730 +0.870972 +0.942554 +0.695802 +0.896598 +0.861350 +0.831407 +0.936353 +0.520429 +0.768717 +0.826803 +0.806792 +0.528705 +0.429384 +0.900366 +0.466709 +0.206767 +0.854527 +0.595527 +0.914641 +0.860807 +0.552760 +0.487462 +0.565617 +0.719379 +0.736328 +0.178175 +0.778630 +0.677311 +0.002359 +0.959299 +0.627811 +0.266398 +0.727948 +0.343791 +0.490456 +-0.048280 +0.456583 +0.303389 +0.356899 +0.351548 +0.742600 +0.363323 +0.441781 +0.911448 +0.441601 +0.898300 +0.820261 +0.619105 +0.487153 +0.923169 +0.761699 +0.761749 +0.037863 +0.808470 +0.962503 +0.674109 +0.114399 +-0.080018 +0.583692 +0.525614 +0.602023 +0.442710 +0.431796 +0.661533 +0.621113 +0.424197 +0.570329 +0.885898 +0.511034 +0.431440 +0.511391 +0.707098 +0.806843 +0.596396 +0.517389 +0.448887 +0.283015 +0.670329 +-1.070105 +0.602068 +0.728413 +0.375228 +0.518351 +0.889004 +0.493841 +0.834512 +0.559336 +0.593530 +0.695885 +0.181956 +0.732061 +0.506525 +0.343580 +0.608712 +0.373572 +0.256280 +0.930846 +0.837863 +0.283968 +0.534471 +0.391232 +0.588959 +0.896914 +0.530709 +0.933880 +0.915151 +0.625950 +0.910632 +0.866446 +0.857626 +0.460106 +0.889599 +0.941151 +-0.843309 +0.934932 +0.939209 +0.937858 +0.902029 +0.477471 +0.935820 +0.953989 +0.937865 +0.830547 +0.909124 +0.971053 +0.833069 +0.953697 +0.825786 +0.402627 +0.420838 +0.140715 +-8.985910 +0.276285 +0.020685 +0.857757 +0.736168 +0.843869 +0.344053 +0.502658 +0.891103 +0.580404 +0.978851 +0.751239 +0.979751 +0.581609 +0.808223 +0.327092 +0.716521 +-0.244406 +0.810911 +0.454221 +0.858037 +0.441149 +0.712576 +0.747161 +0.252017 +0.672432 +0.639602 +0.139083 +0.295530 +0.604355 +0.698043 +-0.113400 +0.485296 +0.998026 +0.412262 +0.607407 +0.355207 +0.498559 +0.929525 +0.904762 +0.744873 +0.934734 +0.354594 +0.860899 +0.761826 +0.713813 +0.451296 +0.728608 +0.268805 +0.908873 +0.529120 +0.436881 +0.313666 +-5777896668.096410 +0.723258 +0.888099 +0.840419 +-93.155090 +0.431384 +0.433117 +0.865802 +0.982722 +0.628274 +0.839175 +0.941642 +0.529389 +-0.951657 +0.592645 +0.671815 +0.323577 +0.894337 +0.789482 +0.743150 +0.867602 +0.352567 +0.727466 +-0.341172 +0.747758 +0.800823 +0.970319 +0.822188 +0.910970 +0.275781 +0.109891 +0.640648 +0.750344 +-0.168240 +0.972724 +0.500054 +0.396663 +0.777677 +0.937936 +0.135748 +-0.221120 +-0.217407 +-0.210472 +0.546177 +0.844677 +0.404278 +-0.110633 +0.381704 +0.023688 +0.708283 +0.655008 +0.675619 +0.902434 +0.777711 +0.549456 +0.861691 +0.878026 +-0.109659 +0.914713 +0.817966 +0.711916 +0.905809 +0.840347 +0.937929 +0.452123 +0.404065 +0.849712 +0.841931 +0.843781 +0.788499 +0.826395 +0.948526 +0.935228 +0.355173 +0.573399 +0.586070 +0.732191 +-0.219798 +0.797187 +0.656207 +-0.982706 +0.316722 +0.784489 +0.982946 +0.237042 +0.880479 +-3.083782 +0.778953 +0.697901 +0.848445 +0.449195 +0.810028 +0.769312 +0.658120 +0.786310 +0.881158 +0.663419 +0.842400 +0.879962 +0.931677 +0.787861 +0.903468 +0.752222 +0.935910 +0.290454 +0.432495 +0.533171 +0.281794 +0.243707 +0.931296 +0.985215 +0.968271 +0.231969 +0.980047 +0.820659 +0.836526 +0.705016 +0.555313 +-0.153863 +0.637191 +0.500409 +-0.125052 +0.225833 +0.660963 +0.836942 +0.802371 +0.691183 +0.478251 +0.672924 +0.974922 +0.556086 +0.487185 +0.290644 +0.935366 +0.489946 +0.524553 +0.110887 +0.474547 +0.693135 +0.812453 +0.810395 +0.559654 +0.718210 +0.774775 +0.192135 +0.418008 +0.644981 +0.874685 +0.590242 +0.663517 +0.495903 +0.538291 +0.696910 +-0.064442 +0.528499 +0.666133 +0.470798 +-0.228123 +0.360817 +0.450165 +0.936241 +0.891232 +0.451950 +0.514288 +0.789030 +0.495528 +0.877453 +0.610977 +0.493836 +0.545008 +0.006048 +0.314462 +0.606654 +0.488396 +0.595449 +0.591274 +0.832791 +0.748866 +0.808473 +0.637503 +0.356261 +0.702853 +0.737740 +0.516463 +0.642166 +0.753563 +0.935179 +0.668959 +0.844975 +0.841769 +0.977926 +0.745119 +0.671114 +0.722695 +0.501166 +0.661304 +0.845629 +0.923820 +0.363255 +0.582864 +0.842196 +0.785911 +0.709477 +0.474550 +0.724775 +0.847756 +0.358890 +0.419100 +0.426951 +0.724915 +0.773246 +0.663820 +0.605864 +0.596785 +0.265847 +0.783604 +0.372477 +0.834764 +0.403333 +0.260117 +0.048646 +0.839855 +0.842259 +0.840243 +0.913254 +0.875864 +0.797862 +0.879986 +0.616605 +0.629184 +0.385789 +0.889863 +0.459990 +0.795944 +0.666085 +0.708869 +0.920687 +0.939670 +0.891315 +0.847764 +0.604848 +-0.172278 +0.207789 +0.880634 +0.960760 +0.832231 +0.889990 +0.680875 +0.836450 +0.932377 +0.884425 +0.463214 +0.835832 +0.707008 +0.461305 +0.481518 +0.782537 +0.944943 +0.445687 +0.429222 +0.973632 +0.050042 +0.891583 +0.239082 +0.718647 +0.556270 +0.560110 +0.969656 +0.294931 +0.930442 +0.723683 +0.906734 +0.177506 +0.930841 +0.740676 +0.742372 +0.708622 +0.873399 +0.896375 +0.642333 +0.875302 +0.780155 +0.397817 +0.727613 +0.929985 +0.759917 +0.755245 +0.841956 +0.489674 +0.126208 +0.601288 +0.719384 +0.651276 +0.836537 +0.727597 +0.872962 +0.925380 +0.462331 +0.342934 +0.725957 +0.472314 +0.563598 +0.771101 +0.530571 +0.825596 +0.802024 +0.615072 +0.429090 +0.901864 +0.349205 +0.894548 +-0.460173 +0.643764 +0.922606 +0.881383 +0.687783 +0.766567 +0.730684 +0.216297 +0.932308 +0.836824 +0.934506 +0.913839 +0.530383 +0.657821 +0.854647 +0.730315 +0.647678 +0.513954 +0.907772 +0.822637 +0.530589 +0.520071 +0.752791 +0.542689 +0.300678 +0.287698 +0.237097 +0.580430 +0.347682 +-0.121223 +0.691846 +-0.848312 +0.844478 +0.698645 +0.226486 +0.507491 +0.316771 +0.385040 +-0.011517 +-0.356853 +0.818772 +-0.445465 +-0.156080 +0.831861 +0.898302 +0.768416 +0.849951 +0.356429 +0.725986 +0.715028 +0.214446 +0.833052 +0.510840 +0.363334 +0.603145 +-0.221911 +0.509120 +0.457335 +0.961007 +0.700975 +0.643402 +0.844704 +0.671964 +0.603518 +0.772918 +0.618738 +0.924241 +0.755759 +0.984567 +0.938278 +0.578044 +0.739180 +0.487591 +0.409525 +0.719261 +0.350301 +0.857335 +0.703822 +0.781060 +0.493610 +0.741220 +0.701138 +0.547997 +0.364975 +0.653257 +0.465132 +0.852567 +0.231848 +0.323246 +0.629189 +0.644403 +0.747354 +0.855282 +0.652499 +0.745281 +0.374655 +0.412827 +0.486770 +0.433580 +0.559482 +0.760060 +0.867219 +0.386660 +0.149669 +0.453230 +0.931392 +0.448919 +0.803072 +0.475336 +0.730584 +0.356201 +0.961540 +0.493673 +0.465056 +0.398843 +0.700952 +0.972834 +0.628461 +0.499614 +0.823682 +0.442519 +0.921167 +0.486292 +0.375585 +0.724481 +0.655021 +0.688006 +0.738060 +0.085754 +0.554529 +0.134479 +0.185830 +0.701535 +0.834072 +0.454492 +-0.704179 +0.549071 +0.725192 +0.892158 +0.275073 +0.390910 +0.483250 +0.579671 +0.468557 +0.351296 +0.723530 +0.931852 +0.923941 +0.846983 +0.367484 +0.546540 +0.692486 +0.124344 +0.625864 +0.729777 +0.311511 +0.647446 +0.911751 +0.480406 +0.919784 +0.496192 +0.777913 +0.670637 +0.887016 +0.742329 +0.308026 +0.189787 +0.393654 +0.757139 +0.579988 +0.693585 +0.404274 +0.648024 +0.892265 +0.928270 +0.869713 +0.806819 +0.930360 +0.719751 +0.913528 +-0.124316 +0.824024 +0.713884 +0.759796 +-88.416850 +0.715240 +0.449443 +0.892141 +0.902305 +0.842224 +0.568014 +0.491216 +0.799397 +0.996869 +0.927222 +0.977653 +0.610627 +0.939191 +0.945827 +0.885696 +0.889905 +0.910441 +-0.811218 +0.378119 +0.858181 +0.651549 +0.847865 +0.845426 +0.925910 +-0.323714 +0.226396 +0.988629 +0.998766 +0.914567 +0.999242 +0.929957 +-0.426529 +0.454854 +0.694638 +0.815300 +0.511319 +0.401333 +0.930243 +0.908875 +0.573463 +0.644211 +0.621137 +0.849295 +0.571238 +0.834657 +0.891487 +0.903141 +0.682499 +0.978385 +0.559278 +0.971630 +0.846889 +0.738829 +0.019165 +0.784302 +0.401560 +0.422236 +0.757977 +0.902606 +0.252280 +-0.001928 +0.941955 +0.902154 +0.832854 +0.890901 +0.532669 +0.536154 +0.907551 +0.506571 +0.522262 +0.856266 +0.861260 +0.720033 +0.222883 +0.300587 +0.606235 +0.204817 +0.195906 +0.897605 +0.396121 +0.114652 +0.473367 +0.305879 +0.392383 +0.722740 +0.599844 +0.753006 +0.484800 +0.682101 +0.611173 +0.667767 +0.845517 +0.952859 +0.788712 +0.332464 +0.702401 +0.618759 +0.829349 +0.812005 +0.890469 +0.890366 +0.465874 +0.581798 +0.539566 +0.929681 +0.777806 +0.934791 +0.790965 +0.890340 +0.245449 +0.277977 +0.541083 +0.650237 +-0.117654 +0.829554 +0.872778 +0.802030 +0.888810 +0.888810 +0.750941 +0.223792 +0.254338 +0.861781 +0.368936 +0.248028 +0.913090 +0.835883 +0.881855 +0.702619 +0.567873 +0.755914 +0.872002 +0.813226 +0.708322 +0.688404 +0.982305 +0.585555 +0.307707 +0.933492 +0.865536 +-0.161017 +0.630730 +0.411019 +0.593522 +0.969510 +0.932872 +0.452616 +0.851763 +0.357640 +0.649064 +0.407667 +0.921881 +0.891587 +0.493152 +0.654346 +0.529740 +0.730597 +0.654199 +0.913970 +0.540377 +0.799145 +0.633612 +0.224300 +0.855498 +0.141164 +0.895518 +0.542789 +0.553940 +0.725374 +0.669986 +0.901108 +0.381483 +0.884682 +0.890481 +0.849050 +0.805872 +0.468817 +0.482563 +0.595650 +0.604361 +0.421240 +0.376536 +0.567859 +0.704932 +0.230906 +0.519682 +0.678591 +0.489172 +0.917517 +0.980167 +0.445854 +0.541580 +0.948058 +0.678153 +-773.537092 +0.701780 +0.739947 +0.251085 +0.639209 +0.198606 +0.466715 +0.647808 +0.516452 +0.649508 +0.745607 +-0.595738 +0.790712 +0.881327 +0.948401 +0.835377 +0.876987 +0.413817 +0.525360 +0.724661 +0.778562 +0.736767 +0.942721 +-0.399807 +0.612887 +-0.267961 +0.852087 +0.859357 +0.809494 +0.269937 +0.901973 +0.114267 +0.680755 +0.874755 +0.371988 +0.414566 +0.929221 +0.082400 +-0.145188 +0.673484 +0.738383 +0.884987 +0.607573 +0.831790 +0.654687 +0.814484 +-0.342931 +0.566461 +0.819574 +0.817981 +0.479799 +0.576940 +0.955191 +0.392050 +0.008378 +0.569374 +0.562385 +0.294932 +0.872393 +0.922368 +0.150180 +0.837383 +0.183313 +0.959343 +0.610420 +0.294440 +0.396208 +0.947869 +-0.754025 +0.314644 +0.444501 +-0.373720 +0.770037 +0.338092 +0.910109 +0.970466 +0.483655 +0.320315 +0.846411 +0.109911 +0.442654 +0.937861 +0.320413 +0.823605 +0.885404 +0.930509 +0.994109 +0.269623 +0.703555 +0.490737 +0.452814 +0.506496 +0.950137 +0.317603 +0.777264 +0.868436 +0.908773 +0.784325 +0.833965 +0.541103 +0.991893 +0.885203 +-9533.057883 +0.308272 +0.113133 +0.788644 +0.556472 +0.343279 +0.604369 +0.817823 +-0.343301 +0.728913 +0.493430 +0.962879 +0.668907 +0.835366 +0.145718 +0.380111 +0.807421 +0.830477 +0.942548 +0.992068 +0.993319 +0.507713 +0.401962 +0.704152 +0.815983 +0.327040 +0.459401 +0.803528 +0.983816 +0.933103 +0.977955 +0.537867 +-0.523474 +-0.011769 +0.846845 +0.846538 +0.550171 +0.857320 +0.819163 +0.557008 +0.998565 +0.785899 +-0.082439 +0.349469 +0.912791 +0.925094 +0.814973 +0.586028 +-0.243067 +0.827075 +0.395539 +0.998001 +0.421921 +0.380138 +0.693262 +0.394349 +0.032527 +0.363063 +0.781882 +0.725434 +0.349185 +0.636316 +0.406801 +-0.024838 +0.956467 +0.410499 +0.902107 +0.066285 +0.767429 +0.957625 +0.986920 +0.901228 +0.725572 +0.565887 +0.694055 +-0.105609 +0.790822 +0.524317 +0.365847 +-0.169160 +0.486064 +0.166576 +0.682445 +0.931420 +0.767432 +0.288494 +0.761045 +0.704824 +0.853821 +0.443278 +0.719921 +0.595611 +0.948537 +0.905632 +0.764193 +0.928904 +-6.971978 +0.574374 +0.972053 +0.354778 +0.224280 +0.882186 +-2.016200 +0.724416 +0.896277 +0.948005 +0.973656 +0.471918 +0.945025 +0.893551 +0.705475 +0.064635 +0.038021 +0.929534 +0.588720 +0.824977 +0.934852 +0.787644 +0.900052 +0.992488 +0.670487 +0.785888 +0.820758 +0.731534 +0.935126 +0.568719 +0.852997 +0.883636 +0.849063 +0.914592 +0.662964 +0.662200 +0.270036 +0.781659 +0.186415 +0.876566 +0.249904 +0.587050 +0.821632 +0.190361 +0.869941 +-0.016359 +0.771363 +0.278774 +0.507681 +0.155768 +-0.020164 +0.151509 +0.268886 +-0.072885 +0.509207 +0.967554 +0.458611 +0.608035 +-0.198419 +0.259547 +0.305280 +0.672222 +0.360360 +-0.180188 +0.442776 +0.490481 +0.709033 +0.323493 +0.443104 +0.292339 +0.439755 +0.642484 +0.802200 +0.102358 +0.294409 +0.837642 +0.830697 +0.517244 +0.435591 +0.881886 +0.955276 +0.785582 +0.751151 +0.722840 +0.895959 +0.537077 +-0.034864 +0.891613 +0.244942 +0.959708 +0.629950 +0.950010 +0.556763 +0.987369 +0.804632 +0.644896 +0.976869 +0.561530 +0.511775 +0.788261 +0.829771 +0.533820 +0.482970 +0.686726 +0.736556 +0.904961 +0.773080 +0.681273 +0.489313 +0.376993 +0.879476 +0.583581 +0.886700 +0.588571 +0.779390 +0.929867 +0.894164 +0.220937 +0.617304 +0.771570 +0.920516 +0.914168 +0.930750 +0.859752 +0.902884 +0.556727 +0.384222 +0.909332 +0.844213 +0.528539 +0.709744 +0.807566 +0.314262 +0.899800 +0.791224 +0.402533 +0.301006 +0.648151 +0.726608 +0.615098 +0.544819 +0.846698 +0.928145 +0.933030 +0.592915 +0.892585 +0.627419 +-0.157092 +0.063192 +0.410422 +0.931135 +0.867254 +0.909042 +0.848616 +0.493121 +0.568886 +0.982603 +0.755414 +0.440893 +0.864923 +0.788793 +0.918942 +0.700392 +0.735473 +0.665028 +0.839083 +0.841017 +0.914267 +0.419771 +0.577108 +0.785675 +-0.259462 +0.583158 +0.869838 +0.709464 +0.785514 +0.794602 +0.700457 +0.768051 +0.673050 +0.709430 +0.805981 +-0.161948 +0.822406 +0.912438 +-0.368880 +0.880260 +0.697487 +0.372473 +0.877426 +-0.134575 +0.709388 +0.789122 +0.885188 +0.739539 +0.177131 +0.727990 +0.738565 +0.443998 +0.600955 +0.930245 +0.449761 +0.755703 +0.854986 +0.865037 +0.625872 +0.628639 +0.680303 +0.910117 +0.705942 +0.881143 +0.668288 +0.636517 +0.358522 +0.462869 +-0.478957 +0.338092 +0.933903 +0.821025 +0.856976 +0.768851 +-0.138308 +0.527143 +-0.175827 +-0.036421 +0.908815 +0.001085 +0.776492 +0.596473 +0.871846 +0.742187 +0.718402 +0.871676 +0.448150 +0.939303 +0.755863 +0.868230 +0.151358 +0.886534 +0.668882 +0.910846 +0.928364 +-0.257949 +0.857952 +0.985717 +0.542490 +0.859316 +0.770331 +0.526710 +0.688456 +0.821836 +0.726404 +0.704681 +0.872145 +0.922310 +0.794569 +0.892174 +0.927808 +0.445826 +0.665878 +0.723100 +0.786629 +0.744715 +-0.283272 +0.530404 +0.527076 +0.629706 +0.743516 +0.934494 +0.480849 +0.669554 +0.922176 +0.390338 +0.893374 +0.801588 +0.797055 +0.859391 +0.766817 +0.735098 +0.587320 +0.694932 +0.521137 +0.570503 +0.743029 +0.652770 +0.673668 +0.898064 +0.938155 +0.942128 +0.928208 +0.951947 +0.917550 +0.742686 +0.569110 +0.755941 +0.346393 +0.499423 +0.725770 +0.731120 +0.925004 +0.751515 +-0.044549 +-0.749868 +0.770916 +-0.386381 +0.905877 +-0.209159 +-0.088185 +0.623643 +0.602425 +0.352669 +0.130371 +0.479881 +-0.119228 +0.386154 +0.176846 +-0.160313 +0.216631 +0.784893 +0.718617 +0.833948 +0.686313 +0.767655 +-0.370812 +-0.185251 +0.574415 +0.659375 +0.459440 +0.561684 +0.853976 +0.894894 +0.752093 +0.829865 +0.770327 +0.522388 +0.483952 +-0.006069 +-0.064860 +0.399427 +0.793681 +0.488927 +0.169088 +0.636539 +0.731332 +0.135416 +0.661533 +0.677063 +0.430090 +0.925154 +0.568823 +0.760770 +0.812599 +0.677694 +0.638473 +0.737546 +0.955885 +0.915085 +0.358466 +0.605169 +0.428276 +-0.449224 +0.639506 +0.904375 +0.920946 +0.929621 +0.843441 +0.773829 +0.521130 +0.935499 +-0.073820 +0.724357 +0.624372 +-0.034884 +0.761898 +0.756244 +0.892451 +0.380253 +0.549845 +0.477387 +0.921543 +0.930186 +0.929964 +0.231787 +0.746019 +0.776611 +0.931247 +0.870432 +0.807951 +0.870617 +0.888821 +0.931590 +0.740768 +0.937977 +0.819424 +0.902493 +0.970435 +0.824551 +0.443121 +0.775930 +0.559566 +0.602880 +0.773747 +0.892111 +0.724891 +0.976673 +-0.009302 +0.833322 +0.807396 +0.429565 +0.598707 +-0.233239 +0.704740 +0.815411 +0.835920 +0.851292 +0.320508 +0.907269 +0.294229 +0.610580 +0.444878 +0.411445 +-0.408340 +0.959070 +0.714806 +0.888508 +0.591197 +0.693702 +0.350500 +0.848343 +0.778364 +0.765729 +0.900652 +0.718342 +0.982588 +0.444073 +0.959294 +0.897476 +0.533537 +0.791269 +0.925010 +0.933958 +0.290920 +0.521021 +0.834603 +0.745310 +0.794550 +0.451369 +0.919188 +0.766620 +0.503598 +0.727521 +-1.210906 +0.592543 +0.423389 +0.190129 +0.843066 +-0.209705 +0.733912 +0.411162 +0.115964 +0.436849 +0.351980 +0.646339 +0.720656 +0.273210 +0.842914 +0.744241 +0.469170 +0.593415 +0.553936 +0.908249 +0.178368 +0.826214 +0.831700 +-0.143587 +0.882949 +0.840777 +0.931502 +0.928518 +0.985452 +0.933138 +0.829227 +0.700665 +0.540450 +0.800020 +0.805585 +0.401852 +0.241600 +0.896808 +0.871884 +0.497667 +0.753879 +0.938053 +0.054864 +0.523857 +0.787433 +0.790834 +0.926736 +0.330391 +0.897642 +0.898649 +0.672722 +-0.018839 +0.755503 +0.651135 +0.105237 +0.683714 +0.417763 +0.685623 +0.413093 +0.405524 +-0.174747 +0.631645 +0.653384 +0.944459 +0.489051 +0.691061 +0.599679 +0.697873 +0.422993 +0.385890 +0.704137 +0.926257 +0.845559 +0.305773 +0.738554 +0.794688 +0.424035 +-0.255557 +0.652172 +0.266807 +-0.002897 +0.358491 +0.289408 +-0.304436 +0.792614 +0.178598 +0.663024 +0.767502 +0.831596 +0.783808 +-0.365366 +0.823624 +-0.401566 +-0.377890 +0.820156 +0.040344 +-0.431352 +0.896824 +-0.099328 +0.921008 +0.387484 +0.570340 +0.545532 +0.588963 +0.417848 +0.264630 +0.355445 +-0.599966 +0.722474 +0.517357 +0.993886 +0.280913 +0.367780 +0.503880 +-0.096958 +0.993284 +0.783543 +0.899624 +0.389700 +0.371777 +-0.227053 +0.043770 +0.337087 +0.422515 +0.590238 +0.760139 +0.918928 +0.879349 +0.165704 +0.180611 +-0.601779 +0.889402 +0.817753 +0.501527 +0.897366 +0.700740 +0.053484 +0.816234 +0.652125 +0.991530 +0.707070 +0.310070 +0.844225 +0.926236 +0.721739 +0.546286 +0.896206 +0.803707 +0.948235 +0.621286 +0.353863 +0.633747 +0.940281 +0.948656 +0.758242 +0.177527 +0.244622 +0.331454 +0.918363 +0.828879 +0.655167 +0.595592 +0.732110 +0.819944 +0.224594 +0.726190 +0.485853 +0.928085 +0.352374 +0.935885 +0.798824 +0.821041 +0.790296 +0.765617 +0.768829 +0.915325 +0.238724 +0.529958 +0.807894 +0.781802 +0.608247 +0.614563 +0.608321 +0.598769 +0.601792 +0.533153 +0.844570 +0.733512 +0.701888 +0.932315 +0.915541 +0.527880 +0.851792 +0.737697 +0.877686 +0.944370 +0.740204 +0.652075 +0.875523 +0.686764 +0.790135 +0.912057 +0.931283 +0.797412 +0.456578 +0.777461 +0.397145 +0.795568 +0.772894 +0.760573 +0.699350 +0.930269 +0.676061 +0.686044 +0.887715 +0.893641 +0.793220 +0.500992 +0.806940 +0.942970 +0.413260 +-0.164488 +0.875111 +0.282163 +0.708761 +0.725971 +0.652686 +0.943384 +-0.030106 +0.562312 +0.857635 +0.349662 +0.611172 +-0.118982 +0.908164 +0.902988 +0.652644 +0.615993 +0.936761 +0.745000 +0.926239 +0.781322 +0.398044 +0.794008 +0.371260 +0.434551 +0.759920 +0.892180 +0.395003 +-0.088085 +0.705079 +0.595214 +0.885143 +0.795027 +0.790028 +0.849364 +0.000269 +0.883658 +0.934581 +0.970730 +0.751930 +0.954403 +0.925976 +0.280007 +0.798946 +0.462439 +0.438020 +0.023897 +-0.393168 +0.488853 +-0.333637 +0.827318 +0.255480 +0.488759 +0.711124 +0.438153 +0.407235 +0.826787 +0.994950 +0.580759 +0.973401 +0.962332 +0.500845 +0.949119 +0.684620 +0.883913 +0.685010 +0.721510 +0.665383 +0.886730 +0.541120 +0.727003 +-1.355967 +0.457918 +0.703202 +0.799181 +0.940810 +0.929824 +0.909291 +0.885877 +0.305714 +0.939698 +0.487656 +0.819865 +0.691105 +0.922368 +0.846790 +0.720843 +0.644924 +0.455118 +-0.039840 +0.108038 +0.158828 +-0.000316 +0.369519 +0.378962 +-0.073192 +0.257159 +0.789532 +0.178374 +0.482597 +0.843044 +0.825949 +-0.026971 +-0.056535 +0.777875 +-0.171328 +0.917071 +0.494828 +0.128404 +0.695664 +0.224369 +0.741143 +-0.280300 +0.355050 +0.095517 +0.841346 +0.355208 +0.705807 +0.387921 +0.476181 +-1.009616 +-0.090970 +0.330520 +0.852287 +0.865292 +0.756921 +0.557741 +0.705191 +0.839823 +0.513994 +0.514362 +-0.057489 +0.408573 +0.366883 +0.849669 +0.700727 +0.613445 +0.024964 +0.548942 +0.609221 +0.770759 +0.796426 +0.558678 +0.902986 +-0.113382 +0.602442 +0.670063 +0.587378 +0.596475 +0.921209 +0.668018 +0.941604 +0.123294 +0.769987 +0.360290 +0.843858 +0.898443 +0.199457 +0.524559 +0.216852 +0.773287 +0.428153 +-0.352796 +0.467388 +0.803172 +0.026837 +-0.345847 +0.772053 +0.513710 +-0.073651 +0.907002 +0.676143 +0.722689 +0.580645 +0.642035 +-0.107808 +0.417980 +0.896377 +0.555796 +0.991466 +-2.922157 +0.625137 +0.471113 +0.915144 +0.933129 +-0.087861 +0.950193 +0.763979 +0.888536 +-3.493393 +0.892913 +0.959782 +0.662597 +0.176923 +0.293522 +0.944636 +0.559984 +0.208669 +0.340325 +0.917684 +0.654996 +-0.071310 +0.804460 +0.686286 +0.769917 +0.748554 +0.889883 +0.931502 +0.208517 +0.618761 +0.524494 +0.794994 +0.829510 +0.171277 +0.248999 +0.770373 +0.034011 +0.394596 +0.518347 +0.686226 +0.806718 +0.798830 +0.382924 +0.910684 +0.894523 +0.902574 +0.930066 +0.933698 +0.690525 +0.264408 +0.785085 +0.750824 +0.256481 +0.724017 +0.829625 +-0.412981 +0.823234 +0.780821 +-0.104212 +0.822034 +0.560521 +0.667846 +0.426538 +0.874092 +0.129957 +0.374969 +0.988530 +-0.247596 +0.634990 +-0.313722 +0.034103 +0.503868 +0.710337 +0.450971 +0.186027 +0.085919 +0.736537 +0.207914 +0.793144 +0.992295 +0.889099 +0.180588 +-0.216392 +0.831773 +0.841605 +-0.140241 +0.434241 +0.926179 +0.741750 +0.651389 +0.736577 +0.772784 +0.744489 +0.792239 +0.628963 +-0.046541 +0.497338 +0.784803 +0.648040 +0.720368 +0.689050 +0.560340 +0.662890 +0.683900 +0.498487 +0.924288 +0.820909 +0.976371 +0.631874 +0.016077 +0.973113 +0.435877 +0.940289 +0.531288 +0.677351 +0.992091 +0.662158 +0.990923 +0.718800 +0.834390 +0.018992 +0.750409 +0.955825 +0.909474 +0.806276 +-0.211264 +0.609532 +0.964951 +0.975732 +0.926562 +0.963115 +0.587452 +0.733478 +0.439990 +0.937806 +0.958953 +0.966033 +0.848313 +0.970909 +0.849945 +0.908994 +0.749997 +0.749916 +0.924615 +0.752618 +0.438760 +0.863984 +0.087713 +0.238768 +0.742019 +0.757479 +0.879984 +0.284535 +0.330883 +0.678218 +0.859434 +0.201874 +0.613449 +-0.299661 +-0.256415 +0.090938 +0.840106 +0.666750 +0.782401 +0.938300 +0.382631 +0.684130 +0.394644 +0.689605 +0.956610 +0.808796 +0.922041 +0.734743 +0.731029 +0.836943 +0.279110 +0.619772 +0.579556 +0.251308 +0.894312 +0.901888 +-0.039589 +0.947929 +0.947670 +0.237396 +0.932913 +0.816741 +0.624939 +0.142763 +0.719549 +0.380179 +0.952276 +0.929910 +0.690437 +0.573774 +0.938050 +0.514367 +0.252419 +0.557169 +0.443380 +0.132978 +0.577297 +0.646186 +0.388598 +0.879261 +0.217375 +0.583650 +0.331001 +0.592620 +0.622266 +-15.415137 +0.907447 +0.993026 +0.987343 +0.930338 +0.198047 +0.937048 +0.944963 +0.778161 +0.946256 +0.981468 +0.916504 +0.448874 +-1462.043581 +0.655112 +0.770913 +-0.157283 +0.876204 +0.788822 +0.651391 +0.886044 +0.426551 +0.518210 +0.749268 +0.378694 +0.884962 +0.771360 +0.012157 +0.820180 +0.932007 +-0.386505 +0.365682 +0.530649 +0.884289 +0.856941 +0.464054 +0.522875 +0.853888 +0.884916 +0.777663 +0.857072 +-0.058159 +0.588342 +0.736695 +0.859433 +0.455929 +0.183203 +0.608737 +0.845102 +0.856392 +-0.099205 +0.277695 +0.565954 +0.936348 +0.361893 +0.540488 +-0.067760 +0.919892 +0.850344 +-0.225454 +-0.190665 +0.894903 +0.535985 +0.341109 +0.440736 +0.359055 +0.167131 +0.472372 +0.010874 +0.076791 +0.138765 +0.304634 +0.839429 +0.607630 +0.331493 +-0.426833 +0.258830 +0.524227 +0.637382 +0.005252 +-0.179609 +0.709238 +0.838398 +-0.255445 +0.563806 +0.700056 +0.557171 +0.723347 +0.676007 +0.285942 +-0.230095 +0.724674 +0.790245 +-0.300442 +0.144187 +0.381303 +0.141063 +0.617384 +0.734790 +0.957278 +0.917368 +0.722132 +0.955651 +0.846547 +0.720232 +0.693340 +0.521653 +-11.201582 +0.976422 +0.934398 +0.753658 +0.984706 +0.351830 +0.377813 +0.566482 +0.586411 +0.564667 +0.628601 +0.492729 +0.299641 +0.366216 +0.890458 +-0.306242 +0.816190 +-0.352248 +0.495540 +-0.198932 +-0.080435 +0.273354 +0.682884 +0.738510 +0.876513 +0.970429 +0.662926 +0.515494 +0.887969 +0.318757 +0.722800 +0.747332 +0.677983 +0.400852 +0.594012 +0.311871 +0.938145 +0.503704 +0.569620 +0.289039 +0.758949 +0.806558 +0.119874 +0.805105 +0.743000 +0.701470 +0.817429 +0.996728 +0.699888 +0.507449 +0.477938 +0.727027 +0.621444 +0.428576 +0.112050 +0.355230 +0.230597 +0.249499 +0.381117 +0.233390 +0.353159 +0.627784 +0.356590 +0.019420 +0.077888 +0.929310 +0.816801 +0.692800 +0.636975 +0.936162 +0.543859 +0.948663 +0.740497 +0.813332 +0.689213 +0.161738 +0.785366 +0.803591 +0.839523 +0.350364 +0.799191 +0.862289 +0.590003 +0.810110 +0.731028 +0.774716 +0.861372 +0.502810 +0.934247 +0.827442 +0.885663 +0.738792 +0.910049 +0.859919 +0.915708 +0.980547 +0.064571 +0.728112 +0.800257 +0.823758 +0.244530 +0.508164 +0.602965 +0.984286 +0.726877 +0.859382 +0.762113 +0.513593 +0.317598 +0.440534 +0.619211 +0.847099 +0.931587 +0.621524 +0.947275 +0.753414 +0.932095 +0.282566 +0.775184 +0.631300 +0.891020 +0.397108 +0.671701 +0.900511 +0.793685 +0.904880 +0.760295 +0.812726 +0.362102 +0.664700 +0.932649 +0.812087 +0.358596 +0.760125 +0.623127 +0.884116 +0.915191 +0.672701 +-0.150778 +0.655300 +0.649080 +-2.536520 +0.675689 +0.197022 +-0.215317 +0.768427 +0.697464 +-0.158125 +0.524261 +0.978346 +0.638864 +0.784823 +0.587068 +0.235896 +0.864078 +0.982566 +0.561667 +0.580822 +0.753818 +0.969025 +0.817654 +0.998826 +-0.187449 +0.434107 +0.869504 +0.941776 +0.615284 +0.541997 +0.761123 +0.377931 +0.880105 +0.549626 +-0.419686 +0.789368 +0.941183 +0.923178 +0.857404 +0.591221 +0.931780 +0.863527 +0.747263 +0.833122 +0.576336 +0.963536 +0.816585 +0.022647 +0.832442 +0.485631 +0.769918 +0.761692 +0.886559 +0.786252 +0.138275 +0.827239 +0.845762 +0.777012 +0.926808 +0.834947 +-0.360118 +0.904280 +0.692664 +0.890954 +0.712243 +0.928757 +0.279070 +0.737786 +0.119332 +0.216293 +0.911092 +0.835317 +0.835383 +0.734706 +0.090301 +0.909505 +0.683671 +0.347841 +0.983393 +0.781604 +-0.073172 +-0.501600 +0.142213 +0.838939 +0.790424 +-0.945145 +-0.253299 +0.984932 +0.329697 +0.240987 +0.206415 +0.442421 +0.281296 +0.453495 +0.506874 +0.440371 +0.985743 +0.495063 +0.319203 +-0.380628 +0.886019 +0.566162 +0.467708 +0.238389 +0.047110 +0.089315 +0.335275 +0.266012 +0.868182 +0.769160 +0.272460 +0.249099 +0.643880 +0.726600 +0.731128 +0.835408 +0.837394 +0.098465 +0.585169 +0.370864 +0.324743 +0.242210 +-283.455209 +0.226905 +-0.461055 +0.507153 +0.406484 +0.385780 +0.381281 +0.924187 +0.813522 +0.517741 +0.552233 +0.335639 +0.775429 +0.861684 +0.645327 +-0.013746 +0.779281 +0.941529 +0.611805 +0.943072 +0.709230 +0.923673 +0.335401 +0.815453 +0.843574 +0.589428 +0.389919 +0.878176 +0.999242 +0.746222 +-0.202368 +0.825857 +0.772574 +0.623292 +0.525433 +0.936707 +0.900336 +0.698491 +0.796975 +0.802979 +0.800916 +0.349456 +-0.238384 +0.909741 +0.541154 +0.455222 +0.553902 +0.765589 +0.808900 +-0.067240 +0.840289 +0.919815 +0.922093 +0.856019 +0.850592 +0.543973 +0.520643 +0.686411 +0.954596 +0.912004 +0.541572 +0.827272 +0.929345 +0.502169 +0.415277 +0.773859 +0.900484 +0.237394 +0.781864 +0.929473 +0.387265 +0.498167 +0.419138 +0.377195 +0.933237 +0.648701 +0.655339 +0.339009 +0.900055 +0.403476 +0.837396 +0.931877 +0.279096 +0.832078 +0.797927 +0.697029 +0.934561 +0.956426 +0.858132 +0.708634 +0.524401 +0.731920 +0.630475 +0.646542 +0.996575 +0.629171 +0.184843 +-0.220795 +0.835699 +0.318315 +0.260437 +0.429146 +0.226064 +0.949895 +0.483767 +0.326286 +0.172535 +0.717127 +0.433870 +0.946135 +-30.139497 +0.033487 +0.843082 +0.855062 +0.878959 +0.771232 +0.275925 +0.883368 +0.342872 +0.908086 +-0.028283 +0.754896 +0.239847 +0.362058 +0.148786 +0.264081 +-0.602657 +0.343076 +0.833856 +0.681808 +-0.119867 +0.844561 +-0.109954 +-0.103293 +-0.201491 +0.355098 +0.144808 +0.323819 +0.715369 +-0.236690 +0.264008 +0.052456 +-0.191273 +0.846589 +-0.144474 +0.582011 +0.495128 +0.553628 +0.265853 +0.541279 +0.925803 +-0.494125 +0.884990 +0.934193 +0.880997 +0.515949 +-0.160242 +0.760150 +0.938419 +0.487773 +0.489362 +0.921812 +0.924679 +0.874605 +0.758125 +0.931884 +0.933471 +-0.372650 +0.754141 +0.919062 +0.860315 +0.721343 +0.711502 +0.749454 +0.761010 +0.900365 +-0.011618 +0.799760 +0.915569 +0.797736 +0.922717 +0.564308 +0.334410 +-0.324117 +-0.081042 +0.728865 +0.693890 +0.615885 +0.955984 +0.713250 +0.813523 +0.762947 +0.771697 +0.952734 +0.749834 +0.946410 +0.957702 +0.336761 +0.952558 +0.851973 +0.614824 +0.319128 +0.631078 +0.826226 +0.937981 +0.943451 +0.837896 +0.966964 +0.994660 +0.995760 +0.192308 +0.806390 +0.843332 +0.329292 +0.712258 +0.668104 +0.756920 +-0.010797 +-0.158963 +0.811712 +0.358312 +0.918437 +0.690394 +0.279402 +0.378191 +0.246818 +0.894339 +-0.234840 +0.369010 +0.260551 +0.573259 +0.526791 +0.865906 +0.328949 +0.909717 +0.258715 +-0.058931 +0.229542 +0.700291 +0.466688 +0.769860 +0.447684 +0.298041 +-0.312327 +0.438618 +0.485474 +0.522730 +-0.174645 +0.786488 +0.531430 +0.458298 +0.479577 +0.697820 +0.349122 +-0.061570 +0.618134 +0.737871 +0.927194 +0.944677 +-0.258936 +0.405557 +0.470681 +0.512840 +0.367124 +0.324155 +0.426233 +0.371025 +0.537175 +0.226359 +0.385979 +0.822294 +0.460067 +0.620373 +0.622157 +0.830216 +0.766875 +0.715208 +0.005301 +0.854392 +0.849051 +0.893579 +0.543585 +0.646416 +0.846927 +0.796178 +0.906108 +0.538659 +0.875417 +0.893796 +0.930171 +0.826516 +0.650339 +0.747447 +-1.630102 +0.923289 +0.801327 +0.845255 +0.382076 +0.888122 +0.786726 +0.600652 +0.822335 +0.731842 +0.819024 +0.949295 +0.664949 +0.241018 +-0.217295 +0.643657 +0.597294 +0.788133 +-0.884431 +0.258804 +0.435476 +0.851017 +0.766637 +0.350194 +0.870510 +0.857421 +0.802661 +0.965366 +0.688462 +0.906857 +0.698576 +0.375966 +0.070567 +0.868089 +0.841827 +0.591841 +0.661527 +-0.046546 +0.979354 +0.205073 +-0.168246 +0.828109 +0.624025 +0.884635 +0.955993 +0.875387 +0.791299 +0.689782 +0.377307 +0.837073 +0.891238 +0.485600 +0.341405 +0.663354 +0.746107 +0.926334 +0.923710 +0.543056 +0.015566 +0.955837 +0.569174 +0.481018 +0.722606 +0.898450 +0.570162 +0.219601 +0.956784 +0.335644 +0.488854 +0.489972 +0.715246 +0.585184 +0.847850 +0.912268 +-0.216285 +0.443891 +0.827283 +0.579864 +0.987284 +0.922471 +0.978030 +0.951063 +0.749224 +0.797559 +0.613539 +0.943463 +0.442900 +0.871140 +0.870695 +0.998190 +0.838272 +0.894955 +0.222640 +0.831039 +-0.067608 +0.469570 +0.448925 +0.908031 +0.463423 +0.535474 +-0.110156 +0.624594 +0.598875 +0.680295 +0.770431 +0.593362 +0.704589 +0.362054 +0.932344 +0.932804 +-0.184670 +0.950473 +0.851985 +0.654612 +0.562401 +0.987810 +0.855376 +0.191551 +0.911862 +-0.162863 +0.939035 +0.464933 +0.091563 +0.580648 +0.921089 +0.867079 +0.814955 +0.912077 +0.952746 +-1.081806 +0.890036 +0.788194 +-0.338947 +-0.055228 +0.459297 +-0.241957 +0.155938 +0.373320 +-0.089650 +0.226518 +0.395782 +-1.582204 +-0.117543 +0.285489 +0.869270 +0.468044 +0.613691 +0.833399 +0.719162 +-0.166193 +0.874020 +0.750361 +0.716119 +0.718753 +0.644827 +0.841743 +0.433961 +0.829980 +0.241235 +0.430391 +0.499783 +0.864590 +0.430063 +0.623486 +0.466369 +0.226582 +0.783922 +0.815923 +0.187174 +-0.413329 +-0.142248 +-0.281063 +0.738255 +0.153643 +0.594995 +0.686284 +0.625695 +0.616141 +0.835811 +0.579161 +0.857912 +0.520582 +0.891185 +0.908997 +-0.097399 +0.699731 +0.919694 +0.644905 +0.626700 +0.789911 +0.668151 +0.611550 +0.329957 +0.311474 +0.633495 +0.519792 +0.586791 +0.839398 +0.732567 +0.507814 +0.775884 +0.990737 +0.938947 +0.709363 +0.675576 +0.267124 +0.375556 +0.413627 +0.666400 +0.518800 +0.326348 +-0.212391 +0.788991 +0.403846 +0.963959 +0.424189 +0.508126 +0.898855 +-0.216210 +0.697487 +0.539845 +0.508617 +0.633277 +-0.182131 +0.848897 +0.478979 +0.687785 +0.685561 +0.485361 +0.750985 +0.072531 +0.876421 +0.910903 +0.371624 +0.926176 +0.668172 +-0.126895 +0.281511 +0.097469 +0.984777 +0.773275 +0.801994 +0.662512 +0.173286 +0.686812 +0.809833 +0.275371 +0.677882 +0.440326 +0.591607 +0.344110 +0.743089 +0.733268 +0.897522 +0.360262 +0.465391 +0.024640 +0.138454 +0.570759 +0.592021 +0.789356 +0.676982 +-0.318117 +0.891617 +0.062541 +0.869024 +0.600984 +0.514534 +0.828547 +0.887376 +0.095986 +0.779315 +0.683376 +0.894992 +0.984040 +0.548855 +0.343710 +0.924567 +0.797260 +0.286766 +0.465152 +0.305427 +0.976849 +0.425809 +0.914495 +0.924604 +0.952332 +0.527858 +0.856740 +0.489004 +0.910680 +0.333870 +0.855347 +0.485655 +0.270221 +0.368180 +0.778408 +0.932769 +0.463591 +0.878897 +0.810605 +0.834095 +0.438090 +0.489682 +0.490521 +0.793619 +0.933872 +0.970607 +0.502200 +0.598473 +0.719320 +0.871180 +0.677850 +0.687098 +0.427872 +0.546824 +0.651493 +0.867368 +0.869650 +0.693286 +0.484954 +0.259086 +0.735340 +0.689642 +0.872778 +0.476325 +0.438359 +0.969486 +0.907843 +0.956610 +0.610517 +0.565760 +0.520623 +0.478867 +0.808768 +-724767999999999.125000 +0.920364 +0.731101 +0.956304 +0.861246 +0.305831 +0.776294 +0.193960 +0.472648 +0.299703 +0.866030 +0.644517 +0.536777 +0.756184 +0.631021 +0.763902 +0.345760 +0.297586 +0.796921 +0.880921 +0.243436 +0.519780 +0.881186 +0.500447 +0.179248 +0.992137 +0.316527 +0.617389 +0.818143 +0.183742 +0.198074 +0.298561 +0.650372 +0.932021 +0.363339 +0.259154 +0.238142 +0.971686 +0.769472 +0.255398 +0.599506 +-21.964978 +0.135710 +0.807283 +-1.339709 +0.626057 +0.933588 +0.853179 +0.900971 +0.856776 +0.975343 +0.536993 +0.887325 +0.599091 +0.930245 +0.876640 +0.869363 +0.211231 +-0.870335 +0.634191 +0.973635 +0.834824 +-0.660309 +0.922696 +0.899651 +0.956790 +0.966518 +0.440266 +0.805345 +0.938503 +0.871797 +0.977577 +0.974413 +0.650580 +0.752400 +0.570123 +0.503215 +0.505866 +0.855143 +0.913848 +0.940601 +0.874248 +0.906668 +0.380609 +0.421584 +0.366955 +0.598384 +0.589781 +0.417872 +0.318870 +0.962035 +0.458795 +0.868774 +0.498707 +0.907875 +0.949982 +0.543893 +0.950400 +0.694995 +0.689719 +0.922735 +0.491501 +0.797597 +0.888050 +0.332532 +0.202525 +0.659226 +0.423291 +0.432675 +0.410043 +0.185954 +0.925453 +0.450147 +0.797265 +0.313673 +0.709945 +0.287923 +0.456409 +0.876717 +0.702543 +0.618315 +0.909202 +0.731788 +0.701443 +0.840098 +0.876988 +-77.313358 +-23.791805 +0.963388 +0.817808 +0.829654 +0.728604 +0.956231 +0.908665 +0.895302 +0.827331 +0.899421 +0.684539 +0.609234 +0.721292 +0.471110 +0.507380 +0.422502 +0.639662 +0.705390 +0.576699 +0.524016 +0.852757 +0.432998 +0.862933 +0.914147 +0.834254 +0.854386 +0.819765 +-83.723848 +0.846826 +0.412260 +0.680982 +0.730257 +0.369438 +0.105350 +0.299295 +0.861485 +0.949973 +0.066977 +0.342773 +0.532640 +0.762535 +0.245267 +0.851642 +0.800781 +0.483648 +0.883135 +0.901885 +0.902165 +0.913752 +0.906604 +0.975308 +0.586889 +0.366919 +0.879631 +0.806559 +0.774970 +0.665691 +0.755497 +0.628960 +0.820009 +0.814680 +0.667603 +0.678470 +0.946546 +0.242935 +-0.141904 +0.632717 +0.649709 +0.238952 +0.522746 +0.898460 +0.627827 +0.618493 +0.613196 +0.358204 +0.934979 +0.525953 +0.800038 +0.862444 +0.762706 +0.580101 +0.865679 +0.919934 +0.548037 +0.379164 +0.530738 +0.457620 +0.344335 +0.581617 +0.359468 +0.756221 +0.846337 +0.738677 +0.732085 +0.861381 +0.766281 +0.617523 +0.786230 +0.753048 +0.753376 +0.776336 +0.883118 +0.905779 +0.766569 +0.897448 +0.803006 +0.568236 +-7.710229 +0.909072 +0.898334 +0.253357 +0.220230 +0.265649 +0.295090 +0.989681 +0.451012 +0.637452 +0.741987 +0.795115 +0.249575 +0.978183 +0.975565 +0.745419 +0.875571 +0.999331 +0.977920 +0.911885 +0.863455 +0.882056 +0.685600 +0.921931 +0.894436 +0.936043 +0.561149 +0.811164 +0.500272 +0.907841 +0.451925 +0.842919 +0.942136 +0.275547 +0.370994 +0.485329 +0.964546 +0.822734 +0.596383 +0.779655 +0.947032 +0.084284 +0.798736 +0.988257 +0.998660 +0.855777 +0.927887 +0.792341 +0.917923 +0.625279 +0.869663 +0.796533 +0.932140 +0.729033 +0.916433 +0.914803 +0.961987 +0.955317 +0.962182 +0.920253 +0.940471 +0.752697 +0.520307 +0.763122 +0.103774 +0.992690 +-0.356030 +0.946662 +-0.195754 +0.894008 +0.650032 +0.632038 +0.701184 +0.948043 +0.316053 +0.603681 +0.323071 +0.782012 +0.794713 +0.228970 +0.378816 +0.654474 +0.996115 +0.267896 +0.483704 +0.440535 +0.806386 +0.478945 +0.459431 +0.431036 +0.410633 +0.757614 +0.440213 +0.870986 +-81.920341 +0.456133 +0.905274 +0.352320 +0.509575 +0.101405 +0.254029 +0.555057 +0.273543 +0.449500 +0.366270 +0.454946 +0.460789 +0.842466 +0.964237 +0.910435 +0.546959 +0.533369 +0.536753 +0.426198 +0.598316 +0.405920 +0.995953 +0.416725 +0.417325 +0.457292 +0.647029 +0.706871 +0.583422 +0.873474 +0.825931 +0.776718 +0.952198 +0.656399 +0.762676 +0.683741 +0.902119 +0.631385 +0.737264 +0.875007 +0.901415 +0.869974 +0.725949 +0.648787 +0.899558 +0.646036 +0.346376 +0.946598 +0.658428 +0.426583 +0.433344 +0.728878 +0.487480 +0.197152 +0.861076 +0.858174 +0.994291 +0.914104 +0.913976 +0.906604 +0.914232 +0.906636 +0.921668 +0.941769 +0.918630 +0.977339 +0.246121 +0.509431 +0.939688 +0.978750 +0.919936 +0.922005 +0.916091 +0.910057 +0.697804 +0.986683 +-0.393248 +0.928116 +0.916239 +0.932066 +0.851195 +0.874351 +0.423490 +0.949902 +0.134272 +0.426038 +0.787866 +0.256998 +0.629436 +0.316905 +0.151346 +0.892335 +-16.260749 +0.506320 +0.791643 +0.310549 +0.765514 +0.949151 +0.824485 +0.830642 +0.704784 +0.952641 +0.638249 +0.272859 +0.964812 +0.925157 +0.664364 +0.917043 +0.181641 +0.644884 +0.920066 +0.539376 +0.278076 +0.540439 +0.650138 +0.832230 +0.402481 +0.526868 +0.233959 +0.223083 +0.593657 +0.608072 +0.946854 +0.708199 +0.363504 +0.924609 +0.754765 +0.528773 +0.235620 +0.949345 +0.934887 +0.151351 +0.003771 +0.954347 +0.428223 +0.987318 +0.728128 +0.721707 +0.346009 +0.258229 +0.461852 +0.497370 +0.408425 +0.115334 +0.943676 +0.475264 +0.921208 +0.578229 +0.661150 +0.472247 +0.343549 +0.840502 +0.400270 +0.970380 +0.059034 +0.981437 +0.295885 +0.923049 +0.791833 +0.149983 +0.199686 +0.546106 +0.948212 +0.914863 +0.861006 +0.565476 +0.771472 +-0.149304 +0.845581 +0.874946 +0.499411 +0.884982 +0.117428 +-0.012683 +0.382995 +0.377139 +0.292527 +-17.906047 +0.090608 +0.580647 +0.470698 +0.582261 +0.103075 +-0.315181 +0.948762 +0.957399 +0.372383 +0.284947 +0.357394 +0.752585 +0.567634 +0.983262 +0.613075 +0.567434 +0.432266 +0.477930 +0.367500 +0.614989 +0.794415 +0.621979 +0.583207 +0.147335 +0.285933 +0.293313 +0.994989 +0.153912 +0.940087 +0.979659 +0.687508 +0.544272 +0.517701 +0.707030 +0.626080 +0.513174 +0.605199 +0.606917 +0.292250 +0.474268 +0.769509 +0.627167 +0.657795 +0.178693 +-0.342140 +0.000051 +0.489837 +0.217326 +0.340450 +0.466175 +0.619050 +0.719042 +0.524907 +0.860391 +0.539136 +0.388491 +0.196136 +0.736834 +0.840940 +0.200091 +0.221526 +0.468840 +0.054496 +0.836923 +0.176212 +0.512993 +0.012012 +0.695534 +0.243065 +0.016843 +0.817763 +0.402109 +0.442004 +0.151733 +0.160941 +0.073032 +0.588250 +0.206729 +0.324056 +0.533050 +0.563871 +0.313523 +0.169307 +-0.114718 +0.061353 +0.232633 +0.192562 +0.535503 +0.238118 +0.107043 +0.458449 +0.130043 +0.902580 +0.885626 +0.734282 +0.789723 +0.974643 +0.782834 +0.980845 +-2.784297 +0.707198 +0.509696 +0.308367 +0.525873 +0.756133 +-0.320232 +0.897817 +-4.188393 +0.645876 +0.612029 +0.894438 +0.948412 +0.906854 +0.604985 +0.653556 +0.740388 +0.374072 +0.327285 +0.513270 +0.440899 +0.342684 +0.755147 +0.935722 +0.728000 +0.713557 +0.970430 +0.652717 +0.768864 +0.753211 +0.661652 +0.736187 +0.681108 +0.782324 +0.912673 +0.737249 +0.642505 +0.732754 +0.867088 +0.719558 +0.808285 +0.807434 +0.414701 +0.716308 +0.225794 +0.910774 +0.712921 +0.442178 +0.849407 +0.544698 +0.726034 +0.953703 +0.636562 +0.548963 +0.357686 +0.752535 +0.341582 +0.335597 +0.483498 +0.920709 +0.563795 +0.728010 +0.172191 +0.745986 +-5.683886 +0.756519 +0.753668 +0.613078 +0.669231 +0.802318 +0.414428 +0.731075 +0.683144 +0.603890 +0.289671 +0.850908 +0.759113 +-8.530595 +0.134760 +0.803969 +0.529761 +0.706703 +0.919614 +0.370730 +0.725818 +0.122383 +0.669540 +0.583569 +0.809647 +0.585855 +0.874362 +0.284388 +0.513295 +0.595147 +0.678833 +0.779915 +0.554951 +0.964765 +0.630345 +0.692182 +0.998936 +0.865048 +0.368404 +0.331719 +0.904119 +0.728310 +0.931868 +0.608047 +0.756692 +0.817255 +0.653133 +0.527225 +0.813869 +0.844325 +0.684492 +0.607110 +0.370938 +0.686889 +0.907278 +0.903072 +0.856106 +0.373613 +0.491934 +0.615897 +0.398816 +0.927962 +0.936613 +0.904616 +0.986594 +0.642855 +0.899825 +-0.442673 +0.416633 +0.187162 +0.595042 +0.353214 +0.255010 +0.263260 +0.987220 +0.419161 +0.299027 +0.154782 +0.180366 +0.182554 +0.733377 +0.535575 +0.590282 +0.741825 +0.813519 +0.981144 +0.663341 +0.672224 +0.676957 +0.406533 +0.517991 +0.533044 +0.528837 +0.465203 +0.370134 +0.419007 +0.714466 +0.040956 +0.420142 +-32.225828 +0.853869 +0.736053 +0.895117 +-19.428806 +0.594184 +0.469832 +0.789796 +0.863915 +0.733599 +0.350256 +0.716133 +0.518977 +0.775219 +0.994351 +0.326557 +0.562284 +0.741325 +0.408986 +0.630589 +0.656553 +0.444579 +0.656818 +0.415137 +0.530276 +0.325764 +0.314718 +0.453178 +0.492700 +0.481787 +0.425969 +0.876533 +0.722390 +0.619721 +0.813509 +0.781773 +0.793588 +0.827264 +0.703610 +0.836571 +0.467502 +0.537327 +0.175919 +0.696395 +0.797499 +0.545030 +0.934347 +0.678671 +0.346929 +0.249968 +0.401151 +0.391517 +0.550853 +0.262160 +0.914351 +0.178826 +0.765343 +0.846978 +0.251027 +0.839615 +-0.262619 +0.523711 +0.519896 +-1.702735 +0.882722 +-0.233658 +0.923138 +0.380149 +0.481048 +0.427155 +0.729119 +0.586531 +0.509757 +0.868645 +0.909258 +0.812540 +0.827222 +0.853647 +0.818618 +0.812743 +0.945540 +0.636732 +0.930315 +0.933489 +0.942858 +0.974571 +0.998924 +0.846674 +0.936713 +0.838716 +0.809340 +0.689389 +0.436878 +0.396209 +0.921406 +0.926801 +0.927442 +0.912673 +0.916286 +0.928983 +0.935748 +0.648613 +0.785359 +0.685450 +0.617320 +0.701512 +0.652549 +0.638625 +0.857632 +0.797743 +0.729149 +0.528442 +0.657061 +0.819209 +0.765908 +0.702829 +0.685555 +0.253570 +0.914937 +0.915286 +0.931427 +0.916397 +0.918121 +0.917691 +0.541495 +0.916851 +0.875830 +0.721512 +0.767369 +0.862076 +0.963213 +0.722709 +0.325706 +0.849565 +0.919431 +0.536813 +0.228022 +0.967753 +0.051726 +0.926322 +0.407014 +0.407014 +0.410034 +0.383011 +0.033177 +0.937910 +0.526800 +0.793078 +0.251066 +0.913268 +0.408688 +0.410021 +0.873836 +0.565180 +0.914309 +0.438574 +0.737850 +0.407681 +0.536328 +0.591235 +0.886879 +0.009206 +0.920065 +0.912645 +0.920870 +0.974986 +0.306046 +0.510146 +0.407459 +0.407459 +0.042812 +0.480289 +0.919063 +0.748087 +0.914082 +0.159485 +0.299983 +0.976265 +0.919270 +0.269197 +0.421043 +0.840876 +0.631487 +0.924882 +0.924648 +0.407236 +0.407236 +0.051852 +0.512938 +0.934574 +0.919853 +0.817485 +0.751086 +0.696541 +0.925621 +0.870201 +0.945817 +-635.165145 +0.892085 +0.661131 +0.779636 +0.778480 +0.666661 +0.676874 +0.924542 +0.721130 +0.927990 +0.872016 +0.778829 +0.618987 +0.972981 +0.364234 +0.839095 +0.986429 +0.538272 +0.565793 +0.644888 +0.758255 +0.970153 +0.899515 +0.584051 +0.962795 +0.721769 +0.723170 +0.765061 +0.727547 +0.683362 +0.915817 +0.832839 +0.960482 +0.657202 +0.949494 +0.695780 +0.948262 +0.927013 +0.693180 +0.455799 +0.942499 +0.546321 +0.614630 +0.581267 +0.498343 +0.062762 +0.944107 +0.327768 +0.101042 +0.257340 +-1.226280 +0.986948 +0.694150 +0.074885 +0.136822 +0.258925 +0.252717 +0.358384 +0.581957 +0.585210 +0.516991 +0.358814 +0.302686 +0.258576 +0.160083 +0.444001 +0.227244 +0.354407 +0.262955 +-0.428425 +0.481278 +0.324564 +0.893939 +0.744026 +0.963402 +0.891641 +0.516679 +0.206553 +0.037491 +-0.604837 +0.207611 +-0.061886 +0.768792 +0.776345 +0.444821 +0.897275 +-0.324651 +0.845328 +0.996942 +0.800073 +0.852925 +0.884163 +0.393118 +0.918546 +0.512134 +-0.011316 +-0.066423 +0.968547 +0.733402 +0.741606 +0.906700 +0.923472 +0.914040 +0.914136 +0.906668 +0.914104 +0.913944 +0.658043 +0.938673 +0.872254 +0.883193 +0.862268 +0.852242 +0.696028 +0.254193 +0.378339 +0.015800 +0.356037 +0.470876 +0.914386 +0.637578 +0.640861 +0.624296 +0.787364 +0.788659 +0.768194 +0.245773 +0.965003 +0.463198 +0.583072 +0.406239 +0.445743 +0.045461 +0.660568 +0.248921 +0.589508 +-0.035303 +0.805641 +0.988551 +0.424069 +0.839770 +0.795620 +-0.235615 +0.501123 +0.167281 +0.645342 +0.524292 +0.465079 +0.801702 +0.810785 +0.745506 +0.614810 +-29.589707 +0.896634 +0.266501 +0.758131 +0.640897 +0.985943 +0.891601 +0.919224 +0.909175 +0.711070 +0.678648 +0.781306 +0.924021 +0.975070 +0.893926 +0.776030 +0.453628 +0.539877 +0.818119 +0.480014 +0.338787 +0.597972 +0.267954 +0.571476 +0.946923 +0.415898 +0.353997 +0.747584 +0.398336 +0.471028 +0.496457 +0.562464 +0.819189 +0.764812 +0.750663 +0.749817 +0.636606 +0.698835 +0.746276 +0.855000 +0.941619 +0.645236 +0.569179 +0.751877 +0.925110 +0.733549 +0.488821 +0.984190 +0.814073 +0.769566 +0.778387 +0.726686 +0.741338 +0.887607 +0.732043 +0.781825 +0.761283 +0.273821 +0.634658 +0.761241 +0.346496 +0.358553 +0.179251 +0.586508 +0.614227 +0.623107 +0.676083 +0.176043 +0.277858 +0.186936 +0.708258 +0.424763 +0.307122 +0.756911 +0.751002 +0.939113 +0.792327 +0.917583 +0.934549 +0.757912 +0.935475 +0.812958 +0.927198 +0.364966 +0.592556 +0.792885 +0.887449 +0.511783 +0.924920 +0.325422 +0.992619 +0.948613 +0.974830 +0.829209 +0.987877 +0.705813 +0.912393 +0.521647 +0.926518 +0.839773 +0.077479 +0.771370 +0.680447 +0.934721 +0.943647 +0.837931 +0.818955 +0.846204 +0.974118 +0.408214 +0.813548 +0.930813 +0.655460 +0.764189 +-0.206718 +0.624198 +-0.604629 +0.995480 +0.543829 +0.857658 +0.903547 +0.740226 +0.733674 +0.606788 +0.894484 +0.942341 +0.112847 +-0.273582 +0.156245 +0.906010 +0.506393 +0.736646 +-13394.115592 +-11.440528 +0.859208 +0.997252 +0.796423 +0.237247 +0.890730 +0.441107 +-2.282834 +0.765714 +0.992967 +0.033322 +0.227909 +0.131365 +0.338235 +0.439045 +0.926588 +0.721434 +0.953192 +0.850069 +0.938946 +0.522269 +0.967106 +0.735175 +0.957996 +0.979730 +0.866373 +0.471452 +0.442341 +0.334031 +0.982084 +0.674658 +0.818139 +0.936898 +0.520326 +0.214302 +0.733465 +0.464787 +0.982397 +0.505705 +0.808431 +0.377396 +0.371580 +0.936894 +0.302176 +0.774796 +0.941028 +0.561604 +0.301016 +0.294831 +0.466475 +0.333462 +0.518004 +0.396431 +0.379277 +0.431486 +0.524258 +0.329962 +0.838710 +0.746143 +0.862590 +0.415156 +0.349146 +0.351848 +0.926521 +0.763580 +0.591566 +0.490441 +0.959549 +0.808866 +0.423478 +0.517000 +0.657322 +0.376640 +0.406318 +0.496842 +-0.091221 +0.521679 +0.430346 +0.924825 +0.682500 +0.710858 +0.649603 +-0.059530 +0.927457 +0.835530 +0.958005 +0.753038 +0.396820 +0.570584 +0.419047 +0.639632 +0.193802 +0.656607 +0.229500 +0.333470 +-0.156747 +0.437934 +0.513668 +0.758488 +0.401778 +0.744136 +0.938134 +0.615594 +0.944251 +0.544567 +0.953088 +0.521466 +0.366054 +0.356164 +0.732427 +0.638267 +0.803200 +0.452684 +0.447264 +0.915442 +0.642497 +0.437281 +0.494871 +0.524297 +0.972894 +0.487573 +0.774362 +0.916107 +0.630230 +0.738207 +0.919141 +0.921701 +0.929788 +0.919141 +0.623459 +0.934503 +0.413862 +0.908057 +0.924648 +0.599435 +0.413029 +0.926011 +0.895249 +0.394377 +0.633247 +0.442033 +0.920250 +0.990458 +0.535815 +0.516665 +0.322833 +0.920018 +0.435339 +0.923133 +0.698986 +0.600289 +0.227590 +0.577239 +0.566892 +0.345284 +0.871857 +0.198441 +0.684663 +0.906956 +0.961012 +0.455086 +0.395871 +0.830152 +0.416429 +0.957656 +0.598925 +0.602587 +0.911788 +0.677725 +0.823213 +0.604214 +0.912974 +0.964910 +0.339193 +0.440761 +0.414459 +0.707694 +0.409400 +0.327493 +0.484082 +0.869024 +0.540252 +0.500439 +0.002629 +0.050549 +0.149198 +0.121749 +-0.237821 +0.300998 +0.172205 +-0.235895 +0.186607 +0.123561 +0.019590 +0.028400 +-0.016386 +0.062644 +0.026857 +0.284278 +0.106589 +0.792175 +0.368329 +0.586588 +0.459831 +0.550790 +0.747014 +0.461594 +0.589845 +0.922960 +0.748645 +0.947051 +0.731341 +0.470047 +0.930319 +0.776250 +0.464179 +0.697547 +0.264429 +0.147203 +0.900472 +0.869090 +0.744077 +0.382096 +0.929717 +0.873091 +0.599035 +0.175345 +0.010468 +-12.948753 +-21.096945 +0.843781 +0.751505 +0.829865 +0.802563 +0.821230 +0.895450 +0.942722 +0.768794 +0.741461 +0.788103 +0.945252 +0.924734 +0.937053 +0.924145 +0.765646 +0.399460 +0.605375 +-0.065071 +0.824852 +0.892083 +0.566681 +0.916404 +0.664155 +-0.369722 +0.437581 +0.487915 +0.883680 +0.851568 +0.785219 +0.450311 +0.852674 +0.260153 +0.242980 +0.078971 +0.533177 +0.137941 +0.368566 +0.418295 +0.054047 +0.411877 +0.247507 +0.024777 +0.263066 +0.090602 +0.260059 +0.845289 +-1.386109 +0.481057 +-0.204378 +0.086913 +0.373792 +0.687110 +0.029921 +0.026054 +-0.006365 +0.122010 +0.550129 +0.723068 +0.366289 +-40.082766 +0.623680 +0.226151 +0.956630 +0.367729 +0.900258 +0.501443 +0.400883 +0.680546 +0.609243 +0.681781 +0.958547 +0.725744 +0.802145 +0.657342 +0.857599 +0.749119 +0.252375 +0.572999 +0.642200 +0.754889 +0.904081 +0.602954 +0.902439 +0.713148 +0.741133 +0.934598 +0.404772 +0.639970 +0.811936 +0.640730 +0.744556 +0.311251 +0.727359 +0.798787 +0.766812 +0.273949 +0.763894 +0.736535 +0.367861 +0.644195 +0.836621 +0.732908 +0.358289 +0.998938 +0.671788 +0.694950 +0.731386 +0.888692 +0.775496 +0.285576 +0.806714 +0.777647 +0.714920 +0.864388 +0.803360 +0.936727 +0.834804 +0.717344 +0.362672 +0.410115 +0.242391 +0.622696 +0.578689 +0.898981 +0.727325 +0.642709 +-0.286662 +0.912400 +0.832833 +0.698014 +0.292786 +0.773626 +0.421290 +0.614959 +0.361812 +0.358740 +0.945857 +0.466999 +0.402279 +0.966407 +0.171930 +0.882853 +0.308491 +0.569297 +0.173850 +0.909627 +0.330233 +0.693775 +0.245345 +0.321865 +0.493861 +0.193642 +0.201913 +0.298447 +0.286505 +0.640768 +0.950428 +0.744837 +0.143593 +0.468835 +0.228421 +0.971183 +0.916148 +0.743417 +0.295190 +0.687952 +0.299133 +0.422972 +0.647091 +0.283797 +0.554896 +0.534711 +0.955568 +0.796803 +0.888323 +0.226431 +0.915450 +0.915055 +0.763577 +0.884458 +0.663786 +0.941658 +0.920241 +0.918769 +0.915983 +0.917561 +0.926863 +0.680296 +0.462662 +0.427442 +0.901211 +0.551966 +0.680508 +0.791742 +0.718528 +0.565531 +0.815293 +0.720050 +0.373123 +0.180305 +0.316178 +0.111087 +0.160335 +0.298621 +0.650496 +0.517581 +0.180830 +0.487856 +0.942945 +0.956070 +0.082455 +0.512854 +0.600715 +0.538313 +0.660947 +0.925808 +0.737386 +0.250338 +0.527515 +0.823045 +0.844868 +-0.016507 +0.911030 +0.736949 +0.924361 +0.394031 +0.745115 +0.373396 +0.467880 +0.449362 +0.919785 +0.071063 +0.807473 +0.716469 +0.299186 +0.928308 +0.351092 +0.961442 +0.791906 +0.655413 +0.908919 +0.876779 +0.452555 +0.472185 +0.910362 +0.294628 +0.383892 +0.379070 +0.258510 +0.323580 +0.356420 +0.942764 +0.897004 +0.914939 +0.568151 +0.379894 +0.927077 +0.895387 +0.968075 +0.378837 +0.896259 +0.976785 +0.754246 +0.960995 +0.478237 +0.448693 +0.754543 +0.588807 +0.997645 +0.356636 +0.692798 +0.467624 +0.898820 +0.847409 +0.417852 +0.978195 +0.586406 +0.849574 +0.922337 +0.969162 +0.818006 +0.634346 +0.641932 +0.376080 +0.416123 +0.435389 +0.883884 +0.266736 +0.678526 +0.344268 +0.469179 +0.718008 +0.753236 +0.645429 +0.429443 +0.397238 +0.836484 +0.472113 +0.577093 +0.953332 +0.253873 +0.502726 +0.459005 +0.814476 +0.452758 +0.485789 +0.479573 +0.508521 +0.768292 +0.812015 +0.608679 +0.415572 +0.787668 +0.862546 +0.824887 +0.747571 +0.699489 +-28.665468 +0.886053 +0.770811 +0.253921 +0.499939 +0.182481 +0.568584 +0.774657 +0.127585 +0.419262 +0.764595 +0.303867 +0.713593 +0.390130 +0.338110 +0.794029 +0.826117 +0.922874 +0.965421 +0.515064 +0.816375 +0.201434 +0.755695 +0.770097 +0.952827 +0.952298 +0.858222 +0.951544 +0.625926 +-0.100011 +0.143227 +0.408258 +0.543600 +0.183659 +0.181190 +-0.313081 +0.167565 +0.130676 +0.347022 +0.432265 +0.408249 +0.470385 +0.659202 +0.187739 +0.440204 +0.148572 +0.310661 +0.577142 +0.976775 +0.450715 +0.134449 +0.133383 +-0.739839 +-0.238738 +0.716960 +0.145423 +0.299879 +0.281997 +0.285557 +0.677961 +0.301901 +0.869323 +0.888331 +0.701536 +0.290829 +0.917782 +0.928839 +0.576901 +0.871214 +0.933733 +0.913401 +0.608169 +0.946328 +0.844032 +0.831583 +0.823559 +0.865136 +0.979690 +0.402730 +0.794119 +0.646832 +0.978485 +0.256552 +0.747963 +0.830657 +0.727535 +0.835355 +0.878178 +0.988505 +0.987042 +0.992364 +0.788652 +0.935309 +0.943422 +0.849285 +0.964134 +0.539041 +0.908642 +0.875876 +0.994985 +0.949604 +0.398638 +0.827287 +0.934636 +0.816763 +0.631927 +0.693058 +0.769891 +0.774179 +0.912457 +0.898560 +0.569125 +0.571733 +0.484832 +0.914330 +0.906246 +0.590843 +0.940480 +0.488884 +0.806159 +0.637087 +0.557649 +0.730589 +0.984867 +0.358483 +0.642437 +0.555475 +0.402222 +0.480243 +0.754560 +0.736841 +0.361572 +0.991562 +0.772324 +0.932270 +0.993403 +0.529091 +0.866784 +0.885641 +0.741711 +0.176539 +0.929695 +0.490663 +0.645730 +0.967885 +0.482957 +0.927444 +0.728918 +0.275995 +0.861633 +0.809376 +0.886956 +0.664197 +0.868445 +0.854546 +0.952162 +0.810025 +0.916500 +0.919341 +0.922295 +0.918638 +0.925460 +0.922789 +0.927534 +0.924507 +0.341807 +0.514510 +0.919301 +0.685627 +0.823961 +0.896183 +0.903690 +0.987555 +0.311393 +0.962390 +0.906966 +0.994177 +0.475624 +0.555902 +0.907951 +0.883665 +0.664609 +0.913298 +0.943760 +0.607218 +0.742820 +0.925583 +0.672246 +0.588516 +0.986313 +0.408603 +0.909160 +0.896740 +0.925071 +0.956925 +0.910326 +0.840573 +0.946416 +0.425138 +0.956459 +0.937796 +0.928719 +0.888044 +0.183697 +0.941495 +0.963392 +0.952597 +0.940662 +0.798577 +0.568500 +0.928863 +0.617583 +0.857778 +0.523977 +0.437400 +0.924641 +0.634402 +0.625262 +0.594655 +0.709631 +0.956381 +0.718433 +0.612833 +0.901679 +0.768152 +0.718195 +0.625020 +-183.090740 +0.717462 +0.651045 +0.739359 +0.663807 +0.396433 +0.489975 +0.491092 +0.550869 +0.122863 +0.874841 +0.496551 +0.586532 +0.417170 +0.182741 +0.337125 +0.497784 +0.250025 +0.660225 +0.530128 +0.438106 +0.422806 +0.565766 +0.770188 +0.250173 +0.353602 +0.684642 +0.356466 +0.430802 +-0.329451 +-1.136325 +-0.084729 +0.831658 +0.559980 +0.424935 +0.266831 +0.879581 +0.821117 +0.694769 +0.542980 +0.927973 +0.615934 +0.985650 +0.073641 +0.690879 +0.150194 +0.128320 +-0.066819 +0.647924 +0.459609 +0.552451 +-0.117390 +-0.544623 +0.534911 +0.963492 +0.626418 +-149.571433 +0.825885 +0.180946 +-1.812294 +0.460989 +0.598279 +0.905483 +-0.161138 +0.740423 +0.303495 +0.576213 +0.595377 +0.250261 +0.591686 +0.697965 +0.484656 +0.493702 +0.803087 +0.470273 +0.668351 +0.994137 +0.271206 +0.667717 +0.382594 +-0.052818 +0.996323 +-1.009097 +0.975278 +0.394120 +0.207186 +0.230425 +0.978049 +0.620614 +0.779847 +0.486278 +0.619509 +0.907845 +0.916486 +0.919049 +0.910316 +0.898142 +0.585355 +0.816667 +0.545408 +0.630175 +0.744263 +0.809023 +0.226624 +0.545446 +0.720705 +0.723537 +0.931810 +0.833513 +0.840595 +0.942806 +0.569935 +0.851367 +0.802747 +0.897505 +0.907760 +0.604820 +0.922512 +0.422171 +0.910111 +0.733035 +0.971953 +0.884542 +0.290108 +0.788135 +0.652184 +0.751375 +0.434166 +0.849776 +0.883128 +0.670222 +0.582092 +0.505101 +0.754583 +0.552693 +0.717615 +0.554112 +0.922658 +0.706978 +0.582102 +0.446179 +0.506807 +0.773471 +0.799925 +0.633859 +0.745810 +0.751600 +0.709412 +0.740640 +0.541936 +0.604088 +0.983077 +0.643893 +0.713786 +0.786689 +0.289891 +0.916656 +0.911872 +0.911560 +0.750629 +0.727455 +0.836144 +0.492531 +0.964363 +0.346766 +0.493353 +0.399308 +0.543856 +0.452930 +0.528666 +0.899312 +0.271841 +0.442265 +0.720676 +0.379250 +0.471012 +0.830075 +0.816183 +0.553456 +0.833102 +0.250898 +0.595843 +0.076902 +-74.244841 +0.345645 +0.049696 +0.413676 +-2.233188 +0.920413 +0.477586 +0.389488 +0.417589 +0.431569 +0.698185 +0.987430 +0.172931 +0.362913 +0.463685 +0.192386 +0.338915 +0.508818 +0.860643 +0.811721 +0.359261 +0.799894 +0.210750 +0.457679 +0.642639 +0.358768 +0.319358 +0.322942 +0.893128 +0.996855 +0.471556 +0.037009 +0.967632 +0.843658 +0.381216 +0.755355 +0.565608 +0.623326 +0.477121 +0.540624 +0.420524 +0.247916 +0.373671 +0.714597 +0.758917 +0.833438 +0.377318 +0.192651 +0.807548 +0.091695 +0.678940 +0.881802 +0.097069 +0.792941 +0.256457 +0.139951 +0.753121 +0.797173 +0.969467 +0.613335 +0.312794 +0.682314 +0.585337 +-0.007239 +0.946412 +0.380813 +0.183048 +-0.831173 +0.173068 +0.848948 +0.321483 +0.523437 +0.976071 +0.135530 +0.891936 +0.044451 +-0.350834 +0.934353 +0.841528 +0.071454 +0.905641 +0.993222 +0.214273 +-1.755453 +-0.091843 +0.428158 +0.865266 +0.628063 +0.331220 +0.510643 +0.117709 +0.381508 +0.866375 +0.877470 +0.410347 +0.875214 +0.064649 +0.945190 +0.485630 +-0.048116 +0.878135 +0.287837 +0.127443 +0.536944 +0.464820 +0.806399 +0.527798 +0.558091 +0.878234 +0.751730 +0.765459 +0.571177 +0.743597 +0.790271 +0.772155 +0.949885 +0.984973 +0.725985 +0.755204 +0.557109 +0.740157 +0.989177 +0.944132 +0.520337 +0.680344 +0.330281 +0.490104 +0.589934 +0.547996 +0.172293 +0.403916 +0.965454 +0.166273 +0.340940 +0.501264 +0.597030 +0.555383 +0.472841 +0.356017 +0.595258 +0.389953 +0.248533 +0.343917 +0.918894 +0.463508 +0.514202 +0.479135 +0.503147 +0.793072 +0.366564 +0.641057 +0.752308 +0.262395 +0.407478 +0.685600 +0.429997 +0.934701 +0.906929 +0.700175 +0.477656 +0.104098 +0.458021 +0.281473 +0.260636 +0.330403 +0.962895 +0.962355 +0.223683 +0.326959 +0.710712 +0.749274 +0.321466 +0.450726 +0.701586 +0.950392 +0.941276 +0.963689 +0.580393 +0.663163 +0.473296 +0.910749 +0.248780 +0.844956 +0.625295 +0.863859 +0.834278 +0.686084 +0.765904 +0.979451 +0.890673 +0.742703 +0.928548 +0.664034 +0.756023 +0.818531 +0.724541 +0.575734 +0.948834 +0.667068 +0.953508 +0.462936 +0.988268 +0.308130 +0.310413 +0.343392 +0.162560 +0.354824 +0.678971 +0.251734 +0.310127 +0.653303 +0.946026 +0.956293 +0.623357 +0.982683 +0.963579 +0.847580 +0.974301 +0.985000 +0.930568 +0.763599 +0.598535 +0.669255 +0.928961 +0.850074 +0.873046 +0.785747 +0.284008 +0.940823 +0.361877 +0.880070 +0.788178 +0.932036 +0.934271 +0.885939 +0.790936 +0.875112 +0.830354 +0.985403 +-0.047311 +0.808084 +0.991883 +0.692265 +0.491880 +0.154609 +0.424649 +0.602746 +0.480345 +0.497357 +0.284935 +0.201078 +0.159353 +0.875467 +0.380777 +0.299448 +0.339127 +0.969196 +0.052314 +0.618820 +0.102566 +0.390381 +0.578423 +0.486582 +0.160428 +0.284956 +0.226703 +0.427901 +0.201975 +0.359624 +0.460105 +0.228267 +0.502530 +0.968757 +0.519535 +0.092917 +0.747800 +0.676673 +0.431816 +0.777243 +0.553150 +0.159722 +0.876983 +0.431813 +0.644816 +0.471807 +0.764314 +0.972422 +0.967319 +0.453318 +0.950800 +0.778493 +0.771654 +0.703826 +0.797822 +0.875762 +0.826954 +0.530916 +0.934030 +0.892412 +0.985313 +0.377300 +0.938011 +0.996301 +0.653833 +0.806372 +0.960708 +0.412385 +0.250199 +0.822180 +0.930488 +0.964548 +0.983093 +0.933100 +0.967552 +0.334799 +0.200176 +0.931084 +0.756078 +0.333666 +0.156873 +0.788988 +0.861368 +0.202423 +0.817906 +0.644757 +0.419295 +0.939770 +0.346163 +0.386926 +0.803098 +0.893182 +0.817137 +0.817137 +0.876559 +0.434563 +-0.161388 +0.461893 +0.898890 +-0.150167 +0.984019 +0.327002 +0.438177 +0.524180 +0.651791 +0.768584 +0.854854 +0.542836 +0.600748 +0.459159 +0.012120 +0.199055 +0.530286 +0.469877 +0.171478 +0.264931 +0.764496 +-0.150675 +-1.387056 +0.193250 +-0.328162 +0.200290 +0.022761 +0.852181 +0.167881 +0.061189 +0.177194 +0.143104 +-0.025501 +0.353017 +0.299027 +0.242695 +-0.246076 +0.167460 +0.585653 +0.831033 +0.774923 +0.862964 +0.947736 +0.939221 +0.674303 +0.955658 +0.752493 +0.862141 +0.757813 +0.760452 +0.501024 +0.930717 +0.683284 +0.472484 +0.472484 +0.742556 +0.798307 +0.833003 +0.934062 +0.941320 +0.556427 +0.956421 +0.939703 +0.808866 +0.238627 +0.895225 +0.676653 +0.671884 +0.932229 +0.146628 +0.890213 +0.802271 +0.500899 +0.822610 +0.611375 +0.628325 +0.418569 +0.943068 +0.974534 +0.837084 +0.738051 +0.509935 +0.899645 +0.503764 +0.794744 +0.489777 +0.362086 +-19.052826 +-4.603509 +0.213460 +0.454377 +0.387042 +0.076875 +-0.635177 +-0.069668 +0.062685 +0.887752 +0.538397 +-7.274090 +-20.341537 +0.279703 +0.585716 +0.324069 +0.829971 +-0.409069 +0.910317 +0.875611 +0.720149 +0.182503 +0.658695 +0.085639 +0.668487 +0.397168 +0.854725 +0.653836 +0.772560 +0.703927 +0.901874 +0.603397 +0.338341 +0.514794 +0.635435 +0.578359 +0.423115 +0.954706 +0.512981 +-0.254357 +0.179294 +0.475090 +0.769265 +0.769035 +0.129173 +0.366141 +0.606422 +0.729713 +0.670780 +0.373288 +0.218741 +0.676359 +0.362768 +0.430177 +0.683702 +0.425500 +0.714754 +0.510530 +0.752985 +0.844914 +0.688418 +0.718028 +0.613635 +0.705797 +0.885358 +0.456845 +0.649960 +0.800565 +0.718529 +0.718872 +0.727491 +0.354384 +0.687738 +0.704414 +0.257520 +-0.956679 +0.736881 +0.685461 +-38.955657 +0.401143 +0.763697 +0.324124 +0.040301 +0.022173 +-0.370038 +0.188078 +-0.011196 +0.216318 +-0.067652 +-0.035132 +0.479697 +0.302097 +0.450952 +0.450827 +0.450952 +0.315053 +0.241959 +0.303551 +0.302985 +0.283005 +0.283005 +0.238733 +0.238733 +0.830814 +0.279149 +0.246915 +0.038054 +-3.504192 +0.533907 +0.363846 +-0.304913 +0.180716 +0.522176 +0.583380 +0.535625 +0.495543 +-1.277416 +0.483671 +0.443052 +0.578983 +0.619964 +0.722482 +0.998173 +0.055641 +-0.159409 +0.461434 +-0.191459 +0.478780 +0.390729 +0.081506 +0.995747 +0.130086 +0.591463 +0.775704 +0.894702 +0.926742 +0.572270 +0.839616 +0.628164 +0.500470 +0.218628 +0.567069 +0.041642 +0.025788 +0.254960 +-0.510355 +0.350800 +0.106828 +0.783016 +0.858545 +0.663992 +-0.045138 +0.120484 +0.641090 +0.380651 +0.884056 +0.643844 +0.209156 +0.786219 +0.664371 +0.936225 +0.659906 +0.819845 +0.837653 +0.877246 +0.926436 +0.968050 +0.779529 +0.473259 +0.805039 +0.916867 +0.854764 +0.709260 +0.794159 +0.740091 +0.685223 +0.782239 +0.686831 +0.950449 +0.690788 +0.969099 +0.844976 +0.897041 +0.938434 +0.658882 +0.440864 +0.852727 +0.868136 +0.877981 +0.914869 +0.948761 +0.934399 +0.858475 +0.933299 +0.864123 +0.301248 +0.851638 +0.959731 +0.626907 +0.681360 +0.962670 +0.945860 +0.474153 +0.769849 +0.865027 +0.915382 +0.833743 +0.910951 +0.957628 +0.460147 +0.682482 +0.974680 +0.466303 +0.922829 +0.834091 +0.669101 +0.854231 +0.888482 +0.933925 +0.736708 +0.781497 +0.565087 +0.868494 +0.513825 +0.871547 +0.730423 +0.383541 +-0.276249 +0.931438 +0.885738 +0.859192 +0.739251 +0.090063 +0.976350 +0.530835 +0.626122 +0.645171 +0.505175 +0.902993 +0.870996 +0.894462 +0.673346 +-411.944205 +0.617751 +0.548476 +0.737135 +0.500594 +0.452048 +0.439879 +0.561637 +0.793138 +0.269486 +0.300503 +0.749333 +0.881404 +0.292002 +0.754934 +0.323839 +0.371889 +0.753524 +0.325047 +0.787128 +0.823551 +0.710261 +0.540079 +-0.220027 +0.882101 +0.860995 +0.446716 +0.600907 +0.927449 +0.529881 +0.766580 +0.913471 +0.565460 +0.944700 +0.845896 +0.848658 +0.042144 +0.839725 +0.301477 +0.324585 +-2.003148 +0.856011 +0.739125 +0.926359 +0.489954 +0.619891 +0.609606 +0.741858 +0.645668 +0.750747 +-0.296132 +0.317296 +0.343783 +0.770051 +0.347355 +0.463977 +0.342360 +0.308806 +0.517711 +0.093683 +0.625318 +0.218063 +0.554356 +0.272138 +0.888879 +0.782584 +0.395911 +0.327380 +0.310363 +-6.016868 +0.202613 +-0.033892 +0.311708 +0.612208 +0.765486 +0.940025 +0.549113 +0.917697 +0.746673 +0.850211 +0.260491 +0.083066 +0.114017 +0.473275 +0.864424 +0.635315 +0.125488 +0.073096 +0.657186 +0.895400 +0.106906 +0.107651 +0.072189 +0.921789 +-0.840220 +0.206871 +0.947921 +0.561291 +-1.651660 +0.211366 +0.835889 +0.952408 +0.793137 +0.274137 +0.330449 +0.514515 +0.049408 +0.812495 +0.962524 +0.869438 +0.714168 +0.768384 +0.544871 +0.898468 +0.811184 +0.955910 +0.715653 +0.858779 +0.946003 +0.846276 +0.767087 +0.666986 +0.933145 +0.703402 +0.700752 +0.920815 +0.002356 +-0.064702 +0.194536 +0.058573 +0.615642 +-0.016853 +0.108804 +0.332641 +0.095330 +0.056576 +-19.993080 +-991.160631 +0.898751 +0.556075 +-22.037795 +0.989691 +-0.391503 +0.395452 +0.997984 +0.759832 +0.876736 +0.882302 +0.763864 +0.835994 +0.306006 +0.434251 +0.611710 +0.113789 +0.209055 +0.173672 +0.510903 +0.784957 +0.750529 +0.540684 +0.977574 +0.681789 +0.761612 +0.847379 +0.728802 +0.455863 +0.816297 +0.856145 +0.951985 +0.825215 +0.844490 +0.867832 +0.892938 +0.466476 +0.719269 +0.846852 +0.869872 +0.908044 +0.765593 +0.512475 +0.455645 +0.889664 +0.718035 +0.875396 +0.567008 +0.818398 +0.821443 +0.880977 +0.842165 +0.699191 +0.907827 +0.603210 +-0.204531 +0.281427 +0.879394 +0.771537 +0.829561 +0.426725 +0.384556 +-0.531333 +0.672357 +0.289168 +0.991699 +0.116935 +0.499592 +-0.033242 +0.629193 +0.548812 +0.470435 +0.508519 +0.183706 +0.164393 +0.333719 +0.546368 +0.633286 +0.746639 +0.562156 +0.288323 +0.296564 +0.163863 +0.812375 +0.623620 +0.989634 +0.808923 +0.099091 +0.836689 +0.906272 +0.093201 +-0.254173 +0.330095 +0.934395 +0.181845 +0.241352 +0.150046 +0.495452 +0.003001 +-0.527396 +0.537877 +-0.102104 +0.377250 +-0.024988 +0.631391 +0.858336 +0.279381 +0.639055 +0.978510 +0.766325 +0.051996 +-0.011042 +0.935544 +0.021012 +0.214582 +0.345758 +0.321793 +-0.060679 +0.294644 +0.427296 +0.834860 +0.949534 +0.106810 +0.015493 +0.362580 +0.375658 +0.340217 +0.174153 +0.170723 +0.453215 +0.538154 +0.424127 +0.799868 +0.777406 +0.535114 +0.431319 +0.787598 +0.822435 +0.870098 +0.195873 +0.706396 +0.099162 +0.456530 +0.633943 +0.301841 +0.377730 +0.168806 +0.878972 +0.840742 +0.393470 +0.445711 +0.232250 +0.520588 +0.707182 +0.835701 +0.076996 +0.861317 +0.814114 +0.042466 +0.243593 +0.668028 +0.150798 +0.805031 +0.980442 +0.894323 +0.918553 +0.843787 +0.833613 +0.824177 +0.948016 +0.933215 +0.957153 +0.761957 +0.831589 +0.975263 +0.961792 +0.960110 +0.189379 +0.443215 +0.705313 +0.256449 +0.405685 +0.085037 +0.589920 +0.539419 +-0.066351 +0.011245 +-4.188175 +0.290689 +0.856895 +-0.214810 +0.135160 +-0.193848 +0.983014 +0.585115 +0.343597 +-1.821995 +0.640954 +0.343538 +0.964123 +0.960722 +0.533529 +0.596216 +0.779701 +0.830252 +0.991852 +0.925665 +0.850549 +0.643836 +0.976247 +-111695951.999892 +0.954825 +0.626339 +0.547131 +0.950020 +0.933440 +0.978162 +0.289962 +0.948995 +0.846809 +0.950107 +0.853033 +0.558739 +0.916331 +0.928888 +0.842049 +0.389657 +0.719613 +0.774269 +0.932514 +0.987324 +0.680069 +0.153487 +0.548598 +0.213664 +0.625024 +0.229774 +0.802586 +0.885786 +0.914700 +-0.329398 +0.839710 +0.933099 +0.752811 +0.316516 +0.816665 +0.866504 +0.748422 +0.770944 +0.661149 +0.145274 +0.650169 +0.796898 +0.906298 +0.885980 +0.506974 +0.672821 +0.377828 +0.473193 +0.487704 +0.801031 +0.799444 +0.929670 +0.677508 +0.555409 +0.557273 +0.823473 +0.889503 +0.561840 +0.887546 +0.630583 +0.498916 +0.372015 +0.502795 +0.258104 +0.434146 +0.823349 +0.743908 +0.583560 +0.517302 +0.367757 +0.910850 +0.271733 +0.959593 +0.965084 +0.651721 +0.178698 +0.579845 +0.944053 +0.932974 +0.953253 +0.641854 +0.928274 +0.391744 +0.732078 +0.663730 +0.448661 +0.881131 +0.546408 +0.106429 +0.935648 +0.327995 +0.981580 +0.342287 +0.596881 +0.461392 +0.692775 +0.487567 +0.381639 +0.761207 +0.443207 +0.379605 +0.221646 +0.830617 +0.753536 +-0.177390 +0.311859 +0.726061 +0.878996 +0.900714 +0.583995 +0.485634 +0.500138 +0.575888 +0.552794 +0.499081 +0.482136 +0.910573 +0.836339 +0.345234 +-0.097552 +0.910397 +0.443727 +0.472398 +0.430519 +0.865696 +0.427870 +0.501041 +0.449597 +0.505508 +0.487848 +0.441890 +0.441890 +0.338898 +-0.339942 +0.662670 +0.742576 +0.910674 +0.861479 +0.761081 +0.407020 +0.960258 +0.885084 +0.850638 +0.842450 +0.486417 +0.419314 +0.617723 +0.579440 +0.484026 +0.529702 +0.433759 +-1.466356 +0.953956 +0.435004 +0.508660 +0.389570 +0.341093 +0.625374 +0.222242 +0.881659 +0.803506 +0.940920 +0.717702 +0.539671 +0.264821 +0.949219 +0.979468 +-1.510376 +0.958413 +0.159028 +0.953736 +0.856813 +0.953729 +-0.910872 +-1177618.653543 +0.957485 +0.766553 +0.776597 +0.756638 +0.774383 +0.662013 +0.477011 +0.785196 +0.856665 +0.984712 +0.984833 +0.961047 +0.967711 +0.028021 +0.926395 +0.915235 +0.571496 +-0.686252 +0.780128 +-9.046690 +0.599069 +0.103146 +-12.283651 +0.182924 +0.326741 +0.208182 +0.087349 +-0.823304 +0.219196 +0.274056 +0.345268 +0.699076 +0.623581 +-3.637178 +0.081244 +0.447191 +0.912788 +0.119285 +0.647996 +0.363221 +0.379850 +-0.381182 +0.462337 +0.848790 +0.202943 +0.765097 +0.906857 +0.936927 +0.849939 +0.239868 +0.300644 +0.800987 +0.596166 +0.789412 +0.324519 +0.453448 +0.345192 +0.812507 +0.279180 +0.347979 +0.019474 +0.655775 +0.788914 +0.901152 +0.981420 +0.542252 +0.887264 +0.010369 +0.019995 +0.227506 +0.723433 +0.945469 +0.417092 +0.281738 +0.402751 +0.075223 +0.279122 +0.127879 +0.598616 +0.831494 +0.501835 +0.680866 +0.281354 +0.031512 +-1.551807 +0.906823 +0.163492 +0.641609 +0.034939 +0.974568 +0.306342 +0.682968 +0.017946 +0.829115 +0.176058 +0.323087 +0.574163 +0.468701 +0.302772 +-1.334793 +0.035957 +0.645115 +-0.598897 +-0.046454 +0.733318 +-0.100807 +0.082171 +0.912777 +0.771147 +0.200399 +0.922396 +-0.066892 +0.763255 +0.534360 +0.815976 +0.444623 +0.741045 +0.756125 +0.719014 +0.659608 +0.510674 +0.543579 +0.446511 +0.582199 +0.501953 +0.883559 +0.731301 +0.925168 +0.845596 +0.354050 +0.877226 +0.934610 +0.331445 +0.969559 +0.836588 +0.901405 +0.905117 +0.821329 +0.385191 +0.272130 +0.322307 +0.959751 +0.806412 +0.953637 +0.841931 +0.494047 +0.826506 +0.839419 +0.490648 +0.259396 +0.338093 +0.353194 +0.411472 +0.552169 +0.734147 +0.643984 +0.546478 +0.510518 +0.894030 +0.964641 +0.561928 +0.366751 +0.866474 +-5.597163 +0.962618 +0.963158 +0.386399 +0.525939 +0.707285 +0.949520 +0.800894 +0.285576 +0.890857 +0.272322 +0.102745 +0.461390 +0.574026 +0.631331 +0.109672 +0.996854 +0.879366 +0.629338 +0.182313 +0.972298 +0.831945 +0.414445 +0.253127 +-5.086206 +0.568330 +0.490424 +0.496799 +0.371749 +0.798731 +0.007153 +0.211305 +0.009600 +0.125432 +0.542048 +0.507390 +0.555505 +0.432653 +0.323574 +0.366731 +0.960633 +0.154800 +0.793406 +0.034525 +0.420586 +0.163858 +0.204279 +0.580554 +0.741100 +0.619443 +0.591916 +0.186577 +0.936194 +0.837986 +0.758853 +0.226754 +0.830916 +0.690896 +0.685112 +0.448154 +0.191459 +0.288239 +0.800630 +0.290824 +-83.056350 +0.971112 +0.276654 +0.074564 +0.227784 +0.412916 +0.714584 +0.542518 +0.496638 +0.285867 +0.109489 +-0.007095 +0.008423 +0.475469 +0.357318 +0.426821 +0.553798 +0.173655 +0.138623 +0.047975 +-2.971727 +0.339010 +0.246585 +0.157848 +0.064199 +0.368925 +0.619621 +0.964706 +0.945719 +0.891636 +0.651376 +0.477114 +0.659927 +-0.019919 +0.099558 +0.110872 +0.483692 +0.619842 +0.537607 +0.420898 +0.443829 +0.670492 +0.753936 +0.071314 +0.294802 +0.453907 +0.397327 +0.110026 +0.094886 +0.215455 +0.298512 +-0.029309 +0.116573 +0.366002 +0.275584 +0.187946 +0.535566 +0.041705 +0.390887 +0.968842 +-0.101093 +0.134997 +0.662741 +0.572125 +0.105447 +0.791571 +0.628638 +0.772295 +0.512156 +0.925364 +0.672369 +0.045326 +0.928339 +0.318243 +0.461077 +0.955210 +0.926532 +0.758616 +0.908982 +0.933157 +0.929741 +0.823157 +0.977540 +0.560390 +0.912693 +0.921857 +0.536330 +0.188676 +0.971859 +0.987127 +0.926632 +0.474009 +0.510669 +0.953078 +0.921197 +0.918547 +0.918454 +0.455322 +0.649186 +0.934182 +0.724984 +0.045682 +0.307261 +0.259319 +0.389043 +0.149660 +0.049879 +0.238102 +0.196240 +0.240410 +0.283756 +0.768729 +0.178568 +0.126760 +0.235223 +-0.040333 +0.224636 +0.954639 +0.040700 +0.107175 +0.289255 +0.298668 +0.773074 +0.997923 +0.339001 +0.167821 +-0.054628 +0.664483 +0.182316 +0.075503 +0.175123 +-0.014791 +0.292370 +0.181574 +0.189363 +0.206961 +-0.062844 +0.179169 +0.496184 +-0.029286 +0.207588 +-0.004862 +0.604269 +0.064256 +0.250991 +0.193541 +0.094828 +0.688137 +0.866929 +0.252394 +0.234542 +0.378734 +0.236554 +0.214021 +0.356258 +0.206171 +0.927702 +0.411671 +0.718133 +0.565996 +0.966522 +0.421411 +0.268159 +0.762890 +0.153708 +0.689361 +0.619068 +0.755657 +0.938393 +0.985504 +0.413085 +0.628837 +0.718958 +0.560649 +0.835895 +0.779207 +0.956501 +0.827204 +0.424847 +0.551381 +0.551343 +0.328062 +0.774103 +0.259087 +0.232464 +0.376774 +0.812007 +0.488432 +0.885070 +0.992473 +0.551787 +0.551860 +0.551614 +0.576648 +0.772385 +0.543325 +0.542959 +0.669964 +0.139120 +0.486318 +0.513722 +0.738112 +0.752392 +0.534537 +0.925061 +0.715962 +0.741782 +-0.999885 +0.737885 +0.188623 +0.963983 +0.760532 +0.858876 +0.925553 +0.482579 +0.882972 +0.916276 +0.767104 +0.778917 +0.728733 +0.070810 +0.935853 +-0.152577 +0.002092 +0.953981 +0.741439 +0.693226 +0.921107 +-0.346203 +0.434181 +0.979474 +0.843399 +0.396479 +0.884069 +0.256243 +0.936784 +0.646915 +0.925269 +0.720162 +-0.254224 +0.748289 +0.930321 +-0.030744 +0.744811 +0.636848 +0.911341 +0.777963 +0.843203 +0.983123 +0.915599 +0.852945 +0.971362 +0.893696 +0.240536 +0.898336 +0.617590 +0.850697 +0.001633 +0.620396 +0.856430 +0.507092 +0.517373 +0.511829 +0.104512 +0.218251 +-0.070058 +0.607898 +0.181151 +0.328756 +0.624046 +0.284289 +0.922045 +0.259461 +0.563193 +0.116571 +0.260359 +0.304047 +0.439175 +0.751881 +0.970990 +0.637922 +0.537068 +-0.141694 +0.844756 +0.727785 +0.558871 +0.249557 +0.227784 +0.350439 +0.124164 +0.214184 +0.353504 +0.943547 +0.967365 +0.085233 +0.755454 +0.473018 +0.494464 +0.491230 +0.748321 +0.118215 +-0.470592 +-1.960319 +0.381824 +0.637743 +0.225868 +0.797569 +0.085571 +0.667229 +0.440632 +0.469877 +-0.067387 +0.914403 +0.241904 +-3.229867 +0.154266 +0.371275 +0.635614 +0.415371 +0.692411 +0.335941 +-0.042257 +0.490430 +0.860653 +0.947916 +0.681195 +0.597672 +0.798612 +0.262217 +0.815948 +0.182886 +0.541742 +0.688787 +0.735623 +0.839825 +0.228902 +0.465117 +0.952453 +0.921458 +-0.353876 +0.353780 +0.363812 +0.879881 +0.456435 +0.706369 +0.127852 +0.271974 +0.069279 +0.874421 +-1.594904 +0.889405 +0.869029 +0.422663 +-0.023170 +0.831147 +0.975541 +0.856966 +0.893556 +0.640522 +0.848199 +0.906980 +0.955578 +0.906651 +0.941118 +0.957147 +0.161725 +0.930878 +0.053076 +0.488258 +0.627965 +0.180127 +0.060278 +0.504922 +0.561401 +0.566107 +0.496322 +0.494550 +0.653735 +0.994021 +0.062153 +0.678065 +0.860975 +0.642926 +0.914836 +0.953928 +-0.018689 +0.735051 +0.852290 +0.809515 +0.387491 +0.539476 +0.882001 +0.782762 +0.868747 +0.872395 +0.005453 +0.543078 +-0.889835 +0.461314 +0.892694 +0.726214 +0.081444 +0.995117 +0.817399 +0.510220 +-2.240764 +0.804961 +0.453494 +0.737532 +0.796448 +0.923370 +0.113763 +0.121722 +0.615871 +0.840272 +-0.554039 +0.781522 +0.907640 +0.986883 +0.770672 +0.696965 +0.672262 +0.829829 +0.945010 +0.285834 +0.566633 +0.541000 +0.553554 +0.648565 +0.527499 +0.540179 +0.926150 +0.924071 +0.788561 +0.902082 +0.748580 +0.926033 +0.939283 +0.907678 +0.754513 +0.467465 +0.698024 +-0.004329 +0.943585 +0.878703 +0.628399 +0.733071 +0.517638 +0.947813 +0.940518 +0.928683 +0.939715 +0.933619 +0.939851 +0.704813 +0.566680 +0.292171 +0.496625 +0.511052 +0.319699 +0.060820 +0.856688 +0.898630 +0.886106 +0.899337 +0.322697 +0.401949 +0.880883 +0.827788 +0.096480 +0.792988 +0.652872 +0.744781 +0.470414 +0.264608 +0.386010 +0.743001 +0.738386 +0.815163 +0.480491 +0.010363 +0.179335 +0.171563 +0.218578 +0.324927 +0.520180 +0.032894 +0.467740 +0.247871 +0.272285 +0.128635 +0.976948 +0.466351 +0.161097 +0.202634 +0.374012 +0.277784 +0.722781 +0.002500 +0.155486 +-0.238488 +0.611115 +0.057968 +0.171825 +0.171825 +0.700421 +0.952935 +-0.202178 +0.541502 +0.965209 +0.468344 +0.875987 +-0.423126 +-0.357617 +0.312110 +0.936528 +0.840971 +0.790028 +0.746498 +0.911318 +0.962909 +0.933286 +0.538391 +0.376946 +0.688042 +0.184416 +0.711394 +0.751241 +0.833424 +0.928451 +0.878453 +0.837665 +0.906488 +0.794308 +0.627122 +0.872293 +0.705770 +0.952791 +0.800961 +0.378209 +0.463512 +0.424395 +0.789182 +0.853886 +0.909777 +0.437071 +0.514788 +0.912931 +0.958725 +0.488650 +0.693190 +0.447148 +0.708113 +0.834788 +0.850656 +0.298819 +0.164596 +0.566705 +0.545318 +0.956910 +0.965684 +0.252351 +0.493553 +0.939767 +0.936129 +0.933128 +0.569284 +0.789423 +0.521560 +-0.171896 +0.829010 +0.727099 +0.881405 +0.975674 +0.471653 +0.856130 +0.134496 +0.804418 +0.912339 +0.794038 +0.646777 +0.799242 +0.472188 +0.313676 +-0.251378 +0.543499 +0.430087 +0.859609 +0.691455 +0.428002 +0.457354 +0.739410 +0.778422 +0.984042 +0.101433 +0.339767 +0.542668 +0.575058 +0.430049 +0.918289 +-0.005523 +0.452963 +0.846604 +0.843015 +0.688643 +0.750100 +0.727876 +0.510605 +0.551089 +0.414521 +0.560871 +0.923171 +0.947555 +0.925284 +0.460903 +0.171330 +0.687752 +0.719700 +-0.485249 +0.453528 +0.334511 +0.799938 +0.557831 +0.554988 +0.761814 +0.727951 +0.727951 +0.893961 +0.587210 +0.750347 +0.763320 +0.975924 +0.355015 +-0.325645 +0.280327 +0.140366 +-1.669379 +0.256015 +0.007049 +-0.042323 +0.405295 +0.932662 +0.083732 +0.267653 +0.009406 +0.938190 +0.706444 +0.933195 +0.937273 +0.979493 +0.055443 +0.803707 +0.473143 +-0.117547 +0.875498 +0.582353 +0.650123 +0.630818 +0.388887 +0.768771 +0.769157 +0.979364 +0.997028 +0.748350 +0.484665 +0.890507 +0.577210 +0.369505 +0.733852 +0.588386 +0.426526 +0.756374 +0.350730 +0.706813 +0.924569 +0.594040 +0.511530 +0.440267 +0.401248 +0.635082 +0.224844 +-0.038604 +0.949719 +0.391601 +0.647039 +0.545344 +0.959445 +0.620135 +0.124352 +0.637903 +0.375240 +-0.051708 +0.682312 +-87.642020 +0.977672 +0.924782 +0.973073 +0.760380 +0.258455 +-0.153306 +-1.715057 +-0.642771 +0.908327 +0.410566 +0.670092 +0.893291 +0.896210 +0.896210 +0.792247 +0.435098 +0.735835 +0.839625 +0.713348 +0.878433 +0.987277 +-177.405961 +0.050403 +0.495590 +0.031275 +0.214883 +-0.110192 +0.343116 +0.558944 +0.751192 +0.114947 +0.997306 +-0.008576 +-0.163966 +0.568590 +0.126597 +0.195976 +0.437687 +0.238309 +0.695308 +0.404857 +0.561026 +0.902981 +0.957145 +0.829765 +0.439922 +0.224427 +0.262413 +0.843172 +0.160933 +0.636276 +0.167774 +0.495203 +0.446208 +0.761443 +0.748286 +0.310797 +0.175882 +0.915235 +0.012322 +0.235091 +-0.021693 +0.569951 +0.989424 +0.372993 +0.158047 +0.623146 +0.763978 +0.111205 +0.401578 +0.765463 +0.648498 +0.606873 +0.364700 +0.728876 +0.776929 +0.634834 +0.919803 +0.447917 +0.317697 +0.253570 +0.297492 +0.726413 +0.228408 +0.476959 +0.370709 +0.248342 +0.952359 +0.830591 +0.881493 +0.735565 +0.523347 +0.560660 +0.672727 +0.621080 +0.898044 +0.567623 +0.683238 +0.784987 +0.111490 +0.776612 +0.947725 +0.869684 +-0.088508 +0.490736 +0.923183 +0.805641 +0.857537 +0.762565 +0.880868 +0.917453 +0.888331 +0.517527 +0.940220 +0.504148 +0.478414 +0.765014 +0.128830 +0.950041 +0.895023 +0.783385 +0.290346 +0.820528 +0.560432 +0.957124 +0.538240 +0.864771 +0.803012 +0.655896 +0.037665 +0.564680 +0.853047 +0.465961 +0.903720 +0.403851 +0.994243 +0.934544 +0.673360 +0.341692 +0.086333 +0.396625 +0.530632 +0.419630 +0.973510 +0.874953 +0.243036 +0.925801 +-0.144565 +0.038422 +0.853410 +0.434858 +0.402478 +0.889407 +0.376991 +0.325315 +0.938260 +0.323807 +0.893478 +0.907523 +0.316290 +0.588276 +0.685124 +0.715521 +0.914958 +0.973326 +0.958561 +0.845421 +0.565148 +0.522299 +0.304084 +0.925001 +0.684115 +0.565057 +0.332711 +0.181372 +0.187296 +0.897944 +0.914657 +0.930961 +0.404422 +0.620519 +0.842791 +0.854450 +0.518735 +0.732254 +0.391882 +0.291943 +0.440019 +0.532812 +0.790628 +0.818590 +0.713932 +0.965933 +0.635636 +0.599589 +0.191004 +0.161666 +0.797761 +0.961447 +0.080721 +0.667520 +0.390815 +0.237999 +0.881854 +0.598016 +0.996328 +0.893259 +0.948452 +0.391640 +0.548199 +0.428262 +0.805752 +0.799290 +0.335911 +0.283542 +0.967182 +0.800810 +0.593114 +-0.242358 +0.495932 +-0.170523 +0.772396 +0.967185 +0.829663 +0.150608 +0.030774 +0.371109 +-0.058388 +0.151661 +0.160685 +0.946501 +0.525765 +0.243272 +0.482983 +0.697192 +0.359095 +0.206468 +0.995864 +0.359127 +0.242644 +0.167745 +0.294400 +0.680772 +0.549512 +0.880615 +0.703414 +0.778407 +0.936786 +0.357231 +0.849768 +0.999166 +0.796902 +0.921189 +0.930664 +0.650508 +0.419719 +0.606888 +0.727469 +0.817374 +0.590118 +0.852144 +0.765780 +0.626658 +0.856992 +0.921903 +0.896869 +0.720502 +-0.136997 +0.541034 +0.008378 +0.736070 +0.640369 +0.781463 +0.727142 +0.256093 +0.870988 +0.476156 +0.799871 +0.931541 +0.878297 +0.863910 +-0.185458 +0.445740 +-0.249203 +-0.328681 +0.408200 +0.821334 +0.795037 +0.800408 +-0.023950 +0.986199 +0.699373 +0.134120 +0.471645 +0.085305 +0.187805 +0.524657 +0.298211 +0.473276 +0.439044 +0.249839 +0.992885 +0.485915 +0.213510 +0.677613 +0.490663 +-0.121533 +0.020068 +0.589389 +0.788977 +0.438729 +0.931672 +0.977999 +0.279571 +0.314851 +0.352500 +0.872602 +0.411767 +0.901839 +0.661618 +0.093576 +0.152470 +0.990141 +0.569708 +0.796979 +0.844128 +0.942791 +0.325594 +0.928934 +0.315934 +0.217749 +0.514572 +0.799202 +0.877749 +0.364524 +0.695775 +0.658944 +0.663059 +0.323459 +-0.003387 +0.083112 +0.052348 +0.032230 +0.927537 +0.788316 +0.932628 +0.702934 +0.312551 +0.356195 +0.728355 +0.186882 +0.973126 +0.436151 +0.515289 +-0.137217 +0.968815 +0.803723 +0.385220 +0.669636 +0.773528 +0.829368 +0.942353 +0.493702 +0.544528 +0.254791 +0.896077 +0.709550 +0.624135 +0.986058 +0.724455 +0.132807 +0.115176 +0.890788 +0.091053 +0.263415 +0.444617 +0.480313 +0.871483 +-1.119176 +0.610740 +0.819242 +0.784532 +0.940504 +0.476631 +0.688914 +0.902235 +0.941594 +0.725892 +0.600783 +0.945426 +0.893404 +0.941706 +0.593837 +0.729531 +-0.260237 +0.846547 +0.186889 +0.748095 +0.570232 +0.885332 +0.789512 +0.861225 +0.742983 +-0.236640 +0.824107 +0.828645 +0.594171 +0.690617 +0.309689 +-0.175640 +0.414155 +0.891747 +0.569291 +0.369316 +-0.145987 +0.739274 +0.844745 +0.806203 +0.662212 +0.744921 +0.921908 +0.286295 +0.903012 +0.035686 +0.658738 +0.418680 +0.306716 +0.534308 +0.310826 +0.995795 +0.969444 +0.737880 +0.859558 +0.555177 +0.836946 +-0.107080 +0.605310 +0.479664 +-0.372419 +0.763086 +0.837564 +0.797723 +0.323580 +0.898495 +-0.024740 +0.605022 +0.719440 +0.937990 +0.690724 +0.658538 +0.785904 +0.859133 +0.891536 +0.868533 +0.697313 +0.779248 +0.930900 +0.723989 +0.937683 +0.137474 +0.934548 +0.242798 +0.909852 +0.808899 +-0.595302 +0.865261 +0.371911 +0.749812 +0.784986 +0.754132 +0.697389 +0.904056 +0.241779 +0.886477 +0.882203 +0.878778 +-0.248340 +0.336270 +0.794774 +0.574331 +0.792800 +0.861421 +0.663414 +0.924654 +0.777777 +0.590635 +0.886250 +0.837892 +0.716440 +0.017653 +0.815436 +0.358541 +0.648484 +0.934281 +0.750075 +0.536250 +0.964981 +0.654071 +0.844847 +-0.104102 +0.672325 +0.586111 +0.477638 +-0.155509 +0.484039 +0.932201 +0.365948 +0.872326 +0.846613 +0.647029 +0.426119 +0.730043 +0.878026 +0.902634 +0.306792 +0.886191 +-1.794685 +0.692650 +0.492471 +0.492473 +0.534797 +0.450797 +0.492454 +0.115948 +0.100643 +0.452558 +0.631695 +0.930978 +0.842973 +0.768553 +0.754658 +0.804299 +0.691497 +0.934683 +0.842441 +0.944585 +0.999233 +0.925712 +0.905573 +0.339469 +0.001833 +0.665989 +0.234147 +0.076807 +0.979253 +-0.053492 +0.265492 +0.709516 +0.017503 +0.220868 +0.363320 +0.305985 +0.066384 +0.143150 +0.898204 +0.615833 +0.698033 +0.569160 +0.138155 +0.629552 +0.953282 +0.719155 +0.721090 +0.366626 +0.440047 +0.276941 +0.793564 +0.536041 +0.841553 +-0.197305 +0.374900 +0.181424 +0.132839 +0.423878 +0.167113 +0.277116 +0.389932 +0.698689 +0.928760 +0.263049 +0.133817 +0.784506 +0.877114 +0.652949 +0.743351 +0.996944 +0.804290 +0.867030 +-0.732452 +0.909171 +0.144922 +0.244943 +0.915905 +0.919204 +0.726130 +0.931468 +0.918789 +0.764913 +0.524179 +0.591173 +0.919545 +0.912459 +0.931850 +0.970736 +0.708516 +0.790702 +0.151366 +0.777774 +0.735708 +0.923562 +0.837240 +0.114229 +0.490736 +0.629375 +0.798965 +0.498973 +0.454145 +0.093422 +0.565570 +0.318166 +0.707383 +-0.028214 +-0.166548 +0.531045 +0.902190 +-0.194065 +-0.296026 +0.071332 +0.675439 +0.508557 +0.199803 +-0.068145 +0.233286 +0.848953 +0.693721 +0.299615 +0.457804 +0.802469 +0.990428 +0.539241 +0.974550 +0.248775 +0.767061 +0.887387 +0.376114 +0.802098 +0.875005 +0.193484 +0.905044 +0.776537 +-1.163613 +-0.194221 +0.691493 +0.664087 +-0.038501 +0.669393 +0.786805 +0.719880 +0.633809 +0.387513 +-0.073040 +-0.060855 +0.336690 +-0.222614 +0.762946 +0.712709 +0.366505 +0.751416 +0.754580 +0.596017 +0.928540 +0.835948 +0.935767 +0.086474 +0.722553 +0.909692 +0.657796 +0.319935 +0.842416 +0.136546 +0.696401 +0.431968 +0.883560 +-0.106030 +0.744621 +-0.108495 +-0.096414 +-0.214315 +0.448472 +0.812813 +-0.310360 +0.709991 +0.060854 +0.269628 +-0.152456 +-2.224121 +0.928370 +0.115151 +0.429613 +0.866196 +-0.132936 +-0.323068 +0.819936 +0.495849 +0.933789 +0.854944 +-0.276799 +0.687266 +0.668638 +0.750508 +0.308421 +0.506170 +0.355115 +0.280073 +0.742370 +0.466133 +0.775483 +0.518001 +0.857428 +0.958058 +-2.960351 +0.799240 +-0.189058 +0.321213 +0.915368 +0.908020 +0.672775 +0.500495 +-0.018000 +0.942678 +0.398225 +0.961208 +0.518496 +0.723804 +0.389775 +0.934534 +0.918078 +0.862422 +0.731598 +0.979672 +0.460392 +0.719371 +0.725811 +0.807250 +0.965410 +0.882122 +0.903460 +0.511795 +0.642742 +0.719964 +0.660907 +0.677207 +0.653105 +0.742449 +0.863499 +0.483568 +0.775646 +0.906500 +0.500235 +0.625901 +0.378370 +0.984226 +0.897939 +0.938875 +0.921895 +0.333330 +0.882375 +0.708056 +0.813590 +-0.306241 +0.565040 +-0.325928 +0.784097 +-0.099642 +0.729201 +0.738127 +0.887280 +0.781343 +-0.612396 +-0.037467 +0.894000 +0.745612 +0.536794 +0.848073 +0.752412 +0.763135 +0.516750 +0.880840 +0.993735 +-0.185282 +-0.049417 +0.368641 +0.576244 +0.276592 +-0.213845 +0.414257 +0.274947 +0.499189 +0.876291 +0.612943 +0.249832 +0.537206 +0.887981 +0.669778 +-0.235587 +0.441485 +0.458235 +-0.170880 +-0.232479 +0.716699 +0.932397 +0.093759 +-0.090184 +0.932688 +0.967362 +0.959852 +0.648437 +0.477756 +0.759813 +0.656425 +0.798165 +0.705474 +0.653848 +0.859900 +0.762577 +0.310726 +0.576532 +0.523957 +0.736845 +0.279386 +0.469390 +0.730292 +0.248085 +0.733136 +0.229528 +0.897371 +0.809595 +0.410441 +0.597188 +0.328366 +0.559263 +0.697791 +0.681256 +0.602731 +0.629017 +0.657273 +0.734270 +0.647426 +0.509656 +0.022836 +0.577839 +0.514759 +0.353864 +-0.050734 +-0.323449 +0.310780 +-0.382289 +0.223455 +0.839486 +0.490588 +0.734571 +0.364563 +0.834484 +0.637936 +0.829931 +0.671481 +0.773807 +0.879546 +0.539105 +0.696581 +0.357834 +0.757620 +0.089772 +-0.063317 +0.542641 +0.369407 +0.863676 +-0.021449 +-2.145855 +0.872732 +0.654046 +0.674335 +0.869153 +0.719764 +0.069540 +0.864037 +0.869044 +-0.129130 +0.474640 +0.749936 +0.160964 +0.685847 +0.788875 +-0.132940 +0.753437 +0.873390 +0.013002 +0.765423 +0.809518 +0.868865 +0.642435 +-0.152867 +-0.556403 +0.662144 +0.046177 +0.740642 +0.702925 +0.748268 +0.588625 +0.087375 +0.875456 +0.926311 +-0.184751 +0.661965 +0.706185 +-0.204867 +0.911179 +0.396502 +0.933205 +0.769970 +0.381270 +0.602531 +0.870385 +-0.221380 +0.928993 +0.985285 +0.113693 +0.600026 +0.656847 +0.513684 +0.427061 +0.929847 +0.574463 +-0.268357 +0.911508 +0.844375 +0.887819 +0.659496 +-1.598404 +-0.472326 +0.662205 +0.663895 +0.813068 +-0.250987 +0.875022 +0.887354 +0.958786 +0.700280 +0.854581 +0.595780 +0.619753 +0.729124 +0.343121 +0.651731 +0.799439 +0.933574 +0.866949 +0.845802 +0.932228 +0.274522 +-0.381690 +0.688209 +0.472393 +0.743526 +0.132201 +0.829006 +0.729385 +0.479351 +0.567221 +0.367751 +0.239340 +0.850772 +0.849433 +0.614837 +0.423190 +0.198123 +-0.103087 +0.510535 +0.402865 +0.492884 +-0.081087 +0.935575 +-0.081399 +0.824106 +0.340453 +0.020544 +-0.007532 +0.051044 +0.155971 +0.922660 +0.010952 +0.307224 +0.109017 +-0.433443 +0.583355 +0.750750 +-0.337732 +0.946244 +-0.219329 +0.537960 +0.796280 +0.928028 +0.928118 +0.642721 +0.681482 +-0.823354 +0.789255 +0.658827 +0.755937 +0.757079 +-0.045140 +0.898915 +0.667693 +-0.117367 +0.764006 +0.903703 +0.768249 +0.676664 +0.718226 +0.890508 +0.700186 +0.971745 +0.719663 +0.840448 +0.923544 +0.678335 +0.929284 +0.891459 +0.778568 +0.829534 +0.947179 +0.806275 +0.577678 +0.653322 +0.314468 +0.682934 +0.892769 +0.678495 +0.057190 +0.277532 +0.754572 +-0.013924 +0.463759 +0.715455 +0.716181 +-0.091682 +0.828968 +0.559051 +-0.190586 +0.017201 +0.653294 +0.615715 +0.625544 +0.407778 +0.805393 +0.169814 +0.233486 +0.401303 +0.414755 +0.801145 +0.218687 +0.324141 +0.465619 +0.619898 +-0.223954 +0.931672 +0.332244 +-0.219508 +0.824342 +0.508499 +-0.241624 +0.339080 +0.433011 +0.829359 +0.353285 +0.066770 +0.781661 +0.850881 +0.803077 +0.699589 +0.936816 +0.380130 +0.779553 +0.494739 +0.817521 +0.781402 +0.237495 +0.546906 +0.725005 +0.360661 +0.774192 +0.642462 +0.847000 +0.860479 +0.933333 +-0.107951 +0.929448 +0.578062 +0.879217 +0.980679 +0.888092 +0.692648 +0.484466 +0.689546 +0.696860 +0.848826 +0.919288 +0.201259 +-0.182230 +0.630250 +-0.102940 +0.730262 +0.430830 +0.208827 +0.801245 +-0.200246 +0.384177 +0.790181 +0.705402 +0.789142 +0.278589 +0.405503 +0.497650 +0.729177 +0.560509 +0.206909 +0.772667 +0.617881 +-0.194519 +0.695786 +0.515731 +0.153997 +0.336062 +0.651084 +0.672022 +0.368896 +0.654464 +0.797049 +0.812622 +0.401510 +-0.189993 +0.354222 +0.707533 +0.800302 +0.586857 +0.463940 +0.159127 +0.801021 +0.674606 +0.929079 +0.491257 +-0.168287 +0.805187 +0.673756 +0.687873 +0.683876 +-0.176780 +-0.053879 +0.801382 +-0.268065 +0.005994 +0.749866 +0.740896 +0.738285 +0.836654 +0.781540 +0.354504 +0.928942 +-0.065402 +0.164196 +0.912459 +0.636089 +-0.152426 +0.844451 +0.816493 +0.571705 +0.560038 +0.485264 +0.194595 +0.676350 +0.452008 +0.043206 +-0.262058 +-0.276681 +-0.052434 +-0.215391 +0.537097 +0.648392 +0.972384 +0.931557 +0.355509 +-0.298785 +0.375237 +-0.145397 +0.335945 +-0.065753 +0.372668 +0.774021 +0.475980 +0.938927 +0.260897 +-0.824991 +0.923895 +0.495659 +-0.294576 +0.205105 +0.810705 +0.720167 +0.719316 +0.831442 +0.704008 +0.775240 +-0.263451 +0.850475 +0.814309 +0.396992 +0.807434 +0.726738 +0.806170 +-0.269440 +0.847818 +0.822412 +0.869915 +0.176420 +0.814671 +0.979416 +0.491367 +0.981894 +0.806864 +-0.162858 +-0.266191 +0.790474 +0.613490 +-0.764846 +0.919158 +-0.139831 +0.526015 +-0.039351 +0.599791 +0.756685 +0.058234 +0.322431 +0.093996 +-0.280127 +0.322834 +0.332958 +0.208923 +0.965135 +0.216628 +0.814458 +0.771173 +0.448402 +0.602134 +-0.128360 +0.394695 +0.771300 +-0.135256 +0.411243 +0.183662 +0.643038 +0.660123 +0.722712 +0.096834 +-0.011071 +0.731507 +0.690312 +0.513126 +-0.298687 +0.583961 +0.177604 +0.862473 +0.488800 +0.520371 +-0.537500 +0.623218 +0.420914 +0.668455 +0.592692 +0.766255 +0.743733 +0.869677 +0.070785 +0.686782 +0.778008 +0.873705 +0.954915 +0.880780 +0.771462 +0.737320 +-0.565585 +-0.067146 +0.791221 +0.865386 +0.640259 +0.735005 +0.846113 +0.489030 +0.145848 +0.178346 +0.368263 +0.595839 +0.298829 +0.818890 +0.341955 +0.152613 +0.534279 +0.266158 +0.768319 +-0.036556 +0.693879 +0.281821 +-0.111365 +0.904551 +0.795182 +0.216951 +0.544322 +0.580360 +0.682066 +0.854174 +0.152633 +0.451364 +0.283969 +0.236843 +0.437624 +0.734980 +0.716836 +0.743547 +0.903658 +0.760566 +0.345051 +0.335260 +0.996653 +0.438621 +0.204914 +0.333988 +0.222750 +0.685649 +0.350666 +0.259968 +0.249221 +0.183844 +0.178591 +0.468778 +0.564185 +0.905598 +0.931445 +0.468123 +0.882355 +0.465811 +0.408851 +0.879526 +0.232869 +0.576061 +0.466939 +0.609364 +0.553298 +0.771658 +0.492984 +0.940091 +0.942175 +0.373691 +0.835791 +0.303602 +0.902684 +0.955450 +0.442710 +0.997114 +0.825183 +0.853086 +0.815164 +0.801510 +0.200649 +0.766733 +0.833851 +0.943879 +0.734536 +0.431280 +0.259857 +0.276149 +0.497289 +0.355933 +0.193968 +0.421349 +0.264625 +0.738512 +0.327052 +0.931932 +0.842026 +0.392220 +0.430423 +0.311715 +0.756130 +0.372159 +0.986427 +0.420034 +0.568672 +0.080065 +0.603866 +0.797851 +0.890246 +0.333416 +0.333416 +0.333416 +0.965099 +0.430313 +0.906098 +0.711622 +0.815934 +0.932102 +0.012800 +0.942115 +0.774884 +0.159886 +0.717316 +0.867249 +0.821137 +0.798868 +0.155431 +0.761449 +0.567092 +0.793748 +0.188658 +0.630181 +0.943553 +0.909873 +0.298039 +0.192235 +0.214862 +0.349977 +0.912837 +0.275943 +0.144932 +0.189835 +0.070198 +0.102149 +0.018512 +0.891694 +0.118061 +-0.054031 +0.884633 +0.725844 +0.662176 +0.875270 +0.581932 +0.828915 +0.901412 +0.933801 +0.966845 +0.223202 +0.739647 +0.937072 +0.865975 +0.828369 +0.889327 +0.831524 +0.392337 +0.574531 +0.912537 +0.922860 +0.528571 +0.807030 +0.418420 +0.757406 +0.990730 +0.801128 +0.847182 +0.851764 +0.752596 +0.638084 +0.507930 +0.645288 +0.817574 +-0.054663 +0.551220 +-0.560562 +0.759763 +0.859261 +0.560493 +0.877091 +0.863393 +0.425143 +0.372576 +0.401470 +0.279952 +0.454043 +0.305654 +0.504253 +0.561160 +0.161051 +0.609893 +0.379927 +0.778633 +0.531988 +0.391945 +0.313217 +0.754207 +-38.913148 +0.665051 +-62.412605 +-15.693276 +0.891264 +0.958768 +0.918675 +0.823347 +0.727729 +0.692911 +0.749795 +0.985472 +0.692403 +0.753593 +0.013817 +0.444939 +0.050249 +0.216753 +0.142251 +0.112715 +0.645998 +0.146249 +0.407155 +0.293978 +0.222079 +0.313470 +0.292801 +0.827858 +0.915818 +0.590930 +0.784826 +0.617252 +0.481556 +0.889469 +0.662201 +0.791086 +0.485781 +0.541047 +0.871520 +0.761553 +0.673907 +0.546424 +0.633041 +0.585989 +0.287724 +0.510605 +0.437196 +0.533158 +0.199333 +0.754851 +0.484803 +0.416954 +0.848586 +-0.015847 +0.302698 +0.359769 +0.932764 +0.552840 +0.907010 +0.913643 +0.608273 +0.834959 +0.719832 +0.568620 +-0.053111 +0.903149 +0.552910 +0.835783 +0.508072 +0.956702 +0.934837 +0.765419 +0.801884 +0.518319 +-0.099512 +0.938164 +0.612417 +0.501249 +0.831246 +0.852178 +0.926031 +0.977296 +0.701814 +0.919214 +0.853319 +0.166636 +0.906528 +0.851573 +0.853224 +0.824314 +0.986166 +0.944705 +0.865403 +0.317843 +0.644737 +0.503371 +0.129597 +0.265126 +0.914093 +0.704453 +0.748007 +0.793388 +0.334184 +0.739909 +0.758032 +0.754425 +0.794498 +0.563403 +0.777225 +0.794842 +0.795329 +0.767562 +0.319245 +0.432185 +0.891255 +0.384916 +0.751558 +0.754984 +0.730896 +0.787349 +0.679172 +0.744022 +0.778393 +0.875697 +0.756050 +0.784881 +0.690617 +0.613796 +0.372251 +0.882899 +0.287725 +0.868651 +0.819674 +-27.902250 +0.814559 +0.946202 +0.682594 +0.879711 +0.698768 +0.920815 +0.764749 +0.801022 +0.758543 +0.207485 +0.820660 +0.449482 +0.465916 +0.515358 +0.509192 +0.613958 +0.741726 +0.273012 +0.683399 +0.665537 +0.493989 +0.838327 +0.859278 +0.802697 +0.465935 +0.594949 +0.825289 +0.833221 +0.912274 +0.769985 +0.631131 +0.894596 +0.967254 +0.926456 +0.683246 +0.678397 +0.931487 +0.215519 +0.688774 +0.319427 +0.687482 +0.263236 +0.161436 +0.089702 +0.545910 +0.145487 +0.496187 +0.362080 +0.758177 +0.241929 +0.138594 +0.268840 +0.138629 +0.862702 +0.038840 +0.096983 +0.591610 +0.426259 +0.435062 +0.800408 +0.095111 +0.822827 +0.531822 +0.695306 +0.917446 +0.070894 +-1.235063 +0.514211 +0.832835 +0.890196 +0.835030 +-0.789343 +0.273833 +0.876466 +0.062918 +-0.057641 +-0.065110 +0.423259 +0.820756 +0.294313 +0.238881 +0.951044 +0.973359 +0.949026 +0.579911 +0.201510 +0.934053 +0.997374 +0.942258 +0.811081 +-0.244999 +0.057910 +0.804731 +0.898772 +0.102777 +0.370555 +0.411785 +0.955348 +0.452791 +0.887504 +0.776319 +0.346065 +0.959161 +0.896890 +0.859844 +0.632864 +0.854780 +0.875223 +0.624340 +0.865624 +0.397453 +0.964050 +0.844237 +0.820779 +0.628603 +0.263118 +0.714507 +0.821742 +0.456081 +0.197734 +0.928745 +0.816089 +0.730849 +0.591414 +0.928369 +0.623619 +0.498843 +0.559940 +0.070322 +0.470798 +0.507359 +0.464661 +0.295869 +0.004409 +0.350919 +0.525089 +0.437627 +0.635662 +-0.000482 +0.991439 +0.555451 +0.546127 +0.723352 +0.294667 +0.952758 +0.854239 +0.491441 +0.186071 +0.694426 +0.795464 +0.494527 +0.676986 +0.412178 +0.998916 +0.409312 +0.328618 +0.149888 +0.138955 +0.088815 +0.141626 +0.997093 +0.322328 +0.221335 +0.929166 +0.155406 +0.744141 +-0.038834 +0.072042 +0.924486 +0.604725 +0.973631 +0.985442 +-1.225622 +0.534243 +0.424387 +0.543552 +0.468926 +0.732053 +0.416834 +0.364293 +-0.187844 +0.100928 +0.843746 +0.611117 +0.933003 +0.662094 +0.199064 +0.820118 +0.669533 +0.057618 +0.986155 +0.704062 +0.391637 +0.633003 +0.904780 +0.429148 +0.915842 +-3.372968 +0.796511 +0.179042 +0.606476 +0.770296 +0.921464 +0.910386 +0.894541 +0.741117 +0.797606 +0.695848 +0.721143 +0.374111 +0.277961 +0.532870 +0.833098 +0.445108 +0.765138 +0.905447 +0.933041 +0.852445 +0.914240 +0.724445 +0.445611 +0.883587 +0.268328 +0.615534 +0.831449 +0.851030 +0.894543 +0.738320 +0.729253 +0.556373 +0.397540 +0.939998 +0.928457 +0.363633 +0.839372 +0.894191 +0.885908 +0.839107 +-0.214001 +0.966254 +0.770787 +0.829801 +0.881184 +0.433896 +0.827543 +0.855222 +0.599733 +0.509381 +0.887242 +0.979616 +0.779787 +0.829216 +0.817063 +0.726950 +0.845126 +0.755121 +0.816665 +0.969529 +0.367006 +0.461506 +0.922913 +0.355444 +0.374370 +0.782097 +0.615728 +0.441532 +0.372880 +0.917573 +0.899102 +0.040528 +0.944346 +0.791282 +0.435014 +0.666285 +0.778914 +0.753842 +0.863032 +0.257188 +0.811476 +0.808259 +0.897011 +0.698709 +0.737268 +0.905459 +0.501881 +0.307241 +0.838030 +0.402531 +0.410430 +0.738278 +0.921520 +0.930961 +0.917411 +0.354230 +-251.003569 +0.881105 +0.265042 +0.573667 +0.696432 +0.677008 +0.824985 +0.499202 +0.887222 +0.236626 +0.398920 +0.595140 +0.917019 +0.616244 +0.517107 +0.943157 +0.341975 +0.347770 +0.390909 +0.361881 +0.446299 +0.439430 +0.925493 +0.052223 +0.968189 +0.979772 +0.413914 +0.899218 +0.230714 +0.073106 +-0.261811 +-8.627339 +0.273260 +0.419225 +-0.001300 +0.026699 +-0.084328 +0.409276 +0.389546 +0.602723 +0.186336 +0.474205 +0.136494 +0.709657 +0.140380 +0.579347 +0.598213 +0.472508 +0.404715 +0.604097 +0.853473 +0.651630 +0.777460 +0.777097 +0.405734 +0.379533 +0.969617 +0.620313 +0.949558 +0.203483 +0.659300 +0.451861 +0.827213 +0.878025 +0.116020 +0.397596 +0.541029 +0.018350 +0.405459 +0.967381 +0.465036 +0.953377 +0.159660 +0.489456 +0.955510 +0.735156 +0.378113 +0.965752 +0.610452 +0.853536 +0.886047 +0.553613 +0.522385 +0.620590 +0.898489 +0.700496 +0.358318 +0.855741 +0.047830 +0.648504 +0.173537 +0.178059 +0.517798 +0.079234 +0.430694 +0.071413 +0.104663 +0.584360 +0.095302 +0.279021 +0.068319 +0.100904 +0.389165 +0.806437 +0.125651 +0.005516 +0.682136 +0.153700 +0.640323 +0.860663 +0.942818 +0.806119 +0.323875 +0.129593 +0.913761 +-0.004976 +0.054794 +0.785375 +0.286566 +0.741604 +0.021410 +0.552348 +0.929384 +0.736266 +0.617939 +0.608241 +0.266503 +0.222091 +0.733693 +0.093087 +0.655596 +0.185835 +0.038527 +0.673219 +0.682252 +0.691481 +0.664987 +0.773092 +0.598280 +0.198246 +0.703631 +0.684988 +0.356147 +0.825413 +0.098442 +0.061294 +0.649993 +0.485189 +0.762166 +0.546426 +0.364307 +0.507969 +0.156131 +0.907161 +0.959595 +0.752490 +0.998737 +0.683023 +0.805799 +0.150993 +0.001911 +0.916567 +0.109701 +0.515796 +0.353109 +0.717992 +0.623720 +-0.121099 +0.883922 +-0.081592 +0.733025 +0.980995 +0.532358 +0.571541 +0.867526 +0.725775 +-0.269574 +0.509301 +0.634741 +0.745792 +0.877276 +0.522619 +0.921382 +0.548976 +0.516116 +0.379819 +0.592253 +0.387357 +0.411545 +0.353193 +0.140531 +0.439756 +0.957762 +0.875312 +0.442176 +0.840223 +0.664276 +0.425045 +0.504171 +0.774047 +0.972996 +0.706474 +0.533457 +0.482383 +0.435009 +0.864367 +0.318085 +0.905262 +0.606866 +0.417003 +0.910554 +0.408913 +0.689327 +0.814429 +0.956591 +0.872379 +0.924458 +0.440873 +0.684626 +0.505709 +0.754909 +0.481499 +0.264510 +0.418537 +0.925021 +0.302066 +0.288930 +0.740412 +0.507633 +0.297840 +0.663111 +0.043154 +0.416364 +0.308699 +0.265382 +0.861697 +0.952154 +-4.777116 +0.372053 +0.952396 +0.856014 +0.459342 +0.565429 +0.128025 +0.491224 +0.546142 +0.791094 +0.565380 +0.205349 +0.283791 +0.938544 +0.673292 +0.363524 +0.393829 +0.056840 +0.394993 +0.947140 +0.666811 +0.043565 +0.635891 +0.450172 +-3.338772 +0.445452 +0.088480 +0.199942 +0.935811 +0.260724 +0.463748 +0.527189 +0.303263 +0.176042 +0.395777 +-0.233720 +0.341410 +0.751394 +-0.241546 +0.046641 +0.637871 +0.891857 +0.948393 +0.303770 +-0.006750 +0.524391 +0.023872 +0.427141 +0.600158 +0.346030 +0.591586 +-21.984932 +0.661112 +0.642764 +0.725265 +0.480534 +0.408874 +0.966895 +0.244634 +0.449453 +-1.622327 +0.294538 +0.579486 +-3.274184 +0.913762 +0.462700 +0.411768 +0.892293 +0.730036 +0.732572 +-0.247394 +-0.267665 +-29.611520 +0.919748 +0.687572 +-0.003973 +0.594480 +0.505189 +0.578294 +0.927642 +0.082621 +0.916526 +0.936161 +0.974258 +0.465583 +0.728319 +0.487521 +0.304171 +0.590179 +0.560080 +0.484875 +0.578813 +0.232783 +0.877423 +0.535497 +0.523435 +0.595370 +0.505007 +0.592676 +0.936866 +0.294717 +0.268841 +0.006234 +0.251214 +0.032594 +0.159246 +0.046087 +0.334766 +0.106527 +-0.056984 +0.512481 +0.946836 +-0.069805 +0.195738 +0.555729 +0.373500 +0.229730 +0.452957 +0.110095 +0.191491 +0.169975 +0.134923 +0.736140 +0.615082 +0.480086 +0.623656 +0.520248 +0.417391 +0.830860 +0.562346 +0.045874 +0.799425 +0.050108 +0.698053 +0.450890 +0.417930 +0.534165 +0.333801 +0.856087 +0.629370 +0.660854 +0.490268 +0.207683 +0.677094 +0.160488 +0.805746 +0.081399 +-0.383996 +0.803034 +0.392611 +-0.107033 +0.795139 +0.215577 +0.837152 +0.028927 +0.545711 +0.300672 +0.221453 +0.939316 +0.096973 +0.048005 +0.175882 +0.223710 +0.248330 +-0.226220 +0.235353 +0.379300 +0.873421 +0.295951 +0.856138 +0.089798 +0.820027 +0.369428 +0.700290 +0.401849 +0.836073 +0.930869 +0.087990 +0.859765 +-0.563988 +0.786660 +0.482674 +0.436511 +0.822982 +0.442533 +0.442533 +0.435042 +0.939120 +0.616906 +0.682347 +0.710497 +0.983100 +0.583583 +0.423556 +0.139562 +-0.527474 +0.543121 +0.455520 +0.510006 +-2.134622 +0.449570 +-0.437206 +0.834164 +0.570356 +0.352017 +0.791385 +0.994229 +0.448366 +0.165010 +0.713698 +0.794663 +0.756426 +0.370175 +0.733745 +0.954991 +0.658612 +0.419009 +0.801077 +0.761170 +0.900190 +0.786479 +-0.247479 +-0.157473 +0.552660 +0.569364 +0.950139 +0.430973 +0.457339 +0.534812 +0.482545 +0.657995 +-0.310417 +0.697409 +0.928182 +0.833642 +0.655174 +0.947898 +0.726244 +0.401243 +0.672615 +0.501776 +0.903162 +0.913322 +0.089143 +0.603440 +-0.294302 +0.536904 +0.925069 +0.926533 +0.673212 +0.652016 +0.832344 +0.896217 +0.923218 +0.840140 +0.056748 +0.294721 +0.362021 +0.782035 +0.845035 +0.664619 +0.347624 +0.812002 +0.798553 +0.016142 +0.619056 +0.924120 +-0.003707 +0.092977 +0.913966 +0.769788 +0.792161 +0.969977 +0.317685 +0.901687 +0.719342 +0.257393 +0.511104 +0.324042 +0.479763 +0.639231 +0.596504 +0.548650 +0.700824 +0.576187 +0.776421 +0.246586 +0.170296 +0.660895 +0.781302 +0.657536 +0.085010 +0.360793 +0.860787 +0.651156 +0.553628 +0.746427 +0.253206 +0.791174 +0.627998 +0.688620 +0.774579 +0.882468 +0.738089 +-0.878975 +0.373806 +0.666102 +0.812606 +0.939416 +0.246700 +0.521312 +0.293735 +0.670234 +0.738801 +0.862506 +0.784388 +0.425294 +0.268616 +0.543501 +0.706580 +0.228691 +0.722390 +0.632022 +0.427805 +0.880857 +0.677269 +0.108835 +0.065652 +0.424982 +0.678182 +0.849728 +0.638794 +0.789200 +0.766634 +0.582858 +0.816790 +0.611894 +0.913397 +0.895767 +0.347002 +0.983014 +0.706518 +0.925234 +-0.094396 +0.414942 +0.308167 +0.665373 +0.541018 +0.687740 +0.687740 +0.723830 +0.708429 +0.436943 +0.782475 +0.776824 +0.785673 +0.429055 +0.912635 +0.930252 +0.315961 +0.203575 +0.852347 +0.941225 +0.064234 +-0.215276 +0.871053 +0.560142 +0.380735 +0.306111 +0.893258 +0.672565 +0.233593 +0.949741 +0.247108 +0.901960 +0.986182 +0.853011 +0.375183 +0.493955 +0.811196 +0.502092 +0.333404 +-0.396610 +0.347485 +0.416381 +0.205968 +0.475318 +0.440583 +0.374831 +0.563607 +0.319158 +0.427781 +0.083361 +0.170284 +0.227323 +0.194309 +0.153635 +0.416319 +0.875976 +0.694210 +-17.493893 +0.949919 +0.816174 +0.882522 +0.904401 +0.562776 +0.392361 +0.522809 +0.465561 +0.410684 +0.841942 +-0.313534 +0.932788 +0.952940 +0.934037 +0.853368 +0.960025 +0.959221 +0.352100 +0.518488 +0.839359 +0.132071 +0.530217 +0.886429 +0.888303 +0.870225 +0.819731 +0.618838 +0.850622 +0.904926 +0.484508 +0.604594 +0.956860 +0.908846 +-0.067839 +0.865694 +0.942876 +0.889551 +0.723615 +0.745662 +0.437843 +0.849342 +0.823050 +0.846698 +0.281557 +0.275804 +0.128433 +0.620439 +0.582665 +0.365673 +0.497116 +0.903362 +0.478543 +0.262574 +0.104244 +0.823063 +0.918832 +0.851445 +0.568127 +0.086151 +0.920621 +0.939724 +-0.061873 +0.525116 +0.752270 +0.551095 +0.933303 +0.935683 +0.452417 +0.099537 +0.567260 +0.936787 +0.238659 +0.407459 +0.591694 +0.928775 +0.467514 +0.921308 +0.736968 +0.480687 +0.834587 +0.825932 +0.173094 +0.921171 +0.923722 +0.455389 +0.950681 +-81.661219 +0.609836 +0.809426 +0.246901 +0.317050 +0.765042 +0.249086 +0.831141 +0.624402 +0.888111 +0.817358 +0.934868 +0.952838 +0.907871 +-0.327076 +0.684733 +0.555840 +0.969018 +0.484974 +0.997725 +0.589677 +0.677818 +0.850348 +0.344098 +0.611720 +0.250001 +0.155883 +-0.385158 +0.521614 +0.460392 +0.584369 +0.259657 +0.733617 +0.481219 +0.959268 +0.145184 +0.542575 +0.063479 +0.618111 +0.605706 +0.376364 +0.724666 +0.101793 +0.397646 +0.433602 +0.086334 +0.988379 +0.497519 +0.857195 +0.042557 +0.423594 +0.549058 +0.622376 +0.993216 +0.990204 +0.918456 +0.657288 +0.145650 +0.002206 +0.458709 +0.499020 +0.408613 +0.936421 +0.556273 +0.414817 +0.862986 +-0.000721 +-8.662750 +-0.333049 +0.328764 +0.339976 +-0.132346 +-2.671180 +-0.310760 +0.350849 +-0.293795 +0.704110 +0.649768 +0.880409 +0.739227 +0.561433 +0.722899 +0.880576 +0.665055 +0.749625 +0.405428 +0.360117 +0.845329 +0.405825 +0.588185 +0.631237 +0.622150 +0.156177 +0.276616 +-0.045154 +0.654903 +0.939023 +-0.268760 +0.464966 +0.789226 +0.461069 +0.479492 +0.948571 +0.014124 +-0.076266 +-0.206924 +0.722223 +0.893190 +0.624350 +0.776651 +0.757193 +0.943446 +0.534618 +0.922748 +0.782849 +0.942178 +0.917375 +0.655539 +0.499723 +0.542704 +0.435404 +0.852622 +0.112845 +0.939477 +0.864521 +0.741812 +0.729807 +0.714379 +0.895086 +0.975708 +0.765083 +0.750639 +0.934111 +0.729875 +0.774358 +0.728568 +0.471825 +0.703849 +0.916047 +0.632387 +0.420850 +0.589653 +0.553882 +0.908644 +0.967019 +0.945165 +0.741904 +0.931197 +0.856536 +0.627666 +0.656481 +0.721373 +0.617039 +0.854800 +0.776521 +0.141800 +0.529913 +0.206297 +0.730465 +0.429162 +0.443099 +0.643662 +0.678027 +0.930937 +0.502612 +0.786152 +0.715526 +0.390119 +0.286568 +-4.479862 +0.907008 +0.551783 +-0.561739 +0.415049 +0.887324 +0.851161 +0.223111 +0.794755 +0.916983 +0.845295 +-1.799775 +0.933707 +0.605702 +0.571399 +0.686390 +0.673048 +0.833045 +0.725833 +0.984279 +0.933525 +0.824144 +0.697668 +0.206673 +0.773942 +0.925573 +0.509617 +0.538030 +0.080428 +-0.329392 +0.921977 +0.584445 +0.678005 +0.948249 +0.545424 +0.516354 +0.672765 +0.114440 +0.029512 +-5.106377 +0.418896 +0.943069 +0.046186 +0.731951 +0.869115 +0.089401 +0.041370 +0.074676 +0.621161 +-6.422254 +0.402735 +0.505283 +0.187283 +0.830139 +0.696979 +-0.847976 +0.417867 +0.033263 +0.540126 +0.301524 +0.169141 +0.611908 +0.755903 +0.856610 +0.358958 +0.032563 +0.212525 +0.422487 +0.069009 +0.114860 +0.653345 +0.820933 +0.256176 +0.878509 +0.930471 +0.704749 +0.880933 +0.441790 +-0.270256 +0.483572 +0.446150 +0.851762 +0.617236 +0.425854 +0.504031 +0.896238 +0.892612 +0.809014 +0.933900 +0.896617 +0.933146 +0.322315 +0.718143 +0.841784 +0.886272 +0.320354 +0.741219 +0.609528 +0.991205 +-0.303553 +0.917486 +0.411524 +0.476530 +0.503847 +0.735408 +0.549703 +0.297910 +0.880274 +0.847723 +0.436196 +0.359194 +0.405364 +0.437592 +0.901075 +0.444991 +0.893799 +0.728129 +0.719605 +0.936561 +0.783546 +0.810910 +0.492962 +0.403601 +0.403601 +0.144797 +0.924102 +-1.324470 +0.923606 +0.298232 +0.427217 +0.293960 +0.630947 +0.550252 +0.729355 +0.597272 +0.388807 +0.927812 +0.708219 +0.864066 +0.101259 +0.346131 +0.924151 +0.312010 +0.393551 +0.687331 +0.417635 +0.362444 +0.928330 +0.662757 +0.923838 +0.550777 +0.268838 +0.718770 +0.873254 +0.700031 +0.484356 +0.634241 +0.970810 +0.944749 +0.797128 +0.336346 +-0.491098 +-0.300287 +0.865556 +0.880906 +0.431202 +0.538235 +0.869760 +0.715038 +0.569418 +0.434725 +0.495453 +0.998446 +0.367593 +0.039867 +-0.205315 +0.194974 +0.696419 +0.274615 +0.021275 +0.064962 +0.171025 +-10.013466 +0.062390 +0.795482 +0.972985 +0.917033 +0.389478 +0.642143 +0.898806 +0.975338 +0.915811 +0.635583 +0.729374 +0.700924 +0.232154 +0.655798 +0.521499 +0.607974 +0.900342 +0.268221 +0.916673 +0.772435 +0.834674 +0.480527 +0.661658 +0.648312 +0.561573 +0.642188 +0.925723 +0.769615 +0.651654 +0.976868 +0.991580 +0.921081 +0.519932 +0.564724 +0.683808 +0.518814 +0.568386 +0.432185 +0.451925 +0.600002 +0.921566 +0.530697 +0.639015 +0.921024 +0.918988 +0.458823 +0.867002 +0.920306 +0.374559 +0.606636 +0.713257 +0.502637 +0.913017 +0.750096 +-0.057716 +0.484725 +0.969466 +0.510671 +0.637701 +0.669868 +0.767356 +0.570051 +0.912454 +0.992788 +0.920548 +0.453888 +0.537281 +0.918999 +0.376172 +0.985990 +0.982488 +0.675884 +0.582262 +0.883120 +0.708626 +0.531695 +0.581241 +0.914807 +0.456958 +0.510051 +0.762927 +0.976856 +0.561250 +0.926786 +0.628019 +0.950755 +-0.028861 +0.926091 +0.703100 +0.327598 +0.968501 +0.921644 +0.347415 +0.188207 +0.808568 +0.562395 +0.926171 +0.922875 +0.901680 +0.790916 +0.969473 +0.930339 +0.941846 +0.127875 +0.965514 +0.962835 +0.986945 +0.929369 +0.811767 +0.939223 +0.959609 +0.549142 +0.534226 +0.008887 +0.837898 +0.025539 +0.908603 +0.861132 +-0.196143 +0.318250 +0.384630 +0.790937 +0.501282 +0.123554 +0.555516 +0.368020 +0.727607 +0.101613 +-2.080281 +0.603763 +0.539507 +0.848244 +0.871439 +0.619001 +0.396393 +0.686079 +0.329421 +0.729891 +-1822.835198 +0.690754 +0.328405 +0.910445 +0.888900 +0.661894 +0.037350 +-0.337864 +0.843170 +0.880653 +0.441373 +0.318951 +0.360996 +0.279297 +0.742234 +0.968574 +0.032823 +0.806334 +0.916176 +0.906099 +0.712708 +0.632740 +0.851922 +0.421895 +0.583116 +0.957110 +0.440614 +0.327358 +0.544293 +0.878050 +0.833247 +0.784043 +0.708732 +0.961733 +0.974138 +0.950011 +0.878518 +0.906326 +0.842621 +0.910900 +0.450129 +0.426446 +0.923119 +0.934913 +0.919005 +0.911593 +0.648202 +-0.047875 +0.799953 +0.944412 +0.934656 +0.186495 +0.325840 +0.923377 +0.830721 +0.440411 +0.946057 +0.803071 +0.925000 +0.919034 +0.631604 +0.910300 +0.680552 +0.891951 +0.652004 +0.698958 +0.377293 +0.377293 +0.975508 +0.938325 +-3.230636 +0.477966 +0.885441 +0.904258 +0.880299 +0.767485 +0.930518 +-0.635547 +0.361271 +0.542074 +0.928769 +0.229377 +0.598097 +0.794796 +0.941550 +0.445667 +0.553397 +0.755498 +0.436787 +0.091400 +0.104340 +0.073445 +0.994620 +0.038827 +0.420399 +0.191714 +0.958972 +0.971937 +0.831267 +0.833274 +0.658294 +-0.341085 +0.563607 +0.524039 +0.676743 +0.491594 +0.424038 +0.840779 +0.234849 +0.175241 +0.553243 +0.356441 +0.410647 +0.405737 +0.075224 +0.218966 +0.992137 +0.143082 +0.653432 +0.320655 +0.075409 +0.878809 +0.826743 +0.083494 +0.812706 +0.384948 +0.086217 +0.613178 +-0.004442 +0.840624 +0.211300 +0.987000 +0.859721 +0.132770 +0.818165 +0.903295 +0.848058 +0.846966 +0.036425 +0.089842 +0.963169 +0.569459 +0.203659 +0.124683 +0.123531 +0.148349 +0.762464 +0.116149 +-0.014093 +-0.023357 +-0.793525 +0.960478 +0.339699 +0.074646 +0.238480 +0.722061 +0.147205 +0.086726 +0.473988 +0.070344 +0.302749 +0.319668 +0.277953 +0.334222 +0.249799 +0.180793 +0.929731 +0.771269 +0.882215 +0.477375 +0.743973 +0.495456 +0.820722 +0.780324 +0.378815 +-0.112245 +0.806044 +0.510058 +0.926724 +0.664328 +0.288610 +0.179684 +0.671681 +0.188898 +0.836316 +0.813969 +0.203628 +0.481364 +0.455222 +0.643454 +0.537184 +0.088246 +0.845313 +0.631918 +0.259087 +0.811810 +0.815640 +0.459441 +0.555948 +0.967631 +0.745432 +0.719327 +0.748594 +0.947252 +0.942587 +0.920462 +0.627942 +0.830561 +0.917316 +0.921896 +0.932446 +0.770801 +0.844995 +0.929950 +0.837583 +0.921296 +0.927516 +0.973931 +0.921461 +0.721781 +0.943429 +0.858035 +0.757896 +-0.229302 +0.992676 +0.927784 +0.578952 +0.185966 +0.381644 +-0.681378 +0.031469 +0.262419 +0.379699 +0.837969 +0.989088 +0.635889 +0.303417 +0.628863 +0.841238 +0.908584 +0.220474 +0.375427 +-0.301845 +0.284825 +0.946182 +0.594568 +0.693504 +0.452072 +0.901367 +-0.054357 +0.673545 +0.305945 +0.934592 +0.670249 +0.897324 +0.852365 +0.923164 +0.562132 +0.648683 +0.875098 +0.315332 +0.567936 +0.588733 +0.855358 +0.955289 +0.781313 +0.856527 +-12.905402 +0.750471 +0.689847 +0.873592 +0.834481 +0.915858 +0.440789 +0.228654 +0.795556 +0.089661 +0.934678 +0.586834 +0.879827 +0.964748 +0.487699 +0.714575 +0.535506 +0.761766 +0.956458 +0.546838 +0.738079 +0.793889 +0.669514 +0.942639 +0.558809 +0.928939 +0.867105 +0.856538 +0.693833 +0.542828 +0.790418 +0.902787 +0.788907 +0.558600 +0.692014 +0.601292 +0.501011 +0.951969 +0.824641 +-0.140718 +0.715423 +0.832085 +0.965984 +0.466815 +0.837108 +0.514537 +0.503202 +0.884538 +0.937107 +0.538453 +0.958759 +0.949504 +0.455264 +0.461833 +0.573200 +0.950753 +0.832627 +0.835598 +0.030192 +0.459950 +0.931817 +0.922712 +0.919994 +0.787485 +0.930122 +0.387192 +0.433629 +0.331267 +0.720197 +0.467268 +0.835783 +0.996009 +0.076626 +0.053464 +0.507680 +0.514023 +0.190523 +0.326463 +0.958348 +0.614342 +0.940839 +0.784122 +0.920442 +0.622786 +0.690455 +0.829149 +0.561769 +0.157483 +0.517382 +0.865085 +0.315870 +0.168410 +0.787611 +0.822341 +0.322183 +0.648770 +0.511822 +0.573005 +-0.302661 +-0.233872 +0.841001 +0.764748 +0.737677 +0.827436 +0.763340 +0.908503 +0.696390 +0.577933 +0.854725 +0.835931 +0.894295 +0.965161 +0.972986 +0.837655 +-0.336584 +-0.316765 +0.659787 +0.634089 +0.741403 +0.867871 +0.903479 +0.157332 +0.665714 +0.705939 +0.789250 +0.488987 +0.697848 +-0.027687 +0.566449 +0.472870 +0.624199 +0.433483 +0.414427 +0.854011 +0.477664 +0.752932 +0.620662 +0.935852 +0.575709 +0.413576 +0.816555 +0.084993 +0.746332 +0.427049 +0.200425 +0.757345 +0.439119 +0.978295 +0.113082 +0.490399 +0.249095 +0.655005 +0.252202 +0.450737 +0.483351 +0.334350 +0.988322 +0.056071 +0.180943 +0.744242 +0.032545 +0.785309 +0.162020 +0.987925 +0.230229 +0.776012 +0.085260 +0.462788 +0.894789 +0.812609 +0.651959 +0.938517 +0.230487 +0.241984 +0.089998 +0.181148 +0.887785 +0.593804 +0.410088 +-0.029228 +0.582487 +0.265144 +0.983171 +0.998533 +0.772202 +0.262916 +0.171864 +0.329584 +0.038093 +0.098542 +0.263195 +-0.032640 +0.463192 +0.325039 +0.419439 +0.347315 +0.372419 +-3.228483 +0.569308 +-35736688.764056 +0.639497 +0.536097 +0.571636 +0.754583 +0.540357 +0.751145 +0.991177 +0.602373 +0.498991 +0.858631 +0.933223 +0.688568 +-1.651281 +0.424537 +0.851488 +0.490388 +0.794419 +0.934890 +0.992051 +-4.258274 +0.588811 +0.622981 +0.794673 +0.984316 +0.545851 +0.839840 +0.045925 +0.468664 +0.010426 +0.549428 +0.053155 +0.114391 +-0.205080 +0.194683 +-0.003897 +0.573866 +0.267813 +0.142975 +0.675825 +0.868889 +0.951005 +0.862037 +0.743530 +0.930524 +0.532232 +0.430972 +0.639739 +0.777215 +0.421995 +0.003560 +0.535006 +0.280997 +0.951480 +0.939214 +0.903906 +0.945306 +0.533094 +0.255969 +-0.026588 +0.022617 +0.615451 +0.181863 +-0.035031 +-0.235458 +-0.270071 +0.687006 +0.879629 +0.535724 +0.019498 +0.309850 +0.019473 +0.461437 +0.263561 +0.738235 +-0.379651 +0.839617 +0.622337 +0.802288 +0.814734 +0.657118 +0.849335 +0.834489 +0.852509 +0.908953 +0.845537 +0.824973 +0.764470 +0.863294 +0.851306 +0.893797 +0.346037 +0.693003 +0.911590 +0.886025 +0.774024 +0.728719 +0.932546 +0.479124 +0.714695 +0.589248 +0.845370 +0.406759 +-0.101135 +0.715292 +0.894054 +0.967419 +0.530237 +-0.856694 +0.819572 +0.870181 +-0.083065 +-0.044703 +0.466746 +0.095934 +0.839926 +-0.801329 +-0.008311 +0.856412 +0.425099 +0.800616 +0.992970 +0.916385 +0.706267 +0.561328 +0.630715 +-0.048587 +-1559660.301418 +0.971163 +0.920880 +0.778153 +0.766105 +0.763636 +0.932027 +0.817083 +0.616879 +0.568136 +0.700405 +0.657913 +0.379527 +0.811274 +-0.386642 +0.203000 +0.541989 +0.786411 +0.903919 +0.912633 +0.697331 +0.033262 +0.608372 +0.673879 +0.590465 +0.578427 +0.534520 +-0.814658 +0.864701 +0.693496 +0.831248 +0.743388 +0.655522 +0.646213 +0.356833 +0.645904 +0.883099 +-0.098207 +0.553999 +0.553999 +0.418092 +0.415573 +0.812146 +0.821468 +0.803728 +-0.444464 +0.835456 +0.808358 +0.657055 +0.550073 +0.658115 +-0.396879 +0.516247 +0.331362 +0.209050 +0.798207 +0.701471 +0.628392 +0.825061 +0.905030 +0.898534 +0.823473 +0.974076 +0.896924 +0.950679 +0.783538 +0.831778 +0.920588 +0.970288 +0.895508 +0.151659 +0.885563 +-0.904329 +0.816567 +0.901028 +0.547687 +0.299833 +-1.091783 +0.795449 +0.982308 +0.286574 +0.952813 +0.543479 +0.823876 +0.860184 +0.440182 +0.879335 +0.802765 +0.565438 +0.967069 +0.926286 +0.875682 +0.858465 +0.318950 +0.672326 +0.840920 +-0.044940 +0.917380 +0.867377 +0.555557 +0.510795 +0.933166 +0.636764 +0.878884 +0.408876 +0.982762 +0.667089 +0.620106 +0.908087 +0.755519 +0.612415 +0.885948 +0.845263 +0.989503 +0.909385 +0.794780 +0.935809 +0.928933 +0.936825 +0.928476 +0.677151 +0.868971 +0.842385 +0.976591 +0.696252 +0.913836 +0.899544 +0.424014 +0.381507 +0.879049 +0.264707 +0.938513 +0.939500 +0.943211 +0.450973 +0.417457 +0.858705 +0.831715 +0.820443 +0.839873 +0.339515 +0.815606 +0.256836 +0.385896 +0.355080 +0.553058 +0.964488 +0.627192 +0.848827 +0.800927 +0.350421 +0.853429 +0.976089 +0.431334 +0.814411 +0.223188 +0.985345 +0.524908 +0.530051 +0.921224 +0.946884 +-0.299093 +0.013291 +0.926009 +0.838092 +0.798718 +0.378847 +0.943423 +0.917209 +0.907465 +0.592662 +0.547526 +-0.194930 +0.738422 +0.625761 +0.846081 +0.450914 +0.741834 +0.860552 +0.737221 +0.926606 +0.467664 +0.922947 +0.626286 +0.938305 +0.866944 +0.929065 +0.883337 +0.833557 +0.995220 +0.399579 +0.690350 +0.924314 +0.864139 +0.936477 +0.534141 +0.975439 +-0.086296 +0.765012 +-0.676681 +0.909734 +0.906758 +0.780036 +-0.425876 +0.921895 +0.740720 +0.763862 +0.675568 +0.630501 +-1.098991 +0.310412 +0.888171 +0.409804 +0.933793 +0.683275 +-0.162848 +0.601327 +0.024693 +0.971730 +0.742335 +0.761793 +0.849436 +0.714845 +-23.825148 +-2.300706 +0.996135 +0.147866 +0.007345 +0.213596 +0.463951 +0.942768 +0.963239 +0.928683 +0.354466 +0.571521 +0.951676 +0.997551 +0.998630 +0.709603 +-0.216178 +0.468403 +0.940589 +0.825409 +0.384144 +0.284535 +0.691947 +0.333757 +0.963934 +0.625616 +0.266620 +0.959315 +0.134661 +0.819960 +0.245559 +0.877715 +0.223314 +0.908453 +0.050013 +0.590993 +0.298616 +0.441580 +-0.014931 +0.630300 +-0.008729 +0.960279 +0.252913 +-0.899385 +0.094717 +0.331724 +0.041892 +0.187038 +0.338525 +0.898133 +0.515933 +0.838557 +0.729285 +0.178373 +0.240873 +0.837818 +0.221519 +0.381973 +0.630556 +0.473799 +0.427767 +0.866915 +0.659729 +0.890681 +0.156325 +0.291872 +0.829768 +0.860691 +0.208109 +0.743880 +0.373449 +0.615127 +0.033622 +0.952613 +0.556910 +0.237340 +0.826528 +0.130293 +0.557970 +0.132439 +0.197167 +0.457767 +0.286835 +0.270451 +0.241404 +0.821613 +0.617619 +0.434478 +0.854615 +0.897170 +0.958804 +-0.004040 +0.744848 +-0.256827 +0.028477 +0.583534 +0.732218 +0.403819 +-0.248605 +0.174669 +0.931773 +0.755946 +0.740038 +0.887782 +0.799203 +0.137507 +0.663046 +0.545582 +-0.149515 +0.769959 +0.624608 +0.230753 +0.642624 +0.839791 +0.660940 +-0.285864 +0.904700 +0.608702 +0.359647 +0.311640 +0.268354 +0.628371 +0.243047 +0.326919 +0.746896 +0.183631 +0.557781 +0.631753 +0.990819 +0.086514 +0.939067 +0.008451 +0.392876 +0.149990 +-0.003476 +0.278128 +0.876830 +0.683265 +0.818172 +0.309733 +0.741517 +0.156830 +0.037686 +0.175957 +0.643546 +0.825329 +0.678706 +0.180802 +0.956951 +0.127433 +0.103274 +0.503183 +0.175995 +0.722839 +0.618472 +0.050511 +0.986753 +0.596238 +0.608370 +0.073500 +-1.176409 +0.222700 +0.790464 +0.805568 +0.165937 +0.947566 +0.911296 +0.710414 +0.309714 +0.678362 +0.786605 +0.965044 +0.622373 +0.548779 +0.220500 +0.035788 +0.195169 +0.478571 +0.426194 +0.403373 +0.409480 +0.172987 +0.404207 +0.904661 +0.115037 +0.504070 +0.287427 +0.889773 +0.820204 +0.709336 +0.790382 +0.864470 +0.480742 +0.560685 +0.559159 +0.953069 +0.574995 +0.853541 +0.948057 +0.229326 +-0.385363 +0.221977 +0.891396 +0.316437 +0.731850 +0.127060 +0.315536 +0.131253 +0.841784 +0.265022 +0.017983 +0.283500 +0.702276 +-0.141995 +0.803805 +0.151787 +0.866149 +-12.226357 +0.235397 +0.600794 +0.860429 +0.723646 +0.957428 +0.522766 +-0.323759 +0.708723 +0.958520 +0.882567 +0.946578 +0.982846 +0.359013 +0.650363 +0.854707 +-2.631863 +0.768952 +0.733164 +0.873306 +0.804025 +0.738886 +0.497329 +0.933571 +0.952051 +0.850586 +0.928834 +0.360420 +0.178430 +-2.782479 +0.702297 +0.913076 +0.659944 +0.849273 +0.954238 +0.375699 +0.910203 +0.476850 +0.725994 +0.840646 +0.900940 +0.945331 +0.848028 +0.303416 +0.898676 +0.890805 +0.918748 +0.547219 +0.842702 +0.842988 +0.905757 +0.547832 +0.690041 +0.758754 +0.630983 +0.925885 +0.358425 +0.591337 +0.416531 +0.699998 +0.692864 +0.552370 +0.390475 +0.331421 +0.267878 +0.945505 +0.593004 +0.672112 +0.908519 +0.197784 +0.434996 +0.502198 +0.898188 +0.964851 +0.507840 +0.482904 +0.849534 +0.656240 +0.072422 +0.797099 +-0.088398 +0.940486 +0.391883 +0.838170 +0.837117 +0.417368 +0.488740 +0.920825 +0.845348 +0.644627 +0.996977 +0.429147 +0.876486 +0.544019 +0.957247 +0.958458 +0.718463 +0.933417 +0.801748 +0.913630 +0.431216 +0.356848 +0.369538 +0.708459 +0.435333 +0.413191 +0.557947 +0.761992 +0.729569 +0.237473 +0.728102 +0.488044 +0.461474 +0.305589 +0.556595 +0.537137 +0.445470 +0.841774 +0.934472 +0.692176 +0.485628 +-0.155272 +0.621497 +0.351299 +0.729423 +0.552395 +0.354514 +-7.000663 +0.135439 +0.274510 +0.066310 +0.215213 +0.408794 +0.961864 +0.740734 +0.372334 +0.117429 +0.180530 +0.985536 +0.048457 +0.995691 +0.162694 +0.331224 +0.184705 +0.148760 +0.155521 +0.909699 +0.163367 +0.191897 +0.172431 +0.746725 +0.588837 +0.603958 +0.990033 +0.419429 +0.853875 +0.338587 +0.788574 +0.981184 +0.863749 +0.678011 +0.982611 +0.972093 +0.414490 +0.864015 +0.745289 +0.760347 +0.918391 +0.987139 +0.613001 +0.057492 +-0.194237 +-17.414212 +0.557873 +-0.543230 +0.842048 +0.885854 +0.828294 +0.712180 +0.801069 +0.851232 +0.410841 +0.612378 +0.887196 +0.754656 +0.797377 +0.181891 +0.841415 +0.056414 +0.570733 +0.536438 +0.234999 +0.071392 +0.351059 +0.086995 +0.250891 +0.379684 +0.208009 +0.768173 +0.529909 +0.424817 +0.310553 +0.219838 +0.060003 +0.782763 +0.915658 +0.657502 +0.904604 +0.725388 +-18.808026 +0.382196 +0.592172 +0.852187 +0.445186 +0.871360 +0.806983 +0.974639 +0.908755 +0.961018 +0.597664 +0.188490 +0.395229 +0.081086 +0.775378 +0.927921 +0.454306 +0.801495 +0.559047 +0.383994 +0.425778 +0.777723 +0.681445 +0.785347 +0.998535 +0.835061 +0.916711 +0.690918 +0.863198 +0.719060 +0.654356 +0.627214 +0.885980 +0.843426 +0.618335 +0.740934 +0.918887 +0.922408 +0.748220 +0.682043 +-0.316210 +0.259730 +0.809937 +0.421837 +0.949554 +0.698093 +0.887799 +0.917578 +0.845714 +0.416946 +0.926721 +0.809138 +0.844638 +0.927575 +0.871306 +0.840905 +0.889304 +0.929450 +0.610846 +0.922725 +0.677497 +0.919358 +0.922287 +0.971012 +0.429628 +0.373818 +0.836146 +0.892704 +0.791139 +0.617609 +0.894401 +0.659551 +-0.331783 +0.540010 +0.542059 +0.849056 +0.285219 +-0.269128 +0.399116 +0.843328 +0.055319 +0.843745 +0.904735 +0.890301 +0.905704 +0.497744 +-0.150873 +0.550990 +0.596499 +0.873007 +0.518161 +0.978121 +0.552410 +0.377718 +0.898452 +0.525953 +0.735624 +0.808066 +0.561760 +0.602214 +0.507006 +-0.055636 +0.891087 +0.969437 +0.425121 +0.500070 +0.453393 +0.836687 +0.329396 +0.963573 +0.055765 +0.519812 +0.507732 +0.842012 +0.295221 +0.776309 +0.797486 +0.843401 +0.537477 +0.552596 +-0.204698 +0.802662 +0.066529 +-0.028258 +0.702779 +0.831339 +0.572618 +0.530670 +-0.234571 +0.541390 +-0.218463 +0.524204 +0.505256 +0.214101 +0.242785 +0.131939 +0.564538 +0.522988 +0.239090 +0.156496 +0.387735 +0.810526 +0.585484 +0.756430 +0.121430 +0.639212 +0.589506 +0.319278 +0.368923 +0.617385 +0.160392 +0.609237 +0.534831 +0.447669 +-2.451898 +0.326691 +0.062878 +0.385643 +-7.441863 +0.054162 +0.924548 +0.150231 +0.270402 +0.960945 +0.894284 +0.890808 +0.506770 +0.761652 +-0.063724 +0.994748 +0.847058 +0.705103 +0.648265 +0.333855 +0.446789 +-0.128116 +0.669872 +0.370911 +0.582530 +0.485900 +0.728697 +0.402697 +0.543214 +0.714852 +0.888599 +0.271184 +-0.058296 +0.556472 +0.349600 +0.694392 +0.464086 +0.076231 +0.476995 +0.206998 +0.007191 +0.739983 +0.433671 +0.657802 +0.650128 +0.493354 +0.376458 +0.588552 +0.719433 +0.913893 +0.407969 +-0.648211 +0.365926 +0.643996 +-1.170947 +0.749303 +0.889739 +0.713660 +0.613494 +0.728814 +-0.297545 +-0.593114 +0.370206 +0.833481 +0.464718 +-0.175199 +-0.258605 +0.534039 +0.859622 +0.764106 +0.422930 +0.281826 +0.480151 +0.415303 +0.637964 +0.620001 +0.738526 +-0.289576 +0.880630 +0.450874 +0.975034 +0.756076 +-0.211666 +0.874485 +0.902193 +0.699752 +0.851507 +0.509743 +0.989871 +0.279857 +0.618184 +0.594455 +0.951707 +0.676040 +0.664361 +0.912896 +0.755871 +0.890070 +0.049480 +-0.103559 +0.851023 +0.000799 +0.745473 +0.694668 +0.733098 +0.899426 +0.994231 +-0.108098 +0.709324 +0.572263 +0.541012 +0.626261 +0.881562 +0.720705 +0.956594 +0.564986 +0.845261 +0.589038 +0.975265 +0.748305 +-1.877303 +0.441850 +0.124657 +0.531932 +0.766470 +0.487377 +0.768118 +0.699915 +0.801047 +0.481740 +0.820742 +-0.013770 +0.364303 +0.084724 +0.249241 +0.254963 +0.109320 +0.733052 +0.855183 +0.430305 +0.444047 +0.733443 +0.483485 +0.487031 +0.092037 +0.699159 +0.247469 +0.309385 +0.020403 +0.585040 +0.998169 +0.397011 +0.466687 +0.512697 +0.625273 +0.338708 +0.937704 +0.742975 +0.228006 +0.126616 +0.519667 +0.326811 +0.615860 +0.443599 +0.546034 +0.857134 +-0.186518 +0.160315 +0.328380 +-0.199878 +0.619874 +0.366496 +0.074843 +-0.028369 +0.451223 +0.624115 +0.089616 +0.794994 +0.933599 +0.837098 +0.894560 +0.522548 +0.719703 +0.547522 +0.727547 +0.785473 +0.969453 +0.846304 +0.338434 +0.641322 +0.852459 +0.927274 +0.697269 +-0.092696 +-0.322146 +0.975062 +0.997050 +0.985996 +0.839133 +0.997857 +0.606120 +0.991324 +0.257148 +0.900717 +0.958416 +-0.372585 +0.242225 +-0.165396 +0.194179 +0.560023 +0.750054 +0.746007 +0.733466 +0.010071 +0.377415 +-0.833291 +-0.008856 +0.709411 +0.929809 +0.091436 +0.655024 +0.934232 +0.821834 +0.790943 +0.908210 +0.820486 +0.839647 +0.982321 +0.727015 +0.886057 +0.923275 +0.832478 +0.865630 +0.768933 +0.876020 +0.464690 +0.927078 +0.789059 +0.432913 +0.055784 +0.450221 +0.962245 +-0.018317 +0.556636 +0.916944 +0.912629 +0.885768 +-0.023747 +0.873060 +0.632952 +0.906910 +0.378461 +0.664495 +0.702869 +0.625970 +0.925650 +0.945753 +0.934396 +0.826427 +0.899943 +0.907002 +0.836145 +0.647984 +0.906975 +0.805125 +0.504507 +0.703113 +0.909600 +0.613907 +0.829867 +0.894870 +0.363225 +0.658854 +0.793844 +-0.070699 +0.177187 +0.722054 +0.699374 +0.934529 +0.725381 +0.392642 +0.262573 +0.837988 +0.660765 +0.413728 +0.726870 +0.482550 +0.898670 +0.478363 +0.378267 +0.760218 +0.776576 +0.876734 +0.801910 +-1.214257 +0.772200 +0.817670 +0.538762 +0.437634 +-0.070362 +0.697592 +0.096950 +0.820604 +0.678411 +0.866977 +0.738871 +0.930297 +0.451887 +0.988709 +0.930228 +-0.274155 +0.701255 +0.658825 +-0.264094 +0.450481 +0.685882 +0.820854 +0.353193 +0.879725 +0.659407 +0.410739 +0.702741 +0.150586 +0.926083 +0.697691 +0.880289 +0.694878 +0.264081 +0.806708 +0.513793 +0.649890 +0.399445 +0.506060 +0.494494 +0.513608 +0.841163 +0.244978 +0.494302 +0.487568 +0.385253 +0.556502 +0.424745 +0.347404 +0.517304 +0.890668 +-0.106331 +0.845851 +0.947906 +0.815829 +0.584359 +0.758723 +0.739892 +0.888594 +0.928322 +0.756341 +0.367739 +0.871921 +0.834873 +0.887729 +0.806805 +0.755836 +0.932639 +0.472198 +0.984576 +0.909848 +0.407465 +0.854320 +0.559513 +0.732621 +0.537602 +0.593223 +0.607763 +0.696018 +-0.349752 +0.348807 +-0.422841 +0.764067 +-0.293707 +-0.244489 +0.585172 +0.556948 +0.853317 +0.353653 +0.398663 +0.754399 +-0.311069 +0.799844 +0.552854 +0.251802 +0.873132 +0.610529 +0.849471 +0.542084 +0.893255 +0.747051 +0.349630 +0.269415 +0.930953 +0.850115 +0.830277 +-0.027361 +0.424011 +0.463294 +0.637885 +0.752582 +0.617056 +-0.192628 +0.724879 +0.468455 +0.808485 +0.823942 +0.480674 +0.890407 +0.783923 +0.138711 +0.311734 +0.447537 +0.192782 +0.425472 +0.333554 +0.585885 +0.243011 +0.770771 +0.754361 +0.647926 +0.284971 +0.648792 +0.861825 +-0.034035 +0.434418 +0.793015 +0.684714 +0.052034 +-0.591225 +0.886948 +0.474900 +0.290832 +0.481938 +0.876184 +0.749414 +0.474859 +0.787902 +0.666107 +0.797671 +-0.101415 +0.833985 +0.114242 +0.927241 +0.791683 +0.308206 +0.409711 +0.802842 +0.923518 +0.727693 +0.858542 +0.806999 +0.761855 +0.586337 +0.256611 +0.797312 +0.326170 +0.820484 +0.748145 +0.375358 +0.578085 +0.908366 +0.430459 +0.727171 +0.841577 +0.781972 +0.661508 +0.241789 +0.990823 +0.860343 +0.365555 +0.400351 +0.622166 +0.602529 +0.905060 +0.648849 +0.421872 +0.059601 +0.200352 +0.212194 +0.475120 +0.306014 +0.490896 +0.770721 +0.198290 +0.774815 +0.080939 +0.553500 +0.887250 +0.410648 +0.730096 +0.992520 +-0.332760 +0.851708 +0.801207 +0.909280 +0.627529 +0.783549 +0.573857 +0.692043 +0.857586 +0.791808 +0.904274 +0.403546 +0.411093 +0.581310 +0.298431 +0.496924 +0.879804 +0.656209 +0.041341 +0.250483 +0.963829 +0.928535 +0.287708 +0.584105 +0.239176 +0.559814 +0.475297 +0.911189 +0.939740 +0.959869 +0.002401 +0.101758 +0.805494 +0.736214 +0.519424 +0.396955 +0.658619 +0.863466 +0.401083 +0.812556 +0.414439 +0.409154 +0.512228 +0.112652 +0.406458 +0.303029 +0.840290 +0.810722 +0.734384 +0.435154 +-1.435972 +0.941236 +0.239865 +0.541462 +0.173858 +0.797542 +0.330473 +0.670502 +0.994006 +0.181452 +0.458664 +0.561496 +0.538511 +0.260757 +0.451928 +0.683437 +0.894458 +0.893526 +0.670482 +0.099246 +0.915261 +0.059732 +0.866310 +0.651830 +0.188738 +0.307064 +0.698057 +0.384346 +0.396224 +0.029556 +0.133783 +0.917088 +0.687118 +0.191319 +-4.815135 +0.812565 +0.548470 +-0.177064 +0.040066 +0.810933 +0.216830 +0.460542 +0.183855 +0.039661 +0.027238 +0.515226 +0.173533 +0.092724 +0.502815 +-301.341823 +0.564897 +0.066212 +0.273412 +0.916175 +0.527909 +0.950802 +0.154778 +0.118248 +0.845441 +0.422376 +0.113276 +0.035471 +0.478978 +0.804576 +0.934429 +0.930000 +0.849259 +0.847204 +0.745500 +0.482800 +0.840641 +0.788167 +0.763797 +0.784696 +0.775893 +0.710974 +0.930076 +0.229046 +0.936585 +0.608673 +0.722092 +0.205970 +0.615211 +0.902997 +-0.219325 +0.847984 +-0.116195 +0.784365 +0.824386 +-0.160515 +0.482189 +0.348618 +0.666834 +0.819118 +0.247340 +0.726906 +0.166121 +0.057387 +-0.074916 +0.831844 +0.606253 +0.482727 +0.598853 +0.670335 +0.787062 +-0.262122 +0.933368 +0.392970 +0.770417 +-0.297637 +0.514675 +0.795749 +0.800964 +0.903781 +-0.224085 +-0.236840 +0.606308 +0.241303 +0.818254 +0.565536 +0.461827 +0.518823 +0.560254 +0.829346 +0.646253 +0.898663 +0.412053 +0.699102 +0.785147 +0.875504 +0.870416 +0.780247 +0.977046 +0.903819 +0.856262 +0.854981 +0.628944 +0.228624 +0.778264 +0.722784 +0.313385 +0.801795 +0.729582 +0.680603 +0.599227 +0.157891 +0.915212 +0.756076 +0.564574 +0.661909 +0.821252 +0.608169 +0.452356 +0.857429 +0.442261 +0.327251 +0.163686 +-0.103323 +-0.305640 +0.784879 +0.475837 +0.586711 +0.384180 +0.249076 +0.484819 +0.697157 +0.182103 +0.446654 +0.315143 +-0.134652 +0.184611 +0.799117 +0.435272 +0.239808 +0.547262 +-0.165235 +0.710105 +0.252514 +0.245863 +0.730114 +-0.272024 +0.618564 +0.616847 +0.453426 +-0.055345 +0.535702 +0.705208 +0.256945 +0.903280 +0.881001 +-0.272408 +0.131949 +0.629046 +-0.224434 +0.640402 +0.780006 +0.930078 +-0.190308 +-0.426348 +0.663665 +0.163245 +0.399408 +0.649307 +0.835130 +0.740551 +0.136909 +0.933267 +0.524368 +0.277270 +0.517373 +0.837790 +0.834966 +0.915527 +0.754295 +0.776081 +0.834648 +0.885536 +0.921275 +0.658353 +0.885109 +0.585240 +0.999199 +0.427248 +0.927169 +0.849114 +0.740841 +0.927028 +0.910756 +0.671861 +0.827511 +0.893525 +0.714940 +0.969585 +0.926390 +0.852724 +-0.159960 +-0.063608 +0.739279 +0.659586 +0.942028 +0.935449 +0.749922 +0.421368 +0.806776 +-0.025967 +0.955125 +0.816532 +0.976397 +0.919816 +0.970052 +0.960191 +0.996092 +0.807760 +0.736440 +0.686070 +0.619528 +0.957251 +0.979984 +0.714196 +0.522210 +0.441251 +0.942760 +0.837326 +0.951015 +0.624678 +0.989820 +0.935438 +0.778761 +0.881024 +0.846331 +0.307967 +0.514413 +0.729939 +0.691345 +0.644446 +0.582872 +0.726153 +0.206293 +0.351967 +0.583794 +0.871210 +0.739187 +0.749972 +0.465134 +0.429402 +0.857754 +0.528294 +0.925663 +0.852563 +0.852490 +0.515021 +0.900703 +0.700867 +0.360903 +0.587693 +0.884995 +0.566969 +0.293590 +0.992068 +0.907652 +0.880714 +0.542508 +0.136641 +0.985736 +0.954978 +0.707447 +0.940967 +0.334500 +0.893821 +0.564183 +0.907316 +0.831852 +0.719776 +0.925697 +0.727416 +0.376446 +0.417139 +0.624175 +0.435566 +0.327622 +0.472302 +0.771051 +0.186432 +0.792875 +0.941129 +0.719872 +0.746650 +0.901820 +0.547546 +0.871009 +0.387329 +0.895107 +0.747041 +0.329049 +-0.362699 +0.975215 +0.719675 +0.437609 +0.284005 +0.565175 +0.475846 +0.707053 +0.796982 +0.775004 +-0.139302 +-0.200830 +0.696842 +0.817055 +0.553002 +0.234175 +0.303145 +0.154336 +0.004894 +0.799134 +-0.933973 +0.352002 +-0.236173 +0.422293 +0.868184 +-0.126875 +-0.395614 +0.874337 +0.864252 +0.734205 +0.377668 +0.008481 +0.586458 +0.910957 +0.030174 +0.765004 +0.183906 +0.873772 +0.788748 +0.780071 +0.311691 +0.651482 +0.808737 +0.344907 +0.624843 +0.764217 +0.463829 +0.439648 +0.328142 +0.648042 +0.865699 +0.719222 +0.916757 +-0.176486 +0.920039 +0.821027 +0.741470 +0.498942 +0.355456 +0.208085 +0.809647 +0.859900 +0.760127 +0.930007 +0.775992 +0.967507 +0.352603 +0.779270 +0.729000 +0.255410 +0.935231 +0.536981 +0.424918 +0.891490 +0.952094 +0.887573 +0.716795 +0.905893 +0.048610 +0.728077 +-0.158365 +0.962243 +0.797956 +0.063970 +0.639727 +0.225114 +0.428428 +0.808189 +0.328943 +0.846181 +0.664868 +0.604991 +0.620487 +0.953779 +0.882886 +0.840275 +0.572210 +0.278502 +0.620111 +0.887705 +0.485409 +0.892089 +-0.447986 +0.736496 +0.494296 +0.487231 +0.747113 +0.986415 +0.962874 +0.288397 +0.317116 +0.823590 +0.435878 +-0.208893 +0.925197 +0.111432 +0.915317 +0.375999 +0.882627 +0.405475 +0.846503 +0.167690 +0.577122 +0.751062 +0.918755 +0.759280 +0.104235 +0.762899 +0.386118 +0.011930 +0.895262 +0.841971 +0.710354 +0.600795 +0.334766 +0.061066 +0.882368 +0.746057 +0.374969 +0.893979 +0.589269 +0.281689 +0.584620 +0.461657 +0.564002 +0.345494 +0.896966 +0.794225 +0.727843 +0.697328 +0.952149 +0.193569 +0.870886 +0.676250 +0.810076 +0.800398 +0.491585 +0.527924 +0.914429 +0.839492 +0.575773 +0.696526 +0.552593 +0.296364 +-545.390130 +0.837094 +0.606539 +0.970054 +0.958286 +0.961899 +0.717771 +0.963182 +0.253961 +0.814258 +0.933384 +0.501657 +0.976636 +0.743699 +0.957943 +0.196844 +0.873953 +0.897546 +0.638322 +0.295953 +-0.129303 +0.813012 +0.956896 +0.124586 +0.729096 +-0.015517 +0.939737 +-0.044541 +0.399963 +0.461638 +0.923648 +0.552576 +0.862989 +-0.369132 +0.545844 +0.907013 +0.994243 +0.836403 +0.811288 +0.611621 +0.728974 +0.397092 +0.023992 +0.752255 +0.829230 +0.708588 +0.316405 +0.569502 +0.306103 +0.596244 +0.876944 +0.923906 +0.675359 +0.873553 +0.854950 +0.871388 +0.835907 +0.705193 +-0.115317 +0.440490 +0.552972 +0.424976 +0.832341 +0.959662 +0.591439 +0.929721 +0.919117 +0.361885 +0.795327 +0.825225 +0.903374 +0.936581 +0.865161 +0.734586 +0.546309 +0.690549 +0.605802 +0.292090 +0.132833 +0.546865 +0.028854 +0.049119 +0.588860 +-61.514382 +0.336331 +0.881657 +0.855519 +0.530643 +0.993492 +-0.044603 +-0.041902 +0.034408 +0.923876 +0.937352 +0.954704 +0.459780 +0.954582 +0.751520 +0.562448 +0.931724 +0.591144 +0.723535 +-0.466171 +0.629088 +0.640179 +0.820844 +0.808374 +0.883271 +0.471449 +0.605291 +-0.358607 +0.556641 +0.645899 +0.191159 +0.442435 +0.867939 +0.142463 +0.887342 +0.455866 +0.587775 +-1.181308 +-0.066824 +0.562103 +-0.025753 +0.337312 +0.033896 +0.271584 +-0.016467 +0.845771 +-0.229787 +0.930133 +0.323141 +0.653998 +0.392938 +0.469390 +0.595912 +-0.160374 +0.325874 +0.846430 +0.629535 +0.885982 +0.491606 +0.894356 +0.346356 +0.503364 +0.897856 +0.752048 +0.845567 +0.723008 +0.623936 +0.920134 +0.743891 +-28.500712 +0.056730 +0.146608 +0.305852 +0.775530 +0.688578 +0.947312 +0.602444 +0.673236 +0.062360 +0.876165 +0.492042 +0.418465 +0.996664 +0.128861 +0.831535 +-23.913627 +0.979404 +0.051814 +0.968241 +0.570054 +0.999674 +0.913782 +0.257156 +0.089187 +0.623860 +0.498459 +0.459013 +0.641779 +0.686839 +0.314882 +0.815829 +0.363651 +0.402148 +0.595372 +0.224190 +0.529488 +0.219428 +0.467953 +0.301937 +0.606667 +0.266138 +0.886910 +0.568527 +0.977136 +0.480475 +0.343682 +0.274820 +0.018141 +0.246307 +0.504315 +0.334606 +0.367562 +0.641565 +-0.973306 +0.983767 +0.114039 +0.422316 +0.384501 +0.459684 +0.262854 +0.010962 +0.912179 +0.478674 +0.502198 +0.734817 +0.607571 +0.528964 +0.372252 +0.172868 +0.695935 +0.859343 +0.954910 +0.523055 +0.033830 +0.267780 +0.920847 +0.775782 +0.766121 +0.536909 +0.370032 +0.416505 +0.423145 +0.724546 +0.562173 +0.521192 +0.783843 +0.571087 +0.488665 +0.791012 +0.463848 +0.770038 +0.731523 +0.943422 +0.436982 +0.862600 +0.344712 +0.908563 +0.766419 +0.284078 +0.782443 +0.864615 +0.698552 +0.820302 +0.466507 +0.756628 +0.699551 +0.817200 +0.888642 +0.919634 +-0.308322 +0.535135 +0.939723 +0.932614 +0.672406 +0.848029 +-5.171335 +-45.781591 +-0.556710 +0.738771 +0.803558 +0.520765 +-81.648074 +-62.925390 +0.788035 +0.686295 +0.537025 +0.508178 +0.650072 +0.644606 +0.483399 +0.592416 +0.632619 +0.367980 +0.403541 +0.536283 +0.377220 +0.701511 +0.691141 +0.597240 +0.606044 +0.475470 +0.941592 +0.934532 +0.632216 +0.554856 +0.922241 +0.867412 +0.777857 +0.878870 +0.828180 +0.946245 +0.605158 +0.510060 +0.952975 +0.688720 +0.437206 +0.472656 +0.588816 +0.571265 +0.654621 +0.506186 +0.693876 +0.677119 +0.763930 +0.502830 +0.934415 +0.525106 +0.322103 +0.668441 +0.892688 +0.808244 +0.695601 +-89.045406 +-90.073854 +0.736900 +0.702119 +0.877631 +0.710153 +0.562908 +0.192461 +0.883329 +0.303815 +0.896902 +0.875690 +0.512796 +0.566766 +0.458704 +0.252927 +0.245999 +0.807321 +0.258091 +0.356155 +0.744613 +0.955659 +0.134494 +0.454042 +0.438824 +0.285427 +0.140803 +-0.080337 +0.182444 +0.069400 +0.291517 +0.721858 +0.969087 +0.779898 +0.071159 +0.231902 +0.255973 +0.232202 +0.685595 +0.092365 +0.527747 +0.285324 +0.943109 +0.211624 +0.259515 +0.738111 +0.351965 +0.446356 +0.069944 +0.985439 +0.450608 +0.094736 +0.791816 +-0.850988 +0.154892 +0.550174 +0.345163 +0.037983 +0.349926 +0.275960 +0.795269 +0.016148 +0.689031 +0.159688 +0.878562 +-8.982012 +0.551030 +0.886716 +-0.041694 +0.568146 +-0.291629 +0.740852 +0.941913 +0.906384 +-0.986606 +0.503527 +0.937027 +0.876885 +0.762768 +0.495182 +0.510442 +0.971092 +0.713331 +0.783425 +0.844169 +0.977813 +0.894536 +0.958204 +-0.020977 +0.927846 +0.924545 +0.736999 +0.491238 +0.422145 +0.926995 +-1.397700 +0.716691 +0.855413 +0.529953 +-0.268670 +0.696940 +0.606387 +0.471032 +-0.359320 +0.849852 +0.392675 +-0.064692 +0.548040 +0.136405 +0.868791 +0.826069 +0.904911 +0.083059 +0.367003 +0.712322 +0.929745 +0.891664 +0.912445 +0.692678 +0.088334 +0.440668 +0.239436 +0.678236 +0.444609 +0.584199 +0.882164 +0.249246 +0.136337 +0.737514 +-1.908519 +0.882232 +0.649376 +0.977011 +0.657412 +0.707026 +0.870647 +0.795399 +0.567385 +0.475525 +0.243209 +0.546307 +0.151571 +0.246915 +0.701521 +0.870949 +-1.235249 +0.588379 +0.628576 +0.193536 +0.590103 +-0.160581 +-0.115171 +0.835912 +0.754971 +0.388142 +0.958428 +0.738086 +0.648098 +0.649073 +0.574496 +-0.251491 +0.885256 +0.453357 +0.790358 +0.888807 +0.931294 +-0.838505 +0.307713 +0.795437 +0.640679 +0.751937 +0.152274 +0.071871 +0.986516 +0.891506 +0.336204 +0.353824 +0.055048 +0.615877 +0.067503 +-0.012468 +0.118763 +0.166281 +0.303725 +0.196056 +0.532759 +0.251610 +0.208014 +0.971050 +0.220977 +0.014975 +0.960339 +0.295709 +0.645459 +0.757543 +0.616721 +0.919982 +0.876698 +0.987891 +0.989448 +0.309807 +0.918832 +0.855786 +0.295102 +0.533946 +0.733769 +0.411465 +0.585485 +0.262473 +0.689961 +0.652267 +0.659557 +0.311065 +0.886982 +0.365391 +0.615957 +0.929410 +-0.255109 +0.913436 +0.659167 +0.446737 +0.910819 +-0.174559 +0.876945 +-0.118498 +0.730270 +0.630053 +0.533137 +0.700019 +0.571710 +-0.247043 +0.527911 +0.868750 +0.846638 +0.879583 +0.800496 +0.521756 +0.817914 +0.557615 +0.732734 +0.451452 +0.506528 +0.431077 +0.592689 +0.631322 +0.896755 +0.551485 +0.945485 +0.727471 +0.470017 +-0.117665 +0.942907 +-0.186060 +0.736929 +0.033635 +0.538586 +0.733026 +-0.216269 +0.416555 +-72.925335 +0.843166 +0.770748 +0.247568 +0.335779 +-554.135209 +0.618816 +0.472835 +0.902560 +0.727540 +0.942928 +0.824190 +0.858645 +0.850235 +0.234848 +-105.720241 +0.783872 +0.947629 +0.942985 +0.299647 +0.576317 +0.920181 +0.390002 +0.835010 +0.662053 +0.784971 +0.765554 +0.491439 +0.688982 +0.929492 +0.903312 +0.615632 +0.786326 +0.628935 +0.592500 +0.846148 +0.780194 +0.814778 +0.858285 +0.750094 +0.345142 +0.247493 +0.147729 +0.856299 +0.923914 +0.758523 +0.463812 +0.478552 +0.129151 +0.592385 +0.366965 +0.844804 +0.804750 +0.898271 +0.922908 +0.885445 +0.295479 +-0.302679 +0.282252 +0.863935 +0.458923 +0.637082 +0.694554 +0.819214 +0.734437 +0.749934 +0.335498 +0.237181 +0.346288 +0.689222 +0.397906 +0.561937 +0.299780 +-0.131615 +0.940871 +0.802845 +-0.352451 +0.681736 +0.813965 +0.948251 +0.952345 +0.769579 +0.482186 +0.362003 +0.474623 +0.377846 +0.458799 +0.769789 +0.739481 +0.872269 +0.682670 +0.809599 +0.930880 +0.998660 +0.633883 +0.615454 +0.642399 +0.975975 +-0.050120 +0.943689 +0.845689 +0.915656 +0.820230 +0.628033 +0.549773 +0.700396 +0.669981 +0.491171 +0.779966 +0.077681 +0.924506 +0.528902 +0.587096 +0.344019 +0.229498 +0.937339 +0.725898 +0.937623 +0.937266 +0.703973 +0.603839 +0.937594 +0.414230 +0.684902 +0.936527 +0.490011 +0.918855 +0.911908 +0.218989 +0.809793 +0.334180 +0.278533 +0.936665 +0.736298 +0.947644 +0.965507 +0.640323 +0.739558 +0.483035 +0.266141 +0.607133 +0.817378 +-0.004249 +0.781346 +0.832117 +-0.161924 +0.015213 +0.268405 +0.186888 +-0.207212 +0.063442 +0.308057 +-0.003489 +0.810260 +-0.059277 +0.697018 +0.878896 +0.259750 +0.883627 +0.234482 +0.157344 +0.989445 +0.058871 +0.313847 +0.158110 +0.053453 +0.136887 +0.047440 +0.581882 +0.246080 +0.233752 +0.084601 +0.253557 +0.084444 +0.889271 +0.686453 +0.379527 +0.963722 +0.926260 +0.670152 +0.319823 +0.922993 +0.547165 +0.797207 +0.626892 +0.903608 +0.715901 +0.647971 +0.896408 +0.814796 +0.067378 +0.451485 +0.937938 +0.526884 +0.814444 +0.364174 +0.357239 +0.250609 +0.700043 +0.578082 +0.503426 +0.933481 +0.713735 +0.079964 +0.842413 +0.916128 +0.933231 +0.832016 +0.616092 +0.879633 +0.211832 +0.619909 +0.550169 +0.744512 +0.531661 +0.169690 +0.448844 +0.552862 +0.334615 +0.589707 +0.529071 +0.262922 +0.910553 +0.643486 +0.399707 +0.908626 +0.681611 +0.985381 +0.901193 +0.817539 +0.984867 +0.529314 +0.849165 +0.635730 +0.732828 +0.933687 +0.942077 +0.805188 +0.004259 +-0.369675 +-0.108726 +0.749563 +0.352875 +0.971039 +0.293314 +0.763200 +0.941458 +0.453166 +0.948670 +0.945845 +0.790769 +0.713301 +0.896179 +0.739737 +0.748578 +0.946037 +0.647485 +0.612568 +0.740404 +0.299003 +0.923775 +0.523079 +0.506560 +0.514636 +0.811526 +0.887512 +0.520217 +0.948196 +0.732691 +0.841098 +0.692171 +0.630941 +0.481346 +0.156445 +0.798434 +0.776611 +0.265251 +0.252848 +0.774069 +0.843844 +0.822006 +0.788257 +0.563769 +0.410778 +0.405189 +0.324092 +0.712152 +0.213560 +0.523702 +0.579210 +0.823761 +0.251079 +0.915727 +0.891319 +0.396400 +0.845851 +0.611751 +0.044156 +0.798785 +-0.663325 +0.632624 +0.844918 +0.257736 +0.002511 +0.785414 +0.989501 +0.960231 +0.995428 +0.654687 +0.779783 +0.841557 +0.859440 +0.891100 +0.469263 +-0.246002 +0.756658 +0.620929 +0.992364 +0.076562 +0.518857 +0.757044 +0.802235 +0.706713 +0.892446 +0.430818 +0.873302 +0.736215 +0.998480 +0.221187 +-0.030486 +0.725675 +0.348652 +-0.545619 +0.889993 +0.264934 +0.879058 +0.788375 +0.462389 +0.704957 +0.526137 +0.631714 +0.907631 +0.365549 +0.653895 +0.314495 +0.448483 +0.694691 +0.878344 +0.859774 +0.865894 +0.441601 +0.213363 +0.656125 +0.813542 +0.895185 +0.856988 +0.678097 +0.329775 +0.521980 +0.706593 +0.916152 +0.867764 +0.570144 +0.264523 +0.586100 +0.845662 +0.564918 +0.813547 +0.884454 +0.927928 +0.776777 +0.497892 +0.421253 +0.400612 +0.459570 +0.638335 +0.542718 +0.831673 +0.686562 +0.801950 +0.959550 +0.905006 +0.504783 +0.299524 +0.650166 +0.899692 +0.295717 +0.882222 +0.570507 +0.602425 +0.597215 +0.549076 +0.212466 +0.639423 +0.703660 +0.743634 +0.780134 +0.414695 +0.891972 +0.570332 +0.407917 +0.604767 +0.365427 +0.298091 +0.905373 +0.553670 +0.883624 +0.697255 +0.928066 +0.621498 +0.782682 +0.202369 +0.803582 +0.790475 +0.861623 +0.708286 +0.628947 +0.892025 +0.825922 +0.624866 +0.725175 +0.756569 +0.618998 +0.437853 +0.209182 +0.863557 +0.457519 +0.731684 +0.261089 +0.918446 +0.951708 +0.935620 +0.937352 +0.837041 +0.529559 +0.760682 +0.927629 +0.931913 +0.775468 +0.943030 +0.736840 +-0.229634 +0.867732 +0.676998 +0.955481 +0.589304 +0.805884 +0.706284 +0.925809 +0.930829 +0.835865 +-0.172307 +0.000759 +0.258875 +0.834550 +0.417653 +0.253514 +-0.129169 +0.808324 +0.026311 +0.435103 +0.433554 +0.931400 +0.601034 +0.403424 +0.654698 +0.846205 +0.550037 +0.544554 +0.827360 +0.561905 +0.971826 +0.159721 +0.714005 +0.769605 +0.955084 +0.909817 +0.437296 +0.437296 +0.439089 +0.693996 +0.681561 +0.728216 +0.520941 +0.613183 +0.487163 +0.914735 +0.802937 +0.382186 +0.227603 +0.774609 +-0.016647 +0.605948 +0.852160 +0.995112 +0.926146 +0.364896 +0.897412 +0.835063 +0.849006 +-0.293684 +0.580785 +0.177351 +0.318494 +0.905706 +0.742939 +-0.265817 +0.801860 +0.663037 +0.583779 +-0.262558 +0.877041 +0.791064 +0.549461 +0.667211 +-1.068064 +0.812107 +0.823552 +-0.136928 +0.788583 +0.858736 +0.682719 +0.894039 +0.416644 +0.815276 +0.577336 +0.688374 +0.935943 +0.920536 +0.822327 +0.468325 +0.853469 +0.613388 +0.753696 +0.779472 +0.360673 +0.409403 +0.896664 +0.730859 +0.292956 +0.365744 +0.683181 +0.853608 +0.724069 +0.979941 +-10.708910 +0.530517 +0.316722 +0.809814 +0.663133 +-0.679511 +0.336681 +0.801734 +0.989908 +-0.717183 +0.867887 +0.715412 +0.887341 +0.844574 +0.155589 +0.238003 +0.335157 +0.391330 +0.902886 +0.242857 +0.033021 +0.519455 +0.372631 +0.227729 +0.230261 +0.147889 +0.780566 +-223.441105 +0.913027 +0.957998 +0.945134 +0.111770 +0.114593 +0.754893 +0.859117 +0.586494 +0.933041 +0.709267 +0.251733 +0.749259 +0.929220 +0.846462 +0.395192 +0.379597 +0.529884 +0.786071 +0.471579 +0.621965 +0.845917 +0.483449 +0.682092 +0.381647 +0.376798 +0.933147 +0.720453 +0.756127 +0.179310 +0.764622 +0.195778 +0.721946 +0.860448 +0.686152 +0.057078 +0.222684 +0.514181 +0.729483 +0.826152 +0.619243 +0.941247 +0.376441 +0.536952 +0.722145 +0.369395 +0.802542 +0.745978 +0.654687 +0.910502 +0.708331 +0.778466 +0.773696 +0.234029 +0.925364 +0.804792 +0.813801 +0.303951 +0.868211 +0.883239 +0.931874 +0.568869 +0.768878 +0.814359 +0.279646 +0.727806 +-0.156455 +-0.277901 +0.652706 +0.853028 +0.963941 +0.681568 +-0.156617 +0.717406 +0.758779 +0.728841 +0.475752 +0.831798 +0.509099 +0.785735 +0.770827 +-0.304705 +0.526192 +0.231938 +0.803424 +0.495681 +0.840772 +0.854151 +0.841880 +0.586447 +-8.353412 +0.700173 +0.538340 +0.841848 +0.922306 +0.836231 +0.692245 +0.685162 +0.706215 +-0.232258 +0.841133 +0.766274 +-0.188194 +0.723902 +0.525944 +0.196485 +0.875093 +0.742846 +0.568020 +0.842310 +0.836379 +0.816253 +0.531068 +0.942963 +0.418497 +0.490379 +0.884829 +0.326537 +0.846281 +0.897734 +0.635729 +0.876020 +0.867575 +0.887260 +0.710753 +0.724960 +0.863843 +0.865281 +0.810344 +0.672381 +0.799023 +0.796364 +0.703991 +0.559502 +0.937043 +0.643211 +0.700581 +0.830715 +0.018296 +0.431371 +0.525251 +0.662781 +0.408279 +0.771934 +0.860641 +0.527015 +0.667629 +0.933578 +0.841323 +0.529447 +0.931967 +0.338219 +0.511542 +0.968263 +0.778676 +0.452597 +0.787004 +0.206624 +0.805719 +0.933056 +0.417297 +0.481138 +-0.011599 +-0.094052 +0.930724 +0.578893 +0.609040 +0.618188 +0.688685 +0.914533 +0.777365 +0.218665 +0.678989 +0.116624 +0.520303 +0.846376 +0.846376 +0.564587 +0.811997 +0.876507 +0.447754 +0.617216 +0.809894 +0.052371 +0.414500 +0.789130 +0.891151 +0.245913 +0.921140 +0.836566 +0.669475 +0.772474 +0.829736 +0.782947 +0.433945 +0.426808 +0.669241 +0.607816 +0.886719 +0.600940 +0.575765 +0.507862 +0.845362 +0.852471 +0.827902 +0.708350 +0.461395 +0.719778 +0.562411 +0.490173 +0.704806 +0.811587 +0.802957 +0.894326 +0.856110 +0.498170 +0.628187 +0.133163 +0.590133 +0.312800 +0.709948 +-0.430806 +0.147515 +0.623267 +0.228394 +0.600080 +0.902366 +0.134511 +0.512862 +-0.116866 +-0.532319 +0.721900 +-0.443775 +0.893879 +0.500902 +0.664134 +0.439056 +0.525407 +0.844361 +0.297043 +0.842307 +0.655017 +0.477816 +0.575830 +0.636990 +0.657781 +0.990880 +0.729031 +0.775509 +0.643734 +0.760902 +0.847477 +0.787693 +0.355855 +0.496909 +0.933300 +0.710726 +0.715117 +0.256345 +0.689221 +0.374751 +0.921434 +0.463543 +0.857355 +0.659909 +0.258896 +0.743806 +0.350900 +0.265871 +0.657107 +0.528495 +-1.082871 +0.721617 +0.468946 +0.991824 +0.591818 +-225.474560 +0.656002 +0.334572 +0.463279 +0.752697 +0.493768 +0.892946 +0.731370 +0.502138 +0.737706 +0.803862 +0.416892 +0.532803 +0.375581 +0.354862 +0.727538 +0.200392 +0.385552 +0.735809 +0.629822 +0.518837 +0.395033 +0.561783 +0.911834 +0.620269 +0.962214 +0.735004 +0.925922 +0.934019 +0.962509 +0.443896 +0.515862 +0.892720 +0.946012 +0.198005 +0.635088 +0.026784 +0.333381 +0.431833 +0.643007 +0.649499 +0.868585 +0.574881 +0.859686 +0.721761 +0.789385 +0.735659 +0.858135 +0.931118 +0.728388 +0.773624 +0.477757 +0.342935 +0.744558 +0.206714 +0.037633 +0.325913 +0.480708 +0.735239 +0.502562 +0.340105 +0.573559 +0.218011 +0.329972 +0.826096 +0.710535 +0.822595 +0.847139 +0.353150 +0.980087 +0.913443 +0.497689 +0.789180 +0.869983 +0.541818 +0.496251 +0.449890 +0.598061 +0.621110 +0.385119 +0.082839 +0.815004 +0.390599 +0.890468 +0.929336 +0.885951 +0.634418 +0.910095 +0.610413 +0.770535 +0.888566 +0.929284 +0.404588 +0.360488 +0.726939 +0.856546 +0.556006 +0.926421 +0.494839 +0.423931 +0.348406 +0.829331 +0.533274 +0.895466 +0.409315 +0.558934 +0.927859 +0.596623 +0.933333 +0.686584 +0.681631 +0.982356 +0.893974 +0.280836 +0.724859 +0.905136 +0.707142 +0.732424 +0.049647 +0.947134 +0.947456 +-0.788915 +0.938876 +0.934727 +0.790699 +0.822718 +0.735760 +0.665246 +0.214531 +0.937470 +0.781403 +0.455002 +0.535090 +0.996250 +0.999643 +0.981976 +0.891096 +0.380794 +-36.147549 +0.820759 +0.991931 +0.971167 +0.989385 +0.531536 +0.855371 +0.329555 +0.331320 +0.150877 +0.779126 +0.693107 +0.360182 +0.358138 +0.786361 +0.933664 +0.505499 +0.816600 +0.417971 +0.490615 +0.983812 +0.460306 +0.559731 +0.212594 +-51.145063 +0.049009 +0.631255 +0.008942 +0.978157 +0.890627 +0.439110 +0.089772 +0.365911 +0.642734 +0.891080 +0.533755 +0.804097 +0.833258 +0.647231 +0.737008 +0.546758 +0.922650 +0.436069 +0.868571 +0.622687 +0.600913 +-0.042593 +0.591673 +0.837733 +0.590077 +0.686290 +0.423157 +0.873176 +0.677510 +0.821231 +0.360329 +0.888785 +0.663251 +0.935133 +0.585153 +0.395301 +0.255802 +0.879039 +0.254668 +0.870029 +0.319114 +-0.040613 +0.921670 +0.498614 +0.817979 +0.933405 +0.832321 +0.839468 +0.817859 +0.844522 +0.778828 +0.548425 +0.461361 +0.101546 +0.856888 +0.575002 +0.749517 +0.269355 +0.524215 +0.798096 +0.886313 +0.372160 +0.921256 +0.832310 +0.810979 +0.565711 +-5.370705 +0.759594 +0.289711 +0.741996 +0.644280 +0.829778 +0.711118 +0.666046 +0.068036 +0.427127 +0.680454 +0.571984 +0.797356 +0.854210 +0.584013 +0.527022 +0.830547 +0.473172 +0.175569 +0.396252 +0.881281 +0.860178 +0.323493 +0.663847 +0.627097 +0.731728 +0.811081 +0.844540 +0.745619 +0.937724 +0.894914 +0.586147 +0.875805 +0.780119 +-0.000812 +0.685694 +0.444965 +0.831793 +0.844807 +0.299362 +0.415794 +0.764840 +0.398033 +0.689316 +0.677907 +0.696503 +0.743646 +0.297822 +0.281665 +0.662389 +0.811292 +0.643297 +0.311066 +0.582620 +0.856038 +0.920241 +0.823720 +0.603589 +0.593657 +0.492427 +0.785118 +0.468076 +0.837794 +0.231439 +0.161310 +0.878925 +0.619599 +0.911126 +0.672933 +0.723429 +-0.272911 +0.570863 +0.481275 +0.229610 +-0.256151 +0.611224 +0.403580 +0.814430 +0.756413 +0.871349 +0.693238 +0.762922 +0.866974 +0.476645 +0.476644 +-0.176375 +0.806149 +0.816457 +0.261787 +0.277602 +0.985732 +0.267730 +0.772361 +0.771698 +0.600157 +-0.199985 +-0.643324 +-0.089838 +0.625412 +0.296320 +0.834263 +0.279586 +0.780314 +0.304093 +0.957031 +0.915873 +0.275184 +0.157217 +0.474305 +0.763563 +0.752266 +0.245324 +0.207504 +0.459841 +0.766153 +0.360463 +0.544006 +0.842883 +0.821766 +0.720648 +0.877020 +0.879336 +0.863283 +0.799539 +0.900473 +-0.340654 +0.688032 +0.596761 +0.937774 +0.915194 +0.466683 +0.683574 +0.483699 +0.828124 +0.842825 +0.327023 +0.887964 +0.801666 +0.985243 +0.362172 +-0.033563 +-0.108813 +0.949373 +0.672006 +-0.183223 +0.929926 +0.525729 +0.769211 +0.575855 +0.343480 +0.483718 +0.507497 +0.578089 +0.797116 +0.983794 +0.631320 +0.597017 +0.636419 +0.916867 +0.284516 +0.956072 +0.583213 +0.579682 +-0.028978 +0.790704 +0.908858 +0.818828 +0.705351 +0.427543 +0.864860 +0.911811 +0.563088 +0.910002 +0.847291 +0.912409 +0.871556 +0.856253 +0.883046 +0.984613 +0.233644 +0.744874 +0.996575 +0.732301 +0.995481 +0.860950 +0.892415 +0.987917 +0.677051 +0.614570 +0.140587 +0.270017 +0.916109 +0.720391 +-0.134397 +0.171127 +0.915189 +0.117634 +0.590275 +0.754771 +0.582187 +0.931356 +0.958568 +0.913861 +0.711615 +0.426503 +0.525397 +0.076620 +0.183835 +0.535721 +0.921060 +0.864395 +0.107173 +0.529778 +0.458272 +0.941394 +0.663183 +0.972194 +0.815583 +0.647374 +0.795628 +0.774291 +0.495788 +0.352583 +0.846920 +0.607954 +0.834292 +0.830335 +-0.924405 +0.625594 +0.911854 +0.943391 +0.823746 +0.948129 +0.934463 +0.795275 +0.425442 +0.623757 +0.915319 +0.809705 +0.350465 +0.808647 +0.558192 +0.828978 +0.933614 +0.540924 +0.927188 +0.846020 +0.888410 +0.931469 +0.835252 +0.855554 +0.651363 +0.944069 +0.453063 +-0.046438 +0.655656 +0.788611 +0.743514 +0.917875 +0.931910 +0.543810 +-0.585255 +0.576165 +0.611272 +0.694851 +-0.527143 +0.696823 +0.565696 +0.685919 +0.968367 +0.485108 +0.600214 +0.456730 +0.416603 +0.976373 +-0.192358 +0.351892 +0.352757 +0.349623 +0.627018 +0.694224 +0.177976 +0.720290 +0.211048 +0.259705 +-0.165796 +-0.322431 +0.503684 +0.133095 +-0.264395 +0.874915 +0.324427 +0.049025 +0.233624 +0.944834 +0.893133 +0.847181 +0.637046 +0.934371 +0.630914 +0.789853 +0.943318 +0.796143 +-4.067907 +0.625833 +0.655323 +-0.157192 +0.914680 +0.489365 +0.914155 +0.848218 +0.956495 +0.931013 +-421.173206 +0.902090 +0.615692 +0.960789 +0.815360 +0.475090 +0.923295 +0.825677 +0.594651 +0.846709 +0.089462 +0.558413 +0.936853 +0.002245 +0.752020 +0.364282 +0.790909 +0.680467 +0.691701 +0.756222 +0.682058 +0.343628 +0.865366 +0.855230 +0.908825 +0.725244 +0.583441 +0.370959 +0.646656 +0.788978 +0.347609 +0.884141 +0.321478 +0.674850 +0.634467 +0.949430 +0.905040 +0.839891 +0.710594 +0.573788 +0.814068 +0.910107 +0.401037 +0.313043 +0.887738 +0.839486 +0.429840 +0.726068 +0.548311 +0.353479 +0.974032 +0.830513 +0.091141 +0.498491 +-0.100338 +-0.052988 +0.735254 +0.228217 +0.773088 +0.540341 +0.489383 +0.628297 +0.869588 +0.584765 +0.877841 +0.296649 +0.825168 +0.607459 +0.623773 +0.765675 +0.507879 +0.683643 +0.787426 +0.807062 +0.328650 +0.315274 +0.515013 +0.949311 +-0.287081 +-0.116682 +0.508619 +0.886546 +0.114507 +0.841918 +0.951706 +0.647163 +0.649933 +0.908646 +-0.130019 +0.541486 +0.590928 +0.767872 +-0.248508 +0.499372 +0.654277 +-0.191303 +0.693670 +0.769886 +0.830591 +0.927501 +0.846107 +0.866906 +0.726938 +0.565630 +0.511017 +0.983263 +0.754741 +-0.171668 +0.740120 +-0.007711 +0.198214 +0.599955 +0.141411 +-0.177490 +0.841829 +0.704885 +0.795589 +0.929135 +0.444695 +0.797174 +-0.016253 +0.666499 +-0.102125 +0.058275 +0.797231 +0.604806 +0.729590 +0.584341 +0.503109 +0.206424 +0.193803 +0.455784 +0.780101 +-0.264529 +0.795241 +-0.003629 +-0.264278 +0.976514 +0.875440 +0.765442 +0.412532 +0.697933 +0.881058 +0.797230 +0.931295 +0.883387 +0.343959 +0.460900 +0.305647 +0.585928 +0.548146 +0.606095 +0.569135 +0.454323 +0.633728 +0.931576 +0.777234 +0.605542 +0.733545 +0.850141 +0.529354 +0.841273 +0.870048 +0.607617 +0.659587 +0.505970 +0.628539 +0.872152 +0.814351 +0.848204 +0.940149 +0.708911 +0.492469 +0.917447 +0.604139 +0.505054 +0.711577 +0.914896 +0.856527 +0.940649 +0.919800 +0.897967 +0.788696 +-0.202565 +0.943024 +0.995283 +0.444701 +0.906028 +0.963427 +-0.709494 +0.730525 +0.657031 +0.947708 +0.856961 +0.276457 +0.799167 +0.745234 +-0.214597 +0.018289 +0.642443 +0.743395 +0.810484 +0.678001 +-0.556922 +0.569591 +-0.111510 +0.265880 +0.524500 +0.884457 +-0.109654 +0.729789 +0.450802 +0.061521 +-0.191727 +0.831347 +0.260212 +0.128865 +0.315295 +0.455398 +0.447217 +0.920350 +0.532023 +0.699693 +0.988855 +0.543504 +0.592017 +0.490434 +0.630708 +0.926967 +0.379600 +0.814437 +0.854208 +0.597203 +0.735825 +0.082953 +0.659694 +0.729225 +0.365112 +0.764462 +0.353614 +0.853761 +0.721607 +0.452794 +0.727282 +0.857020 +-0.188329 +0.753971 +0.074422 +0.976827 +0.095301 +0.702486 +0.760860 +0.499605 +0.491149 +0.620632 +0.668057 +0.647484 +0.936049 +0.684176 +0.605295 +0.388300 +0.840407 +0.765590 +0.916624 +0.407363 +-0.005182 +0.611437 +0.770172 +0.630000 +0.721376 +0.382817 +0.389121 +0.854589 +0.799761 +0.674559 +0.986504 +0.019742 +0.445912 +0.623244 +0.623854 +-0.402958 +0.287037 +0.956483 +-0.051526 +0.915701 +0.895459 +0.936710 +0.742792 +0.770832 +0.538107 +0.786937 +0.925026 +0.788140 +0.912388 +0.831534 +0.912171 +0.927925 +0.967455 +0.921596 +0.478423 +0.911666 +0.803902 +0.825823 +0.909700 +0.808193 +0.931681 +0.869484 +0.930540 +0.915788 +-0.027205 +0.514111 +0.633040 +0.781904 +0.781066 +0.603933 +0.743692 +0.743478 +0.850886 +0.438662 +0.903421 +0.886784 +0.673074 +0.862931 +0.938149 +0.701102 +0.721375 +0.902665 +0.163520 +0.529725 +0.185318 +0.620859 +0.939247 +0.547079 +0.856273 +0.933545 +0.951825 +0.417678 +0.488032 +0.581811 +0.813946 +0.058059 +0.431432 +0.902913 +0.938962 +0.625070 +0.901662 +0.019728 +0.857409 +0.503144 +0.845859 +0.454416 +0.775120 +0.798495 +0.735438 +0.891995 +0.925011 +0.790515 +0.881179 +0.753178 +0.428225 +0.631080 +0.944897 +0.911302 +0.969749 +0.259795 +0.762670 +0.682030 +0.996019 +0.465885 +0.842476 +-1.901973 +0.818802 +0.929601 +0.771776 +0.632858 +0.337773 +0.697662 +0.300210 +0.731276 +-0.185132 +0.686982 +0.921232 +0.262318 +0.737595 +0.840997 +0.868791 +0.325352 +0.561252 +0.686499 +0.822825 +0.884253 +0.816679 +0.397870 +0.813941 +0.504125 +0.452785 +0.777990 +0.433858 +0.615408 +0.037808 +0.765849 +0.823871 +0.693306 +0.803654 +0.931330 +0.891225 +0.603367 +0.207635 +0.718778 +0.370090 +0.880873 +0.561132 +-0.202614 +0.699717 +0.769055 +0.232061 +0.809506 +0.644278 +0.866145 +-0.277855 +0.577358 +0.938804 +0.918959 +0.063839 +0.571685 +0.893980 +0.863416 +0.699030 +-0.048117 +0.915843 +0.565298 +0.662422 +0.612500 +0.605865 +0.134115 +0.694234 +0.032411 +0.337638 +0.117997 +0.318371 +0.651945 +0.392916 +0.593370 +0.499684 +0.821945 +0.943223 +0.651654 +0.673472 +0.686852 +0.633333 +0.679378 +0.038028 +0.532315 +0.537342 +0.724280 +0.166403 +-0.000938 +0.592053 +0.876427 +0.753989 +0.503195 +0.819745 +0.776125 +0.631786 +0.667171 +0.858520 +0.962435 +-0.431946 +0.931490 +-0.251262 +0.947623 +0.744163 +0.385203 +0.110630 +0.595851 +0.522476 +-0.361626 +-0.120623 +0.272354 +-0.227399 +0.921870 +0.403014 +-0.079541 +0.733002 +0.410326 +0.246386 +0.809104 +-0.219229 +0.716009 +0.567215 +0.600529 +0.241531 +0.728090 +0.307294 +0.654045 +0.277357 +0.033933 +0.779709 +0.916100 +-0.283005 +0.473499 +0.427407 +0.160656 +0.735507 +0.521297 +0.854639 +0.307921 +0.868121 +0.655736 +0.224111 +0.132777 +0.832521 +0.816595 +0.857964 +0.859688 +0.513527 +0.592385 +0.681063 +0.932079 +0.302910 +0.589212 +0.724583 +0.947250 +0.934407 +0.826845 +0.748186 +0.937117 +0.728968 +0.720775 +0.949658 +0.807589 +0.589797 +0.682690 +0.840250 +0.737170 +0.773312 +0.587961 +0.889023 +0.360104 +0.808071 +0.799544 +0.603108 +0.784018 +0.568690 +0.536950 +0.742501 +0.815598 +0.942256 +0.576830 +0.735735 +0.699542 +0.797167 +0.644579 +0.689070 +0.420881 +0.774302 +0.797344 +0.720053 +0.868404 +0.898700 +0.899964 +0.581958 +0.709278 +0.568218 +0.812298 +0.924880 +0.810197 +0.804747 +0.263761 +0.870791 +0.608447 +0.860403 +0.338820 +0.809473 +0.680791 +0.751986 +0.758822 +0.776189 +0.729428 +0.685911 +0.705258 +0.827196 +0.682584 +0.592125 +0.633806 +0.924554 +0.732995 +0.325095 +0.348306 +0.703374 +0.760916 +0.762379 +0.741210 +0.614056 +0.727220 +0.605791 +0.680159 +0.653890 +0.731500 +0.201156 +0.958132 +0.899558 +0.757519 +0.808784 +0.603104 +0.659548 +-0.161069 +0.224363 +0.620775 +-0.498357 +0.611646 +0.732967 +0.916256 +-0.581185 +-0.295514 +0.679420 +0.782466 +0.020430 +-0.483699 +0.937255 +0.000193 +0.872894 +0.562703 +0.671560 +0.886865 +0.598280 +0.414701 +0.793374 +0.966227 +0.614620 +0.998868 +0.815236 +0.780518 +0.930546 +0.547656 +-0.074666 +0.866695 +0.540150 +-0.071549 +0.560014 +-8.048373 +0.031998 +0.848748 +0.468761 +0.446901 +0.712332 +0.741974 +0.850208 +0.443853 +0.557277 +0.730199 +0.882013 +0.978205 +0.889262 +0.903796 +0.933861 +0.700228 +0.648114 +0.883954 +0.652233 +0.819804 +0.597351 +0.867321 +0.646393 +0.871828 +0.847072 +0.611236 +0.888148 +0.886043 +0.663452 +-0.147131 +0.553468 +0.524134 +0.634330 +0.822393 +-0.516512 +0.577337 +0.856682 +0.860369 +0.825350 +0.948619 +0.774848 +0.938173 +0.848765 +0.883001 +0.683032 +0.723576 +0.834829 +-0.520332 +0.855070 +0.941534 +0.675863 +0.611522 +-0.106315 +0.984021 +0.716144 +-0.093318 +-0.212843 +0.841697 +0.516965 +0.524867 +0.633199 +0.137216 +0.303360 +0.135020 +0.751827 +0.450851 +0.457657 +0.147494 +0.594505 +-0.092727 +0.925373 +0.724980 +0.816249 +0.579207 +0.704392 +0.782484 +0.933427 +0.953541 +0.509325 +0.931914 +0.736737 +0.432122 +0.619376 +0.463830 +0.502729 +0.884963 +0.358684 +0.404125 +0.876676 +0.997508 +0.677746 +0.736213 +0.910611 +0.688592 +0.905750 +0.897791 +0.760787 +0.342698 +0.606391 +0.889164 +0.919828 +0.217589 +-0.220445 +-0.001460 +0.518104 +-0.342270 +0.663101 +0.768566 +-0.326852 +0.880520 +0.693441 +-0.300014 +0.568048 +0.852988 +0.930530 +0.576812 +0.886467 +0.611403 +-0.027700 +0.828221 +-0.303425 +0.632881 +0.237787 +0.790481 +0.899777 +0.664457 +0.662801 +0.451907 +0.184405 +0.693050 +0.869325 +0.687354 +0.856329 +0.935523 +0.959435 +0.970032 +0.939501 +0.479257 +0.920193 +0.718046 +0.976242 +0.817879 +0.690315 +0.447175 +0.877415 +0.561484 +0.883785 +0.278804 +0.012136 +0.931303 +-0.002163 +0.278455 +0.770029 +0.622331 +0.720758 +0.513521 +0.835689 +0.604390 +0.569376 +0.708277 +0.959479 +0.770682 +0.640223 +0.813600 +0.374475 +0.544377 +0.432800 +0.661645 +0.836052 +0.735044 +0.605268 +0.708616 +-0.279715 +0.814133 +0.772273 +0.817111 +0.270584 +0.572230 +0.073709 +0.827310 +0.931337 +0.808668 +0.798103 +0.464554 +0.863521 +0.649371 +0.893875 +0.574960 +0.925846 +0.905049 +0.515068 +0.842180 +0.111186 +0.438044 +0.493934 +0.041955 +0.988527 +0.558891 +0.681696 +0.261930 +0.616811 +-0.059524 +0.414004 +0.751770 +-0.229330 +0.878951 +0.946567 +0.560264 +0.287019 +0.741231 +-0.072253 +0.238414 +0.266623 +0.776725 +0.758716 +0.790343 +0.856708 +0.603113 +0.774575 +0.915669 +0.913705 +0.884935 +0.915487 +0.282204 +0.526552 +0.505800 +0.290495 +0.257208 +0.441911 +0.345196 +0.743269 +0.816210 +0.438598 +0.922175 +0.868402 +0.869625 +0.624112 +0.722288 +0.844380 +0.348411 +0.930564 +0.939830 +0.356379 +0.935149 +0.439105 +0.926938 +0.533754 +0.931655 +0.957713 +0.858244 +0.949630 +0.940196 +0.822897 +0.840448 +0.930000 +0.661588 +0.658605 +0.912950 +0.944975 +0.989201 +0.937849 +0.965468 +0.924502 +0.983414 +0.513933 +0.940622 +-0.056620 +0.831070 +0.892364 +0.855333 +0.872448 +0.760939 +0.612839 +0.807384 +0.172376 +0.949079 +0.859125 +0.384945 +0.824537 +0.839719 +0.871455 +0.609430 +0.442873 +0.593057 +0.403044 +0.932805 +0.696342 +0.788078 +-1.660540 +0.722702 +0.887399 +0.737139 +0.346215 +0.657967 +0.098003 +0.900952 +0.829570 +0.574200 +0.057316 +0.889169 +0.986714 +0.840451 +0.802686 +0.849850 +0.790527 +0.475289 +0.381699 +0.793691 +0.926091 +0.904395 +0.925174 +0.737708 +0.854040 +0.980069 +0.265145 +0.937594 +0.654057 +0.825665 +-0.253092 +0.821228 +0.519476 +0.834814 +0.810279 +0.245244 +0.990134 +0.944508 +-0.720114 +0.514438 +0.861460 +0.268665 +0.759965 +0.367311 +0.761498 +0.787109 +0.729866 +0.799644 +0.561878 +0.933311 +0.569666 +0.637250 +0.644988 +0.938043 +0.825056 +0.510996 +0.891848 +0.533062 +0.810867 +0.278307 +0.334994 +0.779791 +0.302186 +-374.056930 +0.965671 +0.977786 +0.924339 +0.656129 +0.134809 +0.786980 +0.512155 +0.930880 +0.370172 +0.953807 +0.688580 +0.712914 +0.322435 +0.937779 +0.576910 +0.743220 +0.991587 +0.266238 +0.937117 +0.935794 +0.824436 +0.294416 +0.527586 +0.882032 +0.937049 +0.520173 +0.695398 +0.752481 +0.739017 +0.823883 +0.932583 +0.890124 +0.942334 +0.854013 +0.680721 +0.344339 +0.737476 +0.398481 +0.724680 +0.772579 +0.852030 +0.870097 +0.891310 +0.869498 +0.495499 +-0.126287 +0.103770 +-0.100403 +0.707019 +0.496551 +0.877643 +0.856035 +-0.244436 +0.839661 +0.621662 +0.604602 +0.635469 +-0.163399 +0.495930 +0.683511 +0.938197 +0.978194 +0.357500 +0.622558 +-0.293487 +-0.156251 +0.971269 +0.322821 +0.406131 +-0.217493 +0.837178 +-0.087563 +0.400082 +0.839374 +0.839805 +0.741792 +0.342642 +0.656272 +0.541777 +0.750513 +-0.245164 +0.863349 +0.742336 +0.936952 +0.024376 +0.574942 +0.952410 +0.933749 +0.654043 +-0.298463 +-0.162771 +0.872119 +0.947914 +0.947928 +0.750246 +0.732650 +0.597943 +0.439044 +0.490797 +0.975977 +0.845674 +0.971205 +0.882791 +0.552328 +0.971810 +0.919803 +0.863582 +0.919409 +-0.457105 +-0.187760 +0.941052 +0.354745 +-0.336381 +0.938142 +0.582402 +-0.162801 +-0.169084 +0.344875 +0.250304 +0.852221 +0.826865 +-0.335521 +0.950309 +0.523538 +0.877192 +0.694111 +-0.044346 +0.697600 +0.953403 +0.044351 +-4.446839 +0.916309 +0.411817 +0.110299 +0.459343 +-0.017414 +0.886261 +0.801934 +0.683874 +0.526916 +0.579706 +0.800060 +0.909515 +0.706157 +0.905131 +0.898432 +0.835389 +0.561408 +0.610515 +0.665150 +0.380769 +0.417518 +0.429195 +0.412838 +0.244080 +0.168951 +0.345117 +0.230533 +0.080182 +0.855771 +0.683823 +-0.351126 +0.639282 +0.947577 +-0.069296 +0.520181 +0.812337 +0.439045 +0.289148 +0.602517 +0.799955 +0.787896 +0.880904 +0.902629 +0.279212 +0.529231 +0.481898 +0.831596 +0.780749 +0.837461 +0.786668 +-0.772847 +0.619684 +0.106280 +0.320530 +0.561381 +0.925722 +0.885908 +0.056915 +0.655494 +0.786762 +0.734307 +0.776143 +0.311740 +0.721035 +0.380076 +-0.214420 +0.507157 +0.684967 +0.521482 +0.632532 +0.825165 +0.936070 +0.698487 +0.643486 +0.773998 +0.925917 +0.566755 +0.575238 +0.130749 +0.737575 +0.713936 +0.853189 +0.859357 +0.921233 +0.834707 +0.560487 +0.883265 +0.264127 +0.442357 +0.896391 +0.549445 +0.487042 +0.934213 +0.718006 +0.968104 +0.270788 +0.871481 +0.636065 +0.529372 +0.864593 +0.602382 +0.729680 +0.780745 +-0.868173 +-0.122247 +0.744015 +0.925022 +0.668098 +0.749493 +0.733487 +0.750836 +0.858919 +0.755060 +0.866079 +0.782817 +0.801709 +0.743342 +0.700293 +0.564339 +0.870338 +-0.025937 +0.926462 +0.879058 +0.972736 +0.364938 +0.970206 +0.992006 +0.896885 +0.919518 +0.892386 +0.728280 +0.925665 +0.819145 +0.909339 +0.342042 +0.518369 +0.521933 +0.829465 +0.788334 +0.718951 +0.095887 +0.920862 +0.015057 +0.927223 +0.596706 +0.539802 +0.521896 +0.587283 +0.917792 +0.871786 +0.918620 +0.756533 +0.319731 +0.850920 +0.820552 +0.505222 +0.923889 +0.825757 +0.926618 +0.668638 +0.884900 +0.849814 +0.492336 +0.857114 +0.849105 +0.388585 +0.927580 +0.884959 +0.834149 +0.925101 +0.709305 +0.401419 +0.377801 +0.698732 +0.602939 +0.557145 +0.730358 +0.757706 +0.850188 +0.666823 +-0.212599 +0.164489 +0.117796 +0.717014 +0.906581 +0.589497 +-0.015320 +0.264597 +0.655812 +0.542649 +0.460798 +0.428632 +0.655921 +0.566317 +-0.100241 +0.367291 +0.932110 +0.195990 +0.145658 +0.393275 +0.393080 +0.130143 +-274.363922 +0.482573 +0.465361 +0.278399 +0.618210 +0.230380 +0.784824 +0.849431 +0.742410 +0.846245 +-2.247012 +0.491793 +0.765536 +0.416505 +0.955117 +0.345561 +0.494087 +0.925343 +0.909122 +0.399676 +0.269915 +0.705965 +0.727052 +0.222443 +0.921441 +0.107847 +0.414191 +0.788749 +0.733658 +0.659925 +0.917314 +0.616957 +0.657239 +0.032638 +0.562476 +0.741416 +0.764932 +0.935599 +0.925020 +0.052634 +0.744966 +0.822796 +-0.107357 +0.843182 +0.098795 +0.806603 +0.085985 +0.930841 +0.931242 +0.588073 +0.865645 +0.850805 +0.783864 +0.162575 +0.432683 +0.245719 +0.882436 +0.935494 +0.463516 +0.428789 +0.822714 +0.934894 +-0.062746 +0.782317 +0.447260 +0.924439 +0.818205 +0.933266 +0.919221 +0.864015 +0.662583 +0.394540 +0.640541 +0.739525 +0.880162 +-0.183659 +-0.157756 +0.708171 +0.874552 +0.215039 +-0.058103 +0.414153 +0.227293 +-0.071611 +-0.291194 +0.825659 +0.891999 +0.483474 +0.776568 +0.058461 +0.945148 +0.714132 +0.260715 +0.845207 +0.707019 +0.692014 +0.837385 +-0.079825 +0.624728 +0.428103 +0.533387 +0.015177 +0.707203 +0.527134 +0.086962 +0.724864 +0.520121 +0.486573 +0.919170 +0.161524 +0.377196 +0.489564 +0.414632 +-0.149284 +0.479491 +0.692190 +0.513633 +0.411469 +0.427858 +0.858989 +-0.221084 +0.236085 +0.893796 +0.523707 +-0.085551 +0.639289 +0.772370 +0.920210 +0.856024 +0.636182 +0.375065 +0.766885 +0.679941 +0.737209 +0.642528 +0.963176 +0.724917 +0.852166 +0.926196 +0.685238 +0.682587 +0.930262 +0.370091 +0.680436 +0.442414 +0.702647 +0.833591 +0.779033 +0.455790 +0.920877 +0.800814 +0.870444 +0.772862 +0.909860 +0.690981 +0.764823 +0.598135 +0.279470 +0.923590 +0.873053 +0.871056 +0.814359 +0.872178 +0.838800 +0.774484 +0.931253 +0.969837 +0.934054 +0.680348 +0.642483 +0.140938 +0.951107 +0.993807 +0.754601 +0.905524 +0.805695 +0.823156 +0.973372 +0.852717 +0.574328 +0.657211 +0.792181 +0.251163 +0.493713 +0.897381 +0.555820 +0.869869 +0.620137 +-0.068846 +0.031892 +0.464137 +-0.101705 +-0.115503 +0.892301 +0.937258 +0.397188 +0.651448 +0.926455 +-0.138455 +0.869529 +0.723811 +0.805563 +0.740337 +0.569707 +0.694673 +0.843099 +0.094522 +0.448836 +0.934466 +-0.139811 +-0.301814 +0.529497 +-0.149150 +0.016601 +0.259136 +0.520028 +0.564534 +0.593868 +0.391462 +0.569960 +0.844526 +-0.251042 +0.749959 +-0.265727 +0.257581 +0.476548 +0.415771 +0.551063 +0.531407 +0.577861 +0.468104 +-0.230334 +0.534274 +0.601234 +-0.200540 +0.512151 +0.712918 +0.251666 +0.910103 +0.622075 +0.023302 +0.502247 +-0.133475 +0.591495 +-0.315643 +0.944530 +0.824111 +0.479180 +0.850963 +0.620373 +0.753456 +0.895889 +0.895128 +0.878717 +0.737546 +0.608004 +-0.211863 +0.047074 +0.958765 +0.847960 +0.927937 +0.568086 +0.530218 +0.981069 +0.904469 +0.344445 +-0.100485 +0.941859 +0.522684 +0.339148 +0.761474 +0.647884 +0.802426 +0.809350 +0.730179 +0.859617 +0.532164 +0.382022 +0.231767 +0.802375 +0.768013 +0.376931 +0.621050 +0.783996 +0.467883 +0.702884 +0.541885 +0.776810 +0.565039 +0.927490 +0.977143 +0.847509 +0.945176 +0.432620 +0.987759 +0.895268 +0.644178 +0.841702 +0.186800 +0.865876 +0.514905 +0.683580 +0.878664 +0.422699 +0.695421 +0.860741 +0.674256 +-0.162860 +0.800615 +0.935771 +0.622339 +0.469176 +0.502604 +0.617017 +0.621579 +0.940046 +0.175555 +0.575037 +0.393736 +0.898585 +0.969569 +0.992914 +0.939606 +0.647178 +0.902126 +0.627827 +0.956182 +0.940810 +0.394168 +0.896683 +0.922953 +0.743014 +0.653158 +0.767922 +0.500683 +0.723822 +0.457047 +0.360460 +0.943667 +0.616879 +-4.951160 +0.877548 +0.972658 +0.627335 +0.923193 +0.874884 +0.897016 +0.630859 +0.579308 +0.569225 +-0.496337 +0.118787 +0.334689 +0.350819 +0.737713 +-0.352989 +0.239190 +-0.812142 +0.516955 +0.904854 +0.873112 +0.795171 +0.691283 +0.702661 +0.204203 +0.881875 +-0.225354 +0.913383 +0.362065 +0.903331 +0.414521 +0.942473 +0.573566 +0.716575 +0.907108 +0.810346 +0.635316 +0.671605 +0.645022 +0.905516 +0.858770 +0.512511 +0.801220 +0.798237 +-0.278817 +0.931816 +0.666530 +0.668274 +0.517945 +0.882427 +0.218038 +0.627750 +0.902426 +0.864455 +0.837919 +0.982486 +0.967985 +0.409722 +0.501346 +0.670130 +0.187994 +0.764657 +0.771714 +0.643721 +0.844203 +0.671545 +0.773946 +0.923192 +0.710748 +-0.132540 +0.685346 +0.205912 +0.748833 +-0.102900 +0.690330 +0.905043 +0.753186 +0.714620 +0.517219 +0.473343 +-0.551756 +0.612348 +-0.237523 +0.930712 +0.782165 +0.644837 +0.783939 +0.716878 +0.211670 +0.773695 +0.652457 +0.746043 +0.422603 +0.761054 +0.455287 +0.890816 +0.508912 +0.480189 +0.634518 +0.666767 +0.576534 +0.892628 +0.766333 +0.795787 +0.677070 +0.805824 +0.888179 +0.671292 +0.422281 +0.472426 +0.861939 +0.332917 +0.863437 +0.709998 +0.569346 +0.292321 +0.738586 +0.620219 +0.718779 +0.778102 +0.868134 +0.679718 +0.164116 +0.457917 +0.671350 +0.654887 +0.822632 +-0.153812 +0.224137 +0.423038 +0.644282 +0.216818 +0.707552 +0.919006 +0.495690 +0.206828 +-0.168213 +-0.040292 +0.916168 +0.508677 +0.673735 +0.185031 +0.412846 +0.268506 +0.317334 +0.675420 +0.639587 +-0.251881 +0.305718 +0.888219 +0.436874 +0.979540 +0.647840 +0.501114 +0.762950 +0.667587 +0.598198 +0.654777 +0.610024 +0.172305 +0.942630 +0.697766 +0.878210 +0.623953 +0.874085 +-0.059525 +0.540465 +0.032305 +-0.223513 +0.806424 +0.845583 +0.367201 +0.903340 +0.532623 +0.658869 +0.871522 +0.381470 +0.712344 +0.625630 +0.751145 +0.067238 +0.907999 +0.237308 +0.339652 +-0.026803 +0.767944 +0.346320 +0.273011 +0.114642 +0.897029 +0.798533 +0.698646 +0.801393 +0.803220 +0.887319 +0.934363 +0.716407 +0.862556 +-6.077622 +0.561151 +-0.320648 +0.631970 +0.576653 +0.340928 +0.275190 +0.895140 +0.735180 +0.554472 +0.995449 +0.427713 +0.903530 +0.329368 +0.997960 +0.208767 +0.901323 +0.835142 +0.929404 +0.969961 +0.597794 +0.421295 +0.661539 +0.401027 +0.579580 +0.878037 +0.920644 +0.962260 +0.171586 +0.616115 +0.592827 +0.270395 +0.513034 +0.408979 +0.575674 +0.437538 +0.932998 +0.567996 +0.456103 +0.566345 +0.767327 +0.885520 +0.416696 +0.775272 +0.863306 +0.899104 +0.304588 +0.876564 +0.719914 +0.642642 +0.947358 +0.953274 +0.731614 +0.108158 +0.536282 +0.363057 +0.663848 +0.851830 +0.467982 +0.709485 +0.366605 +0.913396 +0.353598 +0.657516 +0.823679 +0.788410 +0.776778 +0.498971 +0.810105 +0.724280 +0.842028 +0.636621 +0.949440 +-254.400475 +0.492638 +0.628643 +0.818961 +-13.150794 +0.581372 +-0.142511 +0.371738 +0.430828 +0.575096 +0.404741 +0.318564 +0.610994 +0.604783 +0.836000 +0.673004 +0.754145 +0.359456 +0.673138 +0.285790 +0.815641 +0.181914 +0.309004 +0.562018 +0.945235 +0.752577 +0.255892 +0.314861 +0.403480 +0.725731 +0.831760 +0.219771 +0.443890 +0.098640 +0.041557 +0.063628 +0.982229 +0.803249 +0.444911 +0.237929 +0.265702 +0.856480 +0.407439 +0.915921 +0.912366 +0.274035 +0.672357 +0.719709 +-34.453989 +0.554413 +-1.661966 +0.529849 +0.978021 +0.384444 +0.341226 +0.934229 +0.879059 +-0.092760 +0.102765 +0.906732 +0.984341 +0.731073 +0.983483 +0.744961 +0.876624 +0.755542 +0.648776 +0.954375 +0.906740 +-2.597954 +0.611927 +0.557063 +0.719793 +0.909747 +0.611708 +0.933560 +0.924966 +0.742915 +0.913950 +0.395708 +0.606383 +0.791223 +0.953471 +0.988216 +0.977684 +0.951334 +0.989865 +0.981678 +0.967957 +0.888524 +0.967957 +0.956100 +0.734741 +0.557644 +0.829820 +0.689589 +0.864307 +0.909707 +0.852099 +0.252576 +0.881568 +0.921380 +0.506572 +0.474374 +0.334700 +0.571354 +0.915817 +0.890810 +0.287986 +0.988654 +0.706370 +0.368434 +-3.362903 +-87.967005 +0.136218 +0.527814 +0.430256 +0.595213 +0.284622 +0.906224 +0.365360 +0.519648 +0.419280 +0.447443 +0.499986 +0.311517 +0.703332 +0.608750 +0.753462 +0.440215 +0.293657 +-2182.390255 +0.924780 +0.912713 +-2263.887402 +0.534680 +0.888725 +0.855585 +0.583521 +0.615438 +0.644596 +0.857970 +0.677903 +0.899663 +0.841473 +0.949571 +0.842656 +0.801176 +0.668328 +0.535160 +0.601221 +0.299425 +0.710562 +0.567104 +0.376792 +0.459144 +0.491071 +0.453199 +0.653142 +0.398610 +0.181224 +0.785846 +0.488145 +0.671043 +0.704640 +0.692172 +-14.684669 +0.575205 +0.630310 +0.271960 +0.329721 +0.306260 +0.858132 +0.336866 +0.293759 +0.544795 +0.906316 +0.892790 +0.883655 +0.914296 +0.763805 +0.973577 +0.564418 +0.923837 +0.234677 +0.235674 +0.721735 +0.441983 +0.385855 +0.836073 +0.250261 +0.216946 +0.185410 +0.793947 +0.512558 +0.565735 +0.654681 +0.454697 +0.924012 +0.772605 +0.651959 +0.354568 +0.636951 +0.327579 +0.900763 +0.862368 +0.906653 +0.589482 +0.673999 +0.932862 +0.730973 +0.278999 +0.914372 +0.798673 +0.931407 +0.593496 +0.538146 +0.934453 +0.144401 +0.656458 +0.615634 +0.935909 +0.820415 +0.509288 +0.824637 +0.255398 +0.447359 +0.441547 +0.548079 +0.526699 +0.390974 +0.709965 +0.825449 +0.724146 +0.769089 +0.870628 +0.775291 +0.629022 +-29.386968 +0.663717 +0.731914 +0.446480 +0.223295 +0.429925 +0.491406 +0.812442 +0.370542 +0.387831 +0.935421 +0.276008 +0.323351 +0.958511 +0.519963 +0.967190 +0.414973 +0.874628 +0.579075 +0.828206 +0.987222 +0.479497 +0.824597 +0.988319 +0.183690 +0.794137 +0.931246 +0.913748 +0.932271 +0.847658 +0.930569 +0.796064 +0.906396 +0.948802 +0.759390 +0.480609 +0.758757 +0.708240 +0.803534 +0.376338 +0.805700 +0.772092 +0.493648 +0.333387 +0.956341 +0.940649 +0.988441 +0.346583 +0.888900 +0.457784 +0.371048 +0.413981 +0.888372 +0.793275 +0.628945 +0.807505 +0.941297 +0.551686 +0.704981 +0.530628 +0.378163 +0.491778 +0.342001 +0.505380 +0.638521 +0.889419 +0.444924 +0.364289 +0.340577 +-87.647037 +0.619488 +0.544632 +0.666439 +0.576443 +0.697382 +0.931281 +0.437116 +0.881390 +0.586032 +0.821708 +0.375102 +0.830048 +0.262052 +0.952098 +0.276611 +0.695099 +0.262097 +0.398622 +0.927463 +0.951814 +0.908102 +0.906984 +0.764188 +0.533369 +0.648571 +0.983138 +0.895200 +0.612236 +0.452858 +0.359604 +0.832062 +0.699348 +0.382938 +0.729394 +0.317000 +0.888129 +0.441893 +0.402449 +0.582726 +0.670587 +0.487138 +0.713540 +0.730406 +0.958553 +0.965545 +0.013679 +0.689627 +0.832173 +-278744.959106 +0.831978 +0.841243 +0.746915 +0.773084 +0.742514 +0.758482 +0.773523 +0.913918 +0.803599 +0.359764 +0.753889 +0.893877 +0.430306 +0.537161 +0.328664 +0.714641 +0.549857 +0.722183 +0.266031 +0.309494 +0.468940 +0.421189 +0.785284 +0.899805 +0.834717 +0.845204 +0.850092 +0.887337 +0.899104 +0.914008 +0.929008 +0.929104 +0.906636 +0.946983 +0.810411 +0.977636 +0.934799 +0.820372 +0.967601 +0.950316 +0.946378 +0.931741 +0.995757 +0.689425 +0.906777 +0.533403 +0.327212 +0.882821 +0.906144 +0.928775 +0.936111 +0.877640 +-0.924322 +0.392813 +0.058505 +0.241199 +0.059317 +0.076050 +0.231566 +0.870855 +0.971295 +0.795128 +0.915131 +0.638558 +0.979956 +0.569708 +0.672187 +0.975172 +0.671400 +0.289016 +0.541901 +0.417474 +0.881037 +0.660172 +0.775839 +0.935627 +0.924770 +0.938980 +0.683439 +0.203983 +0.574590 +0.408098 +-0.023079 +-0.012174 +0.897503 +0.110549 +0.758954 +0.713754 +0.445071 +0.869124 +0.514361 +0.976389 +0.383733 +0.534885 +0.962955 +0.312068 +0.685086 +0.695269 +0.447519 +0.930689 +0.909655 +0.656752 +0.965629 +0.198105 +0.484013 +0.728607 +0.535708 +0.570999 +0.919909 +0.171195 +0.773458 +0.507561 +0.967485 +0.363162 +0.196003 +0.965334 +0.767462 +0.386067 +0.453798 +0.923059 +0.915293 +0.925289 +0.968215 +-2.369396 +0.493010 +0.668124 +0.685055 +0.577299 +0.011621 +0.978129 +0.912418 +0.977925 +0.344462 +0.474469 +0.414145 +0.750006 +0.370959 +0.390680 +0.556363 +0.901440 +0.212649 +0.977746 +0.925165 +0.961751 +0.624308 +0.894799 +0.880983 +0.884240 +0.984859 +0.922048 +0.159441 +0.489476 +0.568556 +0.970787 +0.910824 +0.308255 +0.846377 +0.792168 +-0.071091 +0.768901 +0.809831 +0.728832 +0.888250 +0.140206 +0.602546 +0.140818 +0.870651 +-0.172085 +0.571250 +0.704044 +0.845581 +0.816602 +0.695786 +0.854230 +0.388234 +0.286943 +0.902684 +0.975831 +0.381161 +0.318480 +0.415164 +0.501223 +-3.147906 +0.478223 +0.624273 +0.293142 +0.475771 +-15260.843858 +0.750301 +0.768814 +0.253272 +-0.044246 +0.028915 +0.824525 +0.133847 +0.523030 +0.684531 +0.285806 +0.503085 +0.931641 +0.493753 +0.193376 +0.793454 +0.884412 +0.503699 +0.866868 +0.747715 +0.796498 +0.729988 +0.744943 +0.285993 +0.925818 +0.923668 +0.918494 +0.560349 +0.742422 +0.591853 +0.612331 +0.313286 +0.484394 +0.801149 +0.557518 +0.584527 +0.970865 +0.958407 +0.995206 +0.766819 +0.503680 +0.730669 +0.627918 +0.122967 +-0.834926 +0.353305 +0.351689 +0.233777 +0.615883 +0.224871 +0.393308 +0.841822 +0.400717 +0.872439 +0.073481 +0.075578 +0.081771 +0.127003 +0.144251 +0.058073 +-0.027785 +0.860620 +0.442225 +0.221628 +0.271168 +0.890895 +0.861078 +0.063535 +0.045206 +-0.170011 +-0.089133 +0.254348 +0.732904 +0.060733 +0.015359 +0.555666 +0.632676 +0.959334 +0.917428 +0.991334 +0.993896 +0.770742 +0.395051 +0.400500 +0.507257 +0.522771 +0.826192 +0.575703 +0.464019 +0.834101 +0.394061 +0.803903 +0.631207 +0.440123 +0.409715 +0.425519 +0.378984 +0.633101 +0.819339 +0.751057 +0.767942 +0.766604 +0.893328 +0.766304 +0.512664 +0.351045 +0.891282 +0.641698 +0.780530 +0.617090 +0.403856 +0.883518 +0.736252 +0.741184 +0.874791 +-0.131281 +0.783794 +0.735795 +0.626663 +0.373165 +0.914339 +0.916469 +0.457847 +0.909549 +0.706000 +0.824089 +0.580984 +0.919862 +0.458175 +0.901737 +0.950591 +0.757665 +0.425140 +0.786687 +0.572092 +0.603214 +0.552997 +-42.842542 +0.540680 +-56.024264 +0.607007 +0.250935 +0.738062 +0.766007 +0.891632 +0.926393 +0.962153 +0.999621 +0.960973 +0.790949 +0.375012 +0.838312 +0.308399 +-73.205461 +0.957506 +0.877009 +0.611271 +0.412050 +-77.307430 +0.733633 +0.601685 +0.600947 +0.511748 +0.776905 +0.749971 +0.878358 +0.573150 +0.499106 +0.843337 +0.902815 +0.899250 +0.623714 +0.987345 +0.914036 +0.331751 +0.435320 +0.518261 +0.222754 +0.657498 +0.205398 +0.948647 +-0.412364 +0.931995 +0.952485 +0.921668 +0.914136 +0.957213 +0.494639 +0.810429 +0.685064 +0.986365 +0.839550 +0.289563 +0.469371 +0.207870 +0.074620 +0.207322 +0.790185 +-1.378487 +0.178477 +0.961097 +0.556185 +0.541174 +0.690325 +0.302460 +0.437227 +0.301658 +0.389530 +0.507792 +0.776468 +0.401667 +0.754329 +0.464503 +0.751685 +0.766714 +0.437696 +0.678101 +0.070326 +0.749827 +0.894623 +-87.463561 +-92.025869 +0.653166 +0.765376 +-64.588533 +0.515577 +0.409451 +0.743509 +0.139803 +0.868203 +0.279014 +0.227736 +0.109195 +0.175685 +0.798705 +0.671474 +0.948540 +0.862097 +0.424620 +0.423953 +0.842570 +0.238545 +0.744123 +0.558862 +0.822458 +0.304575 +0.329507 +0.547796 +0.968512 +0.614752 +0.742011 +0.907343 +0.812070 +0.461422 +0.806589 +0.721119 +0.793508 +0.805253 +-2.009924 +0.752058 +0.619569 +0.495646 +0.252367 +0.339115 +0.604717 +0.480490 +0.391322 +0.360189 +0.810146 +0.381953 +0.297506 +0.713539 +0.354734 +0.547859 +0.343019 +0.413125 +0.634204 +0.544035 +0.893281 +0.491004 +0.668817 +0.217382 +0.978759 +0.261239 +0.605592 +0.166891 +0.594181 +0.356041 +0.669452 +-0.252636 +-0.789065 +0.817270 +0.682202 +0.471764 +0.697015 +0.884466 +0.173579 +0.599726 +0.455743 +0.459519 +0.271576 +0.411395 +0.163675 +0.804596 +0.829811 +0.891107 +0.645145 +0.908807 +0.910072 +0.525766 +0.671144 +0.906756 +0.946544 +0.964962 +0.998585 +0.995536 +0.982263 +0.941742 +0.815036 +0.961862 +0.907719 +0.858257 +0.897153 +0.700876 +0.795484 +0.878717 +0.525560 +0.857026 +0.537719 +0.819510 +0.915232 +0.681628 +0.924041 +0.922298 +0.921469 +0.924774 +0.929127 +0.933687 +0.919423 +0.926576 +0.903310 +0.800500 +0.730838 +0.910000 +0.943300 +0.679070 +0.821021 +0.693975 +0.662378 +0.627936 +0.924837 +0.924263 +0.872557 +0.720411 +0.681046 +0.932599 +0.934649 +0.924005 +0.918428 +0.952095 +0.917912 +0.938487 +0.959873 +0.904088 +0.843741 +0.872552 +0.809479 +0.835665 +0.912548 +0.937224 +0.930765 +0.828781 +0.019362 +0.407903 +0.979010 +0.666755 +0.943012 +0.816162 +0.222402 +0.242918 +0.449648 +0.353463 +0.929728 +0.049281 +0.619089 +0.271827 +0.912678 +0.746354 +0.419563 +0.932164 +0.050056 +0.819549 +0.028623 +0.407459 +0.407459 +0.407459 +0.973807 +0.911281 +0.921055 +0.426300 +0.058551 +0.853198 +0.086620 +0.943070 +0.963063 +0.617883 +0.931049 +0.289134 +0.846841 +0.842818 +0.731066 +0.907611 +0.914148 +0.460032 +0.907769 +0.232799 +0.925702 +0.763533 +0.242924 +0.563790 +0.986671 +0.684455 +0.648333 +0.980901 +0.791152 +0.944860 +0.922674 +0.962179 +0.802787 +0.940490 +0.887294 +0.935141 +0.816206 +0.858858 +0.274105 +0.227257 +0.598887 +0.882886 +0.594789 +0.849395 +0.754424 +0.481685 +0.935474 +0.940835 +0.654049 +0.983897 +0.551173 +0.925105 +0.937300 +0.874734 +0.918896 +0.967595 +0.858379 +0.911122 +0.440248 +0.906431 +0.692243 +0.742087 +0.911738 +0.975975 +0.859060 +0.989160 +0.628710 +0.934055 +0.809190 +0.962257 +0.916530 +0.935527 +0.931314 +0.926983 +0.625183 +0.953550 +0.930140 +0.511345 +0.635266 +0.999909 +0.222678 +0.195813 +0.274561 +-0.048083 +0.664327 +-0.048519 +0.158467 +0.201177 +0.352813 +0.140486 +0.359934 +0.801834 +-3.150833 +0.003519 +0.249987 +0.488835 +0.750527 +0.980154 +0.926452 +0.314952 +0.691628 +0.089037 +0.353334 +-0.017399 +-0.045519 +0.578489 +0.762899 +0.859730 +-0.230533 +0.281942 +0.966647 +0.991307 +0.552471 +0.715091 +0.747514 +0.693920 +0.751717 +0.868537 +0.581318 +-0.195448 +0.975404 +0.340568 +0.369948 +-0.124699 +0.806142 +0.942495 +0.983578 +0.964062 +0.855673 +0.923399 +0.808948 +0.689821 +0.797078 +0.663214 +0.690017 +0.734402 +0.698794 +0.920849 +0.674605 +0.712631 +0.595703 +0.940532 +0.736119 +0.320271 +0.159714 +0.759553 +0.459318 +0.312827 +0.181918 +0.695747 +-0.503618 +0.852288 +0.764638 +0.794469 +0.896784 +0.962541 +0.614662 +-0.268960 +-0.073658 +-0.040350 +0.638794 +0.960768 +0.490882 +0.822217 +-0.287188 +0.089428 +0.789111 +0.801489 +-0.347474 +0.833443 +0.550827 +0.878189 +0.882603 +0.646140 +0.992793 +0.817747 +0.601322 +0.840085 +0.539141 +0.876292 +0.852657 +0.889690 +0.890411 +0.912380 +0.610517 +0.976877 +-43.890658 +0.885259 +-34.960928 +0.966544 +0.986348 +0.629996 +0.579487 +0.979659 +0.734911 +0.394961 +0.954495 +0.916255 +0.834189 +0.700332 +0.831383 +0.707841 +0.944990 +0.803567 +0.638086 +0.350778 +0.623682 +0.391552 +0.552148 +0.716520 +0.763843 +0.806302 +0.855237 +0.747087 +0.709314 +0.761281 +0.750998 +0.383463 +0.899490 +0.759047 +0.360157 +0.841146 +0.838914 +0.745755 +0.882350 +0.361348 +0.802896 +0.309713 +0.774493 +0.732077 +0.757208 +0.899551 +0.911039 +0.760575 +0.312496 +0.338735 +0.400423 +0.319635 +0.299033 +0.956501 +0.238369 +0.435656 +0.658096 +0.336330 +0.272242 +0.350502 +0.247309 +0.513832 +0.352113 +0.335086 +0.996601 +0.487158 +0.878654 +0.728746 +0.844498 +0.466944 +0.727177 +0.431168 +0.982727 +0.938841 +0.993650 +0.926115 +0.602242 +0.691814 +0.938755 +0.762212 +0.601464 +0.834881 +0.934649 +0.935651 +0.568230 +0.724279 +0.935664 +0.842610 +0.597086 +0.939678 +0.949595 +0.835957 +0.333391 +0.334829 +0.991784 +0.828224 +0.956447 +0.587697 +0.050441 +0.337677 +0.343533 +0.774814 +0.785241 +0.515272 +0.817981 +0.743357 +0.876600 +0.938337 +0.976706 +0.929272 +0.776890 +0.966484 +0.165490 +0.160155 +-1.751932 +0.383317 +0.339968 +0.995301 +-11.844147 +-0.103316 +0.008606 +0.923653 +0.808320 +0.503772 +0.868368 +0.442488 +0.637053 +0.803029 +0.992324 +0.172237 +0.392924 +0.927951 +0.402766 +0.347587 +0.753552 +0.857545 +0.395908 +0.277665 +0.367514 +0.361146 +0.937798 +0.689185 +0.349161 +0.520192 +0.232840 +0.390239 +0.430364 +0.931507 +0.938678 +0.443353 +0.909964 +0.958008 +0.127294 +0.286639 +0.751280 +0.356085 +0.967094 +0.983704 +0.949803 +0.303446 +0.399165 +0.601441 +0.863793 +0.927642 +0.371573 +0.811552 +0.439193 +0.960219 +0.944495 +0.707501 +0.943772 +0.567487 +0.333212 +0.407124 +0.934352 +0.863186 +0.930269 +0.953708 +0.697581 +0.389862 +0.329796 +0.792860 +0.670750 +0.960680 +0.455379 +0.914335 +0.702237 +0.927698 +0.442588 +0.735935 +0.332769 +-0.117922 +0.250717 +0.671257 +0.377155 +0.467975 +0.893212 +0.708996 +0.209130 +0.640857 +0.757280 +0.165865 +0.354568 +0.923055 +0.449489 +0.371668 +0.537132 +0.263592 +0.395984 +0.377590 +0.366115 +0.509312 +0.938268 +0.805893 +0.925028 +0.938368 +0.738800 +0.973062 +0.910149 +0.959373 +0.697464 +0.767969 +0.469338 +0.974135 +0.321883 +0.415399 +0.978555 +0.968125 +0.154422 +0.427398 +0.473185 +0.677296 +0.581320 +0.649334 +0.762215 +0.440755 +0.473860 +0.927434 +0.572832 +0.684713 +0.952089 +0.109939 +0.987551 +0.496476 +0.854726 +0.653007 +0.927338 +0.284625 +0.417138 +0.756036 +0.992217 +0.877505 +0.223756 +0.547470 +0.995841 +0.938594 +0.934032 +0.417498 +0.924648 +0.933662 +0.674975 +0.718959 +0.583392 +0.655471 +0.581786 +0.487381 +0.914216 +0.869601 +0.951688 +0.446973 +0.525686 +0.914275 +0.874559 +0.919000 +0.391770 +0.396895 +0.150558 +0.385333 +0.923898 +0.319054 +0.363868 +0.924488 +0.937149 +0.252126 +0.727745 +0.921350 +0.918700 +0.922495 +0.613840 +0.496590 +0.776298 +0.940678 +0.923548 +0.206620 +0.673774 +0.699225 +0.938534 +0.376852 +0.489454 +0.449675 +0.213973 +0.414100 +-11.610825 +0.463750 +0.443038 +0.027965 +0.918748 +0.816543 +0.919179 +0.853465 +0.326341 +0.910420 +0.786771 +0.810518 +-0.126468 +0.723288 +-0.031482 +0.325488 +0.109646 +0.024853 +0.142413 +0.097943 +0.443354 +0.045486 +0.522281 +0.108965 +0.004100 +-15.758265 +0.117804 +0.235632 +0.642988 +0.004273 +0.136815 +0.875655 +0.991917 +0.892148 +0.856792 +0.704374 +0.432258 +0.327484 +0.271804 +0.647179 +0.515426 +0.842000 +0.615646 +0.604742 +0.739861 +0.488810 +0.378518 +0.863886 +0.579215 +0.305773 +0.552681 +0.601722 +0.677659 +0.710764 +0.717118 +0.364057 +0.212135 +0.383149 +0.166174 +-0.011277 +-0.288000 +-1.341547 +0.993683 +0.493909 +0.234035 +0.783635 +0.576072 +0.044112 +0.033667 +0.847122 +0.486615 +0.959484 +0.915946 +0.703982 +0.692402 +0.687970 +0.943518 +0.971336 +0.826312 +0.353644 +0.833439 +0.694256 +0.682630 +0.807143 +0.844854 +0.158423 +0.820522 +0.851317 +0.458064 +0.975572 +-0.105665 +0.759069 +0.255258 +0.608638 +-7273.055886 +0.959643 +0.267078 +0.708757 +0.066801 +0.924877 +0.277627 +0.371109 +-0.007769 +0.501937 +0.668862 +0.396477 +0.112165 +0.441874 +0.292184 +0.020712 +-0.061704 +0.745669 +0.018863 +0.086772 +0.611238 +0.475284 +0.309057 +0.740566 +0.607721 +0.650988 +0.365907 +-3.115852 +0.880093 +0.530301 +0.526872 +0.804718 +0.294914 +0.278328 +0.491644 +0.448717 +0.456636 +0.717751 +0.466664 +0.458124 +0.445565 +0.641691 +0.646587 +0.729946 +0.744103 +0.407187 +0.974072 +0.488720 +0.832953 +0.761252 +0.502638 +0.758030 +0.448271 +0.712952 +0.839290 +0.925187 +0.747022 +0.758911 +0.749504 +0.398411 +0.729623 +0.857326 +0.918597 +0.555515 +0.667710 +0.759325 +0.758658 +0.996262 +0.763036 +0.790547 +0.788970 +0.507755 +0.741811 +0.761362 +0.771759 +0.595967 +0.773218 +0.812003 +0.523310 +0.757737 +0.871817 +0.434864 +0.875811 +0.292692 +0.789532 +0.507645 +0.723636 +0.641438 +0.928489 +0.365018 +0.951594 +0.451557 +0.488107 +0.189384 +0.826903 +0.938990 +0.754846 +0.719124 +0.911322 +0.640847 +0.605980 +0.435341 +0.645957 +0.796346 +0.345434 +0.865404 +0.380467 +0.626571 +0.638315 +0.930028 +0.551368 +0.444397 +0.808412 +0.516747 +0.801417 +0.341391 +0.850636 +0.804423 +0.918387 +0.803396 +0.929864 +0.917913 +0.741394 +0.857525 +0.730003 +0.814032 +0.248555 +0.724688 +0.955192 +0.959508 +0.787301 +0.911474 +0.337249 +0.280243 +0.600238 +0.647870 +0.058588 +0.386702 +0.563862 +0.445713 +0.403407 +0.470540 +0.268928 +0.274500 +0.280292 +0.219523 +0.339514 +0.416750 +0.631397 +0.253643 +0.474693 +0.565932 +0.375053 +0.438233 +0.436780 +0.863212 +0.893861 +0.497288 +0.598569 +0.341149 +0.809959 +0.424196 +0.413454 +0.697804 +0.774728 +0.881666 +0.612542 +0.988259 +0.213983 +0.305032 +0.877150 +0.872078 +0.936780 +0.680590 +0.870415 +0.657758 +0.793923 +0.942591 +0.924035 +0.953202 +0.658221 +0.445786 +0.825158 +0.655810 +0.636723 +0.885517 +0.957019 +0.866782 +0.102399 +0.737984 +-0.303989 +0.637921 +0.637346 +0.901383 +0.975104 +0.039862 +0.921145 +0.960650 +0.361081 +0.996116 +0.957979 +0.518093 +0.303607 +0.586113 +0.548996 +0.517324 +0.917364 +0.285773 +0.894946 +0.546940 +0.969920 +0.367849 +0.530547 +0.735896 +0.735896 +0.818520 +0.644954 +0.873247 +0.302948 +0.923191 +0.104949 +0.778300 +0.436776 +0.925213 +0.696385 +0.893014 +0.289774 +0.998736 +0.998700 +0.397945 +0.455888 +0.381783 +0.976771 +0.986103 +0.680079 +0.950413 +0.412046 +0.457321 +0.848432 +0.530869 +0.516163 +0.965540 +0.823643 +0.358749 +0.896549 +0.472132 +0.448725 +0.528440 +0.762111 +0.698533 +0.337844 +0.501524 +0.774665 +0.320382 +0.727610 +0.712945 +0.979076 +0.955864 +0.606889 +0.770142 +0.510412 +0.747251 +0.722791 +0.920342 +0.956266 +0.690616 +0.768630 +0.329730 +0.573508 +0.365916 +0.277878 +0.445208 +0.247596 +0.994425 +0.828011 +0.937974 +0.430270 +0.518875 +0.472551 +0.401589 +0.295558 +0.552423 +0.543761 +0.521239 +0.140385 +0.294480 +0.782257 +0.407560 +0.556274 +0.734101 +0.766890 +0.810693 +0.968622 +0.729149 +0.987195 +0.452124 +0.740548 +0.460364 +0.383234 +0.763780 +0.884672 +0.118081 +0.768644 +0.686817 +0.903353 +0.658879 +0.608667 +0.137047 +0.890162 +0.209942 +0.962440 +0.192804 +0.309640 +0.711016 +0.763353 +0.204737 +0.297288 +0.895804 +0.786425 +0.822593 +0.481851 +0.417019 +0.482034 +0.757532 +0.386626 +0.660205 +0.496186 +0.249844 +0.648233 +0.360094 +-0.410853 +0.620543 +0.658070 +0.940899 +0.890035 +0.904131 +0.854642 +0.422570 +0.232069 +0.551682 +0.070997 +0.242225 +0.245631 +0.261810 +0.398944 +0.344247 +0.095768 +0.067421 +-0.053547 +0.137403 +0.231952 +0.505256 +0.747308 +0.257411 +-7937.582759 +0.747146 +0.600757 +0.250989 +0.590943 +0.013335 +0.313580 +0.486679 +0.014741 +0.193771 +0.174947 +0.229826 +0.492990 +0.390153 +0.943196 +0.091738 +0.397406 +0.200811 +-2.396204 +0.622723 +-0.278421 +0.085169 +0.814325 +0.841812 +0.914153 +0.971909 +0.846165 +0.607216 +0.427487 +0.794370 +0.836692 +0.834234 +0.741290 +0.737993 +0.701807 +0.764559 +0.472524 +0.732847 +0.759433 +0.694339 +0.944994 +0.675893 +0.624833 +0.731409 +0.739895 +0.937177 +0.847138 +0.940020 +0.688165 +0.851271 +0.340849 +0.852917 +0.934872 +0.870442 +0.922154 +0.942433 +0.988950 +0.319090 +0.852717 +0.538071 +0.677090 +0.583080 +0.939579 +0.859242 +0.688415 +0.630078 +0.895872 +0.829667 +0.743354 +0.734869 +0.795755 +0.919680 +0.288916 +0.618970 +0.605963 +0.760791 +0.925103 +0.415173 +0.387652 +0.553287 +0.454095 +0.454331 +0.748956 +0.755916 +0.628782 +0.781147 +0.775627 +0.314292 +0.845326 +0.775758 +0.287575 +0.894635 +0.749637 +0.620849 +0.865684 +0.390474 +0.709006 +0.942715 +0.769664 +0.319702 +0.550955 +0.374714 +0.341181 +0.699357 +0.945146 +0.423324 +0.821249 +0.729583 +0.889680 +0.930995 +0.475865 +0.916459 +0.903332 +0.921948 +0.923472 +0.940127 +0.921668 +0.922500 +0.824202 +0.753999 +0.882583 +0.684430 +0.936903 +0.927263 +0.269432 +0.919785 +-0.004386 +0.929216 +0.926127 +0.649117 +0.924963 +0.159925 +0.922272 +0.826843 +0.798517 +0.960363 +0.697182 +0.922582 +0.616050 +0.648524 +0.848454 +0.841365 +0.586886 +0.799402 +0.761380 +0.674424 +0.940553 +0.808119 +0.217235 +0.445796 +0.882110 +0.963793 +0.994233 +0.428926 +0.707996 +0.942881 +0.917896 +0.449968 +0.678213 +0.950943 +0.918705 +0.981221 +0.285358 +0.892796 +0.894525 +0.380654 +0.566868 +0.998792 +0.682503 +0.795402 +0.381456 +0.883708 +0.633794 +0.628165 +0.881639 +0.729348 +0.665780 +0.890083 +0.752943 +0.755066 +0.860515 +0.700309 +0.629228 +0.394750 +-1.035684 +0.319753 +0.267634 +0.125511 +0.100259 +0.812644 +0.328049 +-0.013959 +0.323624 +0.273270 +0.516699 +-0.036785 +0.691470 +0.511713 +0.556754 +0.607757 +0.397260 +0.633745 +0.700680 +0.498394 +0.475479 +0.480224 +0.790423 +0.162811 +0.281242 +0.298604 +0.511992 +0.387605 +0.393542 +0.332896 +0.430748 +0.219295 +0.358111 +0.328785 +-0.474601 +0.731961 +0.629745 +0.310103 +0.502378 +0.142228 +0.531221 +0.312093 +0.795803 +0.900697 +0.587407 +0.753232 +0.941961 +0.784742 +0.836569 +0.338613 +0.058609 +0.872012 +0.582394 +0.791481 +0.962557 +0.080329 +0.878654 +0.932414 +0.959205 +0.488435 +0.906352 +0.854711 +0.854254 +-1.169066 +0.621054 +0.648954 +0.667536 +0.166957 +0.164732 +0.481140 +0.996313 +0.147858 +-0.665542 +0.811942 +-0.068499 +0.425870 +0.576157 +0.134202 +0.236881 +0.302136 +0.324606 +0.184809 +-0.100371 +0.608051 +0.464324 +0.996952 +0.628533 +0.776763 +0.710427 +0.475138 +0.956668 +0.389877 +-0.227758 +0.850737 +-0.230027 +0.717316 +0.121854 +0.739370 +0.787601 +0.894851 +0.601966 +0.929385 +0.913828 +0.916013 +0.928261 +0.916917 +0.929168 +0.962423 +0.766500 +0.647989 +0.581902 +0.839051 +0.918687 +0.930678 +0.933062 +0.811655 +0.780484 +0.758950 +0.959418 +0.759088 +0.687429 +0.740795 +0.979226 +0.907775 +0.762148 +0.301329 +0.877302 +0.795939 +0.990409 +0.926564 +0.939256 +0.986517 +0.622292 +0.511258 +0.866599 +0.715572 +0.727539 +0.953225 +0.809568 +0.573254 +0.925613 +0.686182 +0.901910 +0.724860 +0.800811 +0.809988 +0.297724 +0.570178 +0.941986 +0.636084 +0.256396 +0.714463 +0.839250 +0.894957 +0.770960 +0.967853 +0.851425 +0.879705 +0.745062 +0.918077 +0.971682 +0.828724 +0.870893 +0.678246 +0.817783 +0.581703 +0.949502 +0.825991 +0.748260 +0.791815 +0.656188 +0.697030 +0.982745 +0.911921 +0.734955 +0.738208 +0.279700 +0.774022 +0.992204 +0.588568 +0.684104 +-1.693121 +0.281982 +0.569955 +0.233956 +0.576916 +0.732039 +0.578832 +0.728215 +0.572588 +0.793698 +0.793242 +0.849017 +0.927779 +0.994692 +0.377645 +0.977788 +0.419913 +0.355926 +0.895604 +0.859482 +0.696469 +0.595031 +0.966565 +0.751004 +0.416906 +0.557734 +0.155082 +0.224956 +0.428641 +-0.474968 +0.712467 +0.800937 +0.477704 +0.480494 +0.973820 +-0.018530 +0.424588 +0.768133 +0.655657 +0.090167 +0.078663 +0.498110 +0.404066 +0.500468 +0.653702 +0.777752 +0.206023 +-2.806962 +0.259398 +0.993469 +0.179438 +0.305252 +0.482275 +0.863993 +0.020450 +0.731649 +0.244313 +0.928777 +-1.755039 +0.229572 +0.754445 +0.288828 +0.564580 +0.831419 +0.585645 +0.067311 +0.495628 +0.805401 +0.818531 +0.443577 +0.536232 +0.577364 +0.962353 +0.873357 +0.112579 +0.910331 +0.034777 +-0.208360 +0.637831 +0.199315 +0.214062 +0.862479 +0.931422 +0.405349 +0.167765 +-0.086199 +-0.005671 +-0.036111 +-1.430062 +0.834435 +0.974724 +0.412326 +0.121991 +0.740949 +0.955930 +0.120749 +0.029362 +0.603877 +0.078509 +0.238958 +0.425888 +0.226929 +0.058751 +0.275878 +0.270589 +0.159384 +0.221041 +0.986611 +0.787787 +0.881048 +0.845756 +0.052632 +0.690434 +0.805530 +0.043912 +-0.064328 +0.828062 +0.896556 +0.955201 +0.245333 +0.852288 +0.434721 +-0.942323 +0.170746 +0.290530 +0.581871 +0.875662 +0.811361 +0.980958 +0.745562 +0.607078 +0.804707 +0.510376 +0.764993 +0.827393 +0.840862 +0.730166 +0.837777 +0.708132 +0.767841 +0.827248 +0.725124 +0.488873 +0.822413 +0.340191 +0.378389 +0.392401 +0.536042 +0.259196 +0.587382 +0.345457 +0.928201 +0.774938 +0.442706 +0.933823 +0.764489 +0.569299 +0.294790 +0.407324 +0.334130 +0.437963 +0.904885 +0.933236 +0.277535 +0.462275 +0.694681 +0.630195 +0.916923 +0.620643 +0.678394 +0.505625 +0.491414 +0.452400 +0.925177 +0.470927 +0.928032 +0.550997 +0.615095 +0.212649 +0.343885 +0.905145 +0.719799 +0.588910 +0.512086 +0.739790 +0.648967 +0.450354 +0.733171 +0.783463 +0.933036 +0.575222 +0.763148 +0.615637 +0.959647 +0.949635 +0.554197 +0.574323 +0.773242 +0.890982 +-0.822398 +0.905737 +0.644978 +0.805740 +0.008070 +0.844930 +0.902016 +0.557042 +0.298395 +0.912084 +0.251618 +0.400187 +0.474572 +0.743471 +0.770343 +0.682466 +0.784882 +0.779333 +0.678548 +0.808230 +0.724541 +0.746675 +0.819537 +0.842637 +0.890437 +0.989237 +0.965047 +0.527654 +0.413187 +-1895.851287 +0.829045 +0.985147 +0.055021 +0.901243 +0.740510 +0.303677 +0.194195 +0.374747 +0.264049 +0.301801 +0.552794 +0.978883 +0.826047 +0.907029 +0.948071 +0.914014 +0.646174 +0.683216 +0.701303 +0.777561 +0.906147 +0.974049 +0.846450 +0.850876 +0.456781 +0.876462 +0.930509 +0.855019 +0.943297 +0.954310 +0.379307 +0.886124 +0.214739 +0.627370 +0.987674 +0.706979 +0.696380 +0.822062 +0.865973 +0.884915 +0.824120 +0.839034 +0.533923 +0.760365 +-1376.325306 +0.402159 +0.465622 +0.476916 +0.967384 +0.425420 +0.307663 +0.498069 +0.178821 +-6.087723 +0.867599 +0.406929 +0.376130 +0.350639 +0.388740 +-5.286710 +0.155825 +0.595454 +0.346126 +-90.298966 +0.377042 +0.480674 +0.698435 +0.320706 +0.290540 +0.582829 +0.045274 +0.859589 +0.393009 +0.645101 +0.186659 +0.371786 +0.425532 +0.955343 +0.121917 +0.857037 +0.645681 +0.407388 +0.831571 +0.581276 +0.977006 +0.366900 +0.824343 +0.629102 +0.924933 +0.969327 +0.883450 +0.716269 +0.447222 +-0.229283 +-1645397.159891 +0.940211 +0.965892 +0.923762 +-16.576018 +0.609040 +0.725044 +0.799738 +0.844407 +0.865043 +0.886421 +0.892502 +0.764859 +0.917718 +0.558609 +0.817000 +0.919029 +0.842426 +0.864878 +0.969054 +0.157189 +0.911764 +0.749286 +0.827036 +0.958424 +0.937812 +0.695636 +0.808495 +0.858205 +0.333666 +0.333666 +0.527449 +0.768118 +0.936543 +0.440291 +0.584573 +0.234636 +0.897741 +0.198732 +0.422259 +0.987105 +0.209554 +0.740321 +0.354751 +0.964449 +0.198022 +0.759739 +0.634312 +0.960679 +0.995718 +-0.283530 +0.892964 +0.893238 +0.543792 +-0.191033 +0.614083 +0.613973 +0.784058 +0.131302 +-0.109810 +0.350398 +0.032471 +0.088960 +0.204331 +-0.045759 +0.145163 +0.063447 +-0.005864 +0.737126 +0.349604 +0.714510 +0.215695 +0.989771 +0.596412 +0.823516 +0.769678 +0.304652 +0.898684 +0.836371 +0.644930 +0.993430 +0.759095 +0.885846 +0.767727 +0.750886 +0.818980 +0.780948 +0.941473 +0.940051 +0.633692 +0.876717 +0.945590 +0.815872 +0.938967 +0.948913 +0.774837 +0.673421 +0.966335 +0.515974 +0.595847 +0.850342 +0.738235 +0.752914 +0.632788 +0.872514 +0.269299 +0.810391 +-0.040445 +0.812467 +0.927080 +0.942743 +0.719414 +0.323720 +0.461967 +0.463298 +0.932642 +0.440839 +0.715045 +0.944347 +0.310964 +0.827613 +0.492621 +0.158137 +-27.166491 +-1.214080 +-2.930079 +0.318935 +0.918985 +-0.164522 +-24.894949 +0.198271 +0.206286 +0.249383 +0.387278 +0.494631 +0.635737 +0.836004 +-200.413235 +0.347710 +0.745560 +0.932538 +0.808847 +0.266136 +0.915083 +-39.302996 +0.863134 +-0.612603 +0.540340 +-0.061737 +0.728703 +0.526996 +0.345618 +0.402686 +0.683820 +0.531804 +0.757934 +0.764382 +0.726867 +0.727585 +0.719453 +0.733088 +0.382284 +0.613444 +0.716224 +0.846715 +0.735871 +0.666994 +0.713720 +0.649271 +0.786145 +0.132465 +0.716118 +0.819702 +0.684099 +0.714575 +0.491824 +0.486049 +0.716918 +0.392062 +0.131181 +-0.010909 +-0.028950 +0.222848 +-0.057335 +0.181852 +0.028730 +0.374571 +-0.367188 +0.014788 +0.545057 +0.172429 +0.059831 +0.380689 +0.127196 +-0.488695 +-0.489051 +-0.412546 +0.176255 +0.014335 +0.736567 +0.164768 +0.379934 +0.243428 +0.637830 +0.267478 +0.295842 +0.294178 +0.314404 +0.306164 +0.273974 +0.472046 +0.303789 +0.301436 +0.307277 +0.124317 +-0.206958 +0.969976 +0.350217 +0.482484 +0.019440 +0.997340 +0.994286 +0.928313 +0.059923 +0.479424 +0.651159 +0.399181 +0.377257 +0.244985 +0.854929 +0.349037 +0.274820 +0.517053 +0.906399 +0.226146 +0.403571 +0.822191 +0.818647 +0.747819 +0.846991 +0.898342 +0.551989 +0.484302 +0.817220 +0.808971 +0.861653 +0.220486 +0.085393 +0.881118 +0.002720 +0.510264 +0.192872 +0.399116 +-0.009252 +0.020634 +0.219176 +-1.147802 +0.037074 +0.995967 +0.396833 +0.914857 +0.599957 +0.992775 +0.981256 +0.923996 +0.678776 +0.845882 +0.754306 +0.584187 +-0.505224 +0.927762 +0.851695 +0.946599 +0.317329 +0.543906 +0.851298 +0.789484 +0.916501 +0.998904 +0.614849 +0.712608 +0.553367 +0.718562 +0.932800 +0.740332 +0.350730 +0.710842 +0.815622 +0.970537 +0.960730 +0.988350 +0.948855 +0.400276 +0.844228 +0.835284 +0.970042 +0.847772 +0.943663 +0.454396 +0.889937 +0.881157 +0.790154 +0.453233 +0.758275 +0.844841 +0.283991 +0.568069 +0.984876 +0.684394 +0.947807 +0.282839 +0.939043 +0.867085 +0.928712 +0.432037 +0.649263 +0.374614 +0.316541 +0.535486 +0.937630 +0.834148 +0.914000 +0.998123 +0.928975 +0.378772 +0.402625 +0.858296 +0.835346 +0.517222 +-0.004663 +-1.933214 +0.730399 +0.466795 +0.845983 +0.916174 +0.297391 +0.865984 +0.737875 +0.865521 +0.781453 +0.755844 +0.867371 +0.846437 +0.862944 +0.895885 +0.975949 +0.550869 +0.390887 +0.367299 +0.563467 +0.771530 +0.720716 +0.712196 +0.992002 +0.869396 +0.745492 +0.448895 +0.713667 +-0.334391 +0.948530 +0.764761 +0.403342 +0.726278 +0.894501 +0.091270 +0.669411 +0.959683 +0.074144 +0.715507 +0.650372 +0.913146 +-0.071146 +0.816683 +0.587209 +0.736481 +0.427016 +0.716747 +0.855473 +0.798683 +0.562518 +0.456438 +0.155719 +0.049974 +0.605250 +0.028698 +0.062617 +0.695788 +0.249151 +0.316050 +0.301245 +0.315566 +0.291316 +0.997942 +0.247972 +-0.060634 +0.030521 +0.311536 +0.463585 +0.311564 +0.411122 +0.560012 +0.378242 +0.264585 +0.232962 +0.763967 +0.229102 +0.226245 +0.494871 +0.182727 +0.960451 +-0.540357 +-1.892224 +0.778096 +0.111932 +0.055109 +0.089321 +0.082712 +-0.050801 +0.705960 +-0.579232 +-0.033413 +-0.014260 +-0.351897 +0.924494 +0.027620 +0.217698 +0.261564 +0.892696 +0.187083 +0.012407 +0.821336 +0.993261 +0.963372 +0.598061 +0.855482 +0.635616 +0.232247 +0.550355 +0.883783 +0.962230 +0.729199 +0.586327 +0.594677 +0.983602 +0.947490 +0.984901 +0.760553 +0.667672 +0.753560 +0.969012 +0.656531 +0.700439 +0.886797 +0.973459 +0.963878 +0.367311 +0.075460 +0.879922 +0.141162 +-0.081875 +0.869159 +0.890336 +0.960500 +0.510748 +0.939243 +-11981.631526 +0.952538 +0.933675 +0.931095 +0.954796 +0.597186 +-28.859436 +0.807921 +0.935582 +0.857163 +0.658911 +0.718616 +0.864148 +0.658599 +0.219071 +0.884464 +0.516649 +0.997275 +0.197805 +-0.597964 +0.273655 +-0.138463 +0.972768 +0.887110 +0.481965 +0.786485 +0.750121 +0.843864 +0.661227 +0.716126 +0.873596 +0.946787 +0.981617 +0.904076 +-0.566976 +-0.248714 +0.800560 +0.732766 +0.656211 +0.414048 +0.736438 +0.702259 +0.718377 +0.831907 +0.815190 +0.455645 +0.652877 +0.850507 +0.771808 +0.567168 +0.662333 +0.315223 +0.845922 +0.842015 +0.874918 +0.729166 +0.841658 +0.860585 +0.849564 +0.928077 +0.930288 +0.357040 +0.768439 +0.794034 +0.535181 +0.522418 +0.953027 +0.378526 +0.829956 +0.656728 +0.312206 +0.495468 +0.567165 +0.314869 +0.361086 +-0.019379 +0.548562 +0.172886 +0.499438 +0.081305 +-0.127960 +0.817139 +0.994873 +0.522660 +-509.338621 +0.236916 +0.849940 +0.330785 +0.633221 +0.220844 +0.272100 +0.945248 +0.906470 +0.106100 +0.519870 +0.972081 +0.105154 +0.187213 +0.092744 +0.132648 +0.409327 +0.461201 +0.682881 +0.998444 +0.138066 +0.739693 +0.275736 +0.608491 +0.645327 +0.351798 +0.287804 +0.016735 +0.068752 +0.107033 +0.392528 +0.118854 +0.728855 +0.182000 +0.368266 +0.487985 +0.972144 +0.025642 +0.022773 +0.891213 +0.401821 +0.627133 +0.958055 +0.840316 +0.549329 +0.863209 +0.684305 +0.448502 +0.150360 +0.071540 +0.665099 +0.953185 +0.974666 +0.811267 +0.137760 +-0.076486 +0.878330 +0.112398 +0.244591 +0.815201 +0.049428 +0.772101 +0.091464 +0.424271 +0.084904 +0.037062 +0.829107 +-0.366901 +0.384642 +0.973668 +0.028506 +0.513037 +0.477695 +0.091190 +0.021191 +0.959936 +0.849747 +0.257964 +0.968742 +0.133898 +0.710386 +0.484109 +0.262130 +0.971751 +0.257592 +0.052300 +-0.197057 +0.979214 +0.928420 +0.739357 +0.822624 +0.884442 +0.941744 +0.849213 +0.958799 +0.853022 +0.986960 +0.807639 +0.214663 +0.976840 +0.070761 +-1.157212 +0.824178 +0.428719 +0.935356 +-1.902372 +0.104454 +-0.143041 +0.347410 +0.934033 +0.195827 +0.908969 +0.247643 +0.525880 +0.980352 +0.420885 +0.440799 +0.666132 +0.896828 +0.846457 +0.960652 +0.789922 +0.752765 +0.952704 +0.348172 +0.812308 +0.996068 +0.950473 +0.810397 +0.957829 +0.900724 +0.967639 +0.300205 +-0.595505 +0.143765 +0.520732 +0.757182 +0.946228 +0.929122 +0.953468 +0.731214 +0.782279 +0.387415 +0.710504 +0.846349 +0.776656 +0.066313 +0.259331 +0.839304 +0.036965 +0.830692 +0.988828 +0.687681 +0.996335 +0.673765 +0.669982 +0.810932 +0.808505 +0.835969 +0.159023 +0.504051 +0.773462 +0.436125 +0.478975 +0.758492 +0.966494 +0.962545 +0.547330 +-0.166327 +0.906298 +0.906006 +0.913454 +-0.039400 +0.571621 +0.405716 +0.734613 +0.515789 +0.303863 +0.513851 +0.469786 +0.973983 +0.957772 +0.742706 +0.494406 +0.935392 +0.964839 +0.862182 +0.918470 +0.463466 +0.949622 +0.629714 +0.770847 +0.480513 +0.322524 +0.945939 +0.932736 +0.626108 +0.429867 +0.932652 +0.637888 +0.978723 +0.582753 +0.392779 +0.187225 +0.331382 +0.365769 +0.550402 +0.213840 +0.499980 +0.476698 +0.526251 +0.545768 +0.862281 +0.557119 +0.468040 +0.928888 +0.833413 +0.888755 +0.749534 +0.925026 +-0.702670 +0.910914 +0.720095 +0.831646 +0.637432 +-0.218200 +0.824320 +0.885120 +0.619861 +0.788605 +0.718064 +0.078876 +0.760452 +0.336373 +0.353868 +0.458226 +0.485376 +0.382338 +0.473249 +0.140837 +0.742336 +0.089964 +0.732138 +0.868468 +0.909912 +0.444853 +0.568084 +0.596923 +0.583894 +0.575888 +0.581047 +0.499081 +0.918962 +0.889317 +0.104131 +0.491613 +0.710062 +0.721688 +0.415704 +0.478143 +0.443233 +0.720177 +0.577787 +0.441890 +0.177139 +0.398091 +0.862885 +0.883885 +0.723969 +0.731068 +0.008576 +0.688573 +0.688573 +0.688573 +0.419314 +0.500932 +0.543962 +0.492750 +0.444213 +0.900716 +0.828654 +0.805646 +0.728517 +0.774059 +0.168380 +0.504327 +0.554762 +0.950993 +0.331342 +0.844642 +0.879027 +0.785852 +0.781351 +0.969675 +0.569009 +0.613596 +0.956803 +0.880713 +0.794979 +0.355180 +-0.662705 +0.891574 +0.429080 +0.956413 +0.953109 +0.886997 +0.761807 +0.506591 +0.887061 +0.411558 +0.934601 +0.764612 +0.951093 +0.835282 +0.836829 +0.860754 +0.957976 +0.692866 +0.519195 +0.421523 +0.963150 +0.091467 +0.438766 +0.682837 +-0.052961 +-3.009402 +0.101776 +0.261207 +0.093098 +0.767704 +0.646070 +0.981628 +0.269196 +0.417850 +0.553473 +0.687593 +0.663816 +0.685737 +-12.550989 +0.383876 +0.632670 +0.990019 +0.424031 +0.090190 +0.690375 +0.134906 +0.740240 +0.186823 +0.758761 +0.391101 +0.710553 +0.252753 +0.180434 +0.161818 +0.317295 +0.841582 +0.256213 +0.927241 +0.215922 +0.980089 +0.453488 +0.027840 +0.092359 +-92.844314 +0.194541 +-0.009344 +0.428018 +-0.377828 +0.057737 +-0.313656 +0.788722 +0.132505 +0.132352 +0.161906 +0.640467 +0.262951 +0.109899 +0.899286 +0.468559 +0.877401 +0.629993 +0.821208 +0.594945 +-1.566410 +-0.001173 +0.675639 +0.028056 +0.594589 +0.596648 +0.485524 +-0.002742 +0.156921 +0.198712 +0.221310 +-0.050208 +0.234295 +0.103390 +-0.043839 +0.640244 +0.755530 +0.101672 +0.770293 +0.213584 +0.477206 +0.063361 +0.835753 +0.520494 +0.161762 +0.575711 +0.991702 +0.000043 +0.956572 +0.083102 +0.367203 +0.154645 +0.412999 +0.601623 +0.812991 +0.502216 +0.989970 +0.404520 +0.694182 +0.486835 +0.933762 +0.946431 +0.955199 +-0.645835 +0.511065 +0.981978 +0.994662 +0.231694 +0.082055 +0.413472 +0.304415 +0.463180 +0.741465 +0.577264 +0.083874 +0.667249 +0.764168 +0.266327 +0.871237 +0.502429 +0.780427 +0.249876 +0.983988 +0.636731 +0.649890 +0.849382 +0.873965 +0.545625 +0.525715 +0.953051 +0.936975 +0.748250 +0.444696 +0.537974 +0.855160 +0.918681 +0.825554 +0.249975 +0.502007 +-1.000501 +0.900928 +0.351817 +0.584122 +0.761473 +0.453885 +0.918969 +0.931843 +0.763189 +0.526284 +0.651081 +0.508635 +0.275554 +0.936813 +0.939627 +0.934072 +0.802882 +-0.176935 +0.729319 +0.352309 +-0.145461 +0.672267 +0.996616 +0.159005 +-0.333587 +0.436778 +0.221066 +0.858620 +0.669175 +-0.169099 +0.420936 +0.189042 +0.240755 +0.923560 +0.917512 +0.582380 +0.532537 +0.152567 +0.997444 +0.679945 +-0.350267 +0.397424 +0.395071 +0.473021 +0.352004 +-0.945690 +0.587645 +0.959104 +0.724971 +0.727454 +0.395938 +0.936183 +0.370938 +0.409315 +0.172186 +0.672951 +0.531572 +0.283593 +0.283593 +0.728581 +0.453757 +0.276578 +0.705383 +0.914048 +0.738492 +0.763248 +0.474282 +0.151138 +0.076806 +0.180692 +0.627157 +0.993851 +0.672298 +0.340443 +0.200064 +0.485723 +0.463522 +0.277979 +0.530195 +0.104193 +0.630618 +0.000142 +-0.070175 +0.795574 +0.363378 +0.160471 +0.924111 +0.495226 +0.461168 +0.107687 +0.559417 +0.087242 +0.854753 +0.181793 +0.969009 +0.851791 +0.020957 +0.397254 +0.657207 +0.480346 +0.253046 +0.803199 +0.546578 +0.637405 +0.759707 +0.185839 +0.255089 +0.306403 +0.276308 +0.893494 +0.730636 +0.817251 +0.672549 +0.422124 +0.378498 +0.925497 +0.741770 +0.411151 +0.388312 +0.181897 +0.218542 +0.366093 +0.122565 +0.959796 +0.497276 +0.038257 +0.670469 +-0.054008 +0.113129 +0.322937 +0.053361 +0.039299 +0.743550 +0.051444 +0.000817 +0.346766 +0.181480 +0.131675 +0.177762 +0.365566 +0.382690 +0.375118 +0.338707 +0.812863 +0.915174 +0.842753 +0.958694 +0.504099 +0.817451 +0.768939 +0.350590 +0.936116 +0.988791 +-0.050772 +0.577423 +0.918877 +0.923320 +0.285792 +0.889592 +0.887629 +0.967495 +0.589182 +0.907694 +0.677394 +0.993926 +0.379037 +0.924534 +0.936877 +0.604019 +0.843833 +0.968424 +0.303850 +0.406763 +0.944201 +0.918669 +0.947898 +0.943938 +0.937458 +0.524708 +0.520411 +0.912570 +0.917115 +0.683354 +0.555063 +0.708179 +0.732536 +0.655825 +0.888238 +0.863718 +0.930142 +-0.033642 +0.526654 +0.126421 +0.034888 +0.327858 +0.249978 +0.979591 +-0.156607 +0.638216 +0.330179 +0.072107 +0.064199 +-0.014319 +0.647059 +0.037643 +0.121845 +-61.365618 +0.163950 +0.863556 +0.126826 +0.741520 +0.397826 +0.502439 +0.513656 +0.193478 +0.496901 +0.116080 +0.273694 +-0.227907 +0.227292 +0.135009 +0.301375 +0.374269 +-0.112009 +0.158899 +0.080632 +0.136507 +0.711707 +0.878725 +0.978282 +0.641509 +0.346568 +0.952804 +0.878472 +0.685162 +0.562741 +0.101393 +0.051130 +0.361119 +0.759484 +0.462154 +0.462154 +0.407048 +0.849728 +0.482928 +0.902951 +0.033912 +0.889649 +0.762784 +0.766009 +0.627129 +0.765997 +0.020273 +0.878735 +0.410799 +0.972756 +-0.873463 +0.542905 +0.484859 +0.245924 +0.003229 +0.026014 +0.551784 +0.551585 +0.551760 +0.509861 +0.576648 +0.576648 +0.576648 +0.576648 +0.498177 +0.472223 +0.909800 +0.523148 +0.313006 +0.024387 +0.534321 +0.650706 +0.602175 +0.241552 +0.948959 +0.927655 +0.837713 +0.754734 +0.550648 +0.676072 +0.286228 +0.720044 +0.051645 +0.903913 +0.656969 +0.843949 +0.325635 +0.430623 +0.813732 +0.726693 +0.796787 +0.741357 +0.930825 +0.762872 +0.650658 +0.698846 +0.741543 +0.526788 +0.776111 +0.761477 +0.101658 +0.869025 +-0.852469 +0.864185 +0.974020 +0.923312 +0.522761 +-0.288622 +0.828566 +0.893574 +0.671052 +0.609718 +-0.363453 +0.493990 +0.864982 +0.935795 +0.554676 +-0.153496 +0.457204 +0.312524 +-0.019704 +0.728432 +0.700471 +0.690078 +0.800339 +0.933127 +0.963531 +0.878768 +0.741478 +0.721287 +0.861942 +0.794862 +-0.078472 +0.925494 +0.112772 +0.745542 +0.885802 +0.331654 +-0.622671 +0.803509 +0.098324 +0.996978 +0.448920 +0.583695 +-0.070077 +0.222765 +0.682381 +0.221657 +0.571800 +0.710077 +0.049167 +0.044448 +0.366448 +-0.003146 +0.622000 +0.970045 +0.854873 +-0.106265 +0.996460 +0.610513 +0.139688 +0.309062 +0.676753 +0.298929 +0.449907 +0.421269 +0.325950 +0.544178 +0.223829 +0.668435 +0.150767 +0.176299 +0.950700 +0.069568 +-0.174097 +0.863548 +0.024894 +0.389115 +0.353119 +-1.103684 +0.255651 +-0.044346 +0.599181 +0.324810 +0.870496 +0.760016 +0.612085 +0.071122 +0.988998 +0.454618 +0.774811 +0.651226 +0.869613 +-157.989842 +0.744359 +0.240389 +0.757575 +0.402793 +0.858151 +0.508503 +0.976045 +0.199047 +0.378747 +0.437305 +0.621504 +0.914366 +0.941362 +0.541518 +0.594100 +0.930069 +0.386616 +0.171224 +0.886353 +0.443429 +0.326264 +0.247154 +0.149376 +0.227074 +0.345314 +0.373918 +0.656264 +0.886091 +-124.965747 +0.273305 +0.767557 +0.971834 +0.841545 +0.961443 +0.919322 +0.897025 +0.933059 +0.046171 +0.782315 +0.626281 +0.392108 +0.949297 +0.873521 +0.310469 +0.189168 +0.926391 +0.831001 +0.865161 +0.947303 +0.998438 +0.754313 +0.944677 +0.796914 +0.810719 +0.931820 +0.956701 +0.963401 +0.839859 +0.818219 +0.883777 +0.757706 +0.154585 +0.885120 +0.869187 +0.989583 +0.759408 +-0.109022 +0.368349 +0.375966 +0.789825 +0.438336 +0.217948 +0.140431 +0.361312 +0.087747 +0.845639 +0.920811 +0.510236 +0.418309 +0.918657 +0.728188 +0.923435 +0.908110 +0.359935 +0.924698 +0.531119 +0.785635 +0.950388 +-0.020409 +0.214050 +0.864332 +0.850025 +0.556187 +0.781286 +0.054320 +0.755765 +0.410970 +0.960595 +0.888206 +0.652034 +0.948754 +0.447642 +0.908525 +0.618760 +0.867592 +0.917718 +0.671368 +0.575541 +0.483865 +0.852259 +0.752915 +0.679265 +0.466068 +0.170250 +-0.461287 +0.224908 +0.148198 +0.679182 +0.812617 +0.771394 +0.792253 +0.462496 +0.907625 +0.934129 +0.663251 +0.503900 +0.886267 +0.538340 +0.935765 +0.609919 +0.842898 +0.903341 +0.443969 +0.386210 +0.512992 +0.741294 +0.613933 +0.631027 +0.820709 +0.138912 +0.944463 +0.856888 +0.759030 +0.890580 +0.935427 +0.847727 +0.926175 +0.921681 +0.697673 +0.765984 +0.916308 +0.894448 +0.670790 +0.921491 +0.930773 +0.990824 +0.378316 +0.945436 +0.946627 +0.981452 +0.924945 +0.731432 +0.572220 +0.611400 +0.672231 +0.942271 +0.979336 +0.923099 +0.961099 +0.932858 +0.961217 +0.927958 +0.933984 +-0.526944 +0.501433 +0.253733 +0.374155 +0.679326 +0.844751 +0.931076 +0.936971 +0.843292 +0.872036 +0.917203 +0.869478 +0.877568 +0.518004 +0.764635 +0.808152 +0.903487 +0.853988 +0.101258 +0.389094 +0.836166 +0.894525 +0.652775 +0.557275 +-1.365703 +0.843412 +0.468304 +0.073338 +0.995427 +0.341617 +0.304711 +0.987035 +0.216967 +0.360182 +-1.199543 +-0.207293 +0.042667 +0.512779 +-0.045056 +0.299318 +0.739899 +0.273815 +0.201150 +0.603461 +0.560802 +0.419885 +0.437765 +0.855504 +0.321585 +0.420957 +-0.050246 +0.829285 +0.087079 +0.942778 +0.222778 +-6136.522803 +0.344900 +-0.046079 +0.415586 +0.863554 +0.101824 +0.813071 +0.492891 +0.910619 +0.877158 +0.886651 +0.980924 +0.936149 +0.768224 +0.526451 +0.319986 +0.931386 +0.672685 +0.851563 +0.719564 +0.849630 +0.892150 +0.597113 +0.520455 +0.303330 +0.313883 +0.493366 +0.188261 +0.949494 +0.425755 +0.525838 +0.377210 +0.442602 +0.252049 +0.969236 +0.376286 +0.406221 +0.843169 +0.851593 +-0.008347 +0.691565 +0.936344 +0.932728 +0.855151 +0.228901 +0.376300 +0.430158 +0.926922 +0.859966 +0.065299 +0.577963 +0.875677 +0.661953 +0.928806 +-0.072285 +0.961956 +0.985819 +0.331811 +0.630499 +0.749455 +0.449158 +0.938724 +0.696496 +0.912053 +0.885915 +0.539311 +0.811619 +0.317694 +0.376543 +-0.613389 +0.917970 +0.928994 +0.830392 +0.038529 +0.092692 +0.483082 +0.423042 +0.650692 +0.553531 +0.472206 +0.388071 +0.938825 +0.671996 +0.599474 +0.259780 +0.251430 +0.524690 +0.668893 +0.877063 +0.626119 +0.679195 +0.374707 +0.373267 +0.475949 +0.954742 +0.399029 +0.601549 +0.312554 +0.870413 +0.727963 +0.573477 +0.918140 +0.787273 +0.068520 +0.614199 +0.553458 +0.746304 +0.464190 +0.921258 +0.511738 +0.667996 +0.011104 +0.867011 +0.433647 +0.634124 +0.927587 +0.760315 +-0.126515 +0.407999 +0.698022 +0.747620 +0.547296 +0.298152 +0.727901 +0.727876 +0.727876 +-0.193007 +0.332710 +0.520898 +0.358787 +0.767037 +0.442281 +0.512559 +0.922291 +0.201039 +0.484315 +0.342154 +0.408462 +0.972952 +0.903535 +0.922250 +0.291525 +0.733644 +0.381361 +0.659357 +0.842089 +0.060574 +0.990203 +0.270840 +0.473091 +0.835974 +0.762751 +0.700034 +0.762692 +-0.156523 +0.831716 +0.482454 +-0.253611 +0.638747 +0.930709 +0.374272 +0.299488 +0.452870 +0.557890 +0.961157 +0.697729 +0.053012 +0.970210 +0.950070 +0.834959 +-1.859070 +0.993227 +0.619260 +0.629548 +0.978649 +0.342213 +0.768447 +0.878517 +0.755692 +0.798114 +0.744153 +0.461886 +0.953520 +0.625254 +0.561269 +0.568284 +0.584941 +0.921135 +0.479802 +0.394101 +0.433566 +0.483422 +0.613345 +0.444285 +0.924455 +0.929867 +0.590292 +0.506343 +0.243690 +0.492695 +0.908505 +0.308142 +0.919157 +0.930495 +0.771343 +0.918864 +0.964203 +0.583781 +0.708444 +0.960578 +0.317233 +-0.371679 +0.837716 +0.981310 +0.970796 +0.477957 +0.600532 +0.956356 +0.956986 +0.922439 +-0.357995 +0.809394 +0.886836 +0.321094 +0.336445 +0.302180 +0.946449 +0.989713 +0.667739 +0.167702 +0.939105 +0.823907 +0.934256 +-24.704309 +-0.518778 +0.981033 +0.405520 +-0.086988 +0.927767 +0.346875 +0.816624 +0.153394 +0.710443 +0.907076 +0.658826 +0.375059 +0.955684 +0.845794 +0.959808 +0.307302 +0.369814 +0.037009 +0.134652 +0.067032 +0.486680 +0.623513 +0.330650 +-0.029923 +0.570742 +0.424471 +0.951377 +0.676324 +0.657923 +0.530492 +0.148718 +0.136916 +0.994703 +0.034196 +0.213669 +-0.032177 +0.170390 +0.974484 +0.968541 +0.832005 +-0.002062 +-0.014661 +0.266963 +0.328760 +0.342981 +0.477645 +0.068768 +0.439083 +-1.336316 +0.567706 +0.968723 +0.244134 +0.448144 +0.710849 +0.037352 +0.833298 +0.870973 +0.396509 +0.843271 +0.848870 +0.791287 +0.634316 +0.933270 +0.695710 +0.538537 +0.118478 +0.916210 +0.607712 +0.927833 +0.986346 +0.469250 +0.628789 +0.526703 +0.450894 +0.377317 +0.440804 +0.297157 +-0.246904 +0.900487 +0.928328 +0.751667 +0.893142 +0.851541 +0.605894 +0.779251 +0.878762 +0.177490 +0.899972 +0.672260 +0.725162 +0.583671 +-0.024154 +0.950078 +0.786044 +0.776796 +0.933412 +0.406704 +0.566666 +0.762737 +0.901420 +0.258083 +0.191610 +0.647785 +0.904271 +0.765867 +0.934920 +0.505310 +-0.154627 +0.728818 +0.568532 +0.516286 +0.357434 +0.955830 +0.386809 +0.667933 +0.893737 +0.303312 +0.621741 +0.089596 +0.657403 +0.049329 +0.930479 +0.891684 +-0.086138 +0.449918 +0.783360 +0.551580 +0.463660 +0.535969 +0.786472 +0.980785 +0.094269 +0.241357 +0.903629 +0.576384 +0.270617 +0.960685 +-0.385370 +0.421228 +0.421703 +0.927307 +0.017859 +0.188100 +0.240282 +0.891503 +0.985235 +0.827253 +0.873931 +0.910034 +0.912726 +0.767407 +0.782688 +0.690788 +0.799543 +0.890819 +0.375759 +0.906604 +0.599784 +0.139681 +0.582079 +0.659239 +0.943220 +0.712126 +0.922179 +0.420176 +0.600383 +0.525039 +0.473184 +0.642316 +0.488342 +0.507098 +0.701264 +0.801719 +0.772176 +0.453929 +0.038102 +0.275352 +0.041332 +0.895244 +0.060513 +0.936075 +-0.169422 +0.583802 +0.458064 +0.969549 +0.916030 +0.819458 +0.836045 +0.795943 +0.289966 +-1.888319 +-5.458188 +0.648849 +0.206313 +0.695428 +0.659729 +-0.083408 +0.418452 +0.335402 +0.918543 +0.099691 +-0.048076 +0.772167 +0.645418 +0.675175 +0.737571 +0.189764 +0.761048 +0.026277 +0.331804 +0.256081 +0.170254 +0.724627 +0.605024 +0.746782 +0.206441 +0.969380 +0.163075 +0.196286 +0.192633 +0.258906 +0.985794 +0.782676 +0.185088 +-0.440789 +-0.614497 +0.308789 +0.325327 +-0.006529 +0.855141 +0.524136 +0.712676 +0.835307 +0.149056 +0.294441 +0.585137 +0.868245 +0.885438 +0.878813 +0.781905 +0.645486 +0.706877 +-0.392363 +0.909109 +0.888666 +0.785661 +0.823968 +0.882612 +0.937554 +0.670750 +0.929543 +0.969918 +0.903921 +0.867188 +0.730909 +0.917132 +0.792677 +0.385307 +0.930870 +0.319913 +0.971552 +0.912377 +0.765503 +0.644670 +0.925689 +0.553108 +-0.658265 +-0.020457 +0.309277 +0.728098 +0.265193 +0.780521 +0.355550 +0.504300 +0.336460 +0.900322 +0.808123 +0.647269 +0.618635 +0.855384 +0.741868 +0.538550 +0.104650 +-0.163790 +0.079584 +0.523104 +0.855892 +0.112812 +-0.168254 +0.837069 +0.762379 +0.736798 +-0.010691 +0.678386 +0.306743 +0.956146 +0.236347 +0.105687 +0.091927 +0.792653 +0.565556 +0.880600 +0.759127 +0.080682 +0.427631 +0.479494 +0.813533 +0.698143 +0.163768 +0.078603 +0.820248 +0.155638 +0.691797 +0.595947 +0.899670 +0.650708 +0.874440 +0.636279 +0.421504 +0.113082 +0.253886 +0.102529 +0.916701 +0.756774 +0.935352 +0.374078 +-4.539823 +0.719190 +0.902216 +0.993053 +0.844513 +0.928162 +0.504632 +0.878629 +0.785733 +0.909126 +0.871235 +0.867732 +0.843348 +0.598093 +0.469181 +0.656455 +-0.119633 +-0.363268 +0.430178 +0.046530 +0.029318 +-0.086804 +0.053769 +0.532071 +0.753021 +0.480037 +0.433876 +0.470049 +0.749955 +0.085089 +0.781291 +0.859411 +0.001911 +0.649131 +0.838369 +0.847333 +0.831028 +0.893434 +0.255570 +0.184937 +0.771829 +0.211119 +0.578873 +0.151790 +0.552509 +0.397203 +0.310476 +0.238102 +0.049347 +0.094287 +0.484583 +0.641099 +0.168488 +0.330069 +0.378095 +0.765212 +0.279907 +0.727160 +0.734423 +0.725942 +0.871469 +0.822053 +0.956625 +0.915697 +0.907457 +0.719185 +0.444122 +0.966105 +0.337452 +0.941618 +0.749754 +0.408663 +0.554682 +0.865714 +0.826575 +0.627113 +0.579897 +0.966673 +0.517791 +0.788483 +0.768190 +0.610299 +0.781723 +0.755606 +0.776763 +0.672912 +0.917679 +0.866035 +0.732521 +0.122715 +-1.451960 +0.553440 +0.670212 +0.558680 +0.610336 +-0.015459 +0.424953 +0.651022 +0.783355 +0.932472 +0.762682 +0.947596 +0.957500 +0.873358 +0.448624 +0.836779 +0.398357 +0.916581 +0.347909 +0.962077 +0.859902 +0.627293 +0.751513 +0.932878 +0.441330 +0.337229 +0.433877 +-0.770818 +0.628487 +0.617945 +0.645823 +0.885628 +0.836803 +0.875556 +0.948140 +0.736698 +0.575202 +0.461810 +0.831668 +0.787783 +0.932901 +0.776914 +0.271319 +0.527310 +0.610609 +0.740999 +0.743147 +0.930718 +0.939096 +0.836477 +0.579472 +0.741307 +0.800822 +0.731726 +0.781802 +0.932977 +0.930835 +0.430879 +0.928892 +0.933542 +0.932480 +0.703180 +0.798278 +0.985100 +0.741281 +0.683478 +0.929510 +0.993530 +0.587251 +0.238914 +0.353769 +0.839892 +0.918130 +0.737396 +0.928889 +0.917363 +0.928939 +0.694450 +0.491426 +0.884352 +0.110051 +0.831450 +0.793758 +0.536660 +0.748463 +0.727287 +0.686358 +0.292565 +0.789196 +0.816305 +-0.078003 +0.763139 +0.803430 +0.505542 +0.710730 +0.072464 +0.551411 +0.798932 +0.846217 +0.842881 +0.712086 +0.704775 +0.520391 +0.411742 +0.282811 +0.930759 +0.927650 +0.768748 +0.850721 +0.487157 +0.647827 +0.875672 +0.421048 +0.740289 +0.534818 +0.450863 +0.534799 +0.492476 +0.458430 +0.721961 +0.227814 +0.044575 +0.672403 +-0.231440 +0.908417 +-0.245020 +0.639404 +0.877633 +0.762697 +0.872578 +0.209041 +0.188145 +0.338598 +0.625219 +0.372498 +0.672754 +0.598045 +0.018998 +0.305864 +0.274826 +0.971341 +0.250382 +0.874222 +0.501481 +0.026017 +0.609113 +0.235834 +0.041608 +-0.016569 +0.026728 +0.721686 +0.784358 +0.179656 +0.833032 +0.407719 +-0.136524 +0.735270 +0.859639 +0.338266 +0.404431 +0.328575 +0.041357 +0.371109 +0.816299 +0.319567 +0.339706 +0.739178 +0.253007 +0.684979 +0.388992 +0.423214 +0.139658 +0.131400 +0.187190 +0.495488 +0.913926 +0.456000 +0.852407 +0.815589 +0.913173 +0.914114 +0.117124 +0.234507 +0.917017 +0.263370 +0.948775 +0.645058 +0.060113 +0.907032 +0.656379 +0.929997 +0.148143 +0.313382 +0.213022 +0.334430 +0.966510 +0.153686 +0.716451 +0.215987 +0.039795 +0.777541 +0.574080 +0.488888 +0.556505 +0.679504 +0.826587 +0.589064 +0.658329 +0.727203 +0.153029 +0.706737 +0.873654 +0.852488 +-0.108877 +0.296880 +0.154688 +0.886861 +-0.108184 +0.442143 +0.643455 +-0.193641 +0.144318 +0.745773 +0.771950 +0.926123 +-0.230657 +0.774401 +0.257410 +0.790672 +0.699783 +0.602362 +0.822613 +0.920311 +0.419575 +0.921978 +0.455603 +0.583147 +-0.194020 +0.602821 +-0.627881 +-0.146702 +-0.190250 +0.809529 +0.911857 +0.534711 +-0.222068 +-0.247827 +-0.167190 +0.932180 +0.700561 +0.649821 +0.944897 +0.501966 +0.931246 +0.798415 +0.762853 +0.901940 +-2.746264 +0.878122 +-0.345527 +-0.023746 +-0.041170 +-0.150408 +-0.362675 +0.411851 +0.753548 +-0.533529 +0.259244 +-0.096421 +0.883088 +0.095186 +0.452737 +-0.331584 +0.849060 +0.259114 +0.203579 +0.712757 +0.933384 +-0.428319 +-0.343370 +0.817973 +0.702983 +0.562113 +0.464122 +0.938773 +0.970212 +0.067674 +0.920480 +0.789483 +0.777438 +0.825868 +0.345424 +0.942500 +-0.136309 +0.891802 +0.388055 +0.754563 +0.771409 +0.297934 +0.683423 +0.828326 +0.822146 +0.937210 +0.764532 +0.854248 +0.820424 +0.757678 +0.931809 +0.881032 +0.736539 +0.891324 +0.802734 +0.721377 +0.715799 +0.359063 +0.822219 +0.757514 +0.759613 +0.929034 +0.715666 +0.869697 +0.848168 +0.804763 +0.819173 +0.411623 +0.730234 +0.933027 +0.902707 +0.631431 +0.931779 +0.771754 +0.794134 +0.564902 +0.822816 +0.652787 +0.385557 +0.942198 +0.652461 +0.944107 +0.945824 +0.863572 +0.976144 +0.836882 +0.883791 +0.891736 +0.859974 +0.713418 +0.915586 +0.933222 +0.828715 +0.826164 +0.323851 +0.429582 +0.634714 +0.224706 +0.930476 +0.877234 +-0.492476 +0.335539 +0.550685 +-0.285521 +-1.639325 +0.429112 +0.465629 +-0.112255 +0.694691 +-0.016583 +0.032197 +0.754216 +0.802419 +0.023825 +-0.525475 +0.586849 +-0.180683 +0.463888 +0.755139 +0.697610 +0.826341 +0.797569 +0.093895 +0.419515 +0.871411 +0.213768 +0.369640 +0.724709 +0.773355 +0.274939 +0.838120 +0.016040 +-2.344228 +0.124805 +-0.016808 +0.730838 +0.352502 +0.339199 +0.496965 +0.621177 +0.675117 +0.318188 +0.556675 +0.249062 +-0.289934 +0.984286 +0.792652 +0.972363 +0.513487 +0.309017 +0.116454 +0.801578 +0.827445 +0.082855 +0.771339 +0.977028 +0.569584 +0.595792 +0.819325 +-0.172848 +0.937234 +0.848119 +-0.234111 +0.888733 +0.136748 +0.633092 +-10.969799 +0.761814 +0.598978 +-0.042460 +0.957792 +0.037027 +0.733231 +0.776199 +0.258065 +0.655762 +0.830726 +0.244717 +0.808542 +-0.268527 +-0.989884 +0.936373 +0.817779 +0.727042 +0.828625 +0.556126 +0.640005 +0.812963 +0.547513 +0.495838 +0.868827 +0.484371 +0.563557 +0.791791 +0.868857 +0.697385 +0.544457 +0.714193 +0.154542 +0.788233 +0.128897 +0.665355 +-0.164523 +0.866503 +-0.392973 +0.963488 +0.529146 +0.409055 +0.761162 +0.931217 +0.762617 +0.849734 +0.562271 +0.933127 +0.457102 +-0.040712 +0.933217 +0.529781 +0.866859 +0.594779 +0.789555 +0.473117 +-0.080859 +-0.209097 +0.757631 +0.566683 +0.706103 +0.958304 +0.330350 +0.079650 +0.484071 +-0.183067 +0.529558 +0.926890 +0.857790 +0.979756 +0.457768 +0.698178 +0.915911 +0.822242 +0.433343 +0.800625 +0.655866 +0.809633 +0.864140 +0.566812 +0.798135 +0.861051 +0.830887 +0.660867 +0.803487 +0.889302 +0.432283 +0.698999 +0.826863 +0.728781 +0.860949 +0.214040 +0.889623 +0.882223 +0.884037 +0.403529 +0.848281 +0.870742 +0.648233 +0.965232 +0.460146 +0.301200 +0.966176 +0.941885 +0.727152 +0.937915 +0.446139 +0.270929 +0.322994 +0.349627 +0.682065 +0.203632 +0.737904 +0.269371 +0.187544 +0.142014 +0.737717 +0.517148 +0.134285 +0.689167 +0.776437 +0.731279 +0.906813 +0.501134 +0.838271 +0.751980 +-0.434118 +0.421954 +0.360173 +0.800354 +0.772182 +0.368895 +0.897830 +0.445585 +-0.030207 +-0.195892 +0.614051 +0.919632 +0.312264 +0.763550 +0.946328 +0.011569 +0.865611 +0.694979 +0.932262 +0.902542 +0.786687 +0.687284 +0.984796 +0.853458 +0.890095 +0.842181 +0.603017 +0.911516 +-0.052106 +0.539127 +0.658362 +0.771460 +-1.239282 +0.853275 +0.778561 +0.791453 +0.899770 +0.928933 +0.763487 +0.931550 +0.477475 +0.465270 +0.864087 +0.933920 +0.668709 +0.933731 +0.750901 +0.338183 +0.748738 +0.707805 +0.771453 +0.891177 +0.912471 +0.685424 +0.746300 +0.917641 +0.563710 +0.341331 +0.960952 +0.842140 +0.926893 +-0.213504 +0.281810 +0.483370 +0.138575 +0.661329 +0.637276 +-0.294007 +0.547103 +0.010655 +0.482949 +0.664874 +0.228350 +0.391418 +-0.157568 +0.463922 +0.387494 +0.705959 +0.521640 +0.765319 +0.408308 +0.363072 +0.940466 +0.384493 +0.401868 +0.176248 +-0.305507 +0.647870 +0.712763 +0.637082 +0.249890 +0.837654 +0.345909 +0.756151 +0.484978 +0.645557 +0.929549 +0.345686 +0.277245 +-0.485274 +0.439296 +-0.277137 +0.477343 +0.736572 +-0.028867 +0.798889 +0.952262 +0.799287 +0.967276 +0.760051 +0.182277 +0.741016 +0.575261 +0.897291 +0.783540 +0.990447 +0.939258 +0.929881 +-0.088050 +0.951766 +0.478094 +0.498149 +0.648367 +0.934472 +0.754006 +0.644961 +0.258656 +0.837629 +0.458042 +0.661669 +0.902575 +0.838112 +0.935200 +0.572501 +0.655513 +0.772180 +0.783151 +0.308086 +0.841108 +0.887359 +0.353115 +0.890036 +0.522929 +0.732083 +0.439401 +0.266523 +0.601727 +0.085705 +0.460373 +0.643680 +0.777052 +0.124735 +0.697013 +0.715631 +-0.177327 +0.544061 +0.108879 +-0.017247 +0.174091 +0.409267 +0.930626 +0.885022 +0.179389 +-0.071502 +0.762918 +0.857681 +0.788884 +-0.200019 +-0.328440 +0.930205 +0.929925 +0.805577 +0.529796 +-0.313008 +0.823670 +-0.821240 +0.082985 +0.681309 +0.758893 +0.530491 +0.485248 +0.905616 +0.597673 +0.725957 +0.226379 +-0.118788 +0.874574 +0.487429 +0.726002 +0.678271 +0.876128 +-0.240214 +0.056261 +0.817197 +0.754174 +0.744612 +0.862167 +0.912756 +0.968307 +0.233841 +0.657982 +-0.033177 +0.353148 +0.395771 +0.711141 +0.871796 +0.676749 +0.662649 +0.636490 +0.597153 +-0.178720 +0.926664 +0.557654 +0.722728 +-0.040529 +-0.103936 +0.866499 +0.845599 +0.441997 +0.828362 +-0.193845 +0.587519 +0.690159 +0.472225 +-0.154706 +-0.184615 +0.798801 +0.674305 +0.926292 +0.296113 +0.866346 +0.755318 +-0.117960 +0.356776 +-0.114452 +-0.156527 +0.613480 +0.799224 +0.279647 +0.824379 +0.284798 +0.567898 +0.222226 +0.981513 +0.840329 +0.770358 +0.048228 +-0.087251 +0.240916 +0.519627 +0.762132 +0.167578 +0.960482 +0.499209 +0.921392 +0.874585 +0.753492 +0.304158 +-0.245726 +0.093086 +0.990417 +0.268916 +0.428578 +0.259384 +0.363118 +0.260312 +-0.219780 +0.526189 +0.446690 +0.215338 +0.275002 +0.650348 +0.390419 +0.432459 +0.731845 +0.853300 +0.982873 +0.555403 +0.967153 +0.358450 +0.559393 +0.457090 +-0.276107 +0.776402 +-0.197879 +-0.142321 +0.973471 +-0.175539 +0.494364 +0.056969 +0.472326 +0.359534 +0.759124 +-0.207320 +0.378967 +0.762447 +-0.144312 +0.785423 +0.783798 +0.867823 +0.558297 +0.563329 +0.169467 +0.879303 +0.694299 +0.611936 +0.761009 +0.766917 +0.258979 +0.424088 +0.584011 +0.258799 +0.434398 +0.133027 +0.623975 +-0.101440 +0.649504 +0.554999 +0.114187 +0.772057 +0.276025 +0.161472 +0.026357 +0.337607 +0.075582 +-0.160309 +0.230096 +0.837284 +0.557747 +-0.332382 +0.708288 +0.820376 +0.521109 +0.405777 +0.548151 +0.466547 +0.253457 +0.813494 +-0.090570 +0.681886 +0.161006 +0.929984 +0.380384 +0.540904 +-0.052851 +0.604103 +0.688488 +0.595332 +0.292371 +0.740123 +0.724948 +0.628968 +0.792835 +0.955157 +0.649497 +0.588724 +0.314759 +0.472355 +0.277013 +0.446750 +0.543726 +0.578827 +0.714236 +0.675640 +0.585168 +0.926246 +0.810878 +0.924605 +0.796101 +0.474830 +0.924636 +0.121347 +0.132323 +0.552726 +0.558971 +0.493636 +0.919972 +0.936360 +0.349997 +0.186358 +0.585205 +0.996426 +0.964125 +0.560148 +0.980526 +0.659839 +0.983178 +0.884747 +0.714973 +0.588744 +0.804180 +0.137125 +0.940885 +0.706725 +0.592210 +0.672225 +0.260495 +0.921840 +0.735632 +0.584127 +0.513606 +0.582761 +0.353291 +0.200053 +0.518835 +0.622128 +0.426044 +0.622237 +0.554129 +0.389362 +0.431716 +0.355811 +0.852866 +0.993385 +0.654101 +0.995936 +0.986440 +0.903232 +0.670089 +0.673607 +0.205772 +0.910993 +0.528473 +0.627595 +0.850686 +0.854462 +0.963311 +0.549968 +0.617715 +0.727058 +0.333416 +0.785471 +0.686175 +0.913221 +0.718413 +0.965076 +0.692724 +0.803830 +0.941461 +0.673608 +0.866450 +0.916275 +0.817073 +0.251237 +0.532523 +0.883323 +0.812474 +0.493510 +0.756407 +0.871113 +0.936068 +0.335049 +0.335049 +0.786776 +0.897976 +-0.141896 +0.296583 +0.793104 +-17.760907 +0.582593 +-0.419793 +0.612202 +0.572391 +0.992153 +0.114285 +0.228991 +0.989758 +0.877042 +-0.679287 +0.051035 +0.498936 +0.993254 +0.803398 +0.994051 +0.923283 +0.855403 +0.492945 +0.691339 +-0.041630 +0.696167 +0.700443 +0.947169 +0.966203 +0.538765 +0.711696 +0.748093 +0.854460 +0.782730 +0.953616 +0.908773 +0.103471 +0.835920 +0.853066 +0.713017 +0.546975 +0.666756 +0.447156 +0.028417 +0.833492 +0.841514 +0.783748 +0.236583 +0.139118 +0.640559 +0.870980 +0.015680 +0.462554 +0.726961 +0.825596 +0.956338 +0.960641 +0.490290 +0.822910 +0.711942 +0.589793 +0.582620 +0.859125 +0.437120 +0.469846 +0.499839 +0.998101 +0.868192 +0.513491 +0.923825 +0.817042 +0.332141 +0.708238 +0.663721 +0.710729 +0.394392 +0.611903 +0.938706 +0.032615 +0.648428 +0.988084 +0.024938 +0.399224 +-0.047355 +0.279422 +0.162980 +0.150423 +0.402482 +0.009431 +0.416912 +0.813149 +0.698552 +0.557606 +0.694804 +0.082361 +0.045938 +0.380223 +0.931438 +0.559221 +0.486546 +0.446743 +0.516534 +0.598345 +0.287897 +-0.838866 +0.840681 +0.514057 +0.761468 +0.578318 +0.053451 +0.140191 +0.201839 +-1.256298 +-0.126131 +0.788842 +0.420371 +0.806657 +0.044173 +0.742450 +0.739160 +0.747747 +0.700041 +0.628532 +0.837681 +0.706431 +0.571707 +0.957321 +0.836899 +0.673061 +0.931720 +0.928090 +0.850672 +0.667634 +0.679844 +0.459678 +0.884280 +0.645860 +0.369634 +0.253635 +0.703817 +0.276284 +0.533730 +0.876590 +-0.133124 +0.923074 +0.991057 +0.978316 +0.819741 +0.848199 +0.974381 +0.537022 +0.678999 +0.521386 +0.979961 +0.448686 +0.883889 +0.530138 +-1.332966 +0.451573 +0.849827 +0.987083 +0.749401 +0.368926 +0.743825 +0.494405 +0.277044 +0.708921 +0.783867 +0.689879 +0.611944 +0.860535 +0.771374 +0.735361 +0.851821 +0.608800 +0.617695 +0.753246 +0.857574 +0.768719 +0.854839 +0.264341 +0.736356 +0.747325 +0.848568 +0.527280 +0.711707 +0.786572 +0.715179 +0.643982 +0.628475 +0.497197 +0.908447 +0.721943 +0.435615 +0.755424 +0.905045 +0.885725 +0.809908 +0.974153 +0.794909 +-26.575386 +0.262448 +0.250277 +0.747110 +0.743599 +0.660412 +0.893618 +0.977345 +0.280563 +0.760138 +0.899255 +-0.145252 +0.673148 +0.322192 +0.883852 +0.838629 +0.759932 +0.745054 +0.822776 +0.888157 +0.900914 +0.473974 +0.958225 +0.026231 +0.778754 +-1.117322 +0.561096 +-0.873007 +0.196938 +0.512655 +0.150506 +0.700277 +0.515169 +0.454470 +0.121484 +0.316145 +0.157729 +0.501666 +0.293319 +0.299736 +0.713270 +0.271179 +0.235825 +-1.251497 +0.913280 +0.304495 +0.388828 +-0.034863 +0.395681 +-0.034716 +0.996284 +0.494937 +0.863391 +0.450283 +0.036338 +0.754995 +0.839491 +0.658860 +0.613612 +0.698108 +0.763696 +-16.693934 +0.057199 +0.562661 +-0.006009 +0.604021 +0.778246 +0.831028 +0.596466 +0.332577 +-0.277819 +0.361417 +0.980983 +0.756754 +0.918545 +0.307261 +-0.093146 +0.768152 +0.125217 +0.274081 +-0.016479 +0.887204 +0.874761 +0.531070 +0.918958 +0.524390 +-0.327620 +0.690228 +0.845290 +0.578917 +0.741486 +0.789799 +0.746413 +0.533449 +-2.249370 +0.676381 +0.871912 +0.950611 +0.862970 +0.411668 +0.279735 +-0.103301 +0.930335 +0.895482 +0.248329 +0.653499 +0.878508 +0.377188 +0.883620 +0.876418 +0.682623 +0.578317 +0.864460 +0.323790 +0.715561 +0.543479 +0.329624 +0.264783 +0.441429 +-0.324900 +0.870631 +0.655052 +0.796581 +0.523106 +0.430543 +0.644283 +0.282536 +0.306157 +0.661122 +0.241503 +0.233135 +0.385814 +0.923335 +0.912081 +0.533605 +0.171744 +0.087390 +0.408975 +0.833752 +0.871543 +0.106348 +0.948513 +0.781777 +0.869362 +0.486680 +0.740677 +-0.276643 +0.527474 +0.565470 +0.943671 +0.698732 +-0.022560 +0.304058 +0.800930 +0.989943 +-0.424453 +0.415423 +0.443825 +0.932675 +0.601882 +0.869243 +0.976397 +0.900304 +0.271180 +0.654813 +0.828499 +0.576513 +0.959362 +-0.385575 +-0.346286 +0.929465 +0.626165 +0.973943 +0.736796 +0.517766 +0.724765 +0.491229 +0.830758 +0.240878 +0.050662 +0.949323 +0.930702 +0.921565 +0.930702 +0.803441 +0.142048 +0.239941 +0.910135 +0.833195 +0.799725 +0.759480 +0.645574 +0.838662 +0.633875 +0.739139 +0.758064 +0.320503 +0.738046 +0.736834 +0.796497 +0.879706 +0.231725 +0.778339 +0.337260 +0.426734 +0.885840 +0.594356 +0.411942 +0.592906 +-0.169598 +0.083597 +0.885787 +0.934554 +0.996084 +0.972645 +0.897222 +0.843721 +0.851021 +0.448540 +0.899227 +0.948774 +0.934723 +0.734614 +0.022079 +0.318149 +0.857602 +0.520762 +0.655902 +0.826021 +0.842373 +0.800375 +0.078523 +0.748924 +0.408696 +0.827649 +0.952687 +0.204398 +0.743713 +0.760985 +0.948216 +0.486679 +0.149885 +0.662249 +0.345180 +0.907835 +0.544506 +0.749508 +0.490557 +0.890007 +0.907081 +0.947747 +0.931826 +0.269642 +0.397807 +0.794169 +0.912470 +0.141894 +0.957166 +0.498724 +0.381168 +0.789133 +0.429222 +0.587497 +0.940073 +0.964971 +0.559760 +0.204430 +0.467210 +0.347901 +0.618946 +0.932334 +0.993693 +0.859631 +0.580727 +0.927041 +0.004759 +0.237381 +0.928862 +0.253468 +0.460585 +0.421419 +0.026713 +0.857230 +0.709721 +0.709721 +0.672328 +0.842415 +0.398469 +0.437691 +0.421276 +0.089579 +0.718609 +0.605272 +0.605272 +0.579347 +0.579347 +0.813186 +0.527674 +0.196123 +0.562966 +0.851561 +0.990932 +0.976694 +0.949823 +0.954431 +0.457809 +0.590392 +0.334650 +0.832250 +0.951059 +0.911356 +0.792366 +0.861311 +0.959685 +-1.129955 +0.810923 +0.892980 +0.317402 +0.814492 +0.997243 +0.546246 +0.230175 +0.892447 +0.744071 +0.754794 +0.736012 +0.969117 +0.826020 +0.350637 +0.531423 +0.590478 +0.952214 +0.845106 +0.422169 +0.955543 +0.928442 +0.956119 +0.509499 +0.217034 +0.202179 +0.958175 +0.946528 +0.973450 +0.191446 +0.431616 +0.784874 +0.847864 +0.955774 +0.953668 +0.218587 +0.831857 +0.123245 +0.029573 +-0.015413 +0.865670 +0.072878 +0.694399 +0.774606 +0.104054 +0.057408 +0.058907 +0.089644 +0.501243 +0.331334 +0.525568 +0.565280 +0.349085 +0.691267 +0.434880 +0.761216 +0.114254 +0.247011 +0.695098 +0.655040 +0.223145 +0.141934 +-2.842212 +0.897890 +0.227022 +0.911365 +0.359797 +0.054568 +0.640702 +0.668848 +0.735127 +0.071718 +0.832152 +0.747387 +0.672480 +0.797899 +0.552659 +0.717199 +0.740740 +0.695837 +-0.052844 +0.911152 +0.882823 +0.682057 +0.031082 +0.733847 +0.160046 +0.942150 +0.177425 +0.038314 +0.197842 +0.760574 +0.317730 +0.659519 +0.286805 +0.680409 +0.668898 +0.934304 +0.752568 +0.954915 +0.950943 +0.036164 +0.547363 +0.738603 +0.414099 +0.360694 +0.117061 +0.637245 +0.653849 +0.817000 +0.596747 +0.019854 +0.483695 +0.374749 +0.683568 +0.785864 +0.837094 +0.648210 +0.478422 +-0.018533 +0.786408 +0.560587 +0.566425 +0.410892 +0.533327 +0.244601 +0.748024 +0.859623 +0.428128 +0.578595 +0.789367 +0.949618 +0.266034 +0.721284 +0.918531 +0.798256 +0.379860 +0.424321 +0.285035 +0.716668 +0.507040 +0.021096 +0.093441 +0.905268 +0.936105 +0.641830 +0.896207 +0.803637 +0.945746 +0.729859 +0.441899 +0.387758 +0.643485 +0.353523 +0.444127 +-1.064171 +0.629859 +0.229946 +0.599221 +0.365307 +0.650218 +0.172834 +0.353681 +0.458704 +0.074503 +0.405903 +0.518207 +0.226384 +0.430838 +0.807412 +0.672210 +0.159955 +0.227668 +0.282728 +0.130774 +0.370664 +0.528534 +0.283782 +0.382448 +0.061206 +0.919297 +0.727826 +0.749010 +0.900643 +0.182826 +0.098499 +0.965514 +0.935117 +0.913565 +0.244625 +0.794123 +0.103282 +0.591639 +0.882850 +0.482992 +0.244247 +0.283017 +0.057951 +0.893992 +0.884454 +0.405607 +0.171477 +0.225865 +0.218761 +0.227652 +0.852529 +0.471779 +0.640319 +0.742901 +0.876415 +0.720879 +0.315531 +0.188259 +0.666402 +0.348099 +0.893183 +0.999574 +0.407912 +0.935528 +0.860080 +0.936947 +-0.315975 +0.045033 +0.374211 +0.947246 +0.648034 +0.926618 +0.520974 +0.658584 +0.540414 +0.391636 +0.696324 +0.477883 +0.517198 +0.972473 +0.288869 +0.186134 +0.422559 +0.429118 +0.277079 +0.160924 +-0.096157 +0.848820 +0.352444 +0.922302 +0.920410 +0.931061 +0.686939 +0.931806 +0.972198 +0.647646 +0.956874 +0.460160 +0.944118 +0.929623 +0.978598 +0.926269 +0.541601 +0.680744 +0.936666 +0.399901 +0.433235 +0.982830 +0.560935 +0.769352 +0.548999 +0.328163 +0.483893 +0.530654 +0.940360 +-0.426675 +0.557125 +0.368428 +0.415914 +-1.233234 +0.307730 +0.163683 +0.583096 +0.221527 +0.435577 +0.993625 +0.938939 +0.894253 +0.439826 +-0.037676 +0.240916 +0.056279 +0.320082 +0.464125 +0.939443 +0.026382 +0.277725 +0.533139 +0.540988 +0.265859 +0.007975 +0.698188 +0.513896 +0.986568 +0.768709 +0.972361 +0.743822 +0.263989 +0.691264 +0.110849 +0.041141 +0.005773 +0.279075 +0.183556 +-0.655280 +0.471440 +0.928362 +0.636812 +0.026804 +0.112386 +-3.198922 +0.655521 +0.803487 +0.525823 +0.822668 +0.043226 +0.476781 +-0.134845 +0.822640 +0.404909 +0.527069 +0.817430 +0.127814 +0.940780 +0.977846 +0.891877 +0.268920 +0.490245 +0.106252 +0.139101 +-4.380569 +0.631807 +0.304038 +0.065493 +0.442656 +0.985706 +0.442533 +0.809783 +0.849990 +0.530373 +0.622933 +0.153233 +0.570356 +0.570356 +0.340721 +0.467748 +0.529571 +-0.351293 +0.995295 +0.762258 +0.682453 +-0.043260 +0.775657 +0.737258 +0.441908 +0.847215 +0.978759 +0.796603 +0.925823 +0.792659 +-0.115821 +0.883007 +0.909063 +0.818930 +0.772294 +0.402700 +0.594140 +0.770124 +-0.290989 +-0.439517 +0.788092 +0.874402 +0.950522 +0.673192 +0.876670 +0.793471 +0.983631 +0.289418 +-0.211171 +0.687608 +0.730472 +0.719398 +0.911194 +0.835594 +-1.383664 +0.930324 +0.931896 +0.852401 +0.977952 +0.801075 +0.699132 +0.939924 +0.746640 +0.791590 +0.611863 +0.557797 +0.994982 +0.951533 +0.724174 +0.599960 +0.166141 +0.084318 +-0.058811 +0.277704 +0.435309 +0.751872 +0.907704 +0.153792 +0.198202 +0.230789 +0.739297 +0.630295 +0.166172 +0.137508 +0.603738 +0.952417 +0.506235 +0.200837 +0.234657 +0.867438 +0.064465 +0.225565 +0.943414 +0.806843 +0.605605 +0.209959 +0.812439 +0.957544 +0.739994 +0.631861 +0.347667 +0.860274 +0.944496 +0.718404 +0.019857 +0.382029 +0.986630 +0.730083 +0.922565 +0.930513 +0.942289 +0.909280 +-0.357747 +0.410243 +0.727930 +0.654973 +0.868891 +0.682783 +0.833058 +0.794742 +0.173230 +0.370757 +-0.420932 +0.462355 +0.787836 +0.730152 +0.503992 +0.189606 +0.647219 +0.980703 +0.454450 +0.395735 +0.850623 +0.736737 +0.544872 +0.402475 +0.931423 +0.907532 +0.929845 +0.834827 +0.214125 +0.952994 +0.719270 +-0.327070 +0.406814 +0.542269 +0.534915 +0.758334 +-0.017948 +0.908920 +0.878662 +0.928075 +0.565862 +0.703726 +0.895440 +0.423686 +0.361017 +0.503025 +0.504661 +0.330747 +0.219460 +0.460105 +0.919318 +0.849993 +0.453498 +0.616570 +0.691457 +0.432825 +0.869436 +0.645761 +0.270253 +0.860131 +0.702186 +0.349357 +0.310650 +0.925927 +0.134989 +0.437420 +0.985342 +0.736972 +0.294254 +0.931858 +0.465804 +0.744247 +0.770389 +0.698039 +0.217961 +0.158867 +0.674766 +0.915718 +0.257335 +-0.195911 +0.921578 +0.594320 +-10.929268 +-0.137981 +0.134502 +0.320973 +0.447540 +0.551045 +0.262110 +0.706619 +-1.265305 +0.327372 +0.898616 +0.981223 +0.731181 +0.087292 +0.589540 +0.240749 +0.210314 +0.168534 +-0.135281 +0.484487 +0.349302 +0.695445 +0.934096 +0.505981 +0.944068 +0.743454 +0.486058 +0.939972 +0.705877 +0.933857 +-0.014723 +0.517631 +0.854377 +0.843066 +0.830921 +0.879120 +0.702876 +0.737489 +0.929186 +0.934663 +0.954839 +0.978277 +0.833096 +0.957095 +0.897435 +0.889752 +0.615163 +-0.006191 +0.860938 +0.657754 +0.862243 +0.918183 +0.848704 +0.320436 +0.338535 +0.796679 +0.460837 +0.232217 +0.511446 +0.440098 +0.229652 +0.531869 +0.312993 +0.622776 +0.197552 +0.317469 +0.083554 +0.907058 +0.355513 +0.926617 +0.623368 +0.408590 +0.163629 +0.951604 +0.950638 +0.885110 +0.407493 +0.866401 +0.753827 +0.534334 +0.918030 +0.947920 +0.771306 +0.251683 +0.890237 +0.922801 +0.409132 +0.793614 +0.752736 +0.919803 +0.462653 +0.921188 +0.839896 +0.498095 +0.208482 +0.630026 +0.484238 +0.623657 +0.746691 +0.070832 +0.882486 +-0.128100 +0.678451 +-0.192605 +0.882666 +-0.157910 +-0.275589 +0.157307 +0.959057 +0.242495 +0.996334 +0.879758 +0.890338 +0.912469 +0.925480 +0.759558 +0.321615 +0.961293 +0.270647 +0.252347 +0.408298 +0.603990 +0.341047 +0.056810 +0.371676 +0.288452 +0.230181 +0.037195 +0.417277 +0.552152 +0.538127 +0.596471 +0.223952 +0.495292 +0.560935 +0.503453 +0.828431 +-0.238549 +0.094483 +-0.127229 +0.836125 +0.956629 +0.331137 +0.981708 +0.514920 +0.647551 +0.647551 +0.471676 +0.107093 +0.867410 +0.897852 +0.413854 +0.292746 +0.213682 +0.704523 +0.623018 +0.462925 +0.160613 +0.988441 +0.914008 +0.237501 +0.372827 +0.442687 +0.139175 +-2.581747 +0.116136 +0.386282 +0.973267 +0.586050 +0.887354 +0.188882 +0.688574 +0.884917 +0.311865 +-2.347082 +0.421602 +0.783432 +-0.275127 +0.311581 +0.262783 +-0.286446 +0.752342 +0.821013 +0.759640 +0.997982 +0.724961 +0.566726 +0.927458 +0.491540 +0.931423 +-0.309694 +0.735389 +0.999222 +0.943664 +0.922474 +0.566110 +-1.015513 +0.804177 +0.562365 +-0.336253 +0.713873 +0.776469 +0.776424 +0.832630 +0.398557 +0.469149 +0.684590 +0.421039 +0.358521 +0.804351 +-0.265663 +0.746902 +0.908882 +0.293142 +0.618473 +0.901641 +-0.030070 +0.975257 +0.925003 +0.900788 +0.675959 +0.800781 +0.791225 +0.935628 +0.890119 +0.958065 +0.507211 +0.790124 +0.472460 +0.610905 +0.862308 +-0.469237 +0.981670 +0.801040 +0.925095 +0.917560 +0.716279 +0.450291 +0.940159 +0.690269 +0.833818 +0.745819 +0.729484 +0.515916 +0.748634 +0.841525 +0.551317 +0.855179 +0.779512 +0.599919 +0.647662 +0.689464 +0.793159 +0.756546 +0.522795 +-0.094740 +0.466118 +0.766852 +0.396609 +0.253533 +0.467691 +0.516084 +0.896836 +0.921029 +0.884375 +0.711143 +0.653899 +-0.100274 +0.579224 +0.891652 +0.580303 +0.721208 +0.005245 +0.708975 +0.922305 +0.826886 +0.017565 +0.696871 +0.883037 +0.764216 +0.882543 +0.731881 +0.586954 +0.529198 +0.917353 +0.959534 +0.293537 +0.691580 +0.592866 +0.183779 +0.873514 +0.541009 +0.744299 +0.703024 +0.687376 +0.738957 +0.740982 +0.494181 +0.452856 +0.809041 +0.840682 +0.571767 +0.458481 +0.986597 +0.876714 +0.270160 +0.894498 +-0.140715 +0.948218 +0.619807 +0.004203 +0.242866 +0.254493 +0.315905 +0.893200 +0.293263 +0.126048 +0.310045 +0.823676 +0.304094 +0.052245 +0.401741 +0.180719 +-0.045489 +0.944709 +0.295399 +0.455313 +0.937182 +0.555540 +0.303633 +0.548168 +0.171346 +0.398669 +0.619776 +-0.098956 +0.930503 +-0.064464 +0.619231 +0.277640 +0.611505 +0.798821 +0.646558 +0.203782 +0.593928 +0.539894 +0.835778 +0.844147 +0.914608 +0.906185 +0.287262 +0.756677 +0.484620 +0.633664 +0.816734 +0.937351 +0.643617 +0.809014 +0.662569 +0.744553 +0.523997 +0.825489 +0.803321 +0.847953 +0.987213 +0.902845 +0.733149 +0.411717 +0.985082 +0.469981 +0.830726 +0.475402 +0.191641 +0.908882 +0.181346 +0.946010 +0.994742 +0.387239 +0.559998 +0.797166 +0.339793 +0.429303 +0.783024 +0.648797 +0.254266 +0.141112 +0.924017 +0.930702 +0.390301 +0.391944 +0.993067 +0.508267 +0.529381 +0.705309 +0.895987 +0.525950 +0.430355 +0.063729 +0.901345 +0.292771 +0.594770 +0.803817 +0.436029 +0.190872 +0.749881 +0.872745 +0.542121 +-0.122449 +0.750308 +0.482429 +0.930631 +0.385076 +0.552905 +0.583909 +0.878385 +-0.282381 +0.911036 +0.690513 +0.960624 +0.843377 +0.676975 +0.915787 +0.568240 +0.331757 +0.400722 +0.865672 +0.179068 +0.753138 +0.918866 +0.715098 +0.244547 +0.724067 +0.776716 +0.829046 +0.847399 +0.880905 +0.204312 +0.097895 +0.727374 +0.237616 +0.290915 +0.037740 +0.250898 +-0.000982 +0.625078 +0.052000 +-0.045482 +0.318304 +0.993460 +-0.236528 +0.566937 +0.247937 +-0.308108 +0.907176 +0.172379 +0.957441 +0.580284 +0.572398 +0.257417 +0.855702 +0.986565 +0.569412 +0.676497 +0.620668 +0.946887 +0.644906 +0.623118 +0.493272 +0.375200 +0.084895 +0.568802 +0.470189 +0.698970 +0.324897 +0.375437 +0.478749 +0.925273 +0.022634 +0.782331 +0.558169 +0.747638 +0.930928 +0.548757 +0.577455 +0.898822 +0.629196 +0.617242 +0.918738 +0.465102 +0.373396 +0.750451 +0.576236 +-9.914891 +0.466465 +0.944893 +0.474248 +0.360396 +0.411374 +-0.197863 +0.942935 +0.656016 +0.408396 +0.901463 +0.464904 +0.925545 +0.519430 +0.341008 +0.502134 +0.641584 +0.918637 +0.919438 +0.546264 +0.955213 +0.270301 +0.958732 +0.913162 +0.560967 +0.457219 +0.848939 +0.342829 +0.580602 +0.975781 +0.773555 +0.343185 +0.951346 +0.972282 +0.518653 +0.972754 +0.667051 +0.705869 +0.244827 +-1.567100 +0.929390 +0.965572 +0.415480 +0.938886 +0.977043 +0.968169 +0.891063 +0.936371 +0.046064 +0.870843 +-0.696805 +0.449047 +0.341338 +0.045091 +0.566688 +0.481819 +-0.508321 +0.599504 +0.137064 +0.912302 +-12.500480 +0.269639 +0.437170 +0.930477 +0.920812 +0.359585 +-0.371924 +0.224568 +0.827202 +0.730627 +0.640429 +0.683918 +0.638230 +0.877513 +0.162604 +0.543824 +0.799304 +0.254305 +0.896259 +0.827299 +-0.471672 +-0.540180 +0.821329 +0.896235 +0.225496 +0.138977 +0.636117 +0.678056 +0.979415 +0.821888 +0.858581 +0.943838 +0.742744 +0.839492 +-0.837712 +0.857167 +0.863874 +0.916893 +0.503955 +0.852304 +0.316701 +0.896707 +0.509999 +0.976703 +0.383707 +0.915063 +0.056072 +0.208995 +0.879277 +0.345305 +0.815420 +0.637516 +0.587107 +0.860816 +0.931500 +0.505894 +0.995791 +0.906230 +0.854907 +0.958989 +0.593109 +0.824212 +0.921592 +0.757087 +0.927490 +0.744027 +0.900530 +0.834727 +0.902094 +0.524095 +0.475205 +0.979184 +0.582215 +0.664921 +0.855342 +0.064593 +-0.074253 +0.655832 +0.946453 +0.636282 +0.804684 +0.288746 +0.948038 +0.929170 +0.923459 +0.851419 +0.961480 +0.599723 +0.854324 +0.732032 +0.530995 +0.283507 +0.800464 +0.488518 +0.350534 +0.449123 +0.039442 +0.557265 +0.834179 +0.924189 +0.865386 +0.732262 +0.378043 +0.429790 +0.959722 +0.002284 +0.806057 +0.258364 +0.265307 +0.441858 +0.913851 +0.937251 +0.171377 +0.447802 +0.860795 +0.876243 +0.707329 +0.847793 +0.936348 +0.615027 +0.524223 +0.963581 +0.729660 +0.776539 +-9.342846 +0.643842 +0.707181 +-0.069046 +0.513437 +0.262604 +0.692341 +0.853462 +0.721071 +0.523291 +0.935835 +-0.137962 +0.467421 +-0.421397 +0.662743 +0.033589 +0.797536 +0.276441 +0.972776 +0.177255 +0.173714 +0.840070 +0.780568 +0.714104 +0.566761 +0.797705 +0.012005 +0.238939 +0.773463 +0.862159 +-0.272850 +0.508281 +-0.329746 +0.542200 +0.761164 +0.067190 +0.018575 +0.721207 +-0.280782 +0.329939 +0.613746 +0.705494 +0.523629 +0.658670 +0.740779 +0.505482 +-0.131253 +0.627898 +0.747054 +0.682781 +0.496407 +0.555002 +0.587391 +0.745820 +0.531698 +0.557590 +0.935931 +0.926662 +0.932103 +0.332984 +0.801183 +0.573468 +0.583051 +0.990436 +0.439669 +0.415092 +0.213164 +0.000846 +-0.009439 +0.224816 +0.787435 +0.213627 +0.742989 +0.543928 +0.843160 +0.731957 +0.746776 +0.927437 +0.910251 +0.713886 +0.759609 +0.928560 +0.728432 +0.896644 +0.595409 +0.858209 +0.719527 +0.550484 +0.425789 +0.994118 +0.445046 +0.903442 +0.926212 +0.451301 +0.714628 +0.237459 +0.473012 +0.820291 +0.369256 +0.634242 +0.722735 +0.912370 +0.636788 +0.946803 +0.881994 +0.846431 +0.334828 +0.117511 +0.707770 +0.870474 +0.828490 +0.374189 +0.441208 +0.343446 +0.809080 +0.310365 +0.929790 +0.894370 +0.892374 +0.409785 +0.287473 +-0.624556 +0.926754 +0.634384 +0.531160 +0.997674 +0.555228 +0.834973 +0.783885 +0.991069 +-0.198039 +0.921499 +0.915886 +0.766314 +0.609935 +0.929925 +0.925107 +0.815747 +0.916286 +0.881529 +0.564668 +-0.204987 +0.397708 +0.641335 +0.456801 +0.435700 +0.388326 +0.797897 +0.452361 +0.873860 +0.936379 +0.853594 +0.441804 +0.918551 +0.981008 +0.651239 +0.540653 +0.356042 +0.697598 +0.524901 +0.401452 +0.930000 +0.866434 +0.536287 +0.805769 +0.955181 +0.266548 +0.532634 +0.728015 +0.175852 +0.132627 +0.562777 +0.927032 +0.714058 +0.641112 +0.937112 +0.669659 +0.913919 +0.930334 +0.929846 +0.773662 +0.377512 +0.134730 +0.345797 +0.513796 +0.408125 +0.547179 +0.333479 +0.923438 +0.466925 +0.557611 +0.614331 +0.693749 +0.341443 +0.802836 +0.633111 +0.108150 +0.967578 +0.612610 +0.704633 +0.570161 +0.617140 +0.019943 +0.171401 +0.807846 +-0.015002 +0.539336 +0.922231 +0.747163 +0.799626 +0.959234 +0.858565 +0.630595 +-0.546503 +0.676946 +0.915968 +0.873082 +0.916833 +0.937283 +0.939222 +0.868705 +0.903693 +0.463967 +0.537685 +0.951973 +0.566313 +-0.077479 +0.939568 +0.679736 +0.661310 +0.848139 +0.986921 +0.317679 +0.663131 +0.947614 +0.498524 +0.860325 +0.947130 +0.944271 +0.603698 +0.506507 +0.775831 +0.875889 +0.700804 +0.888407 +0.703619 +0.860550 +0.530787 +0.729054 +0.682572 +0.053864 +0.840418 +0.809503 +0.523668 +0.767236 +0.832927 +-0.003658 +0.835847 +0.056571 +0.677509 +0.472444 +0.683065 +0.879959 +0.929491 +0.539272 +0.335673 +0.673038 +0.344798 +0.739681 +0.678690 +0.903959 +0.098093 +0.890692 +0.932796 +0.837607 +0.912576 +0.722893 +0.484904 +0.701783 +0.585405 +0.023866 +0.839045 +0.341012 +0.951367 +0.428256 +0.883144 +0.531368 +0.321153 +0.171724 +0.510762 +0.726520 +0.181108 +0.193422 +0.165064 +0.296704 +0.375728 +0.890823 +0.521481 +0.370480 +0.160756 +0.996639 +0.667604 +0.840688 +0.416267 +0.954108 +0.902165 +0.456563 +0.946881 +0.569774 +0.605693 +0.755390 +0.750700 +0.176244 +0.460764 +0.223851 +0.931966 +0.956228 +-1.009669 +0.137656 +0.819386 +0.398132 +0.282949 +0.913619 +-0.007598 +0.646690 +0.159807 +0.148091 +0.717145 +0.464553 +0.504009 +0.947949 +-12.361087 +0.756304 +0.326230 +-0.105122 +0.010516 +0.413696 +0.200800 +0.497644 +0.401294 +-1.544334 +0.330843 +0.395088 +0.804946 +0.459275 +-4.155482 +-10.978938 +0.505616 +0.366126 +0.862485 +0.878115 +0.546262 +0.324164 +0.943867 +0.908558 +0.492974 +0.846128 +0.203217 +0.459601 +0.612456 +0.336438 +0.578036 +0.558013 +0.671091 +0.060809 +0.474674 +0.813098 +0.960844 +0.627675 +0.798276 +0.846090 +-0.397284 +0.663574 +0.644015 +0.179395 +0.859231 +0.678076 +0.876600 +0.939151 +0.961686 +0.147619 +-0.832081 +0.808758 +0.308913 +0.270992 +0.226966 +0.977575 +0.806422 +0.042867 +0.738797 +0.202115 +0.940589 +0.736983 +0.327074 +0.999235 +0.224450 +0.692711 +0.726037 +0.935644 +0.269452 +0.572546 +0.527595 +0.611708 +0.914610 +0.317969 +0.309008 +0.250272 +0.250191 +0.548352 +0.535019 +0.830775 +0.862980 +-0.424079 +0.858878 +-0.084103 +-0.019082 +-0.409893 +0.902658 +0.547399 +0.781971 +0.745578 +0.593695 +0.848484 +0.796793 +-0.404474 +0.877746 +0.879250 +0.484290 +0.848834 +0.786600 +0.701190 +-0.851864 +0.873001 +0.507664 +0.486035 +0.563743 +0.484195 +0.553421 +0.859145 +0.114407 +0.588805 +0.307714 +0.141654 +-0.179009 +0.230285 +0.247901 +-0.054180 +-0.018069 +-0.243189 +0.506645 +0.248797 +0.489719 +0.633319 +0.743671 +0.675009 +0.525254 +0.861890 +0.246299 +0.842326 +0.340574 +-0.171393 +0.863605 +0.929885 +0.781311 +0.688318 +0.631543 +0.355091 +0.871944 +0.279043 +0.901028 +0.659999 +0.933289 +-0.550244 +0.924783 +0.925239 +0.827905 +0.931292 +0.488767 +0.266890 +0.844059 +0.458334 +0.634269 +0.795993 +0.848186 +-0.165348 +0.667464 +0.323356 +0.504241 +0.788329 +0.623390 +0.605263 +0.553999 +0.553999 +0.801008 +0.757916 +0.891362 +0.721137 +0.646056 +0.576728 +0.626529 +0.064278 +0.892008 +0.219295 +0.303261 +0.934449 +-0.157522 +0.902423 +0.283007 +0.799093 +0.752989 +0.511651 +0.721848 +0.519034 +0.587185 +0.967962 +0.910947 +0.991880 +0.972189 +0.950058 +0.822697 +0.954673 +0.862681 +0.769145 +0.902643 +-0.093768 +0.367442 +0.792548 +0.511537 +0.879062 +0.740639 +0.838995 +0.223931 +0.949344 +0.799900 +0.909944 +-30.370469 +0.619142 +0.998243 +0.983671 +0.571793 +0.944856 +0.909211 +0.710350 +0.990673 +0.845950 +0.974396 +-0.275821 +0.952379 +0.026088 +0.964783 +0.198159 +0.682567 +0.885477 +0.410143 +0.687946 +0.896996 +0.581029 +0.890567 +0.449771 +0.709972 +0.912324 +0.859533 +0.868956 +0.660330 +0.943187 +0.929648 +0.937509 +0.731334 +0.873805 +0.856953 +0.925891 +0.830018 +0.989776 +0.228694 +0.571135 +0.860858 +0.819394 +0.348390 +0.694249 +0.428192 +0.537282 +0.669915 +0.409921 +0.832032 +0.895312 +0.982893 +0.584651 +0.812784 +0.934946 +0.844187 +0.917702 +0.314947 +0.842531 +0.857884 +0.409561 +0.153029 +0.508862 +0.947000 +0.795668 +0.314626 +0.534828 +0.965230 +0.438576 +0.991144 +0.385130 +0.670424 +0.635951 +0.175824 +0.925755 +0.573975 +0.807864 +0.944769 +0.930184 +0.759657 +0.670920 +0.870847 +0.430229 +0.740330 +0.861431 +0.949603 +0.804430 +-0.442148 +0.852010 +0.528979 +0.268801 +0.890514 +0.345631 +0.713280 +0.971730 +0.529298 +0.801379 +0.735357 +0.219576 +0.263288 +0.495447 +0.998516 +0.922597 +0.699200 +0.727126 +-0.056517 +0.684542 +0.469541 +0.528738 +0.366980 +0.942574 +0.646409 +0.576544 +0.763682 +0.843846 +0.436850 +0.803752 +0.921338 +0.211159 +0.874135 +0.380287 +0.720925 +0.302571 +0.403102 +0.783807 +0.948622 +0.929847 +0.623909 +-0.179735 +0.771764 +0.672315 +0.837881 +0.721495 +0.751704 +-0.470416 +0.853100 +0.419506 +0.623800 +0.776759 +0.716508 +0.977326 +0.683321 +0.086584 +0.751188 +0.559803 +0.916247 +0.577431 +0.886744 +0.903106 +0.905038 +0.624602 +0.509300 +-0.006780 +-0.011125 +-0.114211 +0.437228 +0.298711 +0.032088 +0.763726 +0.879043 +0.995295 +-0.032824 +0.580502 +0.669608 +0.845319 +0.969443 +0.538642 +0.618758 +0.434461 +0.263087 +0.243488 +0.127951 +0.610336 +0.244569 +0.263066 +0.738543 +0.260363 +0.988456 +0.210964 +0.258925 +0.448746 +0.555327 +0.267159 +0.144593 +0.331724 +0.236256 +0.671376 +-0.262185 +0.378657 +0.422299 +-0.089663 +0.873873 +0.803865 +0.832202 +0.517020 +0.220614 +0.301123 +0.536250 +0.415697 +0.851346 +0.672925 +0.937133 +-0.017305 +0.437848 +0.767530 +0.994441 +0.289501 +0.243619 +0.859014 +0.993106 +0.647685 +0.425946 +0.974681 +0.049991 +0.356356 +0.306018 +0.685168 +0.888836 +0.706003 +0.735820 +0.855481 +0.721686 +0.700596 +0.318153 +0.039835 +0.217218 +0.968004 +0.907131 +0.519034 +0.353030 +0.487221 +0.259036 +0.567181 +0.848725 +0.321455 +-0.256436 +0.934780 +0.410981 +0.794755 +0.554389 +-0.013423 +0.929635 +0.624958 +0.750540 +0.629372 +0.931446 +0.796683 +0.356705 +0.715863 +0.090404 +0.853356 +0.756253 +0.742713 +0.556177 +0.862480 +0.810267 +0.778075 +0.535957 +0.921332 +0.849033 +0.930433 +-0.196305 +0.235329 +0.462489 +0.538485 +0.553290 +0.413981 +0.306118 +0.849481 +0.421552 +0.735573 +0.539931 +-0.202463 +0.165144 +-0.085710 +-0.146050 +0.689284 +-0.953527 +0.500546 +0.085623 +0.680525 +0.516519 +0.199063 +0.070820 +0.117281 +0.879114 +0.068159 +0.398422 +0.295988 +0.298917 +-0.014091 +0.404963 +0.004537 +0.470824 +0.999117 +0.971363 +0.131842 +0.915120 +0.389033 +0.252462 +0.688530 +0.048088 +0.389894 +0.417622 +-58.314676 +0.683259 +0.149797 +0.430876 +0.678098 +0.724156 +0.034857 +0.240445 +0.189914 +0.287571 +0.316602 +0.342001 +0.263551 +0.429206 +0.921786 +0.991866 +0.908668 +0.993853 +0.991493 +0.616870 +0.731098 +-27.831165 +0.948422 +0.729223 +0.538619 +0.468671 +0.273693 +0.566980 +0.896000 +0.002150 +0.161796 +0.043323 +0.281394 +0.515723 +-0.287586 +0.549532 +0.908529 +0.962683 +0.161794 +0.161695 +0.995784 +0.929481 +0.998338 +0.612813 +0.434830 +0.540562 +0.486053 +0.858766 +0.364379 +-0.010477 +0.576455 +0.275938 +0.754657 +-0.261162 +0.882051 +0.612586 +0.832715 +0.647539 +0.714986 +0.379353 +0.864313 +0.239359 +0.706496 +0.287280 +0.422939 +0.986681 +0.285079 +-0.109069 +0.572714 +0.908952 +0.699986 +0.850898 +0.897552 +0.200716 +0.555173 +0.768091 +-0.344349 +-0.219989 +0.628964 +0.512412 +0.769621 +0.674467 +0.787909 +0.866580 +0.981725 +0.466271 +0.771608 +0.319914 +0.706130 +0.844466 +0.841790 +-0.086060 +0.927951 +0.518186 +0.933008 +0.475237 +0.638175 +0.805788 +-1.004009 +0.938377 +0.745558 +0.927495 +0.453244 +0.801967 +0.777714 +0.804852 +0.557280 +0.610347 +0.851831 +0.854005 +0.204870 +0.732632 +0.824147 +0.841918 +0.837340 +0.670259 +0.903589 +0.933930 +0.928173 +0.936682 +0.792651 +0.935544 +0.866406 +0.843170 +0.871197 +0.979773 +0.727863 +0.873208 +-0.437785 +-1.978427 +0.067616 +0.955351 +0.769219 +0.839642 +0.934298 +0.353590 +0.256447 +0.504257 +0.501522 +0.980727 +0.467095 +0.913689 +0.946014 +0.797495 +0.927711 +0.299637 +-0.324316 +0.590125 +0.476661 +0.846001 +0.846393 +0.487399 +0.558449 +0.391098 +0.092353 +0.762128 +0.969367 +0.953569 +0.683318 +0.515655 +0.716071 +0.943699 +0.335481 +0.498091 +0.951949 +0.959904 +0.157759 +0.384001 +0.076868 +0.890426 +0.196248 +0.105670 +0.598125 +0.383844 +-0.038334 +0.952024 +0.911995 +0.549999 +0.168812 +0.840220 +0.055889 +0.683142 +0.896695 +0.829516 +0.713786 +0.819551 +0.229301 +0.878123 +0.715197 +0.384666 +0.680122 +0.563508 +0.610115 +0.191489 +0.740958 +0.446303 +0.365912 +0.116165 +0.139286 +0.975938 +0.448681 +0.106602 +0.047125 +0.347378 +0.434195 +0.734052 +0.816102 +0.665518 +0.092084 +0.754073 +0.400076 +0.027551 +0.409444 +0.252683 +0.182495 +0.862496 +0.058510 +0.073584 +0.774323 +0.818969 +-0.252262 +0.184342 +0.834805 +0.180852 +0.530807 +0.798922 +0.976636 +0.485656 +0.761300 +0.113206 +0.665140 +0.374802 +0.505137 +0.261843 +0.171448 +0.927039 +0.650229 +0.636444 +0.885731 +0.910248 +0.486936 +0.640432 +0.367764 +-0.413234 +0.865955 +0.867143 +-0.135522 +0.827972 +0.879635 +0.838934 +0.154211 +0.077759 +0.672782 +0.206994 +-0.282738 +0.476784 +-0.324963 +0.670561 +0.814042 +0.538787 +0.906564 +0.205232 +-0.379401 +-0.403446 +0.510631 +0.770388 +-0.285188 +0.650396 +-0.292746 +0.321887 +0.621116 +0.186392 +0.376459 +0.196323 +0.190776 +0.137824 +0.591114 +0.230007 +0.442224 +0.251483 +0.698901 +0.030232 +0.250626 +-0.017085 +0.052002 +0.360280 +-0.047171 +0.004615 +0.973103 +0.112179 +0.291863 +0.411759 +0.024100 +0.774080 +0.910372 +0.987253 +0.634753 +-0.463971 +0.930521 +0.850872 +0.926409 +0.776580 +0.642955 +0.791698 +0.962735 +0.086000 +0.989553 +0.786349 +0.356938 +0.984478 +0.732082 +0.936906 +0.791755 +0.915077 +0.769882 +0.891462 +0.956718 +0.029422 +0.012564 +0.384164 +0.524977 +0.897342 +0.805392 +0.432965 +0.754031 +0.846642 +0.414123 +0.320127 +0.883856 +0.285633 +0.271966 +0.642650 +0.720545 +0.844982 +0.336785 +0.696494 +0.671866 +0.793587 +0.489543 +0.982909 +0.794505 +0.852254 +0.754902 +0.933305 +0.666528 +0.918729 +0.835589 +0.386221 +0.921141 +0.982943 +0.980003 +0.427610 +0.846128 +0.231801 +0.363629 +0.464186 +0.954589 +0.867051 +0.777841 +0.513835 +0.966644 +0.491072 +-0.121938 +0.902844 +0.941518 +0.928957 +0.811828 +0.697993 +0.785215 +0.788180 +0.705950 +0.455797 +0.740478 +0.471572 +0.575986 +0.896057 +0.434781 +0.896608 +0.548682 +0.722842 +0.926870 +0.527759 +0.493596 +0.316511 +0.555242 +0.877289 +0.822626 +0.939535 +0.885974 +0.900996 +0.881911 +0.934912 +0.932239 +0.934319 +0.620867 +-0.393920 +0.222622 +0.715417 +0.370021 +0.840764 +0.650256 +-0.121365 +0.664957 +0.234437 +0.591257 +0.600316 +0.719374 +-0.270673 +-0.058025 +-0.463835 +0.885168 +0.854997 +0.880054 +0.893583 +0.525837 +0.791086 +0.441569 +0.932547 +0.544189 +0.923382 +-0.040731 +0.823277 +0.892731 +0.760543 +0.754543 +0.570844 +0.838496 +0.901235 +0.840069 +0.536791 +0.186679 +0.930134 +0.683693 +0.864559 +0.405035 +0.497084 +0.649235 +-0.207764 +0.799212 +0.610118 +0.953440 +0.737607 +-0.031878 +0.658517 +-0.170950 +0.908991 +0.365653 +0.828130 +0.082681 +0.821384 +0.176473 +0.031683 +0.897954 +0.067719 +0.936473 +0.276483 +0.101662 +0.296426 +0.535719 +0.105272 +0.766457 +0.785532 +0.376228 +0.359742 +0.483522 +0.487801 +0.510388 +-0.192408 +0.302191 +-0.079212 +0.360838 +0.417574 +0.014567 +0.342539 +0.465242 +0.575940 +0.153311 +0.424845 +0.954455 +0.683984 +-0.088080 +0.475067 +0.480421 +0.998221 +0.119664 +0.921057 +0.032746 +0.853065 +0.544385 +0.191781 +0.240698 +0.760651 +0.398962 +-0.355601 +0.885353 +0.344673 +0.946761 +0.958105 +0.477694 +0.917495 +0.859971 +0.437414 +0.934974 +-0.226650 +0.884816 +-0.240155 +0.749804 +0.813435 +0.831166 +0.601475 +0.933998 +0.527980 +0.616637 +0.929944 +0.498790 +0.562215 +0.544546 +0.539238 +0.596983 +0.941418 +0.028122 +0.255540 +0.612937 +0.521076 +-0.101814 +0.936912 +0.550500 +0.337715 +0.885263 +0.801080 +0.883716 +0.812980 +0.821056 +0.724300 +-0.297964 +0.336642 +0.751059 +0.938016 +0.692924 +0.499948 +0.890606 +0.228802 +0.556804 +0.614666 +0.804247 +-0.553604 +0.603131 +0.231388 +0.895639 +-0.149093 +0.269915 +0.988232 +0.575481 +0.961102 +0.994611 +0.592928 +0.795562 +0.994524 +0.422276 +0.859951 +0.455935 +0.743911 +0.936054 +0.219731 +0.958994 +0.811327 +0.436078 +-0.112496 +0.740835 +-0.376520 +0.762817 +0.958833 +0.261247 +0.953837 +-0.952821 +0.640618 +0.676946 +0.226277 +0.361834 +0.644806 +0.870029 +0.943819 +0.948596 +0.787373 +0.204629 +0.503357 +0.581981 +0.109686 +0.144020 +-0.013109 +0.317849 +0.969023 +0.815217 +0.937208 +0.897496 +0.640590 +0.726374 +0.929970 +0.517878 +0.769388 +0.628294 +0.701265 +0.949750 +0.960381 +0.895105 +0.865062 +0.831884 +-0.336949 +0.009225 +0.911594 +0.819099 +0.881289 +0.840410 +0.802118 +0.668555 +-0.152201 +0.470840 +0.750377 +0.584943 +0.932694 +0.936250 +0.748073 +0.875919 +0.171971 +0.978903 +0.018953 +-1.917977 +0.472238 +0.043974 +0.119010 +0.136250 +0.138797 +0.651760 +0.565018 +0.393540 +0.089767 +-0.116664 +0.541096 +-0.067849 +0.273640 +0.530360 +0.530713 +0.830197 +0.107643 +0.165793 +0.303711 +0.331830 +0.511540 +0.712491 +0.657183 +-0.262463 +0.101252 +0.845127 +0.850884 +0.963607 +0.062484 +0.078974 +0.779740 +0.484280 +0.342063 +0.296467 +0.874095 +0.852234 +0.340377 +0.862038 +0.988393 +-0.576513 +0.491144 +0.490776 +0.872359 +0.923310 +0.751727 +0.460011 +0.696996 +0.772120 +0.806177 +0.894980 +0.961788 +0.617174 +0.822432 +0.311281 +0.997181 +0.783142 +-1.113959 +0.911765 +0.489836 +0.740648 +0.597934 +0.993890 +0.854807 +0.365349 +-0.054566 +0.320958 +0.998888 +0.761301 +0.972780 +0.826454 +0.884991 +0.394095 +0.965089 +0.906447 +0.929822 +0.899614 +-0.010580 +0.083561 +0.284681 +0.042160 +0.594896 +0.839066 +0.838277 +0.891178 +0.573983 +0.653609 +-0.410066 +0.856756 +0.907532 +0.793105 +0.677964 +0.440879 +0.406670 +0.881952 +0.906694 +0.781084 +0.785806 +0.476732 +0.846091 +0.663629 +0.889814 +0.936173 +-0.125480 +0.722386 +-1.627012 +0.933722 +-0.137189 +0.911691 +0.397649 +0.890801 +0.255782 +0.912830 +0.598248 +0.889555 +0.891485 +0.911809 +0.829957 +0.484516 +0.938879 +0.964273 +0.745315 +0.907030 +0.907030 +0.716400 +0.514286 +0.442079 +0.241023 +0.808110 +0.867724 +0.269665 +0.964948 +0.905016 +0.617139 +0.254378 +0.929079 +0.321561 +0.487434 +0.655583 +0.650585 +0.603542 +0.247509 +0.606186 +0.787812 +0.722375 +0.545017 +0.659014 +0.365930 +0.787109 +0.751590 +0.962946 +0.909119 +0.907094 +-0.259320 +0.496227 +0.893978 +0.462843 +0.744926 +0.926324 +0.704856 +0.642316 +0.717265 +0.358733 +0.037226 +0.763395 +0.711142 +0.887377 +0.968138 +0.736828 +0.513584 +0.731755 +0.921625 +0.731531 +0.244592 +0.699974 +0.895017 +0.744124 +0.942825 +0.555887 +0.684798 +0.894727 +0.504001 +-0.268127 +0.683502 +0.311287 +0.401152 +0.651749 +0.809908 +0.747440 +0.266903 +0.678461 +0.684159 +-0.179501 +-0.235881 +0.702942 +0.932802 +0.990338 +0.736551 +0.853462 +0.874832 +0.719472 +0.741102 +0.358191 +0.453854 +0.406292 +0.033534 +0.420577 +0.394290 +0.185097 +0.623811 +0.528699 +0.709139 +0.558727 +0.494302 +0.407868 +0.826656 +0.605766 +0.884528 +0.456817 +0.840706 +0.754747 +0.328517 +0.901344 +0.094610 +0.768166 +0.579022 +0.926109 +0.929012 +0.416391 +0.851593 +0.564178 +0.141325 +0.536163 +0.006985 +0.675674 +0.921636 +0.700438 +0.860352 +0.774741 +-0.431256 +0.865608 +0.596424 +0.161044 +0.854448 +0.723650 +0.834410 +0.548007 +0.919560 +0.814332 +0.808970 +0.531321 +0.675529 +0.929722 +-0.208779 +0.522131 +0.475889 +0.573189 +-0.151574 +0.904106 +0.666772 +-0.341717 +-1.492887 +0.420520 +0.082339 +0.068234 +0.866207 +0.535313 +0.900487 +0.771206 +0.300413 +0.584809 +0.505438 +0.498122 +0.546676 +0.427427 +0.569913 +0.806141 +0.585343 +0.786615 +0.656568 +0.372795 +0.753225 +0.752633 +0.901973 +0.686149 +0.342716 +0.479075 +-0.002833 +0.708820 +0.397314 +0.678278 +0.345745 +0.567961 +0.656803 +-4.276414 +0.866563 +0.858521 +0.803699 +0.888868 +0.855458 +0.091084 +0.551877 +0.887828 +0.329284 +0.924652 +0.498675 +0.898251 +0.760206 +0.497120 +0.762190 +0.512868 +0.379524 +0.557889 +0.859672 +0.802842 +0.785061 +-0.735526 +0.339095 +0.525897 +0.926257 +0.689900 +0.964820 +0.285233 +0.651291 +0.898219 +0.455652 +0.802170 +0.706446 +0.563357 +0.712591 +0.457104 +0.559196 +0.357627 +0.266096 +0.436493 +0.055439 +0.900596 +0.973901 +0.927886 +0.950458 +0.973902 +0.863616 +-0.175543 +0.908368 +0.481022 +0.661359 +0.204599 +0.902904 +0.417707 +0.894026 +0.442154 +0.294480 +0.743536 +0.656128 +0.474059 +0.802433 +0.302627 +0.848808 +0.803963 +0.189423 +0.820932 +0.395644 +0.591383 +0.989263 +0.361832 +0.600085 +0.126070 +0.488499 +0.475821 +0.279543 +0.811383 +0.584446 +0.825974 +0.793401 +0.264215 +0.874233 +0.762007 +0.399785 +0.711895 +0.854081 +0.469372 +0.112965 +0.180949 +0.925708 +0.323450 +0.845435 +0.949054 +0.818147 +0.624173 +0.116896 +0.560518 +0.131815 +0.307287 +0.767815 +0.161617 +0.854414 +0.779472 +0.527351 +0.505062 +0.203681 +0.161978 +0.499274 +0.421039 +0.306362 +0.620956 +0.149093 +0.619017 +0.218154 +0.981237 +0.931190 +0.698690 +0.453308 +0.825557 +0.207032 +0.712585 +0.989116 +-0.083131 +0.894707 +0.137009 +0.051943 +0.470640 +-21.546944 +0.575090 +0.003336 +0.519462 +0.342462 +0.685709 +0.718739 +0.965774 +0.801319 +0.775536 +0.539188 +0.929086 +0.152158 +0.769062 +0.131010 +-0.403264 +0.519526 +0.687118 +0.281813 +0.977145 +0.257568 +0.651215 +0.841923 +0.434193 +0.075768 +0.114472 +-0.022377 +0.000266 +-0.980370 +0.629742 +-0.090173 +0.029406 +0.388387 +-0.743316 +0.133950 +-0.022958 +0.025005 +0.545653 +0.716674 +-9637.929062 +-28.839158 +0.658194 +0.998393 +0.735569 +0.099285 +0.092949 +0.460339 +0.071757 +0.530740 +0.405910 +-0.941499 +0.169597 +-0.067291 +0.184415 +0.513892 +-0.216990 +0.897874 +0.809856 +0.788208 +0.540189 +0.520114 +0.423251 +-0.170672 +0.801973 +0.936510 +0.754049 +0.780851 +0.221167 +0.693885 +0.858129 +0.613943 +0.832737 +0.758970 +0.962896 +0.931284 +0.839077 +0.808372 +0.527391 +0.934370 +0.903141 +0.811768 +0.729091 +0.463314 +0.681878 +-0.138880 +-0.003628 +0.766606 +0.866529 +0.849815 +0.886149 +0.436498 +0.371578 +0.783171 +0.824491 +0.928215 +0.808821 +-0.109168 +-0.353315 +0.054006 +0.939535 +0.741351 +0.544354 +0.881620 +0.420263 +0.827454 +0.821531 +0.822876 +0.173310 +0.923245 +0.897216 +0.174905 +0.779561 +0.891093 +0.197201 +0.404804 +0.636264 +-0.292621 +0.852690 +0.786443 +0.849260 +0.704717 +0.651766 +0.732665 +0.799448 +-1.444012 +0.411972 +0.655861 +0.869952 +0.432125 +0.777784 +0.354370 +0.591391 +0.874176 +-0.025570 +0.898935 +0.704757 +0.860453 +0.682793 +0.829775 +0.790285 +0.208311 +0.870302 +0.840566 +-1.031567 +0.744729 +0.730018 +0.652734 +0.767300 +0.889370 +0.598272 +0.582005 +-0.091852 +0.450782 +0.863185 +0.516745 +-0.212988 +-0.198253 +0.937236 +0.398260 +0.039661 +0.606237 +-0.083431 +0.655911 +0.601207 +0.577531 +-0.190117 +-0.055947 +0.136542 +0.709140 +0.298726 +0.417767 +0.341549 +0.247897 +0.538457 +-0.181111 +0.429970 +-0.487062 +-0.023803 +0.470322 +0.832097 +0.934713 +0.663938 +0.706845 +0.434778 +0.533347 +0.444002 +0.533275 +0.067811 +0.568438 +-0.246217 +0.932060 +-0.084567 +0.780988 +0.654946 +-0.197370 +0.401791 +0.731694 +0.574852 +0.933140 +0.828021 +0.148316 +0.393251 +0.733111 +0.837581 +0.762471 +0.445356 +0.931370 +0.625540 +0.918235 +0.638567 +0.824540 +0.294360 +0.857854 +0.812870 +0.766200 +0.603290 +0.501281 +0.678540 +0.853676 +0.884659 +0.955371 +0.931299 +0.848231 +0.732332 +0.474383 +0.812222 +0.877553 +0.733691 +0.926171 +0.994975 +0.688018 +0.907812 +0.786702 +0.977419 +0.860436 +0.501522 +0.592695 +0.468285 +0.794561 +0.940160 +0.935013 +0.591713 +0.674502 +0.786406 +0.934962 +0.933475 +0.980555 +0.984675 +0.708778 +0.934207 +0.951342 +0.310135 +0.796684 +0.941670 +0.288922 +0.939180 +0.728387 +0.314920 +0.798591 +0.981524 +0.967014 +0.815999 +0.702911 +-2504422066.731876 +0.175539 +0.616004 +0.693339 +0.720306 +0.710476 +-0.259470 +0.290175 +0.393609 +0.864470 +0.739453 +0.762097 +0.654729 +0.864842 +0.876861 +0.694321 +0.439644 +0.729604 +0.930487 +0.729871 +0.288454 +0.382052 +0.887792 +0.583878 +0.418313 +0.738407 +0.812345 +0.641930 +0.833896 +0.251667 +0.631334 +0.815913 +0.407530 +0.774305 +0.864849 +0.690825 +0.564629 +-43.609588 +0.958280 +0.669366 +0.877503 +0.998552 +-4.656483 +0.946967 +0.892848 +0.926991 +-0.017495 +0.913290 +0.860416 +0.681354 +0.088016 +0.864231 +0.860389 +0.824285 +-0.217599 +0.912930 +0.296830 +0.560555 +0.892364 +-0.054425 +0.804985 +0.426165 +0.536916 +0.848964 +0.297652 +0.630487 +0.862429 +-0.776766 +0.199420 +-26790.029064 +0.742611 +0.890406 +0.231374 +0.790245 +0.875567 +-0.111266 +0.744360 +0.678575 +0.989760 +0.624194 +0.273852 +0.432114 +0.355164 +0.227493 +0.256456 +0.831173 +0.349471 +0.124016 +0.875670 +-0.195924 +0.871878 +0.535030 +-0.137250 +0.822535 +0.016771 +0.675112 +0.763637 +0.762093 +0.807359 +0.853598 +0.520877 +0.526283 +0.432316 +0.770604 +0.787567 +0.910476 +0.798222 +0.842597 +0.465911 +0.314976 +0.748500 +0.854881 +0.432149 +0.654890 +0.354145 +0.365585 +0.765165 +0.497194 +0.425154 +0.489399 +0.718026 +0.562840 +0.921503 +0.731657 +0.740576 +0.671039 +0.713451 +0.241709 +0.751073 +0.850070 +0.165364 +0.469857 +0.971998 +0.356668 +0.461609 +0.878751 +0.900163 +0.280143 +0.837900 +0.730194 +0.927746 +0.236076 +0.783806 +0.412303 +0.812581 +0.036385 +0.788129 +0.397485 +0.910675 +0.919127 +0.395644 +0.964426 +0.492084 +0.877401 +0.618221 +0.589046 +0.552477 +0.906237 +0.937144 +0.920825 +0.956008 +0.824124 +0.730244 +0.831870 +0.926589 +0.428539 +0.640403 +0.756207 +-0.050510 +0.848866 +0.415842 +0.646754 +0.371737 +0.496649 +0.826224 +0.107112 +0.827614 +0.818595 +0.983570 +0.206352 +0.873075 +0.327870 +0.763597 +0.519998 +0.743671 +0.791568 +0.234054 +0.507285 +0.674184 +0.740981 +0.635201 +0.862704 +0.843740 +0.736760 +-0.195860 +0.971927 +0.626952 +0.789652 +0.673951 +-0.310088 +-8.344472 +0.482077 +0.473524 +0.800150 +0.851070 +0.375431 +0.283248 +0.903025 +0.932968 +0.834930 +0.915061 +0.882613 +-0.247348 +0.860143 +0.441822 +0.803553 +0.928403 +0.991721 +0.966824 +0.871474 +0.940674 +0.625980 +-8.007298 +0.785828 +0.948937 +0.686505 +0.552049 +0.975013 +0.792719 +0.709413 +0.565814 +0.855708 +0.472988 +0.958329 +0.353185 +0.719109 +0.561406 +0.968992 +0.988883 +-0.176917 +0.645125 +0.862749 +0.667553 +0.502591 +0.806720 +-0.703815 +0.995281 +0.540459 +0.664191 +0.196613 +0.968801 +0.814702 +0.777742 +0.641157 +0.781833 +0.896297 +0.763490 +0.827167 +0.758521 +0.881422 +0.908323 +0.269812 +0.864052 +0.890301 +0.692123 +0.851034 +0.892890 +0.556510 +0.965517 +0.405515 +-0.020065 +0.734021 +0.361824 +0.645541 +0.458803 +0.616054 +0.553102 +0.453491 +0.874169 +0.767499 +0.945870 +0.706028 +0.942689 +-0.249952 +0.799744 +0.553819 +0.737634 +0.741260 +0.016419 +0.926436 +0.686051 +0.446840 +0.657281 +0.392498 +0.407834 +0.752106 +0.832753 +0.847446 +0.984672 +0.555070 +0.127242 +0.502850 +0.795563 +0.995539 +0.709801 +0.463452 +0.418288 +0.923726 +-6.109835 +0.858220 +0.835648 +0.937325 +0.723921 +0.978543 +0.543507 +0.998215 +0.802655 +0.597234 +0.633004 +0.954989 +0.930326 +0.417794 +0.547689 +0.934483 +0.572264 +0.169437 +0.896867 +0.682798 +0.761680 +0.757925 +-0.073975 +0.442369 +0.622029 +0.874794 +0.688097 +0.694723 +0.835317 +-0.088744 +0.572013 +0.366659 +0.694492 +0.936673 +-0.333578 +0.298680 +0.863662 +0.310355 +0.874748 +0.603171 +0.925992 +0.845771 +0.445049 +0.971899 +0.452603 +0.738100 +0.796385 +0.555122 +0.447346 +0.144982 +0.647046 +0.689939 +0.923898 +0.595986 +-0.175966 +0.267001 +0.884666 +0.818654 +0.182198 +0.764531 +0.785547 +0.073320 +0.670311 +0.888887 +0.821814 +0.823435 +0.877482 +0.093289 +0.146446 +0.791524 +0.933984 +0.643704 +0.857767 +0.604230 +0.898632 +0.804354 +0.999165 +0.428398 +0.593334 +0.932804 +0.926718 +0.904092 +0.975521 +0.999181 +0.914722 +0.968844 +0.860216 +0.998059 +0.790469 +0.789713 +0.674703 +0.929577 +0.926971 +0.637069 +0.674931 +0.819832 +0.762422 +0.930500 +0.571788 +0.727929 +0.790174 +0.597269 +0.410058 +0.030549 +0.135353 +0.614876 +0.238246 +0.503877 +0.202817 +0.439660 +0.678754 +0.374567 +0.249461 +0.561303 +0.776924 +0.064049 +-0.219564 +0.186346 +0.117985 +0.193980 +0.499923 +0.370807 +-1.936471 +0.204542 +0.413610 +0.457720 +-7.602461 +0.004000 +0.343553 +-0.028206 +-3.879939 +0.821934 +-0.330532 +0.850530 +-0.010466 +0.511531 +0.544517 +0.191460 +0.771822 +0.801944 +0.706697 +0.528456 +0.919153 +0.145530 +0.947041 +0.983457 +0.945422 +0.929638 +0.229051 +0.380278 +0.826626 +0.507784 +0.483044 +0.569812 +0.533061 +0.562144 +0.916595 +0.623040 +0.768893 +0.785325 +0.443009 +0.476515 +0.529270 +0.676859 +0.452179 +0.871939 +0.933427 +0.887363 +0.572778 +0.672500 +0.857754 +0.196602 +0.919134 +0.344106 +0.388348 +-10.249069 +-609.041773 +-1.807894 +-1.218474 +-83.020886 +0.677885 +0.713533 +-8.242010 +0.539788 +0.522530 +0.926656 +0.360206 +0.475238 +0.595194 +0.384940 +0.617351 +0.517448 +0.590612 +0.575814 +0.400482 +0.397541 +0.469008 +0.481528 +0.515762 +0.461187 +0.460002 +0.676082 +0.434672 +0.567400 +0.770863 +0.494971 +0.848647 +0.954189 +0.745866 +0.760083 +0.783026 +0.953464 +0.853137 +0.861903 +0.853126 +0.898021 +0.846746 +0.823801 +0.851119 +0.725984 +0.771991 +0.730892 +0.953728 +0.943371 +0.350842 +0.527614 +0.530706 +0.463422 +0.257897 +0.335704 +0.714572 +0.752970 +0.722269 +-88.129873 +0.842558 +-90.089983 +0.749220 +0.188394 +0.185521 +0.514562 +0.596655 +0.371697 +0.483076 +0.272111 +0.311365 +0.432883 +0.966575 +0.678650 +0.153263 +0.891329 +0.391113 +-1.194922 +0.021849 +-0.069286 +0.253430 +0.327050 +0.671444 +0.350404 +0.239005 +0.865050 +0.446958 +0.517526 +0.104157 +0.259038 +0.229461 +0.488382 +0.234066 +0.287155 +0.800905 +0.493059 +0.770604 +0.544961 +0.209967 +0.691922 +0.392490 +0.507435 +0.761259 +0.756056 +0.761819 +0.920167 +0.604189 +0.971140 +0.715882 +0.814803 +0.924797 +0.508520 +0.765634 +0.959138 +0.993048 +-0.015500 +0.070870 +0.594980 +0.633316 +0.842759 +0.956991 +0.746966 +0.722493 +0.692248 +0.837124 +0.714567 +0.334165 +0.318735 +0.849121 +0.794212 +0.728815 +0.891813 +0.712140 +0.579260 +0.775189 +0.732215 +0.100146 +0.632112 +0.481789 +0.940891 +0.725010 +0.842948 +0.195268 +0.979535 +0.959597 +0.982011 +0.927097 +0.950363 +0.964165 +0.829495 +0.963621 +-0.090074 +0.759568 +0.737026 +-0.325827 +0.402446 +0.928415 +0.474301 +0.729729 +0.601120 +0.427776 +0.545041 +0.382882 +0.782191 +0.581798 +0.238265 +0.708202 +-0.084351 +0.821248 +0.118623 +0.905440 +0.552726 +0.887105 +0.324845 +0.930905 +0.695237 +0.410353 +0.890722 +0.664580 +0.241862 +0.272074 +0.554822 +0.957056 +-0.451677 +0.917153 +0.295385 +0.458417 +0.499571 +0.346807 +0.225253 +0.523688 +0.500308 +0.313002 +0.577016 +0.242030 +0.610126 +0.669150 +0.760173 +0.886611 +0.916227 +0.885780 +0.741643 +0.548389 +0.864066 +0.592336 +0.196986 +0.559930 +0.558297 +0.930842 +0.108533 +0.192343 +0.529961 +0.460186 +0.796733 +0.949488 +0.635565 +0.661411 +0.533276 +0.371034 +0.339384 +0.130305 +-0.733145 +0.989251 +0.976315 +0.667870 +0.613307 +0.021554 +0.395214 +0.405720 +0.647032 +0.914155 +0.473540 +0.756192 +0.037317 +0.532670 +0.939062 +0.367481 +0.314900 +0.682304 +0.371185 +0.635604 +0.822340 +0.303967 +0.064131 +0.127564 +0.847768 +0.172329 +0.718946 +0.683069 +-2.709600 +-0.149353 +0.918309 +-0.086838 +0.942920 +0.808713 +0.394984 +0.432629 +0.496332 +0.292394 +0.815448 +0.678337 +0.273863 +0.496861 +0.632839 +0.864001 +0.916683 +0.304938 +0.994291 +0.982304 +0.688443 +0.697087 +0.835887 +-0.272377 +0.414548 +0.864909 +0.845708 +0.740337 +0.496832 +0.468093 +0.457109 +0.630686 +0.768180 +0.786541 +0.153480 +0.713790 +0.811098 +0.736421 +0.819434 +0.850907 +0.372206 +0.971403 +0.328755 +-0.229282 +0.803578 +0.911638 +0.736089 +0.474743 +0.901956 +0.833017 +0.937870 +0.703607 +0.798369 +0.905935 +0.315428 +0.995460 +0.968678 +0.935875 +0.736850 +0.871604 +0.312985 +0.968603 +0.084943 +0.809256 +0.822097 +0.615757 +0.778122 +0.746936 +0.920006 +0.409052 +0.602300 +0.832906 +0.808293 +0.868525 +0.904539 +0.796820 +0.565741 +0.526601 +0.716712 +0.905577 +0.876810 +0.508538 +0.613413 +0.860464 +0.771389 +0.192271 +0.073231 +0.654038 +0.739370 +0.826194 +0.945509 +0.757804 +0.537422 +0.290771 +0.783304 +0.792334 +0.732563 +0.640460 +0.842804 +0.860116 +0.772883 +0.799019 +0.774680 +0.904720 +0.853883 +0.703867 +0.609861 +0.675757 +0.647579 +0.446040 +0.313335 +0.898542 +0.672563 +0.295746 +0.933128 +0.993721 +0.063434 +0.402867 +0.935727 +0.946183 +0.991536 +0.978199 +0.832375 +0.929700 +0.662661 +0.183302 +0.757469 +0.996743 +0.947792 +0.831543 +0.829694 +0.923968 +0.734616 +0.799880 +0.911544 +0.772335 +0.850019 +0.260138 +-0.183086 +0.851629 +0.918728 +0.498473 +0.426081 +-0.186223 +0.874168 +0.752181 +0.555126 +0.437509 +0.795572 +0.527732 +0.373759 +0.601514 +0.949994 +0.426765 +0.388192 +0.265119 +0.870168 +0.778186 +0.838789 +0.626924 +0.576730 +0.738595 +0.517986 +0.840639 +-1.153517 +0.787782 +0.773475 +0.326466 +0.914813 +0.809468 +-0.085587 +0.934820 +0.724377 +0.484561 +0.910559 +0.581118 +0.818767 +0.919595 +0.916065 +0.901747 +0.925917 +0.949223 +0.318376 +0.918668 +0.932106 +0.947321 +0.294908 +0.030752 +0.274047 +0.488539 +0.761754 +0.811019 +0.177389 +0.744094 +0.024795 +0.273928 +0.487942 +0.692362 +-0.287928 +0.659719 +0.009308 +0.456892 +0.270560 +0.636449 +0.403480 +0.247122 +0.370917 +0.039314 +0.994647 +0.225173 +0.174305 +0.378086 +0.140722 +0.612773 +0.143046 +0.632676 +-2.072369 +0.349481 +0.878871 +0.140249 +0.053065 +0.094533 +0.184937 +0.220561 +0.229778 +0.034815 +0.933160 +0.867368 +0.790789 +0.871868 +0.539376 +0.918995 +0.585331 +0.328942 +0.863515 +0.672112 +0.915802 +0.862330 +0.879928 +0.734719 +0.846476 +0.412864 +0.764637 +0.320366 +0.220733 +0.475996 +0.046192 +0.808327 +0.147124 +0.835726 +0.740040 +0.506569 +0.688900 +0.939367 +0.397537 +0.561802 +0.314037 +0.339681 +0.871699 +0.892263 +0.580616 +0.616624 +-0.010525 +0.620975 +0.410784 +-0.061440 +0.994493 +0.980862 +0.916854 +0.775315 +0.844157 +0.899519 +0.702556 +0.562706 +0.663552 +0.556497 +0.487890 +0.761601 +0.356878 +0.752045 +0.529607 +0.900071 +0.265469 +0.802683 +0.547014 +0.678436 +0.951653 +-0.004025 +0.813187 +0.325645 +0.635473 +0.633012 +0.939050 +0.943430 +0.951336 +0.922526 +0.741186 +0.721446 +0.691978 +0.933089 +0.723900 +0.148007 +0.144956 +0.753300 +0.732648 +0.917241 +0.618710 +0.480131 +0.648346 +0.849005 +0.756931 +0.326421 +0.497396 +0.481169 +0.608497 +0.945885 +0.545318 +0.892914 +0.598970 +0.364199 +0.859131 +0.195631 +0.830428 +0.604440 +0.505879 +0.657359 +0.440722 +0.338167 +0.612549 +0.983094 +0.516638 +0.911219 +0.588355 +0.826433 +-0.103890 +0.752867 +0.787360 +0.561389 +0.521429 +0.508010 +0.892364 +0.684739 +0.561166 +0.632624 +0.435402 +0.636423 +0.644135 +0.849368 +0.370551 +0.845519 +0.665477 +0.634714 +0.103617 +0.856608 +-0.650063 +0.493521 +0.464956 +0.845535 +0.737106 +0.504895 +0.936356 +0.725952 +0.820926 +-6.986041 +0.830102 +0.614316 +0.870937 +0.987369 +0.932011 +0.864518 +0.582167 +0.821813 +0.513773 +0.587173 +0.740601 +-0.011411 +0.397521 +0.930235 +0.895753 +0.889454 +0.924126 +0.840057 +0.837552 +0.904887 +0.900836 +0.827850 +0.554843 +0.911267 +0.767759 +0.619333 +0.370352 +0.832826 +0.748916 +0.863228 +0.404028 +0.898461 +0.904197 +0.804761 +0.830008 +0.319710 +0.820777 +0.461811 +0.960316 +0.898773 +0.825247 +0.262927 +-0.069718 +0.273519 +0.385143 +0.685659 +0.198125 +0.460520 +0.068942 +0.746174 +0.632949 +0.398748 +0.998863 +-0.033913 +0.391190 +0.688217 +0.500151 +0.461922 +0.725916 +0.492664 +0.940072 +-0.165981 +0.342825 +0.964452 +0.868731 +0.291606 +0.717173 +0.679868 +0.803900 +0.867342 +0.819947 +0.209071 +0.747932 +0.658775 +0.732872 +0.902099 +0.645334 +0.570329 +0.884393 +0.293240 +0.605197 +-0.560839 +0.582063 +0.934740 +0.751034 +0.855198 +0.491328 +0.750369 +0.867806 +0.929548 +0.961895 +0.354985 +0.255701 +0.849240 +0.890391 +0.645074 +0.378796 +0.916300 +0.809929 +0.726531 +0.389082 +0.846682 +0.437031 +0.506334 +0.884281 +0.895722 +0.818975 +0.789854 +0.746495 +0.277249 +0.643866 +0.356895 +0.110528 +0.629473 +0.444984 +0.934721 +0.916582 +0.847026 +0.928490 +0.319222 +0.949602 +0.945463 +0.553795 +0.940147 +0.544201 +0.967117 +0.671197 +0.716638 +0.503765 +0.934781 +0.960236 +0.841873 +0.558109 +0.949389 +0.585337 +0.936426 +0.045955 +0.739187 +0.797448 +0.441879 +0.727852 +0.871809 +0.924201 +0.787139 +0.096411 +0.301902 +0.844337 +0.167131 +0.413959 +0.690405 +0.325652 +0.642522 +0.748997 +0.817933 +0.496161 +0.742500 +0.593193 +0.571231 +0.917428 +0.705046 +0.459423 +0.575970 +0.319294 +0.545780 +0.096467 +0.572035 +0.938062 +0.654663 +0.581914 +0.532961 +0.690098 +0.793468 +0.862209 +0.115374 +0.450678 +0.758327 +0.669709 +0.579299 +0.520545 +0.386045 +0.908969 +0.937357 +0.304809 +0.309047 +0.707277 +0.587550 +0.507891 +0.795893 +0.291999 +0.765700 +0.542220 +0.927831 +0.347499 +0.658617 +0.562311 +0.539423 +0.569226 +-0.115061 +0.912389 +-0.220093 +0.364134 +0.461229 +0.923704 +0.833920 +-0.223413 +-0.528336 +-0.273021 +0.723635 +0.797925 +-0.143046 +0.405844 +-0.158451 +-0.759221 +0.845710 +0.731319 +0.903674 +0.285268 +-0.162605 +-0.178634 +0.326253 +-0.159668 +0.575735 +-0.138680 +-0.258276 +0.483128 +-0.276385 +-0.073555 +-0.278379 +-0.284494 +0.185753 +0.741083 +0.882695 +0.937030 +0.360195 +0.669775 +0.853544 +0.934325 +0.720026 +0.879355 +0.926264 +0.656569 +0.926027 +0.819541 +0.947982 +0.585994 +0.871861 +0.752782 +0.836997 +0.761225 +0.763569 +0.879650 +0.928331 +0.921714 +0.433969 +0.455475 +0.988484 +0.629602 +-126.956137 +0.973409 +0.087244 +0.042930 +0.593909 +-0.136415 +0.845008 +0.508938 +0.923696 +0.635160 +0.997491 +0.582643 +0.467166 +0.572196 +0.434061 +0.507574 +0.975976 +0.284488 +0.406918 +0.476899 +0.473072 +0.933124 +0.506535 +-1.536256 +-1.536255 +0.926461 +0.803993 +0.234050 +0.874951 +0.437795 +0.890341 +0.824259 +0.953967 +0.760619 +0.764305 +0.894755 +0.669412 +0.800523 +0.888412 +-0.593074 +0.606073 +0.563777 +0.712611 +0.597656 +0.177426 +-98164388.293734 +0.205802 +0.738751 +0.446484 +0.057998 +0.565582 +0.779864 +0.929686 +0.143222 +0.673365 +-0.075069 +0.742402 +0.497847 +0.903883 +0.895191 +0.643767 +0.463634 +0.423416 +0.262582 +0.814746 +-0.278066 +0.453045 +0.826027 +0.719799 +0.717570 +0.282229 +0.766713 +0.808974 +0.756164 +0.759789 +0.667873 +0.851903 +-0.074357 +0.282001 +0.624378 +0.508433 +0.992909 +0.642033 +0.634662 +0.451710 +0.891382 +-0.590418 +0.690010 +0.066740 +0.378902 +0.487241 +0.799445 +0.427947 +0.614730 +0.838695 +0.758788 +0.297967 +0.699357 +0.269828 +0.707107 +0.881058 +0.528990 +0.629627 +0.843444 +0.858442 +0.560122 +0.462916 +0.818294 +0.739205 +0.990510 +0.772018 +0.774530 +0.780637 +0.736174 +0.833195 +0.289924 +-0.200587 +0.140724 +0.847271 +0.841154 +-0.216303 +0.738552 +-0.018961 +0.335078 +0.352979 +0.833549 +0.916989 +0.871284 +0.807591 +0.725613 +0.723181 +-0.561118 +0.861139 +-0.107268 +0.938248 +0.386233 +0.842291 +0.676839 +0.225778 +0.817226 +0.756162 +0.842980 +0.710190 +0.608005 +0.836636 +0.940300 +0.941039 +0.052629 +-0.186593 +0.601717 +0.655848 +0.915090 +0.852094 +0.868662 +0.997844 +0.888839 +-0.102321 +0.935248 +0.354799 +0.883684 +0.973696 +0.860982 +0.644683 +0.857019 +0.240148 +0.643543 +0.556573 +0.409727 +0.727585 +0.422778 +0.842219 +-5.021257 +0.472686 +0.871596 +0.919298 +0.952700 +0.579779 +0.692704 +0.699585 +0.075017 +0.782641 +0.907250 +0.881934 +0.843341 +0.813524 +0.938574 +0.704715 +0.779777 +0.835685 +0.132238 +0.991128 +0.872545 +0.929227 +0.649648 +0.974773 +0.892570 +0.793593 +0.434926 +0.929152 +0.945738 +0.758066 +0.776530 +0.891532 +0.776820 +0.885209 +0.969833 +0.927035 +0.410396 +0.924533 +0.865800 +0.820807 +0.731903 +0.799635 +0.824418 +0.722740 +0.793937 +0.560943 +0.780465 +0.311268 +0.909320 +0.495426 +0.820049 +0.743809 +0.942430 +0.424581 +0.886074 +0.653347 +0.659457 +0.419615 +0.659061 +0.731537 +0.802951 +0.416740 +0.289915 +0.590161 +0.561963 +0.283572 +0.596513 +0.679773 +0.733682 +0.581110 +0.861274 +0.549333 +0.882207 +-0.013831 +0.859629 +0.919414 +0.828578 +0.336896 +0.929568 +0.913839 +0.477164 +0.776901 +0.974388 +0.327045 +0.764151 +0.884055 +0.777009 +0.896045 +0.623348 +0.352757 +0.502752 +0.849321 +0.814664 +0.487345 +0.560140 +0.659382 +0.442747 +0.092180 +-0.639308 +0.898720 +-0.027316 +0.527116 +0.185469 +0.866025 +0.437241 +0.291017 +-0.467501 +0.851830 +0.867417 +0.458257 +0.454650 +-0.880109 +0.836007 +0.720156 +0.293690 +-0.598783 +0.876269 +0.550962 +0.550669 +0.835509 +0.663517 +0.840371 +0.963241 +0.485627 +0.737306 +0.368318 +0.295726 +0.619433 +0.850122 +0.710131 +0.392563 +0.843444 +0.242313 +0.013788 +-0.238130 +0.519250 +0.840409 +0.563784 +0.705660 +0.794885 +0.646993 +0.529211 +0.722310 +0.842160 +0.625805 +0.715324 +0.670925 +0.794569 +0.326269 +0.444903 +0.549507 +0.922147 +0.259465 +0.495925 +0.323686 +0.582111 +0.684649 +0.881086 +0.853277 +0.918099 +0.933330 +0.753619 +0.204888 +0.955176 +0.554428 +0.546498 +0.555819 +0.393643 +0.646801 +0.514241 +0.485123 +0.563474 +0.752105 +0.250995 +0.746843 +-0.726994 +0.934601 +0.630713 +0.443884 +0.170301 +0.364722 +0.444668 +0.298024 +0.604820 +0.849130 +0.434903 +0.454117 +0.201506 +0.826713 +0.684118 +0.851359 +0.915930 +0.700164 +0.849554 +0.797214 +0.736734 +0.761790 +0.255512 +0.770870 +0.624182 +0.873103 +0.653297 +0.736728 +0.472626 +0.606235 +0.734110 +0.656799 +0.174755 +0.680893 +0.934670 +0.288425 +0.821240 +0.437197 +0.327400 +0.977861 +0.809175 +0.918998 +0.475833 +0.898713 +0.789153 +0.879461 +0.632116 +0.895290 +0.665552 +0.417362 +0.520317 +0.734539 +0.737233 +-0.070055 +0.811702 +0.611999 +0.777035 +0.562398 +0.890468 +0.989793 +0.211716 +0.782300 +-0.049482 +0.869632 +0.068846 +0.437935 +0.757810 +0.623367 +0.584229 +0.616137 +0.552216 +0.434408 +-0.047779 +0.289406 +0.636556 +0.592633 +-0.193673 +0.719726 +0.841543 +0.849264 +0.935743 +0.027993 +0.723585 +0.692234 +-14.742689 +0.876492 +0.676497 +0.965523 +0.837102 +0.889570 +0.449489 +0.563081 +0.915549 +0.725439 +0.566346 +0.980024 +0.983223 +0.654363 +0.255157 +0.767787 +0.944587 +0.933730 +0.146708 +0.322689 +0.686642 +0.924747 +0.996162 +0.845254 +0.873301 +0.603666 +0.623575 +0.600932 +0.480722 +0.995519 +0.906119 +0.859131 +0.997907 +0.903622 +0.515676 +0.734174 +0.701915 +0.898203 +0.405227 +0.731462 +0.449328 +0.506013 +0.646514 +0.850784 +0.673234 +0.886308 +0.512909 +0.839045 +0.459978 +0.570145 +-6.253404 +0.752139 +0.768174 +0.770523 +0.141456 +0.979944 +0.306328 +0.418326 +0.060062 +0.507580 +-0.181055 +0.830148 +0.804655 +0.309361 +0.325713 +0.515450 +0.611400 +0.593268 +0.611973 +0.872611 +0.147559 +0.699268 +0.192963 +0.671684 +0.137510 +0.692420 +0.255665 +0.239344 +0.664458 +0.864219 +0.643011 +0.721803 +0.881947 +0.807655 +0.347727 +0.771455 +0.846604 +0.876842 +0.861487 +-0.164908 +0.554886 +0.394609 +0.932076 +0.814743 +0.625400 +0.832336 +0.617453 +0.689287 +0.526116 +0.590945 +0.890442 +0.802048 +0.813240 +0.784577 +0.665491 +0.931375 +0.491613 +0.372724 +0.890417 +0.333283 +0.837615 +0.561380 +0.085029 +0.330235 +0.583450 +0.843360 +-1.497354 +0.570208 +0.899367 +0.321831 +0.885719 +0.560094 +0.538947 +0.736852 +0.613703 +0.993513 +0.614155 +0.583260 +0.726031 +0.359255 +0.206837 +0.794366 +0.891587 +0.844725 +0.548386 +0.848652 +0.640896 +0.426839 +0.934649 +0.932380 +0.351380 +0.928208 +0.925456 +-0.106521 +0.684164 +0.646542 +0.790046 +0.873667 +0.298809 +0.283693 +0.958521 +0.193380 +0.709727 +0.939254 +0.600413 +0.902164 +-0.023401 +0.729430 +0.610614 +0.816506 +0.862113 +0.866505 +0.752914 +0.145059 +0.434731 +0.293269 +0.548951 +0.537875 +0.491266 +0.555666 +0.497779 +0.669898 +0.847009 +0.844784 +0.480524 +0.213204 +0.229717 +0.843706 +0.763901 +0.856144 +0.549758 +0.557475 +0.530673 +0.347951 +0.188430 +0.755422 +0.714374 +0.580402 +-0.151116 +0.334257 +0.769208 +0.322912 +0.555317 +-0.346831 +0.979438 +0.735427 +0.858106 +0.796366 +0.806073 +0.915589 +0.877328 +0.558780 +0.747776 +0.886696 +0.662675 +0.705840 +0.852553 +0.661708 +0.387993 +0.914163 +0.873846 +0.871554 +0.065507 +0.624068 +0.475278 +0.658492 +0.407748 +0.497004 +0.674910 +0.427997 +0.369717 +0.823380 +0.703881 +0.919920 +0.630145 +0.969819 +-0.031741 +0.940842 +0.894133 +0.926131 +0.893373 +0.858751 +0.237060 +0.818586 +0.783525 +0.714583 +0.326971 +0.387763 +0.511025 +0.798707 +-0.277157 +0.557013 +0.929799 +0.956255 +0.401297 +-6.783656 +0.946837 +0.512032 +0.888210 +0.004143 +0.467324 +0.986687 +0.854193 +-4.950153 +0.469213 +0.938826 +0.805989 +0.186062 +0.881866 +0.738413 +0.032339 +0.331467 +0.571489 +0.777114 +-0.370531 +0.274195 +0.551552 +0.889341 +0.377109 +0.835961 +0.933886 +0.684099 +0.546969 +0.931391 +0.902312 +0.323223 +0.931468 +0.973849 +0.361773 +0.974380 +0.913322 +0.925566 +0.676243 +0.467989 +0.892602 +0.910940 +0.587126 +0.820466 +0.462467 +0.911843 +0.876821 +-0.600263 +0.820018 +0.836399 +0.827519 +0.951604 +0.778407 +0.222374 +0.800426 +0.812723 +0.751572 +0.875783 +0.740989 +0.862221 +0.866361 +0.729056 +0.933483 +0.382601 +0.887433 +0.789250 +0.910435 +-0.000608 +0.925078 +0.598496 +0.615275 +0.519870 +0.662202 +0.645293 +0.837090 +-0.287110 +0.796975 +0.763830 +0.795972 +0.124410 +0.620736 +0.801302 +0.654343 +0.283558 +0.412646 +0.888863 +0.654583 +0.781033 +0.893158 +0.482317 +0.380594 +0.747555 +0.919138 +-0.131216 +0.108909 +0.662318 +0.039759 +0.929959 +-0.335213 +0.365002 +0.789098 +0.879830 +0.855500 +0.837206 +0.431784 +0.597191 +0.961070 +0.684373 +0.874560 +0.915136 +0.906145 +0.844847 +0.864297 +0.759560 +-0.185721 +0.416167 +0.590936 +0.912230 +0.958989 +0.788344 +0.874051 +0.849627 +0.217213 +0.350224 +0.833225 +0.771569 +0.566496 +0.907838 +0.679636 +0.483731 +0.432953 +0.314714 +0.892341 +0.411184 +-0.107016 +0.875556 +0.830832 +0.863578 +0.932081 +0.533759 +0.663508 +0.785789 +0.914703 +0.865348 +0.932604 +0.634355 +0.399640 +0.903543 +0.781121 +0.043678 +-0.061583 +0.776798 +0.852118 +0.710210 +0.583103 +0.851773 +0.409986 +-0.282793 +-0.099045 +0.498259 +-0.403185 +-0.336232 +0.882218 +0.511183 +0.675631 +-0.227772 +0.552196 +0.516226 +0.515258 +0.139485 +0.349949 +0.589210 +0.349949 +0.589210 +0.336897 +0.403076 +0.082109 +0.183123 +-0.025229 +0.349704 +0.074198 +-0.037293 +0.775856 +0.280417 +0.371810 +0.117626 +-0.019338 +-0.037640 +0.151260 +0.362746 +0.192008 +0.533526 +0.428705 +0.813388 +0.983012 +0.187936 +0.725501 +0.318694 +0.931711 +0.816002 +0.402806 +0.139841 +0.443561 +-0.078167 +0.844325 +0.639970 +0.815591 +0.197559 +0.702550 +0.455602 +0.350195 +0.839167 +0.550276 +0.191922 +0.966064 +0.427300 +0.931336 +0.934171 +0.727669 +0.975526 +0.497830 +0.725075 +0.976780 +0.944469 +0.515004 +0.876237 +0.922468 +0.828577 +0.744794 +0.824438 +0.832990 +0.384631 +0.848536 +0.792166 +0.614795 +0.333794 +0.845478 +-0.605481 +0.803036 +0.594182 +0.938235 +0.889750 +0.889750 +0.481462 +0.873851 +0.876865 +0.379945 +0.995563 +-8283.154783 +0.877424 +-0.210628 +0.934412 +0.673407 +0.772863 +0.878018 +0.171253 +0.877784 +0.895092 +0.936363 +-0.124975 +0.298175 +0.697933 +0.933882 +0.750562 +0.795351 +0.931536 +0.773203 +0.236728 +0.238006 +0.459862 +-0.287344 +0.053257 +0.429331 +0.552906 +0.773591 +0.914530 +0.624041 +0.829182 +0.277867 +0.914574 +0.940915 +0.559468 +0.482438 +-0.178233 +0.750990 +0.065842 +0.452264 +0.531673 +0.646010 +-0.037591 +0.804620 +0.610841 +0.442700 +0.145075 +-0.784267 +0.913995 +0.615394 +0.859507 +0.525948 +0.042301 +0.936168 +0.428394 +0.856822 +0.857608 +0.684376 +0.937340 +0.897007 +0.452368 +0.455398 +0.764343 +0.832932 +0.793809 +0.867936 +0.130288 +0.880431 +0.569769 +0.871010 +0.589493 +0.738069 +0.700307 +-1.768313 +0.645110 +0.102544 +0.821679 +0.247160 +0.387371 +0.668409 +0.545961 +0.955660 +0.816259 +0.791967 +-0.143258 +0.816764 +-0.011578 +0.384388 +0.869974 +0.812264 +0.809590 +0.743830 +0.549143 +0.592666 +0.933063 +0.933202 +0.933256 +0.384741 +0.543432 +0.569272 +0.749901 +0.774280 +0.288701 +0.690893 +0.854478 +0.645777 +0.791909 +0.968667 +0.701352 +0.604317 +0.775189 +0.933244 +0.779657 +-0.201405 +0.783672 +0.520203 +0.857231 +0.615211 +0.690212 +0.614524 +0.912987 +0.874875 +0.550442 +0.862895 +0.904873 +0.719611 +0.853870 +0.803642 +0.914266 +0.812445 +0.936646 +0.237733 +0.882283 +0.903473 +0.560599 +0.826258 +0.718489 +0.516102 +0.714867 +0.535473 +-0.497908 +0.946402 +0.191282 +-0.213085 +0.586206 +0.855075 +0.785559 +0.929603 +0.112573 +-0.196675 +0.852027 +0.785417 +0.405416 +0.656028 +0.682975 +0.795408 +0.751445 +-0.166824 +0.289710 +0.870093 +-0.053249 +0.652543 +0.649788 +0.448761 +0.183668 +0.867435 +0.917477 +0.718224 +0.756446 +0.784592 +0.860254 +0.504355 +0.682839 +0.733376 +0.704520 +0.592328 +0.777641 +0.473578 +-0.012925 +0.123793 +0.823485 +0.749998 +0.699227 +0.608210 +0.799608 +0.813276 +0.434235 +0.672363 +0.930842 +0.416105 +0.518558 +0.712397 +0.858555 +-0.011881 +-0.735785 +0.997867 +0.648499 +0.639604 +0.722978 +-0.043786 +0.797093 +0.652939 +0.311740 +0.508883 +0.913042 +0.647157 +0.640935 +0.071869 +0.616578 +0.455994 +0.548460 +0.553596 +0.912459 +0.707766 +0.250152 +0.693532 +0.869392 +0.790156 +0.924448 +0.786987 +0.486493 +0.310115 +0.385627 +0.534962 +0.952018 +-0.051912 +0.548443 +0.308999 +0.827935 +0.241451 +0.883324 +0.855606 +0.754688 +0.770998 +0.698370 +0.632581 +0.613463 +-0.491225 +0.510921 +0.947911 +0.930097 +0.931356 +0.931286 +0.186005 +0.405741 +0.922608 +0.774431 +0.650784 +0.714567 +0.465270 +0.899537 +0.932287 +0.749596 +0.933280 +0.815171 +0.730223 +0.819129 +0.981507 +0.835709 +0.928964 +0.753655 +0.792418 +0.857859 +0.734635 +0.927378 +0.894629 +0.874288 +0.790407 +0.477054 +0.886578 +0.898353 +0.380291 +0.724379 +0.937768 +0.670869 +0.250311 +0.668273 +0.459227 +0.976495 +0.687384 +0.833824 +0.870768 +0.902787 +0.099302 +0.617111 +0.649574 +0.568531 +0.862683 +0.327818 +0.773676 +0.900984 +0.606994 +0.760410 +0.870978 +0.564447 +-0.221069 +0.800017 +0.798423 +0.896575 +0.629778 +0.926592 +0.797015 +0.638400 +0.981560 +0.098062 +0.913120 +0.543241 +0.964621 +0.264137 +0.563560 +0.345915 +0.754673 +-1.491801 +0.488107 +0.292564 +0.416605 +0.929074 +0.941439 +0.427585 +0.850980 +0.442452 +0.242911 +0.747859 +0.557077 +0.679038 +0.533527 +0.198612 +0.682392 +0.297039 +-0.211768 +0.289605 +0.229313 +0.676224 +0.596749 +0.450369 +0.688104 +0.674579 +0.161546 +0.914867 +0.716462 +0.845724 +0.421578 +0.823089 +0.794438 +0.708072 +0.793101 +0.999368 +0.624047 +0.729834 +0.687918 +0.977551 +0.763200 +-2.687912 +0.303231 +0.461735 +0.723342 +0.764006 +0.651096 +0.751704 +0.819632 +0.284178 +0.740323 +0.588394 +0.991459 +0.600835 +0.211275 +0.549808 +0.883266 +0.884565 +-0.061393 +-0.174225 +0.754617 +0.465463 +0.547711 +0.856646 +0.741716 +0.304463 +0.775750 +0.529659 +0.831734 +0.546375 +0.859287 +0.802948 +0.848577 +0.698874 +-0.109836 +0.619895 +0.803274 +-0.225824 +-0.447814 +0.891219 +0.501320 +0.095164 +0.567136 +0.566867 +0.864919 +-0.288819 +0.204571 +0.391246 +0.394001 +0.615862 +0.479145 +0.498867 +0.034772 +0.216343 +-0.043179 +0.652309 +0.655121 +0.583712 +0.651841 +0.403129 +0.581632 +0.679343 +0.768674 +-0.297677 +-0.100830 +0.546440 +0.550158 +0.973523 +0.711161 +0.720727 +0.906459 +0.955707 +0.858173 +0.382644 +0.523488 +-0.098437 +0.202530 +0.575917 +0.871329 +-0.435412 +0.367558 +0.869313 +0.891906 +0.430211 +0.820156 +0.700410 +0.103207 +0.664489 +-0.452691 +0.332296 +-0.553339 +0.773356 +0.681337 +0.569524 +0.696663 +0.937105 +0.373337 +0.108389 +-0.277892 +0.594413 +0.382170 +-0.112688 +0.832581 +0.968612 +-0.209602 +0.994471 +0.397742 +0.779636 +0.669953 +0.746294 +0.812372 +0.315988 +0.805162 +0.952321 +0.359750 +0.342893 +-0.972433 +0.153892 +0.720188 +0.625889 +0.452040 +0.933658 +0.299663 +0.619929 +0.725741 +0.818665 +0.490041 +0.846559 +0.464913 +0.767720 +-0.182602 +0.382093 +0.830461 +0.087926 +0.711675 +0.616191 +0.804706 +0.941737 +0.592758 +0.108551 +0.946648 +0.777397 +0.712617 +0.307968 +0.519403 +0.848619 +0.882261 +0.597145 +0.910796 +0.582471 +0.704251 +0.934772 +0.520083 +0.615548 +0.919306 +0.676738 +0.791345 +0.838501 +0.664231 +0.499580 +0.706734 +0.824343 +0.716314 +0.874731 +0.346917 +0.902372 +0.930775 +0.895347 +0.921721 +0.929614 +0.625666 +0.827594 +0.611455 +0.601979 +0.487059 +0.519362 +0.922850 +0.769505 +0.654052 +0.763262 +0.658832 +0.756086 +0.910782 +0.809857 +0.741382 +0.823329 +-0.263320 +0.884025 +0.721969 +0.599911 +0.557657 +0.434292 +0.803574 +0.753001 +0.813444 +0.895891 +0.780469 +0.759318 +0.387520 +0.753193 +0.853013 +0.776305 +0.705784 +0.706299 +0.726451 +0.936615 +0.769866 +0.737163 +0.846607 +0.827796 +0.647996 +0.947447 +0.056453 +0.843441 +0.587411 +0.670903 +0.839850 +0.687369 +0.588256 +0.701634 +0.641599 +-0.164166 +0.495246 +0.737499 +0.935292 +0.868280 +0.922152 +0.406846 +0.939015 +0.263144 +0.169224 +0.788335 +0.890881 +0.929766 +0.468743 +0.902410 +0.944537 +0.608988 +0.615070 +0.343426 +0.789575 +0.750098 +0.890036 +0.472353 +-0.289424 +-0.270154 +0.707703 +0.953870 +0.477417 +0.542364 +0.915504 +0.986770 +0.984866 +0.905819 +0.490076 +0.261841 +0.937919 +0.826334 +0.797232 +0.551980 +0.980008 +0.201374 +0.499182 +0.383160 +0.913868 +0.624294 +0.920601 +0.934247 +0.930928 +0.914697 +0.338943 +0.478170 +0.811571 +0.562295 +0.705697 +0.844555 +0.929129 +0.173433 +0.354826 +0.727116 +0.467003 +0.491436 +0.618916 +0.987236 +0.608810 +0.541999 +0.768991 +0.646661 +0.707395 +0.556153 +-0.110875 +-0.139935 +0.430441 +0.842969 +0.733689 +0.138600 +0.700434 +0.281394 +-0.055577 +-0.267971 +0.505731 +-0.104832 +0.413463 +-0.042652 +0.797445 +0.435454 +0.924746 +0.837918 +0.538721 +0.477147 +0.791342 +0.763674 +0.643351 +0.876132 +0.744330 +0.778988 +0.219226 +0.371656 +0.444936 +0.562854 +0.912600 +0.580715 +0.476268 +0.379509 +0.307506 +0.921669 +0.911285 +-0.199719 +0.851479 +0.250005 +-0.399575 +-0.271045 +0.802490 +0.710829 +-0.283971 +0.697910 +0.342314 +0.785790 +0.458540 +0.796383 +0.230586 +0.945559 +0.651021 +-0.996398 +-0.253226 +-0.109475 +0.608449 +0.243866 +0.306092 +0.915793 +0.211323 +0.566771 +0.825125 +0.564274 +0.548150 +0.833717 +0.590993 +0.438550 +-0.217100 +0.331973 +0.017834 +0.817458 +0.006803 +0.283831 +0.896926 +-0.164130 +0.876054 +0.558974 +0.770801 +0.488989 +0.729084 +0.305047 +0.723234 +0.685392 +0.096582 +0.776408 +0.755561 +0.922997 +0.990567 +0.723300 +0.317473 +0.573178 +0.840067 +0.456012 +0.843695 +0.828791 +0.946902 +0.947795 +0.946589 +0.974850 +0.820919 +0.611303 +0.878142 +0.380513 +0.039892 +0.833336 +0.238305 +0.295055 +0.934549 +0.705110 +0.411969 +0.484256 +0.875973 +0.898979 +0.464428 +0.829657 +0.326994 +-0.109456 +0.786435 +0.225620 +0.921753 +-0.032616 +0.482634 +-0.011891 +0.674448 +0.691773 +0.757888 +0.329289 +0.891890 +0.698176 +-0.158888 +0.409077 +0.737199 +0.791595 +0.546011 +0.991288 +0.063529 +0.633561 +0.696205 +0.232125 +0.860394 +-0.094166 +0.224204 +0.653831 +0.164835 +0.649085 +0.892041 +0.815732 +0.165757 +0.895348 +0.920856 +0.802647 +0.923941 +0.929637 +-0.211674 +0.532475 +0.439908 +0.566895 +0.376707 +0.206990 +0.672179 +0.613138 +0.514974 +0.567302 +0.353127 +0.239853 +-0.124091 +0.517906 +0.313125 +0.907309 +0.905279 +0.876826 +0.805984 +0.848489 +0.832280 +0.699588 +0.887204 +0.537696 +0.633000 +0.828511 +0.940076 +-0.221630 +-0.213639 +0.709693 +0.569603 +0.423226 +0.727958 +0.921078 +0.380083 +0.789916 +0.426024 +0.587761 +0.783445 +0.830781 +0.517765 +0.745027 +0.805145 +0.984789 +0.730509 +0.927086 +0.649685 +0.693797 +0.960467 +0.490298 +0.727926 +0.605006 +0.644327 +0.966610 +0.636506 +0.940033 +0.578828 +0.980095 +0.908681 +0.968743 +0.625336 +0.434332 +0.937033 +0.950043 +0.051935 +0.904519 +0.836364 +0.972878 +0.828353 +0.801149 +0.976568 +0.433041 +0.840945 +0.766385 +0.991400 +0.805822 +0.866672 +-1.033496 +0.759951 +0.980229 +0.938179 +0.852278 +0.633216 +0.963795 +0.954893 +0.668916 +0.892799 +0.970144 +0.687888 +0.733575 +0.992813 +0.498566 +0.316678 +0.928539 +0.343200 +0.832469 +0.532774 +-0.277051 +0.812485 +0.909536 +0.373161 +0.972644 +0.926212 +0.886289 +0.591710 +0.894449 +0.150490 +0.384156 +0.007991 +0.858871 +0.328994 +0.937647 +0.735153 +0.964473 +0.258594 +0.478873 +0.124594 +0.780182 +0.864407 +0.621702 +0.831302 +0.816624 +0.847502 +0.948160 +0.465627 +0.792358 +0.695138 +0.432979 +0.847743 +0.993868 +0.949070 +0.993456 +0.778208 +0.328333 +0.993210 +0.837829 +0.532235 +0.784907 +0.997727 +0.375699 +0.959596 +0.265434 +0.917525 +0.368704 +-0.372115 +0.089522 +0.046000 +0.916863 +0.992060 +0.878933 +0.808392 +0.184023 +0.470878 +0.560036 +0.483262 +0.375624 +0.483518 +0.857304 +0.761419 +0.597964 +0.344029 +0.178575 +0.591229 +0.780529 +0.849433 +0.857734 +0.971889 +0.665706 +0.753430 +0.574020 +0.628890 +0.902990 +0.872468 +0.209807 +0.938284 +0.583224 +0.979314 +0.865524 +0.386306 +0.949148 +0.948746 +0.911399 +0.438742 +-0.370753 +0.492105 +0.153653 +0.865874 +0.837119 +0.786659 +0.242597 +-0.395470 +0.895109 +0.214767 +0.845175 +0.259630 +0.950402 +0.857890 +0.867717 +0.372981 +0.901690 +0.720622 +0.298365 +0.612873 +0.817992 +0.887973 +0.622661 +0.754740 +0.831882 +0.934117 +-0.119774 +-0.128606 +-0.157412 +0.938149 +0.532284 +0.821160 +0.991125 +0.461713 +0.644502 +0.414760 +0.637695 +0.847492 +0.837941 +0.400232 +0.303253 +0.484241 +0.511441 +0.392012 +0.906066 +0.689731 +0.764022 +0.723749 +0.338929 +0.856014 +0.385994 +0.441871 +0.409026 +0.676228 +0.413767 +0.833644 +0.688368 +0.709067 +0.267074 +0.475978 +0.886352 +-0.138507 +0.649598 +0.873076 +0.897401 +0.737396 +0.710503 +-0.009832 +0.466686 +0.715689 +0.497612 +0.263549 +0.589843 +0.894281 +0.400479 +0.427891 +0.927543 +0.090004 +0.812367 +0.869364 +0.386405 +-0.464818 +0.970687 +0.558342 +0.292652 +0.972169 +0.917791 +0.937188 +-0.310250 +0.870793 +0.826327 +0.933422 +0.919847 +0.162785 +0.404449 +-0.496746 +-0.350289 +0.715077 +0.725076 +0.705904 +-0.001496 +0.853617 +0.406844 +0.827759 +0.232147 +0.572390 +0.147579 +0.484684 +0.782737 +0.743483 +0.772628 +0.844144 +0.305481 +0.819936 +0.882335 +0.909523 +0.826995 +0.972875 +0.960566 +0.296665 +0.421204 +0.518705 +0.630536 +0.444786 +0.652105 +0.733928 +0.128534 +0.472011 +0.179266 +0.459989 +0.480724 +0.340576 +0.382240 +0.572161 +0.770933 +0.408693 +0.864548 +0.813880 +0.639300 +0.552875 +-0.355627 +0.682674 +0.628775 +0.926309 +0.781694 +0.926294 +0.435128 +0.466209 +0.848081 +0.621952 +0.943455 +0.476664 +0.291574 +0.911047 +0.769527 +0.914380 +0.867380 +0.894524 +0.846021 +0.186180 +0.382181 +0.818237 +0.865220 +0.893461 +0.947038 +0.895305 +0.720359 +0.721947 +0.717456 +0.650025 +0.042034 +0.935898 +0.045400 +0.657415 +0.326693 +0.901322 +0.879767 +0.791120 +0.244397 +0.794736 +0.936150 +0.827493 +0.358514 +0.996577 +0.711236 +0.858578 +0.218379 +0.176341 +0.780059 +0.431666 +0.703690 +0.152609 +0.766751 +0.931345 +0.495632 +0.855777 +0.224118 +0.629704 +0.766212 +0.898752 +0.930058 +0.719141 +0.666784 +0.321954 +0.896324 +0.715355 +0.529684 +0.829971 +0.715357 +0.443369 +0.837407 +0.287512 +0.923373 +0.688950 +0.926007 +0.598640 +0.682738 +0.720466 +0.865049 +0.666302 +0.934808 +0.677271 +0.614271 +0.796952 +0.531267 +0.934104 +0.930502 +0.631818 +0.834208 +0.763396 +0.799259 +0.858629 +0.369550 +0.737111 +0.183881 +0.139098 +0.360257 +0.867446 +0.043405 +0.660517 +0.546294 +0.476375 +0.791855 +0.858315 +0.857804 +0.654298 +0.757382 +0.810412 +-0.031510 +0.736403 +-1.710263 +0.906083 +0.935504 +0.704938 +-0.294481 +0.617929 +0.936425 +-0.146774 +0.464005 +0.895659 +-0.352459 +0.973272 +0.913107 +0.948251 +0.863732 +0.480865 +0.889798 +0.823599 +0.909981 +0.532694 +0.772394 +0.563514 +0.856425 +0.846787 +0.934356 +0.197022 +0.924213 +0.701646 +0.603602 +0.880464 +0.918623 +-0.567864 +0.149794 +0.865444 +0.752570 +0.897982 +0.851602 +0.777128 +0.850699 +0.606475 +0.843356 +0.523002 +-0.247475 +0.886965 +0.812002 +0.932692 +0.950682 +0.771457 +0.861725 +0.748609 +0.792408 +0.693199 +0.540785 +0.780750 +0.748722 +0.853609 +0.747072 +0.806325 +0.627741 +0.657382 +0.279310 +0.164986 +0.312642 +0.706909 +0.889620 +0.696358 +0.052484 +0.743224 +0.670214 +0.295086 +0.391934 +0.854641 +-0.184398 +0.641480 +0.529132 +0.800741 +0.064797 +0.511186 +0.909547 +0.939258 +0.914165 +0.824081 +0.470650 +0.652744 +0.231217 +0.892095 +0.277320 +0.962557 +0.919764 +0.576246 +0.432799 +0.775535 +0.398037 +-132.205316 +0.106780 +0.475622 +0.201524 +0.741566 +0.442778 +0.285939 +0.531614 +0.993558 +0.314595 +0.619412 +0.942914 +0.663061 +0.528000 +0.943882 +0.815633 +0.357556 +0.627633 +0.629981 +0.731805 +0.732383 +0.765109 +0.866328 +0.764344 +0.644718 +-0.060405 +0.364561 +0.922482 +0.584156 +0.997699 +0.545716 +0.655688 +0.700477 +0.942897 +-0.373325 +0.731412 +0.177296 +0.753187 +0.842882 +0.858148 +0.641738 +0.323173 +0.575247 +0.402993 +0.620789 +0.623254 +0.325264 +-0.445045 +0.924921 +0.874880 +0.373629 +0.662853 +0.577259 +0.889401 +0.858147 +0.743827 +0.810967 +0.827518 +0.727000 +0.597054 +0.913425 +-0.145247 +-0.293567 +0.898893 +0.909965 +0.987845 +0.977772 +0.872950 +0.944914 +0.965237 +0.915261 +-0.177179 +0.675139 +-0.164300 +0.098637 +0.514244 +0.346181 +0.106930 +0.835457 +0.763183 +-0.035343 +-0.127461 +0.898146 +0.857542 +0.595705 +0.174242 +0.764426 +0.577118 +0.893536 +0.309901 +0.522982 +0.453625 +0.928688 +0.442367 +0.337810 +0.499768 +0.301497 +0.900096 +-0.039129 +0.325029 +0.451117 +0.445837 +0.709454 +0.552991 +0.740017 +0.797138 +0.365039 +0.537665 +-0.093939 +0.243212 +0.708036 +-0.565264 +0.758104 +0.864558 +0.302645 +0.349622 +-0.153258 +0.845519 +0.733341 +0.559832 +0.673587 +-0.234400 +0.745992 +0.542991 +0.678864 +0.727442 +0.613435 +0.662191 +0.078671 +0.122051 +0.801429 +-0.027927 +0.629577 +0.859482 +0.462482 +0.762528 +0.840102 +0.830194 +0.857384 +0.825788 +0.678084 +-0.044158 +0.521657 +0.740503 +0.779802 +0.649945 +0.933789 +0.753251 +0.884577 +0.691641 +0.231013 +0.633248 +0.925784 +0.703504 +0.966359 +0.910325 +0.763712 +0.793584 +0.920255 +0.928491 +0.978335 +0.919401 +0.666827 +0.961733 +0.900572 +0.923356 +0.770124 +0.711037 +0.691101 +0.523447 +0.959665 +0.949825 +0.580163 +0.572269 +0.639083 +0.932322 +0.929274 +0.966822 +0.792892 +0.995764 +0.844665 +0.856207 +0.987557 +0.708718 +0.934874 +0.939113 +0.695955 +0.746439 +0.846376 +0.803827 +0.960508 +0.573666 +0.625656 +-0.053124 +0.907317 +0.036177 +0.878543 +0.601638 +0.816708 +0.267159 +0.639988 +0.802998 +0.208216 +0.331304 +0.766197 +0.564659 +0.280337 +0.782776 +0.945761 +0.335161 +0.447636 +0.374521 +-2.273891 +0.712472 +0.869383 +0.841561 +0.785876 +0.119573 +0.779854 +0.661593 +0.718601 +0.754911 +0.825460 +0.085443 +0.800634 +0.578805 +0.843887 +0.260974 +0.823043 +0.587897 +0.746910 +0.686639 +0.843793 +0.588371 +0.566274 +0.304112 +0.659202 +-0.063291 +0.808582 +0.500181 +0.655740 +-0.084589 +0.500434 +0.425508 +0.498108 +0.868332 +-0.138142 +-0.128689 +0.675917 +0.502206 +0.898274 +0.543969 +0.871578 +0.390529 +0.773394 +0.931446 +0.917417 +0.761803 +0.760031 +0.579571 +0.807984 +0.921626 +0.399693 +0.773705 +0.600703 +-0.399198 +0.977285 +0.937733 +0.888727 +0.541882 +0.617227 +-0.304648 +0.769045 +0.904956 +0.562429 +0.928161 +0.303229 +-0.259503 +0.087664 +0.895668 +0.738697 +-0.099381 +0.896806 +-0.696643 +0.412960 +0.857033 +0.167321 +0.905453 +-0.070725 +0.455690 +0.754786 +0.443423 +0.902857 +0.688041 +0.791766 +0.894176 +0.398666 +-0.034325 +-0.268452 +0.309734 +0.406988 +0.656749 +0.056382 +0.818937 +0.564916 +0.515240 +0.713133 +0.804934 +0.792887 +0.906484 +0.939009 +0.684287 +-5.640606 +0.649698 +0.889509 +0.761795 +0.820301 +0.821221 +0.769704 +-0.188251 +0.748921 +0.558954 +0.437939 +0.937596 +0.924316 +-0.333585 +0.444961 +0.902062 +0.992014 +0.273196 +0.900420 +0.903011 +0.838056 +0.414412 +0.694667 +0.876467 +0.923669 +0.300021 +0.942598 +0.855558 +0.769625 +0.608897 +0.866712 +0.911986 +0.406806 +0.270520 +0.631363 +0.375229 +0.482346 +0.918181 +0.888282 +-179.053040 +0.460655 +0.617026 +0.376327 +0.513552 +0.411994 +0.077779 +0.632109 +0.460017 +0.345609 +-0.163521 +0.677913 +0.436045 +0.794236 +0.888435 +0.859496 +0.595636 +0.269271 +0.644743 +0.972611 +0.921440 +0.474679 +0.849533 +0.415753 +0.894243 +0.953168 +0.875117 +0.490158 +0.464474 +0.632381 +0.607887 +0.427623 +0.666724 +0.930975 +0.948308 +0.975430 +0.850553 +0.267505 +0.379302 +0.865115 +0.936521 +0.177694 +0.819547 +0.768383 +0.711484 +-0.343768 +0.817765 +0.930451 +-0.242244 +0.914141 +0.661986 +-0.391963 +0.461856 +0.839865 +0.931126 +0.544406 +-0.300026 +-0.151390 +0.876867 +0.817807 +0.982310 +0.955362 +0.729376 +0.663749 +0.692892 +-0.626914 +0.786599 +0.920172 +0.080312 +0.978514 +0.673378 +-0.295116 +0.872428 +0.197445 +0.669246 +0.403560 +0.300059 +0.748583 +0.427752 +0.492847 +0.595115 +0.910196 +0.318621 +0.393856 +0.612408 +0.630939 +0.856022 +0.856645 +0.802196 +0.354654 +0.027075 +0.820878 +0.340492 +0.457996 +0.542263 +-0.007690 +0.026144 +0.263139 +0.662212 +0.239919 +0.870563 +-0.120856 +0.776464 +-1.086716 +0.477970 +0.576028 +0.357076 +0.266652 +0.357832 +0.388668 +0.775964 +0.671797 +0.652813 +0.741529 +0.565758 +0.807795 +0.215952 +0.884952 +0.809857 +0.166442 +0.561084 +0.273705 +0.736252 +0.805025 +0.806770 +0.721477 +0.642509 +-0.106465 +0.690399 +0.771372 +0.351247 +0.744858 +0.984175 +-0.250809 +0.336580 +0.343929 +-0.034256 +0.724631 +0.715490 +0.607525 +0.450037 +0.412624 +0.357529 +0.149391 +0.135387 +0.211728 +0.128249 +0.471323 +0.769750 +0.974524 +0.532393 +-0.355666 +0.975533 +0.632706 +0.878711 +-40.206290 +0.579586 +0.974945 +0.754029 +0.975198 +0.595121 +0.488070 +0.675647 +0.822035 +0.896985 +0.569259 +0.722976 +0.459696 +0.445645 +0.775419 +0.347425 +0.546134 +0.447922 +0.487391 +0.335771 +0.345311 +0.878417 +0.426330 +0.228584 +0.907088 +0.970586 +0.518558 +-0.246969 +0.547026 +0.930759 +0.290199 +0.722257 +0.506052 +0.508806 +0.937412 +0.913190 +0.937023 +0.516536 +0.470984 +0.907907 +0.437260 +0.612604 +0.631169 +0.463073 +0.567554 +0.977854 +0.585552 +0.720989 +0.699238 +0.550228 +0.616901 +0.732812 +0.863787 +0.540035 +0.740100 +0.897250 +0.803543 +0.457202 +0.526365 +0.949867 +0.563870 +0.432218 +0.253679 +0.566913 +-211.975428 +0.868286 +0.312405 +0.312321 +0.438367 +0.310890 +0.384989 +0.541459 +0.611558 +0.548486 +0.876291 +0.300214 +0.367592 +0.197411 +0.585542 +0.149987 +-1.641843 +0.734249 +0.228839 +0.973372 +0.783460 +0.104020 +0.839717 +0.725667 +-2.537358 +0.563856 +0.836343 +-0.209984 +0.572720 +0.543158 +0.609624 +0.906732 +0.906380 +0.929072 +0.921700 +0.914072 +0.921444 +0.649334 +0.861603 +0.809221 +0.941305 +0.936796 +0.756109 +0.906444 +0.986465 +0.172510 +-6.540494 +-0.103904 +0.998825 +0.938969 +0.926413 +0.915284 +0.862082 +0.492275 +0.834194 +0.791223 +0.878312 +0.648436 +0.932239 +0.975784 +0.581163 +0.988999 +0.668809 +0.641515 +0.689016 +0.993338 +0.771510 +0.819324 +0.663345 +0.528080 +0.763126 +0.866308 +0.857482 +0.840803 +0.874686 +0.914072 +0.957766 +0.664907 +0.900521 +0.772392 +0.619714 +0.921604 +0.914136 +0.489735 +0.444263 +0.510850 +0.264309 +0.856965 +0.242270 +0.690789 +0.838617 +0.933134 +0.705952 +0.838501 +-67.548610 +0.827541 +0.186692 +0.710143 +0.873531 +0.206932 +0.732950 +0.425596 +0.249644 +0.950193 +0.531373 +0.326916 +0.291083 +0.305801 +0.214304 +0.792261 +0.356988 +0.735722 +0.529765 +0.737105 +0.265151 +0.716762 +0.237508 +0.500015 +0.118565 +0.950309 +0.535362 +-0.222277 +0.919579 +0.969601 +0.963823 +0.907221 +-9.752467 +-8.960012 +0.760443 +0.947937 +0.521573 +0.428452 +0.470911 +0.506990 +0.532085 +0.971408 +0.371363 +0.279872 +0.718133 +0.534290 +0.999383 +0.909468 +0.495949 +0.613173 +0.431305 +0.509956 +0.640735 +0.747514 +0.460856 +0.802600 +0.910343 +0.740151 +0.599775 +0.941629 +0.445904 +0.754723 +0.597753 +0.731169 +0.254637 +0.308042 +0.857618 +0.347231 +0.777103 +0.929328 +0.701966 +0.921316 +0.276791 +0.453614 +0.336378 +0.497576 +0.184810 +0.560597 +0.650943 +0.584332 +0.568089 +0.931954 +0.796149 +0.603955 +0.502956 +0.732377 +0.792999 +0.807548 +0.745187 +0.579484 +0.566606 +0.612196 +0.552382 +0.797250 +0.842758 +0.475308 +0.940207 +0.609103 +0.760206 +0.927294 +0.314999 +0.635259 +-0.054659 +0.563326 +-0.577664 +0.863747 +0.855025 +0.617999 +0.543793 +0.597732 +0.591881 +0.512325 +0.420354 +0.412311 +0.451021 +0.502185 +0.447802 +0.510707 +0.551150 +0.745022 +0.765857 +0.359552 +0.740622 +0.751466 +0.787062 +0.535434 +0.400511 +0.793487 +0.638310 +0.813688 +0.753141 +0.984164 +0.549675 +-1.808224 +-32.815464 +0.316046 +0.584875 +0.106892 +0.412827 +0.369045 +0.249702 +0.770200 +0.251004 +0.897627 +0.344449 +0.496819 +0.349123 +0.592991 +0.856800 +0.839382 +0.750194 +0.312614 +0.074415 +0.918389 +0.708467 +0.834823 +0.996011 +0.830871 +0.931001 +0.960948 +0.766128 +0.628479 +0.958493 +0.855576 +0.126346 +0.930380 +0.826853 +0.901493 +0.914610 +0.838453 +0.200839 +0.814615 +0.940909 +0.951417 +0.814381 +0.517920 +0.513681 +0.308049 +0.890208 +0.669858 +0.182422 +0.829363 +-0.160711 +0.906173 +0.321845 +0.872603 +0.796595 +0.975959 +0.645125 +0.548197 +0.367982 +0.478739 +0.766833 +0.886380 +0.329057 +0.396538 +0.696927 +0.992055 +-0.690674 +-13714.425224 +0.893511 +0.383941 +0.825104 +0.812587 +0.842176 +0.409150 +0.907696 +0.417173 +0.370225 +0.155913 +0.994232 +0.496310 +0.315673 +0.269267 +0.626518 +0.316412 +0.481276 +0.353302 +0.836449 +0.918675 +0.564220 +0.268525 +0.994950 +0.944305 +0.948400 +0.661498 +0.902025 +0.780366 +0.967727 +0.472802 +0.533369 +0.379950 +0.453875 +0.446334 +0.510414 +0.923300 +0.533838 +0.398089 +0.562144 +0.377667 +0.711159 +0.445430 +0.688701 +0.970547 +0.842066 +0.687794 +0.683395 +0.852289 +0.662440 +0.750818 +0.653610 +-100.987652 +0.832187 +0.265401 +0.990923 +0.727708 +0.688004 +0.975123 +0.526523 +0.446605 +0.318991 +0.911184 +0.467422 +0.775850 +0.708951 +0.686689 +0.328105 +0.137496 +0.839382 +0.357196 +0.802168 +0.590138 +0.396610 +0.388729 +0.312367 +0.885659 +0.871309 +0.906572 +0.906348 +0.921540 +0.906668 +0.906412 +0.929104 +0.773736 +0.976590 +0.724032 +0.610135 +0.937020 +0.827998 +0.612402 +0.935410 +0.921988 +0.154578 +0.931491 +0.703845 +0.183144 +0.989282 +0.725425 +0.858414 +0.928259 +0.797471 +0.946849 +0.935041 +0.876428 +0.953027 +0.466042 +0.240231 +0.156033 +0.994860 +0.891479 +0.462618 +-154.846918 +-0.835810 +0.957402 +0.781038 +0.647390 +0.756329 +0.748037 +0.159567 +0.697814 +0.951860 +0.347099 +0.717027 +0.969587 +0.817308 +0.582563 +0.930893 +0.641673 +0.909507 +0.190867 +0.322753 +0.785714 +0.805902 +0.925695 +0.394412 +0.925214 +0.908804 +0.934119 +0.853622 +0.923511 +0.245450 +0.943543 +0.533442 +0.499054 +0.658023 +0.454808 +0.175795 +0.914433 +0.498189 +0.677157 +0.756706 +0.696726 +0.240002 +0.905633 +0.169944 +0.695497 +0.943234 +0.195363 +0.827431 +0.645682 +0.611125 +0.961170 +0.347362 +0.020203 +0.697058 +0.534098 +0.618389 +0.724376 +0.652194 +0.830814 +0.921105 +0.993146 +0.351965 +0.816035 +0.916095 +0.113852 +0.562798 +0.499978 +0.442732 +0.159657 +0.169944 +0.928315 +0.064405 +0.393505 +0.393364 +0.631895 +0.959990 +0.911008 +0.456987 +0.762211 +0.261769 +0.355066 +0.415435 +0.414733 +0.124263 +0.374052 +0.988507 +0.801942 +0.558940 +0.946972 +0.588638 +0.890006 +0.603427 +0.465548 +-4.286292 +0.196749 +0.629062 +0.846376 +0.731041 +0.178457 +0.602745 +0.368974 +0.799396 +0.825530 +0.306121 +0.234051 +0.874722 +0.571318 +0.098611 +0.632534 +-0.077889 +0.459974 +0.845535 +0.537004 +0.917876 +0.358666 +0.064761 +0.323284 +0.478749 +0.962490 +-0.004067 +0.206270 +0.203630 +0.183320 +0.701936 +0.844995 +0.365121 +0.611847 +-0.205944 +0.061327 +0.521205 +0.126932 +0.474153 +0.849565 +0.893850 +0.620054 +0.467265 +0.265775 +0.877582 +0.726547 +0.930279 +0.812778 +0.492173 +0.423136 +-0.486462 +0.575094 +0.451779 +0.185835 +0.639763 +0.268253 +0.423169 +0.983987 +0.996021 +0.866118 +0.461479 +0.343351 +0.746982 +0.582019 +0.606920 +0.584353 +0.926285 +0.548114 +0.676128 +0.000234 +0.153693 +0.505239 +0.587691 +0.086237 +0.345640 +0.341025 +0.668947 +0.533885 +0.354494 +0.309782 +0.375516 +0.039965 +0.068284 +0.062930 +0.558277 +-0.049736 +0.009656 +0.861527 +-0.799385 +0.182047 +0.340799 +0.256446 +0.047460 +0.969528 +0.325278 +0.183127 +0.037845 +0.220811 +-0.020728 +0.251190 +0.198283 +0.099768 +0.037073 +-0.129512 +0.606655 +0.426496 +0.452943 +0.703064 +0.936567 +0.759375 +0.991222 +0.980641 +0.741967 +0.698045 +0.561809 +-2.535291 +-3.282464 +0.417708 +-2.084054 +0.401209 +0.077128 +-2.079500 +0.747551 +0.633289 +0.585529 +0.440186 +0.905007 +-21.664414 +0.913177 +0.811585 +0.747475 +0.382810 +0.266979 +0.344312 +0.488846 +0.180468 +0.501634 +0.693399 +0.488886 +0.632234 +0.574307 +0.805633 +0.766684 +0.796163 +0.581945 +0.741547 +0.764594 +0.615600 +0.808370 +0.848671 +0.770631 +0.338397 +0.701248 +0.724871 +0.607335 +0.731775 +0.804149 +0.239844 +0.765653 +0.318785 +0.753735 +0.241011 +0.913226 +0.249841 +0.879145 +0.224154 +0.396296 +0.538977 +0.925693 +0.438384 +0.481501 +0.918439 +0.713584 +0.748232 +0.694163 +0.357989 +0.680401 +0.684808 +0.725180 +0.791270 +0.891211 +0.307654 +0.445879 +0.433027 +0.674825 +0.500228 +0.197287 +0.641485 +0.809991 +0.796905 +0.398624 +0.546998 +0.712515 +0.593492 +0.804297 +0.980826 +0.738164 +-68.124636 +0.740703 +0.308606 +0.932089 +0.649939 +0.242197 +0.804259 +0.746898 +0.953181 +0.496333 +0.904594 +0.891391 +0.927246 +0.916832 +0.667404 +0.917631 +0.909532 +0.594606 +0.747053 +0.055688 +0.657210 +0.521759 +0.682769 +0.628764 +0.803181 +0.980038 +0.989739 +0.491644 +0.660390 +0.302190 +0.920637 +0.438537 +0.933983 +0.942514 +0.128494 +0.925476 +0.566864 +0.932072 +0.571783 +0.393647 +0.721892 +0.276751 +0.639539 +0.943292 +0.985533 +0.905884 +0.937921 +0.737127 +0.702039 +0.626038 +0.028278 +0.817928 +0.272084 +-1.058768 +0.427518 +-0.521222 +0.152455 +0.514409 +0.821867 +0.428155 +0.189399 +0.677267 +0.470741 +0.538296 +0.320723 +0.503185 +0.576101 +0.375096 +0.385026 +0.488319 +0.647318 +0.827463 +0.758153 +0.612432 +0.845261 +0.830432 +0.503970 +0.347747 +0.355223 +0.890877 +0.324253 +0.280021 +0.760556 +0.463490 +0.413544 +0.266596 +0.687604 +0.512641 +0.216391 +0.893194 +0.537112 +0.424853 +0.761995 +0.586778 +0.728843 +0.272327 +0.438253 +0.355697 +0.546400 +0.962484 +0.260900 +0.785571 +0.558170 +0.681047 +0.862248 +0.899032 +0.819643 +0.852870 +0.929303 +0.023930 +0.607189 +0.600828 +0.927809 +0.288173 +0.499805 +0.848889 +0.481432 +0.278793 +0.486038 +0.591560 +0.828878 +0.292113 +0.541355 +0.495917 +0.269972 +0.471808 +0.561484 +0.347959 +0.288395 +0.338419 +0.195880 +0.865523 +0.525294 +0.381742 +0.403901 +0.628704 +-0.265477 +0.554820 +0.813971 +0.623432 +0.521527 +-0.105033 +0.140463 +0.312972 +0.445327 +0.506689 +0.134390 +0.076894 +0.058790 +0.979148 +0.491967 +0.858326 +0.400160 +0.012622 +0.005259 +0.766733 +0.838149 +0.416834 +0.601628 +0.822919 +0.817151 +0.855352 +0.844916 +0.862812 +0.843215 +0.925154 +0.932354 +0.967032 +0.911704 +0.907664 +0.928107 +0.907964 +0.910864 +0.792155 +0.917254 +0.970291 +0.940468 +0.888907 +0.938932 +0.597283 +0.752036 +0.852468 +0.875754 +0.860011 +0.534811 +0.969514 +0.925880 +0.937507 +0.941173 +0.927402 +0.928445 +0.941964 +0.963262 +0.913941 +0.698652 +0.919204 +0.769751 +0.785976 +0.307958 +0.999497 +0.823629 +0.716394 +0.862692 +0.723606 +0.766706 +0.601144 +0.777091 +0.961251 +0.643281 +0.906509 +0.916852 +0.916489 +0.922361 +0.907717 +0.952164 +0.536352 +0.793287 +0.734300 +0.912559 +0.322429 +0.944342 +0.559463 +0.407938 +0.407049 +0.929439 +0.921333 +0.937442 +0.581137 +0.773979 +0.835667 +0.800874 +0.777941 +0.288158 +0.852040 +0.388963 +0.752099 +0.710228 +0.345170 +0.262762 +0.493010 +0.545766 +0.962753 +0.587374 +0.923121 +0.921320 +0.355188 +0.285830 +0.926146 +0.281773 +0.265926 +0.357998 +0.407493 +0.839718 +0.965162 +0.876794 +0.944555 +0.407459 +0.359060 +0.472427 +0.236605 +0.354931 +0.422003 +0.504231 +0.977778 +0.556847 +0.928307 +0.839208 +0.921899 +0.619241 +-0.034402 +0.831554 +0.549695 +0.965354 +0.057076 +0.918630 +0.289776 +0.408910 +0.907683 +0.930321 +0.982172 +0.742855 +0.697189 +0.999584 +0.942766 +0.889639 +0.678379 +0.890341 +0.842740 +0.926738 +0.719115 +0.901898 +0.890757 +0.581393 +0.511736 +0.416736 +0.750971 +0.841336 +0.926765 +0.463542 +0.472577 +0.847835 +0.381609 +0.895238 +0.786017 +0.901136 +0.769390 +0.878170 +0.935661 +0.608099 +0.733979 +-0.314011 +0.915774 +0.926631 +0.654621 +0.754510 +0.631919 +0.625122 +0.904733 +0.456737 +0.390428 +0.441146 +0.255114 +0.707920 +0.206441 +0.110433 +0.107257 +0.249881 +0.621238 +0.194828 +0.864748 +0.614063 +0.456071 +0.200946 +-0.768217 +0.186419 +0.947993 +0.890696 +0.692131 +-0.081118 +0.254432 +0.178977 +0.793223 +0.450048 +0.262955 +-0.001400 +0.724379 +0.988551 +0.504918 +0.982747 +0.009825 +0.322179 +0.534359 +0.513846 +0.708718 +0.295966 +0.836157 +0.847400 +0.537042 +0.984189 +0.353288 +0.861541 +0.987818 +0.956751 +0.894195 +0.845296 +-0.038652 +0.626922 +0.641800 +0.538648 +-3170.174939 +0.732472 +0.628746 +0.421981 +0.610311 +-7436.762020 +0.900703 +0.793008 +0.676171 +0.724589 +0.810985 +0.748425 +0.941546 +0.928549 +0.921316 +0.941166 +0.921508 +0.906508 +0.802737 +0.989608 +0.628357 +0.894129 +0.775445 +0.902400 +0.886652 +-0.198572 +0.536762 +0.919632 +0.504040 +0.439596 +0.511710 +0.261985 +0.684117 +0.231881 +0.811378 +0.854291 +0.309779 +0.701148 +0.892758 +0.833874 +0.897001 +0.089744 +0.875918 +0.973056 +0.733961 +0.303492 +0.753042 +-0.211013 +0.714079 +0.912788 +0.751714 +0.868463 +0.443444 +-0.114364 +0.914868 +0.886411 +0.848979 +0.882210 +0.896872 +0.583016 +0.625630 +0.905954 +0.893301 +0.951309 +0.711666 +0.875641 +0.671581 +0.710936 +0.726190 +0.362521 +-343.416004 +0.960746 +0.461061 +-34.496338 +0.900649 +0.709788 +0.904246 +0.951575 +0.876285 +0.859761 +0.509263 +0.755817 +0.876796 +0.983609 +0.640096 +0.764296 +0.807665 +0.808416 +0.982076 +0.937876 +0.932492 +0.349158 +0.427287 +0.445722 +0.591599 +0.627977 +0.622798 +0.754419 +0.268174 +0.812509 +0.389921 +0.763834 +0.795199 +0.964906 +0.789681 +0.819441 +0.689492 +0.669310 +0.971646 +0.857833 +0.713376 +0.506834 +0.757161 +0.825858 +0.601398 +0.841043 +0.729380 +0.772732 +0.542265 +0.730776 +0.578625 +0.795160 +0.351239 +0.429467 +0.197907 +0.581787 +0.325720 +0.274375 +0.577870 +0.350059 +0.219219 +0.367392 +0.533957 +0.781650 +0.667850 +0.939311 +0.804186 +0.613003 +0.915694 +0.934557 +0.754386 +0.943354 +0.811909 +0.128728 +0.693841 +0.927807 +0.815619 +0.925956 +0.714994 +0.428898 +0.925376 +0.843549 +0.365337 +-2.422432 +0.463113 +0.968119 +-4.696098 +0.855576 +0.856026 +0.770745 +0.808974 +0.435022 +0.923452 +0.682584 +-0.012849 +0.881585 +0.790760 +0.674474 +0.271298 +0.830950 +0.973683 +0.976985 +0.918955 +0.842327 +0.697443 +0.877832 +0.953528 +0.702036 +0.272047 +0.450190 +0.943693 +-648179999999998.750000 +0.871312 +0.682126 +0.076410 +-1.792366 +0.641841 +0.255174 +0.510223 +0.464504 +0.567416 +0.246178 +0.187733 +0.916819 +-0.169937 +-27.797972 +0.102960 +-0.077872 +-24.890236 +-28.398451 +0.544417 +-2.979728 +0.942007 +0.728147 +0.297886 +0.348763 +0.777320 +0.417497 +0.309560 +0.333994 +0.331461 +0.557111 +0.746403 +0.725085 +0.468660 +0.609647 +0.929167 +0.383345 +0.420394 +0.299540 +0.907829 +0.901099 +0.410421 +0.948915 +0.419430 +0.509421 +0.715379 +0.485849 +0.365096 +-0.016126 +0.593649 +0.888400 +0.898341 +0.345977 +0.485444 +0.377568 +0.605483 +0.626896 +0.872362 +0.455276 +0.185416 +0.294969 +0.935236 +0.360612 +0.074979 +0.326147 +0.546301 +0.429765 +0.383792 +0.349176 +0.373783 +0.754602 +0.963261 +0.615855 +0.457020 +0.350624 +0.367341 +0.455710 +0.469364 +0.660670 +0.484445 +0.370322 +0.988993 +0.732470 +0.698871 +0.598356 +0.545787 +0.610217 +0.925249 +0.993411 +0.353517 +0.913637 +0.632563 +0.754889 +0.875329 +0.724647 +0.949402 +0.335748 +0.466489 +0.604401 +0.489398 +0.452452 +0.560184 +0.758513 +0.734480 +0.795999 +-0.016724 +0.361127 +0.386601 +0.138455 +0.318967 +0.523228 +0.912536 +0.502533 +0.919790 +0.561617 +0.645543 +0.406639 +0.448110 +0.507588 +0.177625 +0.273130 +0.673406 +0.468415 +0.706043 +0.854565 +0.958819 +0.747134 +0.499886 +0.489700 +0.924855 +0.420005 +0.501653 +0.444762 +0.924686 +0.424293 +0.952322 +0.923870 +0.412328 +0.549925 +0.490959 +0.691445 +0.925494 +0.162401 +0.831553 +0.575000 +0.938908 +0.327520 +0.813321 +0.934232 +0.673439 +0.160431 +0.449650 +0.386595 +0.512104 +0.950103 +0.533589 +0.535735 +0.487574 +0.132534 +0.609285 +0.323379 +0.679465 +0.918940 +0.149051 +0.048415 +0.581462 +0.489102 +0.918687 +0.581576 +0.641316 +0.428368 +0.985923 +0.520852 +0.451080 +0.693929 +0.946751 +0.925095 +0.338449 +0.787062 +0.363667 +0.918462 +0.448544 +0.932639 +0.294982 +0.933061 +0.933773 +0.670623 +0.392800 +-0.055323 +0.779450 +0.648709 +0.987728 +0.875287 +0.519762 +0.918737 +0.577631 +0.598218 +0.728525 +0.855686 +0.533823 +0.104400 +0.069022 +0.133799 +0.033442 +0.140232 +0.986467 +0.961347 +0.112325 +-0.173122 +0.040989 +0.052992 +0.347359 +-0.015244 +0.749847 +0.709331 +0.145212 +0.866698 +0.427123 +-0.288908 +-4.418059 +0.015043 +0.240294 +0.321501 +-0.562352 +0.000151 +0.982235 +-0.079295 +0.113000 +0.979039 +0.506497 +0.674749 +0.322297 +0.746470 +0.785381 +0.662929 +0.706004 +0.733396 +0.738847 +0.750278 +0.415966 +0.036456 +0.132695 +0.894699 +-0.243431 +0.379778 +0.517483 +0.245991 +-9.757090 +0.476089 +0.134718 +0.406055 +0.815324 +0.687118 +0.838377 +0.757938 +0.296993 +0.784766 +0.868044 +0.866284 +0.714107 +0.865787 +0.979863 +0.848735 +0.920233 +0.915159 +0.924806 +0.921863 +0.919497 +0.885207 +0.444254 +0.889755 +0.664597 +0.827921 +0.649993 +0.793942 +0.848622 +0.847524 +0.728931 +0.929257 +0.949754 +0.927803 +0.936172 +0.761903 +0.885430 +0.913624 +0.793533 +0.963202 +-0.249953 +0.930745 +0.699559 +0.768713 +-0.017510 +0.310376 +0.206441 +0.206441 +0.339893 +0.153999 +0.559692 +0.094210 +0.265108 +0.225616 +0.112440 +0.972482 +0.370166 +0.530862 +0.030657 +0.202439 +0.165445 +0.213470 +0.059393 +0.373657 +0.127330 +0.747000 +0.221321 +0.256870 +0.612718 +0.309456 +-0.277140 +0.818670 +0.483694 +0.736583 +0.983014 +0.498930 +0.627088 +-1.309907 +0.183471 +0.450842 +0.553079 +-4.271224 +0.416931 +0.383471 +0.494745 +0.543092 +0.687922 +0.403407 +0.516076 +0.572833 +0.637629 +0.781411 +0.775857 +0.751632 +0.576322 +0.214266 +0.727850 +0.731311 +0.587815 +0.573439 +0.457047 +0.724778 +0.594882 +0.908831 +0.747884 +0.771574 +0.370613 +0.313742 +0.678382 +0.385167 +0.743666 +0.774861 +0.257687 +0.778797 +0.777057 +0.760998 +0.749084 +0.709569 +0.992349 +0.890193 +0.338712 +0.746565 +0.806858 +0.768336 +0.760478 +0.736445 +0.757073 +0.826894 +0.817138 +0.728310 +0.400258 +0.554045 +0.956211 +0.777093 +0.562252 +0.762919 +0.210157 +0.443836 +0.907815 +0.834180 +0.752611 +0.674149 +0.776411 +0.694010 +0.723184 +0.616868 +0.799422 +0.894034 +0.321323 +0.419650 +0.470291 +0.451790 +0.274026 +0.753556 +0.909971 +0.178552 +0.824603 +0.235886 +0.264413 +0.388426 +0.935144 +0.710398 +0.472046 +0.494302 +0.885772 +0.964398 +0.214067 +0.884570 +0.522972 +0.923344 +0.464773 +0.955597 +0.642807 +0.874169 +0.721348 +0.573778 +0.914721 +0.834767 +0.969887 +0.936981 +0.927224 +0.932577 +0.563088 +0.829264 +0.934683 +0.714363 +0.955338 +0.904676 +0.918261 +0.793745 +0.797301 +0.759774 +0.975066 +0.710906 +0.979834 +0.985526 +0.690498 +0.878390 +0.717826 +0.411033 +0.168902 +-0.325507 +0.547209 +-7.410229 +0.134961 +0.179896 +-0.024120 +0.949322 +0.314979 +0.768417 +0.952989 +0.947392 +0.890959 +0.496147 +0.505375 +0.737256 +0.297431 +0.935793 +0.406181 +0.525946 +0.517299 +0.823259 +0.895848 +0.943800 +0.918881 +0.796611 +0.299186 +0.697995 +0.493396 +0.524868 +0.761261 +0.434951 +0.338106 +0.372133 +0.711794 +0.910886 +0.508266 +0.864932 +0.953569 +0.292780 +0.656339 +0.925817 +0.484038 +0.903640 +0.369419 +0.972821 +0.763465 +0.426958 +0.939934 +0.990588 +0.298090 +0.927878 +0.829041 +0.484010 +0.950444 +0.745832 +0.638141 +0.981918 +0.415242 +0.425457 +0.328879 +0.888855 +0.866653 +0.841324 +0.336753 +0.884756 +0.790713 +0.368106 +0.297466 +0.822862 +0.806030 +0.982473 +0.320722 +0.392567 +0.836420 +0.499440 +0.498589 +0.533615 +0.797705 +0.386453 +0.724779 +0.724675 +0.855190 +0.915753 +0.792588 +0.634234 +0.811770 +0.518936 +0.726690 +0.688419 +0.807162 +0.770884 +0.259671 +0.347826 +0.903470 +0.792197 +0.313303 +0.926286 +0.987026 +0.596761 +0.575155 +0.345014 +0.319319 +0.473425 +0.309100 +0.433135 +0.208327 +0.557655 +0.452204 +0.537039 +0.373756 +0.649176 +0.478754 +0.643120 +0.483907 +0.572249 +0.447170 +0.745047 +0.508353 +0.897955 +0.663776 +0.108521 +0.894825 +-228.270736 +0.698797 +0.320155 +0.194667 +0.082458 +-31.564183 +0.334486 +0.706038 +0.784469 +0.312314 +0.298276 +0.307937 +0.805112 +0.873217 +0.241762 +0.302405 +0.398894 +0.765698 +0.384643 +0.392563 +0.384785 +0.460294 +0.700085 +0.827544 +0.939440 +0.937147 +0.282899 +0.678205 +0.883519 +0.895586 +0.830525 +0.905786 +0.660696 +0.804403 +0.875831 +0.291989 +0.250553 +-64.634248 +0.507274 +0.161604 +0.632076 +0.100693 +0.166885 +-2.873506 +0.084448 +0.294842 +0.886580 +0.338181 +0.496786 +0.339168 +0.237712 +0.719160 +0.540053 +-0.275995 +-0.190548 +0.287475 +0.131918 +0.493944 +-14.064487 +0.413817 +0.156251 +0.361251 +0.152759 +0.145724 +0.023947 +0.757221 +0.113077 +0.125459 +0.123857 +0.336592 +0.289434 +0.824058 +0.774932 +0.842394 +0.955445 +0.803341 +0.934726 +0.480171 +0.109260 +0.018318 +0.741457 +0.947855 +0.854174 +0.735120 +0.940897 +0.374331 +0.882660 +0.538802 +0.666356 +0.360601 +0.728740 +0.837597 +0.923550 +0.700674 +-0.115969 +0.140344 +0.259909 +0.875386 +0.876937 +0.935918 +0.866907 +0.990006 +0.578095 +0.523114 +0.454220 +0.526270 +0.115500 +0.896414 +0.910744 +0.737328 +0.867197 +0.716229 +0.676657 +0.476534 +0.869064 +0.905572 +0.691343 +0.724894 +0.767406 +0.726473 +0.866220 +0.411694 +0.854770 +0.833869 +0.767016 +0.667996 +0.527074 +0.306938 +0.664982 +0.529373 +0.646351 +0.741761 +0.709022 +0.387424 +0.977676 +0.605986 +0.624295 +0.780313 +0.698814 +0.748186 +0.569679 +0.814077 +0.735804 +0.457338 +0.316256 +0.443865 +0.783055 +0.556409 +0.731580 +0.292375 +0.464903 +0.552060 +0.937421 +0.667475 +0.984690 +0.500523 +0.968328 +0.629825 +0.709320 +0.161835 +0.641850 +0.784691 +0.973654 +0.761943 +0.799423 +0.622253 +0.927341 +0.927857 +0.916308 +0.914890 +0.928100 +0.921583 +0.923990 +0.659155 +0.916114 +0.929104 +0.929189 +0.852514 +0.957234 +0.989399 +0.650112 +0.682407 +0.974578 +0.633753 +0.786624 +0.911493 +0.536899 +0.453649 +0.496158 +0.772977 +0.828379 +0.718858 +0.812351 +0.925498 +0.867723 +0.912532 +0.618895 +0.970367 +0.907522 +0.679887 +0.417198 +0.365753 +0.950865 +0.925477 +0.474500 +0.928352 +0.456717 +0.925515 +0.926171 +0.957230 +0.926139 +0.900691 +0.037701 +0.015686 +0.881160 +0.655340 +0.920332 +0.454168 +0.455604 +0.916601 +0.887663 +0.899440 +0.478267 +0.912880 +0.827954 +0.691928 +0.930959 +0.494349 +0.797409 +0.698277 +-60.242666 +0.679528 +0.672589 +0.835741 +0.934113 +0.713149 +0.515306 +0.371873 +0.917828 +0.744813 +0.968482 +0.774976 +0.867236 +0.660699 +0.695390 +0.683236 +0.860232 +0.452326 +0.790057 +0.615613 +0.989100 +0.510638 +0.903622 +0.710894 +0.216642 +0.112431 +0.619687 +0.874730 +0.433298 +0.606460 +0.144678 +-2.091228 +0.899121 +0.727109 +0.487856 +0.476151 +0.358226 +0.473915 +0.667453 +0.880712 +0.632965 +0.575214 +0.285973 +0.296654 +0.933935 +0.710582 +0.836976 +0.335039 +0.607522 +0.886736 +-0.126484 +0.300082 +0.319251 +0.747987 +0.927756 +0.888165 +0.763678 +0.690271 +0.878937 +0.453575 +0.973710 +0.920048 +0.900945 +0.494684 +0.979502 +0.857910 +0.896574 +0.874770 +0.778103 +0.735449 +0.327489 +0.226388 +0.222708 +0.038378 +0.350155 +0.488733 +0.566967 +-0.284940 +0.577711 +0.633685 +0.525866 +0.138259 +-4.506306 +0.332301 +0.651048 +0.687055 +0.218189 +0.849887 +0.541959 +0.592266 +0.041382 +0.223913 +0.495445 +0.884862 +0.781580 +-170692.278708 +0.635038 +0.439110 +0.390807 +0.799975 +0.722033 +0.526161 +-805.908817 +0.769883 +0.409407 +0.321530 +0.193152 +0.959569 +0.283418 +0.585688 +0.527361 +0.617243 +0.649585 +0.821546 +0.810563 +0.351043 +0.561234 +0.928125 +0.720447 +-0.185438 +0.925058 +0.916582 +0.919209 +0.922247 +0.722326 +0.449904 +0.868178 +0.796112 +0.793513 +0.575074 +0.876069 +0.546451 +0.888498 +0.756841 +0.922832 +0.476216 +0.989346 +0.718891 +0.535219 +0.745586 +0.696390 +0.637406 +0.774446 +0.419084 +0.930272 +0.819509 +0.718761 +0.759981 +0.593078 +0.858485 +0.297764 +0.844729 +0.710675 +0.552090 +0.743567 +0.636100 +0.431249 +0.219722 +0.934873 +0.780736 +0.817491 +0.917529 +0.820626 +0.530174 +0.914352 +0.926518 +0.923294 +0.775698 +0.646784 +0.929575 +0.937735 +0.891800 +0.913333 +0.333062 +0.256953 +0.997797 +0.985776 +0.600807 +0.882181 +0.845234 +0.838254 +0.477720 +0.302464 +0.280745 +0.442477 +0.633169 +0.277205 +0.775996 +0.764492 +0.799729 +0.714921 +0.802868 +0.776323 +0.758700 +0.723036 +0.699701 +0.748991 +0.766957 +0.731763 +0.780246 +0.705447 +0.780651 +0.765314 +0.283003 +0.858022 +0.403164 +0.613504 +0.284136 +0.424920 +0.047043 +0.997415 +0.472135 +0.938638 +0.687014 +0.533670 +0.172502 +0.533291 +0.396292 +0.446059 +0.624856 +0.671374 +0.439065 +0.842562 +0.461085 +0.820174 +0.880297 +0.636182 +0.253066 +0.642917 +0.869814 +0.153860 +0.235261 +0.996228 +0.377995 +0.304161 +0.807522 +0.381252 +0.975915 +0.215591 +0.926475 +0.845608 +0.782092 +0.252404 +0.837473 +0.885614 +0.431871 +0.402517 +0.452632 +0.803928 +0.429257 +0.647738 +0.276497 +0.580177 +0.671165 +0.971455 +0.966853 +0.935251 +0.942005 +0.269074 +0.493904 +0.585384 +0.260745 +0.678285 +0.580409 +0.710201 +0.691971 +0.629867 +0.260890 +-0.039229 +0.920675 +0.666298 +0.653496 +0.254791 +0.810615 +-1.111048 +0.444805 +0.029814 +0.577474 +0.251443 +0.915940 +0.104913 +0.899372 +0.703906 +0.855291 +0.337313 +-1.511724 +0.437966 +0.263145 +0.219824 +0.144103 +0.077572 +0.297989 +0.187388 +0.015461 +0.692394 +0.728200 +0.185268 +0.760000 +0.215039 +-6.238920 +0.404161 +-1.089996 +0.559084 +0.697369 +0.200477 +0.623207 +0.197846 +0.949045 +0.647109 +0.699644 +0.419432 +0.506330 +0.862285 +-0.026716 +-0.076991 +-0.523287 +0.339687 +0.804374 +0.444934 +0.508095 +0.991976 +0.925127 +0.427135 +0.940284 +0.750632 +0.984282 +0.126378 +0.204701 +0.666771 +0.105218 +0.446246 +0.819843 +0.478834 +0.927412 +0.871110 +0.725900 +0.858853 +0.364239 +0.817144 +0.945499 +0.478162 +0.494347 +0.954690 +0.536479 +0.704324 +0.907820 +0.917317 +0.182755 +0.367431 +0.921432 +0.919616 +0.609116 +0.496865 +0.520433 +0.925459 +0.907203 +0.604084 +0.397666 +0.926609 +0.924329 +0.918508 +0.925600 +0.926739 +0.306640 +0.489653 +0.774926 +0.585278 +0.913175 +0.722464 +0.401668 +0.710875 +0.490368 +0.457859 +0.456950 +0.321643 +0.926989 +0.629535 +0.629535 +0.477500 +0.450454 +0.901758 +0.783706 +0.321466 +0.867840 +0.924989 +0.768703 +0.665478 +0.497143 +0.595084 +0.739711 +0.966087 +0.864632 +0.693722 +0.883516 +0.381028 +0.436179 +0.416155 +0.460899 +0.406045 +0.769561 +0.714289 +0.901290 +0.635162 +0.810059 +0.756018 +0.902453 +0.732198 +0.954162 +0.725126 +0.890495 +0.802817 +0.657319 +0.799841 +0.853072 +0.800275 +-0.389954 +0.757488 +0.658289 +0.235328 +0.921712 +0.768153 +0.425549 +0.269889 +0.387746 +0.210198 +0.229169 +0.838178 +0.645727 +0.837031 +0.585179 +0.913288 +0.911812 +0.907929 +0.948768 +0.912035 +0.976543 +0.707200 +0.557887 +0.929800 +0.923742 +0.339937 +0.648735 +0.942780 +0.807201 +0.399970 +0.517393 +0.839203 +0.069393 +0.941271 +0.550801 +0.715413 +0.657606 +0.215589 +0.663263 +0.888942 +0.627909 +0.801364 +0.608997 +0.473245 +0.168378 +0.260582 +0.720023 +0.278451 +0.570692 +0.651352 +0.752703 +0.602371 +0.346322 +0.555853 +0.680482 +0.046251 +0.601052 +0.355962 +0.542707 +0.538428 +0.648891 +0.558045 +0.564286 +0.277967 +0.038868 +0.217452 +0.920252 +-0.367921 +0.035346 +0.502978 +0.931851 +0.722310 +0.730953 +0.933868 +0.464788 +-0.912147 +0.980621 +-15.433242 +0.650220 +0.774919 +0.262985 +0.988928 +0.985701 +0.553234 +0.994715 +0.412482 +0.837760 +0.884481 +0.810354 +0.955105 +-0.318947 +0.494264 +0.620651 +0.725639 +0.726235 +0.921788 +0.552748 +0.868501 +0.649281 +0.709993 +0.776944 +0.981960 +0.917241 +0.824102 +0.447277 +0.669859 +0.936470 +0.892494 +0.786392 +0.309123 +-2457.867915 +0.770599 +0.799259 +0.431942 +0.929097 +0.940426 +0.184168 +0.859251 +0.943331 +0.867090 +0.523134 +0.903447 +0.502123 +0.621647 +0.231128 +0.997764 +0.970405 +0.923202 +0.869210 +0.969353 +0.859217 +0.953478 +0.805319 +0.909269 +0.940027 +0.853420 +0.835158 +0.806509 +0.884693 +0.832150 +0.032078 +0.310118 +0.651361 +0.558733 +0.673636 +0.394197 +0.814860 +0.416285 +0.560632 +0.922064 +0.739176 +0.869350 +0.997354 +0.464613 +0.631216 +0.302018 +0.238820 +0.601910 +0.553920 +0.981080 +0.416467 +0.720836 +0.467102 +-0.244661 +0.670813 +0.734220 +0.203444 +0.542205 +-0.302898 +0.923332 +0.545738 +0.886813 +0.134471 +0.053518 +0.287074 +-0.179844 +-0.084000 +0.135714 +0.206753 +-840.166838 +0.039931 +0.011129 +0.379371 +-0.192505 +0.363720 +0.550365 +0.030302 +0.256698 +-0.269790 +0.277375 +0.826981 +0.558790 +-58917530.624303 +0.290270 +0.868947 +0.636833 +0.645086 +0.763510 +0.774720 +0.807329 +0.992468 +0.937609 +0.758568 +0.743561 +0.897553 +0.882644 +0.533433 +0.761768 +0.827732 +0.333892 +0.329990 +0.453282 +0.857233 +0.807752 +0.142485 +0.988355 +0.709848 +0.066708 +0.845268 +0.871510 +0.702552 +0.942383 +0.759299 +0.976272 +0.777745 +0.920113 +0.920776 +0.820781 +0.805980 +0.634673 +0.225976 +-3.290177 +-4.502262 +-7.643672 +0.335653 +0.627861 +0.875323 +0.432266 +0.407747 +0.410019 +0.337868 +0.903165 +0.009531 +0.450422 +0.175268 +0.892111 +0.123837 +0.060616 +0.826892 +0.549812 +0.378914 +0.318102 +0.451215 +0.409343 +0.986605 +0.971780 +0.445040 +0.965456 +0.679824 +0.784090 +0.816966 +0.907014 +0.549070 +-0.290172 +0.707524 +0.491375 +0.770601 +0.855780 +0.576043 +0.641778 +0.911717 +0.837876 +0.330552 +0.775675 +0.823796 +0.655454 +0.889874 +0.771290 +0.719086 +0.763958 +0.704207 +0.730370 +0.704869 +0.460414 +0.923827 +0.713118 +0.291023 +0.582646 +0.752480 +0.733593 +0.743237 +0.720659 +0.884419 +0.572000 +0.726255 +0.731786 +0.492595 +0.805169 +0.600900 +0.690772 +0.540631 +0.062107 +0.198757 +-1.310320 +0.716595 +0.771351 +-0.001281 +0.121105 +0.021074 +-0.336409 +0.163103 +0.884537 +0.057971 +0.403956 +0.007305 +0.124864 +-0.121450 +0.249212 +0.579040 +0.403078 +-2.551474 +0.861970 +0.379491 +0.717949 +0.461309 +0.450291 +0.241448 +0.291457 +0.309097 +0.303375 +0.492181 +0.522450 +0.237023 +0.620817 +0.982859 +0.890371 +0.508609 +0.998684 +0.454327 +0.078767 +0.061935 +0.279031 +0.256881 +0.254588 +0.991984 +0.800587 +0.014418 +0.470675 +0.437868 +0.591602 +-3.772555 +0.649072 +0.421974 +0.158975 +0.797586 +0.407766 +0.592867 +0.822494 +0.384169 +0.168795 +0.792366 +0.883802 +0.481150 +0.859099 +0.822296 +0.145187 +-0.016118 +0.021187 +0.521433 +0.020842 +0.087902 +-0.016345 +0.320231 +-0.390907 +0.933776 +0.486025 +0.215648 +0.504522 +0.303335 +0.139237 +0.591353 +0.059660 +0.421980 +0.629417 +0.288466 +0.931252 +0.928332 +0.514921 +0.404824 +0.549275 +0.889141 +0.679882 +0.958166 +0.887045 +0.946883 +0.930325 +0.637025 +0.874715 +0.691281 +0.727021 +0.723652 +0.908782 +0.748447 +0.642856 +0.603437 +0.826225 +0.983098 +0.414340 +0.864633 +0.807285 +0.764772 +0.963414 +0.386638 +0.931328 +0.673298 +0.690134 +0.912091 +0.783176 +0.487683 +0.400575 +0.463213 +0.866413 +0.276811 +0.743618 +0.303427 +0.631141 +0.370581 +0.736082 +0.529697 +0.818736 +0.938551 +0.883697 +0.777446 +0.932796 +0.356071 +0.930810 +0.842390 +0.767349 +0.930039 +0.946409 +0.850764 +0.849187 +0.904218 +0.535994 +0.918887 +0.527828 +0.864680 +0.378737 +0.800093 +0.618043 +0.439250 +0.840501 +0.300299 +0.598431 +0.881677 +0.660477 +0.659335 +0.913174 +0.566351 +0.931992 +0.604915 +0.296823 +0.742519 +0.856498 +0.386616 +0.322082 +0.368437 +0.454102 +0.214628 +0.595420 +0.637761 +0.704563 +0.722922 +0.663768 +0.764974 +0.747564 +0.771124 +0.780698 +0.753919 +0.889706 +0.654747 +0.964357 +-0.199591 +0.478525 +0.336757 +0.993474 +0.881791 +0.887938 +0.097998 +-0.426543 +0.855633 +0.862902 +0.965122 +0.333027 +0.042144 +0.807549 +0.755545 +0.542742 +-0.723200 +0.764003 +0.618208 +0.114487 +-0.050457 +0.113266 +0.204789 +0.460974 +0.499361 +0.497590 +0.517454 +0.282068 +0.138539 +0.184619 +0.182615 +0.095425 +0.389244 +0.355112 +0.145845 +0.162795 +0.025401 +0.325785 +-6.711879 +0.553184 +0.472125 +0.126211 +0.008390 +0.038632 +0.292778 +0.586512 +0.484680 +0.387533 +0.380507 +0.914985 +0.389258 +0.311698 +0.167160 +0.840415 +0.647454 +0.341511 +0.156888 +0.217952 +0.479336 +0.253284 +0.368097 +0.043407 +0.046840 +0.222327 +0.260846 +0.921757 +0.344135 +0.160282 +0.116882 +0.266456 +0.149937 +0.549038 +0.924124 +0.740884 +0.787468 +0.110085 +0.122172 +0.127267 +0.840387 +-0.179710 +0.015664 +0.028792 +-21.285466 +-0.023943 +0.110225 +-1.235695 +0.685940 +0.491417 +0.870029 +0.731825 +0.727550 +0.646788 +0.886148 +0.632705 +0.866433 +0.821351 +0.700912 +0.776243 +0.320311 +0.790047 +0.597879 +0.751269 +0.970714 +0.916765 +0.616668 +0.977430 +0.888414 +0.641618 +0.813081 +0.980574 +0.797544 +0.804640 +0.845864 +0.951757 +0.114144 +0.299666 +0.699377 +0.024303 +0.071807 +-1.294373 +0.994821 +0.397381 +0.949699 +0.847865 +0.638242 +0.963118 +-0.194415 +0.998729 +0.855083 +0.689818 +0.447349 +0.792895 +0.658807 +0.577109 +0.134040 +0.037146 +0.321797 +0.708094 +0.879395 +0.537095 +0.771054 +0.899544 +0.924166 +0.765357 +-1.321766 +0.821646 +0.938055 +0.914287 +0.608997 +0.762752 +0.982992 +0.851132 +0.589989 +0.768898 +0.899636 +0.852212 +0.494590 +0.791397 +0.423167 +0.753885 +0.787616 +0.069864 +0.524580 +0.455645 +0.863839 +0.862968 +-1.917184 +0.950007 +0.724053 +0.414223 +0.602705 +0.440990 +0.096800 +0.682882 +0.804260 +0.167362 +0.933586 +0.461137 +-0.069876 +0.710734 +0.567321 +0.400001 +0.453599 +0.356758 +0.336517 +0.009982 +0.795559 +0.471986 +0.730083 +0.473157 +0.510106 +0.565923 +0.295157 +0.649140 +-1.351399 +0.412656 +0.181349 +0.151953 +0.249963 +0.528853 +0.392363 +0.115438 +0.871815 +0.915544 +0.933693 +0.253389 +0.332348 +0.295024 +0.542690 +0.717676 +0.127148 +0.415462 +0.832852 +0.647546 +0.942227 +0.106739 +-0.014761 +0.400290 +0.371443 +0.093330 +0.759218 +0.136609 +0.994484 +0.217733 +0.621050 +0.017510 +0.187224 +0.055901 +0.557009 +-0.108216 +0.381363 +0.116264 +0.555700 +0.919467 +0.255230 +0.078099 +0.594861 +0.518817 +0.375494 +0.069617 +0.499756 +0.079774 +0.255957 +0.945174 +0.039341 +0.276560 +0.040785 +-0.240609 +0.134145 +0.105581 +0.174326 +0.929748 +0.934954 +0.034337 +-0.183969 +0.331266 +0.606373 +0.827034 +0.515725 +0.459797 +0.506625 +0.588549 +0.283857 +0.387690 +0.824046 +-0.057286 +0.245130 +0.027135 +0.227043 +0.993938 +0.360061 +-0.079935 +0.057193 +-0.045214 +0.692304 +0.694064 +0.974314 +0.993847 +0.815051 +0.934322 +0.923225 +0.704505 +0.939997 +0.708299 +0.694630 +0.702783 +0.911668 +0.819800 +0.933338 +0.940562 +0.443044 +0.913221 +0.016201 +0.969197 +0.874116 +0.803404 +0.493514 +0.548009 +0.982491 +0.499889 +0.402889 +0.704711 +-0.792492 +0.456904 +0.419965 +-1.224687 +0.546496 +0.610332 +0.009767 +0.662911 +0.342824 +0.511449 +0.529171 +0.864058 +0.307727 +0.921774 +0.740508 +0.152780 +0.605049 +0.573319 +0.682540 +0.951943 +0.745349 +0.876606 +0.945640 +0.855130 +0.764958 +0.996851 +0.953248 +0.959156 +0.916689 +0.854672 +0.913348 +0.782300 +0.684521 +0.912793 +0.292540 +0.391333 +0.677802 +0.080752 +0.493367 +0.354020 +0.188328 +0.415528 +0.850206 +0.771514 +0.968727 +0.832491 +0.816735 +0.411133 +0.587043 +0.891481 +0.826577 +0.469029 +0.938902 +0.830118 +0.881505 +0.559057 +0.882813 +0.831355 +0.194619 +0.997127 +0.507658 +0.968236 +0.489415 +0.269415 +0.870916 +0.377032 +-1966.455687 +0.795247 +0.717582 +0.908905 +0.881256 +0.937988 +0.540415 +0.731049 +0.952707 +0.952411 +-0.027454 +0.674058 +0.786647 +0.657305 +0.828047 +0.401104 +0.920337 +0.838329 +0.251391 +0.492577 +0.919624 +0.928345 +0.924805 +-0.001258 +0.566642 +0.553630 +0.961704 +-0.009999 +0.879054 +0.181777 +0.948396 +0.922900 +0.932845 +0.373661 +0.639441 +0.399209 +0.562994 +0.936313 +0.734973 +0.976543 +0.951400 +0.719710 +0.343152 +0.928547 +0.152971 +0.287488 +0.866824 +0.980835 +0.904617 +0.335629 +-0.122771 +0.721006 +0.465337 +0.632740 +0.828552 +0.061038 +0.707329 +0.875572 +0.120974 +0.819341 +0.478258 +0.436009 +0.604530 +0.607173 +0.444457 +0.669651 +0.455982 +0.981147 +0.120043 +0.059946 +0.892211 +0.443233 +0.505508 +0.575794 +0.466310 +0.484140 +0.921638 +0.627122 +0.916091 +0.593913 +-0.090779 +0.854605 +0.747783 +0.443110 +0.419314 +-0.281356 +0.427919 +0.355675 +0.955028 +0.673849 +0.886989 +0.815826 +0.497014 +0.843464 +0.753253 +0.429315 +0.938862 +0.945450 +0.814210 +0.835666 +0.852587 +0.965899 +0.384750 +0.705186 +0.957641 +0.977375 +0.913772 +0.967252 +0.938093 +0.858276 +0.878595 +0.819189 +0.564985 +0.855541 +0.935501 +-0.984721 +0.864664 +0.618134 +0.258753 +0.277359 +0.610736 +0.237881 +0.672167 +0.026661 +-14.973847 +0.485845 +0.427829 +0.953036 +0.053140 +0.309490 +0.143698 +-0.064611 +0.910996 +0.172360 +-0.097479 +0.249165 +-0.345992 +-0.588964 +0.409650 +0.402474 +-2.548297 +0.818128 +-0.261632 +0.147784 +0.146624 +0.091440 +0.113402 +0.271627 +-1.071671 +0.559464 +0.261940 +0.072329 +0.595624 +0.389089 +0.453197 +-2.299429 +0.843280 +-0.036253 +0.644416 +0.501022 +0.176482 +0.671951 +0.665219 +0.730921 +0.352796 +0.546830 +0.432697 +0.144767 +0.678217 +-0.019234 +-6.277771 +0.769878 +0.700017 +0.894740 +0.122774 +0.115447 +0.645291 +0.132052 +0.131989 +0.132167 +0.491136 +0.034238 +0.102141 +0.102093 +0.114356 +0.539406 +0.215421 +0.424237 +0.436671 +0.724905 +0.735445 +0.219352 +0.314311 +0.578630 +-0.261206 +0.141811 +0.786546 +0.749162 +0.416399 +0.374556 +0.184818 +0.675905 +0.748512 +0.806480 +0.211786 +0.298709 +0.913753 +0.054097 +0.155740 +0.083207 +0.515062 +0.250072 +0.886848 +0.791932 +0.975333 +0.258255 +0.926635 +0.307570 +0.573412 +-0.054466 +0.505341 +0.357308 +0.762273 +-0.031172 +0.505470 +0.263303 +0.850327 +0.170070 +0.931275 +0.931795 +-0.932554 +0.847854 +0.495400 +0.848385 +0.549197 +0.749727 +0.853961 +0.727025 +0.679845 +0.771889 +0.615707 +0.666750 +0.708385 +0.688563 +0.860897 +0.718635 +0.935180 +0.964564 +0.996588 +0.539155 +0.405298 +0.425531 +0.552957 +0.715308 +0.172301 +0.445182 +0.572295 +0.663581 +0.959587 +0.065299 +0.449133 +0.811556 +0.837805 +0.333910 +0.896047 +0.946464 +0.843557 +0.669090 +0.401008 +0.727387 +0.352074 +0.821386 +0.934394 +0.864181 +0.393155 +0.514849 +0.588750 +0.319293 +0.725656 +0.808638 +0.821006 +0.415067 +0.787697 +0.178857 +0.827265 +0.811282 +-0.803654 +0.475195 +0.209801 +0.006460 +0.941185 +0.070615 +0.448667 +-2.227241 +0.135063 +0.437235 +0.499754 +0.246833 +0.516455 +0.131339 +-1.752172 +0.280962 +0.002419 +0.544292 +0.186613 +0.712931 +0.261787 +0.349676 +0.470865 +0.525918 +0.497826 +0.319551 +0.180380 +0.676354 +0.005186 +0.088648 +0.643074 +0.738554 +0.901226 +0.452368 +0.829193 +0.074286 +0.156483 +0.094561 +-0.606507 +0.512670 +0.630699 +-2.278950 +0.431263 +0.379134 +0.010331 +0.960599 +0.650848 +0.810081 +0.148278 +0.305146 +0.272013 +0.258490 +0.044204 +0.227784 +-0.246161 +0.731739 +0.936088 +0.128977 +-0.428682 +0.638403 +0.130669 +0.455681 +0.918097 +0.340594 +0.244732 +-0.053249 +0.684646 +0.981878 +0.465088 +0.573909 +0.574531 +0.821580 +0.566659 +0.677216 +0.414920 +0.133455 +0.154898 +0.651064 +0.288184 +0.772772 +0.127686 +0.854603 +0.497203 +0.482144 +0.100154 +0.928316 +-0.239469 +0.591235 +0.182643 +0.450012 +0.165767 +0.817912 +0.185734 +0.087769 +0.996136 +0.762298 +0.826834 +0.429247 +0.153819 +0.173686 +0.262468 +0.038226 +0.788374 +0.955635 +0.915769 +0.884883 +0.575727 +0.835154 +0.601110 +0.083438 +0.926521 +0.906954 +0.414719 +0.435051 +0.945979 +0.428768 +0.298636 +0.976867 +0.547878 +0.752349 +-2.262165 +0.377775 +0.964003 +0.921087 +0.932284 +0.720837 +0.745435 +0.529528 +0.117044 +0.929780 +0.411706 +0.921227 +0.926983 +0.975115 +0.979652 +0.568902 +0.920750 +0.669799 +0.907667 +0.981635 +0.524081 +0.701621 +0.086768 +0.921404 +0.271708 +0.935958 +0.920967 +0.937233 +0.951703 +0.520262 +0.912822 +0.424492 +0.478718 +0.421553 +0.835241 +0.042495 +0.956859 +0.808798 +0.918951 +0.815296 +0.866781 +0.971925 +0.919273 +0.534356 +0.486286 +0.926611 +0.626943 +0.238013 +0.525306 +0.682640 +0.693655 +0.288833 +0.120789 +0.852523 +0.517404 +0.221960 +0.061101 +0.361561 +0.835279 +0.314135 +0.397776 +0.072848 +0.121342 +0.527073 +0.544354 +0.846908 +-0.014915 +0.192914 +0.158599 +0.049935 +0.471646 +0.147706 +0.015205 +0.885227 +0.867737 +0.103700 +0.521328 +0.552512 +0.973714 +0.537733 +0.523102 +0.488990 +0.889279 +-0.016430 +0.095095 +0.274936 +0.008929 +-0.034956 +0.463582 +0.198186 +0.662560 +0.184256 +0.138261 +0.501368 +-0.001229 +0.877659 +0.542462 +0.258060 +0.051934 +0.321809 +0.835400 +-0.157227 +0.304802 +-10248.794872 +0.566774 +0.045703 +0.668442 +0.469768 +0.853440 +0.926864 +0.983079 +0.894776 +0.873740 +0.774251 +0.906163 +0.529772 +0.432375 +0.087189 +0.494617 +0.551711 +0.551641 +0.551580 +0.630920 +0.576648 +0.576648 +0.576648 +0.435531 +0.465883 +0.584154 +0.085821 +0.506293 +0.297589 +0.650135 +0.924777 +0.841708 +0.921317 +0.903502 +-0.361274 +0.915606 +0.116552 +0.643796 +0.208572 +0.598392 +0.509223 +0.906365 +0.701493 +0.922142 +0.731343 +0.672901 +0.757471 +0.546339 +0.708574 +-0.938664 +0.488048 +0.508108 +0.587009 +0.932711 +0.275950 +0.629848 +0.304327 +0.540848 +0.978774 +0.922823 +0.645279 +0.908037 +0.596844 +0.946540 +0.916932 +0.565135 +0.923638 +0.672771 +0.741379 +0.221190 +0.652089 +0.660310 +0.796875 +-0.301948 +0.826155 +0.186512 +0.726366 +0.444844 +-0.162914 +-0.228455 +0.551401 +0.970091 +0.727324 +0.728547 +0.749587 +0.722476 +0.805204 +0.733111 +0.677324 +0.641572 +0.751580 +0.182037 +0.909011 +0.713413 +0.718984 +0.908919 +0.433225 +0.398499 +0.683770 +0.701039 +0.734525 +0.468510 +0.001005 +0.660714 +0.875050 +0.503010 +0.642123 +0.577360 +0.022664 +0.760176 +0.079168 +0.279628 +0.204616 +0.667510 +0.402615 +0.254218 +0.511286 +0.435400 +0.227784 +0.039218 +0.523715 +0.678531 +0.726926 +0.501602 +0.107021 +-0.091689 +0.668838 +0.138266 +0.267430 +0.561288 +-0.011566 +0.283770 +0.574001 +0.902935 +0.127153 +0.818272 +0.414619 +0.429568 +0.606928 +0.963662 +0.503340 +0.110755 +0.965047 +0.736972 +0.219052 +0.584606 +0.361733 +0.372832 +0.142118 +0.295924 +0.861710 +0.835768 +0.529304 +0.566922 +0.108967 +0.329592 +0.709394 +0.860990 +0.790705 +0.407611 +0.994173 +-0.376562 +0.575933 +0.605974 +0.448091 +0.993552 +0.794253 +0.858549 +0.040292 +0.453853 +0.703898 +0.476258 +0.309698 +0.732462 +0.489302 +0.747932 +0.422151 +0.236802 +0.028166 +0.473986 +-1098231.350231 +0.527224 +0.753497 +0.675550 +0.682314 +0.904960 +0.861366 +0.895046 +0.865229 +0.963762 +0.858977 +0.067550 +0.970688 +0.923901 +-0.345948 +0.346951 +0.700241 +0.955969 +0.929185 +0.823093 +0.298107 +0.313522 +0.723184 +0.682243 +0.773543 +0.966463 +0.616765 +0.352892 +0.418765 +0.742549 +0.848021 +-27.067802 +0.917322 +0.904705 +0.928499 +0.740686 +0.922019 +-5.590573 +0.763361 +0.919712 +0.926264 +0.499976 +0.914562 +0.731065 +-14.547583 +0.565917 +0.930212 +0.584573 +0.117058 +0.625691 +0.719738 +0.357646 +0.142088 +0.867897 +0.950290 +0.942859 +0.228656 +0.575739 +0.450529 +0.756836 +0.774577 +0.905248 +0.540583 +-28.170010 +0.868220 +0.345288 +0.883022 +-1.153087 +0.175298 +-0.709205 +-0.255119 +0.282186 +0.820896 +0.839756 +0.730701 +0.756908 +0.716255 +0.715927 +0.918505 +0.506435 +0.758912 +0.763426 +0.414334 +0.737179 +0.959112 +0.534336 +0.976658 +0.356287 +0.682595 +0.395505 +0.950605 +0.779962 +0.819994 +0.985958 +0.927278 +0.922112 +0.710865 +0.982345 +0.711433 +0.430789 +0.835296 +0.543040 +0.944654 +0.839512 +0.827223 +0.930749 +0.557532 +0.917199 +0.802474 +0.980158 +0.923832 +0.933645 +0.924862 +0.915182 +0.928352 +0.433458 +0.607029 +0.998546 +0.914602 +0.911673 +0.898989 +0.455976 +0.932577 +0.937991 +0.932591 +0.955036 +0.924111 +0.930765 +0.953602 +0.951334 +0.743624 +0.627048 +0.433228 +0.386979 +0.411656 +0.785665 +0.172121 +0.900896 +0.751257 +0.888126 +0.827667 +0.349268 +0.807021 +0.491511 +0.868304 +0.799490 +0.844580 +0.862441 +0.079681 +0.924285 +0.712102 +0.878538 +0.847084 +0.073743 +0.399075 +0.419687 +0.749962 +0.770058 +-1.657715 +0.568592 +0.787444 +0.740642 +0.513322 +0.615877 +0.314844 +0.427659 +0.125974 +0.189158 +0.442323 +0.032966 +-0.319696 +0.814547 +0.548308 +0.869420 +0.167485 +0.947665 +0.172083 +0.843249 +-0.032349 +0.948303 +0.849100 +0.853531 +0.740582 +0.899640 +0.527107 +0.944983 +0.443340 +0.434946 +0.893931 +0.467061 +0.874483 +0.905347 +0.543550 +0.878823 +0.853897 +0.780896 +0.763170 +0.675091 +0.724237 +0.502237 +0.376793 +0.435710 +0.166671 +0.676026 +0.273892 +0.477932 +0.242957 +0.848489 +0.674918 +-1.368361 +0.904884 +0.673160 +0.672851 +0.971251 +0.604965 +0.945550 +0.607976 +0.921949 +0.857565 +0.342557 +-0.944117 +0.355906 +0.846629 +0.786224 +0.424550 +0.498604 +0.410536 +0.288460 +0.389127 +0.286724 +0.466269 +0.447147 +0.712785 +0.671644 +0.241957 +0.644833 +0.962142 +0.858270 +0.903087 +0.928364 +0.561628 +0.154176 +0.719652 +0.213893 +0.517614 +0.737861 +0.579858 +0.890588 +0.340920 +0.568659 +0.530277 +0.883472 +0.593641 +0.428764 +0.770136 +-0.011535 +0.937183 +0.954713 +0.773361 +0.580266 +0.727946 +0.727946 +0.727876 +0.523770 +0.522762 +0.422599 +0.430159 +0.463767 +0.742051 +0.303639 +0.876753 +0.564341 +0.842717 +0.621259 +0.476942 +0.526116 +0.386404 +0.317164 +0.718393 +0.936972 +0.915400 +0.703243 +0.865008 +0.836030 +0.727856 +0.821325 +0.915650 +0.259324 +0.646480 +0.680960 +0.800283 +0.970475 +0.930720 +0.747987 +0.841129 +0.419287 +0.954398 +0.581868 +0.594207 +0.872321 +0.369839 +0.526520 +0.386468 +0.669725 +0.810692 +0.034089 +0.118377 +0.133214 +0.532373 +0.933076 +0.775457 +0.937802 +0.923280 +0.846203 +0.860598 +0.627963 +0.878028 +0.801243 +0.745363 +0.356634 +0.384697 +-85.809305 +0.752730 +0.696338 +0.318553 +0.696613 +0.768870 +0.767834 +0.758324 +0.970435 +0.540461 +0.589220 +0.937622 +0.399306 +0.913392 +0.034910 +0.924467 +0.921123 +0.235249 +0.378353 +0.472996 +0.630273 +0.928007 +0.930946 +0.320785 +0.572686 +0.521394 +0.623241 +0.486636 +0.920114 +0.586046 +0.701429 +0.953017 +0.566277 +0.463042 +0.573877 +0.802667 +0.445136 +0.512665 +0.432238 +0.818504 +0.296444 +0.980239 +0.956172 +0.517140 +0.874200 +0.306495 +0.192477 +-5.986477 +-0.680019 +-0.620090 +0.949849 +0.602529 +0.646126 +0.624914 +0.872620 +0.737243 +0.296830 +0.896210 +0.484173 +0.540245 +0.890426 +0.884611 +0.995803 +0.832114 +0.483101 +0.619757 +0.502705 +0.990749 +-0.268993 +0.317978 +0.115220 +0.983038 +-0.158587 +0.449486 +0.440205 +0.489950 +-0.063494 +0.470726 +0.178330 +-0.166796 +0.022745 +0.584925 +0.170904 +0.890570 +0.433947 +0.940312 +0.643759 +0.045483 +0.587604 +0.101545 +0.255451 +-0.017510 +-1.701711 +0.208777 +0.187172 +0.013240 +0.263066 +0.125126 +0.028770 +0.339004 +0.697830 +0.156280 +0.023749 +0.453905 +0.629279 +0.332963 +0.706413 +0.253603 +0.928125 +0.548868 +0.352521 +0.668410 +0.585258 +0.285436 +0.249259 +0.167171 +0.936842 +0.598084 +0.361269 +0.375183 +0.966988 +0.086629 +-0.041423 +0.933215 +-0.002346 +0.280485 +0.399272 +0.807177 +0.888676 +0.930592 +0.855290 +0.809460 +0.770646 +0.905309 +0.827543 +0.550377 +0.363569 +0.881854 +0.926019 +0.393550 +0.452312 +0.518014 +0.554838 +0.807545 +0.864239 +0.697156 +0.670808 +0.753833 +0.590811 +0.814125 +0.775218 +0.763409 +-0.107558 +0.456936 +0.349334 +0.325266 +0.821491 +0.410280 +0.941404 +0.094417 +0.364415 +0.983464 +0.994317 +0.290486 +0.868813 +0.887532 +0.892226 +0.763339 +0.326587 +0.383947 +0.879076 +0.839947 +0.692165 +0.680686 +0.932925 +0.270612 +0.460617 +0.259324 +0.395487 +0.681421 +0.732323 +0.546880 +-0.213986 +-0.601631 +0.440727 +0.924460 +0.946005 +0.475616 +0.924456 +0.513963 +0.407530 +0.773652 +0.809573 +0.560577 +0.877026 +0.922633 +0.702353 +0.517675 +0.653190 +0.394047 +0.566199 +0.931329 +0.648601 +-0.020852 +0.409547 +0.232200 +0.702264 +0.882984 +0.732830 +0.668672 +0.647185 +0.804138 +0.709770 +0.452095 +0.926457 +0.127624 +0.461252 +0.860520 +0.817401 +0.937961 +0.382603 +0.648408 +0.771333 +0.849178 +0.502336 +0.848629 +0.785395 +0.996734 +0.210740 +0.244186 +0.153286 +0.059846 +0.852895 +0.774025 +0.935117 +0.980147 +0.366395 +0.562012 +0.329847 +0.150271 +-0.025514 +0.765346 +0.962954 +0.454696 +0.871757 +0.348596 +0.662466 +0.256362 +0.875489 +0.924433 +-0.095404 +0.941346 +0.302697 +0.522319 +0.735616 +-0.677441 +0.286808 +0.875709 +0.331249 +0.370895 +0.606670 +0.863508 +0.309196 +0.310581 +0.820024 +0.242965 +0.232879 +0.776822 +0.373906 +0.445386 +0.705000 +0.947028 +0.629975 +-0.020993 +0.846376 +0.939318 +0.777895 +0.723949 +-0.263494 +0.533039 +0.749517 +0.671823 +0.841745 +0.413861 +0.812977 +0.832461 +0.720542 +0.813395 +0.459265 +0.531813 +0.578194 +0.605864 +0.363095 +0.538876 +0.557982 +0.811392 +0.948940 +0.781185 +0.933445 +0.956626 +0.701948 +0.775965 +-0.022568 +0.456753 +0.544196 +0.623760 +0.943946 +0.861327 +0.971426 +0.706111 +0.873500 +0.885911 +0.853842 +0.893206 +0.623618 +0.863617 +0.806804 +-0.449896 +-0.273911 +-0.638122 +-0.028415 +0.113712 +0.955015 +0.076890 +0.557062 +0.883886 +0.996032 +0.260153 +0.461436 +0.831376 +0.700521 +0.770303 +0.322134 +0.496962 +0.335171 +0.230839 +0.769730 +0.978024 +-0.065324 +0.399861 +0.326912 +0.390353 +0.421202 +0.095210 +0.285246 +0.370868 +0.253183 +0.354548 +0.320470 +0.086206 +0.314863 +0.275706 +0.867483 +0.316957 +0.579943 +0.351717 +0.801153 +0.912622 +0.247661 +0.220554 +0.384708 +0.636048 +0.753008 +0.859081 +0.847653 +0.571721 +0.730709 +0.969284 +0.872833 +0.626852 +0.373975 +0.253491 +0.693951 +0.004882 +0.608597 +0.931944 +0.786730 +0.881773 +0.890618 +0.979657 +0.937482 +0.691802 +0.830874 +0.851854 +0.001856 +0.380026 +0.176225 +0.466105 +0.576268 +0.640863 +0.548923 +0.116034 +0.080353 +-0.092137 +-0.161402 +0.499594 +0.447412 +0.736002 +0.477129 +0.706586 +0.400979 +0.578502 +0.669451 +0.753353 +0.918338 +0.328811 +0.893213 +0.529626 +0.260170 +0.237798 +0.378519 +0.092021 +0.222009 +0.068243 +0.631563 +0.193847 +0.421519 +0.162364 +0.164009 +-0.065328 +0.128411 +0.083583 +0.012485 +0.691471 +-0.333293 +0.676194 +0.884802 +0.445290 +0.921461 +0.378405 +0.914993 +0.704379 +0.962052 +0.480379 +0.437281 +0.923968 +0.919087 +0.921982 +0.465589 +0.111007 +0.935382 +0.814633 +0.568755 +0.805500 +0.702467 +0.925444 +-768.479041 +0.902813 +0.773334 +0.959066 +0.725395 +0.752231 +0.896174 +0.775032 +0.926653 +0.363976 +0.946770 +0.926094 +0.771938 +0.785109 +0.758891 +0.980526 +0.981121 +0.173717 +0.745845 +0.919036 +0.846998 +0.262472 +0.906580 +0.619933 +0.926545 +0.828430 +0.793574 +0.860065 +0.754640 +-0.203011 +0.802410 +0.860499 +0.918040 +0.567978 +0.339886 +0.459137 +0.868734 +0.970494 +0.885150 +0.786297 +-0.221606 +0.772717 +0.453604 +-2.273532 +0.729367 +0.734496 +0.927051 +0.093591 +0.717719 +-0.977456 +0.841519 +0.927793 +0.920192 +0.936518 +-0.390664 +0.891610 +0.632411 +0.705541 +0.753250 +-0.096573 +0.868758 +0.772815 +0.607622 +0.929917 +0.561607 +0.782557 +0.915634 +0.923231 +0.710978 +0.767386 +0.665522 +0.690031 +0.855669 +0.309418 +0.817170 +0.504331 +-0.168982 +0.512952 +0.918827 +0.670833 +-0.722090 +0.677228 +0.628855 +0.232752 +0.487823 +0.789319 +0.374750 +0.835658 +0.067678 +0.356357 +0.682657 +0.874134 +0.081804 +0.783033 +0.912069 +0.844105 +0.666719 +-0.150751 +0.564919 +0.433058 +0.512086 +0.492478 +0.418527 +0.492472 +0.458859 +0.535176 +0.441790 +0.458736 +0.492451 +0.271682 +0.502337 +0.979567 +0.220547 +0.356007 +0.924495 +0.685460 +0.923571 +0.579834 +0.862684 +0.864788 +0.639929 +0.753552 +0.272147 +0.998768 +0.999749 +0.975265 +0.995385 +-1.889366 +0.753309 +0.502170 +0.740758 +0.740267 +-0.066657 +0.582072 +0.991129 +0.819523 +-0.020186 +0.742459 +0.221176 +0.332907 +0.237817 +0.678632 +0.662009 +0.974646 +0.956377 +0.565944 +0.594840 +0.713190 +0.943306 +0.458296 +0.692670 +-0.942172 +0.304888 +0.423044 +-0.020713 +0.992138 +0.545977 +0.371109 +0.414144 +0.062388 +0.686585 +0.290250 +0.159575 +0.987062 +0.242086 +0.119100 +-0.235749 +-0.112850 +-1.286102 +0.791413 +0.709506 +0.386361 +0.686242 +0.984227 +0.333930 +0.474853 +0.721663 +0.908653 +0.383930 +0.427253 +0.913879 +0.405226 +0.975023 +0.797824 +0.938935 +0.451240 +0.886207 +0.936324 +0.918715 +0.342976 +0.445639 +0.475374 +0.912930 +0.912663 +0.861037 +0.663916 +0.535884 +0.847569 +0.913841 +0.907613 +0.071491 +0.233141 +-9.929011 +-1.549480 +0.837975 +0.991071 +0.751423 +0.675348 +0.858925 +0.070242 +0.116073 +0.730732 +0.395825 +0.884276 +0.089967 +0.750090 +-0.083061 +0.898813 +0.360345 +-0.112640 +0.731335 +0.756089 +0.319591 +0.602532 +0.933757 +0.929300 +0.655716 +0.256167 +-1.516643 +0.605275 +0.594466 +-0.341550 +0.815700 +0.746083 +0.265440 +0.813903 +0.827366 +0.806331 +-0.106971 +0.780078 +0.478706 +-0.100102 +0.795124 +0.780679 +0.446759 +0.727374 +0.739032 +0.504323 +-0.101929 +0.286279 +-0.107476 +0.175804 +0.802752 +0.457692 +0.253336 +0.822398 +0.770657 +0.910282 +-0.201846 +0.417953 +0.868731 +0.394299 +-0.180268 +0.180402 +-0.265328 +0.683155 +0.623911 +0.892578 +-0.075074 +-0.280100 +0.924665 +-0.173746 +0.560404 +0.883109 +0.468477 +-0.254011 +0.906308 +0.173697 +0.881848 +0.194053 +0.557292 +-0.398677 +0.746153 +-0.176601 +-0.391601 +0.583280 +0.892398 +-0.326804 +0.928465 +0.965281 +0.664199 +0.640397 +0.570489 +0.501946 +0.782329 +0.992940 +-1.434140 +0.853642 +0.027676 +0.620532 +0.731543 +0.472541 +0.860264 +0.881501 +0.661199 +0.842942 +0.497446 +0.849117 +0.916233 +0.172511 +0.127151 +0.873934 +0.489329 +0.858681 +0.819819 +0.738376 +0.839910 +0.867812 +0.930917 +0.848424 +0.605442 +0.522767 +0.851431 +0.948073 +0.936245 +0.738560 +0.687593 +0.826558 +0.394113 +0.733838 +0.813755 +0.991407 +0.934472 +0.896791 +0.868164 +0.927152 +0.929472 +0.924971 +0.898269 +0.775304 +0.724912 +0.643667 +0.414762 +0.851748 +0.695564 +0.650315 +0.743299 +0.767765 +0.895736 +0.553391 +0.350978 +0.767149 +0.820232 +0.559161 +0.622846 +0.986059 +0.434097 +0.743003 +0.807025 +0.616990 +0.940731 +0.916343 +0.145089 +0.455475 +0.743649 +0.561310 +0.749695 +-0.052492 +0.687779 +0.570208 +0.831200 +0.408550 +0.547515 +0.635992 +0.138029 +0.819412 +0.669354 +0.800033 +-0.163921 +0.726591 +0.801300 +0.128077 +0.216959 +0.484478 +0.229023 +0.801145 +-0.196945 +0.059725 +0.615147 +0.834539 +0.944750 +0.367775 +0.722559 +0.239087 +0.041300 +0.856735 +0.830112 +0.620386 +0.336566 +-0.102720 +0.645593 +0.219086 +-0.154637 +0.386465 +0.970082 +0.646944 +-0.102807 +0.125302 +0.801794 +0.802124 +-0.351473 +0.467997 +0.818695 +0.252623 +0.384936 +0.293156 +0.443461 +0.739940 +0.496937 +0.763580 +0.597377 +0.385736 +0.514156 +0.318906 +0.565092 +0.565477 +0.801367 +0.739547 +-0.012071 +0.000079 +0.710585 +0.732918 +0.303072 +0.633544 +0.502889 +-0.034311 +0.658697 +0.973261 +0.947103 +0.983714 +0.813465 +0.637088 +0.894584 +0.644921 +0.383739 +0.668004 +0.957562 +0.323648 +-0.142923 +0.751071 +0.602338 +-0.126001 +0.980300 +0.226564 +-0.190459 +0.194897 +0.141182 +0.226163 +0.446050 +0.271431 +0.749109 +0.740801 +0.068793 +0.876809 +0.642873 +0.871254 +0.798773 +0.084388 +0.771608 +-0.113480 +0.573621 +-0.055229 +0.855988 +0.782277 +-0.119670 +0.709471 +0.647485 +0.674167 +0.689854 +0.881252 +-0.096593 +0.269924 +0.706326 +0.932421 +0.280996 +0.323675 +0.823955 +0.656219 +0.109441 +0.386046 +0.907620 +0.594171 +0.387791 +0.729227 +0.947051 +0.458968 +0.593325 +0.988997 +0.058393 +0.696933 +0.481736 +0.589271 +0.019845 +0.635641 +-0.033479 +0.678057 +0.865572 +0.702029 +0.810664 +0.677631 +0.675845 +0.589809 +0.716930 +0.980908 +0.864784 +0.475532 +0.767264 +0.688484 +0.288059 +0.790466 +0.673421 +0.615089 +0.696514 +-0.455834 +0.666426 +0.736753 +-0.220018 +0.922872 +0.075492 +0.494230 +0.386030 +0.610377 +0.890278 +0.657739 +0.932472 +0.016035 +0.880317 +0.597560 +0.874518 +0.874728 +0.867913 +0.502985 +0.257668 +0.928289 +0.162173 +0.861245 +0.952727 +0.842391 +0.633944 +0.965156 +0.105934 +0.638885 +0.980203 +0.815761 +0.809752 +0.676243 +0.708951 +0.858979 +0.530532 +0.851832 +0.427037 +0.634835 +0.798744 +0.268567 +-0.789460 +0.622915 +0.866117 +0.363980 +0.465387 +0.339263 +0.305938 +0.807129 +-0.139273 +0.617410 +0.820081 +0.561528 +0.270952 +0.571259 +-0.206068 +0.206976 +0.537878 +0.749036 +0.815645 +-0.143374 +-0.174843 +0.253841 +0.881436 +-0.189976 +0.764881 +-3.581649 +0.179243 +0.985046 +0.708747 +0.992083 +0.747682 +0.826695 +0.677716 +0.701419 +0.705142 +-0.212665 +0.576160 +0.587698 +0.931268 +0.582381 +0.890648 +0.853013 +0.672235 +0.881238 +0.609908 +0.752539 +-0.258003 +0.789098 +-0.048964 +-0.560574 +0.781153 +0.843119 +0.756304 +0.852669 +0.933069 +0.636804 +0.752571 +0.130588 +0.652680 +0.719694 +0.886207 +0.775809 +0.757228 +0.570400 +0.842664 +0.644924 +0.836626 +0.349171 +0.903527 +0.546792 +0.931551 +0.747017 +0.603215 +0.783413 +0.851046 +0.847502 +0.764037 +0.929398 +0.853931 +0.537776 +0.623215 +0.240459 +-0.154620 +-0.031827 +0.765249 +-0.060572 +-0.022376 +0.155659 +0.396799 +0.434416 +0.668370 +0.447145 +0.251379 +0.221612 +0.591474 +0.568574 +0.877035 +0.484235 +0.419213 +0.807681 +-0.129294 +0.063250 +0.799242 +0.423262 +0.449960 +-0.345976 +0.448677 +-0.282483 +-0.039406 +-0.049853 +0.551114 +0.492704 +0.539712 +0.778282 +0.296109 +0.689862 +-0.022893 +0.524832 +-0.175624 +0.330663 +0.280046 +0.557424 +-0.068287 +-1.054934 +-2.150818 +0.829210 +0.717613 +-0.240564 +0.378856 +0.804471 +0.797900 +0.875266 +0.937213 +0.312654 +0.908672 +0.569152 +0.902052 +0.931702 +0.929382 +0.891128 +0.693361 +0.936412 +0.737459 +0.711668 +0.863505 +0.897001 +0.931232 +0.818072 +0.733307 +0.967937 +0.231380 +0.710619 +0.692327 +0.867386 +0.681342 +0.323328 +0.780866 +0.450242 +0.469559 +0.209168 +0.249618 +0.432990 +0.318719 +0.646376 +0.747826 +0.252889 +0.768040 +0.301538 +0.044400 +0.208257 +0.098997 +0.536965 +0.726463 +-0.349031 +0.689443 +0.053414 +0.572724 +0.802310 +0.466819 +-1.484730 +0.749885 +0.981647 +0.640378 +-0.249651 +0.081417 +0.456391 +-0.209624 +-0.157861 +0.148116 +0.646685 +0.754461 +0.760834 +0.724161 +0.803006 +0.376942 +-0.028257 +0.882749 +0.882625 +0.619922 +-0.046721 +0.799274 +0.429768 +0.725480 +0.760301 +0.812425 +0.792660 +0.381736 +0.175370 +0.063311 +0.574729 +0.426253 +-0.057386 +0.804347 +0.730997 +0.686024 +0.942432 +-0.806358 +0.290734 +0.385586 +0.803691 +0.432538 +0.606891 +0.505425 +0.719768 +0.333695 +0.968140 +0.929605 +0.360366 +-0.449732 +0.454777 +-0.128675 +-0.207921 +-1.143423 +0.538058 +0.929963 +-0.103997 +0.540570 +0.830059 +-0.058752 +-0.070241 +-0.208652 +0.692667 +-0.138756 +0.587247 +0.459699 +0.571127 +0.962749 +0.070104 +-0.160459 +0.614283 +0.172542 +0.875054 +-0.205606 +0.697913 +0.930537 +0.536585 +-0.052242 +0.704221 +-0.149998 +0.856162 +0.306091 +0.796455 +0.752022 +0.709831 +0.367488 +-0.130002 +0.159189 +0.184280 +0.733094 +0.693605 +-0.143014 +0.952279 +-0.662386 +0.949184 +-0.252508 +0.800283 +0.757345 +0.169125 +0.615536 +-0.096899 +0.257212 +0.834700 +0.278381 +0.463591 +0.616726 +-0.273872 +0.087157 +0.650518 +-0.118905 +0.642727 +0.194757 +-0.309813 +0.188162 +0.816444 +0.261827 +0.629132 +0.673369 +0.838905 +0.431033 +0.428627 +-0.396414 +0.281751 +-0.120479 +0.403652 +0.550995 +0.885760 +0.735157 +0.431822 +0.625162 +0.439676 +0.774156 +0.508103 +0.531122 +0.005402 +0.326148 +0.171679 +0.054479 +0.681666 +0.206777 +-0.142134 +0.594890 +0.900409 +0.991822 +-0.287392 +0.873987 +0.926604 +0.632842 +0.717662 +-0.014802 +0.827552 +0.881137 +0.663752 +0.914284 +0.607699 +0.260919 +0.689436 +0.811032 +0.325768 +0.968056 +0.251100 +0.857563 +0.390075 +0.682599 +0.414412 +0.103452 +0.423064 +0.480577 +0.638490 +-0.058038 +-0.314183 +0.643987 +0.524519 +0.109648 +0.868597 +0.411977 +0.761850 +-0.300454 +-1.919581 +-0.223746 +0.324426 +0.525235 +0.813009 +0.692014 +0.613344 +0.883875 +0.726507 +0.900791 +0.108318 +0.474745 +0.596136 +0.998412 +0.068938 +0.838227 +0.562606 +-0.112791 +0.106295 +-0.157637 +0.703802 +0.539498 +0.276637 +0.340460 +0.783333 +0.695932 +0.721328 +0.588754 +0.959270 +0.555068 +0.925582 +0.509894 +0.371673 +0.856417 +0.860444 +0.207366 +0.979429 +0.625173 +0.549526 +0.538589 +0.925505 +0.919120 +0.928227 +0.225327 +0.919041 +0.723224 +0.530298 +0.937173 +0.157847 +0.087324 +0.939473 +0.516088 +0.749692 +0.944838 +0.920889 +0.879504 +0.774266 +0.466475 +0.670489 +0.813665 +0.910628 +0.388683 +0.190108 +0.257784 +0.950325 +0.230513 +0.674403 +0.761573 +0.809502 +0.865163 +0.358071 +0.750874 +0.205022 +0.298148 +0.247308 +0.263878 +0.883897 +0.815498 +-0.335725 +0.320608 +0.379858 +0.511439 +0.431095 +0.547553 +0.903075 +0.949833 +0.511030 +0.960785 +-1.401110 +0.333416 +0.769919 +0.820005 +0.688555 +0.860235 +0.863313 +-0.242994 +0.519479 +0.335299 +0.473148 +0.865977 +0.842354 +0.170741 +0.817073 +0.817073 +0.579909 +0.730239 +0.602622 +0.455414 +0.439820 +0.335049 +0.392703 +0.306804 +0.089199 +0.630861 +-1.015392 +0.979379 +0.053857 +-0.062444 +0.016374 +0.044116 +0.564041 +0.882967 +0.773168 +0.723524 +0.795939 +0.409798 +0.488815 +0.975479 +0.036832 +0.830245 +0.490287 +0.439142 +0.040297 +0.795794 +0.935403 +0.943265 +0.419134 +0.732899 +0.568137 +0.506268 +0.953595 +0.632150 +0.523606 +0.571688 +0.791823 +0.880086 +0.930352 +0.874104 +0.112185 +0.598531 +0.873288 +0.948809 +0.679627 +0.377885 +-10.556325 +0.861440 +0.540894 +0.973423 +0.754135 +0.611483 +0.480823 +0.391668 +0.719851 +0.809616 +0.647103 +0.344845 +0.409611 +0.444132 +0.926404 +0.719188 +0.440834 +0.749596 +0.895771 +0.685007 +0.985929 +0.649220 +0.174154 +0.134865 +0.335006 +0.252414 +0.061324 +0.424994 +0.657874 +0.132926 +0.785187 +0.442312 +0.235726 +0.371575 +0.585944 +0.951022 +0.838556 +-2.849370 +0.614345 +0.826641 +0.656815 +0.805382 +0.331322 +0.934742 +0.765203 +0.630868 +0.660214 +0.612125 +0.628401 +0.807501 +0.573636 +0.039874 +0.342598 +0.040815 +-0.040996 +0.251292 +0.717099 +0.762152 +0.778990 +0.810066 +0.705511 +0.728921 +0.660203 +0.929568 +0.932194 +0.929219 +0.965583 +0.861188 +0.453634 +0.928165 +0.933125 +0.978389 +0.517107 +0.901888 +0.854702 +0.923563 +0.933029 +0.953337 +0.943078 +-3.731359 +0.744859 +0.857067 +0.933031 +0.929439 +0.830088 +0.505721 +0.909372 +0.487244 +0.762921 +0.841141 +0.894335 +0.922076 +0.807425 +0.465179 +0.379492 +0.513133 +0.568104 +0.868980 +0.968847 +0.970271 +0.885011 +0.718939 +0.736510 +0.729026 +0.514463 +0.775258 +0.732859 +0.871123 +0.731864 +0.730056 +0.474004 +0.210599 +0.956626 +0.801963 +0.296149 +0.864542 +0.708788 +0.765635 +0.736837 +0.723965 +-29.342913 +0.740861 +0.421617 +0.734608 +0.902439 +0.730158 +0.838731 +0.242040 +0.732951 +0.790978 +-29.340541 +0.905865 +-28.751101 +0.514597 +0.720742 +0.700881 +0.673653 +0.678779 +0.532840 +-29.782875 +0.590832 +-89.288981 +0.754671 +0.884401 +-93.097057 +0.927113 +0.500989 +0.735878 +0.315319 +0.218194 +0.639621 +0.409903 +0.454315 +0.839129 +0.994808 +0.935931 +0.914137 +0.750294 +0.661006 +0.569091 +0.888061 +0.773717 +0.921180 +0.705930 +0.987065 +0.750594 +0.737614 +0.918913 +0.692920 +0.944687 +0.881102 +0.804071 +0.908640 +0.788823 +0.773961 +0.540650 +0.924989 +0.627389 +0.040260 +0.114097 +0.031071 +0.942029 +0.640432 +0.035294 +0.307104 +0.244192 +-0.632837 +0.198214 +0.993851 +0.991138 +0.666301 +0.135668 +0.840156 +0.346727 +0.235981 +0.128144 +-0.156575 +-0.618327 +0.241078 +-0.105438 +-1.035431 +0.057474 +0.050819 +0.044321 +0.045021 +0.536140 +0.102456 +0.812205 +0.904030 +0.833429 +0.753456 +0.209292 +0.622995 +-0.503909 +-62.622097 +0.063968 +0.723769 +0.922424 +0.930989 +0.990504 +0.959289 +0.399604 +0.526923 +0.268173 +0.877837 +0.111328 +0.961105 +-0.364936 +0.721462 +0.728645 +0.792750 +0.660218 +0.857499 +0.411015 +0.455426 +0.993027 +0.845283 +0.823658 +0.838962 +0.712362 +0.533032 +0.835880 +0.896392 +0.689232 +0.853054 +0.652509 +0.237549 +0.622528 +0.837198 +0.719235 +0.906681 +0.902836 +0.893226 +0.857842 +0.773464 +0.703460 +0.220111 +0.885352 +0.818320 +0.922105 +-0.658237 +0.573345 +0.319360 +0.302837 +0.712106 +0.601756 +0.579216 +0.591201 +0.489489 +-0.434189 +0.062990 +0.156159 +0.519100 +-0.432653 +0.711147 +0.254689 +0.612493 +0.079742 +0.554075 +0.749483 +0.630682 +0.686758 +0.958301 +0.356274 +0.458579 +0.535174 +-0.198508 +0.446683 +0.585610 +-0.149154 +0.932533 +0.043054 +0.817549 +0.252500 +-4.172922 +0.140144 +0.637894 +0.684377 +0.913048 +0.615461 +0.964744 +0.450536 +0.688843 +0.930466 +0.998692 +0.926149 +0.364731 +0.688304 +0.918848 +0.758935 +0.485477 +0.365119 +0.678681 +0.883679 +0.858913 +0.773667 +0.841429 +0.929641 +0.368448 +0.917504 +-0.096478 +0.622910 +0.583628 +-0.462987 +0.370101 +0.995960 +0.380824 +0.252169 +0.995725 +0.907782 +0.869789 +0.574335 +0.642210 +0.856537 +0.790776 +0.495183 +0.993639 +0.405631 +0.833073 +0.847706 +0.790230 +0.687483 +0.930758 +0.896640 +0.927253 +0.483968 +0.306903 +0.676128 +0.817609 +0.605175 +0.474097 +0.860555 +0.500945 +0.868870 +0.818546 +0.882153 +0.885935 +0.615104 +0.885840 +0.885908 +0.308273 +0.884518 +0.644033 +0.867554 +0.879636 +0.722538 +0.860188 +0.438999 +0.943469 +0.938210 +0.914507 +0.889302 +0.828095 +0.841736 +0.884056 +0.313928 +0.488259 +0.882775 +0.785676 +0.616840 +0.854606 +0.703662 +0.854450 +0.785905 +0.851261 +0.707282 +0.201607 +0.007729 +0.512353 +0.862863 +0.764800 +0.052879 +0.544884 +0.633726 +0.183604 +0.669787 +0.552563 +0.613370 +0.344712 +0.775719 +0.262587 +0.402489 +0.694896 +0.911548 +0.531080 +0.419944 +0.933684 +0.974520 +0.436104 +0.444110 +0.357951 +0.497349 +0.649439 +0.859683 +0.296461 +0.569781 +0.813848 +0.399472 +0.291235 +0.963658 +0.909048 +0.469729 +0.800892 +0.502624 +0.539198 +0.365993 +0.370478 +0.450220 +0.388201 +0.923531 +0.983136 +0.224578 +0.439095 +0.617889 +0.833778 +0.025885 +0.148401 +0.834865 +0.128188 +0.305053 +0.239688 +0.943707 +0.842415 +0.382630 +0.703162 +0.709657 +0.486304 +0.531020 +0.718468 +0.579347 +0.452867 +0.421192 +0.650793 +0.416650 +0.382021 +0.244784 +0.368778 +0.503507 +0.617637 +0.955169 +0.424271 +0.636768 +0.937815 +0.475779 +0.930814 +0.633141 +0.933286 +0.678811 +0.417610 +0.945892 +0.855460 +0.954467 +0.839427 +0.193004 +0.841646 +0.660174 +0.883815 +0.877425 +0.876674 +0.384087 +0.466025 +0.940640 +0.755099 +0.500397 +0.780467 +0.703042 +0.457579 +0.955785 +0.954674 +0.299808 +0.887898 +0.770498 +0.960305 +0.806466 +0.648810 +0.882677 +0.376083 +0.633856 +0.249748 +0.188502 +0.938120 +0.854995 +0.399812 +0.986334 +0.542605 +0.489198 +0.240211 +0.522304 +0.963421 +0.255135 +0.630135 +0.398509 +0.175668 +0.575259 +0.438757 +0.249182 +0.174653 +0.623252 +0.030648 +0.774405 +0.420385 +0.758048 +0.578702 +0.962361 +0.375666 +0.965666 +0.166197 +0.148413 +0.893271 +0.415700 +0.886993 +0.885270 +0.852702 +0.568271 +0.055802 +0.060843 +0.195776 +-0.016157 +0.096868 +0.480826 +0.722122 +0.824783 +0.182301 +-0.643554 +0.036111 +0.524069 +0.621063 +0.749433 +0.597622 +0.701286 +0.411979 +0.862410 +0.933447 +-0.030519 +0.518322 +0.602660 +0.149170 +0.544861 +0.279313 +0.906721 +0.044428 +0.127266 +0.130300 +0.186040 +0.077697 +0.715311 +0.839040 +0.164081 +0.933909 +0.252295 +0.779196 +0.463260 +0.709585 +0.829642 +0.859482 +0.794219 +0.682827 +0.205490 +0.745332 +0.586384 +0.908973 +0.431662 +0.494167 +0.918574 +0.802721 +0.728819 +0.716087 +0.454883 +0.377067 +0.883277 +-0.068909 +0.645862 +0.408250 +0.257334 +0.542555 +0.810800 +0.143046 +0.865412 +0.777469 +0.925000 +0.413199 +0.955080 +0.763148 +0.802683 +0.949938 +0.949447 +0.730098 +0.551448 +0.447752 +0.873044 +0.917701 +0.431238 +0.400397 +0.656541 +0.938555 +0.952720 +0.595503 +0.517349 +0.548097 +0.330510 +0.596082 +0.326483 +0.943299 +0.962475 +0.222553 +0.926324 +0.687105 +0.488525 +0.536597 +0.511339 +0.501682 +0.330959 +0.928843 +0.495360 +0.987725 +0.126781 +0.820568 +0.496887 +0.664142 +0.830704 +0.401598 +0.599286 +0.414057 +0.311076 +0.436754 +0.377925 +0.160790 +0.509283 +0.489313 +0.960485 +0.118195 +0.972150 +0.169322 +0.866550 +0.277799 +0.403632 +0.419821 +0.647038 +0.312159 +0.585145 +0.090503 +0.535146 +0.633687 +0.417901 +0.856064 +0.679146 +-5.665558 +0.364826 +0.517226 +0.856951 +0.134499 +0.097066 +0.558134 +-0.160462 +0.314442 +-0.040228 +0.098918 +0.706570 +0.938274 +0.188015 +0.867673 +0.593065 +0.135573 +0.133144 +0.442546 +0.144478 +0.986311 +0.478254 +0.347054 +0.250312 +0.507638 +0.548964 +0.386640 +0.967524 +0.910451 +0.370135 +0.506811 +0.256974 +0.639703 +0.493346 +0.624089 +0.220115 +0.588683 +0.658294 +0.415664 +0.277994 +0.391214 +0.298647 +0.447701 +0.379630 +0.329708 +0.679798 +0.481688 +0.416027 +0.831647 +0.226375 +0.737704 +0.891660 +0.384804 +0.436054 +0.312752 +0.237807 +0.186225 +0.044685 +0.006854 +0.000235 +0.067382 +0.070951 +0.428584 +0.713743 +0.510427 +0.862948 +0.477568 +0.692703 +0.984142 +0.485316 +0.897164 +0.919256 +0.648039 +0.415233 +0.912590 +0.942522 +0.921765 +0.918781 +0.984469 +0.253193 +0.380105 +0.782851 +0.416285 +0.997077 +0.419858 +0.502244 +0.327298 +0.462747 +0.748278 +0.907188 +0.918969 +0.755101 +0.937093 +0.934151 +0.485978 +0.395103 +0.490203 +0.397032 +0.585753 +0.414177 +0.936190 +0.922432 +0.572701 +0.321124 +0.294779 +0.409833 +0.682289 +0.443964 +0.514457 +0.355372 +0.261505 +0.173080 +0.284964 +0.411680 +0.995453 +0.865827 +0.085457 +0.712413 +0.241510 +0.807233 +0.090770 +0.053341 +0.505466 +0.015781 +0.127301 +0.546362 +0.144876 +0.188469 +0.089119 +0.378796 +0.023549 +0.717975 +0.525764 +0.609465 +0.789921 +-0.092543 +0.943209 +0.205145 +0.397605 +0.656084 +0.157025 +0.528519 +0.633105 +0.309000 +-3.285501 +0.479015 +-0.008041 +0.246835 +0.469497 +-0.094919 +0.304342 +0.058491 +0.352829 +0.039482 +0.643138 +0.670462 +0.256800 +0.770957 +0.057612 +0.576436 +0.697508 +0.044621 +0.293103 +0.494882 +-0.612827 +0.097786 +0.610329 +0.259611 +-0.007582 +0.567748 +0.526753 +0.876669 +0.988301 +0.432705 +0.712667 +0.477579 +0.500265 +0.341050 +0.647247 +0.668108 +0.926113 +0.189627 +0.232924 +0.190082 +0.543262 +0.905533 +0.812681 +0.570556 +0.570317 +0.660764 +0.449812 +0.399044 +0.997762 +0.748221 +-0.227640 +0.961807 +0.725675 +0.540419 +0.684757 +0.806514 +0.533294 +0.764098 +0.989834 +0.916069 +0.319576 +-2.082118 +0.167082 +0.665981 +-2.972805 +0.571903 +0.931264 +0.925470 +0.590708 +0.830073 +0.562559 +0.580149 +0.797901 +0.314590 +0.560339 +0.597430 +0.864019 +0.403306 +0.450841 +-0.139906 +-0.451343 +0.134819 +0.518417 +0.912344 +0.848180 +0.041499 +0.858014 +0.237575 +0.783588 +-0.087547 +-0.063451 +0.748762 +0.514907 +0.919690 +0.929395 +0.771456 +0.260698 +0.856205 +0.717573 +0.913091 +0.665346 +0.029320 +0.943334 +0.935425 +0.125679 +0.239787 +0.750187 +-0.046814 +0.685293 +0.970064 +0.896128 +-0.521291 +0.618021 +0.609155 +0.510076 +-0.033624 +0.268452 +0.772337 +0.868597 +0.598777 +0.568857 +0.030197 +0.212157 +0.683486 +0.282099 +0.428368 +0.096392 +0.113206 +0.429664 +0.043233 +0.053466 +0.033404 +-0.044436 +0.110737 +0.744892 +0.219033 +0.818999 +0.711898 +0.987419 +0.625489 +0.624599 +0.787289 +0.920922 +0.617861 +0.239303 +0.758726 +0.944517 +0.661274 +0.744837 +0.657959 +0.753168 +0.995351 +0.200033 +0.982801 +-0.135786 +0.461984 +0.451580 +0.231322 +0.904274 +0.335404 +0.930938 +0.176612 +0.623698 +0.720634 +0.751281 +0.992225 +0.894576 +0.279879 +0.028500 +-0.785973 +0.469940 +0.841582 +0.756018 +0.846276 +0.401834 +0.673122 +0.461019 +-0.013288 +0.857830 +0.559168 +0.204928 +0.729670 +0.202848 +0.173365 +0.707928 +0.720442 +0.313982 +0.819554 +0.821475 +0.254781 +0.699936 +0.623204 +0.444514 +0.919786 +0.166896 +0.793829 +0.462429 +0.303135 +0.528071 +0.359069 +0.451846 +0.710860 +0.449111 +0.569030 +0.755545 +0.839754 +0.175342 +0.766057 +0.911563 +0.886675 +0.906270 +0.950363 +0.841939 +0.277978 +-0.492300 +0.952541 +0.903175 +0.375150 +0.718507 +0.777991 +0.276394 +0.216237 +0.594546 +0.227014 +0.818424 +0.945659 +0.501433 +0.266025 +0.074372 +0.615548 +0.495739 +0.526198 +-0.146312 +0.292841 +0.601752 +0.286095 +0.246204 +0.436903 +-0.905322 +0.023698 +-0.069496 +0.680056 +0.902410 +0.270917 +0.922373 +0.801318 +0.837771 +0.658117 +0.813906 +0.912405 +0.437639 +0.480544 +0.944478 +0.872636 +0.827604 +0.667384 +0.940476 +0.483172 +0.861689 +0.900478 +0.867065 +0.938363 +0.853739 +0.743030 +0.947163 +0.927012 +0.932830 +0.934250 +0.210122 +0.722900 +0.537441 +0.848911 +0.859379 +0.910466 +0.959594 +0.803692 +0.955006 +0.940316 +0.957944 +0.637840 +0.895834 +0.989182 +0.671333 +0.706481 +0.942231 +0.859709 +0.874598 +0.891882 +0.940553 +0.849684 +0.857528 +0.713271 +0.287698 +0.422552 +0.211355 +0.594447 +0.098695 +0.525520 +0.996635 +0.295649 +0.563377 +0.233718 +0.430575 +-0.199326 +0.044084 +0.872073 +0.918973 +0.355153 +0.439235 +0.408466 +0.703296 +0.920570 +0.909459 +0.619807 +0.668649 +0.957157 +0.752140 +0.836682 +-0.034037 +0.926425 +0.926780 +0.408347 +0.782995 +0.141234 +0.944505 +0.654568 +0.822348 +0.952771 +0.116684 +0.587193 +0.912679 +0.881198 +0.912667 +0.889611 +0.948065 +0.867917 +0.919253 +0.798673 +0.984301 +0.735803 +0.803935 +0.782002 +0.806091 +0.923958 +0.835218 +0.591175 +0.411499 +0.543437 +0.698193 +0.544715 +0.683730 +0.458959 +0.606125 +0.475039 +-0.186755 +0.692943 +0.902445 +0.299641 +0.909961 +0.846968 +0.702024 +0.502506 +0.983473 +0.957522 +0.980338 +0.979215 +0.855235 +0.675019 +-0.408782 +0.087745 +0.054438 +0.313140 +0.391504 +0.849386 +0.353513 +0.279058 +0.501740 +0.080416 +0.035315 +0.673628 +0.344962 +0.654502 +0.335104 +0.820448 +0.516965 +-0.423601 +0.388572 +0.242578 +0.020401 +0.918201 +-0.163304 +0.504966 +0.828461 +0.522462 +0.847071 +0.991582 +0.256786 +0.645794 +0.132322 +0.647551 +0.914346 +0.958192 +0.633454 +0.484884 +0.927493 +0.860817 +0.965422 +0.796070 +0.855094 +0.931768 +0.345377 +0.337760 +-0.204548 +0.793647 +0.214299 +0.427275 +0.724144 +0.677354 +0.492801 +0.607124 +0.396110 +0.456447 +0.902249 +0.200091 +0.001103 +0.521706 +0.171226 +-8.442465 +0.479617 +0.002192 +0.318090 +0.818232 +0.642438 +0.283580 +0.471971 +0.916659 +0.416520 +0.787494 +0.543057 +0.339562 +0.570987 +0.086923 +0.719540 +0.988055 +0.979491 +0.850855 +0.302149 +0.641733 +0.973477 +0.376121 +0.981110 +0.925680 +0.798388 +0.398346 +0.756529 +0.851902 +0.924257 +0.629366 +0.786160 +0.881136 +0.926549 +0.719017 +0.563703 +0.910422 +0.308771 +0.828210 +0.984437 +0.954483 +0.610921 +0.606882 +0.861728 +0.741415 +0.928408 +0.951875 +0.932856 +0.521181 +0.936861 +0.862338 +0.480878 +0.285922 +0.784427 +0.886872 +0.851984 +0.762932 +0.851815 +0.804256 +0.365060 +0.712753 +0.719822 +0.432352 +0.745841 +0.865722 +0.243551 +0.729468 +0.809539 +0.650451 +0.769177 +0.684534 +0.810402 +0.641418 +0.769088 +0.749384 +0.702236 +0.864807 +0.223399 +-0.257000 +0.749017 +0.997508 +0.636727 +0.692920 +0.531447 +0.938984 +0.388650 +-0.326357 +0.890901 +0.435840 +0.725481 +0.734041 +0.916632 +0.703707 +0.776878 +0.896836 +0.426541 +0.830741 +0.062247 +0.377922 +0.955841 +0.249540 +0.100783 +0.708069 +0.570059 +0.693935 +0.631657 +0.673267 +0.377533 +0.601346 +0.422815 +-0.230082 +0.355168 +0.886426 +0.482357 +-0.378975 +0.669560 +0.339493 +0.794821 +0.885190 +0.597935 +-0.527197 +0.622295 +0.887575 +0.890572 +0.634678 +0.636424 +0.645561 +0.813761 +0.633167 +0.553355 +0.785508 +0.699815 +0.679729 +0.683481 +0.057746 +0.837145 +0.825663 +0.851057 +0.833992 +0.852327 +0.847171 +0.855277 +0.206546 +0.348505 +-0.084000 +0.647330 +0.222295 +0.879284 +0.785957 +0.550320 +0.864935 +0.156947 +0.022299 +0.307861 +0.233924 +0.697185 +0.387057 +0.051861 +0.095928 +-0.166704 +0.153563 +0.982610 +-608262.628538 +0.167179 +0.025494 +0.310596 +0.726518 +0.762748 +0.533517 +0.517705 +0.113378 +0.141050 +0.745420 +0.127853 +0.496210 +0.478345 +0.806767 +0.112454 +0.420096 +0.064423 +0.819528 +0.956001 +0.712583 +0.510630 +0.483867 +0.673660 +0.884858 +0.350017 +0.888163 +0.784074 +0.851393 +0.843280 +0.934655 +0.809540 +0.932924 +0.602608 +0.547728 +0.844465 +-0.013459 +0.839367 +0.065611 +0.939663 +0.835318 +0.353084 +0.809129 +0.228839 +0.615409 +0.473943 +0.942290 +0.692451 +0.979537 +0.612603 +0.369886 +0.879583 +0.896754 +0.308045 +0.699710 +0.935601 +0.532007 +0.905244 +0.665449 +0.136410 +0.493561 +0.743754 +0.098860 +0.871176 +-0.034607 +0.946598 +0.740106 +0.346143 +0.330922 +0.262544 +0.407617 +0.926005 +0.809645 +0.706554 +0.974019 +0.153542 +0.627252 +0.863959 +0.285049 +0.170351 +0.209119 +0.529239 +0.430796 +0.525926 +0.864694 +0.958288 +0.402661 +-0.944224 +0.923566 +0.798345 +0.470696 +0.666000 +0.966297 +0.926794 +0.671172 +0.698064 +0.937596 +0.730957 +0.620074 +0.359547 +0.057897 +0.463718 +0.665140 +0.573027 +0.922297 +0.883865 +0.352117 +0.353143 +0.482426 +0.859040 +0.671162 +0.719421 +0.260554 +0.940657 +-0.408695 +0.967886 +0.601195 +0.865846 +0.695876 +0.357211 +0.411392 +0.849789 +0.799292 +0.891207 +0.994604 +0.779470 +0.597788 +0.940024 +-0.174689 +0.453165 +0.673069 +0.482521 +0.752162 +0.803699 +0.459812 +0.377639 +0.174917 +0.086189 +0.261721 +0.026056 +0.954284 +0.973409 +0.335417 +0.135299 +0.104037 +0.197037 +0.058706 +-0.225662 +0.853118 +0.482372 +0.870173 +0.665502 +0.188612 +0.596768 +0.383779 +0.858121 +0.629536 +0.754884 +-0.559799 +0.970153 +0.683220 +0.539015 +0.419410 +0.835877 +0.478042 +0.554905 +0.570317 +0.334513 +0.527733 +0.578843 +0.916581 +0.708866 +0.709114 +0.750039 +0.723207 +0.384435 +0.623574 +0.932588 +0.702716 +0.549191 +0.840952 +0.380021 +0.627937 +0.986441 +0.463063 +0.781164 +0.550911 +0.983908 +0.376767 +0.514178 +0.609185 +0.465618 +0.920446 +0.413076 +0.395135 +0.657849 +0.836897 +0.320341 +0.868352 +0.970870 +0.913578 +0.969216 +0.930733 +0.117087 +0.424641 +0.925416 +0.612161 +0.547476 +0.528648 +0.920987 +0.940761 +0.334408 +0.600920 +0.906612 +0.538003 +0.474081 +0.530424 +0.924657 +0.498868 +0.562137 +0.434903 +0.630138 +0.957890 +0.926969 +0.612952 +0.990347 +0.364107 +0.895541 +0.962892 +0.238595 +0.539226 +0.667249 +0.828178 +0.725994 +0.770354 +0.657577 +0.960457 +-1.062052 +0.959245 +0.922031 +0.609725 +0.802183 +0.330968 +0.979641 +0.711698 +0.293145 +0.774452 +0.714136 +0.895079 +0.751930 +-0.247505 +0.542112 +0.682298 +-1.038098 +0.448948 +-0.248846 +0.560392 +-0.882724 +-1.037046 +0.487765 +0.365619 +0.788284 +0.113386 +0.817942 +0.950039 +0.808812 +-0.245596 +0.579110 +-4.082076 +0.251769 +0.811362 +0.799089 +0.223598 +0.381123 +0.607820 +0.862580 +0.495185 +0.593172 +0.689288 +0.678181 +0.959220 +0.729251 +0.862557 +0.879891 +0.776766 +0.383813 +0.787755 +0.405298 +0.709800 +0.876546 +0.695920 +0.424739 +0.593211 +0.563765 +0.641580 +0.508494 +0.907123 +0.556973 +0.763918 +0.516389 +0.492323 +0.758455 +0.976089 +0.648342 +0.831644 +0.777399 +0.236068 +0.674810 +0.813812 +0.918569 +0.684955 +0.789981 +0.581074 +0.854442 +0.714065 +0.854007 +0.214819 +0.989199 +0.703953 +0.924864 +0.769446 +0.864850 +0.924975 +0.870563 +0.528121 +0.383630 +0.928071 +-0.298803 +0.255568 +0.878652 +0.896605 +0.999770 +0.921444 +0.673027 +0.827511 +0.684719 +0.331971 +0.639925 +0.847712 +0.897137 +0.661625 +0.753746 +0.876874 +0.777183 +0.580763 +0.480597 +0.904227 +0.856909 +0.862774 +0.430020 +0.546342 +0.936319 +0.932566 +0.908858 +0.860513 +0.828690 +0.813898 +0.989680 +-0.034834 +0.798306 +0.231431 +0.767754 +0.847321 +0.851898 +0.803788 +0.921369 +0.378043 +0.378044 +0.511309 +0.662876 +0.919302 +0.733559 +0.395575 +0.492907 +-0.174108 +0.865943 +0.519101 +0.516035 +0.557383 +0.745736 +0.094407 +0.841418 +0.348033 +0.984764 +0.598591 +0.979458 +0.700332 +0.293807 +0.156869 +0.106971 +0.001579 +0.160673 +0.304265 +0.396933 +0.489108 +0.591284 +0.220052 +-0.026695 +0.298110 +-0.091958 +0.941602 +0.734649 +0.412481 +0.623787 +0.934395 +0.928052 +0.915163 +0.869148 +0.400132 +0.488868 +0.043112 +0.202351 +0.189678 +0.783273 +0.180796 +0.822460 +0.576339 +0.319712 +0.242102 +0.140549 +0.272139 +0.180719 +0.180719 +-0.286850 +0.325161 +0.315018 +0.096670 +0.592048 +0.145790 +-0.690144 +-42.470320 +0.741333 +0.558791 +0.283676 +0.220103 +0.228073 +0.258610 +0.297634 +0.570605 +0.669023 +0.624738 +0.480827 +0.308699 +0.893235 +0.531960 +0.739086 +0.242234 +0.673407 +0.934852 +0.566147 +0.841277 +0.822999 +0.684145 +0.846843 +0.736168 +0.556648 +0.615265 +0.913211 +0.859004 +0.290642 +0.743202 +0.937332 +0.923826 +0.723297 +0.954942 +0.719246 +0.536120 +-0.085622 +0.739386 +0.712237 +0.980710 +0.702459 +0.916417 +0.939428 +0.915240 +0.926305 +0.970479 +0.920331 +0.878559 +0.973245 +0.985099 +0.990089 +0.436104 +-0.549581 +0.765206 +0.360849 +0.859216 +0.389447 +0.688958 +0.219082 +-3861.561114 +0.894736 +0.359168 +0.693128 +0.997866 +0.661720 +0.973479 +0.138670 +0.985955 +0.201322 +0.950824 +0.885613 +0.703956 +0.150151 +0.162712 +0.823931 +0.138603 +0.351192 +0.378637 +0.787469 +0.788001 +0.520730 +0.022232 +0.933717 +0.815547 +0.689126 +0.517652 +0.743707 +0.637413 +0.413270 +0.615207 +0.771536 +0.532554 +0.656836 +0.706532 +0.379033 +0.912782 +0.752266 +0.975773 +0.606589 +0.825829 +0.498568 +0.503977 +0.739560 +0.720553 +0.709431 +0.341290 +0.997764 +0.440098 +0.950754 +0.614343 +0.285503 +0.626480 +0.284338 +0.973672 +0.727105 +-1.338681 +0.175001 +0.934886 +0.427925 +0.793982 +0.406118 +0.573213 +0.190125 +0.311545 +0.779557 +0.356042 +0.465466 +0.658073 +0.521320 +0.371918 +0.650175 +0.924478 +0.945319 +0.928647 +0.785788 +0.216800 +0.975317 +0.725015 +0.963903 +0.549528 +0.505011 +0.482242 +0.333082 +0.463081 +0.409021 +0.684627 +0.930401 +0.216380 +0.508794 +0.662519 +0.488476 +0.441960 +0.823919 +0.926637 +0.481162 +0.517516 +0.855564 +0.428265 +0.499222 +0.441802 +0.254034 +0.503005 +0.339130 +0.360522 +0.127113 +-0.051983 +0.548099 +0.419266 +0.663361 +0.205183 +0.517940 +0.095945 +0.721323 +0.595556 +0.954583 +0.307163 +0.695916 +0.674738 +0.574704 +0.610621 +0.890643 +0.735958 +0.976711 +0.841985 +0.239714 +0.851262 +0.089964 +0.665247 +0.582936 +0.763357 +0.539826 +0.937358 +0.867953 +0.546307 +0.679923 +0.929695 +-7648460403780.631836 +0.908922 +-0.203165 +0.896931 +0.923207 +0.455148 +0.753893 +0.602481 +0.809983 +0.869234 +-0.416957 +0.819304 +0.940486 +0.896903 +0.384326 +0.646158 +0.354984 +0.692061 +0.546776 +0.480119 +0.476446 +0.422601 +0.962350 +0.941117 +0.932311 +0.615186 +0.948420 +0.073040 +0.674758 +-0.005649 +0.856236 +0.542403 +0.623944 +0.813403 +0.462792 +0.730113 +0.635448 +0.423596 +0.552847 +0.904344 +0.923247 +0.696703 +0.509502 +0.931656 +0.649578 +0.784579 +0.019386 +0.158650 +0.522830 +0.566785 +0.883787 +0.913910 +0.516968 +0.514857 +0.691960 +0.166003 +0.653600 +0.131939 +0.427607 +0.148761 +0.611231 +0.059790 +0.187514 +0.184496 +0.199854 +0.606681 +0.814170 +0.826305 +0.369499 +0.475221 +0.442279 +0.146209 +0.043537 +-8.500567 +0.695899 +-0.069052 +0.679584 +0.118391 +0.713383 +0.987592 +0.831537 +0.113311 +0.027563 +0.147667 +0.501305 +0.162237 +0.032164 +0.670171 +0.142173 +0.099543 +0.947319 +0.602003 +0.028828 +0.496489 +0.274511 +0.499692 +0.822554 +0.808467 +0.687880 +0.548989 +0.171864 +0.249269 +0.728423 +0.575567 +0.676557 +0.677009 +0.444091 +0.492195 +0.277401 +0.364214 +0.829188 +0.996618 +0.648070 +0.495941 +0.408442 +0.499255 +0.546907 +-3.246198 +0.177313 +0.055651 +0.981310 +0.349559 +0.466285 +0.596876 +0.275976 +0.144810 +0.249960 +0.943987 +0.750446 +0.827914 +0.961168 +0.483464 +0.938899 +0.772135 +0.983227 +0.272315 +0.757630 +0.196326 +-0.261134 +0.033668 +0.382112 +0.001847 +0.757395 +0.379927 +0.707174 +0.813894 +0.845609 +0.737566 +0.559696 +0.903718 +0.427915 +0.656166 +0.689501 +0.644141 +0.922101 +0.023612 +-1.174683 +0.500918 +0.943307 +0.686761 +-0.145068 +0.836813 +0.008333 +-4.463548 +0.977483 +0.087669 +-0.050190 +0.738128 +0.832821 +0.944178 +0.092549 +0.182970 +0.261947 +0.595767 +0.538192 +0.611443 +0.797922 +0.911050 +0.886439 +0.296125 +0.094179 +0.190190 +0.025218 +0.583855 +0.659090 +-0.207819 +0.403129 +0.136132 +0.486391 +0.811916 +0.846420 +0.754221 +0.345345 +0.829037 +0.719084 +0.865556 +0.573556 +0.460064 +0.795490 +0.907645 +0.428134 +0.480428 +0.932681 +0.606574 +0.682036 +0.857341 +0.441870 +0.964043 +0.891830 +0.716076 +0.407915 +0.858271 +0.861428 +0.120639 +0.406772 +0.282707 +0.840716 +-0.173821 +0.079172 +0.341412 +0.064828 +0.841169 +0.163688 +-0.227371 +0.355045 +0.225592 +0.470360 +0.199141 +0.578908 +0.908364 +0.701426 +0.631630 +0.790324 +0.675947 +0.790278 +0.502838 +0.635833 +0.890094 +0.736317 +0.689752 +0.773444 +0.625150 +0.557056 +0.653385 +0.702167 +0.931275 +0.887317 +0.051982 +0.550437 +0.806861 +0.592255 +0.876067 +0.515301 +0.895014 +0.722446 +0.932585 +0.808953 +0.788447 +0.892536 +0.722188 +0.921847 +0.914020 +-0.175162 +0.461562 +0.700743 +0.931073 +0.418841 +-0.450393 +0.916455 +0.161171 +0.180956 +0.569230 +-0.198880 +0.793355 +0.101672 +-0.237098 +0.798756 +-0.046630 +0.797525 +0.643131 +0.736836 +0.928292 +0.526316 +0.755087 +0.439802 +0.026944 +0.720232 +0.951237 +0.961119 +0.769993 +0.730655 +0.782483 +0.899696 +0.960131 +0.978921 +0.931052 +0.997509 +0.516145 +0.887055 +0.923893 +0.479508 +0.477879 +0.824461 +0.715347 +0.880034 +0.947551 +0.885505 +0.729598 +0.326754 +0.652017 +0.994260 +0.771801 +0.922777 +0.297797 +0.928772 +0.785062 +0.919727 +0.376678 +0.965511 +0.661627 +0.909583 +0.911249 +0.978594 +0.994295 +0.098955 +0.975124 +0.851451 +0.731885 +0.881978 +0.176258 +0.884472 +0.607094 +0.945382 +0.989112 +-0.016184 +0.833907 +0.859962 +0.276456 +0.669513 +0.899675 +0.923548 +0.966932 +0.266248 +0.689546 +0.891407 +0.264157 +0.860888 +0.325807 +0.468035 +0.392688 +0.299422 +0.929129 +0.545478 +0.552873 +0.542326 +0.507613 +0.698190 +0.878510 +0.979860 +0.829844 +0.494044 +0.937589 +0.347558 +0.757354 +0.796163 +0.715009 +0.589590 +0.461594 +0.815585 +0.840813 +0.120815 +0.872957 +0.858070 +0.923903 +0.448572 +0.922321 +0.821296 +0.230197 +0.679159 +0.925137 +0.280605 +0.867431 +-0.163637 +0.503190 +0.698913 +0.744010 +0.913318 +0.631059 +0.776805 +0.848550 +0.741895 +-0.920755 +0.697432 +0.859257 +0.750994 +0.224672 +0.956218 +0.019428 +0.792013 +0.424444 +0.725005 +0.969810 +0.171559 +0.650635 +0.636627 +0.381941 +-0.212014 +0.809439 +0.917586 +0.935697 +0.853857 +0.931728 +0.841242 +0.475196 +0.469240 +0.951215 +0.684245 +0.273325 +0.811271 +-0.023288 +0.634786 +0.945291 +0.364137 +0.390894 +0.418737 +-1.457779 +0.285766 +0.904428 +0.527914 +0.924700 +0.727324 +0.878189 +0.905265 +-1.305010 +0.760399 +0.654664 +0.807951 +0.559333 +0.929910 +0.831166 +0.735815 +0.337816 +0.526067 +0.541754 +0.928488 +0.965015 +-0.244779 +0.736648 +0.504891 +0.823043 +0.534126 +0.882562 +0.753016 +0.977844 +0.524334 +-0.379712 +-1.364760 +0.827557 +0.816546 +0.718467 +0.894967 +-0.678103 +0.509777 +0.460689 +0.710758 +0.977813 +0.917857 +0.278857 +-0.465265 +0.934024 +0.837441 +0.325613 +0.471840 +0.961546 +0.632342 +0.730927 +-5.260115 +0.636336 +0.921845 +0.131551 +0.245724 +0.051800 +0.927620 +0.675888 +0.370504 +0.089805 +0.515365 +-0.125396 +0.976904 +0.267159 +0.278687 +0.331724 +0.976514 +0.492209 +0.904384 +0.762713 +0.959791 +0.916702 +0.937077 +0.062307 +0.217952 +0.210210 +0.540522 +0.501501 +0.934042 +0.265304 +0.484202 +0.550391 +0.724981 +0.687364 +0.374923 +0.838794 +0.830866 +0.347511 +0.815338 +0.890707 +0.152952 +0.775412 +0.124181 +0.673170 +0.968812 +0.696340 +0.346528 +0.768050 +0.199349 +0.921997 +0.159019 +0.668118 +0.720948 +0.279875 +0.702117 +0.263551 +0.272073 +-1.280059 +0.240473 +0.821671 +-0.211033 +0.273675 +0.475638 +0.546639 +0.328364 +0.249882 +0.594165 +0.879005 +0.810351 +0.085102 +0.739235 +-0.241485 +-0.216653 +0.861539 +0.329928 +0.804588 +0.923157 +0.934891 +0.231315 +0.502687 +0.749143 +0.354402 +0.516603 +0.378408 +0.641739 +0.311363 +-0.100037 +0.539573 +0.143386 +-0.040840 +0.866959 +0.816249 +0.913793 +0.886887 +0.295625 +-0.182252 +0.323701 +0.500973 +0.805365 +0.047481 +0.081597 +0.077500 +0.138558 +0.626556 +0.508748 +0.409850 +-12.392615 +0.267159 +0.900925 +-0.010561 +0.555672 +-0.732971 +0.995090 +0.103805 +0.145777 +0.184646 +0.280167 +-0.007910 +0.262955 +0.937506 +0.598003 +0.234082 +0.950484 +0.778947 +0.082524 +0.907911 +0.546180 +0.950690 +0.946587 +0.262584 +0.104599 +0.222700 +0.333103 +0.552133 +0.851791 +0.166321 +0.952984 +0.830396 +0.989856 +0.992741 +0.126070 +0.066102 +0.575509 +0.967797 +0.191931 +0.229158 +0.096004 +0.166186 +0.548715 +0.997615 +0.591008 +0.234053 +0.750916 +0.986969 +-0.007103 +0.310943 +0.029995 +0.143920 +0.614959 +0.813561 +0.981853 +0.996084 +0.122204 +0.927361 +0.546812 +0.921351 +0.627126 +0.197555 +0.771302 +0.458371 +0.411399 +0.662608 +0.854622 +0.941192 +0.319580 +0.551214 +0.862080 +-3154350507.220306 +-0.124808 +-0.327722 +0.974150 +0.975539 +0.773084 +0.310235 +0.932863 +0.856928 +0.599778 +0.837401 +0.337757 +0.913561 +0.934537 +0.794740 +0.817058 +0.775846 +0.728647 +0.876989 +0.956679 +0.671845 +0.842550 +0.583682 +0.933136 +0.949348 +0.902432 +0.946037 +0.938689 +0.914220 +0.873121 +0.295067 +0.938043 +0.976829 +0.934915 +0.829220 +0.892323 +0.835078 +0.979167 +0.448351 +0.530783 +0.937713 +0.938164 +0.921111 +0.845578 +0.997874 +0.840375 +0.354254 +0.859749 +0.962083 +0.940223 +0.034197 +0.685335 +0.823918 +0.891857 +0.976363 +0.999067 +0.537632 +0.431534 +-0.115298 +0.566176 +0.229393 +0.963842 +0.698683 +0.289374 +0.123922 +0.969269 +0.451771 +0.719731 +0.809128 +0.413193 +0.233827 +0.470806 +0.811304 +0.725711 +0.762404 +0.840438 +0.314731 +0.418247 +0.703871 +0.413325 +0.824038 +0.667750 +0.922242 +0.856518 +0.880645 +0.291314 +0.992612 +0.749769 +0.964647 +0.462958 +0.310703 +0.181616 +0.965677 +0.936347 +0.585526 +0.802886 +0.322566 +0.321959 +0.715580 +0.569307 +0.840397 +0.776684 +0.596897 +0.379701 +-0.001975 +0.603469 +0.775378 +0.290698 +0.562350 +-0.248292 +0.933282 +-0.008427 +0.824413 +-0.297088 +0.022025 +0.152492 +0.443671 +0.294232 +0.231118 +-2.913964 +0.474681 +0.722637 +0.814942 +0.033651 +0.152387 +0.626220 +0.182803 +0.622679 +0.117129 +0.479953 +0.103015 +0.300286 +0.228770 +0.378384 +0.239807 +0.207243 +0.139838 +0.522050 +0.399228 +0.181038 +0.184558 +0.963308 +0.904399 +0.157762 +0.430740 +0.478739 +0.351158 +0.901213 +0.853876 +0.960655 +0.896983 +0.801011 +0.757347 +0.379100 +0.993361 +0.880218 +0.171259 +0.820124 +0.970900 +0.802623 +0.891383 +0.399571 +0.204312 +0.290301 +0.953032 +0.376397 +0.776052 +0.830446 +0.439794 +0.921702 +0.358021 +0.937430 +0.913456 +0.885867 +0.448247 +-0.400596 +0.824188 +0.064080 +0.505697 +0.360633 +0.538125 +0.815819 +0.716103 +0.634531 +0.976439 +0.840945 +0.875433 +0.228985 +-0.042984 +0.558589 +0.571581 +0.500791 +0.166340 +0.030301 +0.114424 +0.509090 +0.148697 +0.191157 +0.254163 +0.412809 +0.174810 +0.890498 +0.042019 +0.848490 +0.459170 +0.517764 +0.227122 +0.196582 +0.130108 +0.942971 +0.691382 +0.733393 +0.812358 +0.532643 +0.682666 +0.228690 +0.131502 +0.509154 +0.784537 +0.972550 +0.991870 +0.447182 +0.914865 +0.924065 +0.843649 +0.909645 +0.679122 +0.450358 +-0.033360 +0.901813 +0.894485 +0.957307 +0.975175 +0.725697 +0.719549 +0.740470 +0.501330 +0.698562 +-0.071207 +0.729702 +0.373491 +0.804059 +0.573821 +0.345156 +0.521699 +0.704790 +0.550214 +0.473839 +0.938188 +0.517758 +0.172849 +0.624790 +0.716110 +0.804331 +0.281439 +0.502599 +0.547731 +0.794606 +0.858793 +0.814615 +0.888429 +0.721792 +0.389604 +0.703202 +0.503740 +0.796984 +0.928224 +0.917189 +0.675933 +0.710745 +0.776848 +0.658970 +-0.948701 +0.874860 +0.699632 +0.969536 +0.922776 +0.955487 +0.972919 +0.843907 +0.444789 +0.935850 +0.853472 +0.687966 +0.951803 +0.869806 +0.818422 +-0.080904 +0.806516 +0.939024 +0.838690 +0.936865 +0.747591 +0.915718 +0.161471 +0.819593 +0.613765 +0.688983 +0.851594 +0.942934 +0.789455 +0.614336 +0.656188 +0.940728 +0.206950 +0.701577 +0.817064 +0.943890 +0.717053 +0.481223 +0.978283 +0.928718 +0.892875 +0.573202 +0.878576 +0.861171 +0.572075 +0.591980 +0.275721 +0.821739 +0.828212 +-0.426380 +0.490449 +-0.537316 +0.933478 +0.916171 +0.574726 +0.593887 +0.651941 +0.668799 +0.140645 +0.816297 +0.904298 +0.266816 +0.905768 +0.873545 +0.670043 +0.724094 +0.929334 +0.666785 +0.886803 +0.651077 +0.868672 +0.890775 +0.857811 +0.270929 +-0.093777 +0.314695 +0.616388 +0.595739 +0.945465 +0.317979 +-0.143221 +-0.410205 +0.569818 +0.920191 +-0.227917 +0.914572 +0.550593 +0.828559 +0.754272 +0.771293 +-1.253181 +0.118804 +0.083108 +0.117683 +0.851824 +0.547799 +0.060010 +0.108467 +0.182196 +0.006863 +0.212865 +0.173697 +0.229014 +0.417588 +0.273891 +0.228317 +0.560651 +0.646286 +0.649602 +0.442465 +0.086376 +0.100654 +0.341128 +0.379301 +0.394109 +0.176244 +0.980453 +0.282445 +0.113148 +0.050527 +0.166746 +0.519334 +0.433250 +-1.247983 +0.819538 +0.158012 +0.837067 +-1.328506 +0.104310 +0.074822 +0.152158 +0.455460 +0.910113 +0.407338 +0.504576 +0.801444 +0.957628 +0.589043 +0.139479 +0.586801 +0.623360 +0.493404 +0.917968 +0.654807 +0.470028 +0.674921 +0.400307 +-0.229248 +0.587512 +0.635646 +0.620768 +0.449404 +0.159042 +0.646040 +0.793978 +0.060028 +0.725613 +-0.042799 +0.244567 +0.065223 +0.140450 +0.713958 +0.397825 +-0.134761 +0.546558 +0.455556 +0.586011 +0.233989 +0.806946 +0.795332 +0.359308 +0.757806 +0.049341 +0.726396 +0.719271 +0.623550 +0.652942 +0.826247 +-0.490553 +0.840393 +0.655359 +-0.469120 +0.573610 +0.736816 +0.774506 +0.719467 +-0.140430 +-3.358546 +0.527984 +0.895641 +0.837167 +0.655109 +-0.241739 +0.255970 +0.402076 +0.712574 +-5.932923 +0.746145 +0.812359 +0.592433 +0.699918 +0.908395 +0.949669 +0.495422 +0.753300 +0.513039 +0.714792 +0.692363 +0.516140 +0.528732 +0.941779 +0.871678 +0.905337 +0.875491 +0.937813 +0.584022 +0.967581 +0.205180 +0.759575 +-0.429480 +0.808330 +0.606074 +0.945238 +0.671684 +0.542223 +0.637027 +0.559139 +0.903154 +0.427072 +0.877366 +0.867148 +0.856223 +0.908773 +0.862299 +0.501976 +0.879643 +0.752833 +0.785737 +0.865062 +0.800160 +0.922671 +0.333663 +0.835828 +0.927621 +0.930832 +0.809256 +0.685548 +0.882197 +0.669044 +0.798977 +0.883917 +0.379291 +0.973822 +0.263331 +0.299015 +0.947672 +0.197511 +0.706425 +0.493837 +0.835656 +0.949110 +0.637761 +0.544886 +0.386834 +0.652916 +0.836172 +0.656710 +0.763807 +0.671826 +0.617433 +0.927031 +0.966832 +0.474488 +0.736472 +0.401925 +0.193198 +0.448452 +0.478129 +0.571353 +0.139760 +0.007544 +0.595989 +0.795563 +0.728016 +0.679659 +0.819881 +0.632261 +0.391686 +0.702785 +-0.197844 +0.886830 +0.613061 +0.884771 +0.489239 +0.450918 +0.101748 +0.729496 +0.760578 +0.832497 +0.672298 +0.038645 +0.753031 +0.341724 +0.930611 +0.376224 +0.775723 +0.945634 +0.931900 +0.985675 +0.654672 +0.799846 +0.699517 +0.972785 +0.880229 +0.880293 +0.859466 +0.558029 +0.939736 +0.559756 +-4.140245 +0.615607 +0.990491 +0.758119 +0.988678 +-489.381537 +0.932602 +0.932226 +-167.194261 +0.828707 +0.525005 +0.937926 +0.997446 +0.083768 +0.913171 +0.879523 +0.592635 +0.916554 +-0.372771 +0.896035 +0.610088 +-0.104185 +0.729244 +0.714224 +-1.834169 +-0.139636 +0.902876 +0.814491 +0.882233 +0.889105 +0.638167 +0.777515 +0.936593 +0.947476 +0.928194 +0.879540 +0.941312 +0.729588 +0.780694 +0.767745 +0.906618 +0.917559 +0.680532 +0.564473 +0.691567 +0.884430 +0.419086 +0.826435 +0.651398 +0.826627 +-0.217173 +0.646935 +0.516875 +0.454883 +0.581042 +0.733108 +0.595750 +0.901535 +0.338846 +0.799004 +0.780054 +0.899829 +0.943474 +0.970637 +0.903953 +0.046943 +-0.173283 +0.564088 +0.237358 +0.755592 +0.884627 +0.321102 +0.389904 +0.907030 +0.771764 +0.437789 +0.963356 +-0.760648 +0.980658 +0.984052 +0.821241 +0.944768 +0.969928 +0.400196 +0.907057 +0.288727 +0.688448 +0.930207 +0.879648 +0.527532 +0.242569 +0.787543 +0.612355 +0.653108 +0.805540 +0.793382 +0.805718 +0.673859 +-0.042430 +0.877360 +0.756694 +0.755459 +0.806952 +0.895381 +0.717538 +0.824481 +0.752007 +0.689212 +0.770999 +0.867371 +0.201817 +0.150968 +0.731611 +0.255965 +0.750487 +0.804975 +0.898989 +0.515085 +0.663830 +0.363073 +0.854147 +0.876399 +0.470154 +0.648647 +0.655206 +0.480215 +0.230095 +0.483130 +0.772808 +0.175089 +0.999192 +0.830510 +-0.063783 +0.775287 +0.237229 +0.764606 +0.470898 +0.449882 +0.354148 +0.446876 +0.266993 +-0.167454 +0.202848 +0.366478 +0.427114 +0.320223 +0.571238 +0.354192 +0.513591 +0.670977 +0.461136 +0.868269 +0.120454 +0.663780 +0.494302 +0.709500 +0.165147 +0.524907 +0.392338 +0.414738 +0.440948 +0.790517 +0.870762 +0.485758 +0.773751 +0.890341 +0.635000 +0.650368 +0.824644 +0.845851 +-0.064079 +0.267719 +0.679945 +0.655616 +0.540874 +0.916500 +0.845982 +-0.158975 +0.755601 +0.912005 +0.801049 +0.561377 +0.620721 +0.703368 +0.876122 +0.841271 +0.931179 +0.865701 +-0.194726 +0.889694 +0.598796 +-0.180759 +0.910109 +0.713881 +0.631327 +0.277775 +-0.350786 +0.341494 +-0.158419 +-0.188095 +-0.341943 +0.776314 +0.376627 +0.613696 +-0.158545 +0.608428 +-0.117567 +0.501632 +0.480819 +0.820882 +0.500157 +0.752475 +-0.120602 +0.643723 +0.305431 +-0.151678 +0.722159 +0.697505 +0.509902 +0.149423 +0.833934 +0.743633 +0.662575 +0.408408 +0.676815 +-0.040342 +0.398289 +0.373255 +0.735605 +0.663785 +-0.031428 +0.479059 +0.219627 +0.664392 +0.752553 +0.804646 +0.610207 +0.657562 +0.509390 +0.604753 +0.707062 +0.264156 +0.022209 +0.706156 +0.776096 +0.878518 +0.244193 +0.759999 +0.294274 +0.185734 +0.825722 +0.891102 +0.846376 +0.306202 +0.695637 +0.356227 +0.664008 +0.812041 +0.870258 +0.791573 +0.877564 +0.924378 +0.888483 +0.735269 +0.671649 +0.607930 +0.812506 +0.891750 +0.708950 +0.695094 +0.789656 +0.460857 +0.774341 +0.341815 +0.587511 +0.889188 +0.780345 +0.816118 +0.265709 +0.750383 +0.424581 +0.819424 +0.881401 +-0.028963 +0.878844 +0.677766 +0.745231 +0.772196 +0.672932 +0.578469 +0.845220 +0.663027 +0.879370 +-0.291791 +0.797128 +0.363240 +0.862771 +0.481165 +0.353036 +0.859286 +0.000126 +0.428854 +0.347091 +0.523777 +-3.444156 +0.338083 +0.188672 +0.138558 +0.840996 +0.668538 +0.621280 +0.956732 +0.965446 +0.633656 +0.450914 +0.425120 +0.910338 +0.266766 +0.529026 +0.696746 +0.353953 +0.815557 +0.423536 +0.700984 +0.589542 +0.353801 +0.851379 +0.833547 +0.981639 +0.726252 +0.377355 +0.262760 +0.391471 +0.342954 +0.537268 +0.667238 +0.909343 +0.927593 +0.384377 +0.330407 +0.206155 +0.137298 +0.141873 +0.690248 +0.916417 +0.562169 +0.113082 +0.973148 +0.279470 +0.194645 +0.593999 +0.097951 +0.829174 +0.123990 +0.532860 +0.516192 +0.121152 +0.720572 +0.750568 +0.035595 +0.798834 +0.079092 +0.638129 +0.581863 +0.999371 +0.164385 +0.136033 +0.852350 +0.768933 +0.434181 +0.212115 +0.918800 +0.176057 +0.838588 +0.551732 +0.540681 +0.714331 +0.973183 +0.812253 +0.295382 +0.939608 +0.229041 +0.100277 +0.428395 +0.069128 +0.137431 +0.887409 +-0.084287 +-0.083764 +0.047253 +-0.006932 +0.291935 +0.917715 +0.962266 +0.758740 +0.794194 +0.887423 +0.725442 +0.700902 +0.990700 +0.059793 +0.161771 +0.128993 +0.679931 +0.141052 +0.768973 +-0.037369 +0.463923 +0.666216 +-6.770345 +0.131552 +-0.012913 +0.274720 +-0.511437 +0.145961 +0.302614 +0.609208 +-0.815633 +0.276665 +0.173079 +0.198430 +-0.031649 +0.593811 +0.374144 +-1.502976 +-3.525905 +0.368849 +-0.029305 +0.166759 +0.471321 +-8.896129 +0.566224 +0.930291 +0.575852 +0.698165 +0.801083 +0.858280 +0.742211 +0.210533 +0.937124 +0.466931 +0.597316 +0.540636 +0.714846 +0.142435 +0.939555 +0.571713 +0.826961 +0.860471 +0.687384 +0.758807 +0.452980 +0.786003 +0.886627 +0.929999 +0.932430 +-0.267722 +-1.801819 +0.877693 +0.683514 +0.527701 +0.837513 +-0.127534 +0.041075 +0.719077 +-0.234788 +0.975968 +0.837101 +0.809395 +0.794785 +0.662506 +0.589850 +0.150228 +0.918869 +0.596034 +0.449976 +0.454766 +-0.316578 +0.216624 +0.934075 +0.868862 +0.756003 +0.376682 +0.576395 +0.261715 +0.501474 +0.165000 +0.823781 +0.931525 +0.375319 +0.460634 +0.803754 +0.762338 +0.050900 +0.401505 +0.722690 +0.392666 +0.714870 +0.415876 +0.778791 +-51.519200 +0.960141 +0.226208 +0.794199 +0.501821 +0.656838 +0.761453 +0.632436 +0.699676 +0.400311 +0.374508 +0.826995 +0.865641 +0.629380 +0.861777 +0.720679 +0.680247 +0.938532 +0.978419 +0.266027 +0.866176 +0.983269 +0.412053 +0.946456 +0.763921 +0.502109 +0.138478 +0.675914 +0.900151 +0.860745 +0.864799 +0.094836 +0.822434 +0.233365 +0.845244 +0.821452 +0.492295 +0.797349 +0.738087 +0.285211 +0.645109 +0.920335 +0.433164 +0.083024 +0.848326 +0.629700 +0.435193 +0.026725 +0.832429 +0.176133 +0.840425 +0.275960 +0.201213 +0.045879 +0.522545 +0.425672 +0.488445 +0.899688 +0.703380 +0.357449 +0.468934 +0.384176 +0.420817 +0.358641 +0.441340 +0.784249 +0.694276 +-0.143386 +-0.208083 +0.424202 +0.366456 +0.804721 +0.668174 +0.385363 +0.257042 +0.623419 +0.591247 +0.933091 +0.967735 +0.773113 +0.012779 +0.915317 +0.288666 +0.862480 +0.036609 +0.616052 +0.478814 +-0.054251 +0.643072 +0.423040 +0.803319 +0.683811 +0.764333 +0.846376 +0.929358 +0.880797 +0.843191 +0.500385 +0.656137 +0.931441 +0.851377 +0.984330 +0.693851 +0.489191 +0.839407 +0.958458 +-0.062864 +0.823091 +0.886170 +0.425665 +0.326353 +0.846335 +0.764450 +0.682476 +0.610971 +0.993417 +0.876920 +0.662376 +0.931198 +0.796381 +0.719814 +0.654789 +0.904285 +0.891051 +0.716399 +0.877531 +0.898731 +0.933386 +-0.067591 +0.629039 +0.939354 +0.849036 +0.845937 +0.935666 +0.809358 +0.793849 +0.922066 +0.764607 +0.807101 +-0.268435 +0.563186 +-0.028431 +0.829534 +-0.010641 +0.976707 +0.944768 +0.772525 +0.743638 +0.799441 +0.979109 +0.919115 +0.898297 +0.944753 +0.983539 +0.985804 +0.979776 +0.992642 +0.520080 +0.736132 +0.773824 +0.724640 +0.846790 +0.930585 +0.438559 +0.886572 +0.553418 +0.906685 +0.520366 +0.316281 +0.830827 +0.417943 +-0.438439 +0.747939 +0.956345 +0.480037 +0.668908 +0.926434 +0.492404 +0.640353 +0.823913 +0.280974 +0.433023 +0.689097 +0.776386 +0.453943 +0.645464 +0.409748 +0.384543 +0.342985 +0.456121 +-6.731503 +0.879435 +0.795426 +0.704702 +0.651370 +0.878879 +0.930169 +0.870584 +0.135523 +-0.039275 +0.846494 +0.661325 +-761.867424 +0.543828 +0.320086 +0.805752 +0.069573 +0.145952 +0.477492 +0.891613 +0.666925 +0.795260 +0.838515 +0.162755 +-0.064944 +-0.647191 +0.646849 +-0.588206 +0.841095 +0.662105 +-0.516368 +0.745906 +0.149878 +0.355079 +0.777876 +0.674166 +-2406.512553 +-9.608560 +0.993759 +0.976042 +0.648821 +-4.778416 +0.337582 +0.808294 +0.502592 +0.466198 +0.032224 +0.830062 +0.477021 +0.991137 +0.327506 +0.571701 +0.282562 +0.259538 +0.200321 +0.445104 +0.712699 +0.809346 +0.591614 +0.420935 +0.942756 +0.785205 +0.471629 +0.878868 +0.295719 +0.702264 +0.013960 +0.683838 +0.898118 +0.749700 +0.773420 +0.408952 +0.915722 +0.734913 +0.749721 +0.650732 +0.794227 +0.913504 +0.654815 +0.557448 +0.805149 +0.851704 +0.808314 +0.867811 +-0.116327 +0.901812 +0.668048 +0.926245 +0.441969 +0.457974 +0.816563 +0.783739 +0.949788 +0.316067 +0.221267 +0.284574 +0.435543 +0.861209 +0.420388 +0.914823 +0.824431 +0.921028 +0.943977 +0.697388 +0.861502 +0.196627 +0.294429 +0.698418 +0.739081 +0.896436 +0.886529 +0.159551 +0.457431 +-1.208684 +0.478596 +0.712389 +0.929015 +0.939425 +0.961601 +0.852614 +0.911844 +0.662230 +0.884002 +0.647485 +0.491855 +0.661772 +0.645106 +0.905800 +0.348532 +0.565564 +0.932159 +0.542452 +0.460138 +0.699883 +0.445733 +0.547954 +0.875362 +0.275309 +0.350419 +0.689262 +0.934806 +0.870651 +0.375212 +0.737593 +0.271496 +0.935626 +0.737963 +0.478137 +0.946196 +0.293364 +0.408758 +0.848454 +0.698486 +0.920229 +0.746357 +0.344465 +0.558096 +0.882110 +0.389490 +-0.085711 +-0.122844 +0.700025 +0.797924 +0.973206 +0.954739 +0.298820 +0.852413 +0.177916 +0.810905 +0.512021 +0.577922 +0.658459 +0.738566 +0.481358 +0.366162 +0.858338 +0.997481 +0.988067 +-0.156173 +0.758774 +0.930796 +0.883671 +0.362024 +0.380161 +0.829848 +0.550761 +0.990278 +0.640643 +0.814114 +0.749641 +0.990181 +0.821688 +0.273478 +0.931180 +0.852417 +-1.689868 +0.345327 +0.384913 +0.971610 +0.861451 +0.467729 +0.863220 +0.658772 +0.474972 +0.929939 +0.129001 +0.980885 +0.807477 +0.725900 +0.806662 +0.676859 +-0.724925 +0.075280 +0.872899 +0.803488 +0.901225 +0.855796 +0.553224 +0.781506 +0.852230 +0.827179 +0.627243 +0.847728 +0.891230 +0.930593 +0.163510 +0.809374 +0.363937 +0.843071 +0.825259 +0.931139 +0.946720 +0.547420 +0.813744 +0.364403 +-0.050988 +0.541177 +-0.060582 +0.918191 +0.770513 +0.189529 +0.922616 +0.713406 +0.218134 +0.932541 +0.842298 +0.926534 +0.762927 +0.345375 +0.751819 +0.344610 +0.241680 +0.928188 +0.539648 +0.766306 +0.582549 +0.875741 +-0.170790 +0.860427 +0.899585 +0.840352 +0.705990 +-0.078328 +0.868249 +0.789557 +0.593690 +0.708758 +0.892944 +0.931693 +0.995818 +0.688655 +0.939152 +0.801445 +0.752852 +0.974810 +0.609439 +0.965901 +0.433883 +0.828021 +0.830640 +0.581666 +0.688702 +0.891450 +0.708030 +-0.608710 +0.872015 +0.839775 +0.809756 +-0.032385 +0.624394 +0.855552 +0.740416 +0.048296 +0.687754 +0.845891 +0.799954 +0.847243 +0.845176 +0.744727 +0.789156 +0.972825 +0.501582 +0.938908 +0.813743 +0.551885 +0.301917 +0.696444 +0.876237 +0.886783 +0.634867 +-0.373790 +0.419025 +0.001298 +0.249493 +-0.190380 +0.899240 +0.061107 +0.016050 +0.948018 +0.080332 +-106.649533 +0.709879 +0.731783 +0.769509 +0.770756 +0.273576 +0.750995 +0.822923 +0.967516 +0.907138 +0.999639 +0.943274 +0.961866 +0.994534 +0.934224 +0.983277 +0.989830 +0.999702 +0.999410 +0.990049 +0.996887 +0.831830 +-2.875885 +0.477988 +0.449561 +0.703550 +0.878921 +0.620851 +-0.306838 +0.613766 +0.239473 +0.685571 +0.932326 +0.926200 +0.881147 +0.410937 +0.889431 +-3.287913 +-0.926585 +0.564126 +0.635549 +0.714832 +0.799845 +0.773004 +0.088175 +0.461898 +0.560685 +0.464045 +0.563394 +0.662869 +0.338760 +0.755059 +0.338811 +0.472607 +-0.678183 +0.816308 +0.456266 +0.971688 +0.896158 +0.465519 +0.152852 +0.004700 +0.457537 +-0.021541 +0.989985 +0.649205 +0.871157 +0.231287 +0.372070 +-27.566491 +0.329329 +-5.015948 +0.972345 +0.551541 +0.309734 +0.434449 +0.600221 +0.286314 +0.421195 +0.641137 +0.742439 +0.275206 +0.451337 +0.204586 +0.959622 +0.929558 +0.953847 +0.805924 +0.761580 +0.716817 +0.936688 +0.881734 +0.481966 +0.489731 +0.329181 +0.561835 +0.513570 +0.502808 +0.653364 +0.608245 +0.765639 +0.648513 +0.789751 +0.612182 +0.773833 +0.531988 +0.592178 +0.659173 +0.603742 +0.344712 +0.525251 +0.539033 +0.556537 +0.781230 +0.353250 +0.919830 +-0.248425 +0.832609 +0.981352 +0.928266 +0.935587 +0.544797 +0.449512 +-25.720246 +-17.247576 +0.705555 +0.958062 +0.675887 +0.641097 +0.768835 +0.717126 +0.706675 +0.265712 +0.413138 +0.486826 +0.521863 +0.535647 +0.567183 +0.378924 +0.422127 +0.471960 +0.426987 +0.675721 +0.469594 +0.609965 +0.412260 +0.542570 +0.446671 +0.553441 +0.351754 +0.755783 +0.603037 +0.321188 +0.272693 +0.563666 +0.492104 +0.569232 +0.845803 +0.451956 +0.899251 +0.526558 +0.638644 +0.871644 +0.948278 +0.869202 +0.744174 +0.853749 +0.540429 +0.770484 +0.991382 +0.407385 +0.812340 +0.310738 +0.418649 +0.328405 +0.328075 +0.336671 +0.438243 +0.636210 +0.607392 +0.512666 +0.551630 +0.552037 +0.546648 +0.507226 +0.361119 +0.628496 +0.842144 +0.685051 +0.434572 +0.775710 +0.043092 +0.422317 +0.823723 +0.996513 +0.725727 +0.706761 +0.891863 +-64.896341 +0.656268 +0.661321 +0.778977 +-26.323706 +0.399340 +0.897500 +0.390912 +-64.567833 +0.829591 +0.266819 +0.384424 +0.892600 +0.282448 +0.565265 +0.322652 +0.124701 +0.693245 +0.304134 +0.696429 +0.453522 +0.974697 +0.377377 +0.013468 +0.987558 +0.077028 +0.689805 +0.383632 +0.706009 +0.521554 +0.785032 +0.228084 +0.133368 +0.227281 +0.851284 +0.957473 +-0.015611 +0.051299 +0.654852 +0.602404 +0.805192 +0.518531 +0.355266 +0.561995 +0.215857 +0.233768 +0.831595 +0.129911 +0.006442 +0.789079 +0.244202 +0.600489 +0.991242 +0.729921 +0.827654 +0.686294 +0.901020 +0.597708 +0.034488 +0.480175 +0.618045 +0.086491 +0.001358 +0.481670 +0.428651 +0.094791 +0.249880 +0.113037 +0.658748 +-0.389568 +0.651942 +0.146375 +0.255322 +0.945927 +0.953312 +0.814077 +0.705387 +0.895246 +0.589379 +0.582320 +0.772886 +0.762930 +-0.221905 +0.867368 +0.554704 +0.838730 +0.386232 +0.961623 +0.859880 +0.333068 +0.933248 +0.124365 +0.944588 +0.254953 +0.543262 +0.690477 +0.860669 +0.994508 +0.847744 +0.824194 +0.852399 +0.934987 +0.103713 +0.420752 +0.389631 +0.497478 +0.225120 +0.570887 +0.178425 +0.660577 +0.681324 +-0.218681 +0.890671 +0.174751 +0.665630 +0.299167 +0.571570 +0.534347 +0.536930 +0.819070 +0.121934 +0.325728 +0.791559 +-0.618414 +0.674091 +0.763516 +0.891982 +0.465741 +0.883235 +0.931962 +0.974956 +0.632419 +0.773989 +0.456070 +0.931360 +0.755237 +0.839435 +0.715495 +0.390905 +-0.139737 +0.503066 +0.629197 +0.620871 +0.734005 +0.510719 +0.008453 +0.872978 +0.297805 +0.372017 +0.717426 +0.607845 +0.653878 +0.640601 +0.888389 +0.786868 +0.387763 +0.660890 +0.380352 +0.590212 +0.903931 +0.607014 +0.985015 +0.542503 +0.549011 +0.240381 +0.285349 +0.239508 +0.680744 +0.984595 +0.330230 +0.603412 +0.685705 +0.855876 +-7.843683 +0.640767 +0.917808 +0.884190 +0.373527 +-5.726222 +0.321015 +0.950734 +0.250099 +0.525529 +0.947277 +0.343837 +0.289825 +0.925274 +0.947941 +0.720098 +0.855881 +0.927158 +0.906286 +0.197604 +0.900248 +0.934356 +0.808265 +0.951720 +0.931287 +-209.205180 +0.684589 +0.437080 +0.584512 +0.849985 +0.225760 +0.892470 +0.657567 +0.458698 +0.278812 +0.515283 +0.673455 +0.693295 +0.142479 +0.338786 +0.278196 +0.759678 +0.197769 +0.717253 +0.699311 +0.698316 +0.809733 +0.759051 +0.401889 +0.671935 +0.355268 +0.575894 +0.721733 +-0.082605 +0.842925 +0.889890 +0.857498 +-0.238538 +-0.175195 +0.834437 +0.317558 +0.074475 +0.745200 +0.762189 +0.468160 +0.820822 +0.682378 +-0.185035 +0.258065 +0.685882 +0.749202 +-0.309135 +0.788989 +0.721996 +0.746276 +0.806080 +0.833829 +0.611140 +0.795517 +0.688146 +-0.151317 +0.797634 +0.740186 +0.055488 +-0.123571 +0.230389 +0.414664 +0.692956 +0.246148 +-0.629246 +0.802726 +0.873496 +-33.426302 +0.546871 +0.701760 +0.823753 +0.747194 +0.455028 +0.291754 +0.902945 +0.621258 +0.974378 +0.957533 +0.840652 +0.891805 +0.857607 +0.613036 +0.387828 +0.889897 +0.612323 +0.667032 +0.863229 +0.917847 +0.924365 +0.736087 +0.829442 +0.509330 +0.865919 +0.378053 +0.874573 +0.816422 +0.629662 +0.597018 +0.439728 +0.819281 +0.407751 +0.837869 +0.536958 +0.784514 +0.754730 +0.521663 +0.902706 +0.700483 +0.683988 +0.617041 +0.534669 +0.672964 +0.879608 +0.585120 +0.740709 +0.512596 +0.911518 +0.515591 +0.429845 +0.847036 +0.211265 +0.521581 +0.954029 +0.774727 +0.641956 +0.818541 +0.784697 +0.523688 +0.646378 +0.488090 +0.364383 +0.530510 +0.663709 +0.453413 +0.551841 +0.645654 +0.926084 +0.897914 +0.605503 +0.511725 +0.991348 +0.898050 +0.986387 +0.962914 +0.894030 +0.473302 +0.454573 +0.083926 +0.853936 +0.953178 +0.725599 +0.934213 +0.870277 +-0.076775 +0.684694 +0.590734 +0.422640 +0.915913 +0.752853 +0.739094 +0.889034 +0.807005 +0.783339 +0.672623 +0.544498 +0.737190 +0.905703 +0.736194 +0.927543 +0.531495 +0.860367 +0.786307 +0.925943 +0.822848 +0.619301 +0.727835 +0.850373 +0.893791 +0.793559 +0.435134 +0.877077 +0.837422 +0.900822 +0.549024 +0.937775 +0.881554 +0.922469 +0.791693 +0.882188 +0.484610 +0.769247 +-0.272364 +0.666983 +0.843281 +0.942363 +0.848427 +0.924555 +0.944087 +0.659690 +0.688816 +0.916407 +0.929035 +0.274012 +0.832006 +0.845710 +0.688133 +0.937144 +-0.146049 +0.527163 +0.073262 +0.386552 +0.218963 +0.960424 +0.853849 +0.822751 +0.821587 +0.749068 +0.558023 +0.831830 +0.962642 +0.689005 +0.995471 +0.885015 +-0.158452 +0.774189 +0.481208 +0.790771 +0.162824 +0.721824 +0.132160 +0.396540 +0.121826 +0.875694 +-0.061684 +0.235297 +0.059524 +0.009132 +0.081901 +0.995887 +0.262632 +0.419112 +0.157502 +0.390448 +0.519267 +0.718755 +0.266744 +0.180606 +0.612583 +0.645844 +0.902238 +0.199842 +0.974645 +0.552790 +0.835740 +0.979403 +0.761104 +0.784674 +0.897160 +0.425080 +-0.976430 +0.817883 +0.348848 +0.167660 +0.946121 +0.943317 +0.915871 +0.956875 +0.741097 +0.237326 +0.469200 +0.899747 +0.751299 +0.763373 +0.203732 +0.335586 +0.131592 +0.509078 +0.513690 +0.465237 +0.844709 +0.354728 +0.307142 +0.649895 +0.652000 +0.572283 +0.905085 +0.107836 +-0.301635 +0.963629 +0.712981 +0.751058 +0.516873 +0.649793 +0.428199 +0.843899 +0.104146 +0.809407 +0.901753 +0.519424 +0.630435 +0.479425 +0.124103 +-0.814587 +0.521991 +0.915621 +0.832813 +0.357505 +0.323833 +0.583399 +0.567559 +-0.175787 +0.677049 +0.599833 +0.615687 +0.980984 +0.332319 +0.546139 +0.302798 +0.741006 +0.545804 +0.266789 +0.325645 +0.501709 +0.941809 +0.747646 +0.829276 +0.325131 +0.940550 +0.033372 +0.863503 +0.566944 +0.875992 +0.405474 +0.228077 +0.388691 +0.910486 +0.326421 +0.443467 +0.632100 +0.698462 +0.936381 +0.650238 +0.671802 +0.263181 +0.943013 +0.430707 +0.424601 +0.822382 +0.478547 +0.862835 +0.840546 +0.928706 +0.385743 +0.326163 +0.382468 +0.170884 +0.400786 +0.658145 +0.860981 +0.288096 +0.914711 +0.846376 +0.604228 +0.846331 +0.524348 +0.714100 +0.854225 +0.123748 +0.843362 +0.843362 +0.923464 +0.993318 +0.613783 +0.677602 +0.365621 +0.639833 +0.880907 +0.480300 +0.647954 +0.924517 +-0.057494 +0.847457 +0.664112 +-0.225921 +0.640546 +0.864609 +0.897562 +0.538751 +0.488464 +0.596284 +0.947448 +0.794002 +0.830728 +0.999383 +0.928238 +0.985055 +0.419833 +-0.020585 +0.887274 +0.941140 +0.962377 +0.276525 +0.878512 +0.845987 +0.799021 +0.737129 +0.606829 +0.927566 +0.889311 +0.486820 +0.798091 +0.864975 +0.953690 +0.595350 +0.780385 +0.707205 +0.679248 +0.411178 +0.839305 +0.483196 +-0.057434 +-0.089874 +0.137654 +-0.061034 +0.514414 +0.760544 +0.489045 +0.729255 +0.756377 +0.328362 +0.172684 +-0.042674 +-0.904132 +0.984960 +0.441601 +0.896810 +-0.770693 +0.381049 +0.708411 +0.635577 +0.937597 +0.724118 +0.878120 +0.485548 +0.143410 +0.852774 +0.661686 +0.757280 +0.969474 +0.407706 +0.422272 +0.629248 +0.964176 +0.612296 +0.874877 +0.694054 +0.412526 +0.997082 +0.985299 +0.948583 +0.720448 +0.432604 +0.669072 +0.798247 +0.948513 +0.543891 +0.547371 +0.637797 +0.896862 +0.742077 +0.934661 +0.746702 +0.339226 +0.408823 +0.243664 +0.502783 +0.761463 +0.724947 +0.503247 +0.483916 +0.240138 +0.026405 +0.466423 +0.239933 +0.555729 +0.684684 +0.891971 +0.933050 +0.925003 +0.929744 +0.655722 +0.888835 +0.797727 +0.910116 +0.641799 +0.893244 +0.992956 +0.586191 +0.424299 +0.709937 +0.038441 +0.987804 +0.627310 +0.953415 +0.299990 +0.587589 +0.770530 +0.981725 +0.604700 +0.921812 +0.937312 +0.659315 +0.748987 +0.542147 +0.970291 +0.972162 +0.510269 +0.505494 +0.480688 +0.679645 +-39.563699 +0.823640 +0.747548 +0.806614 +0.941968 +0.322297 +-0.393065 +0.792945 +-2.077474 +0.810039 +0.834927 +0.430293 +0.192638 +0.506772 +0.998430 +0.336878 +0.839250 +0.779424 +0.348813 +0.667038 +0.995787 +0.604355 +0.758477 +0.400574 +0.370737 +0.903940 +0.644727 +0.840749 +0.791201 +0.845926 +0.530646 +0.967815 +0.468477 +0.433316 +0.596375 +0.788977 +0.174657 +0.484179 +0.191418 +0.696477 +0.476821 +0.457113 +0.578675 +0.623553 +0.707348 +0.405584 +0.849414 +-0.287923 +0.912997 +-0.310356 +-0.297794 +0.357596 +0.727943 +0.923313 +0.829153 +0.676271 +0.543463 +0.819126 +-0.077350 +0.780423 +0.664632 +0.807840 +-0.018922 +0.392021 +0.678913 +0.844094 +0.761337 +0.832562 +-0.145266 +0.622226 +0.180593 +0.698380 +-0.334398 +0.567958 +0.537464 +-0.117126 +0.931609 +-0.195841 +0.905874 +0.601429 +0.792372 +0.036861 +0.844458 +0.864358 +0.905398 +0.475344 +0.559608 +0.840119 +0.940811 +0.512272 +-0.242207 +0.914229 +0.516566 +0.850429 +0.631831 +0.849237 +0.838858 +0.819690 +0.655043 +0.837823 +0.915959 +0.866676 +0.932497 +0.844285 +0.636034 +0.598578 +0.742248 +0.490961 +0.818274 +0.781585 +0.907358 +0.798279 +0.921186 +0.777229 +0.785778 +0.833036 +0.857136 +0.701039 +0.937955 +0.584231 +-0.247126 +0.899921 +0.874516 +-0.000248 +0.954213 +0.099290 +0.631486 +0.926437 +0.696691 +-1.265384 +0.579837 +0.713671 +0.971279 +0.890391 +0.844234 +0.651079 +0.463163 +0.446717 +-18.675502 +0.794316 +0.491692 +0.883547 +0.727559 +0.327223 +0.890443 +0.857726 +0.754682 +0.438439 +0.415323 +0.592766 +0.838728 +0.888810 +0.282290 +-178.759732 +0.541762 +0.026181 +0.944507 +0.754993 +0.824418 +0.986033 +0.897945 +0.694872 +-0.029045 +0.804247 +0.828252 +0.220419 +0.800788 +0.743221 +0.293760 +0.811592 +0.054525 +0.668816 +0.504571 +0.763031 +0.614161 +0.767786 +0.614768 +0.929016 +0.363384 +0.320069 +0.545423 +0.623698 +0.437185 +-0.220041 +0.211781 +0.367389 +0.765723 +0.367343 +0.673674 +0.803844 +0.709879 +0.909578 +-0.064329 +0.127221 +0.839396 +0.704837 +-0.165006 +0.897966 +0.768547 +0.925498 +0.230749 +0.699982 +0.383578 +0.677845 +0.757941 +0.639653 +0.877796 +0.925106 +0.501282 +0.352814 +0.684724 +-0.052716 +0.735496 +-0.073927 +0.668891 +0.647098 +0.750277 +0.436997 +0.771052 +0.809658 +0.678083 +0.808195 +0.005600 +0.976218 +0.632037 +0.846936 +0.636438 +0.879646 +-0.170923 +-0.185674 +0.735888 +0.760302 +0.775790 +0.778469 +0.681435 +0.475966 +0.174881 +0.761775 +0.918845 +0.566781 +0.703480 +0.860643 +0.021940 +0.810574 +0.709454 +0.726975 +0.740065 +0.742484 +0.747483 +0.832838 +0.838637 +0.784387 +0.719268 +0.706692 +0.771555 +0.860778 +-0.231396 +0.000080 +0.447249 +-0.072426 +-0.217776 +0.476185 +0.616202 +0.500196 +0.682622 +0.246578 +0.434421 +0.537222 +0.831175 +0.839677 +0.500252 +0.863099 +0.979116 +0.596510 +0.172122 +0.002155 +0.759212 +0.701577 +0.911572 +0.868953 +0.384445 +0.681469 +0.076718 +0.398313 +0.802389 +0.976990 +0.718817 +0.716488 +0.751438 +0.807291 +0.381681 +0.842503 +0.549362 +0.961822 +0.733455 +0.927106 +0.784401 +0.079676 +0.710196 +0.789325 +0.447181 +0.649613 +0.505592 +0.591468 +0.262401 +0.626105 +0.592744 +0.425768 +0.228673 +0.282075 +0.643687 +0.518974 +0.699714 +0.835880 +0.929937 +0.911179 +0.898852 +0.389669 +0.620163 +0.442254 +0.677429 +0.527445 +0.335498 +0.815174 +0.404288 +0.757380 +0.416825 +0.843764 +0.900333 +0.833261 +0.630504 +0.858532 +0.821365 +0.637741 +0.765380 +0.922251 +0.943554 +0.707062 +0.685261 +0.730181 +0.613495 +0.775197 +0.870316 +0.643973 +0.592573 +0.325784 +0.900094 +0.694759 +0.942350 +0.870651 +0.888875 +0.688195 +0.887099 +0.862763 +0.789051 +0.720367 +0.731265 +0.283129 +-0.303820 +0.852257 +0.910809 +0.503649 +0.615591 +0.476707 +0.685620 +0.866817 +-0.337375 +-0.331127 +0.296617 +0.804090 +0.298906 +0.846311 +0.497093 +0.935267 +0.933568 +0.907942 +0.705601 +0.746504 +0.604388 +0.371058 +0.815197 +0.845656 +0.543082 +0.969862 +0.717101 +0.487357 +0.854802 +0.793662 +0.728143 +0.692900 +0.751434 +0.516607 +-0.111212 +0.835359 +-0.057286 +0.747582 +0.657426 +0.755354 +0.849866 +0.664199 +0.724203 +0.804365 +0.797279 +0.636597 +0.697847 +0.533786 +0.829226 +0.746658 +0.899643 +0.830347 +0.347865 +0.678391 +0.908552 +0.121930 +0.301158 +0.212042 +0.894458 +0.625236 +0.383866 +0.695036 +0.247378 +0.471343 +0.945792 +0.346655 +0.948391 +0.928255 +0.911461 +0.115145 +0.470907 +0.939493 +0.632162 +0.933947 +0.760157 +0.554051 +0.518333 +0.579314 +0.422456 +0.613505 +0.729933 +0.362214 +0.452325 +0.876162 +0.493995 +0.344801 +0.653688 +0.623679 +0.743276 +0.700594 +0.833267 +0.934538 +-0.528337 +0.693290 +0.801494 +0.707230 +0.775617 +0.548769 +0.210499 +0.454238 +0.824728 +0.665703 +0.521740 +0.798229 +0.790702 +0.935440 +0.680665 +0.577205 +0.484178 +0.845047 +0.890443 +0.820963 +0.600124 +0.582143 +0.524550 +0.426344 +0.665400 +0.295665 +0.240147 +0.473598 +-0.500972 +0.926821 +0.269239 +0.471187 +0.358135 +0.685709 +0.696434 +0.509557 +0.895678 +0.932244 +0.687185 +0.256944 +0.762989 +0.304301 +0.798681 +0.888934 +0.186528 +0.945783 +0.906449 +0.713131 +0.273815 +0.186080 +0.868500 +0.386061 +0.357724 +0.890495 +0.979006 +0.890286 +0.673018 +0.587959 +0.474792 +0.883520 +0.300527 +0.565787 +0.331283 +0.898635 +0.422874 +0.891740 +0.909211 +0.741226 +0.737743 +0.728243 +0.948719 +0.597849 +0.924647 +0.426190 +0.756688 +0.968193 +-0.676348 +0.582368 +0.998463 +0.978864 +0.863926 +0.567935 +0.950895 +0.292690 +0.118139 +0.913117 +0.927410 +0.765992 +0.403205 +0.762917 +0.866010 +0.831815 +0.637893 +0.312728 +0.560555 +0.520185 +0.847705 +0.470614 +0.885834 +0.848083 +0.936418 +0.792231 +0.656209 +0.824626 +0.874500 +0.457136 +0.913454 +0.898058 +0.842945 +0.752296 +0.638616 +0.662459 +0.422984 +0.772303 +0.969490 +0.946196 +0.947748 +0.626792 +0.459594 +0.257787 +0.529229 +0.709259 +0.885873 +0.531403 +0.826850 +0.865222 +0.351229 +0.632522 +0.323141 +0.307321 +0.853745 +0.889555 +0.075803 +0.717945 +0.695553 +0.934478 +0.307911 +0.882048 +0.859381 +0.856369 +0.674540 +0.577459 +0.589858 +0.328222 +0.814893 +0.555568 +0.484669 +0.460061 +0.696126 +0.150943 +0.284623 +0.850078 +0.193078 +-0.632815 +0.402327 +0.872790 +0.630309 +0.632002 +0.428155 +0.847292 +0.055700 +0.721550 +0.715525 +0.624615 +0.866719 +0.898374 +0.554611 +0.355903 +0.527761 +0.911443 +0.361281 +0.621468 +0.526358 +0.658105 +0.465871 +0.733064 +0.548088 +0.750706 +0.923018 +0.706374 +0.939152 +0.766841 +0.950222 +0.978189 +0.794282 +0.744007 +0.855705 +0.508581 +0.735304 +0.259918 +0.796497 +0.346489 +0.739764 +0.450696 +0.852476 +0.374623 +0.295395 +0.864160 +0.957337 +0.879586 +0.721115 +0.873282 +0.829640 +0.352267 +0.773587 +0.811582 +0.834501 +0.358986 +0.408320 +0.914723 +0.718574 +0.626491 +0.803880 +0.843892 +0.764610 +0.794870 +0.804892 +0.310067 +0.355382 +0.317318 +0.936852 +0.850743 +0.169210 +0.740893 +-0.306033 +0.931205 +0.771483 +0.766458 +0.507291 +0.902281 +0.086211 +0.727015 +-0.004566 +0.862918 +0.162460 +0.370639 +0.591653 +0.547795 +0.363313 +0.434245 +0.400914 +0.550364 +0.574499 +0.649461 +0.846009 +0.842977 +0.454806 +0.828896 +0.492307 +0.660527 +0.685527 +0.431061 +0.839463 +0.855107 +0.608773 +0.652581 +0.933858 +0.184815 +0.387159 +0.376752 +0.680072 +0.744069 +0.799274 +0.550783 +0.846073 +0.749569 +0.525512 +-0.036307 +0.738992 +0.814790 +0.764435 +0.931340 +0.341246 +0.600721 +0.226930 +0.674753 +0.851828 +0.906086 +0.929333 +0.774719 +0.734612 +0.635585 +0.565149 +0.720811 +0.796592 +0.480950 +0.723191 +0.637822 +0.597926 +0.618051 +0.419157 +0.958407 +0.707008 +0.804264 +-0.466220 +0.205450 +0.048742 +0.750938 +0.351320 +0.172808 +0.733973 +0.460350 +0.870904 +0.687747 +0.881308 +0.776634 +0.546418 +0.998786 +-0.142316 +0.679518 +0.909348 +0.636442 +0.941030 +0.987529 +0.813069 +0.776433 +0.008504 +0.801688 +0.416559 +0.462260 +0.779424 +0.322495 +0.614968 +0.635336 +0.197980 +0.711985 +0.476681 +0.966509 +-0.348348 +-0.166997 +0.051914 +0.173624 +0.145960 +0.392615 +0.379715 +0.886750 +0.571728 +0.833386 +0.285250 +0.816412 +0.516026 +-0.284417 +0.446093 +0.369657 +0.076016 +0.056239 +0.878341 +-0.286343 +0.376009 +0.609824 +0.259910 +0.528033 +0.071723 +0.940013 +0.543590 +-0.288689 +0.893558 +0.830064 +0.107723 +0.718988 +0.480198 +0.674430 +0.910766 +0.754001 +0.871533 +0.824145 +0.855779 +0.928619 +0.692935 +0.600120 +0.394432 +0.533898 +-0.056114 +0.894535 +0.867009 +0.729582 +0.993391 +0.893414 +0.857279 +0.432353 +0.206156 +-0.162465 +0.848266 +0.141780 +0.422712 +-0.033730 +0.195047 +-0.279157 +0.834448 +0.901148 +0.912913 +0.811321 +0.625571 +-0.259524 +0.868313 +0.398328 +0.678287 +0.679931 +0.164716 +0.931734 +0.692582 +0.255424 +0.599788 +0.850660 +0.339337 +0.936053 +0.357161 +0.466200 +0.933399 +0.651988 +0.827296 +0.182419 +0.640019 +0.251195 +0.614647 +0.931384 +0.373139 +0.827729 +0.518212 +0.265430 +0.551029 +0.277162 +0.760843 +-0.242978 +0.474392 +-0.272679 +-0.101725 +0.907391 +0.470804 +0.778818 +0.932413 +0.634352 +0.681900 +0.852289 +0.597086 +0.518816 +0.803842 +0.769244 +-0.075835 +0.906695 +0.765618 +0.848294 +0.638587 +-0.197061 +0.710630 +0.970412 +0.948910 +0.881288 +0.972308 +0.926503 +0.807228 +-0.229775 +-0.774501 +0.515996 +0.015536 +-0.365406 +0.875582 +0.785308 +0.907573 +0.510435 +0.883747 +0.740227 +0.722504 +0.474611 +0.429627 +-0.059403 +0.839137 +0.821160 +0.678830 +0.299174 +0.582486 +0.921121 +0.583675 +-0.270821 +0.917053 +0.849600 +-0.036706 +0.488603 +0.320398 +0.654516 +0.357292 +-0.255207 +0.399301 +0.656555 +0.722590 +0.822123 +0.791103 +0.844560 +-0.593694 +-0.585064 +-0.821130 +0.508904 +0.840892 +-0.629765 +0.880509 +0.500436 +0.057025 +0.415323 +0.197240 +0.021472 +0.894709 +0.349949 +0.349949 +0.512152 +0.927430 +0.307777 +0.058969 +0.690409 +0.456832 +0.675748 +0.293298 +-0.217701 +0.849759 +0.267931 +-0.162530 +0.199995 +0.080171 +0.163359 +0.686932 +0.351543 +0.199174 +0.833608 +-0.078293 +0.641114 +0.479059 +0.476210 +0.322390 +0.398764 +0.251958 +0.610941 +0.014293 +-0.265905 +-0.250199 +0.630176 +0.851577 +0.507986 +0.777725 +0.648901 +0.754520 +0.932861 +0.946355 +-4.951629 +0.509580 +0.321031 +0.789008 +0.891425 +0.603480 +0.938495 +0.865178 +0.778048 +0.186530 +0.425807 +0.848558 +0.508754 +0.548983 +0.940675 +0.484407 +0.945484 +0.497603 +0.385870 +0.955791 +0.881067 +0.749515 +0.770095 +0.768256 +0.932007 +0.467841 +0.938373 +0.672127 +0.735843 +0.514732 +0.852639 +0.516769 +0.700254 +0.896844 +0.889269 +0.718108 +0.423510 +0.919114 +0.469604 +0.774757 +0.854187 +0.793243 +0.860895 +0.922636 +0.564741 +0.872908 +0.954621 +0.546198 +0.823961 +0.517164 +0.952217 +0.437777 +0.509395 +0.634937 +0.590864 +0.434316 +0.293556 +0.781164 +0.568780 +0.733350 +0.561511 +0.784241 +0.370862 +0.737932 +0.435316 +0.205762 +-0.243864 +0.838196 +0.694930 +0.233843 +0.460696 +0.940130 +0.812596 +0.653277 +0.227601 +0.404957 +0.981739 +0.701884 +0.703603 +0.855342 +0.620325 +0.740701 +0.611432 +0.766367 +0.726224 +0.650414 +-0.237297 +0.717025 +0.608331 +0.250308 +0.729995 +-0.429537 +-0.229109 +-0.213242 +0.467942 +0.750535 +0.741617 +0.844080 +0.925286 +0.755708 +0.892622 +0.211084 +-0.306933 +0.936861 +0.554592 +0.925647 +0.600572 +-0.271393 +-0.263926 +0.185078 +0.761968 +0.736159 +0.876066 +0.050382 +0.129606 +0.631565 +0.099117 +0.845792 +0.864362 +-0.266931 +-0.218335 +0.007913 +0.859617 +-0.291174 +0.296518 +0.571250 +0.675351 +0.312809 +0.471318 +0.626944 +-1.155246 +0.793436 +0.318643 +0.002052 +0.843583 +0.750185 +0.493508 +0.731431 +0.857724 +0.778042 +0.704617 +0.199342 +0.468350 +0.619131 +0.564117 +0.855913 +0.931486 +0.165198 +0.651410 +0.763610 +0.778656 +0.962246 +-0.120593 +0.415402 +0.535108 +0.707383 +0.806468 +0.817997 +0.677999 +0.524573 +0.631031 +0.094608 +0.548573 +0.948097 +0.923809 +0.582866 +0.715719 +0.676212 +0.547660 +0.645609 +0.697154 +0.588774 +0.735844 +0.737283 +0.876055 +0.148485 +0.714859 +0.979754 +0.618765 +0.864966 +0.938295 +0.959371 +0.853114 +0.240802 +0.657085 +-67.687170 +0.741491 +0.768094 +-0.191284 +-0.090858 +0.518758 +0.706875 +0.450894 +0.255659 +0.803220 +-0.264827 +0.463887 +0.732135 +-0.092368 +0.589325 +0.778824 +0.687906 +0.076357 +0.792887 +0.026383 +-0.227567 +0.477827 +0.481631 +0.520452 +0.241201 +0.390182 +0.791144 +0.693686 +0.757106 +0.507971 +0.544719 +0.867917 +0.681244 +0.874436 +0.738020 +0.634080 +0.977799 +0.678745 +-0.294325 +0.568598 +-0.298909 +0.224159 +0.598428 +0.786882 +0.526964 +0.488166 +0.843568 +0.930081 +0.512901 +0.290712 +0.680446 +0.926179 +-0.040713 +0.520211 +0.796953 +0.841428 +0.720052 +0.506891 +0.474622 +-0.267540 +0.487598 +0.648295 +0.458859 +0.624571 +0.415827 +0.740962 +0.626480 +0.489893 +0.788860 +0.879662 +0.446504 +0.954509 +0.935564 +0.929566 +0.937247 +0.935544 +0.757528 +0.451998 +0.628112 +0.843275 +0.656059 +0.814305 +0.488172 +0.974967 +0.965433 +0.663834 +0.905151 +0.824775 +0.696143 +0.830351 +0.212290 +0.436904 +0.604056 +0.905114 +0.809782 +0.893581 +0.806158 +0.572261 +0.802022 +0.941035 +0.545494 +0.404799 +0.792868 +0.875602 +0.880354 +0.417887 +0.778369 +0.490523 +0.945424 +0.917854 +0.913815 +0.379605 +0.947773 +0.811695 +0.582356 +0.854164 +0.812726 +0.585903 +0.936663 +0.700279 +0.758009 +0.931171 +0.877359 +0.902037 +0.469845 +0.481253 +0.645545 +0.003224 +0.648569 +0.923666 +0.773980 +0.518386 +0.876888 +0.417997 +-0.018115 +0.802747 +0.929753 +0.926230 +0.452999 +0.530715 +0.458275 +0.362999 +0.684089 +0.000634 +0.491894 +0.825106 +0.512175 +0.458824 +0.574523 +0.942755 +0.950554 +0.822466 +0.678398 +0.892093 +0.629384 +0.756281 +0.833193 +0.672948 +0.960193 +-0.127636 +0.942246 +0.947936 +0.550964 +0.575418 +0.546962 +0.946842 +0.937412 +0.935885 +0.259208 +0.921042 +0.774876 +0.962403 +0.931870 +0.876614 +0.289773 +0.604053 +0.769685 +0.672545 +0.895576 +0.475216 +0.697188 +0.727924 +0.934345 +0.866409 +0.674048 +0.850990 +0.555065 +0.571379 +0.938340 +0.770708 +0.929072 +0.767690 +0.824836 +0.739743 +0.316541 +0.400732 +0.767871 +0.205202 +0.269809 +0.474454 +0.748646 +0.938599 +0.921279 +0.812417 +0.932699 +0.944658 +0.966992 +0.649921 +0.477881 +0.806751 +0.692216 +0.921298 +0.363268 +0.159059 +0.679306 +0.787107 +0.637675 +-0.152948 +0.429966 +0.646311 +0.848576 +0.771754 +0.462592 +0.847473 +0.897474 +0.698893 +0.551687 +0.868918 +-0.237993 +0.692983 +0.730500 +-2.680882 +0.904993 +-0.258086 +0.594637 +0.601699 +0.770254 +0.753332 +0.603100 +0.417472 +-0.310917 +0.821946 +0.486050 +0.328318 +0.871846 +-0.397862 +0.544883 +0.540652 +0.757369 +0.600241 +0.899553 +0.687455 +0.597427 +0.352359 +0.738656 +0.218162 +0.659964 +0.742932 +0.335303 +0.644265 +0.116394 +0.328531 +0.563823 +0.264405 +-0.362407 +0.802177 +0.036333 +0.959239 +0.244963 +0.605038 +0.924850 +0.806994 +-0.228111 +0.813983 +0.856619 +0.915083 +0.883698 +-0.964035 +-0.276702 +0.807680 +0.891988 +0.842133 +0.823150 +0.775200 +0.902272 +-0.489286 +0.788976 +0.847703 +0.729811 +0.265271 +0.943707 +0.785308 +0.230244 +0.071770 +0.372914 +0.160664 +0.194449 +0.832652 +0.751248 +0.185551 +-0.320119 +0.095926 +0.828785 +0.567817 +0.715135 +0.520371 +0.039244 +0.120457 +0.359104 +0.837173 +0.013959 +0.921771 +0.526311 +0.371618 +0.538759 +0.614968 +0.856609 +0.061495 +0.878135 +0.870369 +0.872158 +0.362341 +0.527875 +-0.115512 +-584.559423 +0.406074 +0.936940 +0.875443 +0.859474 +0.707056 +0.322105 +0.648950 +0.846559 +0.838896 +0.267968 +0.842780 +0.358015 +0.881805 +0.693752 +0.982534 +0.854591 +0.950006 +0.898052 +0.409059 +0.870537 +0.944464 +0.353292 +0.649029 +0.357898 +0.908074 +0.818842 +0.426429 +0.625441 +0.948769 +0.681284 +0.802550 +0.256101 +0.709807 +0.822473 +0.659109 +0.697760 +0.780761 +0.650797 +0.832692 +0.518236 +0.928946 +0.797421 +0.762413 +0.696370 +0.925576 +0.921713 +-0.174363 +0.706669 +0.678037 +0.825266 +0.968897 +0.513131 +0.833109 +0.662098 +0.631635 +0.778473 +0.978738 +0.637954 +0.738850 +0.379346 +0.719348 +0.998660 +0.558832 +0.531092 +0.617043 +0.738168 +0.523430 +0.941672 +0.755032 +0.924443 +0.787829 +0.749968 +0.937960 +0.501448 +0.607989 +0.924969 +0.221282 +0.690171 +0.930609 +0.548017 +0.493841 +-5.396858 +0.552361 +0.801671 +0.804445 +0.827426 +0.385847 +-0.302844 +0.478671 +0.902496 +0.692454 +0.394484 +0.885864 +-1.223801 +0.395353 +-0.055165 +0.856777 +-0.451669 +0.051944 +0.314017 +0.952503 +-0.152232 +0.855123 +0.512284 +0.771570 +0.755316 +0.843791 +0.907074 +0.868156 +0.450565 +0.444231 +0.152331 +-0.083877 +0.315273 +0.385910 +0.201004 +0.868431 +0.386132 +0.917203 +-0.078271 +0.612194 +-0.101801 +0.194950 +0.863138 +0.823467 +0.683693 +0.931375 +0.859857 +0.583605 +0.645102 +0.953167 +0.936858 +0.425049 +0.821084 +0.378081 +0.510923 +0.476716 +0.688951 +0.868012 +0.598427 +0.903853 +0.917207 +0.909578 +0.822608 +0.582609 +0.623128 +0.753104 +0.720786 +0.970384 +0.467783 +0.121165 +0.835645 +0.414147 +0.326441 +0.837804 +-0.187705 +0.559662 +-0.050690 +0.846008 +0.697092 +0.505890 +0.040133 +0.522111 +0.920296 +0.514612 +0.725510 +0.483167 +-190.411902 +0.635506 +0.643529 +0.208211 +0.841935 +-0.193769 +0.853357 +-0.312651 +0.501270 +0.845664 +-0.214153 +0.496455 +0.293345 +0.426412 +0.557743 +0.538559 +0.660225 +0.918308 +0.720835 +0.614267 +-0.043300 +0.884959 +0.739976 +-0.747133 +-0.216613 +0.732623 +0.724398 +0.661408 +0.903653 +0.607961 +-0.185051 +0.404673 +0.270418 +-0.298544 +0.405199 +0.393630 +0.759251 +0.761561 +0.585565 +0.896034 +0.872587 +0.187296 +0.404365 +0.878815 +0.972040 +0.594265 +0.237867 +0.676593 +0.548359 +0.808217 +0.808724 +0.640730 +0.401584 +0.602520 +0.735193 +0.388053 +0.466184 +0.866815 +0.710804 +0.384043 +0.716832 +0.928666 +0.815503 +0.365402 +0.550355 +0.943663 +0.618033 +0.814734 +0.862615 +0.627871 +0.937428 +0.707647 +-0.056386 +0.027679 +0.153049 +0.007071 +0.494265 +-0.164347 +0.301101 +0.706860 +0.743072 +0.838358 +0.615797 +0.773937 +0.350778 +0.689210 +-0.845853 +0.288475 +0.551394 +0.742897 +0.661421 +0.255048 +0.124169 +0.910888 +0.863728 +0.995553 +-1.053141 +0.926482 +0.711488 +0.631985 +0.255452 +-0.179244 +0.594331 +0.381048 +0.383429 +0.702043 +0.929419 +0.447706 +0.675447 +0.730686 +-1.538501 +0.549755 +0.552924 +0.638866 +-0.257423 +0.310407 +0.649198 +0.682595 +0.371835 +0.724561 +0.802556 +-0.063295 +0.113069 +0.932052 +0.487895 +0.720576 +0.676350 +0.331871 +0.862821 +0.945102 +0.934410 +0.813221 +0.885849 +0.140492 +-0.326868 +0.885804 +0.895348 +0.714207 +0.462938 +0.666804 +0.882570 +0.816496 +0.546131 +-0.039288 +0.500837 +-0.242777 +0.934764 +0.735469 +0.656147 +0.422526 +0.881278 +0.436380 +0.555533 +0.608305 +0.865700 +0.614492 +0.538437 +0.734099 +0.506159 +0.839062 +0.860736 +0.795407 +0.744935 +0.329272 +0.364033 +0.865315 +0.740325 +0.906406 +0.694223 +0.895394 +0.797105 +0.740623 +0.549766 +-0.189462 +0.758048 +0.680989 +0.636354 +0.793102 +0.562703 +0.921051 +0.714419 +0.527749 +-0.205908 +0.547068 +0.490916 +0.771323 +0.392674 +0.926715 +0.756960 +0.759927 +0.829335 +0.920741 +-0.101124 +0.727002 +0.858094 +0.709885 +0.771950 +0.856054 +0.619257 +0.556729 +0.588424 +0.731544 +0.020151 +0.674688 +0.917609 +0.877743 +-0.199926 +0.779653 +0.382946 +0.711873 +0.838768 +0.539481 +0.894328 +0.969413 +0.963913 +0.115708 +0.937861 +0.770641 +0.977216 +0.987959 +0.990680 +0.909035 +0.976862 +0.939266 +0.814469 +0.937806 +0.661247 +0.837603 +0.862775 +0.823021 +0.469505 +0.766178 +0.656411 +0.589058 +0.038299 +0.579316 +0.547877 +0.193309 +0.546707 +-0.023681 +0.628387 +0.313433 +-0.455181 +0.924625 +0.236293 +0.509098 +0.934773 +0.940672 +0.898863 +0.846628 +0.576582 +0.972182 +0.877323 +0.901223 +0.930104 +0.133054 +0.817071 +0.937316 +0.861336 +0.499723 +-0.989554 +0.873980 +0.865269 +0.937608 +0.925462 +0.978341 +0.915724 +-0.049087 +0.899489 +0.628712 +0.860997 +0.938676 +0.405934 +0.729285 +0.841516 +0.621644 +0.440377 +0.785924 +0.000680 +0.555427 +0.544414 +0.826265 +0.991094 +0.858890 +0.691142 +0.182226 +0.531253 +0.120345 +0.934529 +0.878875 +0.673433 +0.859469 +0.340210 +0.572591 +0.663038 +0.661511 +0.660502 +-0.456165 +0.303426 +0.681058 +0.678648 +0.432131 +0.507297 +0.712139 +0.463681 +0.919355 +0.755950 +0.476621 +0.386010 +0.825624 +0.565127 +0.935772 +-0.204484 +0.937116 +0.625146 +0.145086 +0.869182 +0.744429 +0.846144 +0.820222 +0.079399 +0.459161 +0.855801 +0.588230 +0.842192 +0.698185 +0.847671 +0.613373 +0.626985 +0.918837 +0.755058 +0.825611 +0.456993 +0.738379 +0.636001 +0.617636 +-0.403656 +0.820248 +0.799023 +0.930560 +0.824380 +0.107555 +0.005928 +0.233312 +-0.422879 +0.541834 +0.701683 +0.723743 +0.909265 +0.755656 +0.815204 +0.623463 +0.263350 +0.996251 +0.911266 +0.704168 +0.249404 +0.660781 +0.276651 +-0.159396 +0.865010 +0.757391 +0.614069 +-0.150979 +0.400783 +0.786001 +-0.142623 +0.902029 +0.757252 +0.881732 +0.855464 +0.539927 +-0.154369 +0.465085 +0.136181 +0.346914 +-0.214631 +0.969511 +0.962253 +0.585930 +0.487514 +0.511589 +-0.083770 +0.427884 +0.456045 +0.842722 +0.991598 +0.847808 +0.399288 +0.110793 +0.729701 +0.700671 +0.684815 +0.630689 +0.903547 +0.285572 +0.825149 +0.947929 +0.947921 +0.627822 +0.611947 +0.983916 +0.627927 +0.465784 +0.559965 +0.939177 +0.365065 +0.633276 +0.767213 +0.490107 +-0.957785 +0.894788 +0.914399 +0.495243 +0.998678 +0.944317 +0.986519 +0.953752 +0.863356 +0.521109 +0.678343 +-0.575284 +0.623969 +-0.220213 +-0.005962 +0.824417 +0.878470 +0.180483 +0.723253 +-0.281886 +0.624920 +0.587073 +0.770487 +0.610991 +0.664988 +0.514576 +0.774143 +0.652816 +0.552814 +-3.359986 +0.592362 +-0.471460 +0.523261 +0.891424 +0.829444 +0.604970 +0.598707 +0.644705 +0.601436 +0.620426 +0.624658 +0.541676 +0.494140 +0.130028 +0.410688 +0.518274 +0.885488 +0.647691 +0.851780 +0.608596 +0.798380 +0.526511 +0.666595 +0.657948 +0.314498 +-0.133029 +0.742809 +0.816469 +0.838047 +0.934997 +0.528738 +0.897456 +0.985294 +0.931361 +0.919738 +0.733023 +0.331613 +0.583777 +0.666058 +0.629989 +0.769699 +0.778410 +0.921802 +0.848073 +0.771384 +0.432580 +0.820144 +0.616535 +0.511876 +0.530006 +0.575300 +0.447840 +0.699279 +0.787214 +0.823974 +0.274169 +0.688468 +0.878552 +0.681105 +0.495190 +0.648198 +0.510158 +0.924535 +0.820409 +0.724918 +0.813384 +0.530775 +0.630298 +0.545157 +0.408800 +0.423829 +0.925427 +0.847130 +0.937158 +0.762159 +0.848325 +0.778569 +0.815532 +0.467953 +0.439876 +0.204364 +0.739743 +0.728315 +0.256748 +0.196509 +0.448972 +0.631982 +0.566161 +0.826857 +0.586663 +0.889918 +0.857589 +0.855003 +0.941501 +0.882696 +0.517280 +0.969657 +0.372352 +0.923647 +0.760554 +0.202997 +0.579205 +0.527537 +0.450840 +0.626375 +-0.162801 +0.987771 +0.826764 +0.846074 +0.711344 +0.604789 +0.594508 +0.554373 +0.671891 +0.910958 +0.669795 +0.747970 +-0.162041 +-0.092742 +0.620927 +0.698746 +0.771150 +0.781396 +0.789771 +0.910916 +0.229517 +0.366752 +0.794934 +0.911112 +0.471172 +0.915925 +0.932010 +0.754796 +0.850189 +0.147511 +0.797984 +0.867170 +0.353456 +0.090274 +0.735304 +0.545435 +0.877480 +0.827520 +0.496855 +0.769869 +0.820001 +0.739833 +-0.010428 +0.378874 +0.544756 +0.862821 +0.685487 +0.881436 +0.784444 +0.931408 +0.588661 +0.885489 +0.934533 +0.753457 +0.251053 +0.633778 +0.718451 +0.655331 +0.786168 +0.919580 +0.869772 +0.759624 +0.785526 +0.879131 +0.910643 +0.849715 +0.883011 +0.733917 +0.861786 +0.322305 +0.673305 +0.831145 +0.746512 +0.568606 +0.367695 +0.973118 +0.590008 +0.592626 +0.508928 +0.330148 +0.256669 +0.537909 +0.424112 +0.293992 +-0.416881 +0.128022 +-0.096066 +0.304577 +0.066074 +0.095846 +0.534317 +-170.608847 +0.812013 +0.446266 +0.465361 +0.125993 +0.117165 +0.653381 +0.420799 +0.837855 +0.829105 +-278.538861 +0.056730 +-0.158694 +0.308445 +0.514336 +0.957181 +0.903316 +0.366840 +0.718071 +0.807934 +0.462624 +0.555197 +0.927463 +-0.804987 +0.737554 +0.856890 +0.789524 +0.692418 +0.342915 +0.623554 +0.495177 +0.835282 +0.771506 +0.742718 +0.605509 +0.862916 +0.664335 +0.695325 +0.862074 +0.911171 +-0.093475 +-0.004112 +0.775784 +0.541151 +0.823653 +0.326932 +0.827330 +0.922139 +0.645497 +0.963701 +0.698827 +-0.118114 +0.700872 +0.743425 +0.923781 +0.688293 +-0.006595 +0.936255 +0.784450 +0.917238 +0.884157 +0.618387 +0.588073 +-0.095908 +0.469700 +0.484158 +0.275006 +0.440455 +0.787727 +0.543893 +0.379324 +0.776834 +0.592806 +0.871546 +0.399054 +0.905008 +0.935681 +0.927431 +-0.159448 +0.230529 +0.840511 +0.456905 +0.647235 +0.787108 +0.924131 +0.889148 +0.751177 +0.566461 +0.861938 +0.966780 +0.755159 +0.488419 +0.564792 +0.861679 +0.706463 +0.911923 +0.957178 +0.501368 +0.369500 +-0.201718 +-3.466639 +0.974902 +0.713649 +0.430336 +0.724288 +0.985006 +0.322507 +0.249495 +0.736928 +0.417004 +0.893877 +0.924489 +-0.367275 +0.126034 +-0.305695 +0.912714 +0.928842 +0.817343 +0.810056 +0.724307 +0.135072 +0.357423 +0.758786 +0.249248 +0.753088 +0.557286 +0.709043 +0.728480 +0.507850 +0.028354 +0.670016 +0.848474 +0.552097 +-0.027028 +-0.122834 +0.419125 +0.522059 +0.439552 +0.376887 +0.514439 +0.354941 +-0.252303 +-0.107525 +0.497703 +-0.093024 +0.445675 +0.626045 +0.363479 +-0.635637 +0.567972 +0.702791 +0.405475 +-0.180403 +0.840942 +0.595120 +0.479638 +0.441824 +0.544628 +0.513893 +0.888093 +0.763283 +0.550590 +0.723058 +0.283298 +0.901942 +0.496510 +0.567733 +0.422640 +0.781587 +-0.103336 +0.685767 +0.942237 +0.930521 +0.667131 +0.800296 +0.479749 +0.493996 +0.600959 +0.917740 +0.793805 +0.775944 +0.797810 +0.580564 +0.488390 +0.235400 +0.751116 +-0.037723 +0.895802 +0.908334 +0.769271 +0.866578 +0.790722 +0.942364 +0.942866 +0.922377 +0.740959 +0.979001 +0.679112 +0.966003 +0.610917 +0.671882 +0.555282 +0.614293 +-9.890415 +0.870183 +0.913553 +0.856278 +0.932995 +-1.124036 +0.659136 +0.755796 +0.788523 +0.985351 +0.825231 +0.818617 +0.623132 +0.766536 +0.662314 +0.943780 +0.413463 +0.684483 +0.917745 +0.620623 +0.774195 +-6990.074003 +0.671402 +0.042422 +0.905992 +0.301765 +0.079020 +0.844844 +0.475386 +0.356681 +0.412795 +0.726966 +0.710291 +0.901852 +0.741862 +0.921756 +0.327071 +0.252810 +0.390015 +0.754647 +-0.119301 +0.988275 +0.933566 +-0.007412 +0.779047 +0.624546 +0.185927 +0.573248 +0.420941 +0.446282 +0.395289 +0.697911 +0.775384 +-0.159777 +0.882509 +0.721002 +0.721657 +-0.181072 +0.741169 +0.586420 +0.628209 +-1.362904 +0.351778 +0.574052 +0.474645 +0.636383 +0.311103 +0.605810 +-0.135049 +0.166373 +-0.123427 +0.458091 +0.461427 +0.519339 +0.421137 +0.852870 +-0.296020 +0.479548 +0.446174 +0.682413 +0.850119 +0.320887 +0.503762 +-0.068767 +-0.307137 +0.523525 +0.756041 +0.786955 +0.477547 +0.622105 +0.851852 +0.825080 +0.621020 +0.800790 +0.791722 +0.573273 +0.805171 +0.552898 +0.563010 +0.883350 +0.748947 +0.925184 +0.708695 +0.751920 +0.528949 +0.525816 +0.219286 +0.773866 +0.915840 +0.707598 +0.363029 +0.471847 +0.946437 +0.902524 +0.594735 +0.823041 +0.895243 +0.568934 +0.294402 +0.618086 +0.693104 +0.869974 +0.161414 +-0.415037 +0.906694 +0.567827 +0.184661 +0.399411 +0.660268 +-0.458672 +0.476681 +0.431054 +0.263558 +0.821007 +0.904314 +0.641762 +0.613097 +0.407523 +0.974736 +0.920620 +0.877608 +0.889117 +0.183684 +0.390009 +0.224339 +0.645265 +0.765082 +0.901609 +0.766479 +0.961849 +0.862389 +0.860304 +0.833990 +0.892644 +0.970785 +0.858456 +0.624501 +0.509052 +0.936557 +0.945820 +-0.738591 +0.915187 +0.936452 +0.258994 +0.855126 +0.857328 +0.428031 +0.408162 +0.249595 +0.906751 +0.937170 +0.826496 +0.615039 +0.532928 +0.249791 +0.532748 +0.430871 +0.697057 +0.514634 +0.911896 +0.539928 +0.672774 +0.617329 +0.148937 +0.675861 +0.917072 +0.945076 +0.119779 +0.582381 +0.953052 +0.258055 +0.816911 +0.903016 +0.575917 +0.638355 +0.782483 +0.726097 +0.498864 +0.818628 +0.780031 +-0.190598 +0.975245 +0.393260 +0.364700 +0.907822 +0.839883 +0.547276 +0.307356 +0.823298 +0.971567 +0.857357 +0.868205 +0.794453 +0.971598 +0.514796 +0.950491 +0.242801 +0.856114 +0.587540 +0.453893 +0.483348 +0.062658 +0.714886 +0.876069 +0.809237 +0.835750 +0.540690 +0.262780 +0.583579 +0.775754 +0.818039 +0.685771 +0.796815 +0.542270 +-0.146861 +-0.153018 +0.862636 +0.688507 +0.175047 +0.682182 +0.812814 +0.744216 +0.750512 +0.580121 +0.652328 +0.798672 +0.811993 +0.962475 +0.670334 +0.587853 +0.817376 +0.694223 +0.922097 +0.334924 +0.836088 +0.686997 +0.839654 +0.487253 +0.863233 +0.933660 +-0.240301 +0.826614 +0.871099 +0.183264 +-0.251979 +0.873183 +0.815721 +0.569489 +0.679783 +0.767904 +0.296889 +0.387722 +0.901734 +0.800035 +0.468136 +0.927664 +0.678494 +0.967144 +0.593150 +0.808616 +0.623504 +0.894972 +0.532040 +0.196749 +0.830004 +0.686921 +0.299784 +0.581376 +0.756298 +0.799929 +-0.174455 +0.466871 +0.611227 +0.704375 +0.479960 +0.108041 +0.614801 +0.620529 +0.819302 +0.922561 +0.540801 +0.475663 +0.688332 +0.594662 +0.669463 +0.180743 +0.274278 +0.429839 +0.414138 +-0.284745 +0.728736 +-0.093642 +0.470053 +0.656875 +0.567098 +0.810456 +0.819497 +0.723262 +0.806916 +0.887037 +0.274492 +0.703378 +0.478395 +0.594724 +0.127878 +0.544590 +0.761792 +0.752466 +0.783440 +0.487765 +0.619703 +0.883330 +0.637906 +0.642882 +0.406448 +0.865336 +0.573073 +0.264585 +-12.963436 +0.131490 +0.612591 +0.959849 +0.930904 +0.986076 +-0.331132 +0.844123 +0.845555 +0.856067 +-1.148436 +0.619933 +0.903921 +0.831543 +0.865110 +0.616288 +0.242058 +0.897000 +0.552461 +0.615071 +0.932713 +0.926147 +0.033508 +-0.177962 +0.957579 +0.457437 +0.602891 +0.531165 +0.925425 +0.567649 +0.359460 +0.408619 +0.403417 +0.538894 +0.930624 +0.932606 +0.950785 +0.015941 +0.236455 +0.948043 +0.456103 +0.343955 +0.343955 +0.467776 +0.886763 +0.918400 +0.237532 +0.285996 +0.975589 +0.560257 +0.408524 +0.859321 +0.878279 +0.888172 +0.742760 +-130.341264 +0.812336 +-70.454874 +0.960424 +0.956966 +0.961519 +0.659061 +0.479222 +0.666522 +0.569614 +0.516881 +0.401022 +0.569694 +0.901876 +0.760036 +0.350499 +0.967167 +0.884268 +0.911205 +0.859424 +0.771266 +0.848790 +0.662537 +0.828112 +0.847346 +0.620984 +0.851369 +-107.718153 +0.467078 +0.555438 +0.418693 +0.669032 +0.206412 +0.431065 +0.948591 +0.443979 +0.929862 +0.531671 +0.836225 +0.382397 +0.268182 +0.316839 +0.458807 +0.430683 +0.686704 +0.527400 +0.727970 +0.886228 +0.954773 +0.423151 +0.943284 +0.867129 +0.820143 +0.689106 +0.677717 +0.451980 +0.335201 +0.493650 +0.183985 +0.535746 +0.454695 +0.078110 +0.349735 +0.470406 +0.273252 +0.180332 +0.386874 +-0.348825 +0.888815 +0.288426 +0.296520 +0.089195 +-639.658391 +0.190621 +0.700808 +-1.187657 +0.384520 +0.728049 +0.430331 +0.134601 +-1.876215 +0.667177 +0.921412 +0.914136 +0.906700 +0.784878 +0.824726 +0.827469 +0.759447 +0.900818 +0.705160 +0.135716 +0.834544 +0.904087 +0.919184 +0.392956 +0.621012 +0.590850 +0.559382 +0.025571 +0.915537 +0.924354 +0.928674 +0.642067 +0.731691 +0.874026 +0.889395 +0.849760 +0.614934 +0.985680 +0.774912 +0.897656 +0.887877 +0.972048 +0.919495 +-4.616098 +0.781508 +0.855147 +0.663188 +0.499858 +0.855491 +0.880041 +0.854153 +0.912558 +0.928912 +0.767956 +0.878388 +0.889962 +0.462826 +0.230697 +0.714120 +0.914072 +0.914424 +0.921604 +0.545133 +0.497488 +0.587925 +0.556485 +0.684935 +0.378457 +0.845846 +0.732231 +0.657891 +0.751144 +0.329446 +0.248882 +0.222809 +0.245394 +0.389815 +0.432946 +0.256312 +0.835815 +0.874664 +0.617452 +0.892543 +0.634797 +0.992493 +0.464621 +0.733614 +0.907099 +0.636338 +0.735436 +0.971441 +0.896400 +0.900632 +0.751475 +0.865302 +0.835563 +0.835554 +0.539714 +0.371284 +0.539848 +0.436757 +0.070560 +0.410283 +0.688947 +0.530377 +0.313070 +0.507380 +0.708450 +0.310642 +0.252393 +0.510275 +0.510955 +0.817105 +0.411862 +0.393993 +0.741970 +0.610121 +0.546572 +0.702145 +0.685383 +0.913409 +0.652342 +0.862054 +0.289555 +0.279479 +0.362124 +0.875911 +0.179280 +0.250279 +0.817774 +0.778929 +0.342425 +0.666212 +0.762066 +0.878463 +0.605712 +0.536761 +0.375101 +-1.428771 +0.883065 +0.868587 +0.645611 +0.499023 +0.931295 +0.513817 +0.543716 +0.842176 +0.894969 +-0.591902 +0.924872 +0.587757 +0.842789 +0.842061 +0.934587 +0.412447 +0.581479 +0.586476 +0.503597 +0.818364 +0.534821 +0.823603 +0.524752 +0.919062 +0.453273 +0.551179 +0.464224 +0.847685 +0.558903 +0.734478 +0.820201 +0.546712 +0.641431 +0.441595 +0.366311 +0.426490 +0.504930 +0.343007 +0.871779 +0.900219 +0.813427 +0.953868 +0.527914 +0.472013 +0.442518 +0.408956 +0.545655 +0.398010 +0.536206 +0.631791 +0.522258 +0.700068 +0.605760 +0.297321 +0.813704 +0.671171 +0.698012 +0.766281 +0.443209 +0.747236 +0.780169 +0.842140 +0.857130 +0.714493 +0.865260 +0.640940 +0.574639 +0.535735 +0.946947 +0.244448 +0.323065 +0.620962 +0.435417 +0.365077 +0.563364 +0.350000 +0.195811 +0.630878 +0.451965 +0.249683 +0.415685 +0.994563 +0.811041 +-0.105022 +0.502337 +0.501297 +0.549168 +0.859401 +0.918395 +0.976840 +0.843692 +0.832056 +0.740331 +0.680547 +0.849897 +0.813067 +0.970113 +0.320849 +0.783414 +0.122171 +0.762131 +0.796046 +0.966841 +0.949836 +0.971055 +0.926734 +0.931163 +0.895768 +0.869564 +0.850616 +0.818170 +0.985614 +-0.280568 +0.622143 +0.957320 +-1.486828 +0.825703 +0.567268 +-0.382663 +0.768674 +0.881259 +0.953202 +0.497700 +0.632270 +0.493150 +0.601922 +0.692901 +0.296399 +0.881969 +0.897067 +0.713034 +0.748393 +0.806214 +0.893043 +0.435849 +0.709657 +0.261036 +0.466345 +0.905664 +0.445764 +0.739186 +0.188857 +-1.189858 +0.798792 +-88.247209 +0.668302 +-11.265862 +0.885417 +0.576914 +0.301438 +0.546383 +0.191716 +0.314712 +0.660340 +0.481339 +0.395209 +0.567242 +0.324199 +0.519876 +0.394247 +0.731058 +0.818129 +0.475634 +0.712627 +0.544367 +0.588427 +0.631444 +0.575804 +0.851716 +0.861647 +0.690374 +0.863380 +0.876308 +0.778811 +0.818848 +0.819759 +0.521485 +0.742513 +0.863600 +0.861539 +0.415523 +0.627905 +0.897932 +0.626741 +0.465960 +0.895083 +0.442667 +0.457591 +0.376101 +0.531290 +0.577026 +0.454370 +0.301721 +0.542444 +0.137368 +0.934671 +0.989284 +0.268679 +0.826627 +0.812449 +0.846409 +0.846689 +0.885607 +0.921700 +0.914264 +0.921700 +0.914168 +0.802159 +0.752701 +0.945946 +0.725378 +0.773099 +0.534137 +0.550695 +0.766906 +0.924834 +0.730703 +0.839552 +0.907617 +0.539933 +0.938039 +0.392962 +0.820327 +0.946090 +0.802238 +0.865334 +0.631986 +0.958278 +0.684093 +0.962710 +0.921236 +0.602728 +0.663842 +0.843884 +0.768420 +0.424797 +0.966248 +0.478548 +-4.768105 +0.987749 +0.157474 +0.278664 +0.508062 +0.028376 +0.246674 +0.581779 +0.343097 +-18.618279 +0.686899 +0.695362 +0.954519 +0.657200 +0.645522 +0.874557 +0.821076 +0.717927 +0.791182 +0.685980 +0.673182 +0.797508 +0.917265 +0.662200 +0.946315 +0.940715 +0.913303 +0.642294 +0.737166 +0.758642 +0.699580 +0.802726 +0.970384 +0.117029 +-0.059698 +0.228786 +0.925198 +0.916987 +0.953868 +0.542791 +0.274217 +0.918480 +0.955709 +0.429023 +0.591496 +0.469930 +0.960538 +0.506078 +0.792496 +0.684716 +0.048022 +0.788384 +0.652273 +0.485537 +0.194688 +0.984312 +0.917727 +0.500473 +0.578964 +0.818579 +0.947895 +0.553744 +0.693197 +0.931335 +0.912873 +0.366729 +0.404453 +0.636717 +0.826419 +0.542906 +0.382181 +0.609821 +0.782921 +0.225711 +0.495453 +0.770577 +0.046369 +0.925309 +0.464672 +0.924950 +0.979758 +0.762993 +0.277685 +0.663270 +0.193168 +0.690315 +-0.269205 +0.551537 +0.366622 +0.096862 +0.600552 +0.326701 +0.591160 +0.934135 +0.953445 +0.963625 +0.524658 +0.316336 +0.345449 +0.956020 +0.691526 +0.290408 +0.201618 +0.541197 +0.458540 +-0.621536 +0.235596 +0.835483 +0.495255 +0.123250 +0.781403 +0.908652 +0.637787 +0.694729 +-0.073547 +0.133701 +0.769001 +0.799396 +0.775014 +0.578837 +0.658762 +0.681278 +-0.005240 +0.894381 +0.845762 +-0.055886 +0.002678 +0.867004 +0.779334 +0.581508 +0.917876 +0.802061 +-0.144297 +0.463169 +0.316295 +0.598029 +0.090574 +0.290954 +0.839986 +0.985807 +0.358873 +0.690031 +0.014586 +0.684836 +-0.034645 +0.911861 +0.625512 +0.084782 +0.163187 +0.431012 +0.469164 +0.992306 +0.298568 +0.465051 +0.446547 +0.288435 +0.711452 +0.532119 +0.876890 +0.630715 +0.723680 +0.747550 +0.725121 +0.725199 +0.835300 +0.356505 +0.650344 +0.642629 +0.363554 +0.406475 +0.101047 +0.753039 +0.346345 +0.429611 +0.662352 +0.529081 +0.623423 +0.594693 +0.389098 +0.459085 +0.195015 +0.613300 +0.588986 +0.288872 +0.653747 +0.575828 +0.200295 +0.705144 +0.335522 +0.163258 +0.357272 +0.066165 +0.104008 +0.997180 +0.105016 +0.063823 +0.339810 +0.759267 +0.046665 +0.267714 +0.247546 +0.339387 +0.889403 +0.228659 +0.230139 +0.251166 +0.254809 +0.057356 +-0.045570 +0.044280 +0.199744 +0.249963 +0.102422 +-25.509416 +0.952053 +0.618359 +0.977309 +0.863146 +0.622145 +0.605293 +0.600826 +0.989921 +0.454452 +0.315387 +0.394828 +-0.260767 +0.809334 +0.196430 +0.497824 +0.812597 +0.357619 +0.551671 +0.516568 +0.683175 +0.748916 +0.619475 +0.686865 +0.719106 +0.688375 +0.750153 +0.577459 +0.633952 +0.571474 +0.574001 +0.574958 +0.593907 +0.902669 +0.862309 +0.533941 +0.337317 +0.251154 +0.379053 +0.568661 +0.384496 +0.206115 +0.212271 +0.567593 +0.661957 +0.580658 +0.933501 +0.542740 +0.747716 +0.661169 +0.920709 +-14756.031389 +0.812538 +0.886681 +0.264267 +0.454129 +0.710183 +0.420907 +0.711225 +0.575090 +0.703867 +0.558408 +0.806506 +0.872389 +0.650545 +0.538344 +0.657174 +0.633615 +0.467047 +0.906309 +0.756775 +0.807520 +0.679276 +0.770532 +0.919173 +0.937921 +0.828120 +0.866001 +0.932766 +0.615522 +0.695101 +0.975135 +-0.303904 +0.706787 +0.785995 +0.731813 +0.893130 +0.944724 +0.123669 +0.696725 +0.586771 +0.993644 +0.958471 +0.841760 +0.716191 +0.924747 +0.931807 +0.920447 +0.919570 +0.930009 +0.924127 +0.944179 +0.859493 +0.912326 +0.916738 +-1.842793 +0.931659 +0.756355 +0.790395 +0.667575 +0.562484 +0.914769 +0.733161 +0.922551 +0.989930 +0.760345 +0.873566 +0.593660 +0.856837 +0.768329 +0.704904 +0.272206 +0.537031 +0.646436 +0.637880 +0.991908 +0.794839 +0.887605 +0.718932 +0.640979 +0.591310 +0.635568 +0.492164 +0.524179 +0.412859 +0.379484 +0.733681 +0.424595 +0.462759 +0.445394 +0.775280 +0.576318 +0.649866 +0.865086 +0.753283 +0.699505 +0.847980 +0.903082 +0.892541 +0.119877 +0.461991 +0.849823 +0.387705 +0.381950 +0.872462 +0.330210 +0.927852 +0.303852 +0.550115 +0.697986 +0.435040 +0.426164 +0.192093 +0.614804 +0.594167 +0.741736 +0.540813 +0.467224 +0.355426 +0.441577 +0.374850 +0.528053 +0.750576 +0.492256 +0.360019 +0.959073 +0.660936 +0.847126 +0.554852 +0.770836 +0.933276 +0.405845 +0.872728 +0.627301 +0.823901 +0.915651 +0.909135 +0.548095 +0.360697 +0.569006 +0.695176 +0.362898 +0.214152 +0.711077 +0.206194 +0.690639 +0.916645 +0.864901 +0.977104 +0.628740 +0.542238 +0.968725 +0.380004 +0.990606 +0.488830 +0.471781 +0.260262 +0.397960 +0.870804 +-0.227509 +0.390926 +-0.461884 +0.632653 +0.995646 +0.858274 +0.825073 +0.843215 +0.891666 +0.863173 +0.387909 +0.927100 +0.933797 +0.920557 +0.721221 +0.917528 +0.874075 +0.860073 +0.658048 +0.977704 +0.798820 +0.835061 +0.787335 +0.802634 +0.982249 +0.855346 +0.704268 +0.922864 +0.915999 +0.918028 +0.900989 +0.939005 +0.761557 +0.661378 +0.559259 +0.673274 +0.734570 +0.689794 +0.830271 +0.716868 +0.407115 +0.762186 +0.571704 +0.925410 +0.896231 +0.343315 +0.691737 +0.684577 +0.929424 +0.915657 +0.609764 +0.622097 +0.907819 +0.916899 +0.901981 +0.921288 +-0.611204 +0.826910 +0.930096 +0.916594 +0.948293 +0.912510 +0.333930 +0.050768 +0.666840 +0.362386 +0.863105 +0.920977 +0.920743 +0.813881 +0.922130 +0.934626 +0.636548 +0.912926 +0.647452 +0.500239 +0.786695 +0.407681 +0.407681 +0.838995 +0.584198 +0.970197 +0.213424 +0.995057 +0.898820 +0.896560 +0.647792 +-0.039208 +0.408347 +0.407459 +0.407459 +0.407459 +0.468757 +0.275459 +0.503956 +0.607455 +0.939765 +0.918521 +0.114936 +0.520814 +0.411658 +0.555210 +0.776162 +0.258077 +0.258692 +0.407271 +0.368413 +-0.058167 +0.518877 +0.427430 +0.838867 +0.921007 +0.080941 +0.912626 +0.914918 +0.670293 +0.764054 +0.749649 +0.766420 +0.755522 +0.546520 +0.877795 +0.601722 +0.901792 +0.917972 +0.744367 +0.983390 +0.920929 +0.677727 +0.586912 +0.864454 +0.503400 +0.993513 +0.264775 +0.800687 +0.840178 +0.885759 +0.761071 +0.949367 +0.934801 +0.888447 +0.720527 +0.763882 +0.938756 +-1.787846 +0.893765 +0.604117 +0.895499 +0.625595 +0.920601 +0.592392 +0.966933 +0.958529 +0.873190 +0.678690 +0.900014 +0.914928 +0.925121 +0.903421 +0.945172 +0.790238 +0.991249 +0.937887 +0.937911 +0.832049 +0.633332 +0.621710 +0.954813 +-0.134286 +0.914454 +0.615278 +0.920546 +0.927886 +0.447960 +0.681300 +0.758725 +0.981019 +0.656434 +0.259018 +0.991966 +0.559910 +0.084263 +0.060063 +0.157161 +0.895302 +0.041283 +0.729497 +0.263066 +0.263066 +0.263066 +0.826617 +0.891988 +0.257202 +0.048535 +0.771300 +0.551375 +0.251025 +0.277115 +0.119271 +-0.062199 +0.748258 +0.215539 +0.198705 +0.024391 +0.541021 +0.993049 +0.836300 +0.092865 +0.279678 +0.160300 +0.871098 +-0.264259 +0.184687 +0.903671 +0.996679 +0.397749 +0.888807 +0.704720 +0.897082 +0.729126 +0.726993 +0.898424 +0.646333 +0.863255 +0.818240 +0.806449 +0.685587 +0.575002 +0.559280 +0.570583 +0.905470 +-152.069049 +0.676569 +0.440875 +0.913720 +0.914264 +0.952642 +0.929072 +0.899104 +0.906636 +0.906572 +0.906732 +0.906540 +0.913976 +0.817898 +0.856977 +0.724627 +0.840037 +0.637294 +0.704845 +0.446650 +0.720248 +0.943970 +0.657569 +0.805725 +0.861986 +-0.409461 +0.795469 +-0.193627 +0.933420 +0.965694 +0.205679 +0.812266 +0.673212 +0.655515 +0.888080 +0.917882 +0.744617 +-0.178873 +0.831710 +0.910723 +0.297741 +0.020247 +0.984089 +0.751189 +0.713004 +0.143915 +0.221836 +0.607832 +0.579166 +0.871479 +0.968575 +0.859425 +0.887324 +0.649333 +0.834384 +0.870341 +0.150956 +0.895044 +0.500046 +0.833349 +0.422510 +0.689291 +0.783660 +0.874114 +0.892220 +0.805245 +0.901183 +0.729262 +0.661558 +0.425182 +-25.455163 +0.961943 +0.855430 +0.793706 +0.985238 +0.936573 +0.398913 +0.834519 +0.823423 +0.824939 +0.470709 +0.446507 +0.816327 +0.317292 +0.282474 +0.711372 +0.282983 +0.645081 +0.833111 +0.988229 +0.632057 +0.737536 +0.432650 +0.556810 +0.532438 +0.655655 +0.541058 +0.599307 +0.561791 +0.348292 +0.663483 +0.368428 +0.584586 +0.429626 +0.420815 +0.773647 +0.737074 +0.771511 +0.745784 +0.729061 +0.716309 +0.758559 +0.744600 +0.793800 +0.865721 +0.731081 +0.653796 +0.666703 +0.969324 +0.770697 +0.451320 +0.775822 +0.752188 +0.762193 +0.799722 +0.888071 +0.566756 +0.428626 +0.503447 +0.366861 +0.619213 +0.216939 +0.900699 +0.817207 +0.897882 +0.830582 +0.828861 +0.678873 +0.879711 +0.935218 +0.362344 +0.333794 +0.803671 +0.899138 +0.812933 +0.497154 +0.341346 +0.839755 +0.960064 +0.496318 +0.807270 +0.547545 +0.768336 +0.573058 +0.819737 +0.422786 +0.743621 +0.935701 +0.934949 +0.694397 +0.981738 +0.723481 +0.108492 +0.086973 +0.548798 +0.820472 +0.937102 +0.889378 +0.914926 +0.872968 +0.745665 +0.825771 +0.841525 +0.137521 +0.922037 +0.999016 +0.935334 +0.332180 +0.002262 +0.665418 +0.730840 +0.667370 +0.847140 +0.983148 +0.941143 +0.685057 +0.973984 +0.870857 +0.606304 +0.229477 +-12.133666 +0.528381 +0.124537 +0.262680 +0.965377 +0.421471 +0.066902 +-21.256097 +0.822886 +-0.271240 +0.911069 +-0.063554 +-681.303147 +-8.243339 +0.770393 +0.602382 +0.242068 +0.455534 +0.517392 +0.779297 +0.591052 +0.835814 +0.429370 +0.409982 +0.571117 +0.988730 +0.480444 +0.429151 +0.909735 +0.568672 +0.811907 +0.733218 +0.883062 +0.952546 +0.481929 +0.902245 +0.915162 +0.589796 +0.471142 +0.244821 +0.269558 +0.920080 +0.934170 +0.384872 +0.496724 +0.932645 +0.451566 +0.364468 +0.386767 +0.581460 +0.733269 +0.697645 +0.333657 +0.446536 +0.162482 +0.762159 +0.360455 +0.404022 +0.232577 +0.286282 +0.799468 +0.554733 +0.911458 +0.464834 +0.214294 +0.977661 +0.492454 +0.947204 +0.910661 +0.743129 +0.931241 +0.924545 +0.948655 +0.519582 +0.295622 +0.556379 +0.821344 +0.751540 +0.907018 +0.478164 +0.288141 +0.891147 +0.699396 +0.857426 +0.989246 +0.615998 +0.726483 +0.878285 +0.123682 +0.563420 +0.434074 +0.411103 +0.449489 +0.009304 +0.317402 +0.306289 +0.117030 +0.923026 +0.921758 +0.413231 +0.534483 +0.297828 +0.565846 +0.249399 +0.235111 +0.907183 +0.972236 +0.759328 +0.078153 +0.414638 +0.405750 +0.432754 +0.993042 +0.515018 +0.438135 +0.613552 +0.898517 +0.401960 +0.353304 +0.379077 +0.377628 +0.945025 +0.976683 +0.691214 +0.909835 +0.781482 +0.811148 +0.396073 +0.384178 +0.312124 +0.347461 +0.862178 +0.613886 +0.924651 +0.924467 +0.122418 +0.606121 +0.638014 +0.521080 +0.919167 +0.868294 +0.739806 +0.958882 +0.552340 +0.945747 +0.128312 +0.924648 +0.057533 +0.925124 +0.950008 +0.689386 +0.502013 +0.715884 +0.791561 +0.963404 +0.673093 +0.557726 +0.358990 +0.444114 +0.563319 +0.901327 +0.539325 +0.919044 +0.912724 +0.836266 +0.964578 +0.016732 +0.183879 +0.484915 +0.667068 +0.461899 +0.612194 +0.811199 +0.448181 +0.913449 +0.915937 +0.933046 +0.515698 +0.674301 +0.691018 +0.515752 +0.924503 +0.456710 +0.381521 +0.440595 +0.602763 +0.626582 +0.953047 +0.787166 +0.302678 +0.496678 +0.918631 +0.919873 +0.565269 +0.488632 +0.693483 +0.400152 +0.912471 +0.746623 +-0.192349 +0.555052 +0.955345 +0.926885 +0.800965 +0.929403 +0.660080 +0.310617 +0.918432 +0.965177 +0.983165 +0.917524 +0.890910 +0.525965 +0.424245 +0.730202 +0.511184 +0.992921 +0.635618 +0.137116 +0.113441 +0.063819 +0.565856 +0.081788 +-0.041375 +-0.002195 +0.323037 +0.007032 +0.249804 +0.922277 +0.020688 +-0.020195 +0.511422 +-0.020399 +0.047195 +-0.006482 +0.064889 +0.073838 +0.848525 +0.122718 +0.326056 +-174.292368 +-1.405633 +0.077544 +0.474057 +0.491432 +0.395293 +0.378396 +0.584778 +0.483594 +0.623942 +0.794558 +0.179129 +0.725133 +0.814532 +0.765968 +0.732066 +0.714892 +0.768518 +0.719491 +0.309357 +0.616867 +0.788780 +0.262892 +0.162335 +0.193824 +0.269039 +0.472916 +0.137769 +0.043027 +-0.241944 +0.087785 +0.159462 +0.955632 +0.042855 +-19.183365 +0.284059 +0.064207 +0.671367 +0.689266 +0.917759 +0.935464 +0.932357 +0.868289 +0.544497 +0.789748 +0.819091 +0.800727 +0.917808 +0.841290 +0.959850 +0.924898 +0.691007 +0.924683 +0.035635 +0.840368 +0.804050 +0.909302 +0.527116 +-0.208695 +0.840736 +0.711506 +0.849840 +0.931634 +-0.531985 +0.731249 +0.896455 +0.755900 +-0.062278 +0.819931 +0.702390 +0.714831 +0.717025 +0.178244 +0.125439 +0.742149 +0.302241 +0.908020 +0.470128 +0.177625 +0.275054 +0.578599 +0.684541 +0.042497 +0.495165 +0.298387 +0.314204 +0.314893 +0.326736 +0.964184 +0.513785 +0.202520 +0.453598 +0.761467 +0.206553 +0.376219 +0.024561 +0.902480 +0.559222 +0.241404 +0.446241 +0.457935 +0.785325 +0.780449 +0.769676 +0.825172 +0.356470 +0.542540 +0.806858 +0.700432 +0.661101 +0.774537 +0.393227 +0.968349 +0.676912 +0.761180 +0.879492 +0.451640 +0.734297 +0.742642 +0.767537 +0.773676 +0.700196 +0.775595 +0.732965 +0.779333 +0.718169 +0.191506 +0.656729 +0.736168 +0.776560 +0.364971 +0.400518 +0.736069 +0.696012 +0.697189 +0.805799 +0.526453 +0.655371 +0.772648 +0.776634 +0.716384 +0.629369 +0.656468 +0.806525 +0.632564 +0.715251 +0.747058 +0.770078 +0.726650 +0.459251 +0.693575 +0.527067 +0.941286 +0.738387 +0.758178 +0.835232 +0.619065 +0.964309 +0.748853 +0.551624 +0.728578 +0.825721 +0.691363 +0.742065 +0.302156 +0.320812 +0.328214 +0.472468 +0.534434 +0.370784 +0.373173 +0.573595 +0.299119 +0.287237 +0.367404 +0.400694 +0.306629 +0.343525 +0.144988 +0.468438 +0.317750 +0.388256 +0.220312 +0.295073 +0.533591 +0.331115 +0.888337 +0.649916 +0.621635 +0.593837 +0.421289 +0.956000 +0.403781 +0.965046 +0.770817 +0.304440 +0.743809 +0.733098 +-0.771964 +0.525859 +0.275531 +-0.781839 +0.553064 +0.432470 +0.923890 +0.926839 +0.510728 +0.692703 +0.843736 +0.927185 +0.928439 +0.741649 +0.736307 +0.739678 +0.634679 +0.752865 +0.816097 +0.641541 +0.882967 +0.727818 +0.982152 +0.881779 +0.537789 +0.149753 +0.080046 +0.551536 +0.366926 +0.879694 +0.869129 +0.997735 +0.949193 +-2.276846 +0.264167 +0.932647 +0.292737 +0.310551 +0.303926 +0.416158 +0.001372 +0.138421 +-0.023928 +0.206553 +0.147748 +0.226153 +0.364234 +0.302351 +0.958182 +0.867329 +0.745061 +0.378784 +0.948650 +0.495649 +0.699062 +0.891849 +0.318800 +0.427864 +0.578609 +0.901192 +0.826854 +0.826854 +0.950606 +0.924107 +0.284571 +0.913176 +0.270154 +0.767666 +0.401923 +0.725853 +0.338212 +0.651941 +0.776356 +0.773261 +0.913804 +0.297731 +0.465108 +0.947773 +0.907924 +0.481395 +0.766917 +0.386183 +0.927653 +0.606401 +0.442614 +0.489663 +0.505357 +0.917188 +0.045421 +0.802364 +0.332519 +0.376486 +0.315804 +0.484214 +0.751828 +0.933192 +0.915211 +0.840906 +0.476091 +0.765929 +0.533696 +0.818623 +0.938931 +0.731939 +0.553822 +0.214351 +0.895364 +0.463553 +0.967244 +0.807372 +0.824933 +0.728098 +0.931058 +0.899075 +0.672510 +0.229696 +0.431672 +0.188542 +0.712169 +0.318059 +0.415074 +0.386409 +0.875617 +0.259214 +0.928794 +0.891903 +0.564744 +0.593227 +0.311596 +0.378757 +0.662217 +0.782126 +0.593366 +0.921337 +0.299659 +0.801512 +0.900734 +0.384091 +0.667958 +0.621071 +0.352028 +0.328684 +0.754397 +0.774999 +0.914744 +0.588369 +0.785706 +0.731791 +0.361096 +0.757375 +0.646159 +0.730640 +0.516958 +0.377019 +0.748791 +0.897872 +-35.564132 +0.757784 +-104.612414 +-89.364702 +0.840617 +0.603081 +0.404115 +0.966766 +0.591918 +0.456268 +0.202184 +0.377646 +0.722868 +0.696611 +0.419185 +0.944204 +0.184543 +0.259037 +0.566814 +0.735794 +0.625400 +-0.161565 +0.804241 +0.682796 +0.914053 +0.138979 +0.650866 +0.122263 +0.842362 +0.948992 +0.598407 +0.197411 +0.187923 +0.691463 +0.536692 +0.480897 +0.816648 +0.071638 +0.149781 +0.409186 +0.545642 +0.892673 +0.149572 +0.041264 +0.243408 +0.277082 +-0.052734 +0.468914 +0.058900 +0.254311 +-0.114221 +0.630423 +0.500407 +0.211702 +0.790430 +0.973413 +0.304349 +0.154401 +-0.346680 +0.452575 +0.287204 +0.142806 +0.152037 +0.211017 +0.851812 +0.481644 +0.862958 +0.940280 +0.517122 +0.756368 +0.703776 +0.988649 +0.990894 +0.284106 +0.268510 +0.609337 +0.938957 +0.851456 +0.885714 +0.392397 +0.858242 +0.557050 +0.936323 +0.529940 +0.723181 +0.937559 +0.081407 +0.820726 +0.969395 +0.988238 +0.643670 +0.059753 +0.826725 +0.845041 +0.865586 +0.914631 +0.630180 +0.911984 +0.737481 +0.953114 +0.109568 +0.798925 +0.879533 +0.826500 +0.143490 +-1.378717 +0.940865 +0.768535 +0.981306 +0.811967 +0.635351 +0.923653 +0.826362 +0.871771 +0.691186 +0.756528 +0.838511 +0.561149 +0.336147 +0.386589 +0.380428 +0.496075 +0.820605 +0.757519 +0.769946 +0.733106 +0.783919 +0.710001 +0.052345 +0.654870 +0.790139 +0.897566 +0.773670 +0.811214 +0.912470 +0.740807 +0.929482 +0.588286 +0.677042 +0.756327 +0.365720 +0.734204 +0.109183 +0.866899 +0.939804 +0.920009 +0.923831 +0.917107 +0.916339 +0.915701 +0.922382 +0.920313 +0.914656 +0.651240 +0.121012 +0.731347 +0.867588 +0.785982 +0.759109 +0.646689 +0.743677 +0.473639 +0.934180 +0.751753 +0.784368 +0.977385 +-0.022815 +0.971056 +0.512891 +0.926229 +0.202308 +0.664067 +0.937968 +0.919222 +0.920728 +0.648524 +0.919745 +0.827173 +0.617933 +0.966610 +0.814379 +0.944187 +0.648311 +0.846922 +0.915404 +0.931758 +0.848958 +0.995901 +0.409125 +0.941495 +0.719172 +0.916033 +0.496330 +0.816137 +0.208170 +0.790495 +0.661013 +0.727137 +0.935266 +0.966321 +0.719977 +0.820735 +0.572511 +0.908106 +0.901037 +0.968478 +0.866534 +0.789467 +0.607654 +0.640501 +0.805878 +0.988548 +0.678058 +0.741102 +-46.999079 +0.884565 +0.838651 +0.857644 +0.855647 +0.349121 +0.781230 +0.014170 +0.775588 +0.068472 +0.793562 +0.242977 +0.093465 +0.552778 +0.610647 +0.365061 +-1.624103 +0.622887 +-0.286272 +0.678349 +0.848724 +0.811656 +0.073292 +0.412873 +0.274334 +0.033852 +0.996332 +0.484539 +0.546938 +0.144564 +0.610863 +0.833198 +0.235786 +0.092222 +0.949781 +0.280010 +0.464223 +0.499468 +0.813034 +0.554689 +0.773823 +0.578173 +0.289529 +0.383895 +0.491437 +0.268081 +0.494464 +0.574612 +0.061701 +0.516843 +0.940187 +0.794376 +0.493772 +0.482066 +0.655093 +0.130832 +0.364570 +0.170787 +-2.435279 +0.440078 +0.709364 +0.890382 +0.419865 +0.893415 +0.687736 +0.241158 +0.635165 +0.938078 +-0.708753 +0.915914 +0.589834 +0.720936 +0.398189 +0.495280 +-1186802.817222 +0.452694 +0.249747 +-16.263972 +0.233575 +0.204910 +0.820713 +-549.997264 +0.001157 +0.696542 +0.125351 +-0.243629 +0.715019 +0.131228 +-0.000275 +0.206746 +0.422194 +-0.034862 +0.607926 +0.572084 +0.503950 +0.323252 +0.587542 +0.319931 +0.915863 +0.940511 +0.328902 +0.326301 +0.685193 +0.016574 +0.465815 +0.468586 +0.690077 +-1.325446 +0.159876 +0.638708 +0.460423 +0.117957 +0.612919 +0.821695 +0.644542 +0.668053 +0.644831 +0.688018 +0.914870 +0.943881 +0.924961 +0.917858 +0.938003 +0.922370 +0.723620 +0.322900 +0.707904 +0.753615 +0.424596 +0.515670 +0.894769 +0.825790 +0.738826 +0.766846 +0.875752 +0.901311 +0.739010 +0.767020 +0.416335 +0.813586 +0.736302 +0.450650 +0.904977 +0.732431 +0.720852 +0.270474 +0.904626 +0.904812 +0.352852 +0.802825 +0.954288 +0.922305 +0.764294 +0.317489 +0.890220 +0.878136 +0.694918 +0.794451 +0.392584 +0.908027 +0.989482 +0.718430 +0.591876 +0.626897 +0.792290 +0.855275 +0.595962 +0.712870 +0.704781 +0.790149 +0.689628 +0.923466 +0.820090 +0.374077 +0.443373 +0.385733 +0.733066 +0.816930 +0.985712 +0.418452 +0.733980 +0.788965 +0.701386 +0.759412 +0.454937 +0.924869 +0.725916 +0.935219 +0.469423 +0.544830 +0.614472 +0.336633 +0.401271 +0.109121 +0.155120 +0.490270 +0.894386 +0.330125 +0.540214 +0.886380 +0.448669 +0.525647 +0.522453 +0.080141 +0.138096 +0.698523 +0.253628 +0.296719 +0.524658 +0.087012 +0.867646 +0.621341 +0.948739 +0.604899 +0.487492 +0.493337 +0.984090 +0.375396 +0.182864 +0.512085 +0.705445 +0.331303 +0.174891 +0.406249 +0.998442 +0.600934 +-0.321211 +0.690870 +0.873492 +0.901739 +0.910513 +0.643408 +0.665559 +0.639453 +0.109173 +-2223.070667 +0.894726 +-0.106624 +0.658192 +0.706681 +0.765524 +0.968932 +0.672102 +0.043074 +0.546743 +0.892126 +0.574023 +0.728941 +0.775315 +-0.004347 +0.239869 +0.099671 +0.121209 +0.056465 +0.182205 +0.809301 +0.901583 +0.104595 +0.126171 +0.614287 +0.816053 +0.986014 +-0.749891 +0.940746 +0.500187 +-0.784795 +0.117065 +0.316204 +0.079136 +0.214845 +0.080901 +0.619902 +0.914464 +0.043912 +0.621973 +0.656467 +0.428488 +0.636897 +0.921549 +0.843427 +0.785453 +0.097473 +-0.088545 +0.447245 +0.678800 +0.626137 +0.910979 +0.804276 +0.851011 +0.753713 +0.788365 +0.945233 +0.573254 +0.915241 +0.546470 +0.461610 +0.438637 +0.431103 +0.779148 +0.736870 +-1.954949 +0.991654 +0.736250 +0.639223 +0.703373 +0.552010 +0.555204 +0.458427 +0.437778 +0.906600 +0.578822 +0.900551 +0.918553 +0.931179 +0.152343 +0.228980 +0.603346 +0.924889 +0.918589 +0.491969 +0.930694 +0.541697 +0.436101 +0.924592 +0.924722 +0.634113 +0.590770 +0.278599 +0.933137 +0.420334 +0.375476 +0.854702 +0.248676 +0.447015 +0.438775 +0.926567 +0.941434 +0.918491 +0.136638 +0.504931 +0.598129 +0.946783 +0.820255 +0.516941 +0.991800 +0.787906 +0.769537 +0.792886 +0.893658 +0.334333 +0.645767 +0.775802 +0.506407 +0.647136 +0.761749 +0.687388 +0.646984 +0.521746 +0.876683 +-0.069295 +-0.120226 +0.751328 +0.419254 +0.418307 +0.182992 +-0.078914 +0.610630 +0.753730 +0.780977 +0.827855 +0.511411 +0.739872 +0.642846 +0.663073 +0.574867 +0.547225 +0.824436 +0.428369 +0.724653 +0.724541 +0.736366 +0.938750 +0.944313 +0.345906 +0.424415 +0.061399 +0.884774 +0.805324 +0.102290 +0.174256 +0.974972 +-0.683834 +0.384791 +0.978531 +0.782520 +0.968516 +0.967622 +0.882113 +0.958306 +0.627819 +0.770728 +0.718472 +0.869012 +0.590212 +0.861981 +0.635345 +0.904838 +0.879535 +0.623000 +0.884106 +0.953618 +0.408226 +0.697376 +0.018997 +0.939502 +0.833679 +0.802052 +0.413858 +0.815440 +0.816197 +0.671816 +0.848807 +0.883536 +0.843252 +0.643569 +0.654442 +0.848105 +0.554000 +0.248886 +-0.295500 +0.584340 +0.888418 +0.371328 +0.157967 +0.521045 +-0.287223 +0.773532 +0.813867 +0.441975 +0.531493 +0.585872 +0.267133 +0.157849 +0.640901 +0.525408 +0.642884 +0.197014 +0.423570 +0.970065 +0.968318 +0.632395 +0.605756 +0.363793 +0.858653 +0.350375 +0.788947 +0.815805 +0.935422 +0.850167 +0.836527 +0.621147 +0.969095 +0.144090 +0.714157 +0.920215 +0.986753 +0.843528 +0.937017 +0.564316 +0.893615 +0.968896 +0.621416 +-11.191878 +0.370774 +0.538529 +0.411630 +0.289724 +0.835350 +0.671304 +0.889736 +0.749449 +0.520335 +-0.535866 +0.941706 +0.900411 +0.143923 +0.535846 +0.692763 +0.831804 +0.867898 +0.332684 +0.450294 +0.780116 +0.757313 +0.929930 +0.848177 +0.744838 +0.926089 +0.874182 +0.591602 +0.135793 +0.333666 +0.333666 +0.350421 +0.938293 +0.701473 +0.186009 +0.775674 +0.693135 +0.870898 +0.817137 +0.817137 +0.894006 +0.518553 +0.010104 +0.394324 +0.175166 +0.296418 +0.247012 +0.980257 +0.700289 +0.595333 +0.944427 +0.820784 +0.120952 +0.213377 +0.481046 +0.834638 +0.866119 +0.888663 +0.870375 +0.991473 +0.512172 +0.899832 +0.193349 +0.207586 +0.182847 +0.118866 +0.568637 +0.872339 +-0.002255 +0.136576 +0.750086 +0.062060 +0.161065 +0.508386 +0.290630 +0.416304 +0.349333 +0.350222 +0.004732 +0.541208 +-0.066598 +0.633753 +0.923993 +0.769824 +0.404889 +-0.723411 +0.838630 +0.455663 +0.996279 +0.940589 +0.699393 +0.749222 +0.795854 +0.771031 +0.939549 +0.461430 +0.273783 +0.642158 +0.929637 +0.967708 +0.950121 +0.791032 +0.446483 +0.840685 +0.978958 +0.830163 +0.765824 +0.846598 +0.850425 +0.846247 +0.875897 +0.820609 +0.931322 +0.970843 +0.807684 +0.722661 +-0.030159 +0.927145 +0.004958 +0.922194 +0.560342 +0.734017 +0.098182 +0.757151 +0.958688 +0.467755 +0.834873 +0.856333 +0.871728 +0.520800 +0.520999 +0.832053 +0.838949 +0.956229 +0.336447 +0.146824 +0.998843 +0.117756 +0.818414 +0.360419 +0.299489 +0.308239 +0.341282 +0.899053 +-12.618183 +0.228952 +0.419932 +0.775042 +0.502642 +0.502429 +0.246855 +0.984374 +0.265719 +-6.963513 +0.936916 +0.502491 +-3351.972895 +0.438985 +0.545884 +0.242763 +0.374388 +-0.725903 +0.667488 +0.173171 +-46.117643 +0.926703 +0.925791 +0.772614 +0.756707 +0.782288 +0.882841 +0.463555 +0.668496 +0.777940 +0.629486 +0.438638 +0.478584 +0.673408 +0.621842 +0.610164 +0.470703 +0.318731 +0.541898 +0.264939 +0.664047 +0.713766 +0.729385 +0.767947 +0.924855 +0.693033 +0.789223 +0.285945 +0.527040 +0.690015 +0.690656 +0.750432 +0.834076 +0.681191 +0.615791 +0.738146 +0.769917 +0.685373 +0.638848 +-0.919831 +0.040300 +0.279907 +0.446282 +0.916998 +0.529194 +0.701432 +0.534062 +0.703762 +0.936358 +0.038330 +0.329755 +0.873056 +-1.204491 +0.147526 +0.184021 +0.104488 +0.286214 +0.295592 +0.295224 +0.314184 +0.266282 +0.522003 +0.286059 +0.283069 +0.283069 +0.308046 +0.312700 +0.958789 +0.565193 +0.930781 +0.871989 +0.334838 +0.675900 +0.545041 +-3.573601 +0.694234 +0.549943 +0.169816 +0.460886 +0.505220 +0.571637 +0.991435 +0.144295 +0.375259 +0.889818 +0.742159 +-0.003901 +0.460412 +-0.230090 +0.802649 +-17.974364 +-0.046567 +0.260958 +0.130898 +0.768173 +0.584061 +0.895018 +0.870479 +0.653118 +0.422539 +0.529829 +0.887884 +0.743995 +0.326186 +0.924536 +0.590405 +0.400410 +0.688203 +0.995577 +0.053889 +0.341146 +0.908697 +0.728585 +0.031211 +0.135212 +0.596855 +0.694816 +0.068030 +0.067554 +0.597812 +0.757399 +-0.193895 +0.840585 +0.993133 +0.198129 +0.779250 +0.856244 +0.932939 +-0.733273 +0.840356 +0.879072 +0.867029 +0.831012 +0.677220 +0.545048 +0.839258 +0.893493 +0.629804 +0.365024 +0.921013 +0.782799 +0.961843 +0.727398 +0.704160 +0.971837 +0.933020 +0.446981 +0.981779 +0.544169 +0.819791 +0.850840 +0.932073 +0.970984 +0.860275 +0.843833 +0.854391 +0.850434 +0.934507 +0.933616 +0.756942 +0.955300 +-2.139857 +0.795938 +0.564218 +-0.047690 +0.936358 +0.953330 +0.273448 +0.627064 +0.955272 +0.950656 +0.875566 +0.860155 +0.903332 +0.752595 +0.576831 +0.963611 +0.845015 +0.920860 +0.935029 +0.841954 +0.841881 +0.833133 +0.549272 +0.944788 +0.614363 +0.362119 +0.249537 +0.550437 +0.782873 +0.675405 +0.512853 +0.688163 +0.810326 +0.734611 +0.599323 +0.684458 +0.552208 +0.609639 +0.903776 +0.771856 +0.898013 +0.733381 +0.837840 +0.409965 +0.718602 +0.496843 +0.464915 +0.667048 +0.815062 +0.736033 +0.768637 +0.315279 +0.708452 +0.758500 +0.782393 +0.779165 +0.861917 +0.735937 +0.461177 +0.891218 +0.689534 +0.479286 +0.778194 +0.839666 +0.997586 +0.474887 +0.638691 +0.462287 +0.895920 +0.691331 +0.595459 +0.592651 +0.686499 +-0.388246 +0.703726 +0.926617 +0.926617 +0.575891 +0.007858 +0.729904 +0.731004 +-0.103365 +0.938638 +0.363927 +-0.074956 +0.871083 +0.032582 +0.834413 +-0.072795 +0.627420 +0.487486 +0.652873 +0.387685 +0.560911 +0.911136 +0.383736 +0.099480 +0.051913 +0.672613 +0.316074 +0.271236 +0.402361 +0.638660 +0.150981 +0.064117 +0.611378 +0.833453 +0.438658 +0.305340 +0.031487 +0.282679 +0.206320 +0.123006 +0.146433 +0.965805 +0.176635 +0.251265 +-8.209999 +0.456726 +0.161651 +0.091527 +0.114957 +0.066194 +0.566650 +0.058053 +0.273142 +0.020735 +0.006221 +0.088088 +0.777009 +0.286966 +0.873936 +0.923203 +-0.013761 +-0.226601 +0.957187 +0.675785 +0.558340 +0.698661 +0.476686 +-0.297158 +0.304384 +0.737023 +-0.728982 +0.839508 +0.619534 +0.697649 +0.936163 +0.566961 +0.942662 +0.594671 +0.954358 +0.992911 +0.673938 +0.938404 +0.888463 +0.911085 +0.771285 +0.826555 +0.921001 +0.902922 +0.760657 +-0.026320 +0.149369 +0.078292 +0.464082 +-0.026245 +0.907257 +0.595982 +0.900135 +0.164884 +-3.389410 +0.934342 +0.881201 +-163.021015 +0.916538 +0.362314 +0.856943 +0.742672 +0.872601 +0.330981 +0.883832 +0.892481 +0.995372 +0.937810 +0.996594 +0.864628 +-337.399560 +0.937041 +0.391352 +0.823190 +0.039059 +0.641456 +0.093617 +0.157492 +0.112756 +-0.436901 +0.914026 +0.975215 +0.623632 +0.382028 +0.645125 +0.811982 +0.896381 +-3.648616 +0.743823 +0.677448 +0.743290 +0.793117 +0.878778 +0.449567 +0.741754 +0.889328 +0.561375 +0.163509 +0.955627 +0.182465 +0.260767 +0.944370 +0.796007 +0.459207 +0.994035 +0.478310 +0.920802 +0.945676 +0.750940 +0.594680 +0.743166 +0.577640 +0.837827 +0.171026 +0.627278 +0.859826 +0.890512 +0.264239 +0.482895 +0.283463 +-0.248735 +0.658712 +0.119973 +0.159682 +0.018396 +0.971766 +0.821344 +0.843694 +0.780168 +0.457677 +0.503288 +0.569375 +0.094439 +0.837251 +0.618954 +0.874864 +0.666194 +0.425139 +0.549948 +0.316572 +0.132088 +0.409880 +0.697333 +0.465446 +0.499327 +0.484946 +0.395821 +0.090546 +0.638169 +0.246918 +0.220371 +0.121619 +0.161858 +0.202102 +0.056932 +0.522035 +0.979671 +0.370504 +0.793608 +0.890910 +0.182630 +0.367253 +0.997029 +0.109311 +0.180496 +0.056789 +0.856318 +0.727495 +0.100053 +-0.041266 +0.426498 +0.270357 +0.300743 +0.500934 +0.792622 +0.070763 +0.164583 +0.544230 +0.415318 +0.516905 +0.593893 +0.620554 +0.958548 +0.486417 +0.383480 +0.482524 +0.646591 +-0.133470 +0.748375 +0.013269 +0.661323 +0.678250 +0.481861 +0.002818 +0.892009 +0.094791 +0.054741 +0.155429 +0.304518 +0.656748 +0.358621 +0.330882 +0.284125 +0.009794 +0.871994 +0.117663 +0.768958 +0.715593 +0.110217 +0.002692 +0.099777 +0.156921 +0.324990 +-0.720787 +0.354550 +0.343893 +0.806025 +-0.042468 +0.787790 +0.179043 +0.796862 +0.675836 +0.697692 +0.839068 +0.218856 +0.262848 +0.125579 +-0.355796 +0.063815 +0.781523 +0.069018 +0.469765 +0.098112 +0.581809 +-0.002926 +0.121829 +0.637214 +0.951088 +0.901803 +0.982412 +0.915114 +0.171259 +0.435104 +0.452956 +0.995258 +0.854756 +0.988296 +0.023234 +0.323008 +0.452563 +0.789675 +0.982652 +0.366497 +0.616339 +0.510820 +0.085961 +0.541861 +0.513904 +0.369277 +0.516319 +0.632962 +0.678473 +0.101551 +0.881590 +0.856886 +0.311275 +0.387749 +0.057620 +0.557963 +0.718546 +0.284146 +0.875463 +0.921372 +0.973954 +0.649651 +0.886227 +0.965538 +0.716753 +0.604530 +0.995673 +0.878278 +0.844682 +-11.408517 +-423.078216 +0.606139 +0.453394 +0.877121 +0.668564 +0.885920 +0.905301 +0.942467 +0.341564 +0.936564 +0.847477 +0.936191 +0.796623 +0.936691 +0.465958 +0.850017 +0.702629 +0.410281 +0.857171 +0.490268 +0.880347 +0.416363 +0.504767 +0.567167 +0.441338 +0.459238 +0.748959 +0.395002 +0.865352 +0.486547 +0.908905 +0.881256 +0.785109 +0.936842 +0.534178 +0.410348 +0.369174 +0.969147 +0.680759 +0.406645 +0.497204 +0.599629 +0.929575 +0.122894 +0.731168 +0.671342 +0.889202 +0.922128 +0.315810 +0.913565 +0.920039 +0.344544 +0.178984 +0.600011 +0.893883 +0.444765 +0.556251 +0.706908 +0.941378 +0.278458 +0.318383 +0.682131 +0.841408 +0.906897 +0.432313 +0.498681 +0.969446 +0.561863 +0.326435 +0.346393 +0.893060 +0.396783 +0.331374 +0.548317 +0.918609 +0.403348 +0.947982 +0.404542 +0.945456 +0.926422 +0.973315 +0.698556 +0.481201 +0.419819 +0.874866 +0.892838 +0.386500 +0.577062 +0.427365 +0.122425 +0.145911 +0.945320 +0.880242 +0.818065 +0.890854 +0.892906 +0.981636 +0.839142 +0.892150 +0.913098 +0.605205 +0.524602 +0.366130 +0.371135 +0.615708 +0.694991 +0.421647 +0.309679 +0.774706 +0.318995 +0.794469 +0.928863 +0.605185 +0.700410 +0.583894 +0.583894 +0.575888 +0.634892 +0.103982 +0.412017 +0.461328 +0.012353 +0.519600 +-0.052029 +0.478143 +0.498395 +0.479964 +0.482022 +0.441890 +0.441890 +0.441890 +0.441890 +-0.010123 +-0.165134 +0.654965 +0.967131 +0.901875 +0.518075 +0.438048 +0.668609 +0.428638 +0.481636 +0.481636 +0.529702 +-0.207970 +0.828830 +0.994093 +0.776904 +0.832908 +0.796803 +0.375242 +0.827578 +0.878704 +0.451874 +0.526825 +0.466347 +0.882008 +0.850639 +0.541021 +0.947144 +0.747385 +0.627195 +0.263313 +0.395158 +0.964219 +0.862913 +0.953031 +0.386834 +0.924153 +0.913827 +0.831377 +0.938241 +0.230704 +0.732325 +0.892402 +0.995520 +-0.016486 +0.698309 +0.217733 +0.052023 +0.377930 +0.416654 +0.925790 +-10.563526 +0.101776 +0.602812 +0.807111 +0.574182 +0.668667 +0.346379 +-0.021742 +0.808077 +0.180434 +0.626459 +0.436690 +0.403792 +0.290072 +0.352703 +0.817287 +0.766136 +0.918356 +-0.000371 +0.347999 +0.860489 +0.703839 +0.837652 +0.652932 +0.113213 +0.536867 +0.775936 +0.866091 +0.401416 +0.824406 +0.603028 +0.469545 +0.538854 +0.043987 +0.262935 +0.301608 +0.662510 +0.554030 +0.991930 +0.133110 +0.379168 +0.896088 +0.601946 +0.532959 +0.698868 +0.507911 +-0.035881 +0.149907 +0.111562 +0.605721 +0.098045 +0.416998 +-0.947492 +0.586810 +0.047364 +0.533851 +0.380505 +-0.000221 +-0.022942 +0.493657 +0.690444 +0.241134 +0.505913 +0.761669 +0.346245 +0.097364 +0.186831 +0.927095 +0.077947 +0.111866 +0.119744 +0.140108 +0.890252 +0.315834 +0.846274 +0.497958 +0.219386 +0.219333 +0.219192 +0.553116 +0.487749 +0.476440 +0.498245 +0.186255 +0.980653 +0.761262 +0.165206 +0.635896 +0.233536 +0.928482 +0.939388 +0.171474 +0.492914 +0.743937 +0.494679 +0.765142 +0.977113 +0.173915 +0.173915 +0.127445 +0.571602 +-0.045573 +-0.031278 +0.120939 +0.247401 +0.390889 +0.422401 +0.518390 +0.247435 +0.498893 +-1.158097 +0.905143 +0.774303 +0.582128 +0.593486 +0.715640 +0.765851 +0.390649 +0.556856 +-1.524204 +0.664644 +0.274130 +0.612172 +0.602657 +0.755469 +0.852487 +0.880590 +0.635857 +0.865347 +0.605859 +0.599415 +0.764149 +0.242186 +0.823846 +0.563385 +0.584109 +0.579945 +0.517317 +0.529360 +0.901724 +0.984593 +0.207629 +0.987316 +0.825251 +0.338632 +0.723640 +0.496002 +0.827159 +0.014883 +0.874343 +0.368256 +0.857281 +0.806182 +0.767401 +0.986717 +0.496444 +0.939426 +0.371092 +0.293155 +0.460958 +-0.050875 +0.502965 +-0.023007 +0.443637 +0.306291 +0.556889 +0.698290 +0.896760 +0.266559 +0.573369 +0.423619 +0.835005 +0.811862 +0.986678 +-3.389146 +0.408121 +0.997823 +0.765307 +0.967172 +0.896126 +-2.212845 +0.106914 +0.340097 +0.005466 +0.517453 +0.211404 +0.633957 +0.915882 +-3.184632 +0.839472 +0.098098 +0.972376 +0.317791 +0.288050 +0.277638 +-0.016727 +0.841857 +0.596000 +-0.017457 +0.089181 +0.497672 +0.671753 +0.559917 +0.552064 +0.291782 +0.364505 +0.096880 +0.721363 +0.251353 +0.441984 +0.279232 +0.365366 +0.219168 +0.515172 +0.226509 +0.858158 +0.802711 +0.746246 +0.697145 +0.906512 +0.068001 +0.541976 +0.333210 +0.439267 +0.655755 +0.429789 +0.977724 +0.733980 +0.568241 +0.082001 +0.961297 +0.741057 +0.645832 +0.365691 +0.071292 +0.283831 +0.148608 +0.159131 +0.012146 +0.777865 +0.073334 +0.936080 +0.947430 +-6.352731 +0.326946 +0.097217 +0.284851 +0.244732 +0.277086 +-0.038251 +0.661516 +0.975031 +0.283125 +0.829930 +0.744411 +0.376568 +0.544950 +0.853967 +0.789463 +0.162780 +0.115283 +0.208776 +0.648308 +0.170645 +0.236550 +0.522326 +0.532291 +0.921131 +0.133735 +-0.538806 +0.007658 +0.022931 +0.071535 +0.779206 +0.965071 +0.313033 +0.282562 +0.992013 +0.014948 +0.935412 +-0.012223 +0.610527 +0.288301 +0.946327 +0.938716 +0.026376 +0.097402 +0.006917 +0.428541 +0.656086 +0.732741 +0.680650 +0.614828 +0.424452 +0.610418 +0.815164 +0.702544 +0.172278 +0.948316 +0.931057 +-0.141739 +0.186433 +0.453517 +0.946622 +0.423564 +0.922422 +0.458140 +0.608523 +0.220282 +0.362139 +0.384158 +0.913409 +0.358903 +0.700127 +0.924593 +0.673465 +0.831552 +0.726658 +0.931831 +0.944603 +0.918458 +0.964606 +0.974092 +0.476927 +0.915050 +0.359030 +0.212378 +0.638268 +0.711974 +0.699870 +0.177617 +0.710785 +0.430679 +0.349030 +0.207680 +0.962668 +0.145148 +0.221178 +0.044410 +0.147795 +-0.002918 +0.531944 +0.609689 +0.306873 +0.924597 +0.235291 +0.573900 +0.071317 +0.089986 +-1.910880 +0.098679 +0.746630 +0.071544 +0.222637 +0.354774 +0.799727 +0.023658 +0.772962 +0.127324 +0.352051 +0.301901 +-0.035355 +0.484470 +0.104885 +0.388417 +0.609983 +0.214517 +0.568422 +0.127026 +0.144335 +0.210267 +0.669126 +0.209209 +0.834602 +0.363831 +0.605709 +0.260314 +0.379722 +-0.260370 +0.881622 +0.227627 +0.378046 +0.433404 +-0.076680 +0.455751 +0.774515 +0.408112 +0.467149 +0.434805 +0.790719 +0.991832 +0.282476 +-0.427282 +0.592095 +0.326201 +0.855470 +0.905729 +0.891496 +0.524237 +0.676713 +0.836837 +0.551618 +0.648271 +0.570380 +0.552033 +0.551723 +0.551631 +0.551769 +0.551740 +0.576648 +0.576648 +0.576648 +0.576648 +0.576648 +0.576648 +0.617113 +0.040040 +0.852052 +0.404325 +0.404325 +-18.462279 +0.065380 +0.419014 +0.721267 +0.862029 +0.674865 +-0.473554 +0.960137 +0.888532 +0.778325 +0.742376 +0.777745 +0.291149 +0.971452 +0.764251 +0.781379 +0.841104 +0.545051 +0.747982 +0.924791 +0.453131 +0.463651 +0.299495 +0.916613 +0.949146 +0.462632 +0.623147 +0.251110 +0.896352 +0.259309 +0.800414 +0.493406 +0.855937 +0.497529 +0.824359 +0.722140 +0.575648 +0.310373 +0.902972 +0.575102 +-4.193473 +0.706417 +0.912644 +0.389220 +0.687256 +-46.619008 +0.839001 +0.695548 +0.921354 +0.951317 +0.491534 +0.941510 +0.893828 +0.782944 +0.735519 +0.697781 +0.610078 +-0.510451 +0.408184 +0.815027 +0.804655 +0.688214 +0.647772 +-0.536880 +0.771112 +0.932898 +0.735753 +0.951972 +0.912947 +0.573201 +0.961388 +0.128901 +0.987321 +0.498589 +0.452386 +0.931058 +0.164446 +-0.142482 +0.025004 +0.622807 +0.607026 +0.631960 +0.145553 +0.682770 +-0.000345 +0.597615 +0.274407 +0.448633 +0.427434 +0.692931 +0.546339 +0.878519 +0.862540 +0.596871 +0.743974 +0.153946 +0.404621 +0.227784 +0.243319 +-0.111571 +0.078816 +0.560211 +0.249325 +0.982018 +0.412443 +0.768560 +0.884986 +0.851557 +0.403154 +0.864326 +-0.019698 +0.832281 +0.112037 +0.259560 +0.032785 +-0.450506 +0.241740 +0.709195 +0.550014 +0.494875 +0.107622 +0.137767 +0.638187 +0.429982 +0.455209 +0.928281 +0.465802 +0.638651 +0.697551 +-0.316784 +0.595312 +0.755539 +0.596503 +0.684690 +0.687799 +-0.279107 +0.771863 +0.520884 +0.270158 +0.069106 +0.728243 +0.855947 +0.766364 +0.852444 +0.252350 +0.492363 +0.362313 +0.879935 +0.921914 +0.827541 +0.722524 +0.145959 +0.215580 +0.815960 +0.645247 +0.412588 +0.333932 +0.111131 +0.311947 +-0.253593 +0.839768 +0.900474 +0.903436 +0.929285 +0.831328 +0.718646 +0.923219 +0.639553 +0.924524 +0.843701 +0.888537 +0.919820 +0.864236 +0.816450 +0.959685 +0.973157 +0.953823 +0.860695 +0.944690 +0.994582 +0.947114 +0.774111 +0.321551 +0.335492 +0.924668 +0.673896 +0.929473 +0.956735 +0.916129 +0.928319 +0.706654 +0.924492 +0.491065 +0.939788 +0.850927 +0.867086 +0.853071 +0.785149 +0.846097 +0.494498 +0.594008 +0.117733 +0.053318 +0.377425 +0.491604 +0.365225 +0.642763 +0.912309 +0.929953 +0.886628 +0.881684 +0.278212 +0.923532 +0.702322 +0.843988 +0.955640 +0.926063 +0.407715 +0.248304 +0.499005 +0.620231 +0.927368 +0.773597 +0.737635 +0.693615 +0.937172 +0.714707 +0.781138 +0.604636 +0.869983 +0.685868 +0.967148 +0.553774 +0.654870 +0.761191 +0.988986 +0.991224 +0.655773 +0.712751 +0.038717 +0.448845 +0.651952 +0.892456 +0.947629 +0.432733 +0.798360 +0.090341 +0.514698 +0.482685 +0.805606 +0.731484 +0.626951 +0.951721 +-0.115770 +0.837050 +0.787544 +0.884598 +0.945338 +0.087571 +0.706142 +-0.459382 +0.959571 +0.949349 +0.890618 +0.664503 +0.238637 +0.946224 +0.577678 +0.905289 +0.767685 +0.800698 +0.269334 +0.226152 +0.794297 +0.103002 +0.852082 +0.834829 +0.772893 +0.779883 +0.828866 +0.932297 +0.890468 +0.954393 +0.851318 +0.613002 +0.915395 +0.939374 +0.924565 +0.824426 +0.732289 +0.456637 +0.956193 +0.991760 +0.403123 +0.993385 +0.929380 +0.935368 +0.928717 +0.956111 +0.928160 +0.942536 +0.958131 +0.932870 +0.928543 +0.933687 +0.213862 +0.830450 +0.894318 +0.510565 +0.784062 +0.874723 +0.206537 +0.914311 +0.722277 +0.883470 +0.818406 +0.711657 +0.563444 +0.322415 +0.708034 +0.028544 +0.069441 +0.323333 +0.229300 +0.267253 +-0.026414 +0.910021 +0.080939 +0.531402 +0.120580 +0.226106 +0.560525 +0.471849 +0.535805 +-0.020857 +0.662305 +0.062245 +-0.725976 +0.302469 +0.197961 +0.011859 +0.098691 +0.845653 +0.909673 +0.099691 +0.403988 +0.046284 +0.407374 +0.868477 +0.691955 +0.653498 +0.040012 +0.477152 +0.524313 +0.943627 +0.829694 +-0.160458 +0.922451 +0.209770 +0.501731 +0.514713 +0.361636 +0.357808 +0.380908 +0.703056 +0.471858 +0.943751 +0.043419 +0.728650 +0.878642 +0.975439 +0.675567 +0.841063 +0.520017 +0.700016 +0.896652 +0.452651 +0.664401 +0.411190 +0.965873 +0.978656 +0.584917 +0.922247 +0.817271 +0.564679 +0.491813 +0.957571 +0.361365 +0.811060 +0.899604 +0.897834 +0.897478 +0.565501 +0.893637 +0.944912 +0.886186 +0.320028 +0.882819 +0.153307 +0.712021 +0.579731 +0.630943 +0.602654 +0.745504 +0.261623 +0.974295 +0.579197 +0.910156 +0.974625 +0.937403 +0.598275 +0.932099 +-0.079226 +0.932546 +0.810138 +0.869306 +0.478016 +0.186892 +0.334159 +0.241753 +0.376488 +0.666918 +0.320441 +0.549721 +0.926653 +0.000456 +0.898629 +0.452948 +0.549268 +0.926777 +0.864892 +0.923578 +0.903301 +0.912383 +0.642518 +0.632546 +0.456086 +0.613533 +0.917831 +0.719297 +0.711312 +0.322237 +0.766880 +0.550905 +0.624264 +0.699487 +0.466630 +0.486765 +0.481203 +0.504110 +0.353977 +0.981181 +0.881064 +0.603373 +0.720111 +0.321094 +0.931432 +0.900405 +0.803245 +0.982152 +0.422674 +0.941047 +0.445605 +0.304691 +0.455846 +0.558226 +0.931858 +0.579630 +0.903535 +0.559267 +0.756724 +0.494104 +0.828892 +0.383764 +0.518057 +0.316685 +0.951982 +0.791857 +0.889851 +-0.097038 +0.762076 +0.933777 +0.959138 +0.506129 +0.818505 +0.519092 +0.458185 +0.308589 +0.535977 +-0.001417 +0.893942 +0.005794 +0.999486 +0.846230 +0.759302 +0.481629 +0.935433 +0.484455 +0.605932 +0.725684 +0.614082 +0.633194 +0.724244 +0.915754 +0.769134 +0.768439 +0.768910 +0.308992 +0.517595 +0.728882 +0.748883 +0.587341 +0.673300 +0.769064 +0.769621 +0.695080 +0.628838 +0.406692 +0.924643 +0.517325 +0.639447 +0.658860 +0.924426 +0.572651 +0.973048 +0.514443 +0.691968 +0.926093 +0.930027 +0.856898 +0.438063 +0.703181 +0.694035 +0.475862 +0.448701 +0.447185 +0.592888 +0.432332 +0.759891 +0.970587 +0.133355 +0.581078 +-0.677873 +0.464765 +0.676286 +0.923056 +0.934218 +0.935424 +0.801675 +0.955159 +0.536844 +0.887127 +0.801079 +0.746581 +0.368767 +0.669178 +0.316603 +0.757505 +-1.214591 +0.479622 +0.267015 +0.925246 +0.318454 +0.536603 +0.847346 +0.896209 +0.842101 +0.855607 +0.014591 +0.991065 +0.898364 +0.994283 +-0.207476 +0.764577 +0.400277 +0.667360 +0.195979 +0.275346 +0.060201 +0.518922 +0.130760 +0.194146 +0.904532 +0.500729 +0.321964 +0.379411 +0.074706 +0.115262 +0.714582 +0.389800 +0.207029 +0.123427 +0.031336 +-0.000664 +0.921661 +0.798911 +0.546558 +-0.135508 +0.831892 +0.131718 +0.221673 +0.585281 +0.615901 +0.435917 +0.220256 +0.480369 +0.013661 +0.117517 +0.649916 +0.131440 +0.395615 +0.882891 +0.283815 +0.576358 +0.586556 +0.942370 +0.356986 +0.344221 +0.286474 +0.573170 +0.211093 +0.225913 +0.389464 +0.510503 +0.230233 +0.982714 +0.956222 +-0.321469 +0.670995 +0.849013 +0.856737 +0.419624 +0.833388 +0.957230 +0.797733 +0.507066 +0.874833 +0.283547 +0.250446 +0.953566 +0.558477 +0.821471 +0.525852 +0.762841 +0.486493 +0.254019 +0.518564 +0.881490 +0.838030 +0.751221 +0.401219 +0.441879 +0.075064 +0.928109 +0.396495 +0.590782 +0.314392 +0.344086 +0.938783 +-0.258015 +0.967210 +0.865576 +0.793173 +0.828150 +0.491673 +0.657547 +0.335103 +0.619639 +0.747130 +0.829803 +0.679920 +0.827280 +0.481995 +0.752999 +0.981264 +0.905181 +0.693551 +0.286011 +0.655905 +0.937559 +0.316264 +0.360426 +0.916697 +0.484787 +0.438132 +0.408792 +0.735775 +0.412844 +0.803862 +0.897299 +0.597323 +0.444505 +0.173031 +0.421780 +0.444433 +0.922720 +0.670386 +0.650079 +0.623226 +0.684486 +0.925941 +0.814405 +0.836030 +0.952508 +-0.136192 +-0.841071 +0.828177 +0.845292 +0.293820 +0.969917 +0.909810 +0.929282 +0.443439 +0.764216 +0.461146 +0.928143 +0.814233 +0.648323 +0.925373 +0.751667 +0.486770 +0.607345 +0.571288 +0.887786 +0.504724 +0.925227 +0.907667 +0.292782 +0.691615 +0.885337 +0.448065 +0.743785 +0.210771 +0.799292 +0.487633 +0.940726 +0.908907 +0.903758 +0.908256 +0.869058 +-16.964602 +0.764742 +0.955126 +-201.320038 +0.866058 +0.137783 +0.740970 +0.807947 +0.941809 +0.711625 +0.590670 +0.730538 +0.721901 +0.649873 +0.222808 +0.188151 +0.054118 +0.862448 +0.162621 +0.902112 +-3.321316 +0.445526 +0.365945 +0.173841 +0.856993 +0.243774 +0.798534 +0.237108 +0.188231 +0.926885 +0.197706 +0.680772 +0.461997 +0.836217 +0.003528 +-0.511969 +0.881356 +0.796763 +0.898843 +0.708897 +0.930139 +0.981214 +0.832657 +0.697079 +0.508632 +0.582396 +0.342384 +0.422992 +0.811712 +0.276282 +0.617478 +0.554526 +0.967727 +0.570594 +0.360594 +-0.124371 +0.535828 +-0.734659 +0.971676 +0.845520 +0.773595 +0.036258 +0.847259 +0.650810 +0.630673 +0.481376 +-0.027630 +0.057379 +0.099234 +0.285439 +0.969129 +0.927560 +-0.301265 +0.226522 +-0.809594 +0.994649 +0.366296 +0.595391 +0.348477 +0.799726 +0.443021 +0.098537 +-0.271550 +-0.300709 +0.116806 +0.636812 +0.927155 +0.934614 +0.543889 +0.994039 +0.260153 +-7.007543 +0.082582 +0.588557 +0.302264 +0.140848 +0.388221 +0.591744 +0.997129 +0.994645 +0.275726 +0.779232 +0.260581 +0.153110 +0.796896 +0.088488 +-0.059986 +0.655182 +0.225105 +0.998006 +0.444951 +0.358203 +0.914464 +0.387758 +0.852064 +0.713106 +0.327589 +0.423966 +0.797281 +0.452373 +0.616140 +-0.041595 +0.197038 +0.366710 +-0.224749 +0.562335 +0.928860 +0.540096 +0.040914 +-0.051258 +0.657902 +0.577301 +0.648597 +0.174442 +0.287770 +0.244131 +0.093185 +0.344222 +0.951681 +0.390152 +0.674078 +0.890718 +0.689232 +0.860986 +0.709132 +0.892642 +0.532900 +0.820937 +0.159398 +-0.836242 +0.506344 +0.552737 +0.077472 +0.107025 +0.000652 +-1.992176 +0.160249 +-0.000194 +0.163086 +0.863604 +0.202843 +0.923791 +0.882551 +0.720308 +0.905447 +0.845502 +0.833643 +0.647291 +0.815623 +0.880649 +0.820874 +0.845074 +0.907566 +0.765966 +0.568966 +0.776709 +0.869805 +0.608149 +0.869192 +0.814220 +0.786040 +0.940647 +0.934733 +0.344358 +0.552605 +0.979615 +0.962621 +-0.233628 +0.901948 +0.876267 +0.759503 +0.860786 +0.952216 +0.771688 +0.593819 +0.882051 +0.772271 +0.896882 +0.832713 +0.328649 +0.265807 +-0.810826 +0.922069 +0.517722 +0.619381 +0.804012 +0.438454 +0.803414 +0.891484 +0.944971 +0.899304 +0.253786 +0.860510 +0.876822 +0.324093 +0.655291 +0.509984 +0.928032 +0.634755 +0.766317 +0.623014 +0.762487 +0.839747 +0.902453 +0.879949 +0.810740 +0.642277 +0.617274 +0.938945 +0.704613 +0.698870 +0.825419 +0.699025 +0.437027 +0.434468 +0.723101 +0.932960 +0.384612 +0.595035 +0.750088 +0.685512 +0.863111 +0.886321 +0.475824 +0.706532 +0.754380 +0.397089 +0.889571 +0.291082 +0.935670 +0.878488 +0.829674 +0.694832 +0.628737 +0.859519 +0.618796 +0.711173 +0.743235 +0.835834 +0.624281 +0.691246 +0.437553 +0.888669 +0.931531 +0.683262 +0.986852 +0.749894 +0.508676 +0.939397 +0.636156 +0.519244 +0.868519 +0.345240 +-0.415399 +-0.008766 +0.554114 +-0.112313 +0.236567 +0.676632 +0.348094 +0.817040 +0.636862 +0.846584 +0.930965 +0.786308 +0.045004 +0.581932 +0.827587 +0.646709 +0.709350 +0.671327 +0.880691 +0.394626 +0.719468 +0.472149 +0.398250 +-0.340342 +0.521251 +0.395439 +0.316323 +0.873179 +0.925000 +0.864661 +0.624306 +0.534818 +0.492472 +0.534806 +0.469072 +0.492473 +0.533430 +0.618515 +0.429322 +0.463878 +0.800817 +0.997518 +0.969773 +0.574003 +-0.004098 +0.532268 +-0.208861 +0.543711 +0.323662 +0.357346 +0.829285 +0.606492 +0.627416 +0.855610 +0.574339 +0.991887 +0.366399 +0.304592 +0.300436 +0.751115 +0.710154 +0.133756 +0.233930 +0.542171 +0.042543 +0.068379 +0.513332 +0.624252 +0.156841 +0.000942 +0.932677 +0.876614 +0.637702 +0.915333 +-0.078906 +0.624631 +0.790809 +-0.267423 +0.631412 +0.549241 +0.476980 +0.397696 +0.187793 +0.212236 +0.601864 +0.236534 +0.915985 +0.307412 +0.492185 +0.373088 +0.955074 +0.971513 +0.726368 +0.948916 +0.615710 +0.170995 +0.648799 +0.909693 +0.180243 +0.924866 +0.829413 +0.339794 +0.723364 +0.163346 +0.918762 +0.917125 +0.913210 +-0.125859 +0.927756 +0.933066 +0.239275 +0.732464 +0.395989 +0.458713 +0.270188 +0.928282 +0.787061 +0.668668 +0.450119 +0.203960 +0.815919 +-0.186502 +0.289346 +0.818096 +0.836212 +-0.217187 +0.723021 +0.690670 +0.807586 +0.753725 +0.272262 +0.652641 +-0.140154 +0.941567 +0.712285 +0.137952 +0.950396 +0.844486 +0.856037 +0.868769 +0.425352 +0.217256 +0.604578 +-0.156298 +0.361207 +-0.121865 +0.832585 +0.130090 +0.309391 +-0.162810 +-0.085933 +0.938532 +0.887599 +0.379126 +0.141310 +0.966504 +0.294686 +0.764415 +0.336122 +0.788839 +0.652042 +0.868808 +0.650715 +0.428546 +-0.407769 +0.263330 +-0.231338 +0.797344 +0.026108 +-0.114428 +0.448863 +0.485422 +0.197263 +0.929059 +0.806227 +0.538303 +0.439556 +0.778753 +-0.112644 +0.664950 +0.858220 +-0.237055 +-0.217612 +-0.286311 +-0.145278 +0.779849 +-0.239553 +0.014521 +0.043458 +-0.328733 +0.628836 +0.519636 +0.507156 +0.573818 +0.271365 +0.817667 +0.920105 +-0.225249 +0.608668 +0.533627 +0.347359 +0.874198 +0.596934 +0.817684 +0.867162 +0.666828 +0.445141 +0.710626 +0.520778 +0.937737 +0.505784 +0.927544 +0.908896 +0.857503 +0.839895 +0.572273 +0.321797 +0.838541 +0.644003 +0.320644 +0.934802 +0.506443 +0.870149 +0.786395 +0.908366 +0.864844 +0.504936 +0.733920 +0.496289 +0.845110 +0.878990 +0.792718 +0.939074 +0.849848 +0.775556 +0.860528 +0.486964 +0.666973 +0.823377 +0.710552 +0.557799 +0.832877 +0.745567 +0.740865 +-1.049996 +0.927663 +0.790629 +0.696256 +0.870268 +0.882231 +0.898844 +0.788779 +0.931288 +0.966307 +0.798738 +0.754419 +0.567684 +0.839916 +0.599619 +0.586702 +0.943938 +0.705286 +0.810337 +0.061493 +0.723457 +0.678543 +0.780930 +0.586782 +0.873657 +0.633227 +0.564929 +0.752324 +0.921403 +0.931937 +0.893098 +0.297368 +-0.429165 +0.949902 +0.700695 +0.707049 +0.905774 +0.725794 +0.658442 +0.813385 +0.153599 +0.888806 +0.435006 +0.524380 +0.776146 +-0.462503 +-0.160015 +0.028330 +0.132469 +-0.188556 +0.032254 +0.555763 +-0.202869 +-0.074554 +0.650113 +-0.067623 +0.700824 +0.932361 +-0.065284 +0.763352 +-0.167642 +-1.180066 +0.753928 +0.801065 +0.220468 +0.470076 +0.780700 +0.303556 +0.805398 +0.724271 +0.231520 +0.807959 +-0.100018 +0.655992 +-0.170528 +0.941929 +0.602052 +0.761489 +-0.139361 +-0.058888 +0.678568 +0.725894 +0.924028 +-0.248341 +0.696827 +-0.144385 +0.470560 +-0.141409 +0.335903 +0.340227 +0.249429 +0.559769 +0.412012 +0.739909 +0.795629 +0.769238 +0.475919 +0.703981 +0.206323 +0.693193 +0.601747 +0.775789 +0.594730 +0.816228 +0.578567 +0.764429 +0.585968 +0.756950 +0.523228 +0.581212 +-0.419553 +0.516383 +-0.118876 +0.703699 +-1.380704 +0.573719 +0.751495 +0.993058 +0.173251 +0.685926 +0.751037 +0.872477 +0.780215 +0.767395 +-0.178065 +0.248067 +0.744850 +-0.238853 +0.750192 +-0.178886 +0.681081 +0.735302 +0.837346 +0.942721 +0.845431 +0.936228 +-0.311194 +0.758320 +0.756368 +0.760955 +0.814936 +0.635170 +0.742335 +0.860309 +0.062186 +0.464328 +0.756225 +-0.071785 +-0.128850 +-0.184901 +0.749451 +-0.175966 +0.611297 +0.862110 +0.357844 +0.838282 +-0.176620 +-0.126413 +-0.028798 +0.702018 +0.763674 +0.590392 +0.721787 +0.237699 +0.429508 +0.949360 +-1.185472 +-0.242271 +0.815586 +0.277779 +0.931969 +0.581449 +0.931792 +0.278429 +-0.142936 +0.474851 +0.246201 +0.995432 +0.848191 +0.474034 +0.676746 +0.438122 +0.789998 +0.678925 +0.762340 +0.515415 +0.929582 +0.645796 +0.889803 +0.793320 +0.619594 +0.865681 +0.886339 +0.555349 +0.901318 +0.937138 +0.870891 +0.961365 +0.270967 +0.797266 +0.804008 +0.681008 +0.894224 +0.616501 +0.944426 +0.402522 +0.711430 +0.872570 +0.928999 +0.350488 +0.644637 +0.809674 +0.372380 +0.873857 +0.924636 +0.680933 +0.716826 +0.630418 +0.924396 +0.031589 +0.666982 +0.412250 +0.536270 +0.217249 +0.936473 +0.325238 +0.769762 +0.329579 +0.902228 +0.752102 +0.620083 +0.662053 +0.844974 +0.744312 +0.920908 +0.357126 +0.896288 +0.252129 +0.467103 +0.863136 +-0.105623 +0.845832 +-0.033678 +0.514507 +0.705139 +-0.155692 +0.635364 +0.914192 +0.440385 +0.755761 +-0.031083 +0.288912 +0.450456 +0.815508 +0.867397 +0.202519 +0.425868 +0.046018 +0.806884 +0.730742 +0.421300 +0.457992 +0.029524 +0.403401 +-0.231538 +0.979966 +0.543945 +0.317594 +0.987627 +0.811012 +0.716905 +0.931770 +0.788908 +0.915413 +0.856515 +0.681566 +-0.014870 +0.922673 +0.751508 +0.805673 +0.871243 +0.892473 +0.721935 +0.355323 +0.555483 +0.463667 +0.832895 +-0.079628 +0.682663 +0.783173 +0.928014 +0.837876 +0.927073 +0.692908 +0.851365 +0.890549 +0.827002 +0.708928 +0.717111 +0.784073 +0.503177 +0.649191 +0.819669 +0.781814 +0.735873 +0.705431 +0.692237 +0.475578 +0.900383 +0.554851 +0.640401 +0.864937 +0.748592 +0.596093 +0.877810 +0.881936 +0.138959 +0.862449 +-0.059708 +0.357628 +0.414562 +0.095862 +0.824499 +0.725386 +0.096210 +0.812311 +0.426070 +0.777866 +0.160251 +0.103897 +-0.289472 +0.406928 +0.764289 +0.718899 +-0.136934 +0.545626 +0.316995 +0.497988 +0.650556 +0.433783 +0.643958 +0.468552 +0.545948 +0.611104 +0.743922 +0.658945 +0.686880 +0.782166 +-0.111093 +0.809183 +0.827762 +0.850271 +0.694541 +0.677676 +0.315973 +-0.007734 +0.669643 +0.043305 +0.865356 +0.805657 +0.262924 +0.040365 +0.351104 +-0.157495 +0.621731 +0.368359 +0.407307 +0.622400 +0.677344 +0.929114 +0.673435 +0.824904 +0.834890 +0.559319 +0.686008 +0.884316 +0.391738 +0.932516 +0.352243 +0.621899 +0.665097 +0.930222 +0.752499 +0.914365 +0.738262 +0.892046 +0.937549 +0.909862 +0.983334 +0.543765 +0.909176 +0.930530 +0.610746 +0.724494 +0.465094 +0.681852 +0.725409 +0.369128 +0.662554 +0.817599 +0.303593 +0.718833 +0.768700 +0.889062 +0.585900 +0.213390 +0.348532 +0.780974 +0.653506 +-0.156086 +0.781625 +0.123479 +0.814447 +0.527037 +0.715209 +0.094501 +0.166064 +-0.239206 +0.526418 +0.981318 +0.353848 +0.399682 +0.473893 +0.871146 +0.487366 +0.127883 +0.142694 +-0.311670 +0.368887 +0.768829 +0.983187 +0.031129 +-0.106430 +-0.158870 +0.783404 +0.799782 +-0.204112 +-0.096775 +0.905827 +0.352909 +-0.349563 +-0.225948 +0.739268 +0.563032 +0.935613 +0.213204 +0.377054 +0.706391 +0.163242 +-0.176784 +0.670914 +0.294701 +0.790699 +-1.852052 +-0.354080 +0.810591 +0.883241 +0.901023 +0.794438 +0.332357 +0.849690 +0.829325 +0.175580 +0.593848 +0.932118 +-1.323871 +0.890299 +0.165261 +0.712162 +0.288063 +0.930486 +0.677650 +-0.515976 +0.819051 +0.956203 +0.557898 +0.681266 +0.927542 +0.245938 +0.340383 +0.725767 +0.834044 +0.033218 +-0.111392 +0.324935 +0.694054 +-0.222544 +0.845204 +0.472966 +0.346396 +0.012101 +0.798421 +0.215029 +0.784763 +0.847441 +0.234092 +0.457677 +0.632857 +0.720758 +-0.099408 +0.174564 +0.813006 +0.928290 +0.251399 +0.836083 +0.618811 +0.540740 +-0.182746 +-0.762225 +-0.208104 +-0.218018 +0.710487 +0.740137 +-0.187115 +0.667014 +0.788502 +0.271363 +0.680725 +0.810823 +0.732358 +0.593811 +0.836468 +0.761250 +0.296396 +0.713367 +0.092855 +0.808361 +0.431699 +0.733119 +0.202316 +0.673516 +0.070528 +0.866080 +0.366144 +0.628833 +0.658097 +0.453877 +0.629333 +0.814090 +0.310574 +0.477650 +0.357452 +-0.167186 +0.804103 +-0.168722 +0.615717 +0.602381 +0.451538 +0.631139 +0.721655 +0.813228 +0.386907 +0.760256 +0.262082 +0.606370 +0.551389 +0.831182 +0.792924 +0.895908 +0.788684 +0.871787 +0.863575 +-0.315166 +0.403963 +0.741890 +0.502623 +0.761048 +0.604180 +0.881922 +0.874316 +0.784402 +0.767834 +0.496079 +-0.291428 +0.770395 +0.514682 +0.711059 +-0.120227 +0.279667 +0.338388 +0.778107 +0.753152 +0.400727 +0.273512 +-0.245902 +-0.283875 +0.703076 +-0.008974 +0.866491 +0.777883 +0.268875 +0.232213 +0.801357 +0.933140 +0.027138 +0.076803 +0.013948 +-0.177169 +0.032364 +0.573766 +-0.226324 +0.824023 +0.857935 +0.448917 +-0.143003 +0.030846 +0.368083 +0.633902 +0.305367 +0.916065 +0.835844 +0.909090 +0.700699 +0.566620 +0.780802 +0.906670 +0.934149 +0.744811 +0.668082 +0.311460 +0.632270 +0.330667 +0.426411 +0.559114 +0.310178 +0.961925 +0.697457 +0.969580 +0.642793 +0.913773 +0.924701 +0.932182 +0.958073 +0.930138 +0.956894 +0.412198 +0.974027 +0.476857 +0.812976 +0.967701 +0.914528 +0.327094 +0.300496 +0.831919 +0.785386 +0.482394 +0.484674 +0.536612 +0.675648 +0.644174 +0.212688 +0.865247 +0.234384 +0.851945 +0.606334 +0.667672 +0.798626 +0.408230 +0.925289 +0.876243 +0.752322 +0.582674 +0.592954 +0.716986 +0.771034 +0.821049 +0.339292 +0.211585 +0.498151 +0.551870 +0.218282 +0.827602 +0.245715 +0.399938 +0.202309 +0.567219 +0.338685 +0.965581 +0.936365 +0.885021 +0.873502 +0.674620 +0.389733 +0.987049 +0.233438 +0.779588 +0.802326 +0.732518 +0.662337 +0.983310 +0.832986 +0.771780 +0.815436 +0.333416 +0.333416 +0.853592 +0.789987 +0.146981 +0.991749 +0.940998 +0.633731 +0.936309 +0.817073 +0.897162 +0.953876 +0.940583 +0.763099 +0.822822 +-1.272603 +0.395121 +0.254154 +0.159117 +0.485231 +-0.087578 +0.966070 +0.572391 +0.883050 +0.353272 +0.429256 +0.567989 +0.084775 +0.104852 +0.024760 +0.335775 +0.816897 +0.004817 +0.831923 +0.952357 +0.571509 +0.200074 +0.762700 +0.796458 +0.536298 +0.906732 +0.815869 +0.653125 +0.972905 +0.514653 +0.478254 +0.553210 +0.943175 +0.730923 +0.823268 +0.882669 +0.639709 +0.843445 +0.841215 +0.855423 +0.326488 +0.945730 +0.486854 +0.206492 +0.422570 +0.401052 +0.833223 +0.969867 +0.932348 +0.569604 +0.354009 +0.105901 +0.506728 +0.438881 +0.987420 +0.928097 +0.479774 +0.050931 +0.745726 +0.409951 +0.818593 +0.818365 +0.758275 +0.716437 +0.684086 +0.685349 +0.508244 +0.684865 +0.922335 +0.769415 +0.696317 +0.036220 +0.345636 +0.217884 +-0.057204 +0.504196 +0.551520 +0.722349 +0.172741 +0.147894 +0.272822 +0.187563 +0.304106 +0.250338 +0.354688 +0.726558 +0.230392 +0.239180 +0.019106 +0.760291 +0.863237 +0.936926 +0.690035 +0.942886 +0.712485 +0.796592 +0.860245 +0.815483 +0.351234 +0.888831 +0.887801 +0.781483 +0.799843 +0.849023 +0.864280 +0.796274 +0.266846 +0.803548 +0.309971 +0.547672 +0.140440 +0.147632 +0.008768 +-0.351635 +0.783603 +0.889944 +-1.097608 +0.853559 +0.756104 +0.931408 +0.931972 +0.928105 +0.825904 +0.802165 +0.634335 +0.841661 +0.984367 +0.935078 +0.483061 +0.143448 +0.667192 +0.647055 +0.842376 +0.962178 +0.754816 +0.465615 +0.938395 +0.435322 +0.801694 +0.700872 +0.953702 +0.557592 +0.943343 +0.770973 +0.831265 +0.933536 +0.851283 +0.881327 +0.730771 +0.904309 +0.532618 +0.516364 +0.400471 +0.846031 +0.740244 +0.801942 +0.704704 +0.795689 +0.754882 +0.764017 +0.411594 +0.324498 +0.344425 +0.115925 +0.762205 +0.726879 +0.389827 +0.888454 +0.774812 +0.339415 +0.576186 +0.751599 +0.739432 +0.720174 +0.608070 +0.769826 +0.785738 +0.747440 +0.911675 +0.716854 +0.287406 +-25.152233 +0.475168 +-29.943599 +0.644784 +0.133085 +0.456366 +-29.277588 +0.919050 +-31.533109 +0.786261 +0.548010 +-33.085396 +0.674347 +0.615652 +0.201306 +0.294198 +0.312634 +0.269735 +0.144026 +0.842145 +0.930932 +0.871152 +0.993717 +0.938400 +0.912991 +-0.107826 +0.825430 +0.755716 +0.957956 +0.555986 +0.526540 +0.840971 +0.722750 +0.931777 +0.649977 +0.734969 +0.726255 +0.767560 +0.976624 +0.979561 +0.430074 +0.117636 +0.842227 +0.644362 +0.696955 +0.735643 +0.827388 +0.936655 +0.581963 +0.328800 +0.486426 +0.250095 +0.042742 +0.948796 +0.193352 +0.041686 +0.226414 +0.264519 +0.236002 +0.903580 +0.021594 +0.217624 +0.626645 +0.856819 +0.222793 +0.141683 +0.781470 +0.331596 +0.892732 +0.356563 +0.063381 +0.887726 +0.303710 +-5.610484 +0.249962 +0.013995 +0.871962 +0.428437 +-0.001886 +0.708949 +0.071898 +0.087762 +0.415709 +0.126519 +0.481863 +0.299803 +0.046970 +0.308449 +0.724448 +0.941305 +0.813410 +0.042519 +0.153246 +0.970426 +0.467449 +0.304480 +0.325259 +-41.667679 +0.127498 +0.174048 +0.948870 +0.927710 +0.998713 +0.275708 +0.771861 +0.916838 +0.767465 +0.892542 +0.152409 +0.319341 +0.873814 +0.438339 +0.657258 +0.658723 +0.447359 +0.211702 +0.990070 +0.780781 +0.814665 +0.809782 +0.702927 +0.889224 +0.232928 +0.896313 +0.742478 +0.401871 +0.727486 +0.717282 +0.363218 +0.835592 +0.857490 +0.756325 +0.822077 +0.397620 +0.704022 +0.695796 +0.617922 +0.942757 +0.988368 +0.847460 +0.720501 +0.583061 +0.467799 +0.261414 +0.889552 +0.694738 +0.548517 +0.693139 +-0.423132 +0.110597 +0.356432 +0.533387 +0.328728 +0.294812 +0.459645 +0.212415 +0.301447 +0.380169 +0.370953 +0.336751 +0.102407 +0.637153 +0.587586 +-0.148343 +0.869692 +0.360408 +0.082514 +0.097078 +0.963359 +0.347719 +0.021851 +0.867651 +0.859226 +0.239249 +0.323832 +0.442501 +0.968339 +0.638430 +-0.263808 +0.521307 +0.445768 +0.475733 +-0.459102 +0.961194 +0.960225 +0.872964 +0.976884 +-0.042682 +0.725353 +0.847591 +0.757648 +0.647763 +0.915951 +0.854508 +0.821075 +0.849216 +0.423132 +0.413413 +0.722246 +0.481736 +-0.574940 +0.641450 +0.523287 +0.448910 +0.928337 +0.609972 +0.657254 +0.914072 +0.826436 +0.913469 +0.925115 +0.893839 +0.900734 +0.529485 +0.914008 +-0.251506 +0.088286 +0.323721 +0.920286 +0.860885 +0.730660 +0.818077 +0.822463 +0.676629 +0.270724 +0.354883 +0.838972 +0.366863 +0.843057 +0.968171 +0.534883 +0.792093 +0.707574 +0.225714 +0.378520 +0.442450 +0.944268 +0.636811 +0.783430 +0.778103 +0.957598 +0.874710 +-2.969318 +0.590381 +0.888141 +0.800543 +0.335913 +0.851490 +0.547107 +0.722404 +0.122148 +0.634233 +0.862825 +0.767121 +0.652685 +0.651518 +0.344547 +0.865027 +0.955926 +0.491404 +0.372497 +0.891896 +0.416065 +0.764765 +0.525987 +0.400200 +0.920779 +0.770080 +0.464985 +0.474670 +0.534090 +0.324202 +0.943656 +0.434782 +0.346705 +0.253343 +0.518120 +0.770558 +0.543248 +0.283525 +0.906597 +0.717352 +0.200715 +0.758783 +0.934723 +0.394761 +0.309443 +0.770526 +0.279822 +0.884994 +0.676063 +0.213923 +0.536271 +0.393075 +0.356701 +0.384792 +0.511687 +0.378305 +0.611760 +0.883038 +0.925835 +-0.111917 +0.039964 +-1.259299 +0.270956 +0.177017 +0.057524 +-0.828073 +0.170511 +0.321513 +0.505003 +0.895380 +0.839192 +0.740875 +0.474718 +0.890501 +0.414853 +0.816625 +-0.108815 +0.589601 +-0.044158 +0.282343 +0.157030 +0.221225 +0.428122 +0.605003 +0.700788 +0.604617 +0.467522 +0.886706 +0.859626 +0.850993 +0.598082 +0.675831 +0.221913 +0.884173 +0.526903 +0.737483 +0.867332 +0.672634 +0.772194 +0.797966 +0.950188 +0.398102 +0.789897 +0.598842 +0.950645 +0.971179 +0.627438 +0.379741 +0.406098 +0.781979 +0.828902 +0.450789 +-1.620421 +0.406702 +0.418493 +0.588027 +0.857514 +0.872490 +0.870614 +0.571138 +0.951596 +0.835084 +0.843675 +0.546945 +0.988107 +0.956721 +0.813378 +0.824874 +0.287832 +0.748783 +0.492249 +0.833416 +0.913444 +0.501465 +0.769221 +0.391968 +0.057112 +0.805681 +-0.147703 +0.173537 +0.111787 +-0.056855 +0.671955 +0.322359 +0.777125 +0.651083 +0.097318 +0.097318 +-22.559239 +0.256044 +0.698408 +0.959716 +0.226126 +0.770959 +0.600419 +0.889940 +0.131070 +0.407085 +0.047434 +0.226938 +0.150420 +0.049884 +0.160408 +0.640617 +0.510929 +0.153728 +0.256580 +0.332016 +0.756574 +0.228068 +0.868937 +0.789388 +0.555343 +0.555941 +0.667457 +0.389022 +0.790999 +0.111578 +-2.773179 +0.806167 +0.321104 +0.798899 +0.454506 +0.959425 +-45.902200 +0.667106 +0.277372 +-0.045848 +0.923923 +0.116772 +0.291140 +0.854979 +0.665047 +0.850259 +0.298123 +0.888356 +0.991406 +0.212558 +0.829544 +0.347069 +0.770705 +0.832852 +0.822081 +0.631212 +0.732743 +0.963814 +0.899564 +0.225522 +0.303578 +0.978286 +0.528346 +0.688993 +0.803469 +0.811920 +0.787350 +0.665065 +0.682431 +0.960085 +0.431843 +0.420650 +0.580950 +0.884879 +0.443038 +0.868931 +0.954213 +0.725054 +0.489059 +0.269095 +0.801487 +0.995600 +0.850567 +0.525764 +0.994633 +0.269466 +0.369984 +0.450601 +0.954413 +0.851299 +0.571056 +0.848705 +0.450994 +0.518238 +0.389251 +0.964075 +0.810884 +0.755708 +0.471309 +0.917710 +0.949736 +0.840617 +0.650502 +0.367506 +0.479290 +0.874062 +0.722754 +0.617219 +0.707667 +0.739107 +0.269767 +0.560648 +0.942214 +0.709084 +0.905667 +0.956671 +0.414650 +0.371179 +0.012027 +0.374992 +0.542366 +0.438179 +0.462021 +0.037149 +-1.693174 +0.514641 +0.198506 +-0.609200 +0.473816 +0.090584 +0.474602 +0.872572 +0.227668 +0.516164 +0.506584 +0.439174 +0.726375 +0.232659 +0.197496 +0.819568 +0.442347 +-0.061962 +0.210136 +0.118737 +0.214277 +0.334201 +0.504800 +0.512504 +0.712818 +0.982900 +0.795911 +0.885438 +0.322882 +0.718881 +0.268927 +-0.022759 +0.244247 +0.877006 +0.986749 +0.671142 +0.585456 +0.546352 +0.615334 +0.933671 +0.476920 +-0.743658 +0.023427 +0.044393 +0.914549 +0.871074 +0.264014 +0.330079 +0.574322 +0.345836 +0.979181 +0.874998 +-25660.205311 +0.344197 +0.703499 +0.602600 +-2.253741 +0.271389 +0.325714 +0.041612 +0.450994 +0.293615 +0.650710 +0.532954 +0.706365 +0.206493 +0.363632 +0.740485 +0.829818 +0.422627 +0.157976 +0.631466 +0.988821 +0.393881 +0.363372 +0.071746 +0.551530 +-0.038694 +0.334916 +0.969264 +0.319951 +0.313385 +0.091161 +0.154757 +0.947254 +0.516933 +0.534148 +0.299514 +0.650841 +0.442124 +0.551053 +0.984857 +0.207930 +0.927420 +0.749908 +0.142349 +0.496752 +0.455980 +0.807433 +0.487360 +0.932004 +0.917439 +0.734478 +0.925752 +0.735791 +0.282516 +0.924695 +0.534305 +0.476044 +0.941485 +0.474649 +0.679495 +0.543490 +0.986814 +0.921452 +0.705172 +0.197604 +0.380734 +0.346392 +0.868147 +0.331237 +0.563230 +0.631149 +0.346832 +-0.051903 +0.262983 +0.414395 +0.233752 +0.165018 +0.124665 +0.007394 +0.352803 +0.670386 +0.179751 +0.672219 +0.848940 +0.330485 +0.781104 +0.158502 +0.925411 +0.408053 +-0.269252 +0.549454 +0.638093 +0.963424 +-107.892507 +0.220225 +0.941521 +0.948009 +0.349243 +0.468721 +0.738572 +-0.019811 +0.097001 +0.577018 +0.569512 +-18.999416 +0.008505 +0.079460 +0.625665 +0.610547 +0.211396 +0.047165 +0.111218 +-6.076059 +0.594576 +0.078396 +-0.059221 +0.036507 +0.662242 +0.798177 +0.242251 +0.833085 +0.042479 +-0.268997 +0.997792 +0.955499 +0.199326 +0.710851 +0.426732 +0.175271 +0.401029 +0.245294 +0.768089 +0.786149 +0.894858 +0.453453 +0.664774 +0.422258 +0.447964 +0.479413 +0.383001 +0.422130 +0.422130 +0.422130 +0.885340 +0.491478 +0.308407 +0.381026 +0.283299 +0.224966 +0.116326 +0.328773 +0.959231 +0.117775 +0.846365 +0.524384 +0.643825 +0.935065 +0.829559 +0.753132 +0.989416 +0.015003 +0.810178 +0.754261 +-0.011207 +0.926324 +0.416904 +0.664877 +0.953305 +0.905874 +0.383473 +0.902614 +0.921706 +0.770623 +0.849420 +0.380727 +0.488572 +0.494762 +0.568032 +0.634793 +0.647463 +0.299835 +0.868747 +0.715043 +0.907558 +0.223978 +0.358946 +0.806215 +0.900762 +0.565916 +0.789073 +0.116995 +-0.422163 +-0.256859 +0.739249 +0.289146 +0.862590 +0.737191 +0.301400 +0.070566 +0.846122 +0.287756 +0.688202 +0.566249 +0.769744 +0.181677 +0.713626 +0.623796 +0.731642 +0.448853 +0.375884 +0.599310 +0.674146 +0.252608 +0.341153 +0.449375 +0.128521 +0.546082 +0.208104 +-0.046155 +0.685511 +0.525389 +0.519482 +0.309512 +0.748645 +0.333478 +0.485651 +0.963165 +0.642140 +0.905051 +0.785224 +0.373899 +0.753429 +0.561807 +0.897251 +0.639613 +0.860729 +-0.046268 +0.484279 +0.059837 +0.247778 +0.610001 +0.347546 +0.849665 +0.693808 +0.854908 +0.787529 +0.362760 +0.678261 +0.248215 +0.427673 +0.609547 +0.610601 +0.213684 +0.503200 +0.576096 +0.931301 +0.706580 +0.909927 +0.366073 +0.616611 +0.984484 +0.977920 +0.468554 +0.316699 +0.669467 +-0.187199 +0.640955 +0.923557 +0.561645 +-0.249866 +0.820344 +-0.076498 +0.347025 +0.849312 +0.473284 +0.628259 +-0.284485 +0.990323 +-0.155791 +0.504661 +0.593718 +0.853861 +0.844044 +0.787912 +0.397049 +0.537956 +0.933824 +0.852058 +0.324787 +0.814807 +0.899512 +0.136253 +0.408002 +-0.143148 +0.309340 +0.937956 +0.734465 +-0.148893 +0.418927 +0.686285 +0.900258 +0.348768 +0.535395 +0.562883 +0.423636 +0.109656 +0.852084 +0.648070 +0.675135 +-1.163248 +0.378750 +0.289843 +0.576772 +0.287090 +0.387552 +0.328353 +0.106214 +0.164526 +0.917625 +0.464869 +0.877405 +0.454637 +0.939141 +0.491486 +0.460984 +0.996217 +0.659985 +0.598038 +0.792950 +0.796699 +0.933129 +0.675458 +0.923226 +0.881919 +0.750664 +0.929288 +-1.718645 +0.996545 +0.907551 +0.907551 +0.959011 +0.937026 +0.989120 +0.633817 +0.874940 +0.955353 +-0.044290 +0.673499 +0.932633 +0.584557 +0.987477 +-2.586382 +0.739296 +0.450784 +0.989756 +-0.066413 +0.957954 +0.821157 +0.842295 +0.420075 +0.664529 +0.810524 +0.327700 +0.592173 +0.873028 +0.323371 +0.985953 +0.287203 +0.757826 +0.738971 +0.718995 +-0.008244 +-115.316525 +0.374824 +0.675426 +0.666792 +0.196714 +0.022521 +0.920442 +0.920047 +0.976265 +-1.344976 +0.958856 +0.918567 +0.409354 +0.924740 +0.925766 +0.751252 +0.724645 +0.788014 +0.561645 +0.914051 +0.515936 +0.800786 +0.663254 +0.913577 +0.925819 +0.876499 +0.927326 +-59.584088 +0.842146 +0.602608 +0.558292 +0.838275 +0.919191 +0.527784 +0.962843 +0.666140 +0.995257 +0.913207 +0.919221 +0.408125 +0.536503 +0.973420 +0.430313 +0.355597 +0.381720 +0.985588 +0.408910 +0.625573 +0.505368 +0.742826 +0.471271 +0.682558 +0.706770 +0.863068 +0.296481 +0.912447 +0.526125 +0.019165 +0.835936 +0.755240 +0.776095 +0.786554 +0.505382 +0.833372 +0.335169 +0.889848 +0.948126 +0.718728 +0.602330 +0.916227 +0.623676 +0.968958 +0.968852 +0.903852 +0.683915 +0.918561 +0.951266 +0.319394 +0.691617 +0.059171 +0.263792 +0.766592 +0.390342 +0.256504 +0.587116 +0.542640 +0.710457 +0.935210 +0.325411 +0.537773 +0.362117 +0.531639 +0.318443 +0.810551 +-0.772825 +0.301708 +0.193520 +0.819152 +0.781031 +0.936021 +0.661498 +0.562075 +0.134462 +0.384566 +0.327673 +0.682072 +0.634453 +0.525744 +0.945740 +0.972463 +0.622396 +0.547107 +0.826536 +0.798688 +0.902509 +0.709174 +0.946235 +0.268931 +0.816788 +0.478225 +0.707430 +0.041803 +0.134173 +-0.006380 +0.721176 +0.945682 +0.451731 +0.363070 +0.692976 +0.718507 +0.645932 +0.391463 +0.059069 +0.351014 +0.706230 +0.686671 +0.895166 +0.870236 +0.497349 +0.678288 +0.214404 +-0.856882 +-0.706436 +0.086860 +0.644390 +0.390711 +0.839872 +0.382886 +0.720042 +0.728915 +0.483731 +0.478077 +0.689905 +0.845924 +0.462841 +0.932494 +0.720894 +0.806201 +0.808877 +0.539923 +0.913811 +0.935416 +0.276845 +0.460114 +-0.426203 +-0.277462 +-0.028308 +0.027780 +0.939981 +0.429258 +0.792044 +0.381531 +0.544508 +0.924813 +0.427015 +0.881519 +0.575113 +0.552849 +0.973686 +0.921634 +0.743357 +0.745770 +0.104812 +0.767790 +0.730508 +0.933862 +0.388030 +0.740980 +0.553325 +0.515861 +0.926768 +0.822437 +0.692282 +0.757651 +0.135007 +0.937363 +0.983166 +0.155884 +0.588254 +0.749389 +0.691803 +0.686231 +0.745953 +0.669773 +0.784228 +0.774111 +0.919200 +0.489320 +0.739690 +0.689815 +0.164384 +0.329602 +0.694730 +0.927373 +0.937602 +0.898091 +0.749166 +0.579611 +0.469183 +0.872959 +0.689542 +0.395810 +-0.519462 +0.725756 +0.411664 +0.380817 +0.754522 +0.892820 +0.735999 +0.283944 +0.960677 +0.736987 +-0.468142 +0.603091 +0.424393 +0.146585 +0.958836 +0.935208 +0.484589 +0.857893 +0.149240 +0.767294 +0.338569 +0.496372 +0.265526 +0.474800 +0.951210 +0.726578 +0.378293 +0.983409 +0.895209 +0.854897 +0.762027 +0.848550 +0.896565 +0.886391 +0.768089 +0.441203 +0.955010 +0.905703 +0.741306 +0.149776 +0.885221 +0.851169 +0.133164 +0.288616 +0.970434 +0.139363 +0.958091 +0.133847 +0.697324 +0.499363 +-0.374961 +0.612578 +0.201404 +-0.029540 +0.318823 +0.382381 +0.378734 +0.122131 +0.200459 +0.262673 +0.614404 +0.341089 +0.396422 +0.206553 +-0.574544 +0.578285 +0.294483 +-0.265853 +0.509812 +-0.081940 +0.745348 +0.433194 +0.915295 +0.633050 +0.509573 +0.541706 +0.564683 +0.378159 +0.947917 +0.926687 +0.702587 +0.546444 +0.268581 +0.938114 +0.980946 +0.444838 +0.491189 +0.379796 +0.904311 +0.893341 +0.887092 +0.831796 +0.355935 +0.551097 +0.621029 +0.611401 +0.672165 +0.694079 +0.874743 +0.478604 +0.269544 +0.647066 +0.668706 +0.953894 +-0.116792 +0.959571 +0.099360 +0.845994 +0.928195 +0.263348 +0.757945 +0.264367 +0.957251 +0.842972 +0.712096 +0.208855 +0.900654 +0.523156 +0.866671 +0.748384 +0.900702 +0.202616 +0.098265 +0.834986 +0.315886 +0.573987 +0.346382 +0.514480 +0.179241 +0.830171 +0.352511 +0.403601 +0.393783 +0.583691 +0.846898 +0.745894 +0.581247 +0.719435 +0.719435 +0.448596 +0.687469 +0.787219 +0.153478 +0.927568 +0.559090 +0.206272 +0.659237 +0.589006 +0.399955 +0.881905 +0.450612 +0.700439 +0.654288 +0.728478 +0.921345 +0.676076 +0.750469 +0.479469 +0.520537 +0.580942 +0.531326 +0.015704 +0.541952 +0.531278 +0.763070 +0.659743 +0.560768 +-0.245652 +0.890583 +0.932538 +0.570977 +0.861119 +0.496491 +0.781708 +0.634228 +0.811994 +0.553970 +-0.186065 +-0.280944 +0.939527 +0.869567 +0.668288 +0.711421 +-0.379421 +0.902137 +0.701919 +0.611939 +0.231579 +0.173228 +0.062901 +0.097692 +0.009637 +-0.129999 +0.238837 +0.622808 +0.279681 +0.047863 +-0.177542 +0.138522 +0.609462 +0.072648 +-0.013389 +0.504710 +0.788693 +0.462948 +0.132197 +0.487655 +0.774137 +0.606966 +0.799319 +0.952221 +0.402098 +0.580449 +0.806739 +0.696185 +0.380457 +0.954137 +0.736270 +0.614881 +0.692875 +0.384435 +0.374133 +0.714487 +0.327594 +0.192221 +0.211089 +0.491660 +0.210764 +0.946291 +0.888531 +0.935968 +0.962349 +0.281042 +0.591592 +0.414795 +0.920199 +0.918984 +0.011486 +0.410419 +0.453720 +0.548052 +0.467845 +0.759677 +0.538102 +0.747730 +0.522801 +0.562353 +0.949997 +0.507666 +0.741675 +0.972653 +0.191661 +0.566409 +0.576999 +0.497743 +0.712579 +0.592337 +0.959125 +0.995344 +0.925545 +0.720593 +0.780444 +0.692509 +0.916678 +0.500359 +0.918999 +0.920610 +0.929506 +0.921186 +0.919391 +0.139423 +0.927385 +0.519143 +0.908553 +0.830074 +0.587897 +0.434178 +0.456013 +0.939651 +0.929707 +0.927673 +0.490218 +0.580647 +0.595943 +0.509665 +0.424274 +0.920102 +0.998147 +0.986504 +0.904620 +0.991683 +0.693163 +0.595390 +0.656673 +0.837012 +0.927039 +0.656277 +0.616158 +0.703147 +0.702458 +0.699349 +0.517791 +0.505584 +0.803055 +0.442981 +0.889492 +-0.038581 +0.914611 +0.967922 +0.971034 +0.903938 +0.284339 +0.973281 +0.972326 +0.462241 +0.598620 +0.799237 +0.945128 +0.489148 +0.348714 +0.278299 +0.617714 +0.679724 +0.833858 +-0.287122 +0.289369 +0.859539 +0.828238 +0.216406 +-0.144789 +0.681381 +0.908420 +0.197789 +0.689499 +0.622906 +0.825358 +0.617799 +0.976428 +0.824740 +-0.199467 +0.649124 +0.533691 +0.602893 +0.265333 +0.919191 +0.891625 +-0.062254 +0.447567 +0.637444 +0.846175 +0.607820 +-0.275101 +0.752403 +0.891664 +0.891561 +0.020797 +0.828213 +-0.529689 +0.693856 +0.384423 +0.896234 +-0.810600 +0.930872 +0.477961 +0.882327 +0.925196 +0.947372 +0.832444 +0.845698 +0.864124 +0.147328 +0.919228 +0.862062 +0.423838 +0.934332 +0.828616 +0.842207 +0.775777 +0.771421 +0.848343 +0.821478 +0.295216 +0.759664 +0.931350 +0.971516 +0.862369 +0.850938 +0.788051 +0.783937 +0.539888 +0.828293 +0.468029 +0.753263 +0.938734 +0.942010 +0.948170 +0.975492 +0.965013 +0.809674 +0.787087 +0.874559 +0.613068 +0.725120 +0.195875 +0.824798 +0.939029 +0.945989 +0.905463 +0.905787 +0.832385 +0.368981 +0.852451 +-0.120587 +0.977532 +0.934140 +0.954319 +0.853143 +0.929158 +0.964644 +-0.187338 +0.853246 +0.748313 +0.850856 +0.956921 +0.761124 +0.678524 +0.825909 +0.952514 +0.950373 +0.929322 +0.843707 +0.926864 +0.286558 +0.476392 +0.692360 +0.765207 +0.194829 +0.509292 +0.924823 +0.602300 +0.923433 +0.840645 +0.040724 +0.695537 +0.945227 +0.929720 +0.856393 +0.432898 +0.674934 +0.270679 +0.262371 +-626.154671 +0.609833 +0.944484 +0.810498 +0.928848 +0.692360 +0.582514 +0.817442 +0.925582 +0.836600 +0.850177 +0.810526 +0.884603 +0.091005 +0.398304 +0.358469 +0.157254 +0.878393 +0.899771 +0.177510 +0.389877 +0.099957 +0.345093 +0.972635 +0.981427 +0.204405 +0.297463 +0.986642 +0.957400 +-0.035617 +0.941554 +-0.081756 +0.869681 +0.801498 +-0.247483 +0.345976 +0.244192 +0.241604 +0.476991 +0.155149 +0.942894 +0.815059 +0.705653 +0.661264 +0.348309 +0.893462 +0.980753 +0.183067 +0.317032 +-0.103139 +0.915795 +0.226330 +0.994592 +0.241516 +0.247911 +0.692546 +0.030711 +-1.560053 +0.594964 +0.981067 +0.180691 +0.498260 +0.886493 +0.129785 +0.263867 +0.448881 +0.357358 +0.526580 +0.561150 +0.698254 +0.848304 +0.766344 +0.695450 +0.933885 +0.755992 +0.329778 +0.349993 +0.634127 +0.442263 +0.533946 +0.769407 +0.853427 +0.831647 +0.357085 +0.761480 +0.874150 +0.734232 +0.609876 +0.907190 +0.925153 +0.849282 +0.759211 +0.716528 +0.924761 +0.878130 +0.724728 +0.727170 +0.913728 +0.874771 +0.913866 +0.795247 +0.435226 +0.575458 +0.264168 +0.951531 +0.972932 +0.519355 +0.745745 +0.527556 +-1.051155 +-0.231867 +0.373543 +-0.310070 +0.265326 +0.971421 +0.507996 +0.449048 +0.659252 +0.757287 +0.819960 +0.608349 +0.904622 +0.410740 +0.871427 +0.614017 +0.758530 +0.931705 +0.867064 +-0.093650 +0.694007 +0.544113 +0.642992 +0.617288 +0.840247 +0.454775 +0.643756 +0.703878 +0.530382 +0.162544 +0.772238 +0.723967 +0.621987 +-0.060436 +0.592702 +0.796728 +0.487680 +0.767805 +0.769168 +0.332739 +0.643479 +0.943365 +-0.656528 +0.690728 +0.821701 +-1.537765 +0.564256 +0.865146 +0.968695 +0.988328 +0.556017 +0.996429 +0.920205 +0.519624 +0.439487 +0.971222 +0.935665 +0.759716 +0.559665 +0.447610 +0.930037 +0.367112 +0.625338 +0.360152 +0.674964 +0.410584 +0.483929 +0.919160 +0.266017 +0.843861 +0.528532 +0.651431 +0.984426 +0.968585 +0.417844 +0.709742 +0.267531 +0.983334 +0.415758 +0.811023 +0.564130 +0.268579 +0.666732 +0.910432 +0.271379 +0.330761 +0.405749 +0.895447 +0.099954 +-0.111496 +0.048655 +0.568350 +-0.046533 +0.975408 +0.147422 +0.191441 +0.090809 +0.875893 +-0.344821 +0.996835 +-1.298744 +-0.020781 +0.353472 +0.700939 +0.319137 +0.840807 +0.513889 +0.740734 +0.472645 +0.731065 +0.982845 +0.873411 +0.346126 +0.569721 +0.526925 +0.321033 +0.548281 +0.490150 +0.607636 +0.746895 +0.891644 +0.896677 +0.721841 +-60958648549.207626 +0.829462 +0.823613 +0.700653 +0.874281 +0.724424 +0.927413 +0.407550 +0.923696 +0.216674 +0.176360 +0.734626 +0.961007 +0.737354 +0.863849 +0.780810 +0.680814 +0.476924 +0.908715 +0.814796 +0.899632 +0.539806 +0.707400 +0.109137 +0.889829 +0.425301 +0.664908 +0.843434 +0.727331 +0.756018 +0.510735 +0.679511 +0.884235 +0.554090 +0.947092 +0.434068 +0.873252 +0.766774 +0.860831 +0.772355 +0.799988 +0.412631 +0.435882 +0.792773 +0.566964 +0.374947 +0.695933 +0.922788 +0.183943 +0.274559 +0.394843 +0.212906 +0.654516 +0.113898 +0.283887 +0.904450 +0.664258 +-2.296301 +0.695156 +0.235185 +0.301172 +0.654011 +0.881442 +0.443327 +0.602195 +0.762501 +0.501971 +0.494587 +0.938219 +0.859325 +0.559079 +0.649847 +0.886403 +0.615840 +0.133721 +0.721858 +0.902106 +0.177035 +0.378475 +0.222921 +0.231345 +0.670290 +0.171123 +0.101916 +0.147160 +0.223573 +0.215533 +0.293234 +0.294166 +0.267519 +0.525423 +0.161889 +0.498187 +0.843286 +0.695448 +0.535514 +0.159013 +0.465506 +0.106293 +0.450260 +0.219022 +0.322806 +0.560501 +0.637778 +0.449823 +0.593147 +0.378006 +0.597211 +0.761135 +0.603830 +0.917519 +0.473224 +-11351.057902 +0.628308 +-1.005322 +0.922196 +0.969544 +0.975070 +0.081639 +0.160275 +0.912607 +0.003814 +0.656917 +0.442885 +0.013494 +0.995201 +0.860068 +0.544792 +0.225921 +0.851281 +0.780746 +0.476771 +0.831717 +0.343424 +0.932550 +0.579270 +0.641109 +0.745928 +0.835883 +0.149828 +-0.004208 +0.456986 +0.929809 +0.638524 +0.569450 +0.556227 +0.809882 +0.714123 +0.841973 +0.641258 +-0.263563 +0.820057 +0.270425 +0.419703 +0.310116 +0.032410 +0.991577 +0.360450 +0.113293 +0.949070 +0.053932 +0.077448 +0.306489 +0.314864 +-0.225424 +0.231720 +0.125184 +0.295918 +0.516486 +0.418942 +0.852440 +0.023875 +0.733603 +0.927478 +0.548239 +0.804461 +-0.003142 +0.080836 +0.257719 +0.706003 +0.820118 +0.610647 +0.816971 +0.898994 +0.880634 +0.753026 +0.342855 +0.810737 +0.889806 +0.939383 +0.403922 +0.466175 +0.793648 +0.632183 +0.658713 +0.877598 +0.550228 +0.932744 +0.818321 +-0.144000 +0.713884 +0.842396 +0.924519 +0.252271 +0.529476 +0.478220 +0.300811 +0.328932 +-0.114436 +0.631005 +0.834875 +0.509037 +0.355617 +0.172601 +0.260960 +-0.250010 +0.831941 +0.473947 +0.655914 +-0.080450 +0.866490 +0.332914 +0.937657 +0.599831 +-5.520951 +0.980220 +0.944452 +0.184856 +0.976345 +0.776257 +0.036929 +0.583518 +0.595435 +0.305674 +0.747760 +0.734405 +0.864593 +0.527651 +0.183877 +0.635568 +0.915922 +0.351659 +0.454799 +0.636207 +0.796238 +0.257824 +0.341488 +0.938328 +0.638012 +0.764961 +0.564043 +-0.075627 +0.454217 +0.606967 +-1.940146 +0.870839 +0.937075 +0.929296 +0.374540 +-2.844394 +-0.477232 +0.806490 +0.158004 +0.634580 +0.566824 +0.672870 +0.580970 +0.495056 +0.230182 +0.922211 +0.718070 +0.661778 +-0.028548 +0.569596 +0.854895 +0.927186 +0.930467 +0.972156 +0.834376 +0.969851 +0.883992 +0.973533 +0.652698 +0.872711 +0.902739 +0.704069 +0.642084 +0.277414 +-0.363213 +-0.124541 +-0.189841 +0.755390 +0.905921 +0.720788 +0.712499 +0.808916 +0.762178 +0.844825 +0.631844 +0.729813 +0.176833 +0.868903 +0.907449 +0.827150 +0.651211 +0.856541 +0.762299 +0.738335 +0.650697 +0.736420 +-4.195384 +0.970630 +0.988853 +0.947921 +0.862242 +0.919166 +-1.278594 +0.961416 +0.750141 +0.644547 +0.687158 +0.933265 +0.834814 +0.927989 +0.264709 +0.824187 +0.826944 +0.708938 +-0.088570 +0.871978 +0.820010 +-0.035264 +0.786891 +0.864517 +0.634899 +0.864244 +0.448437 +0.445157 +0.588950 +0.662615 +0.518374 +0.198780 +0.854218 +0.728538 +0.674538 +0.799774 +0.889940 +0.760132 +0.820479 +0.739018 +0.758490 +0.182049 +0.902649 +0.697471 +0.946156 +0.920203 +0.922453 +0.967024 +0.340512 +0.415712 +0.133989 +0.379521 +0.863314 +0.856818 +0.933761 +0.863571 +0.359509 +0.167777 +0.803442 +0.852095 +0.849257 +0.842915 +0.968173 +0.895048 +0.380559 +-0.579981 +0.834809 +0.675479 +0.876801 +0.931992 +0.928333 +0.864152 +0.744416 +0.992092 +0.658780 +0.964875 +0.682151 +0.872330 +0.526066 +0.512725 +0.610760 +0.940994 +0.287117 +0.227983 +-0.214440 +0.543219 +0.843973 +0.716446 +0.440885 +0.685065 +0.840856 +0.931521 +0.882535 +0.461341 +0.539476 +0.642480 +0.816182 +0.451224 +0.922789 +0.436516 +0.803310 +0.357758 +0.512754 +0.879387 +0.669421 +0.556354 +0.794816 +0.534642 +0.563120 +0.533149 +0.678043 +0.847517 +0.749574 +0.966873 +0.410129 +0.345631 +0.648320 +0.604838 +0.804795 +0.944418 +0.545461 +0.609416 +-0.117442 +0.518910 +0.182489 +0.697516 +0.936515 +0.925300 +-0.669300 +0.933701 +0.900022 +0.170161 +0.826542 +-0.058724 +0.372794 +-0.456412 +0.626079 +0.844290 +0.839527 +0.734627 +0.228611 +-0.172670 +0.120764 +-0.255389 +0.790003 +0.853316 +0.759324 +0.826899 +-0.091585 +0.735008 +0.789095 +0.924397 +0.915971 +0.648173 +0.803371 +0.920179 +0.924247 +0.812393 +0.510403 +0.822076 +0.921870 +0.582170 +0.897977 +0.647071 +0.638962 +0.914969 +0.630501 +0.170536 +0.862359 +0.896233 +0.582704 +0.914496 +0.991922 +-0.260286 +0.441131 +0.851283 +0.706000 +0.623334 +0.709691 +-86.554581 +0.983278 +0.027573 +-0.173389 +-0.243854 +0.693055 +0.555016 +0.808206 +0.627285 +0.912002 +0.922415 +-0.258607 +0.898655 +0.830040 +0.407427 +0.485795 +0.632409 +0.350744 +0.193202 +0.708580 +0.227890 +0.152565 +0.116846 +0.146083 +0.900489 +0.164080 +0.411481 +0.415524 +0.240280 +0.599234 +0.313790 +0.791800 +0.594162 +0.617060 +-0.213197 +0.107828 +0.543276 +0.331724 +0.894292 +0.010609 +0.032022 +0.015351 +0.101437 +0.868817 +0.187137 +0.135953 +0.138878 +0.557265 +0.169132 +0.561504 +0.261842 +0.580971 +0.540546 +0.319887 +0.912684 +0.916381 +0.907149 +0.160830 +0.194324 +-0.274090 +0.538766 +0.529458 +0.297643 +0.278081 +0.874810 +0.690429 +0.786254 +0.869061 +0.924304 +0.227662 +0.666460 +0.505537 +0.455653 +-0.541536 +0.259161 +0.931934 +0.937474 +0.486868 +0.771126 +0.807976 +0.047077 +0.120156 +0.711334 +-0.085460 +0.642703 +0.597517 +0.908461 +-0.089108 +0.413502 +0.125350 +0.856795 +0.607797 +0.758236 +0.966167 +0.653613 +0.849951 +0.519482 +0.293906 +0.576983 +0.063330 +-0.154707 +0.925807 +0.429618 +0.798942 +-0.131359 +0.931464 +-0.025279 +0.663793 +0.488097 +0.978871 +0.069786 +0.174287 +0.311277 +0.881320 +0.093707 +0.125700 +0.298684 +0.226983 +0.103280 +0.019307 +0.380597 +0.194459 +0.771880 +0.827950 +0.241609 +0.674972 +0.734882 +0.928118 +0.315111 +0.226019 +0.013737 +0.267140 +0.222811 +0.269825 +0.262955 +0.267348 +0.221494 +0.257031 +-22.615334 +0.965148 +0.519254 +0.922504 +0.298871 +0.315041 +0.930830 +-0.152263 +0.650972 +0.901091 +0.088913 +0.754558 +0.475194 +0.250577 +0.889545 +0.029159 +0.307135 +0.327214 +0.963684 +0.014863 +-2.587065 +0.993135 +0.663859 +0.761612 +0.726316 +0.986116 +0.924196 +0.820276 +0.941949 +0.939097 +0.564889 +0.388441 +0.909318 +0.315371 +0.362283 +0.306368 +0.290472 +0.557538 +0.065683 +0.115315 +0.963594 +0.731342 +0.870796 +0.882729 +-0.021014 +0.968312 +0.059689 +0.287323 +0.966582 +0.249709 +0.236855 +0.220827 +0.994433 +0.093652 +0.536859 +0.871415 +0.519241 +0.215559 +0.579966 +0.445321 +0.120211 +0.222195 +0.132044 +0.646164 +0.145462 +0.483150 +0.883758 +0.680681 +0.773434 +0.938047 +0.867221 +0.900504 +0.842870 +0.215919 +0.858945 +0.592983 +0.318786 +0.569319 +0.933932 +0.277986 +0.490623 +0.956038 +0.929060 +0.975252 +-0.149189 +0.124846 +0.929813 +0.075767 +-0.819999 +0.931810 +0.701202 +0.638293 +0.499863 +0.934104 +0.708877 +-0.050205 +0.847710 +0.700151 +0.873176 +0.937413 +0.706710 +0.950247 +0.896316 +0.406530 +0.316950 +-0.231780 +0.732167 +0.771785 +0.865571 +0.877392 +0.721458 +0.697260 +0.747462 +0.101511 +0.653801 +0.704818 +0.995027 +0.948411 +0.932608 +0.717370 +0.766599 +0.674214 +0.964122 +0.695953 +0.844805 +0.474037 +0.408150 +-3.205277 +0.841290 +0.793040 +0.674728 +0.633527 +0.425753 +0.702546 +0.917580 +0.733675 +0.405553 +0.666762 +0.743090 +0.697533 +0.836671 +0.744462 +0.448473 +0.470919 +0.537313 +-0.083095 +0.923403 +0.750439 +0.398528 +0.715814 +0.840831 +0.682635 +0.377465 +0.982492 +0.542549 +0.707803 +0.036549 +0.349290 +0.420706 +0.476558 +0.636629 +0.714880 +0.257822 +0.922527 +0.947014 +0.460377 +0.636366 +0.744562 +0.549942 +0.725635 +0.976386 +0.755221 +0.462958 +0.716969 +0.268469 +0.953404 +0.151800 +0.637179 +0.644574 +0.589550 +0.597038 +0.572660 +0.946523 +0.416374 +0.563510 +0.428494 +0.474237 +0.378942 +0.714226 +0.651347 +0.768456 +0.583718 +0.630094 +0.570778 +0.449958 +-0.085326 +-0.129069 +0.124218 +0.780511 +0.795123 +0.776044 +0.651975 +0.625440 +0.103098 +0.430253 +0.636969 +0.316110 +0.334677 +0.917441 +0.603100 +0.173122 +0.126075 +0.990100 +0.227791 +0.181733 +0.546467 +0.893812 +0.357253 +0.523953 +0.964126 +0.393941 +0.039268 +0.977017 +0.943491 +0.069753 +0.639549 +0.184318 +0.672060 +0.205148 +0.908150 +0.320777 +0.526754 +0.884423 +-0.680163 +0.825618 +0.724410 +0.476964 +0.859546 +0.940579 +0.431644 +0.750729 +0.692134 +0.988677 +0.120214 +0.930401 +0.820376 +0.859427 +0.603452 +0.876348 +-40.525793 +0.658185 +0.939901 +0.504827 +0.996852 +0.957977 +0.711026 +0.917292 +0.789211 +0.753607 +0.430445 +0.866724 +0.374218 +0.880046 +0.792952 +0.168095 +0.380827 +0.901686 +0.868633 +0.568364 +0.570974 +0.780505 +0.978553 +0.706057 +0.759112 +0.528174 +0.884068 +0.387611 +0.207517 +0.184258 +0.649122 +0.129984 +0.421343 +0.214813 +0.646083 +0.421793 +0.052796 +0.624301 +0.523943 +0.518172 +0.112689 +0.548505 +-0.078410 +0.161977 +-0.116061 +0.547800 +0.524803 +0.108318 +0.213021 +0.542804 +0.147233 +0.155010 +0.849880 +0.866008 +0.975328 +0.943795 +0.958493 +0.613087 +0.870180 +0.660944 +-0.271857 +0.890872 +0.922111 +0.750973 +0.950941 +0.853319 +0.640073 +0.428848 +0.597595 +0.590684 +0.803198 +-0.132522 +0.882558 +-0.034652 +0.379751 +0.765041 +0.718747 +0.680242 +-0.143875 +0.934952 +0.214873 +0.713421 +-0.004956 +0.898093 +0.632848 +0.609414 +0.968771 +0.927008 +0.938419 +0.943011 +0.926475 +0.649690 +0.984180 +0.838076 +0.820578 +0.878331 +0.732010 +-0.195555 +0.909420 +0.767701 +0.403222 +0.656750 +0.374659 +0.771099 +0.943612 +0.817107 +0.845571 +0.945499 +0.695721 +0.618641 +0.841314 +0.700046 +0.691920 +0.841326 +0.862211 +0.761983 +0.879384 +0.896519 +0.511906 +0.754844 +0.924559 +0.696466 +0.565076 +0.940743 +0.918071 +0.719690 +0.672445 +0.877273 +0.880826 +0.787757 +0.817372 +0.636361 +0.811536 +-0.758296 +0.925917 +0.875079 +0.819750 +-175.593338 +0.704009 +0.949028 +0.686057 +0.661405 +0.716709 +0.475730 +0.850374 +-0.071990 +0.813545 +0.292012 +-0.249356 +0.478359 +0.438932 +0.739445 +0.828095 +0.593269 +0.859783 +0.695018 +0.604524 +0.334149 +-0.087206 +0.926862 +0.883959 +0.842707 +0.380183 +0.581172 +-0.223350 +0.922149 +0.794936 +0.564522 +0.422352 +0.341058 +0.782034 +0.649840 +0.413464 +0.702059 +0.809286 +0.464581 +0.374611 +0.156112 +0.023960 +0.336213 +0.554233 +0.554491 +0.631809 +0.974052 +0.692032 +0.662328 +0.552614 +-0.349525 +0.873677 +-1.180548 +0.998269 +0.438952 +0.682409 +0.267010 +0.517755 +0.471026 +-0.896878 +0.262866 +0.116093 +0.465072 +0.037903 +0.174876 +0.071922 +0.527564 +0.161393 +0.982105 +0.997025 +0.994973 +0.563975 +0.578561 +0.622518 +0.293486 +0.565735 +0.461811 +0.635295 +0.605238 +0.547224 +0.091063 +0.472583 +0.982061 +0.375895 +0.795934 +0.335124 +0.304017 +0.448023 +0.803708 +0.829492 +0.627394 +0.955420 +0.938641 +0.996774 +0.860552 +0.800095 +0.597257 +0.680056 +0.470028 +0.536247 +0.226449 +0.630564 +0.395001 +0.243864 +0.708203 +0.670456 +0.761060 +0.885611 +0.649142 +0.939377 +0.348060 +0.078710 +0.573042 +0.679260 +0.608601 +0.912480 +0.886096 +0.697216 +0.812405 +0.643055 +0.553314 +0.643761 +0.497820 +0.705219 +0.937194 +0.717421 +0.917102 +0.428683 +-0.628050 +0.854154 +0.653477 +0.318172 +0.368324 +-0.414729 +0.641619 +0.535568 +0.706924 +0.277421 +0.667573 +-0.470159 +0.734320 +0.844626 +0.431171 +0.763187 +0.520808 +-0.527038 +0.494181 +0.520623 +0.347354 +0.873472 +0.800028 +0.835334 +0.482612 +0.858438 +0.563523 +0.753884 +0.882015 +0.517468 +0.622867 +0.595084 +0.273199 +0.790024 +-0.334114 +-0.410887 +0.424236 +0.894151 +0.451602 +0.526165 +0.932966 +0.960243 +0.699703 +0.966357 +0.942927 +0.553939 +-0.242350 +0.987219 +0.880926 +0.522090 +0.974485 +0.917026 +0.895070 +0.942781 +0.753569 +0.935516 +0.094411 +0.725397 +0.289714 +0.978255 +0.644117 +0.911314 +-75.972175 +0.763089 +0.688573 +0.804968 +0.859118 +0.599293 +-0.020679 +0.714517 +0.773114 +-0.166540 +0.556007 +0.355504 +0.607015 +0.743323 +0.680014 +0.974987 +0.822565 +0.929543 +-0.134139 +0.786975 +0.926156 +0.650337 +0.650337 +0.775740 +0.584307 +0.909129 +0.742930 +0.193965 +0.214994 +0.227237 +0.866396 +0.768632 +0.676722 +0.792525 +0.311870 +0.455307 +0.627078 +0.889095 +0.336476 +0.933706 +0.516331 +0.280141 +0.049172 +0.304689 +0.282877 +0.033824 +0.040751 +0.668751 +0.992856 +0.916097 +0.960355 +0.610773 +0.569610 +0.622767 +0.609069 +-0.455879 +0.142005 +0.909064 +0.437345 +0.378264 +0.502640 +0.740606 +0.164759 +0.879792 +0.925572 +0.599777 +0.891442 +0.842873 +0.087111 +0.039850 +0.580879 +0.813249 +0.212175 +0.493693 +0.594368 +0.459064 +0.395682 +0.823703 +0.683288 +0.876658 +0.956305 +0.756567 +0.285397 +0.780784 +0.734089 +0.875642 +0.398532 +0.389887 +0.756624 +0.792984 +0.845366 +0.511670 +0.797385 +0.830563 +0.703815 +0.720989 +0.728720 +-0.128297 +0.997749 +0.864804 +-0.014302 +0.116658 +0.602901 +0.991566 +0.743667 +0.955716 +0.984375 +0.953672 +0.322285 +0.988901 +0.124855 +0.361296 +0.743494 +0.378274 +0.752054 +0.748039 +0.743958 +0.737714 +0.837464 +-0.355107 +-0.094099 +0.570289 +0.770369 +0.872325 +0.806201 +0.810601 +0.830145 +-0.372201 +0.416018 +0.226058 +0.864283 +0.856548 +0.893569 +0.724780 +0.509948 +-0.302129 +0.788315 +0.449736 +0.464157 +0.840737 +0.667805 +0.947613 +0.622747 +0.298112 +0.750731 +0.906372 +-15.290378 +0.398389 +0.923597 +0.926994 +0.731876 +0.763043 +0.412759 +0.968119 +0.676635 +0.827450 +0.402288 +0.711282 +0.938868 +0.016112 +0.947445 +-0.736533 +0.599748 +-0.323259 +0.879611 +-0.202523 +0.771173 +0.357216 +0.854737 +0.368023 +0.933063 +0.920962 +0.907701 +0.748203 +0.932193 +0.815352 +0.751163 +-0.174055 +0.139438 +0.778708 +0.875824 +0.539889 +0.713410 +-0.175809 +0.445613 +0.895227 +0.778125 +0.900260 +0.992529 +0.204319 +0.690689 +0.820121 +0.767274 +0.927475 +-0.466348 +0.762662 +0.929484 +0.705901 +0.292051 +0.175915 +0.734436 +0.813571 +0.649828 +0.257322 +0.725908 +0.737551 +-0.712015 +0.549740 +0.484225 +0.155046 +0.730902 +0.966981 +0.825610 +0.330311 +0.729393 +-0.059909 +-0.119527 +0.178713 +0.761472 +0.910999 +0.210615 +0.536437 +0.094392 +0.850508 +0.310559 +0.549145 +0.576998 +0.364272 +0.306177 +0.655942 +0.398338 +0.231667 +0.424570 +0.266517 +0.457642 +0.384277 +0.573280 +0.467277 +0.499328 +0.359071 +0.978091 +0.456432 +0.818877 +0.021919 +0.757956 +0.799603 +0.914104 +0.838157 +0.259793 +0.593505 +0.796620 +0.629630 +0.099901 +0.882563 +0.926200 +0.900274 +0.652504 +0.926382 +0.631161 +0.409087 +0.697872 +0.868534 +0.838805 +0.893257 +0.123991 +0.909403 +0.853623 +0.886183 +0.862554 +0.900504 +-0.344433 +0.432580 +0.760574 +0.654961 +0.311133 +0.816481 +0.587533 +0.469704 +0.751135 +0.853285 +0.223624 +0.927636 +0.680934 +0.550870 +0.695644 +0.743746 +0.516289 +0.610589 +-0.103794 +-0.309073 +-0.142370 +-0.195866 +0.759737 +-0.188068 +-0.086082 +0.283712 +0.152358 +0.656448 +0.863491 +0.042891 +0.791958 +0.928229 +0.439361 +0.699994 +0.433379 +0.619137 +0.708820 +0.327632 +0.371426 +0.820366 +0.794362 +0.289544 +0.546070 +0.554779 +0.857328 +0.247850 +0.736583 +0.384588 +0.625415 +0.774216 +0.316214 +0.935209 +0.644299 +0.836928 +0.815936 +0.918639 +0.712602 +0.819615 +0.284976 +0.878429 +-0.086218 +0.711284 +0.032266 +0.370416 +0.515556 +0.705162 +0.883738 +0.190945 +0.106556 +0.487706 +0.842611 +0.873043 +0.833001 +0.847355 +0.958165 +-0.010065 +0.790604 +0.024195 +0.779838 +0.883097 +0.818410 +0.697171 +0.674429 +-0.160444 +0.856950 +0.917894 +0.437205 +0.650684 +0.671919 +0.114306 +0.492315 +0.959752 +0.624965 +0.522936 +0.356523 +0.530803 +0.734538 +0.800468 +0.773896 +0.764385 +0.227602 +0.773276 +0.501531 +0.465501 +0.648461 +0.204302 +-0.111042 +0.374565 +0.612921 +0.206554 +0.790605 +0.628606 +-0.286484 +0.762486 +-0.059229 +0.993772 +0.360130 +0.492929 +0.959709 +0.918703 +0.420806 +0.797085 +0.503979 +0.959707 +0.886636 +0.408554 +0.279283 +0.917749 +0.526859 +0.309998 +0.701703 +0.825268 +0.802792 +0.063033 +-0.033545 +-2.799507 +0.700662 +0.799475 +0.851755 +0.538214 +0.243641 +0.902510 +0.990211 +0.675980 +0.689613 +0.601580 +0.710913 +0.769214 +0.181991 +0.122334 +0.588023 +0.182403 +0.967937 +0.087553 +0.266751 +0.128598 +0.415353 +0.299355 +0.497062 +0.192745 +0.377662 +0.235014 +0.015030 +0.732003 +0.696393 +-0.054333 +0.725757 +0.733272 +0.669228 +0.447094 +0.881148 +0.139554 +0.538899 +-0.097130 +0.235198 +0.184524 +0.640879 +-0.197273 +0.166504 +0.712671 +0.060861 +0.466185 +0.891475 +0.426217 +0.843124 +0.528970 +0.712979 +0.197331 +0.174466 +0.269357 +0.588770 +0.925326 +0.112841 +0.293145 +0.579654 +0.894347 +0.881147 +0.779755 +0.044086 +0.373305 +0.184357 +0.445770 +0.836680 +0.475490 +0.314516 +0.089428 +0.918767 +0.439815 +0.070471 +0.728077 +0.379814 +0.932343 +0.937186 +-0.906224 +0.093754 +0.253051 +0.529207 +0.442838 +0.008380 +-0.012753 +0.440014 +0.057121 +0.889588 +0.193649 +0.092216 +0.145700 +0.327002 +0.203273 +0.854195 +0.155254 +0.210162 +-0.435825 +0.900648 +0.052463 +0.922630 +0.727247 +0.747241 +0.794102 +0.645800 +0.736583 +0.837367 +0.809837 +0.924313 +0.990526 +0.251979 +0.754702 +0.607946 +0.934405 +0.455481 +0.548635 +0.970903 +0.907796 +0.866489 +0.807179 +0.846898 +0.802728 +0.779775 +0.937524 +0.884394 +0.575491 +0.461972 +0.850481 +0.938529 +0.871066 +0.053831 +0.399074 +0.916119 +0.965624 +0.215254 +0.540675 +-0.170555 +0.153104 +0.568163 +0.780175 +0.602559 +0.267256 +0.648457 +-0.214395 +0.936739 +0.936533 +0.316265 +0.937511 +0.536792 +0.943212 +-0.038382 +0.625521 +0.953122 +0.321051 +0.886395 +-0.127372 +0.509253 +0.618365 +0.910275 +-0.869856 +0.753842 +0.222009 +0.931994 +0.499064 +0.680902 +0.914707 +0.554044 +-0.108593 +0.630049 +0.928231 +0.891508 +0.876345 +0.570199 +0.919304 +0.599550 +0.819286 +0.332187 +0.501664 +0.782004 +0.936453 +0.480084 +0.371523 +0.871034 +0.877465 +0.748368 +0.843337 +0.861029 +0.784350 +0.664384 +0.921051 +0.598238 +0.524846 +0.803484 +0.067869 +0.525767 +0.027829 +0.803354 +0.502506 +0.693337 +0.006893 +0.785722 +0.650634 +0.751392 +0.491610 +0.743503 +0.933365 +0.829383 +0.062235 +-0.019859 +0.712605 +-0.121598 +0.036442 +-0.289330 +0.196792 +0.559277 +0.552212 +0.243641 +0.439825 +0.905949 +0.388996 +0.671922 +0.465130 +0.838272 +0.509627 +0.115268 +0.779566 +0.816684 +0.635680 +0.420678 +0.898479 +0.534610 +0.423219 +0.861895 +0.043993 +-0.197149 +0.603354 +0.512044 +0.237362 +-0.039320 +0.226922 +0.599996 +0.272689 +0.409060 +0.843130 +0.931405 +0.140796 +0.498472 +0.816791 +-0.192744 +0.576560 +0.974262 +0.027949 +0.125819 +0.928024 +0.807517 +0.885217 +0.815310 +0.375833 +0.483851 +0.251994 +0.818349 +0.580707 +-0.137685 +-0.133503 +0.023958 +0.839232 +0.900366 +0.746915 +0.465308 +0.994846 +0.688655 +0.935336 +0.707700 +0.923350 +0.889152 +0.861425 +0.674352 +0.850300 +0.933598 +0.664516 +0.608444 +0.388518 +0.910213 +0.912067 +0.935109 +0.171642 +0.884094 +0.898000 +0.901331 +0.728447 +0.920394 +0.931340 +-0.054834 +0.939394 +0.891873 +0.878528 +0.167392 +0.371087 +0.756857 +0.931382 +0.896670 +0.923242 +0.894165 +0.947479 +0.512954 +0.817397 +0.379060 +0.335860 +0.948566 +0.806285 +0.995162 +0.972431 +0.515445 +0.920823 +0.808558 +0.369654 +0.436640 +0.924313 +0.854251 +0.513028 +0.467893 +0.526940 +0.349884 +-0.767217 +0.553002 +0.840596 +0.881352 +0.249024 +0.468530 +0.871833 +0.654072 +0.935365 +0.349718 +0.533590 +-0.030988 +-0.392467 +0.814707 +0.497023 +0.706528 +0.599137 +0.880751 +0.881189 +0.750280 +0.064920 +0.357882 +0.880245 +0.657342 +0.328467 +0.632276 +0.720387 +0.536170 +0.332350 +0.373426 +0.877815 +0.932067 +0.279580 +0.154709 +0.421695 +0.612492 +0.720401 +-1.019142 +0.834651 +0.784052 +0.883115 +0.903978 +0.414826 +0.851677 +0.850753 +0.452823 +0.943121 +0.731602 +0.604212 +0.320418 +0.426600 +0.458794 +0.132513 +0.529715 +0.633244 +0.186062 +0.284142 +0.868669 +0.696552 +0.762544 +0.347177 +0.610092 +0.130851 +0.706246 +-0.465213 +0.645895 +0.841655 +0.339790 +0.633093 +0.253201 +0.992540 +0.057865 +0.720455 +0.975234 +0.481807 +0.828627 +0.536233 +0.696613 +0.736818 +0.721026 +0.270109 +0.489490 +0.061386 +0.609721 +0.860681 +0.542935 +0.919506 +-0.250050 +0.930541 +0.762276 +0.604498 +0.747516 +-0.101673 +0.728843 +0.756967 +0.481807 +0.748320 +0.792674 +0.849490 +0.493625 +0.521350 +0.923251 +0.205942 +0.744540 +0.035803 +0.601807 +-0.253622 +0.566653 +0.757059 +0.610561 +0.853771 +0.554256 +0.834848 +0.912075 +0.951283 +0.150161 +0.927965 +0.417579 +0.818029 +0.502022 +0.886134 +0.809171 +0.944979 +0.386179 +0.832508 +0.744915 +0.754611 +0.021466 +0.885085 +0.571337 +0.414360 +0.699906 +0.986989 +0.299395 +0.789274 +0.539954 +0.522584 +0.510525 +0.927662 +0.796924 +0.728113 +0.318252 +0.724519 +0.952155 +0.858376 +-0.371492 +0.755435 +0.499653 +0.487234 +0.503602 +0.830570 +0.479494 +0.542662 +0.854826 +0.662841 +-0.001034 +0.964272 +-0.323390 +0.204807 +0.936200 +0.202527 +0.234327 +0.381210 +0.725827 +0.678235 +0.110374 +0.661728 +0.293759 +0.919102 +0.568957 +0.886542 +0.781922 +0.870396 +0.894649 +0.676574 +0.677320 +0.488090 +0.819174 +0.707519 +0.177429 +0.337928 +0.739054 +0.505916 +0.550076 +0.914787 +0.563901 +0.355994 +0.901557 +0.487425 +0.431165 +-0.480880 +0.419270 +0.945011 +0.708986 +0.530331 +0.334100 +0.392763 +0.829689 +0.730061 +0.228152 +0.231947 +0.357243 +0.838867 +0.910178 +0.669218 +0.771695 +0.469431 +-0.404561 +-0.058022 +0.967895 +0.889822 +0.896356 +0.729627 +0.685445 +0.867819 +0.945429 +0.261680 +0.676163 +-0.209247 +0.470345 +0.840309 +0.444832 +-2.519914 +0.745806 +0.326363 +0.686529 +0.979740 +0.633193 +0.045163 +0.471975 +0.595738 +0.448632 +-3.252780 +0.879126 +0.832649 +0.985870 +0.884903 +0.345407 +0.101177 +0.546580 +0.633660 +0.676381 +0.904436 +0.852962 +0.774274 +0.933875 +0.948472 +0.925703 +0.925830 +0.484383 +0.925631 +0.388236 +0.901657 +0.982792 +0.919394 +0.800986 +0.544438 +0.227918 +0.740687 +0.103116 +0.676707 +0.884707 +-0.080030 +0.794354 +0.777554 +0.566385 +0.276307 +0.230165 +0.851034 +0.774408 +0.805928 +0.628447 +0.447792 +0.581932 +0.796897 +0.735842 +0.531042 +0.495266 +0.529226 +0.721756 +0.902012 +0.892870 +0.840204 +0.943876 +0.670939 +0.322499 +0.329828 +0.535515 +0.895532 +0.884099 +0.826119 +0.721815 +0.868583 +0.589972 +0.487743 +0.374856 +0.770227 +-0.612071 +0.857705 +-0.487156 +-0.052226 +0.208735 +0.574484 +0.893793 +0.808620 +0.565597 +0.823555 +0.247838 +0.461406 +0.318308 +0.875594 +0.845014 +0.620044 +0.228226 +0.557707 +0.569781 +0.363582 +0.734087 +0.492672 +0.461155 +0.677597 +0.495689 +0.985871 +0.940281 +0.639254 +0.930036 +0.852235 +0.835924 +0.589048 +0.380268 +0.703992 +0.939152 +0.836068 +0.967253 +0.929849 +0.846128 +0.760293 +0.851512 +0.411125 +0.132287 +0.051715 +0.442949 +0.675319 +0.298424 +0.891539 +0.801128 +0.714822 +0.526145 +0.747040 +0.388291 +-0.856577 +0.611614 +0.225737 +0.759563 +0.689419 +0.217357 +0.606625 +0.736522 +0.575138 +0.535976 +0.685062 +0.478379 +0.690222 +0.864588 +0.681617 +0.900386 +0.339249 +0.666945 +0.557305 +0.889645 +0.924795 +0.841524 +0.931929 +0.928323 +0.820602 +-0.073021 +0.765246 +0.509229 +-0.331357 +0.927595 +0.771543 +0.328220 +-0.532583 +0.240768 +0.687708 +0.831978 +0.893144 +0.999237 +-0.202618 +0.683852 +0.947510 +0.943755 +0.948756 +0.999922 +-0.373854 +0.890953 +0.955137 +0.944699 +0.881690 +-0.115934 +-0.158733 +0.655959 +0.340470 +0.565829 +0.462900 +0.118801 +-0.029533 +0.826195 +-0.134787 +0.720477 +0.259897 +0.423525 +0.706521 +0.578303 +0.298687 +0.449627 +0.064758 +0.719138 +0.614066 +0.698706 +0.147295 +0.330546 +0.758492 +0.501524 +0.032121 +0.413135 +0.810533 +0.224480 +-5.085987 +-0.488597 +0.922263 +0.475636 +0.815186 +0.907769 +0.967639 +0.854486 +-17.168904 +0.792467 +0.804111 +-0.472067 +0.702014 +0.632503 +0.916777 +0.477723 +0.843135 +0.464865 +0.583874 +0.426943 +0.346067 +0.915050 +0.285091 +0.472786 +0.628385 +0.825528 +0.685937 +0.650417 +0.592713 +0.610587 +0.901182 +-0.177130 +0.881768 +0.926149 +0.846669 +0.929132 +0.913582 +0.922375 +0.911380 +0.808817 +-23.723927 +-4.271926 +-39.986512 +-0.598950 +0.623268 +0.667703 +0.583592 +0.598804 +0.680833 +0.216779 +0.912389 +0.345773 +0.677721 +0.472262 +0.542159 +0.537576 +0.551805 +0.503015 +0.456743 +0.506179 +0.620977 +0.564405 +0.425008 +0.519650 +0.504898 +0.618915 +0.229257 +0.607878 +0.382143 +0.542002 +0.538757 +0.575338 +0.407421 +0.623831 +0.455473 +0.457895 +0.316310 +0.679721 +0.815662 +0.827906 +-0.292670 +0.951626 +0.847661 +0.972364 +0.768884 +0.457837 +0.458680 +0.372416 +0.422332 +0.454405 +0.520056 +0.538179 +0.613099 +0.243282 +0.299787 +0.861006 +0.439274 +0.501695 +0.712758 +0.472586 +0.727896 +0.755556 +0.428632 +0.752027 +0.736130 +0.725943 +0.626520 +0.718247 +0.686983 +0.507282 +0.232451 +0.261134 +0.701050 +0.451929 +0.907226 +0.845140 +0.559977 +0.104868 +0.343437 +0.831712 +0.713592 +0.186141 +0.471693 +0.564423 +0.321795 +-0.363199 +0.621086 +0.997481 +0.157575 +0.430920 +0.837339 +0.565880 +0.035374 +0.931644 +0.247255 +0.102695 +0.599227 +0.906045 +0.267202 +0.426282 +0.806954 +0.737534 +-0.243667 +0.264989 +0.213965 +0.039660 +0.048912 +0.231794 +0.091857 +0.158634 +0.547663 +0.082624 +0.955789 +0.280611 +0.263073 +0.407336 +0.568513 +0.938789 +0.486883 +0.015148 +0.480605 +0.502681 +0.726899 +0.621698 +0.573044 +0.961857 +0.700786 +0.065868 +0.826325 +0.225476 +0.130916 +0.832063 +0.995844 +0.684817 +-36120.160957 +0.728375 +-27.401000 +0.930397 +0.508676 +0.884404 +0.698796 +0.422040 +0.847801 +0.642905 +0.954858 +0.932983 +0.786849 +0.686093 +0.927040 +-0.268809 +0.982818 +0.828276 +0.789591 +0.618367 +0.661698 +0.814780 +0.556427 +0.248927 +0.506750 +0.884531 +0.595281 +0.536019 +0.542796 +-0.599135 +0.866255 +0.026096 +-0.274818 +0.923947 +0.245809 +0.344067 +0.837638 +0.881451 +0.553227 +0.473426 +0.873142 +0.923287 +0.625724 +0.922799 +0.830496 +0.783094 +0.550297 +0.675723 +0.605240 +0.877850 +0.662066 +0.565554 +0.856800 +0.541410 +0.478621 +0.679708 +0.827786 +0.572841 +0.243477 +0.583094 +-0.173116 +0.752378 +0.406608 +-0.005781 +0.793347 +0.527270 +0.710329 +0.610355 +0.867539 +0.364063 +0.857178 +0.775817 +0.864747 +0.975521 +0.651677 +0.993560 +0.370461 +0.930234 +0.518331 +0.746155 +0.729228 +0.863894 +0.932947 +0.852735 +0.206158 +0.143529 +0.086798 +0.270034 +0.020298 +0.598728 +0.627693 +0.573799 +0.512815 +0.717780 +-0.648105 +0.731135 +0.914874 +0.403669 +0.614893 +-0.218406 +0.071197 +0.787852 +0.354078 +0.522922 +0.836536 +-21.521491 +0.644857 +0.583649 +0.810253 +-0.244789 +0.623207 +0.744680 +0.492447 +-0.007769 +0.924870 +0.452619 +0.326756 +0.931431 +0.836935 +0.864769 +0.566431 +0.567450 +0.798201 +0.671852 +0.519451 +0.906715 +0.342717 +0.979688 +0.847794 +-0.130260 +-0.235988 +0.253632 +0.655590 +0.956865 +0.274424 +0.941565 +0.821536 +0.734873 +-0.148185 +0.766691 +0.726335 +0.770540 +0.875683 +0.695472 +0.847882 +0.805458 +0.902756 +0.157806 +0.667490 +0.416426 +0.885563 +0.971231 +0.699355 +-0.218849 +0.664020 +0.770590 +0.784909 +0.896553 +0.980792 +0.987144 +0.968792 +0.682639 +0.896101 +0.377441 +0.945405 +0.925375 +0.454945 +0.858638 +-0.103412 +0.948995 +0.851347 +0.516817 +0.735812 +0.880543 +-0.212531 +0.654622 +0.739191 +-0.078331 +0.089242 +0.981363 +0.556230 +0.422213 +0.840502 +0.557137 +0.697674 +0.893851 +0.707180 +0.879379 +0.908319 +0.362090 +0.873385 +0.613932 +0.600029 +0.860118 +0.196213 +0.886450 +0.849388 +0.628593 +0.932394 +0.859926 +0.551651 +0.910552 +0.371063 +0.674485 +0.461957 +0.879474 +0.478259 +0.746844 +0.898974 +0.378216 +0.869143 +0.844259 +0.887374 +0.770479 +0.819841 +0.447868 +0.850566 +0.768048 +-0.175842 +0.652063 +0.656754 +0.397449 +0.913807 +0.511795 +0.388055 +0.882318 +0.695932 +0.477041 +0.818325 +0.110898 +0.515324 +0.793406 +0.401908 +0.619971 +0.520200 +0.459962 +0.677709 +0.693592 +0.890200 +0.468763 +0.262836 +0.726826 +0.737820 +0.720587 +0.929709 +0.935017 +0.462855 +0.862505 +0.586521 +0.645266 +0.968945 +0.911169 +0.878087 +0.818062 +0.944841 +0.884260 +0.922391 +0.503431 +0.562876 +0.781417 +0.802467 +0.932764 +0.442540 +0.487363 +0.929301 +0.891751 +0.552715 +0.550478 +0.857207 +0.409982 +0.733499 +0.887557 +0.752024 +0.592935 +0.785238 +0.940949 +0.934275 +0.215109 +0.852952 +0.562118 +0.927752 +0.687883 +0.637471 +0.796768 +0.811780 +-0.437740 +0.825362 +0.465893 +0.910207 +0.586013 +0.509344 +0.921978 +0.480658 +-0.392389 +0.763113 +0.891964 +0.916255 +0.921416 +0.877837 +0.931147 +0.934774 +0.871989 +0.897306 +0.986758 +0.956455 +0.308960 +0.409576 +0.018053 +0.919283 +0.945088 +0.778103 +0.191186 +0.450278 +0.946896 +0.898637 +0.733276 +0.433645 +0.429344 +0.409766 +0.125628 +0.964255 +0.919258 +0.934562 +0.367724 +0.958634 +0.455870 +0.577462 +0.014692 +0.901489 +0.198503 +0.451586 +0.716818 +0.265466 +0.090308 +-0.253179 +0.118822 +0.054589 +-0.014445 +0.443112 +0.054004 +0.219696 +0.259008 +-0.005421 +0.155799 +0.349033 +-0.020585 +-0.036864 +0.428468 +0.062271 +0.344821 +0.133592 +0.885709 +0.168833 +0.705212 +0.045917 +0.367616 +0.705899 +0.799921 +0.893480 +0.988274 +0.279304 +0.803469 +0.808676 +0.439707 +0.614977 +0.852735 +0.959704 +0.887270 +0.793615 +0.902840 +0.358215 +0.502498 +0.348572 +0.989062 +0.490394 +0.636171 +0.751773 +0.611071 +0.481066 +0.653040 +0.460125 +0.210548 +0.353134 +0.318399 +0.659332 +-0.136123 +0.557813 +0.382809 +0.274245 +0.780190 +0.607187 +0.636362 +0.842610 +0.293177 +0.562294 +0.635147 +0.388630 +0.469158 +0.753338 +0.688882 +0.623355 +0.518472 +0.479936 +0.704896 +0.372181 +0.422932 +0.932711 +0.103941 +0.937588 +0.919867 +0.921163 +0.346850 +0.971529 +0.294908 +0.503198 +0.742347 +0.406645 +0.410404 +0.810441 +0.732586 +0.431139 +0.427175 +0.640857 +0.414176 +0.146728 +0.991922 +-0.104478 +0.209433 +0.899998 +0.492569 +0.711527 +0.430725 +-1.475948 +0.953388 +0.666750 +0.926007 +0.708532 +0.840690 +0.365880 +0.515977 +0.233148 +0.448725 +0.465994 +0.985694 +0.911135 +0.325645 +0.567228 +0.374645 +0.855004 +0.974548 +0.539849 +0.357982 +0.036958 +0.660750 +0.927811 +0.410947 +0.842532 +0.931520 +0.688008 +0.915680 +0.507780 +0.852420 +0.648776 +0.810897 +0.517868 +0.922496 +0.754258 +0.019242 +0.772209 +0.838150 +0.721701 +0.877216 +0.512579 +0.491392 +-0.039246 +-0.063125 +0.676893 +0.915553 +0.755520 +0.694054 +0.450768 +0.473994 +-0.236794 +0.996883 +0.929201 +0.258756 +0.877004 +0.553168 +-0.423956 +0.172865 +-0.191809 +0.936120 +0.614384 +0.743296 +0.659501 +0.400815 +0.883827 +0.364598 +0.894495 +0.885561 +0.395766 +-0.009207 +0.706896 +0.706802 +0.843362 +0.025268 +0.164439 +0.898397 +0.884924 +0.932440 +0.798203 +0.534348 +0.573872 +0.888631 +0.644135 +0.831886 +0.880907 +0.881116 +0.866378 +0.762199 +0.404509 +0.547495 +0.986357 +0.713871 +0.868387 +-0.059131 +0.837619 +0.378615 +0.800233 +0.907636 +0.160666 +-0.149417 +0.790627 +-6.843265 +0.795764 +0.767202 +0.633343 +0.667761 +0.879722 +0.646934 +0.460058 +0.826352 +0.908658 +0.873996 +0.926666 +0.593979 +0.153144 +0.756298 +0.689078 +0.756226 +0.124906 +0.756800 +0.552260 +0.234887 +0.156163 +0.984157 +0.494219 +0.805106 +0.729652 +0.448246 +0.754275 +0.502363 +0.790285 +0.873142 +0.718993 +0.512802 +0.610543 +0.798037 +0.506400 +0.710988 +0.957452 +0.797786 +-0.464087 +0.529261 +0.874486 +0.964421 +0.246094 +0.768699 +0.561987 +0.363330 +0.490154 +0.370045 +0.819648 +-0.111353 +0.591732 +0.658156 +0.389981 +-0.201694 +0.559602 +0.666342 +0.722990 +0.869186 +0.936160 +0.520093 +0.529486 +0.302523 +0.635384 +0.470603 +0.666537 +0.729863 +0.113719 +0.540397 +0.340858 +0.890469 +0.890469 +0.367011 +0.697487 +0.702801 +0.888958 +0.545360 +0.644593 +0.827192 +0.821967 +0.867940 +0.568053 +0.557381 +0.888272 +0.765863 +0.749799 +0.863334 +0.893994 +0.801137 +0.768744 +0.550247 +0.530537 +0.424857 +0.879012 +0.253873 +0.716391 +0.890418 +0.383172 +0.752658 +0.799527 +0.680508 +0.762802 +0.939237 +0.423880 +0.284929 +0.955720 +0.451582 +0.898771 +0.585309 +0.937339 +0.071358 +0.399338 +0.961551 +0.572951 +-0.144177 +0.779831 +0.607101 +0.960244 +0.723323 +0.433896 +0.681830 +0.899247 +0.897189 +0.108269 +0.778583 +0.714845 +0.924259 +0.625796 +0.336570 +0.003263 +0.798806 +-0.201962 +-0.194985 +0.688444 +0.759776 +0.575444 +0.419793 +0.413818 +-1.365410 +0.464306 +0.521711 +0.763542 +0.991242 +0.410637 +0.632312 +0.840502 +0.798510 +0.483365 +0.632471 +0.840813 +0.806671 +0.487888 +0.595179 +0.909360 +0.793856 +0.719936 +0.627085 +0.796357 +0.938990 +0.920661 +0.528190 +0.638343 +0.567558 +0.577479 +0.745622 +0.398758 +0.507125 +0.324752 +0.655324 +0.303128 +0.857965 +0.750251 +0.703840 +0.614111 +0.438033 +0.949337 +0.851869 +0.514714 +0.653182 +0.903580 +0.915944 +0.918793 +0.619226 +0.853231 +-0.256362 +0.931361 +0.810322 +-0.359938 +0.741360 +0.857407 +0.856307 +-0.022555 +0.707186 +0.208465 +0.635042 +0.742158 +0.756195 +0.536655 +0.725420 +0.485873 +0.459602 +0.671786 +-0.150105 +-0.261996 +0.915073 +-0.195616 +-0.287432 +0.603106 +0.537383 +0.415478 +0.592048 +0.727484 +0.936365 +0.706275 +0.737912 +0.702569 +0.798916 +0.250412 +-0.236203 +0.409185 +-0.050933 +0.845225 +-0.203533 +0.671180 +0.927922 +0.802293 +0.425765 +0.820399 +0.740582 +0.684389 +0.762271 +0.864213 +0.946303 +0.731156 +0.942620 +0.748214 +0.886125 +0.819774 +0.780578 +0.875835 +0.714802 +0.559576 +0.666280 +0.761214 +0.757296 +0.893137 +0.747543 +0.603729 +0.907891 +0.627282 +0.606590 +0.722498 +0.818857 +0.960599 +0.925598 +0.626456 +0.790327 +0.849891 +0.361537 +0.859816 +0.931197 +0.124621 +0.779123 +-0.034318 +-0.429437 +0.776263 +0.918327 +0.508249 +0.867625 +0.654098 +0.975847 +0.283689 +0.920673 +0.888884 +-264.933838 +0.331953 +0.888860 +0.237688 +0.890443 +0.555353 +0.927788 +0.633638 +0.932987 +-1.809037 +0.148171 +0.429321 +0.827550 +0.497570 +0.524479 +0.572896 +0.759778 +0.592873 +-663.409195 +0.995018 +0.975878 +0.088070 +0.785236 +0.932270 +0.838342 +0.700587 +0.140022 +0.933116 +-14.368159 +0.910345 +0.674119 +0.280992 +0.715721 +0.583236 +0.492893 +0.555582 +0.727593 +0.790304 +0.519542 +0.222863 +0.658124 +0.685459 +0.603296 +0.406730 +0.679057 +0.876643 +0.929172 +0.493429 +0.654142 +0.934569 +0.909218 +0.830304 +0.841665 +0.267542 +0.854574 +0.567633 +0.970446 +0.373703 +0.690119 +0.589906 +0.079970 +0.327502 +-0.219358 +0.429786 +0.366394 +0.941043 +-42.647707 +0.733796 +-0.070587 +0.584930 +0.722665 +0.688939 +0.739262 +0.682434 +0.118090 +0.742145 +0.855614 +0.850219 +0.436279 +0.857050 +0.839387 +0.712552 +0.826268 +0.675335 +0.844892 +0.278987 +0.182095 +0.738034 +0.840001 +-0.315900 +0.531635 +0.647945 +0.461441 +0.333673 +0.718814 +0.527462 +0.856614 +0.042021 +0.182250 +0.062258 +0.837018 +0.445882 +0.608936 +0.703318 +0.855554 +-0.141087 +-0.091140 +0.881443 +0.437287 +0.741682 +0.698582 +0.591431 +0.787039 +0.838932 +-0.140822 +0.506312 +0.747980 +0.837818 +0.337506 +0.803202 +0.574078 +0.893770 +0.992872 +0.729052 +0.893199 +0.415189 +0.944846 +0.844318 +0.203004 +0.088218 +0.641471 +0.937472 +0.357591 +0.890651 +0.410944 +0.867037 +0.085048 +0.236987 +0.655244 +0.885491 +0.995657 +0.920167 +0.780409 +0.449835 +0.475454 +0.830333 +0.795789 +-0.066865 +0.564514 +0.331054 +0.688708 +0.589811 +0.819723 +0.321768 +0.496682 +0.426996 +0.611110 +0.442627 +0.766296 +0.829632 +0.632286 +0.550032 +0.755391 +0.928450 +0.726882 +0.293514 +0.449791 +0.193487 +-0.822183 +0.748285 +0.796634 +0.399451 +0.598556 +0.721032 +0.688035 +0.910178 +0.727473 +0.886842 +0.852495 +0.720506 +0.625728 +0.879890 +0.814919 +0.511244 +0.863240 +0.691017 +0.699534 +0.850428 +0.234709 +0.883076 +0.809341 +0.641281 +0.564440 +0.571765 +0.888627 +0.773569 +0.509399 +0.827860 +0.673737 +0.223107 +0.715564 +0.948606 +0.334573 +0.589722 +0.934679 +0.427256 +0.984845 +0.324488 +0.441209 +0.139383 +0.249731 +0.643338 +0.864367 +0.935215 +0.462145 +0.741778 +-0.962525 +0.892127 +0.656071 +0.897925 +0.130712 +0.783648 +0.721900 +0.297043 +0.136761 +0.147330 +0.825905 +0.599136 +-0.768756 +0.693369 +0.336650 +0.464751 +0.914607 +0.440943 +0.805948 +0.759666 +0.707443 +0.572981 +0.823984 +-0.124298 +0.179160 +0.616902 +0.570658 +0.455862 +0.834805 +0.752427 +0.910841 +0.152809 +0.157923 +0.341249 +0.846056 +0.486869 +0.885792 +0.748774 +0.458086 +0.662416 +0.979919 +0.697672 +0.953325 +0.677564 +0.512037 +0.916313 +-0.304287 +0.660724 +0.474179 +0.684212 +0.294975 +0.420851 +0.173054 +0.646166 +0.760577 +0.855075 +0.673421 +0.507026 +0.590445 +0.924801 +0.721657 +0.645149 +0.707593 +0.689858 +0.719232 +0.487050 +0.911251 +0.490171 +0.931177 +0.867167 +0.186528 +0.704889 +0.367458 +0.474756 +0.465374 +0.724739 +0.893684 +0.392753 +0.627576 +0.471427 +0.698720 +0.208891 +0.429270 +0.846736 +0.630683 +0.720493 +0.946707 +0.526294 +0.949545 +-168.588429 +0.582579 +0.688972 +0.843380 +0.844236 +0.768046 +0.944110 +0.656466 +0.401433 +0.872800 +0.374534 +0.900026 +0.878532 +0.682316 +0.681891 +0.856834 +0.698551 +0.890106 +-0.122591 +0.591460 +0.843738 +0.437920 +0.529806 +0.516960 +0.552092 +0.892106 +0.985250 +0.887531 +0.692881 +0.392824 +0.845217 +0.236829 +0.566848 +0.729502 +0.924618 +0.755233 +0.624543 +0.509794 +0.746178 +0.353554 +0.656893 +0.656893 +0.508087 +0.731098 +0.871216 +0.135811 +0.639756 +0.559830 +0.930702 +0.525737 +0.658089 +0.622051 +0.293868 +-0.095465 +0.926036 +0.323613 +0.658546 +0.651673 +0.908463 +0.868277 +0.893953 +0.613259 +0.756843 +0.610471 +0.317670 +0.353853 +0.826613 +0.578284 +0.606687 +0.890366 +0.641078 +0.836472 +0.744728 +0.686428 +0.773413 +0.888860 +0.724419 +0.893923 +0.675250 +0.700519 +0.934161 +0.778809 +0.722219 +0.837701 +0.827524 +0.831906 +0.692357 +0.666913 +0.889105 +0.334266 +0.445890 +0.533953 +0.885657 +0.600509 +-5.482159 +0.407160 +0.984814 +0.966115 +0.685740 +0.394746 +0.347826 +0.931299 +0.949907 +0.614017 +0.800026 +0.867981 +0.856435 +0.174090 +-0.124291 +0.874871 +0.406239 +0.192909 +0.945123 +0.927193 +0.923688 +0.639706 +0.910403 +0.474930 +0.651670 +0.923552 +0.947290 +0.993938 +0.704979 +0.995677 +0.361720 +0.865299 +0.831568 +0.337629 +0.457043 +0.970854 +0.438555 +0.787853 +0.869064 +0.598235 +0.936906 +0.332451 +-0.384511 +0.502336 +0.622817 +0.912758 +0.698383 +0.828272 +0.914158 +0.547704 +0.645147 +0.696798 +0.760651 +0.706346 +0.551896 +0.464186 +0.370066 +0.604315 +0.601585 +0.584251 +0.626930 +-0.212811 +0.609481 +0.234196 +0.250470 +0.960058 +0.719988 +0.712217 +0.231782 +0.096312 +0.553057 +0.745721 +0.346810 +0.843931 +0.480072 +0.339869 +0.777321 +0.513100 +0.684472 +0.521953 +0.532992 +0.353541 +0.726307 +0.305780 +0.808857 +0.868611 +0.554273 +0.298347 +0.301365 +0.078229 +0.788059 +0.955386 +0.886316 +0.647994 +0.644513 +0.890469 +0.863833 +0.458885 +0.490490 +0.461586 +0.529697 +0.503162 +0.745567 +0.495457 +0.577341 +0.890417 +0.931112 +0.311149 +0.835761 +0.718056 +0.865060 +0.527193 +0.202069 +0.771166 +0.488057 +0.599727 +0.814526 +0.866378 +0.803482 +-0.105533 +0.901630 +0.958014 +0.475501 +0.568444 +0.990182 +0.715105 +0.748410 +0.555221 +0.535155 +0.745566 +0.728988 +0.890443 +0.833704 +0.715335 +0.888843 +0.550685 +0.868500 +0.785871 +0.570345 +0.225836 +0.745331 +0.826069 +0.556806 +0.896382 +0.681607 +0.381338 +0.380647 +0.574401 +0.493669 +0.547561 +0.809378 +0.735910 +0.953775 +0.794080 +0.845102 +0.790716 +0.642110 +0.540903 +0.840713 +0.891290 +0.330757 +0.530152 +0.817107 +0.328587 +0.472740 +0.588395 +0.130226 +0.686475 +0.937677 +0.542547 +0.277885 +0.799312 +0.325028 +0.410249 +0.838670 +0.811027 +0.455191 +0.498255 +0.530282 +0.857011 +0.528097 +0.383801 +0.246503 +0.850712 +0.488670 +0.719309 +0.000771 +0.647850 +0.345225 +0.499359 +0.974130 +0.374623 +0.963247 +0.688112 +0.865006 +0.787103 +0.936180 +0.533399 +0.314078 +0.728992 +-0.174008 +0.762540 +-1.070174 +0.852553 +0.901307 +0.612644 +0.558864 +0.333127 +0.669156 +0.957587 +0.246311 +0.699453 +0.354813 +0.097704 +0.450857 +0.474648 +0.551263 +0.709403 +0.608490 +0.889941 +-0.468445 +0.419862 +0.436336 +0.859589 +0.436140 +0.978199 +0.818645 +0.721903 +0.918820 +0.347171 +-0.220237 +0.693493 +0.138994 +0.310132 +-0.084548 +0.126450 +-0.417077 +0.930140 +0.896218 +-0.123177 +0.389639 +0.657925 +0.916471 +0.620954 +0.916292 +0.922511 +0.987085 +0.768842 +0.343303 +0.987348 +0.996191 +0.840462 +0.233472 +-0.150142 +0.685165 +0.202994 +0.074638 +0.859319 +0.930627 +0.600704 +0.901337 +0.854971 +0.896196 +0.764432 +0.339738 +0.664479 +-0.007363 +0.783636 +0.346160 +0.669046 +0.516405 +0.755228 +0.897415 +0.907882 +0.885256 +0.126225 +-8.470571 +0.688139 +0.781724 +0.920889 +0.396534 +0.571194 +0.985325 +0.958416 +0.985256 +0.537678 +0.391639 +0.865203 +0.226178 +0.675650 +0.130353 +0.677002 +0.933145 +-0.385133 +0.777569 +-0.323894 +0.618004 +-0.714764 +-0.019535 +0.519880 +0.029147 +0.841798 +0.891697 +0.913136 +0.404909 +0.555448 +0.807158 +0.659830 +0.104654 +0.761536 +0.503123 +0.920500 +0.793533 +0.490964 +0.654003 +0.655097 +0.368307 +0.860525 +0.993683 +0.530413 +0.875490 +0.909139 +0.981498 +0.593075 +0.545340 +-1.192048 +0.859933 +0.824217 +0.931774 +0.194870 +-0.026378 +0.796807 +-0.278961 +-0.417349 +-0.305763 +-0.276414 +-0.018474 +0.934796 +-0.328417 +-0.180405 +0.303753 +-0.145352 +0.557138 +-0.016706 +0.358511 +0.888874 +0.895004 +0.908397 +-0.332687 +0.676757 +0.778908 +0.955024 +0.920659 +0.490041 +0.686359 +0.307930 +0.413649 +0.628786 +0.501142 +0.770353 +0.396578 +0.839018 +0.591724 +0.831559 +0.675767 +0.883008 +0.702271 +0.387143 +0.445106 +0.932184 +0.443775 +0.548745 +0.567956 +0.771775 +0.895869 +0.837899 +0.968480 +0.948022 +-14.340422 +0.377815 +0.845896 +0.845896 +0.420026 +0.903729 +0.902516 +0.884682 +0.771903 +0.894046 +0.740926 +0.713381 +0.908462 +0.893525 +0.811966 +0.935231 +0.151446 +0.598164 +0.402065 +0.965554 +0.784290 +0.260746 +0.633634 +0.840424 +0.635569 +0.823856 +0.926512 +0.865339 +0.772201 +0.313392 +0.680882 +0.883504 +0.592658 +0.810339 +0.522602 +0.670876 +0.877781 +0.298797 +0.630674 +0.117484 +0.780770 +0.902608 +0.705870 +-0.268326 +0.241469 +0.722307 +0.035779 +0.863562 +0.301824 +0.526561 +0.163734 +0.642791 +0.349949 +0.241354 +0.645251 +0.162192 +0.438645 +0.353373 +0.562223 +0.876973 +0.016359 +-0.233237 +0.501152 +0.029644 +0.183825 +0.513149 +0.297731 +-0.146786 +0.250908 +0.350195 +0.548927 +-0.177263 +0.909876 +0.321080 +0.629452 +0.803695 +0.946976 +0.632401 +0.952585 +0.952626 +0.796204 +0.587293 +-0.317302 +0.855052 +0.711015 +0.823666 +0.915468 +0.411206 +0.638848 +0.975560 +0.927801 +0.278150 +0.852275 +0.916334 +0.630514 +0.533073 +0.529088 +0.932034 +0.972391 +0.020834 +0.925577 +0.459228 +0.858091 +0.097491 +0.498025 +0.877885 +0.640145 +0.842816 +-0.018716 +0.866806 +0.671582 +0.599754 +0.636137 +0.863550 +0.823574 +0.912940 +0.934942 +0.935569 +0.560522 +0.815144 +0.747264 +0.293938 +0.460093 +0.263727 +0.881418 +0.621302 +0.953857 +0.869519 +0.938222 +0.929173 +0.825731 +0.589412 +0.931114 +0.512406 +0.568220 +0.273100 +0.645331 +0.881448 +0.794893 +0.882295 +0.254252 +0.837680 +0.458472 +0.928194 +0.706652 +0.510094 +0.430266 +0.311598 +0.429706 +0.547947 +0.475997 +0.818068 +0.683557 +0.857522 +0.529552 +0.962408 +0.792248 +0.897749 +0.933270 +0.489312 +-9.361104 +0.534482 +0.710540 +-0.080438 +-0.210863 +0.328575 +0.745194 +0.841082 +0.916900 +0.262968 +0.318796 +0.744825 +0.505436 +0.641389 +0.349349 +0.687081 +-0.328348 +0.491865 +0.470106 +0.751114 +0.871784 +0.734400 +0.894797 +0.924023 +0.401203 +0.652142 +0.716608 +0.942512 +0.878843 +0.868579 +-0.262652 +0.853571 +0.683790 +0.796317 +0.337324 +0.832134 +0.866593 +0.987491 +0.250422 +0.758650 +0.847998 +0.191271 +-0.075289 +-0.106435 +-0.084404 +0.715059 +0.690467 +0.151486 +0.538421 +0.744483 +0.735428 +-0.235106 +0.396882 +0.838996 +0.114440 +-0.279918 +0.918357 +-0.196697 +0.946355 +-0.037434 +-0.272935 +0.809323 +0.125690 +-0.080561 +0.815762 +0.957337 +0.934603 +0.673370 +0.906438 +0.560693 +0.634688 +0.938586 +0.524423 +0.708586 +0.562555 +0.713572 +0.742641 +0.472606 +0.567644 +0.914387 +0.931765 +0.732631 +0.868904 +0.658008 +0.844603 +0.896370 +0.498684 +0.469975 +0.782283 +0.793433 +0.617545 +0.716156 +0.862283 +0.568690 +0.705555 +0.707955 +0.726003 +-0.011461 +0.924430 +0.553782 +0.894794 +0.857231 +0.558711 +0.738957 +0.681713 +0.622250 +0.639875 +0.743267 +0.601723 +-0.035001 +0.884745 +0.577186 +0.290328 +0.760287 +0.412788 +-0.292249 +0.842897 +0.787081 +0.821459 +0.830956 +0.288704 +0.637888 +0.937725 +0.548050 +0.654611 +-0.246582 +0.389357 +0.740592 +0.350953 +0.683240 +0.904383 +-2.774490 +0.721176 +0.811679 +0.555581 +0.874372 +0.695632 +0.001408 +0.906573 +0.926147 +0.877874 +-0.288940 +0.219382 +0.390553 +0.700011 +0.780927 +0.461450 +0.483570 +0.931392 +0.857614 +-0.841870 +-0.215933 +0.028868 +0.421481 +0.748179 +0.784525 +0.292055 +0.033826 +0.446990 +0.899872 +-0.012009 +0.363794 +0.429011 +0.546584 +0.850851 +0.962950 +0.737148 +0.961539 +0.643631 +0.784510 +0.731805 +0.677183 +0.786261 +0.760788 +-19.048500 +0.696824 +0.947391 +0.953703 +0.702605 +0.875647 +0.680704 +0.844674 +0.765220 +0.806071 +0.902178 +0.625977 +0.673219 +0.384434 +0.628346 +0.957035 +0.581947 +0.399135 +-0.082519 +0.770267 +0.709354 +0.675449 +0.933077 +0.597562 +0.692091 +0.522209 +0.849501 +0.735826 +0.746729 +0.894854 +0.930220 +0.928166 +0.928329 +0.918258 +0.800727 +0.800825 +0.893125 +0.930661 +0.821081 +0.658276 +0.459421 +0.734094 +0.934264 +0.379957 +0.775179 +0.613543 +0.810942 +0.931255 +0.929209 +0.727712 +0.736379 +0.873334 +0.928907 +0.886263 +0.684935 +0.906510 +0.414411 +0.741214 +0.896348 +0.921353 +0.271935 +0.554595 +0.867938 +0.660835 +0.469554 +0.411567 +0.981121 +0.459949 +0.516524 +0.567512 +0.554614 +0.690306 +0.894172 +0.765840 +0.761729 +0.770613 +0.894645 +0.993113 +0.819972 +0.616411 +0.653740 +0.882383 +0.809361 +0.881371 +0.828287 +0.957384 +0.932813 +0.454141 +0.454652 +0.067688 +0.567444 +0.978743 +0.804407 +0.575875 +0.781935 +0.950010 +0.968452 +0.812330 +0.401411 +0.365592 +0.451045 +0.632919 +0.715269 +0.859513 +0.928093 +0.896314 +0.376347 +0.016007 +0.288702 +0.917960 +0.944982 +0.747271 +0.580595 +0.800805 +0.746928 +0.716480 +0.862343 +0.925115 +0.850352 +0.449684 +0.678715 +0.704505 +0.462184 +0.395755 +0.659169 +0.625534 +0.853917 +0.494865 +0.757758 +0.934949 +0.752448 +0.929271 +0.813756 +0.612657 +0.794097 +0.987376 +0.481478 +0.797876 +0.928064 +0.668541 +0.754446 +0.031438 +0.781267 +0.814063 +0.920040 +0.731385 +0.504158 +0.731981 +0.302009 +0.868747 +0.740661 +0.837057 +0.645256 +0.766670 +0.883420 +0.547090 +0.861156 +0.852834 +0.867872 +0.527238 +-0.130223 +0.512052 +0.636351 +0.486217 +0.751773 +-0.078452 +0.662202 +0.611244 +-0.106114 +0.682838 +0.692238 +0.092432 +0.282525 +0.752206 +0.329932 +0.704498 +0.557227 +0.552361 +0.288731 +0.774818 +0.760299 +0.488485 +0.197200 +0.209687 +-0.080178 +0.831003 +0.541524 +0.194714 +0.515018 +-0.319454 +0.602619 +0.346828 +0.693175 +0.524805 +0.649514 +0.495501 +0.126444 +0.454943 +0.020781 +0.600797 +0.021102 +0.805806 +0.776727 +0.724820 +0.527184 +-0.312068 +0.803940 +0.666004 +0.405254 +0.587762 +0.521809 +0.845259 +0.755888 +0.748750 +0.204287 +0.351167 +0.820156 +-0.363651 +-1.078549 +0.717084 +-0.199440 +0.876155 +0.529920 +0.676985 +0.841495 +0.869224 +0.826014 +0.395994 +0.731635 +0.838560 +0.742058 +0.972330 +0.746922 +0.741020 +-0.227041 +0.313733 +0.527026 +0.680984 +0.674493 +0.059628 +0.936031 +0.834548 +0.761068 +0.846925 +0.546514 +0.897180 +0.342527 +-0.374743 +-0.271309 +-0.055490 +0.825080 +0.735687 +0.367927 +0.847555 +0.551118 +0.824113 +0.841053 +0.859441 +0.830107 +0.293940 +0.427738 +0.365842 +0.432354 +0.453469 +0.878701 +0.919060 +0.818013 +0.917075 +0.711636 +0.259376 +0.389741 +0.816851 +0.864079 +0.248899 +0.697228 +0.807245 +0.808327 +0.763873 +0.901347 +0.244510 +0.229671 +0.406800 +0.796507 +0.833776 +0.714385 +-0.164589 +0.758926 +0.830589 +0.966046 +0.848926 +0.343093 +0.578834 +0.887500 +0.600643 +0.808090 +0.565211 +0.548305 +0.433934 +0.887592 +0.907117 +0.508786 +0.749096 +0.746475 +0.590629 +0.722873 +0.919597 +0.779627 +0.779600 +0.702493 +0.866966 +0.803333 +0.899874 +0.691893 +0.604076 +0.478622 +0.496633 +0.654098 +0.729846 +0.885883 +0.679000 +0.727314 +0.985192 +0.661663 +0.820755 +0.912882 +0.687577 +0.915714 +0.499814 +0.932931 +0.820128 +0.873625 +0.705261 +0.876095 +0.685745 +0.629671 +0.686098 +0.729443 +0.918442 +0.610143 +0.451923 +-51.028992 +0.543298 +-9.526606 +0.745523 +0.557096 +0.898872 +0.393984 +0.700905 +0.587328 +0.729570 +0.796102 +0.042169 +0.907457 +0.785566 +0.230748 +0.764518 +0.344307 +-0.578943 +0.853520 +0.230030 +-0.123719 +0.793786 +0.413560 +0.823334 +-0.297643 +0.690811 +-0.467469 +0.552912 +0.946714 +0.248864 +0.429751 +0.979835 +0.700759 +0.852251 +0.881717 +0.903627 +0.837592 +0.595859 +0.719140 +0.899556 +0.936777 +-0.199488 +0.643907 +0.934564 +0.981155 +0.968392 +0.904535 +0.876397 +0.555695 +0.950474 +0.940091 +0.938018 +0.447227 +0.928412 +0.741133 +0.938260 +0.759320 +0.711270 +0.798225 +0.920183 +0.349987 +0.461005 +0.645352 +0.803900 +0.792394 +0.835042 +0.447708 +0.848065 +0.542707 +0.386523 +0.339804 +0.810339 +0.842397 +0.516903 +-0.194282 +0.838971 +0.869561 +0.756260 +-0.156387 +0.452396 +0.375622 +0.945719 +-0.135407 +0.539152 +0.717012 +0.831781 +0.784356 +0.574484 +0.384473 +-0.841224 +0.931928 +0.345772 +0.486615 +0.582084 +0.903990 +0.326286 +0.461375 +0.814870 +0.894467 +0.670327 +0.706165 +0.469834 +-0.396266 +0.227093 +0.393704 +0.804908 +0.557615 +0.703594 +0.795158 +-0.204362 +0.944503 +0.216533 +0.822700 +0.422097 +0.337339 +0.415460 +0.375759 +0.920198 +0.358731 +-0.229228 +0.597075 +0.863677 +0.463290 +0.886095 +0.796342 +0.667319 +-0.666079 +0.816535 +-0.137662 +0.712148 +0.842769 +0.763771 +0.440961 +0.740769 +0.773242 +0.587695 +0.273783 +0.551803 +0.849589 +0.985188 +0.659519 +0.844411 +0.707153 +0.641472 +0.734663 +0.550809 +0.485303 +0.925409 +0.320962 +0.052598 +0.518881 +0.408164 +0.654771 +0.940960 +0.976682 +0.367364 +0.590562 +0.539348 +0.599266 +0.595387 +-0.269062 +0.939501 +0.945243 +0.788713 +0.995675 +0.829412 +0.936188 +0.665071 +0.494604 +0.011965 +0.402736 +0.500808 +0.294473 +-0.012611 +0.412088 +0.706203 +0.445483 +0.958484 +0.931430 +0.052435 +0.746482 +0.820434 +-0.215855 +0.589489 +-0.129750 +-0.161925 +-0.012452 +0.730472 +-0.025703 +0.433952 +0.410712 +0.687556 +0.133055 +0.716694 +0.720420 +0.636466 +-0.483005 +0.537904 +0.131117 +0.757700 +0.350903 +0.107510 +0.732138 +0.328131 +0.357882 +0.811283 +-0.129114 +0.375324 +-0.104843 +0.929568 +0.678650 +0.626848 +0.730456 +0.444460 +0.894014 +0.857848 +0.923769 +0.729151 +-0.212177 +-0.394961 +0.523855 +0.826411 +-0.007359 +0.572650 +0.811044 +0.441158 +0.256197 +0.524759 +0.778528 +-0.280787 +0.547404 +0.932429 +0.073396 +0.343170 +0.560042 +0.144652 +0.826753 +0.639858 +0.929421 +0.733632 +0.677851 +-0.153732 +0.394667 +0.854647 +-0.126975 +0.519672 +0.914309 +0.817573 +0.721845 +0.666438 +0.649434 +-0.297401 +0.781454 +0.731814 +0.519956 +-0.155056 +0.727842 +0.540137 +0.778126 +-0.276676 +0.773614 +0.734296 +0.703978 +0.770893 +0.533976 +0.746815 +-0.460335 +0.879557 +0.944215 +-0.191807 +0.777228 +0.826312 +0.739758 +-0.149356 +0.874112 +0.930012 +0.841605 +0.900840 +0.906875 +0.987433 +0.521392 +0.651476 +0.856367 +0.921680 +0.561080 +0.976688 +0.850109 +0.725227 +-0.343524 +0.885296 +0.958079 +0.922912 +0.933218 +0.838082 +0.919799 +0.845569 +0.593647 +0.566392 +0.576603 +0.970046 +0.960446 +0.977961 +-238981085.847267 +0.904213 +0.980366 +0.937834 +-2.268232 +0.418876 +0.976051 +0.943878 +0.983161 +0.855642 +0.941210 +0.941863 +0.322637 +0.926044 +0.547705 +0.896726 +0.922717 +0.414590 +-0.356898 +0.814751 +0.886767 +0.692498 +0.512220 +0.945647 +0.615848 +0.722267 +0.929640 +0.897515 +0.755186 +0.366471 +0.357075 +0.677346 +0.013495 +0.878202 +0.946654 +0.899839 +0.800977 +0.541843 +-0.177699 +0.326534 +0.418917 +0.076319 +0.797048 +0.993938 +0.907363 +0.529206 +0.807520 +-0.028058 +0.847214 +0.614392 +0.347449 +0.890058 +0.670357 +0.948211 +0.987186 +0.969666 +0.151899 +-3022625253.371361 +0.450876 +0.832099 +0.729861 +0.992438 +0.836801 +0.994979 +0.796370 +0.865012 +0.333659 +0.745317 +0.928996 +0.701245 +0.765830 +-0.274804 +0.827198 +0.475366 +0.643881 +0.684450 +0.280764 +0.905515 +0.978220 +0.054342 +0.934798 +0.989819 +0.949009 +0.935895 +0.884785 +0.621102 +0.670189 +0.429798 +0.964361 +0.856680 +0.765318 +0.136844 +-1.338631 +0.975017 +0.834126 +-0.060658 +0.366130 +0.544920 +0.419173 +0.626594 +0.091794 +0.806978 +0.789009 +0.460948 +0.742815 +0.705509 +0.990328 +0.964247 +0.670266 +0.847168 +0.907804 +-0.198769 +0.721269 +0.498484 +0.081238 +0.925702 +-0.027553 +-0.175012 +0.758552 +-0.006333 +-0.694803 +0.937166 +0.995899 +0.520572 +0.710251 +0.846134 +0.874847 +0.481864 +-0.298264 +0.856300 +0.430416 +0.380791 +0.294694 +0.522534 +0.842450 +0.410286 +0.835805 +0.239235 +0.845224 +0.429460 +0.839488 +0.746060 +0.968554 +0.841743 +0.847495 +0.708771 +0.440621 +0.849064 +-0.063696 +0.398696 +0.514059 +-0.246806 +0.472882 +0.886183 +0.400300 +0.522409 +0.568961 +0.742059 +0.722272 +0.360173 +0.948003 +0.284476 +0.943662 +0.680499 +0.951179 +0.628033 +0.937303 +0.794731 +0.937245 +0.458681 +0.926754 +0.551150 +0.929742 +0.814797 +0.751878 +0.911865 +0.463632 +0.698797 +0.878993 +0.876377 +0.974697 +0.848174 +0.861292 +0.994108 +0.854051 +0.107043 +0.938821 +0.766984 +-0.340681 +0.690022 +0.746341 +0.490927 +0.626560 +0.958921 +0.606899 +-0.242042 +0.899847 +0.435931 +0.889627 +0.779662 +0.942095 +0.915781 +0.736340 +0.699086 +0.874833 +0.969578 +0.966008 +0.974756 +0.957893 +0.448457 +0.624345 +0.577476 +0.604257 +0.600223 +0.511861 +0.593251 +0.505960 +0.675901 +0.492015 +0.415870 +0.466203 +0.440152 +0.398324 +0.366568 +0.462021 +0.384044 +0.779441 +0.656518 +0.705140 +0.859444 +0.759053 +0.424678 +0.037702 +0.494578 +0.846376 +0.829406 +0.542577 +0.881066 +0.583819 +0.909480 +-0.234911 +0.846331 +0.472525 +0.935144 +0.331006 +0.801849 +0.942430 +0.860125 +0.823229 +0.912053 +0.904982 +0.777446 +0.738533 +0.657111 +0.901020 +0.472467 +0.718121 +0.800568 +0.956352 +0.660602 +0.849522 +0.787405 +0.783836 +0.881161 +0.902138 +0.827987 +0.686375 +0.691050 +0.742255 +0.594715 +0.672109 +0.464199 +0.627050 +0.930576 +0.938895 +0.693547 +0.835586 +0.823202 +0.837407 +0.762826 +0.535340 +0.273662 +0.710186 +0.255335 +0.533250 +0.490298 +0.434169 +0.875443 +0.915647 +0.932360 +0.562619 +0.590012 +0.487627 +0.774328 +0.425831 +0.654779 +0.930920 +0.779600 +0.354148 +0.415204 +0.898896 +0.527568 +0.179775 +0.689934 +0.204110 +0.252490 +0.932273 +0.320045 +0.799962 +0.833378 +0.855689 +0.765839 +0.766664 +0.722224 +0.452691 +0.746490 +0.901799 +0.484319 +0.835172 +-0.262765 +0.833960 +-0.323088 +0.101013 +0.773042 +0.692490 +0.657722 +0.409276 +0.738666 +0.748219 +0.874376 +0.293171 +0.007812 +0.738053 +0.799062 +0.739865 +-0.031849 +0.692767 +0.819438 +0.563917 +0.871762 +0.287236 +0.002045 +0.733507 +-0.135965 +0.522068 +0.972397 +0.150634 +-0.270601 +0.939339 +0.999187 +0.883328 +0.435670 +-0.102605 +0.803976 +0.948172 +0.880651 +0.877148 +0.931346 +0.288388 +0.850637 +0.935722 +0.891600 +0.359903 +0.398585 +0.807032 +-0.650581 +-0.456569 +-0.234658 +0.649024 +0.342620 +0.745482 +0.664596 +0.050194 +0.876664 +0.794547 +0.861327 +0.527837 +0.716191 +0.842456 +0.951836 +0.845422 +-0.118262 +-0.399151 +0.739736 +0.938441 +0.215798 +0.422686 +0.949765 +0.801128 +0.836402 +0.715690 +0.457073 +0.919841 +0.928419 +0.860930 +0.796639 +0.813355 +0.918949 +0.141005 +0.496292 +0.702353 +0.917231 +0.545348 +0.692745 +-0.171791 +0.819497 +0.184494 +0.097729 +0.726004 +0.952536 +0.664482 +0.750871 +0.812162 +0.672492 +0.556666 +0.559337 +0.253825 +0.545895 +0.988242 +0.049054 +0.948493 +0.580363 +0.172020 +0.290719 +-0.240649 +0.316755 +-0.222376 +0.092664 +0.649119 +-1.839080 +0.970878 +0.608292 +0.366676 +0.701666 +0.423614 +0.516651 +0.700260 +0.939149 +0.756378 +0.922115 +0.098839 +0.769764 +0.363752 +0.746244 +0.493385 +0.922771 +0.348769 +0.924481 +-0.349301 +0.928629 +-0.210915 +-0.229321 +0.942445 +0.645669 +0.952663 +0.641358 +0.645497 +0.688012 +0.777084 +0.784604 +-0.079526 +0.751565 +0.439989 +-0.170373 +0.923402 +0.491357 +-0.125681 +-0.246762 +-0.249600 +0.793689 +0.787041 +0.633365 +0.575244 +0.755618 +0.549389 +0.711790 +0.750816 +0.789189 +0.548145 +0.792670 +0.698388 +0.791102 +0.865602 +0.508744 +0.503653 +0.417020 +0.339120 +0.762189 +0.609242 +0.504250 +0.923415 +0.586514 +0.782114 +-0.126920 +0.539441 +0.956348 +0.745640 +0.812320 +-0.008239 +0.921097 +0.765325 +-2.322165 +0.709656 +-0.252060 +0.182464 +0.787432 +0.858929 +0.092930 +0.037386 +0.379230 +0.499930 +0.749823 +0.492154 +-0.115395 +0.773763 +0.706378 +-0.055650 +0.170303 +0.323408 +0.751036 +0.454132 +0.176710 +-0.006206 +0.477775 +0.318286 +0.498744 +0.810676 +0.017223 +0.326786 +0.187005 +0.690908 +0.265106 +0.457369 +-0.214757 +0.595984 +0.610805 +0.861583 +0.647701 +0.749232 +0.082633 +0.867635 +0.796552 +0.835804 +0.871511 +0.615005 +0.942445 +0.867290 +0.786351 +0.738782 +0.887310 +0.575497 +0.918364 +0.874204 +-0.227720 +0.867605 +0.914829 +-0.834609 +0.865253 +0.836455 +0.544749 +0.589188 +0.665124 +0.915870 +0.771842 +0.942175 +0.729568 +0.884732 +0.730312 +0.939853 +0.372578 +-0.016068 +0.765848 +0.890532 +0.628291 +0.923232 +0.257074 +0.782986 +0.940611 +0.706273 +0.565344 +0.936541 +0.600462 +0.980117 +0.756675 +0.930567 +0.971134 +0.552645 +0.298472 +0.966836 +0.140938 +0.298497 +0.776880 +-20.390662 +0.323688 +0.414371 +0.878210 +0.286899 +-50.935304 +0.891799 +0.870582 +0.992227 +0.853162 +0.936025 +-61.708100 +0.507663 +0.914271 +0.469497 +0.896327 +-0.977291 +0.323930 +-0.726191 +0.135379 +0.624730 +0.847896 +0.301751 +0.066248 +0.859860 +-0.554435 +0.628844 +-0.011602 +0.036027 +0.596619 +0.914726 +0.917497 +0.812407 +0.859504 +0.804799 +-0.043587 +0.101937 +0.512399 +0.954112 +0.620542 +0.388403 +0.579741 +0.137151 +0.610186 +0.895829 +0.524091 +0.004885 +0.280406 +0.232700 +0.170821 +0.841269 +0.354093 +0.360656 +0.360406 +0.277036 +0.725286 +0.231483 +0.401892 +0.633954 +-0.199879 +0.434682 +0.179062 +0.379227 +0.749634 +-0.073566 +0.751212 +-0.740380 +0.105351 +0.585179 +0.536555 +0.405112 +-0.056995 +0.500825 +0.727770 +0.066166 +0.465788 +0.467464 +0.457910 +0.607352 +0.606782 +0.520593 +0.801051 +0.687302 +0.190072 +0.712637 +0.568885 +0.580221 +0.427212 +0.627582 +0.527775 +0.683766 +0.861661 +0.945803 +0.892643 +0.896547 +0.494135 +0.526797 +0.834259 +0.771157 +0.919883 +0.915489 +0.931344 +0.553166 +-2.116358 +0.754826 +0.619318 +0.872080 +0.741585 +0.780775 +0.862472 +0.849985 +0.687596 +0.915036 +0.712589 +0.863557 +0.944294 +0.835521 +0.145717 +0.875063 +0.851251 +-1.619217 +0.084225 +0.821968 +0.428302 +0.089252 +0.254503 +0.742907 +0.826608 +0.742857 +0.605456 +0.309208 +0.919051 +0.910560 +0.742616 +0.945256 +0.834811 +0.935289 +0.917608 +0.938758 +0.980753 +0.953006 +0.917487 +0.370738 +0.957615 +0.430385 +0.814446 +0.699349 +0.679402 +0.599296 +0.746501 +0.839582 +0.700823 +0.501900 +0.192994 +0.862577 +0.887682 +0.246108 +0.490171 +0.682526 +0.201233 +0.921023 +-0.556527 +0.963558 +0.925366 +0.939311 +0.984518 +0.964005 +0.427998 +0.754141 +0.661577 +0.931430 +0.672489 +0.883496 +0.819042 +0.807632 +0.825434 +-1.448946 +0.902514 +0.669338 +0.730372 +0.738618 +0.585670 +0.694913 +0.654836 +0.330520 +0.626436 +0.376968 +0.159432 +0.566316 +0.445538 +0.399649 +0.662755 +-0.795424 +0.280872 +0.496448 +-0.233749 +0.914662 +0.506662 +0.657760 +0.703744 +0.594016 +0.841620 +0.716575 +0.937777 +0.641156 +0.497395 +0.645959 +0.656743 +0.936631 +0.972640 +0.907962 +0.379495 +0.102465 +0.824708 +0.920152 +0.947120 +0.910365 +0.998092 +0.961859 +0.674202 +0.741142 +0.900575 +0.615399 +-0.503435 +0.825335 +0.910458 +0.593938 +0.012750 +-0.112826 +0.628720 +-0.241726 +-0.256496 +0.713162 +0.837988 +0.659473 +0.293763 +-0.212815 +0.866424 +0.770440 +-0.270001 +0.803187 +0.810825 +0.976369 +0.492965 +0.878395 +0.833329 +0.772590 +0.733482 +0.930626 +0.654138 +0.527757 +0.940615 +0.788616 +0.786258 +0.919633 +0.475511 +0.826843 +0.665993 +0.986307 +0.709651 +0.930388 +0.866201 +0.663820 +0.977035 +0.825498 +0.519645 +0.640287 +0.565798 +0.514619 +0.591402 +0.661188 +0.676181 +0.713567 +0.558361 +0.398296 +0.981122 +0.561451 +0.679265 +0.730076 +0.856142 +0.871784 +0.976378 +0.899610 +0.104691 +0.479318 +0.720079 +0.615517 +0.658565 +-0.188370 +-0.176468 +0.935255 +0.690891 +0.904243 +0.397178 +0.157619 +0.828701 +0.626876 +0.468270 +0.255954 +-0.199616 +0.879016 +0.767640 +-0.035858 +0.930488 +0.600872 +0.308278 +0.750054 +-2.164897 +0.721903 +0.306724 +0.209769 +0.899836 +0.843098 +0.578453 +0.449745 +-0.156670 +0.922855 +0.935696 +0.794920 +-0.248956 +0.837149 +-0.269112 +0.277630 +0.497549 +0.878866 +0.975446 +0.268160 +0.383010 +0.233325 +0.198296 +0.541498 +0.397599 +0.074814 +0.465311 +0.655030 +0.478386 +0.255495 +0.082040 +0.414409 +0.931346 +0.566978 +-0.297029 +0.502507 +0.975796 +0.331274 +-0.083720 +0.783321 +0.867593 +0.838465 +0.868951 +0.519862 +-0.301925 +0.451127 +0.465404 +0.972136 +0.969426 +0.685425 +0.306474 +0.779819 +-12.052833 +0.947465 +0.341520 +0.479867 +0.626499 +0.962150 +0.530351 +0.458939 +0.508474 +0.840061 +0.837167 +0.450728 +0.309745 +0.907401 +0.347425 +0.407864 +0.925051 +0.906627 +0.924403 +0.642787 +0.344445 +0.919660 +0.637293 +0.467199 +0.447058 +0.534902 +0.914934 +0.179302 +0.927074 +0.459343 +0.847674 +0.958719 +0.416428 +0.326208 +0.532684 +0.375536 +0.999042 +0.932871 +0.546864 +0.982711 +0.443047 +0.308236 +0.285992 +0.712538 +0.812764 +0.979461 +0.859618 +0.872231 +0.825447 +0.647468 +0.624539 +0.727998 +0.585514 +0.896449 +0.911136 +0.853866 +0.534262 +0.491568 +0.985661 +0.518407 +0.411886 +0.516369 +0.794776 +0.489564 +0.905773 +0.758351 +0.894957 +0.454594 +0.772836 +0.876924 +0.999381 +0.794986 +0.822564 +0.750620 +0.879539 +0.692027 +0.877619 +-66.901137 +-0.553179 +-62.526119 +-0.151949 +-54.236364 +0.376459 +0.247442 +0.894643 +0.305034 +0.757190 +0.682728 +0.327574 +0.520233 +0.602045 +0.587256 +0.612429 +0.359137 +0.141589 +0.063903 +0.398283 +0.083277 +0.338922 +0.550139 +-0.239783 +-0.942204 +0.194756 +0.784202 +0.135582 +0.938551 +0.790773 +0.239128 +0.549356 +0.252792 +0.583753 +0.086454 +0.762855 +0.087131 +0.041838 +0.292678 +0.764375 +0.641440 +0.906636 +0.536551 +0.922424 +0.969372 +0.756105 +0.836033 +0.673564 +0.644595 +0.735116 +0.613747 +0.383028 +0.976686 +0.724480 +0.864453 +0.789746 +0.237839 +-1.150443 +0.589866 +0.743925 +-0.143201 +0.191462 +0.616167 +0.941949 +0.916607 +0.602189 +0.904917 +0.916926 +0.933296 +0.923289 +0.509839 +0.930711 +0.975367 +0.840281 +0.966558 +0.957094 +0.978135 +0.857790 +0.686096 +0.415695 +0.670677 +0.550185 +0.867882 +0.906444 +0.889455 +0.824065 +0.921572 +0.921316 +0.914136 +0.914136 +0.914104 +0.660927 +0.539866 +0.416099 +0.499170 +0.697522 +0.574031 +0.250823 +0.558653 +0.959940 +0.855416 +0.279793 +0.312665 +0.899124 +0.186310 +0.651825 +0.583642 +0.538329 +0.356011 +0.389863 +0.572061 +0.331013 +0.858568 +0.715926 +0.350187 +0.370036 +0.752381 +0.338374 +0.812649 +0.316984 +0.647865 +0.209370 +0.709105 +0.625021 +0.891845 +0.897306 +0.796149 +0.899624 +0.803387 +0.819517 +0.842290 +0.803397 +0.637661 +0.878489 +0.854735 +0.833731 +0.882660 +0.772279 +0.328030 +0.591098 +0.433355 +0.357486 +0.444140 +0.411425 +0.470479 +0.694564 +0.253207 +0.251315 +0.857373 +0.631699 +0.896009 +0.890565 +0.950754 +0.784336 +0.802020 +0.629588 +0.511433 +0.386362 +0.779425 +0.215672 +0.847014 +0.897564 +0.673933 +0.496522 +0.720310 +0.383952 +0.738890 +0.231966 +0.477619 +0.482247 +0.315034 +0.503005 +0.742473 +0.899040 +0.921380 +0.921508 +0.873689 +0.580036 +0.808556 +0.700054 +0.582411 +0.487320 +0.799174 +0.931461 +0.645469 +0.740400 +0.398687 +0.251459 +0.335907 +0.475413 +0.537362 +0.586476 +0.862149 +0.281950 +0.576063 +0.652078 +0.842116 +0.841995 +0.806434 +0.725384 +0.849406 +0.360112 +0.888874 +0.787400 +0.709589 +0.899808 +0.850823 +0.676161 +0.749360 +0.607963 +0.773563 +0.433117 +0.587663 +0.577963 +0.414652 +0.519338 +0.485187 +0.578884 +0.377720 +0.659351 +0.236164 +0.806288 +0.671500 +0.537483 +0.506069 +0.306079 +0.722064 +0.755463 +0.728617 +0.280845 +0.733183 +0.748965 +0.422709 +0.766279 +0.840977 +0.662297 +0.835849 +0.873422 +0.401540 +0.429719 +0.375547 +0.712649 +0.720874 +0.820737 +0.164195 +0.886188 +0.977031 +0.991492 +0.809668 +0.184952 +0.373536 +0.930537 +0.425098 +0.571280 +0.578377 +0.907426 +0.492393 +0.972342 +0.950688 +0.637023 +0.840979 +0.922296 +0.984301 +0.994008 +-0.038183 +0.692887 +0.275297 +0.781082 +-0.078526 +0.942958 +0.780690 +0.805296 +0.818324 +0.908713 +0.926568 +0.686405 +0.741815 +0.653557 +-0.328864 +0.882420 +0.970539 +0.947545 +0.543279 +0.547732 +0.382293 +0.733245 +0.334237 +0.462207 +0.732768 +0.490629 +0.907442 +0.880540 +0.890932 +0.982590 +0.883524 +0.382068 +0.499266 +0.590489 +0.912993 +0.684633 +0.287692 +0.510694 +0.359427 +0.578430 +0.407204 +0.570292 +0.207285 +0.958358 +0.768607 +0.840422 +0.182434 +0.629662 +0.741845 +0.295960 +0.469281 +0.892818 +0.841687 +0.914247 +0.573759 +0.477941 +0.692858 +0.697506 +0.927391 +0.674099 +0.496148 +0.406472 +0.487435 +0.678923 +0.558194 +0.611534 +0.676824 +0.848914 +0.940869 +0.823940 +0.717971 +0.901475 +0.461854 +0.586120 +0.465062 +0.418749 +0.718929 +0.714775 +0.160911 +0.540533 +0.489541 +0.642854 +0.541006 +0.898748 +0.380984 +0.860195 +0.317905 +0.321907 +0.331999 +0.886511 +0.639720 +0.283663 +0.652196 +0.534924 +0.776370 +0.885659 +0.884228 +0.921636 +0.906540 +0.914136 +0.906764 +0.896243 +0.943397 +0.669850 +0.949908 +0.391718 +0.937628 +0.708533 +0.927658 +0.611443 +0.896627 +0.821085 +0.917252 +0.926690 +0.932016 +0.924739 +0.973264 +0.819455 +0.527210 +0.990813 +0.690558 +0.839977 +0.923135 +0.464650 +0.942013 +0.923681 +0.063032 +0.894216 +0.129114 +0.131471 +-0.014191 +0.720599 +0.247234 +0.174097 +0.747046 +0.975980 +0.700118 +0.518996 +0.975185 +0.834962 +0.902734 +0.918666 +0.570577 +0.986302 +0.688783 +0.776416 +0.860060 +0.841152 +0.589548 +0.649393 +0.985472 +0.784052 +0.854570 +0.940522 +0.654223 +0.965999 +0.495030 +0.978755 +0.017096 +0.191311 +0.637470 +0.671107 +0.651529 +0.905327 +0.392983 +0.925141 +0.512603 +0.610110 +-0.114350 +0.323749 +0.129982 +0.432952 +0.647672 +0.691577 +0.713311 +0.565164 +0.943624 +0.985719 +0.920836 +0.147612 +0.067956 +0.497557 +0.624355 +0.303610 +0.477567 +0.191595 +0.658168 +0.586569 +0.577078 +0.944970 +0.986263 +0.407720 +0.374168 +0.824842 +0.498401 +0.581066 +0.467938 +0.863763 +0.788252 +0.659205 +0.294272 +0.987859 +0.913446 +0.016658 +0.407030 +0.405608 +0.263107 +0.535493 +0.907158 +0.898938 +0.732346 +0.909413 +0.711473 +0.920620 +0.407398 +0.819323 +0.942259 +0.393681 +0.909901 +0.884086 +0.542273 +0.201220 +0.443779 +0.963549 +0.804976 +0.211708 +0.779013 +0.650077 +0.590789 +0.310693 +0.981424 +0.504067 +0.622299 +0.399881 +0.953316 +0.920633 +0.543846 +0.568363 +0.964046 +0.702011 +0.635426 +0.845717 +0.855213 +0.426846 +0.863958 +0.852878 +0.318335 +0.847919 +0.565476 +0.493294 +0.845580 +0.403593 +0.478973 +0.806147 +0.527554 +0.981831 +-0.119307 +0.283882 +0.666636 +0.909290 +0.112215 +0.724144 +0.624597 +-1.059799 +0.916192 +0.482075 +0.271905 +0.798796 +0.381064 +0.161036 +0.133353 +0.695975 +0.568140 +0.513070 +0.245971 +0.927295 +0.984844 +0.864493 +0.807049 +0.382396 +0.592420 +0.346282 +0.645622 +0.238713 +0.683677 +-1.180429 +0.467520 +0.305800 +0.683683 +0.744930 +0.649677 +0.761881 +0.476362 +0.605008 +0.841985 +0.540923 +0.439111 +0.532192 +0.177665 +0.757290 +0.869461 +0.928058 +0.910618 +0.737273 +0.611011 +0.814280 +0.789839 +0.858433 +0.632880 +0.791724 +0.586650 +0.704108 +0.546394 +0.373490 +0.302540 +0.221099 +0.764550 +0.481563 +0.195928 +0.522491 +0.651549 +0.473522 +0.643670 +0.547252 +0.732353 +0.004045 +0.251376 +0.005050 +-0.056614 +0.047377 +-0.188974 +0.100293 +0.424081 +0.219899 +0.016519 +0.611754 +0.056659 +0.095971 +0.860647 +0.237616 +0.687841 +0.073664 +0.438167 +0.193747 +0.460291 +0.003055 +0.228659 +-0.010679 +0.717898 +0.319452 +0.786297 +0.522514 +0.177604 +-0.050251 +0.968229 +0.965984 +0.948879 +0.685395 +0.737546 +0.988137 +0.787348 +0.700817 +-3.488276 +0.483040 +0.363817 +0.375606 +0.569532 +0.538176 +0.877232 +-4.764682 +0.894947 +0.942377 +0.489742 +0.493456 +0.432151 +0.527870 +0.491443 +0.705249 +0.780752 +0.643878 +0.745339 +0.757787 +0.757153 +0.647604 +0.667539 +0.579989 +0.851866 +0.725182 +0.488282 +0.750553 +0.311018 +0.790035 +0.910498 +0.321101 +0.408970 +0.374048 +0.742569 +0.777194 +0.754192 +0.420751 +0.699936 +0.638420 +0.806203 +0.671934 +0.484425 +0.567158 +0.701431 +0.627362 +0.768387 +0.558818 +0.745608 +0.614622 +0.954623 +0.281436 +0.821748 +0.629093 +0.940239 +0.874120 +0.500274 +0.789249 +0.463967 +0.878559 +0.738914 +0.389807 +0.840951 +0.745319 +0.537606 +0.747388 +0.549563 +0.466565 +0.726703 +0.665575 +0.919568 +0.517806 +0.682992 +0.701128 +0.548172 +0.976106 +0.946323 +0.517339 +0.764650 +0.416945 +0.726630 +0.247240 +0.841593 +0.832463 +0.992550 +0.829541 +0.491805 +0.761331 +0.876737 +0.950789 +0.653039 +0.927532 +0.306165 +0.590108 +0.912620 +0.467315 +0.886946 +0.751704 +0.933487 +0.533184 +0.986594 +0.766922 +0.947520 +0.791480 +0.808310 +0.895304 +0.219703 +0.382321 +0.443210 +0.095721 +0.091366 +0.610392 +-0.043538 +0.946708 +0.058857 +0.739667 +0.407280 +0.387891 +0.764562 +0.754485 +0.639923 +0.630059 +0.489023 +0.665076 +0.367252 +0.419430 +0.497503 +0.379105 +0.695214 +0.414577 +0.533747 +0.501713 +0.747963 +0.770378 +0.506712 +0.451671 +0.733431 +0.770054 +0.679576 +0.739067 +0.414285 +0.820880 +0.704254 +-98.693104 +-5.368656 +0.652935 +0.843024 +0.828388 +0.626962 +0.134608 +0.896461 +0.256538 +0.252999 +0.211521 +0.186027 +0.676716 +0.370428 +0.853662 +0.389802 +0.776520 +0.541697 +0.526285 +0.505119 +0.582610 +0.653448 +0.583827 +0.477573 +0.745763 +0.413604 +0.546853 +0.436273 +0.487579 +0.372808 +0.804772 +0.439004 +0.895125 +0.434207 +0.803543 +0.830087 +-15.873286 +0.864840 +0.712065 +-285.056938 +0.152368 +-284.438059 +0.414488 +0.424305 +0.264122 +0.182560 +0.247595 +0.733451 +0.685529 +0.813926 +0.490562 +0.239046 +0.518699 +0.610922 +0.455413 +0.567605 +0.357321 +0.355738 +0.490573 +0.662427 +0.962300 +0.380261 +0.467654 +0.874161 +0.324362 +0.333513 +0.928516 +0.954204 +0.410075 +0.655124 +0.929978 +0.313639 +0.446779 +0.356374 +0.697324 +0.241193 +-0.087557 +0.517191 +0.272722 +0.432593 +0.735296 +0.302326 +0.970178 +0.563420 +0.149214 +0.055323 +0.633881 +0.478146 +0.900045 +0.874760 +0.891838 +0.859181 +0.817080 +0.805106 +0.839073 +0.938536 +0.780620 +0.475413 +0.909858 +0.582827 +0.931233 +0.946588 +0.928301 +0.583104 +0.968050 +0.983232 +0.979334 +0.691856 +0.666313 +0.882441 +0.904353 +0.846778 +0.992332 +0.870659 +0.921547 +0.912733 +0.923897 +0.906787 +0.925155 +0.940209 +0.937323 +0.916158 +0.670718 +0.591705 +0.606458 +0.842404 +0.871743 +0.868168 +0.876191 +0.955911 +0.877183 +0.616733 +0.571807 +0.717191 +0.522272 +0.652159 +0.906540 +0.922849 +0.922633 +0.238425 +0.441033 +0.378311 +0.243215 +0.064829 +0.871965 +0.156622 +0.226914 +0.910150 +0.564509 +0.408688 +0.321386 +0.262284 +0.179476 +0.641849 +0.908913 +0.261332 +0.884799 +0.239011 +0.407681 +0.407681 +0.437150 +0.957807 +0.508770 +0.674040 +0.841883 +0.034524 +0.383349 +0.517260 +0.981223 +0.925466 +0.557012 +0.497713 +0.958452 +0.407459 +0.724691 +0.932694 +0.511511 +0.758622 +0.546204 +0.218709 +0.090255 +0.912578 +0.912647 +0.407271 +0.418606 +0.858723 +0.936067 +0.519969 +0.797685 +0.407236 +0.534258 +0.240968 +0.919471 +0.492182 +0.678353 +0.925033 +0.751331 +0.731214 +0.674624 +0.902464 +0.584836 +0.796503 +0.996050 +0.847807 +0.847798 +0.897861 +0.686347 +0.887902 +0.992327 +0.726362 +-1155.711085 +0.873128 +0.751384 +0.742423 +0.816839 +0.913290 +0.238447 +0.717491 +0.702474 +0.303156 +0.933738 +0.669479 +0.946166 +0.930857 +0.973499 +0.658360 +0.690891 +0.986763 +0.857698 +0.974551 +0.748019 +0.987133 +0.951699 +0.955132 +0.813291 +0.507795 +0.965879 +0.906700 +0.912553 +0.923116 +0.890230 +0.947670 +0.946087 +0.736711 +0.866033 +0.794006 +0.491432 +0.920053 +0.665571 +0.652368 +0.674237 +0.673773 +0.821613 +0.929131 +0.000962 +0.295648 +0.835904 +0.938474 +0.474526 +0.994244 +0.489751 +0.144963 +0.577413 +-24.205553 +0.319846 +0.849300 +0.769951 +0.138478 +0.384956 +0.732523 +0.103436 +-0.439866 +0.608151 +0.460102 +0.901005 +0.246045 +0.671261 +0.167957 +0.314123 +0.989756 +0.189773 +-0.334722 +0.191458 +0.171875 +-0.007712 +0.241404 +0.580065 +0.735727 +0.965190 +-0.193167 +-0.136282 +0.765774 +0.343640 +0.431957 +0.687669 +0.919933 +0.440671 +-2437.778575 +0.712205 +0.635411 +0.772655 +0.728731 +0.728731 +0.707667 +0.818572 +0.727618 +0.766671 +0.625463 +0.663502 +0.921636 +0.906892 +0.697088 +0.929072 +0.926166 +0.899264 +0.667559 +0.896427 +0.679674 +0.892826 +0.697138 +0.898327 +0.784316 +0.425466 +0.737699 +-0.469251 +0.661976 +0.456379 +0.560842 +-0.433579 +0.587452 +0.332377 +0.680237 +0.838522 +0.843461 +0.592958 +0.927234 +-0.008536 +-0.047420 +0.733188 +0.920806 +-0.175574 +0.386938 +0.946812 +-0.462268 +0.994899 +0.962518 +0.668648 +0.740084 +0.372815 +0.929874 +0.802688 +0.929682 +0.867273 +0.985271 +0.924113 +0.655796 +0.591518 +-59.624507 +0.893866 +0.896109 +0.774878 +0.386022 +-34.087354 +-60.136882 +0.769567 +0.826617 +0.720437 +0.902133 +0.767398 +0.505430 +0.853370 +0.181021 +0.749795 +0.674322 +0.797936 +0.877968 +0.951838 +0.952996 +0.331903 +0.841877 +0.798047 +0.889119 +0.875916 +0.380551 +0.468485 +0.510671 +0.224028 +0.425159 +0.512838 +0.313221 +0.417322 +0.435247 +0.349241 +0.506019 +0.696874 +0.701035 +0.858703 +0.755703 +0.503317 +0.856422 +0.762097 +0.795923 +0.444147 +0.872401 +0.752841 +0.986720 +0.729191 +0.705402 +0.786473 +0.593955 +0.879965 +-0.982919 +0.765413 +0.888413 +0.679271 +0.910670 +0.319014 +0.342589 +0.376203 +0.266726 +0.311012 +0.636044 +0.365483 +0.586855 +0.242537 +0.600122 +0.973422 +0.353308 +0.566882 +0.270521 +0.421531 +-393.819494 +0.935993 +0.935712 +0.983135 +0.875563 +-53.773631 +0.830805 +0.929321 +0.937128 +0.698378 +0.986472 +0.935597 +0.331912 +0.272324 +-15.589963 +0.843426 +0.844321 +0.784458 +0.175777 +0.532596 +0.942327 +0.768336 +0.812713 +0.942988 +0.744209 +0.575940 +0.666504 +0.653602 +0.942225 +0.888088 +0.532115 +0.137472 +0.770152 +0.790214 +0.589822 +0.948120 +0.440015 +0.878155 +0.816876 +0.601881 +0.938381 +0.770130 +0.272438 +0.934329 +0.906691 +0.560289 +0.734688 +0.288201 +0.867618 +0.954279 +0.873043 +0.840581 +0.978765 +0.957550 +-0.141415 +0.468153 +0.984938 +0.336740 +0.072735 +-0.120060 +0.296937 +0.859004 +0.246598 +0.353984 +0.214596 +0.984269 +0.280892 +0.601883 +0.238010 +0.444834 +0.330160 +0.300114 +0.309783 +0.955281 +0.154811 +-8.938860 +0.103970 +0.719008 +-25.185974 +0.082857 +0.243642 +0.507277 +0.940210 +0.921281 +0.795378 +0.269052 +0.541410 +0.387244 +0.344457 +0.463484 +0.948292 +0.925094 +0.416046 +0.320001 +0.509913 +0.470594 +0.746027 +0.953951 +0.914528 +0.429572 +0.389756 +0.424938 +0.883347 +0.433813 +0.949294 +0.955883 +0.950588 +0.221219 +0.422823 +0.499920 +0.484825 +0.753647 +0.939076 +0.354130 +0.963590 +0.307437 +0.416704 +0.435865 +0.638267 +0.797345 +0.919711 +0.973597 +0.491694 +0.299278 +0.665395 +0.297101 +0.520116 +-0.014766 +0.719548 +0.312777 +0.267235 +0.739455 +0.722758 +0.929074 +0.743915 +0.942914 +0.735408 +0.499859 +0.813821 +0.852582 +0.890251 +0.685544 +0.800308 +0.831686 +0.860626 +0.377495 +0.981556 +0.756396 +0.880883 +0.675133 +0.392301 +0.984778 +0.377374 +0.960524 +0.419777 +0.684583 +0.641354 +-0.088400 +0.956009 +0.443780 +0.246511 +0.528412 +0.465860 +0.427189 +0.451071 +0.358802 +0.937793 +0.758624 +0.957230 +0.813174 +0.968554 +0.501831 +0.239783 +0.384740 +0.487765 +0.487771 +0.411050 +0.478021 +0.474759 +0.926143 +0.897419 +0.615762 +0.924973 +0.715071 +0.945912 +0.922418 +0.679978 +0.185832 +0.279485 +0.457471 +0.724399 +0.918570 +0.554818 +0.491145 +0.167690 +0.410827 +0.914018 +0.912511 +0.394271 +0.685243 +0.380524 +0.954222 +0.184750 +0.925305 +0.849517 +0.856594 +0.565892 +0.903708 +0.918539 +0.591214 +0.991902 +0.918726 +-0.001962 +0.699954 +0.563648 +0.786824 +0.495217 +0.865080 +0.509912 +0.935496 +0.924913 +0.550824 +0.918714 +0.996004 +0.442096 +0.299370 +0.447847 +0.565730 +0.924322 +0.952151 +0.549589 +0.920335 +0.095680 +0.064499 +0.116572 +0.014316 +-0.075246 +0.099695 +0.107186 +-0.002664 +0.120900 +-1.159530 +0.015932 +0.842861 +0.648838 +0.059144 +0.864258 +0.313433 +0.343783 +-0.034264 +-0.018257 +-0.012411 +0.003916 +0.849649 +0.291354 +-0.006791 +0.594807 +0.070780 +0.816892 +0.882416 +0.496677 +0.738609 +0.311425 +0.396823 +0.452765 +0.728817 +0.538028 +0.358772 +0.692308 +0.776163 +0.765850 +0.803412 +0.748740 +0.774654 +0.775241 +0.762010 +0.219161 +0.248921 +0.510325 +0.647980 +0.749578 +0.726598 +0.275071 +0.170137 +0.658073 +0.915690 +0.902045 +0.080725 +0.387804 +0.301688 +0.309078 +0.946339 +0.395150 +0.075698 +0.177956 +0.409850 +0.992201 +0.853142 +0.964932 +0.846472 +0.985622 +0.640853 +0.868828 +0.795637 +0.661200 +0.714065 +0.025822 +0.989315 +0.877558 +0.593413 +0.706340 +0.868272 +0.842508 +0.890286 +0.891643 +0.774133 +0.969233 +0.835280 +0.954264 +0.722916 +-0.590323 +0.968515 +0.996209 +0.557885 +0.138132 +0.917557 +0.185377 +0.722562 +0.189274 +0.100105 +0.574142 +0.217009 +0.537288 +0.373443 +0.262926 +0.487412 +0.091579 +0.120532 +0.593247 +-0.262569 +0.456291 +-0.082771 +0.252355 +0.330651 +0.339715 +0.758027 +0.279126 +0.182267 +0.506113 +0.208806 +-0.082605 +0.208138 +0.977446 +0.314881 +0.900737 +0.786603 +0.777532 +0.280737 +0.250258 +-0.002604 +0.488701 +0.529475 +0.509584 +0.599422 +0.487754 +0.737953 +0.767915 +0.795017 +0.710498 +0.805712 +0.525477 +0.711897 +0.873694 +0.779426 +0.321644 +0.737685 +0.758037 +0.362312 +0.795042 +0.686776 +0.529901 +0.617356 +0.417881 +0.402109 +0.588112 +0.644125 +0.719855 +0.791686 +0.805546 +0.844773 +0.515491 +0.782900 +0.755343 +0.317794 +0.753873 +0.181039 +0.766000 +0.638199 +0.664265 +0.631854 +0.489873 +0.385321 +0.721747 +0.780078 +0.869721 +0.687110 +0.535901 +0.133172 +0.715732 +0.887489 +0.117401 +0.949299 +0.825016 +0.430967 +0.864069 +0.988562 +0.463263 +0.177521 +0.531878 +0.733561 +0.185986 +0.773719 +0.366604 +0.498257 +0.296733 +0.332823 +0.489549 +0.327095 +0.432644 +0.399660 +0.262401 +0.654799 +0.327618 +0.792140 +0.895127 +-0.459103 +0.864018 +0.353505 +0.154429 +0.280738 +-0.309982 +0.451342 +0.258176 +0.992898 +0.648751 +0.791341 +0.596458 +0.990130 +0.211672 +0.948971 +-0.014818 +-0.113410 +0.702435 +0.519197 +0.923413 +0.933884 +0.917913 +0.892650 +0.960202 +0.774784 +0.687159 +0.916169 +0.925307 +0.768142 +0.663395 +0.537531 +0.919845 +0.846408 +0.423078 +0.757411 +0.648683 +0.517325 +-0.017510 +0.413539 +0.131569 +0.955913 +0.923162 +0.881646 +0.310221 +0.226159 +0.911886 +0.134059 +0.250225 +0.618497 +0.367869 +0.973707 +0.322021 +0.988937 +0.723853 +0.935845 +0.319811 +0.792866 +0.884952 +0.854502 +0.341240 +0.590340 +0.440718 +0.907048 +0.271055 +0.748814 +0.755699 +0.754739 +0.896637 +0.381018 +0.874979 +0.905788 +0.957778 +0.928598 +0.297729 +0.613322 +0.590256 +0.685520 +0.912061 +0.911698 +0.314631 +0.821465 +0.283705 +0.312790 +0.317527 +0.403623 +0.308052 +0.314217 +0.335040 +0.339452 +0.898180 +0.343553 +0.638487 +0.428983 +0.902778 +0.481370 +0.890997 +0.886716 +0.583282 +0.926784 +0.701539 +0.897697 +0.814088 +0.638147 +0.533877 +0.324685 +0.182944 +0.843288 +0.296109 +0.357805 +0.784186 +0.595141 +0.859008 +0.287846 +0.837347 +0.940447 +0.883418 +0.829238 +0.859829 +0.653866 +0.440250 +0.286923 +0.760516 +0.337799 +0.972997 +0.661524 +0.560529 +0.435208 +0.579062 +0.512641 +0.367252 +0.340930 +0.612719 +0.455505 +0.733231 +0.752034 +0.919803 +0.771219 +0.733396 +0.762771 +0.729908 +0.295598 +0.597548 +0.441730 +0.547857 +0.745401 +0.729804 +0.859933 +0.739767 +0.432195 +0.186625 +0.291052 +0.643587 +0.686973 +0.123010 +-18.671312 +-212.749144 +0.826092 +0.379305 +0.285366 +0.903802 +0.875288 +0.398982 +0.339701 +0.292132 +0.511361 +0.618166 +0.237563 +0.091436 +0.955973 +-0.290041 +0.183817 +0.305540 +0.284389 +-0.392451 +0.105725 +-7.458819 +0.343791 +0.228634 +0.609318 +0.774329 +0.195150 +0.360256 +0.602510 +0.300210 +0.866296 +0.085917 +0.888787 +0.545691 +0.459402 +0.492915 +0.040507 +0.888117 +0.151370 +0.572892 +0.426564 +0.342446 +0.543707 +0.082204 +0.134362 +0.144175 +0.101933 +0.120600 +0.675345 +0.406901 +0.168153 +0.614832 +-1.434901 +0.307010 +0.190045 +0.673407 +0.499739 +0.345906 +0.165367 +0.164920 +0.186303 +0.246433 +0.215896 +0.204974 +0.506471 +0.084976 +-0.792022 +0.778379 +0.981768 +0.977753 +0.780832 +0.402323 +0.319926 +0.779929 +0.868659 +0.974077 +0.120173 +0.507711 +0.650471 +0.116998 +0.921508 +0.984647 +0.949226 +0.938773 +0.838134 +0.512702 +0.801624 +0.314079 +0.371790 +0.640433 +0.935346 +0.934447 +0.851233 +0.735020 +0.771119 +0.522958 +0.854998 +0.955994 +0.646020 +0.922439 +0.762152 +0.136570 +0.772293 +0.973550 +0.820114 +0.817415 +0.834122 +0.862566 +0.861681 +0.825384 +0.871481 +0.723313 +0.785121 +0.915641 +0.816711 +0.798412 +0.833923 +0.860513 +0.922987 +0.492078 +0.888725 +0.701025 +0.832101 +0.991621 +0.867023 +0.670977 +0.895286 +0.708742 +0.653356 +0.756361 +0.714864 +0.875049 +0.688069 +0.379917 +0.775262 +0.580672 +0.729895 +0.044219 +0.847167 +0.637802 +0.979344 +0.483781 +0.661897 +0.817795 +0.753967 +0.396251 +0.212090 +0.586076 +0.749998 +0.899447 +0.870887 +0.759694 +0.649078 +0.370638 +0.544030 +0.475970 +0.697836 +0.518948 +0.569285 +0.682322 +0.994254 +0.278132 +0.305881 +0.351633 +0.845235 +0.997051 +0.689407 +0.482856 +0.969483 +0.555962 +0.948364 +0.263343 +0.922284 +0.941078 +0.920039 +0.908012 +0.941242 +0.943677 +0.933670 +0.955183 +0.718609 +0.446912 +0.642971 +0.617733 +0.795636 +0.856310 +0.572516 +0.927582 +0.711718 +0.877846 +0.933204 +0.617717 +0.936842 +0.648280 +0.943115 +0.938898 +0.955676 +0.586297 +0.946402 +0.683376 +0.211405 +0.411499 +0.914936 +0.974826 +0.758894 +0.903233 +0.035853 +0.866686 +0.986117 +0.222853 +0.905518 +0.883460 +0.253833 +0.939880 +0.960379 +0.592893 +0.868581 +0.288230 +0.640696 +0.956737 +0.773416 +0.687757 +0.918569 +0.732902 +0.772619 +0.705464 +0.934444 +0.852724 +0.341042 +0.322207 +0.175261 +0.566817 +0.712568 +0.764081 +0.683966 +0.121443 +0.358310 +0.543355 +0.114879 +0.635186 +-0.330704 +0.492915 +0.653393 +0.416820 +0.908257 +0.792170 +0.630572 +0.502590 +0.544116 +0.577472 +0.567960 +0.900347 +0.207182 +0.221222 +0.234151 +0.705276 +0.057713 +0.920454 +-0.565138 +0.207631 +0.912901 +0.929708 +0.471835 +0.616186 +0.610703 +0.414955 +0.569733 +-0.442858 +0.467159 +0.800161 +0.836484 +0.790240 +0.603284 +0.906639 +0.631666 +0.946876 +0.985995 +0.947072 +0.893319 +0.776926 +0.886595 +0.645533 +0.654307 +0.211188 +0.380578 +0.667704 +0.515525 +0.659741 +0.611793 +0.224432 +0.605499 +0.328284 +0.478130 +0.353867 +0.351156 +0.090133 +0.421859 +0.305982 +0.735480 +0.718302 +0.647138 +0.568058 +0.782668 +0.944488 +0.330167 +0.388964 +0.529584 +0.605310 +0.522625 +0.919065 +0.522650 +0.504711 +0.597448 +-874.899874 +0.379458 +0.318128 +0.828339 +0.947472 +0.226664 +0.889046 +0.905494 +0.231779 +0.182255 +-83.954582 +0.720270 +0.418135 +0.061655 +0.529018 +0.539117 +0.781417 +0.237942 +-8.493059 +0.928009 +0.933616 +0.914233 +0.660852 +0.634323 +0.522361 +0.821133 +0.870185 +0.848809 +0.884842 +0.805709 +0.975260 +0.372398 +0.736035 +0.755429 +0.891327 +0.371332 +0.871395 +0.403014 +0.830080 +0.772675 +0.795046 +0.361161 +0.778983 +0.915100 +0.864911 +0.752557 +0.770397 +0.870741 +0.899428 +0.841435 +0.741259 +0.916897 +0.856014 +0.847084 +0.690190 +0.823103 +0.516046 +0.817937 +0.883231 +0.891012 +0.901188 +-0.096626 +0.675741 +0.910172 +0.941270 +0.713928 +0.673461 +0.504220 +0.760876 +0.822051 +0.919809 +0.740589 +0.626641 +0.855837 +0.485277 +0.895198 +0.831331 +0.727595 +0.592271 +0.805096 +0.570464 +0.430738 +0.485814 +0.955506 +0.846205 +0.925330 +0.647818 +0.589413 +0.605813 +0.409364 +0.176275 +0.763244 +0.310648 +0.741621 +0.766651 +0.844569 +0.601354 +0.593832 +0.608975 +0.758740 +0.886985 +0.922886 +0.742679 +0.760028 +0.595602 +0.290967 +0.639952 +0.789208 +0.471130 +0.277131 +0.769305 +0.349879 +0.348538 +0.142017 +0.440621 +0.137703 +0.489386 +0.198019 +0.471439 +0.765692 +0.949958 +0.003517 +0.275712 +-0.553860 +0.581363 +0.419305 +0.118326 +0.521391 +0.968256 +0.798084 +0.501697 +0.141665 +0.100152 +0.395632 +0.217180 +0.616281 +0.681988 +0.828762 +0.396151 +0.723324 +0.239558 +0.863793 +0.832298 +0.694461 +0.678237 +0.901381 +-0.445800 +0.026673 +0.826545 +0.831941 +0.611277 +0.371010 +0.890089 +0.740975 +0.959586 +0.522427 +0.688629 +0.451943 +0.693269 +0.381501 +0.709804 +0.063525 +0.201308 +-0.040234 +0.162265 +0.934281 +-2.951121 +-0.401468 +0.855117 +0.160901 +0.180822 +0.231119 +0.655118 +0.764720 +0.622871 +0.477202 +0.239940 +0.953548 +0.545701 +0.602792 +0.029959 +0.418203 +-0.004341 +0.867286 +0.176423 +0.227575 +0.352808 +0.367777 +0.838822 +0.549655 +0.327720 +0.110015 +0.122277 +0.298891 +0.450424 +0.116088 +0.425695 +0.818604 +-0.285721 +0.724998 +0.569004 +0.035650 +0.312933 +0.228242 +-0.034921 +0.092195 +0.312040 +-0.813587 +0.901257 +-0.872224 +0.688037 +-0.107905 +0.151609 +0.921626 +0.035027 +0.814734 +0.034961 +0.791655 +0.941464 +0.507416 +0.408295 +0.785092 +0.929780 +0.339322 +0.010339 +0.930977 +0.948525 +0.542542 +0.779088 +0.818982 +0.741769 +0.725729 +0.895523 +0.694697 +0.697831 +0.763678 +0.953146 +0.443610 +0.683959 +0.499779 +0.625044 +0.888888 +0.208803 +0.421423 +0.229820 +0.590049 +0.923892 +0.925746 +0.943336 +0.587024 +0.930819 +0.206249 +0.505829 +0.225535 +0.898330 +0.608375 +0.503631 +0.342187 +0.541280 +0.571677 +0.520156 +0.906291 +0.930397 +0.966245 +0.234012 +0.735861 +0.427129 +0.768112 +0.526038 +0.278537 +0.594370 +0.473563 +0.394139 +0.934918 +0.644964 +0.553183 +0.740696 +0.912857 +0.497250 +0.924628 +0.272551 +0.754075 +0.203323 +0.324896 +0.598349 +0.321466 +0.784685 +0.481756 +0.861864 +0.993288 +0.886703 +0.534705 +0.812110 +0.570090 +0.574337 +0.706523 +-0.230032 +0.406144 +0.627002 +0.791724 +0.546846 +0.419250 +0.396799 +0.616246 +0.805380 +0.436874 +0.818649 +0.553105 +0.953849 +0.727082 +0.746610 +0.766865 +0.776882 +0.748684 +0.817897 +0.784532 +0.798887 +0.897396 +0.818890 +0.877459 +0.263483 +0.312671 +0.523569 +0.377162 +-0.001197 +0.924442 +0.456619 +0.233775 +0.391932 +0.732152 +0.982623 +0.070241 +0.777410 +0.216479 +0.814575 +0.417066 +0.411042 +0.297041 +0.280073 +0.498928 +0.926889 +0.728747 +0.927207 +0.996853 +0.992728 +0.827943 +0.798663 +0.628589 +0.806030 +0.433910 +0.339474 +0.908525 +0.246518 +0.273429 +0.394874 +0.330921 +0.835731 +0.881848 +0.261338 +0.835425 +0.746572 +0.830389 +0.690672 +0.493888 +0.927296 +0.347235 +-0.663589 +0.977809 +0.312670 +0.406051 +0.732133 +0.737890 +0.596609 +0.492367 +0.032804 +0.463603 +0.440151 +0.539340 +0.749050 +0.995934 +0.653781 +0.840852 +0.023146 +-11.465150 +0.998553 +0.970627 +0.989680 +0.877600 +0.869958 +0.722978 +0.667496 +0.354111 +-0.291613 +0.791515 +0.412376 +0.652747 +0.577070 +0.743922 +0.984587 +0.714090 +-0.043792 +0.876481 +0.710639 +-0.117557 +0.940353 +0.695422 +0.888082 +0.744914 +0.896469 +0.704690 +0.106225 +0.822545 +0.812290 +0.136513 +0.935267 +0.555889 +0.506836 +0.919283 +0.905133 +0.975663 +0.576281 +0.501111 +0.858679 +0.815455 +0.723787 +0.993653 +0.895631 +0.919608 +0.812819 +0.732606 +0.333666 +0.878237 +0.812382 +0.955366 +0.864892 +0.850929 +0.765340 +0.418039 +0.908959 +0.520283 +0.863577 +0.564515 +0.675551 +0.600026 +0.367743 +0.388227 +0.811828 +0.987561 +0.775986 +0.660860 +0.374236 +0.288774 +0.212522 +0.736939 +0.566945 +0.523470 +0.472346 +0.096032 +0.768227 +0.869857 +0.667675 +0.991757 +0.192869 +0.849998 +0.560357 +0.510147 +0.895873 +0.767286 +0.463404 +0.037446 +0.190776 +0.829638 +0.152386 +0.495573 +0.329922 +0.890425 +0.108505 +-0.126150 +0.003586 +0.220291 +0.986642 +0.077424 +0.782336 +0.827462 +0.947260 +0.949150 +0.974248 +0.878492 +0.957838 +0.788605 +0.783522 +0.935009 +0.907996 +0.608317 +0.485826 +0.995117 +0.971876 +0.677571 +-0.359844 +0.512563 +0.812669 +0.798557 +0.123026 +0.994478 +0.772784 +0.557035 +0.874815 +0.548124 +0.147885 +0.376951 +0.936086 +0.333235 +0.347543 +0.506066 +0.838795 +0.445009 +0.935753 +0.939565 +0.851169 +0.259201 +0.835187 +0.938973 +0.556452 +0.736570 +0.977556 +0.833404 +-0.013266 +0.831655 +0.993828 +0.930434 +0.443075 +0.840294 +0.920988 +0.663524 +0.393031 +0.938742 +0.527313 +0.977606 +-0.094693 +0.622675 +0.486601 +-3.650981 +0.321012 +0.519280 +0.402290 +0.345675 +0.470045 +0.531132 +0.397466 +0.212767 +-10.795556 +0.629618 +0.261527 +0.632809 +0.728419 +0.067772 +0.934698 +0.518147 +0.474039 +0.900509 +0.892694 +0.831238 +0.931987 +0.838647 +0.532288 +0.407167 +0.172093 +0.862584 +0.799804 +0.620975 +0.845718 +0.375072 +0.506760 +-0.693506 +0.790943 +0.531031 +0.268879 +0.260290 +0.982409 +0.788287 +0.730402 +0.898429 +0.661747 +0.635200 +0.495649 +0.716188 +0.788998 +0.815483 +0.645587 +0.688968 +0.700768 +0.725056 +0.751961 +0.528717 +0.529484 +0.748380 +0.525449 +0.562788 +0.643767 +0.576756 +0.655383 +0.733688 +0.542702 +0.706103 +0.719472 +0.543805 +0.573561 +0.919429 +-1.275329 +0.891834 +0.709779 +0.073471 +0.074034 +-0.309178 +0.411196 +0.036720 +0.234207 +0.013413 +0.145319 +-0.124464 +0.242292 +0.049878 +0.422524 +0.363426 +0.315699 +0.305159 +0.282991 +0.534968 +0.283069 +0.309083 +0.522450 +0.441658 +0.460651 +0.045489 +0.831093 +0.546264 +0.276077 +-0.934202 +0.895110 +0.109399 +0.194152 +0.168696 +0.360569 +-1403.194689 +0.364978 +0.633534 +0.786203 +0.604928 +0.308817 +0.308983 +0.157491 +-0.395011 +0.909238 +0.407667 +0.973143 +0.888222 +-0.168038 +0.104034 +0.899625 +-0.252227 +0.124571 +0.262433 +0.568679 +0.703360 +0.830640 +0.815889 +0.614505 +0.906371 +0.897525 +0.133619 +0.585606 +0.341206 +0.004093 +0.836408 +0.814407 +0.209990 +0.644683 +0.269996 +0.351038 +0.018576 +0.061858 +0.224243 +0.172930 +0.411136 +0.152237 +0.640061 +0.345839 +0.187022 +0.907442 +0.680006 +0.654794 +0.568888 +0.947175 +0.667260 +0.887545 +0.913737 +0.904324 +0.929024 +0.738812 +0.737109 +0.402513 +0.916343 +0.830556 +0.873573 +0.399638 +0.240112 +0.492426 +-0.542739 +0.787167 +0.979332 +0.903076 +0.315927 +0.939563 +0.939091 +0.334531 +0.984254 +0.471237 +0.466744 +0.521374 +0.857665 +0.947953 +0.817263 +0.570659 +0.869095 +0.961603 +0.394715 +0.875709 +0.382648 +0.935505 +0.810408 +0.283162 +0.585237 +0.936237 +0.594112 +0.731811 +-0.068496 +0.894139 +0.930377 +0.963469 +0.782018 +0.801681 +0.869897 +0.603198 +0.959970 +0.863768 +0.990601 +0.959086 +0.811776 +0.987900 +0.924834 +0.914392 +0.485518 +0.363454 +0.540015 +0.900030 +0.699187 +0.764466 +0.928966 +0.460315 +0.765679 +0.919166 +0.539568 +0.628847 +0.932233 +0.986716 +0.585944 +0.757591 +0.864113 +0.884251 +0.717185 +0.748109 +0.738811 +0.691496 +0.394966 +0.721841 +-3340.709168 +0.937394 +0.865282 +-0.344514 +-0.090770 +0.471364 +0.798468 +0.653663 +0.766580 +0.580834 +0.952282 +0.687041 +0.512300 +0.577826 +0.963578 +-0.305543 +0.830176 +0.626313 +0.846331 +0.176095 +0.610098 +0.647477 +0.807244 +0.428780 +0.916223 +0.272190 +0.796928 +0.789556 +-0.088036 +0.166703 +0.179335 +0.452212 +0.034027 +0.285248 +0.846399 +0.283764 +0.217159 +0.316086 +0.170046 +0.504982 +0.719468 +0.682828 +0.969795 +0.203843 +0.177953 +0.287602 +0.160453 +-0.211433 +0.067685 +0.587450 +0.742151 +0.219777 +0.040136 +0.263652 +0.127276 +0.793839 +0.446355 +0.997780 +0.218779 +0.303764 +0.263663 +0.859320 +0.100394 +-0.502355 +-1.034678 +-0.191471 +0.047280 +0.074709 +0.448968 +0.808849 +0.871738 +0.312584 +0.513796 +0.590870 +0.100035 +0.764236 +0.251949 +0.246220 +0.080864 +0.253762 +0.569503 +0.551891 +0.760087 +-0.385356 +0.970869 +0.981630 +0.516491 +-0.403164 +0.650678 +0.686074 +0.752476 +0.579029 +0.756403 +0.743540 +0.147416 +0.767986 +0.103639 +0.892184 +-0.030019 +0.570272 +0.958892 +-0.316251 +0.697422 +0.811604 +0.862267 +0.967066 +0.881990 +0.795293 +0.983694 +0.992911 +0.848525 +0.749586 +0.674218 +0.679967 +0.829932 +0.705744 +0.704646 +0.936241 +-0.032067 +0.338120 +0.774837 +0.200292 +0.060521 +0.037372 +0.189407 +0.124794 +-0.048385 +0.225538 +0.989856 +0.936244 +0.381289 +0.690677 +0.644589 +0.968096 +0.933717 +0.818038 +0.517816 +0.887323 +0.740229 +0.749450 +0.837964 +0.985414 +0.929839 +0.538616 +0.912659 +0.848166 +0.742395 +0.539328 +0.525661 +0.694474 +0.026130 +0.117571 +0.163861 +0.424527 +0.042607 +0.267231 +0.806680 +0.788804 +0.556043 +0.646431 +0.938645 +0.872438 +0.837512 +0.390538 +0.904356 +0.854621 +0.969725 +0.754519 +0.895399 +0.779470 +0.909993 +0.965214 +0.839971 +0.616048 +0.884293 +0.929731 +0.778168 +0.875082 +0.371424 +0.130177 +0.793936 +0.943186 +0.176616 +0.276789 +-0.110094 +0.704960 +0.899017 +0.643324 +0.374429 +0.574265 +0.619920 +0.424106 +0.621979 +-0.256871 +0.099391 +0.796786 +0.698208 +-0.126658 +0.272659 +0.718347 +0.952861 +0.551190 +0.884976 +0.413464 +0.400625 +0.931728 +0.083312 +0.794909 +0.303049 +0.425428 +0.462249 +0.850465 +0.277221 +0.348173 +0.028488 +0.612399 +0.933187 +0.169465 +0.026949 +0.141931 +0.852023 +0.137034 +0.370556 +-0.114926 +0.943616 +0.338646 +-0.086564 +0.286645 +0.453402 +0.607781 +0.038685 +0.098437 +0.839984 +0.475561 +0.111260 +0.028072 +0.464399 +0.156807 +0.355948 +0.615729 +0.653631 +0.285739 +-1.128800 +0.009796 +0.893927 +0.019110 +0.102040 +0.009162 +0.000265 +0.894161 +0.011209 +0.016699 +0.072486 +0.132421 +-67.171131 +-0.006620 +0.092491 +0.290530 +0.731160 +0.914794 +0.776058 +0.779652 +0.718793 +0.107809 +0.282871 +-0.005268 +0.238913 +0.723113 +0.270035 +0.614040 +0.239994 +-0.577436 +0.714230 +0.144837 +0.192667 +0.343968 +0.425955 +0.739901 +0.200237 +0.792122 +0.766695 +0.117237 +-0.013565 +0.819408 +0.490940 +0.608945 +0.792550 +-0.082820 +0.506937 +0.513043 +0.928067 +0.209357 +0.255313 +0.366569 +0.088944 +0.697433 +0.795799 +0.979408 +0.835790 +0.788114 +0.945638 +0.930528 +0.898245 +0.915207 +0.261249 +0.818642 +0.371875 +-0.080034 +0.997461 +0.418797 +0.663730 +-1.272305 +0.010742 +0.322862 +0.850018 +0.299232 +0.890870 +0.158582 +0.017762 +0.514700 +0.394392 +0.511355 +0.866348 +0.294444 +0.909478 +-0.186613 +0.812758 +0.397453 +0.549199 +0.898624 +0.930277 +0.911334 +0.835483 +0.603502 +-169857608.855487 +0.847593 +0.364617 +0.886879 +0.922356 +0.973438 +0.709667 +0.008303 +0.475255 +0.619544 +0.885893 +0.885493 +0.740392 +0.996060 +-0.367749 +0.728004 +0.809139 +0.868030 +0.844502 +0.764544 +0.639954 +0.359980 +0.851202 +0.687543 +0.855187 +-0.962596 +0.907294 +0.854205 +0.648975 +0.953749 +0.950248 +-1.105214 +0.417755 +0.803444 +0.927713 +0.505133 +0.719010 +0.652029 +0.558012 +0.735928 +0.321168 +0.367691 +0.186480 +0.968473 +0.927225 +0.557647 +0.287717 +0.370578 +0.537598 +0.868863 +0.897828 +0.188636 +0.510572 +0.420259 +0.408320 +0.932648 +0.554176 +0.906788 +0.422574 +0.936352 +0.376036 +0.957269 +0.659425 +0.083257 +0.645634 +0.445800 +0.920749 +0.397151 +0.320771 +0.483078 +0.900410 +0.562107 +0.453436 +0.929665 +0.919434 +0.985672 +0.797956 +0.315969 +0.316213 +0.630807 +0.938278 +0.513338 +0.840591 +0.347825 +0.053869 +0.112195 +0.387514 +0.136821 +0.379497 +0.244184 +0.486823 +0.926789 +0.932228 +-0.148932 +0.854534 +0.764045 +0.534903 +0.860914 +0.525074 +0.728925 +0.879744 +0.838953 +0.641486 +0.787277 +0.407623 +0.396398 +0.145082 +0.368948 +0.136204 +0.640300 +-0.214873 +0.813913 +0.900714 +0.741671 +0.585685 +0.443355 +0.419570 +0.605988 +0.449683 +0.604530 +0.466427 +-0.064274 +0.608607 +0.946146 +0.476271 +0.435322 +0.411736 +0.439824 +0.901495 +0.835608 +0.443233 +0.617931 +0.498395 +0.668682 +0.476349 +0.575794 +0.529805 +0.529805 +-0.168787 +0.925165 +0.742576 +0.742576 +0.938917 +0.938917 +0.585736 +0.490565 +0.849736 +0.851763 +-0.068511 +0.901374 +0.688573 +0.485861 +0.419314 +0.484065 +0.246494 +0.443519 +0.471646 +0.529702 +0.824936 +0.862347 +-0.197555 +0.172568 +0.822564 +0.626270 +0.726292 +0.950219 +0.812347 +0.948113 +0.320165 +0.286160 +0.504012 +0.079455 +0.248608 +-3.864403 +0.396343 +0.803697 +0.370195 +0.532182 +0.522350 +0.954932 +0.808514 +0.995368 +0.776638 +0.949634 +0.918713 +0.978851 +0.949924 +0.800179 +0.962466 +0.771033 +0.450849 +0.579714 +0.491664 +0.778773 +0.070278 +0.169712 +0.242817 +0.580419 +-0.026350 +0.008399 +0.232158 +0.193921 +0.703415 +0.635084 +0.088984 +0.525555 +0.381281 +0.838401 +0.430450 +-0.085066 +0.662982 +0.290718 +0.366550 +-0.508335 +0.898317 +0.443481 +0.486876 +0.551562 +0.234001 +0.835889 +0.310570 +0.399637 +0.026673 +0.041887 +0.892125 +0.756366 +0.818161 +0.384513 +0.359529 +0.884072 +0.838465 +0.801326 +0.197177 +0.827075 +0.080179 +0.549007 +0.662551 +0.632130 +0.634074 +0.706661 +0.173108 +0.211101 +0.051539 +0.767168 +0.977459 +0.137142 +0.824721 +0.500334 +0.977161 +-0.012563 +0.361894 +0.095200 +0.561804 +0.161671 +0.838734 +0.245077 +0.873068 +0.045163 +0.864348 +0.929163 +0.037821 +0.800710 +0.672297 +0.144635 +0.375070 +0.738853 +0.767897 +0.036879 +0.619121 +0.099725 +0.966626 +0.329892 +0.655932 +0.279125 +0.988889 +0.031372 +0.007444 +0.183537 +0.202101 +0.245761 +-0.204314 +-0.015421 +0.873593 +0.769446 +0.237320 +0.259614 +0.757569 +0.356502 +0.804563 +0.797620 +0.418412 +0.756045 +0.920383 +0.599708 +0.624801 +-1.073617 +-0.115404 +0.601168 +-0.035677 +0.412745 +0.578525 +0.823286 +0.327371 +0.758371 +0.679145 +0.957904 +0.361483 +0.919923 +0.618485 +0.761252 +0.257206 +0.723648 +0.977644 +0.953375 +0.426009 +0.431690 +0.879162 +0.960381 +0.800775 +0.923030 +0.880514 +0.956956 +0.949560 +0.060179 +0.813557 +0.959400 +0.915261 +0.856723 +0.832491 +0.837840 +0.263605 +0.613897 +0.960452 +0.492216 +0.253985 +-0.025096 +0.943871 +-0.291100 +0.478168 +0.610459 +0.461333 +0.697429 +0.692224 +0.661246 +0.310945 +0.083895 +0.287576 +0.917098 +0.060995 +0.656994 +0.606815 +0.795398 +0.883415 +0.927822 +0.365940 +0.111190 +0.835916 +0.962686 +0.547456 +0.214447 +0.973383 +0.512803 +0.554523 +0.258609 +0.620003 +0.936065 +-0.010739 +0.033106 +0.847697 +0.959067 +0.734583 +0.316730 +-0.589157 +0.219168 +0.207747 +0.324960 +0.205001 +0.975855 +0.974548 +0.890501 +0.358792 +0.062282 +0.290699 +0.673928 +0.180674 +0.617953 +0.929177 +0.032271 +0.102016 +0.720117 +0.951207 +0.895163 +0.849349 +0.535111 +0.193460 +0.961803 +0.034311 +0.360106 +0.066696 +0.710445 +0.657375 +0.318075 +0.261678 +0.724618 +0.388481 +0.296500 +0.382725 +0.755263 +0.932225 +0.326778 +0.344286 +-3.224863 +-0.423396 +0.681316 +0.348684 +-79.399332 +0.754219 +0.383754 +0.760720 +0.311762 +0.992171 +0.473161 +0.250691 +0.169807 +-0.016037 +0.108596 +0.141941 +0.419104 +0.133056 +0.433148 +0.548014 +0.365797 +0.033827 +0.980168 +-6.454204 +0.190447 +-0.009964 +0.048855 +0.159947 +0.473174 +0.067048 +0.079225 +0.356835 +0.027839 +0.865411 +0.585344 +0.224325 +0.965912 +0.707277 +0.160492 +0.009960 +0.929918 +0.985109 +-28.622887 +0.086070 +0.527584 +0.732541 +0.889644 +0.894916 +0.889185 +0.381515 +0.389159 +0.562390 +0.920275 +0.820633 +0.913756 +0.946269 +0.862195 +0.356389 +0.576456 +0.841930 +0.955818 +0.918931 +0.840587 +0.484826 +0.663912 +0.193085 +0.961599 +0.660050 +0.908667 +0.660157 +0.856604 +0.457381 +0.263316 +0.975080 +0.962017 +0.880429 +0.506360 +0.539429 +0.876658 +0.933717 +0.643947 +0.966328 +0.926794 +0.592111 +0.432356 +0.685283 +0.784189 +0.596194 +0.738763 +0.230932 +0.222025 +0.871306 +-0.018806 +-0.980119 +-0.049477 +0.231771 +0.250391 +0.313213 +0.217953 +0.591623 +0.930632 +0.084978 +0.978660 +0.250811 +0.320061 +0.090156 +0.154065 +0.610955 +0.622750 +0.384459 +0.899383 +0.135943 +0.876980 +0.558206 +0.443573 +0.420812 +0.894500 +0.237947 +0.039260 +0.166520 +0.736886 +0.972288 +0.474458 +0.081443 +0.298358 +0.131593 +0.693237 +0.520889 +0.058022 +0.035138 +0.038209 +0.499021 +0.014612 +0.024044 +0.440393 +0.453934 +0.592345 +-0.145675 +0.089534 +0.526963 +0.015484 +0.768842 +0.320229 +0.881498 +0.239460 +0.515514 +0.013237 +0.201456 +0.407770 +0.433404 +0.479113 +0.895760 +0.030530 +0.473968 +0.634567 +0.967870 +0.424103 +0.456417 +0.444547 +0.694451 +0.947017 +0.956306 +0.898477 +0.622532 +0.281610 +-20.012800 +0.523562 +0.417429 +0.946866 +0.530931 +0.551783 +0.551587 +0.273598 +0.576648 +0.576648 +0.576648 +0.542770 +0.513462 +0.588023 +0.171205 +0.588491 +0.404284 +0.152062 +0.276897 +-3.840757 +-0.465707 +0.862525 +-328.973851 +0.897521 +0.996748 +0.921246 +0.828368 +0.701245 +0.668399 +0.501270 +0.769205 +0.760979 +-0.256056 +0.880919 +0.982241 +0.918420 +0.757857 +0.735244 +0.734036 +0.726701 +0.799477 +0.535493 +0.435540 +0.696273 +0.930452 +0.462661 +-0.219347 +0.796225 +0.715337 +0.626993 +0.854317 +0.816669 +0.476974 +0.820018 +0.896320 +0.610442 +0.812132 +0.871083 +-0.572786 +0.754606 +0.941865 +0.458207 +0.460436 +0.868172 +0.913896 +0.171669 +0.774151 +0.609651 +0.947219 +0.838773 +0.827513 +0.951124 +0.454530 +0.336177 +0.494104 +0.946663 +0.998362 +0.966204 +0.659724 +0.712388 +0.932921 +0.575181 +0.933344 +0.724527 +0.279143 +0.693197 +0.354078 +0.693668 +0.864419 +0.623480 +0.090622 +0.279703 +0.531125 +0.152609 +0.737343 +0.839733 +0.852494 +0.744444 +0.689754 +0.385657 +0.183724 +0.163537 +0.621895 +0.154639 +0.788274 +0.588202 +0.531745 +0.085999 +0.358612 +0.101130 +0.822735 +0.117977 +0.215080 +0.180720 +0.966875 +0.481140 +0.703885 +0.939532 +0.736506 +0.913467 +0.507365 +0.463164 +0.250866 +0.889154 +0.956610 +0.883750 +0.960706 +0.061008 +0.856029 +0.210413 +0.923910 +-7.674069 +0.601287 +0.214659 +0.614041 +0.483529 +0.554501 +0.849831 +0.625169 +0.657282 +0.874093 +0.838585 +0.812506 +0.603286 +0.777922 +-0.267277 +0.595785 +0.495344 +0.521353 +0.476256 +0.461438 +0.935111 +0.443912 +0.127629 +0.043343 +0.677219 +0.728863 +0.902387 +0.271143 +0.257724 +0.514570 +0.950948 +0.988275 +0.926374 +0.937499 +0.976992 +0.852853 +0.765439 +0.986594 +0.941826 +0.392873 +0.492285 +0.956193 +0.940661 +0.913433 +0.872803 +0.403519 +0.639514 +0.899219 +0.636425 +0.835617 +0.921319 +0.974854 +0.976603 +0.911317 +0.844618 +0.933065 +0.470107 +0.166751 +0.359346 +0.925517 +0.612388 +0.547427 +-0.037695 +0.200568 +0.225230 +0.014237 +0.159517 +0.047699 +0.974234 +0.844888 +0.927698 +0.115246 +0.709164 +0.732690 +0.620534 +0.092049 +0.689818 +0.937799 +0.265439 +0.948926 +0.863487 +0.763368 +0.915870 +0.935277 +0.581451 +0.769203 +0.926748 +0.704773 +0.891762 +0.846710 +-0.040783 +-0.289633 +0.576098 +0.881009 +0.710858 +0.406212 +0.993332 +0.587141 +0.839032 +0.944536 +0.790261 +0.982690 +0.865826 +0.937705 +0.045992 +0.907343 +0.640859 +0.256685 +0.395299 +-10.911986 +-0.579605 +0.731914 +0.632637 +0.948656 +0.880065 +0.415909 +0.761597 +0.916094 +0.397049 +0.916820 +0.245297 +0.702504 +0.504338 +0.210119 +0.642551 +0.460334 +0.398814 +0.975226 +0.846752 +0.951191 +0.948511 +0.521193 +0.547093 +0.460876 +0.567270 +0.981590 +0.751349 +0.818636 +0.448799 +0.944650 +0.471838 +0.736024 +0.932203 +0.806177 +0.454673 +0.606164 +0.937386 +0.717253 +0.917996 +0.843834 +0.846983 +0.844490 +0.918459 +0.929878 +0.849891 +0.956974 +0.935338 +0.934255 +0.937678 +0.923841 +0.391978 +0.504810 +0.443595 +0.386979 +0.827513 +0.752158 +0.112472 +0.220248 +0.845894 +0.889721 +0.600653 +0.895034 +0.929831 +0.658777 +0.193950 +0.328121 +0.858320 +0.702834 +0.911440 +0.871385 +0.965444 +0.645550 +0.640146 +0.599330 +0.838325 +0.897337 +0.085222 +0.751827 +0.314887 +0.937114 +0.296676 +0.203088 +0.299007 +0.359084 +0.304134 +0.064673 +0.875817 +0.428454 +0.320580 +0.017491 +0.108309 +0.015850 +0.678253 +0.560009 +0.416620 +-0.799222 +-0.459629 +0.499013 +0.959301 +0.142465 +0.111873 +0.261852 +0.232983 +0.620931 +0.690281 +0.942453 +0.234568 +0.507489 +0.914061 +0.738915 +0.341522 +0.961371 +0.274449 +0.948127 +0.816574 +0.441121 +0.360540 +0.973752 +0.051028 +0.896984 +0.206346 +0.966849 +0.516236 +0.483131 +0.657026 +0.402870 +0.630410 +0.881001 +0.616471 +0.982886 +0.936165 +0.855846 +0.582592 +0.549039 +0.762713 +0.869726 +0.734213 +0.360972 +0.584793 +0.461317 +0.331260 +0.973802 +0.928322 +0.929036 +0.252118 +0.929190 +0.304040 +0.972093 +0.382367 +0.289455 +0.770547 +0.777254 +0.857419 +0.196464 +0.897712 +0.409047 +0.378546 +0.397153 +0.661490 +0.537707 +0.697058 +0.347506 +0.951089 +0.936307 +0.845079 +0.749179 +0.539896 +0.174670 +0.847399 +0.860386 +0.857259 +0.932263 +0.740575 +0.817125 +0.843577 +0.853908 +-0.059822 +0.691755 +-0.088714 +0.173866 +0.454937 +0.756056 +0.911505 +0.925300 +0.661876 +0.577503 +0.832396 +0.825966 +0.722363 +0.490096 +0.432631 +0.316184 +0.470080 +0.620100 +-1.171547 +0.859852 +0.862145 +0.377055 +0.495024 +0.855170 +0.968888 +0.552285 +0.304309 +0.460450 +0.550620 +0.726986 +0.645012 +0.697924 +0.694172 +0.966522 +0.950755 +0.851516 +0.322368 +0.861627 +0.364345 +0.934037 +0.943320 +0.672865 +0.845502 +0.523624 +0.791496 +0.967412 +0.937925 +0.727951 +0.963680 +0.333416 +0.668249 +0.557860 +0.392781 +0.442112 +0.544119 +0.063112 +0.933760 +0.357523 +0.883769 +0.830399 +0.976787 +0.668122 +0.052989 +0.811813 +0.124027 +0.078246 +0.865559 +0.938945 +-10.576864 +0.909259 +0.614616 +0.614082 +0.853970 +0.510315 +0.625381 +0.659855 +0.642107 +0.542391 +0.613751 +0.769064 +0.769608 +0.583469 +0.874852 +0.475668 +0.145573 +0.806310 +0.479476 +0.927157 +0.972133 +0.563390 +0.170723 +0.985443 +0.924023 +0.461033 +0.647923 +0.880426 +0.522110 +0.925047 +0.986873 +0.519734 +0.596671 +0.827219 +0.311546 +0.843673 +0.554234 +0.514221 +0.643136 +0.442168 +0.984292 +0.611386 +-0.028863 +0.204313 +0.968337 +0.907488 +0.955327 +0.712078 +0.971815 +0.925805 +0.533035 +0.387097 +0.875909 +-0.605999 +-0.511629 +0.502662 +0.818739 +0.963352 +0.953502 +0.728188 +0.613188 +0.332969 +0.153489 +0.403527 +-0.169093 +0.891651 +0.891651 +-0.235174 +0.876623 +0.792317 +-0.081998 +0.824265 +0.973213 +0.352803 +0.803693 +0.537496 +0.293477 +-0.084610 +0.457591 +-0.203980 +0.800259 +0.559326 +0.605507 +0.398834 +-0.049351 +0.953678 +0.485302 +0.821029 +0.011122 +0.973295 +0.136455 +0.116780 +0.513723 +0.417586 +0.021690 +0.129570 +0.142785 +0.568184 +0.595548 +0.921694 +0.099268 +0.327851 +0.546157 +0.561038 +-0.043150 +0.693996 +0.922607 +0.301804 +0.361076 +0.970021 +0.311770 +0.347190 +0.153076 +0.634785 +0.024001 +0.113581 +0.885527 +0.356544 +0.435225 +0.269420 +0.180878 +0.267159 +0.406339 +0.777077 +0.357450 +0.824100 +0.805045 +0.619917 +0.308132 +0.400416 +0.486799 +0.666285 +0.585966 +0.422694 +0.179811 +-0.055039 +0.932458 +0.930179 +0.814315 +0.851541 +0.850728 +0.863557 +0.395411 +-0.141147 +0.943080 +0.592965 +0.914579 +0.907541 +-0.059496 +0.886839 +0.860564 +0.793759 +0.650471 +0.224831 +0.356253 +0.885395 +0.000723 +0.323859 +0.756138 +0.912783 +0.785853 +0.885768 +0.467737 +0.055678 +0.248393 +0.195181 +0.932360 +0.509458 +0.365215 +0.267675 +0.605914 +0.835461 +0.378066 +0.217492 +0.766867 +-21.164753 +0.557519 +0.776645 +0.575639 +0.980454 +0.806231 +0.994612 +0.997119 +0.856137 +0.506981 +0.542306 +0.591681 +0.657433 +0.386536 +0.000150 +0.569096 +0.452871 +0.997925 +0.919262 +0.243927 +0.760599 +0.968574 +0.475289 +0.115599 +0.545694 +0.766372 +0.065378 +0.957010 +0.794191 +0.919985 +0.947205 +0.400926 +0.643501 +0.680642 +0.765423 +0.579943 +0.582694 +0.518456 +0.860944 +0.953996 +0.552531 +0.548148 +0.758639 +0.741482 +0.279403 +0.252700 +0.545115 +0.254459 +0.282525 +0.554285 +0.038961 +0.700397 +0.771285 +0.665654 +0.967945 +0.730576 +0.903110 +0.816423 +0.662440 +0.562674 +0.988530 +0.289099 +0.948802 +0.518183 +0.476215 +0.835337 +0.668510 +0.623833 +0.569899 +0.741028 +0.919477 +0.771627 +0.680840 +0.993391 +0.859278 +0.039211 +0.941215 +0.044074 +-1.682033 +0.728609 +0.459176 +0.207453 +0.581804 +0.910408 +-0.252800 +0.344271 +-22.649598 +0.296557 +0.777714 +0.563886 +0.850836 +0.984529 +0.465675 +0.923100 +0.937486 +0.993423 +0.963750 +0.986131 +-0.478743 +0.553226 +0.642018 +-0.794848 +0.772586 +-0.012933 +0.398433 +0.093227 +0.702653 +0.598674 +0.632525 +0.200371 +0.331032 +0.619366 +0.003812 +0.852567 +0.940177 +0.206441 +0.349902 +0.444451 +0.051515 +0.536736 +0.942767 +0.687882 +0.269889 +0.316960 +0.287345 +0.983267 +0.060551 +0.913340 +-2.265491 +-0.158471 +0.853752 +0.592731 +0.910927 +0.991749 +0.524087 +0.763922 +0.833592 +0.915708 +0.833660 +0.782313 +0.655762 +0.801009 +0.561305 +0.663812 +0.749896 +0.428112 +0.213836 +-0.060122 +0.372444 +0.606441 +0.903619 +0.659370 +0.899285 +0.691727 +0.615381 +-0.188587 +0.686944 +0.663035 +0.409114 +0.379517 +-0.156533 +0.336082 +0.540915 +0.388929 +0.492816 +0.982713 +0.569612 +0.662370 +-0.951875 +0.385549 +0.680147 +0.690872 +0.455377 +0.819171 +0.339516 +0.879860 +0.617463 +0.146888 +-3539.139970 +0.111781 +0.119492 +-12.634779 +0.934145 +0.714760 +0.994021 +0.775255 +0.756313 +0.669110 +0.958758 +0.087819 +0.109327 +0.815423 +0.930370 +0.382760 +0.230651 +-0.043012 +0.658378 +0.039332 +0.270343 +0.380694 +0.007086 +0.123771 +0.019974 +0.232691 +0.939816 +0.093273 +0.327103 +0.721009 +0.458243 +0.573099 +0.790570 +0.656317 +0.790665 +0.753374 +0.831557 +0.495998 +0.150585 +0.008142 +0.901023 +0.211807 +0.595636 +0.893102 +0.381107 +0.643862 +0.297053 +-7.709568 +0.649386 +0.927094 +0.113082 +0.986241 +0.732043 +-0.059376 +0.049953 +-576.428593 +0.983130 +0.113060 +0.930456 +0.866610 +0.810080 +0.908004 +0.718657 +0.195092 +0.938041 +0.279284 +0.939663 +0.284486 +0.797869 +0.827777 +0.552837 +0.996328 +0.985202 +0.011661 +-0.048104 +0.074810 +0.286636 +0.267759 +0.722811 +0.891596 +0.034662 +-0.621748 +0.008315 +0.644729 +0.681343 +0.784236 +0.755383 +0.436061 +0.718530 +0.863795 +0.676812 +0.378535 +0.391832 +0.575429 +0.032338 +0.108731 +0.522468 +0.213440 +0.217365 +0.255265 +0.325011 +0.228312 +0.579583 +0.876394 +0.769426 +0.912059 +0.382017 +0.922238 +0.676234 +0.683648 +0.908871 +0.845648 +0.779020 +0.982090 +0.730862 +0.938364 +0.930888 +0.706145 +0.949947 +0.933028 +0.555786 +0.566933 +0.090108 +0.775281 +0.422360 +0.262752 +0.893562 +0.825317 +0.872679 +0.861242 +0.924263 +0.637232 +0.583243 +0.944624 +0.283776 +0.581781 +0.824232 +0.904639 +0.454866 +0.726315 +0.615355 +-0.604837 +0.794058 +0.832593 +0.360228 +0.881064 +0.023438 +0.914389 +0.564994 +0.848851 +0.822858 +0.936553 +0.544738 +0.948384 +0.947289 +0.921964 +0.740665 +0.798965 +0.849710 +0.117610 +0.087961 +0.901102 +0.928506 +0.930168 +0.760955 +0.752183 +0.607981 +0.989769 +0.426338 +0.392244 +0.772930 +0.931885 +0.928304 +0.492868 +0.929450 +0.785419 +0.786977 +0.469592 +0.933725 +0.927789 +0.702443 +0.934282 +0.928418 +0.634676 +0.638003 +0.501004 +0.321929 +0.707138 +0.870720 +0.550177 +0.926057 +0.761239 +0.667521 +0.765915 +0.462704 +0.929126 +0.701659 +0.631691 +0.533554 +0.026445 +0.931657 +0.799966 +-0.181463 +-0.181830 +0.486809 +-0.232472 +0.868145 +0.473722 +0.654579 +0.642944 +0.933124 +0.928982 +0.890408 +0.264850 +0.494579 +0.941367 +0.734803 +-0.087123 +0.677643 +0.595520 +-0.195966 +0.920211 +0.618506 +0.593374 +0.925867 +0.826856 +-0.142703 +0.671594 +0.987810 +0.738301 +0.914545 +0.626485 +0.901329 +0.760399 +0.818620 +0.721274 +0.954643 +-0.206345 +0.492478 +0.492472 +0.492476 +0.534797 +0.441790 +0.439703 +0.420260 +-0.034798 +0.162648 +0.464547 +0.643746 +0.324427 +0.890772 +0.750143 +0.687986 +0.480196 +0.708542 +0.363081 +0.723831 +0.398129 +0.958931 +0.790145 +0.927144 +0.414833 +0.781921 +0.502769 +0.619055 +0.156933 +0.467238 +0.372581 +0.183184 +0.972435 +0.987279 +-0.013357 +0.270378 +0.036998 +0.053275 +0.954822 +0.743635 +-25.266000 +0.918566 +0.643601 +0.792782 +0.997116 +-0.307358 +0.194084 +0.761416 +0.595865 +0.879309 +0.028583 +0.969250 +0.115297 +0.643947 +0.367117 +0.152630 +0.190756 +0.310693 +0.196214 +0.967842 +0.722782 +0.114177 +0.678813 +0.956423 +0.917261 +0.978593 +0.333930 +0.940144 +0.108662 +0.373792 +0.918891 +0.830514 +0.989119 +0.757381 +0.920364 +-0.002876 +0.551841 +0.903928 +0.874842 +0.913449 +0.925885 +0.921183 +0.921677 +0.585410 +0.907239 +0.925384 +0.965028 +0.042149 +0.935526 +0.334430 +0.924469 +0.227049 +0.837240 +0.848158 +0.662199 +-0.758286 +0.730529 +0.930738 +0.118273 +0.895089 +-0.034954 +-0.194039 +-0.159715 +0.711256 +0.782944 +0.900978 +0.934951 +-0.023607 +0.511561 +0.429778 +-0.216787 +0.480189 +0.925590 +0.395605 +0.714822 +0.552189 +0.309351 +0.509519 +0.707302 +0.372894 +0.810039 +0.641518 +0.640517 +0.990390 +0.722624 +0.583160 +-0.136463 +0.662372 +0.452314 +0.457330 +0.888377 +0.691881 +0.654971 +0.741660 +0.846199 +0.603882 +0.645976 +-0.184634 +0.845352 +0.710181 +0.347490 +0.920411 +-0.233265 +0.838333 +0.683251 +0.784330 +0.803076 +-0.025810 +0.652759 +0.905295 +0.778996 +0.283796 +0.518111 +0.886255 +0.273679 +-0.095630 +0.495306 +0.797430 +0.679117 +0.784580 +0.682760 +0.654347 +-0.275604 +0.790303 +0.577238 +0.929499 +0.965666 +0.593619 +-0.103837 +0.845982 +-0.045438 +0.784350 +0.860296 +0.927076 +0.967258 +-0.013038 +0.144056 +-0.331716 +0.954294 +0.903288 +0.620591 +0.819577 +0.857465 +-0.006185 +0.160900 +-0.272354 +0.811064 +0.663211 +0.038128 +0.471032 +-0.232669 +-0.185254 +-0.253836 +0.460489 +0.900585 +0.686661 +0.622104 +0.903249 +0.362029 +0.545212 +0.269416 +-3461.114004 +0.078270 +0.947678 +-5.063969 +0.239632 +0.317918 +0.869936 +0.039865 +0.898784 +0.966135 +0.439860 +0.492576 +0.714379 +0.710502 +0.372693 +0.547806 +0.925818 +0.390811 +0.805958 +0.806226 +0.419825 +0.733862 +0.744289 +0.823521 +0.651575 +0.733345 +0.738814 +0.757323 +0.928592 +0.897880 +0.796625 +0.609148 +0.936216 +0.842285 +0.934573 +0.608323 +0.742102 +0.871774 +0.623205 +0.965393 +0.352046 +0.683866 +0.626714 +0.397552 +0.627192 +0.882150 +0.786628 +0.933714 +0.613650 +0.703491 +0.512488 +0.968915 +0.869100 +0.656899 +0.930340 +0.373236 +0.585859 +0.892697 +0.227710 +0.634753 +0.919579 +0.907494 +0.806564 +0.777601 +0.733024 +0.972632 +0.719300 +0.768875 +0.783073 +-0.377997 +0.964815 +0.891856 +0.302539 +0.590978 +0.745075 +0.757176 +0.934342 +0.883192 +0.634825 +-0.172567 +0.802294 +0.332282 +0.261589 +0.542971 +0.528622 +-0.052362 +0.076214 +-0.208358 +0.068191 +0.893853 +0.747219 +0.660389 +0.442079 +0.869063 +0.381434 +0.428484 +-0.200795 +-0.114049 +0.512895 +0.940278 +0.941023 +0.009017 +0.791123 +0.218079 +0.507676 +0.667120 +0.522020 +0.618726 +0.531258 +0.320735 +0.729086 +0.542479 +0.256655 +0.893722 +0.352780 +0.824079 +0.578703 +0.846526 +0.746000 +-0.604939 +0.683531 +0.796748 +0.557329 +0.633791 +0.765226 +0.988319 +0.562999 +0.383013 +-0.306856 +0.720377 +-0.480674 +0.223307 +0.787086 +0.831045 +0.939483 +0.568232 +0.854523 +0.190120 +0.959003 +0.892114 +0.840335 +0.302223 +0.852326 +-0.191365 +0.810033 +0.927927 +0.472591 +-0.185216 +-0.503301 +0.857332 +0.733437 +0.713555 +0.414766 +0.873249 +0.649969 +0.841086 +0.169093 +0.763972 +0.832600 +0.416549 +0.572627 +0.483519 +0.802203 +-0.336396 +0.649921 +0.774125 +0.774530 +0.541513 +0.226848 +0.679306 +-0.254666 +0.203774 +0.867352 +0.835968 +0.861750 +0.523131 +0.639952 +0.732750 +-0.191953 +0.828277 +0.468295 +0.341605 +0.594150 +0.652759 +0.983617 +0.474690 +0.625339 +0.507277 +-0.200604 +-0.104477 +0.852926 +0.390867 +0.928801 +-0.118453 +0.892957 +0.793257 +0.868491 +0.347019 +0.593378 +0.359188 +0.570049 +0.894699 +-0.166471 +0.931846 +0.874180 +0.793316 +0.802785 +0.645322 +0.676756 +0.524044 +0.573467 +0.445065 +0.496282 +0.568716 +0.359357 +0.877163 +0.942171 +0.768094 +0.934509 +0.442538 +0.979229 +0.864658 +0.662469 +0.659884 +0.670378 +0.930457 +0.904215 +0.265387 +0.922703 +0.825930 +0.707100 +0.858098 +0.624108 +0.763565 +0.802119 +0.651720 +0.930719 +-0.370038 +0.788405 +0.832724 +0.904278 +0.706981 +0.627814 +0.271796 +0.836581 +0.665452 +-0.068888 +0.883457 +0.495672 +0.883147 +0.906594 +0.115265 +0.933692 +0.349552 +0.948132 +0.812715 +0.759597 +0.319224 +-0.106062 +0.878234 +0.132811 +0.850637 +0.882184 +-0.031396 +-0.015143 +0.397389 +-0.089679 +0.557544 +0.647086 +0.497139 +0.334105 +0.780435 +0.178396 +0.718114 +0.822224 +0.428812 +0.800721 +0.802789 +0.536296 +-0.163070 +0.376675 +0.663505 +0.290154 +0.068898 +0.076001 +0.697239 +-0.183775 +0.465587 +-0.106466 +0.360201 +0.816296 +0.075021 +0.923447 +0.749355 +0.583960 +0.883839 +0.923006 +0.700025 +0.877852 +0.725269 +0.933700 +0.893629 +0.919969 +0.706815 +0.500942 +0.770636 +0.778549 +0.464349 +0.799189 +0.608983 +0.670547 +0.931781 +0.678113 +0.003715 +0.569889 +0.709507 +0.834200 +0.877267 +0.316470 +0.886522 +0.249515 +0.606486 +0.803656 +0.952532 +0.966580 +-11.911247 +-24.664826 +-0.296082 +0.413401 +0.213517 +0.060553 +0.392666 +0.693084 +-0.025986 +0.038338 +0.410373 +0.800999 +0.305406 +0.653697 +0.518164 +0.834915 +0.527788 +0.562082 +-0.095200 +0.589080 +0.066022 +0.892307 +0.964966 +0.584753 +0.801063 +0.674932 +0.359203 +-0.110966 +0.114955 +-0.101730 +0.689219 +0.710265 +0.504956 +0.719886 +0.777134 +0.059415 +0.986878 +0.853944 +0.472592 +0.551357 +0.419788 +0.519281 +0.697019 +0.474660 +0.471137 +0.814280 +0.641245 +-0.164905 +0.130884 +0.820034 +0.801606 +0.066891 +0.283232 +0.420897 +0.857305 +0.341315 +0.085175 +0.227700 +0.788617 +0.805136 +0.954220 +0.754556 +0.931990 +0.884854 +0.629679 +0.982712 +0.931576 +0.424100 +0.995120 +0.769779 +0.716346 +0.496718 +0.803951 +0.933062 +0.931261 +0.956761 +0.754015 +0.539718 +0.786116 +0.977170 +0.931193 +0.976613 +0.831478 +0.744686 +0.750260 +-0.289910 +0.700857 +0.590796 +-0.263154 +0.487833 +0.424554 +-3.256109 +0.501623 +0.118119 +0.801620 +0.696751 +0.374831 +0.801305 +0.432668 +0.792833 +0.836808 +0.378085 +0.543634 +-0.352286 +0.649830 +0.679772 +-0.161497 +0.296813 +0.082278 +0.395084 +0.631778 +-0.378194 +0.054734 +0.536040 +0.634428 +-0.643349 +0.025985 +0.518738 +-0.261921 +-0.238160 +-0.192066 +0.481214 +0.781144 +0.801322 +0.236836 +0.148880 +0.931635 +0.714477 +0.764028 +0.760709 +0.421752 +0.661115 +0.770964 +0.555113 +0.742059 +0.901991 +0.753826 +-0.313343 +-0.162887 +-0.225824 +0.780229 +0.699933 +0.527753 +0.207170 +-0.541646 +0.595485 +-0.316588 +0.381082 +0.956600 +0.329014 +0.768111 +0.515426 +-0.644537 +0.838174 +0.589993 +0.785914 +-0.059217 +0.755784 +0.971998 +0.839049 +0.696852 +0.801350 +-0.253211 +-0.253095 +-0.161429 +0.899663 +0.937238 +0.931534 +0.414495 +0.920250 +0.882482 +0.263843 +0.778945 +0.812391 +0.103126 +0.799970 +0.780904 +0.811470 +0.732206 +0.884520 +0.855498 +-0.146547 +0.739581 +0.663109 +0.815742 +-0.181008 +0.805013 +0.821374 +0.909411 +0.316613 +-0.231539 +0.798215 +-0.130877 +0.815704 +0.755648 +0.878769 +0.707578 +-0.219016 +0.111874 +-0.120480 +0.782572 +0.468099 +-0.194681 +0.851474 +0.931625 +0.452569 +0.667271 +0.668274 +0.377518 +0.749059 +0.645250 +0.145033 +0.156172 +0.472525 +0.741540 +0.685380 +-0.091903 +0.387137 +0.169184 +0.385332 +0.127520 +0.663846 +0.669187 +0.735889 +0.533113 +-0.007670 +-0.056127 +-0.274292 +0.461874 +-0.244908 +0.411615 +-0.164480 +0.628436 +0.451532 +0.289835 +0.329118 +0.142573 +0.514095 +0.215953 +0.870331 +0.396304 +0.643508 +0.704977 +0.129939 +0.399072 +0.474152 +0.529051 +0.555340 +-0.165029 +0.909785 +0.747893 +0.333298 +0.750190 +0.507118 +0.509097 +0.812615 +0.458337 +0.174067 +0.800906 +0.323209 +0.928622 +0.392061 +0.539887 +0.538322 +0.513814 +0.954342 +0.905845 +0.586140 +0.638775 +0.502986 +0.780628 +0.647671 +0.918248 +0.863505 +0.778025 +0.758480 +0.005366 +0.595083 +-0.099128 +0.609676 +0.216748 +0.577892 +0.570446 +-1.360819 +0.359244 +0.789660 +0.881586 +-0.048411 +0.841612 +0.544141 +0.249287 +0.368863 +-0.033894 +0.086921 +0.712444 +0.934169 +0.203498 +0.684215 +0.145193 +-0.166819 +0.587615 +-0.223508 +0.473507 +0.684956 +-0.072695 +0.107007 +0.346239 +0.818008 +0.597521 +0.151160 +0.848133 +0.616657 +0.739229 +0.825033 +0.549223 +0.164316 +0.379820 +0.415041 +0.263175 +0.481406 +0.513188 +0.642994 +0.348137 +0.072981 +0.101456 +0.925942 +0.494885 +0.928695 +0.950612 +0.943289 +0.343841 +0.664158 +0.490581 +0.691329 +0.461070 +0.825141 +0.841982 +0.826616 +0.242226 +0.978802 +0.882802 +-0.168604 +0.924408 +0.965328 +0.376069 +0.592909 +0.766873 +0.743287 +0.800167 +0.627356 +0.456505 +0.242099 +0.372896 +0.060275 +0.929791 +0.582819 +0.393272 +0.298500 +0.670207 +0.975320 +0.763258 +0.974014 +0.766347 +0.340556 +0.801169 +0.881424 +0.660888 +0.312749 +0.308627 +0.487002 +0.490929 +0.716810 +0.821320 +0.653258 +-0.171383 +0.541768 +0.881230 +0.867315 +0.709773 +0.513710 +0.679703 +0.838762 +0.838366 +0.701636 +0.552281 +0.540343 +0.911173 +0.147463 +0.317321 +0.890924 +0.450362 +0.727285 +-0.224914 +0.023093 +0.032474 +-0.905272 +0.575280 +0.948700 +0.940911 +0.911020 +0.975327 +0.373130 +0.640453 +0.569621 +0.531178 +0.951486 +0.917101 +0.928686 +0.694075 +0.456288 +0.999521 +0.140705 +0.452869 +0.779283 +0.232771 +0.705092 +0.635589 +0.888328 +0.829936 +0.331686 +0.939235 +0.415698 +0.845153 +0.813077 +0.867579 +0.915646 +0.939271 +0.937000 +-0.038240 +0.765693 +0.867625 +0.906769 +0.829132 +0.768491 +0.829423 +0.879660 +0.353328 +0.437456 +0.923741 +0.701272 +0.913238 +0.940947 +0.543779 +-37.377058 +0.368594 +0.922520 +0.891050 +0.957881 +0.882556 +0.640239 +0.621387 +0.424585 +0.645583 +0.509996 +0.975070 +0.631184 +0.849884 +0.482227 +0.524021 +0.720971 +0.763794 +0.687835 +0.753402 +0.426689 +0.747005 +0.431631 +-1.635554 +0.831149 +0.496560 +0.050980 +0.539078 +0.168663 +0.320894 +0.279660 +0.995707 +0.995505 +0.351914 +0.974058 +0.512722 +0.341579 +0.887291 +0.435507 +0.552924 +0.721789 +-0.043987 +0.700142 +0.705830 +0.766820 +0.809113 +0.408796 +0.542331 +0.541022 +0.665676 +0.011448 +0.863933 +0.910020 +0.678153 +0.728216 +0.646204 +0.765974 +0.572242 +0.853936 +0.788870 +0.270683 +0.905003 +0.853987 +0.928748 +0.587334 +0.851140 +0.944463 +0.864581 +0.842271 +0.843077 +0.936378 +0.931267 +0.833136 +0.948604 +0.398246 +0.402441 +0.355475 +0.817075 +0.711023 +0.541022 +0.497626 +0.468649 +0.841924 +0.836226 +0.931311 +0.147315 +0.906950 +0.604116 +-1.661836 +0.664119 +0.651690 +0.365708 +0.502355 +0.742511 +0.751490 +0.734354 +0.322258 +0.779115 +0.766273 +0.747822 +0.509684 +0.659813 +0.845792 +0.621167 +0.650605 +0.893609 +0.808547 +0.627997 +0.870588 +-26.922387 +-30.124187 +-3.518029 +0.747351 +-29.951715 +0.439118 +0.336049 +0.412796 +0.615823 +0.288676 +0.668237 +0.480395 +0.248019 +0.768720 +-0.283384 +0.887153 +-0.636745 +0.063650 +0.624647 +-0.055192 +0.652014 +0.626280 +0.893610 +0.677803 +0.810112 +0.973180 +0.929612 +0.873468 +0.653747 +0.564775 +0.854807 +0.841541 +-12.458058 +0.226208 +0.675522 +-1.134588 +0.260756 +0.991299 +-0.606061 +0.132496 +0.175559 +0.505839 +0.293664 +0.194784 +0.088894 +0.314680 +0.112195 +0.303671 +0.321909 +0.541374 +0.801307 +0.425533 +-0.083110 +0.823439 +-0.002561 +0.047354 +0.900814 +0.140187 +0.969670 +0.562463 +0.751903 +0.880227 +0.690544 +0.003471 +0.729002 +0.880000 +0.515729 +0.328302 +0.600124 +0.420851 +0.847374 +0.926748 +0.240607 +0.360871 +0.949574 +0.786783 +0.702454 +0.596616 +0.860569 +0.409084 +0.670800 +0.897159 +0.824912 +0.780324 +0.402332 +0.734958 +0.692173 +0.816121 +0.351782 +0.762576 +0.915604 +0.639953 +0.810726 +0.671808 +0.844533 +0.719452 +0.594066 +0.652932 +0.524751 +0.904470 +0.855292 +0.841049 +0.659995 +0.391705 +0.385316 +0.733380 +0.203163 +0.814078 +0.637046 +0.803478 +0.848212 +0.296107 +0.767028 +0.520310 +0.216560 +0.753308 +0.417479 +0.147324 +0.593664 +0.298833 +0.857831 +0.195835 +0.512544 +0.573040 +0.700721 +0.325014 +0.147910 +0.320825 +0.708121 +0.172124 +0.582494 +0.547669 +0.555732 +0.522813 +0.368501 +0.283730 +0.247626 +0.206554 +0.203742 +0.741312 +0.386444 +0.897463 +0.305167 +0.470401 +0.141989 +0.172374 +0.172374 +0.019332 +0.729825 +0.397803 +0.603484 +0.366393 +0.208679 +0.348510 +0.204970 +0.846060 +0.918210 +0.212673 +0.573154 +-0.080943 +-0.000362 +-0.152085 +0.976905 +0.586480 +0.908106 +0.804255 +0.395031 +0.886132 +0.486707 +0.519728 +0.831316 +0.946851 +0.488488 +0.484739 +0.432160 +0.286745 +0.772081 +0.633667 +0.630316 +-1.664329 +0.601638 +0.322710 +0.758815 +0.770601 +0.760915 +0.652523 +0.806944 +0.553614 +0.745752 +0.719306 +0.714152 +0.692489 +0.872729 +0.570758 +0.938857 +0.736835 +0.241102 +0.449074 +0.209538 +0.944505 +0.255864 +0.415290 +0.872491 +0.399582 +0.769004 +0.882339 +0.681138 +0.322696 +0.885840 +0.381726 +0.378950 +0.893478 +0.826619 +0.797285 +0.946468 +0.441649 +0.954132 +0.926000 +0.386556 +0.597366 +0.044561 +0.755701 +0.862726 +0.859030 +0.453939 +0.957838 +0.902649 +0.911647 +0.854239 +0.948847 +0.365789 +0.338170 +0.853866 +0.939066 +0.546450 +0.701823 +0.890474 +0.906612 +-0.788550 +0.131330 +0.941029 +0.808820 +0.826681 +0.843109 +0.846714 +0.265178 +0.865893 +0.872257 +0.989967 +0.739045 +0.909734 +0.894820 +0.723881 +0.391693 +0.995511 +0.404346 +0.739999 +0.660941 +0.317227 +0.821337 +0.495881 +0.699185 +0.182853 +0.646051 +0.533749 +0.913180 +0.705193 +0.810236 +0.832905 +0.629196 +0.596720 +0.680681 +0.138222 +0.550451 +0.236805 +0.080275 +0.363725 +0.347700 +0.476702 +0.490043 +0.649753 +0.331709 +0.532311 +0.736341 +0.162328 +0.044464 +0.566639 +0.308229 +0.709721 +0.849861 +0.842415 +0.156029 +0.584134 +-0.978844 +0.847093 +0.547656 +0.437925 +0.575981 +0.604617 +0.443396 +0.579347 +0.579347 +0.444091 +0.651284 +-0.004013 +0.739125 +0.000406 +0.470429 +0.634398 +-0.158747 +0.882812 +0.926891 +0.528271 +0.640193 +0.806832 +0.637433 +0.643724 +0.748696 +0.769925 +0.937080 +0.931485 +0.675463 +0.832208 +0.949709 +0.362595 +0.972779 +0.814657 +0.655083 +0.858435 +0.841933 +0.836600 +0.952871 +0.278678 +0.956207 +0.571989 +0.443559 +0.866316 +0.431262 +0.652031 +0.866810 +0.889504 +0.507675 +0.578299 +0.998345 +0.430287 +0.369423 +0.715712 +-0.027800 +0.955826 +0.856671 +0.856290 +0.367379 +0.136621 +0.778420 +0.544383 +0.012824 +0.187214 +0.130963 +0.204995 +0.791284 +0.922166 +0.611278 +0.756225 +0.992993 +0.212753 +0.204727 +0.228762 +0.631454 +0.187808 +0.695614 +0.848937 +0.951839 +0.088254 +0.023811 +-1.408284 +0.459731 +0.771054 +0.190277 +-4.145188 +0.025311 +0.777699 +0.680603 +0.580677 +0.540245 +0.518109 +0.878576 +0.662093 +0.198927 +0.330143 +0.377266 +0.118338 +0.596644 +0.109241 +-2.083087 +0.351399 +0.302943 +0.823536 +0.893177 +0.921044 +0.883937 +0.163755 +0.144875 +-0.046698 +0.866376 +0.317793 +0.647660 +0.675087 +0.508713 +0.484549 +0.636515 +0.917586 +0.614881 +0.831352 +0.312990 +-0.011471 +0.809278 +0.805858 +0.519136 +0.819568 +0.286897 +-0.200607 +0.174745 +-0.314371 +0.298910 +0.414477 +0.706200 +0.629622 +0.806003 +0.865988 +0.699734 +0.404818 +0.549229 +0.642926 +0.579566 +0.772924 +0.515868 +0.960805 +0.944848 +0.728813 +0.201705 +0.883690 +0.397472 +0.856506 +0.365000 +0.635214 +0.671021 +0.357956 +0.950014 +0.256579 +0.825433 +0.590639 +0.898089 +0.461916 +0.812190 +0.876049 +0.534508 +0.463437 +0.972169 +0.966031 +0.881475 +0.860289 +0.954400 +0.954348 +0.735983 +0.967328 +0.730417 +0.347489 +0.166554 +0.805004 +0.635206 +0.848858 +0.263913 +0.321957 +0.854378 +0.875243 +0.840737 +0.614823 +0.116989 +0.938477 +0.635592 +0.222180 +0.369321 +0.242285 +0.252060 +0.611256 +0.522186 +0.819678 +0.687179 +0.627801 +0.582075 +0.348498 +0.303715 +0.219052 +0.116688 +0.227738 +0.883954 +0.027611 +0.273705 +0.687201 +-13.738295 +0.558770 +0.718085 +0.094579 +0.557541 +0.778913 +0.778913 +0.789977 +0.866845 +0.247996 +0.524689 +0.414623 +0.257083 +0.824024 +0.031775 +0.298284 +0.811404 +0.669242 +0.349492 +0.288390 +0.689123 +-1.886278 +0.776356 +0.503712 +0.054349 +0.289960 +0.944956 +0.283920 +0.172234 +0.396898 +0.211551 +0.955268 +0.372730 +0.518248 +0.273610 +0.501400 +0.787939 +0.852850 +0.960278 +0.775867 +0.817966 +-130.624273 +0.979454 +0.720545 +0.634913 +-4.153600 +0.093101 +0.988244 +0.635710 +0.563037 +0.461122 +0.552720 +0.373595 +-0.018260 +0.329249 +0.933650 +0.232588 +0.063316 +-1.217410 +0.379113 +0.236896 +0.955083 +0.157312 +0.443929 +0.157184 +0.097597 +0.317489 +0.890246 +0.404009 +0.901483 +0.367449 +0.301948 +0.940407 +0.917058 +0.667659 +0.155329 +0.759164 +0.671956 +0.817588 +0.344474 +0.382400 +0.971005 +0.586293 +0.594639 +0.924416 +0.114380 +0.606380 +0.527460 +0.441811 +0.964426 +0.976264 +0.650332 +0.647926 +0.832649 +0.494066 +0.306313 +0.458054 +0.945106 +0.509764 +0.510813 +0.710181 +0.752452 +0.908659 +0.454946 +0.365780 +0.324872 +0.237600 +0.253790 +-0.053771 +0.614911 +0.691067 +-0.166480 +0.233752 +0.624770 +0.448977 +0.233752 +0.727158 +0.221176 +0.254348 +0.233122 +0.301795 +0.547153 +0.088541 +0.614952 +0.204141 +0.567845 +0.488255 +0.558112 +0.453302 +0.645740 +0.110410 +0.654281 +0.158463 +0.614530 +0.683402 +0.444781 +0.041462 +0.411132 +0.161330 +0.772555 +0.730604 +0.069609 +-0.054648 +0.397468 +0.632233 +0.960686 +0.807978 +0.250953 +-0.717710 +0.225524 +0.479287 +0.457328 +0.228782 +0.137262 +0.954971 +0.681984 +-0.236233 +0.326090 +0.056390 +0.939418 +0.872376 +0.946732 +0.191124 +0.335356 +0.303355 +0.635857 +0.434391 +0.422130 +0.524421 +0.189831 +0.382828 +0.939161 +0.980414 +0.945940 +0.893059 +0.238477 +0.279490 +0.349050 +0.976630 +0.668678 +0.081592 +0.669822 +0.042649 +0.740437 +0.807049 +0.748045 +0.694874 +0.946531 +0.729649 +0.780837 +0.653777 +0.926658 +0.658831 +0.857636 +0.651718 +0.867983 +0.627121 +0.949582 +0.936006 +0.827233 +0.761196 +0.894271 +0.944253 +0.527897 +0.354387 +0.758158 +0.968338 +0.923846 +0.774763 +0.873923 +0.808802 +0.861171 +0.604070 +0.405294 +0.676888 +0.447378 +0.938849 +0.544951 +0.839397 +0.782755 +0.754186 +0.960119 +0.790651 +0.971266 +0.983983 +0.938938 +0.948022 +0.517646 +0.895757 +0.916244 +0.790040 +0.932618 +0.964236 +0.921084 +0.984631 +0.724122 +0.907627 +0.982491 +0.732236 +0.622299 +0.803624 +0.962261 +0.556003 +0.540674 +0.597142 +0.314692 +0.973809 +0.453576 +0.086084 +0.733896 +0.720778 +0.149089 +0.947601 +0.838135 +-0.042065 +0.856580 +0.267854 +0.362911 +0.897752 +-0.051677 +0.200837 +0.154657 +0.077262 +0.244192 +0.892607 +0.892779 +0.398971 +0.245447 +0.735536 +0.534149 +0.877663 +0.740051 +0.735948 +0.316238 +0.625892 +0.932814 +0.775134 +0.625399 +-0.276361 +0.009549 +0.913052 +0.771391 +0.796308 +0.985084 +0.559532 +0.945541 +0.260362 +-0.390030 +0.809293 +0.169574 +0.459391 +0.858739 +0.743041 +0.919708 +0.797652 +0.892901 +0.260412 +0.793903 +0.620105 +0.754582 +0.308068 +-0.343673 +0.801551 +0.955341 +0.826352 +0.769529 +0.861743 +0.359071 +0.910685 +0.430831 +0.461368 +0.666807 +0.298581 +0.229976 +0.413169 +0.976733 +0.917899 +0.935143 +0.724997 +0.993169 +0.395043 +0.756707 +0.974944 +0.961817 +0.277517 +0.906758 +0.694143 +0.822659 +0.297857 +0.713063 +0.691923 +0.823977 +0.595263 +-0.016566 +0.388463 +0.938946 +0.945655 +0.931650 +0.888832 +0.632707 +0.371034 +0.306798 +0.359070 +0.564694 +0.214885 +0.955325 +0.957463 +0.526531 +0.742136 +0.957710 +0.874615 +0.572028 +0.242697 +-0.121320 +0.353878 +0.409716 +0.415799 +0.552626 +0.880028 +0.259057 +0.553634 +0.553501 +0.824446 +0.685636 +0.747190 +0.576497 +0.960402 +0.839453 +0.254131 +0.809346 +0.894626 +0.815273 +0.949713 +0.801170 +0.299872 +0.884971 +0.835919 +0.864153 +0.924335 +0.595355 +0.884047 +0.664730 +0.671698 +0.513611 +0.943537 +0.874110 +0.828309 +0.965135 +0.854628 +0.853050 +0.458454 +0.740753 +0.784644 +0.649916 +0.837069 +0.846758 +0.980930 +0.821931 +0.971166 +0.836626 +0.389074 +0.505679 +0.671552 +0.104895 +0.614171 +0.712742 +-0.059054 +0.905283 +0.386031 +0.187440 +0.168451 +0.984870 +0.938003 +0.734869 +-0.064396 +0.973407 +0.957667 +0.842797 +0.929769 +0.942914 +0.337789 +0.860001 +0.924577 +0.408347 +0.408347 +0.895161 +0.798398 +0.952551 +0.928831 +0.309015 +0.549960 +0.384152 +0.880707 +0.658178 +0.793805 +0.468057 +0.798488 +0.510419 +0.647966 +0.809015 +0.568325 +0.940080 +0.860677 +0.143581 +0.918729 +0.920527 +0.860107 +0.853621 +0.846596 +-0.104607 +0.850832 +0.730913 +0.800809 +0.830705 +0.935130 +0.557539 +0.468647 +0.702119 +0.542750 +0.905920 +-1.137378 +0.188108 +0.588920 +-0.006217 +0.895803 +0.000403 +0.012187 +0.589012 +0.460803 +0.327407 +0.216578 +0.828130 +0.028320 +0.273473 +0.430934 +0.346896 +0.483114 +0.647551 +0.520379 +0.841488 +0.343756 +0.714592 +0.419223 +0.647551 +0.986395 +0.545761 +0.777156 +0.798688 +0.593141 +0.593664 +0.627155 +0.721085 +0.796075 +0.244151 +0.754437 +0.277595 +0.006785 +0.896783 +0.888420 +0.141407 +0.529510 +0.329458 +0.052341 +0.625785 +0.093903 +0.186693 +0.237507 +0.991305 +0.997962 +0.509736 +-0.238547 +0.617899 +-107.798393 +-0.000173 +0.518686 +0.160257 +0.858407 +0.835055 +0.785790 +0.961924 +0.791897 +0.014665 +0.742121 +0.559204 +0.532987 +0.938732 +0.814907 +0.715791 +0.797761 +-0.272091 +0.971459 +0.467187 +0.741838 +0.637248 +0.469474 +0.715390 +0.843132 +0.178859 +0.780486 +0.397270 +0.726287 +0.953182 +0.632517 +0.922259 +0.636758 +0.973625 +0.920273 +-0.277588 +0.734156 +0.475732 +0.945864 +-0.292680 +0.402085 +0.707607 +0.910483 +-1.473642 +0.718924 +0.948382 +0.682017 +0.920756 +0.211160 +0.939677 +0.687647 +0.643879 +0.584879 +0.728051 +0.707027 +0.769915 +0.769100 +0.782810 +0.391332 +0.403976 +0.704418 +0.564014 +0.756620 +0.875597 +0.542862 +0.692922 +0.676198 +0.745742 +0.822782 +0.657102 +0.766307 +0.774312 +0.837360 +0.791517 +0.893287 +0.185894 +0.564593 +0.869422 +0.873237 +0.336736 +0.785454 +0.659836 +0.448044 +0.688693 +0.498469 +0.664610 +0.532324 +0.201497 +0.801724 +0.614633 +0.646733 +0.450325 +0.388334 +0.726925 +0.863665 +0.032090 +0.823580 +0.159718 +-1.416255 +0.352000 +0.461783 +0.835897 +0.801222 +0.713033 +0.914448 +0.704117 +0.862696 +0.854080 +0.844077 +0.404751 +0.455149 +0.483099 +0.585870 +0.408073 +0.724747 +0.929594 +0.820967 +-0.323849 +0.533843 +0.094723 +0.311180 +0.601974 +0.226679 +0.957337 +0.373163 +0.048573 +0.091341 +0.855414 +0.309691 +0.208958 +0.275273 +0.314942 +0.640522 +0.996289 +0.269164 +0.497376 +0.312925 +0.003405 +0.597432 +-7073.389515 +0.251476 +0.492249 +0.644551 +0.040999 +0.111380 +0.625731 +0.052100 +-0.541153 +0.727735 +-2.907443 +-1.890673 +0.054132 +0.508512 +0.603912 +0.641929 +0.719762 +0.855287 +0.192400 +0.227140 +0.364027 +0.154227 +0.284707 +0.458108 +0.816137 +0.852039 +0.912020 +0.544605 +0.430026 +-0.000100 +0.948872 +0.925111 +0.892975 +0.806457 +0.876352 +0.907657 +0.840479 +0.860518 +0.833420 +-0.378913 +0.988077 +0.875497 +0.940167 +0.937238 +0.485505 +0.294650 +0.253221 +0.991233 +-0.306693 +0.922449 +0.842274 +0.964672 +0.536927 +0.378060 +0.378054 +0.665942 +0.251273 +0.475109 +0.850221 +0.392267 +0.506914 +0.594089 +-0.086855 +0.875947 +0.636209 +0.739581 +0.648383 +0.766701 +0.797259 +0.154754 +0.479575 +0.830718 +0.345382 +0.571801 +0.505352 +0.759788 +0.925963 +0.926690 +0.362635 +0.432106 +0.379749 +0.481647 +0.406307 +0.408268 +0.699035 +0.854655 +0.670620 +0.460029 +0.881880 +0.878258 +0.108856 +0.929048 +0.932509 +0.634887 +0.892429 +0.861318 +0.828071 +0.514093 +0.749300 +0.277725 +-1.237738 +0.928610 +0.545263 +0.417635 +0.344840 +0.286621 +0.885955 +0.177220 +0.449743 +0.967992 +0.790256 +0.927567 +0.917972 +0.785404 +0.869648 +0.913948 +0.789585 +0.907065 +0.483581 +0.555406 +0.355089 +0.478467 +0.704958 +0.630098 +-0.431617 +0.378355 +0.462756 +0.637592 +0.622750 +0.722617 +-0.255665 +0.939231 +0.773337 +-0.484188 +0.580176 +0.457532 +0.065706 +0.339469 +0.082018 +-0.327570 +0.122280 +0.030678 +0.601382 +0.030744 +0.877141 +0.626233 +0.571856 +0.639180 +0.945898 +-2.337897 +0.797230 +0.826963 +0.682034 +0.230648 +0.674475 +0.701063 +0.609259 +0.565585 +0.255029 +0.285850 +0.373671 +0.375561 +0.729403 +0.919848 +0.602746 +0.741007 +0.385249 +0.475122 +0.982629 +0.419689 +0.460911 +0.532916 +0.552280 +0.421410 +0.027406 +0.773797 +0.684896 +0.397530 +0.922342 +0.516836 +0.790343 +0.517691 +0.463318 +0.176077 +0.780054 +0.749348 +0.723529 +0.929081 +0.924973 +0.927533 +0.851631 +0.148013 +0.932441 +0.653615 +-0.125431 +0.499109 +0.656417 +0.910559 +0.966630 +0.959222 +0.976672 +0.067742 +0.532425 +0.506257 +0.795399 +0.575144 +0.677424 +0.594395 +0.752423 +0.569625 +0.247451 +0.415186 +0.367441 +0.107840 +0.963747 +0.661571 +0.548367 +0.321780 +0.418546 +0.443097 +0.756187 +0.628839 +0.765098 +0.533880 +0.976238 +0.887492 +0.823195 +0.947583 +0.798141 +0.540325 +0.618211 +0.924366 +0.980945 +0.850244 +0.892041 +0.453102 +0.511679 +0.359683 +0.964750 +0.494630 +0.244640 +0.408345 +0.036466 +0.991723 +0.139286 +0.671274 +0.629400 +-25.655571 +0.341655 +0.591072 +0.338288 +0.430480 +-0.060107 +0.435024 +0.982027 +0.280240 +0.939357 +0.670478 +0.688505 +-0.107081 +0.740490 +0.283120 +0.127782 +0.226029 +0.724062 +0.098903 +0.297256 +0.177441 +0.640760 +-0.443800 +-0.533402 +0.880593 +0.743774 +0.654585 +0.384664 +-0.190053 +0.893768 +0.635369 +0.833487 +0.867679 +0.109941 +0.846996 +0.995865 +0.841675 +0.530691 +0.520138 +0.333317 +0.490878 +0.755450 +0.741852 +0.835789 +0.485489 +0.892302 +0.739406 +0.355205 +0.934442 +0.668111 +0.381485 +0.724311 +0.209931 +0.165336 +0.937149 +0.783084 +0.768144 +0.548716 +0.623619 +0.908313 +0.736219 +0.954419 +0.369796 +0.929295 +0.928276 +0.819219 +0.989014 +0.975780 +0.787607 +0.889566 +0.949175 +0.445127 +0.647999 +0.862458 +0.909845 +0.426239 +0.800628 +0.936682 +0.972756 +0.468142 +0.169774 +0.931669 +0.848995 +0.938533 +0.694695 +0.889296 +0.557668 +0.722324 +0.954986 +0.423626 +0.605283 +0.777988 +0.596070 +0.991372 +0.904619 +0.485964 +0.947941 +0.749116 +0.907784 +0.869351 +0.577219 +0.900900 +0.833241 +0.847560 +0.939415 +0.262371 +0.912701 +0.898637 +0.317855 +0.753819 +0.798890 +0.370054 +0.838875 +0.773081 +0.947278 +-0.104080 +0.621343 +0.984926 +0.870669 +0.693869 +0.919743 +0.895143 +0.225939 +0.444921 +0.767596 +0.183556 +0.844086 +0.825796 +0.337799 +0.111921 +-0.477388 +0.522704 +0.675030 +0.380483 +0.083281 +0.000369 +0.066543 +0.710653 +0.874625 +0.842066 +0.206199 +0.235652 +0.311293 +0.251468 +-0.269077 +0.634457 +0.180830 +0.302270 +-0.167625 +0.021559 +0.062717 +0.226210 +0.940358 +0.220967 +0.663984 +0.375242 +0.180691 +0.049980 +0.326884 +0.206553 +0.319705 +0.303315 +0.543562 +0.281685 +0.264024 +0.028722 +0.734303 +0.819049 +0.763815 +0.635338 +0.838544 +0.875079 +0.625829 +0.347019 +0.266935 +0.932449 +0.921981 +0.381991 +0.566853 +0.491080 +0.409930 +0.592231 +0.868534 +0.470289 +0.545974 +0.509125 +0.508442 +0.378631 +0.583869 +0.661052 +-0.062478 +0.461939 +0.815044 +0.492264 +0.381592 +0.733398 +0.396240 +0.279929 +-0.621820 +0.379389 +0.852429 +0.813553 +0.862603 +0.987113 +0.880042 +0.824938 +0.916914 +0.915837 +0.911271 +0.787571 +0.281718 +0.850602 +0.686259 +0.318365 +0.515454 +0.838342 +-0.216098 +0.363787 +0.951318 +0.852730 +0.409070 +0.914447 +-0.225570 +0.730917 +0.893025 +0.817149 +0.863529 +0.383154 +0.752862 +0.860011 +0.833551 +0.513473 +0.367461 +0.029002 +0.872543 +0.192402 +0.585713 +0.667108 +0.271926 +0.858432 +0.273928 +0.864141 +0.799129 +0.901864 +0.845441 +0.808732 +0.986742 +0.951535 +0.793578 +0.611923 +0.731077 +0.541243 +0.624839 +0.929553 +0.808681 +0.673462 +0.562906 +0.994659 +0.980394 +0.745560 +0.699536 +0.319092 +0.883491 +0.987781 +0.364992 +0.446661 +0.627094 +0.919824 +0.307386 +0.454806 +0.578776 +0.073647 +0.486663 +0.599161 +0.603930 +0.835489 +0.974927 +0.610896 +0.787150 +0.481457 +0.914464 +0.686568 +0.968439 +0.918626 +0.926297 +0.408347 +0.597499 +0.251655 +0.105124 +0.998130 +0.929764 +0.711354 +0.918083 +0.990510 +0.361794 +0.758967 +0.832711 +0.931205 +0.968585 +0.982049 +0.791921 +0.925930 +0.322562 +0.626125 +0.415743 +0.688296 +0.616035 +0.997977 +0.482691 +0.250176 +0.492715 +0.205729 +0.026065 +0.653740 +-1.369359 +0.548564 +0.439798 +0.402575 +0.355964 +0.231755 +0.513417 +-0.048922 +0.569802 +0.354285 +0.652876 +0.984340 +0.593708 +0.477398 +0.509461 +0.198110 +0.207900 +-6572.397020 +0.203823 +-0.094902 +0.662740 +-0.227834 +0.211800 +0.927254 +0.857423 +0.776313 +0.403802 +0.829439 +0.546275 +0.913557 +0.772273 +0.548645 +0.928526 +0.946342 +-0.115357 +0.557364 +0.868936 +0.526268 +0.846217 +0.679391 +0.643233 +-0.303883 +0.165411 +0.883744 +0.760501 +0.738614 +0.708834 +0.868981 +0.769552 +0.152005 +0.976487 +0.899644 +0.874495 +0.010891 +0.256777 +0.736507 +0.887204 +0.816823 +0.588595 +0.518472 +0.926997 +0.054798 +0.466999 +0.108170 +0.713717 +0.078999 +0.569281 +0.715079 +0.918333 +0.726729 +0.693626 +0.932038 +0.654458 +0.703256 +0.769329 +0.837033 +0.523348 +0.631408 +0.626104 +0.534834 +0.551798 +0.293630 +0.706094 +0.018880 +0.933616 +0.161318 +0.187230 +0.751648 +0.998415 +0.575951 +-0.037962 +0.175369 +0.879497 +0.562269 +-0.059301 +0.687265 +0.343291 +0.736364 +-0.083317 +0.524234 +-0.747502 +0.978004 +0.034791 +0.131815 +0.190147 +0.058946 +0.155409 +0.926730 +0.803397 +0.948752 +0.162044 +0.031103 +0.225499 +-1.294083 +0.242236 +0.987729 +0.551052 +0.391871 +0.632737 +0.207300 +0.858707 +0.949573 +0.777178 +0.269316 +0.738567 +0.346650 +0.944043 +0.929402 +0.152158 +0.171864 +0.805131 +0.645788 +-6.954822 +-52.330414 +0.606647 +0.735473 +0.310832 +0.066804 +0.569545 +-0.295142 +0.543709 +0.790525 +-709.512007 +0.680867 +0.860562 +0.993260 +0.760572 +0.794173 +0.937922 +0.934856 +0.797463 +0.765748 +0.822289 +0.653828 +0.615713 +0.881570 +0.198453 +0.126970 +0.118596 +0.957657 +-0.022792 +-0.003644 +0.148508 +0.148821 +-3.066586 +0.990900 +0.898680 +0.674619 +0.557151 +0.670814 +0.812148 +0.802272 +0.983320 +0.259702 +0.916958 +0.055781 +0.783018 +0.382246 +-0.090756 +0.309237 +0.974776 +0.090201 +0.619886 +0.909437 +0.948456 +0.331031 +-0.007675 +0.020941 +0.163967 +0.125769 +0.695885 +0.545190 +0.191584 +0.365466 +0.654470 +0.985886 +0.051628 +0.067503 +0.534417 +0.930427 +0.634172 +-0.046368 +0.952596 +0.534449 +0.319479 +0.481223 +0.584581 +0.657977 +0.814074 +0.880308 +0.845807 +0.478848 +-0.516598 +0.486912 +-0.492317 +0.424962 +0.557608 +0.808981 +0.883020 +0.726730 +0.723473 +0.757363 +0.880707 +0.813848 +0.878736 +0.293384 +0.932231 +0.416730 +0.210070 +0.870798 +0.995167 +0.556013 +0.771134 +0.460482 +0.840998 +0.791565 +0.862833 +0.454277 +0.714800 +-0.355188 +0.147901 +0.345091 +-0.209640 +-0.190510 +0.836450 +0.487378 +0.402898 +0.801985 +-0.157640 +0.836127 +0.461512 +0.085971 +0.436201 +0.717971 +0.923737 +0.986876 +0.996607 +0.778143 +0.482813 +0.880602 +0.800090 +0.807714 +0.691008 +0.241317 +0.913083 +-0.256613 +0.596552 +0.581356 +0.616378 +0.689245 +0.998301 +0.862771 +0.939378 +0.625517 +0.585631 +0.589986 +0.932446 +0.934878 +0.880503 +0.602157 +0.589019 +0.859052 +0.405903 +0.712568 +0.754736 +0.125162 +0.756200 +0.960521 +0.344348 +0.528959 +0.785890 +0.911434 +0.611536 +0.614930 +0.664261 +0.388790 +0.375280 +0.625330 +0.716412 +0.751489 +0.541447 +0.783459 +0.840080 +0.895056 +0.851536 +0.774852 +0.895494 +0.672164 +0.706601 +0.646109 +0.798277 +0.733387 +0.586564 +0.924861 +0.917739 +0.902197 +-0.002100 +0.882827 +0.021375 +0.346123 +0.933031 +0.904984 +0.270489 +0.030113 +0.244754 +0.974595 +0.995889 +0.528960 +0.665492 +0.632401 +0.906758 +0.728720 +0.662099 +0.980635 +0.443500 +0.818694 +0.961462 +0.728489 +0.942392 +0.930321 +0.984189 +0.946221 +0.847023 +0.920275 +0.969147 +0.986059 +0.924391 +0.931726 +0.829113 +0.772275 +0.946971 +0.666938 +0.811271 +0.670781 +0.979598 +0.433996 +0.941715 +0.670133 +0.871179 +0.985360 +0.950420 +0.583198 +0.957450 +0.652012 +0.822520 +0.852065 +0.880973 +0.670756 +0.512840 +0.463477 +-0.089452 +0.419490 +0.937498 +0.648723 +0.936416 +0.401069 +0.378543 +0.718874 +0.579342 +0.854564 +0.845730 +0.847749 +0.680977 +0.933745 +0.794128 +0.948169 +0.879712 +0.947095 +0.798525 +0.157835 +0.907805 +0.948706 +0.835129 +0.513359 +0.840862 +0.946309 +0.453124 +0.165835 +0.917959 +0.316547 +0.925670 +0.596697 +0.540619 +0.915740 +0.969406 +0.892938 +0.932602 +0.853860 +0.103027 +0.909549 +0.908624 +0.851377 +0.961800 +0.803416 +0.430252 +0.380421 +0.697998 +0.571829 +0.819153 +-0.076200 +0.980459 +0.833678 +0.878104 +0.813811 +0.842889 +0.790549 +0.456399 +0.886509 +0.796572 +0.327148 +0.824907 +0.525745 +0.252746 +0.868742 +0.544211 +0.252656 +0.725053 +0.921287 +0.832013 +0.654944 +0.710735 +0.486455 +0.512382 +0.512198 +0.332426 +0.297555 +0.661438 +0.748295 +0.656651 +0.729631 +0.668556 +0.438245 +0.617147 +0.886241 +0.936947 +0.715532 +0.882593 +0.472686 +0.155168 +0.808380 +0.963316 +0.093402 +0.109184 +0.719923 +0.406960 +0.952655 +0.463445 +0.966150 +0.967944 +0.564746 +0.520665 +0.842785 +0.339000 +0.498416 +0.630501 +0.640889 +0.911277 +0.828892 +0.274251 +0.787066 +0.876809 +-0.637746 +0.147506 +0.617117 +0.677594 +0.770243 +0.902150 +0.681940 +0.375464 +0.393661 +0.681015 +0.293042 +0.393503 +0.394034 +0.251654 +-0.779137 +0.004638 +0.027303 +0.202407 +0.383148 +0.075497 +0.622637 +0.916214 +0.773975 +0.452145 +0.860675 +0.589243 +0.866267 +0.594231 +0.384144 +0.928249 +0.210563 +0.833719 +0.378415 +0.427813 +0.422712 +0.818891 +0.947394 +0.551991 +0.488759 +0.036212 +0.412305 +0.448450 +0.219604 +0.536125 +0.553071 +0.843264 +0.084148 +0.494002 +0.755912 +0.849999 +-0.232339 +0.352635 +0.823839 +0.347129 +0.312276 +0.957551 +0.455790 +0.777686 +0.311081 +0.752197 +0.135054 +0.140176 +0.433418 +0.902347 +0.844342 +0.996053 +-0.488921 +0.263663 +0.600882 +0.610087 +0.250385 +0.938541 +-0.748856 +0.172847 +0.468480 +0.502890 +0.240382 +0.282009 +0.981910 +0.377669 +0.238944 +0.261398 +0.934287 +0.130388 +0.937341 +0.674206 +0.510978 +0.211732 +0.262381 +-0.409667 +0.865195 +0.699729 +0.515071 +0.734362 +0.039423 +0.734219 +0.795514 +0.531606 +0.637719 +0.296361 +0.781775 +0.849102 +0.615471 +-0.003015 +0.880790 +0.637825 +-0.258530 +0.723909 +0.504879 +0.965244 +0.821166 +0.436356 +-0.330625 +0.542577 +0.111391 +0.555524 +0.386327 +0.614802 +0.383392 +0.813011 +0.179759 +0.960052 +-0.202131 +0.685651 +0.507485 +0.367363 +0.584495 +0.479022 +0.683426 +0.405354 +0.881943 +0.290922 +0.753974 +0.980970 +0.279886 +0.062243 +0.008994 +0.192571 +0.862699 +0.092143 +0.163352 +0.162942 +0.081731 +0.849002 +0.982292 +0.123054 +0.049069 +0.897562 +0.089901 +0.559989 +0.746348 +0.851459 +0.424758 +-0.583676 +0.948422 +0.834037 +0.395710 +0.235310 +0.444319 +0.063599 +0.896997 +0.384703 +0.407819 +0.512595 +0.860883 +0.255229 +0.533070 +0.156282 +0.591053 +0.843340 +0.837568 +0.015906 +0.288724 +0.781794 +0.239759 +0.889180 +0.065800 +0.254856 +0.025496 +0.506752 +0.766904 +-0.319589 +0.773922 +0.852622 +0.874289 +0.950911 +0.824314 +0.813046 +0.716844 +0.361859 +0.849100 +0.978670 +0.871140 +0.942959 +0.956676 +0.978171 +0.440139 +0.822868 +0.810677 +0.630690 +0.935573 +0.697297 +-0.219257 +-0.162073 +0.940213 +0.722105 +0.449714 +-0.257937 +-0.696065 +0.926024 +0.935201 +0.894364 +0.926096 +0.680391 +0.870292 +0.708942 +0.911693 +0.725921 +0.577515 +0.840369 +0.699708 +0.936408 +0.718056 +0.267118 +0.914504 +0.923065 +0.932587 +0.426198 +0.475237 +0.598078 +0.877335 +0.827261 +0.917354 +0.881196 +0.944288 +0.520144 +0.931251 +0.864504 +0.699097 +0.749182 +0.799265 +0.859780 +0.695422 +0.696263 +0.910567 +0.943558 +0.753024 +0.980184 +0.822157 +0.493721 +0.878556 +0.854147 +0.932730 +0.849830 +0.876613 +-0.818050 +0.466449 +0.462444 +0.840447 +0.935275 +0.497538 +0.778468 +0.627963 +0.514257 +0.534746 +0.842959 +0.264822 +0.841658 +0.733574 +0.897436 +0.696363 +0.842842 +0.690588 +0.576098 +0.403680 +0.620618 +0.782879 +0.202041 +0.119009 +0.788313 +0.926593 +0.925798 +0.060704 +0.782645 +-0.365693 +0.463220 +0.714249 +0.528845 +0.489549 +0.651453 +0.863560 +-0.056226 +0.524536 +0.956066 +0.848173 +0.537495 +0.704717 +0.721523 +0.334792 +0.616838 +0.505367 +0.817189 +-0.002336 +0.931340 +-0.176006 +0.933979 +0.535308 +0.631000 +0.105742 +-0.099587 +0.436556 +0.039059 +0.800697 +0.829429 +0.614690 +0.872383 +0.638010 +0.564800 +0.634360 +0.459352 +0.441937 +0.839073 +0.141378 +0.880993 +0.309753 +0.184651 +0.371347 +0.162881 +0.215760 +0.020950 +0.044667 +0.168247 +0.914128 +0.708494 +0.132090 +0.732962 +0.687818 +0.830780 +0.624293 +0.818950 +0.960130 +0.687749 +0.911944 +0.239110 +0.902198 +0.254898 +-0.394994 +0.675890 +-0.365739 +0.985383 +0.404732 +0.143402 +0.778543 +0.130874 +0.933607 +0.126555 +0.893770 +0.715643 +0.976370 +0.885305 +0.827762 +0.813833 +0.533123 +0.691069 +0.480291 +0.781523 +0.567978 +-0.172559 +0.370142 +0.994972 +0.597971 +0.791381 +0.676822 +0.890629 +-0.041795 +0.270019 +0.362069 +0.629975 +-0.265375 +0.220102 +0.486757 +-0.351521 +0.190955 +0.079413 +0.680490 +0.745592 +0.789659 +0.896801 +0.651278 +0.074686 +0.707480 +0.666362 +0.936736 +0.651592 +0.423251 +0.262430 +0.406146 +0.137703 +0.852059 +0.826575 +0.716210 +0.848171 +0.362918 +0.241994 +-0.787398 +0.300224 +0.809051 +0.942086 +0.801316 +0.198346 +-0.095642 +0.866563 +0.097607 +0.012109 +0.864049 +0.334629 +0.624491 +0.400803 +0.911827 +0.186342 +0.776964 +0.791818 +0.380940 +0.895458 +0.943080 +0.907104 +0.957810 +0.974115 +0.962112 +0.924050 +0.831115 +0.967538 +0.964047 +0.884493 +-0.030628 +0.385781 +0.849003 +0.924330 +0.976880 +0.742626 +0.832781 +0.728372 +0.544387 +0.777830 +0.453782 +0.373054 +0.703768 +0.769896 +0.485441 +0.929547 +0.790444 +0.825702 +0.931268 +0.931666 +0.322378 +0.278440 +0.104467 +0.709753 +0.273685 +0.813846 +0.605612 +0.481627 +0.473852 +0.751848 +0.205169 +0.927901 +0.939179 +0.860781 +0.870078 +0.934096 +0.832497 +0.839403 +0.942719 +0.940589 +0.948318 +0.876640 +0.881926 +0.484235 +0.945366 +0.295848 +0.448552 +0.285496 +0.922648 +0.697858 +0.762404 +0.923492 +0.836717 +0.855171 +0.883287 +0.826193 +0.850876 +0.906724 +0.936968 +0.543950 +0.402337 +0.342131 +0.719264 +0.857640 +0.748218 +0.807040 +0.035132 +0.892952 +0.814265 +0.770977 +0.474566 +0.917886 +0.786046 +0.911620 +0.780676 +0.778907 +0.925583 +0.811573 +0.757856 +0.748694 +0.540820 +0.842775 +0.529750 +0.331694 +0.317317 +-0.508607 +0.303350 +0.777149 +0.253152 +0.231527 +0.861060 +0.861355 +0.364416 +0.429525 +0.837372 +0.918078 +0.823269 +0.750762 +0.581420 +0.364285 +-1.944062 +0.135335 +0.846794 +0.191955 +0.715078 +0.688827 +0.548672 +0.599592 +0.652583 +0.533964 +0.782202 +0.492481 +0.571269 +0.297699 +-0.102555 +0.509215 +0.661711 +0.059938 +0.453175 +0.713677 +0.732146 +0.799071 +0.659146 +0.487645 +0.771460 +0.348906 +0.932545 +0.059751 +-0.258868 +-0.023762 +0.165871 +0.767465 +0.104726 +0.812965 +0.173382 +0.307017 +0.169541 +0.413894 +0.031169 +0.295202 +0.302389 +0.120353 +0.109292 +0.237868 +0.514045 +0.399538 +0.330351 +-0.167016 +0.405259 +0.304406 +0.295895 +0.768225 +0.014351 +0.091240 +0.999025 +0.547512 +0.496010 +0.666561 +0.186266 +0.464099 +-3.871688 +0.205673 +0.794929 +0.482360 +0.011908 +-0.005375 +0.552067 +0.135336 +0.273476 +-0.017235 +0.257893 +0.806406 +0.829754 +0.477414 +0.652638 +0.959843 +0.719251 +0.344419 +0.934757 +-0.160725 +0.642846 +0.455551 +0.740155 +0.847679 +0.896933 +0.519652 +0.642309 +0.184922 +0.644258 +0.632536 +0.860379 +0.695665 +0.713272 +0.692410 +-0.065881 +0.134752 +0.417975 +0.493272 +0.507306 +-0.042325 +0.644350 +0.930337 +0.933944 +0.900546 +0.784558 +0.935395 +-0.101696 +0.853337 +0.827018 +0.931852 +0.896455 +0.602521 +-0.122547 +0.302303 +0.143920 +0.892620 +-0.553190 +0.477519 +0.693099 +0.719271 +0.573777 +0.886416 +0.288219 +0.901139 +0.534065 +0.572128 +0.601821 +0.760547 +0.591297 +0.685210 +0.626401 +0.528017 +0.220674 +0.681343 +0.546406 +0.817353 +0.616420 +0.589487 +0.515325 +0.934478 +0.736955 +0.733889 +0.678955 +0.583079 +0.864433 +0.794516 +0.997544 +0.998321 +0.837344 +0.732303 +0.709227 +0.411789 +0.668339 +0.950156 +0.612922 +0.944591 +0.499468 +0.943190 +0.006030 +0.857013 +0.832554 +0.682473 +0.261725 +-0.051044 +0.979707 +0.026220 +0.942310 +0.590635 +0.303918 +0.555175 +0.843905 +0.926348 +0.823807 +0.802581 +0.825743 +0.683872 +-0.706927 +0.832478 +0.809365 +0.254454 +-4146.959753 +-8.939887 +0.014155 +0.464082 +0.863529 +0.885910 +0.937575 +0.894435 +0.443666 +0.970166 +0.367523 +0.337130 +0.555404 +0.881364 +0.845343 +0.934302 +0.853258 +0.519328 +0.466046 +0.884210 +0.524008 +0.936143 +0.280257 +0.442492 +0.541771 +0.602827 +0.292506 +0.021504 +0.941825 +0.964086 +0.063389 +0.139081 +0.098590 +0.977557 +0.624210 +0.255211 +0.660348 +0.875479 +0.192536 +0.398056 +0.392631 +0.314978 +-0.179950 +-0.336099 +0.349775 +-0.222076 +0.930370 +0.510521 +-1.992166 +0.756520 +0.166011 +0.696881 +0.554898 +0.762152 +-0.085959 +0.460444 +-0.120202 +0.746913 +0.321056 +0.874973 +0.557436 +0.609070 +0.732416 +0.819135 +0.933591 +0.927101 +0.983984 +0.973229 +-0.045321 +0.839488 +0.832598 +0.528402 +0.972087 +0.186262 +-0.725588 +-0.333873 +0.971578 +0.944336 +0.829252 +0.767353 +0.436644 +0.526828 +0.986474 +0.520807 +-0.231766 +0.864567 +-0.039059 +0.937108 +0.756005 +0.885153 +0.367159 +0.143993 +0.931172 +0.948285 +0.936035 +0.577897 +0.865944 +0.893960 +0.799749 +0.282708 +0.935339 +0.471744 +-0.493197 +0.514964 +0.788249 +0.713651 +0.606939 +0.818331 +0.935203 +0.539733 +0.769447 +0.921492 +0.769246 +0.617182 +0.967443 +0.556149 +0.592198 +0.766139 +0.969504 +0.995487 +0.007139 +0.946377 +0.690067 +0.937347 +0.341370 +0.287699 +0.865563 +0.909225 +0.810145 +0.914642 +0.542842 +0.873667 +0.686536 +0.687033 +0.600847 +0.978280 +0.942846 +0.449140 +0.948719 +-5.089837 +0.603188 +0.911570 +0.091786 +0.984909 +0.638534 +0.570920 +0.778243 +0.428465 +0.648183 +0.891252 +0.756396 +0.753309 +0.321984 +0.518257 +0.781061 +0.742102 +0.959637 +-0.102988 +0.840112 +0.779439 +0.958436 +0.361548 +0.328623 +0.743967 +0.680762 +0.808283 +0.930366 +0.916869 +0.908514 +0.569718 +0.498861 +0.743010 +0.803599 +0.532331 +0.448898 +0.365908 +0.660935 +0.688500 +0.030765 +0.747871 +0.718744 +0.646464 +0.637382 +0.618479 +0.644038 +-0.057869 +0.699031 +0.873909 +0.060165 +0.681150 +0.927363 +0.699766 +0.710586 +0.665329 +0.339466 +0.756535 +0.783212 +0.873170 +0.932781 +0.775410 +0.293715 +0.545299 +0.403819 +0.451930 +0.850395 +0.842997 +0.448265 +0.702402 +0.975942 +0.540869 +0.716226 +0.581617 +0.380531 +0.835575 +0.817142 +0.406592 +0.494302 +0.198389 +0.490914 +0.478776 +0.268470 +0.795926 +0.945615 +-0.067190 +0.318140 +0.538705 +0.286121 +0.846101 +0.792309 +0.782609 +0.859938 +0.533793 +0.652658 +0.916926 +0.724109 +0.806019 +0.837367 +0.934725 +0.845982 +0.397228 +0.780268 +0.809706 +0.704542 +0.933423 +0.881541 +0.794407 +0.858786 +0.798943 +-1.225219 +0.873425 +0.509190 +0.761701 +0.630814 +0.381714 +0.929592 +0.826507 +0.476435 +0.575296 +0.795940 +0.518203 +-0.042369 +0.745291 +-0.863904 +0.888912 +0.061620 +0.889004 +0.933173 +-0.104241 +0.400740 +0.542011 +0.474380 +0.828844 +0.655312 +0.431427 +-0.223538 +-0.183862 +0.786289 +0.345081 +0.560982 +0.619082 +0.414718 +0.850128 +0.496977 +0.903829 +0.603841 +0.881458 +0.434087 +0.716410 +0.200728 +0.767261 +0.637235 +0.421314 +0.556593 +0.465074 +0.300247 +0.691477 +0.703802 +0.679039 +-0.010718 +0.071406 +0.838510 +0.880624 +0.776024 +0.328699 +0.644010 +0.911391 +0.801868 +0.291580 +0.560385 +0.720077 +0.827519 +0.759291 +0.700552 +0.841515 +0.424072 +0.874472 +0.856023 +0.878476 +-0.107416 +0.057153 +0.582728 +0.712247 +0.874290 +0.747743 +0.879179 +0.926563 +-0.085028 +0.713956 +0.774796 +0.532399 +-0.613911 +0.844723 +0.854807 +0.845162 +0.012511 +0.540966 +0.910288 +0.753438 +0.611200 +0.564778 +0.380186 +0.334661 +0.804528 +0.932733 +0.931228 +0.289759 +0.959758 +0.724403 +0.759268 +0.693702 +0.755669 +0.318272 +0.672927 +0.348788 +-0.581036 +0.119342 +0.319753 +0.443095 +0.264030 +0.443460 +0.255886 +0.490850 +0.518657 +0.446444 +0.388911 +0.884695 +0.600266 +0.777713 +0.610579 +0.928231 +0.921812 +0.857823 +0.372344 +0.539638 +0.355533 +-7.148619 +0.904511 +0.644769 +0.505999 +0.829162 +0.542519 +-1.596414 +0.561181 +0.089904 +0.839955 +-0.144712 +-2.692044 +0.649294 +0.436397 +0.708588 +0.639540 +0.803466 +0.230805 +-0.080844 +0.176821 +0.701592 +0.168934 +0.351049 +0.386985 +0.483626 +0.735778 +0.216064 +0.704871 +0.299651 +0.975497 +0.286826 +0.485342 +0.467860 +0.317886 +0.754148 +0.004564 +0.085812 +0.822558 +0.718690 +0.844545 +-0.083833 +0.406488 +0.537589 +0.147537 +0.220891 +0.764270 +0.778149 +0.300492 +-0.030351 +0.023911 +0.948063 +0.213352 +0.465449 +0.179241 +0.985732 +0.459759 +0.007153 +0.554346 +0.996309 +0.994398 +0.037582 +0.041453 +0.934145 +0.839075 +0.326711 +0.921996 +0.771706 +0.600817 +0.181217 +0.820996 +0.871338 +0.880183 +0.647713 +0.653528 +0.091286 +-0.105513 +0.542494 +0.017992 +-0.298469 +0.033627 +0.009663 +-1.520141 +0.029318 +-0.288749 +0.795435 +0.631826 +0.329301 +0.637627 +0.000446 +-0.795111 +0.230211 +0.268989 +0.139380 +-0.098175 +0.192727 +0.333388 +0.175722 +0.094376 +-1.135959 +0.262068 +0.772331 +0.900508 +0.033149 +0.110301 +0.896808 +0.775682 +0.885512 +0.589620 +0.760796 +0.451045 +0.379129 +0.855093 +0.839622 +0.552618 +0.933148 +0.786782 +0.838771 +0.562059 +0.755014 +0.776501 +0.926602 +0.849384 +0.982227 +0.725618 +0.764226 +0.821470 +0.710052 +-0.261335 +0.835521 +0.486042 +0.591207 +0.895796 +0.594685 +0.931344 +0.746926 +0.684380 +0.145141 +0.515677 +0.621953 +0.722953 +0.754222 +-0.605101 +0.875251 +0.696453 +-0.257758 +0.545737 +-0.180208 +0.002466 +-0.197085 +-0.014179 +0.417491 +0.875666 +0.581378 +0.835586 +0.774961 +0.112145 +0.892840 +0.806414 +0.375291 +0.335314 +0.459817 +-1.363392 +0.909707 +0.943292 +0.373773 +0.536727 +0.467691 +-0.184960 +0.553289 +0.375231 +0.576629 +0.713659 +0.412053 +0.412053 +0.667800 +0.997551 +0.797307 +0.596250 +0.424552 +0.763307 +0.403086 +0.867503 +0.577381 +0.281614 +0.663283 +0.565480 +0.319754 +0.768790 +0.792748 +0.901041 +0.818439 +0.884258 +0.752182 +0.837136 +0.585494 +0.679165 +0.704892 +-0.124983 +0.887248 +0.435711 +0.831009 +0.863720 +0.734481 +0.920195 +0.477834 +0.387619 +0.980342 +0.423930 +0.348739 +-0.119218 +0.142026 +0.300155 +0.795798 +0.630685 +0.520491 +0.319087 +0.593951 +0.374783 +0.748268 +0.300608 +0.368741 +0.588737 +0.639435 +0.735262 +0.922755 +0.928932 +0.927287 +0.304165 +-0.005542 +0.433876 +0.067146 +0.457972 +0.675591 +-0.203964 +0.693217 +0.833386 +0.343210 +-0.213082 +0.851981 +0.931388 +0.725828 +0.768338 +-0.032271 +0.656864 +0.204323 +0.900320 +0.669522 +0.610777 +0.597587 +0.499433 +0.951488 +0.678928 +0.141889 +0.980931 +0.908125 +0.926351 +0.934744 +-0.399907 +0.993419 +0.839214 +0.662445 +0.994065 +0.469113 +0.209994 +0.383382 +0.744135 +0.729276 +0.001463 +0.527105 +0.830841 +0.805083 +0.991930 +0.657360 +0.028444 +0.737440 +0.814892 +0.899354 +0.858960 +0.958645 +0.782840 +0.891217 +0.844398 +0.820015 +0.931562 +0.827633 +-0.220949 +0.858857 +0.889152 +0.579489 +0.497152 +0.986355 +0.843810 +0.492072 +0.572616 +0.846559 +0.804244 +0.818383 +0.855463 +0.859177 +0.931056 +0.942753 +0.936498 +0.726958 +0.732275 +0.483304 +0.972327 +0.868650 +0.778749 +0.982946 +0.949044 +0.822303 +0.541185 +0.317120 +0.991098 +0.781207 +0.529187 +0.534846 +0.486818 +0.836640 +0.848179 +0.947704 +0.405004 +0.633412 +0.892526 +0.827915 +0.817237 +-0.289841 +0.361934 +0.925444 +0.792377 +0.778833 +0.778833 +0.680927 +0.103803 +0.890903 +0.783402 +0.690646 +0.162708 +0.186212 +0.823459 +0.769844 +0.327321 +0.929820 +0.546722 +0.620733 +0.333428 +0.867227 +0.932143 +0.048864 +0.985086 +0.669971 +0.846851 +0.466051 +0.471100 +0.348788 +0.490132 +0.599333 +0.401530 +0.682004 +0.537750 +0.180159 +0.149500 +0.533270 +0.186308 +0.531388 +0.186084 +0.632951 +0.556648 +0.516241 +0.151272 +0.185822 +0.853816 +0.733137 +0.374241 +0.928437 +-0.430356 +0.891126 +0.185551 +0.935286 +0.634558 +0.822837 +0.573554 +0.264183 +0.945112 +0.851492 +0.821667 +0.829201 +0.917166 +0.347215 +0.249709 +0.167193 +0.191413 +0.322960 +0.461652 +0.285591 +0.426377 +0.511927 +0.457867 +0.446440 +-0.154924 +0.750203 +0.562342 +0.703177 +0.872963 +-0.165317 +0.551583 +0.413651 +-0.158086 +0.634606 +0.647275 +0.608189 +0.363902 +0.375268 +-0.229728 +0.699890 +-0.107024 +0.790471 +0.914870 +0.701840 +0.928498 +0.849979 +0.385545 +0.517229 +0.975520 +0.603159 +0.873470 +0.580794 +0.311207 +-1.748960 +0.211203 +0.219765 +0.872115 +-1.832178 +0.669554 +0.380358 +0.728294 +0.440253 +0.920189 +0.942610 +0.864465 +0.875330 +0.679796 +0.280243 +0.454303 +0.379513 +0.743616 +0.559323 +0.408895 +0.556564 +0.544365 +0.144367 +0.794511 +-0.185543 +0.217343 +0.736905 +0.338089 +0.441302 +0.801022 +0.649448 +0.643918 +0.291765 +0.728579 +0.821011 +0.868043 +0.245377 +-1.037417 +0.345340 +0.747549 +0.818663 +0.960101 +0.920690 +0.829093 +0.883310 +0.123949 +0.622793 +0.839906 +0.379787 +0.395618 +0.988069 +0.852018 +0.917262 +0.887476 +0.618745 +0.537775 +0.828261 +-0.066824 +0.641473 +0.147216 +0.953359 +0.954676 +0.390272 +0.965277 +0.813452 +0.890042 +0.439614 +0.592991 +0.873158 +0.961048 +0.691427 +0.876719 +0.240241 +0.899940 +0.860070 +0.678353 +0.628241 +0.226977 +0.378015 +0.730456 +0.990582 +0.935144 +0.903502 +0.915218 +0.904898 +0.461951 +0.926901 +0.830941 +0.857444 +0.827471 +0.681344 +0.884907 +0.568928 +0.487802 +0.062619 +0.782855 +0.227692 +0.853407 +0.979700 +-0.290538 +0.912582 +0.549472 +0.448187 +0.681121 +0.987784 +0.414460 +0.966985 +0.989858 +0.837777 +0.329122 +0.956745 +0.892814 +0.977046 +0.763189 +0.811291 +0.992324 +0.260482 +0.933743 +0.952259 +0.579665 +0.823938 +0.953474 +0.840089 +0.487197 +0.961235 +0.959792 +0.428460 +0.943878 +0.992605 +0.976857 +0.901946 +-10.907802 +0.673392 +0.272248 +-0.390517 +0.677627 +0.746690 +0.576291 +0.883256 +0.807351 +0.824078 +0.726054 +0.142135 +0.834839 +0.714088 +0.195515 +0.847415 +0.479364 +0.769943 +0.397214 +0.603155 +0.625002 +0.380656 +0.523673 +0.941647 +0.235642 +0.819384 +0.557660 +0.730464 +0.842925 +0.759094 +0.725968 +0.883877 +0.736146 +0.375416 +-0.618354 +0.583582 +0.094921 +0.882764 +0.591815 +0.231440 +0.647714 +0.846465 +0.035002 +0.649070 +0.446374 +0.014689 +0.604484 +0.890116 +0.808914 +0.915330 +0.595269 +0.320105 +0.206799 +0.892827 +0.803731 +0.906649 +0.207978 +0.943512 +0.379592 +0.535801 +0.834626 +0.065051 +0.739989 +0.979245 +0.957335 +-2.018958 +0.775892 +0.981611 +0.938021 +0.374965 +0.902684 +0.892733 +0.569333 +0.667823 +0.856820 +0.827680 +0.245493 +0.353071 +0.646800 +0.662755 +0.991770 +-0.087355 +0.973124 +0.904357 +0.773351 +0.661822 +0.142405 +0.892430 +0.376066 +-0.058076 +0.925893 +0.872081 +0.741672 +-0.268671 +-0.004600 +0.751065 +-0.142024 +-0.123958 +-0.446804 +0.233528 +0.645081 +0.363846 +0.825127 +0.165102 +0.269321 +0.773246 +0.818732 +0.935642 +0.792757 +0.917347 +0.622221 +0.882118 +0.887423 +0.918366 +0.791912 +0.597810 +-0.708239 +0.361635 +-0.316375 +0.471316 +0.709256 +0.343857 +0.700766 +0.916984 +0.700346 +0.531665 +0.692410 +0.464072 +0.937379 +0.493611 +0.952930 +0.956878 +0.867764 +0.976199 +0.980078 +0.912868 +0.920428 +0.711758 +-0.498707 +0.095998 +0.907578 +0.672260 +0.789667 +0.210468 +0.481381 +0.984301 +0.898650 +-0.528576 +0.419680 +-0.005572 +0.947504 +0.642276 +0.768833 +-858.281508 +0.417008 +-0.157688 +0.351238 +0.610427 +0.773049 +0.839487 +0.705239 +0.544037 +0.152735 +0.900069 +0.706980 +0.884068 +0.558788 +-53.121627 +0.504070 +0.140731 +0.207986 +0.844490 +0.436490 +0.176875 +0.015584 +0.458293 +0.028245 +0.089696 +0.493679 +0.223749 +0.302870 +0.938193 +0.399299 +0.330051 +0.182789 +0.538533 +0.263092 +0.069424 +-13.700839 +0.280891 +0.492935 +-2.263640 +0.512777 +0.879286 +0.535240 +0.988719 +0.845663 +0.903860 +0.855812 +0.819953 +0.988578 +0.721417 +0.412886 +0.594960 +0.560080 +0.583802 +0.820043 +0.714789 +0.393649 +0.489564 +0.544443 +0.692476 +0.591690 +0.521895 +0.908336 +0.755107 +0.900589 +0.771250 +0.656209 +0.939391 +-105.333978 +0.573298 +0.605005 +0.508692 +0.626769 +0.595185 +0.356628 +0.862193 +0.979640 +0.928871 +0.074501 +-0.176731 +0.039533 +0.620966 +0.220020 +0.850902 +0.938477 +0.902016 +0.932016 +-6.241733 +-0.175741 +0.328890 +0.561815 +-6.238031 +-7.817736 +-88.901312 +-3.726662 +-0.216355 +-2.135130 +0.851127 +0.906395 +0.918410 +0.425746 +0.590073 +0.924144 +0.623815 +0.525882 +0.498320 +0.399643 +0.475563 +0.323831 +0.474530 +0.485380 +0.559651 +0.456775 +0.271922 +0.567400 +0.538711 +0.330654 +0.494953 +0.595755 +0.495283 +0.505410 +0.857983 +0.899802 +0.986827 +0.969916 +0.805139 +0.893498 +0.875308 +0.754456 +0.910559 +0.974111 +0.551029 +0.945213 +0.779101 +0.885486 +0.360942 +0.255617 +0.344396 +0.452227 +0.542660 +0.504311 +0.237481 +0.580825 +0.837904 +0.736252 +0.249952 +0.806601 +0.234633 +-83.355869 +0.618277 +0.748312 +0.734480 +0.710504 +0.731823 +0.189392 +0.160563 +0.592016 +0.339284 +0.354987 +0.543859 +0.663156 +0.289425 +0.631628 +0.411353 +0.287928 +0.487425 +0.743348 +0.400955 +0.359746 +0.562293 +0.075869 +0.272509 +0.164152 +0.815643 +0.083177 +0.186453 +0.043913 +0.062596 +0.917958 +0.354770 +0.172727 +0.479499 +0.002007 +0.309637 +0.133305 +0.802817 +0.060961 +0.044679 +0.185044 +0.895063 +0.799090 +0.233362 +0.526068 +0.732744 +0.777496 +0.216139 +0.071211 +0.977242 +0.211691 +0.074958 +0.460935 +0.233051 +0.213469 +0.910144 +0.664145 +0.796502 +0.005442 +0.055146 +-0.016028 +0.983894 +0.247227 +0.040332 +0.058673 +0.065407 +0.790702 +0.218572 +0.933696 +0.735715 +0.228782 +0.228782 +0.292327 +-25.275081 +0.872474 +0.788489 +0.843262 +0.896804 +0.917344 +0.910976 +0.891678 +-0.017137 +0.607343 +0.704414 +0.997234 +0.283755 +0.936728 +0.753725 +0.544118 +0.489211 +-0.988809 +0.703105 +0.961955 +0.574230 +0.493005 +0.830544 +0.841514 +0.675162 +-2.934975 +0.716564 +0.939343 +0.887549 +0.131610 +0.531943 +0.451110 +0.113381 +-0.210286 +0.544798 +0.721206 +0.880274 +0.437398 +0.764409 +0.891638 +0.884768 +0.861611 +0.761836 +0.710672 +0.133727 +0.934710 +0.744670 +0.022294 +0.609711 +0.966296 +0.823925 +0.860285 +0.591897 +0.452204 +0.590347 +0.410037 +0.541903 +0.998597 +0.851965 +0.629636 +0.934608 +0.485229 +0.411274 +0.775983 +0.931571 +0.330643 +0.759492 +0.198388 +0.887880 +0.616528 +0.396052 +0.929344 +0.795257 +0.628700 +0.612801 +0.938095 +0.389644 +0.907781 +0.011695 +0.263019 +0.433213 +0.925104 +0.843807 +0.139141 +0.694048 +0.216881 +0.761691 +0.157965 +0.726882 +0.674139 +0.208032 +0.754794 +0.740554 +0.289825 +0.008145 +0.717176 +0.276500 +0.303410 +0.577497 +0.849512 +0.393367 +0.121328 +0.826976 +0.976147 +0.761760 +0.883498 +0.523588 +0.368656 +0.654106 +-0.262440 +0.919032 +0.845218 +-0.002581 +0.531011 +-0.191128 +0.792221 +0.728852 +0.970077 +-0.252469 +-0.353628 +0.657340 +0.686365 +0.633254 +-4.136063 +0.844827 +0.748644 +0.695941 +0.423157 +0.923639 +-0.265617 +-0.253441 +0.936808 +0.589009 +0.886049 +-1.011540 +0.938283 +0.274671 +-49044252.813751 +-1973691519.177750 +0.802556 +0.813685 +0.463079 +0.705495 +0.792992 +0.966448 +0.969616 +0.512544 +0.633138 +0.672919 +0.939749 +-0.191025 +0.482682 +0.935331 +0.938031 +0.270349 +0.914158 +0.508475 +0.854574 +0.933016 +0.931906 +0.812462 +0.202726 +0.353794 +0.751347 +0.819859 +0.596905 +0.622447 +0.667306 +0.931963 +0.920369 +0.663794 +0.874451 +0.835717 +0.534453 +0.563347 +0.418337 +0.432274 +0.773256 +0.618342 +0.618079 +0.322203 +0.568927 +0.927543 +0.699173 +-0.648778 +0.791667 +0.817533 +0.434150 +0.473218 +0.565861 +0.199830 +0.728129 +0.114892 +0.532353 +0.608300 +0.327373 +0.406361 +0.692434 +0.884052 +0.946122 +0.792548 +0.627176 +0.348971 +0.335731 +0.930092 +0.066678 +0.931499 +0.495041 +0.440920 +0.434694 +0.403372 +0.233933 +0.317898 +0.873183 +0.560890 +0.715322 +0.758026 +0.662438 +0.936833 +0.948853 +0.314325 +0.719322 +0.802066 +0.837634 +0.813777 +0.640192 +0.601351 +0.827255 +0.451657 +0.836042 +0.484286 +0.841889 +0.539648 +0.758592 +0.845076 +0.953512 +0.810759 +0.736507 +0.968246 +0.355691 +0.744149 +0.530045 +0.706520 +0.885331 +0.654125 +0.643059 +0.590060 +0.573813 +0.840724 +0.924267 +0.738214 +0.707209 +0.601208 +0.713410 +0.929667 +0.375810 +0.427418 +0.665620 +0.481778 +0.673411 +0.671951 +0.880939 +0.587563 +0.730740 +0.763980 +0.867700 +0.802793 +0.698557 +0.504926 +0.793254 +0.827642 +0.598050 +0.945549 +-0.570677 +0.630839 +0.937872 +0.257432 +0.933135 +-0.060345 +0.420509 +0.180843 +0.937651 +0.726744 +0.882974 +0.620419 +0.750897 +0.004444 +0.894306 +0.911078 +0.918570 +0.242832 +0.838888 +0.333141 +0.105694 +0.260591 +0.906033 +0.495673 +0.578151 +0.886850 +0.974925 +-0.200996 +0.362892 +0.439118 +0.181181 +-3.652896 +0.695340 +0.062988 +0.035126 +0.016920 +-2.356703 +0.174142 +0.334267 +0.047546 +-0.003850 +0.164859 +0.656618 +0.212951 +0.602735 +0.143224 +0.123065 +0.102587 +-0.118334 +0.938662 +0.055922 +0.576100 +0.143069 +0.176181 +0.613365 +0.011416 +0.640320 +0.892190 +0.515781 +0.031916 +0.234603 +0.659361 +0.813718 +0.299140 +-0.329859 +0.534549 +0.349076 +0.793198 +0.944643 +0.770395 +0.658918 +0.224618 +0.511775 +0.925252 +0.919269 +0.741047 +0.694923 +0.531889 +0.446979 +0.583440 +0.450457 +0.102522 +0.370110 +0.667960 +0.542420 +-0.216383 +-0.338480 +0.832534 +0.453702 +0.953984 +0.427557 +0.732815 +0.591479 +0.715073 +0.774141 +0.348348 +0.590312 +0.360611 +0.603342 +0.933124 +0.738533 +0.745106 +0.297773 +0.421814 +-0.014009 +0.954302 +0.557945 +0.381261 +0.547718 +0.901025 +0.881957 +0.412309 +0.601828 +0.638877 +0.323833 +0.559318 +0.972642 +0.220694 +0.730232 +0.931147 +0.479452 +0.404792 +0.589463 +0.386528 +0.699857 +0.976072 +0.471451 +0.405145 +0.674063 +0.473447 +0.919106 +0.235195 +0.980815 +0.332052 +0.825442 +0.407704 +0.250948 +0.105333 +0.731136 +0.325645 +0.325645 +0.325645 +0.470471 +0.801045 +0.968006 +0.447763 +0.663190 +0.925210 +0.629343 +0.454820 +0.953853 +0.327310 +0.492982 +0.831836 +0.421761 +0.758455 +0.916727 +0.525209 +0.760132 +0.527223 +0.842784 +0.952577 +0.671802 +0.479556 +0.321739 +0.951290 +0.458238 +0.896420 +0.859530 +0.751163 +0.859367 +0.326163 +0.627226 +0.943375 +0.348374 +-6.187134 +0.926200 +0.063613 +-0.683168 +0.827323 +-0.301030 +0.058054 +0.809531 +0.651371 +0.356911 +0.791571 +0.700219 +0.778114 +0.402836 +0.300244 +0.749771 +0.547889 +0.538225 +0.316733 +0.636529 +0.662183 +0.331932 +0.851986 +0.913701 +0.714136 +0.332825 +0.633809 +0.806473 +0.661781 +0.481579 +0.921113 +-0.039452 +0.325237 +0.639338 +0.740323 +0.682157 +0.981481 +0.857121 +0.700058 +0.776859 +0.877245 +0.953151 +0.993004 +0.995196 +0.915670 +0.447561 +0.943935 +0.984856 +0.750579 +0.971102 +0.943993 +0.828149 +0.948266 +0.821482 +0.349180 +0.845811 +0.838817 +0.482039 +0.454673 +0.513565 +0.736895 +0.744992 +0.395877 +-5.468516 +0.929461 +0.813669 +0.737151 +0.809967 +0.623063 +0.215001 +0.726471 +0.310083 +0.691278 +0.376714 +0.836478 +0.819733 +0.820680 +0.576621 +0.297862 +0.756306 +0.612501 +0.513328 +0.676119 +0.525465 +0.115566 +-0.137100 +0.602919 +0.669423 +0.933115 +0.867359 +0.440936 +0.544987 +0.684742 +0.938027 +-0.599786 +0.819560 +0.441601 +0.892590 +0.891395 +0.128321 +0.869190 +0.525332 +0.849433 +0.259675 +0.957298 +0.269760 +0.823620 +0.732957 +0.861098 +-0.046274 +0.917669 +0.546341 +0.726878 +0.700088 +0.793458 +0.999163 +0.513682 +0.902512 +0.826920 +0.798540 +0.933337 +0.617381 +0.422182 +0.597884 +0.506175 +0.842245 +-1.499095 +0.684114 +0.874893 +0.938325 +0.625120 +0.783268 +0.737673 +0.718244 +0.554710 +0.487666 +0.720835 +0.458714 +0.344033 +0.617492 +0.518075 +0.570986 +0.829602 +0.829756 +0.841446 +0.810682 +0.928870 +0.344338 +0.846945 +0.889996 +0.544228 +-0.019819 +0.931270 +0.892158 +0.511436 +0.840442 +0.673115 +0.890520 +0.355944 +0.536888 +0.444503 +0.817936 +0.643281 +0.779539 +0.937888 +0.973842 +0.901366 +0.572219 +0.725286 +0.973494 +0.933623 +0.447007 +0.896216 +0.497566 +0.860831 +0.940670 +0.669527 +0.397345 +-0.737062 +0.985860 +0.754006 +0.967197 +0.338394 +0.894123 +0.585602 +0.804582 +0.374000 +0.502112 +0.727115 +0.898376 +0.750565 +0.954035 +0.033828 +0.347346 +-0.241999 +0.360261 +-0.087433 +0.401056 +0.359299 +0.856187 +0.753457 +0.360275 +0.757080 +0.263001 +-0.319964 +0.843207 +0.846864 +0.645264 +0.069428 +0.333073 +0.678399 +0.516033 +0.449655 +0.388791 +0.652145 +0.841230 +0.499058 +0.745622 +0.776152 +0.733473 +0.943961 +0.908811 +0.946900 +0.932333 +0.739509 +0.726195 +0.394156 +0.770594 +0.841029 +0.433672 +0.395664 +-0.775597 +0.556942 +0.170120 +0.539999 +0.707729 +0.908133 +0.565227 +0.480085 +0.673470 +0.635879 +0.728560 +0.602392 +0.230613 +0.282220 +0.279659 +0.846994 +0.733783 +0.786473 +0.520900 +0.435988 +0.615525 +0.855914 +0.693124 +0.191716 +0.930710 +0.323965 +0.445531 +0.763186 +0.798185 +-0.156077 +0.719684 +0.537916 +-0.153147 +0.854912 +0.824457 +0.752951 +0.525865 +-0.278161 +0.598474 +0.684402 +0.217269 +0.787655 +0.503304 +-0.191900 +0.683124 +-0.315435 +0.744361 +0.979830 +0.774941 +0.819672 +0.176780 +0.271115 +0.613846 +0.617415 +0.775291 +0.561543 +0.766705 +-0.254547 +0.575035 +0.926382 +0.320029 +0.399947 +0.671091 +0.799208 +0.525751 +0.926622 +0.915845 +0.924005 +0.738841 +0.881163 +0.878685 +0.887874 +0.557395 +0.933592 +0.457753 +0.972359 +0.885876 +0.838172 +0.813403 +0.779525 +0.799004 +0.919114 +0.786964 +0.155827 +0.848484 +0.824321 +0.284192 +0.834436 +0.530914 +0.613956 +0.983342 +-0.798518 +-0.756570 +0.746819 +0.406402 +0.609643 +0.492796 +0.335372 +0.469890 +0.527774 +0.535151 +0.672670 +0.898033 +0.589054 +-1.535490 +0.883354 +0.920608 +0.708120 +0.229255 +0.768338 +0.890443 +-82.809719 +0.936466 +0.215726 +0.491502 +0.518153 +0.927967 +0.689407 +0.465868 +0.558662 +0.666679 +0.818880 +0.769012 +-0.430055 +0.818037 +0.839036 +0.466408 +0.862365 +-0.187649 +0.932137 +0.908125 +0.567570 +0.266492 +0.356167 +0.700844 +0.281778 +0.383812 +0.768747 +0.796135 +0.724721 +0.364885 +0.819044 +0.134205 +0.474073 +0.139937 +0.718510 +0.743343 +0.333516 +-0.031265 +0.717292 +0.353049 +0.764251 +0.768344 +0.107557 +0.796062 +0.682071 +0.979849 +0.421428 +0.508581 +0.021509 +0.302756 +0.236962 +0.014456 +0.681923 +0.820614 +0.470343 +0.913351 +-0.041064 +0.469516 +0.779740 +-0.017612 +0.919474 +0.291813 +0.921466 +0.291063 +0.931102 +0.392834 +0.394212 +0.668993 +0.595799 +0.644817 +0.676151 +0.953480 +0.394983 +0.904038 +0.977546 +0.265761 +0.391184 +0.687035 +0.525686 +0.760358 +0.839355 +0.397475 +0.453140 +0.700050 +0.701570 +0.985060 +0.827638 +0.850502 +0.954184 +0.842695 +0.840570 +0.717225 +0.653218 +0.862589 +0.643778 +-0.099508 +0.840955 +0.843837 +0.802099 +0.775176 +0.760865 +0.975642 +0.529757 +-0.191954 +0.450559 +0.909554 +0.981269 +0.795090 +0.548941 +-0.270064 +0.344315 +0.162499 +0.386713 +0.725975 +0.833275 +0.542836 +0.574361 +0.022219 +0.468370 +0.563406 +0.720799 +0.672314 +0.841900 +-0.177626 +0.593629 +0.944155 +0.841455 +0.423333 +0.918919 +0.325458 +0.954941 +0.865104 +0.726845 +0.927981 +0.961946 +0.842931 +0.510735 +0.630661 +0.856613 +0.853660 +0.231480 +0.913876 +0.903355 +0.918276 +0.716653 +0.913651 +0.548150 +0.809032 +0.523963 +0.928209 +0.646778 +0.157785 +0.373643 +0.500927 +0.797307 +0.569438 +0.828911 +0.437540 +0.853612 +0.659290 +0.774598 +0.721813 +0.457191 +0.399462 +0.618814 +-0.085758 +0.010383 +0.567787 +0.880056 +0.610717 +0.987163 +0.621036 +0.640221 +0.296092 +0.887447 +0.765470 +0.304373 +0.675906 +0.351807 +0.702375 +0.474528 +0.888792 +0.777981 +0.935649 +0.928971 +0.528467 +0.931560 +0.324349 +0.351713 +0.416335 +0.356880 +0.434266 +0.587795 +0.816790 +0.729575 +0.936570 +0.514385 +0.688244 +0.936536 +0.802865 +0.206928 +0.218424 +0.137623 +0.557287 +0.769734 +0.474214 +0.855599 +0.413048 +0.694462 +0.429649 +0.756514 +0.836549 +0.538727 +0.846421 +0.849651 +0.693384 +0.635027 +0.817416 +0.471505 +0.499155 +0.706182 +0.668614 +0.149496 +0.261117 +0.634700 +0.252979 +0.603155 +0.904696 +0.429311 +0.824212 +0.353267 +0.761057 +0.849008 +0.888293 +0.337770 +0.492592 +0.410883 +0.816511 +0.576008 +0.745315 +0.838353 +0.361629 +0.388341 +0.192251 +0.873583 +0.562937 +0.964796 +0.462866 +0.562365 +0.308832 +0.840735 +0.425651 +0.578571 +0.512340 +0.527272 +0.922067 +0.470945 +-0.177835 +0.554185 +-0.202590 +0.836500 +0.840840 +0.703096 +0.709891 +0.536671 +0.722457 +0.845712 +0.453405 +0.957603 +0.307578 +0.414183 +0.681234 +0.933236 +0.789265 +0.788417 +0.466396 +0.763160 +0.690090 +0.720122 +0.815177 +0.183448 +0.588892 +0.530275 +0.535130 +0.749791 +0.760621 +0.141591 +0.200345 +0.629602 +0.670956 +0.403568 +0.829362 +0.842134 +0.854752 +0.921749 +0.417031 +0.556006 +0.843757 +0.935329 +0.979167 +0.487810 +0.046089 +0.971135 +0.322401 +0.321685 +0.214631 +-0.080818 +0.914336 +0.535745 +-0.318600 +0.905688 +0.780183 +0.555380 +0.916274 +0.779521 +0.679438 +0.172554 +0.877615 +0.955791 +0.935608 +0.613355 +0.752616 +0.799953 +0.309960 +0.711365 +0.460118 +0.369492 +0.948454 +0.846663 +0.843733 +0.598843 +0.931630 +0.916523 +0.919427 +0.544526 +0.933622 +0.488101 +0.857944 +0.695833 +0.743579 +0.528188 +0.868584 +0.553631 +0.756351 +0.388722 +0.402349 +0.744275 +0.361027 +0.892186 +0.455088 +0.308118 +0.395245 +0.578470 +0.539251 +0.384149 +0.544815 +0.669218 +0.657036 +-0.798899 +0.182205 +0.703024 +0.850966 +0.307002 +0.429271 +0.850479 +0.735275 +0.244306 +0.284394 +0.900203 +0.932311 +0.267379 +0.876767 +0.861427 +0.569840 +0.562503 +0.515061 +0.929239 +0.852127 +0.302013 +0.278267 +0.265923 +0.518248 +0.802830 +0.659044 +0.825398 +0.774449 +0.728795 +0.491640 +0.823808 +0.820560 +0.441947 +0.680737 +0.581479 +-0.948738 +0.903804 +0.384599 +0.713725 +0.849121 +0.986852 +0.765426 +0.456215 +0.913908 +0.490487 +-0.182545 +0.244601 +0.621709 +0.487883 +-0.047056 +0.629692 +0.265092 +0.931134 +0.766811 +0.500902 +0.314423 +0.085178 +0.687918 +0.826831 +0.274465 +0.745175 +0.983292 +0.652320 +0.815812 +0.458522 +0.897790 +0.999254 +0.878799 +0.632707 +0.483187 +0.305103 +0.571927 +0.891702 +0.141443 +0.539358 +0.708338 +0.588773 +0.371203 +0.881799 +0.931915 +-0.021479 +0.487455 +0.614786 +0.872152 +0.273231 +0.923558 +0.926218 +0.549976 +0.524587 +0.829468 +0.449892 +0.885222 +0.632604 +0.797325 +0.464238 +0.864789 +0.721539 +0.941160 +0.620286 +0.737637 +0.129561 +0.433598 +0.882675 +0.159655 +0.411117 +0.258150 +0.879105 +0.119906 +0.030072 +0.711445 +0.337687 +0.308954 +0.187242 +0.658915 +0.598732 +0.612413 +0.332422 +0.613313 +0.924812 +0.337133 +0.773364 +0.394883 +0.147481 +0.671616 +0.603489 +0.614538 +0.710767 +0.725443 +0.762005 +0.282687 +0.651358 +0.723436 +0.536177 +0.366945 +0.740278 +0.913044 +0.592377 +0.651986 +0.397307 +0.609444 +0.714925 +0.720546 +0.931784 +0.346167 +0.556649 +0.686103 +0.898413 +0.885754 +0.904918 +0.429812 +0.893208 +0.392798 +0.270915 +0.858210 +0.537282 +0.879371 +0.534016 +0.785877 +0.566967 +0.647683 +0.214096 +0.733873 +0.856202 +0.253550 +0.566826 +0.609011 +0.646967 +-0.147758 +0.954725 +0.794487 +0.876751 +0.893554 +0.983163 +0.947632 +0.298335 +0.986799 +0.838655 +0.861496 +0.724689 +0.519300 +0.438693 +0.882758 +0.212265 +0.841974 +0.882197 +0.913984 +0.210713 +0.348948 +0.302114 +0.619246 +0.447622 +0.594982 +0.765110 +0.848889 +0.484101 +0.958129 +0.787714 +0.842785 +0.863151 +0.311234 +0.907389 +0.887646 +0.332095 +0.933237 +0.296579 +0.852925 +0.465503 +0.425764 +0.931763 +0.385705 +0.412901 +0.432445 +0.818983 +0.608015 +0.783887 +0.611084 +0.854441 +0.728322 +0.976607 +0.393602 +0.843752 +0.914818 +0.414762 +0.669912 +0.468487 +0.490694 +0.219081 +0.947691 +-1.154564 +0.486963 +0.591583 +0.327138 +0.831326 +0.692079 +0.577089 +0.964350 +0.931507 +0.138609 +0.926724 +0.547324 +0.721436 +0.823802 +0.717187 +-0.326532 +0.400228 +0.863595 +0.608433 +0.785105 +0.455269 +0.774029 +0.990023 +0.356953 +0.573961 +-0.090433 +0.420330 +0.186472 +0.172650 +0.774344 +0.511623 +0.681152 +-727.001071 +0.532314 +0.915249 +0.903003 +0.479550 +0.858837 +0.577519 +0.857333 +0.903439 +0.907985 +0.109029 +0.693578 +0.807475 +0.215159 +0.539756 +0.518071 +0.990125 +0.838477 +0.671985 +0.711073 +0.875915 +0.421668 +0.696214 +0.940330 +0.941468 +0.521839 +0.905279 +0.302875 +0.868400 +0.802301 +0.312118 +0.966811 +0.673590 +0.640621 +0.894276 +0.725211 +0.929646 +0.654986 +0.783433 +-0.177166 +0.830113 +0.524713 +0.863422 +0.485884 +0.170772 +0.479960 +0.934257 +0.489171 +0.461436 +0.858862 +0.931005 +0.838143 +0.352051 +0.743318 +0.898464 +0.755843 +0.923517 +0.884119 +0.889190 +0.669394 +0.155493 +0.906828 +-0.484986 +0.252780 +0.846597 +0.903940 +0.808127 +0.879820 +0.784317 +0.803415 +0.688292 +0.857225 +0.694853 +0.995673 +0.861010 +0.994789 +0.990149 +0.958348 +0.805635 +0.895090 +0.999768 +0.969838 +0.622424 +0.373229 +0.714513 +0.998044 +0.484587 +0.493213 +-0.044300 +0.141056 +0.706317 +0.151100 +0.855372 +-0.009057 +0.861546 +0.522572 +0.923477 +0.030491 +0.048041 +0.432487 +-0.104756 +-0.083821 +0.926459 +0.476144 +0.829432 +0.674178 +0.269951 +0.975774 +0.744161 +0.754760 +0.998553 +0.401342 +0.780050 +0.670214 +0.562408 +0.413964 +0.893079 +0.784871 +0.827962 +0.414488 +0.059311 +0.492187 +0.480775 +0.907058 +0.835596 +0.817300 +-0.887316 +0.878389 +0.626743 +0.673508 +0.528556 +0.642041 +0.911877 +0.795837 +0.733335 +0.613764 +0.865524 +0.715556 +0.932110 +0.598217 +0.586891 +0.744038 +0.817235 +0.933060 +0.933458 +0.872060 +0.041753 +0.991238 +0.655563 +0.855359 +-0.011683 +0.678967 +0.305897 +0.926524 +0.885221 +0.308594 +0.837901 +0.938670 +0.867728 +0.755545 +0.740538 +0.798908 +0.758530 +0.437898 +0.852401 +-0.138155 +0.715530 +0.289221 +0.693235 +0.914332 +0.831615 +0.086604 +0.919125 +0.808758 +0.786769 +0.448333 +0.293577 +0.802688 +0.421552 +0.694023 +0.428767 +0.950800 +0.489908 +0.466317 +-1.454461 +0.350820 +0.794259 +0.626692 +0.599725 +0.630896 +0.842514 +0.487504 +0.404712 +0.752054 +0.003312 +0.695554 +0.845370 +0.548270 +0.519343 +0.727124 +0.711541 +0.037772 +0.351543 +0.269744 +0.398322 +0.577368 +0.790716 +0.619535 +0.306580 +0.445135 +0.837738 +0.755543 +0.165337 +0.057823 +0.097600 +0.127834 +0.754193 +0.071643 +0.571871 +0.447109 +0.896570 +0.722646 +0.942652 +0.947946 +-17.359328 +0.994646 +0.156113 +0.910577 +0.125411 +0.247397 +0.763871 +0.296303 +0.864801 +0.907933 +0.322785 +-0.504601 +0.488325 +0.852023 +0.346138 +0.400423 +0.654497 +0.917831 +0.558133 +0.853438 +0.782634 +0.734015 +0.566233 +0.884786 +0.804933 +0.670713 +0.741759 +0.828775 +0.898086 +0.703387 +0.845334 +0.514350 +0.930740 +0.941615 +0.496991 +0.378162 +0.591662 +0.206020 +0.880920 +0.798016 +0.849152 +0.321700 +0.685492 +0.929069 +0.866641 +0.420521 +0.805985 +0.348146 +-0.283936 +0.822939 +0.978593 +0.964872 +0.630192 +0.984111 +0.224172 +0.954030 +0.791071 +0.799835 +0.833073 +0.923215 +0.372993 +0.386085 +0.993148 +0.791523 +0.113576 +-0.016298 +0.328318 +0.914892 +0.879945 +0.913335 +-0.187603 +0.745693 +0.588745 +0.126057 +0.786881 +0.630023 +0.713957 +-0.164640 +0.376376 +-0.194900 +0.659670 +0.052849 +0.781415 +0.856741 +0.601683 +0.424162 +0.555589 +0.885391 +-0.189186 +0.845739 +0.296693 +0.393132 +0.814847 +0.897528 +-0.153092 +0.997782 +-0.123283 +0.910252 +0.678638 +0.889718 +0.673891 +0.998780 +0.995505 +0.638408 +0.686298 +0.103876 +0.955694 +0.887066 +0.486388 +0.755558 +0.812836 +-0.164431 +0.493103 +0.498700 +0.821033 +0.935663 +0.670752 +0.732604 +0.164417 +0.868986 +0.532401 +0.553074 +0.917577 +0.811001 +0.771976 +0.649731 +0.978446 +0.665138 +0.750849 +0.416412 +0.390967 +0.860007 +0.846382 +0.683562 +0.674729 +0.661023 +0.851349 +0.933239 +0.637386 +0.355892 +0.259934 +0.583328 +0.363370 +0.759008 +0.848759 +0.704323 +0.991619 +0.558113 +0.208243 +0.685301 +0.876293 +0.647469 +0.741783 +0.530106 +0.787101 +0.518714 +0.617696 +0.895298 +0.433724 +0.610201 +0.654238 +0.922134 +0.747379 +0.262538 +0.485642 +0.795042 +0.606328 +0.239647 +0.579671 +0.680386 +0.638328 +0.511682 +0.944181 +0.913321 +0.900526 +0.936660 +0.742898 +0.554264 +0.532980 +0.904931 +0.906755 +0.901582 +0.276723 +0.919305 +0.749732 +0.748573 +0.138683 +0.693905 +0.754978 +0.404627 +0.506270 +0.670417 +0.852568 +0.801949 +0.720106 +0.528833 +0.345466 +-0.089823 +0.665095 +-0.190108 +-0.140650 +0.070230 +0.558130 +0.563295 +0.578237 +0.359032 +-0.148719 +0.605549 +0.897881 +0.220181 +0.462466 +0.637140 +-0.085519 +0.864398 +0.371995 +0.575015 +0.308036 +0.753523 +0.286179 +0.010824 +0.758305 +0.181713 +0.174572 +0.699254 +-0.180484 +0.649492 +0.563456 +0.908133 +0.490408 +0.590686 +0.682713 +0.680296 +0.954868 +-0.365623 +0.612222 +-1.380729 +0.877543 +0.789240 +0.628922 +0.611729 +0.880085 +0.657743 +0.261140 +0.092639 +0.571693 +0.777588 +0.993715 +0.853568 +0.570390 +0.540340 +0.912389 +0.989419 +0.905282 +0.913289 +0.744142 +0.754846 +0.755904 +0.695900 +0.659788 +0.864617 +0.786760 +-0.299498 +0.943285 +0.592358 +0.749582 +0.948772 +0.696027 +0.833104 +0.723757 +0.925116 +0.944480 +0.791268 +0.954240 +0.715037 +0.861503 +0.468581 +0.756246 +0.763222 +0.879007 +0.051082 +0.795920 +0.925087 +0.881932 +0.921982 +0.259245 +0.235059 +0.866771 +0.733547 +0.675493 +0.402008 +0.930217 +0.734916 +0.901774 +0.618848 +0.957618 +0.254183 +0.797307 +0.931281 +0.808277 +0.487510 +0.927370 +-0.089710 +0.740485 +0.839214 +0.904945 +0.730814 +0.680285 +0.919015 +0.729863 +0.689132 +0.744651 +0.932431 +-0.133111 +0.929250 +0.958041 +0.729719 +0.835085 +0.795927 +0.776883 +0.839111 +0.117599 +0.710990 +0.923345 +0.734604 +0.741869 +0.951566 +0.933685 +0.511257 +0.823341 +0.806941 +0.689510 +0.815166 +0.496298 +0.606492 +0.471607 +0.836514 +0.726167 +0.319609 +0.574820 +0.440073 +0.894566 +0.429542 +0.651932 +0.672711 +0.588352 +0.882190 +0.867634 +0.414585 +0.558064 +0.541721 +0.506630 +0.758411 +0.612490 +0.412675 +0.600321 +0.712943 +0.499363 +0.513916 +0.911399 +0.890233 +0.937464 +0.792260 +-0.197878 +0.936682 +0.881536 +0.766393 +0.935404 +0.817189 +0.947237 +0.937285 +0.936421 +0.498296 +0.901641 +0.912811 +0.802453 +0.609313 +0.929534 +0.933789 +0.696908 +0.359990 +0.480772 +0.760813 +0.432875 +0.448421 +0.613955 +0.275359 +0.931427 +0.931496 +0.740288 +0.985534 +0.910923 +0.483378 +0.226783 +0.642423 +0.872926 +0.698868 +0.558098 +0.658620 +0.811414 +0.611367 +0.926313 +0.259654 +0.420886 +0.795704 +0.448234 +0.365787 +0.501984 +0.842696 +0.540386 +0.391618 +0.550235 +0.397849 +0.884128 +-0.138680 +-0.206276 +0.768502 +0.640849 +-0.151422 +-0.251986 +0.739775 +0.531835 +0.700902 +-0.329966 +0.716123 +-0.257927 +-0.272441 +0.846291 +0.895904 +0.915849 +0.565239 +0.823930 +-0.317343 +0.691597 +0.834139 +0.686112 +0.751004 +0.751004 +0.916417 +0.502977 +-0.036499 +0.789834 +0.447941 +0.615883 +0.163007 +0.509507 +-0.500201 +0.587036 +0.531037 +0.104502 +0.864381 +0.952857 +0.242190 +-0.345850 +-0.355049 +0.511582 +0.686797 +0.588245 +0.019420 +-0.329133 +0.931107 +0.569745 +0.230372 +0.382758 +-0.436384 +0.195126 +0.374370 +0.721514 +-0.350802 +-0.490414 +0.737857 +0.769757 +0.858129 +0.920501 +0.662135 +0.458556 +0.877379 +0.333778 +0.435905 +-0.277617 +0.964343 +0.731326 +0.873039 +0.103531 +0.306641 +-0.293557 +-1.362262 +0.813386 +0.839661 +-0.114121 +0.435310 +-0.155755 +0.426435 +-0.204367 +0.303943 +0.692802 +0.108987 +0.068868 +0.926619 +0.216812 +0.670371 +0.477080 +0.446929 +0.352112 +0.940952 +0.442985 +0.810171 +0.799625 +0.504576 +0.952539 +0.246473 +-0.076948 +0.672683 +0.705848 +0.472329 +0.210012 +-0.486482 +0.518367 +0.854283 +0.814850 +0.372727 +0.318113 +0.640544 +0.678680 +0.751425 +0.683918 +0.557852 +0.769947 +0.793326 +0.319797 +0.929072 +0.903704 +0.761514 +0.660260 +0.822358 +0.811100 +0.574530 +0.915893 +0.490439 +0.768883 +0.406035 +0.638596 +0.661951 +0.840404 +0.752288 +0.927889 +0.743167 +0.743939 +0.690283 +0.487330 +0.752141 +0.403039 +0.616031 +0.566249 +0.470354 +0.558170 +0.647859 +0.635637 +0.623740 +0.617647 +0.605163 +0.974444 +0.638043 +0.903859 +0.882142 +0.827003 +0.930836 +0.910375 +0.949135 +0.628848 +-0.423767 +0.787816 +0.265961 +0.706442 +0.808161 +0.637520 +0.948984 +0.720298 +0.889302 +0.827999 +0.624152 +0.531051 +0.635704 +0.913476 +0.918404 +0.603704 +0.394956 +0.774288 +0.684769 +0.929456 +0.704282 +0.889204 +0.560892 +0.770236 +0.364135 +0.766960 +0.684512 +0.789835 +0.191021 +0.512771 +0.839839 +-0.996329 +0.544407 +0.865135 +0.803832 +0.242099 +0.322963 +0.605034 +0.737528 +0.880159 +0.173138 +0.602144 +0.450680 +0.780618 +0.699885 +0.697369 +0.934589 +0.936115 +0.156960 +-0.131447 +0.383986 +0.875710 +0.828271 +0.544974 +0.750829 +0.664096 +0.262991 +-0.174050 +0.387581 +0.295251 +-0.392133 +0.827947 +0.954379 +0.840029 +0.767400 +0.666413 +0.221897 +0.861731 +0.895789 +0.512140 +0.896165 +0.515810 +-0.513132 +0.933870 +0.991904 +0.812580 +0.890106 +0.513914 +0.860602 +0.388460 +0.447426 +0.912909 +0.934531 +0.434628 +0.934857 +0.888775 +0.767506 +0.620728 +-0.078844 +0.937522 +0.892212 +0.433739 +0.878166 +0.311985 +0.910337 +0.502666 +0.171812 +0.266975 +0.402786 +0.805757 +0.872399 +0.783445 +0.930948 +0.967244 +0.852004 +0.922495 +0.937700 +0.659342 +0.701220 +0.780227 +0.481038 +0.799841 +0.101483 +0.835265 +0.296545 +0.318912 +0.656101 +-0.033450 +0.362564 +0.584338 +0.767728 +0.551741 +0.783135 +0.355768 +0.715640 +0.759748 +-0.152542 +-0.133586 +0.765574 +0.473534 +0.291207 +0.162555 +0.731611 +0.726826 +0.341877 +0.020249 +0.083560 +0.861346 +0.539518 +0.847201 +0.475422 +0.461691 +0.095361 +0.360073 +0.708407 +0.105828 +0.469197 +-0.021548 +0.751651 +-0.799240 +0.847672 +0.124575 +0.923348 +0.824905 +0.305247 +-0.153094 +0.871874 +0.377020 +0.671285 +0.937955 +0.817043 +0.812460 +0.510580 +0.167803 +-0.240899 +0.456500 +0.824340 +0.402797 +0.548990 +0.530955 +0.739229 +-0.254607 +0.859721 +0.922787 +0.566468 +0.863687 +0.879071 +0.817454 +0.621949 +-0.123556 +0.373882 +-0.095195 +0.760736 +0.358850 +0.380710 +0.309657 +0.734614 +0.606163 +0.649828 +0.769344 +0.775946 +0.304345 +0.494442 +0.601811 +0.388157 +0.083879 +-0.518825 +0.981937 +0.435283 +0.637851 +0.295808 +0.588793 +0.499551 +0.023860 +0.243833 +0.859135 +0.381438 +0.729805 +0.222184 +0.933313 +0.943437 +0.434938 +0.973654 +0.227474 +0.662500 +0.781378 +0.670174 +0.981062 +0.896401 +0.556043 +0.509506 +0.003701 +0.440862 +0.869514 +0.970649 +0.470370 +0.871747 +0.500222 +0.163686 +0.712461 +0.374521 +0.580066 +0.916606 +0.736311 +0.138767 +0.796220 +0.740664 +0.004026 +0.754909 +0.276238 +-0.190764 +0.778572 +0.786328 +0.569549 +0.852082 +0.874710 +0.846568 +0.815744 +0.907844 +0.221083 +0.626887 +0.667989 +0.784007 +0.598286 +0.783962 +0.982116 +0.632140 +-0.056490 +0.320591 +0.594835 +0.404778 +0.736767 +0.184863 +0.752374 +0.246706 +0.456054 +0.776994 +0.525688 +-0.021735 +0.562396 +-0.099474 +-0.196651 +-0.089698 +0.847243 +0.125066 +0.803432 +0.217942 +0.666224 +0.918220 +0.618548 +0.822695 +0.490318 +-0.297553 +0.659286 +0.642120 +0.885552 +-0.227515 +0.307899 +0.693969 +0.897462 +0.983707 +0.783972 +0.873469 +0.703483 +0.509326 +0.916982 +0.765063 +0.592625 +0.540265 +0.675658 +0.921145 +-0.206033 +0.617630 +0.499238 +0.610684 +0.881810 +0.931863 +-0.062893 +-0.207282 +0.341830 +0.566197 +0.725707 +0.726611 +0.725146 +-0.263051 +0.673946 +0.776823 +0.950184 +0.796125 +0.720549 +0.831428 +0.931522 +0.945624 +0.953669 +0.985871 +0.984867 +0.892377 +0.545829 +0.837640 +0.891059 +0.903548 +0.515799 +0.695749 +0.946576 +0.906370 +0.729175 +0.940196 +0.992072 +0.943406 +0.922463 +0.980937 +0.883743 +0.846120 +0.992363 +0.868861 +0.982584 +-0.216984 +0.867575 +0.982612 +0.880164 +0.901649 +0.780224 +0.430362 +0.829011 +0.442991 +0.975863 +0.753450 +0.823988 +0.883114 +0.618288 +0.930855 +0.373533 +0.973929 +0.969498 +0.946648 +0.995697 +0.247630 +0.924531 +0.301809 +0.973071 +0.642125 +0.205649 +0.700222 +0.791720 +0.534641 +0.430426 +0.728504 +0.918228 +0.493722 +0.527253 +0.609264 +-0.785469 +0.040434 +0.301597 +0.737059 +0.967395 +0.909528 +0.783639 +0.919831 +0.873513 +0.812664 +0.429882 +0.914682 +0.980669 +0.784503 +0.975753 +0.886554 +0.874767 +0.555209 +0.627992 +0.554283 +0.934535 +0.334592 +0.989416 +0.853059 +-0.129273 +0.528735 +0.271046 +0.448396 +0.338805 +0.864076 +0.492765 +0.837747 +0.471672 +0.779665 +0.419955 +0.489347 +0.689810 +0.688539 +0.922084 +-0.577986 +0.672551 +0.685932 +0.769691 +0.276131 +0.234713 +0.579698 +0.281701 +0.682868 +0.479331 +-2.630620 +0.443807 +0.459878 +0.515865 +0.373270 +0.289282 +0.594146 +0.543680 +0.873266 +0.937075 +0.724250 +0.486251 +0.895798 +0.498944 +0.783166 +0.813729 +0.069636 +0.828346 +0.937638 +0.842569 +-0.239665 +0.826943 +0.871050 +0.783175 +0.672629 +0.984305 +0.826398 +0.769195 +0.911033 +0.686929 +0.921113 +0.488399 +0.500083 +0.644225 +0.637753 +0.938349 +-1.134984 +0.728854 +0.658287 +0.814014 +0.849367 +0.833391 +0.859976 +0.580882 +0.828147 +0.427498 +-0.490203 +0.851226 +0.764448 +0.714177 +0.970413 +-0.114608 +0.436327 +0.487499 +0.661649 +0.919700 +0.127163 +0.965961 +0.443107 +0.394036 +0.692480 +0.797964 +0.198551 +-0.276988 +0.560188 +0.786012 +0.259039 +0.324502 +0.774219 +0.754276 +0.966099 +0.645579 +-0.120112 +0.715737 +0.993735 +0.324187 +0.337177 +-0.183387 +0.717361 +0.371329 +0.843297 +0.769759 +0.839524 +0.085577 +0.556901 +0.842103 +0.439185 +0.763138 +0.698053 +0.827560 +0.652418 +0.489785 +0.410209 +0.945846 +0.774429 +0.791206 +0.933862 +0.935206 +0.921235 +0.627916 +0.628662 +0.849180 +0.457551 +0.349479 +0.573698 +0.394023 +0.941132 +0.773918 +0.819820 +0.991897 +0.835979 +0.394524 +0.974826 +0.735553 +0.937755 +0.479547 +0.384365 +0.901377 +0.539533 +0.703235 +0.744731 +-4.824843 +0.971907 +0.993754 +-0.562068 +-0.219733 +0.262457 +0.877342 +0.672268 +0.446142 +-0.398971 +0.824233 +0.926778 +0.405556 +0.864963 +0.814974 +0.705460 +0.670174 +0.820831 +0.954119 +0.627729 +0.380855 +0.231185 +0.321634 +0.679958 +0.445651 +0.994740 +0.807861 +0.892075 +0.990505 +0.717035 +0.314401 +0.567883 +0.432553 +0.197107 +0.433348 +0.539418 +0.106636 +0.431928 +0.099670 +0.493035 +0.287567 +0.597328 +0.932475 +0.829898 +0.938105 +0.967349 +0.646657 +0.875546 +0.836633 +0.937958 +0.811529 +0.927583 +0.909480 +0.584686 +0.936149 +0.927698 +-0.102697 +0.685811 +0.230690 +0.936137 +0.933253 +-0.036367 +0.927904 +0.462570 +0.270462 +0.496359 +0.792661 +0.758950 +0.940157 +-0.163338 +0.909049 +0.515391 +0.441638 +0.750770 +0.663724 +0.787395 +0.770032 +0.738118 +-0.163957 +0.962234 +0.576628 +0.785145 +0.833194 +0.422840 +0.721267 +0.900180 +0.737850 +0.553983 +0.048118 +0.930935 +0.655137 +0.906789 +0.634138 +0.822104 +0.612934 +0.887267 +0.313959 +0.626500 +0.165918 +0.698682 +0.180398 +0.415147 +0.536806 +0.500359 +0.865817 +0.749588 +0.934641 +0.887386 +0.074036 +0.690255 +0.163303 +0.901471 +0.698082 +0.866779 +0.371485 +0.848197 +0.503276 +-0.139061 +0.754515 +0.824057 +0.564436 +0.585076 +0.509710 +0.510601 +-0.201805 +0.882468 +0.628293 +-0.006056 +0.578924 +0.493241 +0.885874 +0.676248 +0.522109 +0.818161 +0.984046 +0.554792 +0.011915 +0.319561 +0.963403 +0.737056 +0.798937 +0.825071 +0.298979 +0.675605 +0.879740 +-0.027139 +0.665610 +0.100676 +0.622966 +0.960609 +0.726417 +0.693058 +0.379702 +0.797266 +0.520180 +0.814695 +0.949181 +0.624811 +0.909352 +0.848490 +0.797214 +0.912939 +0.846331 +0.934327 +0.628063 +0.871415 +0.781894 +0.867268 +0.664182 +0.670013 +0.849379 +0.916556 +0.416100 +0.674451 +0.610843 +0.663312 +0.823317 +0.160359 +0.932426 +0.834594 +0.894778 +0.484660 +0.852376 +0.825517 +0.421420 +-0.379057 +0.850378 +0.716326 +0.950565 +0.846929 +0.791615 +0.971379 +0.949706 +0.442400 +0.178614 +0.766075 +0.700939 +0.839256 +0.646048 +0.550494 +0.751389 +0.764793 +0.517311 +0.454473 +0.265075 +0.839572 +0.880803 +0.340723 +0.872331 +0.786896 +-0.051258 +0.612631 +0.589417 +0.694410 +0.373743 +0.617818 +0.323012 +0.767147 +0.268459 +0.245817 +0.465589 +-14.980972 +0.660453 +0.687096 +-198.501899 +0.122464 +-42.939401 +0.251005 +0.902044 +0.501839 +0.465361 +0.174080 +0.198640 +0.229494 +0.844755 +0.786086 +0.293767 +0.471722 +-259.425358 +0.684906 +0.368434 +0.315066 +-0.297728 +0.729756 +0.780832 +0.699650 +0.775427 +0.352259 +0.535649 +0.848354 +-0.238641 +0.899125 +0.770559 +-0.002594 +-0.006109 +0.780283 +0.771184 +-0.156836 +-0.207044 +-0.244385 +0.469290 +-0.098764 +-0.114601 +0.841354 +0.950355 +-0.182635 +0.885001 +0.807189 +0.747550 +0.121922 +0.524721 +0.885535 +0.425470 +0.918296 +0.775794 +0.673927 +0.490822 +0.644214 +-0.080608 +0.905184 +0.715562 +0.614936 +0.717661 +0.647424 +0.611600 +0.550935 +0.775456 +0.919789 +0.808462 +0.666590 +0.467152 +0.526536 +0.854492 +-0.507433 +0.931606 +0.875627 +0.748801 +0.515057 +0.744207 +0.861876 +0.982568 +0.142361 +0.345009 +0.550935 +0.157531 +0.932705 +0.815990 +0.389908 +0.929785 +0.630430 +0.838563 +0.489107 +0.481196 +0.517495 +0.916177 +0.788261 +0.868728 +0.563031 +0.808838 +0.550752 +0.466879 +0.769222 +0.728953 +-0.156383 +0.966496 +0.978074 +0.169399 +0.729868 +0.686399 +0.378159 +0.174355 +0.453119 +0.678759 +0.486415 +0.376055 +0.528997 +0.256364 +0.524684 +0.593719 +-0.129935 +0.581663 +0.688130 +0.809173 +0.608934 +0.444885 +0.466389 +-0.222772 +0.844726 +0.847392 +-0.127679 +0.244143 +0.765771 +0.181491 +0.881499 +0.534943 +0.439084 +0.639817 +0.838243 +0.050795 +0.534320 +0.760067 +0.642800 +0.616217 +-0.241844 +0.473272 +0.746464 +0.920986 +0.693550 +0.528717 +0.444285 +0.765959 +0.360846 +0.731826 +0.794238 +0.786122 +0.266231 +0.927676 +0.695934 +0.866237 +0.380550 +0.539514 +0.971770 +0.898999 +0.778627 +0.852906 +0.835918 +0.923452 +0.769225 +-0.155758 +0.451992 +0.651425 +0.730609 +-0.315375 +0.289925 +0.270835 +0.884309 +0.713376 +-0.177975 +0.697391 +0.642491 +0.679171 +0.588359 +0.537790 +0.500513 +0.849810 +0.450717 +0.805993 +0.587778 +0.692166 +-0.008916 +0.843845 +0.666545 +0.949825 +0.854624 +0.059103 +0.109507 +0.920507 +0.994667 +-0.145321 +0.750917 +0.504704 +0.827034 +0.836942 +0.766589 +0.870869 +0.957755 +0.692804 +-0.269270 +0.011369 +0.873358 +0.746221 +0.884893 +0.911782 +-0.115070 +0.651892 +0.813469 +0.607561 +0.725948 +0.924378 +-0.133366 +0.741600 +0.808784 +0.643978 +0.745984 +0.798141 +-0.111088 +0.848706 +0.805037 +0.737141 +0.438736 +0.806962 +0.370197 +0.734302 +0.462267 +0.614299 +0.407945 +-0.054889 +-0.101028 +0.021033 +-3.690922 +0.648280 +0.433027 +0.762385 +0.509370 +-0.123739 +0.487949 +0.582227 +0.841116 +0.470419 +0.551476 +0.322137 +0.615944 +0.549294 +0.810528 +0.675614 +0.433881 +0.659167 +0.554573 +0.840264 +0.434338 +0.905812 +0.551803 +0.376520 +0.734714 +-0.121694 +0.056058 +0.543142 +0.655499 +0.636521 +-0.307063 +0.217355 +0.448884 +0.620593 +-0.122735 +0.848072 +0.646394 +0.601365 +0.047206 +0.691235 +0.950163 +0.676157 +0.503761 +0.769875 +0.425893 +0.433254 +0.799660 +0.610075 +0.677619 +0.766323 +0.921830 +0.827614 +0.922441 +0.902524 +0.279570 +0.933416 +0.842339 +0.279578 +0.834040 +0.682984 +0.831035 +0.688926 +0.912362 +0.788804 +0.435362 +0.582847 +0.751625 +0.483235 +0.937376 +0.841692 +0.094523 +0.368450 +0.888000 +0.342188 +0.663241 +0.871525 +0.617544 +0.824985 +0.745644 +0.437069 +0.471760 +0.551701 +0.431985 +0.904118 +0.701705 +0.805818 +0.919951 +0.872403 +0.994682 +0.627439 +0.154592 +-1.927352 +0.702442 +0.334841 +0.955145 +0.664495 +0.746179 +0.897084 +0.551066 +0.980281 +0.676241 +0.872384 +0.667669 +-4078.383216 +0.863862 +0.530825 +0.579777 +0.533068 +0.985320 +0.246301 +0.135979 +0.965463 +-0.095896 +0.937552 +0.563833 +0.805544 +-0.173023 +0.461317 +-0.047512 +0.913210 +0.932308 +0.217629 +0.836187 +0.754582 +0.641679 +0.504759 +0.454450 +0.430133 +0.500199 +-0.061299 +0.679657 +-157.771479 +0.136769 +0.334213 +0.652301 +-0.215587 +0.312078 +0.353904 +0.362552 +0.402819 +0.801995 +0.497795 +0.567138 +0.558801 +0.605170 +0.687500 +0.855007 +0.821920 +0.634063 +0.613023 +0.670543 +0.781967 +0.322286 +0.891794 +0.913470 +0.916869 +0.525579 +0.934401 +0.797230 +0.772528 +0.936233 +0.826888 +0.877620 +0.908764 +-0.284122 +0.984030 +0.837264 +0.675058 +0.990949 +0.936709 +-0.473895 +0.816403 +-0.355180 +-0.155398 +0.945644 +-0.656248 +0.810138 +0.937225 +0.728598 +0.931167 +0.891329 +0.918712 +0.927160 +-0.162516 +-0.156071 +0.955547 +-0.775438 +-1.328574 +0.084604 +0.465470 +0.440254 +0.729471 +-0.175840 +0.647149 +0.751686 +0.760473 +0.915503 +0.646573 +0.814999 +-0.031633 +0.819267 +0.939155 +0.995018 +0.683204 +0.771068 +0.576272 +0.231306 +0.556059 +0.360202 +0.902733 +0.270756 +0.233133 +0.599013 +0.930303 +0.560216 +0.545778 +0.672996 +-0.176562 +-0.154177 +-0.254953 +0.731695 +0.795285 +0.736374 +0.710506 +0.514729 +-0.183432 +0.742069 +0.536076 +0.982008 +-0.182858 +0.484266 +0.875595 +0.630235 +0.999711 +0.871600 +0.038845 +0.636655 +0.356151 +-0.164721 +-0.065745 +0.442091 +0.150481 +0.460666 +0.546899 +0.590423 +0.682860 +0.389688 +-0.083969 +0.298878 +-0.083289 +-0.131227 +0.363477 +0.414343 +0.509721 +0.430115 +0.428625 +0.118121 +0.729592 +0.285869 +0.671241 +0.824444 +0.720882 +0.565097 +-0.158289 +0.475409 +0.684881 +0.741572 +0.924981 +0.708134 +0.022085 +0.900168 +0.446324 +0.870776 +0.349809 +0.924931 +0.795867 +0.881375 +0.547804 +0.571281 +0.685985 +0.992889 +-2.425941 +0.783473 +-0.165846 +0.553796 +-0.891827 +0.298977 +0.314413 +0.490756 +0.531769 +0.742540 +0.669798 +0.111689 +0.238699 +0.439995 +0.771177 +0.328060 +0.119807 +0.290303 +0.104045 +0.232135 +0.251177 +0.599483 +-0.528187 +0.947094 +0.847092 +0.983687 +0.623091 +0.821878 +0.578994 +0.357758 +0.985532 +0.638459 +0.819877 +0.908631 +0.627749 +0.700023 +0.893364 +0.488479 +0.947559 +0.530876 +0.494006 +0.418434 +0.992118 +0.393609 +0.509314 +0.518505 +0.556328 +0.343710 +0.923693 +0.348938 +0.632694 +0.597367 +0.799131 +0.918563 +0.932910 +0.446875 +0.503993 +0.971285 +-2048.237800 +0.944339 +0.677153 +0.532202 +0.925634 +0.273483 +0.930359 +0.920206 +0.531342 +0.906349 +0.918425 +0.474286 +0.384157 +0.329638 +0.977285 +0.822995 +0.392144 +0.584371 +0.508391 +0.992249 +0.886551 +0.920350 +0.833511 +0.285993 +0.989124 +0.728070 +-38.687750 +0.869433 +0.690832 +0.955014 +0.708662 +0.373246 +0.642236 +0.924603 +0.524869 +0.564455 +0.381280 +0.321639 +0.723792 +0.467655 +0.969645 +0.517895 +0.830710 +0.438392 +0.784713 +0.770175 +0.946731 +0.088823 +0.416552 +0.777033 +0.584724 +0.892058 +0.808806 +0.241395 +0.213883 +0.373433 +0.261348 +0.080229 +0.510017 +0.588532 +0.335667 +0.650743 +0.840604 +0.910058 +0.429062 +0.142947 +0.237904 +0.752608 +0.184449 +0.792999 +0.089413 +0.714443 +0.317468 +0.270671 +0.766531 +0.861331 +-0.891329 +-14.863773 +-0.323993 +0.999150 +0.141588 +0.662321 +0.112568 +0.725386 +0.821448 +0.707672 +0.968749 +0.921636 +0.861153 +0.729812 +0.960835 +0.645282 +0.366120 +0.928387 +0.914521 +0.921892 +0.907187 +0.924160 +0.918176 +0.599158 +0.924726 +0.991945 +0.923120 +0.927845 +0.965930 +0.907327 +0.916625 +0.955683 +0.407599 +0.556734 +0.979151 +0.977661 +0.854715 +0.977158 +0.763830 +0.916629 +0.991602 +0.925703 +0.585963 +0.689120 +0.639918 +0.440679 +0.663816 +0.513497 +0.907554 +0.875470 +0.891035 +0.906730 +0.906252 +0.921668 +0.964094 +0.546313 +0.978782 +0.956857 +0.899168 +0.914360 +0.439392 +0.325107 +0.517378 +0.674530 +0.957603 +0.485740 +0.927283 +0.230329 +0.339045 +0.493744 +0.528806 +-17.801249 +0.580588 +0.484190 +0.899504 +0.662555 +0.494744 +0.652221 +0.513624 +0.802551 +0.686963 +0.948654 +0.604472 +0.441914 +0.317924 +0.971334 +0.688016 +0.449796 +0.290638 +0.461013 +0.876923 +0.738313 +0.932505 +0.919079 +0.234444 +0.737470 +0.222950 +0.836961 +0.823677 +0.261764 +0.861268 +0.894638 +0.504721 +0.980941 +0.500603 +0.890622 +0.634003 +0.742813 +0.838097 +0.558359 +0.666584 +0.771708 +0.892903 +0.766803 +0.506990 +0.277895 +0.968389 +0.746038 +0.662096 +0.837930 +0.764551 +0.581332 +0.551029 +0.441138 +0.571901 +0.498517 +0.411556 +0.939765 +0.818985 +0.341802 +0.168743 +0.450046 +0.597288 +0.757052 +-0.211065 +0.378031 +0.754919 +0.279818 +0.267749 +0.420531 +0.284001 +0.695584 +0.764711 +0.648561 +0.225296 +0.843156 +0.412663 +0.899232 +0.892350 +0.882975 +0.963919 +0.899328 +0.913912 +0.595084 +0.866100 +0.878476 +0.637146 +0.509167 +0.217441 +0.953927 +0.116757 +0.574496 +0.635813 +0.353948 +0.761704 +0.836382 +0.877543 +0.824319 +0.585674 +0.424184 +0.502250 +0.471643 +0.791667 +0.882887 +0.863064 +0.645968 +0.358054 +0.555596 +0.601360 +0.669013 +0.662849 +0.533315 +0.883868 +0.765630 +0.959594 +0.815494 +0.537437 +0.301872 +0.768577 +0.752548 +-1.375085 +0.660114 +0.284408 +0.756895 +0.926060 +0.636016 +0.274673 +0.464250 +0.240830 +0.310697 +0.517611 +0.297497 +0.637180 +0.399955 +0.211734 +0.476583 +0.481815 +0.747199 +0.742976 +0.732146 +0.605495 +0.807213 +0.468484 +0.779624 +0.787497 +0.767826 +0.450643 +0.712652 +0.888032 +0.655755 +0.970970 +0.637035 +-25.011720 +0.693029 +0.975520 +0.405692 +0.592287 +0.923085 +0.470754 +0.864365 +0.931825 +0.919469 +0.458156 +0.936043 +0.411724 +0.716919 +0.804319 +0.841459 +0.956771 +0.484115 +0.997067 +0.142080 +0.912417 +0.985127 +0.632339 +0.553561 +0.944990 +0.765872 +0.401511 +0.546702 +0.727512 +0.241779 +0.459051 +0.878852 +0.603165 +0.808097 +0.275047 +0.275047 +0.542140 +0.723011 +-0.324425 +0.733077 +0.947682 +0.850833 +0.780260 +0.822322 +0.872062 +0.379403 +0.630586 +0.513943 +0.528441 +0.456796 +0.587819 +0.494776 +0.635787 +0.597564 +0.748459 +0.981715 +0.491065 +0.756957 +0.408312 +0.823470 +0.477521 +0.450340 +0.543192 +0.899786 +0.860981 +0.839884 +0.762031 +0.998132 +0.898877 +0.856279 +-85.260199 +0.912135 +0.607743 +0.501045 +-35858.916734 +0.421255 +0.205394 +0.326027 +0.457333 +0.617969 +0.185284 +0.505175 +0.651806 +0.686130 +0.277539 +0.339879 +0.356987 +0.172000 +0.405913 +0.480389 +0.521892 +0.281326 +0.769070 +0.697034 +0.753513 +0.600510 +0.637610 +0.199949 +0.493828 +0.375597 +0.359800 +0.374889 +0.179542 +0.809607 +0.199821 +0.911604 +0.147555 +0.744922 +0.445968 +0.812301 +0.649249 +0.487936 +0.437616 +0.827046 +0.369219 +0.880062 +0.901779 +0.626931 +0.597919 +0.789321 +0.938461 +0.375640 +0.629384 +0.800037 +0.361890 +0.881498 +0.566880 +0.733148 +0.587298 +0.893292 +0.865942 +0.912791 +0.868126 +0.897887 +0.614712 +0.800800 +0.098134 +0.706967 +0.546062 +0.306033 +0.541197 +0.905147 +0.545738 +0.729187 +0.900885 +0.889618 +0.903618 +0.683549 +0.369505 +0.849315 +0.886596 +0.859629 +0.930012 +0.914200 +0.898848 +0.906380 +0.914040 +0.914136 +0.914136 +0.698978 +0.953117 +0.845062 +0.305886 +0.782259 +0.837335 +0.726035 +0.697493 +0.711450 +0.251150 +0.205435 +0.571816 +0.846985 +0.811187 +0.918155 +0.667700 +0.464965 +0.605456 +0.994660 +0.203896 +0.999948 +0.174435 +0.184922 +0.577307 +0.111887 +0.227312 +0.919529 +-74.197942 +0.927787 +0.676012 +0.773579 +0.893053 +0.855755 +0.616983 +0.560348 +0.763095 +0.801793 +0.766732 +0.012420 +0.880697 +0.900229 +0.589814 +0.881875 +-0.065757 +0.478033 +0.405341 +0.413742 +0.368445 +0.544100 +0.501309 +0.416467 +0.655269 +0.031784 +0.803739 +0.561868 +0.784801 +0.827964 +0.480430 +0.102798 +0.292861 +0.952253 +0.966420 +0.520958 +0.262370 +0.498859 +0.977998 +0.095389 +0.976155 +0.968694 +0.422320 +0.166356 +0.685086 +-0.026701 +0.596808 +0.501237 +0.583926 +0.931754 +0.273431 +0.248228 +0.715655 +0.922066 +0.950248 +0.451900 +0.500714 +0.949308 +0.936062 +0.967763 +0.719438 +0.594982 +0.081084 +0.815521 +0.673321 +0.497249 +0.974340 +0.925211 +0.587106 +0.628093 +0.966319 +0.677892 +0.297154 +0.439926 +0.501721 +0.919049 +-0.088199 +0.593664 +0.563326 +0.747714 +0.943452 +0.467885 +0.930652 +0.674601 +0.462045 +0.468453 +0.526731 +0.368624 +0.249444 +0.548924 +0.373974 +0.584162 +0.936147 +0.437279 +0.586124 +0.832068 +0.836596 +0.613508 +0.995208 +0.537443 +0.845718 +0.845717 +0.912555 +0.786902 +0.846331 +0.069698 +0.278210 +0.773634 +0.357363 +0.797116 +0.834069 +0.428835 +0.528039 +0.397501 +0.602829 +0.557884 +0.882782 +0.734384 +0.904903 +0.992132 +0.583006 +0.212032 +0.962388 +0.219095 +0.345517 +0.818709 +0.596149 +0.650905 +0.866795 +0.136136 +0.181140 +0.948176 +0.225144 +0.344901 +0.345719 +0.400212 +0.659313 +0.761981 +0.823249 +0.590402 +0.350946 +0.974516 +0.580494 +0.436355 +0.121737 +0.898653 +0.652032 +0.825370 +0.747632 +0.714629 +0.872406 +0.766796 +0.751688 +0.563679 +0.478570 +0.256623 +0.317760 +0.973417 +0.642212 +0.434322 +0.612375 +0.638350 +0.862239 +0.754710 +0.698724 +0.744765 +0.618306 +0.576544 +0.290420 +0.626369 +0.869404 +0.788702 +0.717153 +0.800726 +0.604165 +0.629983 +0.594108 +0.566863 +0.506052 +0.892647 +0.527439 +0.532833 +0.298332 +0.714260 +0.116740 +0.309153 +0.041421 +0.636306 +0.242692 +0.060223 +0.034452 +0.039274 +0.401096 +0.310737 +0.737837 +0.807195 +0.330227 +0.045845 +-0.031309 +0.092998 +-0.016802 +0.885642 +0.858276 +0.205029 +0.236306 +0.397244 +0.194332 +0.424683 +0.362961 +0.605071 +0.254366 +0.807525 +-0.166289 +0.889526 +0.183506 +0.074761 +0.228659 +0.129791 +0.031590 +0.088035 +0.103352 +0.049068 +-0.137808 +0.845987 +0.130370 +0.019529 +0.445409 +-0.368172 +0.894516 +0.563476 +0.867873 +0.877675 +0.940205 +0.659419 +0.838617 +0.947659 +0.519682 +0.574462 +0.791999 +-5.068372 +0.404208 +0.312277 +0.375940 +0.895956 +0.662601 +0.059393 +0.609289 +0.341633 +0.597029 +-4.358486 +0.967799 +0.475819 +-10.260817 +-15.394386 +0.642964 +-2.656565 +0.894938 +0.242719 +-601.823041 +0.320023 +0.385368 +0.299129 +0.553168 +0.194175 +0.562731 +0.562731 +0.462166 +0.356345 +0.548061 +0.546308 +0.773194 +0.653306 +0.817711 +0.583856 +0.596387 +0.626910 +0.664106 +0.850595 +0.376801 +0.912748 +0.235193 +0.786433 +0.889408 +0.204535 +0.594538 +0.452894 +0.518840 +0.320776 +0.660278 +0.736391 +0.612607 +0.635870 +0.686915 +0.688539 +0.730379 +0.634703 +0.817169 +0.436171 +0.219506 +-56.442775 +0.774897 +0.607687 +0.677685 +0.860071 +0.477721 +-20.105069 +0.583416 +0.677459 +0.961215 +0.696311 +0.511329 +0.801557 +0.468846 +0.775612 +0.484778 +0.782363 +0.587034 +0.680074 +0.815087 +0.924317 +0.713359 +0.677818 +0.825755 +0.416153 +0.857031 +0.557240 +0.968422 +-0.535834 +0.955027 +0.165135 +0.868876 +0.981287 +0.157992 +0.610654 +0.929390 +0.923771 +0.512730 +0.495363 +0.719492 +0.942139 +0.770333 +0.798278 +0.618565 +0.894844 +0.695904 +0.117336 +0.638505 +0.578875 +0.209714 +0.494270 +-0.207814 +0.537064 +0.685099 +0.605606 +0.383449 +0.457523 +0.365377 +0.767200 +0.796100 +0.373012 +0.327318 +0.758183 +0.677456 +0.846011 +-8.668842 +0.731562 +0.659986 +0.746394 +0.368759 +0.147535 +0.297880 +0.556868 +0.295128 +0.351837 +0.983808 +0.935940 +0.250555 +0.305445 +0.664209 +0.161572 +0.569940 +0.497621 +0.858814 +0.485483 +0.620445 +0.525066 +0.447303 +0.447304 +0.867923 +0.445905 +0.479161 +0.927228 +0.897251 +0.898750 +0.536122 +0.901983 +0.780449 +0.824882 +0.768604 +0.606166 +0.399271 +0.834519 +-32.542803 +0.424670 +0.873776 +0.686542 +0.821646 +0.758063 +0.540923 +-47.555103 +0.781089 +0.495864 +0.889100 +0.910403 +0.184737 +0.537596 +0.200600 +0.459397 +0.576841 +0.687235 +0.736965 +0.218860 +0.973776 +0.311784 +0.577815 +0.570985 +0.892319 +0.849753 +0.722545 +0.374929 +0.302621 +0.272191 +0.955693 +0.688844 +0.763698 +0.216009 +0.408538 +-0.028425 +0.329503 +0.602076 +0.815802 +0.111174 +0.253273 +0.667497 +0.175228 +0.351214 +-0.198982 +0.436936 +0.006801 +0.256919 +0.883816 +0.798847 +0.803108 +0.768859 +0.799838 +0.795470 +0.835013 +0.920860 +0.941566 +0.592121 +0.906492 +0.672243 +0.704427 +0.997662 +0.948488 +0.613356 +0.967734 +0.689616 +0.825468 +0.982521 +0.915912 +0.895391 +0.949606 +0.929295 +0.995214 +0.748895 +0.893261 +0.905422 +0.641354 +0.856485 +0.739809 +0.709383 +0.723336 +0.915187 +0.922808 +0.930733 +0.923537 +0.920171 +0.840768 +0.775596 +0.716868 +0.919372 +0.891877 +0.754197 +0.583487 +0.833428 +0.570442 +0.958641 +0.728323 +0.940000 +0.709544 +0.758081 +0.512646 +0.916184 +0.724266 +0.922239 +0.916924 +0.696189 +0.925166 +0.928500 +0.923120 +0.914873 +0.951963 +0.890940 +0.186494 +0.490887 +0.922169 +0.181118 +0.148120 +0.196461 +0.913779 +0.817932 +0.151737 +0.899967 +0.926465 +0.410576 +0.395006 +0.165533 +0.454340 +0.421519 +0.910680 +0.983239 +0.565495 +0.759428 +0.407681 +0.230184 +0.933396 +0.486708 +0.931243 +0.913531 +0.956860 +0.200741 +0.926817 +0.886295 +0.905448 +0.876423 +0.321643 +0.924573 +0.868869 +0.411823 +0.993768 +0.933825 +0.428619 +0.523781 +0.972734 +0.106529 +0.334180 +0.334180 +0.566830 +0.484775 +0.956012 +0.930495 +0.288209 +0.522778 +0.919475 +0.900091 +0.940091 +0.541474 +0.978768 +0.631258 +0.806803 +-38.382760 +0.743200 +0.903882 +0.327115 +0.660992 +-34.773183 +0.770428 +0.851238 +0.985169 +-36.767196 +0.570714 +0.685684 +0.909941 +0.947191 +0.903497 +0.902444 +0.930797 +0.980276 +0.597565 +0.829613 +0.774060 +0.682912 +0.318694 +0.632018 +0.808493 +0.737113 +0.916543 +0.792479 +0.916463 +0.843370 +0.933434 +0.914961 +0.930529 +0.915811 +0.767217 +0.946617 +0.654814 +0.564555 +0.720375 +0.932101 +0.676048 +0.505064 +0.411826 +0.653404 +0.961386 +0.511655 +0.846507 +0.683953 +0.276357 +0.342059 +0.946805 +0.145612 +0.215550 +-1.802450 +0.285298 +-0.075193 +0.957142 +0.075903 +0.630172 +0.858672 +0.317150 +0.269537 +0.260017 +0.313174 +0.018505 +0.859537 +0.378984 +0.319849 +-1.349112 +0.596152 +0.891158 +0.522679 +0.528231 +0.063600 +0.926380 +0.303709 +0.204773 +0.893612 +0.386755 +0.715829 +0.035632 +0.180519 +0.973303 +0.355505 +0.990110 +0.834082 +0.986037 +0.728971 +0.684586 +0.810985 +0.714469 +0.921572 +0.906412 +0.906572 +0.918183 +0.921796 +0.685960 +0.781932 +0.883877 +0.877542 +0.886558 +0.902719 +0.753056 +0.890715 +0.817585 +0.833342 +-0.260333 +0.558464 +0.767217 +0.897946 +0.789488 +0.508884 +0.848419 +0.685633 +0.350972 +0.432543 +0.660921 +0.716824 +0.593173 +0.457285 +0.605751 +0.683323 +0.613707 +0.681556 +0.504402 +0.302524 +0.875474 +0.435982 +0.582410 +0.947746 +0.190347 +-0.178122 +0.993491 +0.547880 +0.389859 +0.328539 +0.575899 +0.846979 +0.696152 +0.522927 +0.994961 +0.766893 +0.816992 +0.901937 +0.776681 +0.585932 +0.765472 +0.601180 +0.837154 +0.819140 +0.759402 +0.798522 +0.912247 +0.825017 +0.705485 +0.796617 +0.948849 +0.630381 +0.596689 +0.892110 +0.926856 +0.293876 +0.916930 +0.777827 +0.629670 +0.973674 +0.748702 +0.414663 +0.659857 +0.618425 +0.929847 +0.602731 +0.840578 +0.217371 +0.253286 +0.498877 +0.510599 +0.635130 +0.196170 +0.582741 +0.225080 +0.817174 +0.350545 +0.395700 +0.745301 +0.745089 +0.898487 +0.744174 +0.730478 +0.747135 +0.773096 +0.752185 +0.850219 +0.708450 +0.796036 +0.658567 +0.736886 +-8.360650 +0.882282 +0.877465 +0.747174 +-1.012616 +0.425366 +0.669915 +0.848257 +0.502391 +0.664249 +0.580891 +0.552300 +0.570464 +0.601661 +0.543963 +0.220090 +0.729277 +0.441356 +0.275793 +0.880843 +0.427553 +0.447528 +0.961884 +0.812582 +0.329941 +0.771676 +0.958287 +0.950078 +0.882089 +0.009821 +-1.426084 +0.799514 +0.786970 +0.417257 +0.940667 +0.800299 +0.724932 +-3.506237 +0.332660 +0.647345 +0.472962 +0.839663 +0.126327 +0.850504 +0.322252 +0.764941 +0.765691 +0.921217 +0.934466 +0.973798 +0.877888 +0.049134 +0.679075 +0.776543 +0.217855 +0.830447 +0.910246 +0.896710 +0.215228 +0.900124 +0.934874 +0.763529 +0.864774 +0.408017 +0.925594 +0.400830 +0.468150 +0.144965 +0.841275 +0.860319 +0.560560 +0.684303 +0.903343 +0.886116 +0.804437 +0.835848 +0.781150 +0.893110 +-1.078915 +0.902726 +0.574267 +-1.381498 +-0.191620 +-1.153620 +0.179960 +-15.808654 +0.847887 +0.026389 +0.103387 +-0.305392 +0.996070 +0.792052 +0.462891 +0.496945 +0.674383 +0.340682 +0.979275 +0.505776 +0.741370 +0.999687 +0.503531 +0.439402 +0.441218 +0.920811 +0.876369 +0.464770 +0.973544 +0.148259 +0.565026 +0.695417 +0.935376 +0.472914 +0.462855 +0.471379 +0.641820 +0.643394 +0.150766 +0.615616 +0.411168 +0.912656 +0.946335 +0.360597 +0.992880 +0.792638 +-0.138994 +0.941024 +0.887992 +0.384760 +0.436013 +0.594016 +0.952882 +0.931473 +0.585460 +0.205580 +0.775934 +0.938041 +0.410388 +0.566950 +0.975020 +0.966482 +0.376357 +0.962629 +0.682007 +0.184157 +0.246884 +0.255797 +0.463170 +0.884633 +0.483726 +0.303808 +0.427573 +0.091278 +0.909840 +0.807282 +0.144784 +0.849414 +0.999104 +0.869446 +0.252112 +0.515327 +0.160665 +0.558251 +0.995918 +0.794822 +0.379245 +0.874897 +0.914987 +0.490534 +0.368710 +0.947998 +0.806621 +0.912473 +0.349021 +0.452554 +0.476856 +0.291672 +0.986351 +0.746907 +0.669133 +0.997913 +0.297828 +0.324293 +0.936957 +0.925263 +0.784219 +0.857402 +0.375456 +0.857384 +0.460922 +0.789326 +0.613044 +0.964226 +0.749055 +0.855571 +0.953050 +0.065318 +0.993128 +0.959930 +0.844347 +0.490545 +0.425309 +0.508998 +0.590723 +0.912451 +0.913866 +0.753804 +0.069989 +0.997269 +0.272379 +0.568674 +0.786612 +0.927434 +0.487573 +0.909097 +0.956417 +0.919030 +0.770128 +0.490371 +0.709221 +0.409805 +0.037345 +0.326109 +0.610952 +0.139477 +0.640010 +0.915186 +0.609054 +0.481439 +0.898647 +0.941231 +0.641684 +0.904966 +0.468985 +0.937952 +0.918897 +0.730642 +0.477841 +0.200811 +0.827295 +0.553557 +0.756605 +0.651272 +0.559541 +0.930482 +0.514005 +0.946952 +0.992693 +0.495047 +0.935910 +0.351857 +0.424442 +0.919019 +0.918786 +0.523441 +0.444613 +0.914104 +0.916792 +0.754924 +0.538093 +0.620055 +0.935672 +0.925050 +0.927657 +0.355907 +0.539379 +0.942389 +0.920219 +0.947750 +0.920528 +0.925448 +0.524413 +0.568158 +0.591076 +0.481335 +0.656417 +0.262670 +0.190211 +0.918404 +0.262494 +0.497607 +0.611456 +0.074096 +0.442928 +-3.698376 +0.122182 +-0.305616 +0.903798 +0.155621 +0.016324 +0.123790 +0.260017 +0.475030 +0.802474 +0.014494 +0.243202 +0.140772 +0.146862 +0.202086 +-5.099403 +-0.007105 +0.011553 +0.607508 +0.607973 +0.439737 +0.478970 +0.453723 +0.426019 +0.882851 +0.501439 +0.429304 +0.502435 +0.631327 +0.766701 +0.712078 +0.754932 +0.747331 +0.840971 +0.739017 +0.645659 +0.711725 +0.682623 +0.956599 +0.730899 +0.961720 +0.748938 +0.852039 +0.128188 +0.716653 +0.553512 +0.703688 +0.484524 +0.591904 +0.271608 +0.196348 +-15.508263 +0.765735 +-0.278597 +0.152284 +-0.464247 +0.381186 +0.857660 +0.542009 +0.758550 +0.827037 +0.369496 +0.862298 +0.837308 +0.851851 +0.872705 +0.974600 +0.893353 +0.242580 +0.749210 +0.811617 +0.834621 +0.527172 +0.921960 +0.920382 +0.756756 +0.895616 +0.041635 +0.991494 +0.451603 +0.846988 +0.894456 +0.097261 +-2.347768 +0.928427 +0.428828 +-0.523641 +0.843582 +0.468004 +-3.028199 +0.357039 +0.260133 +0.130132 +0.146207 +0.146103 +0.530211 +0.225915 +0.523192 +0.813354 +0.250738 +0.953863 +0.665666 +0.118454 +0.578240 +0.030873 +0.149892 +0.214583 +0.993476 +-0.023718 +0.926163 +0.636466 +0.505401 +0.346959 +0.489727 +0.906108 +-54.635545 +0.542291 +0.978215 +0.959144 +0.661944 +0.162369 +0.113193 +0.479748 +0.747016 +0.593616 +0.295556 +0.668126 +0.761950 +0.697783 +0.772777 +0.634757 +0.732857 +0.729615 +0.809968 +0.745739 +0.419639 +0.904928 +0.747202 +0.675244 +0.787698 +0.871489 +0.627178 +0.967953 +0.975207 +0.309274 +0.753621 +0.800292 +0.675150 +0.947265 +0.730057 +0.733105 +0.671212 +0.553407 +0.753028 +0.695605 +0.768372 +0.792393 +0.766327 +0.763967 +0.565290 +0.762719 +0.803807 +0.807150 +0.146134 +0.762654 +0.735070 +0.708070 +0.588075 +0.710383 +0.888749 +0.669621 +0.659304 +0.912417 +0.405913 +0.731435 +0.847675 +0.838625 +0.871018 +0.653407 +0.457255 +0.582506 +-0.527860 +0.676190 +0.970381 +0.923431 +0.557999 +0.612139 +0.184512 +0.258386 +0.330960 +0.626800 +0.139641 +0.588391 +0.461975 +0.355853 +0.324375 +0.769338 +0.575050 +0.397250 +0.256031 +0.775170 +0.971015 +0.725374 +0.214330 +0.281737 +0.374724 +0.911214 +0.307890 +0.783326 +0.359390 +0.313060 +0.285913 +0.929830 +-9.752137 +0.786509 +0.725322 +0.416159 +-6.849545 +0.744050 +0.611832 +0.506062 +0.466769 +-60.201389 +-4.713351 +0.500015 +0.810406 +-7.515074 +0.781853 +0.732810 +0.747452 +0.955668 +0.926714 +0.927523 +0.845729 +0.771234 +0.745177 +0.760200 +0.861511 +0.930914 +0.927653 +0.933903 +0.925907 +0.923647 +0.914317 +0.935487 +0.924731 +0.731728 +0.785472 +0.795307 +0.633472 +0.862177 +0.659400 +0.699162 +0.581290 +-0.026296 +0.243810 +0.043233 +0.577734 +0.061032 +0.292740 +0.263066 +0.698302 +0.209395 +-0.061737 +0.771486 +0.602122 +0.018064 +-0.038545 +0.186540 +0.838891 +0.573219 +0.576173 +0.700597 +0.285623 +0.802795 +0.452800 +0.769535 +0.731995 +0.675924 +0.912260 +0.895848 +0.800152 +0.843208 +0.637953 +0.673605 +0.788678 +0.893431 +0.447936 +0.941396 +0.418964 +0.953486 +0.903950 +0.355409 +0.385703 +0.912298 +0.460347 +0.439365 +0.422492 +0.662164 +0.693831 +0.907399 +0.298090 +0.440256 +0.967009 +0.917819 +0.311646 +0.750278 +0.842768 +0.448015 +0.958735 +0.802364 +0.559901 +0.929230 +0.888363 +0.493589 +0.287399 +0.421429 +0.312311 +0.525197 +0.507253 +0.596228 +0.409011 +-49.137811 +0.623415 +0.644761 +0.972090 +-233.411222 +0.667277 +0.591512 +0.974448 +0.692096 +0.928003 +0.715416 +0.859183 +0.268498 +0.622831 +0.959011 +0.429105 +0.377050 +0.697765 +0.985205 +0.297372 +0.206828 +0.169607 +0.235988 +0.944871 +0.343647 +0.892495 +0.660389 +0.888556 +0.920912 +0.807150 +0.346798 +0.242264 +0.250788 +0.490769 +0.203930 +0.999689 +0.504585 +0.247288 +0.419003 +0.418558 +0.469481 +0.518034 +0.222117 +0.621071 +0.323129 +0.449386 +0.391293 +0.763967 +0.951577 +0.554866 +0.989771 +0.793047 +0.745216 +0.724335 +-30.839123 +-27.150617 +0.875399 +0.262355 +0.318760 +0.261595 +0.734986 +0.767314 +0.199939 +-254.680680 +-273.662616 +-2.825588 +-101.440864 +0.656447 +0.438319 +0.571260 +0.306733 +0.185654 +0.341056 +0.192783 +0.319548 +0.816507 +0.350793 +0.794163 +0.946150 +-0.009602 +0.276635 +0.846384 +0.927233 +0.574956 +0.438226 +0.627508 +0.839489 +0.721647 +0.910666 +0.976466 +0.677886 +0.006305 +0.210571 +0.092523 +-9.454550 +0.072047 +0.255259 +0.008526 +0.709080 +0.058259 +0.111165 +0.873122 +0.342002 +0.440231 +0.565428 +0.144355 +0.487674 +0.096179 +0.318626 +0.071621 +0.701835 +-0.015107 +0.463313 +0.168229 +0.875100 +0.819671 +0.633095 +0.852502 +0.116759 +0.308574 +0.873105 +0.459104 +0.495367 +0.181632 +0.554613 +0.554917 +-1.072189 +0.650141 +0.935022 +0.842061 +0.341687 +0.852010 +0.888839 +0.757141 +0.992741 +0.972407 +0.750049 +0.783619 +0.703676 +0.901526 +0.805802 +0.533993 +0.808675 +0.713852 +0.924179 +0.974286 +0.969860 +0.923372 +0.636348 +0.956404 +0.782537 +0.997767 +0.892458 +0.897580 +0.808157 +0.679681 +0.910729 +0.842000 +0.415061 +0.776015 +0.976649 +0.844118 +0.244052 +0.670861 +0.998622 +0.943544 +0.712084 +0.768222 +0.967872 +0.960985 +0.838323 +0.935146 +0.941253 +0.798972 +0.346551 +0.901709 +0.921479 +0.783211 +0.610724 +0.714099 +0.727200 +0.901158 +0.643987 +0.954096 +0.630496 +0.678147 +0.403673 +0.935691 +0.688065 +0.487518 +0.475919 +0.503494 +0.476555 +0.905810 +0.931442 +0.832236 +0.586090 +0.765236 +0.721407 +0.926215 +0.392205 +0.554153 +0.964216 +0.759007 +0.914475 +0.853089 +0.324747 +0.624153 +0.616410 +0.119131 +0.800505 +0.937432 +0.641780 +0.643461 +0.692063 +0.732041 +0.455872 +0.335955 +0.912081 +0.933817 +0.931461 +0.922326 +0.712486 +0.924649 +0.796483 +0.918040 +0.939197 +0.985176 +0.463569 +0.827525 +0.903247 +0.919747 +0.912589 +0.646597 +0.005727 +0.788532 +0.567515 +0.272797 +0.227506 +0.325688 +0.138593 +0.911310 +0.826605 +0.283345 +0.932097 +0.829978 +0.775463 +0.971754 +0.798953 +0.826366 +0.965783 +0.704668 +0.892418 +0.943804 +0.925563 +0.866433 +0.496770 +0.490721 +0.998556 +0.820516 +0.633024 +0.794019 +0.672809 +0.744761 +0.875425 +0.849373 +0.912432 +0.955305 +0.710328 +0.635156 +0.805878 +0.533869 +-30.125757 +0.832887 +0.510261 +0.812762 +0.429883 +0.471068 +0.752309 +0.850995 +0.898488 +0.942308 +0.024343 +0.019119 +0.013171 +0.548470 +0.913601 +0.480684 +0.437551 +0.263912 +0.406665 +0.357957 +0.648752 +0.422859 +0.633467 +0.162496 +0.573361 +0.520380 +0.274780 +0.472125 +0.272107 +0.172915 +0.462375 +0.347828 +0.375963 +0.539670 +0.368915 +0.982162 +0.823923 +0.305379 +0.512278 +0.655729 +0.585240 +0.319434 +-0.012205 +0.213003 +0.029113 +0.353484 +-0.432464 +0.660334 +-0.219344 +0.463650 +0.659449 +0.939086 +0.377862 +0.796096 +-0.092947 +0.885149 +0.448269 +0.663642 +0.554737 +0.352440 +0.866789 +0.876767 +0.576174 +0.931569 +0.575497 +0.987185 +0.994000 +0.731325 +0.594178 +0.712787 +0.461618 +0.709285 +0.770696 +0.898596 +0.390696 +0.646287 +0.021434 +0.546703 +0.386504 +0.879618 +0.778805 +-3.947592 +0.833688 +0.657420 +0.422571 +0.417003 +0.386679 +0.311323 +0.502727 +0.842818 +0.149190 +0.209751 +0.765804 +0.188989 +0.479766 +0.953846 +0.429113 +0.505593 +0.832459 +0.324531 +0.577794 +0.421276 +0.718894 +0.079168 +0.417510 +0.103167 +0.111875 +0.698923 +0.634941 +0.722162 +-65.950967 +-0.747729 +-0.285204 +0.405159 +0.532096 +0.847268 +0.433956 +0.253598 +0.763824 +0.276362 +0.279531 +0.420950 +0.184709 +0.629723 +0.432812 +0.395048 +0.894025 +-0.157037 +0.671634 +0.923850 +0.927862 +0.923815 +0.931181 +0.907769 +0.931018 +0.909639 +0.738378 +0.691431 +0.901710 +0.744549 +0.886112 +0.688980 +0.799715 +0.772882 +0.653499 +0.499567 +0.927803 +0.815031 +0.825881 +0.599991 +0.811885 +0.930272 +0.779775 +0.770845 +0.400472 +0.779650 +0.804420 +0.949646 +0.957557 +0.542847 +0.854080 +0.985029 +0.733164 +0.915529 +0.843314 +0.951674 +0.754554 +0.831444 +0.866754 +0.847852 +0.843487 +0.631622 +0.476426 +0.469354 +0.829456 +0.762403 +0.274922 +0.975395 +0.844916 +0.830196 +0.857091 +0.430874 +0.739005 +0.820885 +0.970265 +0.792699 +0.728454 +0.395426 +0.615634 +0.281539 +0.358870 +0.322750 +0.413821 +0.765210 +0.827502 +0.696269 +0.749439 +0.726476 +0.728386 +0.796937 +0.745563 +0.660385 +0.600330 +0.999508 +0.731018 +0.722171 +0.740831 +0.701470 +0.761957 +0.503338 +0.555893 +0.821098 +-0.005167 +0.772300 +0.513381 +0.869911 +0.472106 +0.645075 +0.085398 +0.674352 +0.408199 +0.318390 +0.043518 +0.493524 +0.532029 +0.082113 +0.154513 +0.658056 +0.593371 +0.400465 +0.495389 +0.460797 +0.436200 +0.015134 +0.929886 +0.505002 +0.998220 +0.053896 +0.274505 +0.145992 +0.478893 +0.131773 +0.609113 +0.354924 +0.555663 +0.391759 +0.453073 +0.776751 +0.887088 +0.371828 +0.409751 +0.048445 +0.816458 +0.908905 +0.389122 +0.683615 +0.768590 +0.972907 +0.952134 +0.900721 +0.561803 +0.565384 +0.537643 +0.860687 +0.420887 +0.878658 +0.825042 +0.939048 +0.996814 +0.643327 +0.519874 +0.347427 +0.068563 +0.619829 +0.227146 +-4.171675 +0.853170 +0.088199 +0.378944 +0.619710 +0.885838 +0.324228 +0.416655 +-1.083699 +0.220862 +0.305843 +0.899353 +0.374768 +0.779635 +0.393631 +0.880856 +0.232929 +0.615894 +0.241947 +0.522123 +0.948597 +0.084372 +0.061239 +0.377345 +0.236957 +0.341213 +0.029804 +0.800667 +0.010663 +0.238875 +0.541178 +0.266200 +0.866406 +0.064736 +0.284058 +0.071061 +-0.703099 +-21.308549 +0.238079 +-0.464102 +-12.925051 +0.303706 +0.043854 +0.056594 +0.132421 +0.098839 +0.471829 +0.040768 +0.563873 +0.948625 +0.061679 +0.724363 +0.528562 +0.213183 +-0.026553 +0.202131 +0.443967 +0.407683 +0.882804 +-0.141530 +-0.903860 +0.673359 +-0.068638 +0.684555 +0.419662 +-0.333816 +0.933497 +0.888658 +0.636862 +0.819599 +0.663278 +0.809586 +0.427584 +0.044505 +0.576738 +0.767497 +0.350928 +0.733355 +0.970402 +0.900125 +0.863186 +0.786046 +0.732003 +0.446490 +0.493345 +0.890683 +0.857317 +0.873660 +0.525871 +0.784496 +0.749991 +0.593712 +0.939367 +0.935687 +0.986894 +0.625594 +0.708500 +0.919976 +0.581583 +0.740180 +-1.230619 +0.445313 +0.912994 +0.024417 +0.459916 +0.407324 +0.509975 +0.911094 +0.140991 +0.563389 +0.606908 +0.500167 +0.465793 +0.919230 +0.915907 +0.477855 +0.915543 +0.595127 +0.548121 +0.313499 +-0.120201 +0.241450 +0.481883 +0.810668 +0.370636 +0.524641 +0.516412 +0.926233 +0.570047 +0.589761 +0.965429 +0.674273 +0.940835 +0.592175 +0.489650 +0.489789 +-1.380439 +0.806218 +0.504977 +0.619157 +0.461218 +0.907841 +0.756733 +0.500956 +0.400954 +0.867701 +0.618922 +0.657620 +0.622479 +0.643725 +0.872126 +0.429689 +0.773993 +0.729019 +0.300278 +0.495907 +0.906601 +0.917037 +0.611156 +0.422168 +0.628460 +0.427353 +0.550306 +0.646512 +0.824891 +0.748764 +0.762410 +0.821834 +0.770552 +0.794255 +0.772972 +0.734558 +0.783459 +0.640439 +0.868540 +0.735552 +0.679778 +0.724765 +0.803781 +0.949435 +0.825467 +0.683349 +0.585203 +0.152949 +0.146516 +0.378343 +0.468728 +0.584374 +0.322484 +0.838069 +-0.295720 +0.238041 +0.148300 +0.241492 +-0.010565 +0.263838 +0.284327 +0.312230 +0.917393 +0.950998 +0.978367 +0.837295 +0.843551 +0.888531 +0.884123 +0.984891 +0.957086 +0.826334 +0.615944 +0.977195 +0.888362 +0.763075 +0.935761 +0.518788 +0.491329 +0.376686 +0.768918 +0.984669 +0.932573 +0.473785 +0.672950 +0.669872 +-0.149866 +0.998057 +-2.780282 +0.655893 +0.955010 +0.264962 +0.433184 +0.837151 +0.797298 +0.969631 +0.969941 +0.524968 +0.553428 +0.146687 +0.972225 +0.398148 +0.396010 +0.919166 +0.102828 +0.501772 +0.636183 +0.362815 +0.995447 +0.966932 +0.735753 +0.088372 +0.775085 +0.617882 +0.242348 +0.294306 +0.448478 +0.719076 +0.486835 +0.409117 +0.674189 +0.290540 +0.517614 +0.142381 +0.946096 +0.395758 +0.103419 +0.628956 +0.886785 +-0.033484 +0.842417 +0.876527 +0.937737 +0.795622 +0.902919 +-1.014468 +0.975781 +0.840180 +0.599818 +0.897772 +0.853771 +0.841216 +0.832263 +0.935872 +0.920143 +0.727160 +0.978827 +0.907065 +0.577372 +0.939721 +0.395088 +0.460816 +0.932026 +0.826810 +0.761818 +0.154072 +0.943397 +0.947910 +0.823295 +0.900237 +0.815356 +0.832414 +0.939065 +0.456303 +0.751840 +0.808790 +0.100471 +0.934767 +0.975930 +0.333666 +0.768077 +0.748892 +0.881254 +0.848770 +0.363069 +0.916798 +0.788469 +0.751166 +0.206002 +0.057993 +0.907939 +0.998472 +0.549088 +-0.207787 +0.408864 +0.665427 +0.492627 +0.334675 +0.898303 +0.261691 +0.436553 +0.027458 +0.925783 +0.822466 +-4.779366 +0.577372 +0.062061 +0.833445 +0.940869 +0.069683 +0.355182 +-0.212266 +0.080143 +0.885871 +0.387215 +0.224212 +0.206307 +0.461152 +0.303213 +0.354252 +0.113690 +0.921144 +0.824149 +0.688654 +0.461296 +0.990844 +0.509175 +0.818629 +0.853524 +0.598237 +0.925441 +0.490744 +0.857551 +0.807456 +0.936483 +0.970861 +0.891622 +0.737773 +0.735967 +0.732426 +0.721413 +0.778538 +-2.586732 +0.769400 +0.864932 +0.302214 +-0.510071 +0.077701 +0.676133 +0.603140 +0.399195 +0.832950 +0.620179 +0.834983 +0.745287 +0.837898 +0.926932 +0.875302 +0.884147 +0.403976 +0.884312 +0.854592 +0.566446 +0.741035 +0.574412 +0.822552 +0.808926 +0.873626 +0.948832 +0.939521 +0.590216 +0.841229 +0.709548 +0.418039 +0.988621 +0.318349 +0.426102 +0.226941 +-1.868265 +0.223265 +0.769723 +0.889638 +0.995556 +0.321470 +0.555902 +0.349839 +0.860879 +0.452633 +0.449048 +0.816333 +0.744059 +0.990038 +0.510646 +0.835006 +0.998941 +0.503472 +0.975330 +0.392465 +0.750300 +0.562355 +0.428161 +0.194894 +0.827475 +0.751816 +0.605146 +0.000166 +0.728961 +0.960012 +0.334849 +0.483886 +0.145453 +0.426541 +-3.757422 +0.947118 +-0.342699 +0.473888 +0.595362 +0.690459 +0.615765 +0.676742 +0.653610 +0.503585 +0.393966 +0.660156 +0.636264 +0.725559 +0.489603 +0.779356 +0.527604 +0.775506 +0.360461 +0.205443 +0.730355 +0.250734 +0.131892 +0.082582 +0.499972 +-0.053880 +0.348865 +0.406997 +0.469478 +0.170698 +0.298990 +-0.033901 +0.032152 +-0.005530 +0.165844 +0.405229 +0.472046 +0.260927 +0.282996 +0.282999 +0.309805 +0.283611 +0.541284 +0.522464 +0.543470 +0.675832 +0.076333 +0.426494 +0.671287 +-0.250724 +0.513913 +-0.044396 +0.816328 +0.547211 +0.326161 +0.895533 +0.221604 +0.460099 +0.626347 +0.865622 +0.973703 +0.505719 +0.350708 +0.699892 +0.314210 +0.287572 +0.569989 +0.890692 +0.076843 +0.279551 +0.339118 +0.829606 +0.866166 +0.501761 +0.570192 +0.083729 +0.623013 +-0.787116 +0.150905 +-0.228632 +0.133382 +0.183708 +0.721924 +0.269090 +-0.185660 +-0.162198 +0.050504 +0.169145 +0.156542 +0.154014 +0.933130 +-0.079293 +0.759496 +0.843780 +0.644740 +0.389798 +0.954687 +0.933525 +0.785995 +0.929639 +0.607229 +0.968445 +0.866308 +0.933003 +0.820616 +0.844589 +0.690147 +0.939915 +0.886348 +0.793811 +0.917215 +0.471482 +0.407206 +0.937691 +0.787551 +0.991811 +0.532127 +0.930190 +0.930652 +0.561052 +0.950767 +0.853648 +0.887886 +0.858973 +0.734674 +0.880186 +0.942927 +0.836104 +0.864081 +0.690451 +-0.124752 +0.876277 +0.641721 +0.418921 +0.727525 +0.446681 +0.515628 +0.372530 +0.608800 +0.849976 +0.842278 +0.955678 +0.796363 +0.832365 +0.420797 +0.681578 +0.928343 +0.928342 +0.650807 +0.911326 +0.244418 +0.899266 +0.702494 +0.951068 +0.506550 +0.923642 +0.932936 +0.190545 +0.634054 +0.870763 +0.856513 +0.895951 +0.494433 +0.684652 +0.893835 +0.798872 +0.929278 +0.711930 +-0.100893 +0.486114 +0.354848 +0.492169 +0.820344 +0.259650 +0.846984 +0.780462 +0.828012 +0.933004 +0.717705 +0.719753 +0.658463 +0.849244 +0.906608 +0.944583 +0.626497 +0.680514 +0.505909 +0.768453 +0.462804 +0.368389 +0.413099 +0.567358 +0.337365 +0.834052 +0.740578 +0.565637 +0.748064 +0.270801 +0.729332 +0.657462 +0.884646 +0.789471 +0.842103 +0.331935 +-0.388559 +0.586810 +0.810791 +0.653670 +0.605517 +0.831619 +0.832036 +0.694723 +0.807787 +0.663613 +-0.227582 +-0.490461 +0.804948 +0.846331 +0.857150 +0.601143 +0.749628 +0.845807 +0.733049 +-0.181485 +0.612453 +0.537473 +0.489922 +0.473475 +0.716298 +0.705199 +0.385905 +0.624553 +0.206441 +0.142733 +0.946666 +0.242725 +0.047586 +0.305963 +0.499095 +0.344088 +0.633338 +-0.126987 +0.289144 +0.973622 +0.125176 +0.890744 +0.391872 +0.989605 +0.033339 +0.261852 +0.341335 +0.093354 +0.217937 +0.976301 +0.230265 +0.310389 +0.239127 +0.325296 +0.096695 +0.387929 +0.981594 +0.776910 +-0.606145 +0.284801 +0.144919 +0.567669 +0.225526 +0.071574 +0.859963 +0.716754 +0.948482 +0.723042 +-0.686596 +0.085426 +0.792200 +-0.002532 +0.194028 +0.127961 +0.116093 +0.152591 +0.819886 +0.508335 +0.629352 +0.436014 +0.599977 +0.685592 +-0.267817 +0.753830 +0.538693 +0.839918 +0.235763 +0.594549 +0.980421 +0.668322 +0.878810 +0.685733 +0.492700 +0.783544 +0.778216 +0.830190 +0.820980 +-0.132436 +0.509230 +0.441836 +0.867275 +0.992911 +0.636779 +0.660733 +0.737553 +0.958097 +0.866258 +0.846276 +0.957855 +0.706215 +0.579487 +0.867816 +0.097666 +0.040791 +0.558365 +0.128960 +0.911978 +0.991151 +0.819573 +0.628140 +-17.368945 +0.688123 +0.996483 +-0.335608 +-0.064423 +0.898207 +0.906816 +-0.303701 +0.788812 +0.886508 +-664210.272075 +0.749477 +0.313650 +0.221080 +0.382221 +-0.789798 +-0.132271 +0.749500 +0.756025 +0.488835 +0.538656 +0.940476 +0.720986 +0.979061 +0.712737 +0.844739 +0.636307 +0.091311 +0.185530 +0.681003 +0.799530 +0.962553 +0.783312 +0.954530 +0.547814 +0.872144 +0.412339 +0.918284 +0.753807 +0.335445 +0.797809 +0.647163 +0.892130 +0.730252 +0.400067 +0.008117 +0.859889 +0.955370 +0.929690 +0.248905 +-0.028989 +0.774418 +0.203651 +-0.834272 +0.364361 +0.328608 +0.182672 +0.805001 +0.887756 +0.989364 +0.396386 +0.135698 +0.334731 +0.454859 +0.729225 +0.756290 +0.062668 +0.172527 +-55.698682 +0.721061 +-0.330081 +0.386762 +-6.241497 +0.394543 +0.518648 +-0.003255 +0.335150 +0.695580 +0.437296 +0.809387 +0.696587 +0.895565 +0.297971 +-2.100778 +-0.160261 +0.415643 +0.154578 +0.105227 +0.273009 +0.511498 +0.365352 +0.575826 +0.035550 +0.679789 +0.301554 +0.369630 +0.631602 +0.157142 +0.614975 +0.049839 +0.052842 +0.109603 +0.011716 +0.081836 +0.962570 +0.810120 +0.446367 +0.017097 +0.660076 +0.896656 +0.210667 +0.808449 +0.606802 +0.766330 +0.515330 +0.469018 +0.077886 +0.532058 +0.016517 +0.369923 +0.052991 +-0.091455 +0.645497 +0.578126 +0.171171 +0.702622 +-0.022571 +0.219349 +0.726858 +0.259517 +0.154895 +0.629917 +0.223120 +0.020425 +0.239377 +0.947909 +0.724521 +0.448893 +0.626884 +0.298514 +0.015485 +0.048133 +0.026124 +0.159148 +0.393325 +0.336652 +0.358917 +0.969818 +0.533672 +0.870947 +0.600946 +0.226227 +0.839464 +0.876980 +0.214038 +0.222212 +0.097578 +-3.318968 +0.944639 +0.432897 +0.291220 +0.675547 +0.502130 +0.279879 +0.362979 +0.931521 +0.517507 +-0.173892 +0.143270 +0.996832 +0.741941 +0.344503 +0.572680 +-0.007065 +0.639691 +0.926801 +0.983316 +0.889757 +0.991222 +0.769167 +0.889890 +0.981702 +0.884202 +0.905392 +0.972663 +0.307507 +0.842769 +0.403351 +0.165266 +-0.804737 +0.353956 +0.180181 +0.678201 +0.835288 +0.160810 +0.423765 +0.581830 +0.279404 +0.284157 +0.878766 +0.259688 +0.274055 +-0.449055 +0.587341 +0.592801 +0.986644 +0.790260 +0.874066 +0.603964 +0.695385 +0.826924 +0.951518 +0.919716 +0.843704 +0.988904 +0.808179 +0.858164 +0.911838 +-0.133724 +0.909185 +0.853321 +0.025063 +0.903550 +0.893818 +0.884390 +0.846453 +-0.576389 +0.840261 +0.624964 +0.441341 +0.555151 +-0.291843 +0.928310 +-0.342052 +0.192814 +0.529541 +0.836413 +0.897464 +0.399660 +0.506200 +0.553775 +0.814858 +0.908238 +-0.936505 +0.914563 +0.829587 +0.908905 +0.837234 +0.955751 +0.974020 +0.341942 +0.376483 +0.440387 +0.222657 +0.401053 +0.619569 +0.301355 +0.854389 +0.417107 +0.975754 +0.851445 +0.292989 +0.257614 +0.482277 +0.943603 +0.945250 +0.393501 +0.841888 +0.427989 +0.932565 +0.405934 +0.929672 +0.839522 +0.915759 +0.417336 +0.496712 +0.843435 +0.619113 +0.976117 +0.390009 +0.339007 +0.458641 +0.925432 +0.482903 +0.305290 +0.279937 +0.609265 +0.936632 +0.912306 +0.918968 +0.930040 +0.973106 +0.450898 +0.446262 +0.336698 +0.576839 +0.497363 +0.992370 +0.285016 +0.388754 +0.957327 +0.788180 +0.876615 +0.603127 +0.661608 +0.771694 +0.558323 +0.542383 +0.452700 +0.890854 +0.775812 +0.637780 +0.411326 +0.710488 +0.170230 +0.732494 +0.608046 +0.802110 +0.076916 +0.427996 +0.583894 +0.566418 +0.723437 +-0.043017 +0.065049 +0.839966 +0.893124 +0.438172 +0.441890 +0.441890 +0.746918 +0.515456 +0.488555 +0.864002 +0.443110 +0.419314 +0.486824 +0.543962 +0.481636 +0.579440 +0.444213 +0.821659 +0.612108 +0.779627 +0.371271 +0.972043 +0.557828 +0.132318 +0.398620 +0.206781 +0.217845 +0.188584 +0.953912 +0.584333 +0.837711 +0.916798 +0.623927 +0.863613 +0.872597 +0.809962 +-1.788321 +0.409384 +0.304038 +0.254603 +0.756053 +0.433089 +0.605999 +0.520628 +0.087007 +0.553128 +0.273704 +0.317148 +0.101776 +0.101776 +0.010448 +0.696266 +0.702510 +0.523890 +0.555981 +0.057147 +0.317791 +0.710389 +0.580074 +0.700100 +0.408538 +0.026184 +0.180434 +0.970974 +0.224369 +0.313185 +0.663035 +0.474967 +0.498639 +0.548472 +0.636678 +0.089680 +0.936712 +0.591716 +-0.017746 +0.993198 +0.815595 +0.130683 +0.668485 +0.287185 +0.626928 +-0.530957 +-0.007837 +0.400130 +0.176482 +0.175044 +0.255793 +0.806443 +0.053878 +0.693214 +0.704257 +0.349965 +0.014339 +0.959018 +0.885348 +0.132215 +0.195573 +0.508942 +0.020363 +0.069593 +0.235802 +0.740250 +0.219351 +0.042559 +0.922312 +0.691835 +0.656208 +0.438228 +0.506693 +0.571702 +0.213395 +0.115394 +-0.003979 +0.384962 +-0.102120 +0.559245 +0.821895 +0.773952 +0.676883 +0.771896 +0.067919 +0.132466 +-1.063842 +0.917070 +0.268286 +0.823328 +0.457356 +0.205027 +0.473818 +0.422730 +0.558771 +0.346961 +0.765938 +0.790570 +0.586862 +0.532299 +0.613395 +0.497338 +0.512558 +0.664656 +0.922668 +0.933110 +0.786664 +0.817642 +0.783829 +0.928490 +0.384187 +0.379969 +0.605638 +0.445744 +0.817961 +0.204788 +0.345983 +0.266356 +0.563113 +0.456708 +0.952620 +0.423219 +0.407993 +0.280472 +0.817156 +0.914739 +0.870392 +0.787452 +0.441326 +0.952962 +0.254104 +0.793522 +0.597679 +0.746481 +0.787155 +0.502630 +0.915295 +0.638354 +0.940973 +0.598338 +0.503783 +0.767617 +0.886879 +0.641916 +-0.281181 +0.398704 +0.756433 +0.192464 +0.311321 +0.462957 +0.457209 +0.201421 +0.514506 +0.663249 +0.238621 +0.309004 +0.683432 +-0.779313 +0.010903 +0.817725 +0.542135 +0.613999 +0.182117 +0.325680 +0.227882 +0.129649 +0.012254 +0.773713 +0.518454 +0.979088 +0.405437 +0.641264 +0.023577 +0.152860 +-0.024019 +0.116840 +0.719814 +0.001452 +0.930209 +0.522903 +0.049982 +0.532943 +0.365635 +0.356808 +0.656821 +0.506943 +0.693756 +0.153355 +0.195423 +0.922192 +0.462607 +0.022270 +0.268169 +0.626080 +0.150846 +0.243716 +0.428655 +0.569125 +0.270761 +0.340876 +0.287185 +0.303854 +0.637696 +0.499541 +0.785596 +0.009948 +0.987118 +-0.070175 +0.592667 +0.353162 +0.366444 +0.809947 +0.654536 +0.616227 +0.781273 +0.522040 +0.314876 +0.367012 +0.050429 +0.244732 +0.555894 +0.829005 +0.282219 +0.400160 +0.244715 +0.864622 +0.107079 +0.423576 +0.687005 +0.642434 +0.997940 +0.915204 +0.642162 +0.163791 +0.501200 +0.583156 +0.741375 +0.836231 +0.997623 +0.157138 +0.897202 +0.183332 +0.072557 +0.435068 +0.011312 +0.045783 +0.721226 +0.980621 +0.859188 +0.045509 +0.781313 +0.069057 +0.952234 +0.936987 +0.850286 +0.956808 +0.915400 +0.054696 +0.405143 +0.962615 +0.589049 +0.407210 +0.475619 +0.221264 +0.807283 +0.007584 +0.839642 +0.811364 +-0.006676 +0.241373 +0.076024 +0.008798 +0.287997 +0.743180 +0.196729 +0.489004 +0.214512 +0.729262 +0.602424 +0.673381 +0.502225 +-0.149645 +0.873653 +0.955740 +0.985296 +0.942332 +0.937879 +0.518554 +0.340536 +0.924800 +0.967827 +0.788699 +0.861144 +0.457410 +0.945112 +0.686917 +0.861092 +0.521109 +0.922242 +0.543934 +0.285213 +0.412022 +0.921438 +0.185939 +0.992033 +0.744259 +0.675536 +0.514525 +0.431100 +0.716004 +0.748176 +0.144857 +0.416271 +0.971713 +0.710781 +0.930404 +0.137463 +0.937588 +0.970063 +0.566264 +0.952838 +0.324743 +0.427268 +0.733927 +0.837553 +0.890942 +0.863621 +0.989910 +0.980262 +0.925988 +0.938128 +0.924450 +0.746910 +0.994709 +-12.386698 +0.278250 +0.527157 +0.940391 +0.120146 +0.300156 +0.435481 +0.377921 +0.306267 +0.717842 +0.467821 +0.297388 +0.526559 +0.727201 +0.289132 +0.963064 +0.181049 +0.077032 +0.146652 +0.208007 +0.252774 +0.268166 +0.158481 +0.434649 +0.381365 +0.092283 +0.681692 +-1.265880 +0.180477 +0.645638 +0.178449 +0.635324 +-0.357484 +0.642467 +0.342007 +0.235232 +0.942365 +-0.392292 +0.767303 +0.584557 +0.802760 +-0.126075 +0.921365 +0.340063 +0.239417 +0.404084 +0.977339 +0.287180 +0.893599 +0.986292 +-0.276476 +0.458084 +0.681951 +0.424721 +0.675895 +0.052908 +0.500060 +0.909332 +0.079686 +0.396812 +0.551882 +0.632032 +0.588935 +0.763467 +0.551869 +0.551761 +0.666236 +0.415854 +0.651145 +0.576862 +0.576648 +0.576648 +0.827569 +0.934051 +0.565740 +0.285190 +0.011904 +0.003573 +0.162144 +0.454228 +0.886229 +0.790451 +0.210628 +0.682922 +0.904824 +-0.089589 +0.866250 +0.048658 +0.663294 +0.769268 +0.887514 +0.774427 +0.743788 +0.840134 +0.677758 +0.312450 +-0.132958 +0.545910 +0.930358 +0.591693 +-0.185090 +0.842682 +0.525016 +0.480259 +0.910109 +0.130882 +0.862004 +0.590909 +0.045851 +0.008496 +0.661976 +0.382846 +0.258664 +0.725987 +-0.751463 +0.981877 +0.888265 +0.953294 +0.758574 +0.766023 +0.981144 +0.427783 +0.837358 +0.993148 +0.806711 +0.933637 +0.743015 +0.572553 +0.944324 +0.613151 +0.161362 +0.383252 +0.423363 +0.823283 +0.851784 +0.735881 +0.723359 +0.768722 +0.892446 +0.505268 +0.735499 +0.485111 +0.619757 +0.705096 +0.747602 +0.957046 +0.785577 +0.552197 +0.963986 +0.480231 +0.245793 +0.209388 +0.989012 +0.675653 +0.094440 +0.606312 +0.620190 +0.236964 +0.334111 +0.118004 +0.194612 +0.862946 +0.213696 +0.755335 +0.759206 +0.559317 +0.984284 +0.452222 +0.327165 +0.954707 +0.615253 +0.588368 +0.421709 +0.983845 +-0.002038 +0.083261 +-0.011884 +0.955465 +0.487955 +0.816310 +0.445302 +0.862271 +0.232961 +0.978063 +-1.543269 +0.843860 +0.663816 +0.308339 +0.176629 +0.984454 +0.967621 +0.084420 +0.632058 +-0.020496 +0.644072 +0.213384 +0.408016 +0.047628 +0.305224 +0.139797 +-0.024048 +0.662361 +-0.045410 +0.513668 +0.416123 +0.654399 +0.480975 +0.971484 +0.569203 +0.805373 +0.033629 +-1.096303 +0.932517 +0.962309 +0.610000 +0.783604 +0.760786 +0.571234 +0.234400 +0.392751 +0.462850 +-0.336751 +0.931377 +0.706642 +-0.215448 +0.405166 +0.962300 +-0.112382 +0.736405 +0.865808 +0.904959 +0.057310 +0.264937 +0.305978 +0.228478 +0.650860 +0.367351 +0.899621 +0.924779 +0.553471 +0.488763 +0.975042 +0.939438 +0.511216 +0.993671 +0.931755 +0.850906 +0.981457 +0.466153 +0.930434 +-1.051558 +0.832383 +0.681808 +0.861530 +0.865121 +0.890326 +0.708137 +0.275244 +0.803665 +0.958445 +0.534545 +0.861000 +0.961545 +0.729598 +0.693609 +0.937448 +0.861680 +0.919113 +0.888406 +0.886177 +0.753608 +0.933223 +0.988491 +0.214457 +0.902132 +0.686724 +0.352388 +0.914032 +0.415924 +-0.029432 +0.914781 +0.662956 +0.957984 +0.781283 +0.712968 +0.602922 +0.751786 +0.788943 +0.521042 +0.764085 +0.977434 +0.460607 +0.926643 +0.407715 +-0.101381 +0.932755 +0.557934 +0.535780 +0.042844 +-2.757015 +0.878154 +0.960876 +0.839114 +0.229359 +0.360479 +0.337249 +0.521531 +0.849095 +0.365782 +0.160920 +0.134140 +-0.075215 +-1.423840 +0.827975 +0.480095 +0.843171 +0.681286 +0.916714 +0.508740 +0.918140 +0.737545 +0.750872 +0.958084 +0.509895 +0.494515 +0.591304 +0.819726 +0.995203 +0.690668 +0.574580 +0.143717 +0.486222 +0.556879 +0.990409 +0.826836 +0.800155 +0.290852 +0.860053 +0.697974 +0.483012 +0.939912 +0.680941 +0.931299 +0.845424 +0.643778 +0.912101 +0.924734 +0.776021 +0.998539 +0.935422 +0.946601 +0.576587 +0.904794 +-0.170100 +0.934474 +0.392270 +0.393734 +0.528024 +0.934006 +0.932695 +0.959531 +0.932764 +0.927242 +0.927529 +0.930160 +0.935244 +0.982685 +0.935067 +0.929088 +0.570111 +0.505435 +0.749929 +0.855040 +0.802893 +0.538081 +0.568623 +0.998917 +0.841126 +0.916681 +0.610538 +0.900014 +0.853701 +0.865156 +0.450138 +-0.149240 +0.533277 +0.873010 +0.830611 +0.763386 +0.498830 +0.397821 +0.766145 +0.531834 +-0.169700 +0.269798 +0.925333 +0.495245 +0.458384 +0.931767 +0.248049 +0.527859 +0.386801 +0.215938 +-0.032849 +0.083548 +0.749263 +0.164297 +0.406303 +0.321219 +0.188142 +0.022091 +-0.209430 +0.968266 +0.477775 +0.155149 +0.162828 +0.557682 +0.286279 +0.689451 +0.860415 +0.879629 +0.484424 +0.427183 +0.904356 +0.978044 +0.805279 +0.948764 +0.469173 +0.402598 +0.259520 +0.541111 +0.508497 +0.677426 +0.854873 +0.225731 +0.377210 +0.377210 +0.377210 +0.786424 +0.545214 +0.504610 +0.803084 +0.300501 +0.963949 +0.718952 +0.861011 +0.455599 +0.526387 +0.494816 +0.657319 +0.163293 +0.736822 +0.836921 +0.621019 +0.407695 +0.802728 +0.856171 +0.381348 +0.697751 +0.805347 +0.710039 +0.865788 +0.417874 +0.396949 +0.933222 +0.408929 +-0.114674 +0.990235 +0.738679 +0.598219 +0.111234 +0.995837 +0.060515 +0.639194 +0.622197 +-0.419768 +0.849312 +0.694574 +0.129609 +0.728371 +0.222794 +0.991635 +-0.132682 +0.485465 +-0.181578 +0.189817 +0.502658 +0.904767 +0.574377 +0.217362 +0.871747 +0.402338 +0.700467 +0.587123 +0.610418 +0.918321 +0.086869 +0.848641 +0.855111 +0.425023 +0.564142 +0.302801 +0.330055 +0.383528 +0.675373 +0.466052 +-0.379813 +0.711461 +-0.060211 +0.933957 +0.419684 +0.461390 +0.727942 +0.727942 +0.444064 +0.995231 +0.307383 +0.565367 +0.460914 +0.908837 +0.961279 +0.841172 +0.469538 +0.615659 +0.553525 +0.229061 +0.934047 +0.917890 +0.923683 +0.491012 +0.605542 +0.633976 +0.885864 +0.591840 +0.745122 +0.767114 +0.429011 +0.587112 +0.227745 +0.888806 +0.603309 +0.660783 +0.523908 +0.863056 +0.307284 +0.303341 +0.908021 +0.716471 +0.030769 +0.896008 +0.075789 +0.033747 +0.166792 +0.123620 +0.308350 +0.549112 +0.127596 +0.439870 +-3.420672 +0.133776 +0.305852 +0.947266 +0.938931 +0.974301 +0.633097 +0.913454 +0.740527 +0.701300 +0.323101 +0.582771 +0.669440 +0.653638 +0.407265 +0.769064 +0.769635 +0.909544 +0.287437 +0.418025 +0.591676 +0.675685 +0.960850 +0.687013 +0.327765 +0.827028 +0.413903 +-30364.716521 +0.523121 +0.926268 +0.404168 +0.676546 +0.570225 +0.380179 +0.505924 +0.990609 +0.943056 +0.648830 +0.441394 +0.419403 +0.973047 +0.977589 +0.919975 +0.551848 +0.629380 +0.327244 +0.556544 +0.588586 +0.284244 +0.758291 +0.833773 +0.217622 +0.217420 +0.323175 +0.936649 +0.889343 +0.762734 +0.349579 +0.937116 +0.855185 +0.450311 +0.538644 +0.294793 +0.330963 +0.587858 +0.403858 +-1.841143 +0.273646 +0.366446 +0.562151 +0.555855 +0.773824 +0.992748 +0.219101 +-20.231096 +0.217673 +0.147568 +0.891651 +0.707732 +0.747323 +0.951397 +0.268748 +0.121579 +0.252166 +0.065773 +-0.002889 +0.507970 +0.905452 +0.672334 +0.684063 +0.488724 +0.293330 +0.341684 +0.659104 +0.156139 +-0.015737 +0.092099 +0.997536 +0.959482 +0.973865 +0.937858 +0.851332 +0.658245 +0.484386 +0.186389 +0.235788 +0.901606 +0.441393 +0.928907 +0.742902 +0.899731 +0.291798 +0.657076 +0.493420 +-0.397919 +0.258925 +0.260041 +0.447879 +0.267159 +0.333546 +0.310730 +0.687339 +0.586448 +0.715185 +0.795338 +0.880956 +0.841360 +0.157466 +0.138789 +0.892653 +0.271477 +0.491461 +0.947377 +0.435352 +0.376813 +0.489628 +0.457906 +0.920606 +-0.328688 +0.883125 +0.378692 +0.527648 +0.612887 +0.177064 +0.684087 +0.925187 +0.847503 +0.522372 +0.842775 +0.272651 +0.827970 +0.630724 +0.682150 +0.879388 +0.607572 +0.941129 +0.864023 +0.464557 +0.000935 +0.364383 +0.755660 +0.588086 +0.411435 +0.842656 +-8.524638 +0.480561 +0.854620 +0.884495 +0.642385 +0.908039 +0.943380 +-0.149536 +0.686162 +0.992694 +0.560737 +-0.279481 +0.938386 +0.977106 +0.562169 +0.586891 +0.791509 +0.651583 +0.416370 +0.672350 +0.540475 +0.359976 +0.775728 +0.850892 +0.832241 +-0.354978 +0.892251 +0.987921 +0.730441 +0.395690 +0.062497 +0.486045 +0.894923 +0.638527 +0.925132 +0.408792 +0.986171 +0.788576 +0.915134 +0.920743 +0.921603 +0.204856 +0.422976 +0.980099 +0.345859 +0.537414 +0.782801 +0.912628 +-0.030123 +0.316389 +0.788095 +0.399710 +0.375687 +0.773406 +0.643752 +0.420773 +0.924426 +0.426070 +0.734390 +0.942789 +0.716655 +0.732777 +0.964846 +0.723184 +0.805710 +0.508893 +0.754410 +0.775856 +0.617717 +0.589034 +0.215168 +0.520360 +0.576227 +0.619679 +0.698610 +0.270787 +0.064611 +0.099522 +-0.122984 +0.467416 +0.072114 +0.647061 +0.967080 +0.537059 +0.837996 +0.836385 +0.013430 +0.314413 +-0.128960 +0.988232 +0.955743 +0.965107 +0.699075 +0.912415 +0.947252 +0.585753 +0.696131 +0.519932 +0.112347 +0.773025 +-0.062034 +0.811119 +0.819627 +0.648698 +0.825681 +0.137181 +0.225228 +0.389269 +0.801957 +0.940626 +0.962207 +0.993441 +0.262598 +-1.045504 +0.198111 +0.574885 +0.131640 +0.837970 +-0.158528 +0.267196 +0.795278 +0.229618 +0.108852 +0.071310 +0.896491 +0.916414 +0.435906 +0.722881 +0.465782 +0.208719 +0.488481 +0.570944 +0.814907 +0.876623 +0.846018 +0.325798 +0.847973 +0.941069 +0.866286 +0.372540 +0.652635 +0.791812 +0.997940 +0.704708 +0.647553 +0.833034 +0.974499 +0.508991 +0.908147 +0.908360 +0.733265 +0.852564 +0.159428 +0.887485 +0.842507 +0.751403 +0.980690 +0.976118 +0.978704 +0.901552 +0.800230 +0.968485 +0.729489 +0.630205 +0.714878 +0.798757 +-0.295058 +0.757847 +0.862076 +0.828965 +0.537176 +0.576188 +0.842307 +0.980669 +0.553265 +0.344811 +0.839109 +-0.357813 +0.718013 +0.840741 +-0.209789 +0.097283 +0.658729 +0.883711 +0.739927 +0.058052 +-0.038892 +0.827093 +0.385965 +0.753819 +0.244232 +0.944765 +0.267271 +0.221851 +0.822217 +0.542793 +0.958473 +0.103488 +0.502747 +0.927343 +0.420765 +0.937640 +-0.139993 +0.526213 +0.773264 +0.924728 +0.838527 +0.445708 +0.592554 +0.982583 +0.709166 +0.255620 +0.588665 +0.958202 +0.895301 +0.115625 +0.514725 +0.494761 +0.161406 +0.923100 +0.584061 +-0.059553 +0.242705 +0.932771 +0.673366 +0.853867 +0.514542 +0.851024 +0.924920 +0.335612 +0.330102 +0.811829 +0.843254 +0.947132 +0.345817 +0.761642 +0.430178 +0.498954 +0.428851 +0.249539 +0.590799 +-0.162399 +0.994269 +0.023537 +0.349599 +-0.044960 +0.689942 +0.761990 +0.779822 +0.153983 +0.857959 +0.299187 +0.540970 +0.332574 +0.056344 +0.012227 +0.920643 +0.230697 +0.815255 +0.483859 +0.841304 +0.491695 +-0.464002 +0.392468 +0.865904 +0.923796 +0.254791 +0.267992 +0.029685 +0.831099 +0.285802 +0.049799 +0.089460 +0.230966 +0.754330 +0.029043 +0.258790 +0.228767 +0.664511 +0.905537 +0.733042 +0.643801 +0.089160 +-0.086265 +0.923834 +0.456911 +0.943281 +0.382773 +0.818137 +0.526845 +0.373459 +0.792034 +0.908705 +0.938183 +0.791356 +0.724319 +0.804801 +0.740602 +0.936181 +0.959115 +0.793960 +0.765718 +0.642837 +0.658372 +0.817511 +0.603441 +0.276610 +0.741892 +0.438856 +-0.151755 +0.757116 +0.769468 +0.851431 +0.795118 +0.685255 +0.714310 +0.933416 +0.804161 +0.654384 +0.607534 +-0.038589 +0.316981 +0.874396 +0.919522 +0.797186 +0.910129 +0.932845 +0.725646 +0.869905 +0.947216 +0.668815 +0.512834 +0.961033 +0.787805 +-0.619832 +0.850815 +0.611240 +0.801440 +0.982263 +0.544133 +0.818337 +0.551187 +0.933021 +0.000785 +0.770169 +0.812624 +0.733655 +0.752647 +0.717728 +0.835192 +0.857587 +0.636706 +0.861527 +0.912110 +0.682266 +0.843951 +0.707684 +0.929836 +0.922919 +0.783388 +0.849159 +0.910922 +0.888894 +0.588446 +-0.923700 +0.794913 +0.934558 +0.750275 +0.929433 +0.934477 +0.782117 +0.435145 +0.770004 +0.798278 +0.923675 +0.982241 +-0.093882 +0.838223 +-0.155679 +-0.086935 +0.367850 +0.637155 +0.317387 +0.255628 +0.387054 +0.995370 +0.796296 +0.210504 +0.304902 +0.601551 +0.408481 +0.904763 +0.910078 +0.956043 +0.883640 +0.738988 +0.946662 +0.663641 +-0.336536 +0.856165 +0.645862 +0.370293 +0.897062 +-2.446580 +0.763493 +0.490320 +0.519195 +0.492471 +0.492471 +0.492476 +0.458859 +0.492473 +0.455375 +0.239810 +0.646680 +0.477331 +0.649806 +0.016462 +0.593753 +0.768832 +0.187725 +0.357465 +0.246232 +0.540149 +0.756701 +0.799510 +0.666798 +0.373846 +0.762538 +0.990642 +-96.351276 +0.989982 +0.022188 +0.630320 +0.794586 +-0.014109 +0.118260 +0.068840 +0.511775 +0.704054 +0.333795 +0.991934 +0.011648 +0.121879 +0.152996 +0.994348 +0.411347 +-0.261277 +0.586330 +0.700672 +0.244709 +0.881249 +0.928734 +0.959525 +0.748038 +0.869885 +0.682206 +0.988365 +0.371109 +0.371109 +0.030330 +0.167215 +0.857475 +0.611668 +0.339764 +0.249253 +0.648194 +0.897869 +0.419649 +0.620022 +0.943585 +0.955431 +0.924247 +0.625272 +0.555618 +0.470543 +0.931892 +0.913336 +0.917532 +0.860347 +0.936602 +0.907959 +0.033019 +0.838689 +0.914169 +0.955216 +0.868264 +0.036226 +0.097454 +0.026312 +0.393684 +-0.015925 +0.676279 +0.262420 +0.435624 +0.587039 +0.258210 +-0.116900 +0.800105 +0.615092 +0.801831 +0.943070 +0.495455 +0.632828 +0.619210 +0.763737 +0.863140 +0.663408 +0.607019 +0.406436 +0.957485 +0.920928 +-0.164218 +0.404841 +0.583081 +-0.338454 +0.836382 +0.537593 +-0.144925 +0.205756 +0.542889 +0.691939 +-0.238790 +0.334383 +-0.238054 +0.750434 +-0.174758 +0.676640 +-0.128446 +0.572383 +-0.026852 +0.822220 +0.713228 +0.213703 +0.520754 +0.710531 +-0.014738 +0.580204 +0.169089 +0.833246 +-0.194478 +-0.063507 +-0.048378 +0.867722 +0.885669 +0.710320 +0.638293 +-0.235983 +0.494551 +0.789732 +0.009853 +0.521279 +-0.704980 +0.322716 +-0.966715 +-0.406406 +0.171867 +0.370900 +-0.312781 +0.833077 +0.080264 +-0.179548 +0.495147 +-0.072753 +-0.136502 +-0.006012 +0.480634 +0.594159 +0.493036 +0.840183 +0.890614 +0.442174 +0.899674 +0.705594 +0.645458 +0.827603 +0.675745 +0.934963 +0.909352 +0.738593 +0.135646 +0.888921 +0.809578 +0.016089 +0.077468 +0.503174 +0.836432 +0.663407 +0.983616 +0.946071 +-6.404288 +0.787110 +0.599179 +0.902748 +0.775196 +0.656892 +0.823578 +0.877167 +0.730424 +0.932638 +0.938885 +0.920239 +0.929843 +0.933200 +0.919301 +0.764634 +0.533456 +0.831175 +0.767973 +0.781509 +0.723418 +0.875026 +0.801983 +0.794932 +0.947774 +0.749382 +0.496289 +0.879075 +0.824157 +0.806216 +0.780299 +0.787593 +0.932240 +0.489444 +0.932510 +-0.128521 +-1.362075 +0.888616 +0.768316 +0.682250 +0.842205 +0.651360 +0.947510 +0.881352 +0.687730 +0.721250 +0.517384 +0.325723 +0.672054 +0.252252 +0.581633 +0.564901 +0.941467 +0.792307 +0.881397 +0.710479 +0.865935 +0.712014 +0.623504 +0.193090 +0.538586 +0.868395 +0.793741 +0.921105 +0.870008 +0.832072 +0.633720 +0.659277 +-0.203112 +-0.104537 +0.317037 +0.569245 +0.666744 +0.605973 +0.718415 +0.579720 +0.788758 +0.540132 +0.334846 +0.410143 +0.886274 +0.391974 +-0.130902 +-0.076824 +0.453161 +0.563725 +0.927698 +-0.229676 +-0.287279 +-0.154788 +0.899767 +0.910624 +0.491139 +0.797716 +0.195757 +0.737000 +0.660992 +0.139026 +-0.048544 +0.454765 +0.686743 +0.437111 +0.806870 +0.191368 +0.840976 +0.567513 +0.791901 +0.892190 +0.655522 +0.776586 +-0.147575 +0.565358 +0.444266 +0.512818 +0.367991 +0.209993 +0.652977 +0.654183 +0.809076 +-0.217100 +0.487009 +0.365964 +0.726777 +0.231868 +0.963070 +0.404856 +-0.175372 +0.664823 +0.409872 +-1.978548 +0.571223 +0.799075 +0.848119 +0.993515 +0.860737 +0.660349 +0.636756 +0.522555 +0.748061 +0.720494 +0.782583 +0.760272 +0.804231 +0.664118 +0.433894 +0.770849 +0.030547 +0.742578 +0.669551 +0.570569 +0.758752 +0.989562 +0.617718 +0.621022 +0.743111 +0.620910 +0.821225 +0.866477 +0.829918 +0.729889 +0.823564 +0.687536 +0.961781 +0.853908 +0.591785 +0.595805 +0.132858 +0.770757 +-0.048219 +0.856463 +0.719267 +0.745663 +0.601495 +-0.118232 +0.866603 +0.112377 +-0.222278 +-0.077069 +0.863842 +0.553669 +0.700464 +0.768155 +0.490498 +0.773733 +0.929880 +0.682416 +0.649510 +0.639379 +0.807523 +0.926176 +0.482661 +0.434515 +0.637886 +0.029422 +0.758725 +0.607128 +0.625508 +0.875188 +0.807054 +0.346255 +0.938383 +0.673224 +0.886360 +0.488834 +0.650870 +0.750858 +0.593365 +0.694161 +0.993151 +0.556677 +0.355179 +-0.506762 +0.858974 +0.772611 +0.630253 +0.896151 +0.636715 +0.469145 +0.660047 +0.883460 +0.664599 +0.918451 +0.885661 +0.930252 +0.976538 +0.878204 +0.808424 +0.685812 +0.569793 +0.530213 +0.719888 +0.673667 +0.905030 +0.970347 +0.895309 +-0.071956 +0.849473 +0.383082 +0.907885 +0.931038 +0.809965 +0.193416 +0.958149 +0.214569 +0.634364 +0.879139 +0.754170 +0.689739 +0.056959 +0.052252 +0.849612 +0.661554 +0.841622 +-0.088972 +-0.229907 +-0.084790 +0.741993 +0.427967 +-0.473909 +0.668378 +0.694388 +0.416649 +-0.100805 +0.114373 +-0.119083 +-0.155780 +-0.082158 +0.071897 +0.801246 +0.777347 +0.763178 +0.736292 +0.431687 +0.961499 +0.906642 +0.694811 +0.928270 +0.807073 +0.719341 +0.817156 +0.727286 +0.610603 +0.849634 +0.833063 +0.943125 +0.410191 +0.688747 +0.921350 +0.674207 +0.858635 +0.696628 +0.828203 +0.929278 +0.594171 +0.740800 +0.935258 +0.787991 +0.810512 +0.690908 +0.776303 +0.741032 +0.738256 +0.864755 +0.474327 +-0.032722 +0.482310 +-0.029814 +0.194666 +0.306639 +0.435595 +0.495986 +0.011814 +0.548307 +0.213264 +0.021843 +0.502095 +0.687912 +0.341809 +-0.064994 +-0.023352 +-0.115236 +-0.196738 +0.437579 +0.687013 +-0.008237 +0.642829 +-0.169468 +-0.138531 +0.929174 +0.570769 +0.985866 +0.811513 +0.405194 +0.409970 +0.619703 +-0.719658 +0.342449 +0.408308 +-0.122506 +0.554947 +0.964611 +0.284135 +0.735233 +0.287589 +0.236465 +0.912818 +0.605368 +0.936226 +0.910320 +0.910545 +0.732401 +-0.078429 +0.738050 +0.938213 +0.709824 +0.909213 +0.880390 +0.829634 +0.872145 +0.625951 +0.914192 +0.902556 +0.765153 +0.516560 +0.570517 +0.919608 +0.838622 +0.586673 +0.373350 +0.743755 +0.565843 +0.917735 +0.805339 +0.218273 +0.489090 +0.642696 +0.725563 +0.475343 +-0.059055 +0.893510 +0.125354 +-0.087135 +0.518265 +0.153620 +0.661176 +0.396688 +0.711656 +0.820239 +0.178445 +0.197835 +0.319011 +0.623618 +-0.109390 +0.549545 +0.257260 +0.104112 +0.424602 +0.415175 +0.045562 +0.797275 +0.759908 +0.352479 +0.141075 +0.186703 +-0.184561 +0.692436 +0.894979 +0.856095 +0.703994 +-0.159055 +0.625529 +0.795213 +-0.239847 +0.787626 +0.770722 +0.360109 +0.920611 +0.883167 +0.226515 +0.875300 +0.742444 +0.482945 +0.602186 +0.640655 +-0.189154 +-0.098068 +0.256558 +0.132192 +0.573809 +0.755881 +-0.216069 +0.813718 +-0.043084 +-0.174553 +0.801800 +0.785334 +0.778444 +0.934977 +0.595744 +0.824053 +0.673097 +0.941013 +0.341947 +0.829094 +0.359722 +0.360143 +0.105628 +0.647850 +-0.277584 +0.776945 +-0.215195 +0.783106 +0.652325 +0.466898 +0.510715 +0.687522 +0.643831 +0.709448 +0.353665 +0.882306 +0.104869 +0.929819 +0.544387 +0.724981 +0.019592 +0.627753 +0.803298 +0.782371 +0.310051 +-0.253851 +-0.159657 +0.814150 +0.820092 +0.847053 +-0.730356 +0.779067 +0.586820 +0.946105 +0.649364 +0.830269 +0.929124 +0.457182 +0.898251 +0.563198 +0.500584 +0.479980 +0.277740 +0.778614 +0.802942 +0.907349 +0.439539 +-0.077059 +0.288720 +0.794186 +-6.311911 +-0.314013 +0.372465 +0.606887 +-0.000481 +-0.251612 +0.547550 +0.778101 +-1.705312 +0.461737 +0.661109 +0.433216 +-0.156773 +0.487159 +0.094500 +0.758383 +0.270345 +0.426595 +0.656263 +-0.042032 +-0.013740 +0.349543 +0.718286 +0.757244 +0.792065 +0.203237 +-0.279412 +0.885659 +0.497042 +0.698789 +-0.033440 +0.667417 +0.507279 +0.814863 +0.782941 +0.418030 +0.813666 +0.678884 +-0.219154 +-0.098712 +-0.155540 +0.932271 +-0.233140 +0.141114 +0.566541 +0.339136 +-0.212152 +0.453296 +-0.166825 +0.116135 +0.628006 +0.868363 +0.702607 +-0.031317 +0.865876 +0.576989 +0.124934 +0.933969 +0.582425 +0.309718 +0.552938 +0.750789 +0.919525 +0.763718 +-0.177823 +0.792840 +-0.236579 +0.697121 +0.784827 +0.492457 +-0.061572 +-0.113113 +0.813572 +0.080314 +0.069824 +0.266415 +0.586029 +0.255073 +0.298595 +-0.098938 +0.562430 +0.094407 +-0.051707 +0.790615 +0.332274 +0.818486 +0.305536 +0.687556 +0.106779 +0.471886 +0.305104 +-0.191547 +0.358293 +0.886695 +0.375059 +0.238829 +0.597232 +-0.163979 +-0.327487 +0.694417 +0.738375 +0.746036 +0.680009 +0.267293 +0.554433 +0.188614 +0.692323 +0.498628 +0.261045 +0.449588 +0.581561 +0.323332 +0.552341 +0.951627 +0.596823 +0.924489 +0.656436 +0.759905 +0.976233 +0.570331 +0.733741 +0.871855 +0.327513 +0.662968 +0.913999 +0.457399 +0.698275 +0.577026 +0.542719 +0.689217 +0.769227 +0.658743 +0.610555 +0.892834 +0.548948 +0.269761 +0.936396 +-3.551463 +0.748064 +0.766653 +0.556564 +0.819573 +0.798457 +0.770682 +0.752873 +0.275852 +0.897648 +0.397200 +0.738925 +0.776439 +0.976401 +0.937455 +0.710027 +0.241613 +0.716064 +0.407621 +-0.329704 +0.576033 +0.054275 +0.015998 +0.856054 +0.621232 +0.418742 +0.193092 +0.926943 +0.618057 +0.870993 +0.333416 +0.333416 +0.659385 +0.930741 +0.732966 +0.699906 +0.850647 +0.931694 +0.582991 +0.889161 +0.775751 +0.817073 +0.923286 +0.779833 +0.931031 +0.932529 +0.916356 +0.869212 +0.922881 +0.335049 +0.290519 +0.973663 +0.863973 +0.792329 +0.861820 +0.590758 +0.850699 +0.169091 +-0.039034 +0.632686 +0.402770 +0.763344 +0.933572 +0.930443 +0.744154 +0.637854 +0.775202 +0.892894 +0.573264 +0.808736 +0.602919 +0.802585 +0.741115 +0.834678 +0.727084 +0.820673 +0.769699 +0.654356 +0.970303 +0.353966 +0.837457 +0.644193 +0.916828 +0.456107 +0.661321 +0.476569 +0.943108 +0.629471 +0.508714 +0.714957 +0.680186 +0.932131 +0.261101 +0.733064 +0.407942 +0.984159 +0.064096 +0.698870 +0.800132 +0.856926 +0.378111 +0.365528 +0.446342 +0.505338 +0.933684 +0.971791 +0.975144 +0.701667 +0.863871 +0.883316 +-2.120464 +0.952993 +0.682915 +0.753212 +0.409026 +0.611465 +0.862761 +0.936393 +0.788039 +0.342958 +0.896689 +0.528629 +0.725343 +0.727140 +0.464691 +0.766326 +0.684356 +0.049394 +0.111894 +0.113505 +0.111841 +0.038965 +-0.007788 +0.126542 +0.455007 +0.082530 +0.033750 +0.520627 +0.095598 +0.534834 +0.396686 +0.351147 +0.876794 +0.544216 +0.452908 +0.922993 +0.750346 +0.682466 +0.586373 +0.780598 +0.676558 +-0.759337 +0.804068 +0.981366 +0.817462 +0.961154 +0.728969 +0.775824 +0.741600 +0.853006 +0.780846 +0.759015 +0.586715 +0.856466 +0.771080 +0.852322 +0.864914 +0.844402 +0.797878 +0.647055 +0.666110 +0.859278 +-0.071983 +0.341610 +0.916228 +0.365488 +0.745772 +0.402334 +0.941554 +0.939069 +0.937836 +0.938023 +0.465858 +0.486004 +0.568841 +0.413887 +0.386016 +0.201053 +0.424614 +0.446098 +0.344745 +-0.387656 +0.572207 +0.923812 +-50.698498 +0.682317 +0.602482 +0.707446 +0.193817 +0.369697 +0.708019 +0.787189 +0.836924 +0.273613 +0.671930 +0.728267 +0.527124 +0.770636 +0.277554 +0.929967 +0.458789 +0.730266 +0.870949 +0.997001 +0.535446 +0.785794 +0.429408 +0.219867 +-386187.294048 +0.352823 +0.849890 +0.909290 +-558.614462 +-30.359211 +0.602807 +-170.464050 +0.724647 +0.902446 +0.766042 +0.735762 +-2.851602 +0.629361 +-30.850610 +0.825076 +0.868672 +0.895240 +0.725691 +0.902204 +0.799489 +0.954161 +0.771938 +0.381095 +0.542827 +0.268913 +0.340027 +0.734015 +0.766683 +0.242205 +0.443564 +0.994152 +-0.209922 +0.894937 +0.758026 +0.756152 +0.138345 +0.678434 +0.916983 +0.856913 +0.895500 +0.893404 +0.635367 +0.780102 +0.843645 +0.959358 +0.258848 +0.888817 +0.091103 +0.710869 +0.141890 +-0.522879 +0.239194 +0.359597 +0.288087 +0.364866 +0.417464 +0.663100 +0.263989 +0.473791 +0.316267 +0.316122 +-0.015755 +0.206553 +0.963663 +0.228974 +0.636880 +0.680791 +0.304062 +0.484319 +0.098287 +0.802538 +0.011003 +-0.397986 +0.987131 +0.803074 +0.385040 +0.305967 +0.121939 +-0.312921 +0.281481 +0.608864 +0.443901 +-0.072585 +0.887329 +0.918593 +0.690701 +0.330586 +0.046990 +0.131152 +0.036400 +0.941949 +0.941481 +0.865052 +0.574613 +0.878476 +0.955366 +0.965145 +0.857129 +0.827737 +0.900740 +0.556776 +-0.208368 +0.366645 +0.808837 +0.825839 +0.097714 +0.701179 +0.964321 +0.821486 +0.683957 +0.711005 +0.402480 +0.455426 +0.802869 +0.804468 +0.938676 +0.774555 +0.917379 +0.679884 +0.510167 +0.847702 +0.859571 +0.875234 +0.854476 +0.939456 +0.508578 +0.308384 +0.997645 +0.461929 +0.956579 +0.502647 +0.678861 +-3.428139 +0.954606 +0.721180 +0.590838 +0.755075 +-0.115555 +-0.508128 +0.917520 +0.721519 +0.646023 +0.775833 +0.420613 +0.762901 +0.989241 +0.675796 +0.684347 +0.745465 +0.629919 +0.356241 +0.123623 +0.089638 +0.397360 +0.267652 +0.414714 +0.505320 +0.309225 +0.417014 +0.630171 +0.383311 +0.301226 +-0.173028 +0.068031 +0.665604 +0.277935 +0.853828 +0.517826 +0.575285 +-1075.238330 +0.940018 +0.454513 +0.009253 +0.650123 +0.323593 +0.505452 +0.077453 +0.268019 +0.905520 +0.432170 +0.761313 +0.878525 +0.666341 +0.072095 +0.101026 +0.975712 +0.291881 +0.626834 +0.548074 +0.936828 +0.675909 +0.467103 +0.119429 +0.957740 +-0.243491 +0.641177 +0.579771 +0.527662 +0.965471 +0.922392 +0.322530 +0.888729 +0.825728 +0.192463 +0.614699 +0.620753 +0.996096 +0.760904 +0.833227 +0.931310 +0.735445 +0.324854 +0.687941 +0.847484 +0.545754 +0.733305 +0.961991 +0.423799 +0.926455 +0.717804 +0.783784 +0.992786 +0.607255 +0.725808 +0.712524 +0.781245 +0.632213 +0.728344 +0.395981 +0.783462 +0.562790 +0.717241 +0.293734 +0.657268 +0.598684 +0.424784 +0.838867 +0.302978 +0.805277 +-0.202904 +0.886982 +0.397572 +0.275897 +0.585089 +0.807147 +0.301032 +0.267218 +0.739073 +-0.457576 +0.939874 +0.969405 +0.854044 +0.330519 +0.664411 +0.969492 +0.998598 +0.592150 +0.848954 +0.889257 +0.780399 +0.852014 +0.940649 +0.762802 +0.883266 +0.393688 +0.038802 +0.982088 +0.854707 +0.474165 +0.802935 +0.846216 +0.781888 +0.853393 +0.882170 +0.520838 +0.859401 +0.278401 +0.591086 +0.906529 +0.827228 +0.450720 +0.039116 +0.772840 +0.130976 +0.724712 +0.684571 +0.372050 +0.349925 +0.450126 +0.427891 +0.915589 +0.907206 +0.516096 +0.477812 +0.964850 +0.536244 +0.389354 +0.558457 +0.484121 +0.585623 +0.339026 +0.414824 +0.456376 +0.944843 +0.790448 +0.370617 +0.488992 +0.358943 +0.344003 +0.919825 +0.698735 +0.928299 +0.932687 +0.697752 +0.839224 +0.758681 +0.886174 +0.743216 +0.517888 +0.789870 +0.243040 +0.271719 +0.430579 +0.271889 +0.382122 +0.165753 +-0.215087 +0.851730 +-0.162863 +0.769364 +0.930090 +0.579347 +0.444091 +0.660460 +0.785880 +0.806518 +0.523610 +0.961990 +0.987634 +0.743961 +0.780294 +0.466739 +0.952839 +0.444027 +0.955897 +0.956239 +0.940162 +0.859534 +0.935604 +0.457003 +0.728316 +0.955220 +0.084449 +0.647266 +0.938308 +0.207209 +0.835355 +0.769656 +0.974153 +0.864144 +0.742106 +0.422441 +0.783227 +0.544913 +0.608098 +0.832403 +0.945086 +0.952461 +0.426921 +-2.292684 +0.868498 +0.744071 +0.854248 +0.882468 +0.472733 +0.429121 +0.931297 +0.954650 +0.949700 +0.814005 +0.460153 +0.696944 +0.910335 +0.834211 +0.180080 +0.956887 +0.450374 +0.953175 +0.775205 +0.173537 +0.839247 +0.574667 +0.206088 +0.180652 +0.374472 +0.656785 +0.619674 +0.706346 +0.971222 +0.141051 +0.243613 +0.077950 +0.806473 +0.244625 +0.611853 +0.893125 +-0.075213 +0.878983 +0.663190 +0.815345 +0.248334 +0.217958 +0.207713 +0.529690 +0.642764 +0.873107 +-0.017246 +0.674391 +0.716627 +0.516027 +0.669787 +0.296567 +0.868860 +0.435407 +-0.025081 +0.301009 +0.627642 +0.735759 +0.733797 +0.319737 +0.419378 +0.308430 +0.821053 +0.808790 +0.128195 +0.924271 +0.175663 +-0.221978 +0.973497 +0.736039 +0.520410 +0.326109 +0.208994 +0.170950 +-0.254922 +0.672948 +0.352482 +0.139841 +0.347830 +0.254798 +0.212692 +0.535230 +0.340673 +0.988772 +0.496294 +0.181448 +0.567193 +0.676531 +0.813114 +0.760029 +0.780889 +0.657889 +0.981450 +0.762774 +0.890909 +0.238317 +0.474986 +0.658094 +0.628298 +0.516994 +0.843353 +0.485302 +0.933194 +0.869263 +0.304844 +0.515323 +0.955404 +-0.033080 +0.946208 +0.459876 +0.772232 +0.436525 +0.700499 +0.278743 +0.579541 +0.556232 +0.577290 +0.100371 +0.383247 +0.432444 +0.873686 +0.952464 +0.497050 +0.951778 +0.809600 +0.928998 +0.969363 +0.655933 +0.277142 +0.521876 +0.944752 +0.507725 +0.976380 +0.598022 +0.453183 +0.407662 +0.985713 +0.938850 +0.085282 +0.953241 +0.867326 +-1.254243 +0.286350 +0.708062 +0.505113 +0.484281 +0.936707 +0.586073 +0.143273 +0.554467 +0.950107 +0.212188 +0.537100 +0.306014 +0.608565 +0.847111 +0.847501 +0.853962 +0.515272 +0.083964 +0.387038 +0.664142 +0.586772 +0.960533 +0.954253 +0.765026 +0.410477 +0.777990 +0.762603 +0.328062 +0.453380 +0.485801 +0.294696 +0.224992 +0.892839 +0.226502 +0.884574 +0.115425 +0.336543 +0.740150 +0.838699 +0.739598 +0.587968 +0.241426 +0.323378 +0.352332 +-0.066054 +0.562255 +0.834274 +0.670902 +0.669889 +0.387494 +0.658846 +0.761671 +0.578676 +0.069137 +0.439138 +0.092977 +0.474484 +0.168578 +0.467521 +0.944584 +0.118994 +0.043634 +0.785884 +0.278359 +0.853261 +0.450174 +0.236641 +0.286957 +0.745989 +0.057081 +0.103273 +0.662234 +0.073075 +0.830790 +0.161377 +-0.527115 +0.234950 +0.780517 +0.590409 +0.261910 +-1.668123 +0.774532 +0.818917 +0.515237 +0.413949 +0.187569 +0.407130 +0.653584 +0.740513 +0.180632 +0.502540 +0.931976 +0.373817 +0.120513 +0.500442 +-0.080799 +0.007210 +0.103265 +0.973956 +0.799643 +0.648798 +0.960673 +0.083486 +0.947352 +0.660621 +0.393353 +0.942477 +0.918974 +0.527844 +0.979744 +0.688777 +0.993320 +0.770107 +0.929880 +0.974532 +0.757959 +0.924673 +0.356014 +0.881876 +0.929774 +0.576557 +0.917285 +0.602755 +0.831216 +0.458071 +0.996575 +0.922512 +0.951348 +0.010024 +0.482350 +0.448874 +0.344271 +0.286443 +-0.074939 +0.933861 +-0.315542 +0.160058 +-0.183187 +0.131195 +0.314730 +0.709345 +0.099250 +0.669112 +0.083506 +0.577403 +0.764959 +0.557058 +0.550467 +0.339004 +0.381676 +0.446462 +0.259253 +0.289088 +0.517288 +0.302459 +0.298988 +0.172824 +0.063626 +0.447934 +0.656622 +0.107851 +0.182345 +0.714925 +0.086903 +0.130758 +-0.019385 +0.009680 +0.755239 +0.226217 +0.641013 +0.230145 +0.157237 +0.313127 +0.990023 +0.970741 +-0.000802 +0.153942 +0.996163 +0.996982 +-22386.723502 +0.238014 +0.144891 +0.950040 +0.369616 +0.252553 +0.724329 +0.050429 +0.876532 +0.961689 +0.794377 +-0.150294 +0.796367 +0.763909 +0.731096 +0.946820 +0.422130 +0.473970 +0.993020 +0.565555 +0.031934 +0.718332 +0.306806 +0.349867 +0.411528 +0.754640 +0.380018 +0.847928 +0.687332 +0.432246 +0.746482 +0.776490 +0.708344 +0.970803 +-1.919335 +0.943274 +0.963769 +0.519173 +0.607969 +0.521237 +0.919741 +0.811113 +0.274238 +0.475902 +0.649886 +-0.521956 +0.708684 +0.364972 +-0.028400 +0.939188 +0.983869 +0.987750 +0.659995 +0.276005 +0.725006 +0.378895 +0.286452 +0.826431 +0.936545 +0.911768 +0.842986 +0.373703 +0.740326 +0.787383 +0.735939 +0.370670 +0.685625 +0.911993 +0.411865 +0.275773 +0.686984 +0.923885 +0.924170 +0.996872 +0.874673 +0.938675 +0.923121 +0.704905 +0.289146 +0.931657 +-0.120819 +0.050064 +0.175799 +0.970428 +0.885559 +0.786473 +0.950505 +0.200936 +0.041610 +0.242193 +0.744306 +0.399006 +0.592627 +0.928089 +0.564417 +0.567115 +0.084901 +0.764315 +0.842848 +0.468437 +0.817794 +0.017039 +0.508203 +0.768425 +0.950076 +0.573211 +0.087861 +0.602109 +0.988925 +0.169686 +0.621582 +0.952896 +0.186866 +0.653427 +0.393965 +0.157087 +0.096029 +0.881852 +0.814426 +0.879908 +0.643595 +0.595376 +0.344069 +-0.202162 +0.953989 +0.563438 +-0.287174 +0.454066 +0.908560 +0.964849 +-0.171671 +0.963363 +0.847389 +0.788881 +0.733819 +0.309668 +-0.855723 +0.847470 +0.837931 +0.250093 +0.630199 +-0.498246 +0.725297 +0.372368 +0.790913 +0.122774 +0.695576 +0.506077 +0.807106 +0.836718 +0.566829 +0.896177 +0.896370 +0.601392 +0.852045 +0.529178 +0.242315 +0.501657 +0.883891 +0.207541 +0.648830 +0.843630 +0.890149 +0.845451 +0.322473 +0.913581 +0.688157 +0.810509 +0.217144 +0.845284 +0.606652 +0.204036 +0.512739 +0.791638 +0.861465 +0.514192 +0.695479 +0.649833 +0.753680 +0.801425 +0.273306 +0.636354 +0.631689 +0.877465 +0.926211 +0.250251 +0.663493 +0.821489 +0.386403 +0.570953 +0.521124 +0.628201 +0.333404 +0.864804 +0.469130 +0.696240 +0.340359 +0.375824 +0.928287 +-0.069977 +0.366180 +-0.147359 +0.295884 +0.472991 +0.695064 +0.866503 +0.287956 +0.362798 +0.355255 +0.624083 +0.864382 +0.360512 +0.594548 +0.403845 +-0.074244 +0.006704 +-0.080338 +0.107245 +-0.133914 +0.904709 +0.751702 +0.271381 +0.907754 +0.455518 +0.778418 +0.862886 +0.861450 +0.568144 +0.881072 +0.842530 +0.989996 +0.630367 +0.858758 +0.133151 +0.931315 +0.598822 +0.797575 +0.888577 +0.819322 +0.510371 +0.441445 +0.752315 +0.859453 +0.686106 +0.980225 +0.937201 +0.904981 +0.937519 +0.838237 +0.819989 +0.598912 +0.969524 +0.853099 +0.920064 +-0.111910 +0.928835 +0.943782 +0.694111 +0.919125 +0.212236 +0.981146 +0.812779 +0.913788 +0.643284 +0.894751 +0.446321 +0.503557 +0.977931 +0.484758 +0.457275 +0.460975 +0.274055 +-0.048540 +0.817711 +0.372483 +0.417171 +0.565960 +0.636152 +0.933300 +0.955818 +0.937810 +0.888409 +0.575287 +0.239104 +0.919680 +0.468944 +0.362032 +0.881178 +0.920957 +0.909114 +0.120831 +0.472392 +0.430149 +0.972818 +0.827665 +0.396525 +0.751964 +0.914120 +-76.291758 +0.930069 +0.876430 +0.800008 +0.907470 +0.408125 +0.949649 +0.874351 +0.235947 +-18.498093 +0.807343 +0.797074 +0.407713 +0.918803 +0.794258 +-0.570817 +0.939451 +0.307833 +0.863261 +0.734441 +0.787279 +0.500873 +0.880665 +0.814931 +0.557020 +0.328281 +0.893560 +0.956295 +0.992208 +0.773024 +0.569740 +-0.148527 +0.659744 +0.388222 +0.739033 +0.290789 +0.738322 +0.153568 +0.632208 +0.516779 +0.703793 +0.520739 +0.779480 +-0.783627 +0.500380 +0.722946 +0.843483 +0.207022 +0.526130 +0.975571 +0.496953 +0.253717 +0.979187 +0.220090 +0.621075 +0.320334 +0.740229 +-2.347570 +0.544863 +0.951841 +0.663878 +0.839172 +0.593883 +0.542034 +0.873513 +0.892050 +0.655591 +0.837653 +0.217930 +0.337790 +0.391357 +0.237011 +0.923295 +0.312825 +0.857424 +0.019688 +0.582873 +0.647287 +0.554409 +0.808716 +0.889034 +0.395338 +0.034968 +0.263536 +0.500559 +0.223628 +0.352000 +0.723141 +0.127996 +0.289797 +0.128297 +0.069154 +0.670344 +0.985420 +0.331300 +0.257994 +0.017920 +0.946271 +-0.331816 +0.541152 +0.560093 +0.483226 +0.993233 +0.382378 +0.652885 +0.501030 +0.634834 +-4.025736 +0.563312 +0.710225 +0.150745 +0.721807 +-9.378833 +0.086513 +-0.143182 +0.541069 +0.517611 +0.918208 +0.281170 +0.725379 +0.917732 +0.812405 +0.726083 +0.981783 +0.929234 +0.391821 +0.543364 +0.257637 +0.982680 +0.733342 +0.970562 +0.620214 +0.779223 +-0.048520 +0.964736 +0.747495 +0.719017 +0.936979 +0.500078 +0.668280 +0.798358 +0.773882 +0.941407 +0.417235 +0.731531 +0.684904 +0.402977 +0.173688 +0.945357 +0.463808 +0.673332 +0.306672 +-1.041762 +0.905747 +0.918943 +0.627380 +0.813008 +0.895183 +0.921927 +0.774240 +0.963770 +0.836691 +0.836390 +0.849391 +0.809044 +0.991446 +0.546463 +0.618712 +0.854051 +0.925790 +0.814911 +-0.428836 +0.946143 +0.854505 +0.691451 +0.591033 +0.798277 +0.061036 +0.799919 +0.372495 +0.737014 +0.751935 +0.824511 +0.857574 +0.477319 +0.727989 +0.735469 +0.814610 +0.555348 +0.682904 +0.428182 +0.760389 +0.835610 +0.873801 +0.650554 +0.851113 +0.881203 +0.884927 +0.424165 +0.242229 +0.017778 +0.738416 +0.054261 +0.259261 +0.769104 +0.825566 +0.794755 +0.928836 +0.330865 +0.417820 +0.944562 +0.509339 +0.928031 +0.508748 +-0.034368 +0.690405 +0.827904 +0.873965 +0.837798 +0.867738 +0.781098 +0.380636 +0.803408 +0.732013 +0.707098 +0.881467 +0.843423 +0.858948 +0.822342 +0.825338 +0.816000 +-524.917446 +0.847448 +0.864155 +0.944943 +0.162355 +0.608612 +0.188887 +0.043573 +0.916087 +-0.051750 +0.314320 +0.192150 +0.765537 +-0.815487 +0.473694 +0.709132 +0.135875 +0.409116 +0.278632 +0.256063 +0.202952 +0.678903 +0.367934 +0.214294 +-1.418874 +0.280048 +0.279836 +0.248110 +0.259036 +0.477291 +0.366560 +0.369503 +0.933137 +0.857506 +0.669791 +0.224870 +0.413933 +0.589052 +0.725636 +-0.002705 +0.144371 +0.040340 +0.514803 +0.994479 +0.444329 +0.558798 +0.549041 +0.400240 +0.897869 +0.378033 +0.296714 +0.525499 +0.595791 +0.875771 +0.110980 +0.911835 +0.722385 +0.929608 +0.626712 +0.607677 +0.618243 +0.840913 +0.787188 +0.936229 +0.865252 +0.958320 +0.465281 +0.831737 +0.504569 +0.324382 +0.063723 +0.919477 +0.429079 +0.496884 +0.534477 +0.470184 +0.771679 +0.740116 +0.551013 +0.843369 +0.849925 +0.900543 +0.923854 +0.679184 +0.376372 +0.479088 +0.247841 +0.895818 +0.860845 +-0.077368 +0.644690 +0.711838 +0.681579 +0.379368 +0.763053 +0.542378 +0.815219 +0.847557 +0.986572 +0.714455 +0.728188 +0.537327 +0.758746 +0.554479 +0.420332 +0.377460 +0.968263 +0.041925 +0.346340 +0.460697 +0.748927 +0.762675 +0.384124 +0.611989 +0.444410 +0.404984 +0.827071 +0.288253 +0.607871 +0.913848 +0.525260 +0.505235 +0.926761 +0.772269 +0.296817 +0.410885 +0.596620 +0.310456 +0.576880 +0.943293 +0.513343 +0.870355 +0.496819 +0.411340 +0.357244 +0.367811 +0.411690 +0.762351 +0.789716 +0.920307 +0.685714 +0.752831 +0.562042 +0.994123 +0.883169 +0.587517 +0.936628 +0.653764 +0.934388 +0.921928 +0.548593 +-0.087604 +-0.511066 +0.046436 +-0.144857 +0.513139 +0.617929 +0.565217 +0.184444 +0.788977 +-0.070257 +0.104378 +-0.033536 +-0.202504 +0.906345 +0.121663 +0.088284 +0.211834 +0.297032 +0.061793 +0.476977 +0.790124 +0.980214 +0.551475 +0.700114 +0.471850 +0.862119 +0.426656 +0.449418 +0.920694 +0.550955 +0.635474 +0.565117 +0.693258 +0.979544 +0.903465 +0.706354 +0.595402 +0.357044 +0.339398 +0.585043 +0.624992 +0.167405 +0.274322 +0.514507 +0.948612 +0.505121 +0.484121 +0.529484 +0.918601 +0.992616 +0.385854 +0.925164 +0.919458 +0.923222 +0.602639 +0.946269 +0.987481 +0.915115 +0.523413 +0.981924 +0.220168 +0.457185 +0.908220 +0.727348 +0.489212 +0.368529 +0.981442 +0.995803 +0.449398 +0.991185 +0.451023 +0.443530 +0.714154 +0.918457 +0.734707 +0.437277 +0.530403 +0.439010 +0.702418 +0.618990 +0.713386 +0.922379 +0.480826 +0.921652 +0.966330 +0.920055 +0.604343 +0.460581 +0.714853 +0.517973 +0.651614 +0.782073 +0.298305 +0.483673 +0.807093 +0.867272 +0.478452 +0.894386 +0.934817 +0.929765 +0.668370 +0.262438 +0.859349 +0.901709 +0.942560 +0.541769 +0.845535 +-0.136269 +0.773824 +0.017958 +0.342452 +0.570903 +-0.016096 +0.318542 +0.859769 +0.636281 +0.930100 +-0.161552 +0.266548 +0.783873 +-0.124398 +0.549196 +0.199793 +0.403446 +0.909583 +0.581798 +-0.164515 +0.852153 +0.800139 +0.754400 +0.590698 +0.741056 +0.666322 +0.702646 +0.871126 +0.888900 +0.888909 +0.277678 +0.742933 +0.781030 +0.718051 +0.401311 +0.891677 +0.526164 +0.861551 +0.938771 +0.855101 +0.942665 +0.841949 +0.854853 +0.837249 +0.881000 +0.436887 +0.501194 +0.335080 +0.635775 +0.844086 +0.937140 +0.868593 +0.853536 +0.486435 +0.544849 +0.721790 +0.480602 +0.923919 +0.751718 +0.756932 +0.995387 +0.886125 +0.928117 +0.408005 +0.127585 +0.266992 +0.710819 +0.623976 +0.854861 +0.855936 +0.883605 +0.541115 +0.644231 +0.876105 +0.841463 +-0.479719 +0.909587 +0.858268 +0.861335 +0.232497 +0.773105 +0.970752 +0.924500 +0.649354 +0.584364 +0.972064 +0.735270 +0.848931 +0.845212 +0.843598 +0.840497 +0.949459 +0.377293 +0.693244 +0.773927 +0.995553 +0.942805 +0.806168 +0.923130 +0.353011 +0.712498 +0.448028 +0.927509 +0.136149 +0.797423 +0.851998 +0.545632 +0.900914 +0.861810 +0.767437 +0.934327 +0.932661 +0.884163 +0.821991 +0.383713 +0.376370 +0.861826 +0.871573 +0.278760 +0.143571 +0.931186 +0.915636 +0.793578 +0.308035 +0.559889 +0.878001 +0.504987 +0.726585 +0.149590 +0.914336 +-7980892730.360158 +0.366211 +-0.303238 +0.952084 +0.754917 +0.920059 +-0.210936 +-0.157186 +0.407815 +0.281267 +0.011018 +0.042059 +-0.057382 +0.947509 +-0.009114 +0.519168 +0.225063 +0.900393 +0.346235 +0.908236 +0.853755 +0.510960 +0.692598 +0.148143 +0.202472 +0.838502 +0.608053 +0.017042 +0.297503 +0.206422 +0.304136 +0.547875 +0.250313 +0.594754 +0.180719 +-0.059835 +0.946165 +0.343043 +0.203316 +0.179352 +0.548994 +0.241466 +0.771961 +0.232005 +0.302868 +0.851513 +0.242244 +0.311781 +0.770946 +0.423560 +0.433650 +0.731702 +0.654086 +0.465294 +0.533600 +0.454557 +0.666229 +0.831122 +0.883792 +0.935265 +0.805703 +0.514023 +0.524313 +0.478622 +0.521318 +0.412257 +0.472081 +-0.190978 +0.496815 +0.385385 +0.177515 +0.792724 +0.528933 +0.503074 +0.500191 +0.150681 +0.348340 +0.364265 +0.621606 +0.781776 +0.756931 +0.755572 +0.324700 +0.542281 +0.542714 +0.957666 +0.926179 +0.876269 +0.752831 +0.643360 +0.988338 +0.916536 +0.936806 +0.740987 +0.947849 +0.827000 +0.949005 +0.854195 +0.686894 +0.854585 +0.241893 +0.434097 +0.929760 +-0.203318 +0.952264 +0.989079 +0.689375 +0.642446 +0.103010 +0.986856 +0.674461 +0.946869 +0.819806 +0.913852 +0.444616 +0.638849 +0.420320 +0.330668 +0.497573 +0.289947 +0.570002 +0.631138 +0.848744 +0.938065 +0.616621 +0.610508 +0.664151 +0.829675 +0.768387 +0.526416 +0.654457 +0.638671 +0.303701 +0.988142 +0.642120 +0.674857 +0.862383 +0.471687 +0.846963 +0.188138 +0.890235 +0.896800 +0.982455 +0.998275 +0.977225 +0.897667 +0.669152 +0.989701 +0.390130 +0.925952 +-0.064488 +0.669880 +0.924712 +0.524843 +0.967268 +0.515056 +0.484154 +0.399553 +0.537474 +0.912499 +0.927886 +0.855148 +0.626366 +0.397701 +0.482803 +0.875042 +0.408347 +0.649716 +0.962298 +-1.160109 +0.912403 +0.310641 +0.317167 +0.926650 +0.925100 +0.424727 +0.502195 +0.998975 +0.930342 +0.769444 +0.922757 +0.634343 +0.444421 +0.398742 +0.790777 +0.900477 +0.558565 +0.446396 +0.382961 +0.388440 +0.290810 +0.350239 +0.702982 +0.289671 +0.429386 +0.293873 +0.034786 +0.207999 +0.077148 +0.270179 +-0.430376 +0.051676 +0.047537 +0.263796 +0.498311 +0.910659 +0.636038 +0.327626 +0.535821 +0.904936 +0.605329 +0.629216 +0.949791 +0.744452 +0.424975 +0.753303 +0.754013 +0.711950 +0.236135 +0.670417 +0.465265 +0.489261 +0.649526 +-0.417197 +0.750396 +0.927105 +0.972809 +0.696742 +0.660729 +0.815265 +0.992282 +0.815134 +0.986430 +0.846426 +0.882631 +0.724547 +0.963497 +0.416478 +0.700633 +0.850773 +0.867717 +0.634403 +0.541299 +0.904692 +0.854384 +0.250580 +0.706599 +0.377868 +0.744849 +0.627994 +0.574177 +0.805075 +0.731189 +0.744393 +0.689981 +0.382566 +0.966034 +0.683299 +0.951353 +0.843537 +0.924775 +0.720832 +0.656039 +0.845686 +0.896148 +0.650196 +0.881593 +-0.022493 +0.923384 +0.797136 +0.836557 +0.340485 +0.422325 +0.013455 +0.662332 +0.116236 +0.724452 +0.889900 +0.101840 +0.477939 +0.016891 +0.364619 +0.337236 +0.850626 +0.114524 +0.194088 +0.433907 +0.742627 +0.305403 +0.926456 +0.733162 +0.530253 +0.194145 +0.247680 +0.161045 +0.305034 +0.945607 +0.606419 +0.079247 +0.607038 +0.682361 +0.860305 +0.465393 +0.644596 +0.460416 +-0.100000 +0.584349 +0.509393 +-0.106322 +0.985959 +0.656793 +0.625555 +0.216456 +0.873113 +-0.137093 +0.840554 +0.894377 +0.286928 +0.001571 +0.332004 +0.847805 +0.209451 +0.414458 +0.057905 +-0.055628 +0.799402 +0.094046 +0.572519 +-62.240740 +0.309830 +0.333500 +0.575760 +0.369883 +0.397288 +0.459286 +0.533635 +0.207883 +0.386774 +0.990285 +0.953095 +0.936349 +0.824109 +0.970295 +0.661922 +0.856680 +0.410588 +0.850571 +0.986439 +-9.418248 +0.584837 +0.012858 +0.296518 +0.922349 +0.985653 +0.146724 +0.223650 +0.349430 +0.173231 +0.150648 +0.655091 +0.794864 +-0.178548 +0.777183 +0.740443 +0.981773 +0.839063 +0.634551 +0.798149 +0.766237 +0.107935 +0.932548 +0.946895 +0.932681 +0.841241 +0.531132 +0.000592 +-0.990380 +0.779168 +0.159713 +-1.361083 +0.835297 +0.378938 +0.042875 +0.864861 +0.149755 +0.545906 +0.480331 +0.943565 +0.228530 +0.090196 +0.987723 +0.938840 +0.069890 +0.367477 +0.399343 +0.829836 +0.086758 +0.337892 +0.341485 +-0.261039 +0.363229 +0.206226 +0.569413 +0.563405 +0.461637 +-1.493733 +0.304860 +0.487954 +0.200800 +0.980524 +0.844492 +0.340436 +0.295641 +0.918307 +0.481241 +0.743454 +0.287442 +0.820625 +0.816351 +0.779829 +0.852372 +0.740479 +0.907289 +0.967031 +0.912023 +0.876089 +0.751772 +0.810925 +0.683139 +0.353644 +0.777123 +0.883364 +0.416273 +-62.913578 +0.785758 +0.838426 +0.317590 +0.816666 +0.469538 +0.735926 +0.520171 +0.228054 +-0.191592 +0.701844 +0.425723 +-0.311974 +0.521329 +0.352662 +0.256541 +0.836504 +0.841610 +0.933375 +0.951267 +0.814673 +0.998539 +0.790324 +-8.088703 +0.856744 +0.782300 +0.680917 +0.688316 +0.644521 +0.919813 +0.771115 +0.073778 +0.981523 +0.501514 +0.622004 +0.808254 +0.759698 +-0.119245 +0.833619 +0.637826 +0.590770 +0.591128 +0.919464 +0.478291 +0.612970 +0.930606 +0.924218 +-0.017541 +0.611900 +0.799475 +0.478187 +0.322848 +0.609425 +0.624131 +0.646329 +0.799133 +0.355070 +0.944968 +0.424875 +-0.003118 +0.661524 +0.667356 +0.789279 +0.774780 +0.311201 +0.685315 +0.736611 +0.365998 +0.692672 +0.458840 +0.515315 +0.896344 +0.662561 +-2.081032 +0.813032 +0.339130 +-0.345197 +-0.537136 +0.853376 +0.873722 +0.751122 +0.508692 +-0.542998 +0.424688 +0.413864 +0.817557 +0.895895 +0.979260 +0.892004 +0.959487 +0.891685 +0.506991 +0.646626 +0.337362 +0.663212 +0.935370 +0.637631 +0.989997 +0.959368 +0.266919 +0.727160 +-0.118509 +0.807311 +0.202937 +0.009331 +0.702263 +0.720927 +0.745147 +0.435421 +-0.068342 +0.914374 +0.821722 +0.807663 +0.744007 +0.872914 +0.914117 +0.797107 +0.991938 +0.955390 +0.956199 +0.319672 +0.933762 +0.383149 +0.662039 +0.826362 +0.504854 +0.809131 +0.433838 +0.845989 +0.459792 +0.705744 +0.693672 +0.730607 +0.167289 +0.869591 +0.931521 +0.839455 +0.869414 +0.940488 +0.288189 +0.336036 +0.711127 +0.920866 +0.836083 +0.396780 +0.435183 +0.935487 +0.688899 +0.821458 +0.941755 +0.306109 +0.710306 +0.544934 +0.467313 +0.839720 +0.874176 +0.974678 +0.936610 +0.706885 +0.235905 +0.512383 +0.468733 +0.894589 +0.849691 +0.788012 +0.933546 +0.192217 +0.402341 +0.339726 +0.506062 +0.864463 +0.923184 +0.966766 +0.175144 +0.214103 +0.931915 +0.989000 +0.721428 +0.872622 +0.786642 +0.426893 +0.550374 +0.431426 +0.607379 +0.687470 +0.916597 +0.435180 +0.399101 +0.880770 +0.353409 +0.872651 +0.891142 +0.104432 +0.977105 +0.200007 +0.859517 +0.784723 +0.961624 +0.902664 +0.042677 +0.928729 +0.586958 +0.828655 +0.064327 +0.405240 +0.724911 +0.873603 +0.500510 +0.675838 +0.490841 +0.789664 +0.925154 +0.807311 +0.171756 +0.450671 +0.930374 +0.884897 +0.228444 +0.388858 +0.478778 +0.948761 +0.513125 +-0.387591 +0.394538 +0.858115 +0.264156 +0.858474 +0.839402 +0.179563 +0.376887 +0.917206 +0.622846 +0.595071 +0.890634 +0.929163 +0.837418 +0.748678 +0.213675 +0.802049 +0.308917 +0.827608 +0.066758 +0.655299 +0.698336 +0.812082 +0.411832 +0.818259 +0.628236 +0.345091 +0.539294 +0.852835 +0.738822 +0.363207 +0.434159 +0.912445 +0.465022 +-0.080810 +0.894740 +0.981461 +0.260111 +0.737430 +0.818956 +0.764086 +0.881462 +-1.489558 +-0.420178 +0.495728 +-1.363340 +-0.245613 +0.924856 +0.570639 +0.583552 +0.431935 +0.697415 +0.910547 +0.468433 +0.592215 +0.831436 +0.705134 +0.336026 +0.099343 +0.672619 +0.147279 +0.804591 +0.092613 +0.891751 +0.412700 +0.813546 +-584452.515122 +0.962136 +0.878992 +0.847898 +0.980733 +0.598317 +0.678757 +0.644973 +0.949265 +0.862984 +0.751115 +0.729454 +0.807360 +0.947889 +0.687895 +0.617561 +0.826536 +0.560209 +0.200710 +0.188951 +0.126304 +0.896409 +0.801029 +0.924446 +-0.213861 +0.122567 +0.423999 +0.896178 +0.033975 +0.822943 +0.597794 +0.369609 +0.177695 +0.492778 +0.186854 +0.332401 +0.364113 +0.232928 +0.784301 +0.450888 +0.589903 +0.682629 +0.685122 +0.135757 +0.331964 +0.502398 +0.889050 +0.711015 +0.417840 +0.998603 +0.942876 +0.447934 +0.304173 +0.615011 +0.820795 +-0.017399 +0.382315 +0.704268 +-0.919100 +0.018289 +0.972934 +0.509235 +0.878399 +0.087697 +0.559658 +0.024735 +0.723230 +0.854559 +0.365800 +0.421568 +0.504198 +-0.277291 +0.018870 +0.936765 +0.320687 +0.773404 +0.691168 +0.858550 +0.811172 +-0.125875 +0.705241 +0.340410 +0.748607 +0.926877 +0.336977 +0.422164 +0.650503 +-0.176520 +-0.202975 +0.624787 +0.823283 +0.772184 +0.623016 +0.995160 +0.379456 +-0.230767 +0.306447 +0.782144 +0.481080 +-0.059789 +0.612594 +-0.298587 +0.383385 +0.786049 +0.769356 +-0.960577 +0.255529 +0.998050 +0.354123 +0.626061 +0.139665 +0.299007 +0.310278 +0.284304 +0.631512 +0.778122 +0.380299 +-2.464926 +0.167055 +0.074251 +0.027453 +0.190239 +0.180830 +0.147324 +0.866146 +0.629213 +0.764419 +0.099426 +0.583797 +0.454095 +0.003772 +0.683071 +0.965038 +0.337086 +0.579006 +0.304018 +0.067036 +0.132348 +0.145913 +0.315017 +0.102033 +0.314944 +0.616631 +0.897275 +0.145755 +0.262534 +0.115269 +0.294429 +0.329312 +-2.439494 +0.713452 +0.992422 +0.725317 +0.879293 +0.544374 +0.658576 +0.987016 +0.141705 +0.771497 +0.147291 +0.229450 +0.931532 +0.855054 +0.013453 +0.842283 +0.666262 +0.405693 +0.983879 +0.163838 +0.176244 +0.836924 +0.390325 +0.228417 +-0.068960 +0.731005 +0.897499 +0.236813 +0.971172 +0.173740 +0.852074 +0.653951 +0.200288 +0.965855 +0.785704 +0.347810 +0.643299 +0.793215 +0.631200 +0.387547 +0.474976 +0.948802 +-0.434431 +0.921462 +0.584179 +0.746585 +0.120381 +-0.405043 +0.624894 +-0.007923 +0.821178 +0.934222 +0.776295 +-8718406373.428162 +0.747906 +0.838190 +0.158890 +0.976654 +0.971687 +0.697741 +0.933539 +0.319569 +0.670124 +0.888444 +0.981224 +0.508613 +0.859371 +0.955408 +0.601373 +0.773093 +0.974549 +0.928171 +0.439219 +0.697263 +0.953186 +0.812088 +0.791367 +0.916519 +0.444395 +0.638855 +0.848744 +0.469297 +0.886959 +0.510805 +0.995910 +0.725539 +0.217203 +0.945549 +0.594122 +0.841266 +0.710659 +0.384245 +0.885394 +0.696935 +0.689594 +0.326766 +0.862969 +0.936322 +0.958849 +0.921463 +0.370569 +0.928070 +0.831516 +0.741828 +0.940505 +0.813432 +0.882759 +0.877097 +0.854458 +0.158574 +0.791279 +0.677469 +0.403280 +0.688178 +0.436756 +0.511074 +0.591830 +0.647701 +0.580604 +0.549622 +0.641926 +0.875086 +0.898743 +0.913708 +-0.242899 +0.785007 +0.837764 +0.713228 +0.938506 +0.980821 +0.593009 +0.844478 +0.430094 +0.843288 +0.600535 +0.713965 +0.883979 +-0.037324 +0.836978 +0.650434 +0.556266 +0.555114 +0.463683 +0.456276 +0.928440 +0.350014 +0.704494 +0.912500 +0.918228 +0.916036 +0.717314 +0.451445 +0.610432 +0.363690 +0.879033 +0.843217 +0.639156 +0.431734 +0.392401 +0.570349 +0.770641 +0.651247 +0.713102 +0.403145 +0.553383 +0.461100 +0.835396 +0.833333 +0.411250 +0.453612 +0.528831 +0.522558 +0.897296 +0.446421 +0.833539 +-0.077447 +-0.140632 +0.671877 +0.612162 +0.525219 +0.576621 +0.567895 +0.017279 +0.613503 +0.612461 +0.222928 +0.215911 +0.631599 +0.989522 +0.099628 +0.249877 +0.037209 +0.225602 +0.075096 +0.176368 +0.376609 +0.149694 +0.410938 +0.529042 +0.161119 +0.169043 +0.942381 +0.915783 +0.728008 +0.469534 +0.185010 +0.975199 +0.016636 +0.149007 +0.843336 +0.150623 +0.328530 +0.932125 +0.985453 +0.730464 +0.903433 +0.158132 +0.107020 +0.595621 +0.113367 +0.893824 +0.251490 +0.903796 +0.835295 +0.123019 +0.586746 +0.883424 +0.102922 +-0.232196 +0.537549 +0.535274 +0.056237 +0.194560 +0.154454 +0.825686 +0.839649 +0.947628 +0.847223 +0.856770 +0.794785 +0.668851 +0.923720 +0.777804 +0.993064 +0.917109 +0.977722 +0.724843 +0.819306 +0.216202 +-27.233580 +0.635454 +-0.033277 +0.377149 +0.196770 +0.767390 +0.811425 +0.591927 +0.551189 +0.043530 +0.849550 +0.107732 +0.945110 +0.836524 +0.316262 +0.712068 +-0.261094 +-0.026602 +0.986654 +0.469906 +0.682862 +-0.320320 +0.364682 +0.145487 +0.198519 +0.124222 +0.956306 +0.255075 +0.642481 +0.225283 +0.118305 +0.467994 +0.239144 +0.088638 +0.293478 +0.921060 +0.892900 +0.691450 +0.666980 +0.737143 +0.963729 +0.671532 +0.957336 +0.835797 +0.843502 +0.051209 +0.948960 +0.958615 +0.565822 +0.871418 +0.895035 +0.806384 +0.498492 +0.581156 +0.637893 +0.952767 +0.961622 +0.822264 +0.365744 +0.434020 +0.649079 +0.299604 +0.573810 +0.541044 +0.489003 +0.382285 +0.842199 +0.556165 +0.634525 +0.522599 +0.591486 +0.652131 +0.875927 +0.832114 +0.864264 +0.816118 +0.530209 +0.926930 +0.889968 +0.734984 +0.823835 +0.697116 +0.919064 +0.915698 +0.866518 +-0.073321 +0.813351 +0.930472 +0.918234 +0.913007 +0.947398 +0.422373 +0.289721 +0.501601 +0.987860 +0.914132 +0.954742 +0.824595 +0.764992 +0.700179 +0.936280 +0.893556 +0.480681 +0.453644 +0.841649 +0.290793 +0.835289 +0.557816 +0.985839 +0.689231 +0.498217 +0.646854 +0.922745 +0.527167 +0.861021 +0.456398 +0.505189 +0.835094 +0.747971 +0.742721 +0.353299 +-0.029018 +0.686275 +0.046941 +0.939684 +0.511087 +0.735725 +0.935963 +0.757933 +0.754101 +0.905251 +0.584414 +0.544114 +0.460104 +0.171780 +0.533763 +0.598311 +0.826143 +0.179699 +-0.238005 +0.317799 +0.216805 +0.703742 +0.648734 +0.870709 +0.501397 +0.685011 +-0.554499 +0.224677 +0.720686 +0.763557 +0.744508 +0.786777 +0.668873 +-0.197084 +-0.060402 +0.563703 +0.646992 +0.341824 +0.845909 +0.602086 +0.482279 +0.558464 +0.750719 +0.611827 +0.434404 +0.543324 +-0.166000 +0.955775 +0.665167 +0.487391 +0.860600 +0.726194 +0.355727 +0.961776 +0.751469 +0.703800 +0.890712 +0.694233 +0.827282 +0.773426 +0.411517 +0.337952 +-2.363269 +0.622191 +-0.000107 +0.254944 +-0.026436 +0.997969 +0.004950 +0.905059 +0.297251 +0.194766 +0.393738 +0.879135 +-5.206428 +-0.402609 +0.668198 +0.294529 +0.191031 +0.800185 +0.548311 +0.634711 +0.642284 +0.091291 +0.201254 +0.342689 +0.222106 +0.558613 +0.273140 +0.041093 +0.161715 +0.514101 +0.334466 +0.369869 +0.957393 +0.965855 +0.857692 +0.418286 +0.956997 +0.525426 +0.369813 +0.964260 +0.353260 +0.193489 +0.710856 +0.751942 +0.714255 +0.344553 +0.679529 +-0.274874 +0.742470 +0.725847 +0.760980 +0.743030 +0.176431 +0.676882 +0.155566 +0.787410 +0.810490 +-0.032668 +0.604704 +0.897991 +0.523391 +0.464509 +0.442368 +0.908983 +0.557117 +0.520418 +0.537170 +0.718134 +0.519469 +0.880577 +0.839840 +0.939009 +0.822084 +0.665689 +0.441666 +0.520856 +0.671908 +0.560225 +0.540239 +-0.466371 +0.875930 +0.750406 +-0.318343 +0.386384 +0.823696 +0.847191 +0.655348 +0.528737 +0.891330 +0.843951 +0.809232 +0.301996 +-0.203074 +0.699088 +-0.044621 +-0.414606 +0.373455 +0.932799 +0.885910 +0.181133 +0.265809 +-0.111221 +0.253918 +0.180942 +0.704583 +0.985076 +0.099783 +-0.255007 +0.781936 +0.697958 +0.853464 +0.998281 +-0.936686 +0.992739 +0.035771 +0.944742 +0.590808 +0.714820 +0.914072 +0.830114 +0.877460 +0.258699 +0.826303 +0.377957 +0.466317 +0.450684 +0.949004 +-0.019946 +-302557.600964 +0.901528 +-4.349213 +0.036708 +-0.383972 +-0.059381 +0.973108 +0.745680 +0.989526 +0.945734 +0.954334 +0.880474 +0.990786 +-71.075666 +-175879.778190 +0.950441 +0.264168 +0.830579 +0.255402 +0.831971 +0.854931 +0.856588 +0.776343 +0.747430 +0.684235 +0.311404 +0.432642 +0.625170 +0.990198 +0.489448 +0.637173 +0.527092 +0.399690 +0.472331 +0.156327 +0.819403 +-0.254717 +0.610352 +0.914214 +0.858320 +0.840949 +0.935083 +0.687737 +0.808209 +0.617557 +0.221036 +0.174642 +0.952796 +0.066575 +0.486793 +0.470956 +0.106262 +0.422872 +0.443470 +0.383205 +0.342800 +0.789680 +-0.733134 +0.527346 +0.679164 +-0.667947 +0.910773 +0.910371 +0.777083 +0.556427 +0.811210 +0.123437 +0.998013 +0.155272 +0.230067 +0.637473 +0.691177 +0.343903 +0.671501 +0.555237 +0.489718 +-0.036793 +0.253771 +0.268933 +0.689949 +0.204730 +0.803646 +-0.122264 +0.521422 +0.817503 +0.947934 +0.412757 +0.725532 +0.852574 +0.348987 +0.917726 +0.301580 +0.971418 +0.922762 +0.996173 +0.574289 +-0.678777 +0.359094 +0.997306 +0.980380 +0.961145 +-2.236025 +0.880106 +0.781306 +0.975889 +0.507297 +-0.001517 +0.878364 +0.124394 +0.953529 +0.123249 +0.503825 +0.588309 +-2.914362 +0.909037 +0.702824 +0.466409 +0.770732 +0.533507 +0.142420 +0.676327 +0.281404 +0.764116 +0.898857 +0.711565 +-0.466611 +0.695374 +0.947476 +0.993833 +0.299839 +0.546126 +0.429034 +0.733388 +0.932659 +0.756802 +-0.006273 +0.771886 +0.922817 +0.929340 +0.030941 +0.947613 +0.166676 +0.803748 +0.947505 +0.987272 +0.675387 +0.899881 +-0.271340 +0.363668 +0.939715 +-127.308483 +0.571964 +0.005371 +0.587003 +0.828970 +0.594332 +0.854529 +0.901594 +0.992398 +0.954342 +0.806276 +0.674953 +0.281238 +0.567903 +0.373399 +0.907001 +-0.272575 +0.779839 +0.937510 +0.654652 +0.854949 +0.735241 +0.325875 +0.690661 +0.145978 +0.671079 +-0.062818 +0.490619 +-0.063548 +-0.826850 +0.673692 +0.718862 +0.817352 +0.375781 +0.375660 +0.134565 +0.208973 +0.282198 +0.265675 +0.691467 +0.934134 +0.039761 +0.409343 +0.639829 +0.709092 +0.720022 +0.606337 +0.996753 +0.896241 +0.403946 +0.008122 +0.232102 +0.918455 +0.655257 +0.783472 +0.402454 +-0.217533 +0.399124 +0.215786 +0.610251 +0.740202 +0.404262 +0.778217 +0.651484 +0.713835 +0.571096 +0.919832 +0.783859 +0.155058 +0.514562 +0.186207 +0.272513 +0.136323 +0.125727 +0.732272 +0.047331 +0.470194 +0.481881 +0.500362 +0.455627 +0.133709 +0.380080 +0.675149 +0.680701 +0.642524 +0.465357 +0.396440 +0.352246 +0.510989 +0.708323 +0.333048 +0.840603 +0.765729 +0.914996 +0.645594 +0.753710 +0.845852 +0.695744 +0.843838 +0.720529 +0.654388 +0.915361 +0.589377 +0.534717 +0.901323 +0.819102 +0.884847 +-0.728314 +0.863504 +0.277558 +0.613603 +0.505266 +0.617287 +0.894090 +0.838644 +0.810346 +-0.264259 +0.749816 +0.301700 +0.622411 +-0.159640 +0.853244 +0.353169 +0.774370 +0.457668 +-0.333943 +0.652103 +0.580546 +0.821090 +0.614946 +0.475949 +0.808696 +0.368535 +0.929189 +0.775374 +0.556103 +0.807124 +-0.114486 +0.469714 +-0.132330 +0.818962 +0.443382 +0.748317 +0.783882 +0.568869 +0.457543 +0.712137 +0.374417 +0.801419 +0.673515 +0.752540 +0.752540 +0.351264 +0.495076 +0.815914 +0.217621 +0.727547 +0.769414 +0.537600 +0.615431 +0.845580 +0.331020 +0.945110 +0.936992 +0.423135 +0.627753 +0.608388 +0.835684 +0.539349 +0.619141 +0.864174 +0.135236 +-0.032878 +-0.324805 +0.552763 +0.751335 +0.742028 +0.821325 +0.705741 +0.901615 +0.941459 +0.788498 +0.792786 +0.458084 +0.878377 +0.924483 +0.544537 +0.567651 +0.484579 +0.732541 +0.006344 +0.828007 +0.642644 +0.906683 +0.821819 +0.655051 +0.634589 +0.868303 +0.819294 +0.612372 +0.449902 +0.455505 +0.606211 +0.771885 +-0.388307 +0.364807 +0.878508 +0.702668 +0.618443 +0.874307 +0.159103 +0.193141 +0.783626 +0.483601 +0.439695 +0.468580 +0.064904 +0.385722 +0.970985 +0.484427 +0.393711 +0.850696 +0.801590 +-0.226876 +0.956603 +0.943373 +0.961920 +0.877860 +0.972952 +0.959694 +0.869009 +0.857948 +0.768529 +0.538665 +0.858520 +0.773187 +0.724449 +0.845751 +0.743554 +0.304425 +0.917632 +0.524374 +0.818110 +0.172553 +0.122420 +0.546745 +0.995049 +0.077804 +0.181177 +0.912964 +0.239265 +0.274500 +0.232092 +0.135356 +0.257540 +0.750881 +0.425942 +0.825425 +0.114214 +0.802640 +0.903296 +0.850660 +0.112144 +0.679903 +0.564974 +0.974029 +0.753019 +-0.279271 +0.831223 +0.286888 +0.007165 +0.965244 +0.687196 +-0.088991 +0.399954 +0.741091 +0.245461 +0.170861 +0.381776 +0.160977 +0.082324 +0.833631 +0.517107 +0.142275 +0.941869 +0.730430 +0.507151 +-0.048286 +0.625970 +0.768898 +0.609240 +0.542729 +0.964475 +0.832064 +0.533541 +0.015815 +0.707642 +0.057978 +0.600397 +0.135106 +0.627713 +0.170245 +0.816403 +0.221220 +0.988691 +0.185012 +0.176273 +0.229806 +0.458624 +0.060413 +0.640296 +0.148069 +0.149054 +0.725533 +0.004075 +0.609182 +0.484056 +0.755954 +0.193220 +0.899972 +0.718401 +0.372653 +0.835680 +0.938052 +0.150404 +0.387745 +-0.202768 +0.228549 +0.292454 +-0.000709 +0.947467 +0.327401 +-0.057412 +0.382367 +0.830019 +0.614012 +-0.374653 +0.086587 +0.003282 +0.246464 +0.022816 +0.963455 +0.323329 +0.111853 +0.512938 +0.831196 +0.520953 +0.605751 +0.851331 +0.961568 +0.981802 +0.933209 +0.788964 +0.871638 +0.333911 +0.772924 +0.440781 +0.723260 +0.797971 +0.710972 +0.469645 +0.553698 +-0.369233 +0.822411 +0.757196 +0.670214 +0.698183 +0.320309 +0.850772 +0.928361 +0.934766 +0.828189 +0.788644 +0.109857 +0.906556 +0.366421 +0.606049 +0.847948 +-0.020021 +-0.230701 +-0.013327 +0.947815 +-0.090314 +0.786799 +0.770609 +-0.111769 +0.103189 +-0.146047 +-0.154504 +0.411856 +0.610668 +0.351659 +-0.154597 +-1.681917 +0.933539 +0.834795 +0.582431 +0.685646 +0.570677 +0.888863 +-1.044642 +-0.223227 +0.373223 +-0.383417 +0.609225 +0.859913 +0.502834 +0.848317 +0.787296 +0.427585 +0.878659 +-965.790296 +0.752862 +0.392960 +0.683583 +0.581130 +0.981436 +0.976741 +0.471242 +0.807252 +0.873022 +0.843683 +0.806059 +0.486243 +0.708963 +0.923927 +0.893745 +0.541526 +0.896309 +0.889008 +0.428120 +0.997237 +0.716470 +0.027783 +0.575860 +0.942169 +-0.266036 +0.596630 +0.811427 +0.872854 +0.822362 +0.788635 +0.618782 +0.780531 +-0.152575 +0.530259 +0.505000 +0.914221 +0.284140 +0.361707 +0.547788 +0.511421 +-0.237916 +0.300264 +-0.200866 +0.216707 +0.673433 +-0.117522 +0.365317 +0.134109 +0.120669 +0.575742 +0.466247 +0.582955 +0.362579 +0.639052 +0.499156 +0.565200 +0.388332 +0.655677 +0.847197 +-0.283063 +0.516905 +0.462886 +-0.302291 +-0.166565 +0.220613 +0.633695 +0.377094 +0.682378 +0.985971 +0.816608 +0.296226 +0.537490 +0.199613 +0.256892 +0.722217 +0.363727 +-0.201420 +0.980480 +0.709817 +0.825598 +0.220010 +0.888818 +0.837292 +0.998018 +0.929642 +-0.021059 +0.969271 +0.731798 +0.855302 +0.665599 +0.898279 +0.273267 +0.884580 +0.881903 +0.711232 +0.937675 +0.344021 +0.879023 +0.591926 +0.761972 +0.941130 +0.727463 +0.808513 +0.484844 +0.860859 +0.931146 +0.932052 +0.927425 +0.530523 +0.222806 +0.897957 +0.818820 +0.995766 +0.930561 +0.906003 +0.870125 +0.427792 +0.852272 +0.978933 +0.473612 +0.977903 +-0.570842 +0.933387 +0.982930 +0.975418 +0.583004 +0.562994 +0.949911 +0.941077 +0.944422 +-14.700214 +0.839624 +0.364082 +0.618454 +0.928742 +0.827134 +0.922122 +0.704347 +0.561165 +0.869544 +0.471939 +0.186379 +0.683823 +0.938174 +0.303830 +0.538355 +0.659931 +0.278027 +0.754677 +0.572667 +0.765627 +0.745437 +0.551962 +0.916051 +0.882717 +0.821838 +0.778833 +0.854536 +0.963677 +0.875484 +0.934628 +0.719732 +0.460126 +0.799927 +0.182382 +0.682741 +0.888131 +0.716364 +0.249026 +0.139417 +0.683348 +0.899120 +0.751204 +0.785626 +0.919905 +0.988558 +0.682806 +0.974162 +0.874223 +0.669579 +0.109574 +0.712502 +0.905851 +0.945253 +0.164631 +0.691693 +-0.839928 +0.321095 +0.642425 +0.981510 +0.480177 +0.726843 +0.428813 +0.895352 +0.651319 +0.354514 +0.128655 +-0.516829 +0.682587 +0.810728 +0.855496 +0.796628 +-0.586550 +0.819363 +0.146769 +0.925294 +-0.176401 +0.185809 +0.185834 +0.928943 +0.202761 +0.844357 +0.784143 +0.830815 +0.341570 +0.956730 +0.486225 +0.904844 +0.980274 +0.905621 +0.020994 +0.423229 +0.632518 +0.599915 +0.479922 +0.000749 +0.462433 +0.235020 +0.587886 +0.306530 +0.687128 +0.888151 +0.395112 +0.844284 +0.586604 +0.371682 +0.924372 +0.593233 +0.653899 +0.844656 +0.818214 +0.766786 +0.604244 +0.550671 +0.500229 +0.782849 +-0.496088 +0.878046 +0.754417 +0.840431 +0.846665 +-0.058598 +0.956641 +0.671327 +0.763640 +0.722204 +0.895568 +0.917877 +0.576377 +0.870345 +0.277036 +0.505050 +0.780216 +0.948272 +0.696976 +0.383183 +0.874076 +0.330178 +0.527683 +0.575982 +0.853404 +-1.682840 +0.599423 +0.832194 +0.935747 +0.723971 +0.241180 +0.956214 +0.977613 +0.544851 +0.358810 +0.909481 +0.846108 +0.925873 +0.931216 +0.495615 +0.945752 +0.696898 +0.112465 +0.945832 +0.934022 +0.804640 +0.373538 +0.307639 +0.335323 +0.832622 +0.909868 +0.880320 +0.889317 +0.956645 +0.388838 +0.926107 +0.559794 +0.874079 +0.679834 +0.749660 +0.827143 +0.821180 +0.788059 +0.196175 +-0.707350 +0.975495 +0.368468 +0.875805 +0.453663 +0.844351 +0.420269 +0.770249 +0.894343 +0.930447 +0.428914 +0.466432 +0.842512 +0.762170 +0.384046 +0.651317 +0.829691 +0.814858 +0.420277 +0.983615 +0.883102 +0.965679 +0.913479 +0.304028 +-4.759707 +0.624680 +-0.033798 +0.743382 +0.858457 +0.777086 +0.933080 +0.785419 +0.479626 +0.494421 +0.938183 +0.947665 +0.974898 +0.076461 +0.744482 +-0.140027 +0.437778 +0.817449 +0.638751 +0.891108 +0.018808 +0.347457 +0.536104 +0.920034 +0.977623 +0.979505 +0.969780 +0.994509 +0.606539 +0.224493 +0.906601 +0.841490 +0.708213 +0.696114 +0.958988 +0.308473 +-0.180255 +0.885638 +0.939457 +0.818248 +0.913753 +0.992077 +0.693107 +0.859524 +-3.596235 +0.735796 +0.671472 +0.734876 +0.896255 +0.946874 +0.950731 +0.343019 +0.969810 +0.681691 +0.349913 +0.926931 +0.975685 +0.825688 +0.645877 +-0.190919 +0.672994 +0.815157 +0.700353 +0.355713 +0.721550 +0.543672 +0.580047 +0.330253 +0.831071 +-0.804815 +0.497715 +0.366470 +0.731907 +0.587486 +0.842124 +0.784103 +0.867892 +0.844644 +0.652591 +0.861448 +0.858167 +0.735175 +0.525837 +0.773734 +0.647454 +0.591736 +0.591871 +0.891236 +0.473594 +0.930907 +0.834894 +0.929374 +0.657202 +-0.062641 +0.684204 +0.059378 +0.062412 +0.639494 +0.920804 +0.473789 +-0.353352 +0.842034 +0.365392 +0.133114 +0.913533 +0.878767 +0.711122 +0.760827 +0.777598 +0.645895 +0.650017 +0.493966 +-37.510107 +0.308575 +-0.029551 +0.569527 +0.906207 +0.661690 +0.835845 +0.858736 +0.839198 +0.756232 +-0.190486 +0.925859 +0.723072 +0.849029 +0.716316 +0.836583 +0.888298 +0.846270 +0.841667 +0.015211 +0.654884 +0.979422 +0.590919 +0.540956 +0.731754 +0.501630 +0.765844 +0.313929 +-0.213693 +0.023473 +0.737358 +-0.020986 +0.713769 +0.549242 +0.636574 +-1.332407 +0.835909 +0.456983 +0.040562 +0.926796 +0.880723 +0.675360 +0.461993 +0.755454 +0.847675 +0.694973 +0.475293 +0.340382 +0.568479 +0.934902 +0.536366 +0.577693 +0.750605 +0.646011 +0.541451 +0.586699 +0.881525 +0.554109 +0.625668 +0.818444 +0.285489 +0.917053 +0.848686 +0.635738 +-0.576206 +-0.491681 +-0.270008 +0.929381 +0.068593 +0.578830 +0.606679 +0.658390 +0.970092 +0.279044 +0.438572 +0.478008 +0.567550 +0.442131 +0.893890 +0.528198 +0.577121 +0.681314 +0.325732 +0.742987 +0.915565 +0.991747 +0.702591 +0.975058 +0.992043 +0.904067 +0.932804 +0.946083 +0.998975 +-0.069365 +0.926572 +0.987414 +0.582080 +0.999662 +0.999596 +0.989413 +0.996815 +0.855612 +0.989733 +0.981915 +0.899084 +0.900537 +0.931838 +0.527506 +0.718420 +0.675598 +0.626858 +0.487205 +0.427344 +0.376499 +0.236275 +0.147050 +0.290732 +0.978968 +0.070279 +0.346324 +0.737484 +0.798969 +0.770845 +0.672168 +0.383400 +0.246250 +0.737308 +0.911966 +0.234474 +0.527220 +-0.022060 +-0.049192 +0.468198 +-0.276922 +0.082362 +0.417768 +-0.557054 +0.898944 +0.954638 +0.710188 +0.870550 +0.836386 +0.888787 +0.765447 +0.874459 +0.971691 +0.847237 +0.986716 +0.885351 +0.293521 +-16.534738 +0.758270 +0.557443 +0.444840 +0.555262 +0.566147 +0.544361 +0.746733 +0.949522 +0.722891 +0.509637 +0.794391 +0.689441 +0.882305 +0.871803 +0.540604 +0.757700 +0.936449 +0.913813 +0.457625 +0.527670 +0.353535 +0.909887 +0.316619 +0.993586 +-8.313680 +0.729610 +0.731582 +0.789965 +0.746663 +0.740000 +0.925651 +0.236675 +0.437241 +0.360860 +0.403932 +0.424531 +0.740948 +0.473619 +0.424725 +0.423195 +0.429217 +0.753538 +0.449659 +0.404396 +0.594772 +0.512727 +0.371151 +0.878738 +0.516668 +0.555130 +0.656640 +0.522987 +0.255006 +0.755865 +0.528115 +0.558197 +0.886544 +0.777617 +0.973759 +0.784470 +0.846833 +0.976797 +0.866921 +0.931682 +0.841493 +0.678557 +0.862817 +0.554169 +0.660722 +0.540851 +0.474374 +0.120921 +0.979255 +0.506700 +0.689582 +0.744447 +0.756369 +0.726372 +0.350719 +0.346639 +0.599742 +0.801609 +-96.353447 +-89.035006 +0.702093 +0.502037 +0.470281 +0.474059 +0.726511 +0.738704 +0.891197 +0.660089 +0.200484 +0.668240 +0.402951 +0.575631 +0.513108 +0.456418 +0.975333 +0.185627 +0.673964 +0.309994 +0.244410 +0.580367 +0.495094 +0.171768 +0.456329 +0.086184 +0.132964 +0.536305 +0.303257 +0.353566 +0.040423 +0.775153 +0.006916 +0.294015 +0.385383 +0.640947 +0.481175 +0.591996 +0.144887 +0.988663 +0.351541 +0.745706 +0.386074 +0.629396 +0.818458 +0.522564 +-0.082197 +0.076361 +0.174365 +0.631657 +0.742922 +0.704786 +0.947258 +0.822344 +-0.380170 +0.880773 +0.795467 +0.882239 +0.845690 +0.894596 +0.581316 +0.703144 +0.410512 +0.363598 +0.822058 +0.608619 +0.451415 +0.647304 +0.912702 +0.315378 +0.878651 +0.556059 +0.594711 +0.614243 +0.803653 +0.711923 +0.581025 +0.156857 +0.839802 +0.052986 +0.415063 +0.691626 +-0.016953 +0.509998 +0.984493 +0.721189 +0.502683 +0.958663 +0.607705 +0.786178 +0.384333 +0.499733 +0.554508 +0.174743 +0.621233 +0.520064 +0.554350 +-0.154787 +0.655215 +0.844661 +0.891542 +0.917330 +0.539698 +0.545894 +-0.104599 +0.988789 +-1.520605 +0.605937 +0.819242 +0.433619 +0.557583 +0.654138 +0.435343 +0.931906 +0.929610 +0.856319 +-0.098531 +0.398175 +0.660260 +0.871011 +0.743531 +0.805240 +0.571893 +0.303924 +0.264756 +0.797918 +0.545633 +0.489211 +0.535996 +0.453372 +0.354042 +0.596233 +0.798337 +0.572063 +0.810522 +0.663451 +0.815692 +0.717802 +0.929879 +0.133749 +0.217990 +0.149458 +0.744403 +0.789213 +0.992051 +-0.019881 +0.082951 +0.714892 +0.677802 +0.645742 +0.751959 +0.637433 +0.705801 +0.977447 +0.127432 +0.371260 +0.127413 +0.874780 +0.550834 +0.745691 +0.618169 +0.890470 +0.587296 +0.324116 +0.282508 +0.930448 +0.787293 +-38005.882091 +0.492017 +0.700818 +0.257447 +0.901477 +-0.848710 +0.834315 +0.497430 +0.224125 +0.765377 +0.502840 +0.318408 +0.293631 +0.333150 +0.260617 +0.635627 +0.809808 +0.557290 +0.895780 +0.875135 +0.073862 +0.799188 +0.699893 +0.772412 +0.399266 +-0.411856 +-0.183633 +0.712706 +0.760221 +0.024443 +0.496032 +0.820696 +0.735738 +0.834834 +0.795469 +0.937032 +0.904156 +0.855328 +0.528314 +0.800178 +0.931822 +0.863887 +0.910891 +0.912314 +0.721994 +0.900992 +0.905885 +0.901232 +0.992651 +0.692486 +0.882000 +0.845454 +0.504667 +0.779867 +0.697408 +0.859182 +0.044547 +-44.550191 +0.344682 +0.935123 +0.494406 +0.478886 +0.974608 +-0.476470 +0.668455 +0.935845 +-0.344465 +0.941303 +-0.030714 +0.846893 +-0.065266 +0.781048 +0.761583 +0.873891 +0.645368 +0.592083 +0.923906 +0.932000 +0.364020 +0.940381 +0.768443 +0.465564 +0.830181 +0.412167 +0.877082 +0.728662 +0.839228 +0.865842 +0.899872 +0.681334 +0.594332 +0.306247 +0.453302 +0.545152 +0.737283 +0.854997 +0.963454 +0.673043 +0.360683 +0.930607 +0.506075 +0.502540 +0.363301 +0.614613 +0.402368 +0.695623 +0.902237 +0.470750 +0.727225 +0.932989 +0.647412 +0.639008 +0.616646 +0.843577 +0.707418 +0.649619 +0.873091 +0.755979 +0.771522 +0.896265 +0.856775 +0.871134 +0.900197 +0.342362 +0.980417 +0.489879 +0.786162 +0.929690 +0.545702 +0.775566 +0.974408 +0.907087 +0.937048 +0.706384 +0.548068 +0.237527 +0.900427 +0.726414 +0.765292 +0.826607 +0.805401 +0.916604 +0.864245 +0.674649 +-0.468071 +0.846994 +0.586244 +0.696690 +0.850888 +0.803561 +0.780365 +0.759776 +0.783577 +0.819244 +0.881342 +0.726059 +0.837986 +0.541937 +0.884581 +0.704940 +0.428779 +0.693568 +0.735640 +0.771035 +0.726684 +0.966645 +0.869183 +0.641940 +0.942382 +0.735626 +0.572993 +0.917960 +0.663466 +0.760249 +0.368804 +0.939993 +0.845554 +0.896693 +0.793035 +0.790031 +0.937312 +0.812815 +-1.365577 +0.921376 +0.917460 +0.924960 +0.566448 +0.494701 +0.919175 +0.852833 +0.081174 +0.934562 +0.602854 +0.714655 +0.892166 +0.281783 +0.609755 +0.080088 +0.431127 +0.218829 +0.025629 +-0.019443 +0.383464 +0.153742 +-0.029655 +0.154756 +0.015891 +0.964344 +0.126174 +-0.094312 +0.509330 +0.217618 +0.640168 +-0.149031 +0.127957 +0.220955 +0.111421 +0.108237 +0.084901 +0.192492 +0.384156 +0.513154 +0.023204 +0.233752 +0.892175 +0.065491 +0.060198 +0.784016 +0.823900 +0.922348 +0.904261 +0.837095 +0.874645 +0.775695 +0.860962 +-0.292587 +0.765778 +0.870170 +0.771595 +0.478522 +0.990048 +0.793615 +0.290982 +0.980497 +0.870142 +0.899719 +0.734779 +0.621357 +0.716841 +0.864538 +0.931813 +0.456612 +0.116506 +0.480314 +0.922780 +0.711399 +0.433117 +0.876980 +0.481188 +0.922471 +0.916170 +0.843771 +0.271500 +0.939826 +-0.074735 +0.711754 +0.323833 +0.482609 +0.558360 +0.600034 +0.899108 +0.924373 +0.886200 +-0.042209 +-0.481771 +0.710940 +0.777495 +0.385388 +0.630804 +0.794071 +0.719501 +0.818882 +0.443133 +0.307603 +0.915857 +0.921712 +0.530189 +0.865367 +0.444089 +0.751578 +0.495152 +0.666272 +0.120363 +0.844782 +0.916580 +0.918587 +0.937870 +0.750514 +0.391748 +0.391974 +0.476968 +0.803480 +0.875143 +0.331193 +0.326061 +0.720107 +0.579792 +0.481820 +0.944275 +0.853466 +0.491072 +0.612583 +0.939842 +0.497180 +0.904011 +0.926017 +0.909709 +0.952760 +0.429880 +0.746980 +0.666666 +-0.226726 +0.822583 +0.256643 +0.644472 +0.633140 +0.291441 +0.618012 +0.870670 +0.231407 +-0.632535 +0.865009 +-0.492360 +0.926534 +0.845806 +0.987276 +0.747452 +-0.618838 +-0.012158 +0.589338 +0.697962 +0.652889 +0.861156 +0.842847 +0.611359 +0.880907 +0.880905 +0.621406 +0.798016 +0.831690 +0.795030 +0.754157 +0.352084 +0.841776 +0.922400 +0.994806 +0.726671 +0.691007 +0.926904 +0.993647 +0.266659 +0.987848 +0.985411 +0.989557 +0.881278 +0.737451 +0.283640 +0.797688 +0.662841 +0.527572 +0.896659 +0.967773 +0.983170 +0.930423 +-0.035069 +0.826352 +0.730170 +0.446548 +0.081532 +0.667800 +0.822998 +-0.013977 +0.676687 +0.604745 +0.754722 +0.590954 +0.988299 +0.909253 +0.861768 +0.456926 +0.577019 +0.820653 +0.692143 +0.450567 +0.576159 +0.775202 +0.695927 +0.859028 +0.719256 +0.680951 +0.916819 +0.872321 +0.901969 +-0.063557 +0.783460 +0.559240 +0.680791 +0.325649 +-0.087858 +0.530059 +0.704825 +0.557603 +0.900821 +0.542064 +0.632092 +0.929860 +0.621290 +0.592672 +0.738298 +0.929151 +0.693652 +0.383603 +0.486748 +0.717536 +0.252409 +0.454390 +0.753363 +0.496710 +0.959849 +0.886925 +0.762621 +0.725849 +0.838804 +0.430113 +0.717264 +0.967904 +0.804144 +0.808812 +0.762589 +0.707485 +0.207584 +0.925702 +0.581258 +0.390261 +0.933292 +0.221123 +0.558635 +0.537578 +0.945573 +0.487449 +0.536667 +0.774825 +0.809904 +0.595113 +0.574924 +0.877597 +0.873335 +0.919343 +0.905307 +0.255304 +0.572810 +0.332679 +0.913381 +0.310682 +0.350145 +0.505221 +0.588176 +0.904729 +0.342495 +0.980552 +0.838605 +0.837814 +0.877540 +0.837356 +0.794872 +0.901442 +0.938908 +0.594955 +0.426822 +0.955349 +0.116191 +0.286572 +0.869594 +0.659288 +0.718332 +-1.174842 +0.738243 +0.159878 +0.430988 +0.579440 +0.669549 +0.674746 +0.507341 +0.845681 +0.499744 +0.451401 +0.412200 +0.529728 +0.697930 +0.782109 +0.607595 +0.423689 +0.495982 +0.435778 +0.828670 +0.575151 +0.653116 +0.983264 +0.677932 +0.754522 +0.848114 +0.329055 +0.477326 +0.516623 +0.453909 +-0.138040 +0.753266 +0.431855 +-2.974667 +0.955023 +0.856975 +0.806167 +0.689199 +0.915198 +0.816293 +0.594299 +0.566047 +-0.256955 +0.113058 +0.746848 +-0.031813 +-0.313711 +0.643808 +-0.094009 +-0.483404 +0.882844 +-0.232784 +0.755671 +0.895308 +0.923633 +0.433825 +0.692458 +0.040341 +0.408294 +0.796316 +0.815958 +0.790968 +0.273813 +-0.271404 +0.629900 +0.918693 +0.674821 +0.196799 +0.753960 +0.654806 +0.568563 +0.695930 +0.929490 +0.490985 +0.912385 +0.652035 +0.270928 +0.445284 +0.820024 +0.660967 +0.490936 +0.699711 +0.939797 +0.666452 +0.724423 +0.913008 +0.606641 +0.881150 +0.565347 +0.698445 +0.537693 +0.559941 +0.940511 +0.601071 +0.935972 +0.502538 +0.747924 +0.680252 +-1.180695 +0.919334 +0.997676 +0.362921 +0.643002 +0.768012 +0.299072 +0.915229 +0.796935 +0.903233 +0.377294 +0.265901 +0.383143 +0.561047 +0.215519 +0.367786 +0.888860 +0.788569 +0.232809 +0.518253 +0.915850 +0.615237 +0.255969 +0.687887 +0.890417 +0.482593 +0.292566 +0.521971 +0.640128 +0.842877 +0.628163 +0.350197 +-670.035653 +0.695001 +0.756817 +0.995347 +0.076668 +-1.141130 +0.939401 +0.661305 +0.751951 +0.938233 +0.751214 +0.744722 +0.850692 +0.424927 +0.867297 +0.118206 +0.639877 +0.477490 +0.692071 +0.682546 +0.742740 +0.982885 +0.941596 +0.733916 +0.621175 +-0.149359 +0.659466 +0.683712 +0.679472 +0.870799 +0.660820 +0.768591 +0.702675 +0.632153 +-0.163523 +0.824445 +0.460316 +0.268416 +0.731052 +0.795264 +0.319557 +0.676121 +0.307558 +0.594894 +0.499822 +0.423450 +0.882859 +0.568803 +0.724439 +0.665369 +0.501588 +0.088964 +0.933174 +0.912762 +0.904086 +0.686980 +0.438395 +0.817472 +0.721718 +0.681168 +0.697837 +0.496418 +0.386471 +0.824437 +0.406868 +0.570460 +0.696789 +0.913468 +0.438621 +0.932506 +0.244889 +0.934531 +0.614046 +0.836696 +0.356730 +0.541042 +0.642800 +0.725066 +0.577156 +0.794475 +0.737698 +0.165786 +0.845988 +0.838796 +0.758961 +-0.233078 +0.651795 +0.349799 +0.472038 +0.761071 +0.976853 +0.387278 +-0.027871 +0.816642 +0.726095 +0.859822 +0.695469 +0.540083 +0.413042 +0.667588 +0.439200 +0.747814 +0.555777 +0.738545 +0.853356 +0.736578 +0.492429 +-0.075195 +-0.155986 +-0.251469 +0.790412 +0.303469 +0.887587 +0.849918 +0.722772 +0.760795 +0.447252 +0.652280 +0.763071 +-0.139767 +0.303881 +0.451137 +0.611151 +-0.271050 +0.144831 +0.794274 +0.196834 +0.662439 +0.910954 +0.680591 +0.836447 +0.600566 +0.826966 +0.847471 +0.544369 +0.332732 +0.788527 +0.373491 +0.874123 +-0.053676 +0.478861 +0.524708 +0.830093 +0.995759 +0.997289 +0.913304 +0.047206 +0.484946 +0.396949 +0.847191 +0.752272 +0.835852 +-0.134828 +0.501240 +0.152465 +0.918807 +0.571727 +0.929093 +0.525433 +0.930748 +0.642467 +0.706168 +0.467091 +0.258062 +0.897578 +0.934606 +0.324641 +0.874891 +0.886088 +0.920722 +0.719632 +0.600339 +0.511413 +0.835310 +0.761398 +0.586095 +0.935263 +0.553719 +0.702622 +0.372811 +0.898849 +0.120787 +0.782336 +0.933444 +0.942414 +0.826961 +0.753885 +0.574747 +0.860431 +0.767930 +0.823928 +0.815464 +0.451128 +0.622155 +0.424576 +0.702871 +0.647399 +0.865281 +0.565371 +0.831496 +0.549989 +0.618619 +0.551726 +0.843850 +0.187314 +0.576261 +0.566367 +0.936600 +0.903028 +0.489907 +0.405797 +0.741421 +0.852713 +0.974191 +0.662850 +0.779259 +0.909982 +0.613940 +0.429746 +0.384811 +0.370816 +0.479951 +0.121580 +0.528490 +0.504782 +0.661944 +0.616658 +0.410186 +-0.109102 +0.503890 +0.090941 +0.647982 +0.808871 +-0.130056 +0.547320 +-0.528331 +0.807724 +0.297043 +-0.379151 +0.774849 +0.791895 +0.606227 +0.847395 +0.847536 +0.850499 +0.666795 +0.743890 +0.625590 +0.951379 +0.706154 +0.814712 +0.361167 +0.846421 +0.242241 +0.734762 +0.335142 +0.605551 +0.820360 +0.859043 +0.693049 +0.561698 +0.708415 +0.708193 +0.945713 +0.283464 +0.492236 +-0.178259 +0.740583 +0.472453 +0.641716 +0.474278 +0.637498 +-0.056422 +0.596596 +0.816783 +-0.080226 +0.393401 +0.726381 +0.813268 +0.397658 +0.605053 +0.885576 +0.547711 +0.612959 +0.536766 +0.057545 +0.329763 +0.923197 +0.483347 +0.963566 +0.636905 +0.474959 +0.673884 +0.172749 +0.822241 +0.751601 +0.638409 +0.679486 +0.655146 +0.327001 +0.856513 +0.685284 +0.482286 +0.358121 +0.702434 +0.250092 +0.421831 +0.266943 +0.678667 +0.840734 +0.858278 +0.857455 +0.456126 +0.727793 +0.741357 +0.204455 +0.673634 +0.663426 +0.852124 +0.872254 +0.494739 +0.213522 +0.541042 +0.673789 +0.364821 +0.885882 +0.953588 +0.862988 +0.172333 +0.930555 +0.796014 +0.804960 +0.722696 +0.607178 +-0.620832 +0.899216 +0.534659 +0.495185 +0.863582 +0.859255 +0.879272 +0.464192 +0.242488 +0.935388 +0.668433 +0.447528 +0.931597 +0.741795 +0.548938 +0.172514 +0.572181 +0.656863 +0.628925 +0.770022 +0.809557 +0.459556 +0.652027 +0.565342 +0.398814 +0.500941 +0.890340 +0.103966 +0.238565 +0.407315 +0.783313 +0.238128 +0.135033 +0.680675 +0.826519 +0.748459 +0.552319 +0.636101 +0.259528 +0.265551 +0.345758 +0.538082 +0.272513 +0.980755 +0.602361 +0.934461 +0.758843 +0.415203 +-2.524554 +-0.050272 +0.455085 +0.791577 +0.892609 +0.795153 +-0.207837 +0.896361 +0.936906 +0.651239 +0.459544 +0.999643 +0.106880 +0.705827 +0.584718 +0.448674 +0.877356 +0.662675 +0.936846 +0.999523 +0.837389 +0.767930 +0.749262 +0.898876 +0.993378 +0.455190 +0.221212 +0.986650 +0.454371 +0.991013 +0.850756 +0.418414 +0.129311 +0.375174 +0.851129 +0.909956 +0.808087 +0.764166 +0.823541 +0.805995 +0.827169 +0.656288 +0.525242 +0.741488 +0.875512 +0.862011 +0.809696 +0.897391 +0.932794 +0.021935 +0.900898 +0.828512 +0.107488 +0.625681 +0.776127 +0.874744 +0.935358 +0.932554 +0.356142 +0.486233 +0.660165 +0.652105 +0.869244 +0.540192 +0.610373 +0.255543 +-0.207691 +-0.944603 +0.856847 +0.986554 +0.810229 +0.168531 +0.221653 +0.440701 +0.935633 +0.226381 +0.097043 +0.411129 +0.574756 +0.829308 +0.390924 +0.530377 +0.424695 +0.531507 +0.728458 +0.885767 +0.596655 +0.759063 +0.861404 +0.667778 +0.659234 +0.896730 +0.909201 +0.888949 +0.637328 +0.864795 +0.341649 +0.769605 +0.596899 +0.545611 +0.650669 +0.441566 +0.626029 +0.298279 +0.558577 +0.670094 +0.609111 +0.946457 +0.753532 +0.581007 +0.654083 +0.279251 +0.991548 +0.786320 +0.847321 +0.443465 +0.440187 +0.068872 +0.814824 +0.866993 +0.448383 +0.929171 +0.288305 +0.771005 +0.844890 +0.930710 +0.888860 +0.931400 +0.706796 +-0.061103 +0.672204 +0.914266 +0.761181 +0.426772 +0.817281 +0.780501 +0.859942 +0.720265 +0.637132 +0.931056 +0.773821 +0.880676 +0.926613 +0.500704 +0.957134 +0.781252 +0.378736 +0.766288 +0.692661 +0.748158 +0.931059 +0.603335 +0.541285 +0.276977 +0.701066 +0.783021 +0.918452 +0.566651 +0.773040 +0.691407 +0.823271 +0.184008 +0.636070 +0.884752 +0.898401 +-0.451705 +0.988189 +0.483135 +0.349479 +0.667875 +0.244039 +-0.564083 +0.932517 +0.287345 +0.312657 +0.343618 +0.583834 +0.653664 +0.895455 +0.547679 +0.432199 +0.474098 +0.403864 +0.246216 +0.311914 +0.625680 +0.417161 +0.464358 +0.951227 +0.630210 +0.699390 +-2272671927.753528 +0.754114 +0.353221 +0.352627 +0.521481 +0.759427 +0.856419 +0.839908 +0.906710 +0.929177 +0.912223 +0.732582 +0.555678 +0.842039 +0.282770 +0.741759 +0.342577 +0.852553 +0.883841 +0.788340 +0.800006 +0.700927 +0.514006 +0.397686 +0.517358 +0.957183 +0.854598 +0.822260 +0.800171 +0.859274 +0.073568 +0.211453 +0.304545 +0.440317 +0.802374 +0.395789 +0.445615 +0.603459 +0.528844 +0.938134 +0.751390 +0.771504 +0.834237 +0.676140 +0.995158 +0.852079 +0.849880 +0.627660 +0.754151 +0.682603 +0.729562 +0.733384 +0.527579 +0.573366 +0.690765 +-0.417555 +0.318203 +0.851268 +0.618028 +0.903818 +0.844042 +-0.182642 +0.885554 +-0.413450 +0.871831 +0.643324 +0.405857 +0.735439 +0.046570 +0.773654 +0.890736 +0.718105 +0.842388 +0.804640 +0.893757 +0.734244 +0.982641 +0.531143 +-0.245863 +0.895463 +0.585944 +0.892961 +0.683625 +0.526623 +0.019570 +0.776285 +0.210375 +-0.058176 +0.308940 +0.575282 +0.641070 +0.955727 +0.950524 +0.852854 +0.821779 +0.985836 +0.696794 +0.062789 +0.987706 +0.084775 +0.531127 +0.949659 +0.290059 +-0.000754 +0.610766 +0.921279 +0.281613 +-0.871212 +0.869229 +0.329533 +-0.296638 +0.768658 +0.925369 +0.843294 +-0.441794 +0.356580 +0.569779 +0.810411 +0.612008 +0.795152 +0.902478 +0.951175 +0.956707 +-0.059677 +0.971038 +0.902018 +0.939193 +0.675473 +-0.105815 +0.271585 +0.746360 +0.849879 +0.014395 +-0.164358 +0.726256 +0.272397 +0.845827 +0.059421 +0.756917 +-0.017329 +0.808228 +0.767429 +0.916691 +0.805386 +0.858637 +0.562662 +0.329686 +0.604758 +0.651720 +0.683073 +0.409286 +0.541368 +0.779932 +0.887987 +0.406648 +0.812805 +0.692063 +0.328984 +0.951361 +0.620222 +0.852544 +0.884431 +0.063970 +0.309010 +0.472661 +0.967829 +0.639557 +0.657046 +0.947928 +0.788149 +0.861778 +0.797869 +0.960174 +0.764276 +0.853317 +0.863893 +0.948005 +0.717197 +0.881425 +0.792715 +0.863811 +0.640832 +0.445375 +0.766350 +0.157013 +0.695148 +0.950121 +0.935166 +0.891692 +0.903185 +0.922641 +0.880357 +0.617384 +0.828112 +0.910307 +0.770114 +0.811044 +-0.714857 +0.565406 +0.854924 +0.928029 +0.754868 +0.931880 +0.843750 +0.356254 +0.013526 +0.492101 +0.257439 +0.390888 +-0.621674 +-0.527020 +0.699551 +0.877353 +0.825126 +0.785147 +0.764510 +0.454609 +-0.435964 +0.474784 +0.619401 +-0.055935 +0.349949 +0.324717 +0.349949 +0.973973 +0.676950 +0.241743 +0.461113 +0.351770 +0.267072 +0.404563 +0.349704 +0.646693 +0.212336 +0.111229 +0.804696 +0.433363 +0.489022 +0.562549 +0.397964 +-0.138015 +-0.083021 +0.209763 +-0.147351 +0.782111 +0.640087 +0.460904 +0.351315 +0.759167 +0.342526 +0.740078 +0.488171 +-0.269807 +-0.310167 +0.647462 +0.722809 +0.609115 +0.934322 +0.997833 +0.656385 +0.950520 +0.939088 +0.379540 +-0.190436 +0.867650 +0.727719 +0.573047 +0.862584 +0.562023 +0.454177 +0.339898 +0.624774 +0.077428 +0.766623 +0.912072 +0.969648 +0.592077 +0.368937 +0.971811 +0.334398 +0.653475 +0.371743 +0.625768 +0.521160 +-0.181525 +0.715504 +0.493555 +0.854799 +-0.414026 +0.527262 +0.828557 +0.843498 +0.907025 +0.913868 +0.313577 +0.723064 +0.664973 +0.464933 +0.564340 +0.817318 +0.215588 +0.871435 +0.598806 +0.511534 +0.828790 +0.830280 +0.364020 +0.137231 +0.893478 +0.899154 +0.632391 +0.640680 +0.613353 +0.677775 +0.653878 +0.763998 +0.954745 +0.876067 +0.846411 +0.575160 +0.703146 +0.661350 +0.854233 +0.783329 +0.790424 +0.142192 +0.704960 +0.572781 +0.727389 +0.922758 +0.924024 +0.811432 +0.766707 +0.651916 +0.306170 +0.884562 +0.631687 +0.598329 +0.784046 +0.540452 +0.982747 +0.648356 +0.642624 +0.447310 +0.832085 +0.555263 +0.813223 +0.852887 +0.649843 +0.180132 +0.623388 +0.658673 +0.552707 +0.583263 +0.146227 +-0.229846 +0.768589 +0.650412 +0.909971 +0.756754 +-0.317462 +0.912667 +0.675058 +0.938141 +-0.183445 +-0.287355 +0.576869 +0.757113 +0.239310 +0.640154 +0.652689 +0.489450 +0.012702 +-0.247211 +0.107251 +0.600046 +0.842289 +0.415328 +0.602767 +-0.198494 +0.440340 +0.687528 +0.737576 +-0.138868 +-0.209904 +0.680824 +0.565230 +0.908265 +0.526690 +0.674958 +-0.178931 +-0.252380 +0.933183 +0.933115 +0.265111 +0.674763 +0.424409 +0.894430 +0.698888 +0.834932 +0.772882 +0.797810 +0.885887 +0.712057 +0.804878 +0.568891 +0.885320 +0.395611 +0.851285 +0.754365 +0.626346 +0.782539 +0.934982 +0.706821 +0.272125 +0.325690 +0.733760 +0.880214 +0.476048 +0.684077 +0.654437 +0.602848 +0.649844 +0.585556 +0.445339 +0.846881 +0.425301 +0.868973 +0.631923 +0.857231 +0.621129 +0.471564 +0.676840 +0.670449 +0.715493 +0.718258 +0.698569 +-17.304630 +0.781560 +0.910542 +0.671225 +0.850918 +0.918292 +0.976411 +0.859355 +0.590422 +-0.161567 +0.637347 +0.685784 +0.835144 +0.859915 +0.877538 +0.061067 +0.829799 +0.364939 +0.786042 +0.750119 +0.821110 +-0.184467 +0.217796 +0.501103 +-0.099150 +-0.293988 +0.541105 +0.327358 +0.704434 +0.734189 +0.626705 +0.758293 +0.618422 +-0.073985 +0.729495 +0.783655 +0.458770 +0.591921 +0.775358 +0.544969 +-0.231651 +0.769819 +0.357827 +0.876935 +0.476035 +0.772405 +0.598469 +-0.108622 +0.649858 +0.782278 +-0.143742 +0.722589 +0.898329 +0.328548 +0.554267 +0.394142 +-0.265668 +0.354244 +0.970183 +0.770374 +0.748210 +0.730705 +0.353878 +0.582877 +0.708530 +0.740502 +0.784789 +-0.156955 +0.771432 +0.101996 +0.457358 +0.740401 +0.395649 +-0.179640 +0.418463 +0.868574 +0.781521 +0.382226 +0.960671 +0.938758 +0.784698 +0.849257 +0.625611 +0.016713 +-0.062696 +0.846559 +0.008950 +0.487722 +0.708569 +0.820358 +0.922168 +0.948656 +0.365406 +0.933487 +0.818126 +0.931072 +0.578408 +0.613710 +0.645665 +0.639965 +0.338050 +0.794814 +0.833661 +0.636131 +0.512120 +0.673265 +0.717968 +0.843531 +0.819103 +0.794642 +0.927943 +0.848725 +0.858718 +0.633617 +0.733745 +-0.468288 +0.162828 +0.936432 +-0.049938 +0.950019 +0.935350 +0.916757 +0.478725 +0.538701 +0.897292 +0.871198 +0.390834 +0.622425 +0.686279 +0.750527 +0.549061 +0.720000 +0.933224 +0.821037 +0.780286 +0.451271 +0.840234 +-0.541295 +0.837569 +-0.165225 +0.581840 +0.385133 +0.597545 +0.895665 +-0.364587 +0.928303 +0.643902 +0.242716 +0.290760 +0.487461 +0.666395 +-0.002083 +0.929244 +0.460134 +0.824882 +0.213557 +0.934345 +-0.341119 +0.407963 +0.705184 +0.750637 +0.677098 +0.992890 +0.804859 +0.693641 +0.979963 +0.990404 +0.845712 +0.299895 +0.761058 +0.391715 +0.684275 +0.662393 +0.911891 +0.835848 +0.749960 +0.969075 +0.701430 +0.864434 +0.271214 +0.530701 +-1.946404 +0.292940 +-5.670120 +0.886845 +0.882192 +0.981835 +0.652835 +0.424893 +0.478009 +0.546665 +0.939108 +0.620573 +0.833384 +0.887658 +-0.002267 +0.827741 +0.581318 +0.712125 +0.695606 +0.538089 +0.945371 +0.687802 +0.805978 +0.816583 +0.161420 +0.153837 +0.820458 +0.381752 +0.504438 +0.932216 +0.695136 +0.784560 +0.433461 +0.605866 +0.693881 +0.475995 +0.641147 +0.354015 +0.388397 +0.879839 +0.405588 +0.849565 +0.773773 +0.717474 +0.463513 +0.908261 +0.076771 +0.542891 +0.678801 +0.439999 +0.710048 +0.046649 +-0.213203 +0.863140 +0.601670 +0.086429 +0.858095 +0.675682 +0.703047 +-0.113426 +0.413856 +0.557672 +0.677516 +0.932556 +0.739634 +-0.263013 +0.915527 +0.826611 +0.228674 +0.931887 +-0.044011 +0.787325 +0.841141 +0.855690 +0.598228 +0.786753 +0.999690 +0.685117 +-0.106789 +0.746872 +0.627565 +0.325789 +0.751004 +0.347704 +0.612145 +0.370966 +0.933117 +0.685590 +0.575691 +0.848948 +0.307308 +0.918819 +0.600428 +0.396395 +0.784574 +0.737389 +0.394122 +0.568247 +0.688681 +0.651699 +0.854015 +0.703179 +-0.045569 +0.649104 +0.809757 +0.741405 +0.261127 +0.431128 +0.941103 +0.841032 +0.931308 +0.796281 +-0.464401 +-0.123067 +0.887612 +-0.285958 +0.534308 +0.358564 +0.451663 +0.609786 +0.527252 +0.921621 +0.437016 +0.954594 +0.676876 +-0.473591 +-0.224910 +0.330407 +0.562756 +0.835143 +0.814203 +0.629555 +0.461075 +0.413507 +0.885716 +0.237897 +0.782363 +0.647683 +0.654997 +0.317001 +0.498208 +0.658158 +0.534306 +0.325648 +0.261384 +0.326026 +0.795711 +0.628483 +0.831338 +-0.405940 +0.707964 +0.088529 +0.210908 +0.370303 +0.542482 +0.353870 +0.631235 +0.772116 +0.993783 +0.783780 +0.451823 +0.467235 +-0.285789 +0.919955 +0.994598 +0.780022 +-0.464158 +-1.274079 +0.936696 +0.257301 +0.242175 +0.416972 +0.747181 +0.547095 +0.940553 +0.524473 +0.457819 +0.855516 +0.483780 +0.959919 +0.653832 +0.910112 +0.598859 +0.846514 +0.848564 +0.909993 +0.830480 +-0.314689 +0.838451 +0.546286 +0.893319 +0.883768 +0.387758 +0.846979 +0.634519 +0.594291 +0.770070 +0.847380 +0.545130 +0.948334 +0.567384 +0.482008 +0.473625 +0.440077 +0.508080 +0.727085 +0.686462 +0.495328 +0.635485 +0.896165 +0.917729 +0.890736 +0.827628 +0.854610 +-0.178825 +0.571897 +0.881130 +0.267429 +0.913603 +0.496937 +0.880117 +0.471807 +0.653590 +0.416605 +0.419260 +0.082161 +-3.037653 +0.537289 +-0.314331 +0.689261 +0.442353 +0.742720 +0.604421 +0.897373 +0.779418 +0.940272 +0.770956 +0.302941 +0.928556 +0.405000 +0.697574 +0.932907 +0.812302 +0.678288 +0.921210 +0.465151 +0.913164 +0.801141 +0.619308 +0.831310 +0.917846 +0.641737 +0.875109 +0.578388 +0.764372 +0.931232 +0.934563 +0.918061 +0.885708 +0.651287 +0.693482 +0.681311 +0.922328 +0.730474 +0.772605 +0.549996 +-6.935297 +0.926608 +0.861323 +0.492371 +0.908596 +0.865675 +0.367639 +0.721443 +0.792020 +0.692935 +0.370331 +0.851336 +0.711766 +0.249230 +-0.027098 +0.339944 +0.542874 +-0.248606 +0.751543 +0.493294 +0.685429 +0.866748 +0.482171 +0.753014 +0.865306 +0.242065 +-0.231944 +0.925770 +0.701206 +0.773925 +0.452855 +0.756152 +0.266642 +0.966185 +0.400700 +0.841786 +0.615788 +0.646579 +0.866203 +0.408923 +0.665176 +0.185209 +0.940040 +0.152205 +-0.394673 +0.900376 +0.326905 +0.284695 +0.639015 +0.917667 +0.872716 +0.922189 +0.932162 +0.939048 +0.919280 +0.838476 +0.694126 +0.934555 +0.933391 +0.700013 +0.474641 +0.727295 +0.688136 +0.590696 +0.833557 +0.824709 +0.840603 +-0.111788 +0.654289 +0.730145 +0.809449 +0.782795 +0.709228 +0.410061 +0.751897 +0.561218 +0.737373 +0.842228 +0.421572 +0.424582 +-0.125981 +0.356242 +0.577442 +0.400622 +0.472700 +0.496601 +0.625686 +0.556811 +0.365386 +0.338653 +-0.831605 +0.507598 +0.829904 +0.157488 +0.730780 +0.683759 +0.655706 +-0.354618 +0.671376 +0.349688 +0.866334 +0.926345 +0.162752 +-0.402366 +-0.922121 +0.675407 +0.444758 +0.315606 +-0.169433 +0.341027 +-0.155651 +-0.061738 +0.749707 +0.991732 +0.557492 +0.589040 +0.820400 +0.750175 +0.397690 +-0.190783 +0.650389 +0.841932 +-0.209448 +0.418271 +0.844191 +-0.438473 +0.636020 +0.755611 +0.768886 +0.420180 +0.747540 +0.312036 +0.772562 +0.915519 +0.239283 +0.591593 +0.606134 +0.741430 +0.562388 +-0.059673 +0.452134 +0.631426 +-0.244623 +0.672164 +0.912966 +0.107150 +0.623185 +0.774333 +0.574705 +0.825170 +0.749530 +0.855817 +0.823623 +0.659826 +-0.245202 +0.643416 +0.671233 +-0.085854 +0.762892 +0.940676 +0.811785 +-21.220359 +-0.147110 +-0.018200 +-0.115643 +0.664618 +0.387444 +0.461589 +0.879504 +0.659408 +0.407640 +0.825465 +0.936619 +0.948075 +0.471113 +0.937874 +0.834303 +0.565197 +0.739528 +0.937848 +0.846220 +0.850703 +0.859572 +0.444617 +-0.321186 +0.331777 +0.894401 +0.501066 +0.721517 +0.175699 +0.531647 +0.958293 +0.665586 +0.644692 +0.522530 +0.605872 +0.489464 +0.536737 +0.885838 +0.095750 +-0.220438 +0.849280 +0.631333 +0.732488 +0.172599 +0.609648 +0.886791 +0.769957 +-0.122436 +0.570405 +0.678253 +0.944339 +0.689648 +0.706820 +0.304459 +0.921577 +0.870473 +0.534293 +0.674798 +-0.364499 +0.889799 +0.805054 +0.894476 +0.469969 +0.289543 +0.609638 +0.449502 +0.669399 +-0.010051 +-0.179745 +0.571852 +0.936056 +-0.301008 +0.590469 +0.886726 +-0.219957 +0.608835 +0.433662 +0.384461 +0.709440 +0.529676 +-0.075860 +0.473634 +0.851975 +0.485477 +-0.217891 +-0.153491 +0.440675 +0.792832 +-0.279420 +0.111575 +0.748161 +0.694317 +0.419443 +-0.263415 +0.580463 +0.766211 +0.668177 +0.886461 +0.805855 +0.802406 +0.732471 +0.471478 +0.670727 +0.928380 +0.806628 +0.679881 +-0.035687 +0.459901 +0.358706 +0.886013 +-0.183535 +0.678015 +0.666075 +0.501375 +0.970568 +0.835553 +0.271357 +-0.093819 +0.905967 +0.728238 +0.215954 +0.990553 +0.943467 +0.702352 +0.779874 +0.398915 +0.940646 +0.775800 +0.984798 +0.931766 +0.922785 +0.406008 +0.887622 +0.943646 +0.940196 +0.928440 +0.289533 +0.446371 +0.647036 +0.775029 +0.947621 +0.906617 +-0.192197 +0.955017 +0.780703 +0.948397 +0.878485 +0.904417 +0.602510 +-0.980630 +0.529883 +0.840419 +0.831417 +0.020194 +0.839409 +0.944247 +0.827507 +0.810335 +0.834036 +0.385838 +0.632329 +0.964057 +0.204346 +0.949773 +0.837469 +0.391984 +0.873911 +0.953119 +0.679911 +0.914009 +0.456697 +0.403284 +-0.435333 +-3791.474183 +-0.293929 +-0.045340 +0.662761 +0.702323 +0.741943 +0.700127 +0.862729 +0.918932 +0.345610 +0.880010 +0.980835 +0.988542 +0.848583 +0.589800 +0.804673 +0.901045 +0.684700 +0.528021 +-0.356126 +0.732954 +0.947019 +0.910825 +0.959383 +0.974598 +0.510315 +0.893068 +0.621936 +0.373977 +0.613766 +0.690070 +0.827924 +0.649114 +0.983527 +0.949070 +0.298164 +0.573194 +0.866114 +0.228888 +0.947206 +0.696970 +0.058602 +0.564905 +0.672872 +0.675354 +0.845821 +0.902588 +0.963478 +0.986294 +0.835545 +0.096930 +0.871926 +0.851805 +0.651452 +0.272075 +0.570393 +0.308847 +0.697008 +0.414292 +0.890774 +0.704446 +0.500150 +0.635630 +0.754061 +0.580584 +0.403110 +0.862907 +0.678684 +0.746573 +0.698905 +0.864043 +0.584055 +0.046726 +0.858428 +0.812953 +0.831596 +0.798040 +-0.159575 +0.937637 +-0.242654 +0.937623 +0.807493 +0.862669 +0.386621 +0.858391 +0.594138 +0.992843 +0.799250 +0.365888 +0.750307 +0.409303 +-2.452383 +0.817045 +-0.998760 +0.498579 +0.174400 +0.847347 +0.199816 +0.850171 +0.959590 +0.742659 +0.662224 +0.575590 +0.587592 +0.853207 +-0.121643 +0.813999 +0.575478 +0.809120 +0.802291 +0.667151 +0.539628 +0.903917 +0.814374 +0.699922 +0.825995 +0.692176 +0.845007 +0.814941 +0.572069 +0.235822 +0.908548 +0.400514 +0.935782 +0.926609 +0.328952 +0.677276 +0.592576 +0.844537 +-1.284975 +0.367977 +0.753353 +0.799869 +0.565619 +0.998461 +0.923577 +0.906311 +0.378070 +0.181590 +0.348487 +0.982022 +0.929453 +0.731235 +-2.741514 +0.421066 +0.792220 +-1.303119 +0.408810 +0.064773 +0.412555 +0.562366 +0.758193 +-0.182481 +0.690870 +0.854873 +0.476263 +0.538540 +0.846256 +0.401428 +0.444758 +0.522034 +0.623830 +-0.265089 +0.108465 +0.708162 +0.383029 +0.593307 +0.602700 +0.660584 +0.958729 +0.775374 +0.926185 +0.901221 +0.537884 +0.618860 +0.866139 +0.337235 +0.631428 +0.663538 +0.899534 +0.985748 +-0.213982 +0.948035 +0.868702 +0.637748 +0.738261 +0.947821 +0.570196 +0.556930 +0.937723 +0.889397 +0.417207 +0.932800 +0.936251 +-2.065080 +0.803228 +0.224597 +0.933433 +0.099549 +-0.403437 +0.413929 +0.819457 +0.566160 +0.933399 +-0.211319 +0.279266 +0.542904 +0.745320 +0.825335 +0.451497 +0.307789 +0.412032 +0.741148 +0.508608 +0.936594 +0.783173 +0.784694 +0.898092 +0.846546 +0.882499 +-0.251129 +0.735152 +0.922713 +0.603552 +0.604879 +0.415886 +0.604101 +0.486707 +0.061770 +0.552177 +0.242568 +0.396501 +-0.587918 +0.914695 +-0.514957 +0.740970 +-0.134825 +0.766262 +0.684648 +0.560721 +0.929338 +-0.081469 +0.084447 +0.589851 +0.505017 +0.231927 +0.925492 +0.586248 +-0.107473 +0.727613 +0.404516 +0.836963 +0.821801 +0.936137 +0.929098 +0.705595 +0.379625 +0.608123 +0.619969 +0.727473 +0.577896 +0.737472 +0.030443 +0.807525 +0.458745 +0.926826 +0.516884 +0.834030 +0.059496 +0.866458 +0.892257 +0.845762 +0.880844 +0.850096 +0.701596 +-0.804610 +0.887417 +0.841830 +0.815291 +0.922055 +0.884712 +0.514365 +0.810895 +0.845352 +0.628517 +0.466094 +0.187709 +0.925975 +0.972756 +0.626029 +0.853477 +0.726153 +0.726153 +0.726153 +0.748970 +0.661558 +0.310966 +0.710017 +0.124444 +0.887393 +0.747492 +0.976781 +0.623919 +0.936821 +0.714236 +0.524261 +0.303836 +0.501272 +0.875140 +0.894252 +0.928008 +0.238995 +0.770404 +0.751632 +0.248627 +0.702122 +0.721740 +0.670911 +0.805738 +0.824448 +0.237395 +0.647551 +0.662930 +0.833420 +0.983734 +0.821990 +0.655069 +0.873882 +0.829507 +0.799690 +0.887929 +0.760835 +0.740708 +0.814712 +0.858323 +0.838074 +0.748986 +0.637399 +0.742823 +0.733952 +-0.047644 +0.934501 +0.127139 +0.580302 +0.804514 +0.611217 +0.473841 +0.937808 +0.712428 +0.884602 +0.790640 +0.386132 +0.911449 +0.934327 +0.936975 +0.935086 +0.822742 +0.891738 +0.877510 +-0.618497 +0.879331 +0.864528 +0.907047 +0.966266 +0.908412 +0.751251 +0.861795 +0.809398 +-0.718741 +0.934392 +0.648535 +0.918112 +0.645621 +0.559338 +0.843890 +0.981797 +0.665849 +-0.440840 +0.834994 +0.590259 +0.473978 +0.527075 +0.818351 +0.738080 +0.796491 +-0.057606 +0.744841 +0.316175 +0.885796 +0.914467 +0.276403 +0.469244 +0.435757 +0.713850 +0.910310 +0.578791 +0.289122 +0.862295 +0.810950 +0.589533 +0.371811 +-0.190087 +0.495615 +0.467696 +0.244060 +0.923134 +0.905090 +0.923977 +0.751005 +0.870749 +0.591958 +0.485699 +0.418140 +0.339686 +0.828550 +0.603353 +0.879447 +0.764885 +0.632021 +0.498638 +-0.055001 +0.408484 +0.422469 +0.310608 +0.555898 +0.554886 +0.434017 +-0.116519 +-0.103356 +0.356422 +0.826812 +0.284994 +0.364708 +0.373954 +0.075882 +0.391351 +0.847607 +0.980504 +0.066012 +0.302550 +0.942964 +0.791565 +0.664499 +0.700961 +0.685868 +0.920190 +-0.265931 +0.437409 +-0.016727 +0.548663 +0.031521 +0.574521 +0.748533 +0.388319 +0.486584 +0.585322 +0.841943 +0.674742 +0.915200 +0.591640 +0.747818 +0.744237 +0.634718 +0.951224 +0.311668 +0.949673 +0.617736 +0.963846 +0.772623 +0.659297 +0.485680 +0.843255 +0.946858 +0.628423 +0.956911 +0.616561 +0.889366 +0.868481 +0.927450 +0.929306 +0.494594 +-0.942950 +0.932789 +0.730241 +0.456532 +0.613892 +0.388075 +0.496399 +-0.222969 +0.882763 +0.428883 +0.689612 +0.863722 +0.897469 +0.749683 +0.570738 +0.067291 +0.942189 +0.274022 +0.703414 +0.819397 +0.775597 +0.545470 +0.293733 +0.892100 +0.902957 +0.847713 +0.884579 +0.634574 +0.664824 +0.898008 +0.882239 +0.613109 +0.806976 +-0.151493 +0.319035 +0.915037 +0.633224 +0.929772 +0.932379 +0.338348 +0.580299 +0.122993 +0.292600 +0.918595 +0.752301 +0.392786 +-0.286682 +0.010438 +0.513791 +0.923434 +0.582666 +0.659962 +0.538805 +-0.189479 +0.274613 +-0.222216 +0.683111 +0.325258 +0.794885 +0.452613 +0.809141 +0.893837 +0.706282 +0.527818 +0.788108 +0.608407 +-0.239816 +0.369076 +0.977383 +0.598950 +0.846295 +0.436195 +0.511759 +0.560593 +0.337822 +0.891257 +-0.010922 +0.350435 +0.267478 +-1.019701 +0.563381 +0.654137 +0.236027 +0.469395 +0.366237 +0.469436 +-0.021017 +0.919794 +0.704912 +0.843223 +0.940432 +0.598445 +0.919777 +0.771850 +0.773651 +0.898365 +0.608295 +0.924088 +-0.205423 +0.810498 +0.870125 +0.706663 +0.593259 +0.506310 +0.941643 +0.710805 +0.875031 +0.412979 +0.766041 +0.948284 +0.704812 +0.501324 +0.507110 +0.851716 +0.681259 +0.715610 +0.843232 +0.532276 +0.507169 +0.665235 +0.667076 +0.881111 +0.706779 +0.699340 +0.937601 +0.869606 +0.940765 +0.868692 +0.948480 +0.758141 +0.857498 +0.595712 +0.832845 +0.766893 +0.936556 +0.984459 +-93.393588 +0.901757 +0.808540 +0.922859 +0.446176 +0.822299 +0.923048 +0.878911 +0.885363 +0.896325 +0.938007 +0.920024 +0.226760 +-0.030967 +0.829000 +0.195995 +0.576735 +0.537690 +0.704645 +0.794478 +0.786281 +0.585973 +0.899040 +0.465428 +0.639858 +0.308460 +-0.033375 +0.599412 +0.443399 +0.767855 +0.348226 +-0.136844 +0.098231 +0.819069 +-0.786272 +0.385518 +0.851332 +0.972840 +0.553496 +0.655199 +0.601429 +0.651139 +0.477930 +0.636383 +0.661796 +0.756101 +0.420306 +0.555487 +0.161675 +0.356076 +0.564286 +0.500739 +0.325775 +0.358987 +-0.097225 +-0.099383 +-0.242673 +0.727286 +0.320957 +0.137412 +0.510495 +0.479379 +0.438648 +0.527222 +0.814240 +0.622884 +0.082050 +-0.280090 +0.500442 +0.614179 +0.759564 +-0.174702 +0.871609 +0.597587 +0.084911 +0.597156 +0.435231 +0.439595 +-0.073494 +-0.107332 +0.620200 +0.068951 +0.932514 +0.794983 +0.786021 +0.877668 +0.536767 +0.893735 +0.609495 +0.681588 +0.869967 +0.847804 +0.722392 +0.928983 +0.573121 +0.706696 +0.880874 +0.880831 +0.886494 +0.721703 +0.538113 +0.819329 +0.331173 +0.903484 +0.473825 +0.036530 +0.868987 +0.681981 +0.937377 +0.453476 +0.863900 +0.091646 +0.703452 +0.677077 +0.626365 +-0.125936 +0.085784 +0.900360 +0.861598 +0.646911 +0.966202 +0.148901 +0.818845 +0.896398 +0.035808 +0.916238 +0.862874 +0.417766 +0.836513 +0.809659 +0.986630 +0.785597 +0.935856 +0.884879 +0.642075 +0.797058 +0.870033 +0.908486 +0.932541 +0.506320 +0.863233 +0.812304 +0.763038 +0.603093 +0.821502 +0.714799 +0.659496 +0.830817 +0.858641 +0.486053 +0.883920 +0.937075 +0.598763 +0.479777 +0.355855 +0.956436 +0.262805 +0.252607 +0.038946 +0.874039 +0.663181 +0.563921 +0.397127 +0.168142 +0.662429 +0.397375 +0.661275 +0.551258 +0.890586 +0.902514 +0.413964 +0.706502 +0.696668 +0.287816 +0.287259 +0.408669 +0.888176 +0.755821 +0.524831 +0.427590 +0.195985 +0.518384 +0.962439 +0.661178 +0.829137 +0.855042 +0.672288 +-0.083692 +-0.135659 +-0.079318 +-0.059977 +0.427237 +0.794510 +0.632469 +0.725949 +0.591401 +0.819087 +0.934545 +0.937316 +0.464174 +0.706557 +0.716575 +0.512294 +0.443268 +0.750474 +-0.187815 +-0.039160 +0.933866 +0.764374 +0.759109 +0.941105 +0.103311 +0.950681 +0.840751 +0.336212 +0.968972 +0.532854 +0.501098 +0.381884 +0.787999 +0.376130 +0.634749 +0.277641 +0.242173 +0.809363 +-1.233255 +-0.144431 +-0.190012 +0.791757 +0.393646 +0.793532 +0.469510 +0.841693 +0.411029 +0.557916 +0.264890 +0.756496 +0.580805 +0.728267 +0.900692 +0.770054 +0.963156 +0.989016 +0.620123 +0.668742 +0.836793 +0.986905 +0.263928 +0.975400 +0.766433 +0.396637 +0.364364 +0.192578 +0.705723 +0.682223 +-0.292666 +0.336873 +0.109345 +0.480786 +0.430023 +-0.097267 +-0.144192 +-0.114838 +0.572863 +0.861828 +0.616972 +0.835996 +0.765824 +-0.106046 +0.680316 +-0.139221 +0.688072 +-0.240479 +-0.995949 +0.417816 +-0.049056 +0.498210 +0.199464 +0.100348 +0.405660 +0.842476 +-0.133694 +0.392111 +0.811700 +0.139244 +0.117659 +0.709711 +0.635125 +0.813683 +0.800506 +0.737708 +0.019509 +0.834001 +0.822583 +0.661507 +0.810098 +0.331798 +0.762180 +0.948542 +0.690710 +0.358910 +0.818962 +-0.258019 +-0.283880 +0.671368 +0.579976 +0.614036 +0.173665 +0.427503 +-0.135992 +0.490025 +0.084496 +0.800241 +0.931033 +0.806722 +0.424650 +0.628710 +0.931916 +0.640131 +0.316647 +0.396015 +0.669206 +0.100196 +-23.275423 +0.899616 +0.439441 +0.237175 +0.610419 +0.986623 +0.693286 +0.791973 +0.545227 +-0.159114 +0.855626 +0.917786 +0.508429 +0.666357 +0.786292 +0.227707 +0.866874 +0.510900 +0.750512 +0.923242 +0.790899 +0.347843 +0.343710 +0.488009 +0.345233 +0.430416 +0.607141 +0.501736 +0.990006 +0.776250 +0.479992 +0.927432 +0.368643 +0.310259 +0.509631 +0.856367 +0.478438 +0.286238 +0.929907 +0.350398 +0.918376 +0.412958 +0.535617 +0.995611 +0.924610 +0.343955 +0.641451 +0.517734 +0.562259 +0.919412 +0.376878 +0.595956 +0.446829 +0.858732 +0.904485 +0.444926 +0.752578 +0.495306 +0.632141 +0.433843 +0.315322 +0.791753 +0.908466 +0.899653 +0.612629 +0.922574 +0.752326 +0.725557 +0.459378 +0.595726 +-69.461549 +0.545068 +0.403888 +0.730016 +0.711075 +0.635771 +0.580449 +-0.053672 +0.831712 +-268.085191 +0.807785 +0.434488 +0.936035 +0.894198 +0.925756 +0.596026 +0.812466 +0.643605 +0.855717 +0.371371 +0.222113 +0.650451 +0.403788 +0.466377 +0.333724 +0.875995 +0.278876 +0.467032 +0.397589 +0.770080 +-1.208613 +0.218149 +0.258563 +-0.275103 +0.402155 +0.255605 +0.448970 +0.968454 +0.124057 +0.008246 +0.592267 +-25.780656 +-33.728488 +0.387418 +0.169312 +0.830826 +-0.147636 +-1.823795 +0.511213 +0.906700 +0.913912 +0.906572 +0.955657 +0.649334 +0.896404 +0.873853 +0.649334 +0.332423 +0.502234 +0.791446 +0.538947 +0.726641 +0.546237 +0.730397 +0.684267 +0.920048 +0.914493 +0.904223 +0.906799 +0.903615 +0.849877 +0.915221 +0.588517 +0.960227 +0.927946 +0.926277 +0.945569 +0.749701 +0.765674 +0.988816 +0.655607 +0.380221 +0.890813 +0.891547 +0.886553 +0.861919 +0.920959 +0.880690 +0.987015 +0.980436 +0.749735 +0.716652 +0.877209 +0.665338 +0.996806 +0.913944 +0.906636 +0.914104 +0.914168 +0.414144 +0.525292 +0.292091 +0.767485 +0.410426 +0.694810 +0.611778 +0.571263 +0.702894 +-27737.844780 +-2304.907076 +0.928671 +0.923494 +0.964218 +0.639910 +0.357322 +0.678734 +0.714571 +0.834208 +0.946255 +0.727223 +-88.591216 +0.710913 +0.743620 +0.431159 +0.668987 +0.342953 +0.422751 +0.476543 +0.596908 +0.630990 +0.352972 +0.798540 +0.355008 +0.828365 +0.693194 +0.406261 +0.658053 +0.427119 +0.195495 +0.215174 +0.245441 +0.617699 +0.833767 +0.165425 +0.928808 +0.866400 +-2719.414205 +0.643039 +0.748956 +0.684940 +0.737919 +0.674845 +0.917745 +0.157552 +0.834073 +0.411845 +0.406314 +0.380226 +0.702450 +0.513118 +0.392155 +0.456749 +0.896299 +0.469587 +0.858711 +0.365010 +0.762983 +0.366802 +0.831355 +0.718364 +0.975042 +0.085215 +0.564905 +0.758449 +0.500183 +0.743946 +0.271805 +0.647436 +0.735966 +0.732454 +0.224136 +0.437054 +0.814049 +0.874735 +0.059571 +0.520814 +0.518227 +0.495016 +0.973655 +0.375880 +0.613630 +0.657925 +0.892750 +0.906252 +0.893473 +0.822657 +0.686809 +0.788198 +0.488845 +0.342983 +0.911667 +0.518321 +0.489028 +0.566086 +0.905792 +0.898001 +0.602132 +0.422442 +0.684534 +0.675464 +0.584901 +0.249076 +0.552734 +0.706645 +0.817701 +0.943412 +0.620747 +0.641742 +0.938401 +0.533344 +0.810151 +0.744268 +0.168339 +0.841874 +0.698158 +0.921417 +0.532155 +0.816762 +0.386082 +0.774922 +0.906384 +0.842084 +0.853352 +0.270223 +0.580007 +0.933479 +0.826549 +0.389193 +0.481891 +0.393491 +0.461714 +0.704626 +0.324705 +0.200864 +0.393085 +0.598428 +0.502299 +0.492126 +0.755256 +0.730397 +0.725611 +0.422510 +0.703134 +0.781563 +0.812454 +0.776980 +0.690229 +0.292839 +0.757017 +0.415906 +0.928130 +0.368043 +0.772754 +0.818903 +0.745266 +0.118219 +0.773475 +0.410410 +0.834922 +0.746419 +0.868097 +0.250642 +0.973456 +0.892076 +0.890075 +0.315195 +0.656113 +0.630281 +0.678190 +0.447498 +0.368667 +0.869884 +0.773442 +0.651474 +0.490303 +0.542704 +0.846075 +-0.216928 +0.717088 +0.200146 +0.610435 +0.814445 +0.954649 +0.655480 +0.729461 +0.704696 +0.846463 +0.915267 +0.273166 +0.951012 +0.307550 +0.166757 +0.922392 +0.918752 +0.548092 +0.988248 +0.726417 +0.730173 +0.950476 +0.335721 +0.852886 +0.768698 +0.858499 +0.936995 +0.416896 +0.993642 +0.992051 +0.994113 +-0.220420 +0.928966 +0.631348 +0.518359 +0.778019 +0.750748 +0.880932 +0.332419 +0.458652 +0.485076 +0.551889 +0.694718 +0.804253 +0.497333 +0.489398 +0.906728 +0.810015 +-14.558887 +-0.433166 +0.888037 +-186.219820 +-0.039534 +0.909498 +0.890248 +0.498883 +0.561211 +0.256119 +0.156011 +0.475280 +0.637000 +0.273835 +0.790978 +0.318934 +0.750591 +0.959236 +0.912014 +0.730737 +0.623160 +0.655576 +0.982703 +0.486798 +0.510695 +0.526083 +0.988283 +0.358104 +0.548870 +0.432900 +0.425527 +0.603830 +0.452972 +0.799517 +0.705166 +0.569056 +0.905985 +0.778794 +0.971140 +0.557565 +0.587245 +0.802728 +0.949939 +0.894596 +0.769992 +0.958594 +0.473094 +0.840692 +0.674015 +0.335725 +0.544080 +0.214666 +0.605362 +0.846248 +0.192070 +0.873745 +0.354715 +0.398235 +0.174766 +0.472183 +0.827801 +0.373380 +0.946379 +0.343993 +0.885607 +0.950011 +0.849367 +0.858135 +0.928848 +0.929104 +0.914104 +0.894922 +0.806096 +0.796514 +0.799307 +0.919143 +0.955994 +0.281036 +0.888731 +0.502052 +0.920502 +0.617173 +0.932821 +0.746853 +0.965675 +0.568021 +0.968505 +0.527744 +0.945011 +0.897075 +-1106.030939 +0.597116 +0.441535 +0.188106 +0.918643 +0.384818 +0.924296 +0.900456 +0.201031 +0.963520 +0.399092 +0.780940 +-128.801432 +0.838524 +0.789570 +0.976132 +0.585628 +0.839415 +0.747374 +0.583902 +0.982724 +0.773004 +0.534404 +0.859730 +0.791019 +0.784566 +0.920187 +0.589213 +0.521214 +0.930976 +0.772174 +0.544264 +0.925151 +0.368515 +0.680879 +0.258162 +0.922102 +0.846780 +0.465733 +0.283495 +0.725295 +0.543251 +0.524066 +0.491706 +0.467606 +0.037390 +0.585651 +0.074784 +0.945743 +0.217313 +0.432006 +0.858684 +0.941946 +0.184859 +0.791617 +0.497396 +0.730645 +0.859133 +0.463778 +0.836360 +0.781145 +0.043234 +0.504934 +0.494541 +0.453871 +0.585459 +0.551399 +0.536717 +0.330945 +0.922766 +0.875937 +0.934842 +0.660065 +0.562321 +0.795072 +0.525708 +0.440450 +0.637308 +0.651874 +0.840716 +0.512719 +0.265524 +0.492739 +0.498719 +0.659746 +0.835216 +0.074854 +0.920182 +0.443466 +0.400891 +-0.103257 +-2.599040 +0.645637 +0.875923 +0.613041 +0.535380 +0.813956 +0.282439 +0.774557 +-0.041610 +0.874862 +0.565603 +-0.269649 +0.826751 +0.918110 +0.859546 +0.429059 +0.725188 +-0.492483 +0.844386 +0.825638 +0.918172 +0.579528 +0.298678 +0.908421 +0.165795 +0.833263 +0.848569 +0.372943 +0.030247 +0.852660 +0.680414 +0.781118 +0.680218 +0.213265 +0.739804 +0.899035 +0.033461 +0.307025 +0.300418 +0.751876 +0.687702 +0.831015 +0.744989 +0.933429 +0.769423 +0.502423 +0.310896 +0.875142 +0.562484 +0.746575 +0.507044 +0.599982 +0.471216 +0.294269 +0.194462 +0.298125 +0.908231 +0.274509 +0.974014 +0.875867 +0.734698 +0.578034 +0.489875 +0.479307 +0.562202 +0.687673 +0.919106 +0.368579 +0.989532 +0.604154 +0.380678 +0.260516 +0.220193 +0.487250 +0.505997 +0.941663 +0.060239 +0.007096 +0.514116 +0.583940 +0.681749 +0.638542 +0.103666 +0.414502 +0.018751 +0.122872 +0.228670 +0.253628 +0.234226 +0.268805 +0.054939 +0.786492 +0.209840 +0.251220 +0.892240 +0.083432 +-0.094861 +-0.069848 +0.651553 +0.969918 +-0.259343 +0.835700 +0.209373 +0.950153 +0.228782 +0.932367 +0.823928 +0.926420 +0.867794 +0.753727 +0.410110 +0.450981 +0.695141 +-1.402402 +0.942292 +0.138172 +-0.116303 +0.237854 +0.427969 +0.836994 +-9.132241 +0.810254 +0.561107 +0.467424 +0.590441 +0.524503 +0.343406 +0.602994 +0.320266 +0.390975 +0.621376 +0.566850 +0.763717 +0.834218 +0.798679 +0.696573 +0.440504 +0.667539 +0.821220 +0.710235 +0.649832 +0.561511 +0.829975 +0.388887 +0.891701 +0.744228 +0.635070 +0.197539 +0.566160 +0.717638 +0.673654 +0.651899 +0.423149 +0.534896 +0.622527 +0.795789 +0.922906 +0.326536 +0.819110 +0.873160 +0.986639 +0.719258 +0.679345 +0.796460 +0.499558 +0.256674 +0.507174 +0.540941 +0.778564 +0.797581 +0.544978 +-44.831051 +0.612662 +0.719193 +0.796527 +0.606667 +0.714181 +0.650109 +0.762601 +0.833390 +0.610057 +-3927735.728528 +0.738988 +0.221451 +0.192232 +0.819621 +0.933822 +0.434154 +0.797563 +0.540934 +0.526966 +0.948040 +0.996805 +0.970027 +0.659339 +0.496510 +0.654350 +0.810695 +0.354244 +0.868501 +0.767632 +0.459675 +0.483432 +0.941222 +0.566865 +0.855579 +0.583007 +-0.013658 +0.921662 +0.644221 +0.959030 +0.939221 +0.971434 +0.640512 +0.935788 +0.958582 +0.918715 +0.970395 +0.689528 +0.817381 +0.985743 +0.986578 +0.369264 +0.182112 +0.956243 +0.247919 +0.669500 +0.335934 +0.981701 +0.459321 +0.186085 +0.126828 +0.366281 +0.903168 +0.468223 +0.918367 +0.576323 +0.546004 +0.606834 +0.423190 +0.589566 +0.425975 +0.535628 +0.474511 +0.575651 +0.291052 +0.489161 +0.741169 +0.793601 +0.758213 +0.352488 +0.760301 +0.812677 +0.764101 +0.767388 +0.748281 +0.572356 +0.696495 +0.747928 +0.888857 +0.372989 +0.318036 +0.529418 +0.751874 +0.753650 +0.154965 +0.307599 +0.905643 +0.316733 +0.352527 +0.148777 +0.265162 +0.657109 +0.819540 +0.781798 +0.883165 +0.547327 +0.739769 +0.615891 +0.426142 +0.738596 +0.541176 +0.652382 +0.957017 +0.648045 +0.548219 +-54630.536329 +0.755668 +0.780453 +-22154.934836 +-39.203268 +0.521265 +0.675411 +0.929398 +0.859810 +0.609000 +0.627056 +0.365469 +0.402413 +0.607428 +0.316044 +0.343211 +0.448230 +0.553314 +0.733997 +0.169123 +0.795540 +0.382767 +0.456035 +0.227537 +0.593571 +0.868651 +0.160707 +0.397032 +0.851273 +0.213998 +0.360528 +0.356292 +0.387820 +0.899725 +0.269667 +0.644969 +0.036079 +0.216085 +-0.275669 +0.143287 +0.945339 +0.804578 +0.368168 +0.917113 +0.534494 +0.895065 +0.494439 +0.950413 +0.839745 +0.876580 +0.893884 +0.793681 +0.798736 +0.835461 +0.863990 +0.829743 +0.804835 +0.938620 +0.515663 +0.552181 +0.916929 +0.787211 +0.959845 +0.783307 +0.782313 +0.626611 +0.859035 +0.997763 +0.967726 +0.868454 +0.934567 +0.707399 +0.656775 +0.421145 +-56.182883 +0.923264 +0.914470 +0.921796 +0.924483 +0.607915 +0.927343 +0.980268 +0.841548 +0.158524 +0.576990 +0.830724 +0.834337 +0.756927 +0.574178 +0.671243 +0.842696 +0.816897 +0.844784 +0.689028 +0.820902 +0.765731 +0.925236 +0.941654 +0.952054 +0.922615 +0.903311 +0.927577 +0.918035 +0.931373 +0.921757 +0.921068 +0.790680 +0.800260 +0.924086 +0.744910 +0.920665 +0.186613 +0.926086 +0.920999 +0.986307 +0.533124 +0.272878 +0.920861 +0.148495 +0.853633 +0.926266 +0.690639 +0.969130 +0.408490 +0.941083 +0.905496 +0.149039 +0.866006 +0.295243 +0.757816 +0.305511 +0.238586 +0.840073 +0.919305 +0.775766 +0.646714 +0.847942 +0.921290 +0.223684 +0.234845 +0.959810 +0.506910 +0.982430 +0.553541 +0.931760 +0.408466 +0.947421 +0.820803 +0.918628 +0.653478 +0.315554 +0.053473 +0.929741 +0.763790 +0.343802 +0.407459 +0.525476 +0.779054 +0.920341 +0.232327 +0.353272 +0.351441 +0.013021 +0.349743 +0.861244 +0.494132 +0.412208 +0.995635 +0.407236 +0.114385 +0.204921 +0.918398 +0.471814 +0.919993 +0.919256 +0.839235 +0.639232 +0.718508 +0.509016 +0.748944 +0.913948 +0.881029 +0.664266 +0.854235 +0.579600 +0.876174 +0.943606 +0.971533 +0.878706 +0.871794 +0.788172 +0.732728 +0.916840 +0.913151 +0.563654 +0.795610 +0.966352 +0.936254 +0.973465 +0.930663 +0.833476 +0.930325 +0.868111 +0.890684 +0.734638 +0.917396 +0.678019 +0.654033 +0.924682 +0.941877 +0.914519 +0.619412 +0.956771 +0.837691 +0.678784 +0.892351 +0.787048 +0.933593 +0.576503 +0.929852 +0.923160 +0.923963 +0.682027 +0.921820 +0.618437 +0.919695 +0.615194 +0.441937 +0.321095 +0.563668 +0.799743 +0.746835 +0.718285 +0.203746 +0.008725 +-0.219271 +-0.239945 +0.969242 +0.987536 +0.176344 +0.301016 +0.185494 +0.966288 +0.453778 +0.843680 +0.013418 +0.343981 +0.634359 +0.979387 +-0.064762 +-402.381317 +0.959386 +0.525121 +0.158568 +0.144008 +0.518702 +0.991223 +0.546399 +0.987381 +0.893781 +0.201755 +0.192459 +0.623225 +0.848967 +-0.045900 +0.926135 +0.869711 +0.709536 +0.983374 +0.845974 +0.965142 +0.912253 +0.862949 +-0.124084 +0.620943 +0.380382 +0.895745 +0.894674 +0.966344 +0.868153 +-0.157689 +0.779082 +0.756823 +0.787769 +0.921636 +0.928752 +0.820329 +0.865097 +0.359116 +0.200236 +0.632465 +0.855864 +0.925950 +0.408301 +0.210490 +0.983396 +0.554039 +0.339085 +0.278459 +0.819904 +0.891482 +0.837312 +0.222414 +-0.548884 +-0.748015 +0.505484 +0.844103 +0.901152 +0.498007 +0.846245 +0.639850 +0.362963 +0.668290 +0.666542 +0.682462 +0.900864 +0.759976 +-0.282513 +0.338570 +0.850232 +0.590148 +0.943493 +0.730210 +0.444210 +0.987895 +0.573813 +0.658582 +0.923342 +0.629177 +0.737824 +0.452460 +0.576874 +0.444538 +0.941763 +0.898033 +0.796930 +0.890162 +0.830225 +0.924649 +0.886526 +0.663277 +0.738655 +0.888101 +0.967239 +0.726007 +0.603624 +0.783690 +0.763242 +0.910791 +0.680280 +0.956542 +0.559952 +0.553339 +0.625043 +0.529418 +0.735324 +0.388593 +0.268963 +0.340504 +0.273900 +0.435395 +0.488109 +0.519248 +0.931379 +0.763442 +0.793175 +0.762905 +0.773994 +0.751657 +0.687624 +0.790617 +0.707790 +0.765708 +0.504068 +0.913731 +0.886444 +0.760031 +0.982106 +0.724361 +0.713065 +0.776648 +0.817548 +0.763573 +0.657986 +0.715338 +0.756530 +0.729526 +0.725102 +0.699841 +0.905960 +0.814813 +0.245997 +0.256539 +0.477346 +0.689333 +0.363475 +0.358160 +0.543330 +0.664758 +0.273319 +0.785486 +0.440661 +0.538132 +0.911870 +0.935790 +0.555310 +0.965829 +0.425987 +0.878390 +0.962485 +0.556656 +0.890808 +0.279265 +0.943722 +0.560333 +0.523539 +0.947970 +0.790425 +0.842102 +0.950887 +0.998245 +0.931943 +0.568985 +0.329772 +0.907521 +-0.850010 +0.771895 +0.787060 +0.939131 +0.939074 +0.001563 +0.734634 +0.903845 +0.883932 +0.044817 +0.937808 +0.814549 +0.924142 +0.837998 +0.555571 +0.770467 +0.723342 +0.937115 +0.924745 +0.400541 +0.983848 +0.969620 +0.541671 +0.843146 +-0.994951 +0.564197 +0.945547 +0.174366 +0.295596 +0.316047 +0.360952 +0.104057 +-13.873397 +0.210624 +0.396018 +-0.015623 +0.401296 +0.596373 +0.115553 +-4.468406 +-63.255146 +-0.053044 +0.226865 +0.659385 +0.980378 +0.963354 +0.280438 +0.781427 +0.240523 +0.956841 +0.505597 +0.266115 +0.999832 +0.738381 +0.610003 +0.352000 +0.510892 +0.990932 +0.491772 +0.460983 +0.909743 +0.532104 +0.492994 +0.748361 +0.816521 +0.317210 +0.964322 +0.429006 +0.887588 +0.999644 +0.957283 +0.107754 +0.292531 +0.718832 +0.171756 +0.856558 +0.959784 +0.658097 +0.357552 +0.901078 +0.897402 +0.341534 +0.978641 +0.262141 +0.611080 +0.903932 +0.886861 +0.588678 +0.406880 +0.830628 +0.500545 +0.410138 +0.517987 +0.954990 +0.715188 +0.550344 +0.412480 +0.604359 +0.779369 +0.375942 +0.921566 +0.942208 +0.934259 +0.922434 +0.175590 +0.323462 +0.514993 +0.444957 +0.540258 +0.390037 +0.935472 +0.850951 +0.363869 +0.400304 +0.722587 +0.688144 +0.427631 +0.928687 +0.309107 +0.332406 +0.534269 +0.264656 +0.832149 +0.937175 +0.994450 +0.951036 +0.075831 +0.268937 +0.587116 +0.744837 +0.146032 +0.313037 +0.425120 +0.503782 +0.922912 +0.537156 +0.830237 +0.442905 +0.981621 +0.969480 +0.583586 +0.959205 +0.808207 +0.942019 +0.912758 +0.963977 +0.564018 +0.626286 +0.543129 +0.645029 +0.938509 +0.897339 +0.370951 +0.398965 +0.659817 +0.924249 +0.951935 +0.919132 +0.297952 +0.546814 +0.663998 +0.673981 +0.625773 +0.529403 +0.770695 +0.935713 +0.358170 +0.929705 +0.389045 +0.440147 +0.919353 +0.930881 +0.921860 +0.918719 +0.147791 +0.513927 +0.759217 +0.612780 +0.591466 +0.560721 +0.536870 +0.640048 +0.429799 +0.978685 +0.746777 +0.397264 +0.474248 +0.182606 +0.585656 +0.432289 +0.921054 +0.914519 +0.422882 +0.440595 +0.463510 +0.552577 +0.947390 +0.318633 +0.375929 +0.534214 +0.444641 +0.759053 +0.421352 +0.420172 +0.759884 +0.397709 +0.673988 +0.841492 +0.914745 +0.908746 +0.925786 +0.653223 +0.924810 +0.927010 +0.932014 +0.400309 +0.670833 +0.797398 +0.289519 +0.522762 +0.646142 +0.111374 +0.175427 +0.014316 +0.370777 +0.080296 +-0.000408 +0.152706 +0.077440 +0.315025 +0.122461 +0.028326 +0.020903 +0.880895 +0.433897 +0.060969 +0.021208 +0.057765 +0.157533 +-0.000520 +0.178096 +0.168270 +0.630426 +0.475567 +0.491631 +0.767380 +0.701175 +0.711071 +0.745569 +0.800352 +0.742668 +0.764096 +0.748336 +0.765844 +0.140518 +0.470401 +0.287330 +0.224055 +0.294477 +0.277474 +0.845077 +0.172727 +0.136848 +0.840884 +0.211285 +0.979805 +0.051207 +0.364010 +0.016657 +0.000312 +-0.289492 +0.555990 +0.599431 +0.313957 +0.935262 +0.795145 +0.977766 +0.885079 +0.915616 +0.697393 +0.561636 +0.922948 +0.792774 +0.839770 +0.885986 +0.715233 +0.857328 +0.865895 +0.685193 +0.729972 +0.831570 +0.838070 +0.837013 +0.665591 +0.490784 +0.906939 +0.993869 +0.792718 +0.926653 +0.532845 +-0.260441 +0.326188 +0.197024 +-32.962036 +0.064610 +0.407440 +0.783943 +0.106506 +0.274605 +0.506063 +0.278968 +0.143001 +-0.187416 +0.875446 +0.604605 +0.262955 +-2.339618 +0.036292 +0.279723 +0.143772 +0.062477 +0.921342 +0.322120 +0.951832 +0.180691 +0.448788 +0.206553 +0.348665 +0.488504 +0.681834 +0.712441 +0.574058 +0.430155 +0.431285 +0.368972 +0.813363 +0.375703 +0.651517 +0.252336 +0.906967 +0.769641 +0.674502 +0.783266 +0.296813 +0.578289 +0.715318 +0.964412 +0.671306 +0.675651 +0.747109 +0.759262 +0.875068 +0.569030 +0.715887 +0.749905 +0.401829 +0.690904 +0.758031 +0.455891 +0.918061 +0.750477 +0.997544 +0.298168 +0.595874 +0.761648 +0.278492 +0.761627 +0.193514 +0.835063 +0.795448 +0.751264 +0.777444 +0.318166 +0.733084 +0.326760 +0.291078 +0.778017 +0.403365 +0.428030 +0.216840 +0.932896 +0.529386 +0.742414 +0.888186 +0.924407 +0.789374 +0.415820 +0.430059 +0.773908 +0.617894 +0.741254 +0.735604 +0.696747 +0.931532 +0.700682 +0.342844 +0.332882 +0.200507 +0.368337 +0.267178 +0.644166 +0.250197 +0.441523 +0.347599 +0.338740 +0.258189 +0.718075 +0.376804 +0.427240 +0.377575 +0.120618 +0.394543 +0.236838 +0.817880 +0.179271 +0.730053 +0.595440 +0.773948 +0.967597 +0.218031 +0.969381 +0.570673 +0.513382 +0.463019 +0.849983 +0.399502 +0.365790 +0.579018 +0.794687 +0.352014 +0.883048 +0.716125 +0.507686 +0.970328 +0.896362 +0.715827 +0.684977 +0.980073 +0.515434 +0.787310 +0.721305 +0.927663 +0.609895 +0.777263 +0.924130 +0.919813 +0.926743 +0.850991 +0.940232 +0.641870 +0.772631 +0.923839 +0.772857 +0.978640 +0.554427 +0.260238 +0.893621 +0.862223 +0.761457 +0.544485 +0.793682 +0.518008 +0.345906 +0.080729 +-0.134942 +-0.023349 +0.479407 +0.407795 +0.486188 +0.986813 +0.953161 +0.887483 +-1.191658 +-0.037225 +0.304785 +0.000729 +0.839647 +0.291227 +0.314550 +0.332370 +0.532365 +0.389785 +0.475980 +-0.042043 +0.371006 +0.934592 +0.921550 +0.963340 +0.727222 +0.987645 +0.944214 +0.349315 +0.899708 +0.223404 +0.236666 +0.521494 +0.895777 +0.918397 +0.979284 +0.464502 +0.519128 +0.919688 +0.747695 +0.300594 +0.262064 +0.928461 +0.644142 +0.460410 +0.456992 +0.590734 +0.329737 +0.414655 +0.927646 +0.237953 +0.260167 +0.832665 +0.401196 +0.813204 +0.528240 +0.447624 +0.261402 +0.554622 +0.766917 +0.643008 +0.965121 +0.944241 +0.976260 +0.948771 +0.989816 +0.966862 +0.978337 +0.340746 +0.922900 +0.989708 +0.934341 +0.392372 +0.500045 +0.453401 +0.921220 +0.439670 +0.786446 +0.766821 +0.740729 +0.939298 +0.567514 +0.867120 +0.547957 +0.905794 +0.408479 +0.920080 +0.664092 +0.888749 +0.929066 +0.956902 +0.719197 +0.933395 +0.895147 +0.247009 +0.745648 +0.771081 +0.303317 +0.522484 +0.818113 +0.601326 +0.318786 +0.841470 +0.125032 +0.806561 +0.379236 +0.322111 +0.058698 +0.912886 +0.147777 +0.882734 +0.577178 +0.442690 +0.530843 +0.528067 +0.456746 +0.477699 +0.512602 +0.446034 +0.406902 +0.501911 +0.492616 +0.652243 +0.485814 +0.471760 +0.905707 +0.760568 +0.830143 +0.763256 +0.750510 +0.769085 +0.754006 +0.785645 +0.753554 +0.761665 +0.387665 +-200.501662 +0.846317 +0.311372 +0.310365 +0.184312 +0.274924 +0.864609 +0.269407 +0.799925 +0.176437 +0.640575 +0.856338 +0.435161 +0.210877 +0.768685 +0.962797 +0.423139 +0.434841 +0.236793 +0.343025 +0.109608 +0.247281 +0.036985 +0.147558 +0.223701 +0.660393 +0.943194 +0.145107 +0.580176 +0.504447 +0.196379 +0.769135 +0.600677 +0.565948 +0.855649 +0.637118 +0.865643 +0.718481 +0.711753 +0.177843 +0.254584 +0.277884 +0.030315 +0.203985 +0.506008 +0.169614 +0.164382 +0.500142 +0.729616 +0.717055 +-0.030633 +0.227080 +0.169344 +0.492630 +0.558622 +0.422326 +0.017786 +0.144750 +0.092218 +0.043449 +-1.339059 +0.143053 +0.388177 +0.622726 +0.049184 +0.980867 +0.066289 +0.171130 +0.058582 +0.994542 +0.126642 +0.066535 +-11.554736 +-0.178388 +-0.210401 +0.495149 +0.468781 +0.303755 +0.145467 +-0.206239 +0.249235 +0.031681 +0.491278 +0.854692 +0.355469 +0.980474 +0.929939 +0.979765 +0.986845 +0.648131 +0.912788 +0.757520 +0.864714 +0.930063 +0.921508 +0.852164 +-0.192992 +-0.246192 +0.790651 +0.924689 +0.940197 +0.473063 +0.472234 +0.843519 +0.954973 +0.944747 +0.931194 +0.828211 +0.792545 +0.912388 +0.371522 +0.955193 +0.935558 +0.683387 +0.795919 +0.486589 +0.054397 +0.996675 +0.798831 +0.950159 +0.680891 +0.480367 +0.817700 +0.807487 +0.836535 +0.670832 +-0.198518 +0.921097 +0.763979 +0.926473 +0.461863 +0.962686 +0.888722 +0.912753 +0.321102 +0.917126 +0.967725 +0.722629 +0.638246 +0.863723 +0.873523 +0.743004 +0.599245 +0.374282 +0.429015 +0.524907 +0.873901 +0.639643 +0.772251 +0.801263 +0.953401 +0.858746 +0.771041 +0.934765 +0.752111 +0.634824 +0.305165 +0.555676 +0.404089 +0.859432 +0.211209 +0.240491 +0.874005 +0.748160 +0.603643 +0.271661 +0.286536 +0.958614 +0.255059 +0.772248 +0.818685 +0.939205 +0.926389 +0.930227 +0.717650 +0.676848 +0.858322 +0.801509 +0.708819 +0.930158 +0.862088 +0.855887 +0.930426 +0.741703 +0.225965 +0.533070 +0.876150 +0.937753 +0.930856 +0.272797 +0.356826 +0.617452 +0.528021 +0.848427 +0.852757 +0.308560 +0.687699 +0.919354 +0.745215 +0.929094 +0.920215 +0.975997 +0.944444 +0.093427 +0.102818 +0.761380 +0.966393 +0.648393 +0.885979 +0.898453 +0.931657 +0.895155 +0.978908 +0.563352 +0.570419 +0.417521 +0.855516 +0.925127 +0.644937 +0.918898 +0.816137 +0.726860 +0.928366 +0.925249 +0.949237 +0.287026 +-9.269588 +0.755088 +0.574318 +0.932671 +0.867240 +0.763220 +0.942746 +0.610295 +0.496026 +0.622060 +0.572651 +0.920599 +0.990844 +0.199668 +0.996450 +0.821111 +0.697986 +0.599777 +0.284087 +0.033438 +0.550285 +-822829.343933 +-0.442200 +0.379218 +0.564702 +0.666051 +0.070371 +0.305629 +0.443626 +-4.698360 +-0.016117 +0.115966 +0.533223 +0.550444 +0.554177 +0.735652 +0.166553 +0.672905 +0.604610 +0.299455 +0.311405 +0.670435 +0.471557 +0.723479 +0.636284 +0.608196 +0.354871 +0.038226 +0.239298 +0.435070 +-2.146077 +0.043972 +0.397867 +0.277032 +-897.528551 +-0.162918 +0.134257 +0.073491 +0.959992 +0.200922 +0.242131 +0.451349 +-0.161685 +0.447819 +0.505220 +0.266109 +0.998208 +0.897112 +0.922810 +-0.088715 +0.238601 +0.525297 +0.323339 +0.587664 +0.598537 +-1.208334 +0.995036 +0.902340 +0.969487 +0.953724 +0.732910 +0.951126 +0.655722 +0.588347 +0.594335 +0.275828 +0.671907 +0.716104 +0.685182 +0.468259 +-194.607073 +-2457999999999.000000 +-4.660784 +0.767131 +0.434817 +0.628760 +0.534779 +0.476485 +0.495059 +-11790.124652 +0.484312 +0.707684 +0.933337 +0.403319 +0.287658 +0.335128 +0.341596 +0.921346 +0.306525 +0.667409 +0.569952 +-0.482217 +0.409993 +0.111968 +0.437492 +-45.471480 +0.003791 +0.907662 +0.203435 +0.294787 +0.123967 +0.860552 +0.576814 +0.916471 +0.796393 +0.921636 +0.722990 +0.706063 +0.899313 +0.904880 +0.920718 +0.930945 +0.908881 +0.532519 +0.634128 +0.777234 +0.753945 +0.655766 +0.683718 +0.594159 +0.714885 +0.627651 +0.969734 +0.881693 +0.857123 +0.894394 +0.651040 +0.826838 +0.733688 +0.785643 +0.854202 +0.813680 +0.917308 +0.967490 +0.913816 +0.809594 +0.907712 +0.646713 +0.826190 +0.833436 +0.723296 +0.908768 +0.867226 +0.826630 +0.876611 +0.842079 +0.927289 +0.246395 +0.971580 +0.642116 +0.938213 +0.866626 +0.895429 +0.934667 +0.952676 +0.640445 +0.828109 +0.915438 +0.853655 +0.918832 +0.930187 +0.812623 +0.713238 +0.576291 +0.381636 +0.606951 +0.826309 +0.858458 +0.795769 +0.738208 +0.464059 +0.773897 +0.947336 +0.440371 +0.312303 +0.595224 +0.534959 +0.338626 +0.628781 +0.690037 +0.877825 +0.767437 +0.720474 +0.765339 +0.722756 +0.834836 +0.753365 +0.629007 +0.850377 +0.751146 +0.296421 +0.573459 +0.741786 +0.746789 +0.355764 +0.654333 +0.588036 +0.517097 +0.368399 +0.590270 +0.479697 +0.978450 +0.726799 +0.788914 +0.815101 +0.493363 +0.656208 +0.818767 +0.085494 +0.980160 +0.465098 +0.163292 +0.322057 +0.241278 +0.839102 +0.132744 +0.544006 +0.512861 +0.570407 +0.503155 +0.367859 +-2.308754 +0.999437 +0.759762 +0.612317 +0.663249 +0.685658 +0.110503 +0.226362 +0.121909 +0.157146 +0.455864 +0.973020 +0.500754 +0.531225 +0.398125 +0.524752 +0.536425 +0.575933 +0.486580 +0.710256 +-1.227265 +0.489481 +0.960293 +-0.324388 +0.483093 +0.608237 +0.010222 +0.643973 +0.661167 +0.894583 +-1.932402 +0.329819 +0.996156 +-0.030715 +-0.034013 +0.047522 +0.609804 +0.542771 +0.920425 +0.481975 +0.904938 +0.731937 +0.663788 +0.600970 +0.196579 +0.151608 +0.021302 +-0.008826 +0.359883 +0.061666 +0.535114 +0.056610 +0.850663 +0.029501 +0.135823 +0.199596 +-0.320632 +-0.117928 +0.309539 +0.518006 +0.237616 +0.006208 +0.197784 +0.529344 +0.683900 +0.305727 +0.062648 +0.000355 +0.738069 +0.279655 +0.288089 +-0.029537 +-41.913551 +0.532462 +0.029902 +0.823912 +0.503460 +0.260201 +0.088378 +0.844018 +-0.150307 +0.635833 +0.117709 +-0.027006 +0.297049 +0.830553 +0.851704 +0.785092 +0.823936 +0.754438 +0.814570 +0.156431 +0.970022 +0.895570 +0.044208 +0.587393 +0.792915 +0.513391 +0.786170 +0.778178 +0.633906 +0.799075 +0.726736 +0.363520 +0.661859 +0.523296 +0.415251 +0.813897 +0.919232 +0.918459 +0.921568 +0.988507 +0.650805 +0.494378 +0.372354 +0.525962 +0.287352 +0.467142 +0.455952 +0.557110 +0.505226 +0.556598 +0.596066 +0.398243 +0.676515 +0.573998 +0.499302 +0.485483 +0.349373 +0.182362 +0.925151 +0.935902 +0.502486 +0.918955 +0.920455 +0.401302 +0.374558 +0.915347 +0.902831 +0.174524 +0.441076 +0.954650 +0.664364 +0.924854 +0.913716 +0.582730 +0.625624 +0.931324 +0.931276 +0.098467 +0.372677 +0.561053 +0.489517 +0.805015 +0.968006 +0.649752 +0.685683 +0.794633 +0.776849 +0.956975 +0.941591 +0.931023 +0.513766 +-7.450658 +0.916845 +0.232587 +0.860224 +0.356354 +0.332010 +0.341139 +0.440058 +0.539156 +0.307483 +0.346402 +0.761030 +0.766039 +0.868683 +0.800736 +0.776753 +0.719895 +0.823679 +0.845244 +0.768373 +0.847775 +0.780833 +0.733172 +0.663560 +0.646555 +0.783706 +0.664540 +0.958159 +0.891014 +0.445833 +0.314500 +0.529751 +0.596576 +0.546913 +0.526062 +0.894123 +0.746560 +0.046879 +0.530731 +0.243514 +0.529259 +0.350346 +0.110421 +0.376458 +0.922373 +0.755348 +0.528256 +0.734557 +0.982042 +0.735192 +0.895599 +0.979826 +0.918238 +0.860640 +0.887056 +0.344903 +0.868440 +0.984421 +0.855546 +0.918735 +-1.751263 +0.741937 +0.928162 +0.846521 +0.457176 +0.992289 +0.818348 +0.975470 +0.741016 +0.691349 +0.832304 +0.734670 +0.937469 +0.882726 +0.646611 +-1.209227 +0.294423 +0.594051 +0.445165 +0.508513 +0.459707 +0.188626 +0.624562 +0.563987 +0.971383 +0.434372 +0.082053 +-22.915339 +0.624341 +0.561122 +0.899302 +0.315758 +0.130034 +0.559086 +0.618572 +-0.318540 +0.255434 +0.416473 +-6.488447 +0.911130 +0.033681 +0.903708 +0.937737 +0.688761 +0.785324 +0.947620 +0.982264 +0.952409 +0.792633 +0.881232 +-7.018991 +0.993140 +0.455647 +0.859833 +0.520671 +0.703848 +0.606982 +0.065721 +0.975428 +0.848186 +0.695427 +0.821950 +0.767501 +0.905979 +0.703790 +0.821108 +0.995461 +0.752194 +0.931703 +0.354436 +0.830892 +0.825586 +0.935625 +0.934218 +0.038005 +0.875277 +0.843902 +0.718675 +0.810186 +0.158306 +0.995740 +0.622021 +0.593652 +0.226433 +0.967620 +0.730108 +0.710644 +0.899753 +0.185527 +0.936702 +0.750279 +0.647841 +-0.012114 +0.844102 +0.520532 +0.931914 +0.864691 +0.915559 +0.922333 +0.973791 +0.315771 +0.137479 +0.295402 +0.884523 +0.492043 +0.991809 +-0.252214 +0.365304 +0.605014 +0.949523 +0.975361 +0.524272 +0.852835 +0.608245 +0.772622 +0.701674 +0.871137 +0.951778 +0.018611 +0.645764 +0.565835 +0.702052 +0.428907 +0.956332 +0.418572 +0.589122 +0.609539 +0.181333 +0.259467 +0.008620 +0.082010 +0.155465 +0.267823 +0.322822 +0.993693 +0.962703 +0.537470 +0.251219 +0.198530 +0.255611 +-11.189756 +0.293670 +0.723386 +0.572932 +0.561174 +0.881348 +0.940875 +-17.806238 +0.666890 +0.993169 +0.812883 +0.985863 +0.876173 +0.932911 +0.750988 +0.301434 +0.803026 +0.861709 +0.922351 +0.938422 +0.885110 +0.920585 +0.142385 +0.455515 +0.818182 +0.605091 +0.929490 +0.860683 +0.915846 +0.901415 +0.440584 +0.968175 +0.823005 +0.956234 +0.957270 +0.915464 +0.762624 +0.749604 +0.842376 +0.591533 +0.456691 +0.087668 +0.761571 +0.672209 +0.877389 +0.824443 +0.083989 +0.280177 +0.527426 +0.775976 +0.488883 +0.912545 +0.925022 +0.844017 +0.876435 +0.368783 +0.350549 +0.899301 +0.736525 +0.875249 +0.790068 +0.363207 +-21.577933 +-4.091984 +0.263368 +0.296648 +0.477949 +0.685356 +0.226870 +0.557555 +-1.162733 +0.555294 +0.895952 +0.194228 +0.898127 +0.423742 +0.943238 +0.875718 +0.531870 +0.598081 +0.526471 +0.823785 +0.535265 +-0.116768 +0.537337 +0.845718 +0.845718 +0.931042 +0.246286 +0.242341 +0.584582 +0.928510 +0.482010 +0.480815 +0.630916 +0.861189 +0.755220 +0.700206 +0.554837 +0.560888 +0.523315 +0.435482 +0.867378 +0.802246 +0.715921 +0.715920 +0.706155 +0.716535 +0.599855 +0.694235 +0.677324 +0.751739 +0.599474 +0.679964 +0.719146 +0.425500 +0.651756 +0.689921 +0.418272 +0.767163 +0.759301 +0.537525 +0.151728 +0.884164 +0.718872 +0.762049 +0.664339 +0.719664 +0.457261 +0.653452 +0.638688 +0.898884 +0.111339 +0.372982 +0.243832 +0.748788 +0.637755 +0.646524 +0.166622 +0.133781 +-0.296494 +0.009724 +-0.348596 +0.124139 +-0.489076 +0.384377 +0.251159 +0.186395 +-0.632097 +0.495302 +0.241501 +0.164760 +0.450952 +0.295224 +0.252881 +0.185987 +0.314860 +0.305864 +0.521997 +0.487136 +0.286196 +0.311696 +0.791858 +0.409598 +0.496666 +0.774811 +0.517135 +0.047035 +0.323621 +0.831251 +0.916232 +0.099236 +0.294976 +0.365544 +0.425393 +0.453078 +0.935820 +0.997230 +0.279276 +0.613987 +0.464579 +0.272690 +-559.092796 +0.815143 +0.003771 +0.771097 +0.984129 +0.907959 +0.932320 +0.925731 +0.709846 +0.775643 +0.263383 +-0.012179 +0.289403 +-1.202468 +0.711878 +-9.036734 +-0.009674 +-0.745330 +0.006726 +0.440194 +0.877278 +0.199882 +0.526844 +0.299084 +0.010795 +0.551213 +0.369069 +0.535084 +-0.212660 +0.390256 +0.127597 +0.887911 +0.959443 +0.915754 +0.399062 +0.991622 +0.898507 +0.923994 +0.824805 +0.766671 +0.856196 +0.587942 +0.535222 +0.836859 +0.942791 +0.679871 +0.535867 +0.700328 +0.215159 +0.950667 +0.672214 +0.932340 +-13.392329 +0.835823 +-5.466004 +-0.220050 +0.806709 +0.867403 +0.932784 +0.941285 +0.887507 +0.365594 +0.423443 +0.828178 +0.798364 +0.815909 +0.843238 +0.780787 +0.883855 +0.766781 +0.840450 +0.500480 +0.887318 +0.646785 +0.891703 +0.503009 +0.520855 +0.964305 +0.857192 +0.947132 +0.413927 +0.941488 +0.929188 +0.908431 +0.846620 +0.937124 +0.453393 +0.868375 +0.601754 +0.763583 +0.908209 +0.863148 +0.831820 +0.923911 +0.931762 +0.817715 +0.892467 +0.856212 +0.760893 +0.927791 +0.812883 +0.770752 +0.633502 +0.843629 +0.694603 +0.482371 +0.373606 +0.401103 +0.859875 +0.701396 +-0.457428 +0.936397 +0.768307 +0.741245 +0.865304 +0.589720 +0.584588 +0.904064 +0.892798 +0.359304 +0.801261 +0.294344 +0.465479 +0.181458 +0.855052 +0.855569 +0.553364 +0.616128 +0.571394 +0.396042 +0.630645 +0.270544 +0.272386 +0.529180 +0.540080 +0.871018 +0.274749 +0.556424 +0.726497 +0.761381 +-0.287818 +0.859905 +0.892566 +-0.286888 +0.979959 +0.311352 +0.628528 +0.930672 +0.591588 +-0.191422 +0.689358 +0.837884 +0.434749 +-0.735366 +0.894394 +0.925168 +0.936955 +0.658025 +0.790787 +0.856621 +0.778989 +0.903480 +0.762514 +0.507395 +0.821067 +0.838795 +0.359098 +0.652873 +0.688702 +0.791217 +0.669894 +0.100975 +0.594918 +0.206441 +0.795259 +0.190714 +0.518729 +0.861226 +0.610819 +0.876934 +0.310137 +0.189258 +0.373556 +0.303048 +0.453912 +0.992960 +0.698639 +-0.020357 +-0.210841 +0.178640 +0.130937 +0.449504 +0.375515 +0.946774 +0.381877 +0.536120 +0.678603 +0.649650 +0.515329 +0.952072 +0.128461 +0.365833 +0.329892 +-0.925161 +0.939721 +0.037509 +0.791954 +0.995949 +0.039433 +0.676787 +0.180884 +0.328950 +0.124827 +-0.325788 +0.388138 +-0.345385 +0.656430 +0.797094 +0.194291 +0.756510 +0.949838 +0.510257 +0.254941 +0.618709 +0.274782 +0.564746 +0.865997 +0.712443 +0.754010 +0.678091 +0.965848 +0.889066 +0.911816 +0.623277 +0.984901 +0.933168 +0.681244 +0.910730 +0.976744 +0.770062 +0.575670 +0.975530 +0.827785 +0.933981 +0.842931 +0.923039 +-0.013191 +0.899600 +0.721794 +0.419017 +0.200428 +0.323343 +0.898895 +0.023289 +0.146701 +0.093648 +0.307566 +0.053553 +0.386367 +0.248996 +0.206339 +0.782862 +-1.812735 +0.090790 +0.496526 +0.816406 +-0.420256 +0.287413 +0.499348 +0.946679 +0.884031 +-259278.987006 +0.117454 +0.998353 +0.718459 +0.907734 +0.232390 +0.565264 +0.525167 +0.874192 +0.560655 +0.908464 +0.703316 +0.520045 +0.785338 +0.226050 +0.851598 +0.402186 +0.937991 +0.730220 +0.739520 +0.389684 +0.809274 +0.720631 +0.708003 +0.135972 +0.893841 +0.767558 +0.909853 +0.133059 +0.529585 +0.816748 +0.925444 +0.889324 +0.616824 +0.920391 +0.971389 +0.646811 +0.565670 +0.857116 +0.767713 +0.649953 +-0.322431 +0.946292 +0.920704 +0.857543 +0.611855 +0.742807 +0.300485 +0.749326 +0.880894 +0.631182 +0.614571 +0.921561 +0.922413 +0.513210 +0.224791 +0.236503 +0.853766 +0.335451 +0.579796 +0.720767 +0.663423 +0.461652 +0.639776 +0.361927 +0.680477 +0.081117 +0.594149 +0.827427 +0.395987 +0.178193 +0.569766 +0.396726 +0.323735 +0.491154 +0.432098 +0.907217 +0.088563 +0.375145 +0.171623 +0.622777 +-0.056355 +0.212908 +0.071124 +0.466428 +0.104627 +0.380016 +0.713450 +0.964543 +0.113969 +0.644337 +0.787297 +0.117228 +0.341612 +0.102424 +0.129779 +-37.522721 +-0.030060 +0.080864 +0.021244 +0.187018 +0.072260 +0.074414 +0.121101 +0.797535 +0.820278 +0.402620 +0.024976 +0.715981 +0.922612 +0.521534 +-0.000166 +0.969660 +0.005257 +0.806604 +0.251966 +0.529695 +0.175398 +0.953427 +0.063233 +0.756707 +0.172846 +0.831403 +0.630809 +0.171740 +0.485990 +0.167052 +0.908143 +0.242335 +0.853753 +0.369852 +0.134127 +-0.084567 +0.137760 +0.731129 +0.968228 +0.007783 +0.822091 +0.128144 +0.104184 +0.616079 +0.084398 +0.252735 +0.926502 +0.473726 +0.851861 +0.004802 +0.154047 +0.125331 +0.802071 +0.292612 +0.424778 +0.905140 +0.517078 +0.096570 +0.947052 +0.580057 +0.154792 +0.053216 +0.864565 +0.018630 +0.981128 +0.035552 +0.690671 +0.316523 +0.246375 +0.029218 +0.951725 +0.790498 +0.978824 +0.955027 +0.946241 +0.902517 +0.951346 +0.964962 +0.172751 +0.955475 +0.367512 +0.651427 +0.405417 +0.504077 +0.668613 +0.212778 +0.403859 +0.147060 +-2.431161 +0.956663 +0.650672 +0.263339 +0.424542 +0.803444 +0.986581 +0.802983 +0.598202 +0.655644 +0.894258 +0.918941 +-1.358256 +0.836851 +0.595402 +0.949695 +0.968350 +0.449988 +0.695912 +0.874526 +0.994727 +0.820796 +0.687522 +0.773446 +-24.207919 +0.966625 +0.656681 +0.694027 +0.470930 +0.538875 +0.939161 +0.868433 +0.234022 +-0.282875 +0.377215 +0.492951 +0.725404 +0.866369 +0.536055 +0.776441 +0.856798 +0.741501 +0.864100 +0.884486 +0.716815 +0.694996 +0.899294 +0.926488 +0.508231 +0.925140 +0.855697 +0.498078 +0.899754 +0.324117 +0.845248 +0.595649 +0.964428 +0.352961 +0.934630 +0.938696 +0.772819 +0.805623 +0.941011 +0.848400 +0.959129 +-0.243708 +0.908905 +0.881256 +0.914890 +-1.529099 +0.323410 +0.375535 +0.431631 +0.363167 +0.343291 +0.540689 +0.900562 +0.651148 +0.057006 +0.557932 +0.956282 +0.460834 +0.933445 +0.931198 +0.963987 +0.974673 +0.431917 +0.784578 +0.493488 +0.934500 +0.954182 +0.935678 +0.489895 +0.438036 +0.184202 +0.325559 +0.375548 +0.610112 +0.563321 +0.915554 +0.957571 +0.448529 +0.497430 +0.326483 +0.269296 +0.572577 +0.351250 +0.918825 +0.918747 +0.919322 +0.819937 +0.121437 +0.031386 +0.428429 +0.911781 +0.767524 +0.201607 +0.488647 +0.901638 +0.967040 +0.869639 +0.433658 +0.905300 +0.984679 +0.767662 +0.926013 +0.932855 +0.678443 +0.847130 +0.376677 +0.298094 +0.897322 +0.391270 +0.846276 +0.316477 +0.484692 +0.674971 +-0.919005 +0.188715 +0.604648 +0.480078 +0.446825 +0.433327 +-0.026111 +0.650848 +-1.001556 +0.409028 +0.510916 +0.901110 +-0.248413 +0.741417 +0.741417 +0.679101 +0.583904 +0.691739 +0.726930 +0.444335 +0.441890 +0.031143 +-0.090655 +0.002983 +0.415593 +0.904294 +0.666230 +0.851763 +0.854605 +0.688573 +0.419314 +0.500932 +0.498861 +0.479850 +0.943855 +0.975289 +0.852054 +0.909986 +0.830661 +0.926520 +0.576076 +0.942691 +0.784692 +0.991946 +0.953156 +0.817714 +0.791201 +0.969676 +0.949606 +-0.416668 +0.377367 +0.877262 +0.478368 +0.818336 +0.972772 +0.957014 +0.804571 +0.968834 +0.216891 +0.833611 +0.360257 +0.562213 +0.997163 +0.240491 +0.488651 +0.101776 +0.700803 +0.084184 +0.758501 +0.525587 +0.396198 +0.192470 +-0.655441 +0.901893 +0.990689 +0.867067 +0.372050 +0.501496 +0.314980 +0.713074 +0.207569 +0.924399 +0.840373 +0.278080 +0.108148 +0.345324 +0.572790 +0.086654 +0.002820 +0.042399 +0.117194 +0.019879 +0.776539 +0.624545 +0.291393 +0.287185 +0.370230 +0.473667 +0.430520 +0.949048 +-7.041182 +0.562008 +0.725468 +0.254514 +0.626371 +0.584643 +0.626712 +0.524350 +0.579550 +0.775885 +0.024543 +0.807461 +0.623430 +-0.034182 +0.376429 +0.224439 +0.893979 +0.140693 +0.131875 +0.243869 +0.944866 +0.478664 +0.848291 +0.077016 +0.970398 +0.759545 +0.309314 +-9.529552 +0.116483 +-2.836611 +0.136339 +-0.414432 +0.813948 +0.783557 +0.115241 +0.993593 +0.336334 +0.401304 +0.847128 +0.256148 +0.460627 +0.451514 +0.343553 +0.715345 +0.907639 +0.740897 +0.425305 +0.947454 +-3.167211 +-0.140239 +0.106700 +0.206838 +0.074843 +0.901891 +0.192230 +-0.557068 +0.762975 +0.768073 +0.470730 +0.156231 +0.436204 +0.828553 +0.883894 +0.800302 +0.455130 +0.849223 +0.362961 +0.111665 +0.766575 +0.441624 +0.749057 +0.752284 +0.703742 +0.543175 +0.859092 +0.222899 +-0.069564 +0.843882 +0.783862 +0.921169 +0.817594 +0.642023 +0.954189 +0.821220 +0.541210 +0.723223 +0.495881 +0.938346 +0.573973 +0.950139 +0.831633 +0.469850 +0.056420 +0.957396 +0.735726 +0.396583 +0.609508 +0.348739 +0.882764 +0.934281 +0.747162 +0.470319 +0.429052 +0.650819 +0.397352 +0.793199 +0.798808 +0.479095 +0.936794 +0.373184 +0.950870 +0.767366 +0.334746 +0.633438 +0.560837 +0.006381 +-17.361214 +0.981448 +0.500731 +0.423133 +0.956373 +0.960508 +0.226773 +0.981901 +0.599847 +0.307946 +0.017929 +0.027955 +0.012325 +0.632858 +0.228091 +0.619069 +0.570641 +-1.747265 +-0.161784 +0.354988 +0.608582 +0.264806 +0.169586 +0.321771 +0.878532 +0.924139 +0.897773 +0.693818 +0.472122 +0.863765 +0.825182 +0.421727 +0.377896 +0.314225 +0.111248 +0.262730 +0.453605 +0.279232 +0.017940 +-1.238574 +0.536035 +-0.016342 +0.429955 +-0.025426 +0.769670 +0.385630 +0.173619 +0.477793 +0.056943 +0.991964 +0.214781 +0.848266 +0.448855 +0.972629 +0.840192 +0.943088 +0.464549 +0.364603 +0.473060 +-5.096811 +0.132094 +0.151571 +0.760512 +0.447366 +0.107247 +0.376098 +0.144403 +0.917605 +0.994322 +0.393801 +0.605499 +0.740437 +0.995160 +0.972533 +0.429349 +0.252632 +0.145310 +0.249584 +0.326825 +-0.023961 +0.905511 +0.901231 +-0.067527 +0.919778 +0.661278 +-0.082662 +0.099603 +0.393830 +0.280351 +0.056822 +0.147353 +0.613611 +0.119840 +0.988918 +0.288504 +0.986191 +0.152356 +0.080291 +0.982231 +0.798719 +0.232044 +0.997054 +0.898404 +0.989132 +0.836162 +0.803283 +0.674497 +0.908787 +0.452255 +0.719055 +0.940469 +0.666336 +0.440248 +0.965023 +0.503063 +0.646445 +0.752791 +0.314708 +0.920050 +0.785639 +0.841850 +0.922661 +0.350404 +0.596619 +0.439076 +0.928672 +0.931577 +0.994267 +0.967041 +0.441144 +0.961995 +0.663486 +0.984115 +0.345141 +0.937226 +0.930593 +0.915226 +0.939198 +0.917648 +0.929121 +0.974600 +0.929564 +0.356076 +0.640706 +0.919425 +0.438668 +0.913348 +0.657273 +0.394756 +0.525500 +0.970140 +0.978390 +0.951948 +0.390928 +0.476226 +0.424137 +0.661773 +0.796168 +0.973685 +0.540580 +0.962708 +0.462253 +0.578646 +0.034402 +0.188974 +0.292878 +0.228673 +0.204160 +0.212224 +0.325035 +0.314328 +0.615561 +0.421181 +0.016812 +0.331345 +0.352960 +0.461757 +0.866886 +0.250106 +0.841166 +0.970598 +-10.434389 +0.787033 +0.419827 +0.578540 +0.259108 +0.848023 +0.977201 +0.303081 +0.949253 +0.989827 +0.437665 +0.086813 +0.092147 +0.117903 +0.242728 +0.452657 +0.153698 +0.223238 +0.102926 +0.047575 +0.081936 +0.326710 +0.720555 +0.380068 +0.233752 +0.047952 +0.483374 +0.391722 +0.363484 +0.083893 +0.159508 +0.734676 +0.273176 +0.382291 +0.403594 +0.626766 +0.812869 +0.159353 +0.880851 +0.801866 +0.675737 +0.772484 +0.927204 +0.524630 +0.376542 +0.633738 +0.980240 +-0.169005 +0.888367 +0.665829 +0.665829 +0.002357 +0.417054 +0.441690 +0.712380 +0.551697 +0.555666 +0.401309 +0.551666 +0.551785 +0.551774 +-0.031914 +0.404321 +0.127562 +0.383501 +0.437311 +0.866229 +0.890972 +-0.105605 +0.141086 +0.781703 +-1.063461 +0.385309 +0.734596 +0.754523 +0.505312 +0.926582 +0.443247 +0.935662 +0.838117 +-0.575944 +0.968858 +0.979200 +0.581524 +0.835706 +0.719642 +0.453687 +0.096075 +0.697519 +0.919645 +0.618638 +0.678210 +0.287199 +0.755141 +0.934985 +0.936981 +0.504225 +0.812574 +0.806276 +0.717869 +0.651043 +0.747058 +0.742267 +0.675661 +0.395433 +0.933711 +0.896154 +0.934052 +0.838184 +0.920552 +0.611494 +0.886932 +0.901801 +0.825868 +0.876332 +-8.398222 +0.953292 +0.342479 +0.674407 +0.399224 +0.934515 +0.948568 +0.786782 +0.533766 +0.862544 +0.782406 +0.699907 +0.837580 +0.681632 +0.914729 +0.606720 +0.964341 +0.652314 +0.928522 +-0.023701 +0.956275 +0.809977 +0.799499 +0.896435 +-0.070058 +-0.070058 +0.254587 +0.877486 +-0.010795 +0.874849 +0.864000 +0.741678 +0.989412 +0.529186 +0.053306 +0.243705 +0.735299 +0.167878 +0.675014 +0.514843 +0.258854 +0.258800 +0.673229 +0.241613 +0.975291 +0.577656 +0.639891 +0.958266 +0.428337 +0.046302 +0.110770 +0.791717 +0.192928 +0.066820 +0.143677 +0.087894 +0.227008 +-0.895611 +0.227170 +0.972017 +0.360785 +0.628247 +0.881139 +0.638603 +0.971286 +0.263296 +0.225423 +0.517884 +0.633039 +0.880998 +0.412147 +0.319115 +0.556081 +0.523533 +0.691854 +0.929958 +0.571517 +0.661190 +0.932083 +0.888822 +0.583224 +0.881898 +0.657345 +0.810844 +0.397993 +0.447594 +0.329360 +0.859676 +0.592671 +0.989920 +0.646023 +0.480418 +-0.197813 +0.821055 +0.316520 +0.929733 +0.974671 +0.951273 +0.637454 +0.687925 +0.693694 +0.696356 +0.696369 +0.982067 +0.761684 +0.449766 +0.017486 +0.803652 +0.675510 +0.913195 +0.689100 +-1.791809 +0.851737 +0.989258 +0.913152 +0.718647 +0.734379 +0.950612 +0.876646 +0.957687 +0.474509 +0.953910 +0.625165 +0.762586 +0.990142 +0.349401 +0.906536 +0.953852 +0.918668 +0.514711 +0.704211 +0.826941 +0.564902 +0.674967 +0.712324 +0.920337 +0.230771 +0.948381 +0.873921 +0.872478 +0.851727 +0.992283 +0.890437 +0.871463 +0.996820 +0.909788 +0.909595 +0.650164 +0.573230 +0.092337 +0.468746 +0.173090 +0.051047 +0.045870 +0.628475 +0.417037 +0.751271 +0.924727 +0.834876 +0.750654 +0.740567 +0.787776 +-81.328951 +0.929460 +0.787132 +-0.117005 +0.840074 +0.867609 +0.749449 +0.554175 +0.915522 +0.985053 +0.891402 +0.892270 +0.967902 +0.556002 +0.974418 +0.090912 +0.955454 +0.918050 +0.885762 +0.808677 +-0.580504 +0.512822 +0.554041 +0.770742 +0.590240 +0.812023 +0.965886 +-0.167467 +0.542853 +0.710679 +0.758282 +0.854380 +0.963133 +0.913727 +0.810121 +0.270211 +0.953085 +0.965770 +0.664192 +0.968696 +0.802412 +0.483100 +0.404028 +0.429779 +0.585597 +0.873231 +0.535166 +0.917019 +0.303790 +0.931282 +0.797548 +0.804220 +0.938066 +0.916162 +0.858132 +0.937095 +0.912463 +0.165460 +0.916442 +0.916147 +0.682456 +0.933129 +0.966644 +0.944015 +0.929580 +0.956577 +0.941434 +0.962129 +0.275026 +0.785603 +0.993780 +0.505435 +0.523031 +0.527392 +0.974616 +0.345584 +0.422522 +0.880261 +0.784127 +0.968988 +0.886067 +0.821028 +0.769503 +0.834377 +0.805772 +0.404905 +0.831573 +0.870576 +0.433435 +0.839187 +0.781290 +0.869484 +0.762629 +0.901804 +0.686162 +0.991289 +0.796496 +0.932652 +0.816425 +0.783788 +0.185908 +0.042815 +0.550427 +0.244015 +0.056581 +0.188840 +0.158464 +0.206441 +0.377745 +0.995189 +0.851023 +0.228605 +0.356251 +0.849287 +-0.047473 +0.087074 +0.243676 +0.024505 +0.150999 +0.857107 +0.772337 +0.171825 +0.938864 +0.952804 +0.594012 +0.436049 +0.432103 +0.931550 +0.024085 +0.984485 +0.511380 +0.239975 +0.810971 +0.887169 +0.371325 +0.261342 +0.820095 +0.351834 +0.430883 +0.531955 +0.463341 +0.194192 +0.873754 +0.981520 +0.932713 +0.058265 +0.929438 +0.780024 +-0.002436 +0.857302 +0.545369 +0.523613 +0.852638 +0.229973 +0.929460 +0.421358 +0.453177 +0.998084 +0.517915 +0.706636 +0.029323 +0.480861 +0.684558 +0.453101 +0.851745 +0.251582 +0.960986 +0.878484 +0.742234 +0.930892 +0.954858 +0.984157 +0.827758 +0.727938 +0.491871 +0.562359 +0.285035 +0.785234 +0.408861 +0.975581 +0.688522 +0.534003 +0.678320 +0.526283 +0.390979 +0.318216 +0.315244 +0.697788 +0.044820 +0.451766 +0.843627 +0.967077 +0.598147 +0.525696 +0.925293 +0.028907 +0.914150 +0.784540 +0.926018 +0.803245 +0.677862 +0.667744 +0.382082 +0.459286 +0.983011 +0.305814 +0.649568 +0.579826 +0.815975 +0.845121 +0.215539 +0.526116 +0.697607 +0.687576 +0.287500 +0.499113 +0.833813 +0.302211 +0.462201 +0.508514 +0.953292 +0.922512 +0.395845 +0.568721 +-0.263529 +0.883194 +0.796771 +0.930900 +0.885623 +0.886855 +0.672502 +-0.361730 +0.849760 +0.689040 +0.623699 +0.125704 +0.242213 +0.196045 +0.211822 +0.665966 +0.157961 +0.539958 +0.442638 +0.560183 +0.705993 +0.798591 +0.859619 +0.990627 +0.476757 +-0.117671 +0.739259 +0.842097 +0.882238 +0.751986 +0.691810 +0.963451 +0.507787 +0.630680 +0.373874 +0.576912 +0.568897 +0.582940 +0.497211 +0.389143 +0.616277 +0.407661 +0.039867 +0.911349 +0.814447 +0.426660 +0.390421 +0.508787 +0.275915 +0.855357 +0.635020 +0.362288 +0.445512 +0.524242 +-17.489232 +0.561089 +0.939008 +0.905624 +0.668197 +0.919490 +0.784167 +0.474414 +0.936697 +0.690040 +0.626618 +0.154439 +0.700953 +0.334137 +0.907591 +0.901931 +0.963956 +0.921553 +0.446765 +0.213847 +-0.935967 +-0.566282 +0.748588 +0.473590 +0.702886 +0.751721 +0.329828 +0.906233 +0.611334 +0.612693 +0.832391 +0.311055 +0.393149 +0.893895 +0.457594 +0.865398 +0.940114 +0.072204 +-0.930162 +0.418500 +0.061997 +0.240807 +0.348260 +0.104638 +0.581735 +0.645529 +0.195339 +0.342537 +0.078775 +0.006283 +0.197534 +0.800511 +0.109707 +-0.170295 +0.259043 +0.557730 +0.469418 +-0.104005 +0.367270 +0.634810 +0.492612 +0.567265 +0.373958 +0.327577 +0.183400 +0.231473 +0.845156 +-24.172989 +0.296309 +0.092369 +0.294831 +0.245098 +0.034578 +0.168914 +0.570754 +0.474505 +0.388969 +0.711291 +0.700144 +0.348600 +-0.126608 +0.912801 +0.860244 +0.358755 +0.470867 +0.731696 +0.876170 +0.847533 +0.458429 +0.995667 +0.368295 +0.008572 +0.815757 +0.407978 +0.463706 +0.579286 +0.123146 +0.325347 +0.386405 +-0.271295 +0.974069 +0.388084 +0.841284 +0.701307 +0.282112 +-0.024471 +0.501370 +0.884259 +0.562161 +0.219453 +0.824199 +0.549129 +0.879790 +0.868019 +0.781534 +0.599321 +0.286974 +0.668632 +0.857960 +0.701887 +0.280450 +-0.402278 +0.465085 +0.867342 +0.395226 +0.892417 +0.594009 +0.874930 +0.298554 +0.504137 +0.617100 +0.475646 +0.123064 +0.500210 +0.993508 +0.967213 +0.429352 +0.792985 +0.245464 +0.727318 +0.779226 +0.418745 +0.513134 +0.843747 +0.793310 +0.941719 +0.783280 +0.227710 +0.786479 +0.546030 +0.491238 +0.537263 +0.476946 +0.925477 +0.242737 +0.939248 +0.918398 +0.773204 +0.243419 +0.776801 +0.833488 +0.462409 +0.109782 +0.801258 +0.390619 +0.181307 +0.543869 +0.216779 +0.051225 +0.202738 +0.446790 +0.777979 +0.681108 +0.433928 +0.920700 +0.681618 +0.946054 +0.911391 +0.236182 +0.679583 +0.712030 +0.936527 +0.448659 +0.757128 +0.692560 +0.918215 +0.767046 +0.725466 +0.412611 +0.585330 +0.137962 +0.663196 +0.932898 +0.909979 +0.738898 +0.382345 +0.322949 +0.776206 +0.925289 +0.755289 +0.564820 +0.318450 +0.707253 +0.361381 +0.415610 +0.694868 +0.368224 +0.436498 +0.828512 +0.949804 +-0.002953 +0.909796 +0.909498 +0.700533 +0.946696 +0.891790 +0.270524 +0.570904 +0.752729 +0.802647 +0.658341 +0.630514 +0.287186 +0.624185 +0.826018 +-1.183256 +0.790027 +0.785401 +0.899015 +0.807973 +-1.182275 +0.246032 +0.976580 +-0.111798 +0.314740 +-11.433510 +0.313576 +0.226504 +-0.036835 +0.371109 +-0.017510 +0.256081 +0.468406 +0.634738 +0.610855 +0.543257 +0.397678 +-0.001315 +0.310951 +0.111016 +0.297253 +0.503544 +0.492657 +-0.283424 +0.099615 +-11.743614 +0.595222 +0.885566 +0.313814 +0.567109 +0.035993 +0.846376 +0.846376 +0.651703 +0.902152 +0.344810 +0.902550 +0.391816 +0.769055 +0.699776 +0.848657 +-0.304875 +0.855012 +0.739594 +0.920633 +0.938022 +0.933062 +0.729652 +0.554559 +0.436863 +0.803396 +-0.244509 +0.932429 +0.392250 +0.315185 +0.579542 +0.267920 +0.758615 +0.851498 +0.629619 +0.857225 +0.840986 +0.797265 +0.915544 +0.902477 +0.535883 +0.215231 +0.085257 +0.878102 +0.969277 +0.794746 +0.375108 +0.846376 +0.586200 +-0.354508 +0.634616 +0.779923 +0.184537 +0.634947 +0.710180 +0.082609 +0.615210 +-0.459769 +0.984453 +-0.455867 +0.730313 +0.331804 +0.251502 +0.428608 +0.597533 +0.030146 +0.647849 +0.470503 +0.157296 +0.928347 +0.432271 +0.748386 +0.337060 +0.641267 +0.223176 +-0.049879 +0.490618 +-0.164669 +0.579167 +0.396123 +-0.745063 +0.661500 +0.503637 +0.239676 +0.982289 +0.366706 +0.020339 +0.601960 +0.811448 +0.380077 +0.220785 +0.572065 +0.046873 +0.773481 +0.845426 +0.906688 +0.642623 +0.839084 +0.971464 +0.902638 +0.913289 +0.390247 +0.921124 +0.927826 +0.952294 +0.836154 +0.868194 +0.522654 +0.774143 +0.663081 +0.236449 +0.234160 +0.417235 +0.558017 +-0.190916 +0.020599 +0.321051 +-0.199193 +0.430108 +0.077586 +0.618630 +0.924897 +0.298350 +0.994142 +-0.244429 +0.710648 +0.932828 +0.765611 +0.097771 +-0.001005 +0.448492 +0.296144 +0.747346 +0.815421 +0.100240 +0.169290 +0.230747 +0.641412 +0.680053 +0.827048 +0.388463 +0.870420 +0.622631 +0.773480 +0.607752 +0.530162 +0.958056 +0.255879 +0.697950 +0.162510 +0.653951 +0.148793 +0.542818 +0.537311 +-1.168029 +0.269709 +-0.156187 +0.861508 +0.821173 +0.035685 +0.925468 +0.766616 +0.698654 +0.657886 +0.942086 +0.934820 +0.873735 +-0.396451 +0.576461 +-2.030197 +0.375005 +0.883583 +0.507320 +0.910640 +-0.023117 +0.815106 +0.682114 +0.433247 +0.755654 +0.782828 +0.844661 +0.375264 +0.546128 +0.078620 +0.769012 +0.855552 +0.608970 +0.692289 +0.716389 +0.461804 +0.904847 +-0.749548 +0.888226 +0.922587 +0.588568 +0.885623 +0.766486 +0.883982 +0.985908 +0.417472 +0.714320 +0.597344 +0.928379 +0.572778 +-0.110075 +0.422285 +0.427498 +0.679786 +0.665065 +0.250997 +0.831896 +0.737330 +0.916263 +0.905753 +0.870195 +0.907960 +0.142953 +0.933023 +0.932460 +0.874543 +0.926540 +0.828983 +0.783845 +0.566907 +0.835043 +0.830207 +0.193743 +0.932993 +0.990906 +0.773740 +0.929831 +0.760950 +0.733829 +0.843951 +0.916607 +0.931554 +0.886511 +0.577404 +0.761390 +0.795206 +0.743633 +0.706544 +0.776083 +0.745631 +0.181606 +0.140134 +0.707017 +0.726244 +0.699556 +0.712790 +0.655119 +0.767127 +0.710517 +0.508449 +0.992387 +0.751370 +0.929551 +0.897762 +0.936420 +0.949044 +0.834233 +0.427005 +0.509905 +0.852534 +0.631909 +0.873619 +-0.316198 +0.975289 +0.466801 +0.644145 +0.759406 +0.864739 +0.701266 +0.674777 +0.905927 +0.245495 +0.972992 +-0.187457 +0.926244 +0.633111 +-0.169524 +0.924189 +0.931863 +0.960734 +0.641225 +0.533119 +0.847537 +0.807370 +0.781878 +0.566746 +0.808906 +0.822174 +0.393752 +0.848370 +-1.033185 +0.036920 +0.598732 +0.492478 +0.437618 +0.418522 +0.534799 +0.492473 +0.492473 +0.534797 +0.503328 +0.492451 +0.492451 +0.390052 +0.267312 +-0.285256 +0.129495 +0.661815 +0.476159 +-0.024315 +0.056063 +0.537767 +0.941817 +0.932326 +0.757454 +0.804544 +0.600957 +-0.341946 +0.791470 +0.886509 +0.371956 +0.177689 +0.626555 +0.191508 +0.363795 +0.934727 +0.830621 +0.889905 +0.903879 +0.482228 +0.312085 +0.478519 +0.075368 +0.984307 +0.716945 +0.017013 +0.648212 +0.383089 +0.517135 +0.254840 +0.316650 +0.918232 +0.328206 +0.863040 +-51.501354 +-0.128411 +0.652611 +0.047839 +0.809006 +0.863928 +0.065754 +0.553342 +0.233170 +0.634297 +0.368798 +0.773050 +0.273423 +0.764208 +0.155608 +0.331111 +0.452893 +0.242310 +0.340408 +0.266649 +0.387749 +0.719486 +0.944761 +0.860105 +0.932116 +0.217032 +0.220090 +0.948694 +0.068369 +0.919249 +0.913140 +0.741928 +0.970292 +0.900676 +0.923584 +0.920339 +0.918747 +0.922025 +0.734306 +0.778643 +0.252684 +0.826100 +0.854983 +0.109768 +0.817139 +0.804742 +0.357461 +0.615621 +0.818497 +0.187339 +-0.756096 +0.676965 +0.519715 +0.696514 +-0.089924 +-0.175713 +0.712222 +0.755501 +0.793141 +0.582467 +0.837288 +0.583546 +0.766908 +0.348221 +0.600552 +0.956009 +-0.186362 +0.746862 +-0.099323 +0.378388 +0.770891 +0.809766 +0.516238 +0.508414 +-0.249435 +0.165302 +-0.286594 +0.843916 +-2.703538 +-0.313424 +-0.251230 +0.912857 +-0.013136 +0.862417 +0.490602 +0.721787 +0.915799 +0.931964 +0.485039 +0.234688 +-0.334925 +-0.108878 +0.652006 +0.880260 +0.838014 +-0.243580 +-0.501890 +0.238725 +0.756495 +0.864327 +0.820230 +0.751851 +0.874874 +0.583881 +0.684509 +-0.259180 +-0.058923 +0.886005 +0.552770 +0.825539 +0.819580 +0.931493 +0.555612 +0.266673 +-0.062462 +0.477600 +0.202198 +-0.448259 +0.431652 +0.067261 +0.900461 +0.491722 +0.889728 +-0.298389 +0.214483 +0.903909 +0.603585 +-0.576327 +-0.251094 +0.375625 +-0.385116 +0.909015 +0.877047 +0.564288 +0.883294 +0.682114 +0.585591 +0.986728 +0.897949 +0.916657 +0.755425 +0.950731 +0.324865 +0.499481 +0.882769 +0.563579 +0.516268 +0.835225 +0.597174 +0.844007 +0.732040 +0.670306 +0.882558 +0.792152 +0.925554 +0.197203 +0.755137 +0.613428 +0.841830 +0.363197 +0.759345 +0.933016 +0.985707 +0.841829 +0.863804 +0.504936 +0.887528 +0.083246 +0.779042 +0.830697 +0.541357 +0.952001 +0.980409 +0.778702 +0.741515 +0.693399 +0.851379 +0.871954 +0.575336 +0.760745 +0.932505 +0.889054 +0.823186 +0.879022 +0.788092 +0.876945 +0.785226 +0.341652 +0.733251 +0.840234 +0.986806 +0.789079 +0.896244 +0.077223 +0.954656 +-860.371900 +-0.218351 +0.950868 +0.614760 +0.880773 +0.571036 +0.786833 +0.670140 +0.428058 +0.952351 +0.714203 +-0.122137 +0.483418 +0.444580 +0.764831 +0.560633 +0.797495 +0.282718 +0.613824 +-0.252873 +0.694215 +0.422627 +0.036339 +0.882711 +0.597647 +0.253854 +-0.072323 +0.406260 +-0.170187 +0.076479 +0.896968 +0.982769 +0.130310 +0.632626 +0.545453 +0.456976 +0.716161 +0.714936 +0.293604 +0.589539 +-0.835419 +0.572491 +0.575526 +0.763791 +0.394619 +0.744492 +0.599626 +0.662202 +0.425692 +0.595934 +0.682460 +0.616190 +0.554820 +0.121109 +0.457089 +0.661197 +0.925710 +0.647708 +0.763585 +0.760207 +0.163826 +0.470783 +0.821387 +0.945797 +0.880559 +0.920984 +0.787143 +0.212493 +0.793785 +-0.104950 +0.542055 +0.884645 +0.768828 +-0.256715 +0.751244 +0.555849 +0.118183 +0.876423 +0.715771 +0.575313 +0.672838 +-0.225498 +0.794126 +0.604859 +0.592391 +0.851386 +0.726926 +0.353747 +0.529929 +-0.805229 +0.654277 +0.247157 +0.691775 +0.662342 +0.474813 +0.676845 +0.525513 +-0.065108 +-0.321089 +0.797569 +0.549123 +0.732675 +0.276334 +0.735320 +0.995387 +0.920306 +0.742822 +0.741829 +0.436943 +0.944718 +0.985848 +0.712892 +-0.064423 +0.908534 +0.202708 +0.491045 +-0.090684 +-0.160919 +0.780926 +0.611616 +0.997639 +0.933086 +0.300950 +-0.013446 +0.643504 +0.518150 +-0.174341 +0.928512 +0.651531 +0.930704 +-0.106924 +0.459975 +0.813589 +0.789309 +0.907121 +0.850005 +0.782510 +0.618085 +0.380236 +0.873423 +0.757313 +0.738236 +0.705006 +0.645503 +0.726732 +-1.340214 +0.810881 +0.335513 +0.334461 +0.297219 +0.580855 +0.870741 +-4.816733 +0.822432 +0.855949 +0.774844 +0.672255 +0.559251 +0.914740 +-0.079469 +0.607204 +0.450671 +0.862037 +0.908537 +0.923269 +0.653842 +0.649624 +0.789880 +0.789446 +0.764854 +0.661717 +0.903901 +0.946794 +0.678659 +0.129229 +0.674136 +0.613471 +-0.067764 +-0.120819 +0.590665 +0.980368 +-0.236550 +0.801035 +0.657790 +0.628506 +0.885830 +0.002659 +-0.160738 +0.969271 +0.896979 +0.447606 +0.797688 +0.643454 +0.910587 +0.579121 +0.933306 +0.867411 +-0.144999 +0.764932 +0.942751 +0.897802 +0.909832 +0.798411 +0.672844 +0.938776 +0.825873 +0.646519 +0.602990 +0.883505 +0.812533 +0.708836 +0.838744 +0.697823 +0.739829 +0.909835 +0.886845 +0.915721 +0.559054 +0.380874 +0.833830 +0.764867 +0.772496 +0.967414 +0.339756 +0.579742 +0.555399 +0.048740 +0.481476 +0.529296 +0.488533 +0.435501 +0.338923 +0.807630 +-0.197115 +0.370498 +0.790549 +0.813120 +-0.118865 +0.494487 +0.717142 +-0.044072 +0.473137 +-0.047438 +-0.004989 +0.346512 +0.228091 +0.438466 +0.283000 +0.121323 +0.724947 +-0.280057 +0.630455 +-0.228831 +0.537670 +0.819393 +0.537583 +0.437557 +-0.004995 +0.279770 +-0.038060 +0.062863 +0.281580 +0.802824 +-0.164668 +0.140454 +0.418149 +0.698500 +0.809679 +0.686847 +0.898218 +0.764352 +0.890934 +0.928847 +0.934292 +0.756091 +0.120604 +0.901832 +0.835653 +0.693650 +0.753441 +0.811341 +0.932989 +0.373007 +0.775452 +0.702705 +0.370579 +0.654481 +0.953019 +0.564563 +0.933406 +0.792332 +0.856421 +0.797480 +0.791877 +0.389855 +0.411433 +0.107728 +0.417397 +0.315010 +-0.123144 +0.596145 +0.805701 +0.408832 +0.843157 +0.534779 +0.335012 +0.484910 +0.186375 +0.715279 +0.161752 +0.175959 +0.659828 +0.626030 +0.347783 +0.123919 +0.685798 +0.384697 +0.130354 +0.489570 +0.730231 +0.527489 +-0.091905 +-0.066523 +0.654071 +0.262623 +0.933135 +0.984115 +-0.219744 +0.539496 +0.354336 +0.531441 +-0.039007 +0.550291 +0.751524 +0.802612 +0.619815 +0.816259 +0.929243 +-0.188106 +-0.159471 +0.521470 +-0.167068 +-0.148604 +0.444471 +0.930122 +0.683822 +0.739707 +0.930702 +0.642738 +0.775255 +-0.339940 +0.762423 +0.939317 +0.662058 +0.652011 +-0.094970 +0.536706 +0.786706 +-0.493180 +0.518442 +0.941912 +0.918290 +0.586421 +0.262416 +0.397589 +0.277176 +0.499487 +0.709869 +0.418890 +0.705115 +0.049242 +-0.164068 +0.648568 +0.824021 +0.244093 +0.250173 +0.553235 +0.508294 +0.811248 +0.934001 +0.852966 +0.504746 +0.953983 +-0.407364 +0.833877 +0.909010 +0.697331 +0.123453 +0.812315 +0.639049 +0.511419 +0.808131 +0.502274 +-0.244971 +0.820013 +0.557273 +-0.013193 +-0.308716 +0.931248 +-0.139656 +0.251549 +0.716695 +0.763226 +0.575813 +-0.252784 +-0.246773 +-0.482431 +0.927662 +0.817235 +0.944220 +0.200674 +0.619977 +0.608110 +0.421450 +-0.111946 +0.090933 +0.430933 +0.426874 +-0.073856 +-0.193269 +0.678693 +0.922494 +0.796661 +0.649430 +0.764968 +0.838554 +0.724623 +0.513168 +0.662257 +0.697948 +0.840292 +0.862530 +-0.222061 +0.792936 +0.812261 +0.726783 +0.721064 +0.926075 +0.585650 +0.804508 +0.722096 +0.645146 +0.074269 +0.728705 +0.334571 +-0.231328 +0.077630 +0.356689 +0.244556 +0.931440 +0.393538 +0.934022 +0.651084 +0.798731 +0.564811 +-0.158458 +0.737946 +0.859415 +0.939405 +0.788201 +0.898014 +-0.131785 +0.512596 +0.517993 +-0.158102 +0.668874 +0.171018 +0.722589 +0.131026 +0.351412 +0.486435 +0.845260 +0.162614 +0.293000 +0.354596 +0.497128 +-1.308529 +-0.031788 +0.651462 +0.213461 +-0.203682 +0.781042 +0.349632 +0.681596 +0.430163 +-0.162756 +0.212991 +-0.243676 +0.595491 +0.932293 +0.647982 +0.612289 +0.806048 +0.277506 +0.598029 +0.009734 +0.572428 +-0.028613 +0.699592 +0.741301 +0.064854 +0.758835 +0.417292 +0.503928 +0.849308 +0.911663 +0.961237 +0.364675 +0.272308 +0.545648 +0.497248 +0.621652 +0.218417 +0.474081 +0.924519 +0.644741 +0.948672 +0.412597 +0.918501 +0.919627 +0.698470 +0.874574 +0.741619 +0.901088 +0.916712 +0.900222 +0.873606 +0.844327 +0.919176 +0.323078 +0.964390 +0.882467 +0.723664 +0.859359 +0.799452 +0.579165 +0.355821 +0.739161 +0.715418 +0.716998 +0.696782 +0.673919 +0.680530 +0.668164 +0.438755 +0.553905 +0.495127 +0.358796 +0.702037 +0.570119 +0.568220 +0.986480 +0.986520 +0.642165 +0.381060 +0.057323 +0.924044 +0.760510 +0.055371 +0.333416 +0.951405 +0.944633 +0.782840 +0.477308 +0.620404 +0.878271 +0.869223 +0.850257 +0.817073 +0.396776 +0.277969 +0.942237 +0.946120 +0.777689 +0.627991 +0.246195 +0.922578 +0.335049 +0.700319 +0.885335 +0.575811 +0.273646 +-1.050300 +0.398939 +0.641096 +0.810551 +0.903770 +0.275848 +0.507048 +0.660404 +0.508529 +0.127457 +0.315335 +0.298818 +0.032653 +0.346926 +0.860678 +0.644982 +0.747114 +0.346876 +0.933366 +0.629525 +0.583447 +0.854594 +0.320521 +0.804190 +0.772240 +0.810772 +0.700986 +0.540055 +0.332296 +0.362201 +0.855260 +0.745476 +0.209417 +0.784881 +0.689397 +0.901226 +0.040644 +0.459776 +0.869041 +0.710168 +0.332905 +0.459436 +0.036257 +0.711995 +0.944807 +0.617080 +0.998561 +0.455350 +0.797181 +0.952207 +0.922520 +0.931197 +0.851420 +0.904766 +0.590715 +0.936829 +-2149.638589 +0.431784 +-356.760317 +0.580834 +0.347395 +0.242886 +0.579890 +0.532934 +0.439367 +0.682989 +0.907796 +0.915313 +0.658515 +0.427304 +0.651898 +0.537584 +0.920388 +0.775650 +0.586009 +0.703892 +0.752759 +0.719356 +0.797798 +0.834129 +0.967179 +0.395060 +0.594329 +0.702168 +0.655977 +0.654725 +0.508856 +0.038057 +0.109464 +0.154401 +0.273819 +-0.035821 +-0.094845 +-0.077073 +0.202710 +0.850910 +0.305425 +-0.177802 +-0.035669 +0.135748 +0.249140 +0.190851 +0.279393 +0.168180 +0.628440 +0.205901 +0.520151 +0.756960 +0.612276 +0.116066 +0.131032 +0.851657 +0.666265 +0.512443 +0.385689 +0.566075 +0.683306 +0.822577 +0.643491 +0.782879 +0.905983 +0.480762 +0.674567 +0.837477 +0.828167 +0.736713 +0.892608 +-0.192840 +0.153543 +0.126331 +-2.129210 +0.649276 +0.331186 +0.710617 +0.636065 +0.757641 +0.766825 +-0.758476 +0.878013 +0.827363 +0.955216 +0.890992 +0.812713 +0.911716 +0.827364 +0.879365 +0.936639 +0.834815 +0.997965 +0.729560 +0.668585 +0.834180 +0.416809 +0.966497 +0.919658 +0.907059 +0.716938 +0.930430 +0.118637 +0.454696 +0.217023 +0.936584 +0.809547 +0.421123 +0.411991 +0.961085 +0.825418 +0.926904 +0.005532 +0.926794 +0.777189 +0.624703 +0.830722 +0.818915 +0.652727 +0.721885 +0.961575 +0.924043 +0.769431 +0.672603 +0.570851 +0.751435 +0.700540 +0.787431 +0.265451 +0.750984 +0.551605 +0.608494 +0.369274 +0.703303 +0.752450 +0.550537 +0.773621 +0.606339 +0.737633 +0.572866 +0.732483 +0.753882 +0.711565 +0.390114 +0.749582 +0.180078 +0.703114 +-28.653431 +0.733215 +-29.431552 +0.822039 +0.675015 +0.473740 +0.987307 +0.877218 +0.873730 +0.885812 +0.935609 +0.717287 +0.631682 +0.293949 +0.187375 +0.696801 +0.355986 +0.182173 +0.258461 +0.973298 +0.686107 +0.992345 +-0.218436 +-0.195815 +0.842383 +0.876807 +0.659841 +0.836014 +0.859278 +0.595492 +0.613226 +0.621936 +0.439173 +0.843259 +0.832989 +0.734663 +0.966229 +0.789146 +0.875813 +0.875598 +0.723487 +0.492763 +0.542551 +0.902811 +0.395169 +0.083043 +0.188973 +0.226325 +0.465134 +-0.777950 +0.322114 +0.998238 +0.898369 +0.191226 +0.135975 +0.228054 +0.356894 +0.111765 +0.250166 +0.875121 +0.482210 +0.568193 +0.158830 +0.902390 +-1.173852 +0.062935 +0.067952 +0.329295 +0.035748 +0.158166 +-0.030864 +-0.026191 +0.912396 +0.757328 +0.807408 +0.377755 +0.276809 +0.544627 +0.993200 +0.993891 +0.763546 +0.580979 +0.966899 +0.042317 +0.266776 +0.100585 +0.055513 +0.358014 +0.137830 +0.763946 +0.628401 +0.330007 +0.889899 +0.930989 +0.960377 +0.858604 +0.626569 +0.403030 +0.739293 +0.608415 +0.023391 +0.812023 +0.579930 +0.787468 +0.524455 +0.934415 +0.834166 +0.878733 +0.351323 +0.717301 +0.874145 +0.626456 +0.846048 +0.853981 +0.232510 +0.883713 +0.550564 +0.981406 +0.698313 +0.732818 +0.817221 +0.704395 +0.614092 +0.833166 +0.769998 +0.268130 +0.447460 +0.389393 +0.513394 +0.394677 +-0.438672 +0.526008 +-0.334055 +0.862204 +0.222813 +0.009153 +0.357564 +0.893471 +-2.595569 +0.257740 +0.554073 +0.358396 +0.130054 +0.990773 +0.835096 +-0.064161 +0.802159 +-0.117593 +0.834743 +0.536038 +0.997449 +0.191494 +0.205852 +0.141868 +0.173819 +0.123482 +0.400994 +0.575413 +0.107640 +0.558346 +-1.026541 +0.331538 +0.839128 +0.841122 +0.231520 +0.528671 +0.077787 +0.698465 +0.453386 +0.937730 +0.481154 +0.838591 +0.783105 +0.520952 +0.791231 +0.704398 +0.921627 +0.864355 +0.623611 +-3.264127 +0.968728 +0.940966 +0.760006 +0.900266 +0.572646 +0.327573 +-0.122339 +0.819190 +-59.962315 +0.817697 +0.861400 +0.680074 +0.765844 +0.643536 +0.738395 +0.629748 +0.736523 +0.846369 +0.945328 +0.792046 +0.948179 +0.596058 +0.806330 +0.574102 +0.915225 +0.925579 +0.802792 +0.131560 +0.828097 +0.425315 +0.409670 +0.330175 +0.555947 +0.612453 +0.765224 +0.210954 +0.122515 +0.622149 +0.925162 +0.917780 +0.723751 +0.872193 +0.223158 +0.893133 +0.881931 +0.424983 +0.892562 +0.411518 +0.935741 +0.821098 +0.175593 +0.392131 +0.952908 +0.025528 +0.837242 +0.388717 +0.879736 +0.841152 +0.288054 +0.845559 +0.593815 +0.315124 +0.830346 +0.696453 +-0.038380 +0.842937 +0.846680 +0.609690 +0.415760 +0.954797 +0.852215 +0.871097 +0.936641 +0.983153 +0.784746 +0.345694 +0.605337 +0.497547 +0.201060 +0.742716 +0.432337 +0.389051 +0.162279 +0.211920 +0.322561 +0.458631 +0.732387 +0.749659 +0.952800 +0.327755 +0.914902 +0.709023 +0.388873 +0.430193 +0.555108 +0.943538 +0.968643 +0.908544 +0.318979 +0.793096 +0.960515 +0.933473 +0.949882 +0.617228 +0.964607 +0.126260 +0.029439 +0.932151 +0.421647 +-117.905040 +0.698344 +0.431799 +0.030477 +0.965595 +0.490887 +0.604735 +0.448534 +0.604617 +-0.046806 +0.579347 +0.957443 +0.857756 +0.620898 +0.579355 +0.435469 +0.830591 +0.874311 +0.898177 +0.746092 +0.922699 +0.933094 +-0.072777 +0.987589 +0.954593 +0.852418 +0.604573 +0.873482 +0.925666 +0.876715 +0.089643 +0.852765 +0.983262 +0.433083 +0.822386 +0.519717 +0.940785 +0.703805 +0.609043 +0.971142 +0.729603 +0.239937 +0.922008 +0.826012 +0.852156 +0.518033 +0.912788 +0.804127 +0.891866 +0.320200 +0.357099 +0.952758 +0.805263 +0.330040 +0.384563 +0.143110 +0.411648 +0.382757 +0.795322 +0.967520 +0.193240 +0.821643 +0.106189 +0.675841 +0.722735 +0.131495 +0.488773 +0.402523 +0.685874 +0.116639 +0.020266 +0.365962 +0.189260 +0.174943 +0.636858 +0.171844 +0.640975 +0.233895 +0.743689 +0.936063 +0.565892 +0.156783 +0.842432 +0.849739 +0.385769 +0.260676 +0.018607 +0.097973 +0.580675 +0.091429 +0.015605 +0.314086 +-12.006917 +0.012260 +0.616935 +0.516143 +0.620026 +0.391999 +0.626497 +0.033977 +0.105347 +0.705277 +0.141483 +0.428192 +0.162028 +0.502465 +0.120659 +0.194497 +0.992948 +0.047270 +0.714944 +-0.032717 +-0.076256 +0.458932 +0.119304 +0.910686 +0.519521 +0.687162 +0.193138 +0.399889 +0.943146 +0.202562 +0.581731 +-0.843277 +0.773782 +0.646251 +0.455100 +0.417877 +0.683584 +0.342860 +0.500565 +-0.050316 +0.649302 +0.690085 +0.622277 +0.732310 +0.601870 +0.749963 +0.872578 +0.553256 +0.480727 +0.956499 +0.728232 +0.506238 +0.472305 +0.939307 +0.369092 +0.786678 +0.878641 +0.689446 +0.957271 +0.524802 +0.427107 +0.544974 +0.971060 +0.964582 +0.158529 +0.519393 +0.430030 +0.259424 +0.733190 +0.432905 +0.743227 +0.383124 +-0.004462 +0.705931 +0.575009 +0.471525 +0.471223 +0.710840 +0.296572 +0.421945 +0.950407 +0.562064 +0.838545 +0.563439 +0.655153 +0.377614 +0.905555 +0.953871 +0.252819 +0.761692 +0.392670 +0.529825 +0.538352 +0.485738 +0.570903 +0.448284 +0.565661 +0.772575 +0.727320 +0.203085 +0.757732 +0.958878 +0.695937 +0.820551 +0.239906 +0.572857 +0.932376 +0.773029 +0.258882 +0.243609 +0.641000 +0.085724 +0.065425 +0.287078 +0.867857 +0.351742 +0.522821 +0.519751 +0.933006 +0.474169 +0.603697 +0.189161 +0.469224 +0.179842 +0.819558 +0.707534 +0.182549 +0.292676 +0.319025 +0.332781 +0.759420 +0.000440 +-0.185157 +0.107587 +0.181033 +0.361644 +0.590859 +0.662109 +0.374538 +0.675743 +0.244230 +0.821857 +0.219807 +0.197951 +0.860802 +0.170733 +0.628623 +0.558560 +-4.787610 +0.109666 +0.200837 +0.886044 +0.010867 +0.847592 +0.340165 +0.267742 +0.366485 +-0.124437 +0.332019 +0.316647 +0.543992 +0.254692 +0.592126 +0.805164 +0.470820 +0.985343 +0.044805 +0.417020 +0.770547 +0.070041 +0.037171 +0.361612 +-0.345280 +0.923056 +0.917592 +0.290798 +0.932692 +0.943530 +0.918522 +0.973701 +0.873274 +0.934126 +0.934213 +0.934178 +0.473942 +0.276912 +0.583518 +0.933922 +0.631696 +0.296003 +0.458316 +0.926721 +0.760010 +0.183647 +0.918925 +0.858569 +0.194461 +0.555240 +0.446418 +0.289698 +0.587130 +0.028980 +0.189683 +0.272003 +-0.064687 +0.000761 +0.411233 +0.659481 +0.262723 +0.341220 +-574.009361 +0.261097 +0.521133 +0.339453 +0.739071 +0.274655 +0.245299 +0.644722 +0.313236 +0.405642 +-2.718914 +0.255301 +0.179321 +0.129851 +0.416327 +0.383045 +0.416363 +0.274791 +0.966934 +0.249853 +0.758638 +0.233044 +0.533411 +0.133603 +0.728766 +0.419295 +0.782397 +0.639106 +0.232212 +0.062747 +0.215067 +0.884962 +0.055727 +0.253089 +0.477292 +0.992462 +0.174986 +0.011736 +0.464033 +0.610329 +0.228886 +0.971182 +0.855085 +0.693006 +0.926952 +0.852007 +0.785687 +0.353700 +0.442656 +0.828013 +0.698880 +0.433529 +0.422130 +0.442533 +0.499265 +0.478625 +0.239074 +0.817891 +-50745.055649 +0.535534 +0.264119 +0.543027 +0.543179 +0.345672 +0.570330 +0.824487 +0.772106 +0.613085 +0.603310 +0.554054 +0.831324 +0.601255 +0.283510 +0.777520 +0.955468 +0.895691 +0.768517 +0.700568 +0.636026 +0.730751 +0.921088 +0.247557 +0.927129 +0.340818 +0.734639 +0.763145 +0.735228 +0.427119 +0.142351 +0.903723 +0.974659 +0.651076 +-0.486042 +0.911943 +0.921708 +0.860513 +0.860952 +0.486304 +0.733414 +0.871793 +0.678472 +0.656109 +0.649814 +0.085491 +0.926437 +0.741616 +0.914823 +0.869173 +0.810706 +0.589907 +0.521920 +0.758485 +0.117075 +0.825236 +0.944814 +0.482832 +0.501419 +0.567764 +-0.291244 +-0.301323 +0.900272 +0.265898 +0.289146 +0.840614 +0.958472 +0.944895 +0.854664 +0.857106 +0.634542 +0.821015 +0.949430 +0.761195 +0.548384 +0.222201 +0.416476 +0.878574 +0.950521 +0.643336 +0.001052 +0.444301 +0.552111 +0.050666 +0.541485 +0.277926 +0.281407 +0.662548 +0.520904 +0.897189 +0.980775 +0.900004 +0.970571 +0.851568 +0.577985 +-0.025855 +0.887780 +0.748658 +0.865316 +0.851112 +0.762057 +0.361333 +0.629944 +0.477133 +0.339424 +0.789730 +0.359868 +-0.199834 +0.762710 +0.110639 +0.536923 +0.470315 +0.363490 +0.259058 +0.882301 +0.389086 +0.320988 +0.462475 +0.294667 +0.301357 +0.415279 +0.939118 +0.862336 +0.601669 +0.742243 +0.534438 +0.460046 +0.316136 +0.262905 +0.798247 +0.996665 +0.940558 +0.299734 +0.829753 +0.501655 +0.894308 +0.648894 +0.515023 +0.438511 +0.268670 +-0.669822 +0.348272 +0.691117 +0.333690 +0.908209 +0.364860 +-0.919230 +0.538795 +0.667859 +-0.107704 +0.878972 +0.370607 +0.461080 +0.902324 +0.979161 +0.897503 +0.933060 +0.740808 +0.921457 +0.901578 +0.924420 +0.457688 +0.697928 +0.717521 +0.829099 +-0.170275 +0.666994 +-0.100435 +0.697477 +0.651737 +0.348870 +-0.591163 +0.421307 +-0.355185 +-0.293014 +0.004734 +0.470893 +0.632551 +0.563886 +0.929671 +-148.859866 +0.719567 +-5.701560 +0.218492 +0.337486 +-2.194833 +0.830083 +0.453762 +0.277860 +0.684513 +0.890187 +0.920641 +0.858184 +0.979321 +0.943145 +0.824295 +0.967559 +0.698386 +0.742299 +0.697512 +0.857753 +0.606826 +0.910929 +0.936147 +0.895488 +0.780420 +0.945229 +0.874517 +0.871611 +0.527992 +0.486215 +0.706242 +0.848652 +0.874695 +0.942861 +0.929401 +0.956737 +0.812825 +0.828574 +0.981868 +0.765476 +0.923359 +0.772749 +0.674079 +0.827052 +0.963243 +0.825779 +0.928044 +0.951965 +0.849891 +-6.057875 +0.650730 +0.457115 +0.973602 +0.605054 +0.924520 +0.407681 +0.407681 +0.981301 +0.907942 +0.935957 +0.918628 +0.970305 +0.699971 +0.848331 +0.927207 +0.842308 +0.933396 +0.301737 +0.920482 +0.924498 +0.927859 +0.827479 +0.920438 +0.930248 +0.981915 +0.928996 +0.618162 +0.665829 +0.910164 +0.883774 +0.950740 +0.408125 +0.407236 +0.807769 +0.931134 +0.919529 +0.513797 +0.768812 +0.753504 +0.633951 +0.785378 +0.934990 +0.048821 +0.725825 +0.710811 +0.888175 +0.662507 +0.720944 +-0.407031 +0.986319 +0.982587 +0.934890 +0.645225 +0.754357 +0.666107 +0.421189 +0.977802 +0.633777 +0.434880 +0.826182 +0.992160 +0.642428 +0.796556 +0.958868 +0.894809 +0.997074 +0.554999 +0.867876 +0.451191 +0.702124 +0.461692 +0.454241 +0.300548 +0.037360 +-0.007464 +0.603452 +0.232046 +0.992277 +0.871120 +0.600024 +0.240313 +0.910322 +0.795093 +0.812302 +0.512935 +0.533578 +0.449943 +0.441953 +0.647670 +0.879210 +0.562488 +0.876974 +0.660845 +0.238523 +0.376519 +0.244822 +0.309114 +0.208352 +-0.273530 +0.322410 +0.720584 +0.973751 +0.434964 +0.018243 +0.174013 +0.080284 +0.851502 +0.043457 +0.696529 +0.923673 +0.638866 +0.388355 +0.626120 +0.519108 +0.286413 +0.453435 +0.024967 +0.850726 +0.690150 +-0.221281 +0.621023 +0.249929 +0.866781 +-9.764711 +0.343657 +0.326630 +0.926605 +0.826484 +0.731617 +-0.086758 +0.833849 +0.517906 +0.652619 +0.485960 +-0.470935 +0.827719 +0.808769 +0.755723 +0.581235 +0.890722 +0.428193 +0.969874 +0.912975 +-0.227966 +0.633395 +0.743836 +0.500204 +0.737257 +0.866194 +0.849554 +0.398615 +0.388492 +0.911767 +0.930700 +0.634282 +0.124482 +0.936726 +0.758108 +-0.379072 +0.684343 +0.386552 +0.780961 +0.889694 +0.918194 +0.937426 +0.362309 +0.720801 +-0.080018 +0.527381 +0.451338 +0.818960 +0.794305 +0.693843 +0.283005 +0.772256 +0.752983 +0.946080 +0.658153 +0.373791 +0.835127 +0.721113 +0.961137 +0.381450 +0.928748 +0.851969 +0.858996 +-0.584257 +0.710345 +0.740587 +0.843027 +0.307828 +0.774079 +0.944092 +0.671643 +0.915142 +0.976795 +0.755174 +0.915440 +-0.308064 +0.685141 +0.423196 +0.915135 +0.721589 +0.912598 +0.688743 +0.737962 +0.351929 +0.690163 +0.807581 +0.792996 +0.884375 +0.918487 +0.545543 +0.899963 +0.289358 +0.886464 +0.306426 +0.277266 +0.550070 +-3.767873 +0.526473 +0.529575 +0.735428 +-7.326462 +0.534387 +0.646553 +0.400428 +0.346940 +-0.038397 +0.673078 +0.567287 +-0.141733 +0.477711 +0.551997 +0.543180 +0.932906 +0.738626 +0.856334 +0.864920 +0.830561 +0.830314 +0.856134 +0.855469 +0.489466 +0.609942 +0.896718 +0.510733 +0.450974 +0.346587 +0.910270 +0.695773 +-0.166926 +0.783592 +0.104008 +-0.051117 +-0.580220 +0.938854 +0.023146 +0.997407 +0.098773 +0.247145 +-0.401087 +0.521730 +-0.130638 +-1.524209 +0.358756 +-0.018157 +0.270079 +0.911075 +0.206553 +0.076272 +0.282928 +0.816086 +0.614661 +0.829489 +0.675545 +0.183632 +0.178602 +0.204813 +0.370859 +0.779846 +-5.593943 +0.890913 +0.464345 +0.927790 +0.528437 +0.743082 +0.990288 +0.826405 +0.606068 +0.033650 +0.802963 +0.962271 +0.265924 +0.657979 +0.482111 +0.672893 +0.572651 +0.924039 +0.841953 +0.717398 +0.814168 +0.894920 +0.839906 +0.092382 +0.984022 +0.509993 +0.453763 +0.740050 +0.640978 +0.506997 +0.153473 +0.832773 +0.502276 +0.390148 +0.297244 +0.478744 +0.854977 +0.979726 +0.719847 +0.021009 +0.540766 +0.791416 +0.276263 +0.912603 +0.451092 +0.797387 +0.864165 +0.809476 +-0.062237 +0.870888 +0.328484 +0.427327 +0.853981 +0.974438 +0.912232 +0.439910 +0.429215 +0.460730 +0.305538 +0.719580 +0.614952 +0.417858 +0.717286 +0.460697 +0.838449 +0.965803 +0.707738 +0.854464 +0.719435 +0.643300 +-0.039359 +0.958785 +0.873544 +0.867311 +0.711797 +0.778445 +0.389117 +0.517886 +0.490767 +0.797673 +0.803572 +0.446395 +0.948809 +0.019312 +0.986009 +0.726402 +0.545131 +0.920979 +0.719390 +0.513366 +0.602289 +0.527409 +0.108085 +0.719606 +0.902449 +0.335849 +0.478665 +0.697615 +0.748068 +0.861564 +0.857055 +0.406365 +0.446588 +0.679215 +0.903356 +0.908188 +0.576202 +0.664496 +0.845335 +0.854380 +0.661951 +0.172416 +0.633195 +-0.238000 +0.517495 +0.673990 +0.757225 +0.555907 +0.684541 +0.227184 +0.175882 +0.157341 +0.309750 +-0.011842 +0.158962 +0.893746 +-0.006497 +0.068057 +0.547139 +0.431566 +0.068289 +0.762830 +-2.457614 +0.000872 +0.517571 +0.966029 +0.765996 +0.930205 +-0.052099 +0.406562 +0.884640 +-0.274013 +0.748962 +0.598382 +0.546092 +0.540204 +0.558320 +0.670042 +0.947391 +0.962363 +0.581750 +0.814135 +0.773897 +0.562716 +0.929053 +0.763579 +0.763473 +0.753624 +0.972848 +0.770136 +0.518636 +0.932766 +0.467807 +0.727775 +0.466882 +0.508826 +0.907624 +0.937081 +0.795334 +0.925493 +0.524446 +0.462706 +0.455802 +0.540162 +0.982967 +0.490531 +0.918981 +0.452417 +0.466272 +0.699184 +0.880511 +0.360733 +0.823911 +0.960087 +0.926495 +0.598112 +0.492403 +0.921208 +0.926750 +0.299993 +0.709381 +0.936224 +0.484046 +0.467819 +0.919673 +0.962492 +0.264346 +0.725885 +0.456166 +0.939104 +0.994373 +0.555916 +0.568003 +0.570213 +0.589806 +0.868024 +0.532826 +0.968978 +0.568350 +0.333597 +0.495801 +0.374777 +0.479044 +0.478247 +0.950897 +0.245423 +0.542464 +0.651336 +0.295588 +0.538522 +0.981265 +0.861397 +0.399868 +0.934750 +0.363763 +0.901188 +0.955089 +0.964656 +0.993944 +0.891039 +0.885446 +0.957721 +0.325121 +0.197684 +0.709386 +0.286087 +0.434266 +0.733152 +0.686626 +0.813555 +0.463369 +0.364346 +0.956135 +-21.867252 +-0.546335 +0.447895 +0.468074 +0.958795 +0.729754 +0.735188 +0.764859 +0.394336 +0.967220 +0.906628 +0.416946 +0.561384 +0.449508 +0.843870 +0.742491 +0.217174 +0.200871 +0.885446 +0.766525 +0.415885 +0.197374 +0.297895 +0.901749 +0.431044 +0.866387 +0.318722 +0.699825 +0.867440 +0.925319 +0.855839 +0.920322 +0.831671 +0.923629 +0.929570 +0.806228 +0.749950 +0.823023 +0.921131 +0.828566 +0.882799 +0.954839 +0.663635 +0.165470 +0.722967 +0.726532 +0.432976 +0.923671 +0.628803 +0.914726 +0.688056 +0.855552 +0.909626 +0.928891 +0.802233 +0.870286 +0.851513 +0.946582 +0.790745 +0.627080 +0.377545 +0.946213 +0.853975 +0.933835 +0.457057 +0.942435 +0.885481 +0.053255 +0.881910 +0.961530 +0.407727 +0.925820 +0.313360 +0.312402 +0.941085 +0.882676 +0.365708 +0.892110 +0.944129 +0.811127 +0.843271 +0.992573 +0.893932 +0.913225 +0.319199 +0.603247 +0.758119 +0.885441 +0.874337 +0.898064 +0.581099 +0.829601 +0.757829 +0.924061 +0.936334 +0.581356 +0.818253 +0.776320 +0.378043 +0.405501 +0.750121 +0.431827 +0.920664 +0.728543 +0.922660 +0.328418 +0.683745 +-37.477513 +0.955269 +0.928133 +0.336778 +0.599177 +0.185429 +0.476364 +-0.092094 +0.691920 +0.782718 +0.896384 +0.813477 +0.917399 +0.656813 +0.977776 +0.358499 +0.919978 +0.912215 +0.116288 +0.751751 +0.873968 +0.402518 +0.344344 +0.979470 +-0.008546 +0.117164 +0.285267 +0.246316 +0.403115 +0.162265 +0.230440 +-0.074594 +-0.161332 +0.670873 +0.186540 +0.271816 +0.920263 +0.122492 +-0.346666 +0.907999 +0.634281 +0.673366 +0.817703 +0.942918 +0.790106 +0.991319 +0.507902 +0.474925 +0.069742 +-0.158021 +0.528470 +0.265742 +0.324563 +0.389813 +0.254060 +0.625007 +0.373069 +0.898801 +0.159137 +0.594562 +0.149314 +0.225884 +0.372944 +0.518298 +0.622036 +0.369224 +0.664903 +0.181744 +0.820946 +0.251295 +0.302909 +0.775837 +0.955696 +0.798534 +0.693504 +0.811547 +0.336116 +0.461165 +0.103353 +0.865835 +0.887407 +0.672363 +0.412575 +0.845730 +-0.075807 +0.296086 +0.056837 +0.274460 +0.151337 +0.389001 +0.459120 +0.936827 +0.054773 +0.926197 +0.797078 +0.364384 +0.871583 +0.740997 +0.925523 +0.727616 +0.982059 +0.736798 +0.711105 +0.926780 +0.741827 +0.920791 +0.905195 +0.810149 +-0.546435 +0.935175 +0.921208 +0.927537 +0.349221 +0.461638 +0.392973 +0.806378 +0.939368 +0.621827 +0.786759 +-0.339256 +0.959338 +0.884386 +0.684155 +0.989258 +-0.182241 +-0.129495 +0.447070 +0.867455 +0.678124 +0.959300 +0.695451 +0.930331 +0.718079 +0.756312 +0.724314 +0.614949 +0.408363 +0.710063 +0.568115 +0.319468 +0.856532 +0.676173 +0.769414 +0.844442 +0.739451 +0.821154 +0.734951 +0.857646 +0.420791 +0.184640 +0.321546 +0.333228 +0.906746 +0.330080 +0.716658 +0.452426 +0.932670 +0.970286 +0.358940 +0.858139 +0.611428 +0.608684 +0.157678 +0.637760 +0.827824 +0.468156 +0.556498 +0.137832 +0.684463 +0.883389 +0.425545 +0.785141 +0.762178 +0.715384 +0.971022 +0.529517 +0.132629 +0.913071 +0.945255 +0.912504 +0.033386 +0.944832 +0.567872 +0.064355 +0.846707 +0.945194 +0.386164 +0.584464 +0.919971 +0.502371 +0.350941 +0.773252 +0.438150 +0.340495 +0.494933 +0.399173 +0.918615 +0.786040 +0.968109 +0.263713 +0.406635 +0.516639 +0.508857 +0.324784 +0.613052 +0.606958 +0.671318 +0.817195 +-0.116881 +0.408125 +0.989852 +0.392068 +0.740275 +-1.370595 +0.492348 +0.392001 +0.511412 +0.364586 +0.898803 +0.992976 +0.459285 +0.514439 +0.061342 +0.218297 +0.046919 +0.633617 +0.676623 +0.690906 +0.937079 +0.605680 +0.857815 +0.951872 +0.870035 +0.259721 +0.771423 +0.336354 +0.933232 +0.486106 +0.461748 +0.872950 +0.919748 +0.685811 +0.084798 +0.939904 +-17887563514.573097 +0.981236 +0.586875 +0.878058 +0.928694 +0.987970 +0.658401 +0.664845 +0.971822 +0.371539 +0.717067 +0.807409 +0.990912 +0.744902 +0.930820 +0.747221 +0.309817 +0.871611 +0.895406 +0.879749 +0.943682 +0.733651 +0.655617 +0.593335 +0.484568 +0.894982 +0.503350 +0.945872 +0.120998 +0.232845 +0.742583 +0.646357 +0.778315 +0.618833 +-0.519046 +0.843969 +0.769338 +0.761704 +0.464787 +0.713303 +0.669148 +0.723427 +0.415422 +0.379023 +0.847094 +0.282171 +0.081133 +0.579237 +0.579699 +0.638518 +0.714360 +0.612157 +0.576977 +0.735929 +0.710622 +0.428743 +0.571489 +0.385377 +0.436209 +0.611663 +0.879902 +0.020670 +0.974931 +-0.918477 +0.707854 +0.290762 +0.455574 +0.095496 +0.445121 +0.523654 +0.890068 +0.273091 +0.344162 +0.761119 +0.925926 +0.309782 +0.690929 +0.719709 +0.464111 +0.147653 +0.205037 +0.157171 +0.221394 +0.019340 +0.809172 +0.171969 +0.994450 +0.457890 +0.834671 +0.709429 +0.582406 +0.012773 +0.059591 +0.051066 +0.503319 +0.484028 +0.525239 +0.419126 +0.642907 +0.651497 +0.417767 +0.536341 +0.582131 +0.507927 +0.658635 +0.535857 +0.243272 +0.992737 +0.842821 +0.524943 +0.137320 +0.380436 +0.047258 +0.657499 +0.808756 +0.829424 +0.708573 +0.686214 +0.592460 +0.929042 +0.599473 +0.954071 +0.988563 +0.884030 +-0.009746 +0.869465 +0.704967 +0.896770 +0.970982 +0.786384 +0.419263 +0.915124 +0.483163 +0.315751 +0.752193 +0.211185 +0.053246 +0.943816 +0.990784 +0.507426 +0.354903 +0.979708 +0.152806 +0.452241 +0.311208 +0.324257 +0.208693 +0.985864 +0.567443 +0.651690 +-0.172780 +0.780443 +0.498927 +0.399085 +0.625476 +0.595594 +0.736651 +-0.349127 +0.855303 +0.855293 +0.851663 +0.869888 +0.970689 +0.200741 +0.712160 +0.389323 +-0.012431 +0.602550 +0.256981 +0.948612 +0.241516 +0.444046 +-0.059623 +0.084569 +0.817702 +0.262010 +0.630153 +0.837276 +0.206553 +0.342232 +0.319517 +-0.006888 +0.296054 +0.262407 +0.579794 +0.767573 +0.852372 +0.916668 +0.742263 +0.752842 +0.572806 +0.850761 +0.670275 +0.716431 +-0.513262 +0.848480 +0.558040 +0.695385 +0.769686 +0.075880 +0.880492 +0.660914 +0.880742 +0.246636 +0.769575 +0.737466 +0.844337 +0.548507 +0.775990 +0.979460 +-0.160953 +0.716950 +0.804768 +0.229712 +0.308294 +0.443465 +0.839487 +0.362461 +0.762965 +0.198637 +0.110615 +-0.169159 +0.500158 +-0.160506 +-0.084530 +0.696962 +0.835183 +0.672402 +-0.173997 +0.467357 +0.918304 +0.947045 +0.932233 +0.794405 +0.632649 +0.744770 +-0.113223 +0.722870 +0.933576 +-1378.423519 +0.802928 +0.676825 +0.644749 +0.934555 +0.713568 +0.632984 +0.731285 +0.569376 +0.495985 +0.889082 +0.656897 +0.306766 +0.349480 +0.659043 +0.911176 +-0.075724 +0.741115 +0.642166 +0.382452 +0.599771 +0.379947 +0.603574 +0.844502 +0.661975 +0.837877 +0.561368 +0.792268 +0.773149 +0.580898 +-0.223916 +0.818765 +0.633939 +-0.145516 +0.618067 +0.883323 +0.622136 +0.687413 +0.458236 +0.629197 +0.491463 +0.592542 +0.835118 +0.843637 +0.196890 +0.661484 +0.553999 +0.734393 +0.654797 +0.679606 +-2.434031 +-0.106353 +0.005196 +0.540209 +0.510590 +-0.435706 +-0.315412 +0.691109 +0.574191 +0.281218 +-2.546836 +0.645687 +0.479880 +0.594661 +0.877046 +0.808853 +-0.350413 +0.683706 +0.554160 +0.624323 +0.727589 +0.704382 +0.862202 +0.943003 +0.783250 +0.708744 +0.918510 +0.900363 +0.918047 +0.961902 +0.857439 +0.915859 +0.991432 +0.238366 +0.229588 +0.906040 +0.134249 +0.706289 +0.559057 +0.151683 +-2.720254 +0.592298 +0.983212 +0.543364 +0.974655 +0.931026 +0.657837 +0.848212 +0.362427 +-629.654291 +0.947452 +0.492294 +0.432112 +0.442538 +0.677557 +0.915998 +0.879832 +0.658926 +0.390174 +0.853064 +0.958666 +0.904585 +0.913154 +0.286875 +0.964679 +0.932606 +0.851053 +0.850717 +0.896424 +0.869869 +0.466504 +0.838961 +0.929127 +0.633925 +0.832511 +0.356070 +0.931019 +0.927908 +0.880539 +0.932746 +0.235164 +0.930471 +0.912720 +0.753553 +0.909037 +0.790067 +0.113348 +0.800297 +0.932643 +0.718401 +0.864314 +0.950299 +0.930194 +0.862683 +0.894707 +0.786308 +0.429405 +0.394239 +0.926993 +0.586096 +0.844724 +0.755581 +0.897791 +0.834280 +0.935392 +0.957296 +0.977957 +0.869751 +0.934616 +0.981888 +0.374598 +0.812817 +0.750295 +0.831180 +0.829288 +0.616655 +0.788181 +0.749890 +0.931649 +0.941745 +0.690437 +0.812631 +0.487137 +0.506421 +0.737162 +0.892120 +0.256022 +0.034715 +0.873610 +0.547872 +0.599072 +0.556365 +0.656477 +0.482668 +0.896576 +0.839464 +0.382827 +0.824068 +0.881716 +0.960129 +0.952969 +0.708674 +0.795219 +0.682925 +0.563335 +0.780823 +0.918141 +0.466450 +0.255318 +0.931952 +0.849900 +0.873543 +-0.189397 +0.221403 +0.728679 +0.107274 +0.445707 +0.470085 +0.956101 +0.932278 +0.923012 +0.317195 +0.305147 +0.920477 +0.908484 +0.820684 +0.609801 +0.847698 +0.286724 +0.861575 +0.860616 +0.822215 +-0.237302 +0.867357 +0.889343 +0.520228 +0.775792 +0.918126 +0.814078 +0.984883 +0.202354 +0.739200 +0.883745 +0.367279 +0.921258 +0.659092 +0.256946 +0.370787 +0.804416 +0.924549 +0.883638 +0.784671 +0.909602 +-0.027290 +-0.060783 +0.831415 +0.901933 +0.926893 +0.847810 +0.305539 +0.721465 +0.965496 +0.898885 +0.543160 +0.493362 +0.597654 +0.162935 +0.338123 +0.882165 +0.408577 +0.010513 +0.189427 +0.689550 +0.289012 +0.433899 +0.097010 +0.185393 +0.713920 +0.983816 +0.928801 +0.994553 +0.016343 +-0.373412 +0.757710 +0.975727 +-0.007210 +0.631944 +0.817931 +0.539154 +0.779932 +0.375034 +0.548887 +0.303466 +0.495004 +0.923145 +0.450635 +0.806138 +0.483313 +0.879819 +0.245233 +0.344834 +0.534718 +0.376113 +0.271339 +0.428023 +0.325259 +0.857209 +0.985384 +-1.835748 +0.493770 +0.255162 +0.267159 +0.709367 +0.629735 +0.843109 +0.220810 +0.992469 +0.572566 +0.254381 +-1.273257 +0.871593 +0.370967 +0.346125 +0.223203 +-0.789145 +0.859995 +0.649629 +0.620986 +0.582532 +0.690091 +-0.056055 +0.777719 +0.952478 +0.327209 +0.428259 +0.985315 +0.944909 +0.394972 +0.814033 +0.314624 +0.198748 +-1.849205 +0.936401 +0.889976 +0.081810 +0.087825 +0.408061 +0.240723 +0.186476 +-0.287606 +0.529594 +0.352746 +0.410706 +0.808248 +0.822098 +0.919990 +-0.063590 +0.830803 +0.759234 +0.930498 +-0.150925 +0.780085 +0.952587 +0.235799 +0.462906 +0.501020 +0.635892 +0.234371 +-0.216694 +0.626372 +0.721330 +-0.220842 +0.654144 +-0.254634 +-0.208944 +0.474809 +0.930577 +0.869836 +0.778622 +0.013702 +0.578637 +0.934127 +0.156557 +0.678981 +0.188895 +0.099554 +0.415189 +0.170256 +0.263066 +0.427939 +0.519574 +0.693921 +0.358652 +0.055259 +0.159471 +0.617172 +0.497401 +-0.029232 +0.169380 +0.119824 +0.261189 +0.223176 +0.162955 +0.081113 +-3.423246 +0.180719 +0.032287 +0.300706 +0.440661 +0.319442 +0.070344 +0.319811 +0.519976 +0.618269 +0.646577 +0.969632 +0.338209 +0.994686 +0.975325 +0.973848 +0.992491 +0.883906 +-7.793915 +0.379294 +0.960145 +0.201878 +0.128611 +0.397888 +0.695147 +0.410758 +0.222293 +0.042327 +0.044472 +0.165518 +0.131815 +0.131815 +0.081293 +0.113050 +0.242959 +0.939006 +0.387526 +0.960521 +0.062434 +-0.425088 +0.074438 +0.027390 +0.777082 +0.527548 +0.838464 +0.720628 +0.455704 +0.256822 +0.755588 +0.986066 +0.894350 +0.769996 +0.697702 +0.927981 +0.922610 +0.456017 +-0.132061 +0.856247 +0.973705 +0.822920 +0.932132 +0.753141 +0.819872 +0.599417 +0.912261 +0.971882 +0.884022 +0.042757 +-504.432064 +0.970281 +0.274580 +0.719606 +0.986684 +0.854201 +0.395948 +0.785165 +0.942060 +0.855839 +0.851119 +0.921591 +0.776174 +0.471199 +0.843056 +0.819593 +0.874945 +0.555003 +0.913269 +0.693759 +0.308380 +0.383141 +0.651644 +0.932600 +0.676069 +0.749666 +0.941751 +0.329708 +0.881819 +0.543922 +0.937712 +0.748145 +0.918841 +0.200871 +0.939265 +0.115571 +0.882449 +0.417030 +0.882592 +0.876241 +0.417626 +0.719352 +0.955901 +0.922410 +0.574457 +0.500117 +0.418766 +0.909233 +0.615041 +0.675472 +0.445660 +0.589094 +0.927300 +0.964890 +0.878163 +0.875544 +0.347426 +0.562754 +0.399082 +0.232977 +0.973074 +0.852526 +0.465080 +0.353124 +0.301517 +0.691916 +0.780435 +0.459954 +0.674222 +0.933652 +0.571573 +0.878643 +0.769133 +0.527629 +0.446958 +0.921080 +0.540609 +-0.527443 +0.539732 +0.680341 +0.348533 +0.793689 +0.597093 +-0.132862 +0.573408 +0.596923 +-0.211224 +0.879853 +0.607234 +0.966861 +0.981250 +0.480468 +0.444719 +0.763992 +0.942299 +-0.224397 +0.924646 +0.741824 +-0.083546 +0.027273 +0.483947 +0.178872 +0.789042 +0.327167 +0.451237 +0.742087 +0.178570 +0.823774 +0.900272 +0.632771 +0.987308 +0.241547 +0.176075 +0.153586 +0.185973 +0.278103 +0.948030 +-0.013800 +0.626754 +0.730639 +0.276879 +0.116543 +0.200962 +0.928468 +0.834942 +-21.140857 +0.152282 +0.961934 +0.832649 +0.340370 +0.664365 +-3.063973 +0.661913 +0.250087 +0.691444 +0.589781 +0.239581 +0.579378 +0.041800 +0.131710 +0.788833 +0.876862 +0.502319 +-1.731547 +0.210999 +0.600997 +0.941126 +0.795311 +0.954989 +0.889881 +0.561557 +0.667742 +0.634042 +0.871680 +0.806394 +0.892506 +0.995603 +-0.173653 +0.807947 +0.555549 +-0.318109 +-0.240169 +0.475269 +0.039596 +0.443326 +0.811022 +0.368689 +0.859167 +0.870168 +0.283927 +0.574560 +-0.148461 +-0.044595 +0.314681 +0.561933 +0.060531 +0.331356 +0.025251 +0.127656 +0.821115 +0.018624 +0.580862 +0.258399 +0.002777 +0.453635 +0.079583 +0.326572 +0.033618 +0.193761 +0.596833 +0.721346 +0.845569 +0.281286 +0.966344 +-0.001170 +0.611481 +0.017999 +0.801043 +0.789612 +0.982065 +-4.448674 +0.903871 +0.881362 +0.903160 +0.927041 +0.915088 +0.802057 +0.904723 +0.866828 +0.899667 +0.788878 +0.664389 +0.615076 +0.892127 +0.601330 +0.600088 +0.884780 +0.919698 +0.775688 +0.954547 +0.851503 +0.930513 +0.934711 +0.921546 +0.482365 +0.933725 +0.278317 +0.300639 +0.372488 +0.928641 +0.345893 +0.163761 +-0.132100 +0.354380 +0.764561 +0.848103 +0.936354 +0.905790 +0.828308 +0.932545 +0.921217 +0.568993 +0.745700 +-0.087978 +0.811849 +0.697963 +0.931047 +0.628902 +0.720916 +0.592993 +0.329444 +0.928386 +0.868362 +0.724815 +0.849032 +0.921227 +0.920266 +0.772887 +0.915024 +0.931938 +0.940353 +0.701540 +0.608512 +0.922272 +0.604113 +0.848667 +0.914417 +0.878363 +0.241166 +0.499053 +0.555743 +0.818053 +0.746969 +0.401751 +0.751280 +0.905359 +0.824410 +0.987020 +-0.158635 +0.848760 +0.976041 +0.826027 +0.447153 +0.953039 +0.104473 +0.836107 +0.526762 +0.860135 +0.598051 +0.664458 +0.895453 +0.275825 +0.850658 +0.770310 +0.854791 +0.742225 +0.702375 +0.673000 +0.564582 +0.906877 +0.886501 +-0.549552 +0.321183 +0.635701 +0.914842 +-0.456891 +0.016341 +0.483454 +0.407280 +0.681205 +0.305160 +0.896972 +0.878777 +0.592784 +0.744175 +0.403659 +0.744960 +0.271969 +0.712338 +0.394976 +0.929953 +-0.224576 +0.215097 +0.543381 +0.380137 +0.900680 +0.552094 +0.513781 +-1.528832 +-0.115370 +0.628145 +0.587218 +0.795383 +0.152312 +0.215947 +0.020871 +0.927352 +0.184472 +0.905767 +0.646093 +0.498131 +0.143501 +0.710117 +0.611496 +0.953911 +0.106110 +0.344582 +-0.122470 +0.735861 +0.863241 +-0.121919 +0.462829 +0.494672 +0.230871 +0.837661 +0.916669 +0.667480 +-0.916043 +0.449031 +0.109186 +0.703600 +0.170570 +0.968947 +0.221743 +0.394432 +0.731342 +0.355913 +0.940990 +0.232548 +0.596048 +0.119172 +0.007606 +0.929947 +0.737138 +0.141140 +0.033220 +-0.167016 +0.066662 +0.610110 +0.080902 +0.875260 +-0.293357 +0.605802 +0.226169 +0.000569 +0.224514 +0.548490 +0.146089 +0.016223 +-0.095476 +0.984325 +0.626991 +0.590632 +0.194537 +0.193806 +0.947524 +0.183820 +0.118911 +0.167495 +0.279748 +0.174329 +0.626568 +0.152158 +0.828522 +0.900793 +0.843272 +0.833702 +0.912242 +0.977000 +0.858593 +0.678419 +0.680056 +0.493404 +0.767853 +0.542875 +0.414470 +0.464517 +0.856351 +0.124012 +-0.279033 +-0.202040 +0.587067 +0.733798 +0.882353 +0.809064 +0.742507 +0.485100 +0.688636 +0.736970 +0.775027 +0.936875 +0.098161 +0.575750 +0.807671 +0.804386 +0.909339 +0.804675 +0.898318 +0.498304 +0.746803 +0.812810 +0.868132 +0.937494 +0.478147 +-0.012266 +0.687517 +0.769957 +0.556030 +0.911085 +0.893797 +0.930891 +0.429314 +-1876012.110846 +0.528760 +0.551148 +-0.434304 +0.643457 +0.221271 +-0.526784 +0.926516 +0.786120 +0.870924 +0.764161 +0.990896 +0.939039 +0.712036 +0.864544 +0.712067 +0.900803 +0.841857 +0.575342 +0.941615 +0.997448 +0.940685 +0.750630 +0.654900 +0.432317 +-0.058393 +0.854898 +0.724258 +0.849265 +0.845345 +0.931158 +0.834168 +0.860905 +-0.024350 +0.706730 +0.718704 +0.726374 +0.835908 +0.970987 +0.944581 +0.737170 +0.563876 +0.801014 +0.932817 +0.907282 +0.889279 +0.780805 +0.911080 +0.929002 +0.555369 +0.787314 +0.740323 +0.151242 +0.993660 +0.422303 +0.344757 +0.869274 +-0.297423 +0.225760 +0.380370 +0.332478 +0.921178 +0.806635 +0.820141 +0.671062 +0.594110 +0.491182 +0.115288 +0.623434 +0.727621 +0.673977 +0.009487 +0.919968 +0.188973 +0.990574 +0.912757 +0.686972 +0.604242 +0.927539 +0.902294 +-0.162747 +0.528059 +0.342556 +0.846065 +0.761454 +0.562868 +0.559846 +0.518948 +0.897203 +0.340005 +0.812473 +0.646558 +0.948647 +0.963363 +0.715180 +0.478319 +0.603351 +0.791387 +0.034407 +0.579728 +-549.956384 +0.863781 +0.217819 +0.718086 +0.997493 +0.353356 +-0.054190 +0.724309 +0.075078 +0.979951 +0.932802 +0.970467 +0.767556 +0.984442 +0.987943 +0.097719 +0.404695 +0.447850 +-585.272346 +0.004521 +0.867914 +-0.112316 +0.904861 +0.849545 +-0.328164 +0.949835 +0.252408 +0.402014 +0.868467 +0.714304 +0.718648 +0.796260 +0.836636 +0.886840 +0.888450 +0.916730 +0.901764 +0.845940 +0.634500 +0.869557 +0.617411 +0.310420 +0.859011 +0.477995 +0.896430 +0.979379 +0.391821 +0.888600 +0.911654 +0.504860 +0.636123 +0.470962 +0.979807 +0.901535 +0.571519 +0.971737 +0.664626 +0.825335 +0.853250 +0.935445 +0.362263 +0.775987 +0.549619 +0.907030 +0.917576 +0.276948 +0.939057 +0.716398 +0.992710 +0.909404 +0.686133 +0.715221 +0.665153 +0.425204 +0.291579 +0.697572 +0.638511 +0.702419 +0.802484 +0.215836 +0.574362 +0.930846 +0.936158 +0.551519 +0.657848 +0.877862 +0.853603 +0.872780 +0.514867 +0.553898 +0.470110 +0.715682 +0.918945 +0.656200 +0.793412 +0.704865 +0.015665 +0.907359 +0.498904 +0.903692 +0.685501 +0.741451 +0.888329 +0.311988 +0.721932 +0.456519 +-0.241456 +0.773924 +0.990526 +0.397323 +0.294718 +0.431128 +0.792916 +0.920543 +0.460497 +0.508950 +0.047139 +0.638949 +0.795290 +0.689565 +0.080584 +0.882788 +0.900407 +-0.105033 +0.364392 +0.782572 +0.746956 +0.926897 +0.594647 +0.672501 +0.569838 +0.402457 +0.049839 +0.549595 +-0.206663 +0.696706 +0.968122 +0.175089 +0.855579 +0.362433 +0.859324 +0.906366 +0.421342 +0.426607 +0.392060 +0.663170 +0.281734 +0.828639 +0.268517 +0.312702 +0.287032 +0.233591 +0.990963 +0.516964 +0.846422 +0.114283 +0.447725 +0.517582 +0.347303 +0.797127 +0.625767 +0.740422 +0.610458 +0.650174 +0.873971 +0.517519 +0.711617 +0.878197 +0.652586 +0.842930 +0.870840 +0.754299 +0.874873 +0.801154 +0.869401 +0.871926 +0.534288 +0.655266 +0.461920 +0.703505 +0.149777 +-0.183184 +0.078748 +0.589307 +0.805722 +0.845371 +0.895904 +0.902718 +0.987424 +0.385211 +0.781915 +-0.199908 +0.564262 +0.690540 +0.784635 +0.905003 +-0.275603 +0.735298 +0.608047 +-0.122433 +0.820802 +0.900664 +0.250190 +0.721973 +0.699341 +0.758673 +-0.145332 +0.349752 +0.342143 +0.751333 +-1.490016 +0.460098 +0.554878 +0.492354 +0.829382 +0.438931 +0.694338 +0.136033 +-0.011166 +0.701002 +0.880675 +0.589599 +0.851740 +0.824464 +0.613245 +0.987351 +0.971995 +0.114664 +0.861432 +0.113120 +0.699685 +0.707333 +0.213396 +0.871860 +-0.117381 +0.132339 +0.440286 +0.759555 +-0.857432 +0.639464 +0.889980 +0.483716 +-0.147974 +0.865877 +0.046250 +0.783198 +0.499773 +0.656482 +0.930714 +0.522992 +0.732483 +0.410245 +0.697464 +0.391253 +0.517574 +0.748845 +0.355478 +0.394676 +0.926243 +0.533607 +0.886984 +0.905336 +0.715580 +0.780307 +0.438593 +-0.387964 +0.779202 +0.159953 +0.186022 +0.520918 +0.272614 +0.479344 +0.482731 +0.465372 +0.275850 +-0.024933 +0.479794 +0.060040 +0.360250 +0.737468 +0.618530 +0.556769 +0.421970 +0.016365 +-0.467940 +0.337345 +0.425800 +0.774472 +0.799441 +0.830632 +0.943275 +-0.144450 +0.597518 +0.655633 +0.993407 +0.841307 +-1.048053 +0.967323 +0.684717 +0.876108 +0.888882 +0.532409 +0.879273 +0.598936 +0.528285 +0.769590 +0.616930 +0.751975 +0.584364 +0.670062 +0.682658 +0.595746 +0.972290 +0.538542 +0.026510 +0.306060 +-0.262061 +0.854109 +0.635352 +0.350672 +0.301338 +0.027237 +0.462029 +0.913724 +0.782581 +0.200412 +0.893190 +0.295768 +0.074244 +0.529378 +0.967248 +0.992396 +0.778174 +0.371043 +0.619703 +-0.054909 +0.029677 +0.783720 +0.483858 +0.395429 +0.179118 +0.803179 +0.760811 +0.982312 +0.527081 +0.619244 +0.844382 +0.313157 +0.882040 +0.463626 +0.311878 +0.890330 +0.153941 +0.225483 +0.096278 +0.018799 +0.923487 +0.488574 +0.158559 +0.992241 +0.172542 +0.521531 +0.049869 +0.868023 +0.233232 +0.306372 +0.113206 +0.742563 +0.616207 +0.299450 +0.524481 +0.360032 +0.782507 +0.733141 +0.559090 +0.231874 +0.910618 +0.326866 +0.762980 +0.749882 +-0.141292 +0.191975 +0.812971 +0.452174 +-0.252965 +0.564583 +0.529218 +-0.362954 +0.054906 +-1960.523648 +-0.250871 +0.121027 +-0.050172 +0.011008 +0.585648 +-0.010777 +-0.016653 +0.125437 +0.261430 +0.495439 +-0.048683 +0.145077 +0.262229 +0.356251 +0.444469 +0.222603 +0.035603 +0.166428 +-3.486393 +0.249521 +0.269864 +0.909816 +0.903252 +0.822249 +0.034796 +0.770024 +0.913501 +0.793728 +0.120560 +0.571940 +-0.190833 +0.993202 +0.004945 +0.893930 +0.937509 +0.853980 +0.507484 +0.668724 +0.901498 +0.219510 +0.830183 +0.577166 +0.934234 +0.454556 +0.488390 +0.625418 +0.815818 +0.276660 +0.647591 +0.170462 +0.893350 +-0.030307 +-0.202042 +0.254736 +0.927891 +0.711158 +0.724711 +0.563427 +0.689783 +0.479383 +0.931682 +0.821159 +0.793573 +0.936444 +0.080074 +0.888316 +0.590975 +0.251357 +0.919095 +0.311953 +0.455977 +0.874775 +0.803710 +0.865847 +0.314509 +0.834469 +0.876599 +0.683130 +0.935528 +0.898508 +0.742292 +0.773296 +0.787614 +0.805080 +0.869406 +0.878608 +0.897070 +0.911611 +-0.446140 +0.962672 +0.671935 +0.870067 +0.708454 +0.751745 +0.746723 +-0.032316 +0.288242 +0.742951 +0.723937 +0.839222 +0.111244 +0.323523 +-1.088549 +0.787392 +0.907516 +-0.710413 +0.787025 +0.754306 +0.718594 +0.495143 +0.895457 +0.151041 +-0.079518 +0.440822 +0.225849 +0.412995 +0.307506 +0.864215 +0.457295 +0.535431 +-0.610078 +0.673045 +-0.216800 +0.136292 +0.505235 +0.747923 +0.709306 +0.830802 +0.359332 +0.765806 +0.609282 +0.722305 +0.387820 +0.530182 +0.594858 +0.617747 +0.718956 +0.862633 +-0.322641 +0.436896 +0.410259 +0.406795 +0.571011 +0.565717 +0.836264 +0.812002 +0.645337 +0.728703 +0.650575 +0.509450 +0.782273 +0.867224 +0.818602 +0.762005 +0.854069 +0.931384 +0.865736 +0.893339 +0.636190 +0.768688 +0.935332 +0.604875 +0.996424 +0.986923 +0.808246 +0.634660 +0.798021 +0.934965 +0.811785 +0.861425 +0.348920 +0.868882 +0.578239 +0.103098 +0.785685 +0.825274 +0.719705 +0.876236 +0.121588 +0.823752 +-0.128095 +0.886221 +0.270806 +0.932463 +0.138923 +0.236665 +0.935030 +0.812286 +0.696882 +0.025311 +0.999119 +0.887593 +0.820092 +0.942159 +0.948729 +0.919780 +0.245727 +0.942638 +0.989352 +0.936208 +0.977873 +-0.125060 +0.666721 +0.998259 +0.966401 +0.980719 +0.983015 +0.973416 +0.793657 +0.964294 +0.992355 +0.877850 +0.937615 +0.882296 +0.577138 +0.690923 +0.787949 +0.683900 +0.884763 +0.458047 +0.515791 +0.836257 +0.674017 +0.771375 +0.837106 +0.931995 +0.621608 +0.837040 +0.746379 +0.927460 +0.843340 +0.504618 +0.898522 +0.483185 +0.852563 +0.930285 +0.363373 +0.669132 +0.704582 +0.932157 +0.584604 +0.544238 +0.892337 +0.997372 +0.957449 +0.540027 +0.684999 +0.885253 +0.946669 +0.654142 +0.518764 +0.816971 +-0.308665 +0.386472 +-126763.518599 +-0.809734 +0.791785 +-0.140017 +0.571715 +0.822932 +0.833468 +0.580722 +0.279929 +0.735345 +0.804474 +0.437919 +0.711970 +0.653973 +0.488366 +0.889595 +0.931621 +0.171169 +0.148155 +-0.495331 +0.269180 +-1.010876 +0.892697 +0.641280 +0.300030 +0.539287 +0.411752 +0.778796 +0.762261 +0.984046 +0.441702 +0.577759 +0.448027 +0.678018 +0.432465 +0.198488 +0.102421 +0.387374 +0.632895 +0.536833 +0.581543 +0.553155 +0.784886 +0.632885 +0.919318 +0.468820 +0.916387 +0.656110 +0.903311 +0.978415 +0.707247 +0.870353 +0.647189 +0.903579 +-0.248840 +0.682270 +0.788969 +-0.232327 +0.776201 +-0.091672 +0.929183 +0.613474 +0.671668 +0.727249 +0.956495 +0.526767 +0.746790 +-0.136542 +0.248010 +0.865333 +0.815723 +0.705481 +-0.305559 +0.841844 +0.924370 +0.739835 +0.664507 +0.523135 +0.685755 +-0.667008 +0.393923 +0.844578 +0.863301 +0.322022 +0.575695 +0.338762 +0.872523 +-0.143255 +0.781949 +0.917344 +0.958787 +0.278288 +0.879897 +0.926131 +0.908620 +0.356042 +0.933709 +0.840875 +0.845401 +0.921492 +0.805978 +0.094568 +0.998294 +0.721716 +0.868879 +0.926191 +0.091710 +0.874135 +0.879260 +0.295856 +0.910862 +0.363200 +0.328623 +0.634964 +0.996472 +0.911834 +0.590805 +0.913100 +0.809255 +0.340467 +0.943583 +0.864772 +0.168365 +0.509959 +0.316207 +0.427597 +-0.344025 +-0.473669 +0.951843 +0.832252 +0.757313 +0.544603 +0.604171 +-1.100259 +0.451255 +0.368347 +0.839852 +0.843784 +0.791326 +0.429546 +0.364705 +0.863531 +0.561455 +0.673832 +-0.120715 +0.920947 +0.901044 +0.891299 +0.810830 +0.933720 +0.944259 +0.892779 +0.377078 +0.480816 +0.638591 +-0.061832 +0.447485 +0.472308 +0.581723 +0.287799 +0.815201 +0.909388 +0.828631 +0.938176 +0.807426 +0.736347 +0.382370 +0.902933 +0.519590 +0.666791 +0.393575 +0.566663 +0.961043 +0.865024 +0.621433 +0.658862 +0.809905 +0.916291 +0.647036 +0.897065 +0.907659 +0.747495 +0.678373 +0.202749 +0.694702 +0.995433 +0.962881 +0.308680 +0.881645 +-0.088964 +0.876720 +0.234972 +0.509010 +0.788037 +0.727401 +0.716140 +0.877194 +0.430416 +0.756780 +0.991609 +-0.195270 +0.632484 +0.712731 +0.562004 +0.995706 +0.779600 +0.732501 +0.240576 +0.925582 +0.907543 +-0.331885 +0.848288 +0.928515 +0.504854 +0.508509 +0.694617 +0.361452 +-0.004947 +0.895467 +0.808806 +0.387970 +0.870568 +0.702142 +0.505159 +0.856882 +0.358950 +0.863796 +0.914263 +0.678129 +0.024263 +-0.674556 +-0.066974 +0.853230 +0.920081 +0.682527 +0.686755 +0.844075 +0.612995 +0.846376 +-0.584660 +0.684082 +0.597024 +0.609081 +0.326042 +0.924508 +0.760737 +0.883970 +0.932950 +0.938416 +0.938811 +0.940330 +0.820061 +0.378574 +0.924457 +0.602934 +0.267023 +0.913533 +0.378962 +0.824766 +0.650631 +0.263699 +0.548948 +0.479977 +0.704235 +0.787083 +0.797767 +0.754666 +0.908197 +0.633228 +0.639136 +0.814000 +0.846358 +0.907058 +0.716556 +0.944023 +0.946974 +0.429603 +0.690957 +0.910075 +0.757902 +0.677315 +0.553557 +0.689900 +0.887566 +0.650275 +0.863253 +0.690375 +0.222344 +0.896169 +0.884429 +0.775607 +0.831029 +0.586938 +-0.107751 +0.426545 +0.591572 +0.897877 +0.827731 +0.779490 +0.774451 +0.886101 +0.558122 +0.845815 +0.896132 +0.558986 +0.845081 +0.186422 +0.066570 +0.830522 +0.421348 +-0.472058 +0.580510 +0.979551 +0.320739 +0.342649 +0.680260 +0.596779 +0.897558 +0.745539 +-0.391727 +0.727259 +0.235265 +0.152298 +0.448517 +0.849162 +0.698947 +0.595691 +0.660477 +0.833031 +0.408626 +0.558523 +0.616283 +0.652294 +0.583102 +0.769753 +0.910426 +0.516731 +0.682285 +0.653347 +0.834169 +0.977028 +0.948622 +0.999218 +0.995421 +0.964171 +0.844208 +0.577090 +-0.455099 +0.914408 +0.765095 +0.413133 +-0.449219 +0.796679 +0.674712 +0.711848 +0.911446 +0.184255 +-0.013493 +0.151239 +0.239710 +0.709417 +0.049244 +0.605626 +0.887894 +0.536595 +0.497190 +0.389787 +0.966948 +0.490455 +0.979286 +0.506274 +0.895494 +0.586408 +-0.134977 +0.170348 +0.514266 +0.347239 +0.976390 +0.383974 +0.258078 +0.810206 +0.770844 +0.329956 +0.473401 +0.883978 +0.381164 +0.979606 +0.028986 +-0.275207 +0.418952 +0.083336 +0.962833 +0.277055 +0.840163 +0.095292 +0.974376 +0.934032 +0.830091 +0.803211 +0.651575 +0.979426 +0.603905 +0.864711 +0.789694 +0.883690 +0.841430 +0.715136 +0.399577 +0.486752 +0.744981 +0.682207 +0.610394 +0.189132 +0.561421 +0.726541 +0.894966 +0.916750 +0.709790 +0.646930 +0.330009 +0.732929 +0.723203 +0.862753 +0.523610 +0.623626 +0.747381 +0.599807 +0.763940 +0.344712 +0.773390 +0.471249 +0.918244 +0.926824 +0.933973 +0.918500 +0.657007 +0.939890 +0.999856 +0.060359 +0.484334 +0.392489 +0.561007 +0.520575 +0.522103 +-1.407961 +-11.121024 +-221.288871 +0.600942 +0.646305 +0.237063 +0.790116 +0.766747 +0.768381 +0.684108 +0.726245 +0.711163 +0.954654 +0.528219 +0.733286 +0.590526 +0.402189 +0.426096 +0.429256 +0.543185 +0.497876 +0.457484 +0.824225 +0.821387 +0.597240 +0.294107 +0.362796 +0.721266 +0.606793 +0.543453 +0.555685 +0.516463 +0.894032 +0.966464 +0.978630 +0.773604 +0.951812 +0.602662 +0.975812 +0.794283 +0.991145 +0.924704 +-0.283342 +0.751761 +0.289775 +0.135004 +0.248258 +0.758188 +0.527954 +0.520063 +0.789038 +0.817703 +0.628694 +0.402095 +0.778512 +0.268865 +0.379223 +-74.924617 +-0.395819 +0.540702 +0.800656 +0.938092 +0.216365 +0.565502 +0.760591 +0.259287 +0.318012 +0.411607 +0.831763 +0.355218 +0.301302 +0.377429 +0.546584 +0.511174 +0.374442 +0.151273 +0.974590 +0.389939 +0.562253 +0.561331 +0.286520 +0.669774 +0.289886 +0.242342 +0.185104 +0.459892 +0.370148 +0.267671 +0.209006 +0.731768 +0.550395 +0.874632 +0.093483 +0.045582 +0.112327 +0.423235 +0.716707 +0.530092 +-0.494158 +0.497906 +0.095403 +-0.004399 +0.250008 +0.435243 +0.110939 +0.678927 +0.144489 +0.127584 +0.089231 +0.419266 +0.911615 +0.748367 +0.625964 +0.767991 +0.826529 +0.859171 +0.675978 +0.256285 +0.020446 +0.088198 +0.106048 +0.914101 +0.996171 +0.805209 +0.741673 +0.911561 +0.731127 +0.431312 +0.562112 +0.932743 +0.749772 +0.519703 +-0.213893 +0.041154 +0.461413 +-322.640997 +0.550819 +0.854162 +0.489505 +-0.080988 +0.940905 +0.680898 +0.705800 +-0.227139 +0.658224 +0.983950 +0.465263 +0.634615 +0.718897 +0.437289 +-0.289608 +0.536652 +0.872808 +0.934730 +0.411241 +0.890391 +-0.317306 +0.787951 +0.591351 +0.881874 +0.526577 +-0.353076 +-0.737550 +0.108007 +0.452784 +0.873928 +0.890646 +0.572293 +0.434471 +0.841953 +0.463993 +0.114528 +0.865868 +0.828894 +0.926654 +0.252800 +0.566114 +0.581979 +0.697608 +0.925836 +0.838436 +0.436588 +0.600144 +0.857320 +0.472605 +0.812253 +0.930903 +0.563316 +0.824674 +0.718118 +0.631023 +0.900410 +0.918893 +0.075610 +0.790650 +0.897615 +0.327460 +0.639383 +0.806828 +0.927267 +0.933019 +0.402290 +0.891187 +0.603973 +0.682456 +0.594811 +0.942145 +0.371034 +0.732554 +0.676674 +0.314472 +0.183139 +0.681806 +0.542094 +0.879795 +0.974338 +0.612019 +0.269246 +0.262955 +0.879918 +0.500203 +0.998153 +0.876486 +-0.030504 +0.129546 +0.980859 +0.234596 +-0.099005 +0.166849 +-0.004161 +0.794938 +0.580103 +0.266646 +0.979967 +0.716767 +0.916607 +0.837287 +0.207786 +0.655774 +0.963820 +0.740712 +0.954558 +0.687376 +-0.247000 +0.911066 +-0.238135 +0.805050 +0.547089 +0.927843 +0.317178 +0.664634 +0.866457 +0.383533 +0.515414 +0.793380 +0.804148 +0.585726 +0.550296 +-0.057335 +0.914292 +0.074035 +0.884798 +-0.268089 +0.346836 +0.753148 +0.559472 +0.516611 +0.549889 +0.928606 +-0.166676 +0.436990 +0.735837 +0.225623 +0.929061 +0.788312 +-0.104845 +0.718694 +0.400848 +-0.117623 +0.651463 +0.360246 +0.894053 +0.415251 +-0.734919 +-0.284707 +0.812532 +0.852101 +0.709138 +0.358074 +0.582350 +0.809077 +0.771016 +0.808725 +0.829229 +0.818779 +-46610159349.631226 +0.724689 +0.998939 +0.657523 +0.769841 +0.937503 +0.284182 +0.853598 +0.905885 +0.858601 +0.858588 +0.480088 +0.962098 +0.270842 +0.848293 +0.787647 +0.959646 +0.683050 +0.918087 +0.226068 +0.716290 +0.881560 +0.739670 +0.931078 +0.722820 +0.736547 +0.813687 +0.714250 +0.877294 +0.699405 +0.537902 +0.912748 +0.936791 +0.729054 +0.358707 +0.824111 +0.414627 +0.933571 +0.796424 +0.878461 +0.411890 +0.768184 +0.895961 +0.585709 +0.837164 +0.912248 +0.545778 +0.794131 +0.925214 +0.267772 +0.879909 +0.585497 +0.802703 +0.702675 +0.931637 +0.540527 +0.509354 +0.740362 +0.820761 +0.745485 +0.806562 +0.657732 +0.352034 +0.933109 +0.666604 +0.928973 +0.638354 +0.749436 +0.681831 +0.637302 +0.418027 +0.694733 +-0.360185 +0.272733 +0.842967 +0.929690 +0.929690 +0.824208 +0.883187 +0.884331 +0.880385 +0.786923 +0.915287 +0.932509 +0.245779 +0.152229 +0.538619 +0.820277 +0.765664 +0.827279 +0.872500 +0.612634 +0.805122 +0.384173 +0.352491 +0.778458 +0.489089 +0.939975 +0.781979 +0.206047 +0.654668 +0.812051 +0.886318 +0.597923 +0.829585 +0.717275 +0.786085 +0.557419 +0.909707 +0.874411 +0.929382 +0.665859 +0.448846 +0.797760 +0.861394 +0.785435 +-0.288851 +0.333719 +0.723493 +0.706888 +0.542716 +0.851549 +-0.022742 +0.938535 +0.043249 +0.779895 +0.768191 +0.883906 +0.903583 +0.795801 +0.897229 +0.818483 +0.829127 +0.741250 +0.218261 +0.931272 +0.408005 +0.878067 +0.922240 +0.949484 +0.927889 +0.335313 +0.579169 +0.922362 +0.912954 +0.925370 +0.925815 +0.949142 +0.911781 +0.726624 +0.131505 +0.590169 +0.834264 +0.551470 +0.761998 +0.720153 +0.697600 +0.203153 +0.003663 +-0.018328 +0.348935 +0.465874 +0.258011 +0.162880 +0.109507 +0.121726 +0.500388 +0.074807 +0.102384 +0.122070 +0.240009 +0.392532 +-12.147232 +0.230143 +0.113335 +0.014279 +0.133198 +0.057558 +0.019246 +0.688638 +0.047216 +0.129965 +0.004011 +0.266716 +0.164935 +0.885136 +-0.195483 +-0.271689 +0.025616 +-0.448127 +0.796898 +0.214405 +0.472684 +0.787051 +0.664731 +0.730564 +0.787795 +0.814013 +0.877333 +0.342515 +0.782488 +0.775350 +0.329286 +0.722805 +0.154458 +0.923097 +0.366376 +0.234151 +0.477864 +0.632848 +0.929114 +0.374737 +0.221925 +0.721489 +0.786497 +0.632831 +0.768881 +0.983597 +0.528288 +0.432501 +0.438705 +0.411717 +0.295574 +0.754420 +0.991414 +0.685459 +0.761842 +0.914248 +0.215902 +0.855433 +0.916906 +-0.470160 +0.405249 +0.476737 +0.704505 +0.884682 +0.925963 +0.422107 +0.715229 +0.729766 +0.182462 +0.257878 +0.921663 +0.981858 +0.505067 +0.723261 +0.912489 +0.396194 +0.509744 +-0.023704 +0.853328 +0.732541 +0.877103 +0.325645 +0.833032 +-0.211883 +0.340428 +0.726022 +0.769496 +0.491899 +0.879476 +0.940956 +0.884801 +0.916372 +0.937545 +0.299885 +0.725778 +0.514636 +0.714977 +0.825139 +0.544548 +0.734601 +0.672056 +0.560969 +0.599490 +0.251500 +0.654322 +0.916337 +0.917672 +0.834856 +0.892786 +0.600815 +0.473856 +-0.405040 +-0.157182 +0.522736 +0.809219 +0.284968 +0.716202 +0.587639 +0.837455 +-0.703046 +0.065792 +0.845851 +0.845851 +0.898443 +0.886887 +0.797527 +0.795827 +0.885001 +0.528195 +0.844243 +0.269898 +0.027531 +0.846421 +0.687329 +0.013606 +0.845536 +0.794299 +0.808458 +0.945930 +0.985422 +0.860649 +0.341208 +0.872275 +0.707558 +0.432429 +0.876252 +0.591446 +0.732705 +0.984372 +0.634534 +0.771292 +0.956494 +0.776241 +0.927869 +0.871153 +0.982332 +0.995463 +0.825692 +0.416985 +0.858629 +0.717067 +0.086890 +0.367163 +-0.116678 +0.772597 +0.922439 +-0.010077 +0.476156 +0.727186 +0.903736 +0.529850 +0.172270 +0.565617 +0.732161 +0.589264 +0.732161 +0.184282 +-0.023641 +0.981975 +0.563928 +0.982609 +0.912381 +0.741385 +-0.103182 +0.525343 +0.672236 +0.186635 +0.583944 +0.694429 +0.071777 +0.223363 +0.440553 +0.653795 +0.794608 +0.256230 +0.885232 +0.936086 +0.304534 +0.441601 +0.751324 +0.518049 +0.476437 +0.689950 +0.550256 +0.864748 +0.624143 +-0.869929 +0.882166 +0.259061 +0.617034 +0.512288 +0.903052 +0.380318 +0.792906 +0.240537 +0.830057 +0.602620 +0.576376 +0.746409 +0.436177 +0.710517 +0.854975 +0.924365 +0.873857 +0.737319 +0.906121 +0.897990 +0.741507 +0.771598 +0.670685 +0.730255 +0.652462 +0.950297 +0.612768 +0.847558 +0.757207 +0.604850 +0.296099 +0.841881 +0.931824 +0.785549 +0.449422 +0.758614 +0.020076 +0.890105 +0.141347 +0.708990 +0.451339 +0.770291 +0.590655 +0.587175 +0.858202 +0.426252 +0.882807 +0.818335 +0.846317 +0.890417 +0.429098 +0.810848 +0.128323 +0.704040 +0.791308 +0.774129 +0.913093 +0.952683 +0.760358 +0.978351 +0.589177 +0.919361 +0.616131 +0.909776 +0.422590 +0.937339 +0.006667 +0.022946 +0.563426 +0.781025 +0.846179 +0.937820 +0.960701 +0.909658 +0.328372 +0.966769 +0.115400 +0.963423 +0.499154 +0.343164 +0.942945 +0.380439 +0.770330 +0.833769 +0.417993 +-0.101839 +0.776267 +0.898362 +0.832291 +0.820096 +0.440119 +0.671091 +0.596532 +0.892575 +0.617607 +0.541202 +0.496414 +0.167527 +0.792727 +0.306569 +0.385482 +0.499195 +0.774800 +0.712756 +0.580214 +0.651846 +0.545242 +0.680540 +0.485367 +0.487722 +0.699586 +0.214199 +0.707648 +0.201555 +0.742216 +0.920324 +0.862992 +0.734821 +0.281135 +0.646851 +0.619491 +0.376698 +0.974352 +0.677219 +0.745622 +0.895071 +0.290939 +0.687533 +0.435211 +0.842629 +0.424489 +0.364972 +0.299797 +0.569390 +0.828504 +0.820014 +0.063910 +0.348008 +0.705678 +0.676925 +0.656415 +0.681580 +0.840114 +0.196271 +0.397911 +0.476384 +0.348476 +-0.244770 +0.354016 +0.906377 +0.717396 +0.358313 +0.748558 +0.878958 +0.166816 +0.638983 +0.499699 +0.788294 +0.656101 +0.626000 +0.783590 +0.828839 +-0.207687 +0.908932 +0.546171 +0.934467 +0.889799 +0.644012 +0.617537 +0.869809 +0.105143 +0.788213 +0.900925 +0.300220 +0.837956 +0.407466 +0.866713 +0.817392 +0.598448 +0.872842 +0.890637 +0.671606 +-0.080541 +0.504294 +0.835270 +-0.145881 +0.766388 +-0.036826 +0.825455 +0.454809 +0.929060 +0.932467 +0.812627 +0.763403 +0.756766 +0.805130 +0.747627 +0.702355 +0.818296 +0.668069 +0.434485 +0.684449 +0.532509 +0.582791 +0.810756 +0.767030 +0.597585 +0.709554 +0.860611 +0.606600 +-0.792092 +0.525871 +0.923106 +-0.650877 +0.836493 +0.815306 +0.925926 +0.209548 +0.427790 +0.996947 +0.373364 +0.878765 +0.497490 +0.400521 +0.902171 +0.558758 +0.201335 +0.935355 +0.793511 +0.906260 +0.538233 +0.011707 +-33.553822 +0.314057 +0.604393 +0.877117 +0.890340 +0.832820 +0.486963 +0.591983 +0.659078 +0.890418 +0.605782 +-21.606223 +0.584460 +0.099314 +-121.048196 +0.482988 +0.799660 +0.337878 +-161.115014 +-0.103488 +0.984931 +0.924249 +0.991092 +0.683146 +0.173642 +0.761169 +0.260348 +0.823706 +0.750727 +0.422361 +0.655786 +0.167815 +0.052025 +0.706856 +-0.075182 +0.762636 +0.291624 +0.683527 +0.746367 +0.913115 +0.911269 +0.341622 +0.933872 +0.752101 +0.688830 +-1.025228 +0.730172 +0.559249 +0.662127 +0.476783 +0.666522 +0.642855 +0.765714 +0.912609 +0.745178 +0.754129 +0.929157 +0.849966 +0.680374 +0.813540 +0.808969 +0.896008 +0.856382 +0.815255 +0.707138 +0.749702 +0.287924 +0.712234 +0.575050 +0.894237 +0.883749 +-0.284241 +0.498960 +0.895590 +0.605492 +0.476266 +0.847081 +0.933458 +0.838981 +0.123420 +0.722468 +0.385784 +0.688855 +-0.251171 +0.963997 +0.915741 +0.839338 +0.847971 +0.850469 +0.391361 +0.666199 +0.860939 +0.948111 +0.697899 +0.509499 +-0.112577 +-0.470695 +0.793448 +0.430158 +-0.116128 +-0.067188 +0.620038 +-0.165169 +0.303253 +0.670783 +0.577759 +0.801284 +0.846619 +0.725418 +0.845502 +0.735481 +0.842879 +-0.183263 +0.702829 +0.656510 +0.898267 +0.959728 +0.842771 +0.825766 +0.840169 +0.958316 +0.814244 +0.374039 +0.575058 +0.930638 +0.933813 +0.602981 +0.342858 +0.993102 +0.931482 +0.616447 +0.866470 +0.829975 +0.363726 +0.602829 +0.410961 +0.913663 +0.969537 +0.930141 +0.603838 +0.511001 +0.947785 +0.886394 +0.476967 +0.300997 +0.412315 +0.845218 +0.887911 +0.784953 +0.506762 +0.667115 +0.760882 +0.004493 +0.573159 +0.911573 +0.665461 +0.765988 +0.639565 +0.450296 +0.417116 +0.551477 +0.599267 +0.500878 +-0.129683 +0.996190 +0.660316 +0.767548 +0.310909 +0.872287 +0.599107 +0.542661 +0.535716 +0.532457 +0.936930 +0.733518 +0.602793 +0.649603 +-0.953132 +0.361799 +0.823759 +0.494390 +0.573736 +0.479026 +0.908838 +0.801318 +0.322903 +0.648024 +0.289650 +0.799068 +0.813521 +0.789301 +0.727473 +0.834526 +0.339825 +0.852770 +0.830828 +0.863240 +0.718623 +0.776515 +0.654410 +0.799326 +0.756471 +0.233524 +0.552634 +0.881724 +0.763219 +0.849334 +-0.955557 +0.380937 +0.622898 +0.604975 +0.291764 +0.414251 +0.760414 +0.673848 +0.733710 +-0.214463 +0.891100 +0.451375 +0.869827 +0.754706 +0.382587 +0.648811 +0.154894 +0.422129 +0.747061 +0.686499 +0.671804 +0.822519 +0.245262 +0.821961 +0.877425 +0.473220 +0.938411 +-0.097765 +0.405261 +0.877195 +0.836460 +0.560928 +0.178228 +0.799737 +0.843093 +0.752419 +0.893691 +0.820445 +0.395800 +0.791924 +0.494407 +0.844144 +0.879608 +0.712658 +0.421765 +0.633260 +0.746097 +0.252519 +0.734013 +0.423567 +0.422969 +0.848662 +0.541927 +0.919620 +0.371082 +0.667404 +0.645066 +0.381697 +0.966686 +0.807950 +0.797584 +0.353235 +0.851583 +0.693338 +-234.379737 +0.705235 +0.855984 +0.804677 +0.721552 +0.494600 +0.539817 +0.545545 +0.776557 +0.590686 +0.979226 +0.910167 +0.499612 +0.413792 +0.302038 +0.848971 +0.814037 +-0.375600 +0.534720 +0.945270 +0.786380 +0.943883 +0.545853 +0.940899 +0.496003 +0.933982 +0.491331 +0.580399 +0.731755 +0.618972 +0.563779 +0.450779 +0.830962 +0.492539 +0.398723 +0.602819 +0.714722 +0.709259 +0.766392 +0.999867 +0.932618 +-0.019474 +0.785611 +0.264596 +0.856159 +0.709679 +0.905965 +0.474606 +0.377490 +0.506426 +0.868584 +0.470480 +0.530588 +0.083803 +0.344811 +-1.880150 +0.314774 +0.600511 +0.780340 +0.616936 +0.657036 +0.504262 +0.859965 +0.841980 +0.291752 +0.757893 +0.961139 +0.478394 +0.533213 +0.650624 +0.845919 +0.898216 +0.836784 +0.168336 +0.630843 +0.539129 +0.363632 +0.746343 +0.645991 +0.888238 +0.894429 +0.697890 +0.757824 +0.245427 +0.612609 +0.567595 +0.888860 +0.809176 +0.086254 +0.712499 +0.943638 +0.624807 +0.853940 +0.156382 +0.703108 +0.824822 +0.929249 +0.620959 +0.933213 +0.909712 +0.445629 +-1.088762 +0.451458 +0.964913 +-0.113328 +0.833035 +0.886273 +-1.143648 +0.895406 +0.940598 +0.457679 +0.933151 +0.639623 +0.432164 +0.944391 +0.828244 +0.927366 +0.939255 +0.858396 +0.772120 +0.206860 +0.999852 +0.896763 +0.893691 +0.088061 +0.992232 +0.894713 +0.852874 +0.975071 +0.996512 +0.931444 +0.783916 +0.592741 +0.785557 +0.882526 +0.330559 +0.342593 +0.829670 +0.621302 +0.690068 +0.536277 +0.698454 +0.830779 +0.799625 +0.644806 +0.933151 +0.932572 +0.672621 +0.298862 +0.734568 +0.684669 +0.681064 +0.929888 +0.469865 +0.618233 +0.441609 +0.532199 +0.818647 +0.909114 +0.454199 +0.489793 +0.654252 +-0.115089 +0.741049 +0.760775 +0.871405 +0.301989 +0.313047 +0.173156 +0.794410 +0.651822 +0.933029 +0.637383 +0.647269 +0.370018 +0.371009 +0.744093 +0.500340 +0.287281 +0.229242 +0.377802 +0.707666 +0.463382 +0.640087 +0.882224 +0.908901 +0.870176 +0.735040 +0.408131 +0.565549 +0.093756 +0.656255 +0.784719 +0.664036 +0.894349 +0.542803 +0.555732 +0.608892 +0.884970 +0.890365 +0.266013 +0.761631 +0.888860 +0.615120 +0.858796 +0.704702 +0.929308 +-0.026454 +0.809370 +0.716328 +0.482988 +0.892527 +0.929863 +0.550117 +0.643753 +0.659192 +0.837839 +0.711989 +0.342226 +0.827485 +0.354228 +0.454526 +0.904505 +0.913140 +0.644984 +0.505717 +0.685669 +0.838848 +0.540942 +0.375456 +0.992150 +0.530962 +0.310140 +0.306561 +0.781693 +0.906273 +0.472916 +0.851652 +0.880458 +0.767814 +0.656509 +0.624967 +0.865030 +0.407560 +0.829193 +0.491016 +-0.126010 +0.698042 +0.292018 +0.827157 +0.868327 +0.826920 +0.872275 +0.632070 +0.796595 +0.511714 +0.581405 +0.504917 +0.746966 +0.874676 +-0.267569 +0.824333 +0.996409 +0.343583 +0.777902 +0.696847 +0.846901 +0.891075 +0.812293 +0.906614 +0.993718 +0.651463 +0.179377 +0.765792 +0.711813 +0.640213 +0.671737 +0.828215 +0.362964 +0.649486 +0.527942 +0.350561 +0.682066 +0.483774 +0.428722 +0.134219 +0.351771 +0.440582 +0.741584 +0.929386 +0.525439 +0.435287 +0.648926 +0.629372 +0.641877 +0.540583 +0.011109 +0.940669 +0.397270 +0.720849 +0.589932 +0.836585 +0.806186 +0.355701 +0.603309 +0.352941 +0.768974 +0.428919 +0.496652 +0.838376 +0.709618 +0.443664 +0.405146 +0.514854 +0.092328 +0.486091 +0.534796 +0.733312 +0.723204 +0.524123 +0.870942 +0.729693 +0.752413 +0.507547 +0.633597 +0.734060 +0.940502 +0.876637 +0.735681 +0.874374 +0.843632 +0.915603 +0.801466 +0.845888 +-0.178306 +0.522359 +0.661340 +0.351990 +0.298452 +0.391820 +0.893872 +0.258625 +0.058240 +0.796496 +0.612519 +0.853304 +0.149484 +-0.591691 +0.875476 +0.847697 +0.856150 +0.204315 +0.079466 +0.947734 +0.126786 +0.347730 +0.440477 +0.798963 +0.642535 +0.193150 +0.851891 +0.847358 +0.399065 +0.440277 +0.593215 +0.948472 +0.860441 +0.448259 +0.697110 +0.919272 +0.877507 +0.410370 +0.895237 +0.857868 +0.557363 +0.980246 +0.221606 +0.859951 +0.957712 +0.943273 +0.882426 +0.994467 +0.863039 +0.389584 +0.846469 +0.726145 +0.599604 +-0.132828 +0.358772 +0.964060 +-121.281242 +0.347005 +-10.748444 +0.645193 +0.874664 +0.755410 +0.831946 +0.354094 +0.786789 +0.380995 +0.729769 +-0.375602 +0.993524 +0.066684 +0.797129 +0.469214 +0.497262 +0.994978 +0.112988 +0.936205 +0.936215 +0.408059 +0.832286 +0.855305 +0.791494 +0.309437 +0.803106 +0.833031 +0.802613 +0.178128 +0.870141 +0.694138 +0.384057 +0.443752 +0.707917 +0.983776 +0.753255 +0.698605 +0.897145 +0.741033 +0.984663 +0.435647 +0.857469 +0.935167 +0.882141 +0.680912 +0.616417 +0.753611 +0.460191 +-0.033783 +0.702082 +0.679583 +0.885943 +-0.261616 +0.923676 +0.860158 +-0.026550 +0.477560 +-0.214261 +0.969878 +-0.330936 +0.922688 +0.002081 +0.412521 +0.823492 +0.064148 +0.158461 +0.719012 +0.214621 +0.931707 +0.130859 +0.681180 +0.828857 +0.679730 +0.921279 +0.830107 +0.861134 +0.803142 +0.761883 +0.269857 +0.894078 +0.188210 +0.860725 +0.199934 +0.873169 +-7.670807 +0.932655 +0.981615 +0.933133 +0.886099 +0.933304 +0.884577 +0.847941 +0.788221 +0.643515 +0.929821 +0.989577 +0.570306 +0.876622 +0.556731 +0.761786 +0.877524 +-0.268685 +0.697686 +0.548981 +0.779616 +0.887219 +0.777381 +0.493064 +0.768914 +0.739926 +0.751234 +0.184953 +0.869468 +-0.174419 +0.696115 +0.850929 +0.812360 +0.894916 +0.678031 +0.921791 +0.932918 +0.967614 +0.498092 +0.890923 +0.782995 +-0.067321 +0.781774 +0.852669 +0.356356 +0.523116 +0.933199 +-0.881212 +0.851477 +0.262700 +-0.068608 +0.256341 +0.989402 +0.349949 +0.642791 +0.485605 +0.722341 +0.613043 +0.404712 +0.394387 +-0.136557 +0.099665 +0.885186 +0.048237 +0.215423 +0.349704 +0.349704 +0.349704 +0.349704 +0.481576 +0.474311 +0.253671 +0.212637 +0.077871 +0.876721 +-2.353439 +0.868170 +0.469874 +-0.181462 +0.599371 +0.460108 +0.420982 +0.740369 +0.175104 +0.058106 +0.372930 +0.057083 +0.423022 +0.326138 +-0.185904 +0.844980 +-0.157903 +0.514926 +0.496681 +0.444282 +0.112806 +0.533240 +0.605378 +0.116196 +-0.001544 +0.592615 +0.941110 +0.670836 +0.788962 +0.968679 +0.706493 +0.681006 +0.399041 +0.175474 +0.462559 +0.349515 +0.918631 +0.384095 +0.754486 +0.273747 +0.406629 +0.599075 +0.615826 +0.504836 +0.975759 +0.778139 +0.166519 +0.941926 +0.504519 +0.288983 +0.900324 +0.900379 +0.860135 +0.484860 +0.874338 +-0.021540 +0.543139 +0.930892 +0.525035 +0.927954 +0.993502 +0.062248 +0.136066 +0.930735 +0.934194 +0.884813 +0.873606 +0.916608 +0.888898 +0.928230 +0.528341 +-0.075564 +0.702966 +0.936400 +0.537856 +0.936387 +0.463195 +0.905855 +0.934574 +0.742638 +0.474107 +0.723858 +0.271945 +0.743937 +0.941608 +0.286602 +0.746177 +0.842460 +0.652593 +0.570666 +0.824756 +0.473957 +0.935365 +0.890188 +0.698136 +-0.030206 +0.965216 +0.979245 +0.588142 +0.770754 +0.810107 +0.846449 +0.719598 +0.539333 +0.718982 +-0.215835 +0.539649 +0.871735 +0.753417 +-0.125377 +-0.013006 +0.754208 +0.803278 +0.634082 +0.878703 +0.919747 +0.820379 +0.959339 +0.595210 +0.666807 +0.582245 +0.591039 +0.862996 +-0.107306 +0.812848 +0.501259 +0.687463 +0.848923 +0.678783 +0.929617 +0.764815 +-0.072889 +0.881766 +0.500152 +0.115355 +0.671327 +0.878821 +0.764991 +-0.248911 +0.831681 +0.621069 +-0.215145 +0.704842 +0.756418 +0.750723 +0.661043 +0.627631 +0.791586 +0.718531 +0.805231 +0.453965 +0.651990 +0.783736 +0.762081 +-0.033987 +0.839733 +0.740830 +0.471766 +0.602278 +0.577164 +0.492197 +0.879376 +0.742828 +0.844685 +0.555195 +0.890743 +0.063137 +0.948338 +0.867763 +0.760042 +0.760665 +0.814749 +0.825843 +0.157462 +0.298168 +0.595736 +0.680748 +0.583699 +0.983604 +0.768633 +0.704810 +0.925555 +0.173990 +-0.221467 +-0.158544 +0.640633 +0.771903 +0.527711 +0.310967 +-0.078368 +0.867881 +0.816858 +0.617309 +0.746178 +0.826576 +0.525429 +-5.198649 +0.542255 +0.669839 +0.434642 +0.656423 +0.856784 +-0.138653 +0.603893 +-0.147273 +0.894759 +0.932351 +0.874237 +0.637669 +0.765164 +0.615957 +0.830724 +0.964845 +0.473306 +0.702182 +0.732548 +0.594920 +0.588340 +0.617027 +0.633177 +0.759597 +0.936799 +0.300512 +0.221531 +0.715803 +0.857231 +0.643883 +0.768852 +0.610807 +0.595375 +0.588795 +0.836756 +0.436764 +0.453168 +-0.068538 +0.928341 +0.867162 +0.862020 +0.761936 +0.932617 +0.645141 +-0.142888 +0.819081 +0.248821 +0.721321 +-0.287280 +0.562278 +0.663380 +0.242406 +0.553601 +0.158274 +0.264505 +-0.963603 +0.336522 +0.743612 +-0.315722 +0.454993 +0.763047 +0.001403 +0.284848 +0.362013 +0.865960 +0.804064 +-0.021902 +0.740571 +-0.135914 +0.220655 +0.857897 +0.498276 +0.676756 +0.831777 +0.248670 +0.879659 +0.276122 +0.865484 +0.208061 +-0.285278 +0.432675 +0.497854 +0.815427 +0.105459 +0.233489 +0.483334 +0.884447 +0.306622 +0.648890 +0.526515 +0.930359 +0.873375 +0.623324 +0.865835 +-0.101473 +0.293672 +0.801968 +0.572024 +0.546321 +0.513980 +0.636681 +0.247866 +0.876295 +-0.249245 +0.657950 +0.796481 +0.800323 +0.614341 +0.726370 +0.858609 +-0.138078 +0.868610 +0.454434 +0.637224 +0.890882 +0.994917 +0.726801 +0.426752 +0.594032 +-6.358792 +0.532156 +0.337297 +-0.110027 +0.034238 +0.466622 +0.926852 +0.966429 +0.838217 +0.659957 +0.554615 +0.555612 +0.961873 +-0.305086 +0.724546 +0.931476 +0.932298 +0.947509 +0.708165 +0.936813 +0.755501 +0.934040 +0.928964 +0.465686 +0.716750 +0.913867 +0.698966 +0.705658 +0.872850 +0.688288 +0.869714 +0.892511 +0.222486 +0.595895 +0.728700 +0.512336 +0.578369 +0.786193 +0.991220 +0.754456 +0.901405 +0.879039 +0.861845 +0.708768 +0.924599 +-0.097813 +0.909248 +0.873941 +0.621967 +0.972819 +0.726990 +0.607674 +0.916048 +0.727126 +0.876849 +0.910240 +0.939197 +0.752045 +0.923820 +0.679673 +0.298955 +0.898874 +0.742440 +-0.030409 +0.298464 +0.737876 +0.983602 +0.338208 +-0.533767 +0.908896 +0.303781 +0.464350 +0.219916 +0.685336 +0.708073 +0.430629 +0.821882 +0.207628 +0.957428 +0.866994 +0.926530 +0.934663 +0.970159 +0.562391 +0.866195 +0.986743 +0.227928 +0.468929 +0.810811 +0.512024 +-1.256794 +0.720631 +0.864494 +0.714879 +0.997107 +0.971153 +0.989137 +0.143685 +0.879833 +0.842909 +0.709573 +0.630735 +0.932544 +0.745330 +0.301679 +0.210989 +0.670289 +0.452884 +0.384600 +0.931338 +0.609636 +0.658238 +0.520528 +0.608879 +0.653010 +0.776230 +0.922396 +0.936791 +0.079807 +0.724866 +0.739938 +0.833604 +0.928285 +0.694366 +0.921133 +0.674922 +0.841633 +0.936593 +0.616488 +0.628348 +-0.181001 +0.697497 +0.670207 +0.903431 +0.331219 +0.741824 +0.731410 +0.532093 +0.792932 +0.669139 +0.394692 +-0.042664 +0.759333 +0.950773 +0.846225 +0.912780 +0.182403 +0.768700 +0.909784 +0.907885 +0.708470 +0.692566 +0.754741 +0.754508 +0.736428 +0.756460 +0.906593 +0.260433 +-0.809237 +0.267913 +0.289765 +0.621507 +0.677951 +0.362032 +0.875220 +0.151272 +0.797287 +0.532946 +0.767814 +0.285933 +0.600040 +0.622892 +0.799314 +0.797602 +0.802048 +0.682088 +0.769895 +-0.048306 +0.682353 +0.781364 +-0.126072 +0.441185 +0.651889 +0.210239 +-0.046222 +0.545240 +0.944709 +0.281788 +0.970699 +0.443535 +0.717608 +-0.670755 +0.327344 +0.102248 +0.836741 +0.948302 +-0.435713 +0.455925 +0.659915 +0.552922 +0.418122 +0.682215 +0.700847 +0.468255 +0.814648 +0.382224 +0.841071 +-0.181560 +0.833598 +0.366591 +0.717483 +0.761647 +0.002426 +0.466742 +0.855743 +0.994231 +0.771472 +0.570094 +0.835278 +0.300637 +0.754626 +0.463736 +0.268754 +0.296011 +0.447011 +-0.285253 +0.372118 +-0.138091 +0.438814 +-0.247368 +0.346233 +0.933099 +0.971963 +0.673005 +0.602376 +0.483020 +0.457780 +0.908432 +0.549502 +0.715159 +0.648152 +0.833817 +0.825852 +0.867989 +0.846514 +0.649049 +0.390660 +0.390586 +-0.417639 +0.584927 +0.803504 +0.831323 +0.340843 +0.646119 +0.456492 +0.800770 +0.925461 +0.931435 +0.869026 +0.595721 +0.469378 +0.898477 +0.611495 +0.593127 +0.923992 +0.453129 +0.380053 +0.909945 +0.575949 +0.478596 +0.412655 +0.585912 +0.868025 +0.555099 +0.802780 +0.879612 +0.845986 +0.911402 +0.922500 +0.812327 +0.764299 +0.628411 +0.892190 +0.747698 +0.563225 +0.561857 +0.628661 +0.632698 +0.889291 +-0.366839 +0.917747 +0.887072 +0.685339 +0.588879 +0.763820 +0.716929 +-3.433335 +0.616363 +0.819994 +0.795813 +0.899711 +0.660708 +-0.374146 +0.905581 +0.672891 +0.889275 +0.538669 +0.748749 +0.545966 +0.510191 +0.932927 +-0.267848 +0.765599 +0.745565 +0.815231 +-0.086402 +0.857324 +0.774231 +0.442726 +0.677927 +0.197022 +0.755941 +0.336971 +0.862099 +0.760404 +0.739592 +0.842457 +0.793750 +0.899443 +0.655619 +0.160334 +-0.408411 +0.532447 +0.990895 +0.943528 +0.338529 +-0.041967 +-0.439248 +-0.005918 +0.380103 +0.767911 +0.826325 +0.173389 +0.282873 +0.877709 +0.757986 +-0.868349 +0.395211 +0.259444 +0.857324 +0.845157 +0.622765 +0.649788 +0.312702 +0.740670 +0.560209 +0.935002 +0.418040 +0.334484 +0.904643 +-0.199012 +0.926878 +0.919578 +0.665935 +0.788386 +0.879059 +0.254830 +-0.577945 +0.840013 +0.798125 +0.917938 +0.987850 +0.942770 +0.483259 +0.759978 +0.551439 +0.824313 +0.904776 +0.660299 +0.776628 +0.864950 +0.917614 +0.827746 +0.943640 +0.796090 +0.830229 +0.753254 +0.854825 +-0.308428 +0.772322 +0.877689 +0.893924 +0.859005 +0.602503 +-0.100624 +0.557265 +0.738708 +0.298870 +-0.001173 +0.302887 +0.676346 +0.803916 +0.086788 +0.843217 +0.411846 +0.247255 +0.111071 +0.257428 +0.191712 +0.309320 +0.772812 +0.426836 +0.468063 +0.456690 +0.029737 +0.721446 +0.518134 +0.619423 +-0.440405 +0.545324 +0.404268 +0.257091 +0.607071 +-0.831550 +0.265275 +0.350064 +0.970198 +0.941240 +0.861875 +0.735206 +-0.336123 +0.892593 +0.280069 +0.696286 +0.897338 +0.879360 +0.896663 +-0.196271 +0.803204 +0.653327 +0.805664 +0.709901 +0.479991 +0.271280 +0.934503 +-0.275743 +0.297060 +0.933431 +0.872580 +0.979449 +-0.159475 +0.678354 +0.756876 +0.673624 +0.684227 +0.756254 +0.811682 +0.547828 +-0.068972 +0.630752 +0.817332 +-0.187186 +0.462215 +0.962981 +0.218279 +0.913370 +0.817758 +-0.007836 +0.820125 +0.301596 +0.772168 +-0.123599 +0.457063 +0.299713 +0.587522 +0.348735 +0.829911 +0.843438 +0.893263 +0.798573 +0.897512 +0.937930 +0.736797 +0.937917 +0.972164 +0.966612 +0.875179 +0.923501 +0.805283 +0.937848 +0.829769 +0.588299 +0.937835 +0.982675 +0.971818 +0.951738 +0.794163 +0.871657 +0.483696 +0.332602 +-0.168939 +0.813924 +0.934325 +0.897854 +0.313224 +0.425146 +0.315581 +0.504973 +0.494825 +0.519845 +0.337095 +0.491192 +0.153765 +-0.079103 +0.021190 +0.816046 +0.880518 +0.712821 +0.786308 +0.573656 +0.336037 +-0.150119 +0.834997 +0.740286 +0.603509 +0.551382 +0.930986 +0.588864 +0.757628 +-0.105798 +0.323249 +0.625043 +0.545051 +0.676837 +0.475202 +0.468967 +0.895524 +-0.117274 +0.722487 +0.672391 +0.537633 +0.929966 +-0.355065 +0.749929 +0.345308 +0.159661 +0.393541 +0.829779 +0.903350 +0.816543 +0.755165 +-0.039340 +0.938993 +0.931902 +0.191776 +-0.109042 +0.805371 +0.741396 +0.701358 +0.836801 +-0.151479 +0.877679 +0.744620 +0.679415 +0.799760 +0.770230 +0.883208 +0.009831 +0.779851 +0.596792 +0.875618 +0.619994 +0.912774 +0.302952 +0.495815 +0.757589 +0.514637 +-0.214919 +-0.198993 +0.283773 +0.766975 +0.923835 +0.946551 +0.705616 +0.709296 +0.688543 +0.922986 +0.818699 +0.310022 +0.943247 +0.344410 +0.637260 +0.544488 +0.930380 +0.030695 +0.728570 +0.943698 +0.840183 +0.551164 +0.701757 +0.949675 +0.851735 +0.793859 +0.306686 +0.466754 +0.779242 +0.927764 +0.946205 +0.970170 +0.738202 +0.854875 +0.641021 +0.985267 +0.921558 +0.053912 +0.887436 +0.976851 +0.935594 +0.994902 +0.831605 +0.943911 +0.992605 +0.623636 +0.945932 +0.710663 +0.827993 +0.895758 +0.980116 +0.940192 +0.988828 +0.426232 +-0.028199 +0.395913 +0.779410 +0.465135 +0.309508 +0.034707 +0.610156 +0.440312 +-0.179203 +0.797989 +0.815845 +0.867547 +0.125385 +0.627474 +0.701746 +0.711226 +0.914886 +0.900961 +0.763637 +0.830221 +0.826093 +0.890112 +-0.374180 +0.886161 +-0.045724 +0.827142 +0.733788 +0.846191 +0.724743 +0.923865 +0.725036 +0.607935 +-0.021388 +0.436316 +0.929540 +0.019253 +0.361375 +0.357500 +0.618085 +0.986948 +0.772970 +0.405781 +0.981305 +0.597367 +0.763482 +0.473821 +0.743556 +0.945297 +0.927713 +0.861944 +0.738414 +0.958710 +0.462856 +0.255167 +0.936729 +0.827933 +0.578980 +0.503770 +0.455516 +0.762136 +0.844829 +0.922716 +0.767193 +0.867213 +0.935105 +0.463665 +0.915750 +0.951310 +0.150024 +0.218896 +0.023146 +0.992187 +0.588364 +0.884387 +0.522158 +0.610071 +0.408735 +0.937579 +0.995225 +0.675910 +0.739109 +-0.203338 +0.166708 +0.836069 +0.906719 +0.788354 +0.697112 +0.935972 +0.840529 +0.087727 +0.806053 +0.894577 +0.958688 +-0.176106 +0.931138 +0.666763 +0.581626 +0.404583 +0.537464 +0.800714 +0.804678 +0.739328 +0.865131 +0.903800 +0.264428 +0.856299 +0.296544 +0.677737 +-0.089597 +0.620844 +-0.102515 +0.720613 +0.844550 +-1.181939 +0.806920 +0.647893 +-0.277554 +0.592490 +0.974159 +0.850241 +-0.297181 +-0.000777 +0.431588 +0.229749 +0.288830 +0.836924 +-0.173448 +0.348784 +0.884470 +-0.254437 +0.680343 +0.383330 +0.649359 +0.883135 +0.793328 +-0.084428 +0.635058 +0.306765 +0.339743 +0.879965 +0.413850 +0.609355 +0.931312 +0.636708 +0.467098 +0.424029 +0.881779 +0.972736 +0.628191 +0.493369 +0.564227 +0.800088 +0.951725 +-0.656563 +0.993779 +0.731782 +0.925405 +0.997309 +0.908706 +0.519884 +-0.470056 +0.962655 +0.949226 +0.358443 +0.642708 +0.767345 +0.933169 +0.844198 +-0.363593 +0.350203 +0.913923 +0.148250 +0.846769 +0.932891 +0.910421 +0.274517 +0.831368 +0.493740 +0.545442 +0.033137 +0.712010 +0.557935 +0.301453 +-1.566067 +0.910957 +0.672292 +0.517335 +0.898626 +0.335843 +0.995018 +0.535634 +0.740585 +0.364510 +0.674781 +0.605398 +0.634029 +0.451587 +0.565903 +0.472331 +0.523940 +0.495155 +0.489132 +0.199347 +0.426166 +0.669365 +0.827190 +0.135655 +-0.230482 +0.794029 +0.639726 +0.775105 +0.853171 +0.936198 +0.766994 +0.485306 +0.925844 +0.809458 +0.727613 +0.786065 +0.800980 +0.578627 +0.510713 +0.264640 +0.764543 +0.750358 +0.624937 +0.432824 +-0.345132 +0.570356 +0.835772 +0.889010 +0.897875 +0.851342 +0.083094 +0.831402 +0.978148 +0.858013 +0.359828 +0.848048 +0.894576 +0.542067 +0.275340 +0.358000 +0.121271 +0.741923 +0.978169 +0.817241 +0.559330 +0.269098 +0.730162 +0.745306 +0.859414 +0.652442 +0.785659 +0.875319 +0.739216 +0.879582 +0.843108 +0.932662 +0.682859 +0.737039 +0.967783 +0.859088 +0.808266 +0.298370 +0.933245 +-0.453516 +0.702588 +0.381650 +0.970300 +0.850318 +0.886479 +0.403216 +0.584413 +0.980132 +0.366333 +0.385056 +0.936995 +0.814574 +0.725494 +0.717392 +0.934928 +0.928760 +0.486364 +0.783202 +0.906838 +0.809052 +0.944834 +0.898353 +0.464783 +0.763114 +0.983910 +0.907416 +0.592310 +0.679968 +0.756804 +0.754002 +0.738959 +0.873711 +0.960300 +0.763228 +-0.032366 +0.750196 +0.771770 +0.865995 +0.434868 +0.672374 +0.763101 +-0.010810 +0.652896 +0.723149 +0.483876 +0.728276 +0.745987 +-1.693880 +0.870721 +-0.062228 +-0.224998 +0.784849 +0.213202 +0.870758 +0.882626 +-0.000773 +0.867880 +0.598533 +0.851477 +0.878204 +0.905429 +0.502796 +0.377021 +0.935769 +0.828257 +0.817717 +0.881209 +0.670576 +0.502639 +0.614997 +0.490313 +0.874448 +0.927725 +0.737033 +0.507422 +0.863765 +0.674534 +0.860243 +0.928225 +0.353836 +0.938146 +0.854298 +0.812747 +0.706770 +0.935688 +0.767357 +0.892620 +0.701012 +0.760351 +0.781055 +0.055431 +0.933678 +0.902430 +0.444008 +0.249741 +0.070710 +0.601803 +0.631220 +0.891189 +0.254695 +0.601345 +0.512243 +0.817301 +0.793630 +0.878533 +0.433295 +0.567164 +0.871141 +0.803779 +0.677008 +0.932429 +0.273691 +0.321593 +0.744416 +0.670659 +0.828882 +0.130326 +0.359419 +0.529460 +0.194629 +0.671796 +0.758874 +-1.354538 +0.689164 +0.617625 +0.813855 +0.496963 +0.396414 +0.252688 +0.075357 +0.601091 +0.926574 +0.250330 +0.377220 +0.390046 +-0.198723 +0.506424 +-0.386107 +0.535428 +0.213486 +0.906517 +0.472902 +0.716362 +0.290732 +0.225988 +0.495783 +0.160173 +0.842088 +0.310808 +0.844688 +0.913087 +0.782663 +0.440703 +0.109193 +0.626278 +0.478385 +0.875930 +0.273171 +0.964797 +0.767236 +0.841815 +0.663012 +0.710926 +0.896965 +0.726505 +0.696310 +0.775364 +0.666619 +0.331227 +0.744919 +0.787174 +0.566287 +-0.289350 +-0.246905 +0.888374 +0.541726 +0.244485 +-0.182262 +0.928831 +0.620812 +0.899618 +0.876636 +0.178646 +0.055784 +0.498394 +-0.164116 +0.412995 +0.764637 +0.094877 +0.576195 +0.526125 +-0.444958 +0.666465 +0.769858 +0.882806 +0.906157 +-0.200068 +0.778260 +0.925472 +0.653913 +0.798887 +0.538066 +0.254891 +0.751329 +0.723074 +0.277992 +0.170523 +0.322207 +0.506450 +0.795479 +0.464547 +0.810516 +0.901178 +0.739207 +0.554253 +0.815245 +0.904027 +0.427141 +0.904916 +0.463232 +0.680754 +0.444605 +0.832962 +0.582918 +0.920069 +0.257076 +0.822042 +-25.935942 +0.371812 +-0.217407 +0.866854 +0.699118 +0.386184 +0.810716 +0.847822 +0.733144 +0.178182 +0.189000 +0.508078 +0.096073 +0.477411 +0.574755 +0.449201 +0.735758 +0.660513 +0.699822 +0.319926 +0.355533 +0.809621 +0.532524 +0.532741 +0.785763 +0.342702 +0.718109 +0.737304 +-0.205011 +0.705648 +0.356015 +0.910843 +0.014797 +0.754222 +0.488275 +0.337509 +0.470721 +0.615336 +0.011538 +0.109898 +0.390278 +0.664480 +0.754299 +0.725809 +-1.803473 +0.437099 +0.746733 +0.691225 +0.860881 +0.738416 +-0.103028 +0.587821 +-0.125216 +-0.290111 +0.522865 +0.255315 +0.724612 +-0.166605 +0.775413 +0.551524 +-0.207185 +-0.103298 +0.834171 +0.659907 +0.927670 +0.935353 +-0.219745 +0.790619 +0.756269 +0.668457 +0.537669 +0.689935 +0.727140 +0.458306 +0.918547 +0.920093 +0.673880 +0.692421 +0.754214 +0.868882 +0.624804 +0.911883 +0.585640 +0.788605 +0.711011 +0.456850 +0.974934 +0.866082 +0.869367 +0.514425 +0.872178 +0.488676 +0.422742 +0.766695 +0.949201 +0.942672 +0.918021 +0.975265 +0.683450 +0.937417 +0.914884 +0.891120 +0.805495 +0.516180 +0.360981 +0.747784 +0.965225 +0.885113 +0.093657 +0.876487 +0.929351 +0.248569 +0.937373 +0.822928 +0.983359 +0.793549 +0.682905 +0.808650 +0.682520 +0.895794 +0.685627 +0.916148 +0.309645 +0.327171 +0.691106 +0.401559 +-0.008075 +0.296263 +0.540901 +0.782104 +-0.123044 +0.915502 +0.390270 +0.767709 +0.215571 +0.744461 +0.900756 +0.729710 +0.894424 +0.804755 +0.560072 +0.499714 +0.060447 +0.297867 +-0.164895 +0.884146 +0.555220 +0.445897 +0.403846 +0.184491 +0.729778 +0.352424 +0.536489 +0.385758 +0.831774 +0.448542 +0.101079 +0.480589 +0.952314 +-0.241102 +-0.014634 +0.472293 +-0.187319 +0.810340 +0.260071 +-0.288052 +0.620529 +-0.306460 +0.189629 +0.500442 +-0.265515 +0.538832 +-1.395059 +0.916218 +0.525331 +0.476828 +0.487770 +0.550081 +0.479180 +0.654415 +0.543359 +-0.100273 +0.626729 +0.622157 +-0.251975 +0.620442 +0.268575 +0.567488 +0.841705 +-0.207906 +0.771595 +0.573519 +0.139305 +0.799698 +0.857820 +0.971813 +0.571163 +0.886033 +0.757950 +0.610733 +0.655680 +0.733480 +0.982359 +0.919343 +0.347322 +-0.080966 +0.846857 +0.585199 +0.750622 +0.411001 +0.790653 +0.862664 +0.851210 +0.845762 +0.285252 +0.414306 +0.817985 +0.719096 +0.787133 +0.399824 +-0.228739 +0.282535 +0.618366 +0.876529 +0.447352 +0.884887 +0.263560 +0.738608 +0.875030 +0.337213 +0.443761 +0.798482 +0.924897 +0.714785 +0.803427 +0.658708 +0.540350 +0.426945 +0.718022 +-0.014559 +0.870771 +0.443777 +0.737275 +0.698105 +0.922509 +0.896074 +0.966314 +0.739025 +0.218100 +0.394896 +0.786510 +0.898762 +0.692433 +0.928382 +0.886006 +0.885504 +0.632113 +0.761673 +0.805534 +0.915271 +0.705596 +0.405800 +0.186734 +0.918332 +0.390339 +0.406620 +0.917342 +0.921787 +0.881113 +0.231077 +0.584398 +0.527884 +0.966386 +0.964128 +0.437922 +0.255694 +0.844844 +0.901245 +0.909027 +0.926538 +0.086842 +0.406191 +0.648836 +0.864818 +0.698180 +0.869637 +0.991493 +0.641340 +0.292418 +0.574033 +-15.960570 +0.341434 +0.555918 +0.918154 +0.264515 +0.596919 +0.841105 +0.428824 +0.618502 +0.805556 +0.949275 +0.691860 +0.612921 +0.602205 +0.613908 +0.914793 +0.557070 +0.839902 +0.707108 +0.578798 +0.638437 +0.043780 +0.776677 +0.520076 +0.922587 +0.733155 +0.892579 +0.095316 +0.922169 +0.578244 +0.479113 +0.605672 +-0.127936 +0.560656 +0.859073 +0.944999 +0.940944 +0.789265 +0.789917 +0.977751 +0.696171 +0.975322 +0.331105 +0.607094 +0.987484 +-2.765118 +0.884736 +0.649479 +-0.027080 +0.105258 +0.463143 +0.826532 +0.375895 +0.559785 +0.700870 +0.930256 +0.639722 +0.899927 +0.885602 +0.456964 +0.731679 +0.862521 +0.823765 +0.644971 +0.070171 +0.904348 +-0.118711 +0.044762 +0.923716 +0.952017 +0.806135 +0.820140 +0.679211 +0.786826 +0.851807 +0.574063 +0.731051 +0.885879 +0.350644 +0.721141 +0.977253 +0.274170 +0.817378 +-0.184293 +0.821830 +-0.201862 +0.856237 +0.335636 +0.737014 +0.899415 +0.727293 +0.883559 +0.839766 +0.841974 +0.700315 +0.734605 +0.688251 +0.926322 +-0.425845 +0.873455 +0.559526 +-0.053419 +0.535319 +0.939711 +0.522786 +0.113058 +0.468458 +-0.226727 +-0.042885 +0.664153 +0.041144 +0.702520 +0.382441 +0.834035 +0.509473 +-0.253458 +0.166588 +0.487528 +0.267759 +0.509140 +0.613162 +0.778898 +0.471688 +0.729094 +0.725677 +0.719100 +0.794507 +0.459351 +0.679351 +0.586172 +0.696379 +0.507887 +0.652188 +0.895223 +0.665408 +0.718204 +0.647997 +0.225960 +0.773358 +0.741088 +0.283173 +0.797232 +0.866996 +0.214441 +0.798164 +0.359715 +0.466291 +-0.215120 +0.087118 +0.148135 +0.707266 +0.515011 +0.757342 +-0.382327 +0.773518 +0.716401 +0.602174 +0.040486 +0.429838 +0.746987 +0.163941 +0.923215 +0.363190 +-0.008568 +0.568124 +0.339952 +0.646248 +0.712973 +0.553726 +0.769829 +0.872768 +0.131268 +0.804795 +0.398339 +0.297877 +0.459502 +0.292954 +0.419782 +0.770046 +0.845901 +0.777392 +0.781509 +0.129807 +0.842010 +0.582595 +0.739709 +0.147987 +-0.283258 +0.364694 +0.168312 +0.355455 +0.453255 +0.720391 +0.460586 +0.327509 +0.512668 +0.911495 +0.565445 +0.631030 +0.401522 +0.931282 +0.485589 +0.498774 +0.906572 +0.930673 +0.486072 +0.919122 +0.441323 +0.749764 +0.569416 +0.231661 +0.347568 +0.464982 +0.954560 +0.882565 +0.497828 +0.297977 +-2865.069486 +0.914805 +0.348048 +0.534416 +0.459141 +0.623049 +0.867178 +0.470758 +0.730649 +0.805077 +0.862935 +0.579225 +0.652060 +0.469052 +0.365573 +0.408571 +0.337727 +0.336427 +0.855449 +0.609079 +0.706665 +0.451676 +0.971567 +0.542444 +0.653744 +0.404224 +0.954143 +0.667420 +0.780214 +0.576571 +0.944085 +-248.936868 +-78.908612 +0.589087 +-21.746311 +0.573992 +0.778525 +-73.362383 +0.707360 +0.974705 +0.799964 +0.770080 +0.804132 +0.882666 +0.406055 +0.694774 +0.806295 +0.462850 +0.756417 +0.751329 +0.312057 +0.597304 +0.785269 +0.288684 +0.434090 +0.303699 +0.876833 +0.809860 +0.291675 +0.271936 +0.762760 +0.889243 +0.408520 +0.396954 +-28.111019 +0.416650 +-0.818828 +-0.428099 +0.998323 +-33.881288 +0.270295 +0.359253 +0.364972 +0.788916 +0.582639 +0.059237 +0.228857 +0.240526 +0.445741 +0.152449 +0.525149 +0.226544 +0.426462 +-0.085764 +0.052038 +-3.079225 +0.845813 +-13.711675 +0.929104 +0.929104 +0.983488 +0.783840 +0.924716 +0.658601 +0.663678 +-0.361553 +0.708054 +0.040893 +0.314958 +0.930705 +0.926383 +0.906797 +0.380997 +0.614367 +0.920731 +0.949214 +0.918721 +0.611122 +0.954911 +0.847988 +0.861297 +0.910689 +0.808432 +0.966873 +0.990128 +0.874593 +0.765445 +0.645590 +0.719856 +0.663030 +0.588588 +0.873152 +0.913784 +0.906380 +0.689641 +0.921540 +0.921348 +0.921700 +0.644033 +0.614210 +0.610607 +0.836526 +0.700716 +0.315702 +0.490970 +0.911558 +0.839498 +0.825858 +0.324051 +0.634737 +0.765216 +0.839856 +0.904011 +-0.148393 +0.978364 +0.546179 +0.310021 +0.298788 +0.329288 +0.813414 +0.469795 +0.501379 +0.827958 +0.811583 +0.739883 +0.342029 +0.169888 +0.654032 +0.334203 +0.751827 +0.665786 +0.827511 +0.727132 +0.676053 +0.980513 +-887.267757 +0.699884 +0.448941 +0.538528 +0.613338 +0.885386 +0.859272 +0.230742 +-56.574779 +-9853887.729063 +0.732174 +0.982800 +0.665557 +0.598047 +0.869308 +0.961714 +0.753444 +0.493768 +0.745849 +0.399685 +0.476393 +0.371927 +0.900906 +0.457400 +0.644153 +0.775458 +0.836912 +0.767288 +0.461744 +0.634346 +-1610.259121 +-51.193824 +0.871609 +-149.042172 +0.880267 +0.983560 +0.805177 +0.834461 +0.461271 +0.820973 +0.392965 +0.774657 +0.261478 +0.778451 +0.309199 +0.893336 +0.365255 +0.914104 +0.864605 +0.865690 +0.879065 +0.823918 +0.901885 +0.921476 +0.914264 +0.805926 +0.879944 +0.672077 +0.373854 +0.538910 +0.300680 +0.594678 +0.274390 +0.406547 +0.411326 +0.506232 +0.901451 +0.738972 +0.635584 +0.483995 +0.662466 +0.825878 +0.583217 +0.743986 +0.933530 +0.639974 +0.611112 +0.505578 +0.543857 +0.423428 +0.640809 +0.756805 +0.784562 +0.585523 +0.893659 +0.805737 +0.619872 +0.676817 +0.825038 +0.577075 +0.456720 +0.513202 +0.464124 +0.464074 +0.464074 +0.420097 +0.416985 +0.631454 +0.408735 +0.339484 +0.499533 +0.845246 +0.782740 +0.518229 +0.904913 +0.429370 +0.900831 +0.697578 +0.747812 +0.354835 +0.765199 +0.792015 +0.900359 +0.519243 +0.825497 +0.931843 +-29.371613 +-5.563606 +0.291125 +0.489590 +0.330152 +0.264467 +0.855079 +0.730048 +0.151505 +0.464883 +0.818151 +0.099654 +0.992974 +0.945203 +0.873430 +0.908498 +0.801431 +0.936043 +0.949417 +0.753345 +0.626640 +0.552822 +0.696692 +0.441639 +0.140605 +0.696241 +0.895115 +0.924758 +0.900888 +0.894798 +0.978132 +0.841351 +0.957079 +0.452588 +0.935417 +0.682540 +0.935717 +0.808687 +0.780112 +0.166966 +0.994443 +0.986623 +0.880483 +0.634932 +0.797759 +0.766073 +0.914788 +0.779875 +0.933506 +0.734432 +0.969389 +0.312600 +0.797934 +0.799381 +0.439948 +0.604959 +0.526904 +0.607792 +0.400666 +0.506894 +0.939432 +0.969355 +0.894070 +0.996949 +0.456071 +0.741913 +0.883639 +-10.657811 +0.582439 +0.919672 +0.855117 +0.911883 +0.813050 +0.843757 +0.796595 +0.761749 +0.693829 +0.901095 +0.845777 +0.343683 +0.788143 +0.868805 +0.203485 +0.285623 +0.636670 +0.414229 +0.370343 +0.310114 +0.875399 +0.419201 +0.389341 +0.315505 +0.583453 +0.259928 +0.219241 +0.694379 +0.994452 +0.793934 +0.848703 +0.942795 +0.536784 +0.774496 +0.462548 +0.704002 +0.619605 +0.616925 +0.543604 +0.733070 +0.515726 +0.608341 +0.944607 +0.912803 +0.562758 +0.559311 +0.872499 +0.883830 +0.865823 +0.837509 +0.508202 +0.657498 +0.742501 +0.324966 +0.753155 +0.719693 +0.351009 +0.877632 +0.901368 +0.588576 +0.504276 +0.388257 +0.356220 +0.485905 +0.315976 +0.375605 +0.601782 +0.863460 +0.676696 +0.824644 +0.796973 +0.922427 +0.935637 +0.628636 +0.951678 +0.882579 +0.385549 +0.920452 +0.929623 +0.512621 +0.992342 +0.948052 +0.651901 +0.729818 +0.939321 +0.336209 +0.293596 +0.808314 +0.914698 +0.962129 +0.432946 +0.417876 +0.822202 +0.270186 +0.975427 +0.723900 +0.130636 +0.050708 +0.842710 +-24.778096 +0.557291 +0.947285 +0.704615 +0.918713 +0.503222 +0.563419 +0.897920 +0.746498 +0.829298 +0.879777 +0.917482 +0.947961 +0.978897 +0.684431 +0.950136 +0.859334 +0.910188 +0.781374 +0.739397 +0.863529 +0.862559 +0.955613 +0.985275 +0.611250 +0.713579 +0.909727 +0.429147 +0.940715 +0.701843 +0.988556 +0.871120 +0.845102 +0.995402 +0.722203 +0.531773 +0.745922 +0.289547 +0.999255 +0.170607 +0.525399 +0.504854 +0.440819 +0.469722 +0.502849 +0.485477 +0.489066 +0.946195 +0.974506 +0.428975 +0.488845 +0.460033 +0.440017 +0.912032 +0.676154 +0.949557 +0.971964 +0.602474 +0.957176 +0.562534 +0.864213 +0.754573 +0.695451 +0.304900 +0.801585 +0.948039 +0.664318 +0.535113 +0.511180 +0.692769 +0.952299 +0.809378 +0.769093 +0.513471 +0.539266 +0.129058 +0.267396 +0.363959 +0.382434 +0.449407 +0.631643 +0.525048 +0.534325 +0.365002 +0.974536 +0.313033 +0.967061 +0.969686 +0.754331 +0.933920 +0.576155 +0.932023 +0.230540 +0.473489 +0.489654 +0.555223 +0.688391 +0.282295 +0.966369 +0.438524 +0.644682 +0.473928 +-0.110637 +0.259276 +0.506331 +0.830680 +-0.087637 +0.209350 +0.862858 +0.189688 +0.268855 +0.504452 +0.705588 +-0.020080 +-0.070981 +0.263722 +0.111450 +0.964531 +0.148846 +-0.367379 +0.330476 +0.435688 +0.544389 +0.912928 +0.473138 +0.310021 +0.263325 +0.986471 +0.754102 +0.118413 +0.294764 +0.918823 +0.237796 +0.392922 +0.096667 +0.561637 +0.288860 +0.841459 +0.229680 +0.664144 +0.467949 +-0.026044 +0.140997 +0.342371 +0.121797 +0.773569 +0.650403 +0.720614 +0.899114 +0.251386 +-1.977311 +0.017259 +0.421670 +0.522390 +0.641516 +0.777323 +0.528776 +0.907423 +0.903140 +0.527240 +0.626956 +0.562718 +0.293665 +0.249505 +0.501861 +0.381188 +0.451127 +0.409243 +0.101019 +0.569075 +0.515961 +0.321443 +0.936892 +-2.440018 +0.594821 +0.443455 +0.490535 +0.531274 +0.592895 +0.427862 +0.563162 +0.325923 +0.371571 +-0.007353 +0.840586 +0.944438 +-7.490980 +0.067067 +0.110213 +0.189290 +0.426894 +0.754507 +0.057822 +-0.119595 +-0.247075 +0.376691 +0.011096 +0.927881 +0.913955 +0.221582 +0.858059 +0.254809 +0.855788 +-0.033351 +0.027380 +-0.066811 +0.286056 +-14.594662 +0.017303 +0.635448 +0.943823 +0.728854 +0.783395 +0.912758 +0.851300 +0.874259 +0.965350 +0.883108 +-1.597297 +0.931159 +0.054361 +0.531953 +0.284459 +-0.001129 +0.324418 +0.770153 +0.753538 +-4.494598 +0.472719 +0.828795 +0.588351 +-3.840653 +0.682211 +0.574097 +0.526184 +0.612804 +0.466050 +0.744482 +0.622911 +0.689909 +0.729193 +0.413073 +0.251306 +0.517188 +0.511299 +0.620938 +0.730023 +0.747907 +0.887673 +0.667564 +0.852492 +0.545575 +0.351994 +0.951570 +0.797324 +0.902186 +0.323109 +0.737217 +0.837485 +0.898934 +0.362383 +0.453860 +0.291096 +0.856287 +0.740119 +0.917062 +0.650599 +0.278878 +0.802751 +0.191354 +0.586297 +-87.135504 +0.774728 +0.694490 +0.657926 +0.878451 +0.645070 +0.821926 +0.770430 +0.597321 +0.372342 +0.792603 +0.642813 +0.586402 +0.230070 +0.324378 +0.567139 +0.654858 +0.783838 +0.768251 +0.665067 +0.676725 +0.460568 +0.512269 +0.826617 +0.620210 +0.711618 +0.563608 +0.676323 +0.731270 +0.902711 +0.687085 +0.780769 +0.799908 +0.871718 +-0.198285 +0.944929 +0.771880 +0.533371 +0.406215 +0.829377 +0.670447 +0.831046 +0.057245 +0.132064 +0.474565 +0.144773 +0.507944 +0.685160 +0.890706 +0.660951 +0.893231 +0.824862 +0.551839 +0.825525 +0.649800 +0.903200 +0.908489 +0.788376 +0.710111 +0.815740 +0.953307 +0.907077 +0.345224 +0.672439 +0.472965 +0.365135 +0.011499 +0.047611 +0.592540 +0.769280 +0.888656 +0.618160 +0.485463 +0.699853 +0.644814 +0.970649 +0.491662 +0.638763 +0.497330 +0.653759 +0.733464 +0.409965 +0.882701 +0.798169 +0.333667 +0.829550 +0.727388 +0.632867 +-84.725302 +0.742647 +0.658345 +0.774535 +-76.482266 +0.672633 +0.935191 +0.796529 +0.698235 +0.257385 +0.465389 +0.341764 +0.334389 +0.844288 +0.533254 +0.351529 +0.063421 +0.888402 +0.563914 +0.657170 +0.614306 +0.353829 +0.862711 +0.944515 +0.326410 +0.775910 +0.898290 +0.631669 +0.561374 +0.316973 +0.514079 +0.504707 +0.536641 +0.536728 +0.378344 +0.597111 +0.854394 +0.871322 +0.581134 +0.809609 +0.664136 +0.929542 +0.779114 +0.841666 +0.764622 +0.927097 +0.312322 +0.392243 +0.557854 +0.586362 +0.878446 +0.551449 +0.725216 +0.332387 +0.759149 +0.545367 +0.661977 +0.314451 +0.379048 +0.734240 +0.292850 +0.143468 +0.353322 +0.948178 +0.385522 +0.643107 +0.785320 +0.471349 +0.208667 +-0.613442 +0.587902 +0.235397 +0.120124 +0.514685 +0.830496 +0.433599 +0.050972 +0.210704 +0.322331 +0.433567 +0.841984 +0.807999 +0.213908 +-0.593139 +0.799365 +0.859284 +0.809733 +0.780986 +0.924101 +0.569356 +0.924466 +0.921517 +0.938665 +0.944447 +0.372379 +0.651995 +0.637265 +0.998708 +0.942512 +0.918953 +0.975940 +0.976990 +0.976054 +0.999329 +0.838348 +0.933533 +0.869495 +0.679724 +0.899459 +0.656197 +0.850377 +0.885718 +0.869524 +0.608881 +0.929488 +0.921952 +0.773637 +0.816544 +0.944829 +0.793138 +0.648816 +0.654493 +0.900323 +0.703611 +0.735382 +0.888306 +0.764266 +-9.507094 +0.914392 +0.934469 +0.914360 +0.919603 +0.679782 +0.933390 +0.701516 +0.935451 +0.905354 +0.921476 +0.918096 +0.906462 +0.928226 +0.928722 +0.672862 +0.934059 +0.597552 +0.915267 +0.914438 +0.376561 +0.491568 +0.921870 +0.260979 +0.929549 +0.925437 +0.544529 +0.997440 +0.931969 +0.825298 +0.450778 +0.370646 +0.536933 +0.492378 +0.408688 +0.422831 +0.939184 +0.936098 +0.914710 +0.871141 +0.875961 +0.013062 +0.961644 +0.961910 +0.211213 +0.408500 +0.918652 +0.913068 +0.234176 +0.302425 +0.921852 +0.239491 +0.407459 +0.953993 +0.821351 +0.918625 +0.920017 +0.108253 +0.830909 +0.969643 +0.334180 +0.784694 +0.863522 +0.951564 +0.442119 +0.408538 +0.744071 +0.642934 +0.743194 +0.928656 +0.895273 +0.954994 +0.862676 +0.865472 +0.924964 +0.819349 +-47.500293 +0.853253 +0.813915 +0.793362 +0.904603 +0.992222 +0.764105 +0.479346 +0.897015 +0.436378 +0.795399 +0.668052 +0.926934 +0.757954 +0.656373 +0.805222 +0.979679 +0.669228 +0.743459 +0.885525 +0.700222 +0.936799 +0.906924 +0.915271 +0.948201 +0.657593 +0.101867 +0.991233 +0.736575 +0.888258 +0.938447 +0.930140 +0.937281 +0.918471 +0.928448 +0.937166 +0.922055 +0.923644 +0.906571 +0.639014 +0.883176 +0.542195 +0.570108 +0.056795 +0.550898 +0.577614 +0.887949 +0.747439 +0.962672 +0.825846 +0.206441 +0.896303 +0.121235 +0.033711 +0.809978 +0.460971 +0.195707 +0.260041 +0.856125 +0.405988 +0.368127 +0.750561 +0.115306 +0.181009 +-0.068315 +0.261727 +0.303792 +0.051878 +-0.412802 +0.598043 +0.692548 +0.148193 +0.438789 +0.546057 +0.241404 +0.234014 +0.928836 +0.686313 +0.739093 +0.827032 +0.671658 +0.681884 +0.910963 +0.785080 +0.991496 +0.504474 +0.981762 +0.706247 +0.679389 +0.728731 +0.681715 +-0.402872 +0.929104 +0.914168 +0.936025 +0.921252 +0.450284 +0.651748 +0.994174 +0.716628 +-0.211955 +0.664123 +0.901619 +0.797147 +0.341361 +0.598638 +0.743003 +0.445811 +0.689145 +0.042107 +0.744404 +0.298889 +0.807832 +0.708322 +0.842783 +0.613087 +0.793691 +0.866220 +0.507396 +0.644347 +0.932759 +0.759087 +0.570356 +0.946788 +0.866034 +0.509346 +0.256766 +0.902320 +0.917383 +0.790432 +0.773969 +0.740297 +0.995175 +0.700929 +0.941386 +0.685893 +0.694219 +0.653864 +0.504099 +0.666772 +0.907432 +0.670615 +0.919746 +0.905840 +0.750929 +-20.263663 +0.897775 +-17630.475410 +0.739158 +0.760726 +0.714005 +0.971635 +0.608330 +0.886165 +0.908384 +0.266186 +0.898295 +0.810386 +0.675686 +0.762981 +0.751444 +0.856659 +0.775544 +0.988116 +0.564807 +0.664981 +0.721751 +0.385624 +0.270860 +0.278214 +0.391161 +0.669961 +0.862533 +0.873420 +0.863272 +0.778676 +0.573843 +0.748772 +0.749536 +0.745338 +0.832412 +0.715724 +0.625837 +0.743724 +0.783811 +0.905358 +0.753568 +0.654498 +0.723451 +0.601311 +0.733468 +0.759194 +0.735299 +0.713844 +0.802784 +0.324292 +0.767640 +0.815188 +0.747963 +0.781371 +0.553030 +0.510846 +0.649843 +0.895838 +0.933481 +0.719170 +0.248649 +0.260987 +0.279782 +0.354876 +0.208086 +0.410814 +0.356134 +0.375571 +0.425472 +0.940453 +0.814577 +0.888315 +0.759756 +0.934436 +-17.487400 +-55.659144 +0.904738 +0.768405 +0.788807 +0.817821 +0.907475 +0.762596 +0.709450 +0.466862 +0.063856 +0.885910 +0.850809 +-3067.534642 +0.962280 +0.820476 +-0.312956 +0.939511 +0.223466 +0.937097 +0.748993 +0.823770 +0.802135 +0.804398 +-7.340157 +0.488758 +0.977930 +0.675201 +0.769721 +0.945529 +0.413077 +0.315564 +0.930701 +0.667386 +0.445148 +-0.784749 +0.238342 +0.255941 +-0.220030 +0.294840 +-0.886451 +0.464680 +0.574424 +0.553914 +0.217454 +0.235621 +-8.584005 +0.052696 +0.464004 +0.521238 +0.365176 +0.656203 +0.898868 +0.489581 +0.349661 +0.382349 +0.784768 +0.660777 +0.276448 +0.963213 +0.855152 +0.760217 +0.473329 +0.431833 +0.242551 +0.972787 +0.266028 +0.599087 +0.961818 +0.821712 +0.330913 +0.786616 +0.982013 +0.938942 +0.936525 +0.372936 +0.462998 +0.582662 +0.896482 +0.518808 +0.917863 +0.442548 +0.751411 +0.841497 +0.931788 +0.534796 +0.990509 +0.905080 +0.584644 +0.405245 +0.324470 +0.236966 +0.505100 +0.555968 +0.617317 +0.118271 +0.709582 +0.442719 +0.933282 +0.157667 +0.313165 +0.371862 +0.386543 +0.952949 +0.277216 +0.856124 +0.386927 +0.316664 +0.456920 +0.552471 +0.352534 +0.654744 +0.324093 +0.974249 +0.350812 +0.580832 +0.920287 +0.731151 +0.776579 +0.427706 +0.813164 +0.003058 +0.363333 +0.948832 +0.868148 +0.389424 +0.087526 +0.854827 +0.504570 +0.665267 +0.256439 +0.695757 +0.315293 +0.280879 +0.962834 +0.808613 +0.440383 +0.332238 +0.109202 +0.810428 +0.352939 +0.913081 +0.965762 +0.788161 +0.917910 +0.915084 +0.497956 +0.938766 +0.558586 +0.458812 +0.595185 +0.381985 +0.423325 +0.283175 +0.787111 +0.510857 +0.716308 +0.450358 +0.382393 +0.660307 +0.333860 +0.803373 +0.924667 +0.216766 +0.851289 +0.568660 +0.984986 +0.183647 +0.442069 +0.455942 +0.487381 +0.638864 +0.923392 +0.649678 +0.916972 +0.393816 +0.986365 +0.445458 +0.670282 +0.924691 +0.621338 +0.660465 +0.782235 +0.593766 +0.904047 +0.497138 +0.693101 +0.997599 +0.443906 +0.808358 +0.804033 +0.918460 +0.853153 +0.606650 +0.767163 +0.131282 +0.159211 +0.329296 +0.612008 +0.930293 +0.996543 +0.587221 +0.540485 +0.599165 +0.638639 +0.922125 +0.979129 +0.906861 +0.924760 +0.380250 +0.610030 +0.766814 +0.495017 +0.984001 +0.449718 +0.588641 +0.441271 +0.178271 +0.331441 +0.492918 +0.885426 +-0.048940 +0.022880 +-0.199356 +0.956055 +0.772607 +0.348445 +0.330698 +0.047071 +0.126102 +0.146854 +-0.276060 +0.308457 +0.813868 +0.176612 +0.867213 +0.117284 +0.243251 +0.538674 +0.307011 +0.485987 +0.568286 +0.139283 +-0.016576 +0.565801 +0.656325 +0.717060 +0.624777 +0.771759 +0.308711 +0.351132 +0.753819 +0.570956 +0.748544 +0.904768 +0.806977 +0.693292 +0.532447 +0.658879 +0.587627 +0.612407 +0.761313 +0.558063 +0.429490 +0.556661 +0.377085 +0.745583 +0.329336 +0.257232 +-0.069384 +0.316758 +0.804813 +0.058313 +0.413334 +-16.752533 +0.120890 +0.293206 +-0.308194 +0.187902 +0.667849 +0.204066 +-0.188487 +0.621698 +0.842237 +0.908362 +0.813131 +0.049905 +0.893114 +0.874560 +0.824872 +0.827441 +0.780549 +0.779586 +0.961059 +0.975119 +0.883965 +0.246580 +0.698928 +0.928478 +0.735291 +0.787108 +0.582390 +0.837889 +0.566422 +0.932532 +0.878520 +0.866695 +0.970199 +0.937239 +0.874931 +0.741753 +0.677699 +0.872398 +0.635883 +0.858154 +0.904507 +0.767114 +0.974509 +0.993012 +0.876037 +-0.351139 +0.297497 +0.162299 +0.836901 +0.491485 +0.104611 +0.108659 +0.096122 +0.263066 +0.269889 +0.265239 +0.263019 +0.221309 +0.511825 +0.543730 +0.068580 +0.803241 +0.691898 +0.537153 +-0.226308 +0.381625 +0.389448 +0.993042 +0.476549 +0.552509 +0.978114 +0.977586 +0.405117 +0.275314 +-0.178495 +-0.007831 +0.522952 +0.973339 +0.499680 +0.444137 +0.461337 +0.429096 +0.305024 +0.700045 +0.312021 +0.603865 +0.788602 +0.734664 +0.762810 +0.739574 +0.564732 +0.910176 +0.637330 +-0.028063 +0.747994 +0.775311 +0.816217 +0.755428 +0.814766 +0.775034 +0.763629 +0.819669 +0.787787 +0.739410 +0.602966 +0.761075 +0.770010 +0.712473 +0.525798 +0.755702 +0.781506 +0.803250 +0.323316 +0.586710 +0.609869 +0.437468 +0.700387 +0.440139 +0.654212 +0.733457 +0.738872 +0.771359 +0.591730 +0.639846 +0.914856 +0.792358 +0.756725 +0.971628 +0.817883 +0.802847 +0.939779 +0.754212 +0.769761 +0.704685 +0.814726 +0.699554 +0.750793 +0.772709 +0.269553 +0.762924 +0.665091 +0.563421 +0.903849 +0.839107 +0.870490 +0.594910 +0.862033 +0.803108 +0.791000 +0.761405 +0.720039 +0.799154 +0.841644 +0.890248 +0.453008 +0.581442 +0.228868 +0.981039 +0.237069 +0.490443 +0.290620 +0.313398 +0.393950 +0.560137 +0.504934 +0.239608 +0.402668 +0.754550 +0.339125 +0.273280 +0.981436 +0.651936 +0.887840 +0.884571 +0.865917 +0.825489 +0.480614 +0.887956 +0.962730 +0.749912 +0.781872 +0.854611 +0.646601 +0.213108 +0.713079 +0.661542 +0.643653 +0.457585 +0.125444 +0.919531 +0.747873 +0.902881 +0.932987 +0.712238 +0.970381 +0.674316 +0.924384 +0.469017 +0.658290 +0.957738 +0.713436 +0.799797 +0.558914 +0.921236 +0.937209 +0.663759 +0.495336 +0.985992 +0.967799 +0.640800 +0.938293 +0.054467 +0.522766 +0.946166 +0.170246 +0.547306 +0.132489 +0.086571 +0.518520 +0.678158 +0.955218 +0.940962 +0.186377 +0.355161 +0.829579 +0.467199 +0.471981 +-0.129570 +0.784937 +0.961713 +0.930877 +0.553578 +0.802229 +0.945847 +0.447808 +0.735656 +0.530235 +0.820191 +0.737835 +0.917767 +0.917766 +0.619328 +0.192714 +0.854603 +0.415190 +0.829057 +0.895185 +0.700238 +0.898607 +0.772175 +0.937273 +0.437979 +0.924879 +0.430958 +0.468357 +-0.071491 +0.558372 +0.888924 +0.972025 +0.312212 +0.937737 +0.949287 +0.773249 +0.944910 +0.916479 +0.802430 +0.945447 +0.918909 +0.594045 +0.918451 +0.946471 +0.591731 +0.641082 +0.946103 +0.924376 +0.426011 +0.580354 +0.429462 +0.297466 +0.773156 +0.917312 +0.884775 +0.316331 +0.932838 +0.891883 +0.841413 +0.641263 +0.643829 +0.521751 +0.467157 +0.299449 +0.997296 +0.483200 +-9.985423 +0.889083 +0.261183 +0.616715 +0.914544 +0.873685 +0.702862 +0.708269 +0.578795 +0.952378 +0.877004 +0.326015 +0.932226 +0.711415 +0.813971 +0.951224 +0.840095 +0.462991 +0.930872 +0.204804 +0.317262 +0.647828 +0.534158 +0.524215 +0.979128 +0.569306 +0.531829 +0.431675 +0.514351 +0.301070 +0.440046 +0.730929 +0.742977 +0.890946 +0.737717 +0.732639 +0.725765 +-215.290100 +-244.053331 +0.217260 +0.769617 +0.565051 +0.256634 +-98.168316 +-165.593347 +-213.238983 +0.268327 +0.238037 +0.145121 +0.671850 +0.894599 +0.613063 +0.742863 +0.440453 +0.164341 +0.977898 +0.508685 +0.223443 +-0.155692 +0.711450 +0.666314 +0.871044 +0.808068 +0.628224 +0.835824 +0.642410 +0.309340 +0.771653 +0.207076 +0.171584 +0.162523 +0.533165 +0.076655 +0.111170 +0.465961 +0.177193 +0.326289 +0.166332 +0.148576 +0.994887 +0.308324 +0.330083 +0.152906 +0.593959 +0.268442 +0.410902 +0.323367 +0.687889 +0.462760 +0.195526 +0.081451 +0.314626 +0.210913 +0.934133 +0.162560 +0.279615 +0.231051 +0.372460 +0.090825 +0.928999 +0.109897 +0.923022 +0.489692 +0.389358 +0.611675 +0.981717 +0.676231 +0.788186 +0.839592 +0.424957 +0.949387 +0.955741 +0.225939 +0.906469 +0.930181 +0.676969 +0.436772 +0.677778 +0.998494 +0.859956 +0.708991 +0.735636 +0.877800 +0.613872 +0.061469 +0.955166 +0.942530 +0.846177 +0.952941 +0.956420 +0.773056 +-0.280863 +0.389814 +0.814884 +-0.058733 +0.940986 +0.887031 +0.376354 +0.662941 +0.785996 +0.381008 +0.984317 +0.936335 +0.937143 +0.475774 +0.872191 +0.242971 +0.546901 +0.840340 +0.817967 +0.744184 +0.648570 +0.580816 +0.818411 +0.222214 +0.546315 +0.821505 +0.584677 +0.908936 +0.698768 +0.887361 +0.801849 +0.829602 +0.534184 +0.819706 +0.677931 +0.790017 +0.554125 +0.918121 +0.726688 +0.495214 +0.550534 +0.421167 +0.457239 +0.443180 +0.668228 +0.283387 +0.845811 +0.994529 +0.700083 +0.816554 +0.909458 +0.975301 +0.724871 +0.734782 +0.705705 +0.727899 +0.719246 +0.900739 +0.914628 +0.286605 +0.364327 +0.211473 +0.769793 +0.270049 +0.252790 +0.223071 +0.366671 +0.656987 +0.567911 +0.570068 +0.274773 +0.274333 +0.600964 +0.385622 +0.932416 +0.344644 +0.600197 +0.806729 +0.918473 +0.965132 +0.923819 +0.685085 +0.941367 +0.864905 +0.874529 +0.917407 +0.799461 +0.924324 +0.879638 +0.939885 +0.946029 +0.929572 +0.735853 +0.560823 +0.929706 +0.598013 +0.889150 +0.938222 +0.646610 +0.620497 +0.987992 +0.943710 +0.370025 +0.888264 +0.952638 +0.927348 +0.718858 +0.940599 +0.372073 +0.336349 +0.919596 +0.430411 +0.752554 +0.800626 +0.470544 +0.928583 +0.540276 +0.787441 +0.933634 +0.726668 +0.504327 +0.822704 +0.798437 +0.631991 +0.773809 +0.961190 +0.907097 +0.585702 +0.842773 +0.915686 +0.954397 +0.926199 +0.942538 +0.942538 +0.942538 +0.833917 +0.915194 +0.788328 +0.693562 +0.620639 +0.860998 +0.499968 +-0.124890 +0.457661 +0.927393 +0.736472 +0.728671 +0.516965 +0.703137 +-60.242666 +0.670513 +-1.200245 +0.814871 +0.527229 +-1115.695515 +0.817772 +0.693647 +0.660818 +0.828022 +0.734770 +-65.638610 +0.895185 +0.560754 +0.757429 +0.867657 +0.954730 +0.698731 +0.594183 +0.897259 +0.761626 +0.899695 +0.423455 +0.401818 +-1.344016 +0.475360 +0.980665 +0.289990 +0.305163 +0.006108 +0.301696 +0.528190 +0.717991 +0.624154 +0.662337 +0.072985 +0.605071 +0.632686 +0.185702 +0.676194 +0.347869 +0.446410 +0.696637 +-0.188071 +0.854886 +0.360370 +0.309328 +0.846231 +0.522600 +0.437032 +-0.012017 +0.979299 +0.536441 +0.389395 +0.282522 +-19.636449 +0.414419 +0.460276 +0.709087 +0.928533 +0.931774 +0.817294 +0.883146 +0.411505 +0.219796 +0.373148 +0.410257 +0.970544 +0.973385 +0.775409 +0.974754 +0.828399 +0.904620 +0.885438 +0.987897 +0.947633 +-1.763746 +-271329.232822 +0.350431 +0.258510 +0.542522 +0.188022 +0.422145 +0.249140 +0.917033 +-0.342421 +-21864720.092416 +-0.076979 +0.754335 +-0.478261 +0.300022 +0.365553 +0.615102 +0.683602 +0.743441 +0.616049 +0.679867 +0.553133 +0.459940 +0.150451 +0.150476 +0.973493 +0.952782 +0.708935 +0.150408 +0.421748 +0.140367 +0.672232 +-0.824530 +0.104696 +-0.628726 +0.512619 +0.597866 +0.857033 +0.986159 +0.556488 +0.638941 +0.503492 +0.948743 +0.389956 +-7.001205 +0.943836 +0.931554 +0.923196 +0.686852 +0.944947 +0.416834 +0.845002 +0.880642 +0.805020 +0.204961 +0.906278 +0.683699 +0.752899 +0.746792 +0.588892 +0.689446 +0.650169 +0.364926 +0.573023 +0.892063 +0.839568 +0.620337 +0.759116 +0.947004 +0.927364 +0.583577 +0.871013 +0.892181 +0.698404 +0.664182 +0.874599 +0.847052 +0.811073 +0.945954 +0.768010 +0.989608 +0.811599 +0.976444 +0.776724 +0.615048 +0.709576 +0.813658 +0.920640 +0.803728 +0.534982 +0.814767 +0.940608 +0.779081 +0.490712 +0.731546 +0.781582 +0.958762 +0.725128 +0.405377 +0.903532 +0.733440 +0.835132 +0.419473 +0.863980 +0.832595 +0.413797 +0.740689 +0.786650 +0.756591 +0.157509 +0.738208 +0.703970 +0.854431 +0.765575 +0.649769 +0.791768 +0.625952 +0.668176 +0.700413 +-2.245296 +0.950725 +0.944823 +0.658610 +0.746982 +0.685443 +0.234528 +0.892846 +0.762469 +0.461087 +0.721998 +0.776274 +0.636994 +0.801452 +0.789646 +0.754467 +0.238364 +0.603257 +0.427791 +0.560584 +0.364603 +0.597691 +0.973767 +0.565930 +0.548025 +0.622515 +0.788479 +0.303804 +0.194937 +0.947938 +0.928852 +0.015826 +0.612979 +0.648980 +0.507088 +0.280207 +0.441034 +0.443044 +0.533084 +0.468108 +0.594728 +0.989902 +0.476336 +0.454929 +0.952902 +0.575814 +0.827684 +0.726291 +0.855191 +0.518804 +0.395769 +0.156259 +0.515861 +0.231658 +0.404849 +0.082668 +0.407362 +0.557074 +0.513255 +0.433457 +0.853463 +0.221803 +0.286548 +0.747817 +0.845857 +0.872087 +0.297808 +0.569122 +0.710322 +0.493823 +0.694628 +0.971066 +0.684930 +0.757031 +0.664822 +0.961473 +0.349429 +0.119987 +0.152587 +0.281395 +0.384545 +0.422012 +-0.015628 +0.481367 +-0.020426 +-3.391622 +0.606599 +0.686298 +0.377018 +0.064772 +0.117103 +0.430808 +0.159242 +0.467872 +0.582272 +0.973790 +0.757179 +0.075277 +0.191221 +0.994661 +0.110813 +0.267314 +0.040891 +0.642600 +-0.810817 +0.882392 +0.175688 +0.558431 +0.757827 +0.074900 +0.909308 +0.678360 +0.625710 +0.134512 +0.380831 +0.694873 +0.343986 +0.992465 +-0.700188 +0.475614 +0.450036 +-0.778423 +0.711920 +0.833842 +0.685350 +0.787610 +0.397169 +-1.685119 +0.206993 +0.768317 +0.967663 +0.750432 +0.776924 +0.771368 +0.811812 +0.687383 +0.515244 +0.597919 +0.859965 +0.944149 +0.406016 +0.643717 +0.629307 +0.649399 +0.656912 +0.957606 +0.971582 +0.252192 +0.945996 +0.922402 +0.929420 +0.912383 +0.548799 +0.487052 +0.562792 +0.719890 +0.451963 +0.590904 +0.919471 +0.544629 +0.913066 +0.927157 +0.743158 +0.486285 +0.914046 +0.426283 +0.473541 +0.948806 +0.912933 +0.245701 +0.562103 +0.228844 +0.992920 +0.918315 +0.949549 +0.929192 +0.682431 +0.315480 +0.502552 +0.550833 +0.534585 +0.994694 +0.406781 +0.542901 +0.412792 +0.598503 +0.686006 +0.657062 +0.715173 +0.619129 +0.955944 +0.687904 +0.689449 +0.957442 +0.915345 +0.926521 +0.851918 +0.587260 +0.146504 +0.487783 +0.904254 +0.749780 +0.098653 +0.578906 +0.440622 +0.666301 +0.823949 +0.349404 +0.751152 +0.756448 +0.768719 +0.779466 +0.749478 +0.775309 +0.725843 +0.217088 +0.728838 +0.861124 +0.474174 +0.500098 +0.419890 +0.309341 +0.113130 +0.271960 +0.455366 +0.404301 +0.816662 +0.995729 +0.821493 +0.196335 +0.309992 +0.323100 +0.955783 +0.944271 +0.991152 +0.803967 +0.821107 +0.782693 +0.544726 +0.931464 +0.781112 +0.766651 +0.960028 +0.783397 +0.930003 +0.662681 +0.715158 +0.357713 +0.674490 +-1.753913 +0.919836 +0.916546 +0.461249 +0.967823 +0.677787 +0.148202 +0.159408 +0.512601 +0.491040 +0.352536 +0.435955 +-2995.555579 +0.252437 +0.804192 +0.009633 +0.607430 +0.686205 +0.595818 +0.061577 +0.574535 +0.515336 +0.402953 +0.222483 +0.345455 +0.115203 +0.612195 +0.582286 +0.164059 +0.274182 +0.658120 +0.510036 +-0.991728 +0.409997 +-2260.959125 +0.730265 +-21.208050 +0.964580 +0.937737 +0.961200 +0.097310 +0.864455 +0.520203 +0.951172 +0.755451 +0.833050 +0.798120 +0.735363 +0.944675 +0.908940 +0.968696 +0.382685 +0.404557 +0.384488 +0.311354 +0.849148 +0.846693 +0.938780 +0.500034 +0.427607 +0.469277 +0.562063 +0.842610 +0.333916 +0.623659 +0.946903 +0.859235 +0.551844 +0.884790 +0.568555 +0.829641 +0.744838 +0.485880 +0.688690 +0.306219 +0.883790 +0.899557 +0.934653 +0.156873 +0.887774 +0.702557 +0.548203 +0.713998 +0.528667 +0.934683 +0.964932 +0.441315 +0.847481 +0.418237 +0.993568 +0.204240 +0.422863 +0.935978 +0.936336 +0.934781 +0.690686 +0.427629 +0.740911 +0.302599 +0.301075 +0.889980 +0.191077 +0.265646 +0.428232 +0.908024 +0.352274 +0.131358 +0.019195 +-14.043444 +0.828955 +0.883423 +-0.330269 +0.855191 +0.937950 +0.006473 +0.956751 +0.449666 +0.187943 +-0.577727 +0.905531 +0.652097 +0.917965 +0.262011 +0.593980 +0.557952 +-0.224507 +-1.976761 +0.937580 +0.774039 +0.974535 +0.468416 +0.736784 +0.416919 +0.645769 +0.937556 +0.488126 +0.133912 +0.899012 +0.807117 +-6.933830 +0.836213 +0.846883 +0.879371 +0.888096 +0.839972 +0.968848 +0.961114 +0.453268 +0.865399 +0.863924 +0.860460 +0.061265 +0.420482 +0.971704 +0.954018 +0.407715 +0.895035 +0.984052 +0.691276 +0.668073 +0.954592 +0.977399 +0.996653 +0.690139 +0.881383 +0.867897 +0.540810 +0.037075 +0.900114 +0.418446 +0.833662 +0.736888 +0.158674 +-12.031937 +0.315836 +0.003558 +0.611050 +0.161983 +0.058920 +0.574736 +0.525118 +0.413978 +0.678049 +0.686869 +0.554167 +0.418922 +0.796741 +0.316759 +0.633838 +-3.745366 +-0.358979 +0.979923 +0.195135 +0.499038 +0.689330 +-61.625655 +0.738712 +0.589313 +0.587884 +0.793892 +0.897258 +-0.324711 +0.637279 +0.798807 +0.321235 +0.611066 +0.590847 +0.696141 +0.720021 +0.933369 +0.654730 +0.735088 +0.919488 +0.768026 +0.507889 +0.673279 +0.919564 +0.697087 +0.707948 +0.530283 +0.680832 +-0.042816 +0.407941 +0.612554 +0.927446 +0.764050 +0.415225 +0.645357 +0.721548 +0.311389 +0.788076 +0.587094 +0.720313 +0.589835 +0.203916 +0.781132 +0.440756 +0.103100 +0.697852 +-13.797389 +0.938378 +-0.289978 +0.396955 +0.026081 +0.201369 +0.783709 +0.089833 +0.445657 +0.872844 +0.405199 +0.297514 +0.294178 +0.282991 +0.282996 +0.521997 +0.521997 +0.282991 +0.535174 +0.522003 +0.291870 +0.312700 +0.441677 +0.441658 +0.184663 +0.257541 +0.402767 +0.710209 +-0.059115 +0.662031 +0.391785 +0.414755 +0.355419 +0.556929 +0.980651 +0.548488 +0.170611 +0.386744 +0.442323 +0.289332 +0.262702 +0.113048 +0.654442 +-9.096042 +0.882680 +0.340562 +0.307752 +0.983775 +0.291324 +0.602045 +0.799228 +0.775934 +0.257958 +0.572024 +0.364923 +0.184092 +0.447180 +-2.243065 +0.059469 +0.196033 +-0.321468 +-1.683684 +0.133042 +-0.128470 +0.133705 +-0.201527 +0.699640 +0.524291 +0.807482 +0.424690 +0.888753 +0.248482 +0.933047 +0.938633 +0.899798 +0.921173 +0.923518 +0.790283 +0.878960 +0.903694 +0.937916 +0.647271 +0.487435 +0.872325 +0.934640 +0.789922 +0.614864 +0.752133 +0.931383 +0.902549 +0.940625 +0.713679 +0.729357 +0.921920 +0.819948 +0.742746 +0.764453 +0.315424 +0.930197 +0.218954 +0.910104 +0.144775 +0.807503 +0.757492 +0.756852 +0.917799 +0.869635 +0.660258 +0.955038 +-0.189146 +0.399231 +0.782718 +-2.635157 +0.356388 +0.423511 +0.759672 +0.869434 +0.851305 +0.317608 +0.505486 +0.380802 +0.382255 +0.942349 +0.944495 +-0.055164 +0.941737 +0.743969 +0.613113 +0.501407 +0.429402 +0.380897 +0.869160 +0.894987 +0.886799 +0.992819 +0.731002 +0.510080 +0.724172 +0.637117 +0.804051 +0.769653 +0.532221 +0.407889 +0.879674 +0.931757 +0.338556 +0.856961 +0.118606 +0.795398 +0.762563 +0.629419 +0.549458 +0.546245 +0.691415 +0.757216 +0.627329 +0.469060 +0.434365 +0.270567 +0.653931 +0.603358 +0.785282 +0.228974 +0.789630 +0.747972 +0.995041 +-6554.762054 +0.859910 +0.746869 +-5.807229 +0.981778 +-0.112153 +-0.307532 +0.726881 +0.775620 +0.859261 +0.875228 +0.344833 +0.696114 +0.591879 +0.906304 +-0.086565 +0.905167 +0.926617 +0.859632 +0.281856 +-0.042620 +0.510289 +0.842474 +0.383478 +-0.631380 +0.806199 +0.717235 +0.673284 +0.226144 +0.921370 +0.804131 +0.314849 +0.334163 +0.037889 +0.875127 +0.252140 +0.608203 +0.156310 +0.360405 +0.526995 +0.532729 +0.239442 +0.485705 +0.224773 +0.475319 +0.731491 +0.462444 +0.262656 +0.011369 +0.708982 +0.267218 +0.226409 +0.116081 +0.334384 +0.454740 +0.307167 +0.511503 +0.206387 +0.262955 +0.532345 +0.468817 +0.995410 +0.706469 +0.274359 +-0.712607 +0.643748 +0.128379 +0.623110 +0.904618 +-2.560404 +0.083946 +0.683264 +0.178054 +-0.539052 +0.020703 +0.063902 +0.107717 +0.652409 +-14.587941 +0.594855 +0.884828 +0.147375 +0.982215 +-0.170210 +0.837060 +0.401763 +0.838183 +0.839000 +0.758188 +-0.803963 +0.898792 +0.602269 +0.617528 +0.589977 +0.911001 +0.831552 +0.363713 +0.745992 +0.598808 +0.834368 +0.485044 +0.830687 +0.975692 +0.984901 +0.855204 +0.970927 +0.985299 +0.970842 +0.698073 +0.637992 +0.957171 +0.929937 +0.795805 +-0.150810 +0.098465 +0.713538 +0.241532 +0.973591 +-0.068597 +0.426263 +0.976847 +0.931589 +0.826674 +0.135592 +0.790306 +0.972109 +-0.195201 +0.658502 +0.498991 +0.921309 +0.694009 +0.577537 +0.863787 +0.903977 +0.817786 +0.792050 +0.769277 +0.839525 +0.183253 +0.992657 +0.848618 +0.462161 +0.996993 +0.821887 +0.881152 +0.757614 +0.331203 +0.926268 +0.944959 +-625.981797 +0.539729 +0.030041 +-0.250181 +0.865579 +0.855807 +0.461224 +0.770362 +0.837410 +0.684646 +0.609137 +0.007534 +0.199117 +0.353175 +0.524771 +0.598821 +0.384339 +0.775295 +0.358072 +0.201766 +0.540021 +0.788157 +0.751020 +0.847272 +0.714873 +0.324941 +0.321251 +0.756594 +0.824115 +0.876764 +0.934188 +0.612440 +0.811795 +0.455645 +0.816358 +0.884941 +0.826326 +0.769854 +0.859577 +0.453042 +0.904607 +0.745669 +-0.326215 +0.304571 +0.039249 +0.219170 +0.747031 +-0.668580 +0.916606 +0.626217 +0.802282 +0.877312 +0.431648 +0.751663 +0.212027 +0.578256 +0.599737 +0.423778 +0.804415 +0.593936 +0.202603 +0.656373 +0.434813 +0.681883 +-0.021328 +0.486286 +0.226283 +0.557486 +0.207977 +0.477417 +0.506040 +0.192122 +0.909449 +0.474332 +0.516830 +0.336854 +0.368012 +0.630825 +0.310981 +0.535594 +0.957999 +0.586844 +0.620547 +0.880416 +0.174860 +0.607663 +0.079172 +-0.072607 +0.498795 +0.487552 +0.257563 +0.248414 +0.059005 +0.106885 +0.193662 +0.789858 +0.136884 +0.580503 +0.721231 +0.138409 +0.759821 +0.552418 +0.299822 +0.137068 +0.071179 +0.653753 +0.860280 +0.066253 +0.390146 +0.025501 +0.033785 +0.108843 +0.177002 +-0.044083 +0.737868 +0.308841 +0.983770 +0.297001 +0.595012 +0.374151 +0.096659 +0.248372 +0.185074 +0.375310 +0.854487 +0.877948 +0.281950 +0.206313 +0.931294 +0.117499 +0.834497 +0.717414 +0.116860 +0.285275 +0.800449 +0.648631 +0.217467 +0.028168 +0.767912 +0.117413 +0.053216 +-0.041637 +0.715595 +0.122492 +0.090675 +0.587377 +0.654600 +0.931931 +0.723281 +0.761062 +0.747423 +0.810852 +0.939038 +0.908254 +0.902558 +0.764253 +0.342066 +0.251932 +0.112609 +0.432680 +0.572024 +0.887742 +0.153786 +0.568991 +0.441489 +0.481411 +0.609035 +0.992735 +0.535153 +0.538076 +0.337944 +0.126956 +0.228836 +0.376407 +0.832591 +0.312188 +0.920948 +0.545343 +0.982171 +0.995900 +0.697690 +0.916141 +0.538019 +0.974238 +0.243784 +0.701640 +0.494855 +0.885436 +0.450623 +0.994463 +0.837644 +0.231073 +0.741960 +0.884492 +0.884492 +0.900952 +0.325934 +0.808631 +0.345213 +0.942039 +0.880124 +0.943089 +0.856474 +0.245252 +0.255483 +0.355533 +0.969042 +0.478593 +0.766360 +0.908925 +0.908925 +0.514473 +0.848932 +0.908905 +0.937413 +0.831973 +0.962035 +0.788951 +0.306843 +0.857322 +0.917343 +0.912235 +0.968071 +0.959436 +0.699344 +0.388103 +0.915193 +0.953634 +0.554771 +0.586318 +0.923828 +0.921345 +0.236258 +0.539418 +0.551719 +0.891204 +0.479907 +0.497150 +0.586860 +0.398531 +0.871115 +0.364643 +0.351743 +0.924547 +0.319475 +0.904278 +0.946676 +0.266696 +0.921928 +0.918918 +0.369961 +0.915316 +0.370280 +0.913168 +0.052858 +0.363493 +0.401070 +0.562343 +0.673029 +0.853249 +0.370460 +0.640323 +0.323626 +0.753673 +0.710591 +0.709584 +0.631550 +0.939388 +0.906690 +0.996705 +0.302255 +0.766857 +0.375389 +0.493550 +0.401405 +0.841711 +0.838506 +0.720846 +0.478258 +0.605185 +0.485634 +0.485634 +0.498506 +0.723586 +0.700410 +0.583894 +0.379151 +0.449493 +0.430615 +0.223074 +0.398217 +0.806695 +0.691859 +0.850704 +0.414535 +0.419442 +0.617807 +0.427870 +0.505996 +0.575794 +0.575794 +0.580955 +0.577787 +0.479964 +0.441890 +0.484204 +0.421692 +0.176531 +0.902875 +0.643193 +0.026989 +0.709785 +0.839228 +0.672672 +0.939307 +0.688573 +0.688573 +0.515683 +0.576074 +0.631128 +0.246494 +0.444213 +0.529702 +0.567254 +0.962237 +0.842448 +0.949483 +0.833937 +0.590784 +0.844668 +0.865156 +0.946316 +0.831322 +0.869606 +0.833428 +0.738621 +0.669910 +0.984668 +0.965110 +0.950807 +0.855393 +0.931583 +0.894287 +0.192198 +0.519537 +0.762834 +0.903091 +0.949601 +0.652841 +0.943360 +0.880899 +0.916180 +0.690685 +0.101062 +0.220358 +0.131425 +0.924715 +0.101776 +0.768917 +0.219279 +0.677818 +0.975418 +0.879999 +0.995658 +0.610883 +0.304059 +0.453518 +0.804603 +0.976963 +-0.297934 +-1.522181 +0.100678 +0.337442 +0.620548 +0.590123 +0.225874 +-0.085066 +0.049694 +0.059670 +0.033633 +0.647032 +0.453656 +0.650593 +0.253263 +0.638141 +0.422521 +0.262877 +0.112689 +0.760298 +0.563774 +0.537936 +0.444566 +0.813901 +0.890593 +0.979057 +-0.038490 +0.373114 +0.432016 +0.306644 +0.791783 +0.620603 +0.808338 +0.028776 +0.086406 +0.072367 +0.114549 +-56.524189 +0.456510 +0.267615 +0.119684 +0.950582 +0.516639 +0.389612 +0.950251 +0.480284 +0.623683 +0.800422 +0.119647 +0.558715 +0.171231 +-0.034036 +0.539361 +0.516234 +0.022628 +0.283144 +0.066180 +0.546410 +0.101997 +0.101659 +0.638753 +-0.015732 +0.494615 +0.170137 +0.337012 +-0.771388 +0.620919 +0.293990 +0.498714 +0.612336 +0.654076 +0.518162 +0.266660 +0.147314 +0.347436 +0.261151 +0.758947 +0.615150 +0.376655 +0.285919 +0.208029 +0.404591 +0.107451 +0.215429 +0.134228 +0.716365 +0.743224 +-0.066362 +0.331380 +0.311908 +0.272959 +0.374473 +0.997361 +0.788388 +0.251551 +-0.941703 +0.226891 +0.587778 +0.832495 +0.533866 +-0.046489 +-0.044974 +0.173316 +0.956324 +-14.008873 +0.302576 +-0.686053 +0.595438 +0.204787 +0.541474 +0.222816 +0.747402 +0.869939 +0.419554 +0.386419 +0.654875 +0.907314 +0.092590 +0.527095 +0.850004 +0.864851 +0.838238 +-0.022566 +0.957595 +0.740710 +0.670297 +0.474852 +0.422769 +0.736713 +0.782599 +0.464909 +0.054971 +-0.751786 +0.736674 +0.630201 +0.612041 +0.541251 +0.579757 +0.923933 +0.445601 +0.932164 +0.647531 +0.967464 +0.907804 +0.463237 +0.546171 +0.217853 +0.111514 +0.641073 +0.617387 +0.353898 +0.924593 +0.390651 +0.464769 +0.909174 +0.620142 +0.611498 +0.845379 +0.382000 +0.652658 +0.068128 +0.498220 +0.508567 +0.675355 +0.920958 +0.840564 +0.968464 +0.850677 +0.722572 +0.802321 +0.834192 +0.490708 +0.950566 +0.922268 +0.554595 +0.315787 +-0.067773 +0.576327 +0.787498 +0.724810 +0.507777 +0.612688 +-0.012482 +0.431942 +0.258972 +0.309968 +0.449421 +0.285929 +0.071055 +0.420240 +0.606066 +0.996918 +0.379425 +0.664149 +0.224666 +0.583767 +0.125429 +0.820115 +0.909958 +0.014762 +0.373459 +0.065032 +0.620269 +0.975582 +0.959559 +0.468165 +0.823050 +0.229511 +0.909325 +0.354342 +0.051686 +0.274934 +0.989887 +0.361165 +0.507175 +0.764591 +-3.082737 +0.805563 +0.680145 +0.559183 +0.171137 +0.339515 +0.274185 +0.343364 +0.967189 +0.977038 +0.262204 +-0.223239 +0.929274 +0.301104 +0.738934 +0.756149 +0.600519 +0.735744 +0.654146 +0.161605 +-0.350759 +0.554684 +0.236453 +0.096961 +0.441244 +0.277157 +0.714157 +0.012146 +0.518495 +0.443938 +0.444663 +0.040378 +0.157269 +0.231608 +0.952699 +0.414764 +-0.295063 +0.080099 +0.610607 +0.516065 +0.640930 +0.740656 +0.051992 +0.187424 +0.244732 +0.648597 +0.679328 +0.896989 +0.042817 +0.779240 +0.925214 +0.773254 +0.000535 +0.267580 +0.959776 +0.885192 +-0.212047 +0.835367 +0.615320 +0.988209 +0.807509 +0.452518 +0.145268 +0.719884 +0.627822 +0.389325 +0.744882 +0.396484 +0.230626 +0.223984 +0.907415 +0.981945 +0.525705 +0.041810 +0.254451 +0.306299 +0.549626 +0.536224 +0.959301 +0.884372 +0.363407 +0.548545 +0.563359 +-0.209466 +0.399316 +0.914852 +0.411778 +0.652553 +0.949338 +0.912405 +0.368854 +0.909986 +0.921141 +0.931560 +0.428768 +0.206913 +0.364038 +0.946630 +0.807143 +0.924988 +0.582094 +0.606608 +0.225617 +0.594912 +0.912806 +0.917810 +0.178498 +0.926729 +0.924312 +0.379602 +0.978866 +0.726035 +0.926970 +0.927142 +0.678404 +0.429969 +0.984657 +0.164576 +0.186773 +0.577896 +0.518779 +0.943696 +0.921930 +0.918840 +0.547710 +0.548923 +0.965390 +-0.053182 +0.921422 +0.100617 +0.913830 +0.934145 +0.484454 +0.918501 +0.710141 +0.718535 +0.551316 +0.910789 +0.644196 +0.218476 +-3.872653 +-0.270708 +0.176839 +0.460471 +0.022579 +0.529510 +0.343608 +0.045874 +0.513325 +0.299974 +0.149385 +0.063847 +0.234042 +0.655095 +0.717994 +0.240746 +0.722414 +0.306868 +-21.580793 +0.209904 +0.231562 +0.106610 +0.274434 +0.124861 +0.001753 +0.160877 +0.039198 +0.389787 +0.471853 +0.030076 +0.120211 +0.210068 +0.830384 +0.057499 +0.362405 +-0.030675 +0.187377 +0.459685 +0.232006 +0.223684 +0.442086 +0.353853 +0.872650 +0.278659 +0.338187 +0.896038 +0.284150 +0.870164 +0.544982 +0.835033 +0.969439 +0.647202 +0.920126 +0.428474 +0.392294 +-0.044362 +0.788289 +0.572017 +-8.374677 +0.699792 +0.960040 +0.440535 +0.214686 +0.473317 +0.570202 +0.570177 +0.316909 +0.664866 +0.050377 +0.576648 +0.576648 +0.576648 +0.576648 +0.375461 +0.463870 +0.241970 +0.068474 +0.404321 +0.880718 +0.522733 +0.788980 +0.960110 +0.438071 +0.337861 +0.817016 +0.956569 +0.821736 +0.741788 +0.977763 +0.704405 +0.722588 +0.982728 +0.842221 +0.508712 +0.710274 +0.936061 +0.808399 +0.194390 +0.921462 +0.515922 +0.732455 +0.863801 +0.981085 +0.789778 +0.733686 +0.852336 +0.525529 +0.619798 +0.245180 +0.661680 +0.964457 +0.529388 +0.026182 +-0.449795 +0.656752 +-1.546056 +0.738250 +0.747960 +0.704073 +-0.258556 +0.737980 +0.845042 +0.726064 +0.561433 +0.858703 +-3.522416 +0.866388 +0.967190 +0.188615 +0.741903 +0.363086 +0.574062 +0.840564 +0.764329 +0.949322 +0.602501 +0.627765 +0.772134 +0.944417 +0.688662 +0.752983 +0.706318 +0.917601 +0.719625 +0.854463 +0.818862 +-9.404764 +0.925666 +0.925987 +0.648769 +0.270718 +0.796688 +0.721880 +0.948421 +0.713288 +0.909620 +0.903332 +0.348456 +0.910638 +0.748036 +0.502968 +-0.416266 +0.844159 +0.930074 +0.851225 +0.924426 +0.825755 +0.473856 +0.600486 +0.038843 +0.889070 +0.646209 +-1.127727 +0.874033 +0.014138 +0.311679 +0.677939 +0.049098 +0.542730 +0.261302 +0.528416 +0.888129 +0.974528 +0.314325 +0.370205 +0.459246 +0.310933 +0.854715 +0.574673 +0.952696 +0.967863 +0.505969 +0.857086 +0.463180 +0.289415 +0.893593 +0.904252 +0.995491 +0.161479 +0.076306 +0.873487 +0.680727 +0.665025 +-0.136115 +0.093093 +0.629121 +0.294934 +0.530718 +0.672183 +0.197085 +0.869284 +0.370523 +-0.028522 +0.576186 +0.730969 +0.241031 +0.202301 +0.835410 +0.373648 +0.837675 +0.156461 +0.681201 +0.784394 +0.440814 +0.992939 +0.775132 +0.930583 +0.518501 +0.622571 +0.020799 +0.049167 +0.669383 +0.244232 +0.681250 +-0.544593 +0.765929 +0.439616 +0.368480 +0.772531 +0.171531 +0.947672 +0.833095 +0.836375 +0.669559 +0.424793 +0.607821 +0.697243 +0.346840 +0.239985 +0.009715 +0.263197 +0.570151 +0.744536 +0.841699 +0.511983 +0.525804 +0.878783 +0.447797 +0.949170 +0.707328 +0.795126 +0.637638 +0.859583 +0.932012 +0.856746 +0.955595 +0.854862 +0.933310 +0.156094 +0.370089 +0.384676 +0.002103 +0.974774 +0.992871 +0.479130 +0.323351 +0.762176 +0.908614 +0.817148 +0.817759 +0.956347 +0.931901 +0.650164 +0.789435 +0.271773 +0.380306 +0.454667 +0.305443 +0.119394 +0.592031 +-82.132544 +0.046753 +-0.034828 +0.676568 +0.921117 +0.919792 +0.859411 +0.774697 +0.991500 +0.855032 +0.796527 +0.918527 +0.040607 +0.979368 +0.913610 +0.945835 +0.786539 +0.890000 +0.737401 +0.742397 +0.915472 +0.654258 +0.469113 +0.894244 +0.748260 +0.786632 +0.207149 +0.649571 +0.837301 +0.028016 +0.696118 +0.745193 +0.323365 +0.849059 +0.631621 +0.987793 +0.570609 +0.796710 +0.533350 +-0.060434 +0.894699 +0.809525 +0.719509 +0.766209 +0.908683 +0.880510 +0.608848 +0.976167 +0.900106 +0.932584 +0.469774 +0.645825 +0.029848 +-1.103976 +0.538375 +0.703527 +0.713601 +0.948219 +0.861495 +0.442427 +0.492913 +0.424395 +-0.081891 +0.187031 +0.892720 +0.376668 +0.499523 +0.650791 +0.625194 +0.936832 +0.587801 +0.463335 +0.840817 +0.449291 +0.689863 +0.897448 +0.338309 +0.953915 +0.944073 +0.737450 +0.941738 +0.912492 +0.929455 +0.864473 +0.807560 +0.760065 +0.715849 +0.895777 +0.382047 +0.381043 +0.220062 +0.920680 +0.954502 +0.448899 +-0.688551 +-0.934738 +0.860728 +0.728156 +0.797025 +0.932612 +0.933608 +0.928023 +0.884081 +0.934875 +0.928995 +0.983643 +0.938387 +0.993215 +0.486814 +0.505435 +0.452893 +0.850275 +0.409077 +0.746552 +0.325830 +0.737910 +0.909987 +0.842079 +0.928156 +0.634038 +0.909748 +0.865789 +0.902470 +0.900317 +0.310185 +0.546594 +0.576211 +-0.142370 +0.446519 +0.864373 +0.347519 +0.789040 +-0.109834 +0.807675 +0.365915 +0.652853 +0.835500 +0.307396 +0.579945 +0.990461 +0.443190 +0.090860 +0.731584 +0.663917 +0.459444 +0.469025 +0.043964 +0.432271 +0.139530 +0.306009 +0.811633 +0.531709 +0.345020 +0.130868 +-4.517379 +0.335847 +0.933165 +0.673195 +0.865418 +0.449145 +0.812539 +0.571446 +0.307910 +0.652347 +0.938032 +0.592884 +0.855502 +0.523771 +0.860004 +0.731438 +0.928198 +0.949848 +0.868749 +0.978022 +0.088625 +0.850584 +0.901438 +0.630724 +0.938128 +0.337977 +0.025915 +0.942869 +0.771956 +0.853386 +0.638152 +0.958931 +0.911938 +0.997490 +0.874794 +0.924826 +0.202232 +0.489866 +0.686305 +0.752925 +0.420683 +0.570967 +0.108186 +0.892346 +0.803024 +0.466214 +0.819800 +0.764664 +0.929230 +0.436380 +0.853917 +0.963468 +0.378547 +0.533526 +0.346069 +0.434884 +0.204674 +0.845943 +0.883057 +0.855533 +0.700655 +0.302657 +0.750206 +0.183991 +0.517719 +0.639094 +0.727040 +0.875782 +0.926545 +0.550518 +0.479003 +0.425690 +0.545717 +0.925288 +0.891457 +-0.077185 +0.832536 +0.619019 +0.926109 +0.727938 +0.136839 +0.387274 +0.980461 +0.966818 +0.437924 +0.064663 +0.665838 +0.719395 +0.654461 +0.401393 +0.665529 +0.928204 +0.770389 +0.396720 +-0.156441 +0.901272 +0.981090 +0.530311 +0.536455 +0.208640 +0.761080 +0.495671 +0.769056 +0.899832 +0.691251 +0.804959 +0.890558 +0.408163 +0.730660 +0.713398 +0.434946 +0.858515 +0.469538 +0.460903 +0.311277 +0.396756 +0.017149 +0.866585 +0.510099 +0.454941 +0.455490 +0.919652 +0.417995 +0.981303 +0.697645 +0.098534 +0.952732 +0.518355 +0.533111 +0.717826 +0.697272 +0.859897 +0.691273 +-0.468643 +0.589734 +0.342955 +0.104108 +0.686773 +0.496098 +0.423688 +0.335384 +0.986223 +0.774762 +0.838679 +0.962735 +0.934595 +0.372288 +0.499503 +0.977406 +0.395239 +0.624062 +0.566855 +0.032924 +0.552327 +0.566194 +0.696600 +0.359179 +0.643609 +0.580601 +0.768362 +0.755067 +0.501168 +0.735620 +0.611022 +0.835503 +0.919991 +0.977264 +0.576055 +0.821895 +0.539821 +0.870822 +0.920673 +0.925853 +-1.224353 +0.593344 +0.885023 +0.759635 +0.381764 +0.233024 +0.493854 +0.657091 +0.681344 +0.787318 +0.833750 +0.456670 +0.741820 +0.405937 +0.631502 +0.963224 +0.479517 +0.350168 +0.875668 +0.956370 +0.933843 +0.974443 +0.291736 +0.953950 +0.718679 +0.408494 +0.512681 +0.680007 +0.331614 +0.652084 +-1.581105 +0.024070 +0.704456 +0.672788 +-12.656683 +0.904204 +0.284357 +0.329015 +-0.334571 +0.581948 +0.891651 +0.845639 +-0.371002 +0.888948 +0.878305 +0.551400 +-0.090220 +0.774523 +0.932734 +0.405516 +0.964010 +0.931370 +0.215740 +0.297607 +0.476252 +0.084585 +0.248747 +0.638252 +0.187658 +0.531325 +0.538459 +0.843172 +0.534685 +0.210943 +0.284168 +0.778589 +0.177046 +-0.301505 +0.966487 +0.321532 +0.391474 +0.170306 +0.410588 +0.024413 +0.195951 +0.330987 +0.161685 +0.103623 +0.339645 +0.470205 +0.253555 +0.929659 +0.762203 +0.593750 +0.293340 +0.759428 +0.550354 +0.799148 +0.129192 +0.437107 +0.828490 +0.925623 +0.858630 +0.595111 +0.450255 +0.560662 +0.931142 +0.361346 +0.497684 +0.316930 +0.944185 +0.926638 +0.997783 +0.534018 +0.539215 +0.328569 +0.336889 +0.458899 +0.324628 +0.468356 +0.955655 +0.924343 +0.985959 +0.078660 +0.900933 +0.687043 +0.870029 +0.381687 +0.854739 +0.858776 +0.553656 +0.833127 +0.697130 +0.740002 +0.611790 +0.579642 +0.937967 +0.950310 +0.855694 +0.411973 +0.649347 +0.916820 +0.800591 +0.861011 +0.928352 +0.933429 +0.223567 +0.844010 +0.007132 +0.796107 +0.491721 +0.553481 +0.117432 +0.362867 +0.547294 +0.469945 +0.460560 +0.449659 +0.692753 +0.826771 +0.733177 +0.664905 +0.195863 +0.544116 +0.663043 +0.415411 +0.214643 +0.357821 +0.424550 +0.841778 +0.939542 +0.777280 +0.840564 +0.586645 +0.532497 +0.560243 +0.851641 +0.403450 +0.608518 +0.736313 +0.683923 +0.729159 +0.413481 +0.602082 +0.011165 +0.997479 +0.720414 +0.913960 +0.944818 +0.963382 +0.605562 +0.393709 +0.812640 +0.291680 +0.931066 +0.730211 +0.928757 +0.199885 +0.360527 +0.909525 +0.755592 +-1.395336 +0.519822 +0.699362 +0.913023 +0.689116 +0.695220 +0.408378 +0.475775 +0.230158 +0.344096 +0.727079 +0.249847 +0.562200 +0.641299 +0.947222 +0.913258 +0.955643 +0.327910 +0.743839 +0.665882 +0.765039 +0.996442 +0.701744 +0.796950 +0.822180 +-0.139851 +0.605923 +0.714493 +0.703388 +0.590809 +0.817174 +0.749555 +0.894908 +0.523996 +0.280053 +0.517311 +0.199402 +0.486183 +0.273971 +0.431053 +0.375576 +0.863754 +0.381057 +0.800197 +0.872385 +0.991373 +0.413131 +0.975007 +0.363084 +0.914002 +0.032447 +0.625200 +0.691831 +0.325613 +0.535208 +0.850304 +0.645418 +0.911655 +0.635321 +0.771171 +0.842672 +-0.064929 +0.560129 +0.139408 +0.998682 +0.141560 +0.517177 +0.074891 +0.453628 +0.757465 +0.219565 +0.424617 +0.783048 +-0.120789 +0.258661 +0.260041 +0.289574 +0.331731 +0.830333 +0.277471 +0.879539 +0.673758 +-0.102485 +0.616849 +0.938566 +0.680108 +0.284340 +0.925761 +0.351044 +0.911474 +0.990807 +-0.123771 +0.879903 +0.209181 +0.723092 +-0.476029 +0.634550 +0.809250 +0.515807 +0.779970 +0.172664 +-3.374845 +0.649790 +0.762043 +0.653302 +0.576747 +0.143046 +0.899522 +0.752694 +0.957874 +0.983426 +0.836838 +0.782740 +0.929486 +0.809298 +-0.345542 +0.650704 +0.611601 +0.706919 +0.901001 +0.586200 +0.407813 +0.606418 +0.169795 +-0.951875 +0.932580 +0.385549 +0.721471 +0.421503 +0.515274 +0.938726 +-0.838373 +0.083655 +0.213040 +0.864685 +0.545923 +0.505904 +0.921056 +-15.953703 +0.854169 +0.416916 +0.615775 +0.349861 +0.076159 +0.449329 +0.255866 +0.036069 +0.607323 +0.945066 +0.669316 +0.160661 +0.427764 +0.612666 +0.420413 +0.123876 +-1.036579 +0.383541 +0.270261 +0.945841 +0.137696 +0.447202 +-20.526385 +0.598442 +0.538397 +0.511849 +0.397102 +0.484478 +0.994340 +-0.350333 +0.920053 +0.620303 +0.777588 +0.421937 +0.548548 +0.663195 +0.582720 +0.368912 +0.854100 +0.911618 +0.887075 +-0.478836 +0.726485 +0.858805 +0.946524 +0.865499 +0.597635 +0.813954 +0.783816 +0.784812 +0.906144 +0.695247 +0.117761 +0.919150 +0.695673 +0.899476 +0.678612 +0.833031 +0.857915 +0.793546 +0.924042 +0.624831 +0.227236 +0.458193 +0.420754 +0.604074 +0.322355 +-0.261518 +0.514117 +0.038028 +0.180882 +0.647049 +-0.080580 +0.285732 +0.613843 +0.933202 +0.905892 +0.505808 +0.135422 +0.591042 +0.150110 +0.116683 +0.985341 +0.593149 +0.853930 +0.993155 +0.032859 +0.338255 +0.602921 +0.887707 +0.612408 +0.602136 +0.885786 +0.133030 +0.449329 +0.297641 +0.229122 +0.109802 +0.507499 +0.236420 +0.016333 +0.419483 +0.624912 +0.280682 +0.075506 +0.228767 +0.099209 +0.919772 +0.606505 +0.850181 +0.727454 +0.970403 +0.886961 +0.848216 +0.893658 +0.925501 +0.928966 +0.376879 +0.826734 +0.825833 +0.491666 +0.951933 +0.727167 +0.868916 +0.712258 +0.862356 +0.791179 +0.878713 +0.813841 +0.931990 +0.959734 +0.582683 +0.768078 +0.618395 +0.742540 +0.881425 +0.811610 +0.862373 +-0.176428 +0.873575 +0.933140 +0.776032 +-0.272526 +0.807219 +0.770177 +0.910955 +0.892106 +0.568096 +0.215387 +0.929920 +0.908375 +0.746820 +0.979469 +0.776233 +0.514648 +0.571217 +0.921611 +0.715413 +0.486304 +0.845151 +0.949139 +0.921270 +0.668626 +0.664094 +0.384395 +0.616302 +0.675271 +0.955289 +0.782498 +0.305142 +0.152093 +0.880544 +0.937751 +0.301975 +0.935718 +0.346037 +0.324093 +0.314668 +0.751577 +0.534427 +0.695411 +0.642510 +0.495381 +0.748277 +0.616098 +0.323454 +0.218639 +0.837679 +0.058268 +0.839007 +0.935665 +0.933014 +0.938436 +-0.812359 +0.789775 +0.907704 +0.620243 +0.786470 +0.463476 +0.766833 +0.687985 +0.808698 +0.793883 +0.631024 +0.908695 +0.752733 +0.669257 +0.719007 +0.147373 +0.878045 +0.932989 +0.814115 +0.705346 +0.780474 +0.977794 +0.709840 +-0.172780 +0.978307 +0.716383 +0.851631 +-0.131244 +-0.270195 +-0.098237 +0.689323 +0.468308 +0.547085 +0.518870 +0.789002 +0.863485 +0.839823 +0.638425 +0.752771 +0.930471 +0.823014 +0.520616 +0.768062 +0.634823 +-0.077628 +0.437347 +0.224005 +0.774178 +0.113249 +0.609098 +0.890441 +-0.124839 +-0.089252 +0.452507 +0.522138 +0.798193 +-0.086159 +0.399761 +0.492476 +0.492473 +0.492473 +0.492451 +0.492451 +0.817676 +0.258926 +0.552109 +0.867781 +0.915727 +0.603245 +-0.641623 +0.643203 +0.738947 +0.908303 +-0.138409 +0.736684 +0.244559 +0.952064 +0.886413 +0.515147 +0.923431 +0.945066 +0.083224 +0.198900 +0.178405 +0.187665 +0.425749 +0.089898 +0.538505 +0.977582 +0.984089 +0.387053 +0.629552 +0.528314 +0.823160 +-566.227336 +0.470409 +0.762516 +0.630677 +0.913740 +0.695711 +0.343905 +0.486090 +0.386382 +0.176240 +0.528237 +0.266696 +0.075329 +0.223699 +0.263066 +0.219097 +0.370351 +0.431670 +0.645428 +0.675110 +0.843347 +0.937580 +0.957290 +0.224595 +0.923662 +0.485674 +0.919983 +0.948660 +0.821774 +0.921894 +0.913850 +0.903399 +0.922388 +0.820261 +0.245784 +0.924681 +0.925907 +0.115958 +0.529032 +0.534251 +0.911103 +0.183859 +0.919711 +0.280529 +0.868705 +0.025527 +0.946911 +0.923546 +0.954370 +0.982069 +0.919567 +0.247558 +-0.028701 +0.401671 +0.018982 +-0.245669 +0.973494 +0.563313 +0.904043 +0.468110 +0.941889 +0.224116 +0.933438 +0.253040 +0.064735 +0.738264 +-0.221147 +0.341903 +0.799976 +-0.128062 +0.734668 +-0.184930 +0.064295 +-0.086769 +0.880749 +0.742604 +0.432818 +0.029613 +-0.085564 +0.942512 +-0.287534 +0.882866 +0.369538 +0.706924 +0.822579 +0.579973 +0.496456 +-0.195047 +0.718131 +0.741338 +-0.007062 +0.810641 +0.417348 +0.820454 +-0.210832 +0.929989 +0.517697 +0.810691 +0.924215 +0.356878 +-2.754328 +0.649739 +0.735676 +0.138703 +-0.172687 +-0.282411 +0.279909 +0.861582 +0.127811 +0.379905 +0.935084 +0.416811 +0.632254 +0.825196 +-0.206701 +0.448583 +-0.109271 +0.856187 +0.546254 +-0.200733 +0.492556 +-0.204147 +0.086970 +0.656632 +0.565036 +0.266985 +-0.022303 +-0.290086 +0.486008 +-0.248919 +0.187276 +0.853687 +-0.108410 +-0.129608 +-0.126700 +0.524754 +-0.312847 +0.917817 +0.903553 +0.939298 +0.671583 +0.931075 +0.867385 +0.947831 +-0.240632 +0.988369 +0.497557 +0.992315 +0.077958 +0.638549 +0.663199 +0.775354 +0.299929 +-6.338445 +0.585723 +0.831630 +0.847994 +0.870052 +0.237014 +0.062038 +0.902748 +0.795058 +0.887611 +0.980723 +0.770199 +0.854991 +0.905193 +0.933296 +0.773785 +0.892646 +0.933034 +0.924892 +0.807496 +0.839895 +0.861538 +0.942356 +0.732558 +0.777196 +0.873422 +0.866608 +0.944919 +0.526690 +0.320254 +0.815416 +0.614631 +0.648721 +0.258241 +0.798840 +0.718805 +0.117687 +-0.847532 +0.798007 +0.728748 +0.740638 +0.352756 +0.820412 +0.868790 +0.630999 +0.279827 +0.887600 +0.432410 +-0.268592 +0.749666 +0.649136 +0.626200 +0.103793 +0.990544 +0.093971 +0.767705 +0.399924 +0.550793 +0.884181 +-0.219471 +0.458808 +-0.138246 +-0.457987 +0.880450 +0.396650 +0.465114 +0.041602 +-0.288633 +-0.093661 +0.464095 +-0.038551 +-0.129901 +-0.229410 +0.976452 +0.604137 +0.940956 +0.789932 +0.560855 +0.160920 +0.259884 +0.343688 +0.543735 +0.376896 +0.072769 +-0.037289 +0.385196 +0.421419 +0.803483 +0.751427 +0.573754 +0.309600 +-0.131319 +0.827909 +0.923615 +0.567016 +0.821271 +0.663273 +0.312024 +0.769612 +0.984002 +0.528191 +0.189704 +0.371748 +0.926228 +0.937426 +0.787027 +0.798928 +0.594792 +0.697497 +0.052721 +0.314754 +0.753632 +-0.197220 +0.026865 +0.825637 +0.172418 +0.552544 +0.392007 +0.975599 +-0.274392 +-0.242871 +-1.245022 +-0.125499 +0.219016 +0.517581 +0.508322 +0.775392 +-0.078549 +0.729687 +0.853889 +0.962853 +-2.801133 +0.769356 +0.750527 +0.748738 +0.809778 +-0.064692 +-0.048170 +0.757739 +0.883504 +-0.137263 +0.890446 +0.811802 +0.649971 +0.754641 +0.529607 +0.596828 +0.817950 +0.917995 +-0.071897 +0.955958 +0.919745 +0.739085 +0.680458 +0.633124 +0.235671 +-0.282092 +0.319092 +0.883212 +0.684948 +0.647739 +0.778710 +0.868733 +-0.014612 +0.543128 +0.679758 +0.469790 +0.040716 +0.579453 +0.867013 +0.893766 +0.227072 +0.423895 +0.383355 +0.550151 +0.614991 +0.935074 +0.704514 +0.663502 +0.616602 +0.920580 +0.825418 +0.970831 +0.767718 +-0.155210 +0.923313 +0.719957 +0.631977 +0.739948 +-0.495321 +0.731558 +0.933643 +0.560652 +0.784846 +0.581329 +0.833636 +0.766995 +0.833576 +0.662384 +0.673851 +0.781559 +0.690236 +0.708208 +0.891038 +0.755095 +0.859555 +0.629699 +-0.245226 +0.454817 +0.614829 +0.688029 +0.957362 +0.542831 +0.457633 +0.452939 +0.744484 +0.783485 +0.948083 +0.556019 +0.847926 +0.652967 +0.713735 +-0.135853 +0.360398 +0.464127 +0.664942 +0.304764 +0.188126 +0.802727 +0.087194 +-1.506561 +0.393476 +0.293153 +0.804466 +-0.092269 +0.733053 +0.597546 +0.139180 +0.056518 +0.909597 +-0.126394 +0.675899 +0.515127 +0.434421 +0.414059 +0.831951 +0.424169 +-0.008963 +0.289176 +-0.024329 +0.562027 +0.658913 +0.679908 +0.713812 +0.980557 +0.745193 +0.889263 +0.764170 +0.808718 +0.749336 +0.758520 +0.928364 +0.645530 +0.712304 +0.655506 +0.490665 +0.941349 +0.949504 +0.803275 +0.988228 +0.725135 +0.898409 +0.831206 +0.984397 +0.805597 +0.668654 +0.344106 +0.777101 +0.862698 +0.639942 +0.697845 +0.360435 +0.658797 +0.273799 +0.035260 +0.514996 +0.431700 +-0.157032 +0.751142 +0.335226 +-0.111085 +-0.201252 +-0.172147 +0.171477 +0.942734 +-0.226921 +0.114576 +0.741345 +0.626493 +0.932367 +-0.007153 +0.382134 +0.523539 +0.294770 +0.385602 +0.586951 +0.192195 +0.204586 +0.738111 +0.322365 +0.424079 +-0.197873 +0.283893 +-0.114894 +0.734608 +-0.200053 +0.350025 +0.847326 +0.534009 +-0.037517 +0.805291 +0.095192 +0.813766 +0.570552 +0.570761 +0.746193 +0.888822 +0.610623 +0.524227 +0.786412 +-0.371209 +0.894994 +0.667903 +0.853048 +0.786599 +-1.062359 +0.946181 +0.575261 +0.926272 +0.731642 +0.692389 +0.709475 +0.921860 +0.794930 +0.734232 +0.654644 +0.321980 +0.856595 +0.133810 +0.206387 +0.473946 +0.741672 +0.039496 +0.805126 +0.316387 +0.177479 +0.459767 +0.608928 +0.467170 +0.258867 +0.472040 +-0.091515 +0.717905 +0.555177 +-0.190629 +0.215220 +0.817280 +0.641905 +0.766274 +0.432603 +0.641306 +0.663983 +0.803305 +0.661364 +-0.166960 +0.996408 +0.707456 +0.340569 +0.239221 +0.387186 +0.268799 +0.801114 +-0.214838 +0.753973 +0.233228 +-0.038087 +0.743005 +0.798824 +0.706524 +0.503796 +0.773826 +0.829797 +0.771225 +0.702963 +-0.144083 +0.887640 +0.526914 +0.663978 +0.410896 +0.105694 +-0.264456 +0.784047 +-0.255860 +0.669439 +0.507104 +0.753530 +0.779950 +0.690900 +0.793366 +0.947585 +-0.180741 +0.417382 +-0.268527 +0.687317 +0.183245 +-0.326087 +-0.086691 +0.934354 +0.644682 +-0.329565 +0.852673 +0.984445 +-0.122344 +0.759602 +0.700662 +0.692592 +-0.204932 +-2.770772 +0.280501 +0.804969 +0.929073 +0.866936 +0.814548 +0.840619 +0.959054 +0.802664 +0.814171 +-0.154545 +0.702143 +0.814486 +-0.105804 +0.374538 +-0.144388 +0.884728 +0.637170 +0.434454 +0.908619 +-0.226647 +0.810327 +0.654122 +0.104816 +-0.173815 +0.936823 +0.754888 +0.773020 +0.583721 +-0.155570 +0.672077 +0.610939 +0.171691 +-0.264693 +0.613183 +0.889909 +0.624417 +0.598930 +0.372783 +0.049191 +0.611269 +0.376109 +0.691147 +0.300033 +0.613173 +0.487227 +0.670376 +0.457861 +0.111815 +-0.022261 +-0.161839 +0.157373 +0.884790 +0.510865 +0.340366 +0.700660 +0.810365 +0.862040 +0.929646 +0.424354 +0.698293 +0.758755 +0.134554 +0.595603 +0.680783 +0.358893 +0.382227 +0.323044 +0.426435 +0.293510 +0.967887 +0.772285 +0.601853 +-0.199477 +0.485434 +0.728203 +0.173272 +0.781047 +0.463328 +0.525124 +0.761931 +0.717622 +0.591482 +-0.103008 +0.761445 +0.822440 +0.873066 +-0.099997 +0.598300 +0.533190 +0.318835 +-0.027729 +0.717394 +0.753056 +0.382290 +0.801213 +0.576436 +0.442710 +-0.221057 +-0.291822 +0.230251 +0.822611 +0.217721 +-0.197859 +-0.141673 +0.558363 +0.756744 +0.255074 +0.348103 +-0.019904 +0.618619 +0.818017 +0.108032 +0.494011 +0.504737 +0.546806 +-0.003397 +0.238748 +0.474918 +0.032174 +-0.115661 +0.715273 +0.707505 +0.243834 +0.311236 +0.354610 +0.674216 +0.260956 +0.717918 +-0.391181 +0.059625 +0.881804 +-0.229297 +0.548055 +0.773403 +0.825615 +0.231420 +0.293256 +0.366473 +-7.348043 +0.205180 +0.464062 +0.990593 +0.304009 +0.494019 +0.634112 +0.899008 +0.490924 +0.471224 +0.703676 +0.531633 +0.970948 +0.982419 +0.924075 +0.577781 +0.945439 +0.842247 +0.096990 +0.818428 +0.363754 +0.778212 +0.947832 +0.834008 +0.983465 +0.283622 +0.268694 +0.523546 +0.985843 +0.855908 +0.904807 +0.748631 +0.743973 +0.764799 +0.547245 +0.963226 +0.549315 +0.836771 +0.278748 +0.332324 +0.433632 +0.696798 +0.717635 +0.629404 +0.950023 +0.889417 +0.331546 +0.362152 +0.350803 +0.496685 +0.433053 +0.021808 +0.406079 +0.487318 +0.333416 +0.333416 +0.930256 +0.916209 +0.749138 +0.393485 +0.684162 +0.869899 +0.684861 +0.868368 +0.817073 +0.817073 +0.817073 +0.817073 +0.749692 +0.619087 +0.728822 +0.859660 +0.671828 +0.440880 +0.803132 +0.425209 +0.944049 +0.362139 +0.472170 +0.961597 +0.593215 +0.687816 +0.876687 +0.562960 +0.505004 +-0.003347 +0.142922 +0.491727 +0.758172 +0.618354 +0.635443 +0.936886 +0.566777 +0.627577 +0.952357 +0.969756 +0.936294 +0.561620 +0.179698 +0.124281 +0.977694 +0.512157 +0.999438 +0.862638 +0.950947 +0.694476 +0.217628 +0.141707 +0.610580 +0.907402 +0.982849 +0.994602 +0.929304 +0.413012 +0.773250 +0.817764 +0.917154 +0.564357 +0.872097 +0.502573 +0.934285 +0.820442 +0.939867 +0.852343 +0.792959 +0.741622 +0.906956 +0.359238 +0.807528 +0.795909 +0.559769 +0.941620 +0.355532 +0.601325 +0.259304 +0.283983 +0.704437 +0.376842 +0.851464 +0.399558 +0.382318 +0.585134 +0.953823 +0.664348 +0.393874 +0.828475 +0.801564 +0.563729 +0.818344 +0.822564 +0.840289 +0.933005 +0.778693 +0.725993 +0.713890 +0.854499 +0.717018 +0.912506 +0.945684 +0.700306 +0.431356 +0.719558 +0.651233 +-0.006624 +0.618493 +0.244317 +0.941142 +0.239867 +0.887339 +0.016381 +0.093402 +0.062605 +0.718023 +0.876173 +0.985029 +0.403984 +0.988748 +-0.187467 +0.045262 +0.394174 +-0.404668 +0.221710 +0.884963 +0.750055 +0.578180 +0.298503 +0.886126 +0.459096 +0.411065 +0.823061 +0.759137 +0.901712 +0.896225 +0.139485 +-0.019026 +0.460332 +0.462409 +0.830376 +0.904295 +0.839031 +0.761484 +0.707049 +0.850133 +0.764314 +0.906029 +0.826048 +0.873940 +0.822867 +0.869914 +0.772399 +0.620356 +0.005194 +0.551731 +0.563254 +0.938969 +0.957225 +0.853097 +0.407671 +0.722482 +0.783746 +0.469701 +0.872272 +0.509917 +0.780871 +0.778505 +0.962422 +0.902784 +-0.203527 +0.392231 +0.818825 +0.641167 +0.352485 +0.024371 +0.814543 +0.777242 +0.937472 +0.840021 +0.601991 +0.542548 +0.887064 +0.754818 +0.759492 +0.758092 +0.732596 +0.969942 +0.773181 +0.520808 +0.554128 +0.755938 +0.774036 +0.715830 +0.732027 +0.666505 +0.769628 +0.765543 +0.610820 +0.608400 +0.760038 +0.813940 +0.369103 +0.784068 +0.237224 +0.751767 +0.564113 +0.490874 +0.746545 +0.719382 +0.481753 +0.774038 +0.389632 +0.567855 +0.887141 +0.778221 +0.763403 +0.543492 +0.756362 +0.882747 +0.743688 +0.672129 +0.642190 +0.853388 +-99.821131 +0.427152 +0.866228 +0.402539 +0.577696 +0.553261 +0.789160 +0.216565 +0.639269 +0.292258 +0.641291 +0.293402 +0.429356 +0.749501 +0.316305 +0.438835 +0.933627 +0.894119 +0.819930 +-0.078937 +0.859278 +0.491196 +0.925494 +0.107314 +0.865816 +0.776059 +0.897080 +0.792758 +0.628868 +0.749306 +0.516583 +0.695319 +0.976640 +0.702857 +0.718217 +0.816562 +0.422863 +0.550262 +0.912963 +0.030679 +0.892792 +0.994947 +0.132432 +0.453872 +0.879337 +0.339790 +0.123465 +-6.857633 +0.752695 +0.161448 +-18.535210 +-4.061877 +0.310888 +0.316177 +0.129745 +-0.441840 +0.552041 +0.711479 +0.259036 +0.438780 +0.387656 +-0.126195 +-1.172857 +0.923783 +0.447622 +0.029419 +0.068136 +0.865647 +0.099910 +0.510789 +0.046160 +0.062114 +0.802718 +0.217392 +0.827923 +-429.481316 +0.972488 +0.870670 +0.314934 +0.916493 +-111.162932 +0.242196 +0.528799 +0.513591 +0.936002 +-20.593080 +0.941949 +0.820287 +0.918980 +0.923985 +0.530100 +0.089450 +0.989910 +0.986748 +-0.209787 +0.995443 +0.939184 +0.902083 +0.866381 +0.067012 +0.852904 +0.821269 +0.622330 +0.455426 +0.455426 +0.369035 +0.502217 +0.104313 +0.689244 +0.461867 +0.926942 +0.856198 +0.838280 +0.429850 +0.830490 +0.855575 +0.486127 +0.692394 +0.571474 +0.481485 +0.698471 +0.298853 +-0.012679 +0.691746 +0.382500 +0.621679 +0.413029 +-0.725420 +0.284974 +0.486804 +0.297049 +0.928515 +0.460168 +0.711708 +0.361789 +0.561827 +0.201913 +0.087880 +0.399977 +0.742688 +0.217814 +0.169884 +0.636104 +0.848837 +0.546860 +0.608726 +0.389816 +0.876826 +0.660498 +0.584876 +0.633930 +0.953370 +0.877366 +0.639417 +0.857050 +0.980590 +0.901972 +0.826424 +0.981085 +0.299793 +0.577759 +0.934508 +0.982285 +0.997683 +0.692739 +0.967716 +0.839816 +-0.963347 +0.829756 +0.392910 +0.814762 +0.991352 +0.897322 +0.745349 +0.271470 +0.912339 +0.728647 +0.792112 +0.613424 +0.842401 +0.825453 +0.755981 +0.459401 +0.879644 +0.943836 +0.762413 +0.912626 +0.930730 +0.676883 +-0.011011 +0.931099 +0.319741 +0.504042 +0.640515 +0.884467 +0.430647 +-0.418185 +0.721168 +0.565509 +0.562698 +0.875387 +0.656352 +0.921017 +0.889977 +0.933602 +0.911139 +0.923965 +0.345895 +0.835596 +0.911208 +0.893131 +0.580737 +0.972166 +0.509171 +0.310785 +0.669478 +0.537171 +0.872264 +0.986249 +0.911420 +0.841484 +0.887669 +-0.124406 +0.685012 +0.398341 +0.746454 +0.847970 +0.802710 +0.322180 +0.326267 +0.272879 +0.787261 +0.943662 +0.275369 +0.943030 +0.872449 +0.864284 +0.956616 +0.786618 +0.919760 +0.897981 +0.650846 +0.270639 +0.964995 +0.698575 +0.585581 +0.344387 +0.918553 +0.921811 +0.455736 +0.225836 +0.893852 +0.670048 +0.912974 +0.840698 +0.414524 +0.930023 +0.455124 +0.924766 +0.376275 +0.485031 +0.493818 +0.639741 +0.444481 +0.819213 +0.358007 +0.301536 +0.290881 +0.328625 +0.697348 +-72.754661 +0.467300 +0.419096 +0.715344 +0.819239 +0.991418 +0.602043 +0.245548 +0.226255 +0.631441 +-0.668960 +0.851730 +0.086275 +0.012092 +0.634919 +0.515576 +0.531020 +0.583985 +0.427618 +0.500248 +0.631463 +0.424494 +0.467522 +0.429015 +0.231097 +0.579347 +0.232551 +0.675831 +0.876606 +0.264113 +0.874424 +0.856272 +0.869860 +0.886139 +0.906317 +0.954619 +0.970238 +0.720751 +0.916195 +0.290190 +0.969402 +0.953505 +0.601873 +0.719927 +0.638162 +0.954529 +0.764716 +0.952822 +0.384542 +0.789096 +0.785483 +0.382228 +0.481321 +0.474081 +0.493272 +0.773954 +0.927882 +0.504988 +0.404046 +0.952838 +0.882763 +0.857276 +0.855860 +0.423623 +0.076048 +0.341980 +0.512148 +0.732258 +0.070716 +0.656594 +0.725859 +0.197157 +0.567316 +0.177809 +0.853609 +0.550017 +0.141925 +0.732810 +0.155301 +0.387741 +0.880320 +0.037134 +0.369238 +0.379839 +0.260676 +0.049094 +0.971504 +0.733221 +0.820961 +0.304469 +0.151915 +0.729895 +0.841654 +0.787136 +0.479856 +0.878420 +0.332177 +0.090341 +0.673887 +0.696881 +0.540917 +0.922521 +0.275303 +0.929607 +0.099402 +0.985895 +0.123414 +0.110557 +0.795898 +0.188060 +0.079841 +0.304992 +0.757164 +0.262665 +0.960638 +-0.625175 +0.252943 +0.119219 +0.185947 +0.116745 +0.751329 +0.413401 +0.893995 +0.416564 +0.493780 +0.716063 +0.734663 +0.817959 +0.427428 +0.652761 +-0.050957 +0.852324 +0.723558 +0.789131 +0.817260 +0.156309 +0.847130 +0.456648 +0.756376 +0.847847 +0.860876 +0.962545 +0.768540 +0.671366 +0.784100 +0.092948 +0.969219 +0.951102 +0.557484 +0.954740 +0.443785 +0.286078 +0.880218 +0.895593 +0.882346 +0.609868 +0.931597 +0.434498 +0.960581 +0.954076 +0.922672 +0.789378 +0.408519 +0.897476 +0.872626 +0.412296 +0.520302 +0.805221 +0.507277 +0.603614 +0.852483 +0.858812 +0.898906 +0.281359 +0.997244 +-1.221467 +0.443239 +0.483193 +0.162141 +0.882629 +0.235413 +0.731177 +0.668361 +0.788660 +0.100535 +0.792900 +0.615008 +0.039663 +0.784014 +-0.159055 +0.272909 +0.631132 +0.998449 +0.621467 +0.086573 +0.965042 +0.767829 +0.034950 +0.451471 +0.286156 +0.057956 +0.580734 +0.386107 +0.312413 +0.466653 +0.762826 +0.111015 +0.244247 +0.879596 +0.752345 +0.181249 +0.568094 +0.120042 +0.152585 +0.078617 +0.497802 +0.080003 +0.809285 +0.894479 +0.332913 +0.200837 +0.262311 +0.976571 +0.304176 +0.383701 +0.049352 +0.795126 +0.965915 +0.034765 +0.447144 +0.296333 +0.735945 +0.147770 +0.314771 +0.867026 +-7.166606 +0.549375 +0.484464 +0.663196 +0.588249 +0.684253 +0.521539 +0.741868 +0.457317 +0.440891 +0.580712 +-3.223333 +-1.760025 +0.449516 +0.224938 +0.140754 +0.047237 +0.777873 +0.286386 +0.180992 +0.238234 +0.393531 +0.981472 +0.809574 +0.989251 +0.707982 +0.578122 +0.137411 +0.830429 +0.222861 +0.938144 +0.815482 +0.153709 +0.926688 +0.921800 +0.775039 +0.981336 +0.721918 +0.969139 +0.963324 +0.183822 +0.048555 +0.928598 +0.956120 +0.258371 +0.483170 +0.560508 +0.980656 +0.922119 +0.926710 +0.922427 +0.635253 +0.629721 +0.616360 +0.898067 +0.766141 +0.470568 +0.495891 +0.617297 +0.915473 +0.968473 +0.304955 +0.087658 +0.219373 +0.230270 +0.040863 +0.994029 +0.709179 +0.228530 +0.186902 +0.787225 +0.119980 +0.101764 +0.017878 +-0.110183 +0.019582 +0.349016 +0.279064 +0.111881 +0.233199 +0.993188 +0.693763 +0.938569 +0.556691 +0.811885 +0.487459 +0.545890 +0.458891 +0.245852 +-0.522780 +0.329783 +0.644859 +0.534011 +0.661574 +0.310412 +0.239964 +0.942051 +0.475967 +0.721953 +0.619591 +0.233144 +0.192560 +0.589151 +-4.351990 +0.134429 +0.567322 +-0.036258 +0.226564 +0.085876 +0.009489 +0.896634 +0.093138 +0.396790 +0.152629 +0.211134 +0.012940 +0.689421 +0.251634 +0.421659 +0.897422 +0.243066 +0.259408 +0.971180 +0.632209 +0.248317 +0.033612 +0.033612 +0.928789 +0.790698 +0.422258 +0.442656 +0.683737 +0.033312 +0.033312 +0.788639 +0.641814 +0.676608 +0.394356 +0.789610 +0.701538 +-0.175377 +0.212154 +0.403529 +0.543089 +0.351880 +0.098709 +0.570301 +-44.288918 +0.615920 +0.892518 +-531.237442 +0.965582 +0.736023 +0.879543 +0.408294 +0.929666 +0.421953 +0.924263 +0.790091 +-0.164009 +-0.009059 +0.924558 +0.759859 +0.451159 +0.739424 +0.870440 +0.764679 +0.464841 +0.727035 +0.865789 +0.401721 +0.815670 +0.722856 +0.415225 +0.748966 +-0.146281 +0.117980 +0.697997 +0.104756 +0.972001 +0.970454 +0.936452 +0.646410 +0.903973 +0.743946 +0.541827 +0.630421 +0.450753 +0.905743 +0.922951 +0.834178 +0.227554 +0.869956 +0.451956 +0.975902 +0.401121 +0.860314 +0.819341 +0.909922 +0.133452 +0.626392 +0.182657 +0.268873 +0.405730 +0.710974 +0.289495 +0.944228 +0.407700 +-0.304270 +0.535782 +0.069175 +0.021559 +0.790046 +0.681457 +0.609818 +0.719310 +0.989340 +0.985357 +0.898555 +0.556020 +0.697225 +0.451946 +0.085057 +0.124287 +0.924407 +0.471293 +0.465824 +0.513175 +-3.122821 +-0.026746 +0.012813 +0.508124 +0.881513 +0.210032 +0.565216 +0.382767 +0.629944 +0.585790 +0.161869 +0.184530 +0.569192 +0.384461 +-0.335241 +0.692686 +0.412871 +0.993258 +0.733134 +0.491751 +0.640359 +0.860853 +0.543354 +0.454895 +0.161694 +0.621391 +0.906768 +0.550249 +0.782409 +0.780934 +0.930943 +0.548794 +0.930992 +0.766731 +0.252194 +0.605066 +-0.394321 +0.803738 +0.906440 +0.937681 +0.432150 +0.324269 +0.879040 +0.795086 +0.938050 +0.631674 +0.762365 +-0.096525 +0.173389 +0.847513 +0.868577 +0.914436 +0.413362 +0.847107 +0.354183 +0.691117 +0.443598 +0.864685 +0.948262 +0.922199 +0.673862 +0.851667 +0.591738 +0.755362 +0.893673 +0.687740 +0.739043 +0.741041 +0.373038 +0.451121 +0.313108 +0.454195 +0.835371 +0.728036 +0.452920 +0.967789 +-0.095355 +0.836249 +0.927253 +0.231261 +0.463588 +0.110947 +0.887769 +0.676444 +0.587825 +0.382268 +0.712121 +0.324098 +0.294906 +0.160756 +0.479471 +0.803125 +0.575890 +0.633077 +0.468145 +-5.101131 +0.114394 +0.459743 +0.409753 +0.650205 +0.572938 +0.721469 +0.109210 +0.821984 +0.406357 +0.514674 +0.388925 +0.373247 +0.108806 +0.435418 +-0.117372 +0.190026 +0.752633 +0.710689 +0.480681 +0.254514 +0.689148 +0.826356 +0.804715 +0.991258 +0.730975 +0.867703 +0.594583 +0.870848 +0.855434 +0.989712 +0.749247 +0.886512 +0.754108 +0.957924 +0.946310 +0.839537 +0.690142 +0.948586 +0.899715 +0.979742 +0.867897 +0.862783 +0.899590 +0.455763 +0.508798 +0.523281 +0.028000 +0.998034 +0.466989 +0.518441 +0.309191 +0.302567 +0.924647 +0.925292 +0.407681 +0.919603 +0.909720 +0.434334 +0.918654 +0.919618 +0.356042 +0.445502 +0.940710 +0.802214 +0.282702 +0.649921 +0.920467 +0.921419 +0.199042 +0.407459 +0.627005 +0.918628 +0.779103 +0.920759 +0.409132 +0.540961 +0.926707 +0.470329 +0.848817 +-1304.301137 +0.836301 +0.665313 +0.914033 +0.984201 +0.885985 +0.925119 +0.925105 +0.786410 +0.408125 +0.670425 +0.931302 +0.841436 +0.043223 +0.549208 +0.975233 +0.526863 +0.408910 +0.982164 +0.649406 +0.657097 +0.863654 +0.639462 +0.681204 +0.488086 +0.579444 +0.826816 +0.857522 +0.520331 +0.565026 +0.810555 +0.932700 +0.438601 +0.593481 +0.146102 +0.904440 +0.356043 +0.982846 +0.530047 +0.541201 +0.223765 +0.825380 +0.891335 +0.538524 +0.540343 +0.325741 +0.600799 +0.124237 +0.671850 +0.909429 +0.021257 +0.298921 +0.675594 +0.842595 +0.348609 +0.789076 +0.930299 +-0.170350 +0.774970 +0.466842 +0.927834 +0.952903 +0.754392 +0.913034 +0.871577 +0.904673 +0.224949 +0.661490 +0.567542 +0.656699 +0.991084 +0.694240 +0.351283 +0.223982 +0.263338 +0.601561 +0.106998 +0.116374 +0.783671 +0.430746 +0.601681 +0.013330 +-0.094078 +0.253198 +-0.008864 +0.626623 +0.885847 +0.722167 +0.811380 +-2.363341 +-1.058576 +0.238204 +0.766424 +0.766336 +0.592210 +0.674000 +0.901172 +-0.150063 +0.175797 +0.496164 +0.750734 +0.563346 +0.688531 +0.401025 +0.328856 +0.611242 +0.536357 +0.502225 +0.756816 +0.444702 +0.876719 +0.934503 +0.707234 +0.804290 +-0.169068 +0.962860 +0.915814 +0.310619 +0.808308 +0.414752 +0.199838 +-0.453569 +-0.359220 +0.799820 +0.968267 +0.882950 +-0.175281 +0.834188 +0.188598 +0.610793 +0.440201 +0.905747 +0.724308 +0.650422 +0.917625 +0.601166 +0.719791 +0.750115 +0.767498 +0.723295 +0.943310 +0.919071 +0.543284 +0.924919 +0.861549 +0.511333 +0.724079 +0.657193 +0.462036 +0.731652 +0.619425 +0.216089 +0.276518 +0.645349 +0.518797 +0.433887 +0.553929 +0.591193 +0.546946 +0.745538 +0.777457 +0.473885 +0.904431 +0.901388 +0.560660 +0.415700 +0.674967 +0.504732 +0.817599 +0.613289 +0.549255 +0.889463 +0.500804 +0.559866 +0.877009 +0.890606 +0.698167 +0.961959 +0.668051 +-0.378259 +0.471669 +0.928500 +0.338979 +-0.539691 +0.743416 +-0.542923 +0.499092 +0.896713 +0.705342 +0.833891 +0.230762 +0.808337 +0.845949 +0.711802 +0.296918 +0.394868 +0.847531 +0.723902 +0.683191 +0.741275 +0.381293 +0.522020 +0.865295 +-0.458655 +0.420057 +0.849070 +0.185312 +0.606114 +0.483823 +0.830452 +0.880891 +0.116445 +0.246371 +0.187389 +0.245697 +0.311638 +0.767835 +0.342062 +0.367284 +0.388612 +0.305730 +0.189433 +0.173893 +0.626783 +0.708373 +0.808452 +0.425527 +0.041998 +0.755758 +0.314961 +0.654887 +0.952137 +0.406958 +0.057619 +0.697581 +0.938540 +0.928492 +0.885743 +0.926961 +0.830002 +0.634155 +0.559115 +0.647657 +0.434878 +-0.207309 +-0.284228 +0.619147 +0.294874 +0.450458 +0.671301 +0.794357 +0.865118 +0.686330 +0.460712 +0.719038 +0.937797 +0.922263 +0.984243 +0.212611 +0.424702 +0.378301 +0.417640 +0.633447 +0.353213 +0.466880 +0.843750 +0.678434 +0.980040 +0.970313 +0.814777 +0.523684 +0.519550 +0.886189 +0.369583 +0.207822 +0.610295 +0.834386 +0.846846 +0.980098 +0.411168 +0.547376 +0.556373 +0.858605 +0.439284 +0.856132 +0.378883 +0.902876 +0.372245 +0.477373 +0.813932 +0.796619 +0.999668 +0.904499 +0.405030 +0.791370 +0.126643 +0.335548 +0.614692 +0.683225 +0.771874 +0.392292 +0.389850 +0.397295 +0.743840 +0.841188 +0.557323 +0.171084 +0.528152 +0.633935 +0.928868 +0.861864 +0.646756 +0.460697 +0.211914 +-0.871505 +-0.010532 +0.778922 +0.204082 +0.515266 +-0.479746 +0.927686 +0.421105 +0.019424 +0.321750 +0.688280 +0.238352 +0.852725 +0.480284 +0.542025 +0.742329 +0.928070 +0.311758 +0.446147 +0.729910 +-1.400823 +0.939523 +0.531565 +0.980625 +0.785280 +0.856287 +0.384892 +0.886929 +-0.195833 +0.750766 +0.214547 +0.789925 +0.125897 +-0.388706 +0.673997 +0.871010 +0.372934 +0.893911 +0.472094 +0.508638 +-0.327276 +-0.320810 +0.156102 +0.549268 +0.039337 +0.713752 +0.788050 +0.113818 +0.259683 +0.384620 +0.312709 +0.056398 +-0.113556 +-51.474925 +-1.634097 +0.015986 +0.049848 +-2.444546 +0.848552 +0.168921 +0.500164 +0.632406 +0.443738 +0.797422 +0.797293 +0.538927 +0.668709 +-0.136548 +0.859972 +0.736895 +0.767886 +0.793505 +0.778344 +0.626145 +0.947371 +0.361324 +0.624065 +0.657798 +0.924439 +0.928614 +0.424234 +0.626029 +0.501348 +0.606929 +0.504888 +0.958820 +0.426662 +0.456907 +-5412745.588292 +0.601167 +0.465316 +0.273186 +0.465167 +0.640313 +0.955227 +0.930482 +0.983034 +0.924941 +0.924499 +0.905219 +0.982035 +0.635400 +0.596264 +0.917581 +0.551113 +0.981946 +0.912587 +0.249450 +0.380439 +0.915805 +0.210268 +0.281359 +0.503667 +0.446105 +0.424473 +0.919410 +0.458215 +0.586150 +0.566260 +0.572429 +0.717996 +0.567857 +0.381958 +0.624030 +0.946675 +0.956283 +0.634809 +0.631225 +0.666386 +0.934266 +0.515787 +0.144376 +0.039986 +0.148648 +0.805941 +0.911777 +0.940424 +0.553257 +0.950140 +0.383390 +0.900970 +0.456397 +0.401673 +0.798804 +0.980088 +0.474972 +0.807723 +0.430712 +0.379536 +0.182104 +0.794040 +0.461186 +0.809568 +0.670528 +0.934225 +0.712089 +0.275432 +0.946232 +0.812822 +0.827202 +0.959566 +0.438396 +-0.141158 +0.581798 +0.224940 +0.380263 +0.690492 +0.263197 +-0.779642 +0.933780 +0.329218 +0.858062 +-0.124618 +0.781338 +0.163429 +0.694738 +0.579838 +0.883638 +0.799824 +0.610334 +0.859040 +0.878591 +0.867248 +0.595564 +0.924036 +0.801745 +0.941302 +0.931158 +0.822738 +0.915594 +0.469632 +0.788090 +0.876240 +0.945092 +0.715575 +0.388084 +0.590878 +0.700687 +0.884624 +0.497998 +0.915919 +0.574374 +0.507914 +0.862020 +0.939832 +0.783688 +0.870432 +0.874266 +0.898676 +0.777571 +0.851557 +-0.569907 +0.537584 +0.895160 +0.691895 +0.462637 +0.957146 +0.972572 +0.331702 +0.525071 +0.290528 +0.830739 +0.926851 +0.383985 +0.782525 +0.776756 +0.524985 +0.784579 +0.952892 +0.377293 +0.377293 +0.377804 +0.788560 +0.818221 +0.838938 +0.841033 +0.718855 +0.173732 +0.829934 +0.319200 +0.859588 +0.423053 +0.908642 +0.689340 +0.916115 +0.543781 +0.826279 +0.813610 +0.236962 +0.565480 +0.696604 +0.428317 +0.803957 +0.929767 +0.843107 +0.876697 +0.907179 +0.691326 +0.926299 +0.932489 +0.872833 +0.631947 +0.383513 +0.930575 +0.830550 +0.560932 +0.666070 +0.971033 +0.587704 +0.940654 +0.222968 +0.680241 +0.723054 +0.858150 +0.328825 +0.483661 +0.467510 +0.899129 +0.928980 +-0.139316 +0.602111 +0.745399 +0.993594 +0.748928 +0.665625 +-0.259035 +0.456858 +0.237941 +0.911219 +0.136015 +-2.954341 +0.959019 +0.662413 +-0.068220 +0.361167 +0.484601 +0.524732 +0.323557 +0.821548 +0.116294 +-0.005976 +0.518165 +0.765126 +0.869439 +0.872322 +0.939359 +0.900259 +0.753798 +0.171485 +0.174324 +0.380441 +0.074503 +0.493370 +0.180802 +0.664605 +0.633583 +0.282892 +0.284779 +0.319641 +0.355356 +0.271468 +0.995285 +0.274149 +0.186978 +0.260191 +0.281671 +0.663174 +0.613356 +0.466512 +0.792801 +0.706057 +0.739479 +0.846726 +0.779493 +0.737179 +0.945901 +0.875572 +0.933821 +-0.088526 +0.787577 +0.164198 +0.438126 +0.881730 +0.752025 +0.799945 +0.291490 +0.349075 +0.285125 +0.465479 +0.465457 +0.822677 +0.682181 +0.728254 +0.393658 +0.341177 +0.643101 +0.429494 +0.309696 +0.914129 +0.460852 +0.360823 +0.703420 +0.909654 +0.802808 +0.782140 +0.932625 +0.925944 +0.915777 +0.898791 +0.917671 +0.917205 +0.867771 +0.926225 +0.927032 +0.834894 +0.941885 +0.706447 +0.937148 +0.741666 +0.512416 +0.558212 +0.562876 +0.707842 +0.987117 +0.359264 +0.941055 +0.739804 +0.920584 +0.865546 +0.724837 +0.712134 +0.990798 +0.329782 +0.631149 +0.932372 +-56.882751 +0.811928 +0.856143 +0.523771 +0.717716 +0.750509 +0.846323 +0.615450 +0.863663 +0.643325 +0.334579 +0.061318 +0.811071 +0.174696 +0.837312 +0.152787 +0.789549 +0.929076 +0.527554 +0.997726 +0.980822 +0.817630 +0.973639 +0.641027 +0.681618 +0.937978 +0.327336 +0.814941 +0.977514 +0.724448 +0.559706 +0.786682 +0.894111 +-0.115828 +0.104324 +0.912177 +0.479498 +0.627617 +0.423310 +0.925479 +0.916678 +0.595905 +0.437361 +0.480438 +0.534817 +0.158737 +0.918551 +0.465659 +0.161454 +0.709595 +0.975133 +0.305796 +0.459515 +0.472565 +0.585143 +0.940130 +0.657641 +0.915171 +-1063274999999999.250000 +0.480853 +0.776110 +0.981437 +0.671886 +0.971899 +0.924671 +0.076513 +0.516559 +0.408125 +0.408125 +0.466334 +0.472037 +0.582378 +0.472832 +0.273180 +0.596390 +0.853370 +0.956652 +0.986198 +0.636611 +0.466558 +0.977750 +0.398261 +0.361752 +0.491626 +0.413599 +0.012813 +0.910906 +0.494962 +0.288857 +0.463212 +-0.867297 +0.994140 +0.799430 +-5.215334 +0.902619 +0.800916 +0.904359 +0.067243 +0.014199 +0.584772 +0.219826 +0.209936 +0.327632 +0.996532 +0.474445 +0.972991 +0.682539 +0.871152 +0.167373 +0.570988 +0.427239 +0.620852 +0.712232 +0.623753 +0.951099 +0.926561 +0.798939 +-0.429720 +0.947639 +0.940090 +-18484115314.529728 +0.958644 +0.591421 +0.907824 +0.836332 +0.631995 +0.925965 +0.345908 +0.796936 +0.763340 +0.763340 +0.218649 +0.590011 +0.797545 +-0.079147 +0.606347 +0.373680 +0.329074 +0.703158 +0.862188 +0.887289 +0.560571 +0.265913 +0.619086 +0.615865 +0.295259 +0.552408 +0.594902 +0.787298 +0.568104 +0.565594 +0.601340 +0.933218 +0.367129 +0.342493 +0.470609 +0.775106 +0.712182 +0.756489 +0.150335 +0.894907 +0.190096 +0.132757 +0.840225 +0.234083 +0.451969 +0.898548 +0.653003 +0.212767 +0.994552 +0.397820 +0.025001 +0.730623 +0.301934 +0.889110 +0.744474 +0.762077 +0.987744 +0.545864 +0.251883 +0.994199 +0.109016 +0.792318 +0.681442 +0.590897 +0.739357 +0.838994 +0.315074 +0.985115 +0.997508 +-0.005053 +0.788623 +0.630821 +0.489968 +0.917219 +0.112766 +0.791573 +0.661544 +0.484794 +0.170238 +0.550251 +0.068186 +0.535602 +0.964441 +0.535897 +0.446245 +-0.384978 +0.546316 +0.985719 +-1.592860 +0.107997 +-2.107498 +0.501176 +0.931426 +0.944102 +0.937216 +0.560173 +0.368398 +0.939237 +0.809455 +0.842599 +0.954322 +0.297153 +0.649804 +0.597436 +0.701490 +-0.165820 +0.524009 +-0.458601 +0.790652 +0.854890 +-61.064889 +-0.209699 +0.994562 +0.197002 +0.236789 +-3.211352 +0.440089 +0.984783 +0.127799 +0.902093 +0.159554 +0.783478 +0.907344 +0.887252 +0.976598 +0.735789 +0.813331 +0.432792 +0.316325 +0.838985 +0.847529 +-0.552091 +0.529268 +0.831674 +0.894921 +0.967606 +0.851484 +0.328088 +0.487905 +-0.107175 +0.137352 +0.362336 +0.190942 +0.227380 +0.516309 +-0.459146 +0.811095 +0.878916 +0.270451 +-0.419666 +0.940064 +0.972466 +0.979936 +0.327838 +0.871563 +0.974060 +0.295485 +0.315145 +0.303884 +0.432535 +0.667828 +0.797508 +0.798830 +0.899880 +0.904833 +0.021894 +0.813505 +0.093011 +0.845625 +0.878419 +0.881781 +0.805624 +0.644427 +0.837528 +-0.419743 +0.911781 +0.845536 +-0.250465 +0.510651 +0.141722 +-0.410350 +0.871438 +0.871629 +0.609652 +0.301981 +0.763007 +0.733400 +0.651294 +0.939602 +0.787445 +0.981575 +0.707666 +0.834546 +0.863252 +0.860019 +0.508719 +0.061193 +0.369516 +0.357368 +0.565923 +0.965269 +0.550093 +-0.160144 +0.449244 +0.442564 +0.136954 +0.522318 +0.733669 +0.210520 +0.325058 +0.416505 +0.859202 +0.273201 +0.787110 +0.541676 +0.310634 +0.392291 +0.617061 +0.505484 +0.919322 +-0.017909 +0.743250 +0.709342 +-0.259737 +0.875860 +0.129104 +0.998048 +0.352071 +0.461099 +0.544931 +0.496202 +0.473683 +0.991233 +0.584435 +0.874921 +0.882455 +0.880883 +0.786244 +0.836521 +0.669701 +0.694945 +0.389148 +0.553076 +0.912299 +0.506527 +0.619256 +0.478187 +0.662970 +0.868124 +0.431408 +0.241804 +0.403414 +0.913163 +0.890124 +0.320631 +0.864331 +0.546882 +0.529042 +-0.167877 +0.192130 +0.513598 +0.885969 +0.924848 +0.859201 +0.644358 +-0.168873 +0.478335 +0.557626 +0.520685 +0.477652 +0.774134 +0.618929 +-0.841135 +0.889748 +0.819123 +0.901724 +0.812501 +0.759791 +0.058978 +0.795190 +0.607932 +0.955499 +0.921036 +0.708622 +0.843404 +0.807358 +0.965306 +0.923615 +0.993524 +0.025485 +0.402603 +0.842202 +0.966901 +0.623279 +0.993170 +0.769087 +0.908213 +-9.282570 +0.885740 +0.795903 +0.659400 +0.695847 +-0.678410 +0.989046 +0.872503 +0.571738 +0.914443 +0.769137 +0.685818 +0.946532 +-0.223074 +0.836461 +0.413054 +0.831556 +0.972761 +0.968914 +0.729591 +0.808105 +0.419332 +0.609426 +0.563377 +0.948415 +0.771054 +0.317115 +0.873951 +0.933003 +0.929287 +0.929547 +0.968545 +0.712082 +0.822959 +0.861634 +0.411608 +0.715873 +0.718445 +0.668362 +0.515084 +0.955543 +0.932943 +0.731027 +0.563254 +0.840617 +0.329016 +0.250865 +0.340635 +0.714645 +0.655695 +0.821369 +0.667292 +0.927960 +0.888386 +0.928926 +0.854029 +0.973646 +0.959326 +0.669135 +0.458452 +0.927672 +0.981491 +0.329646 +0.505547 +0.541236 +0.962139 +0.480710 +0.904311 +0.947972 +0.551993 +0.937367 +-0.238968 +0.883364 +0.948770 +0.938249 +0.691006 +0.455161 +0.928569 +0.824582 +0.853805 +0.958372 +0.801048 +0.689494 +0.930457 +0.883587 +0.798583 +0.869317 +0.934405 +0.445971 +0.456046 +0.644367 +0.261813 +0.835019 +0.835129 +0.925659 +-0.002306 +-0.040203 +0.513838 +0.944692 +0.825071 +0.862084 +0.491695 +0.762322 +0.832107 +0.865509 +0.938685 +0.405771 +0.604197 +0.899525 +0.734423 +0.269588 +0.727635 +0.300900 +0.825380 +0.247292 +0.480990 +0.906709 +0.350901 +0.665081 +0.756035 +0.516624 +0.938112 +0.835136 +0.842892 +0.853293 +0.777357 +0.470821 +0.567504 +0.333665 +0.083069 +0.819177 +0.342638 +0.361535 +0.495381 +0.823508 +0.268101 +0.748355 +0.926129 +0.923973 +0.531004 +-0.215472 +-0.056889 +0.612182 +0.789555 +0.850684 +0.939782 +0.882566 +0.880773 +0.790622 +0.170469 +0.712041 +0.457209 +0.609147 +0.823798 +0.545225 +0.547354 +0.363051 +0.741620 +0.719210 +0.528492 +0.913918 +0.773957 +0.313844 +0.857263 +0.865881 +0.861214 +0.910557 +0.756364 +0.883812 +0.916621 +0.202022 +0.097373 +0.769360 +0.592314 +0.931022 +0.673885 +0.559655 +-0.244779 +0.541931 +0.181965 +0.629697 +-0.951244 +-1.196986 +0.771647 +0.550695 +0.937148 +0.738583 +0.592747 +0.079063 +0.079704 +-0.113502 +-0.475003 +0.046898 +0.118559 +-0.020137 +-0.005080 +0.993164 +0.643415 +-0.022110 +0.827688 +0.625366 +0.386257 +0.601550 +0.707221 +0.856479 +0.344048 +0.719192 +0.256483 +0.541820 +0.104422 +0.353483 +0.946595 +0.261980 +0.108148 +0.955256 +0.997855 +0.123112 +0.322541 +0.949461 +0.769862 +0.272988 +0.178212 +0.312162 +0.258925 +0.140757 +0.959571 +0.084466 +0.317226 +0.634976 +0.040234 +0.792179 +0.920406 +0.506526 +0.962901 +0.925582 +0.790298 +0.104726 +0.872629 +0.940124 +0.995623 +0.263663 +0.567776 +0.559375 +0.878257 +0.258598 +0.579488 +0.525621 +0.717588 +0.902872 +0.603508 +0.663683 +0.222700 +0.038911 +0.089877 +0.669210 +0.206553 +0.806160 +0.730124 +0.105994 +0.970293 +0.130020 +0.738764 +0.936240 +0.720994 +0.682698 +0.367202 +0.054567 +0.284953 +0.870880 +-0.127697 +0.968191 +0.452421 +0.328646 +0.047340 +0.194203 +0.235945 +0.774485 +0.377247 +0.057231 +0.815158 +0.666111 +0.837948 +-0.127779 +0.489680 +0.635504 +0.852879 +0.299043 +0.740858 +0.320102 +0.889093 +-0.027635 +0.184539 +0.569938 +-1.066196 +-0.691985 +-0.102844 +0.834879 +0.725242 +0.821481 +0.800483 +0.219490 +0.620754 +-0.359284 +0.701984 +0.096315 +0.878818 +0.212227 +0.310642 +0.322194 +0.722735 +0.151594 +0.258749 +0.632849 +0.533188 +0.105962 +0.506352 +0.067382 +0.310734 +0.022726 +0.156809 +0.250061 +0.478274 +0.334168 +0.123880 +0.615339 +0.330454 +0.217952 +0.104764 +-0.444777 +-0.120917 +0.254703 +0.320005 +0.805629 +0.786402 +0.415091 +0.269822 +0.201809 +0.993086 +0.213078 +-0.709825 +-0.087454 +0.264345 +0.482975 +0.454292 +0.304052 +0.263551 +0.953699 +0.877071 +0.330030 +0.729197 +0.438858 +0.884361 +0.984156 +0.390990 +0.332254 +0.621588 +0.974638 +0.503327 +-2.039920 +0.256342 +0.126070 +0.138945 +0.865811 +0.963682 +0.220247 +0.799384 +0.171961 +0.191723 +0.518300 +0.227311 +0.246256 +0.760628 +0.161026 +0.124339 +0.584231 +0.806965 +0.121322 +0.379841 +0.592697 +0.255092 +0.294032 +0.690371 +0.198171 +-0.244125 +0.891825 +0.612322 +0.400419 +0.934975 +0.064859 +0.847638 +-0.019915 +0.945643 +0.677078 +0.138833 +0.552598 +0.678989 +0.608651 +0.483072 +0.837811 +0.172717 +0.601290 +0.909878 +0.543438 +0.340137 +0.942864 +0.596293 +0.941569 +0.927535 +0.261523 +0.907146 +0.886168 +0.771132 +0.938846 +0.652913 +0.800413 +0.871813 +0.870985 +0.902524 +0.966533 +0.824252 +0.296614 +0.728067 +0.924071 +0.933965 +0.978681 +0.994980 +0.724756 +0.596936 +0.916005 +0.687558 +0.912898 +0.816360 +0.244886 +0.869505 +0.729642 +0.550595 +0.886570 +0.940230 +0.748394 +0.705009 +0.750208 +0.949684 +0.501208 +0.539050 +0.618602 +0.535322 +0.827754 +-0.586928 +0.367899 +0.988611 +0.778873 +0.851037 +0.922524 +0.902673 +0.389775 +0.891397 +0.798015 +0.861528 +0.701153 +0.922484 +0.455948 +0.843969 +0.865300 +0.306804 +0.256433 +0.334602 +0.557026 +0.908315 +0.505179 +0.692669 +0.440958 +0.591407 +0.711096 +0.063671 +0.710282 +0.553810 +0.701579 +0.503287 +0.927979 +0.400223 +0.853727 +0.896005 +0.427936 +0.930805 +0.663287 +0.797593 +0.495707 +0.886748 +0.711256 +0.200306 +0.322363 +-0.160108 +0.653615 +0.726704 +0.392608 +0.907791 +0.218251 +0.659932 +0.955408 +0.447906 +0.037027 +0.369566 +0.308907 +0.431563 +0.867795 +0.093370 +0.772657 +0.839549 +0.578210 +0.464396 +0.013785 +0.497859 +0.898245 +0.638444 +0.943206 +0.420662 +0.883663 +0.892253 +0.502987 +0.381082 +0.348639 +0.140757 +0.619702 +0.222000 +0.890569 +0.337251 +0.165462 +0.198034 +0.583591 +0.057079 +0.658671 +0.031021 +0.215888 +0.971303 +0.784559 +0.198552 +0.452577 +0.707160 +0.058382 +0.119816 +0.205402 +0.894361 +0.850247 +0.746387 +-0.432586 +0.908127 +0.495507 +-0.311551 +0.936732 +0.724057 +-1.879797 +0.502212 +0.225459 +0.147940 +0.190419 +0.369467 +0.508720 +0.768256 +0.827519 +0.682044 +0.807287 +0.758672 +0.602477 +0.467342 +0.803523 +0.804067 +0.587015 +0.594592 +0.011458 +0.118478 +0.217181 +0.596649 +0.699241 +0.144752 +-11.020710 +0.140584 +0.970443 +0.180201 +0.481428 +0.614983 +0.296160 +0.665256 +0.228432 +0.150809 +-3.338221 +0.069799 +0.317104 +-0.073248 +0.502460 +0.435992 +0.559172 +0.953549 +0.723543 +0.888509 +0.568150 +0.755976 +0.658045 +0.813961 +0.952325 +0.777870 +0.887735 +0.515555 +0.906939 +0.793547 +0.344978 +0.683609 +0.533687 +0.330153 +0.674727 +0.576985 +0.699425 +0.750593 +0.681577 +0.408798 +0.301692 +-0.442959 +0.507885 +0.857150 +0.623822 +0.838974 +0.853708 +0.661262 +0.648026 +0.677105 +0.719454 +0.881116 +0.763071 +0.762414 +0.786534 +0.722606 +0.844004 +0.839621 +0.926644 +0.986575 +0.126733 +0.355255 +0.781050 +0.865634 +0.944926 +0.515697 +0.746755 +0.578566 +0.314057 +0.927876 +0.697826 +0.857384 +0.876185 +0.944449 +0.485447 +0.823150 +0.613323 +0.270222 +0.932918 +0.942709 +0.884728 +0.931947 +0.271947 +0.800494 +0.854978 +0.738972 +0.902055 +0.936513 +0.597995 +0.943383 +0.898961 +0.394824 +0.729160 +0.425935 +0.550227 +0.270402 +0.584551 +0.853671 +0.312462 +0.725627 +0.819393 +0.856098 +0.849531 +0.200826 +0.597389 +0.792801 +0.668230 +0.565820 +0.632644 +0.599583 +0.764713 +0.362360 +0.320024 +0.585532 +0.680384 +0.257645 +0.327665 +0.253910 +0.862246 +0.933955 +0.359535 +0.067447 +-0.062409 +-0.154954 +0.313527 +0.531110 +0.821989 +0.604803 +0.605212 +0.779041 +0.274009 +0.645109 +0.850056 +0.951237 +0.864851 +0.876050 +0.921141 +0.591995 +0.880360 +0.721698 +0.820245 +0.877542 +0.569903 +0.954814 +0.660933 +0.642772 +-1.872620 +0.374949 +0.162652 +0.988724 +0.110605 +0.279398 +-3.616667 +0.310358 +0.984901 +0.447789 +0.260709 +0.410568 +0.627757 +0.196158 +0.281024 +0.324271 +0.982927 +0.132190 +-0.975323 +0.011620 +0.351473 +0.988560 +0.394960 +0.465585 +0.357998 +0.295215 +0.006821 +0.209462 +0.709056 +0.439139 +-0.095973 +0.385111 +0.105189 +0.965986 +0.336630 +0.188986 +0.086120 +0.184403 +0.242979 +0.934713 +0.649918 +0.534857 +0.947785 +0.782140 +0.912747 +0.807991 +0.606935 +0.598928 +0.773959 +0.191230 +0.528857 +0.655208 +0.778630 +0.674584 +0.912513 +0.725687 +0.592835 +0.720804 +0.840297 +-0.095532 +0.801727 +-0.242934 +0.778574 +0.692156 +0.244352 +0.816960 +0.488946 +0.047574 +-0.018319 +0.745007 +0.697277 +0.661590 +0.721895 +0.873320 +0.763448 +-0.038660 +0.505011 +0.344401 +0.846442 +0.891362 +0.610305 +0.667554 +0.522070 +0.773749 +0.540156 +0.804292 +0.881056 +0.772329 +0.843810 +0.891591 +0.349895 +0.889642 +-0.362857 +0.834396 +0.817942 +0.597489 +0.800087 +0.423818 +0.891542 +0.607527 +-0.497253 +0.901345 +0.883346 +0.812639 +-0.110405 +0.988954 +0.693160 +-6.365208 +0.881465 +0.819500 +0.925457 +0.325168 +0.958876 +0.619939 +-5.272234 +-0.527243 +0.743727 +0.731539 +0.124315 +0.687035 +0.332072 +-0.477227 +-2.084696 +0.906806 +0.881476 +0.882494 +0.941203 +0.835885 +0.816849 +0.508525 +0.992199 +0.332450 +0.775018 +0.695078 +0.188627 +0.513712 +0.969322 +-0.216761 +0.910268 +0.691103 +0.746830 +0.620813 +0.761140 +0.511251 +0.875888 +0.714976 +0.936313 +0.930020 +0.483496 +0.833255 +0.557269 +0.928766 +0.932850 +0.813630 +0.855700 +0.497274 +0.618061 +0.353292 +0.270394 +0.384870 +-49.405503 +0.030055 +0.356714 +0.359431 +0.959195 +0.443309 +0.522863 +0.183447 +-0.133093 +0.830808 +0.543928 +0.038897 +0.188493 +0.294467 +0.946293 +-0.050447 +0.918708 +-0.015894 +0.693147 +0.812800 +0.825210 +-0.118043 +0.571803 +0.762410 +0.606892 +0.145842 +0.042648 +0.185575 +0.820284 +0.224420 +0.302467 +0.865367 +0.778566 +0.753379 +0.854877 +-0.160935 +0.881069 +0.927965 +0.672241 +0.001805 +0.371864 +0.864656 +0.760100 +0.697301 +0.402103 +0.286777 +0.423646 +0.560819 +-0.901672 +0.886097 +0.518321 +0.838675 +0.968288 +0.844153 +0.974350 +0.854722 +0.704517 +0.678189 +0.147480 +0.818251 +0.794827 +0.996966 +-1.142751 +-0.153684 +0.883855 +0.361717 +0.653371 +0.943821 +0.466335 +0.892910 +0.437317 +-0.183902 +0.471128 +0.754037 +0.731317 +0.317225 +0.670236 +0.470593 +0.201568 +0.565852 +0.755688 +0.849299 +0.902763 +0.630158 +-0.713140 +0.728358 +0.850139 +0.370634 +0.979277 +0.715619 +0.432352 +0.652210 +0.859126 +0.822983 +0.633548 +0.966605 +0.691982 +0.213588 +0.945604 +0.467849 +0.864285 +0.702644 +0.840691 +0.899808 +0.979143 +0.927758 +0.827812 +0.830752 +0.885362 +0.973851 +0.540149 +0.998771 +0.303855 +0.989293 +-0.386530 +0.781376 +0.510240 +0.907002 +0.954607 +0.407806 +-0.182524 +0.842464 +0.964193 +0.964051 +0.413540 +0.965064 +0.501139 +0.667972 +0.233736 +0.679828 +0.582737 +0.269071 +0.727161 +0.378383 +0.702719 +0.829184 +0.593537 +0.658611 +0.416803 +0.201609 +0.611176 +0.725717 +0.974969 +0.669090 +0.366054 +0.848175 +0.655452 +0.400987 +0.928974 +0.878678 +0.776737 +0.754447 +0.698681 +0.871703 +0.846339 +0.721378 +0.510182 +0.358982 +0.727722 +-0.094993 +0.703631 +0.960908 +0.850773 +0.534472 +0.894188 +0.934426 +0.653021 +0.652077 +0.639545 +0.512582 +0.609195 +0.754699 +0.549701 +0.371699 +0.471254 +0.940360 +0.530903 +0.342557 +0.377529 +0.335169 +0.182478 +0.455951 +0.325888 +0.628472 +0.571753 +-0.298487 +0.464603 +0.823736 +0.574103 +0.823553 +0.572375 +0.815665 +0.971219 +0.182795 +0.519512 +0.302005 +0.471705 +0.635650 +0.569505 +0.693959 +0.386035 +0.561765 +0.605003 +0.494109 +0.467307 +0.357832 +0.595982 +0.827519 +0.909352 +0.711210 +0.920952 +0.678772 +0.380228 +0.894918 +0.818122 +0.832813 +0.413091 +0.818372 +0.723294 +0.765190 +0.689973 +-0.383477 +-0.303972 +-0.308171 +0.886306 +0.866462 +0.681383 +0.878684 +-0.155473 +-0.076964 +0.549697 +0.262053 +-0.257565 +0.852382 +0.721809 +-0.223465 +0.501608 +0.787071 +-0.143279 +-0.061853 +0.656994 +0.601358 +0.995533 +0.238347 +0.584335 +0.870170 +0.674722 +0.733251 +0.409321 +0.591113 +0.289345 +0.931350 +0.525818 +0.744707 +-0.000042 +0.391956 +0.480823 +0.676365 +0.689735 +0.875681 +0.402463 +0.322810 +0.532928 +0.767601 +0.357028 +0.719508 +0.377336 +0.254527 +0.847559 +0.774093 +0.862535 +0.556299 +0.752540 +0.704547 +0.142329 +0.191591 +0.795120 +0.444895 +0.889069 +0.220764 +0.492370 +0.852375 +0.781197 +-0.470861 +0.728497 +0.881732 +0.427960 +0.429794 +0.371456 +0.379593 +0.878369 +0.712112 +0.176287 +-0.658707 +0.803350 +0.763676 +0.679831 +0.901739 +0.579449 +0.403538 +0.462542 +-0.174889 +0.009611 +0.888575 +-0.171163 +0.337048 +-0.681486 +0.652516 +-0.249289 +0.841888 +0.379647 +0.491085 +0.827208 +0.240346 +0.616282 +0.672951 +0.709887 +0.520815 +0.855735 +0.700522 +0.881759 +0.412121 +0.793909 +-0.083166 +0.277057 +0.270192 +0.018847 +0.240444 +-0.012248 +0.392698 +0.447877 +-0.059356 +0.804137 +-0.097961 +0.580117 +0.863216 +0.885964 +0.985404 +0.826615 +0.522637 +0.673019 +0.632389 +0.866690 +0.999234 +0.392892 +0.589376 +-0.865676 +0.408502 +0.582757 +0.239469 +0.864935 +0.752712 +-2.123873 +0.674254 +0.575715 +0.614251 +0.198838 +0.629257 +0.855887 +0.825084 +0.618234 +0.204485 +0.654119 +0.970048 +0.314135 +0.768398 +-0.013987 +0.887159 +0.163396 +0.161626 +0.815094 +0.198383 +-0.027591 +0.197311 +0.137579 +0.180943 +0.344292 +0.997419 +0.995816 +0.360430 +0.159694 +0.560947 +0.863829 +0.131683 +0.785591 +0.977020 +0.310438 +0.160447 +0.280760 +0.492547 +0.886888 +0.977826 +0.873110 +0.830780 +0.000419 +0.618889 +0.152282 +0.510480 +0.077201 +0.521654 +0.586002 +0.586002 +0.489548 +0.981647 +0.221238 +-0.220408 +0.212536 +0.476675 +0.985203 +0.697318 +0.743467 +0.014535 +0.817977 +0.345814 +0.665818 +-40.278992 +0.778440 +0.922596 +-12.814196 +0.509524 +0.024345 +0.951722 +0.737782 +0.827050 +0.800748 +0.105024 +0.197044 +-2.999971 +0.731330 +0.150739 +0.304998 +0.183628 +0.658534 +0.073790 +0.241099 +0.305122 +-0.016850 +-0.038366 +0.293113 +0.404425 +0.771175 +0.223907 +-0.007222 +0.542538 +0.098109 +0.953089 +0.083782 +0.025367 +0.183918 +0.033883 +0.013575 +-2.997303 +0.734504 +0.919852 +0.613015 +0.661310 +-0.105271 +0.813083 +0.915431 +0.642237 +0.563642 +0.978143 +0.570246 +0.809107 +0.744221 +0.843951 +0.910306 +0.790787 +0.715053 +0.955513 +0.710530 +0.811859 +0.787448 +0.735516 +0.312271 +0.916926 +0.539686 +-0.443775 +-0.030541 +0.447476 +0.636169 +0.363164 +0.536223 +0.997916 +0.940365 +0.145630 +-0.240473 +0.638104 +0.119817 +0.801525 +0.863420 +0.951063 +0.584887 +0.587437 +0.735381 +-0.170677 +0.931512 +0.681363 +0.786686 +0.506260 +0.605501 +-0.047926 +0.862781 +0.509514 +0.918643 +0.797429 +0.790170 +0.782651 +-0.252753 +-968312.917727 +0.726237 +0.803395 +0.340460 +0.924314 +-16710.112337 +0.866477 +0.510931 +0.761854 +0.995992 +0.912439 +0.196297 +0.546347 +0.938353 +0.696576 +0.858763 +0.541515 +0.892862 +0.914200 +0.896750 +0.970937 +0.619081 +0.929316 +0.847628 +0.706162 +-0.013076 +-0.270316 +0.805404 +0.912347 +0.768137 +0.698919 +0.645041 +0.793613 +0.919106 +0.919116 +-0.018967 +0.648531 +0.909944 +0.667466 +0.707216 +0.699837 +0.898256 +0.621971 +0.735454 +0.409979 +0.783130 +0.681016 +0.793489 +0.211486 +0.047316 +0.206796 +0.803747 +0.768972 +-0.108961 +0.415147 +-0.048217 +0.113346 +0.303779 +0.166990 +0.596520 +-0.247283 +0.554243 +0.637044 +-0.058166 +0.271796 +0.171700 +0.062444 +0.315111 +-0.175724 +0.848763 +0.368828 +-0.325063 +0.466689 +0.396963 +0.296522 +0.238467 +-0.113156 +0.360550 +-0.205812 +0.685838 +0.463104 +-0.066119 +0.651660 +0.259683 +0.303281 +0.637358 +0.657801 +0.762265 +0.788292 +-0.175570 +0.097208 +0.367582 +-0.267830 +0.084429 +0.521092 +-0.141449 +0.634603 +0.657297 +0.953255 +0.754047 +0.152805 +0.716601 +0.766690 +0.762487 +0.534875 +-0.144640 +-0.483648 +0.152777 +-0.125275 +0.532559 +0.862717 +0.121999 +0.719135 +0.934001 +-0.931243 +0.856549 +-0.308053 +0.678651 +0.868241 +0.939413 +0.747499 +0.788580 +0.750239 +0.989440 +0.753032 +0.767494 +0.844293 +-0.206607 +0.929858 +0.613370 +0.661694 +0.782831 +0.908955 +0.821406 +0.866453 +0.929735 +0.648482 +0.995912 +0.851535 +0.931875 +0.930926 +0.561006 +0.609944 +0.422397 +0.861225 +0.898866 +0.932571 +0.930904 +0.503909 +0.864034 +0.601328 +0.994111 +0.933955 +0.932293 +0.847161 +0.936613 +-0.321623 +0.921433 +0.819716 +-0.607199 +0.937779 +0.934962 +0.851429 +0.838774 +0.607911 +0.643035 +0.586039 +0.840445 +0.720390 +0.972170 +0.739082 +-0.517636 +0.287257 +0.939180 +0.584263 +0.991157 +0.980230 +0.991503 +0.994986 +0.983475 +0.909395 +0.766019 +0.890097 +0.910748 +0.997541 +0.998011 +0.926227 +0.581886 +0.864798 +-0.580266 +0.722265 +0.865564 +0.567113 +0.278224 +0.865020 +-0.328113 +0.883409 +0.516348 +0.756900 +0.468169 +0.835721 +0.363046 +0.802087 +0.838949 +0.408320 +0.402141 +0.734073 +0.191730 +0.693497 +0.625945 +0.931185 +0.856654 +0.539545 +0.121235 +0.813174 +0.865343 +0.652982 +0.558484 +0.629628 +0.683451 +0.335053 +0.659197 +0.976645 +0.896113 +0.546259 +0.736507 +0.564585 +0.377461 +0.267297 +0.729304 +0.693843 +-13.179401 +0.715521 +0.313858 +0.767883 +0.716331 +0.912304 +0.498708 +0.851216 +0.968988 +-0.160839 +0.690743 +0.147053 +0.123569 +0.184303 +0.561122 +0.453412 +0.701526 +0.377979 +0.468469 +0.693295 +0.760299 +0.044226 +0.096963 +0.064348 +0.506382 +-0.135917 +0.919639 +0.497955 +0.679914 +-0.289324 +0.569481 +0.386150 +0.606969 +0.663451 +0.278841 +0.995918 +-22.755041 +0.514701 +0.006839 +0.545420 +0.827077 +0.192877 +0.222616 +0.186958 +0.381563 +0.116340 +0.621254 +0.751089 +0.522959 +0.781209 +0.417022 +0.674523 +0.759815 +0.915509 +0.848527 +0.543295 +0.541272 +-0.027568 +0.783185 +0.371608 +-0.388688 +0.932395 +0.604851 +0.796609 +0.396121 +0.490289 +0.746507 +0.955501 +0.216576 +0.377188 +-0.257866 +0.814798 +0.888821 +0.715215 +0.811081 +0.937557 +0.902100 +0.944100 +0.934103 +0.829090 +0.917487 +0.855325 +0.025066 +0.604699 +0.569091 +0.428568 +0.927839 +0.574401 +0.161248 +0.975929 +0.773763 +0.496035 +0.681345 +0.837199 +0.109984 +0.576900 +-0.013764 +0.814806 +0.820399 +0.862551 +0.964526 +0.906107 +0.420474 +0.708321 +0.809957 +0.598432 +0.279887 +0.955753 +0.831432 +0.572730 +0.872783 +0.901273 +0.970907 +0.826405 +0.956133 +0.539381 +0.851300 +0.552986 +0.445580 +0.434584 +0.909037 +0.655037 +0.348417 +0.970765 +0.888534 +0.954633 +0.874654 +0.900116 +0.200656 +0.456911 +0.957672 +0.815968 +0.411161 +0.906766 +0.863265 +0.872717 +0.726029 +0.928995 +0.845673 +0.636019 +0.465892 +0.901496 +0.967634 +0.829682 +0.904581 +0.290845 +0.264474 +0.683349 +0.454161 +0.918583 +0.856575 +0.932545 +0.485681 +0.874065 +0.574250 +0.404571 +0.886005 +0.858426 +0.489381 +0.753214 +-0.649711 +0.834991 +0.986856 +0.836263 +0.677180 +0.237990 +0.790405 +0.703879 +0.779733 +0.985965 +0.563366 +0.947270 +0.486639 +0.670787 +0.895955 +0.755008 +0.993715 +0.911378 +0.993610 +0.528392 +0.901028 +0.997799 +0.866587 +0.357846 +0.634860 +0.958405 +-0.269681 +0.942885 +0.728604 +0.835117 +0.577166 +0.835172 +0.906883 +0.761792 +0.732221 +0.634082 +0.686923 +0.473234 +0.739286 +0.646143 +0.045511 +0.715106 +0.916678 +0.447404 +0.848758 +0.614898 +0.857535 +0.634438 +0.942748 +-0.591470 +0.866614 +0.383822 +0.865027 +0.637155 +0.759116 +0.521202 +-0.015753 +0.639600 +0.816702 +0.802542 +0.623056 +0.345868 +0.689634 +0.070130 +0.397162 +0.703163 +0.996783 +0.954491 +0.863137 +0.984849 +0.919443 +0.457231 +-0.073041 +0.859267 +0.921955 +0.419014 +0.247224 +0.835211 +0.939123 +0.767428 +0.697263 +0.709494 +0.931574 +0.939095 +0.903809 +0.917203 +0.873432 +-0.403689 +0.869481 +0.846987 +0.956732 +0.797105 +0.593556 +0.500114 +0.499766 +0.317236 +0.798917 +-0.476414 +0.684211 +0.515151 +0.810422 +0.839937 +0.625815 +0.588139 +0.003285 +0.898398 +0.580111 +0.760196 +0.648237 +-0.249078 +-0.211928 +0.556091 +-0.050513 +0.864834 +-0.419973 +0.888756 +0.649781 +0.769287 +0.845771 +0.577357 +0.858836 +0.788052 +0.374697 +0.555046 +0.644172 +0.628787 +0.926625 +0.735379 +0.711752 +0.804724 +0.381133 +0.723214 +0.573322 +0.696853 +0.737503 +0.934048 +0.270559 +0.936968 +0.375022 +0.860360 +0.314059 +0.327805 +0.450676 +0.920258 +0.827066 +0.797887 +0.460004 +0.922395 +0.539372 +0.930896 +0.476939 +0.650710 +0.543118 +0.042013 +0.421601 +0.906491 +0.486163 +0.500153 +0.262773 +0.760380 +0.727902 +0.996709 +0.999879 +-2.877896 +0.999332 +0.999019 +0.978355 +0.624758 +0.895272 +-0.190346 +-0.475789 +0.831038 +0.813125 +0.911650 +0.329442 +0.833543 +-0.201574 +0.049816 +0.718361 +0.685541 +0.731580 +0.928011 +0.900122 +0.830026 +0.541851 +0.300055 +0.457298 +0.419308 +0.453335 +0.342465 +0.948697 +0.306489 +0.440283 +0.468746 +0.734121 +0.725366 +0.331249 +0.897983 +0.419725 +-0.561909 +0.197650 +0.393146 +0.357549 +0.420722 +0.351226 +0.595716 +0.406157 +0.135138 +0.386521 +0.582172 +0.246356 +0.041356 +0.477736 +0.540212 +0.061706 +0.505062 +0.674380 +0.640087 +0.648055 +-0.181598 +0.417413 +0.377595 +0.859512 +0.683087 +0.584860 +0.954354 +0.469040 +0.122816 +0.548215 +0.968951 +0.848482 +0.902625 +0.845047 +0.643566 +0.766353 +0.856436 +0.681492 +0.468535 +0.763834 +0.662050 +0.512800 +0.717891 +0.550775 +0.423086 +0.718509 +0.474241 +0.642841 +0.456623 +0.846745 +0.222590 +0.516907 +0.751564 +0.767542 +0.781191 +0.771911 +0.826022 +0.383212 +0.892326 +0.486540 +0.661769 +0.734351 +0.451228 +0.284078 +0.919173 +0.474566 +0.974197 +0.904198 +0.918954 +0.072910 +0.928464 +0.084937 +0.914058 +0.842984 +0.902387 +0.483226 +0.331855 +0.425309 +0.476480 +0.484256 +0.628206 +0.452007 +-11.485595 +-0.114273 +0.698884 +-48.189697 +-0.467955 +0.787469 +0.758688 +0.677506 +0.475782 +-0.070323 +0.924388 +0.476772 +0.447912 +0.647582 +0.450225 +0.299765 +0.607564 +0.667548 +0.758341 +0.464004 +0.708564 +0.617153 +0.829719 +0.552630 +0.416758 +0.429796 +0.643937 +0.865494 +0.955881 +0.979333 +0.964218 +0.771776 +0.581643 +0.843851 +0.983252 +0.709883 +0.754740 +0.717533 +0.914508 +0.819052 +0.743571 +0.496049 +0.784628 +0.693801 +0.432796 +0.372285 +0.479032 +0.575838 +0.491889 +0.490094 +0.451143 +-0.083296 +0.669901 +0.738187 +0.797183 +0.535407 +0.737319 +0.775708 +0.393327 +0.753177 +-93.501432 +0.783384 +-92.348639 +-89.038329 +0.224273 +0.710325 +0.440910 +0.377393 +0.519354 +0.351948 +0.770083 +0.626897 +0.899950 +0.660679 +0.753416 +0.630756 +0.436703 +0.089804 +0.113643 +0.692885 +0.960324 +0.137995 +0.246722 +0.422763 +-5.813943 +0.109634 +0.238217 +-1.711234 +0.656251 +0.767404 +0.001660 +0.743285 +0.645789 +0.378446 +0.819256 +0.559590 +0.307071 +0.831138 +0.841797 +0.200530 +0.820312 +0.299737 +-0.382040 +0.422417 +0.109886 +0.234890 +0.990092 +0.277985 +0.533759 +0.293468 +0.159987 +0.822467 +0.462731 +0.906701 +0.675877 +0.772886 +-0.070718 +0.049528 +0.436582 +0.603092 +0.947642 +0.854687 +0.747723 +0.961848 +0.863073 +0.885732 +0.753348 +0.517473 +0.644457 +0.737629 +0.449733 +0.993257 +0.472661 +0.699991 +0.602501 +0.733253 +-0.232476 +0.341393 +0.909581 +0.804871 +0.827057 +0.385091 +0.977121 +0.862481 +0.856410 +0.989897 +0.700502 +0.306592 +0.897490 +0.917798 +0.804684 +-8.501735 +-0.425124 +0.700439 +0.744951 +0.435613 +0.863273 +0.381413 +0.131201 +0.801447 +0.874272 +0.781193 +0.583594 +0.604440 +0.865865 +0.716779 +0.232534 +-0.304607 +-0.165798 +0.663477 +0.794911 +-0.282649 +0.384129 +0.890182 +0.409182 +0.886351 +0.956770 +0.649584 +0.883285 +0.904459 +0.490295 +0.991656 +0.452204 +0.474145 +0.835774 +0.687068 +0.735878 +0.868642 +0.859140 +0.314148 +0.112861 +0.334848 +0.857858 +0.880205 +0.811337 +0.960661 +0.763738 +0.820249 +0.646772 +0.654638 +0.650168 +0.641298 +0.732807 +0.581979 +0.876541 +0.893696 +-0.194942 +0.869938 +0.783145 +0.998222 +0.990568 +0.784834 +0.863894 +0.423627 +-0.114541 +0.260301 +0.420413 +0.928538 +0.119863 +0.163696 +0.720552 +0.375529 +0.559490 +0.711428 +0.370974 +0.448730 +0.136561 +0.010554 +0.299575 +0.888653 +-13.136344 +0.116996 +0.888469 +0.535597 +0.736177 +0.922033 +0.111252 +-0.037196 +-4.046709 +0.481627 +0.956404 +0.880990 +0.152679 +0.865184 +0.803923 +0.912997 +0.582197 +0.923745 +0.710185 +0.533671 +0.541897 +0.830601 +0.343300 +0.069802 +0.783880 +0.303017 +0.472618 +0.486710 +0.738136 +0.760523 +0.727526 +-0.177564 +0.306967 +-0.240830 +0.769466 +0.832831 +0.369445 +0.820094 +0.831188 +0.742628 +-0.054044 +0.702946 +-0.176182 +0.635812 +0.528045 +0.833263 +0.112029 +0.379134 +0.774301 +0.846232 +0.896002 +0.314823 +0.525070 +-0.132740 +0.774390 +0.826518 +-0.139802 +0.063884 +0.728543 +-0.043830 +0.397357 +-0.090724 +0.832637 +0.736842 +0.949377 +0.519801 +0.516728 +0.835282 +0.629875 +0.315596 +0.862160 +0.950331 +0.830060 +0.698394 +0.926331 +0.933401 +0.949697 +0.932071 +-0.519121 +0.935845 +0.879127 +0.284785 +0.821797 +0.934637 +0.928271 +0.222116 +0.915815 +0.573208 +0.797019 +0.587850 +0.931525 +0.300884 +0.934614 +0.437576 +-0.489356 +-0.056796 +0.774303 +0.394325 +0.935984 +0.869747 +0.933519 +0.760689 +0.361838 +0.829264 +0.759202 +-0.560934 +0.885355 +0.932177 +0.943417 +0.399374 +0.148717 +0.662388 +0.895160 +0.554269 +0.377674 +0.292378 +0.948125 +0.551121 +0.985944 +0.182181 +0.800591 +0.332715 +0.945057 +0.725021 +0.099522 +-0.034817 +0.899406 +0.856277 +0.909863 +0.606056 +0.811751 +0.703333 +0.817719 +0.920509 +0.851795 +0.594992 +0.753175 +0.923902 +0.498897 +0.908485 +0.717118 +0.680225 +-0.146015 +0.916764 +0.937612 +0.306590 +0.936186 +0.617502 +0.636422 +0.774587 +-0.054924 +0.786790 +0.727545 +0.952407 +0.331346 +0.731921 +0.956834 +0.934543 +0.903598 +0.447938 +0.684930 +0.662253 +0.862642 +0.937623 +0.702620 +0.557269 +0.534321 +0.592365 +0.947269 +0.266114 +0.221339 +0.373701 +0.926746 +0.934117 +0.919258 +0.341381 +0.938387 +0.545344 +0.355805 +0.675386 +0.491789 +0.137415 +0.551264 +0.506807 +0.892300 +0.374849 +0.200801 +0.200072 +0.259496 +0.452324 +0.007892 +0.224786 +0.108517 +0.594008 +0.078655 +0.436342 +0.128131 +0.046623 +-0.000235 +0.755419 +0.555961 +0.993215 +-0.212082 +0.017049 +0.267227 +0.794686 +0.857623 +0.679356 +0.149194 +0.347397 +0.618462 +0.529090 +0.549468 +0.800638 +0.358565 +0.617230 +0.813117 +0.992508 +0.216749 +0.918273 +0.831751 +0.849222 +0.909662 +0.883256 +0.842380 +0.309685 +-0.316228 +0.561405 +0.244208 +0.929265 +0.254287 +0.843830 +0.662731 +0.450094 +0.473647 +0.561688 +0.750971 +0.696590 +0.426603 +0.897222 +0.785540 +0.476201 +-0.031101 +0.467964 +0.203899 +0.321135 +0.703651 +0.601510 +0.265481 +0.657545 +0.709509 +0.919407 +0.748411 +0.770800 +0.672305 +0.623436 +0.648234 +0.347070 +0.372492 +0.751170 +0.474943 +0.436554 +0.834184 +0.270902 +0.358858 +0.881503 +0.860268 +0.294913 +0.939612 +0.886459 +0.426695 +0.913101 +0.735773 +0.325645 +0.266465 +0.265510 +0.345865 +0.234767 +0.650363 +0.097922 +0.601576 +0.895332 +0.229263 +0.683713 +0.410233 +0.838161 +0.681119 +0.510841 +0.471512 +0.345769 +0.293273 +0.856591 +-0.229861 +0.456231 +0.633279 +0.299278 +0.854758 +0.458273 +-0.113808 +-0.190371 +0.846941 +0.958409 +-0.052096 +0.412497 +0.539234 +0.788004 +-0.277523 +0.163062 +0.878778 +0.362700 +0.425377 +0.193112 +0.429096 +0.635367 +0.877008 +0.788587 +0.554740 +0.891270 +0.715548 +-0.137340 +0.191239 +-0.009115 +0.012149 +0.581587 +0.937494 +0.882090 +0.743222 +0.926508 +0.250491 +0.602751 +0.820999 +0.941531 +0.774072 +0.880728 +0.998448 +0.772234 +0.784331 +0.996898 +0.926915 +0.430199 +0.643599 +0.608317 +0.710332 +0.993258 +0.962344 +0.943300 +0.993392 +0.995031 +0.983793 +0.667271 +0.651287 +0.629584 +0.285101 +0.836510 +0.581867 +0.617510 +0.660531 +0.889998 +0.577838 +0.348377 +0.813723 +0.736037 +0.741945 +0.155690 +0.481981 +0.753653 +0.272598 +0.438684 +0.255918 +0.475317 +0.490393 +0.429024 +0.193461 +0.532440 +0.485130 +0.460128 +0.549621 +0.767238 +0.303688 +0.426507 +0.872567 +0.648602 +0.424404 +0.872441 +0.415403 +0.280820 +0.886830 +0.527348 +-0.222234 +0.704063 +0.789684 +0.881460 +0.908490 +0.623781 +0.732957 +0.692597 +0.929677 +0.460119 +0.770472 +0.930795 +0.679025 +0.711078 +0.834252 +0.362626 +0.570698 +0.279300 +0.664072 +0.562331 +0.171836 +0.187067 +0.614849 +0.728904 +0.687680 +0.732197 +0.514522 +0.828239 +0.532169 +0.821916 +0.483212 +0.745068 +0.274023 +0.824264 +0.646693 +0.318214 +-0.528981 +0.329742 +0.148442 +0.898448 +0.697854 +0.438257 +0.795050 +-0.144375 +0.453165 +0.831566 +0.707593 +0.587528 +0.763100 +0.825079 +0.471262 +0.933158 +0.438535 +0.309591 +0.499815 +0.866764 +0.590580 +0.848638 +0.375543 +0.784982 +0.303034 +0.754019 +0.577557 +0.349289 +0.898043 +0.695387 +0.858882 +0.901500 +0.361845 +0.871834 +0.869783 +0.238840 +0.906806 +0.921086 +0.745167 +0.678721 +0.933545 +0.926899 +0.557414 +0.932028 +0.834334 +0.418945 +0.791540 +0.897483 +0.591082 +0.417802 +0.858887 +0.341104 +0.467525 +0.927174 +0.623306 +0.894902 +0.889134 +0.954817 +0.585058 +0.639069 +0.721342 +0.748622 +0.079263 +0.519604 +0.911217 +0.315210 +0.762872 +0.742627 +0.738998 +0.488568 +0.451015 +0.758535 +0.451779 +0.216829 +0.585226 +0.423557 +0.279046 +0.708133 +0.638712 +0.535235 +0.735653 +0.499965 +0.628254 +0.318891 +0.491230 +0.744871 +0.762157 +0.267498 +0.418288 +0.445465 +0.471425 +0.719985 +0.455006 +0.580640 +0.480239 +0.250108 +0.757644 +0.491996 +0.742239 +0.200474 +-0.256955 +0.456155 +0.795750 +0.838510 +-0.278480 +0.886300 +-0.026854 +0.729186 +-0.162849 +-0.218508 +-1.121683 +-0.059132 +0.515110 +0.048917 +0.796895 +0.676066 +0.462093 +0.230906 +0.939303 +0.713802 +0.070431 +0.741964 +0.537818 +-1.134404 +0.658029 +0.845041 +0.302566 +0.449354 +0.777557 +0.686165 +0.880929 +0.713127 +0.569712 +0.505004 +0.862062 +0.198502 +0.449200 +0.720566 +0.814394 +0.933588 +0.869834 +0.678462 +0.475952 +-0.475231 +0.592718 +0.927436 +0.921375 +0.903970 +0.611943 +0.887007 +0.340265 +-0.174622 +0.894856 +0.535642 +0.654815 +0.582125 +0.996904 +0.851180 +0.697439 +0.651487 +0.531009 +0.770568 +0.837050 +-1.973364 +0.382415 +0.522629 +0.871604 +0.876357 +0.935580 +0.686428 +0.568118 +0.581060 +0.472659 +0.463947 +0.786884 +0.801211 +0.378518 +0.888810 +0.413002 +0.699296 +0.925801 +0.900366 +0.896520 +0.911684 +0.077650 +-3.611321 +0.139636 +0.816878 +0.691575 +0.409146 +-0.009444 +0.675023 +0.106333 +0.118019 +0.488206 +0.960856 +0.899748 +0.803447 +0.223005 +-0.169054 +0.804940 +0.624081 +-0.496430 +0.876054 +0.043498 +0.329351 +0.413361 +0.726003 +0.487277 +0.382412 +-0.359347 +0.589047 +0.527897 +0.400623 +0.496131 +0.433662 +0.569568 +0.744259 +0.628446 +0.914005 +0.508175 +0.697803 +0.877163 +0.549987 +0.938673 +-0.196128 +0.115976 +0.868624 +0.702677 +0.699968 +0.917468 +0.856479 +0.239489 +0.673917 +0.928162 +0.225548 +0.770366 +0.306095 +0.718328 +0.585555 +0.320743 +0.747982 +0.420245 +0.850704 +0.793745 +0.891931 +-0.302317 +0.748544 +0.672088 +0.366433 +0.701844 +-2.392136 +0.658186 +0.397511 +0.391450 +0.809908 +0.920169 +0.431481 +-0.277988 +0.708657 +0.084350 +0.706342 +0.749091 +0.940825 +0.845519 +0.835892 +0.666196 +0.852843 +0.814065 +0.234680 +0.935653 +0.698013 +0.543528 +-0.080920 +0.863749 +0.586659 +0.842170 +0.865297 +0.605916 +0.056867 +0.890579 +0.616621 +0.835850 +0.363566 +-0.276269 +0.834918 +0.807439 +0.701721 +0.784038 +0.949603 +0.531823 +0.748937 +0.631405 +-0.158734 +-0.208008 +0.499293 +0.603764 +-0.216142 +0.768891 +0.492378 +0.946616 +0.901163 +0.820199 +0.870341 +0.745381 +0.709850 +0.372989 +0.841338 +0.375119 +0.509378 +0.900351 +0.882454 +0.790847 +0.594174 +0.842736 +0.084940 +0.820787 +0.483057 +0.744954 +0.269529 +0.843844 +0.430043 +0.921091 +0.826648 +0.539738 +0.927927 +0.857103 +0.835387 +0.696628 +-0.210941 +0.639305 +0.751747 +0.806435 +0.373484 +0.601571 +0.889563 +0.740377 +0.375342 +0.881418 +0.891558 +0.713234 +0.905164 +0.719431 +0.658662 +0.513273 +0.509630 +0.760687 +0.812089 +0.214001 +0.750300 +0.596745 +0.872872 +0.847671 +0.709477 +0.853231 +0.741754 +0.678761 +0.355797 +0.517025 +0.865510 +0.857715 +0.863239 +0.531562 +0.381409 +0.082540 +0.570596 +0.744313 +0.541613 +0.425219 +0.885707 +0.833612 +0.903052 +0.857317 +0.723283 +0.734354 +0.803147 +0.337572 +0.500214 +0.910479 +0.907559 +0.737193 +0.571966 +0.917188 +0.498644 +0.594979 +0.851651 +0.946044 +0.819295 +0.656474 +0.752741 +0.637518 +0.625449 +0.706911 +0.441094 +0.749927 +0.814097 +0.928318 +0.217233 +0.719408 +-0.159845 +0.765583 +-0.553848 +0.832570 +0.754719 +-0.370088 +0.500721 +0.423618 +-0.076735 +0.715672 +0.840605 +0.515852 +-0.443767 +0.555609 +0.614153 +0.705951 +0.815611 +0.623634 +0.273653 +0.195534 +0.581095 +-0.286411 +0.542493 +0.739379 +0.724683 +0.744529 +0.601003 +0.393349 +0.703184 +0.718580 +0.522014 +0.373633 +0.748336 +0.968311 +-0.415673 +0.111328 +0.720399 +0.842704 +0.711842 +0.860574 +0.713270 +0.917607 +0.523250 +0.721912 +0.752965 +0.745293 +0.406207 +0.602434 +0.569629 +0.849974 +0.111631 +0.804259 +0.741033 +0.888026 +0.707214 +0.830294 +0.850136 +0.483204 +0.500027 +0.965818 +0.781900 +0.686421 +0.575139 +0.725575 +0.938622 +0.554708 +0.792106 +0.405406 +0.946806 +0.289063 +0.431172 +0.909128 +0.236662 +0.939267 +0.733035 +0.514405 +0.223298 +0.447871 +0.725193 +0.955538 +0.948083 +0.441028 +0.651288 +0.842495 +0.737805 +0.446430 +0.912740 +0.859140 +0.773818 +0.530555 +0.437216 +0.817570 +0.864367 +0.576302 +0.784589 +0.890493 +0.777452 +0.271009 +0.291992 +0.690222 +0.634782 +0.748159 +0.103496 +0.679466 +-1.151267 +0.487770 +0.828681 +0.776251 +0.032443 +0.041161 +0.266541 +0.604404 +0.630579 +0.841772 +0.482542 +0.935181 +0.741948 +0.744558 +0.496809 +0.918530 +0.761500 +0.872210 +0.679424 +0.873838 +0.389461 +-0.575409 +0.228973 +0.870802 +0.428431 +0.511837 +0.507660 +0.890366 +0.942960 +0.626246 +0.502820 +0.640534 +0.395305 +0.657625 +0.921198 +0.866263 +0.382249 +0.496189 +0.890391 +0.747463 +0.754795 +0.304448 +0.475778 +0.742715 +0.342412 +0.581798 +0.927051 +0.335871 +0.522511 +0.758639 +0.462581 +0.708621 +0.892799 +0.592482 +0.683678 +0.684047 +0.926203 +0.818410 +0.668086 +0.215896 +0.336251 +0.892131 +-0.023991 +0.924557 +0.811063 +0.934811 +0.299708 +0.816884 +0.984186 +0.137289 +0.909440 +0.891523 +0.766708 +0.770422 +0.713546 +0.940400 +0.987729 +0.431214 +0.934358 +0.692071 +0.988780 +0.742831 +-0.142389 +0.842702 +0.113664 +0.843930 +0.655137 +0.991311 +0.754403 +0.898883 +0.929496 +0.875809 +0.528568 +0.699387 +0.868946 +0.785183 +0.879614 +0.857574 +0.522489 +0.670169 +0.749985 +0.771195 +0.623166 +0.411157 +-0.989346 +0.446838 +0.909920 +0.691840 +0.544400 +0.348060 +0.835900 +0.907467 +0.650612 +0.586656 +0.282307 +0.738271 +0.983432 +0.863854 +0.019213 +0.515550 +-0.583900 +0.872769 +0.805880 +0.841668 +0.024091 +0.205781 +0.828719 +0.888860 +0.930855 +0.441512 +0.621937 +0.197525 +0.831257 +0.847021 +0.648682 +0.186596 +0.833533 +0.929430 +0.709869 +0.501016 +0.051278 +0.850357 +0.810178 +0.877442 +-0.087084 +0.515635 +0.608518 +0.715663 +0.111409 +0.709583 +0.931036 +0.384106 +0.631734 +0.888958 +0.548547 +0.637957 +0.877674 +0.636781 +0.321308 +0.405174 +0.282254 +0.503960 +0.516460 +0.466141 +0.533904 +0.715150 +0.819655 +0.518026 +0.444437 +0.753858 +0.993878 +0.799451 +0.181521 +0.799291 +0.435363 +0.195133 +0.895082 +0.751387 +0.611656 +0.997364 +0.601350 +0.849891 +0.851193 +0.762489 +0.840818 +0.810113 +0.193531 +0.819151 +0.807033 +0.887377 +0.785423 +0.848951 +0.823457 +0.518906 +0.442212 +0.405442 +0.252379 +0.866905 +0.878538 +0.722380 +0.215960 +0.805173 +0.914968 +0.754065 +0.792121 +0.552558 +0.182096 +0.580266 +0.850079 +0.945666 +0.918638 +0.323297 +0.719018 +0.694409 +0.447183 +0.810554 +0.845894 +0.735300 +0.713846 +0.446574 +0.732768 +-0.034885 +0.372902 +0.769807 +0.622978 +0.294438 +0.776289 +0.739396 +0.851139 +0.685531 +0.508180 +-0.179465 +0.499399 +0.430623 +0.850156 +0.472032 +0.494923 +0.473269 +0.653096 +0.710280 +0.393925 +0.752690 +0.584182 +0.231463 +0.481701 +0.785955 +0.471667 +0.886190 +0.818007 +-0.744394 +0.302137 +0.660713 +0.321639 +0.609039 +0.924490 +0.446536 +0.309687 +0.595241 +-0.216171 +0.781449 +0.756578 +0.763822 +0.845198 +0.563970 +0.167931 +0.620166 +0.891126 +0.636781 +0.825355 +0.853271 +0.818096 +0.585885 +0.893162 +0.860672 +0.384868 +-0.158683 +-0.107556 +-0.165754 +0.764183 +-1.729988 +0.356016 +0.457701 +0.331576 +0.819897 +0.734292 +0.577420 +0.429153 +0.662191 +0.882712 +0.987006 +0.399657 +0.940533 +0.590775 +0.800230 +0.745972 +0.797682 +0.850726 +0.930699 +0.932073 +0.945904 +0.435961 +0.849358 +0.932225 +0.825262 +0.930726 +0.901275 +0.875694 +0.471078 +0.668272 +-10.599260 +0.685088 +0.856192 +0.725577 +-0.468287 +0.891224 +0.646952 +0.269543 +-1.234834 +0.251562 +0.809320 +0.217825 +0.802836 +0.666489 +0.837498 +0.334969 +0.533351 +0.880223 +0.900759 +0.822317 +0.614105 +0.292580 +0.183525 +0.932877 +0.630832 +0.927206 +0.982905 +-0.602470 +0.888367 +0.544354 +0.664353 +0.309894 +0.876091 +0.467587 +0.949535 +-0.320489 +-0.341842 +0.425516 +0.843567 +0.894179 +0.993328 +0.449035 +0.824416 +0.904596 +0.563834 +0.826350 +0.904457 +0.474294 +0.894160 +0.525520 +0.862581 +0.998907 +-0.278066 +0.749506 +0.591168 +0.506231 +0.753923 +0.908171 +0.894636 +0.429997 +0.485425 +0.743484 +0.564114 +0.125651 +0.816999 +0.010298 +0.267142 +-0.070778 +0.916922 +0.793820 +0.457397 +0.542632 +0.573924 +0.822243 +0.554399 +0.481954 +0.011611 +0.677316 +0.556626 +0.239590 +0.354059 +0.500441 +0.851978 +0.931339 +0.680498 +0.811282 +0.401557 +0.885663 +0.707173 +0.562080 +0.811030 +0.774769 +-0.000392 +0.846559 +0.594015 +-0.122470 +0.490647 +0.555904 +0.867342 +0.775347 +0.375526 +0.835818 +0.773562 +0.682984 +0.594809 +0.172976 +0.895177 +0.861812 +0.665297 +0.961443 +0.620432 +0.905394 +0.123164 +0.573582 +0.932384 +0.289395 +0.326752 +0.869830 +0.666379 +0.888698 +0.931227 +0.801997 +-0.029716 +0.720588 +0.608235 +0.934025 +0.913163 +0.818322 +0.914754 +0.883590 +0.700840 +0.710724 +0.853439 +0.918772 +0.806011 +0.937548 +0.852443 +0.333633 +-0.715446 +0.523839 +0.632106 +0.423992 +0.594587 +0.797245 +-0.468975 +0.766755 +-0.130345 +0.442116 +0.515693 +0.861049 +0.379384 +0.569896 +0.312814 +0.671287 +0.120470 +0.189091 +-0.007845 +0.473555 +-0.096606 +0.851126 +-0.042695 +0.599725 +-0.104736 +0.362545 +0.518190 +0.434661 +0.907153 +0.584358 +0.455506 +0.209518 +0.099039 +0.537909 +0.336683 +0.741899 +0.277164 +0.108028 +0.619535 +0.511124 +0.718428 +0.769597 +0.474766 +0.879285 +0.518998 +0.724177 +0.722838 +0.785501 +0.980719 +0.454561 +0.907477 +0.373576 +0.583075 +0.432930 +0.688722 +0.699712 +0.940386 +-0.611632 +0.254785 +0.427145 +0.557379 +-0.341196 +0.860575 +0.873515 +0.837600 +0.760847 +0.716310 +0.905846 +0.671257 +-0.004030 +0.895556 +0.642603 +-22.359991 +0.320283 +0.791947 +0.922393 +0.076796 +-0.374315 +0.663955 +0.801916 +0.883957 +0.881916 +0.898872 +0.837855 +0.578082 +0.931667 +0.919352 +0.423694 +0.786409 +0.394495 +0.937486 +0.738429 +0.781332 +0.914963 +0.880398 +0.510395 +0.504525 +0.907508 +0.792602 +0.716139 +0.699819 +0.927899 +0.242169 +0.557143 +0.985986 +0.355638 +0.493438 +0.791330 +0.281086 +0.847074 +0.568491 +0.555541 +0.784337 +0.684195 +0.355076 +0.412680 +0.497339 +0.833346 +0.562608 +0.959660 +0.900503 +0.936291 +0.847472 +0.946582 +0.695633 +0.659103 +0.956256 +0.884198 +0.981983 +0.566865 +0.682961 +0.779988 +0.740235 +0.839624 +0.443410 +0.587451 +0.112518 +0.673952 +0.889911 +-0.089930 +0.694686 +0.792849 +-0.288244 +0.521206 +0.485098 +0.571961 +0.892256 +0.540311 +-0.112021 +0.748432 +0.339599 +-0.193517 +0.470718 +0.417452 +0.804626 +0.917626 +0.270881 +0.606837 +0.885380 +0.607838 +0.802323 +0.781457 +0.674389 +0.850472 +-1.101902 +-0.040117 +0.636477 +0.304583 +0.243634 +0.850933 +-0.359522 +-0.272139 +0.559261 +0.870538 +0.519199 +0.553500 +0.795537 +0.716433 +0.697284 +0.605613 +0.613252 +0.859974 +0.688994 +0.302161 +0.318745 +0.124389 +-0.083954 +0.764657 +0.751701 +0.872074 +0.430101 +0.571215 +-0.108426 +0.748501 +0.086223 +0.334850 +0.459357 +-0.281469 +0.363945 +0.692813 +0.869070 +0.581182 +-0.453579 +0.745606 +0.336968 +0.846545 +0.666956 +0.664367 +0.778873 +0.679272 +0.817009 +0.905690 +0.807911 +0.632304 +0.466408 +0.587232 +0.760647 +0.456216 +0.160234 +0.617473 +0.759560 +0.926058 +0.564054 +0.515613 +0.393528 +-0.161915 +0.528502 +0.678149 +0.750309 +0.648427 +0.546157 +0.475328 +0.364153 +0.752160 +0.889276 +0.774161 +0.894638 +0.710645 +0.924833 +0.615329 +0.843278 +0.717398 +0.808052 +0.967133 +0.412014 +0.650828 +0.372175 +0.742239 +0.660516 +0.036655 +0.285011 +0.158183 +0.720355 +0.572842 +0.731873 +-1.894591 +0.550515 +0.700968 +0.749024 +0.073193 +0.507344 +0.804860 +0.724953 +0.215777 +0.767173 +0.917444 +0.475816 +0.371046 +0.799818 +0.805459 +0.407498 +0.237527 +-0.182809 +0.851765 +0.643099 +0.540624 +0.656278 +0.743672 +0.388345 +-0.127797 +0.788462 +0.542513 +0.143768 +0.738773 +0.605839 +-0.139242 +0.647951 +0.839799 +-0.132609 +0.132749 +0.335238 +-0.114302 +-0.115755 +0.607953 +0.302014 +0.938088 +0.457038 +0.762909 +0.827075 +0.782004 +0.752873 +0.543418 +0.569341 +0.840659 +0.725797 +0.851794 +0.871980 +0.740296 +0.823296 +0.436788 +0.591412 +-10.206262 +0.455261 +0.441231 +0.613984 +0.711635 +0.252737 +0.278102 +-0.468197 +-0.001287 +0.852919 +0.041218 +0.931707 +0.595680 +0.714802 +0.934566 +0.944143 +0.748038 +0.100100 +0.917662 +0.920500 +0.753994 +0.785688 +0.764349 +0.446506 +0.859592 +0.775258 +0.867531 +0.812355 +0.602725 +0.736531 +0.699613 +0.622798 +0.802028 +0.592591 +0.971017 +0.680147 +0.699999 +0.901065 +0.665161 +0.764768 +0.596441 +0.749983 +0.256549 +0.347029 +0.990224 +0.291368 +0.258921 +0.216495 +0.786294 +0.713572 +0.678349 +0.842777 +0.805388 +0.390389 +0.482603 +0.413488 +0.945741 +0.128196 +0.431272 +0.935839 +0.069118 +0.385317 +0.911298 +0.370449 +0.824935 +0.860004 +0.835798 +0.974763 +0.283184 +0.739810 +0.958989 +0.018929 +0.846476 +0.476808 +0.906015 +0.957581 +0.613503 +0.903928 +0.103177 +0.011476 +0.114491 +0.541166 +0.583898 +-13.164699 +0.887816 +0.859190 +0.705344 +0.852301 +0.975161 +0.957967 +0.988903 +0.947827 +0.884183 +0.264158 +0.295888 +0.830761 +0.914236 +0.470290 +0.700219 +0.655933 +0.718546 +0.933277 +0.587160 +0.647299 +0.092178 +0.133970 +0.776208 +0.680466 +0.955338 +0.579244 +0.884714 +0.956614 +0.682074 +0.687169 +0.256429 +0.267815 +0.882108 +0.919239 +0.922176 +0.675630 +0.269997 +-0.803688 +0.670314 +0.935199 +0.941155 +0.724961 +0.799851 +0.650462 +0.843547 +0.903032 +0.359971 +-0.054693 +0.419421 +0.732304 +0.776327 +0.640680 +0.682356 +0.882456 +0.611949 +0.634339 +0.537420 +0.276540 +0.892568 +0.930796 +0.804578 +0.875003 +0.537107 +0.347121 +0.736273 +0.271824 +0.758001 +0.875625 +0.248602 +0.739852 +0.513799 +0.810352 +0.636008 +-0.238989 +0.816229 +0.705799 +0.906736 +0.807932 +0.460472 +0.750596 +0.707203 +0.835156 +0.903026 +0.419364 +0.146689 +0.537075 +0.750931 +0.706339 +0.321388 +0.827384 +-0.158738 +-0.195808 +0.838869 +0.970678 +-0.046012 +-0.316011 +-0.091954 +0.665996 +0.566867 +-0.022974 +0.192401 +0.788565 +0.651307 +0.701276 +0.931829 +0.554418 +0.697491 +0.195145 +0.440584 +0.339708 +0.559971 +0.889948 +0.650232 +0.968641 +0.764150 +0.739769 +0.824428 +0.030609 +0.262120 +0.859448 +0.861676 +0.738343 +0.825154 +0.680971 +0.501334 +0.540185 +0.646642 +-0.357092 +0.857735 +0.850187 +-0.306189 +0.504382 +0.122328 +0.230437 +0.084082 +0.557809 +0.920520 +0.967359 +0.411822 +0.140412 +0.217600 +0.929581 +-0.450383 +0.672445 +0.650614 +0.128879 +0.941661 +0.675310 +0.720580 +-0.312111 +-0.616565 +0.766985 +0.896672 +-0.150225 +0.725396 +0.727102 +0.555857 +0.238586 +0.910407 +0.976598 +0.884868 +0.304980 +0.945777 +0.937826 +0.938056 +0.914025 +0.933062 +0.936696 +0.444988 +0.391021 +-0.479233 +0.368588 +0.558583 +0.905110 +0.391569 +0.485575 +0.670048 +0.683184 +0.712166 +0.665802 +0.685725 +0.325630 +0.511869 +0.535538 +0.808717 +0.935545 +0.876718 +0.285616 +0.911625 +0.322275 +0.654806 +0.822866 +0.838320 +0.688433 +0.824523 +0.429852 +0.082337 +0.823447 +0.938887 +0.928338 +0.600719 +0.303556 +0.931425 +0.892645 +0.790137 +0.781151 +0.934366 +0.637254 +0.775223 +0.213671 +0.488161 +-0.362301 +0.933497 +0.782235 +0.667064 +0.533718 +0.926205 +0.338017 +0.629736 +0.620706 +0.483321 +0.732721 +0.843643 +0.757378 +0.764794 +0.765675 +0.927587 +0.721029 +0.904453 +0.920732 +0.798835 +0.514379 +0.950044 +0.923686 +0.621925 +0.395512 +0.582749 +0.938022 +0.947796 +0.786095 +0.688039 +0.118046 +0.891072 +0.871697 +0.827546 +0.286985 +0.892598 +0.119265 +0.806831 +0.738389 +0.500027 +0.638545 +0.761640 +0.857923 +0.752299 +0.546643 +0.960144 +-0.682825 +0.657921 +-14.448493 +0.485017 +0.889674 +0.376481 +0.945345 +0.839317 +0.467913 +0.375979 +0.924363 +0.421426 +0.918069 +-0.223164 +0.861002 +0.931980 +0.879309 +0.280804 +-0.245192 +0.126260 +0.912285 +0.826247 +0.418541 +0.840912 +-0.467587 +0.898173 +0.501898 +0.846618 +-0.254851 +0.886258 +0.311102 +0.402089 +-0.085723 +0.745607 +-0.345563 +0.516603 +0.253361 +0.215948 +0.886163 +0.730635 +0.979051 +0.656978 +0.752603 +0.993625 +-0.258291 +0.893546 +0.747511 +0.634770 +0.814125 +0.935922 +0.735307 +0.484863 +0.686185 +0.941522 +0.549542 +0.824293 +0.928797 +0.838547 +0.924342 +0.803293 +0.464272 +0.546461 +-0.052075 +0.931133 +0.862133 +0.496553 +0.690745 +0.714337 +-199.817814 +0.728881 +0.834699 +0.719443 +-0.154055 +-0.172306 +0.843216 +-0.235948 +0.839632 +0.668700 +0.406398 +0.721510 +0.163850 +0.545047 +0.519148 +-0.214655 +0.747222 +0.216368 +0.842590 +0.078056 +0.607861 +0.218969 +0.822021 +0.838200 +0.864574 +0.544720 +0.844207 +-0.270657 +0.747805 +0.709961 +0.314494 +0.846477 +0.403905 +0.912593 +0.396064 +0.879715 +-0.096772 +0.214452 +0.654406 +0.936938 +0.100024 +0.019863 +0.353875 +0.603686 +0.885494 +0.094914 +-0.021163 +0.891874 +0.713933 +0.209533 +0.890575 +0.823147 +0.639854 +0.773114 +0.929725 +-0.141571 +0.949557 +0.885566 +0.830782 +0.662102 +-0.188554 +0.782412 +0.641065 +0.329027 +-0.233197 +0.515813 +0.532095 +-0.190868 +0.242857 +0.823243 +0.792174 +0.796383 +0.930403 +0.362479 +0.125819 +0.412864 +0.824038 +-0.155245 +0.313010 +0.498558 +0.713623 +0.751468 +0.397666 +0.822573 +-0.528334 +-0.215320 +0.716803 +-0.111780 +-0.220212 +0.876273 +0.437582 +0.293519 +0.880861 +0.796592 +0.562179 +0.740457 +0.370577 +0.370979 +0.256905 +0.533778 +0.673444 +0.243915 +0.683021 +0.496885 +0.864447 +0.266310 +0.224235 +-0.933185 +-0.416079 +0.404937 +0.145010 +0.977257 +0.359711 +0.982849 +0.973087 +0.976517 +0.994268 +0.949995 +0.602646 +0.692033 +0.466386 +0.930993 +0.944101 +0.517009 +0.889183 +0.975892 +0.683100 +0.030289 +0.323263 +0.437292 +0.082029 +-0.117992 +0.722978 +0.399972 +0.517988 +0.503317 +0.051045 +-0.036314 +0.626124 +0.468622 +0.031745 +0.375065 +0.675023 +-0.266193 +0.711946 +0.931454 +0.691028 +0.559652 +0.734398 +0.894797 +0.585708 +0.480392 +0.205292 +0.828270 +0.753069 +0.815769 +0.815769 +0.657656 +-0.170480 +0.552054 +0.753260 +0.873994 +0.427229 +0.784031 +0.896963 +0.895292 +0.464342 +0.744237 +0.912281 +0.420522 +0.087474 +-0.114741 +0.739912 +-0.035455 +0.965497 +0.427646 +0.572311 +0.950668 +0.541498 +0.461478 +0.904048 +0.822262 +0.505386 +0.150825 +0.919950 +0.832774 +-0.196036 +0.494909 +0.722072 +0.923958 +0.588431 +0.749757 +0.556715 +0.558567 +0.880442 +0.555247 +0.863396 +0.754195 +0.764973 +0.832623 +0.900199 +0.861881 +0.905576 +0.839889 +0.801585 +0.840949 +0.927969 +-0.278135 +0.601350 +0.833683 +0.997968 +0.563174 +0.925113 +0.665587 +0.375515 +0.433625 +0.358820 +0.899108 +0.114219 +0.851731 +0.766958 +0.875795 +0.613793 +-0.208292 +0.483984 +0.809767 +0.968061 +-0.336085 +0.963916 +0.996823 +0.910245 +0.881555 +0.966650 +0.897186 +0.961833 +0.992655 +0.679302 +0.643014 +0.899240 +0.693844 +0.945026 +0.925197 +0.484116 +0.348224 +0.914787 +0.984525 +0.652150 +0.935904 +0.979627 +0.989650 +0.903584 +0.854308 +0.871211 +0.571469 +0.938972 +0.893052 +0.783683 +0.954777 +0.992563 +0.989745 +0.614436 +0.939266 +0.663544 +0.963514 +0.709631 +0.976905 +0.831885 +0.686120 +0.941489 +0.660270 +0.959715 +0.867462 +0.926463 +0.943936 +0.886690 +0.663941 +0.341439 +0.337810 +0.631504 +0.780652 +0.911525 +0.348432 +-0.082742 +0.388019 +0.650883 +0.975856 +0.852937 +0.235251 +0.488864 +0.337080 +0.651670 +0.687841 +0.209749 +0.865947 +-0.026130 +-0.105589 +0.935940 +0.063469 +0.594999 +0.933770 +0.930964 +0.686833 +0.621508 +0.890918 +0.636287 +0.721620 +0.862834 +0.755459 +0.541863 +0.841421 +0.704251 +0.776521 +0.515914 +0.955010 +0.273202 +0.846898 +0.547551 +0.692485 +-0.182237 +0.985431 +0.807191 +0.696679 +0.716041 +0.615509 +0.987094 +0.787946 +0.799921 +0.447364 +0.877562 +0.728030 +0.954815 +0.813404 +0.895089 +0.933101 +0.284078 +0.248713 +0.518549 +0.452739 +0.165599 +0.584412 +0.175713 +0.619946 +0.671031 +0.813689 +-0.233859 +0.825563 +0.452347 +0.584160 +0.886806 +0.299554 +0.751779 +0.893195 +0.946748 +0.678017 +0.531911 +0.630201 +0.942808 +0.997700 +0.931966 +0.918429 +0.598719 +0.870497 +0.727721 +0.948268 +0.975469 +0.164282 +0.581170 +0.681789 +0.636852 +0.717603 +0.849989 +0.200906 +0.864960 +0.930886 +0.423765 +0.562271 +0.911708 +0.926801 +0.047001 +0.672741 +0.027867 +0.914293 +0.729652 +0.936125 +0.789674 +0.404524 +0.506949 +0.481646 +-0.254253 +0.837254 +0.622779 +0.653385 +-0.036508 +0.493661 +0.217192 +0.825809 +0.701674 +0.036008 +0.969368 +0.382269 +0.762372 +0.356206 +0.386440 +0.982226 +0.734267 +0.323154 +0.222164 +-0.234922 +0.853816 +0.535522 +0.370147 +0.301657 +0.716041 +0.764723 +-0.237190 +0.741458 +0.809759 +0.358690 +-0.282732 +0.669464 +-0.028593 +-0.153725 +0.398171 +0.975255 +0.985902 +0.501754 +0.857331 +0.258949 +0.859449 +0.736563 +-0.005402 +0.867766 +0.890177 +-0.513169 +-34.286463 +0.620027 +0.640263 +0.662994 +0.976801 +0.601273 +-0.576531 +0.946478 +0.848172 +0.599038 +0.958894 +0.945785 +0.885238 +-0.015831 +0.943520 +0.938159 +0.872802 +0.284892 +0.748036 +0.870980 +0.368097 +0.324281 +0.824009 +0.939341 +0.960698 +0.952552 +0.399381 +-0.393479 +0.975919 +0.921232 +0.637879 +0.651537 +0.766267 +-1.302758 +0.310541 +0.758725 +-0.045907 +0.825335 +0.851025 +0.976881 +0.470567 +0.876653 +0.805207 +0.350582 +0.880823 +0.437242 +0.162713 +0.285275 +0.994415 +0.933399 +0.341310 +0.853703 +0.932036 +0.268224 +0.010715 +-0.022472 +0.870816 +0.552474 +0.539971 +0.455956 +0.779477 +0.355305 +-0.400977 +0.944300 +0.467082 +0.705568 +0.791935 +0.694473 +0.414171 +0.883863 +0.311642 +0.074422 +0.937221 +0.325109 +0.552652 +0.741052 +0.970117 +0.958332 +0.177665 +0.993515 +0.581970 +0.434266 +0.356585 +0.148460 +0.370461 +0.244506 +0.504138 +0.303453 +0.761766 +0.757145 +0.855237 +0.841760 +0.741523 +-0.204659 +0.802007 +-0.203669 +0.734743 +0.542281 +0.905823 +0.863886 +0.830734 +-0.261032 +0.511860 +0.865820 +0.359149 +0.644302 +-0.016489 +0.027343 +0.312891 +-0.678191 +0.008720 +0.903682 +0.811420 +0.869193 +0.768325 +0.593220 +0.871209 +0.841466 +0.421232 +0.897692 +0.853476 +0.796356 +0.086360 +0.473291 +0.930417 +0.813673 +0.765431 +0.656510 +0.828421 +0.508427 +0.622813 +0.425386 +0.851863 +0.766580 +0.935671 +0.806203 +0.979178 +0.788728 +0.303135 +0.492836 +0.936970 +0.585820 +0.165048 +0.490778 +0.933405 +0.717410 +0.849674 +0.934078 +0.470335 +0.818100 +0.284760 +0.543098 +0.879056 +0.784628 +0.810237 +0.905480 +0.779669 +0.568817 +0.855811 +0.938130 +0.681571 +0.897484 +0.567713 +0.938527 +0.333769 +0.637918 +0.857342 +0.666396 +0.742619 +0.810020 +-0.294658 +0.854273 +0.691650 +0.040217 +-0.937226 +0.930131 +0.749978 +0.747531 +0.947304 +0.825830 +0.557330 +0.707335 +0.734623 +0.859678 +0.051046 +0.882975 +0.886318 +0.588675 +0.866290 +0.628795 +0.301877 +0.918393 +0.159097 +0.640088 +0.948251 +0.934477 +0.818367 +0.743673 +0.846376 +0.658209 +0.410886 +-0.345914 +0.638947 +0.933833 +0.372647 +0.514338 +0.759334 +0.890242 +0.630869 +0.798254 +0.947434 +0.861137 +0.745615 +0.715713 +0.537037 +0.642606 +0.910880 +0.738963 +0.550575 +0.418947 +0.929816 +0.769286 +0.772512 +0.892751 +0.600339 +0.925390 +0.669233 +0.927518 +0.769476 +0.908386 +0.929866 +0.613032 +0.927061 +0.904992 +0.915704 +0.914346 +0.077913 +0.771457 +0.933521 +0.827252 +0.706980 +0.805484 +0.302001 +0.355870 +0.857096 +0.860245 +0.886868 +0.889347 +0.712524 +0.715734 +0.837268 +0.726214 +-0.798925 +0.515933 +0.341530 +0.929974 +0.888185 +0.778631 +0.776003 +0.879515 +0.716040 +0.418173 +0.546517 +0.803701 +0.889644 +0.721893 +0.332677 +0.242048 +0.466511 +-7.069239 +0.513788 +0.427283 +0.986663 +0.540733 +0.686925 +0.465863 +0.531352 +0.564922 +-0.247356 +0.085789 +0.441137 +0.647378 +0.692280 +-24.302739 +0.385110 +0.216901 +0.237220 +0.478608 +0.399480 +0.418736 +0.827242 +-0.027301 +0.197833 +0.804770 +0.181876 +0.511967 +0.271212 +0.788113 +0.345525 +0.597484 +0.987978 +0.429408 +0.948554 +0.657035 +0.649780 +0.298566 +0.517568 +0.852759 +0.424082 +0.913429 +0.647443 +-0.112076 +0.580005 +0.222965 +0.126877 +0.875308 +0.508874 +0.873804 +0.909984 +0.805216 +0.872128 +0.901252 +-0.064079 +-0.190740 +0.362273 +0.675335 +0.780868 +0.796671 +0.419154 +0.237097 +0.358542 +-0.206082 +0.064654 +0.676172 +0.811287 +0.775765 +0.913288 +-0.140150 +0.331749 +0.819563 +0.612585 +0.930788 +0.808205 +0.259456 +0.440505 +0.933897 +0.454277 +0.322614 +0.373145 +0.866394 +0.566353 +0.188907 +0.288935 +0.208013 +0.513928 +0.815415 +0.614412 +0.805366 +0.631207 +0.915348 +0.597462 +0.592879 +0.423525 +0.562926 +0.993992 +0.922363 +0.877036 +0.874046 +0.155072 +-1.976235 +0.674395 +-0.161912 +0.811132 +0.510207 +0.208152 +0.515996 +-0.043461 +0.827596 +0.512267 +0.932064 +-0.214521 +0.934805 +0.714989 +0.124373 +0.229075 +0.534443 +0.866084 +0.847474 +0.645180 +0.906695 +0.896826 +0.384842 +0.883380 +0.440164 +0.824700 +0.558948 +0.322851 +0.367476 +0.429559 +0.751214 +0.160013 +0.337367 +0.805339 +0.351700 +-0.291678 +0.198110 +0.847643 +0.456220 +-0.231948 +-0.210711 +0.454087 +0.288884 +0.353832 +0.429169 +0.368094 +-1.455368 +-1.317580 +0.606538 +0.411040 +-0.139481 +0.843694 +0.478489 +0.580251 +0.539161 +0.964864 +-0.108173 +0.709245 +0.696371 +0.803324 +0.858362 +-0.195067 +-1.108958 +0.967876 +0.571681 +0.359188 +0.974763 +-0.019203 +-6.979275 +-0.129850 +0.761273 +0.723124 +0.739217 +0.860824 +0.659256 +0.917068 +0.046852 +0.474098 +0.597841 +0.711366 +0.938378 +0.549400 +0.667718 +0.768803 +0.859001 +0.766578 +0.690287 +0.874409 +0.900754 +0.865649 +0.755294 +0.901541 +0.532727 +0.946590 +0.518572 +0.385041 +0.265099 +0.841581 +0.937198 +0.206991 +0.703438 +0.943329 +0.903374 +0.911437 +0.973438 +0.774293 +0.776283 +0.937169 +0.460214 +0.783104 +0.976304 +0.991916 +0.679212 +0.801613 +0.476050 +0.486989 +0.119051 +0.928507 +0.487771 +0.652658 +0.664978 +0.878111 +-0.836346 +0.820516 +0.882303 +0.585233 +0.684737 +0.923525 +0.514685 +0.512762 +0.781805 +0.899555 +0.543537 +0.536370 +0.751033 +0.642940 +0.862985 +0.496491 +0.661630 +0.889271 +0.520863 +-3.557441 +0.622106 +0.569200 +0.503671 +0.439376 +0.630077 +0.134912 +0.091302 +0.525703 +0.049499 +0.362315 +0.531773 +0.675302 +-0.232021 +0.859655 +0.905124 +0.563491 +0.390877 +0.440788 +-0.162570 +0.797203 +0.191166 +0.376907 +0.301608 +0.747428 +0.794175 +-0.042435 +0.425744 +0.998520 +0.103376 +-0.234544 +-0.035766 +0.636333 +-0.125674 +0.665360 +0.393897 +0.708297 +0.500521 +0.620208 +0.314970 +0.827739 +0.396240 +-0.202893 +0.567404 +0.642820 +0.623987 +-0.184068 +-0.169150 +0.626729 +0.620200 +-0.287262 +0.953043 +0.827470 +0.867840 +0.512203 +0.884423 +0.565207 +0.558513 +0.505563 +0.924495 +0.138432 +0.621378 +0.936253 +0.870177 +0.948892 +0.870068 +0.799207 +0.655117 +0.633365 +0.857422 +0.200488 +0.860626 +0.767523 +0.723225 +0.826507 +0.860691 +0.877755 +0.538654 +0.399375 +0.853412 +0.805260 +-1.098910 +-0.896376 +0.821993 +0.692951 +0.842984 +0.828149 +0.673337 +0.919767 +0.887326 +0.812185 +0.858774 +0.761495 +0.463685 +0.163262 +0.247722 +0.386881 +0.849635 +0.782855 +0.449103 +0.617186 +0.597947 +0.841888 +0.444852 +0.655983 +0.786885 +0.832958 +0.962311 +0.656605 +0.763532 +0.807897 +0.840185 +0.832082 +0.699833 +0.866411 +0.934084 +-0.141587 +0.201325 +0.894710 +0.127906 +0.816454 +0.705092 +0.924328 +0.575284 +0.902919 +0.291311 +0.500216 +-0.338024 +0.743171 +0.726201 +0.314011 +0.635110 +0.692040 +0.945533 +0.570303 +0.751561 +0.833702 +0.902772 +0.302049 +0.018938 +0.772105 +0.214245 +0.863027 +0.928821 +0.987655 +0.841861 +0.370920 +0.410918 +0.566813 +0.508799 +0.475512 +0.723556 +0.485020 +0.914503 +0.456746 +0.340053 +0.656271 +0.379652 +0.233079 +0.548614 +0.574923 +0.380494 +0.741194 +0.685220 +0.757625 +-0.013674 +0.549533 +0.193452 +0.442510 +0.906514 +-0.211700 +0.835645 +0.825642 +0.586658 +0.728383 +0.610391 +0.606545 +-0.070433 +0.603945 +0.576249 +0.898464 +0.530822 +0.807475 +0.474253 +0.469694 +0.259691 +0.948732 +0.283000 +0.953538 +0.836095 +0.923145 +0.432895 +0.842852 +0.922568 +0.803887 +0.771248 +0.811692 +0.491469 +0.958825 +0.763803 +0.752240 +-0.014283 +0.866740 +-0.303838 +0.583342 +0.885565 +0.776407 +0.734526 +0.223362 +0.080854 +0.819421 +0.928800 +0.666325 +-0.162043 +0.294562 +-0.122479 +0.441938 +-0.024683 +0.010769 +-0.165203 +0.658608 +-0.115176 +0.165926 +0.807886 +0.736707 +0.939887 +0.060019 +0.481544 +0.302636 +0.385048 +0.876509 +0.278671 +0.627091 +0.662697 +0.435583 +0.456353 +0.627252 +0.923395 +0.641586 +0.807496 +-0.279196 +0.742915 +0.597134 +0.645125 +0.694524 +0.461186 +0.579815 +0.375958 +0.406309 +0.404661 +0.439834 +0.242686 +0.237896 +0.363541 +0.924628 +0.553896 +0.637918 +0.476273 +0.867525 +0.688850 +-0.059743 +-0.084057 +0.456095 +0.033070 +0.637986 +0.221665 +0.414853 +0.359767 +0.367386 +0.617254 +0.126783 +0.591798 +0.480783 +0.204590 +-0.198491 +0.803641 +0.785879 +0.264933 +0.224022 +-0.249000 +-2.494994 +0.022118 +-0.182903 +0.673690 +0.490108 +0.829080 +0.554599 +0.696965 +0.422404 +0.864514 +0.886925 +0.049795 +-0.012918 +-0.161857 +0.650242 +0.784704 +0.725593 +0.742316 +0.257968 +-0.104877 +0.056027 +-0.074854 +0.678289 +0.903152 +-0.066600 +0.924714 +-0.136641 +0.726328 +0.687152 +0.539391 +0.201471 +0.620019 +0.885799 +0.753349 +0.933522 +0.824517 +-0.121109 +0.892718 +0.928042 +0.993027 +0.462226 +0.302645 +0.674218 +0.754015 +0.461181 +0.074344 +0.343480 +0.849706 +0.026290 +0.799999 +0.769551 +0.584891 +0.176885 +0.611391 +0.889709 +0.692880 +0.978304 +0.643288 +-1.917802 +0.880266 +0.968849 +0.962302 +-0.284556 +0.824051 +0.839188 +0.914570 +0.970637 +0.900355 +-0.308866 +0.851578 +-428.908096 +0.558751 +0.139484 +0.344225 +0.398209 +0.285748 +0.414179 +0.505544 +0.500301 +0.995656 +0.344483 +0.104884 +0.937017 +0.448467 +0.897880 +0.919122 +0.499455 +0.642113 +0.486644 +0.974654 +0.924573 +0.925625 +0.649005 +0.588168 +0.376725 +0.927463 +0.345146 +0.363488 +0.834254 +0.557003 +0.516108 +0.811314 +0.575168 +0.915414 +0.755657 +0.362978 +0.509351 +0.640672 +0.981164 +0.845811 +0.953734 +0.746557 +0.938761 +0.745536 +0.710707 +0.735278 +0.530190 +0.217543 +0.852307 +0.553670 +0.149132 +0.751021 +0.809808 +0.284070 +0.574328 +0.547236 +0.540312 +0.473922 +0.204424 +0.447717 +0.283250 +0.744893 +0.354732 +0.480205 +0.541796 +0.164341 +0.530993 +0.692985 +0.242489 +0.217817 +0.421953 +0.655490 +0.440561 +0.293646 +0.737593 +0.348517 +0.991188 +0.604056 +0.182648 +0.657210 +0.994709 +0.984074 +0.178989 +-2.150036 +-1.392690 +-2.163247 +0.794668 +0.527894 +0.235564 +0.566252 +0.946861 +0.030922 +0.014231 +-2.180648 +0.625055 +0.906540 +0.906668 +0.914168 +0.913816 +0.913816 +0.913848 +0.899072 +0.933216 +0.959592 +0.664573 +0.352289 +0.729841 +0.874895 +0.723689 +0.994108 +0.767330 +0.676991 +0.796736 +-0.784161 +0.916458 +0.920348 +0.979136 +0.827212 +0.835564 +0.452447 +0.895637 +0.967442 +0.989865 +0.788988 +0.552485 +0.711694 +0.729216 +0.709498 +0.583964 +0.457626 +-17.557487 +0.894959 +0.848744 +0.861602 +0.893995 +0.913912 +0.635217 +0.708115 +0.642965 +0.899713 +0.827889 +0.508404 +0.584379 +0.475715 +0.661433 +0.727307 +0.827894 +0.337988 +0.374488 +0.355749 +0.864533 +0.903401 +0.855148 +0.744370 +-84.330419 +0.774919 +0.736215 +0.210213 +0.993882 +0.896919 +0.772603 +0.392377 +0.398569 +0.937614 +0.655369 +0.894446 +0.699479 +0.783030 +0.343412 +0.896860 +0.772653 +0.360726 +0.436215 +0.333458 +0.075951 +0.274406 +0.629597 +0.611472 +0.292574 +0.560988 +0.521521 +0.662961 +0.812297 +-27170.855112 +0.579433 +0.951518 +0.602547 +0.826345 +0.907276 +0.897723 +0.615698 +0.797518 +0.660297 +0.668508 +0.606537 +0.884136 +0.792122 +0.840296 +0.868981 +0.688597 +0.890377 +0.591105 +0.444072 +0.507380 +0.507380 +0.457196 +0.785695 +0.894074 +0.518956 +0.462733 +0.705561 +0.449090 +0.261648 +0.470267 +0.377771 +0.765779 +0.768425 +0.801784 +0.731979 +0.920921 +0.668787 +0.637060 +0.342226 +0.739563 +0.287270 +0.405645 +0.344161 +0.242414 +0.700036 +0.442493 +0.574589 +0.106557 +0.614298 +0.767548 +0.927807 +0.672335 +0.192514 +0.839669 +0.633315 +0.940662 +0.859887 +0.929267 +0.310178 +0.643618 +0.546919 +0.677172 +0.271990 +0.569838 +0.558461 +0.513100 +0.570324 +0.623980 +0.569396 +0.914684 +0.549100 +0.927077 +0.461932 +0.767260 +0.806849 +0.788724 +0.781846 +0.362690 +0.676220 +0.449680 +0.951493 +0.641058 +0.603413 +0.682029 +0.716534 +0.454209 +0.909675 +0.652774 +0.491777 +0.652425 +0.276984 +0.936933 +0.712598 +0.905689 +0.657792 +0.783062 +0.420575 +0.428746 +0.651631 +0.644833 +0.344515 +0.360104 +0.623440 +0.561150 +0.432963 +0.313765 +0.766281 +0.509325 +0.748338 +0.447306 +0.828186 +0.760479 +0.686402 +0.887952 +0.667750 +0.907517 +0.438814 +0.832479 +0.987378 +0.813346 +0.754486 +0.967626 +0.410719 +0.827008 +0.206993 +0.797155 +0.241220 +0.736281 +0.959535 +0.921930 +0.972150 +0.841701 +0.936043 +0.843719 +0.811006 +0.854137 +0.956194 +0.683306 +0.282560 +0.934173 +0.708814 +0.974585 +0.813699 +0.903665 +0.901300 +0.663346 +0.725266 +0.926719 +0.226413 +0.470791 +0.943009 +0.852631 +0.704102 +0.595766 +0.861444 +0.757199 +0.495662 +0.954880 +0.834090 +0.700090 +0.879052 +0.812543 +0.543360 +0.708628 +0.904927 +0.550415 +0.873832 +0.703582 +0.555321 +0.873011 +0.788675 +0.136074 +0.515579 +0.989912 +0.670254 +0.746239 +0.318801 +0.340694 +0.468221 +0.959797 +0.487179 +0.925648 +0.487817 +0.708678 +0.363788 +0.445009 +0.756163 +0.878694 +-0.095799 +-87.598253 +0.768981 +0.807079 +0.880556 +0.614496 +0.193735 +0.600434 +0.819686 +0.842023 +0.929575 +0.812164 +0.094976 +0.661337 +0.616032 +0.391704 +0.393655 +0.675706 +0.770656 +0.133491 +0.192543 +0.347801 +0.482589 +0.530911 +0.764248 +0.362692 +0.720371 +0.210112 +0.882343 +0.952125 +0.950073 +0.547589 +0.554513 +0.559869 +0.665689 +0.645265 +0.303644 +0.436524 +0.804121 +0.620062 +0.742341 +0.343881 +0.457105 +0.327995 +0.411304 +0.441567 +0.777543 +0.289923 +0.986058 +0.800157 +0.684513 +0.662135 +0.682529 +0.552919 +0.705931 +0.869215 +0.543658 +0.541754 +0.674632 +0.604151 +0.513301 +0.410004 +0.764722 +0.979100 +0.636226 +0.598486 +0.445276 +0.434234 +0.192828 +0.355284 +0.085727 +-0.058187 +0.968340 +0.847835 +0.863820 +0.864483 +0.913944 +0.963319 +0.914040 +0.906636 +0.913880 +0.938861 +0.310772 +0.901809 +0.908518 +0.545880 +0.388199 +0.836594 +0.994394 +0.803255 +0.892979 +0.924821 +0.386347 +0.993271 +0.969777 +0.841180 +0.629224 +0.980477 +0.478939 +0.922758 +0.775843 +0.907935 +0.710683 +0.344708 +0.806745 +0.639950 +0.322797 +0.954627 +0.564139 +0.160913 +0.918621 +0.637048 +0.929359 +0.840915 +0.803069 +0.666901 +0.814130 +0.931802 +0.569459 +0.736562 +0.567750 +0.820236 +0.491469 +0.566852 +0.910795 +0.807005 +0.923933 +0.390263 +0.940130 +0.911626 +0.557510 +0.936421 +0.931505 +0.861005 +0.505999 +0.515962 +0.954486 +0.502927 +0.934471 +0.847358 +0.913170 +0.465639 +0.926726 +0.982524 +0.402997 +0.066277 +0.530721 +0.652078 +0.465972 +0.526837 +0.462613 +0.933073 +0.437165 +0.947115 +0.465294 +0.970173 +0.593367 +0.941792 +0.808175 +0.497436 +0.843020 +0.951926 +0.079011 +0.825782 +0.220450 +0.659833 +0.615442 +0.934376 +0.784680 +0.572579 +0.998070 +0.534333 +0.608873 +0.596941 +0.974826 +0.329205 +0.747287 +0.615554 +0.578484 +0.706335 +0.884416 +0.230747 +0.577479 +0.308966 +0.554068 +0.214290 +0.936003 +0.748915 +0.939392 +0.578010 +0.824513 +0.628280 +0.091272 +0.884344 +0.392201 +0.740922 +0.940117 +0.988507 +0.490994 +0.507230 +0.882356 +0.928110 +0.430629 +0.857009 +0.497765 +0.687514 +0.755020 +0.645202 +0.807952 +0.536084 +0.893679 +0.565603 +0.824937 +0.732404 +0.019205 +0.599107 +0.595805 +0.845762 +0.905785 +-0.286427 +0.435094 +0.584244 +0.332612 +0.315304 +0.364689 +0.467564 +0.271521 +0.679993 +0.718868 +0.985104 +0.783825 +0.384408 +0.826054 +0.553180 +0.489604 +0.460789 +0.950748 +0.446060 +0.350325 +0.660683 +0.318931 +0.901029 +0.639512 +0.379454 +0.490765 +0.404963 +0.439612 +0.237844 +0.403853 +0.010841 +0.728654 +0.766867 +0.680832 +0.912550 +0.631334 +0.426947 +0.688905 +0.701880 +0.994501 +0.457777 +0.797188 +0.705390 +0.778618 +0.561169 +0.712492 +0.798116 +0.939323 +0.737841 +0.360999 +0.748996 +0.766989 +0.745159 +0.530035 +0.633367 +0.746957 +0.632893 +0.275087 +0.474144 +0.472022 +0.311992 +0.524436 +0.806854 +0.499638 +0.955294 +0.711614 +0.257163 +0.153631 +0.014167 +0.106593 +0.963173 +0.009430 +0.533208 +-0.017216 +0.057527 +0.840238 +0.951280 +-0.020239 +0.021619 +0.743441 +0.582446 +0.153101 +0.027812 +0.237712 +0.140720 +-0.049235 +0.358687 +0.589272 +0.119185 +0.862996 +0.268718 +0.254366 +0.738976 +0.228659 +0.522692 +0.741463 +0.296621 +0.305428 +0.046496 +-0.061554 +-0.011295 +0.132471 +0.108111 +0.398572 +0.988623 +0.483237 +0.260659 +0.653254 +0.696057 +0.989091 +0.698045 +0.895175 +0.487212 +0.615906 +0.919882 +0.358799 +0.349926 +0.676579 +0.365104 +0.947410 +0.449319 +0.863239 +-3.718586 +0.843497 +0.868595 +0.625885 +0.762339 +0.605455 +0.773173 +0.806250 +0.525939 +0.840843 +0.750600 +0.838687 +0.444155 +0.864697 +0.888004 +0.649949 +0.854680 +0.572425 +0.713543 +0.917329 +0.394315 +0.435910 +0.236225 +0.753936 +0.255592 +0.547663 +0.979903 +-11.878674 +0.694529 +0.067892 +0.675564 +0.773510 +0.838930 +0.954857 +0.429869 +0.717647 +0.207271 +0.606815 +0.837383 +0.626163 +0.687900 +0.820568 +0.783382 +0.792475 +-12.975264 +0.790196 +0.734270 +0.584835 +0.930531 +0.693402 +0.809752 +0.462732 +0.780980 +0.866044 +0.833367 +0.543700 +0.939523 +0.579440 +0.710336 +0.568290 +0.919205 +0.469454 +0.767659 +0.876240 +0.863517 +0.987905 +0.830759 +0.854032 +0.542257 +0.487875 +0.518675 +0.599060 +0.893071 +0.531071 +0.602112 +0.923077 +0.465312 +0.214496 +0.419763 +0.288250 +0.372976 +0.500121 +0.150641 +0.695698 +0.915503 +0.928844 +0.908108 +0.630058 +-1.785476 +0.765460 +0.707157 +0.719799 +0.402619 +0.663474 +0.984421 +0.741944 +0.631939 +0.290798 +0.849105 +0.077432 +0.530304 +0.813028 +0.138526 +0.619875 +0.227613 +0.362036 +0.346614 +0.901689 +0.767284 +0.900503 +0.738442 +0.685439 +0.685774 +0.560463 +0.638948 +0.580921 +0.600257 +0.702593 +0.769469 +0.194334 +0.560226 +0.756953 +0.568041 +0.695496 +0.141239 +-86.403962 +0.873463 +0.757713 +0.698929 +0.642186 +0.676427 +0.222094 +0.635671 +0.222744 +0.199765 +0.680369 +0.240153 +0.783989 +0.875504 +0.648153 +0.486104 +0.970761 +0.562734 +0.512854 +0.671968 +0.664882 +0.828335 +0.703510 +0.290331 +0.467309 +0.530053 +0.428068 +0.736269 +0.403162 +0.950232 +0.381512 +0.659344 +0.551884 +0.486994 +0.620305 +0.720973 +0.799840 +0.580980 +0.168472 +0.675097 +0.513678 +0.648541 +0.327817 +0.513695 +0.471014 +0.867417 +0.618684 +0.452064 +0.420066 +0.762221 +0.204463 +0.410255 +0.218189 +0.872346 +0.331830 +0.915120 +0.372863 +0.802689 +0.526203 +0.341454 +0.745751 +0.997790 +0.144458 +0.273559 +0.533737 +0.419078 +0.311599 +0.863452 +0.315862 +0.566653 +0.340715 +0.940935 +0.967354 +-146.578046 +0.500373 +0.894061 +0.438266 +0.341590 +0.521393 +0.875700 +0.825557 +0.874106 +0.825539 +0.855824 +0.821395 +0.819785 +0.909981 +0.927836 +0.925047 +0.929323 +0.745494 +0.471509 +0.938620 +0.848720 +0.833957 +0.719892 +0.801976 +0.727050 +0.985288 +0.944938 +0.891350 +0.983000 +0.845111 +0.581889 +0.835001 +0.571364 +0.307305 +0.776961 +0.465749 +0.907598 +0.926492 +0.914234 +0.634992 +0.912131 +0.844056 +0.884650 +0.710427 +0.886303 +0.846081 +0.646718 +0.774822 +0.827783 +0.999245 +0.693842 +0.840055 +0.727938 +0.677098 +0.581162 +0.924948 +-0.179261 +0.973271 +0.926454 +0.939807 +0.695655 +0.923220 +0.915229 +0.883032 +-0.063556 +0.915004 +0.931437 +0.302870 +0.920444 +0.064829 +0.497972 +0.537188 +0.407903 +0.253407 +0.298740 +0.886186 +0.770310 +0.408688 +0.602833 +0.406855 +-0.074932 +0.913056 +-0.016615 +0.194632 +0.567937 +0.501067 +0.931622 +0.928474 +0.927371 +0.839634 +0.407715 +0.909814 +0.919831 +0.355188 +-0.166997 +0.925889 +0.915722 +-0.044477 +0.953605 +0.912598 +0.946607 +0.944657 +0.321643 +0.925826 +0.407459 +0.900549 +0.927717 +0.561097 +0.321494 +0.194775 +0.691160 +0.051069 +0.407236 +0.804058 +0.919467 +0.408910 +0.626733 +0.659964 +0.725714 +0.882466 +0.902264 +0.886928 +0.635040 +0.563333 +0.825111 +0.894681 +0.687255 +0.749926 +0.289209 +0.410854 +0.946211 +0.515836 +0.885711 +0.831254 +0.843867 +0.930797 +0.662044 +0.930797 +0.520970 +0.855647 +0.969570 +0.402435 +0.559495 +0.835370 +0.393707 +0.889838 +0.981974 +0.848907 +0.980477 +0.845487 +0.850931 +0.715645 +0.708515 +0.915637 +0.915511 +0.906987 +0.922641 +0.921885 +0.503460 +0.844283 +0.929594 +0.826136 +0.716027 +0.415271 +0.313990 +-1.289150 +0.705343 +0.916558 +0.781673 +0.923168 +0.599759 +0.625075 +0.916893 +0.685861 +0.922394 +0.981131 +0.886311 +-0.054734 +0.998384 +0.325248 +-1.708326 +0.481970 +0.632631 +0.132102 +0.311511 +0.046298 +0.467789 +0.891062 +0.319234 +0.680266 +0.277543 +0.463720 +0.138734 +0.292399 +-0.095180 +0.400579 +0.525425 +0.151085 +0.271773 +0.125553 +0.241516 +0.896099 +0.530045 +0.974588 +0.260600 +0.835904 +0.221894 +0.082024 +0.899277 +0.595545 +0.244969 +0.237170 +0.507038 +0.955345 +-0.303860 +0.566301 +0.705548 +0.994954 +0.926165 +0.679502 +0.985519 +0.990794 +0.996379 +0.987746 +0.728393 +0.696638 +0.717220 +0.663067 +0.914072 +0.921348 +0.904666 +0.921700 +0.914200 +0.921700 +0.857989 +0.879766 +0.401926 +0.386957 +0.641974 +0.802680 +-6608.611862 +0.876283 +0.992550 +0.824371 +0.899304 +0.417305 +0.931739 +0.997186 +0.261322 +0.650173 +0.963567 +-0.032099 +0.417061 +0.602794 +0.696494 +0.592484 +0.629494 +0.656031 +0.887443 +0.232218 +0.927289 +0.709224 +0.960441 +0.963888 +0.389077 +0.826239 +0.769684 +0.921381 +-0.145149 +-0.360510 +0.159514 +-0.117519 +-0.093897 +0.857008 +0.985036 +0.932665 +0.935959 +0.815367 +0.176728 +-0.351782 +0.976686 +0.919786 +0.977319 +0.883168 +0.885017 +0.649925 +0.530482 +-0.423537 +0.703789 +0.538613 +0.773791 +0.697794 +0.783496 +0.888885 +0.661718 +0.333797 +0.915548 +-65.227490 +0.889937 +0.928039 +0.631419 +0.772944 +0.669376 +0.697427 +0.740514 +0.755660 +0.623511 +0.453023 +0.487368 +0.873904 +0.618616 +0.915117 +0.981183 +0.863471 +0.835393 +0.843474 +0.496305 +0.374025 +0.797390 +0.427120 +0.503511 +0.553854 +0.411221 +0.448306 +0.273286 +0.573487 +0.586870 +0.387753 +0.627090 +0.777178 +0.732928 +0.685636 +0.804520 +0.724724 +0.832514 +0.716895 +0.696049 +0.784004 +0.844736 +0.743679 +0.454182 +0.649685 +0.543516 +0.656365 +0.914827 +0.899101 +0.781817 +0.148407 +0.862411 +0.924768 +0.782786 +0.569705 +0.337950 +0.998578 +0.330687 +0.282659 +0.842169 +0.823550 +0.844568 +0.673999 +0.885507 +0.671366 +0.866786 +0.751357 +0.907314 +0.999563 +0.809335 +0.821724 +0.747038 +0.950478 +0.937224 +0.847339 +0.887248 +0.945265 +0.868958 +0.494818 +0.797717 +0.704909 +0.740083 +0.313767 +0.860769 +-57.454265 +-0.036242 +0.968846 +0.845760 +0.856752 +0.992491 +0.988973 +0.862355 +0.934727 +0.887368 +0.616294 +0.999373 +0.803679 +0.946980 +0.859409 +0.704120 +-39.786125 +0.483376 +0.802480 +0.969497 +0.755100 +0.733674 +0.965629 +0.949204 +0.804437 +0.375595 +0.908420 +0.246758 +0.120714 +0.064085 +0.321852 +-0.487174 +0.067602 +0.796140 +0.334752 +0.043803 +-43.611746 +0.989887 +0.557804 +0.742369 +-9.940506 +0.360444 +0.885529 +0.954520 +0.714777 +0.912548 +0.157280 +0.934245 +0.286158 +0.506363 +0.122691 +0.950970 +0.471856 +0.421387 +0.744155 +0.838692 +0.922062 +0.366676 +0.847652 +0.647435 +0.944367 +0.274774 +0.295185 +0.439892 +0.420421 +0.223555 +0.399226 +0.221736 +0.271789 +0.616138 +0.435607 +0.843614 +0.463132 +0.206817 +0.623398 +0.844411 +0.394303 +0.512397 +0.596103 +0.919809 +0.586789 +0.458643 +0.378604 +0.912231 +0.046236 +0.982349 +0.236506 +0.955608 +0.849079 +0.960326 +0.902069 +0.437461 +0.608840 +0.933501 +0.946011 +0.980997 +0.208750 +-0.009740 +0.257447 +0.174535 +0.457634 +0.238927 +0.834362 +0.382373 +0.364641 +0.487086 +0.457915 +0.223657 +0.873175 +0.834607 +0.152996 +0.434900 +0.198375 +0.259209 +0.295094 +0.846631 +0.667408 +0.523376 +0.939867 +0.919903 +0.368989 +0.762942 +0.565037 +0.506469 +0.588705 +0.961009 +0.766480 +0.636453 +0.527999 +0.416114 +0.714113 +0.392999 +0.297828 +0.747954 +0.606152 +0.371216 +0.930362 +0.924851 +0.266936 +0.448319 +0.437126 +0.397714 +0.548018 +0.373472 +0.916338 +0.802559 +0.776657 +0.815244 +0.584851 +0.931015 +0.622464 +0.510338 +0.914115 +0.909217 +0.913151 +0.278180 +0.435007 +0.492374 +0.497284 +0.563088 +0.500285 +0.446812 +0.463625 +0.543866 +0.285808 +0.918509 +0.464363 +0.582719 +0.638704 +0.924597 +0.918977 +0.415054 +0.600081 +0.559917 +0.726330 +0.997573 +0.989010 +0.440343 +0.540304 +0.196285 +0.965184 +0.532115 +0.537083 +0.429973 +0.476455 +0.930902 +0.915427 +0.544428 +0.986430 +0.540055 +0.963925 +0.997056 +0.388156 +0.515116 +0.533305 +0.512013 +0.594235 +0.925943 +0.915055 +0.962876 +0.366807 +0.394069 +0.913118 +0.574159 +0.483296 +0.563161 +0.823773 +0.630318 +0.925443 +0.565935 +0.978801 +0.573379 +0.628763 +0.695794 +0.224572 +0.527770 +0.984650 +0.022717 +0.335248 +0.950184 +0.043550 +0.494236 +0.050493 +0.925731 +0.140543 +0.018117 +0.592447 +0.243412 +0.715086 +-0.006822 +-0.657211 +0.128548 +0.488984 +0.584216 +0.226368 +-0.346802 +0.911380 +0.596788 +0.151547 +0.606868 +0.184167 +0.402668 +0.486204 +0.471672 +0.718591 +0.428945 +0.934318 +0.748160 +0.752658 +0.814222 +0.685215 +0.753374 +0.769834 +0.759070 +0.802921 +0.661369 +0.664322 +0.768576 +0.856054 +0.774140 +0.303045 +0.848945 +0.335848 +0.333674 +0.751459 +0.261538 +0.548016 +0.203213 +0.562982 +0.915261 +0.004153 +0.235319 +-0.187900 +0.896074 +0.521659 +0.713508 +0.376655 +0.183856 +0.097719 +0.132562 +0.959093 +0.839458 +-11.089789 +0.072976 +0.570340 +0.940842 +0.876442 +0.682121 +0.944527 +0.316914 +0.924837 +0.923437 +0.798095 +0.937770 +0.923114 +-0.969812 +0.912688 +0.310783 +0.930462 +0.908236 +0.911227 +0.951517 +0.195534 +0.606677 +0.844993 +0.857443 +0.542348 +0.527601 +0.769941 +0.730332 +0.878511 +-0.415972 +0.821132 +0.950207 +0.551604 +-0.046505 +0.286238 +0.344091 +0.176392 +0.047609 +0.201655 +0.917597 +0.465597 +-0.512536 +0.805998 +0.226220 +0.524079 +0.509801 +0.524067 +0.296615 +0.593800 +0.217952 +0.302345 +0.065593 +-0.053228 +0.224156 +0.544510 +0.064263 +0.620841 +0.690090 +0.947504 +-0.043942 +0.259036 +0.456863 +0.304715 +0.955879 +0.761565 +0.671536 +0.426161 +0.700977 +0.769719 +0.714834 +0.792282 +0.741225 +0.704195 +0.820843 +0.380673 +0.676750 +0.725568 +0.791091 +0.714313 +0.601943 +0.311677 +0.770677 +0.493351 +0.841798 +0.782687 +0.896581 +0.796988 +0.736440 +0.792637 +0.698530 +0.586710 +0.317728 +0.606045 +0.727613 +0.749991 +0.772021 +0.726233 +0.773138 +0.477875 +0.696834 +0.794071 +0.956564 +0.786582 +0.758215 +0.794234 +0.954145 +0.722031 +0.839477 +0.738547 +0.796507 +0.574463 +0.915690 +0.877185 +0.944542 +0.925831 +0.750451 +0.563027 +0.781219 +0.771589 +0.775607 +0.804603 +0.851365 +0.894958 +0.823213 +0.787181 +0.697458 +0.820724 +0.674800 +0.918316 +0.519571 +0.589453 +0.417585 +0.955210 +0.479125 +0.119317 +0.729035 +0.698911 +0.184321 +0.467396 +0.333576 +0.198163 +0.240792 +0.423707 +0.644074 +0.245597 +0.400580 +0.503876 +0.963442 +0.212225 +0.973076 +0.991317 +0.857298 +0.321062 +0.176137 +-3.362014 +0.596289 +0.779326 +0.267631 +0.466982 +0.345882 +0.814891 +0.954670 +0.919830 +0.925942 +0.925974 +0.926771 +0.696228 +0.657831 +0.966348 +0.386310 +0.918899 +0.914036 +0.733821 +0.953243 +0.923899 +0.931135 +0.929732 +0.918487 +0.753825 +0.758233 +0.892633 +0.677217 +0.903122 +0.596582 +0.049897 +0.213168 +0.845726 +0.049013 +0.260041 +0.217699 +0.202977 +0.122238 +0.859301 +0.217500 +0.932430 +0.915380 +0.552587 +0.804345 +-0.017399 +0.983968 +0.957213 +0.934622 +0.889015 +0.876096 +0.944003 +0.920214 +0.917965 +0.345930 +0.543355 +0.911325 +0.966172 +0.591721 +0.367869 +0.515434 +0.905289 +0.999649 +0.874876 +0.750324 +0.402714 +0.926438 +0.909251 +0.199431 +0.321351 +0.964903 +0.980473 +0.443089 +0.625876 +-0.003649 +0.331974 +0.416262 +0.303819 +0.398248 +0.917383 +0.793578 +0.330561 +0.582407 +0.952454 +0.754979 +0.913480 +0.409253 +0.048884 +0.240788 +0.342514 +0.933123 +0.922357 +0.678474 +0.947643 +0.906500 +0.378837 +0.765246 +0.288974 +0.515814 +0.320044 +0.411438 +0.316787 +0.554913 +0.346194 +0.837344 +0.497272 +0.504063 +0.473145 +0.856211 +0.336522 +0.742556 +0.898412 +0.959132 +0.710099 +0.356834 +0.884422 +0.681407 +0.774965 +0.930119 +0.343654 +0.705088 +0.060415 +0.282297 +0.881606 +0.959896 +0.754561 +0.361202 +0.469022 +0.202917 +0.839136 +0.422138 +0.713435 +0.539997 +0.528970 +0.406183 +0.793845 +0.796187 +0.418855 +0.526811 +0.437163 +0.340972 +0.421068 +0.448364 +0.485044 +0.748509 +0.734883 +0.997186 +0.573637 +0.770453 +0.179208 +0.899594 +0.207154 +0.765909 +-40.191403 +0.829604 +0.544143 +0.302135 +0.830315 +0.264886 +0.219289 +0.369598 +0.317588 +0.659959 +0.911606 +0.361695 +0.396195 +0.643290 +0.552630 +0.888365 +0.516499 +0.890902 +0.295162 +0.296151 +0.022682 +0.051629 +0.721091 +-1.110924 +0.201760 +0.216224 +0.366161 +0.221449 +0.272975 +0.356368 +0.838829 +0.513014 +0.132657 +0.324429 +0.379919 +0.675671 +0.061746 +0.348938 +0.167866 +0.085356 +0.845238 +0.186208 +0.062532 +0.168048 +0.214805 +0.519893 +-0.926801 +0.148613 +0.169126 +0.122315 +-2.859643 +0.632302 +0.175451 +0.544628 +0.077345 +0.493739 +0.337551 +0.435370 +0.949329 +0.605460 +0.897553 +0.845579 +0.718153 +0.999497 +0.794399 +0.987624 +0.859829 +-0.102188 +0.939261 +0.897247 +0.943950 +0.749693 +0.400549 +0.944994 +0.409133 +0.904791 +0.826595 +0.930182 +0.858905 +0.943093 +0.973910 +0.721987 +0.543387 +0.835540 +0.761970 +0.762650 +0.854307 +0.931832 +0.856525 +0.810519 +0.757640 +0.840870 +0.776136 +0.867817 +0.984556 +0.940312 +-0.057534 +0.972161 +0.839926 +0.768957 +0.762460 +0.847949 +0.703628 +0.826255 +0.758237 +0.644925 +0.582159 +0.781269 +0.950581 +0.862077 +0.884388 +0.603005 +0.759441 +0.639316 +0.933485 +0.960243 +0.796494 +0.898796 +0.853236 +0.611720 +0.935702 +0.457342 +0.726999 +0.656576 +0.857053 +0.794186 +0.431688 +0.756630 +0.540938 +0.744152 +0.933208 +0.437511 +0.696217 +0.485227 +0.652669 +0.731407 +0.769675 +0.608832 +0.725437 +0.972316 +0.788253 +0.959651 +0.275444 +0.436792 +0.662946 +0.759253 +0.367184 +0.280736 +0.512268 +0.553546 +0.662719 +0.465384 +0.370541 +0.672275 +0.945709 +0.900756 +0.700535 +0.454807 +0.918855 +0.952311 +0.926741 +0.597067 +0.622820 +0.911994 +0.915815 +0.613179 +-0.125487 +0.648492 +0.875953 +0.925413 +0.676759 +0.735766 +0.792277 +0.830561 +0.784469 +0.791730 +0.947570 +0.942299 +0.518030 +0.818573 +0.946834 +0.954468 +0.919927 +0.620433 +0.649216 +0.942538 +0.942538 +0.834591 +0.631223 +0.930677 +0.781897 +0.874487 +0.961029 +0.941009 +0.954086 +0.958892 +0.844470 +0.263400 +0.832409 +0.559185 +0.333023 +0.722821 +0.176658 +0.901197 +0.721843 +0.255318 +0.674663 +0.680462 +0.505042 +0.025629 +0.723794 +0.822163 +0.759505 +0.155250 +0.900940 +0.237484 +-1.725129 +0.466856 +0.504997 +0.218826 +0.156218 +0.133778 +0.198200 +0.035494 +0.057508 +0.650508 +0.770083 +0.037401 +0.880139 +0.308515 +0.201556 +0.808448 +0.403313 +0.583551 +0.723815 +0.378066 +0.541301 +0.295787 +0.839876 +0.482364 +0.575390 +0.325203 +0.084045 +0.760754 +0.564065 +0.777131 +0.639224 +0.350912 +0.255976 +0.153710 +0.865063 +0.554091 +-13.655650 +0.164991 +0.961051 +0.006978 +0.517986 +0.188070 +-0.094842 +-0.170186 +0.547545 +0.329748 +0.844829 +0.117455 +-0.323439 +0.998877 +0.683049 +0.947427 +0.988733 +0.716178 +0.956689 +0.899872 +0.900867 +0.576293 +0.649636 +0.614959 +-0.213863 +0.003909 +0.439363 +-0.011508 +0.603634 +0.452823 +0.822496 +0.673610 +0.480017 +0.745829 +0.458675 +0.699120 +0.439265 +0.090044 +0.545903 +-1.647920 +0.237894 +0.661124 +0.745963 +0.480036 +0.624183 +0.142742 +0.096593 +0.144006 +0.889402 +0.972645 +0.492575 +0.704276 +0.248937 +0.607282 +0.199952 +0.142729 +0.890796 +0.918715 +0.969194 +0.718021 +0.787236 +0.957564 +0.332971 +0.332667 +0.990698 +0.914408 +0.891099 +0.919456 +0.922637 +0.907710 +0.935471 +0.941982 +0.930313 +0.864592 +0.281959 +0.520952 +0.748210 +0.657199 +0.469790 +0.749500 +0.899673 +0.849965 +0.627554 +0.740844 +0.873161 +0.940253 +0.832393 +0.952650 +0.911694 +0.944191 +0.563587 +0.961416 +0.756411 +0.775795 +0.937398 +0.644058 +0.917382 +0.540517 +0.911648 +0.400471 +0.614745 +0.925813 +0.909027 +0.920255 +0.847959 +0.395894 +0.935168 +0.627867 +0.273638 +0.543262 +0.780484 +0.753886 +0.694846 +0.175439 +0.561465 +0.774742 +0.737988 +0.919578 +0.815826 +0.989815 +0.523115 +0.885682 +0.895202 +0.704399 +0.656501 +0.912857 +0.599877 +0.934706 +0.601029 +0.817148 +0.225515 +0.582395 +0.684670 +0.359240 +0.748240 +0.886014 +0.716085 +0.659912 +0.654999 +0.421183 +0.755457 +0.874793 +0.717987 +0.705679 +0.859302 +0.728433 +0.737278 +0.318164 +0.799553 +0.761288 +0.865811 +0.362646 +0.367501 +0.814677 +0.257610 +0.924211 +0.770454 +0.885156 +0.337823 +0.560979 +-0.894180 +0.470364 +0.998424 +-2.368870 +0.972742 +0.027940 +0.752669 +0.400293 +0.177210 +0.353021 +0.708666 +0.220003 +0.622724 +0.402985 +0.445405 +0.201001 +0.244922 +0.800629 +0.379290 +0.645996 +0.794370 +0.705303 +0.611284 +-0.043897 +0.298125 +0.895358 +0.446300 +0.524107 +0.860214 +0.731561 +0.668846 +0.922323 +0.870130 +0.585647 +0.436451 +0.688747 +0.710609 +0.756189 +0.373671 +0.428692 +0.914431 +0.099414 +0.668460 +0.493798 +0.657492 +0.596288 +0.357392 +0.562821 +0.220858 +-1.333901 +-0.060061 +-0.809717 +0.424581 +-0.034424 +0.748696 +0.047602 +0.202046 +0.326811 +0.673117 +0.197216 +0.684971 +0.725950 +-0.021079 +0.173323 +0.305795 +-0.828952 +0.082075 +0.423787 +0.543711 +0.322082 +0.328302 +-0.060628 +0.010778 +0.290113 +0.252338 +0.144910 +0.000531 +0.792042 +0.656281 +-286884.721008 +0.043841 +0.322743 +0.488340 +0.328348 +0.118730 +0.872175 +0.697938 +-0.800325 +0.319383 +0.840147 +-1.533824 +0.195145 +0.273124 +-0.021146 +0.167368 +0.226801 +0.274624 +0.459114 +0.022505 +0.533768 +0.953299 +0.188285 +0.205634 +0.735506 +0.428406 +0.932175 +0.056378 +0.694745 +0.470043 +0.790239 +0.189780 +0.607006 +-0.004876 +0.508394 +0.684006 +0.264421 +0.519763 +0.461964 +0.842271 +0.736005 +0.774096 +0.654656 +0.413719 +0.812019 +0.854363 +-0.048413 +0.422572 +0.728466 +0.797856 +0.792282 +0.761732 +0.986474 +0.702765 +0.756321 +0.725560 +-2.417677 +0.749513 +0.441740 +0.809933 +0.574087 +0.486273 +0.582418 +0.645423 +0.627763 +0.553209 +0.511820 +0.921066 +0.603494 +0.919840 +0.921234 +0.974765 +0.985297 +0.740660 +0.357036 +0.659246 +0.324731 +0.926072 +0.962332 +0.676877 +0.516837 +0.932260 +0.929276 +0.926815 +0.345567 +-0.041044 +0.646069 +0.321643 +0.336241 +0.119938 +0.933967 +0.598123 +0.975582 +0.638470 +0.921986 +0.588222 +0.368314 +0.608946 +0.500956 +0.503464 +0.675364 +0.633780 +0.904936 +0.671224 +-3.812843 +0.937370 +0.799176 +0.821507 +0.570900 +0.101880 +0.516590 +0.350728 +0.900797 +0.914499 +0.884147 +0.547733 +0.624273 +0.489244 +0.886629 +0.409020 +0.725619 +0.889997 +0.745293 +0.749594 +0.619578 +0.406386 +0.693388 +0.792507 +0.735000 +0.327716 +0.823695 +0.714825 +0.887535 +-0.201474 +0.804984 +-0.237572 +0.583048 +0.994240 +0.880022 +0.219862 +0.437479 +0.603905 +-1.375753 +0.088131 +0.597291 +0.016748 +0.113465 +0.718041 +0.274670 +0.351837 +0.398309 +0.334043 +0.488600 +0.372503 +0.584423 +0.978483 +0.899193 +0.904798 +0.991699 +0.987058 +0.982802 +0.943307 +0.817793 +0.959532 +0.966639 +0.919449 +0.637773 +0.937561 +0.929845 +0.846245 +0.951035 +0.729448 +0.292840 +0.739750 +0.879845 +0.968953 +0.619683 +0.910823 +0.792391 +0.926773 +0.703992 +0.844368 +0.664495 +0.720167 +0.876042 +0.368600 +0.998672 +0.411959 +0.732294 +0.634682 +0.470146 +0.859647 +0.520929 +0.077300 +0.058341 +-2.644455 +0.970953 +0.327340 +0.838745 +0.361885 +0.379779 +0.455278 +0.527338 +0.460860 +0.475824 +0.487139 +0.762031 +-0.302575 +0.023907 +0.424210 +0.802722 +0.261945 +0.885423 +0.956064 +0.973878 +0.939009 +0.302485 +0.945400 +0.940103 +0.657018 +0.708597 +-0.044845 +0.774383 +0.936488 +0.576896 +0.512049 +0.759472 +0.829686 +0.797341 +0.725766 +-0.618670 +0.958914 +0.772971 +0.837923 +0.660363 +-34.862054 +0.954266 +-390.507863 +0.551612 +0.498424 +0.857656 +0.817000 +0.677004 +0.868212 +0.825731 +0.612589 +0.738515 +-0.161077 +0.817447 +0.391469 +0.107891 +0.754220 +0.615767 +0.301044 +0.467918 +0.849275 +0.862519 +0.973791 +0.395735 +0.838435 +0.873221 +0.795897 +0.919528 +0.918460 +0.586193 +0.950762 +0.280242 +0.454624 +0.606875 +0.261171 +0.122293 +0.121928 +0.983471 +0.815101 +0.803960 +0.463233 +0.192978 +0.846733 +0.319270 +0.539766 +0.157990 +0.057708 +0.284438 +0.205592 +0.717546 +0.176276 +0.294336 +0.436716 +0.359602 +0.121168 +0.950683 +0.023288 +0.434027 +0.863547 +0.890475 +0.658982 +0.839832 +0.594087 +0.884118 +0.977515 +0.909127 +0.748444 +0.576445 +0.557923 +0.566029 +0.995748 +0.708365 +0.727001 +0.766971 +0.540283 +0.925410 +0.821473 +0.872485 +0.926067 +0.843993 +0.870081 +0.590858 +-0.065851 +0.212283 +0.449524 +0.930348 +0.244672 +0.946437 +0.495232 +0.470289 +0.037564 +0.838787 +0.938644 +0.778387 +0.566180 +0.350329 +0.938376 +0.764333 +0.802271 +0.838886 +0.449242 +0.892184 +0.271955 +0.999299 +0.686088 +0.973119 +0.943908 +0.746741 +0.946658 +0.876354 +0.578276 +0.965065 +0.712460 +0.382674 +0.367620 +-23497.407234 +0.293569 +0.893933 +0.884662 +0.992799 +0.267075 +0.804142 +0.469958 +0.474140 +0.412996 +0.833888 +0.556563 +0.399707 +0.652586 +0.467233 +0.483945 +0.397644 +0.539390 +0.499347 +0.189099 +0.836545 +0.999026 +0.449567 +0.535330 +0.700301 +0.625009 +0.846660 +0.942484 +0.023005 +0.394967 +0.031246 +0.608710 +0.930309 +0.698560 +0.875676 +0.744184 +0.487366 +0.916302 +0.766509 +0.846864 +0.520664 +0.740904 +0.772453 +0.576617 +0.604480 +0.904186 +0.779349 +0.691239 +0.741653 +0.746813 +0.526439 +0.772154 +0.766317 +0.761923 +0.760661 +0.607655 +0.068761 +0.634058 +0.778393 +0.718876 +0.724647 +0.714373 +0.655122 +0.755974 +0.496693 +0.426903 +0.767158 +0.787679 +0.797739 +0.709303 +0.509295 +-0.033492 +0.020974 +-0.002561 +0.670523 +0.185967 +0.039476 +-0.270780 +0.029116 +0.212848 +0.133099 +-0.025101 +0.014335 +0.014335 +0.334987 +0.395486 +0.594837 +0.009443 +0.913366 +0.041635 +-0.004912 +0.187781 +0.405199 +0.450804 +0.315053 +0.282996 +0.521997 +0.521997 +0.303789 +0.282991 +0.301974 +0.080747 +0.283069 +0.291810 +0.308864 +0.308514 +0.522450 +0.312386 +0.492489 +0.376839 +0.015963 +-10.713046 +0.432417 +-2.520017 +0.997725 +0.432621 +0.614354 +0.469926 +0.352757 +0.612379 +0.588434 +0.996865 +0.584770 +0.453976 +0.942129 +0.556325 +0.991606 +0.120967 +0.041490 +0.410200 +0.429159 +0.997387 +0.288311 +0.052272 +0.674040 +0.753220 +0.292896 +0.898928 +-0.320894 +0.303894 +0.607745 +0.593382 +0.186992 +0.775089 +-0.003169 +0.457712 +0.159025 +0.299015 +-0.731923 +0.136196 +0.155743 +0.500257 +0.157199 +0.017470 +-0.040909 +0.278298 +-0.004900 +0.108206 +0.414797 +-0.018250 +-0.468290 +0.950802 +0.823303 +0.760366 +0.930052 +0.760976 +0.802461 +0.930461 +-0.171861 +0.733551 +0.777077 +0.559694 +0.621175 +0.885723 +0.506839 +0.901763 +0.753546 +0.866852 +0.981460 +0.911807 +0.501438 +0.952940 +0.935277 +0.765705 +0.659658 +0.802416 +0.699596 +0.939872 +0.802935 +0.937014 +0.851514 +0.800795 +0.912914 +0.839945 +0.451355 +0.755764 +0.831663 +0.489671 +0.842991 +0.700764 +0.947378 +0.932627 +0.850048 +0.813604 +0.860264 +0.931718 +0.812253 +0.653827 +0.606320 +0.627510 +0.737375 +0.931310 +0.938595 +0.552337 +0.628490 +0.220092 +0.582011 +0.756434 +0.754431 +0.294683 +0.330826 +0.526075 +0.344418 +0.458953 +0.636671 +-9.488973 +0.851068 +0.305940 +0.556723 +0.755014 +0.631456 +0.304841 +0.757371 +0.753455 +0.258159 +0.879690 +0.365073 +0.780386 +0.783717 +0.670720 +0.308601 +0.734259 +0.931246 +-0.360471 +0.694676 +0.524002 +0.819947 +0.778265 +0.851490 +0.362646 +0.106606 +0.914104 +0.599387 +0.766538 +0.822057 +0.924126 +-0.341451 +0.704683 +0.743521 +0.438939 +0.533045 +0.301391 +0.531356 +0.311505 +0.026584 +0.169819 +0.032401 +0.106208 +0.465576 +0.295456 +0.653803 +0.263066 +0.242971 +0.127950 +0.258275 +0.427485 +0.301653 +0.310519 +0.168914 +0.790524 +0.886362 +0.091789 +0.399148 +0.202613 +0.588039 +0.169200 +0.571603 +0.531277 +0.264062 +-0.006076 +0.451340 +0.111757 +0.706451 +0.232696 +0.157440 +0.232624 +0.515735 +0.220976 +0.147253 +0.341736 +0.972449 +0.226895 +0.347576 +0.966641 +0.834510 +0.959435 +-0.021097 +0.163915 +-0.780164 +0.114689 +0.535578 +0.888154 +0.062081 +-0.007454 +0.131328 +0.200573 +0.228157 +0.594377 +0.892703 +0.616000 +0.389000 +0.979350 +0.860806 +0.865878 +0.116107 +0.779687 +0.776146 +0.894990 +0.514358 +0.684181 +0.992301 +0.964722 +0.775212 +0.926806 +0.991045 +0.796611 +0.810347 +0.870970 +0.977051 +0.626919 +0.889988 +0.076947 +0.840337 +0.021201 +0.685317 +0.587853 +0.870741 +0.965020 +0.657065 +0.987656 +0.577465 +0.679989 +0.984399 +0.962091 +0.667048 +0.319331 +0.996360 +0.878943 +0.666250 +0.600480 +0.589131 +0.921824 +0.540655 +-0.103838 +-0.093574 +0.935446 +0.700646 +0.893561 +0.782933 +0.048219 +0.184740 +-0.134655 +0.231171 +0.729592 +0.698044 +0.736531 +-0.083129 +0.732611 +0.653148 +0.380804 +0.855082 +0.815434 +0.503605 +0.672522 +0.826722 +0.795862 +0.855943 +-0.537904 +0.958318 +0.750343 +0.427165 +0.842656 +0.372354 +0.595632 +0.785800 +0.788727 +0.391187 +0.532238 +0.688109 +0.879924 +0.919057 +-0.151155 +0.938358 +0.391027 +0.748141 +0.687813 +0.935086 +0.796914 +0.928199 +0.998439 +0.643289 +0.372669 +0.572327 +0.465011 +0.555622 +0.373602 +0.885578 +0.799667 +0.217196 +0.012025 +0.221944 +0.136486 +0.477770 +0.027358 +0.773892 +0.558490 +0.513247 +0.396213 +0.517931 +0.322433 +0.651767 +0.774680 +0.726375 +0.381204 +0.528866 +0.868080 +0.344196 +0.697528 +0.874384 +0.562588 +0.770020 +-0.157652 +0.389373 +0.627269 +0.771104 +0.001590 +-2.195723 +0.241026 +0.658868 +0.702718 +0.349427 +0.762896 +0.390152 +0.937473 +0.965482 +0.312967 +-0.057870 +0.978269 +0.844394 +0.431432 +0.906321 +0.936499 +0.160267 +0.196408 +0.147821 +0.626579 +0.075423 +0.836146 +0.618869 +-0.004169 +0.176458 +0.454261 +0.112993 +0.064207 +0.517135 +0.164999 +0.463595 +0.859994 +0.585710 +0.786612 +0.820268 +0.038772 +0.133170 +0.081334 +0.305866 +0.597589 +0.803196 +0.849599 +0.859842 +0.197556 +0.023622 +0.885752 +0.192389 +0.553894 +0.512152 +0.364755 +0.872913 +0.565252 +0.979903 +0.160767 +0.735725 +0.320159 +0.682327 +0.841685 +0.108454 +0.572368 +0.096570 +0.944730 +0.657009 +0.934717 +0.564662 +0.818548 +0.433477 +0.190307 +0.083752 +0.060023 +0.791750 +0.972925 +0.793175 +0.579237 +0.698942 +0.728791 +0.936277 +0.261249 +0.965781 +-0.411602 +0.052219 +0.243839 +0.602041 +0.375154 +-2.179522 +0.107792 +0.839491 +0.502445 +-4.105748 +0.633165 +0.311148 +-0.084448 +0.718385 +0.080204 +0.383166 +0.824436 +0.460817 +0.575100 +0.906440 +0.898122 +0.689752 +0.771151 +0.048601 +-0.109689 +0.861800 +0.734426 +0.514923 +0.986942 +0.121182 +0.512799 +0.625975 +0.945443 +0.837712 +0.998155 +0.852984 +0.418234 +0.914092 +-0.026425 +-0.051875 +0.743298 +0.678221 +-0.023277 +0.374146 +0.625474 +0.499841 +0.221919 +0.691423 +0.709265 +0.900734 +0.937710 +-0.453766 +0.703579 +0.597987 +0.111123 +0.875985 +0.747684 +0.989436 +0.342029 +0.847513 +0.917896 +0.970480 +0.414329 +0.931168 +0.862734 +0.511823 +0.634142 +0.930669 +0.343404 +0.927578 +0.896776 +0.423932 +0.605672 +0.441986 +0.908905 +0.539873 +0.731222 +0.958676 +0.220742 +0.587309 +0.954610 +0.916684 +0.502256 +-0.175467 +0.749702 +0.635911 +0.877828 +0.689796 +0.475526 +0.921617 +0.961927 +0.492212 +0.378435 +0.439830 +0.534651 +0.322655 +0.324389 +0.354293 +0.608348 +0.955743 +0.954329 +0.862858 +0.959456 +0.789497 +0.398303 +0.518481 +0.932002 +0.320592 +0.632895 +0.558488 +0.590485 +0.938021 +0.918729 +0.870630 +0.312163 +0.899925 +0.916446 +-1.518528 +0.971376 +0.401890 +0.359351 +0.717424 +0.692377 +0.695234 +0.953052 +0.868687 +0.678863 +0.897776 +0.787994 +0.885094 +0.980021 +-0.189716 +0.785625 +0.786301 +0.984181 +0.886227 +0.111472 +0.343030 +0.302392 +0.209390 +0.352006 +0.394145 +0.640493 +-0.242476 +0.304108 +0.691904 +0.491390 +0.777667 +0.888536 +0.522316 +0.604530 +0.500138 +-0.212451 +-0.164749 +0.008734 +0.597998 +0.442459 +0.535668 +0.493241 +0.844348 +0.480997 +0.649586 +0.430633 +0.039974 +0.498971 +0.785503 +0.647425 +0.505985 +0.979940 +0.937730 +0.862885 +0.457078 +0.940652 +0.502128 +0.908789 +0.921703 +0.617349 +0.246494 +0.428638 +0.481636 +0.479850 +-0.470728 +0.710636 +0.953896 +0.961180 +0.470203 +0.271405 +0.649866 +0.499746 +0.599476 +0.766737 +0.958729 +0.832693 +0.995742 +0.355965 +0.546756 +0.572917 +0.521687 +0.516610 +0.481733 +0.506984 +0.515674 +0.859419 +0.952887 +0.841908 +0.898859 +0.984325 +0.829773 +0.960690 +0.813736 +0.543338 +0.354072 +0.452497 +0.426274 +0.233393 +0.725998 +0.402473 +0.366563 +0.230297 +0.851533 +0.725991 +0.707817 +0.843687 +0.979565 +0.438255 +-2.260849 +0.711056 +0.942898 +0.259657 +0.267700 +0.018222 +0.904729 +0.986262 +0.549771 +0.403250 +0.599080 +0.211599 +0.265074 +-0.003854 +0.156415 +0.533291 +0.789412 +0.219267 +0.078861 +-0.190263 +0.598634 +0.834388 +0.725702 +0.248122 +0.629139 +0.434286 +0.035201 +0.291025 +0.720858 +0.383840 +0.241868 +0.243536 +0.359029 +0.494109 +0.132010 +0.501234 +0.441912 +0.176482 +0.176482 +0.480893 +0.702897 +0.722593 +-0.064777 +0.020104 +0.637287 +-2.458396 +-10.444980 +0.421242 +0.074128 +0.421777 +0.291020 +0.456951 +0.625316 +0.331518 +0.135752 +0.104881 +0.188348 +0.829360 +0.382108 +0.317571 +0.806897 +0.692054 +0.695167 +0.698917 +0.389588 +0.238539 +0.747094 +0.790216 +0.767494 +0.062893 +0.227390 +0.684675 +0.658023 +0.958742 +0.449546 +0.271447 +0.333212 +0.874719 +0.757777 +0.077005 +0.580138 +-0.700834 +0.281312 +0.295586 +0.051433 +0.291152 +0.154590 +0.074609 +0.634507 +0.807941 +0.613327 +0.514861 +0.860585 +0.638015 +0.573778 +0.889103 +0.715843 +0.788863 +0.479735 +0.701422 +0.896320 +0.735153 +0.689026 +0.523710 +0.541452 +0.675373 +0.885039 +0.835313 +0.749502 +0.654770 +0.866572 +0.691342 +0.630643 +0.955110 +0.260555 +0.743863 +0.648622 +0.481957 +0.818588 +0.833354 +-0.080929 +0.846207 +0.344559 +0.722174 +0.541703 +0.982185 +0.988638 +0.951673 +0.137344 +0.950406 +0.761778 +0.558191 +0.425897 +0.859805 +0.868276 +0.575568 +0.805249 +0.862550 +0.465456 +0.775499 +0.997971 +0.711089 +0.982839 +0.370484 +0.718373 +0.490476 +0.891916 +0.238160 +-6.343612 +0.513374 +0.128728 +0.009266 +0.544767 +0.560903 +0.103844 +0.238626 +0.507588 +0.221589 +0.648094 +0.518433 +-0.124143 +0.027696 +0.111243 +0.742409 +0.668410 +0.552258 +0.727391 +0.220919 +0.927029 +0.907278 +-0.016747 +0.002061 +0.407888 +0.636477 +0.303604 +0.505723 +0.249404 +0.521097 +0.727316 +-2.300305 +0.461813 +0.957377 +0.279232 +0.562990 +0.664587 +0.054522 +0.056135 +0.837830 +0.365020 +0.412045 +0.215929 +0.673237 +0.465388 +0.901454 +0.671911 +0.406103 +0.950382 +0.967030 +0.459956 +0.605481 +0.909388 +0.338210 +0.806602 +0.687964 +0.210140 +0.380919 +0.157523 +0.516566 +0.207964 +0.181793 +0.952806 +0.604784 +0.779009 +0.356612 +0.395709 +0.830165 +0.984870 +0.629516 +0.996806 +0.948804 +0.736676 +0.926227 +0.505122 +0.802514 +0.608455 +-0.180551 +0.064118 +0.151106 +0.822432 +0.249837 +0.579323 +0.490491 +0.012658 +0.789026 +0.808567 +0.140787 +0.913048 +0.083966 +0.798567 +0.259976 +0.770597 +0.517533 +0.270035 +0.390141 +0.162161 +0.435736 +0.709454 +0.862392 +0.287361 +0.682134 +0.082887 +0.810661 +-0.048764 +0.989492 +0.089276 +-739.047980 +0.334377 +-0.217963 +0.899638 +0.878553 +0.698937 +0.998219 +0.828487 +-0.249013 +0.401922 +0.098138 +0.643919 +0.873327 +0.748830 +0.548867 +0.901404 +0.932148 +0.763246 +0.590616 +0.989710 +0.541059 +0.725434 +0.648745 +0.648284 +0.686752 +0.627050 +0.385417 +0.919378 +0.610590 +0.605659 +0.949368 +0.525034 +0.319337 +0.924431 +0.942242 +0.838511 +0.926550 +0.925266 +0.926069 +0.526538 +0.949102 +0.972531 +0.407442 +0.204766 +0.902000 +0.907818 +0.090663 +0.921017 +0.762232 +0.925926 +0.991762 +0.542774 +0.672540 +0.443217 +0.688443 +0.912857 +0.432356 +0.973494 +0.925564 +0.934136 +0.552591 +0.342857 +0.228673 +0.350605 +0.714500 +0.987029 +0.908945 +0.000639 +0.004212 +0.014638 +0.799679 +0.755725 +0.078919 +0.994893 +0.127473 +0.133566 +0.194374 +0.095075 +0.023670 +0.850828 +0.014722 +0.380610 +0.510313 +0.221720 +0.763912 +0.855443 +-1.945552 +0.864509 +0.273607 +0.084177 +0.096140 +0.051815 +0.171022 +0.196262 +0.221327 +0.583838 +0.256202 +0.249192 +0.239567 +0.233716 +-0.145736 +-0.020416 +0.541644 +0.435795 +0.629270 +0.032411 +0.662859 +0.116535 +0.123988 +0.257355 +0.500911 +0.334702 +0.402977 +0.985830 +0.896698 +0.914920 +0.377422 +0.878605 +0.343743 +0.182355 +0.372413 +0.238733 +0.267953 +0.816805 +-0.296798 +0.467685 +0.864959 +0.413873 +0.387284 +0.877647 +0.658967 +0.593052 +0.794392 +0.730059 +0.997594 +0.695479 +0.519710 +0.649107 +0.630272 +0.866204 +0.480551 +0.535299 +0.585077 +0.473822 +0.512025 +0.186469 +0.264680 +0.945445 +0.900762 +0.326018 +0.656210 +0.425370 +0.551679 +0.551779 +0.551837 +0.436866 +0.891973 +0.576862 +0.576648 +0.576648 +0.575940 +0.325070 +0.542953 +-4.290447 +0.614534 +0.572939 +0.425987 +0.404321 +0.321020 +0.437746 +0.452495 +0.850465 +0.558980 +0.787069 +0.909995 +0.985136 +-0.295050 +0.813294 +0.759647 +0.798783 +0.783705 +0.441886 +0.727353 +-0.038062 +0.998396 +0.770650 +0.544909 +0.934354 +0.676198 +0.731846 +0.623116 +-0.019407 +0.711392 +0.925215 +0.750653 +-0.423198 +0.925293 +0.735769 +0.839792 +0.891863 +0.702289 +0.732107 +0.426232 +0.502777 +0.442562 +0.972239 +0.618634 +0.408352 +0.689186 +0.646866 +0.542945 +0.575987 +0.887555 +0.779363 +-7.926954 +0.972821 +0.733632 +0.892664 +0.934774 +0.921280 +0.838830 +0.731711 +0.330670 +0.904565 +0.916454 +0.891252 +0.528597 +0.798906 +0.651448 +0.347159 +-0.038074 +0.910804 +0.460863 +0.848556 +0.888363 +0.416263 +0.805895 +0.732134 +0.916791 +0.832549 +0.832238 +0.631814 +-0.114993 +-1.113844 +0.650778 +0.915025 +0.753796 +0.690071 +0.860027 +0.905160 +0.968307 +0.832545 +0.934434 +0.677906 +0.988172 +0.976638 +0.834923 +0.971828 +0.082272 +0.046777 +0.595583 +0.456459 +0.687969 +0.685750 +0.646127 +0.469280 +0.069001 +0.044028 +-0.044578 +-0.000689 +0.926747 +0.156446 +0.458198 +0.958936 +0.228140 +0.576297 +0.212350 +0.086516 +0.961861 +0.864261 +0.938732 +0.722933 +0.640735 +0.176312 +-0.070740 +0.950049 +0.041772 +-0.061201 +0.518383 +0.557786 +0.220239 +0.110118 +0.277216 +0.353360 +0.748935 +0.579526 +-1.395105 +0.527856 +0.855943 +0.216518 +0.201352 +0.747967 +0.108774 +0.576199 +0.597635 +0.351760 +0.105324 +0.055308 +0.860947 +0.736727 +0.765537 +0.363288 +0.918826 +-0.185998 +0.152892 +0.893184 +0.631318 +0.539427 +0.433311 +0.413222 +0.858509 +0.670600 +0.936618 +0.922195 +0.760382 +0.476066 +0.891521 +0.908572 +0.860394 +0.812781 +0.418511 +0.151605 +0.645989 +0.916856 +0.978451 +0.344166 +0.457973 +0.972570 +0.418705 +0.996757 +0.430392 +0.652226 +0.428702 +0.724530 +0.816626 +0.468147 +0.257220 +0.498595 +0.431825 +0.936297 +0.831216 +0.924720 +0.840034 +0.548842 +0.720364 +0.884333 +0.853271 +-0.293529 +0.841326 +0.863556 +0.915149 +0.852516 +0.842647 +0.482244 +0.450705 +0.730258 +0.685272 +0.593883 +0.958561 +0.830134 +0.730233 +0.857017 +0.821692 +0.922189 +0.877656 +0.984106 +0.861261 +0.830026 +0.411980 +0.641904 +0.618536 +0.372830 +0.045315 +0.282704 +0.480306 +0.551700 +0.360311 +0.917989 +0.321196 +0.927110 +0.958482 +0.940983 +0.909748 +0.540004 +0.002113 +0.355410 +0.719217 +0.931172 +0.925249 +0.512980 +0.845269 +0.917107 +0.927843 +0.289239 +0.834054 +0.988659 +0.926262 +0.370157 +0.829020 +-0.277905 +0.637430 +0.727978 +0.905887 +0.795441 +0.569752 +0.583994 +0.903217 +0.631687 +0.835852 +0.975776 +0.891700 +0.941000 +-0.056666 +0.376044 +0.118509 +0.822908 +0.894191 +0.874420 +-0.128995 +0.735697 +0.911777 +0.920545 +0.680243 +0.574417 +0.902583 +0.904238 +-1.956608 +0.525003 +0.983400 +0.985503 +0.450462 +0.901092 +0.103662 +0.921257 +0.764620 +0.503083 +0.344108 +0.765812 +0.907067 +0.715069 +0.886040 +0.675074 +0.979365 +0.917453 +0.916952 +0.964789 +0.921628 +0.629589 +0.932140 +0.330751 +0.423716 +0.920057 +0.959509 +-0.138921 +0.738323 +0.326295 +0.980235 +0.965900 +0.953981 +0.980879 +0.940464 +0.936031 +0.929075 +0.934938 +0.938584 +0.923191 +0.936518 +0.944378 +0.929337 +0.751911 +0.965066 +0.958762 +0.934729 +0.337424 +0.301553 +0.339721 +0.386979 +0.526976 +0.946004 +0.877439 +0.339718 +0.997305 +0.833873 +0.900512 +0.747508 +0.570199 +0.822407 +0.828812 +0.466287 +0.941257 +0.816817 +0.930022 +0.878037 +0.901288 +0.316683 +0.598523 +0.842293 +0.259606 +-0.366011 +0.445284 +0.451199 +0.848609 +0.612480 +0.455894 +0.951897 +0.214688 +0.085637 +-0.035433 +0.033616 +0.986933 +0.835361 +0.381852 +0.895487 +-0.116753 +0.340817 +0.359159 +0.085910 +0.342934 +0.857691 +0.430698 +0.387618 +0.227404 +0.418070 +-0.207011 +0.034329 +0.599343 +0.850286 +0.464586 +0.907140 +0.910037 +0.991067 +0.844910 +0.710884 +0.960538 +0.506244 +0.832224 +0.821200 +0.406742 +0.939864 +0.866423 +0.858244 +0.614310 +-0.029911 +0.859789 +0.575399 +0.409677 +0.575350 +0.377210 +0.532057 +0.838681 +0.847981 +0.886520 +0.692810 +0.843297 +0.714733 +0.840747 +0.351739 +0.473161 +0.440014 +0.479860 +0.237251 +0.846073 +0.330197 +-0.104616 +0.928050 +0.932425 +0.683363 +0.983199 +0.865577 +0.992820 +0.414281 +0.377562 +0.816385 +0.261084 +0.841770 +-0.361289 +0.936195 +0.162457 +0.670657 +0.490694 +0.926744 +0.487529 +0.605619 +0.994398 +-0.120681 +-0.170187 +0.475259 +0.578702 +0.364707 +0.386983 +0.521251 +0.845451 +0.721066 +-0.209697 +0.917479 +0.447227 +0.822899 +0.739890 +0.919612 +0.677138 +0.665240 +0.769457 +0.406730 +0.968591 +0.342239 +-0.002752 +0.523402 +0.861848 +0.452210 +0.667176 +0.354271 +0.469538 +0.359788 +0.455122 +0.825218 +0.840049 +0.899984 +0.042607 +-0.112672 +0.435662 +0.705709 +0.647254 +-0.430120 +0.415763 +0.275680 +0.406275 +0.928553 +0.557020 +0.074189 +-11.671162 +0.174741 +0.404271 +0.125392 +0.171001 +0.846274 +-0.098434 +0.707999 +0.683900 +0.938934 +0.798261 +0.434930 +0.629296 +0.685560 +0.505047 +0.756123 +0.741197 +0.639466 +0.743645 +0.383974 +0.373202 +0.767832 +0.682610 +0.627376 +0.932327 +0.435748 +0.450192 +0.279942 +0.802259 +0.414227 +0.445366 +0.747797 +0.499683 +0.889855 +0.750480 +0.956375 +0.918608 +0.566114 +0.336867 +0.059359 +0.697981 +0.609800 +0.852619 +0.918864 +0.447866 +0.456612 +0.650068 +-0.074387 +0.472114 +0.468924 +0.919850 +0.864611 +0.793071 +0.055190 +0.833195 +0.949522 +0.814240 +0.837998 +0.591106 +0.445518 +0.979309 +0.314731 +0.915445 +0.390461 +0.835801 +0.948203 +0.261659 +0.957941 +0.873486 +0.818494 +0.828433 +0.520964 +0.606841 +0.366278 +0.657439 +0.896209 +0.340309 +0.197316 +0.890434 +0.449091 +0.286580 +0.833007 +0.874949 +0.503902 +0.668301 +0.202969 +0.983213 +0.797739 +0.785684 +0.030006 +0.521663 +0.060500 +0.411999 +0.085112 +0.018614 +0.826300 +0.059760 +0.470402 +0.165568 +0.160403 +0.376219 +0.441739 +0.820505 +0.732245 +0.260153 +0.260153 +-0.015673 +0.095002 +0.427069 +0.921285 +0.848767 +0.093475 +0.163977 +0.373933 +0.290449 +0.516967 +0.327768 +0.075278 +0.064590 +0.193936 +0.786551 +0.382808 +0.907410 +0.347011 +0.647409 +0.146237 +0.586284 +0.347112 +0.441948 +0.763448 +0.784057 +0.495127 +0.422187 +0.286872 +0.891729 +0.870739 +0.705170 +0.175359 +0.875070 +0.324158 +0.862585 +0.514907 +0.613603 +0.706326 +0.729809 +0.714964 +0.269092 +0.849986 +0.703661 +0.828785 +0.910394 +0.304002 +0.854857 +0.691704 +0.653980 +0.788730 +0.299954 +0.817338 +0.868476 +0.384814 +0.647516 +0.877794 +0.400073 +0.970564 +0.952982 +0.397782 +0.550945 +0.449462 +0.356400 +0.281137 +0.930662 +0.956598 +0.807825 +0.211857 +0.867342 +-0.250318 +0.189127 +0.298797 +0.382555 +0.455706 +0.678475 +0.612500 +0.620972 +0.831818 +0.604518 +0.948047 +0.360689 +0.892358 +0.673275 +0.476471 +0.137122 +0.235084 +0.893987 +0.761530 +0.538752 +0.926069 +0.677225 +0.561805 +0.627202 +0.627242 +0.783067 +0.558292 +0.608514 +0.373028 +0.552920 +0.044139 +0.934157 +0.410982 +0.473067 +0.058016 +0.318286 +0.163392 +0.231078 +0.678725 +0.815509 +0.800365 +0.964800 +0.779626 +0.785228 +0.938427 +0.670712 +0.867381 +0.931707 +0.872778 +-0.243516 +0.761264 +0.984728 +0.743332 +0.463320 +0.697152 +0.755919 +0.647437 +0.584956 +0.666296 +0.902929 +0.883217 +0.764787 +0.873864 +0.617679 +0.469242 +0.348795 +0.989077 +0.182448 +0.062513 +0.524897 +0.754257 +0.838012 +-0.137217 +0.331256 +0.935619 +0.430939 +-0.022631 +0.515826 +0.854331 +0.347879 +0.496053 +0.943923 +0.823277 +0.357314 +0.503124 +0.939653 +0.445053 +0.815385 +0.626989 +-0.211224 +0.056060 +0.091784 +0.314824 +0.481630 +0.988623 +0.226504 +0.192421 +0.784540 +0.381138 +0.175674 +0.218063 +-0.002810 +0.697464 +0.295790 +-0.311493 +0.029044 +0.071777 +0.122208 +0.952888 +0.538975 +0.228153 +0.712617 +0.886899 +0.737753 +0.923232 +0.811390 +0.981122 +0.837759 +0.950632 +0.779526 +0.933234 +0.672616 +0.611422 +0.814419 +0.641289 +0.932517 +0.805164 +0.664409 +0.837050 +0.866261 +0.841561 +0.366869 +0.425743 +0.780252 +0.460829 +-0.340070 +0.830630 +0.302042 +0.506251 +0.299496 +0.923568 +0.861104 +0.882007 +0.536125 +-0.951875 +0.890655 +-1.358236 +0.550821 +0.330424 +-0.185743 +0.240857 +-0.036456 +0.643728 +0.619551 +0.739380 +0.246324 +0.668524 +0.833132 +0.896047 +0.994521 +0.256728 +0.997942 +0.200852 +0.569351 +0.320463 +0.796596 +0.497611 +0.331804 +0.331804 +0.265006 +0.596928 +0.335460 +0.376742 +0.062932 +0.910605 +-0.208705 +0.910801 +0.756820 +0.724798 +0.853369 +0.329867 +0.515273 +0.184540 +0.532918 +0.474486 +0.888922 +0.894840 +0.239233 +0.678284 +0.041258 +0.950131 +-0.254809 +0.822036 +0.724790 +0.866235 +0.937205 +0.387677 +-0.178137 +0.676768 +0.669048 +0.581511 +0.891992 +0.518619 +0.283943 +-0.092493 +0.600514 +0.535476 +0.066456 +0.014626 +0.846210 +0.352077 +0.812853 +0.929170 +0.181067 +0.182628 +0.306960 +0.363150 +0.889901 +0.416146 +0.886433 +0.821296 +0.801358 +0.184139 +0.265506 +-0.084539 +0.236156 +0.103595 +0.903241 +0.549453 +-0.041022 +0.238102 +0.226789 +0.432118 +0.055460 +0.240405 +0.271183 +0.469718 +0.930462 +0.807513 +0.928671 +0.574099 +0.439810 +0.232489 +0.651896 +0.295421 +0.950811 +0.480426 +0.784395 +0.408295 +0.973282 +-0.741231 +0.628260 +0.381210 +0.982980 +0.905814 +0.892536 +0.478835 +0.797384 +0.876548 +0.944201 +0.852316 +0.124880 +0.863294 +0.763148 +0.488870 +0.473744 +-0.069817 +0.823333 +0.960338 +0.924169 +0.947508 +0.482520 +0.512618 +0.277334 +0.267387 +0.902584 +0.599159 +0.473712 +0.944937 +0.893937 +0.439855 +0.868389 +0.852872 +0.872899 +0.872541 +0.986998 +0.593619 +0.157019 +0.453803 +0.880536 +0.877016 +0.672622 +0.037300 +0.766040 +0.736753 +0.980911 +0.561666 +0.778164 +0.510580 +0.741262 +0.829626 +0.664893 +0.873442 +0.772020 +0.782909 +0.482409 +0.898189 +0.770573 +0.830401 +0.789271 +0.680416 +0.355369 +0.655473 +0.746738 +0.931937 +0.699543 +0.822910 +0.903724 +0.647344 +0.772797 +0.928995 +0.933933 +0.708101 +0.409030 +0.751372 +0.861866 +0.485469 +0.938477 +0.695254 +0.678815 +0.751577 +0.652385 +0.771223 +0.915936 +0.753093 +0.391692 +0.690463 +0.724958 +0.822897 +0.865999 +0.934637 +0.756031 +0.751245 +0.563626 +0.970780 +0.882851 +0.752527 +-0.175601 +0.849931 +0.556219 +0.450695 +0.793242 +0.882233 +-0.660346 +-0.117582 +0.651515 +0.803044 +0.660483 +0.349193 +0.712204 +0.827796 +0.884573 +0.505435 +0.824726 +0.887463 +0.919737 +0.629439 +0.398003 +0.987486 +-0.125264 +0.783785 +0.663459 +0.480760 +0.753499 +0.382626 +0.542369 +0.837975 +0.692303 +0.670566 +0.829636 +0.732795 +0.594375 +-0.144139 +0.931273 +0.546995 +0.727973 +0.801394 +0.647752 +0.985188 +0.252345 +0.492478 +0.492477 +0.441790 +0.441790 +0.534825 +0.492451 +0.549984 +0.736084 +0.636897 +-0.217934 +0.790027 +0.594267 +0.634079 +0.636816 +0.933666 +0.588400 +0.981245 +0.999598 +0.654687 +0.811336 +0.369264 +0.997729 +0.030964 +0.666964 +-0.296296 +0.086128 +0.124505 +0.669095 +0.718853 +0.666025 +0.994845 +0.813445 +0.610635 +0.846215 +-0.003507 +0.887926 +0.812727 +0.004812 +0.406172 +0.792547 +-7.664764 +0.958320 +0.629552 +0.449057 +0.628718 +0.865100 +0.267271 +0.422710 +0.314784 +0.001271 +0.913291 +0.946955 +0.565131 +0.249615 +0.206441 +0.932872 +0.263066 +0.248130 +0.383077 +0.033462 +0.682907 +0.920607 +0.536196 +0.916280 +0.848443 +0.918050 +0.930477 +0.959079 +0.333930 +0.922581 +0.906418 +0.849680 +0.929151 +0.858533 +0.920412 +0.931913 +0.986849 +0.847169 +0.930885 +0.930674 +0.411388 +0.916003 +0.919223 +0.912417 +0.763822 +0.934969 +0.323000 +0.138774 +0.766064 +0.959798 +-0.196247 +0.821716 +0.254077 +0.325653 +0.678332 +0.739707 +0.722548 +-0.567221 +-0.512560 +0.352608 +0.311453 +0.931195 +0.874348 +-0.225168 +-0.055039 +0.760660 +0.827432 +0.611477 +-0.109392 +-0.291995 +0.052684 +0.288986 +0.930597 +0.833210 +0.654449 +0.179055 +-0.078447 +0.712313 +0.773683 +0.979514 +0.601886 +0.805687 +-0.003072 +0.297092 +0.199238 +0.851376 +0.303570 +0.939013 +0.926647 +-0.330957 +0.785985 +-0.156484 +0.066813 +0.477951 +-0.223220 +0.325808 +0.778032 +0.671351 +0.290549 +0.186711 +0.934029 +0.920788 +0.835416 +0.645639 +0.786574 +-0.241893 +0.499903 +-0.621187 +0.613648 +0.876791 +0.190368 +0.806401 +0.806647 +0.661789 +0.169954 +0.503626 +0.744095 +-0.123946 +-0.236983 +0.500291 +0.926815 +-0.379624 +0.395021 +-0.120696 +0.343551 +0.218006 +-0.231795 +-0.370424 +0.553586 +0.874611 +0.676629 +-2.556011 +0.790003 +0.564376 +0.336029 +0.375374 +0.038930 +0.511164 +0.885856 +0.756269 +0.867569 +0.861267 +0.823627 +0.910184 +0.938881 +0.547894 +0.779607 +-1.489943 +0.709596 +0.497282 +0.575627 +0.736021 +0.850421 +0.732085 +0.775465 +0.878931 +0.724733 +0.758236 +0.749156 +0.649068 +0.681269 +0.635481 +0.790521 +0.842989 +0.802789 +0.882920 +0.856460 +0.871219 +0.884480 +0.223640 +0.656736 +0.761609 +0.933751 +0.883090 +0.312975 +0.798081 +0.867940 +0.782831 +0.786940 +0.717747 +0.354112 +0.860400 +0.701840 +0.835731 +0.634089 +0.888727 +0.803501 +-0.171522 +0.805138 +0.787718 +0.577623 +0.743205 +0.709642 +0.872712 +0.907544 +0.817056 +0.688644 +0.992112 +0.827819 +0.891957 +0.939292 +0.566000 +0.442952 +0.427009 +0.608529 +0.665724 +0.952387 +0.926387 +0.752658 +0.461082 +0.174354 +0.724211 +0.516906 +-0.060660 +0.618063 +0.851262 +0.155294 +0.763304 +0.920601 +0.722115 +0.948189 +-0.294584 +0.929659 +0.790563 +-0.156464 +0.626586 +0.883147 +0.316130 +0.591430 +0.330702 +-0.124591 +0.445369 +0.527521 +0.497702 +0.454699 +0.714806 +0.391043 +0.321952 +0.783717 +-0.125899 +0.583843 +0.534213 +0.470256 +0.920633 +0.885895 +0.201597 +0.900774 +0.593537 +0.408010 +0.916276 +0.527572 +0.586222 +0.783841 +0.764673 +0.870503 +0.800847 +0.464362 +0.868106 +0.659119 +0.229932 +0.684332 +0.805535 +0.527864 +0.938334 +0.678437 +0.771300 +0.771591 +0.604680 +0.063972 +-0.027770 +0.708500 +0.886360 +0.281174 +0.392544 +0.603215 +0.245338 +0.951185 +0.937275 +0.718168 +0.387405 +0.922244 +0.867400 +0.941656 +0.738268 +0.769074 +0.690566 +0.981266 +0.659415 +-0.108136 +-3.484515 +0.659772 +0.712115 +0.724662 +0.658570 +0.874732 +0.451314 +0.834268 +0.693139 +0.747415 +0.146077 +0.760972 +0.640804 +0.806078 +0.984485 +0.594272 +-0.034273 +0.062966 +0.465880 +0.687393 +-0.133380 +0.615959 +0.754866 +0.586331 +0.635385 +0.791989 +0.142626 +0.846679 +0.779579 +0.483923 +0.925918 +0.731610 +0.982269 +0.267399 +0.864424 +0.705349 +0.711651 +0.237080 +0.467944 +0.021365 +-0.202792 +-0.288666 +0.464803 +0.888274 +0.569945 +-0.230825 +0.464360 +0.994896 +0.933259 +-0.166273 +0.931374 +0.891922 +-2.417150 +0.636752 +0.652187 +-0.111487 +0.170160 +0.908218 +-0.101936 +0.980459 +0.065106 +-0.327093 +-0.138413 +0.614682 +0.918064 +0.621460 +0.890840 +0.899521 +0.855641 +0.512547 +0.877052 +0.659983 +0.245957 +0.797137 +0.722749 +0.865887 +0.776250 +0.679489 +0.543279 +0.658425 +0.728617 +0.600520 +0.714569 +0.851780 +0.881385 +0.667264 +0.697251 +0.876732 +0.926255 +0.933663 +0.656884 +0.735520 +0.908559 +0.931644 +0.814863 +0.919356 +0.721698 +0.833183 +0.796385 +0.792591 +0.899658 +0.927740 +0.262407 +0.927043 +0.837341 +0.800772 +0.933905 +0.458917 +0.843715 +0.358770 +-0.140249 +-0.083102 +0.151810 +0.587277 +0.808906 +0.836035 +0.499526 +0.274921 +0.485195 +0.855893 +0.043045 +0.102970 +0.895879 +0.716932 +0.784189 +0.782671 +0.139534 +0.778286 +0.506871 +0.591435 +0.565036 +-0.133051 +-1.010494 +-0.023857 +0.498186 +0.340034 +-0.093100 +-0.169861 +-0.125676 +0.430047 +-0.203635 +-0.107542 +-0.177263 +0.617876 +0.612306 +0.757196 +0.939574 +0.673802 +0.818636 +0.820048 +0.931275 +0.664046 +0.761247 +0.659435 +0.882347 +0.674009 +0.748530 +0.733176 +0.948683 +0.759961 +0.938480 +0.683347 +0.810678 +0.933065 +0.872961 +-0.209116 +0.739252 +0.930680 +0.768676 +0.700082 +0.814286 +0.342129 +0.867933 +0.800712 +0.028442 +0.794766 +0.931300 +0.679280 +0.661260 +0.677126 +0.897750 +0.711449 +0.927704 +0.493899 +0.850824 +0.150247 +0.072729 +0.547281 +0.933024 +0.606361 +0.047122 +0.211900 +0.276736 +0.324977 +0.651814 +-0.249692 +0.411856 +-0.078599 +0.769235 +0.672483 +0.618722 +0.580609 +0.830929 +-0.016993 +0.296409 +0.659158 +-0.146600 +0.437296 +0.304083 +0.672153 +0.334176 +0.791961 +-0.174205 +-0.259262 +0.142169 +-0.330205 +0.748184 +0.043718 +0.682524 +0.279085 +-0.358815 +0.369277 +0.894792 +0.832924 +-0.200673 +-0.308056 +0.272551 +0.233100 +0.237080 +0.082330 +0.405025 +0.663169 +0.242678 +0.499797 +0.595151 +0.848352 +-0.261991 +0.690372 +0.397080 +0.270541 +0.123545 +0.933223 +0.804341 +0.839709 +0.761182 +0.840493 +0.934685 +0.657105 +0.662925 +0.931285 +0.781601 +0.823914 +0.605902 +0.970614 +0.932931 +-0.189305 +0.675285 +0.939811 +0.502357 +0.615638 +0.727293 +0.727566 +0.758503 +0.710376 +0.238988 +0.292543 +0.458372 +0.406980 +0.371088 +0.685471 +0.639032 +0.231854 +0.881406 +0.259299 +0.102178 +0.553692 +0.533659 +0.475795 +-0.188405 +0.468385 +0.598485 +0.808472 +0.230521 +0.332897 +0.536875 +0.705459 +0.044992 +0.004143 +0.482578 +-0.039873 +0.461272 +-0.168348 +0.400047 +0.751905 +0.681397 +0.395027 +0.714035 +0.600833 +0.727915 +-0.176406 +-0.364140 +0.894378 +0.011961 +0.179383 +0.331262 +-0.265507 +0.550849 +0.808641 +-0.245051 +0.510981 +-0.190233 +0.638818 +0.805921 +0.470590 +0.805472 +0.856281 +0.507787 +0.758082 +-0.215070 +0.475510 +0.299026 +0.645292 +0.625683 +0.298165 +0.066082 +0.829641 +-0.279088 +0.676266 +0.509767 +0.127323 +0.133447 +0.747811 +0.475657 +-0.223001 +0.861828 +0.770402 +0.643081 +-0.251328 +0.984683 +0.392706 +0.649867 +-0.060242 +0.681860 +0.855938 +0.766011 +0.253356 +-0.122604 +0.780219 +0.810249 +0.739571 +0.795839 +0.612082 +0.803504 +0.263846 +0.449238 +0.398561 +0.820247 +-0.010654 +-0.362279 +0.408448 +0.565354 +0.683152 +-0.024513 +0.830595 +-1.460924 +0.775019 +0.697174 +0.293983 +0.343502 +-5.103179 +0.577593 +0.115751 +-0.161936 +0.748223 +0.572613 +0.295489 +-0.005131 +0.531950 +0.021609 +0.556951 +0.412225 +0.822449 +-0.029266 +0.614324 +0.678437 +0.297379 +0.146943 +0.338128 +0.652274 +0.299233 +0.621553 +0.617512 +-0.198599 +0.213460 +0.507415 +0.908990 +0.684598 +0.784057 +0.709709 +0.932862 +0.960728 +0.497768 +0.974506 +-0.161822 +0.468995 +0.399853 +0.550799 +-0.169730 +0.558928 +0.485511 +0.896086 +0.841054 +-0.109567 +0.364619 +0.703959 +0.496047 +0.905858 +0.302050 +0.758899 +0.319991 +0.561740 +0.253242 +0.814923 +0.828987 +-0.395748 +0.837601 +0.886107 +0.209126 +0.653179 +0.639410 +0.954365 +0.614290 +0.133442 +0.933821 +0.933326 +0.813797 +0.549947 +0.389907 +0.771607 +0.603908 +0.440971 +0.801192 +0.732798 +0.420982 +0.481147 +0.803089 +0.331961 +0.194057 +0.673953 +0.886230 +0.492973 +0.782351 +0.705107 +0.430610 +0.428475 +0.819458 +0.814431 +0.958445 +0.784712 +0.412459 +0.578145 +-0.057592 +-2.313612 +0.726182 +0.171002 +0.821306 +0.470465 +0.487702 +0.033957 +0.263191 +0.460834 +0.741351 +0.802331 +0.467477 +0.758897 +0.735805 +0.571839 +0.837970 +0.763968 +0.629300 +0.671240 +0.802514 +0.923050 +0.630362 +0.769618 +0.410316 +0.844443 +0.320656 +0.403645 +0.884406 +0.266280 +0.917057 +0.486115 +0.919071 +0.629411 +0.412035 +0.466193 +0.225446 +0.924444 +0.182037 +0.275905 +0.020457 +0.215713 +0.029353 +0.547676 +0.392614 +0.531827 +0.848291 +0.912918 +0.307612 +0.912927 +0.493308 +0.939936 +0.689528 +0.964067 +0.914308 +0.741171 +0.739991 +0.467805 +0.873471 +0.394264 +0.783260 +0.458852 +0.231075 +0.474922 +0.753944 +0.329441 +0.645884 +0.255319 +0.951467 +0.395337 +0.823136 +0.732398 +0.706143 +0.598906 +0.312499 +0.740621 +0.929550 +0.661813 +0.864485 +0.127554 +0.627807 +0.285382 +-19.092480 +0.987780 +0.625814 +0.409886 +0.770248 +0.946585 +0.845307 +0.535752 +0.860754 +0.291820 +0.817073 +0.817073 +0.805791 +0.842047 +0.513356 +0.962848 +0.950828 +0.826096 +0.365786 +0.622409 +0.789412 +0.237250 +0.360371 +0.996818 +0.730352 +0.407875 +0.699061 +-0.028208 +0.069209 +0.959473 +0.135283 +0.921295 +0.771810 +0.958892 +0.972312 +0.691050 +0.674109 +0.952357 +0.923875 +0.572687 +0.774886 +0.950512 +0.840165 +0.857802 +0.970473 +0.533325 +0.829913 +0.819405 +0.776103 +0.956531 +0.668087 +0.858559 +0.861410 +0.202898 +0.869273 +0.677461 +0.193414 +0.545370 +-0.102829 +0.745729 +0.072811 +0.446534 +0.542425 +0.868372 +0.496212 +0.774512 +0.453600 +0.836295 +0.336061 +0.854236 +0.713271 +0.949502 +0.939050 +-0.793107 +0.938586 +0.560305 +0.374537 +0.566147 +0.668891 +0.901947 +0.488305 +0.908597 +0.797250 +0.732447 +0.620181 +0.727425 +0.980559 +0.526293 +0.017772 +0.611564 +0.837351 +0.892498 +0.084321 +0.655698 +0.949243 +0.888653 +-0.051442 +0.719367 +0.767321 +0.776572 +0.343974 +0.748073 +0.492881 +0.801938 +0.541643 +0.720383 +0.749550 +0.725126 +-1.360729 +-1.073345 +0.898693 +0.159336 +0.648757 +-1.128445 +0.161386 +-0.093007 +-0.035389 +0.257277 +-1.158936 +0.143467 +0.003901 +0.023998 +0.252309 +0.143642 +-0.003126 +0.335502 +0.648901 +0.313464 +0.520143 +0.538469 +-0.187600 +0.789931 +0.232167 +0.844329 +0.054146 +0.299744 +0.697791 +0.268809 +0.597809 +0.645331 +0.824540 +0.702819 +0.928211 +0.812218 +0.643585 +0.295323 +0.211772 +0.541874 +0.891519 +0.548517 +0.697361 +0.631956 +0.732858 +0.361397 +-0.369369 +0.372939 +0.096885 +-0.017254 +0.036402 +0.307763 +0.670329 +0.855158 +0.940381 +0.910896 +0.771751 +0.605952 +0.463285 +0.798683 +0.795188 +0.694742 +0.462402 +0.932525 +0.205182 +0.939224 +0.974927 +0.469500 +0.537467 +0.830311 +0.951884 +0.942566 +0.995856 +0.917453 +0.954151 +0.087466 +0.935871 +0.885270 +0.393894 +0.937720 +0.901355 +0.840091 +0.304095 +0.870438 +0.358764 +0.716492 +0.870754 +0.121702 +0.924656 +0.336595 +-0.938691 +0.410292 +0.725611 +0.423742 +0.762979 +0.750922 +-0.164526 +0.741040 +0.681013 +0.768589 +0.443808 +0.971382 +0.890668 +0.510252 +0.943936 +-0.228371 +0.381516 +0.745403 +0.768106 +0.793629 +0.851115 +0.758188 +0.756693 +0.714015 +0.298100 +0.747951 +0.745136 +0.589756 +0.748385 +0.652437 +0.752110 +0.735827 +0.780249 +0.770221 +0.746730 +0.665991 +0.918342 +0.773932 +0.716181 +0.750733 +0.318650 +0.703944 +0.777580 +0.332033 +0.730351 +0.705840 +0.782590 +0.774940 +0.863590 +0.721421 +0.595475 +0.757893 +0.870665 +0.760358 +0.861754 +0.779820 +0.572263 +0.880994 +0.947028 +-80.595531 +0.823328 +0.171601 +0.812128 +0.530859 +0.312876 +0.115085 +0.762389 +0.269621 +0.392780 +0.285288 +0.896832 +0.828436 +0.631877 +0.893383 +0.003139 +0.845536 +0.989440 +0.881802 +0.976646 +0.613036 +0.771019 +0.692903 +0.724442 +0.184055 +0.548595 +0.576398 +0.377795 +0.664356 +0.345442 +0.316168 +0.255307 +0.145199 +0.994207 +-2.331488 +0.120490 +0.184166 +0.262584 +0.522431 +0.356494 +0.226255 +0.301279 +0.222700 +0.514745 +0.529498 +0.138626 +0.032482 +0.206553 +0.113929 +0.683846 +0.292144 +0.263551 +0.358961 +-0.070694 +0.386476 +0.566744 +-0.004121 +-0.002213 +0.257916 +0.040482 +-2.579819 +0.447345 +0.049363 +0.924558 +0.821206 +-1.049756 +0.879554 +0.863512 +-0.620772 +0.753374 +0.744133 +-0.037925 +-0.062239 +0.290806 +0.856605 +0.649050 +0.058421 +0.059569 +0.579564 +-19.990520 +0.737631 +-0.947350 +0.942885 +0.930289 +0.949242 +0.664500 +-0.321135 +-0.031774 +0.904971 +0.787301 +0.052634 +0.946965 +-0.169406 +0.083415 +0.280982 +0.431256 +0.854454 +-0.379076 +0.857121 +0.603981 +0.580327 +0.785957 +0.808306 +0.932010 +0.934855 +0.669530 +0.756793 +0.644859 +0.827498 +0.431578 +0.760695 +0.388063 +0.527342 +0.233840 +0.410594 +0.304774 +0.144904 +0.739175 +0.736369 +0.854994 +0.218447 +0.677269 +0.921719 +0.549206 +0.319070 +0.428760 +0.300931 +0.904791 +0.571012 +0.069386 +0.912834 +0.084971 +0.753828 +0.993886 +0.360020 +0.299733 +0.186387 +0.243145 +0.531735 +0.060852 +0.653555 +0.222286 +0.747383 +0.003815 +0.028229 +0.106788 +0.920421 +0.084123 +0.167323 +0.530321 +0.115147 +0.195859 +0.343902 +0.780105 +0.975971 +-0.222998 +0.501872 +0.448866 +0.655145 +-2.323329 +0.492236 +-0.315562 +0.970354 +0.639377 +0.838028 +0.991232 +0.701665 +0.518909 +0.902167 +-0.022268 +-11.618861 +0.975762 +0.868765 +0.641374 +0.274850 +0.747438 +0.496170 +0.979931 +0.833482 +-0.094940 +0.765691 +0.619840 +0.485949 +0.859146 +0.585404 +0.611849 +0.944251 +0.908231 +0.777804 +0.776550 +0.990702 +0.756758 +0.340774 +0.713048 +0.301261 +0.676796 +0.599671 +0.819646 +0.807725 +-0.126069 +0.794693 +0.931404 +0.581077 +0.381601 +0.695756 +0.885854 +0.885854 +0.402695 +0.794800 +0.858794 +0.929363 +0.908992 +0.508509 +0.844734 +0.931314 +0.773640 +0.678670 +0.684407 +0.900211 +0.467017 +0.819318 +0.885908 +0.789156 +0.945057 +0.954428 +0.973393 +0.346886 +0.334806 +0.505175 +0.969691 +0.785044 +0.774481 +0.850170 +0.365090 +0.947527 +0.751496 +0.901729 +0.815233 +0.850012 +0.821717 +0.136217 +0.364191 +0.845376 +0.910809 +0.893091 +0.845328 +-0.040302 +0.842116 +0.360319 +0.468272 +0.858115 +0.757193 +0.708252 +0.884612 +0.906804 +0.825672 +-0.229862 +0.782315 +-0.211540 +0.321089 +0.832916 +0.045560 +0.144110 +0.921778 +0.341209 +0.395821 +0.247398 +-28.043878 +0.864416 +0.443491 +0.367586 +0.176568 +0.452838 +0.492457 +0.500607 +0.614358 +0.881621 +0.918495 +0.464082 +0.436323 +0.348935 +0.494194 +0.972177 +0.159524 +0.450334 +0.209859 +0.778169 +0.492331 +0.775169 +0.851730 +0.505768 +0.734481 +0.562434 +0.704899 +0.707212 +0.709657 +0.604617 +0.553180 +0.579347 +-0.063726 +0.971877 +0.017305 +-0.061277 +0.627095 +0.605892 +0.294417 +0.460007 +0.517660 +0.052827 +0.925149 +0.892120 +0.861724 +0.982777 +0.956283 +0.259910 +0.845952 +0.423806 +0.818347 +0.334337 +0.961143 +0.557756 +0.890300 +0.371489 +0.571295 +0.537582 +0.840564 +0.819771 +0.699949 +0.909964 +0.954387 +0.940694 +0.944225 +0.868683 +-0.213025 +0.381614 +0.942246 +0.745979 +0.744071 +0.559307 +0.814659 +0.523430 +0.476818 +0.754817 +0.865556 +0.783400 +0.611561 +0.925302 +0.956679 +0.865863 +0.299467 +0.187869 +0.297594 +0.266020 +0.840726 +0.468064 +0.952954 +-0.184267 +0.173537 +0.173537 +0.536825 +0.911605 +0.925379 +0.184244 +0.827074 +0.104555 +0.986451 +-4.077692 +0.442469 +0.037635 +0.068587 +0.043836 +0.146256 +0.722554 +0.642510 +0.991355 +0.804792 +0.585109 +0.560344 +0.056301 +0.206635 +0.694025 +0.171445 +0.790296 +0.070543 +0.793116 +0.069684 +0.819364 +0.355388 +0.241716 +0.260676 +0.475145 +0.227072 +0.487759 +0.287774 +0.696453 +-0.052693 +0.104265 +0.945531 +0.520369 +0.663290 +0.443362 +0.288228 +0.976007 +0.599307 +0.638938 +0.082696 +0.093658 +0.694563 +0.120756 +0.121022 +0.145392 +0.361594 +0.630332 +0.797972 +-0.003262 +0.926109 +0.141868 +0.631000 +0.426539 +0.526226 +0.345634 +0.672748 +0.661672 +0.756309 +0.957284 +0.218374 +0.357460 +0.285778 +-1.774168 +0.558293 +0.143647 +0.601289 +0.774480 +0.916698 +-0.149499 +0.965842 +0.969379 +0.385633 +0.716344 +0.755084 +0.849835 +0.566886 +0.561295 +0.953025 +0.816273 +0.850493 +0.967453 +0.131092 +0.350875 +0.875349 +0.910537 +0.577277 +0.957081 +0.986454 +0.486097 +0.796165 +0.744395 +0.741850 +0.617218 +0.440117 +0.720551 +0.820729 +0.631883 +0.856249 +0.747760 +0.959707 +0.859893 +0.135833 +0.467409 +0.644513 +0.949619 +0.896385 +0.888611 +0.882984 +-0.200160 +0.457565 +0.470858 +0.646948 +0.738021 +0.816510 +0.580256 +0.463138 +0.773106 +0.790878 +0.616306 +0.941312 +0.856945 +0.522661 +0.061206 +0.630857 +0.469693 +0.508946 +0.474722 +0.744363 +-2.531656 +0.447921 +0.604757 +0.488086 +0.584755 +-0.253696 +0.537379 +0.305950 +0.088413 +0.401413 +0.933459 +0.802727 +0.226558 +0.745357 +0.205896 +0.100331 +0.773863 +0.518478 +0.940213 +0.965255 +0.255097 +0.327250 +-2.099368 +0.356052 +-0.010220 +0.377685 +0.760555 +0.511729 +0.728220 +0.560692 +0.070880 +0.013033 +0.530368 +0.200822 +0.306603 +0.963188 +0.203556 +0.024283 +0.076365 +0.704009 +0.500780 +0.055421 +0.047684 +0.309024 +0.244625 +-1.033315 +0.111967 +0.041447 +0.973808 +0.894701 +0.293617 +0.763195 +0.227609 +0.127718 +0.862171 +-0.012921 +0.544255 +-0.094673 +0.453016 +0.372490 +0.587382 +0.474589 +0.220268 +0.441333 +0.172523 +-0.046186 +0.263349 +0.968182 +0.776427 +0.330039 +0.245795 +0.229049 +0.886468 +0.496980 +0.769171 +0.505986 +0.769058 +0.392462 +0.357901 +0.054019 +0.359317 +0.294483 +0.471772 +0.443426 +0.715440 +-3.908137 +0.647681 +0.207651 +0.179358 +0.977664 +0.172047 +0.798903 +0.335243 +0.758215 +0.126395 +0.273173 +0.909021 +0.350128 +0.878823 +0.467511 +0.699957 +0.993803 +0.795282 +0.966831 +0.382549 +0.952936 +0.159605 +0.790427 +0.948819 +0.779144 +0.959368 +0.998349 +0.877297 +0.849924 +0.881953 +0.924972 +0.909394 +0.949014 +0.242532 +0.655551 +0.920466 +0.936991 +0.989140 +0.370452 +0.993636 +0.581007 +0.409878 +0.925054 +0.647079 +0.183249 +0.679077 +0.122316 +0.936955 +0.699398 +0.513991 +0.569803 +0.685318 +0.120744 +-0.007098 +0.310316 +0.997927 +0.095302 +0.871265 +0.045225 +0.549163 +0.280508 +0.246923 +-0.581893 +0.106074 +0.230785 +0.228644 +0.804646 +0.031786 +-0.413797 +0.599846 +0.238119 +0.633037 +0.248258 +0.263235 +0.512114 +0.187984 +0.373700 +0.276647 +0.245000 +0.158736 +0.251036 +0.325890 +0.720894 +0.813050 +0.461802 +0.146495 +0.740555 +0.829012 +0.221044 +0.206409 +0.997865 +0.021120 +0.376685 +0.581880 +0.474745 +0.363856 +0.407060 +0.840935 +0.990778 +0.947679 +0.160782 +0.891913 +0.138090 +0.849202 +0.866248 +0.947518 +0.732293 +0.474737 +0.900702 +0.256715 +0.020777 +0.301170 +0.884139 +0.354002 +0.533586 +0.769759 +-0.561565 +0.309667 +0.855941 +0.148042 +0.771053 +0.145699 +0.155649 +0.220616 +0.128567 +0.545024 +0.796275 +0.554197 +0.657644 +0.570362 +0.200428 +0.646669 +0.502862 +0.759146 +0.744668 +0.042870 +0.954600 +-0.546245 +0.959769 +0.979146 +0.722947 +0.563589 +0.890520 +0.810263 +0.777737 +0.755450 +0.753595 +0.805319 +-0.229656 +0.611877 +0.893122 +0.490552 +0.884647 +-1.279531 +0.447858 +0.922430 +0.228212 +0.831834 +0.629279 +0.847293 +0.424763 +0.913008 +0.551807 +0.162628 +0.627498 +0.794570 +0.653253 +0.820767 +0.928767 +0.415221 +0.923520 +0.943886 +0.910394 +0.730063 +0.923041 +0.732756 +0.922313 +0.942289 +-0.281016 +0.709113 +0.837836 +0.558760 +0.392831 +0.903952 +0.917249 +0.939773 +0.812057 +0.703557 +0.213235 +0.727091 +-0.000171 +0.404621 +0.692853 +0.998617 +0.940895 +0.125391 +0.147218 +0.308076 +0.964337 +0.686190 +0.719999 +-2.129927 +0.457353 +0.670255 +0.228229 +0.469981 +0.096872 +0.234957 +0.588957 +0.900302 +-0.043306 +0.015103 +0.005096 +0.965380 +0.698253 +0.577845 +0.085835 +0.689442 +0.258474 +0.655807 +0.340733 +0.645247 +0.904130 +0.548150 +0.620619 +0.774636 +0.901926 +-0.057145 +-0.067118 +0.586595 +-0.941759 +0.826574 +0.663891 +0.932105 +0.618271 +0.729432 +0.830082 +0.877111 +0.902149 +0.864010 +0.965445 +0.443213 +0.588135 +0.727022 +0.791554 +0.706580 +-2.838409 +0.899451 +0.952776 +0.504835 +0.884601 +0.867490 +0.418978 +0.588275 +0.839747 +0.783398 +0.176465 +0.710843 +0.588989 +0.713041 +0.202599 +0.853238 +0.853358 +-0.477005 +0.695445 +0.956512 +0.597701 +0.488298 +0.845486 +0.182683 +0.941335 +0.829025 +0.624692 +0.965095 +0.931642 +0.570243 +0.860418 +0.795515 +0.674666 +0.511936 +0.199045 +0.420435 +0.348398 +0.449855 +0.404041 +0.715468 +0.392363 +0.429367 +-0.153777 +0.082752 +0.024649 +0.407039 +0.662152 +0.703370 +0.403746 +0.402331 +0.666093 +0.200596 +0.244835 +0.429946 +0.238653 +0.459442 +0.287893 +0.648162 +0.963666 +-0.083994 +0.497344 +0.571386 +-0.280541 +0.843832 +0.884237 +0.458652 +0.677342 +0.367002 +0.384011 +0.796045 +0.172202 +0.753538 +0.926246 +0.684959 +0.903556 +0.506578 +0.956462 +-2.433493 +0.935544 +0.478735 +0.841377 +0.946023 +0.937711 +0.637847 +0.944163 +0.932720 +0.852464 +0.620972 +0.146823 +0.712661 +0.895666 +0.919210 +0.762810 +0.675351 +0.792045 +0.892625 +0.826687 +0.465403 +0.582055 +0.307787 +0.641877 +0.182669 +0.462847 +0.936393 +0.947520 +0.709103 +0.407681 +0.642467 +0.535920 +0.959510 +0.906546 +0.538739 +0.910135 +0.871166 +0.729198 +0.561788 +0.408466 +0.742208 +0.935680 +0.747020 +0.477251 +0.470228 +0.407493 +0.459411 +0.408347 +0.407459 +0.705503 +0.655806 +0.719080 +0.940107 +0.835204 +0.947776 +-81.842080 +-68.828523 +0.368835 +0.970574 +0.696859 +0.951418 +0.014471 +0.674119 +0.920917 +0.849699 +0.919602 +0.927132 +0.956061 +0.867727 +0.913969 +0.355597 +0.661313 +0.699081 +0.794258 +0.539782 +0.782091 +0.322011 +0.608578 +0.511942 +0.692740 +0.781089 +0.833769 +-0.005488 +0.837920 +0.946754 +0.743085 +0.982625 +0.965859 +0.634564 +0.831564 +0.946838 +0.928054 +0.912747 +-1.719791 +0.521172 +0.640403 +0.459315 +0.470446 +0.371704 +0.520461 +0.150646 +0.338541 +0.685119 +0.998876 +0.056998 +0.615016 +0.618709 +0.575360 +0.285637 +0.463800 +0.259112 +0.728510 +0.721005 +0.195379 +0.547148 +0.250744 +0.402309 +0.265753 +-0.343355 +0.066239 +0.781141 +-0.446804 +0.484884 +0.749342 +0.419324 +0.711389 +0.839317 +0.983925 +0.666796 +0.478668 +-4.234246 +0.805992 +0.880454 +0.451748 +0.843774 +0.435544 +0.516300 +0.795914 +0.527226 +-0.377449 +0.626346 +0.609853 +0.631639 +0.209564 +0.690814 +0.017701 +0.314177 +0.721084 +0.357169 +0.988856 +-14179.195359 +0.153572 +0.917724 +0.854560 +-0.311807 +0.566526 +0.517683 +0.284032 +0.579128 +0.906028 +-0.106611 +0.674784 +0.710575 +0.951807 +0.375350 +0.644477 +0.236457 +0.889970 +-6.868821 +-0.405605 +0.481649 +0.422743 +0.837002 +0.852402 +0.791739 +0.923465 +0.545935 +0.957273 +0.245611 +0.635524 +0.391488 +0.362683 +0.706333 +0.754177 +0.623074 +0.225893 +0.422121 +0.822277 +0.625556 +0.525340 +-0.041909 +0.817063 +0.698840 +0.832004 +0.758156 +0.714675 +0.923024 +0.735673 +0.838960 +0.500078 +0.560387 +0.897681 +0.604976 +0.837813 +0.846440 +-0.194477 +0.857977 +0.588075 +-2.026624 +0.842226 +0.933356 +0.713770 +0.973356 +0.953739 +0.905747 +0.038081 +0.767414 +0.715164 +0.949851 +0.895636 +0.849432 +0.946634 +0.936823 +0.614855 +0.477653 +0.062917 +0.605086 +-0.228886 +0.847615 +0.922794 +0.977406 +0.982964 +0.874498 +0.947691 +0.812318 +0.771568 +0.721957 +0.567385 +0.756555 +0.723268 +0.558643 +0.732310 +0.401742 +0.464267 +0.375086 +0.487433 +0.424795 +0.760845 +0.737086 +0.828713 +0.734465 +0.662724 +0.521006 +0.380848 +0.683534 +0.926573 +0.907282 +0.695100 +-0.067395 +0.276389 +0.725979 +0.670957 +0.909603 +0.615673 +0.919516 +-0.149178 +0.443788 +0.887736 +0.895339 +0.532080 +0.642581 +0.892820 +0.915055 +-0.559033 +0.291592 +0.599358 +0.203927 +0.830577 +0.425858 +0.820692 +0.191895 +0.830735 +0.363618 +0.332976 +0.396059 +0.952993 +0.832315 +0.719537 +0.678288 +0.841548 +0.869079 +-25.355929 +0.903786 +0.353053 +-1.537614 +0.809290 +0.991402 +0.970562 +0.186564 +0.016364 +0.180830 +0.020030 +0.336580 +-0.056199 +0.026450 +0.039645 +0.944199 +0.190087 +0.032328 +-0.070221 +0.162063 +0.170000 +0.347093 +0.598029 +0.300381 +0.617669 +0.222075 +0.291523 +0.933605 +0.024641 +0.745348 +-1.063464 +0.631845 +0.910815 +0.374373 +0.339508 +0.177088 +0.714673 +0.937848 +0.342999 +0.686166 +0.492337 +0.860191 +0.876145 +0.875436 +0.654982 +0.843561 +0.826060 +0.378300 +0.378633 +0.415889 +0.515741 +0.345165 +0.843541 +0.932459 +0.646388 +0.765961 +0.844824 +0.926613 +0.834490 +0.194307 +-0.941763 +0.771552 +0.941035 +0.528719 +0.404157 +0.673696 +0.840396 +0.896132 +0.880412 +0.742771 +0.788205 +0.851743 +-0.205614 +0.798526 +0.243604 +0.391144 +0.594465 +0.634089 +0.460537 +0.908746 +0.791370 +0.915721 +0.346300 +0.818688 +0.849468 +0.530502 +0.804903 +0.926020 +0.681022 +0.909128 +0.375837 +0.450580 +0.643537 +0.695938 +0.675873 +0.993324 +0.994129 +0.354134 +0.409118 +0.358343 +0.330466 +0.399893 +0.409246 +0.550846 +0.779569 +0.615479 +0.617068 +0.989644 +0.954745 +0.923305 +0.158397 +0.584856 +0.016037 +-0.056008 +0.646948 +0.346092 +0.542963 +0.505068 +0.447314 +0.846839 +0.920420 +0.866199 +0.889873 +0.430774 +0.795722 +0.341613 +0.755328 +0.692911 +0.174685 +0.885799 +0.765821 +0.946700 +-0.412341 +0.799886 +0.075279 +0.811130 +0.677816 +0.726212 +0.890449 +0.339487 +0.929004 +-0.541529 +0.240768 +0.688244 +0.175614 +0.958330 +0.254815 +0.014015 +0.754084 +0.148456 +0.024472 +0.187370 +0.996205 +0.512531 +0.393584 +0.409522 +0.235564 +0.944976 +0.579737 +0.568655 +0.922439 +0.459077 +0.761500 +0.537620 +0.210679 +0.617822 +0.928085 +0.902853 +0.831792 +0.571721 +0.557001 +0.932044 +0.600703 +0.931801 +0.812864 +0.762818 +0.474799 +0.653228 +0.011797 +0.547604 +0.668505 +0.426821 +0.961193 +0.709970 +0.768187 +0.325823 +0.928978 +0.890459 +0.677977 +0.453471 +0.541550 +0.636322 +0.928174 +0.414336 +0.970810 +0.377692 +0.948851 +0.768909 +0.982778 +0.918495 +0.376327 +0.322349 +0.792807 +0.447341 +0.956159 +0.924653 +0.927686 +0.608378 +0.505611 +0.423140 +0.984189 +0.918974 +0.957662 +0.653853 +0.492815 +0.476718 +0.893415 +0.971164 +0.853856 +0.647903 +0.934475 +0.942594 +0.404023 +0.901173 +0.369488 +0.901280 +0.899067 +0.945527 +0.982005 +0.979099 +0.781198 +0.055914 +0.710261 +0.628749 +0.861817 +0.973909 +0.875225 +0.933717 +0.239183 +0.058728 +0.362630 +0.558772 +0.772799 +0.818195 +0.910787 +-0.264159 +0.754755 +0.689381 +0.826567 +0.972488 +0.012550 +0.056418 +-0.172740 +-0.194975 +-0.496731 +0.984499 +0.892171 +0.891587 +0.344432 +0.672598 +0.890061 +0.616518 +0.625638 +0.636481 +-0.174531 +0.896235 +0.897660 +0.220107 +0.155507 +0.636098 +0.896234 +0.334571 +0.592336 +0.845641 +0.578926 +0.829443 +0.363734 +0.915893 +0.979664 +0.313764 +0.935875 +0.802467 +-0.951708 +0.950510 +0.587793 +0.771083 +0.910415 +0.873203 +0.926742 +0.149475 +0.888418 +0.856466 +0.953421 +0.939589 +-0.402650 +0.709959 +0.830715 +0.871939 +0.862699 +0.703269 +0.898380 +0.769051 +0.918653 +0.158641 +0.519002 +0.405251 +0.708723 +0.784211 +0.587351 +0.876372 +0.895198 +0.669849 +0.843482 +0.718433 +0.561165 +0.712082 +0.750008 +0.806233 +0.926666 +0.883993 +0.826586 +0.547793 +0.729909 +0.236564 +0.698405 +0.952882 +0.740623 +0.606423 +0.499512 +0.462929 +0.834640 +0.868357 +0.847053 +0.506280 +0.954069 +0.911271 +0.984171 +0.785473 +0.132356 +0.619078 +0.407705 +0.366157 +0.529711 +0.716463 +0.782632 +0.938692 +0.879161 +-0.044039 +-0.084968 +-2955595125.554564 +0.250081 +0.453147 +0.435442 +0.542420 +0.417919 +0.922481 +0.456145 +0.094646 +0.824954 +0.937487 +0.186370 +0.155465 +0.169254 +0.376989 +0.111825 +0.783395 +0.129583 +0.029445 +-0.017504 +0.460359 +0.919081 +0.839646 +0.562565 +0.356541 +0.941783 +0.791236 +0.859406 +0.946750 +0.269819 +0.795984 +0.087440 +0.138521 +0.250211 +0.241516 +0.295710 +0.406921 +0.598643 +0.977209 +0.698272 +0.300099 +0.170310 +0.997005 +0.147031 +0.566715 +-0.023340 +0.203659 +0.303861 +0.030001 +0.816625 +0.241404 +0.241404 +0.887984 +0.752702 +0.752275 +0.931911 +0.484448 +0.505072 +0.610945 +0.627999 +0.929041 +0.614925 +0.137413 +0.208299 +0.572316 +0.826266 +0.611097 +0.573789 +0.869170 +0.568221 +0.654236 +0.859536 +0.355487 +0.658446 +0.368053 +0.645735 +0.329127 +0.672148 +0.668896 +0.374980 +0.384644 +0.730169 +0.838923 +0.856942 +0.523438 +0.478642 +0.942325 +0.756797 +0.904794 +0.317387 +0.355510 +0.690899 +0.833061 +0.773470 +0.355499 +0.466749 +0.324994 +0.720647 +0.836213 +0.746916 +0.931035 +0.906345 +0.919035 +0.908829 +0.862166 +0.683421 +0.719259 +0.925925 +0.675501 +0.931334 +0.923441 +0.924992 +0.751024 +0.848074 +0.861993 +0.774921 +0.812240 +0.872757 +0.210736 +0.899015 +0.511542 +0.297212 +0.674552 +0.651018 +0.326191 +0.889611 +0.831540 +-0.257755 +0.543217 +-11.539317 +-0.143116 +0.957267 +0.362827 +0.954778 +0.959048 +0.308454 +0.869097 +0.511269 +0.953942 +0.681763 +0.188867 +0.293151 +0.314608 +0.181928 +0.597610 +0.703613 +-0.039175 +0.567936 +0.670001 +0.337986 +0.652327 +0.547934 +0.618496 +0.368919 +0.805493 +0.534537 +0.484619 +0.707742 +0.701054 +0.496543 +0.824513 +0.464550 +0.967165 +0.607741 +0.472855 +0.028475 +0.700813 +0.562355 +-2.955694 +0.788432 +0.433171 +0.994579 +0.932834 +0.689766 +0.505687 +0.342089 +0.824442 +0.530207 +0.555282 +0.548248 +0.957004 +0.540582 +0.355869 +0.550538 +0.439484 +0.929829 +0.698315 +0.591880 +0.883199 +0.196373 +-0.010816 +0.936599 +-1.159347 +0.978461 +0.926913 +0.762068 +0.523315 +0.924789 +0.490835 +0.281548 +0.703838 +0.191588 +0.411670 +0.697528 +0.751727 +0.992717 +0.821161 +0.839805 +-1.160109 +0.511417 +0.634523 +0.645080 +0.707086 +0.887170 +0.265816 +0.488241 +0.584353 +0.422385 +0.646149 +0.874510 +0.905660 +0.310413 +0.068214 +0.477368 +0.177347 +0.105936 +0.928273 +0.396220 +0.605181 +0.365750 +0.060800 +0.031437 +-0.039338 +0.343466 +0.883821 +0.916234 +0.281803 +0.874283 +0.413522 +0.903365 +0.514370 +0.876043 +0.897860 +0.786497 +0.681793 +0.786782 +0.417934 +0.233782 +0.555566 +0.444166 +-0.283777 +0.951210 +0.717631 +0.859954 +0.271202 +-0.127380 +0.843834 +0.763867 +0.886563 +0.974959 +-0.154451 +0.871676 +0.992131 +0.935275 +0.768889 +0.873700 +0.396848 +0.840745 +0.536598 +0.730824 +0.915052 +0.483685 +0.615044 +0.117559 +-0.222206 +0.425907 +0.902325 +0.794385 +0.722777 +0.467176 +0.769694 +0.250107 +0.820731 +0.941646 +0.951154 +0.489260 +0.582498 +0.327206 +0.411622 +0.919573 +0.275992 +0.929579 +0.402668 +0.611376 +0.763875 +0.373094 +0.913506 +0.567709 +0.138398 +0.934624 +0.344389 +0.338798 +0.784987 +0.673028 +0.633951 +0.810675 +0.946068 +0.305711 +0.543710 +0.941917 +0.113082 +0.148231 +0.287806 +0.898292 +0.085336 +0.052445 +0.292991 +0.567472 +0.470097 +0.355938 +0.417795 +0.182986 +0.139750 +0.435636 +0.907593 +0.386647 +0.180943 +0.443970 +0.998971 +0.992975 +0.997798 +0.953180 +0.018560 +0.773517 +0.625395 +0.731707 +-4.908639 +0.064734 +0.784578 +0.859979 +0.933603 +0.578932 +0.672335 +0.462889 +0.728485 +0.347065 +0.491741 +0.547571 +0.266345 +0.112290 +0.933185 +0.622397 +0.359951 +-0.005298 +0.833559 +0.562034 +0.048762 +0.245973 +0.121606 +0.520033 +0.521912 +0.986940 +0.667708 +0.120594 +0.466816 +0.991248 +-2.258869 +0.794645 +0.188275 +0.176892 +0.315856 +0.260726 +0.829961 +-3.538689 +0.589984 +0.511103 +0.150963 +0.400796 +0.339722 +0.358845 +0.179780 +0.671401 +0.493632 +-2.048184 +-3.223540 +-0.772040 +0.466291 +0.589066 +0.036621 +0.258628 +0.853710 +-0.135029 +0.957760 +0.706887 +-11.549514 +0.958920 +0.938886 +0.018857 +0.734963 +0.495698 +0.791612 +0.365012 +0.856877 +-0.234823 +0.867351 +0.970406 +0.401879 +0.074272 +0.022635 +0.501573 +-1986.702077 +0.552716 +0.971857 +0.706597 +0.961391 +0.738563 +0.604242 +0.592082 +0.787536 +0.752923 +0.242308 +0.652464 +0.538187 +0.983010 +0.495128 +0.247184 +0.028025 +0.711266 +0.800344 +0.766973 +0.842241 +0.019563 +-0.008038 +0.100206 +0.402596 +0.042164 +0.896316 +0.971758 +0.314643 +0.424505 +0.297242 +-0.620229 +0.265349 +0.589497 +-0.167163 +0.098156 +0.355313 +0.180129 +0.436269 +0.274036 +0.331006 +0.844426 +0.441036 +0.872011 +0.261808 +0.864147 +0.715902 +0.380851 +0.200585 +0.404198 +0.324857 +0.203191 +0.980896 +0.908550 +0.257573 +0.208744 +0.642966 +0.256868 +0.601540 +0.798653 +0.668448 +0.773901 +0.605957 +0.716955 +0.178124 +0.660701 +0.259297 +0.367084 +0.864798 +-0.422885 +0.964966 +0.767247 +0.805069 +0.860812 +0.822081 +0.867510 +0.932867 +0.888477 +0.636695 +0.880615 +0.514847 +0.341384 +-0.315356 +0.943415 +0.980972 +0.980464 +0.932695 +0.798184 +0.783771 +-3.294950 +0.146110 +0.017462 +0.835695 +0.176233 +0.059650 +0.432675 +0.921088 +0.436085 +-0.166821 +0.454950 +0.214325 +-0.007622 +0.071416 +0.382395 +0.778674 +-0.020251 +0.359219 +-0.025057 +0.262235 +-71221878.076084 +0.579591 +0.991307 +0.678849 +0.894139 +-0.223045 +0.970458 +0.220739 +0.780421 +0.946859 +0.850160 +0.727205 +0.775709 +0.759926 +0.793870 +0.492885 +0.706223 +0.944538 +0.248838 +0.824257 +0.983544 +0.971960 +0.831018 +0.644543 +0.619571 +0.531904 +0.374398 +0.923999 +0.839072 +0.300951 +0.107478 +0.440606 +0.824086 +0.609639 +0.387718 +0.753886 +0.431452 +0.083618 +0.463487 +0.748985 +0.894144 +-0.662855 +0.862885 +0.615715 +0.572855 +0.274122 +0.933540 +0.464359 +0.804297 +0.800748 +0.932867 +0.573973 +0.683998 +-0.293459 +0.641609 +0.286343 +0.083832 +0.785209 +0.000112 +0.661567 +0.554357 +0.332099 +0.801812 +0.707595 +0.440773 +0.925570 +0.445100 +0.915112 +0.881379 +0.810256 +0.421069 +0.762068 +-0.522277 +0.336577 +0.490590 +0.826506 +0.923836 +0.731840 +0.724930 +0.981018 +0.918708 +0.840515 +0.837581 +0.679775 +0.973082 +0.717550 +0.920815 +0.642955 +0.789536 +0.767646 +0.636099 +0.504187 +0.931739 +0.938985 +0.849478 +0.495342 +0.971635 +0.762782 +0.680772 +0.713973 +0.722051 +0.929697 +0.753921 +0.849498 +0.858738 +0.830345 +0.971582 +0.643741 +0.128232 +0.229846 +0.992242 +0.994961 +0.853246 +0.810338 +0.926909 +0.933228 +-0.011947 +0.881176 +0.940517 +0.948308 +0.884833 +0.910117 +0.444918 +0.848166 +0.495197 +0.004567 +0.870395 +0.850244 +0.911299 +0.796354 +0.293162 +0.655035 +0.185882 +0.849752 +0.825916 +0.879606 +0.632445 +0.707424 +0.406516 +0.880806 +0.698447 +0.536366 +0.931994 +0.914523 +0.857911 +0.367307 +0.689102 +0.884707 +0.832110 +0.944776 +0.929883 +0.490452 +0.945287 +0.695327 +0.959460 +0.521384 +0.450879 +0.677764 +0.933025 +0.266429 +0.845488 +0.804905 +0.813714 +0.831841 +0.832851 +0.924757 +0.815241 +0.882478 +0.436664 +0.823828 +0.938478 +0.827444 +0.954504 +0.937750 +0.827187 +0.643912 +0.539827 +0.472810 +0.932339 +0.643722 +0.674449 +0.734054 +0.944198 +0.716683 +0.411839 +0.643136 +0.927132 +-0.588934 +0.869980 +0.917994 +0.180577 +0.230895 +0.954701 +0.439738 +0.931554 +0.699025 +0.900541 +0.931094 +0.609717 +-0.172546 +0.830440 +0.597123 +0.950511 +0.764879 +0.781948 +0.928851 +0.668028 +0.876349 +0.291213 +0.901429 +0.931723 +0.533098 +0.339952 +0.577927 +0.196137 +0.434697 +0.822896 +0.854966 +0.721694 +0.524291 +0.918676 +0.310255 +0.964956 +0.977800 +0.312123 +0.486671 +0.670721 +0.579271 +0.887968 +0.456908 +0.024492 +0.713265 +0.629920 +0.720492 +0.409643 +0.731994 +0.536895 +0.871560 +0.894315 +0.851783 +0.406960 +0.722356 +0.808114 +-0.308069 +0.432984 +0.737438 +0.837916 +0.989028 +0.863410 +0.990617 +0.203774 +0.922112 +0.677083 +0.931673 +0.500351 +0.273217 +0.870306 +0.630501 +0.683468 +0.756554 +0.693443 +0.549929 +0.992813 +0.845198 +0.408662 +-0.146680 +0.903891 +0.888908 +0.577900 +0.396080 +0.841522 +0.710072 +0.524672 +0.554096 +0.771006 +0.712385 +0.922098 +-0.040836 +0.506214 +-0.232252 +-0.070735 +0.819356 +0.637073 +0.800589 +0.993928 +0.838198 +0.828947 +0.973185 +0.459060 +0.030329 +0.445861 +0.574453 +0.329091 +0.342553 +0.367161 +0.822072 +0.577300 +0.205046 +0.602557 +0.980271 +0.971537 +0.308190 +0.482397 +0.081460 +0.290937 +0.376509 +0.841503 +0.984459 +0.181331 +0.550782 +0.161054 +0.940674 +0.161908 +0.747757 +0.340853 +0.784761 +-5.354985 +0.787131 +0.031778 +0.966893 +0.040860 +0.404111 +0.260169 +0.262955 +0.997706 +0.128231 +0.923033 +0.962210 +0.598077 +0.371335 +0.912476 +0.891649 +0.300396 +0.065983 +-0.378906 +-0.098167 +0.202093 +0.782768 +0.639184 +0.302722 +0.247326 +0.394434 +0.282473 +0.760898 +0.664405 +0.821779 +0.971784 +-0.054465 +0.837408 +0.540329 +0.845854 +-0.172870 +0.748686 +0.105207 +-0.088950 +0.707334 +-0.239601 +0.453518 +0.209139 +0.428285 +0.335338 +0.913424 +0.545388 +0.774014 +0.380372 +0.605389 +-0.091531 +0.733406 +0.813550 +0.400947 +0.780965 +0.316982 +0.609431 +0.366869 +-0.114923 +0.387758 +0.932488 +0.935935 +0.337652 +0.810886 +0.604686 +0.639401 +0.596567 +0.199980 +-0.160474 +0.231545 +0.521358 +-0.028952 +-0.019221 +0.225170 +0.316085 +0.712053 +0.532609 +0.188657 +0.910190 +0.035085 +0.337827 +0.238096 +0.728273 +0.857795 +0.009648 +0.258925 +0.751521 +-0.639116 +0.585561 +0.359370 +0.513106 +0.567918 +0.340647 +0.699939 +0.731736 +0.998809 +0.154796 +-0.235931 +0.315445 +0.463550 +0.763058 +0.229595 +0.118465 +0.116773 +0.016572 +0.681920 +0.103012 +0.611587 +0.247034 +0.680916 +0.421395 +0.971775 +0.030597 +0.995596 +0.988798 +0.135743 +0.051313 +-0.712398 +0.335425 +0.995150 +-0.227034 +0.256586 +0.697099 +0.146769 +0.930884 +0.695406 +-2.281504 +0.159749 +0.527468 +0.955841 +0.979318 +0.993540 +0.111767 +0.982580 +-0.201359 +0.756602 +0.475517 +0.883650 +0.135185 +0.816871 +0.085810 +0.390875 +0.789506 +0.928183 +0.348851 +0.309282 +0.589897 +0.893886 +0.287837 +0.649613 +0.083057 +0.019427 +0.150789 +0.315661 +0.388378 +0.307972 +0.338076 +0.363579 +-0.048616 +0.864878 +0.950332 +0.565267 +0.316479 +0.651162 +0.270895 +0.319594 +0.046955 +0.958094 +0.928346 +0.875014 +0.633487 +0.720265 +0.338530 +0.954809 +-0.109069 +0.654090 +0.877542 +0.817437 +0.308272 +0.848960 +0.898520 +0.890741 +0.948282 +0.727245 +0.934335 +0.007949 +0.826640 +0.972177 +0.812787 +-0.019654 +0.912884 +0.857585 +0.375166 +0.825709 +0.368756 +0.873132 +0.917417 +0.359269 +0.581909 +0.581674 +0.742931 +0.853602 +0.821051 +0.933267 +0.845185 +0.832400 +0.804228 +0.877636 +0.930770 +0.868327 +0.723729 +0.826064 +0.489883 +0.882592 +0.943114 +0.904399 +-1.035319 +0.709765 +0.961955 +0.144095 +0.940223 +0.935126 +0.821671 +0.844992 +0.929196 +0.756321 +0.925357 +0.769971 +0.523080 +0.260768 +0.704858 +0.436472 +0.852396 +0.726318 +0.860012 +0.936347 +0.669579 +0.847202 +0.711360 +0.476154 +0.934819 +0.550302 +0.597004 +0.940180 +0.562115 +0.272130 +0.655261 +0.080995 +0.381818 +-0.121037 +0.453695 +0.436311 +0.864511 +0.803193 +0.581857 +0.928794 +0.503743 +0.645724 +0.471652 +0.166084 +0.709731 +0.441419 +0.461254 +0.937086 +0.507059 +0.779534 +0.738255 +0.765200 +0.332592 +0.489827 +0.279402 +0.273510 +0.866054 +0.767575 +0.545659 +0.947001 +0.622254 +0.708767 +0.754074 +0.817790 +0.352193 +0.918542 +0.373345 +0.942937 +0.202693 +0.599104 +0.838873 +0.661350 +0.929402 +0.689999 +0.597093 +-0.030911 +0.122860 +0.592839 +0.665709 +0.661321 +-0.182250 +0.214739 +0.597199 +0.619198 +0.744571 +0.403726 +0.630092 +0.531362 +0.372363 +0.581473 +0.763221 +0.346463 +0.791392 +0.226921 +0.185201 +0.732564 +0.119724 +0.683181 +0.810788 +0.736899 +0.201566 +0.969352 +0.554144 +0.741212 +0.989901 +0.491330 +0.205633 +0.374864 +0.423050 +0.486877 +0.597052 +0.180858 +0.971759 +0.175860 +0.117296 +0.609417 +-1.979199 +0.237572 +0.484953 +0.124823 +0.632436 +0.770946 +0.068282 +0.422387 +0.579580 +0.265433 +0.055785 +0.810858 +0.221984 +0.773959 +-0.087243 +0.893380 +0.768671 +0.809844 +0.525334 +0.979281 +0.959670 +0.980741 +0.274566 +-4.897257 +0.524504 +0.446137 +0.055506 +0.867727 +0.802369 +0.761531 +0.470748 +0.427744 +0.808539 +0.738505 +0.726225 +0.687027 +0.399824 +0.380244 +0.548967 +0.515204 +-0.636215 +0.376720 +0.650434 +0.906875 +0.100614 +0.784255 +0.457207 +0.815828 +0.484447 +0.568032 +0.572376 +0.368329 +0.261021 +0.118236 +0.130209 +0.926264 +0.575811 +0.237616 +0.685824 +0.967336 +0.231094 +0.046352 +0.291816 +0.130280 +0.223931 +0.087180 +0.231986 +0.038367 +0.084730 +0.106708 +0.949045 +0.785435 +0.705531 +0.685226 +0.706936 +0.832446 +0.351191 +0.921532 +0.194081 +0.805421 +0.858570 +0.956934 +0.815843 +0.689184 +0.775302 +0.935660 +0.944470 +0.665372 +0.793740 +0.831845 +0.814945 +0.882584 +0.706486 +0.805078 +0.480260 +0.160283 +0.462779 +0.426783 +0.880191 +0.620109 +0.517376 +0.098099 +0.075110 +0.457709 +0.473202 +0.563652 +0.828291 +0.555484 +0.750944 +0.533947 +0.181818 +0.780078 +0.723328 +0.918494 +0.991554 +0.904430 +0.859387 +0.660546 +0.834504 +0.822761 +0.786197 +0.693545 +0.931534 +0.920072 +0.913187 +0.940167 +0.861095 +0.981449 +0.908450 +0.528916 +0.917920 +-0.242100 +0.712030 +0.236417 +0.714909 +0.920636 +0.734164 +0.911060 +0.928092 +0.798424 +0.918601 +0.918597 +0.921567 +0.833434 +0.871427 +0.991393 +0.875996 +0.822970 +0.848549 +0.777516 +0.699988 +0.926476 +0.539983 +0.935120 +0.934924 +0.673223 +0.866662 +0.913296 +0.413848 +0.248683 +0.741470 +0.979844 +0.921188 +0.458654 +0.675381 +0.680571 +0.627386 +0.816531 +0.935520 +0.935542 +0.881958 +0.777124 +0.725753 +0.587857 +0.846260 +0.504408 +-0.346469 +-0.314900 +0.747658 +0.250977 +0.695805 +0.896751 +0.473274 +0.622142 +0.292122 +0.590805 +0.210178 +0.801226 +-0.636234 +-0.287965 +0.688409 +0.946163 +0.456149 +0.750132 +0.808790 +0.603217 +0.616254 +0.709423 +0.889434 +0.509201 +0.218879 +0.070310 +0.838436 +0.514846 +0.818448 +0.568037 +0.911407 +0.516048 +0.584895 +0.001852 +0.073934 +0.525054 +0.268152 +0.784837 +0.736514 +0.871011 +0.890703 +0.526667 +-0.618335 +0.704149 +0.597564 +0.516572 +-1.883140 +0.628298 +0.404125 +0.031608 +0.467979 +0.626572 +0.075324 +0.533183 +0.815430 +0.598224 +0.580610 +0.969342 +-0.688363 +0.229005 +0.854863 +0.140652 +0.715242 +0.500275 +0.281776 +0.639257 +0.068048 +0.539419 +0.609630 +0.694618 +-0.006665 +-0.025594 +0.393604 +0.691033 +0.405835 +0.563884 +0.327295 +0.942097 +0.434485 +0.516985 +0.026831 +0.604690 +0.664596 +0.332353 +0.647719 +0.450550 +0.008116 +0.943008 +-0.346296 +0.651708 +-0.103111 +0.869428 +0.422339 +0.742310 +0.396482 +0.138658 +0.405908 +0.636241 +0.172485 +0.740336 +0.725583 +-0.109279 +0.809809 +0.765598 +0.817487 +0.669283 +0.466054 +0.745726 +0.848958 +0.338410 +0.398187 +-15.950710 +0.944475 +0.926039 +0.587817 +0.233727 +0.246868 +0.816228 +0.692899 +0.634619 +0.110288 +0.898139 +0.403774 +0.327268 +0.557664 +0.620822 +0.317959 +0.603575 +0.264897 +0.618409 +0.590408 +0.174478 +0.884291 +0.938535 +0.964826 +0.944488 +0.888475 +0.711445 +0.949391 +0.436623 +0.653860 +0.712153 +0.306763 +0.963271 +0.237674 +0.948520 +0.935857 +0.879449 +0.961749 +-0.111473 +0.373207 +0.571338 +0.190250 +0.997701 +0.726833 +0.822857 +0.013618 +0.589983 +0.660390 +0.792546 +0.336509 +-0.043270 +0.736581 +0.384133 +0.654626 +0.658273 +0.905942 +-16.070639 +0.115387 +-0.143312 +0.997145 +0.987690 +0.929360 +0.912243 +0.758108 +0.941431 +0.885100 +0.783679 +0.734725 +0.531679 +0.862530 +0.924924 +0.695870 +0.728414 +0.300618 +0.049869 +0.746900 +-0.094779 +0.022504 +0.503729 +0.286220 +0.267586 +-0.383971 +0.557908 +0.148196 +0.640282 +0.761023 +0.525369 +0.875104 +0.402017 +0.477745 +0.780950 +0.874801 +0.727796 +0.882380 +0.831681 +0.699077 +0.537314 +0.768909 +0.093711 +0.805980 +0.939189 +-0.042478 +0.289944 +0.210141 +0.549081 +0.406174 +0.994171 +0.687973 +0.605835 +0.732657 +0.906073 +0.781538 +0.389680 +0.571160 +0.306930 +0.273206 +0.892147 +0.451595 +0.126192 +0.791383 +0.745700 +0.765747 +0.343015 +0.562310 +-0.151802 +0.784340 +0.255859 +0.576724 +0.366643 +0.915815 +0.320791 +0.924597 +0.329306 +0.752929 +0.919170 +0.108814 +0.940745 +0.798794 +0.282524 +-0.130202 +0.349752 +0.929565 +0.698691 +0.765278 +0.774215 +0.209332 +0.926312 +0.995383 +0.684461 +0.244328 +0.899359 +0.738815 +0.811902 +0.747209 +0.577585 +0.978990 +0.492485 +0.402672 +0.740018 +0.912819 +0.962974 +0.684792 +0.671988 +0.767925 +0.887433 +0.097718 +0.799514 +-0.119550 +0.741893 +0.739812 +0.829465 +0.758585 +0.554398 +0.902852 +0.946903 +0.914973 +0.564134 +0.995965 +0.956135 +0.815083 +0.928254 +0.768560 +0.810325 +0.587401 +0.854762 +0.479135 +0.908183 +-0.092606 +0.141954 +0.631538 +0.637865 +0.395626 +0.940193 +0.529726 +0.892546 +0.520068 +0.943462 +-1.872112 +0.710595 +0.861536 +0.730431 +0.976698 +0.952786 +0.894258 +0.778862 +0.968201 +0.342200 +0.877674 +0.825214 +0.937082 +0.732711 +0.420969 +0.845615 +0.479049 +0.254923 +0.946721 +0.976914 +0.902560 +0.138408 +-0.002684 +0.861519 +0.993885 +0.638570 +0.741501 +0.665642 +-0.623140 +0.622535 +0.607367 +-0.010604 +0.389213 +0.934203 +0.595846 +0.238492 +0.778095 +0.880821 +-0.027364 +0.702934 +0.778074 +0.715293 +0.352271 +0.703920 +0.794214 +0.956743 +0.790826 +0.471467 +0.424908 +0.209963 +0.475241 +0.931351 +0.932284 +0.800972 +0.483956 +0.750385 +0.808728 +0.780956 +0.933489 +0.858541 +0.866775 +0.908427 +0.568790 +0.391589 +0.869850 +0.355067 +0.786965 +0.162676 +0.593857 +0.679806 +0.725598 +0.759691 +0.801939 +0.645690 +0.374332 +0.732255 +0.646384 +0.433535 +0.571753 +0.362996 +0.304959 +0.703815 +-0.205295 +0.615394 +-0.105840 +0.585685 +0.332789 +0.441911 +0.549160 +0.549859 +0.493602 +0.496924 +0.702977 +0.709724 +0.445427 +0.799015 +0.333332 +0.361803 +0.581047 +0.197104 +0.476620 +0.183417 +0.793172 +0.782577 +0.665046 +0.630496 +0.854148 +0.845057 +0.909197 +0.605554 +0.395388 +0.894861 +0.666217 +0.651972 +0.841916 +0.416781 +0.527508 +0.717529 +0.738767 +0.895130 +0.858828 +-1.178241 +-0.558098 +0.551210 +0.718000 +0.856704 +0.834865 +0.141898 +-0.190187 +0.312183 +0.929602 +0.917932 +0.455587 +0.414622 +-0.207506 +0.278292 +0.874872 +0.635254 +-0.240125 +0.240268 +0.817449 +0.851685 +0.539593 +0.792957 +-0.409980 +0.766335 +0.820014 +0.749672 +0.858201 +0.889965 +0.251029 +0.748792 +0.641760 +0.501909 +0.752621 +0.745626 +0.816399 +0.284404 +0.523305 +0.451421 +0.752540 +0.675265 +0.502468 +0.555517 +0.674483 +0.811831 +0.289672 +0.591924 +0.566405 +0.520651 +0.174946 +0.805535 +0.381296 +0.406172 +0.852765 +0.649012 +0.786418 +0.963691 +0.346735 +0.780249 +0.930806 +0.424915 +0.846514 +0.346988 +0.769715 +0.524255 +0.648187 +0.767546 +0.103807 +-0.499469 +0.926548 +0.763333 +0.888862 +0.664670 +0.766174 +-0.103465 +0.892340 +0.620003 +0.968248 +0.129297 +0.747576 +0.726559 +0.276002 +0.634184 +0.909615 +0.796895 +0.853008 +0.722727 +0.522861 +0.878640 +-0.372794 +0.486225 +0.564738 +0.458253 +0.836819 +0.925066 +0.859856 +0.429869 +0.853081 +0.543750 +0.759340 +0.683230 +0.717170 +0.993096 +0.726182 +0.719109 +0.434079 +0.578673 +0.034508 +0.144472 +0.347803 +0.370280 +0.025934 +-0.610631 +0.414370 +0.648466 +0.777277 +0.472788 +0.045233 +0.122929 +0.159584 +0.577294 +0.389150 +0.190714 +0.070617 +0.436114 +0.456592 +0.946893 +0.704152 +0.828939 +0.984187 +-0.331650 +0.770623 +0.653272 +0.879415 +0.681983 +0.838130 +0.293507 +0.998745 +0.567615 +0.843656 +-0.238345 +0.860305 +0.543389 +0.245029 +0.559537 +0.815628 +0.890605 +0.906755 +0.285217 +0.559520 +0.411093 +0.477914 +-0.144398 +0.204022 +0.600903 +0.530020 +0.857834 +0.311368 +0.871902 +-0.166139 +0.113082 +0.327631 +0.038695 +0.023997 +0.057870 +0.472385 +0.114258 +0.871371 +0.602054 +0.726442 +0.136227 +0.176082 +0.514318 +0.583656 +0.977639 +0.229660 +0.856131 +0.555430 +0.868755 +0.151701 +0.371294 +0.284625 +0.409251 +0.007626 +0.713040 +0.702721 +0.864447 +-0.009447 +0.350316 +0.910581 +0.696299 +0.482178 +0.452909 +-0.009640 +0.962465 +0.069402 +0.092924 +0.597736 +0.726713 +0.968736 +0.841385 +0.156507 +0.345390 +-0.923517 +0.630945 +0.184688 +0.995345 +0.152495 +0.235894 +0.867791 +0.984910 +0.025259 +0.439646 +0.281314 +0.667279 +0.847648 +0.712613 +0.754460 +0.314029 +0.050367 +0.088363 +0.019949 +0.750881 +0.015526 +0.230626 +0.115468 +0.182525 +0.480538 +0.352530 +0.201559 +0.106631 +0.174152 +0.812019 +0.966076 +0.165214 +0.828523 +-0.045393 +-0.133316 +0.042104 +-2.998547 +0.075861 +0.605182 +0.586563 +0.554689 +0.483579 +0.920201 +0.365365 +0.148238 +0.834255 +0.720735 +0.909470 +0.714120 +0.791767 +0.598563 +0.565124 +0.739999 +0.768911 +0.837925 +0.760320 +0.911019 +0.693897 +0.468625 +0.926377 +0.824751 +0.810545 +0.398128 +0.776916 +0.494506 +0.271007 +0.689866 +0.843719 +0.978980 +0.648987 +0.017154 +0.582491 +0.841379 +-0.802221 +0.683363 +-0.282265 +0.028566 +-0.045561 +0.332678 +0.532965 +0.654766 +0.702720 +0.699984 +0.203974 +0.298726 +0.780265 +0.816969 +0.494298 +0.104162 +0.062261 +0.464327 +0.830260 +0.244890 +0.830575 +0.859883 +0.264829 +0.397716 +0.373108 +0.906216 +0.909402 +0.187198 +0.929742 +0.939782 +0.580505 +0.429834 +0.412159 +0.814827 +0.821305 +-11.701892 +0.412053 +0.704129 +0.747393 +0.761326 +0.929455 +0.911960 +0.384573 +0.807207 +0.937077 +0.745265 +0.767324 +0.412568 +-0.593958 +0.226853 +0.738921 +0.790971 +0.596742 +0.826058 +0.961620 +0.344222 +0.590577 +0.888078 +0.733450 +0.547335 +0.843921 +-0.544966 +0.744114 +-0.788968 +0.694843 +-0.124326 +0.293557 +0.826236 +0.745738 +0.324413 +0.859009 +0.519853 +0.491460 +0.075350 +0.800742 +-0.177342 +0.844200 +0.133181 +0.269360 +0.518042 +-0.051360 +0.449932 +0.957002 +-0.045109 +0.535132 +0.306303 +0.222034 +-0.112496 +0.196967 +0.547987 +-0.030893 +0.894257 +0.300987 +0.737671 +0.502892 +0.166581 +0.813141 +0.678253 +0.396731 +-0.303358 +0.037850 +0.477208 +0.762424 +0.806965 +0.285273 +0.935646 +-0.141730 +0.645241 +0.641791 +-0.271354 +0.083670 +0.779660 +0.712424 +0.667216 +0.609287 +-0.079429 +0.510883 +0.227537 +0.437034 +0.017835 +0.673515 +0.607989 +0.196811 +0.074932 +-0.113503 +0.908488 +0.779928 +0.348459 +0.745882 +0.564249 +0.997762 +0.578273 +0.538842 +0.841318 +0.806367 +0.984027 +0.876815 +0.463846 +0.691135 +0.302237 +0.973464 +0.681837 +0.996845 +0.910056 +0.874992 +0.931338 +0.111402 +0.940942 +0.888727 +0.988184 +0.894547 +0.523365 +0.814998 +0.014804 +0.999404 +0.883821 +0.869108 +0.883523 +0.932992 +0.921788 +0.814959 +0.935279 +-0.103222 +0.292464 +0.896078 +0.605365 +0.923270 +-0.202829 +0.885397 +0.737903 +0.994558 +-0.274660 +0.867379 +0.534289 +0.529303 +0.857106 +0.465626 +0.933171 +-4404.239249 +0.702685 +0.992511 +0.953468 +0.936268 +0.969145 +0.963602 +0.897052 +0.462432 +0.744196 +0.740237 +0.938372 +0.326077 +0.749403 +0.392478 +0.837960 +0.711384 +0.677814 +-1.213210 +0.842821 +0.751290 +0.638893 +0.674562 +0.826882 +0.574407 +0.756248 +0.540732 +0.617029 +0.778906 +0.910950 +0.636694 +-0.475182 +0.473978 +0.880866 +0.541809 +0.313634 +0.224626 +0.253076 +0.764705 +0.755991 +0.410600 +0.274961 +0.389180 +0.732596 +0.284777 +0.783750 +0.894498 +0.834296 +0.195296 +0.949049 +0.873539 +0.804286 +0.817086 +0.919183 +-44.813901 +0.175343 +0.485513 +-33.509909 +0.037268 +0.872580 +0.698311 +0.419785 +0.551505 +0.599330 +0.939469 +0.501648 +0.973233 +0.186351 +0.149512 +0.658841 +0.569222 +-0.470772 +0.121096 +-0.248263 +0.681561 +0.636131 +0.871010 +0.773315 +0.508985 +0.807739 +0.790267 +0.752212 +0.716705 +0.065074 +-0.723348 +0.610797 +0.175863 +0.703273 +0.894933 +0.776034 +0.687306 +0.934773 +0.955564 +0.750544 +0.662414 +0.246085 +0.946975 +0.227100 +0.944065 +0.923495 +0.297649 +0.553471 +0.443993 +0.507288 +0.238551 +0.894210 +0.434177 +0.116586 +0.418963 +0.564747 +0.529893 +0.649716 +0.328764 +0.555524 +0.731493 +0.128878 +0.754478 +0.299559 +0.864215 +0.874411 +0.775986 +0.818620 +0.605780 +0.839987 +0.510461 +0.872907 +0.660923 +-0.005045 +-0.196843 +0.828410 +-0.380033 +-0.178257 +0.704798 +-0.032145 +0.841262 +0.781192 +0.916274 +0.193236 +0.881278 +0.316174 +0.290121 +0.358987 +0.960079 +0.952035 +0.832504 +0.908190 +0.822345 +-0.037651 +0.660440 +0.585274 +0.451065 +0.946828 +0.771317 +0.618887 +0.923727 +0.820692 +0.745936 +0.165354 +0.522755 +0.964820 +0.439895 +0.744189 +0.462178 +0.945925 +0.946388 +0.447119 +0.797762 +0.278873 +0.632621 +0.990396 +0.604113 +0.873170 +0.610850 +0.922587 +0.894050 +0.812685 +0.518368 +0.874656 +0.694361 +0.718677 +0.693069 +0.593270 +0.922403 +0.687547 +0.846749 +0.368573 +0.152163 +0.886818 +0.467846 +0.895524 +0.508269 +0.960914 +0.973074 +0.304340 +0.867251 +0.731248 +0.634777 +0.363396 +0.722517 +0.391296 +0.526412 +0.592705 +0.933566 +0.089955 +0.440204 +0.536929 +0.905671 +0.941404 +0.860027 +0.806941 +0.526354 +0.922093 +0.763447 +0.886717 +0.556779 +0.286240 +0.774326 +0.454676 +0.910449 +0.357633 +0.437832 +0.291589 +0.037998 +0.810758 +0.686298 +0.783275 +0.844800 +0.911986 +0.875681 +0.619837 +-0.172264 +0.934587 +0.386423 +0.922825 +0.926265 +0.932739 +0.788318 +0.980649 +0.836094 +0.394917 +0.956288 +0.707355 +0.932858 +0.294136 +0.454867 +0.809370 +-0.052319 +0.970668 +0.977054 +0.994066 +0.858613 +0.866590 +-0.402071 +0.968832 +0.620511 +0.428649 +0.982664 +0.710812 +0.990484 +0.765974 +0.863251 +0.766228 +0.868094 +0.925546 +0.918073 +-0.091936 +0.867190 +0.958998 +0.804284 +0.514411 +0.849451 +0.984268 +0.750922 +0.970431 +0.717301 +0.741929 +0.710603 +0.892559 +0.510991 +0.243422 +0.567851 +0.700150 +0.537498 +0.899655 +0.830879 +0.657744 +0.806081 +0.718032 +0.890985 +0.643181 +0.553262 +0.436717 +0.558373 +0.384378 +0.787336 +0.726654 +0.633200 +0.863761 +0.806153 +0.834604 +0.369802 +-0.609517 +0.072825 +0.943717 +0.040316 +0.647795 +0.753000 +0.465031 +0.456918 +0.743211 +0.723574 +0.484420 +0.436149 +0.443929 +0.081410 +0.714194 +0.003918 +0.084751 +0.832361 +0.723255 +0.625974 +0.440106 +0.927775 +-0.022375 +0.707746 +0.834952 +0.672381 +0.829799 +0.952504 +0.580388 +0.751878 +0.614421 +0.330251 +0.920446 +0.860069 +0.939123 +0.882958 +0.807392 +0.846170 +0.636698 +-0.246152 +0.836240 +0.956435 +0.357849 +0.878510 +0.691944 +0.843004 +0.948531 +0.973748 +0.944814 +0.837946 +0.583572 +0.864236 +0.978430 +0.407100 +-0.012968 +0.936053 +0.658882 +0.908016 +0.845158 +0.329233 +-0.048233 +-0.262391 +-0.821624 +0.827626 +0.595836 +0.653559 +0.966671 +0.662142 +0.603224 +0.834351 +0.691440 +-0.170612 +0.923447 +0.797575 +0.372654 +0.474985 +0.751424 +0.631046 +0.661667 +0.936190 +0.634836 +0.828948 +0.857399 +0.665511 +0.307565 +0.858582 +0.259490 +0.199834 +0.804305 +-0.091340 +-0.143012 +0.213200 +0.616239 +0.583009 +0.178112 +0.822837 +0.251085 +0.522514 +0.892742 +0.634541 +-0.100888 +0.783344 +0.976032 +-0.406423 +0.997348 +0.491359 +0.990452 +0.506716 +0.484322 +0.999911 +-0.205196 +0.638295 +0.935154 +0.854836 +0.286420 +0.570951 +0.900782 +0.991019 +0.642387 +0.587692 +0.426375 +0.910002 +0.464855 +0.460942 +0.536284 +0.880774 +-0.013329 +-0.630586 +-0.416598 +0.649648 +-0.307903 +0.633623 +0.578890 +0.984841 +-0.242811 +0.347030 +0.336348 +0.033153 +0.327346 +0.399919 +0.480792 +0.874497 +0.146575 +0.408631 +0.602743 +0.270092 +0.350729 +-0.035103 +0.191092 +0.568834 +0.338047 +0.540610 +0.642389 +0.327601 +0.545457 +0.426714 +0.550596 +0.658665 +0.475503 +0.156156 +0.397270 +0.028000 +0.268003 +0.123327 +0.058021 +0.466765 +0.453537 +-1.008833 +0.956880 +0.867102 +0.816826 +0.619746 +0.819858 +0.661970 +0.877289 +0.499620 +0.407571 +0.562127 +0.296627 +0.529583 +0.622931 +0.858569 +0.663059 +0.729291 +0.606564 +0.684760 +0.604211 +0.652215 +0.542178 +0.513059 +0.656475 +0.279049 +0.453058 +0.373972 +0.865656 +0.574052 +0.526483 +0.474515 +0.510618 +0.541639 +0.344712 +0.549597 +0.672313 +0.672313 +-0.124664 +0.925074 +0.916630 +0.919362 +0.930640 +0.919473 +0.560561 +0.789755 +0.709019 +0.576661 +0.938568 +0.528768 +0.778249 +0.738477 +0.471379 +0.560177 +0.517274 +0.391394 +0.472195 +0.224360 +0.479309 +0.474842 +0.551355 +0.458636 +0.611275 +0.765868 +0.535361 +0.524161 +0.528469 +0.901686 +0.584276 +0.554335 +0.594271 +0.301433 +0.338266 +0.333125 +0.280488 +0.776448 +0.869221 +0.719696 +0.625509 +0.847804 +0.887598 +0.756648 +0.346867 +0.873139 +0.866746 +0.969927 +0.631492 +0.902210 +0.720185 +0.967130 +0.543657 +0.254527 +0.297165 +0.238640 +0.528242 +0.892619 +0.627065 +0.476464 +0.754061 +0.772336 +0.429286 +0.721484 +0.988737 +0.816176 +0.807929 +0.712038 +-97.917338 +0.677808 +0.137200 +0.818195 +0.777724 +0.859499 +0.363801 +0.829667 +0.129511 +0.337270 +0.521912 +0.913435 +0.682999 +0.386861 +0.759177 +0.241989 +0.324694 +0.772444 +0.425287 +0.183842 +0.507437 +0.370808 +0.228918 +0.207864 +0.544306 +0.103699 +0.114011 +0.168046 +0.952790 +0.277934 +0.035615 +-0.125057 +0.897714 +0.113403 +0.925138 +0.816739 +0.695063 +0.219077 +-0.086600 +0.711138 +0.185460 +0.236851 +0.808856 +0.796793 +0.510385 +0.077855 +0.724083 +0.636875 +0.577371 +0.934145 +0.046853 +0.389200 +0.000883 +0.063546 +0.763572 +-0.036499 +0.231767 +0.707350 +0.783945 +0.540251 +0.998432 +0.403220 +0.770318 +0.980896 +0.731602 +0.623619 +0.895995 +0.695460 +0.877329 +0.456472 +-0.077108 +0.738022 +0.848931 +0.915467 +0.909128 +0.833059 +0.858976 +0.939151 +0.356426 +0.807157 +0.567985 +0.791628 +0.599498 +0.458549 +0.497687 +0.835442 +0.845285 +0.976712 +0.907799 +0.252725 +0.567329 +0.780176 +0.511110 +0.695196 +0.891939 +0.693571 +0.762326 +0.625736 +0.819560 +0.748975 +0.323516 +0.822325 +-0.115487 +0.376856 +0.969816 +0.603143 +0.887545 +0.994867 +0.590656 +0.610850 +0.880507 +0.583898 +-0.072219 +0.662610 +0.521811 +0.813621 +0.837413 +0.385015 +0.660292 +0.687057 +0.621242 +0.895361 +0.551612 +0.392391 +0.712793 +0.488347 +0.130587 +0.346619 +0.573707 +0.650530 +0.615820 +0.640987 +-0.257876 +0.633360 +0.907223 +0.420519 +0.453777 +0.885821 +0.666193 +0.210471 +0.576834 +0.577496 +0.089143 +0.350425 +0.605091 +0.954105 +0.945591 +-0.093974 +0.389755 +0.131669 +0.975407 +0.551090 +0.538941 +0.289243 +0.296615 +0.287983 +-0.023966 +0.128847 +0.293137 +-0.238817 +0.510342 +0.208294 +0.025087 +0.299869 +0.894918 +0.289825 +-0.118712 +0.840817 +0.983469 +0.304056 +-2.270500 +0.273171 +0.725654 +0.552844 +0.933767 +0.931157 +0.906788 +0.591838 +0.921671 +0.488606 +0.894037 +0.582463 +0.929319 +0.793718 +0.692465 +0.550117 +0.812225 +0.790626 +0.163710 +0.401018 +0.764722 +0.248462 +-0.357937 +0.569690 +0.741805 +-0.013275 +0.879426 +0.132239 +0.165058 +0.666405 +0.632697 +0.784788 +0.391639 +0.057919 +-0.101083 +0.590917 +0.414355 +0.570738 +0.665170 +-0.178256 +0.807080 +0.955002 +0.249221 +0.147424 +0.465333 +0.760277 +0.703185 +0.714891 +-0.281929 +-0.212485 +0.767203 +0.333264 +0.676941 +0.852454 +0.683602 +-0.269052 +0.579373 +0.145880 +0.657113 +0.232768 +0.351180 +0.751699 +0.822102 +0.869045 +0.834128 +0.822719 +0.811589 +0.963858 +0.832970 +0.568292 +0.424720 +0.833179 +0.863080 +0.840096 +0.963137 +0.684809 +0.706332 +0.422844 +0.600901 +0.436874 +0.819445 +0.500663 +0.931667 +0.832684 +0.722958 +0.818745 +0.734178 +0.056775 +0.576241 +0.600380 +0.462114 +0.605479 +0.673781 +0.851777 +0.615763 +0.813301 +0.901826 +0.750452 +0.318723 +0.423698 +0.873952 +-0.076147 +0.121532 +0.900532 +0.118654 +0.651846 +0.782495 +0.855004 +0.040011 +0.308197 +0.512707 +0.851512 +0.797074 +0.531450 +0.185410 +0.755913 +0.764895 +0.163929 +0.190049 +0.683449 +0.834505 +0.376759 +-0.155013 +0.880010 +0.932278 +0.819595 +0.883330 +0.651182 +0.389368 +0.839572 +0.489262 +0.786244 +0.534233 +0.604980 +0.594081 +0.826914 +0.816731 +0.696814 +0.405416 +0.846921 +0.747768 +0.837922 +0.468391 +0.785420 +0.533328 +0.538651 +0.769320 +0.561926 +0.492913 +0.468821 +0.927627 +0.831343 +0.656654 +0.805386 +0.878401 +0.658624 +0.731863 +0.729927 +0.935992 +0.895045 +0.583767 +0.855747 +0.317059 +0.441838 +0.929970 +0.502455 +0.764622 +0.564464 +0.844195 +0.982024 +0.579390 +0.733058 +0.904862 +0.836933 +0.937339 +0.866545 +0.881809 +0.384018 +0.148731 +0.533038 +0.705525 +0.319936 +0.334774 +0.931105 +0.908064 +0.005652 +0.490719 +0.823340 +0.914529 +0.976472 +0.786726 +0.919520 +0.226524 +0.961608 +0.781783 +0.319945 +0.356134 +-0.191244 +0.972253 +0.358578 +0.932605 +-0.266202 +-0.003430 +-15.246319 +0.105498 +0.776186 +0.218326 +0.726783 +0.638228 +-0.017421 +0.026442 +0.044600 +0.236247 +-0.074821 +0.036002 +0.671971 +-0.358750 +0.187477 +0.175822 +0.042559 +0.349845 +0.047066 +-0.254809 +-0.030636 +0.242306 +0.053006 +0.821214 +0.168274 +0.280805 +0.130669 +0.160110 +0.481809 +0.944282 +0.784662 +0.200579 +0.954783 +0.832167 +0.852406 +0.681539 +0.421037 +0.068197 +0.394650 +0.758678 +0.659116 +0.577924 +0.831893 +0.517907 +0.460898 +0.764946 +-0.227094 +0.300285 +0.434385 +0.524859 +0.931747 +0.776256 +0.651682 +-0.231640 +0.551333 +0.007269 +0.581177 +0.708817 +0.598756 +0.446823 +0.890866 +0.931708 +0.663005 +0.807071 +0.751607 +0.142168 +0.810331 +0.936903 +0.102521 +0.436502 +0.507475 +0.612823 +0.716129 +0.552354 +0.613816 +0.934366 +0.991861 +0.625100 +0.929148 +-0.186219 +0.163733 +0.294307 +0.560713 +0.268493 +0.520865 +0.629198 +0.572774 +0.653512 +0.698675 +0.841962 +0.599612 +0.793974 +0.552445 +0.841892 +0.816868 +0.349232 +-0.091993 +0.594985 +-0.320143 +0.426790 +0.682138 +0.260865 +0.244635 +0.731613 +0.916345 +0.655584 +0.411694 +0.461496 +0.881801 +0.468256 +0.780376 +0.384935 +0.495183 +0.539554 +0.424499 +0.885620 +0.274517 +-0.459701 +0.674438 +0.913574 +0.949944 +0.053021 +-0.222149 +0.599178 +-0.123864 +0.778146 +0.923066 +0.890527 +-0.055941 +0.943876 +0.500319 +0.545511 +-0.328821 +0.315167 +0.985678 +-0.014342 +0.909352 +0.634476 +0.878159 +0.316278 +0.685226 +0.811273 +0.621789 +0.845625 +0.830753 +0.456643 +0.538525 +0.845580 +0.845580 +0.712698 +0.554768 +0.730822 +-0.055505 +0.864749 +0.778774 +0.770982 +0.683646 +0.996014 +0.993322 +0.459748 +0.997258 +0.840033 +0.962962 +0.857828 +0.903082 +0.712466 +0.919189 +0.862594 +-0.264082 +0.825304 +0.880920 +0.446269 +0.978336 +0.998893 +0.732314 +0.936741 +0.836983 +0.771333 +0.439379 +0.819793 +0.883307 +0.924409 +0.821645 +0.853813 +-0.151425 +0.685871 +-0.016411 +0.546158 +0.690382 +0.529475 +0.628408 +0.700730 +0.679248 +0.848142 +0.706035 +0.091573 +0.992052 +0.005578 +-0.221351 +0.713811 +0.343357 +-0.247214 +0.004425 +0.169914 +0.280353 +0.783445 +0.799850 +-0.063214 +0.870579 +0.508991 +0.759576 +0.879820 +-0.303165 +0.419517 +0.871512 +0.633347 +-0.401351 +0.807079 +0.834455 +0.848090 +0.960143 +0.734144 +0.431375 +0.626367 +0.592809 +0.927052 +0.933551 +0.931222 +0.929571 +0.120333 +0.463941 +0.563383 +0.880129 +0.511154 +0.933354 +0.496360 +0.888058 +0.518875 +0.996487 +0.727533 +0.892247 +0.587614 +0.629481 +0.849009 +0.299895 +0.931942 +0.919669 +0.489353 +0.838250 +0.481476 +0.706836 +0.728465 +0.772827 +0.479238 +0.619686 +0.513478 +0.292753 +0.608603 +0.608035 +0.648176 +0.613005 +0.896613 +0.270395 +0.928215 +0.799554 +0.167998 +0.356149 +0.963803 +0.856262 +0.958811 +0.930758 +0.948759 +0.878542 +0.914370 +0.885783 +0.917895 +0.879849 +0.804164 +0.656260 +0.937298 +0.669777 +0.922391 +0.474544 +0.997737 +0.738568 +0.838433 +0.761484 +0.872073 +0.744096 +0.927827 +0.652477 +0.342136 +-0.298856 +-0.199870 +-0.783375 +0.499232 +0.749288 +0.839687 +0.207897 +0.506311 +0.389396 +0.237066 +0.933254 +0.973600 +0.363736 +0.468126 +0.781374 +0.352169 +0.707258 +0.854781 +0.686661 +0.744835 +0.213494 +0.501495 +-0.923263 +0.371747 +-7.799035 +0.472436 +0.981127 +0.401417 +0.735486 +0.845307 +0.489710 +0.547579 +0.679681 +0.839512 +0.849013 +0.698646 +0.425509 +0.592193 +0.699653 +0.934146 +0.483410 +0.495786 +0.541484 +0.630105 +0.488570 +0.636326 +0.230980 +0.815291 +0.674021 +0.026688 +0.986355 +0.668659 +0.480358 +0.520355 +-0.147547 +-0.149913 +0.622702 +0.609459 +0.361536 +0.828461 +0.590352 +0.901943 +0.933054 +0.802789 +0.648677 +0.775598 +-0.455002 +0.113147 +0.557384 +-0.055297 +-0.302371 +0.914050 +0.427425 +0.527073 +0.848951 +0.523427 +0.228716 +0.232150 +0.321506 +0.829461 +0.377527 +0.726785 +0.583531 +0.905436 +0.913697 +0.544133 +0.731711 +0.924434 +0.764918 +0.846080 +0.838940 +0.910287 +0.945202 +0.823060 +0.847418 +-0.498761 +0.935168 +0.941673 +0.098473 +0.898246 +0.924747 +0.623670 +0.439042 +0.168831 +0.352645 +0.371438 +0.995315 +-0.050976 +0.958058 +0.351399 +0.877082 +0.669819 +0.881388 +0.886491 +0.715530 +0.313270 +0.845902 +0.793010 +0.929031 +0.888860 +0.690389 +0.262685 +0.599468 +0.863780 +0.722143 +0.933151 +0.688609 +0.730389 +0.590377 +0.848090 +0.670742 +0.803221 +0.411690 +0.558661 +0.987494 +0.880139 +0.753045 +0.510826 +-269.130733 +0.280769 +-688.645448 +0.949234 +0.117406 +0.878575 +0.904683 +0.226933 +-0.006373 +0.770047 +0.843499 +0.649422 +0.807044 +0.582689 +0.727169 +0.843650 +0.819407 +0.250966 +0.554851 +0.694502 +0.824225 +-0.146760 +0.560754 +0.686622 +0.237263 +0.712594 +0.506013 +-0.205692 +0.204098 +0.485633 +0.492683 +0.535782 +0.377544 +0.847312 +0.755986 +0.074374 +0.701633 +0.750124 +-0.274475 +0.362084 +0.863937 +0.778657 +0.143342 +-0.014004 +0.921928 +0.756355 +0.932098 +0.756129 +0.854592 +0.054326 +0.120606 +0.778149 +0.532140 +0.600914 +-0.220894 +0.737612 +0.688318 +0.435376 +0.174189 +0.458397 +0.905900 +0.856285 +-0.689377 +0.529897 +-0.160730 +-0.154663 +0.588240 +0.755902 +-0.036847 +0.862853 +-0.047653 +0.776336 +0.599531 +0.857393 +0.699810 +0.744194 +0.172653 +0.758022 +0.845343 +0.270707 +0.708643 +0.676705 +0.605748 +0.815750 +-0.129756 +0.737885 +0.837107 +0.061707 +0.700453 +0.156872 +0.841326 +0.481388 +0.837591 +0.822374 +0.708247 +0.969410 +0.516855 +0.756975 +0.267279 +0.844092 +0.683930 +0.717420 +0.835859 +0.719173 +0.945619 +0.702588 +-0.259400 +0.847306 +0.859968 +0.919190 +0.925808 +0.677088 +0.259923 +0.849986 +0.559443 +0.356764 +0.599229 +0.645740 +0.173132 +0.770529 +0.557169 +0.377987 +0.896977 +0.304633 +0.992661 +0.417223 +0.831813 +0.565648 +0.826862 +0.744370 +0.800659 +0.824419 +0.438058 +0.527046 +0.827403 +0.533031 +0.928822 +0.480148 +0.863703 +0.710502 +0.835832 +0.878805 +0.796741 +0.124964 +0.137007 +0.937495 +0.634716 +0.324824 +0.234137 +0.889925 +0.371347 +0.643405 +0.661917 +0.387962 +0.644212 +0.718329 +0.837535 +0.821201 +0.260174 +0.377295 +0.860026 +0.699039 +0.178221 +0.933050 +0.625347 +0.330597 +0.720458 +0.309744 +0.791045 +0.727613 +0.313606 +0.620321 +0.933625 +0.543171 +0.938369 +0.578839 +0.833770 +0.838863 +0.634931 +0.288163 +-0.074799 +0.803059 +0.938824 +0.863012 +0.856181 +0.592093 +0.353706 +0.554773 +0.497109 +0.918423 +0.909644 +0.346748 +0.374506 +0.459453 +0.646925 +0.174995 +0.883526 +0.474945 +0.935325 +0.868819 +0.727733 +0.882020 +0.579754 +0.585402 +0.802261 +0.258842 +0.716284 +0.711053 +0.171214 +-0.715846 +0.478148 +0.803865 +0.535706 +0.164248 +0.643207 +0.879639 +0.519769 +0.907367 +0.865894 +0.941677 +0.442524 +0.837590 +-0.479262 +0.813177 +0.709821 +0.547982 +0.573484 +0.625039 +0.697949 +-0.242607 +0.895233 +0.354110 +0.590551 +0.722717 +0.428150 +0.396069 +0.999385 +0.808046 +0.761293 +0.466992 +0.461705 +-0.419068 +0.846607 +0.848224 +0.378506 +0.616940 +0.729879 +-0.263471 +-0.187256 +-0.128951 +0.843462 +0.487096 +0.509645 +0.614229 +0.542333 +0.615451 +0.734266 +0.066004 +0.560146 +0.558226 +-1.488478 +0.894207 +0.783637 +0.546654 +0.754497 +0.707936 +0.699389 +0.215905 +0.537132 +0.401189 +0.736829 +0.626752 +0.707652 +0.408731 +0.776813 +0.440358 +-0.206797 +0.449276 +0.345409 +0.457830 +0.798386 +0.447365 +0.414365 +0.685483 +0.416415 +0.917285 +0.788074 +0.769240 +0.488297 +0.623297 +0.780536 +0.491532 +0.299661 +0.869198 +0.559019 +0.681042 +0.800034 +0.503749 +0.746647 +0.623440 +-1.680320 +0.327862 +-1.579169 +0.959659 +0.489327 +0.996231 +0.474391 +0.737799 +0.720113 +-0.106153 +-0.507081 +0.565762 +-0.348661 +0.297052 +0.727812 +0.701877 +0.873068 +0.482563 +0.813274 +0.753655 +0.302606 +0.417066 +0.656893 +0.508137 +0.625150 +0.426425 +0.888305 +0.544329 +0.742146 +0.547272 +0.317526 +0.667879 +0.780776 +0.497348 +0.526688 +0.820244 +0.551182 +0.840744 +0.054110 +0.909653 +0.145523 +0.232980 +0.879662 +0.724095 +0.847685 +0.851487 +0.791872 +0.681439 +0.593218 +0.553018 +0.892078 +0.515319 +0.891211 +0.894576 +0.453031 +0.927883 +0.645978 +0.883889 +0.214238 +0.933405 +0.281177 +0.936011 +0.935942 +0.926958 +0.458493 +0.965148 +0.359772 +0.931342 +0.734519 +0.757348 +0.969850 +0.157786 +0.368557 +0.075827 +0.899229 +0.892916 +0.632681 +0.850979 +0.471866 +-8.040479 +-0.167110 +0.973334 +0.969322 +0.964956 +0.645009 +0.653263 +0.353895 +0.923072 +0.975795 +0.636002 +0.732589 +-0.773206 +0.939209 +0.931247 +0.937863 +0.253369 +0.495267 +0.770963 +0.845022 +0.565340 +-2.978411 +0.247652 +0.834320 +0.075714 +0.487392 +0.905290 +0.938582 +0.599182 +0.507359 +0.826942 +0.732964 +0.807261 +0.794027 +0.977074 +0.255693 +0.483988 +0.698561 +0.702565 +0.730546 +0.391138 +0.944513 +0.841900 +0.640996 +0.638138 +0.640278 +0.335069 +0.805914 +0.122621 +0.759092 +0.537696 +0.931347 +0.006790 +0.420419 +0.889876 +0.541009 +0.529093 +0.384544 +0.890391 +0.723625 +0.743479 +0.118627 +0.901522 +0.494534 +0.486526 +0.786436 +0.331238 +0.878053 +0.857141 +0.608755 +0.866720 +0.774426 +0.602231 +0.867256 +0.824691 +0.277789 +0.894734 +0.917829 +0.339841 +0.888810 +0.922607 +0.069183 +0.556192 +0.502370 +0.545984 +0.459675 +0.872543 +0.379797 +-0.301120 +0.553064 +0.695176 +0.571773 +0.852937 +0.335213 +0.410601 +0.595273 +0.672269 +0.592274 +-0.179897 +0.841057 +0.772865 +0.189480 +0.601684 +0.402304 +0.731283 +0.933489 +0.852326 +0.379125 +0.602321 +0.300654 +0.836992 +0.846966 +0.885904 +0.600884 +0.736002 +0.281408 +0.721311 +0.836214 +0.924015 +0.653028 +0.271613 +0.874050 +0.846889 +0.838232 +0.634385 +0.797155 +0.857877 +0.854274 +0.925958 +0.902027 +0.851613 +0.436001 +0.379859 +0.687694 +0.748448 +0.938829 +0.811809 +0.695706 +0.789159 +0.691229 +0.223877 +0.905417 +0.846005 +0.913892 +0.334326 +0.510825 +0.491573 +0.442928 +0.155876 +0.434524 +0.517738 +0.399414 +0.368554 +0.280872 +0.430542 +0.409226 +0.701080 +0.758818 +0.790470 +0.150355 +0.970688 +0.149455 +0.678523 +0.648489 +0.719309 +0.457628 +0.647115 +0.517060 +0.351763 +0.302718 +0.736037 +0.512029 +0.648750 +0.473401 +0.292207 +0.936230 +0.942768 +0.787951 +0.936746 +0.307258 +0.650398 +0.710230 +0.585983 +0.561848 +0.858602 +0.851782 +0.893344 +-0.620621 +0.809930 +0.721507 +0.225714 +0.659863 +0.938089 +0.748480 +-0.219812 +0.151089 +0.727853 +0.906877 +0.833330 +0.355322 +0.604445 +0.502877 +0.649664 +0.832133 +0.863205 +0.463643 +0.747630 +-0.450340 +0.616528 +0.871167 +0.747748 +0.690592 +0.623762 +0.096778 +0.766541 +0.399670 +0.462845 +0.798137 +0.363550 +0.923040 +0.157976 +0.934850 +0.703211 +0.825246 +0.885971 +0.202713 +0.754584 +0.886929 +0.538014 +0.659009 +0.208473 +0.970466 +0.974014 +0.729101 +0.296961 +0.020515 +0.762183 +0.961948 +0.695403 +0.860197 +-0.262222 +0.907064 +0.006319 +0.420636 +0.907748 +0.706513 +0.539281 +0.583244 +0.284448 +0.912094 +0.453570 +0.937960 +0.895085 +0.435746 +0.937573 +0.661246 +0.367208 +-0.379688 +0.843122 +0.419818 +0.525368 +0.817257 +0.217039 +0.849062 +0.191130 +0.813532 +-0.139901 +0.896148 +0.442935 +0.610413 +0.522718 +0.836399 +0.310193 +0.917716 +0.313030 +0.991397 +0.849415 +0.557473 +0.976812 +-0.534328 +-0.098506 +0.447271 +0.842310 +0.835341 +0.950073 +0.982822 +0.609314 +0.652996 +0.897013 +0.880265 +0.839664 +0.245009 +0.819153 +0.030400 +0.811237 +0.988621 +0.816832 +0.601108 +0.957060 +0.435815 +0.112652 +0.449275 +0.308713 +0.931736 +0.707358 +0.357138 +0.908084 +0.923246 +0.079801 +-0.256700 +0.576024 +0.690830 +0.664746 +0.737192 +0.928495 +0.912941 +0.793815 +0.776350 +0.037846 +0.659556 +-0.236018 +0.823132 +0.756119 +0.128600 +0.900567 +0.805804 +0.773295 +0.931428 +0.481428 +0.784462 +0.604752 +0.923489 +0.759238 +0.230675 +0.418432 +0.543291 +0.418430 +0.949830 +0.276134 +0.410465 +0.916482 +0.601970 +0.646220 +0.733055 +0.897351 +0.973907 +0.935710 +0.616184 +0.937370 +0.887303 +0.705624 +0.939702 +0.917235 +0.464936 +0.925706 +0.875269 +0.986338 +0.747063 +0.935897 +0.841113 +0.881612 +-0.448228 +-0.021766 +0.919105 +0.864528 +0.938063 +0.910569 +0.863771 +0.862008 +0.695961 +0.597911 +0.172483 +0.887407 +0.401937 +0.797758 +0.433772 +0.990773 +0.941506 +0.911862 +0.742301 +0.888607 +0.754087 +0.864328 +0.855539 +0.522861 +0.789609 +0.323988 +0.525370 +0.828255 +0.733471 +0.543452 +0.220511 +0.384304 +0.865951 +0.036228 +0.356780 +0.547939 +0.547932 +0.357890 +0.443619 +0.731500 +0.674875 +0.655355 +0.510474 +-0.089671 +0.190532 +0.547462 +0.212158 +0.619401 +0.504222 +0.443240 +-0.223909 +0.349949 +0.264264 +0.642791 +0.749691 +0.564589 +0.142723 +0.328945 +0.081248 +0.183699 +0.349704 +0.349704 +0.400878 +0.322008 +0.405223 +0.368650 +0.172217 +0.112120 +0.274300 +0.373643 +0.481967 +0.400425 +0.930025 +0.764003 +0.452577 +0.180864 +0.041814 +0.699729 +0.360505 +0.619535 +0.518474 +0.952173 +0.273372 +-86.397235 +0.472458 +0.974952 +0.699613 +0.822784 +0.936387 +0.441901 +0.182559 +0.572718 +0.369321 +0.530700 +0.882322 +0.469250 +0.909349 +0.422355 +0.782489 +0.914046 +-0.217014 +0.560261 +0.822362 +0.586754 +0.247917 +0.393013 +0.370925 +0.472322 +0.809658 +0.464302 +0.897352 +-842.145325 +0.924544 +0.892638 +0.525122 +0.883174 +0.584613 +0.662684 +0.940736 +0.894417 +0.912515 +0.573665 +0.935712 +0.913985 +0.708651 +0.732966 +0.940149 +0.369654 +0.648546 +0.854966 +0.285309 +0.423269 +0.895105 +0.443763 +0.330349 +0.418434 +0.854049 +0.829107 +0.534208 +0.285216 +0.563590 +0.154852 +0.336421 +0.473814 +0.504863 +0.703265 +0.677105 +0.312218 +0.756692 +0.887662 +0.377862 +0.977456 +0.592948 +0.750314 +0.184578 +0.732611 +0.157138 +0.651684 +0.063253 +-0.131551 +0.736625 +0.499163 +0.614730 +0.059820 +0.765343 +0.906154 +0.624027 +0.748981 +0.580226 +0.759731 +0.367104 +0.382028 +0.570432 +0.820121 +0.858672 +0.692707 +0.760138 +-0.011857 +0.872436 +0.850272 +0.713393 +0.523670 +0.863517 +0.439953 +0.086293 +0.432933 +0.927960 +0.779172 +0.104482 +0.842299 +-0.217871 +0.606103 +0.799527 +0.405798 +0.540548 +0.601552 +0.620672 +0.354047 +0.808757 +0.910410 +0.856218 +-0.132666 +0.760935 +0.883356 +0.747189 +0.635889 +0.178292 +-0.300131 +0.824909 +0.758877 +0.796075 +0.876835 +0.425670 +0.524221 +0.442241 +0.890016 +0.733664 +0.597742 +0.731858 +0.851415 +0.805423 +0.956919 +0.796433 +0.413184 +0.874955 +0.701588 +0.286924 +0.926824 +0.926647 +0.629892 +0.762285 +0.615780 +0.663288 +0.798223 +0.281972 +0.650491 +0.811330 +0.615965 +0.826054 +0.616077 +0.964213 +0.543129 +0.884738 +0.887779 +0.430277 +0.580026 +0.577368 +0.612024 +0.898711 +0.233499 +-0.050583 +0.273864 +0.938694 +0.928190 +0.090081 +0.836057 +0.957824 +-0.120424 +0.985717 +0.776840 +0.944452 +0.672748 +0.140226 +0.854204 +0.067075 +0.272251 +0.690799 +0.540110 +0.365962 +0.953424 +0.851160 +0.193915 +0.558960 +0.614431 +0.648780 +0.500701 +0.936278 +0.725619 +0.872614 +0.662348 +0.408196 +0.582347 +0.908596 +0.685415 +0.864022 +0.479382 +0.870802 +-0.013000 +0.708945 +0.795136 +0.049300 +-0.029737 +0.298888 +0.836683 +0.909479 +-0.419929 +0.728266 +0.863590 +-0.162962 +0.467975 +0.219098 +0.607779 +0.440089 +0.699318 +0.691857 +0.607372 +0.625032 +0.651518 +-0.260693 +0.876711 +0.788023 +0.205369 +0.753289 +0.524407 +0.894090 +-0.250455 +0.741069 +0.767514 +0.666208 +0.433063 +-0.066650 +0.585092 +0.590415 +0.819623 +0.775390 +0.595626 +0.720050 +0.716266 +0.408569 +0.559929 +0.098380 +-0.299006 +0.797155 +0.511581 +0.978753 +0.590030 +0.826406 +0.573980 +0.857253 +0.601537 +0.793561 +0.701325 +0.629645 +0.735835 +0.482768 +0.928615 +-252.588171 +-0.366407 +0.737784 +0.337393 +0.925819 +0.794038 +0.645243 +0.064762 +0.689797 +0.931671 +0.747704 +0.886543 +0.556680 +0.781500 +0.889926 +0.942274 +0.722670 +0.997314 +0.763538 +0.881399 +0.414677 +0.417478 +0.705574 +0.945907 +0.131424 +0.430562 +0.751507 +0.914137 +0.499027 +0.831177 +0.942950 +0.862313 +0.958005 +0.697788 +0.756549 +0.203668 +0.828084 +0.872410 +0.011337 +0.551169 +0.958596 +0.911067 +0.889081 +0.678968 +0.876900 +0.763049 +0.241963 +0.478491 +0.970471 +0.912868 +0.884181 +0.711986 +0.885955 +0.632637 +0.223787 +0.329056 +0.862458 +0.086043 +0.697705 +0.752717 +0.817988 +0.812593 +0.504196 +0.623227 +0.696440 +0.125198 +0.489446 +0.541865 +0.938173 +0.765915 +0.834022 +0.886954 +0.458502 +0.588693 +0.375453 +0.267632 +0.834544 +0.883268 +0.979028 +-0.329876 +0.312505 +-0.224206 +0.746037 +0.556046 +0.843355 +0.685536 +0.831505 +0.943049 +0.325261 +0.728095 +0.938942 +0.947876 +0.808202 +0.731388 +0.935279 +0.332679 +0.692490 +0.883669 +-0.504859 +0.737280 +0.130416 +0.909936 +0.873705 +0.937566 +0.937566 +0.981322 +0.670655 +0.908768 +0.619312 +0.940842 +0.924294 +0.873154 +0.825366 +0.380384 +0.920624 +0.987866 +0.515504 +0.827020 +0.980353 +0.883390 +0.991653 +0.920283 +0.473784 +0.590033 +0.861744 +0.826093 +0.611160 +0.889562 +0.733295 +0.782504 +0.898096 +-1.426888 +0.723041 +0.931266 +0.822463 +0.850091 +0.949784 +0.551513 +0.167801 +0.547490 +0.715704 +0.568924 +0.798492 +0.036960 +0.840679 +0.935013 +0.530136 +0.442390 +0.569158 +0.902570 +0.888981 +0.616464 +0.828134 +0.523702 +0.879805 +-0.278832 +0.615713 +0.749249 +-0.320776 +0.080575 +0.955261 +0.872152 +0.929162 +0.606669 +0.870442 +0.763976 +0.453960 +0.532665 +0.651239 +-0.204261 +-0.187693 +0.250301 +0.738887 +0.377577 +0.597610 +0.216299 +0.827879 +0.869387 +0.541989 +0.630131 +0.874764 +0.608136 +0.247334 +0.271686 +-2.465521 +0.713592 +0.884694 +0.862227 +0.718221 +-0.142896 +0.484016 +0.503598 +0.466853 +0.639834 +0.855136 +-0.482915 +0.066463 +0.779423 +-0.344987 +0.817502 +0.535058 +0.070285 +-0.387125 +0.566867 +0.892375 +0.751004 +0.751004 +0.596297 +0.601592 +0.220537 +0.836830 +0.456722 +0.235802 +0.619775 +0.413251 +0.836212 +0.901308 +0.400421 +-0.045284 +0.418552 +0.379199 +0.631502 +0.636254 +0.898698 +0.651841 +0.104903 +0.077931 +0.844090 +0.886803 +0.625622 +0.742826 +0.721683 +0.320052 +0.115090 +0.886347 +0.151051 +0.617192 +0.238757 +0.702802 +0.947637 +0.416866 +0.253566 +-0.077645 +0.826090 +0.196171 +-0.158965 +-0.548040 +0.837042 +0.730628 +0.406736 +0.744324 +0.622660 +0.935003 +0.673855 +0.536677 +0.178217 +0.747151 +0.657437 +-12.918854 +-0.338232 +0.715266 +0.664846 +0.623254 +0.856945 +0.646864 +0.766524 +0.928406 +0.480574 +0.838403 +0.934475 +0.694782 +-0.006502 +0.481650 +0.359443 +0.768610 +0.485552 +0.912902 +0.358236 +0.642212 +-0.413327 +0.765135 +0.900213 +0.002371 +0.247481 +-1.195496 +0.863345 +-0.164759 +0.068939 +0.900139 +-0.022575 +-0.133812 +0.833558 +0.887767 +0.575373 +0.849903 +0.620801 +0.319686 +0.289165 +0.574869 +0.845558 +0.333901 +0.274526 +-0.752072 +0.905817 +0.798886 +0.938242 +0.875585 +0.876393 +0.633134 +0.738956 +0.723387 +0.260664 +0.822560 +0.766689 +0.829188 +0.647583 +0.817274 +0.563487 +0.693088 +0.659671 +0.646621 +0.308709 +0.502589 +0.603166 +0.733569 +0.605296 +0.751233 +0.261414 +0.481607 +0.753059 +0.818320 +0.574047 +0.929992 +0.766487 +0.875230 +0.812382 +0.642047 +0.670207 +0.821312 +0.845002 +0.643123 +0.836522 +0.902961 +0.828912 +0.824958 +0.507443 +0.566178 +0.551919 +0.544662 +0.540990 +0.334305 +0.514305 +0.827944 +0.815214 +0.618188 +0.653667 +0.666741 +0.903814 +0.812046 +0.430897 +0.623051 +0.780779 +0.516747 +0.222469 +0.784078 +0.727728 +0.910706 +0.983902 +0.863387 +0.794985 +0.744834 +0.657966 +0.497393 +0.687905 +0.644539 +0.426772 +0.537470 +0.914671 +0.709091 +0.724034 +0.761472 +0.673041 +0.935537 +0.405582 +0.893519 +0.566043 +0.599052 +0.685911 +0.443811 +0.929669 +0.742411 +0.562379 +0.752354 +0.582600 +0.874680 +0.783274 +0.350964 +0.731841 +0.512811 +0.739142 +0.609046 +0.548406 +0.974663 +0.567553 +0.803103 +0.721672 +0.719997 +0.710554 +0.918425 +0.710490 +0.615838 +0.943836 +0.419658 +0.705418 +-0.189680 +0.865386 +0.875322 +0.448702 +0.318062 +0.325010 +0.933341 +0.782225 +0.461954 +-0.436965 +0.621108 +0.791707 +0.372267 +0.698908 +0.921058 +0.679003 +0.532132 +0.932713 +0.199878 +0.595730 +0.239118 +0.778040 +0.606150 +0.919783 +-0.068854 +0.061759 +0.940289 +0.420513 +0.234139 +-0.037900 +-0.135616 +0.378557 +0.862753 +0.303674 +0.603458 +0.685164 +0.890408 +0.939633 +0.928233 +0.390839 +0.643674 +0.933738 +0.906590 +0.376094 +0.949175 +0.893107 +0.912523 +0.887272 +0.941421 +0.792877 +0.537515 +0.802490 +0.519162 +0.842475 +0.948292 +0.776796 +0.530820 +0.525127 +0.172794 +0.440077 +0.158062 +-0.250253 +0.317256 +0.327722 +0.552584 +0.503372 +0.785030 +0.337723 +-0.208717 +0.147291 +-0.049235 +0.009247 +0.133917 +-0.275551 +0.763433 +-0.315264 +0.238197 +-233.002222 +0.725920 +0.849476 +0.361935 +-0.014746 +0.374404 +0.133723 +0.269882 +0.777915 +0.227869 +0.433822 +0.460237 +0.867284 +0.465032 +0.566960 +0.298617 +0.543639 +0.897699 +0.370219 +0.822462 +0.984902 +0.814415 +0.465901 +0.769496 +0.418476 +0.908949 +0.589486 +0.107661 +0.812672 +-0.125873 +0.516435 +0.361848 +0.457536 +0.776179 +0.848010 +0.760010 +0.957038 +0.897070 +0.671880 +-0.113469 +0.931669 +0.605566 +-0.330067 +-0.082632 +0.735308 +0.663378 +0.903618 +0.750901 +0.096138 +0.918061 +-0.958104 +0.215344 +0.696824 +0.564274 +0.690939 +0.597511 +0.737434 +0.094738 +-0.296457 +0.949453 +0.912873 +0.525778 +0.645785 +0.813824 +-0.264602 +0.429436 +0.525000 +0.799754 +0.397902 +0.502939 +0.692544 +0.774898 +0.932330 +0.850160 +0.553723 +0.394794 +0.808870 +0.939460 +0.937904 +0.587235 +0.692790 +0.455118 +0.249645 +0.970297 +0.954578 +0.991361 +0.887830 +0.695547 +0.558461 +0.769138 +0.581862 +0.371807 +0.586389 +0.888117 +0.273140 +0.850024 +0.565907 +0.383770 +0.951796 +0.753407 +0.440148 +0.728769 +0.603378 +-0.181574 +0.555916 +0.723326 +-0.266890 +0.774616 +-0.130289 +0.563364 +0.918551 +0.645811 +0.701516 +0.718842 +0.806854 +0.291357 +-0.214515 +0.931905 +-0.201087 +0.808832 +0.847956 +0.756446 +0.326544 +0.543753 +-0.199440 +0.432828 +0.551961 +-0.024600 +0.717235 +0.706556 +0.836334 +0.227792 +0.809381 +0.934920 +0.904737 +0.770730 +0.389149 +0.649085 +0.880279 +0.815732 +0.677328 +0.869949 +0.939490 +0.557888 +0.196781 +0.673482 +-0.380923 +0.845242 +0.895169 +0.902239 +0.895292 +0.163914 +0.911414 +0.498750 +0.805358 +0.638881 +0.638308 +0.554855 +-0.171719 +0.277345 +-0.147546 +0.488772 +-0.171852 +0.315357 +0.768317 +0.008012 +0.560461 +0.772094 +0.918910 +-0.533986 +0.331138 +0.760330 +0.233267 +0.483908 +0.744855 +0.877138 +0.813147 +0.870159 +-0.182781 +0.748243 +0.547915 +0.827089 +0.857548 +0.824559 +-0.228887 +-0.189158 +-0.188055 +0.567084 +0.415261 +-0.325387 +0.917450 +0.773275 +-0.192370 +0.135502 +-0.223719 +0.661322 +0.886879 +0.863493 +0.605641 +0.838951 +0.727765 +0.402778 +0.872940 +0.663138 +0.779422 +0.691582 +0.919435 +0.659980 +0.822408 +0.632458 +0.558097 +0.601162 +0.832648 +0.953994 +0.953226 +0.771232 +0.781091 +0.425162 +0.938702 +0.817812 +0.987698 +0.507019 +0.900061 +0.154100 +0.979383 +0.931913 +0.849164 +0.937861 +0.913790 +0.797408 +0.911853 +0.916223 +0.636703 +0.971620 +0.932655 +0.961525 +0.612666 +0.984284 +0.901649 +0.964797 +0.892032 +0.944252 +0.965205 +0.817535 +0.806792 +0.717395 +0.940595 +0.199591 +0.925953 +0.909416 +0.836097 +0.134377 +0.919843 +0.486555 +0.270205 +0.765687 +0.817196 +0.879165 +0.199526 +0.460985 +0.381325 +0.742067 +0.940118 +0.782805 +-0.123677 +0.290470 +0.604502 +0.200176 +0.584148 +0.260104 +0.019811 +0.678266 +0.938634 +0.167264 +0.764556 +0.792061 +0.909327 +0.436296 +0.949290 +0.854426 +0.950201 +0.980127 +0.848786 +-0.137912 +0.664855 +0.829552 +0.887388 +0.871690 +0.688831 +0.814620 +0.181125 +0.120369 +0.620288 +0.474768 +0.862610 +0.467434 +0.581734 +0.640603 +-0.483083 +0.664963 +0.905905 +-0.275126 +0.907732 +0.974902 +0.923396 +0.964121 +0.653450 +0.880931 +0.865381 +0.065677 +0.522748 +0.279352 +0.694141 +0.660555 +0.633946 +0.741430 +0.577112 +0.421523 +0.627077 +0.757149 +0.774171 +0.358264 +0.471501 +0.685070 +0.967159 +0.744436 +0.726682 +0.853946 +0.399160 +0.539201 +0.553724 +0.696116 +0.908836 +0.957170 +0.135939 +0.445369 +0.785226 +0.937593 +0.542166 +0.235526 +0.973464 +0.721562 +0.230616 +0.922643 +0.613483 +0.635689 +0.604517 +0.830951 +0.526254 +0.630614 +0.865967 +0.848488 +0.304454 +0.809976 +0.793790 +0.776482 +0.302433 +0.617240 +0.771511 +0.735066 +0.588673 +0.844818 +0.790687 +0.820640 +0.845021 +0.706252 +0.882433 +0.857999 +0.449747 +0.908301 +0.846858 +0.603576 +0.410149 +0.436079 +0.924481 +-0.107218 +0.268568 +0.893166 +0.721732 +0.559318 +-0.158443 +0.287718 +0.321814 +0.989791 +0.317928 +-0.133860 +0.514651 +0.725722 +0.926471 +0.013852 +0.760590 +0.471419 +-0.158760 +0.177577 +0.632428 +0.983035 +0.992043 +0.073924 +0.812105 +0.547870 +0.312098 +-0.337941 +0.837760 +0.718815 +0.694918 +0.798643 +0.819686 +0.451260 +0.714487 +-0.272293 +0.796371 +0.741639 +0.465749 +0.848534 +0.982067 +-0.472555 +0.792812 +0.632624 +0.849674 +0.662350 +0.615876 +0.901893 +0.946277 +0.864240 +0.875716 +0.475192 +0.012151 +0.050833 +0.928105 +0.564512 +0.793987 +0.868844 +0.825476 +0.497524 +0.915544 +0.602784 +0.964533 +0.795734 +0.648572 +0.929548 +0.955050 +0.941381 +0.808149 +0.976900 +0.326302 +-0.151376 +0.702545 +0.702290 +0.940928 +0.314517 +0.934368 +0.749559 +0.961154 +0.964734 +0.486055 +0.702407 +0.769076 +0.860889 +0.446092 +0.692884 +0.505522 +-0.155779 +0.347950 +-0.014615 +0.994003 +0.559712 +0.968764 +-0.133805 +0.619043 +0.524526 +0.938196 +0.954721 +0.614903 +0.356871 +0.828956 +0.479840 +0.347652 +0.747298 +-0.559115 +0.849654 +0.895726 +0.460538 +0.736160 +0.831564 +0.441647 +0.502364 +0.534612 +0.801217 +0.702625 +0.619211 +0.697386 +0.839585 +0.974243 +0.586571 +0.726424 +0.446287 +0.647789 +0.470294 +0.524039 +0.344477 +0.812242 +-0.224708 +0.764025 +0.874167 +0.293929 +-0.181198 +-0.280741 +0.976004 +0.647733 +0.454344 +0.881212 +0.727613 +0.935166 +0.880959 +0.343995 +0.733415 +0.865510 +0.653992 +0.098652 +0.739806 +0.475357 +0.766784 +0.926069 +0.885454 +0.862444 +0.414617 +0.669987 +0.764381 +0.366004 +0.779228 +0.890206 +0.863489 +0.763318 +0.353622 +0.848595 +0.848723 +0.638638 +0.806060 +0.452060 +0.653494 +0.601882 +0.732591 +0.879653 +0.753865 +0.849523 +0.732135 +0.485444 +0.433261 +0.693453 +0.807064 +0.491060 +0.232800 +0.402300 +0.921022 +0.342364 +0.450472 +0.850653 +0.946653 +0.749320 +0.760136 +0.680057 +0.886445 +0.614862 +0.605685 +0.943424 +0.907247 +0.185782 +0.894819 +0.615541 +0.911629 +0.793281 +0.922556 +0.912213 +-0.220945 +0.494212 +0.833738 +0.563673 +-0.064165 +0.814754 +0.648528 +-2.252527 +-3.531281 +0.647347 +0.536808 +0.722042 +0.726255 +0.685239 +0.683564 +0.140945 +0.536203 +0.257499 +0.617502 +-0.141025 +0.862850 +0.872041 +0.606994 +0.763879 +0.562137 +0.699659 +0.213456 +0.876904 +0.749614 +0.548273 +0.961190 +0.775865 +0.791741 +0.345863 +0.906891 +0.906606 +0.523816 +0.950508 +0.796225 +0.868302 +0.802650 +0.823090 +0.873359 +0.571123 +0.591547 +0.756994 +0.604325 +0.177787 +0.871518 +0.949701 +0.648918 +0.909382 +0.504806 +0.882832 +0.545437 +0.414403 +0.580742 +0.744384 +0.881126 +0.323205 +0.509813 +0.950186 +0.808414 +0.691259 +0.639027 +0.197257 +0.784219 +-0.358154 +0.731821 +-0.239309 +0.909403 +0.622488 +-0.329281 +0.938416 +0.727542 +0.522920 +0.738189 +0.798458 +0.620673 +0.931799 +0.866148 +0.859279 +-0.082748 +0.414724 +0.933956 +0.443253 +0.971351 +0.463554 +0.290966 +0.948364 +0.764379 +0.748997 +0.163840 +0.820374 +0.784938 +0.658396 +0.913181 +0.859995 +0.789819 +0.366873 +0.712378 +0.506809 +0.199631 +0.416477 +0.132490 +0.339530 +0.823666 +0.117759 +-325.015540 +0.704813 +0.333525 +0.925352 +0.789400 +0.836341 +0.840636 +0.314360 +-282.199747 +0.120929 +-1.426701 +0.529877 +0.964934 +0.510540 +0.429431 +0.964906 +0.993739 +0.967970 +0.511891 +0.593318 +0.547001 +0.576099 +0.914586 +0.394587 +0.709432 +-0.224140 +0.740004 +0.836048 +0.831179 +0.682478 +0.778365 +0.653800 +0.806812 +0.730884 +0.892908 +0.720853 +0.375008 +0.802070 +0.879674 +0.628496 +0.574150 +0.857194 +0.831472 +0.656587 +-0.274417 +0.457997 +0.856852 +0.857593 +0.412621 +0.699614 +0.911829 +0.845352 +0.871642 +0.574652 +0.658030 +0.933611 +0.929397 +0.758791 +0.926607 +0.745874 +0.429684 +0.578459 +0.779708 +0.855347 +0.836277 +0.744125 +0.614802 +0.800561 +0.609404 +0.467812 +0.726638 +0.322809 +0.593100 +0.851417 +0.800054 +0.501867 +0.517450 +0.303298 +0.935122 +0.882852 +0.986200 +0.560625 +0.379978 +0.690445 +0.931313 +0.742623 +0.823579 +0.473513 +0.300115 +0.572075 +0.586183 +0.793140 +0.549926 +-0.082423 +0.401454 +-1.235452 +0.385265 +0.374232 +0.924121 +0.990892 +-230.430148 +-0.127830 +0.779694 +0.892042 +0.101800 +0.845601 +0.857727 +0.694698 +0.587007 +0.021761 +0.077440 +0.284999 +0.201083 +0.097346 +0.195231 +0.317937 +0.266891 +-0.122768 +-0.127779 +0.483984 +0.499153 +0.945089 +0.701955 +0.504495 +0.849254 +-0.236244 +0.576428 +0.466079 +0.095495 +0.913620 +0.707160 +0.238204 +0.518006 +0.353775 +-0.105062 +0.805417 +0.844206 +0.141289 +0.027974 +0.481184 +0.606750 +-0.227343 +0.621823 +0.721858 +0.635959 +0.437552 +0.496192 +0.092100 +0.740557 +0.552604 +0.818019 +0.708678 +0.728638 +0.938090 +0.805963 +0.713003 +0.888365 +0.913787 +-0.226898 +0.927055 +0.922730 +-0.169493 +0.196061 +0.888075 +0.910221 +0.720405 +0.809688 +0.780245 +0.842705 +0.703778 +0.825519 +0.738775 +0.886854 +0.479127 +0.814964 +0.937119 +0.926644 +0.678232 +0.923827 +0.601957 +0.932493 +0.671437 +0.663033 +0.753898 +0.853785 +0.807774 +0.907073 +0.448035 +0.460134 +0.648238 +0.928195 +0.709414 +0.657940 +0.611759 +0.954386 +0.735635 +0.981304 +0.458246 +0.966679 +0.602739 +0.449004 +-0.037555 +0.547157 +0.830354 +0.835937 +0.592154 +0.969779 +-0.071023 +0.047701 +0.359032 +0.939232 +0.568271 +0.272107 +0.697317 +0.887076 +0.667997 +0.883360 +0.735066 +0.829273 +0.639149 +0.937358 +0.668912 +0.614273 +0.599790 +0.817833 +0.666853 +0.929782 +0.860631 +0.177637 +0.935835 +0.752761 +0.394195 +0.818423 +0.863547 +0.880691 +-0.682635 +0.800973 +0.878912 +0.849403 +0.470195 +0.605090 +0.750417 +-0.281095 +0.084509 +0.381737 +0.742328 +0.931370 +0.357695 +0.422910 +0.282619 +0.502925 +-0.254856 +0.713088 +0.732713 +0.377027 +0.192459 +0.050084 +0.596832 +0.126987 +0.334247 +0.441340 +0.562966 +0.842438 +0.565068 +0.520806 +0.142362 +0.176886 +0.839401 +0.500647 +0.436279 +0.479379 +0.121771 +-0.119225 +0.622884 +-0.043815 +0.395057 +0.831324 +0.576769 +-0.186595 +0.697527 +0.484937 +0.682117 +0.856635 +-0.295118 +0.792381 +0.403948 +0.505704 +0.716198 +0.183729 +0.777859 +0.750143 +0.740424 +-0.466214 +0.931283 +0.373931 +0.371634 +0.796599 +0.573633 +0.904480 +0.927162 +0.882190 +0.680931 +0.881452 +0.848626 +0.196618 +0.890675 +0.173803 +0.556422 +0.873401 +-0.057169 +0.914893 +0.795550 +0.723734 +0.539058 +0.788929 +0.925110 +-0.783192 +0.760334 +-0.281307 +0.649051 +0.585614 +0.997276 +0.773465 +0.593888 +0.642500 +0.928968 +0.486544 +0.835429 +0.494469 +0.922033 +0.454536 +0.908650 +-0.095212 +0.694574 +0.752357 +-112.403909 +-0.262534 +0.820962 +0.523618 +0.339205 +0.611110 +0.376636 +0.926739 +0.970441 +0.936512 +0.385753 +0.936753 +0.597378 +0.954821 +0.174343 +0.940735 +0.297059 +0.390103 +0.125715 +0.262270 +0.940842 +0.484262 +0.364862 +0.978509 +0.906224 +-0.185394 +0.842180 +-0.250406 +0.032684 +0.867023 +0.592151 +0.901079 +0.631123 +0.839971 +0.735465 +0.888141 +0.583954 +0.664625 +0.402933 +0.905106 +0.741184 +0.322142 +-0.000153 +0.292240 +0.522327 +0.104186 +0.667802 +0.014153 +0.445724 +0.420996 +0.647454 +0.814342 +0.699905 +0.811412 +0.666594 +0.639569 +0.770789 +0.890494 +0.423335 +0.912770 +0.859767 +0.847605 +0.647114 +-0.031626 +0.789100 +0.716575 +0.642993 +0.921373 +0.307503 +0.401766 +0.697789 +0.892386 +0.103274 +0.806421 +0.885629 +0.961674 +0.951755 +0.584101 +0.950799 +0.941574 +0.991394 +0.902976 +-0.139073 +0.487863 +0.976109 +0.280402 +0.898189 +0.792856 +0.430468 +0.894609 +0.919245 +0.326512 +0.299742 +-0.208306 +0.565769 +0.840126 +0.883882 +0.766710 +0.794287 +-0.324133 +0.302001 +-0.274420 +0.361269 +0.840683 +0.759626 +0.932211 +0.665053 +0.738984 +0.828138 +0.629807 +0.771962 +0.926717 +0.827097 +0.887375 +0.365105 +0.907471 +0.333044 +-59.602195 +0.909773 +0.871028 +0.694057 +0.577795 +0.895641 +0.723621 +0.000076 +0.245720 +0.982734 +-0.069042 +0.496360 +0.256069 +0.799171 +0.890732 +0.422109 +0.750421 +0.869599 +0.496349 +0.443658 +0.600820 +0.907213 +0.573209 +0.680409 +0.514216 +0.613673 +0.735268 +0.660616 +0.713875 +0.743743 +0.562899 +0.763565 +0.344396 +0.678079 +0.484871 +0.042720 +0.787922 +0.937887 +0.584116 +0.413812 +0.510655 +0.659009 +0.683426 +0.668279 +0.951405 +0.411243 +0.495657 +0.818511 +0.359751 +0.452422 +0.545898 +0.331281 +-0.063650 +-0.229666 +0.377447 +0.855013 +-0.007391 +0.655377 +0.638094 +0.350574 +0.483275 +0.090120 +0.852461 +0.824155 +0.791288 +0.720726 +0.892870 +0.804393 +0.799210 +0.601525 +0.633367 +0.883729 +0.816481 +0.554518 +0.784751 +0.646540 +0.537404 +-0.369105 +0.681389 +0.298151 +0.186746 +0.350383 +0.939429 +0.540717 +-0.084100 +0.204405 +0.484691 +0.453679 +0.778565 +0.662522 +0.611768 +0.704026 +0.714216 +0.607282 +0.718486 +0.352225 +0.177978 +-0.560798 +0.279383 +0.467818 +0.300327 +-0.021935 +0.030784 +0.157220 +0.802006 +0.229044 +0.018685 +0.440320 +0.011813 +-0.629875 +0.983465 +0.963351 +-0.661344 +0.343265 +0.787037 +-0.248627 +0.360649 +0.880438 +0.885960 +0.917215 +0.928211 +0.671525 +0.574101 +-0.264856 +0.848260 +0.747188 +0.313897 +0.861601 +0.253626 +0.364444 +0.625187 +0.514078 +0.407317 +0.923821 +0.989231 +0.535380 +0.981584 +0.934756 +0.787062 +0.520382 +0.477793 +0.434951 +0.904495 +0.301102 +0.464607 +0.455140 +0.867582 +0.490071 +0.271430 +0.337544 +0.737974 +0.696934 +0.474548 +0.880448 +0.463516 +0.546043 +0.355564 +0.335830 +0.911093 +0.724303 +0.583324 +0.616834 +0.926960 +-0.329317 +0.364811 +0.286238 +0.594576 +0.435837 +0.932777 +0.660094 +0.456103 +0.682628 +0.463005 +0.357748 +0.487957 +0.442709 +0.932113 +0.818566 +0.613177 +0.946363 +0.241919 +0.489126 +0.773472 +0.889772 +0.831718 +0.588003 +0.640188 +0.508955 +0.661202 +0.704191 +0.656728 +0.944349 +0.846821 +0.873986 +0.765180 +0.701718 +0.734467 +0.799583 +0.876780 +-96.726109 +0.875152 +0.115030 +0.324588 +0.278284 +0.958911 +0.828719 +0.657061 +0.461129 +0.268974 +0.468409 +0.386398 +0.509530 +0.355819 +0.587592 +0.601005 +0.439878 +0.349105 +0.884984 +0.678844 +0.209221 +0.256455 +0.911934 +0.188621 +-1.612008 +0.647922 +-5.365391 +0.993425 +-3.333007 +0.990513 +0.870021 +0.875928 +0.687779 +0.090942 +0.416479 +0.322573 +0.107101 +0.373588 +0.089912 +0.804890 +0.933089 +0.958029 +0.770222 +0.741673 +0.757201 +0.783746 +0.736446 +0.287959 +0.254587 +0.504041 +-1.976410 +0.823341 +0.782820 +0.930762 +0.921611 +0.762640 +0.714782 +0.906925 +0.876948 +0.727521 +0.980268 +0.991258 +0.934188 +0.958459 +0.983581 +0.562917 +0.988701 +0.487697 +0.570500 +0.867044 +0.851825 +0.845040 +0.921412 +0.929168 +0.921444 +0.545765 +0.680427 +0.975997 +0.913912 +0.913752 +0.921412 +0.914008 +0.481778 +0.409246 +0.388421 +0.581942 +0.509914 +0.465522 +0.553795 +0.603987 +0.257541 +0.308481 +0.951033 +0.268038 +0.863157 +0.803476 +0.853413 +0.553229 +0.840388 +0.747470 +0.873843 +0.953139 +0.733125 +-45.132985 +0.389521 +0.353521 +0.430554 +0.890841 +0.373990 +0.558815 +0.919317 +0.324559 +0.536713 +0.440832 +0.890284 +0.386494 +0.942284 +0.552203 +0.410889 +0.847195 +0.162224 +0.316836 +0.648248 +0.709006 +0.458832 +0.904229 +0.653866 +0.929584 +0.584803 +0.962221 +0.525583 +0.789488 +-0.326445 +-0.314031 +0.906965 +-0.712293 +0.664531 +0.778310 +0.890373 +0.878221 +0.308633 +0.884620 +0.432136 +0.481367 +0.477496 +0.314559 +0.818242 +0.365560 +0.947297 +0.518389 +0.425088 +0.469531 +0.874125 +0.812895 +0.387142 +0.621091 +0.558007 +0.668334 +0.517390 +0.880216 +0.554594 +0.357526 +0.277288 +0.432280 +0.663351 +0.272914 +0.222921 +0.594870 +0.413384 +0.802407 +0.702806 +0.612636 +0.264676 +0.620120 +0.455875 +0.612897 +0.813765 +0.515562 +0.462552 +0.913944 +-0.003273 +0.864879 +0.883255 +0.901845 +0.911580 +0.892670 +0.892630 +0.514972 +0.928784 +0.732759 +0.775233 +0.994527 +0.565584 +0.542547 +0.467157 +0.524006 +0.761919 +0.903786 +0.684095 +0.602219 +0.764813 +0.442420 +0.765101 +0.829674 +0.586476 +0.711106 +0.735747 +0.256010 +0.885285 +0.573357 +0.586364 +0.842724 +0.842288 +0.924935 +0.591652 +0.475090 +0.915219 +0.870824 +0.638200 +0.859917 +0.849617 +0.931673 +0.623989 +0.743267 +0.836528 +0.817092 +0.905387 +0.847167 +0.556044 +0.553542 +0.422510 +0.302378 +0.310461 +0.123142 +0.754656 +0.457276 +0.738851 +0.773430 +0.722379 +0.341384 +0.337285 +0.746881 +0.805060 +0.613272 +0.565358 +0.907421 +0.455863 +0.749868 +0.407145 +0.272895 +0.123492 +0.512729 +0.856780 +0.207071 +0.914767 +0.905954 +0.520650 +0.118825 +0.517724 +0.602954 +0.817583 +0.938931 +0.392020 +0.934170 +0.789700 +0.861973 +0.993017 +0.013780 +0.540292 +0.798108 +0.930738 +0.660726 +0.553759 +0.560367 +0.815817 +0.936849 +0.572486 +0.918607 +0.930463 +0.958911 +0.891176 +0.913023 +0.790743 +0.818002 +0.320173 +0.743439 +0.519078 +0.948267 +0.907963 +0.788508 +0.630137 +0.467966 +0.722565 +0.428778 +0.918953 +0.983379 +0.764676 +0.874976 +0.224553 +0.935294 +0.686643 +0.443800 +0.981460 +0.821947 +0.544848 +0.322159 +0.720803 +0.254364 +0.561263 +0.824048 +0.362256 +0.916826 +0.675881 +0.573034 +0.729589 +0.420896 +0.665331 +0.795422 +0.868060 +0.798610 +0.216506 +0.837572 +-15.836379 +0.664467 +0.442418 +0.611041 +0.934067 +0.248855 +0.892812 +0.377334 +0.484906 +0.778827 +0.237567 +0.246491 +0.326940 +0.463167 +0.995806 +0.297575 +0.682368 +0.822614 +0.872874 +0.663715 +0.625297 +0.857560 +0.327906 +0.873036 +0.865318 +0.258064 +0.669720 +0.533369 +0.533503 +0.341392 +0.419941 +0.504286 +0.985278 +0.513229 +0.373956 +0.412038 +0.729187 +0.381661 +0.733266 +0.437514 +0.992238 +0.875750 +0.632948 +0.568416 +0.512069 +0.516998 +0.470118 +0.639400 +0.957851 +0.960602 +0.729950 +0.526062 +0.954144 +0.626477 +0.764548 +0.764374 +0.709616 +0.672255 +-150.132043 +0.867617 +0.260622 +0.932905 +0.327118 +0.281937 +0.482778 +0.586231 +0.991597 +0.688863 +0.294293 +0.339403 +0.537711 +0.495693 +0.874661 +0.921668 +0.914200 +0.467559 +0.719787 +0.795045 +0.620331 +0.928617 +0.968315 +0.781288 +0.922072 +0.987500 +0.545737 +0.928435 +0.667339 +0.391963 +0.939777 +0.970355 +0.945223 +0.325993 +0.171297 +0.209320 +0.621751 +0.511257 +0.289191 +0.066941 +0.124414 +0.326959 +0.003851 +0.919449 +-55.814796 +0.660677 +0.267754 +0.966848 +0.590919 +0.518627 +0.263856 +0.874796 +0.410783 +0.911220 +0.365141 +0.482798 +0.751214 +0.830592 +0.318117 +0.260607 +0.968024 +0.702705 +0.944783 +0.918980 +0.979902 +0.506465 +0.929536 +0.531296 +-0.299232 +0.489946 +0.437745 +0.966782 +0.963494 +0.624616 +0.534238 +0.930455 +0.198906 +0.895285 +0.221146 +0.160585 +0.555406 +0.446341 +0.599942 +0.974205 +0.138579 +0.769115 +0.947715 +0.894921 +0.477889 +0.535292 +0.513825 +0.850191 +0.948946 +0.462380 +0.519102 +0.542195 +0.992023 +0.505863 +0.393537 +0.387718 +0.935415 +0.806340 +0.967853 +0.925992 +0.605329 +0.968826 +0.344356 +0.496486 +0.220430 +0.449809 +0.933924 +0.924780 +0.916347 +-0.017084 +0.939794 +0.759620 +0.728075 +0.337134 +0.556837 +0.491142 +0.188790 +0.510883 +-0.059492 +0.166571 +0.977250 +0.925176 +0.951882 +0.519381 +0.656506 +0.705255 +0.515466 +0.866663 +0.562834 +0.800305 +0.462840 +0.909409 +0.379033 +0.833657 +0.942843 +0.157294 +0.607575 +0.658977 +0.781904 +0.833836 +-0.708408 +0.482538 +0.824535 +0.495516 +0.893829 +0.377145 +0.181364 +0.565476 +-0.314502 +0.571961 +-0.248682 +-0.105142 +0.991539 +0.973893 +0.616306 +-2.385804 +-0.019521 +0.385172 +0.470091 +0.407839 +0.767442 +0.879556 +0.316215 +0.977977 +0.945349 +-2.378005 +0.396789 +0.146764 +0.094303 +0.541169 +0.749629 +0.891852 +0.354911 +0.718321 +0.830746 +0.946559 +0.716016 +0.736282 +0.742401 +0.558709 +0.381677 +0.987851 +0.406734 +0.440931 +0.803664 +0.422698 +0.419381 +0.630858 +0.607324 +0.970156 +0.693163 +0.726479 +0.805543 +0.754390 +0.848102 +0.242690 +0.440638 +0.935049 +0.223660 +0.599823 +0.358488 +0.404159 +0.650937 +0.572201 +0.547001 +0.273123 +0.179426 +-1.693806 +0.823507 +0.522146 +0.352011 +0.837066 +0.459413 +0.226203 +-0.140376 +-0.114907 +-0.019845 +0.667039 +0.508020 +0.367053 +0.254366 +0.254366 +0.221146 +0.023333 +0.270641 +0.134977 +0.055809 +0.035343 +-0.029881 +-0.069297 +0.097954 +0.248924 +0.036570 +0.055060 +0.303499 +0.101239 +-0.023522 +0.658540 +0.387920 +-2.620379 +-0.008451 +0.955843 +0.832644 +0.901881 +0.731787 +0.643766 +0.510117 +0.934767 +0.801537 +-13.738649 +0.373152 +0.333461 +0.483411 +0.690737 +0.326513 +0.353162 +0.265309 +-1.123129 +0.379386 +0.787069 +0.879459 +0.226089 +0.840508 +0.244923 +0.742424 +0.920072 +0.909432 +0.904317 +0.630151 +0.399728 +0.617479 +0.520943 +0.324863 +0.317892 +0.620857 +0.542873 +0.621235 +0.679869 +0.600018 +0.795394 +0.740143 +0.813131 +0.663176 +0.781823 +0.734798 +0.769958 +0.585115 +0.850440 +0.714518 +0.699934 +0.587164 +0.714930 +0.637848 +0.868061 +0.659093 +0.745378 +0.781991 +0.711129 +0.713497 +0.948998 +0.813096 +0.365988 +0.401172 +0.633347 +0.908837 +0.187067 +0.469328 +0.994801 +0.986254 +0.652710 +0.871632 +-29.119238 +0.572323 +0.983243 +0.305902 +0.665306 +0.766074 +0.921992 +0.691240 +0.996438 +0.405309 +0.752983 +0.628507 +-75.529500 +0.262354 +0.873634 +0.395462 +0.356775 +0.275627 +-16.303978 +0.769101 +0.656082 +0.940207 +-2.236250 +0.551964 +0.746976 +0.665773 +0.871931 +0.411647 +0.758476 +0.766254 +0.426640 +0.866718 +0.745971 +0.296447 +0.718053 +0.331264 +0.801293 +0.460283 +0.525787 +0.700667 +0.317975 +0.998371 +0.438434 +0.881480 +0.906160 +0.904749 +0.727747 +0.807585 +0.551515 +0.899175 +0.172292 +0.825401 +0.939456 +0.808700 +0.946438 +0.867090 +0.344078 +0.943241 +0.673879 +0.753184 +0.943635 +0.928786 +0.639430 +0.614008 +0.919973 +0.286223 +0.935743 +0.964099 +0.986820 +0.911167 +0.566169 +0.894545 +0.822380 +0.815760 +0.454401 +-27.334234 +0.850239 +0.882546 +0.523678 +0.705477 +0.419331 +0.760133 +0.152601 +0.474530 +0.786055 +0.586925 +0.909207 +0.665375 +0.568457 +0.428778 +0.486952 +0.338625 +0.454650 +0.369734 +0.805400 +0.791231 +0.787617 +0.797289 +0.461732 +0.750568 +0.748687 +0.762236 +0.732978 +0.939915 +0.696509 +0.848787 +0.849183 +0.822491 +0.306952 +0.358453 +0.610664 +0.237833 +0.245553 +0.949925 +0.438841 +0.574976 +-0.230405 +0.593816 +0.608185 +0.336493 +0.238083 +0.638765 +0.790729 +0.765557 +0.841900 +0.784404 +0.634744 +0.922703 +0.399622 +0.656346 +0.763300 +0.292337 +0.240668 +0.417549 +0.431648 +0.665571 +0.361547 +0.233988 +0.684149 +0.907388 +0.526197 +0.418512 +0.287241 +0.448612 +0.393005 +0.336742 +0.416155 +0.446321 +0.611780 +0.524467 +0.503359 +0.775319 +-0.025556 +0.771484 +0.619747 +0.896961 +0.939245 +0.102421 +0.472137 +0.152531 +0.768822 +0.724359 +0.972573 +0.874747 +0.820097 +0.845221 +0.842224 +0.807077 +0.792933 +0.913868 +0.927929 +0.924498 +0.922325 +0.651953 +0.908852 +0.957510 +0.909284 +0.983263 +0.909685 +0.962093 +0.926360 +0.847137 +0.708069 +0.864323 +0.943305 +0.978596 +0.935591 +0.671568 +0.662879 +0.552585 +0.917950 +0.909625 +0.928872 +0.931231 +0.928872 +0.906860 +0.914072 +0.941601 +0.724007 +0.856768 +0.833965 +0.726158 +0.771181 +0.712947 +0.959017 +0.796249 +0.861598 +0.965986 +0.846590 +0.674888 +0.917461 +0.600752 +0.598273 +0.912533 +0.757124 +0.924356 +0.978999 +0.298533 +0.883393 +0.891688 +0.400986 +0.532315 +0.407049 +0.919941 +0.781680 +0.589250 +0.583070 +0.931928 +0.988481 +0.964960 +0.919593 +0.258625 +0.916379 +0.926038 +0.997078 +0.408688 +0.323070 +0.231586 +0.914452 +0.944845 +0.632397 +0.265007 +-0.150914 +0.925111 +0.512574 +0.932760 +0.998633 +0.868181 +0.980718 +0.932535 +0.964162 +0.167223 +0.417319 +0.023184 +0.296279 +0.956013 +0.942666 +0.334182 +0.663254 +0.935904 +0.944500 +0.926272 +0.195208 +0.921041 +0.881009 +0.550893 +0.355820 +0.815350 +0.321494 +0.909324 +0.385439 +0.936300 +0.965477 +0.909428 +-0.205144 +0.926727 +-0.015480 +0.920043 +0.555281 +0.622783 +0.810961 +0.937570 +0.866408 +0.652895 +0.899405 +0.848390 +0.704170 +0.863272 +0.615890 +0.996377 +0.922326 +0.789492 +0.922318 +0.784615 +-935.571463 +0.670048 +0.830573 +0.829151 +0.743951 +0.678741 +0.457327 +0.796766 +0.417803 +0.561718 +0.767782 +0.830558 +0.986997 +0.967504 +0.765851 +0.474948 +0.794349 +0.680599 +0.342686 +0.932895 +0.755648 +0.501668 +0.956787 +0.840674 +0.784779 +0.848056 +0.646858 +0.776054 +0.946103 +0.946103 +0.959926 +0.916023 +0.711159 +0.921811 +0.914517 +0.853981 +0.936650 +0.647002 +0.928637 +0.548169 +0.927314 +0.921880 +0.937422 +0.930627 +0.398260 +0.927570 +0.625367 +0.939048 +0.491906 +0.765911 +0.292331 +0.747532 +0.265930 +0.026666 +0.675740 +0.160912 +0.035563 +0.305133 +0.996117 +0.931992 +0.673204 +0.028028 +0.341939 +0.893570 +-1.567247 +0.325515 +0.849519 +0.659120 +0.780278 +0.315123 +0.619448 +0.180691 +0.996028 +0.102248 +0.745377 +0.583563 +0.825403 +0.544810 +0.726295 +0.863701 +0.857192 +0.591830 +0.128488 +0.951282 +0.599391 +0.729536 +0.726945 +0.855363 +0.949455 +0.586442 +0.551458 +0.708154 +0.895237 +0.815089 +-0.061519 +-5.011947 +0.513336 +0.033096 +0.451105 +0.909997 +0.956059 +0.827448 +-0.244669 +-765466.032260 +0.688917 +0.756823 +0.765789 +0.440417 +0.906604 +0.921348 +0.906284 +0.914136 +0.921252 +0.925886 +0.849638 +0.822758 +0.998239 +0.967025 +0.816072 +0.130831 +0.998242 +0.997997 +0.506409 +0.732584 +0.872078 +0.695188 +0.452590 +0.729134 +0.638658 +0.567333 +0.834931 +0.637284 +0.764977 +0.751142 +0.885793 +0.567755 +0.867533 +-0.041971 +0.282614 +0.041725 +0.267958 +0.298765 +0.994385 +0.624690 +0.577422 +0.697569 +0.831529 +0.541055 +0.915024 +0.724269 +0.284897 +0.933135 +0.750113 +0.927902 +0.921690 +0.968929 +0.770750 +0.847740 +0.726091 +0.909189 +0.713279 +0.756435 +0.954435 +-18.216564 +0.996063 +0.911585 +0.932640 +0.368289 +0.865577 +0.900034 +0.896333 +0.831435 +0.891916 +0.848715 +0.904645 +0.617073 +0.893839 +0.475747 +0.463959 +0.898489 +0.649930 +0.666109 +0.509706 +0.787528 +0.547232 +0.215818 +0.934824 +0.788555 +0.170608 +0.737076 +0.867301 +0.344937 +0.422810 +0.343998 +0.668038 +0.394133 +0.720752 +0.744311 +0.745976 +0.857765 +0.823070 +0.273644 +0.839323 +0.937106 +0.750864 +0.798480 +0.830998 +0.771931 +0.791968 +0.719221 +0.588723 +0.620701 +0.744719 +0.760676 +0.761230 +0.573841 +0.904066 +0.756338 +0.746883 +0.597103 +0.747125 +0.599417 +0.695120 +0.826589 +0.787779 +0.680257 +0.991229 +0.402179 +0.356027 +0.695468 +0.532103 +0.939152 +0.506697 +0.879287 +0.885108 +0.314255 +0.901273 +0.833656 +0.891533 +-0.014988 +0.271797 +0.246545 +0.979963 +0.753502 +0.742824 +0.976367 +0.434420 +0.872180 +0.002499 +0.444180 +0.155746 +0.922903 +0.389602 +0.335842 +0.330933 +0.809173 +0.907717 +0.963620 +0.965011 +0.768834 +0.900041 +0.637316 +0.857779 +0.932678 +0.860444 +0.668745 +0.840997 +-1.281042 +0.859281 +0.866997 +0.506054 +0.876809 +0.697990 +0.953029 +0.368473 +0.627014 +0.299200 +0.934258 +0.774898 +0.791507 +0.653528 +0.870806 +0.458578 +0.832741 +0.767067 +0.271921 +0.840615 +0.872557 +0.952098 +0.745110 +0.931264 +0.662699 +0.069338 +0.245860 +0.201922 +0.317169 +0.415462 +0.571460 +0.904913 +0.834784 +0.354838 +-24.759322 +0.812959 +0.443940 +0.174583 +0.936096 +-0.275147 +0.706384 +0.322593 +0.233110 +0.231884 +0.928272 +0.478215 +0.402845 +0.969428 +0.937453 +0.953315 +0.449285 +-0.052164 +0.906405 +0.709067 +0.415688 +0.704539 +0.776170 +0.487983 +0.404219 +0.382945 +0.906407 +0.867968 +0.523866 +0.361448 +0.386111 +0.951639 +0.785923 +0.857121 +0.907442 +0.677323 +0.615611 +0.427926 +0.959958 +0.362449 +0.831046 +0.999668 +0.927859 +0.114496 +0.629806 +0.677618 +0.471495 +0.492089 +0.368282 +0.370786 +0.926837 +0.386844 +0.937292 +0.807045 +0.248294 +0.893265 +0.599910 +0.961706 +0.583742 +0.884471 +0.224709 +0.298090 +0.582945 +0.766694 +0.420206 +0.926884 +0.866935 +0.925457 +0.489719 +0.294570 +0.390195 +0.800026 +0.177094 +0.971943 +0.938513 +0.769235 +0.784576 +0.697442 +0.448953 +0.278035 +0.361486 +0.338611 +0.570877 +0.439318 +0.368153 +0.950214 +0.840196 +0.432547 +0.237477 +0.553367 +0.498990 +0.218726 +0.833439 +0.690147 +0.588981 +0.292548 +0.908208 +0.200549 +0.328030 +0.385263 +0.436759 +0.808243 +0.581320 +0.491906 +0.537783 +0.337349 +0.984154 +0.359414 +0.948323 +0.558191 +0.613458 +0.711533 +0.438039 +0.518340 +0.799240 +0.918801 +0.931375 +0.921399 +0.907141 +0.979658 +0.565405 +0.985282 +0.924642 +0.936504 +0.924648 +0.490108 +0.936860 +0.321150 +0.520453 +0.798586 +0.927309 +0.452078 +0.918838 +0.578307 +0.307457 +0.913910 +0.472978 +0.564974 +0.563826 +0.580361 +0.717033 +0.534043 +0.605230 +0.219366 +0.775945 +0.427956 +0.494936 +0.443776 +0.355058 +0.927086 +0.900711 +0.521724 +0.920137 +0.673039 +0.649955 +0.497412 +0.551765 +0.584582 +0.477907 +0.322761 +0.982269 +0.941743 +-0.035489 +0.165953 +0.926589 +0.804128 +0.613550 +0.574513 +0.557528 +0.423299 +0.494667 +0.930597 +0.444311 +0.375648 +0.768124 +0.870894 +0.396995 +0.571638 +0.951090 +0.594946 +0.540312 +0.788839 +0.772928 +-0.538485 +0.198430 +0.524511 +-0.758596 +-0.274949 +0.111061 +0.180041 +-0.002465 +0.115117 +0.058273 +-0.074831 +0.452164 +-0.160339 +-0.058376 +-0.359152 +0.042654 +0.962668 +0.324390 +0.991574 +0.208023 +-0.017097 +0.222188 +0.926348 +0.739582 +0.959509 +0.422968 +0.553102 +0.558455 +0.456937 +0.573047 +0.277911 +0.476064 +0.276650 +0.772811 +0.864591 +0.653359 +0.735219 +0.874900 +0.982885 +0.785486 +0.713170 +0.428505 +0.745728 +0.933724 +0.247433 +0.211234 +0.996450 +0.022705 +0.396334 +-25.009658 +0.673520 +0.296418 +0.266486 +0.735373 +0.140750 +0.176758 +0.099575 +0.719100 +0.233547 +-0.120004 +0.843299 +0.808892 +0.923015 +0.691001 +0.808830 +0.870231 +0.883680 +0.906701 +0.814486 +0.979630 +0.303474 +0.827671 +0.656457 +0.925401 +0.853368 +0.970181 +0.856592 +0.921413 +-1.907717 +-1.948362 +0.806061 +-110.162648 +0.935940 +0.679357 +0.519986 +0.780939 +0.898604 +0.774133 +0.423288 +0.812955 +0.812955 +0.823905 +0.869524 +0.843253 +0.967215 +0.770672 +0.972786 +0.200944 +0.123173 +0.250139 +0.258925 +0.919506 +0.318935 +0.306529 +0.891775 +0.648299 +0.230274 +0.674805 +0.710884 +0.617030 +0.236942 +0.064523 +0.408173 +0.498709 +0.654071 +0.970373 +0.081497 +0.081483 +0.735187 +0.150972 +0.163726 +0.599502 +0.194462 +0.607987 +0.407889 +0.429672 +0.661787 +0.382558 +0.440111 +0.364637 +0.603047 +0.568830 +0.575985 +0.597661 +0.294241 +0.755473 +0.749882 +0.766473 +0.747540 +0.785211 +0.752642 +0.742020 +0.821276 +0.135169 +0.766705 +0.868970 +0.702118 +0.718201 +0.950358 +0.743165 +0.691526 +0.793835 +0.762260 +0.756998 +0.740993 +0.737020 +0.747690 +0.366863 +0.747550 +0.741987 +0.725133 +0.696256 +0.569238 +0.289955 +0.639886 +0.638772 +0.986205 +0.765298 +0.708115 +0.968544 +0.741467 +0.823973 +0.843724 +0.437565 +0.744714 +0.943883 +0.979842 +0.472528 +0.433487 +0.924115 +0.270080 +0.724492 +0.942260 +0.435534 +0.704324 +0.459418 +0.324305 +0.246300 +0.554179 +0.203237 +0.829202 +0.702743 +0.342318 +0.259199 +0.991047 +0.294459 +0.752432 +0.285398 +0.635706 +0.394151 +0.663730 +0.425261 +0.384993 +0.921462 +0.778995 +0.357420 +0.897413 +0.695791 +0.828626 +0.868400 +0.994785 +0.273558 +0.886224 +0.752384 +0.427785 +0.976499 +-1.416141 +0.845703 +0.994695 +0.304109 +0.427513 +0.428203 +0.564813 +0.961423 +0.933730 +0.914869 +0.895459 +0.539200 +0.928438 +0.854179 +0.590506 +0.894375 +0.899585 +0.735879 +0.759275 +0.701109 +0.827135 +0.489122 +0.701129 +0.699530 +0.721162 +0.899098 +0.377257 +0.546993 +0.920825 +0.513544 +0.646407 +0.983566 +0.922247 +0.267271 +0.883820 +-0.367702 +0.290810 +0.098432 +-0.003446 +0.379059 +0.133965 +0.328764 +0.267176 +-0.009930 +0.577350 +0.423776 +0.598352 +0.906574 +0.955748 +0.262955 +0.172918 +0.077884 +0.314976 +0.516197 +0.945736 +0.517411 +0.014719 +0.911979 +0.250227 +0.915928 +0.902592 +0.518883 +0.921511 +0.433952 +0.924135 +0.789955 +0.801345 +0.393775 +0.518125 +0.966451 +0.917246 +0.938085 +0.236666 +0.611640 +0.424137 +0.420876 +0.429930 +0.916327 +0.961837 +0.912453 +0.483083 +0.708740 +0.922162 +0.997375 +0.717319 +0.831152 +0.299278 +0.901640 +0.391312 +0.507190 +0.514352 +0.563780 +0.479632 +0.981602 +0.298090 +0.753540 +0.925518 +0.852851 +0.912476 +0.406913 +0.980225 +0.504484 +0.436147 +0.930742 +0.301932 +0.629673 +0.687981 +0.297828 +0.592780 +0.973881 +0.931550 +0.366197 +0.764148 +0.376612 +0.922379 +0.316752 +0.751654 +0.837033 +0.267078 +0.679417 +0.450736 +0.960262 +0.852902 +-150.562545 +0.482783 +0.792088 +0.410385 +0.822384 +0.547731 +0.831720 +0.842244 +-31.252700 +0.447544 +0.738693 +0.356506 +0.311647 +0.950455 +0.288912 +0.919144 +0.340120 +0.207030 +0.964534 +0.496153 +0.428058 +0.556643 +0.586646 +0.551008 +0.435184 +0.680216 +0.358095 +0.203107 +0.936255 +0.752024 +0.748413 +0.800714 +0.758835 +0.719581 +0.789382 +-66.878328 +0.606817 +-100.895277 +0.251739 +0.258294 +0.290956 +0.114531 +0.287163 +0.317271 +0.491820 +0.262251 +0.647035 +0.860409 +0.634536 +0.697232 +0.498812 +0.948811 +0.616242 +-0.198196 +-0.300647 +0.838070 +0.573958 +0.641983 +0.845952 +0.493504 +0.601131 +0.395978 +0.341255 +0.299109 +0.697333 +0.557515 +0.762591 +0.032893 +0.086150 +0.134406 +-1.881568 +-12.792780 +0.253745 +0.417075 +0.702506 +0.189822 +0.306927 +0.125253 +-532.047177 +0.139830 +0.905181 +0.305305 +0.229474 +0.387057 +0.139431 +0.570245 +0.529660 +0.579630 +0.760118 +0.431838 +0.124010 +0.672170 +0.981994 +0.768913 +0.846901 +0.784536 +0.975826 +0.925088 +0.160904 +0.952315 +0.902830 +0.070774 +0.894510 +0.499237 +0.774205 +0.345535 +0.362927 +0.938872 +0.782341 +0.919214 +0.934725 +0.881775 +0.571274 +0.731727 +0.861512 +0.700519 +0.831101 +0.922436 +0.603947 +-0.098395 +0.981959 +0.889704 +0.577408 +0.751619 +0.950547 +0.695546 +0.819904 +0.914024 +0.914975 +0.909632 +0.917216 +0.840403 +0.822278 +0.821491 +0.818986 +0.765180 +0.553869 +0.722508 +0.667982 +0.780950 +0.353467 +0.850190 +0.698486 +0.544630 +0.631438 +0.202254 +0.633367 +0.857490 +0.550981 +0.727766 +0.394196 +0.808089 +0.745335 +0.883055 +0.719352 +0.853961 +0.540825 +0.553173 +0.818149 +0.706502 +0.779245 +0.658433 +0.808684 +0.731286 +0.659384 +0.731416 +0.732312 +0.631605 +0.864436 +0.192467 +0.191427 +0.918614 +0.817178 +0.513603 +0.410903 +0.242160 +0.376099 +0.770306 +0.860736 +0.586044 +0.857952 +0.752084 +0.866008 +0.526051 +0.124726 +0.115658 +0.998063 +0.916612 +0.932492 +0.925614 +0.934213 +0.897120 +0.593667 +0.923862 +0.814793 +0.922437 +0.907548 +0.909287 +0.781622 +0.951460 +0.972825 +0.956014 +0.993936 +0.887246 +0.718596 +0.810298 +0.925480 +0.885528 +0.876810 +0.934947 +0.732760 +0.867761 +0.603067 +0.816808 +0.394395 +0.977809 +0.731806 +0.710821 +0.903306 +0.924559 +0.912887 +0.648442 +0.927718 +0.920925 +0.681400 +0.960217 +0.518063 +0.815639 +0.925312 +0.951849 +0.811234 +0.857259 +0.914456 +0.703770 +0.599221 +0.618414 +0.942538 +0.045616 +0.475039 +0.941163 +0.926089 +0.007542 +0.955188 +0.841176 +0.832284 +0.991345 +0.662165 +0.749096 +0.307669 +0.688677 +0.741492 +0.486441 +0.732103 +0.994628 +-3.292357 +-0.704373 +0.806509 +0.358378 +0.696827 +0.660516 +0.860131 +0.405001 +0.359675 +0.878994 +0.681951 +0.662873 +0.632967 +0.820437 +0.408061 +0.912004 +0.788821 +0.461269 +0.902608 +0.494506 +0.184413 +-0.698742 +0.646139 +0.621017 +0.415309 +0.041108 +0.713661 +0.900764 +0.537277 +0.681252 +0.016289 +0.475861 +-3.061440 +0.571523 +0.346022 +0.294178 +0.421828 +0.947710 +0.978179 +0.365476 +0.463725 +0.562239 +0.930152 +0.682242 +0.993752 +0.018690 +0.312247 +0.671808 +0.936391 +0.983226 +0.947046 +-9.613908 +0.724996 +0.838824 +0.573561 +0.886505 +0.878351 +0.881656 +-1682.237801 +0.752590 +0.870242 +0.881271 +0.739471 +0.930785 +0.596659 +0.319721 +0.237263 +0.425316 +0.398926 +0.525123 +0.056439 +0.167153 +0.557740 +0.445393 +0.592573 +0.511182 +0.678783 +-65396.964921 +-7310107758.453093 +0.361170 +0.835185 +0.265218 +0.531814 +0.657151 +0.577939 +0.665537 +0.732049 +-0.224179 +0.618049 +0.673808 +0.220018 +0.732567 +-247.696764 +0.829389 +0.493216 +0.577138 +0.832671 +0.714681 +0.157068 +0.938579 +0.791820 +0.967588 +0.797453 +0.392170 +0.249420 +0.263503 +0.449420 +0.492162 +-5.314887 +0.922343 +0.930802 +0.930956 +0.905588 +0.943790 +0.930384 +0.942051 +0.872797 +0.782401 +0.475442 +0.814387 +0.649635 +0.906728 +0.798582 +0.827669 +0.920416 +0.929767 +0.804298 +0.343305 +0.730086 +0.595856 +0.599054 +0.852349 +0.990338 +0.961956 +0.913976 +0.293776 +0.753777 +0.778655 +0.892244 +0.883675 +0.733336 +0.810368 +0.819489 +0.748757 +0.689859 +0.878625 +0.824946 +0.939617 +0.655696 +0.955208 +0.701743 +0.658798 +0.912036 +0.574063 +0.960407 +0.686511 +0.594494 +0.626395 +0.867442 +0.780005 +0.891723 +0.581876 +0.899188 +0.637200 +0.466628 +0.423239 +0.726241 +0.754508 +-9611778.709677 +0.258924 +0.576758 +0.782898 +0.725755 +0.587407 +0.750748 +0.279746 +0.250675 +0.217014 +0.689932 +0.272786 +0.874053 +0.461646 +0.486084 +0.442126 +0.419444 +0.408286 +-0.043215 +0.238059 +0.998718 +0.391391 +0.999567 +0.901909 +0.972378 +0.592954 +-0.108457 +0.600660 +0.189605 +0.135872 +0.168182 +0.353471 +0.398226 +0.310409 +-0.054573 +-94.056917 +0.357996 +0.716963 +0.030797 +0.108404 +0.048546 +0.390383 +0.097241 +0.282840 +0.058666 +0.325782 +0.266699 +0.510537 +0.317518 +0.033204 +0.062718 +0.229019 +0.100131 +0.552017 +0.272082 +0.250217 +0.955463 +0.831318 +0.607717 +0.442109 +0.704717 +0.755948 +0.586175 +0.762926 +0.567731 +0.467742 +0.831614 +0.783060 +-0.137781 +0.635059 +0.470312 +0.788365 +-0.089939 +0.299384 +0.551205 +0.447599 +0.652968 +0.654308 +0.157272 +0.473056 +0.027812 +-1.450864 +0.697351 +0.817759 +0.618535 +0.771400 +-0.337543 +0.157585 +0.011597 +0.887665 +0.669795 +0.366914 +0.497528 +0.394031 +0.250866 +0.108586 +0.011476 +0.529244 +0.557125 +0.244207 +0.059437 +0.146525 +0.669214 +0.975731 +-0.104938 +0.995872 +0.720076 +0.609671 +0.837102 +0.842678 +0.521687 +0.191112 +0.835887 +0.081823 +0.634043 +0.138087 +0.717059 +0.986478 +0.957449 +-0.010668 +-0.034723 +0.059182 +0.995757 +0.476059 +0.652632 +0.406683 +0.490517 +0.845770 +0.765494 +0.817956 +0.940185 +0.235126 +0.889563 +0.663270 +-0.138791 +0.517155 +0.886740 +0.499127 +0.496113 +0.407582 +0.505846 +0.244073 +0.464878 +0.759523 +0.767757 +0.864305 +0.520049 +0.776389 +0.277311 +0.931542 +0.840596 +0.588890 +0.756515 +0.594653 +0.708425 +0.384660 +0.668053 +0.924583 +0.924513 +0.663004 +0.463178 +0.646975 +0.095177 +0.440602 +0.582535 +0.554602 +0.543613 +0.942200 +0.604008 +0.184410 +0.620865 +0.555542 +0.955745 +0.362330 +0.417939 +0.839557 +0.575312 +0.392825 +0.585318 +0.928840 +0.498127 +0.926616 +0.158113 +0.358648 +0.445920 +0.377796 +0.554658 +0.953451 +0.473694 +0.685102 +0.878152 +0.592723 +0.585041 +0.555231 +0.595022 +0.586861 +0.907595 +0.942225 +0.581903 +0.624494 +0.606982 +0.912595 +0.926170 +0.522715 +0.922030 +-8.716360 +0.321466 +0.925844 +0.643596 +0.651829 +0.729150 +0.985610 +0.488687 +0.916706 +0.489905 +0.745334 +0.395222 +0.706339 +0.953651 +0.281662 +0.622075 +0.638844 +0.641588 +0.979964 +0.749796 +0.543979 +0.624553 +0.541127 +0.405662 +0.546565 +0.579150 +0.772741 +0.871090 +0.676437 +0.801643 +0.822069 +0.727139 +0.770844 +0.737622 +0.820913 +0.244809 +0.796312 +-3065.252514 +0.577002 +0.018116 +0.393722 +0.504581 +0.251230 +0.181579 +0.344947 +0.492682 +0.084681 +0.324254 +0.363891 +0.186610 +0.260382 +0.164906 +0.175551 +-0.255551 +0.592592 +0.991546 +0.854603 +0.937342 +0.991999 +0.938444 +0.753291 +0.911202 +0.773504 +0.833703 +0.940276 +0.877020 +0.921832 +0.842206 +0.977276 +0.969974 +0.755906 +0.272601 +0.784485 +0.625082 +0.814403 +0.872848 +0.910699 +0.987417 +0.533109 +0.495114 +0.985520 +0.330897 +0.967276 +0.770214 +0.791036 +0.336223 +0.431695 +0.638069 +0.855300 +0.659410 +0.284118 +0.297599 +0.459322 +0.271625 +0.690712 +0.993702 +0.625959 +0.845917 +0.342808 +0.872690 +0.533906 +0.201132 +0.301724 +0.237823 +0.625165 +0.620078 +0.564555 +0.149748 +0.404213 +0.619084 +0.611265 +0.594474 +0.420652 +0.978172 +0.506186 +0.372996 +0.873837 +0.970484 +0.877084 +0.455172 +0.980969 +0.904714 +0.214381 +0.222989 +-0.330380 +0.981667 +0.663950 +0.898223 +0.917868 +0.743577 +0.924451 +0.702862 +0.786480 +0.888158 +0.448655 +0.940373 +0.794188 +0.624492 +0.980937 +0.845068 +0.841108 +0.776451 +0.882962 +0.064278 +0.846103 +0.922708 +0.934405 +0.885298 +0.800933 +0.831589 +0.719400 +0.847554 +-0.128260 +-0.664663 +0.744838 +0.763465 +0.752546 +0.937858 +0.465281 +0.946643 +0.803941 +0.959706 +0.781284 +0.843049 +0.713382 +0.903510 +0.872464 +0.895541 +0.157779 +0.182784 +0.978587 +0.888409 +0.541840 +0.442851 +0.991043 +0.980207 +0.413785 +0.987160 +0.106618 +0.243817 +0.701977 +0.863866 +0.991543 +0.847589 +0.825252 +0.861333 +0.938793 +0.453184 +0.119183 +0.105659 +0.238193 +0.161237 +-0.334461 +0.950647 +0.157701 +0.949628 +0.824345 +-0.143381 +-0.711224 +-0.339568 +-0.016036 +-0.017879 +0.171135 +0.785160 +0.840826 +0.835114 +0.953640 +0.677947 +0.887019 +0.937057 +0.817222 +0.970331 +0.851023 +0.877684 +0.887142 +0.864516 +0.822882 +0.928063 +0.665694 +0.953205 +0.213980 +0.802340 +0.958966 +0.472484 +0.388911 +0.482617 +0.643453 +0.827668 +0.537016 +0.652070 +0.396609 +0.180168 +0.918609 +0.827994 +0.498679 +0.948226 +0.843524 +0.535761 +0.275038 +0.395394 +0.923914 +0.628940 +0.912257 +0.446528 +0.076161 +-949066.563186 +-4.564508 +0.352069 +0.339523 +0.883058 +0.998428 +0.625540 +0.887025 +0.292081 +0.540674 +0.249653 +0.682781 +0.471223 +-0.118443 +0.582723 +-82.112180 +0.882065 +0.655351 +0.450532 +0.517226 +0.286744 +0.546068 +0.550695 +0.882908 +0.634824 +0.688855 +0.630768 +0.729912 +-0.216700 +0.925002 +0.466954 +0.910036 +0.583465 +0.465969 +0.685801 +0.896907 +0.875954 +0.937373 +-0.387175 +0.888018 +0.873206 +0.664745 +0.265344 +0.937282 +0.415816 +0.924872 +0.759230 +0.568762 +0.660530 +0.385415 +0.505180 +0.486166 +0.595648 +0.809674 +0.685975 +0.716188 +0.723484 +0.459447 +0.795025 +0.222758 +0.779384 +0.650447 +0.715813 +0.314457 +0.941358 +0.499262 +0.630356 +0.665108 +0.716882 +0.746195 +0.904800 +0.927850 +0.692519 +0.683920 +0.813642 +0.446042 +0.911285 +0.556634 +0.437468 +0.359230 +0.767355 +-11.984411 +-0.547235 +-0.061223 +0.153831 +0.042679 +0.041956 +0.014915 +0.018117 +-3.717589 +0.811894 +-0.478408 +0.349081 +0.782526 +0.316127 +0.894283 +-0.083689 +0.077111 +0.405199 +0.450951 +0.254992 +0.282996 +0.305864 +0.136054 +0.283611 +0.307988 +0.441658 +0.522464 +0.386170 +0.912189 +0.175901 +-0.005254 +0.217127 +0.302532 +0.296316 +0.554186 +0.693215 +0.823054 +0.137043 +0.365965 +0.324632 +0.740949 +0.095660 +0.413080 +0.814471 +0.280274 +0.428040 +0.622298 +0.384647 +-0.330232 +0.935852 +0.303103 +0.720044 +0.131070 +0.898184 +-11160.284528 +0.514306 +0.515714 +0.775704 +0.801926 +0.728158 +0.875964 +0.536529 +0.214676 +0.615672 +0.220298 +-0.019208 +0.734500 +0.420244 +0.252836 +0.173968 +0.171864 +0.014335 +0.361077 +0.615455 +0.444632 +-0.009993 +0.647348 +0.949786 +0.888450 +0.930694 +0.755414 +0.749739 +0.933555 +0.753820 +0.635807 +0.379144 +0.756511 +0.915832 +0.594731 +0.786119 +0.865777 +0.718354 +0.990554 +0.614224 +0.334371 +0.678320 +0.728437 +0.737357 +0.870746 +0.855031 +0.742595 +0.932343 +0.798206 +0.730297 +0.796309 +-0.894510 +0.931458 +0.900695 +0.980788 +0.746567 +0.669391 +0.860500 +0.478548 +0.922289 +0.840870 +0.738806 +0.944220 +0.793582 +0.733805 +0.927437 +0.358817 +0.744777 +0.356009 +0.944881 +0.905712 +0.217540 +0.915634 +0.934272 +0.724156 +0.862347 +0.845576 +0.791981 +-0.369505 +0.778310 +0.312884 +0.469983 +0.692832 +0.702219 +0.720294 +0.540890 +0.399507 +0.518813 +-0.114451 +0.782168 +0.764368 +0.744656 +0.431394 +0.335419 +0.421226 +0.634685 +0.719724 +0.998123 +0.910231 +0.502982 +0.845504 +0.501311 +0.705189 +0.385572 +0.381592 +0.392099 +0.305701 +0.730476 +0.727061 +0.803438 +0.639871 +0.643360 +0.802447 +0.623225 +0.913429 +-0.125328 +0.862357 +0.988951 +0.904504 +0.607383 +0.678041 +0.979464 +0.904907 +0.818671 +0.649971 +0.909619 +0.828798 +0.913152 +0.550176 +0.763414 +0.667244 +0.809426 +0.310744 +-0.749243 +0.732734 +0.335825 +0.474981 +0.804523 +0.847446 +0.571664 +0.997093 +0.424698 +0.398988 +-5.311101 +0.713400 +0.140704 +0.159019 +0.358396 +0.328927 +0.124905 +0.835798 +0.161116 +0.506187 +0.426900 +0.179642 +0.426289 +0.143791 +0.011478 +0.368435 +0.231159 +0.172673 +0.182838 +0.201828 +0.797465 +0.665260 +0.331115 +0.173745 +0.826122 +0.091913 +0.206647 +0.526460 +0.170422 +0.927775 +0.430414 +-1.428324 +-0.274022 +0.533328 +-1.226346 +-0.020847 +-1.994385 +0.058947 +0.623632 +0.655293 +-0.385032 +0.257219 +0.579883 +0.103178 +0.812816 +0.886446 +0.714227 +0.270395 +0.905733 +0.632470 +0.651522 +0.771681 +0.756403 +0.301237 +0.890630 +0.878190 +0.846521 +0.639226 +0.848027 +0.851692 +0.783497 +0.762310 +0.895487 +0.952647 +0.929430 +0.925627 +0.764403 +0.973154 +0.962863 +0.969720 +0.725511 +0.659128 +0.975916 +0.000748 +0.900948 +0.815882 +0.125246 +0.214437 +0.285007 +0.095866 +0.019121 +0.055801 +-57.883311 +0.127528 +0.247658 +0.539619 +0.738162 +-0.228816 +0.678139 +0.667275 +0.529327 +-0.235872 +0.920090 +-0.193790 +0.673662 +0.822690 +0.748303 +0.588179 +0.892927 +0.961361 +0.934342 +0.968889 +0.852922 +0.515579 +0.424082 +0.744788 +0.834994 +0.084275 +0.592473 +0.449890 +0.546371 +-0.127898 +0.950122 +0.187130 +0.017296 +0.638571 +0.840726 +0.841997 +0.846021 +0.849252 +0.798688 +0.010529 +0.813709 +0.786684 +0.835473 +0.727539 +0.654180 +0.860403 +0.827836 +0.831230 +0.871484 +0.859342 +0.864517 +0.682472 +0.750151 +0.696263 +0.882784 +0.823070 +0.832562 +0.717905 +0.731374 +0.850865 +0.853451 +0.748838 +0.877879 +0.571309 +0.737480 +0.636520 +0.802389 +0.845038 +0.859215 +0.818799 +0.997704 +0.225048 +0.890408 +0.598974 +0.741902 +0.638472 +0.394555 +0.444124 +0.082512 +-0.827718 +0.458987 +0.744143 +0.533027 +0.541376 +0.385802 +0.199317 +0.753017 +0.768818 +0.655786 +0.481381 +0.430455 +0.169607 +0.171732 +0.822782 +0.930068 +0.007776 +0.121891 +0.551853 +0.699425 +0.126890 +0.857523 +0.602502 +0.687474 +-0.144269 +0.462332 +0.746623 +0.739263 +0.178345 +0.103380 +0.627164 +0.118533 +0.311822 +0.794414 +0.579149 +0.862057 +0.519109 +0.142160 +0.786102 +0.758251 +0.404535 +0.225373 +0.597172 +0.446216 +0.107066 +0.235537 +0.053312 +0.057976 +0.529187 +0.338294 +0.810853 +0.509667 +0.573754 +0.937681 +0.977368 +0.055331 +0.854042 +0.712909 +0.805867 +0.460898 +0.299435 +0.093094 +0.580908 +0.064745 +0.353256 +0.813300 +0.436757 +0.196464 +0.932690 +-0.014609 +0.308829 +-0.024777 +0.621292 +0.099485 +0.326949 +0.479421 +0.842450 +0.944806 +0.761340 +0.538561 +0.287831 +0.082938 +0.588913 +0.314258 +0.944385 +0.465758 +0.168929 +0.154828 +0.770018 +0.216772 +0.314085 +0.837222 +0.678860 +0.645154 +0.065368 +0.819743 +0.075782 +0.413620 +0.266906 +0.911968 +0.613925 +0.412772 +0.096381 +-0.217362 +0.314022 +0.177062 +0.966834 +0.757993 +0.862500 +0.468672 +0.947722 +0.798837 +0.901497 +0.830545 +0.956952 +0.964115 +0.756921 +0.156379 +0.136130 +0.470015 +0.648711 +0.165765 +0.444677 +0.227869 +0.877539 +0.891034 +0.306009 +0.857089 +-1.213721 +0.672125 +0.240119 +0.352015 +-0.296634 +0.759680 +0.378121 +0.863528 +0.574651 +0.851801 +0.140675 +0.903786 +0.811717 +0.752112 +0.980576 +0.901108 +0.566865 +0.817108 +0.425533 +0.899052 +0.483463 +0.830446 +0.816448 +0.526523 +0.816872 +0.885920 +0.918562 +0.854078 +0.461864 +0.337516 +0.966754 +0.944275 +0.838432 +0.723933 +0.417749 +0.599920 +0.926854 +0.600206 +0.699153 +0.769468 +0.929206 +0.989531 +0.747897 +0.512572 +0.989713 +0.452047 +0.904998 +0.826658 +0.807072 +0.895883 +0.382145 +0.908925 +0.945069 +0.945208 +0.844186 +0.297132 +0.220415 +0.649504 +0.403789 +0.336773 +0.330910 +0.556573 +0.316040 +0.338596 +0.929360 +0.482153 +0.948923 +0.703400 +0.930923 +0.825572 +0.356509 +0.853265 +0.919448 +0.918470 +0.105900 +0.558409 +0.962584 +0.985509 +0.472390 +0.726478 +0.987251 +0.368496 +0.810708 +0.268590 +0.736781 +0.459180 +-0.055986 +0.733380 +0.280180 +0.675534 +0.541788 +0.588314 +0.458599 +0.825324 +0.820608 +0.923895 +0.918578 +0.958883 +0.957859 +0.854106 +0.664086 +0.447989 +0.460700 +0.667141 +0.490854 +0.957684 +0.662983 +0.478802 +0.345271 +0.749095 +-0.006136 +0.575219 +0.815319 +-0.242823 +0.819786 +0.845923 +0.908579 +0.495997 +0.661653 +0.911047 +0.160425 +0.946065 +0.544820 +0.482783 +0.030011 +0.145217 +0.698702 +0.903442 +0.026660 +-0.031565 +0.473786 +0.604530 +0.499081 +0.442012 +0.442012 +0.483667 +0.890519 +0.744032 +0.481125 +0.466732 +0.405974 +0.520432 +0.454875 +0.562094 +-0.025786 +-0.162398 +0.443233 +0.691739 +0.691739 +0.505996 +0.505996 +0.484179 +0.467757 +0.739909 +0.580955 +0.481750 +0.482022 +0.370666 +0.742576 +0.904634 +0.935847 +0.419314 +0.500932 +0.471646 +0.579440 +0.949443 +0.839363 +0.850173 +0.509788 +0.819199 +0.531257 +0.679918 +0.853721 +0.848908 +0.871033 +0.953585 +0.565562 +0.100206 +-0.060981 +0.979320 +0.815589 +0.988481 +0.846930 +0.948053 +0.937801 +0.631145 +0.580980 +0.829622 +0.929625 +0.779550 +0.592414 +0.935624 +0.327763 +0.956104 +0.876655 +0.731151 +0.952204 +0.940134 +0.973433 +0.874158 +-0.015732 +0.247944 +0.332947 +0.456802 +0.455140 +0.397777 +0.078655 +0.101776 +0.101776 +-1.506442 +0.360513 +0.723566 +0.819203 +0.777090 +0.364488 +0.246532 +0.900658 +-1.382376 +0.708065 +0.577703 +0.180434 +0.711243 +0.521534 +0.482058 +0.771232 +0.777404 +0.915190 +0.026245 +-0.079366 +0.048624 +0.662801 +0.601905 +0.218925 +-2.144436 +0.479451 +0.046691 +0.176908 +0.799297 +0.738914 +0.533635 +0.705512 +0.487478 +0.358708 +0.108756 +0.466670 +0.685313 +0.246448 +0.271643 +0.524313 +0.053292 +0.427962 +0.285561 +0.448101 +0.830565 +0.140443 +0.705034 +0.677749 +0.569293 +0.756621 +0.190393 +0.327891 +0.546008 +0.739849 +0.784718 +0.385345 +0.882015 +0.315855 +0.018373 +0.496971 +0.373031 +0.455914 +0.474223 +0.273237 +0.699163 +0.061160 +0.198109 +0.402554 +0.812253 +-0.994555 +0.089635 +0.082453 +0.180626 +0.329905 +-0.003697 +-0.901926 +0.544425 +0.555712 +0.708088 +0.229485 +0.298760 +0.219390 +0.813555 +0.281555 +0.074143 +0.257219 +0.473348 +0.698901 +0.707407 +0.540056 +0.037589 +0.019551 +0.592031 +0.923074 +0.772916 +0.141112 +0.822104 +0.378009 +0.002336 +0.157905 +0.045788 +-1.831858 +0.218927 +0.819177 +0.945826 +0.761628 +0.985802 +0.295060 +0.145386 +-0.001500 +-0.017562 +0.870358 +0.481621 +0.977229 +0.924294 +0.814256 +0.007686 +0.315605 +0.351033 +0.313432 +0.222732 +0.361949 +0.518120 +0.931353 +0.616998 +0.963358 +0.709831 +0.491899 +0.916749 +0.623746 +0.557373 +0.349439 +0.573862 +0.978955 +0.368258 +-0.133870 +0.845573 +0.610480 +0.961766 +0.961468 +0.590437 +0.239357 +0.703846 +0.410875 +0.952127 +0.390809 +0.598149 +0.687995 +0.355728 +0.494082 +0.530398 +0.525394 +0.403190 +0.873663 +0.816622 +0.793557 +0.877961 +0.578291 +0.371047 +0.437858 +0.473918 +0.385289 +-0.160764 +0.962942 +0.409165 +0.912916 +0.454983 +0.926006 +0.955983 +0.508741 +0.156575 +0.865011 +0.389390 +0.777738 +0.420185 +0.831760 +0.033769 +0.751705 +0.528574 +0.425896 +0.207471 +0.093289 +0.464828 +0.008223 +0.681604 +0.970766 +0.560115 +0.230469 +0.180747 +0.111194 +0.360441 +0.419899 +0.991386 +0.536604 +0.279743 +0.818752 +0.551395 +0.319120 +0.813653 +0.219228 +0.456324 +0.377082 +0.008084 +0.991414 +0.769813 +0.945849 +0.630584 +0.969604 +0.984723 +0.366887 +0.548882 +0.838207 +0.926372 +0.455632 +0.806238 +0.241441 +0.534417 +0.530123 +0.815389 +0.228576 +0.484217 +0.226826 +0.425373 +-0.070631 +0.303841 +0.342521 +0.800315 +0.835913 +0.412234 +0.585048 +0.454580 +0.469576 +0.729503 +0.096851 +0.276196 +0.265281 +0.285864 +0.441927 +0.647594 +0.484751 +0.993898 +0.605839 +0.797544 +0.011456 +0.682392 +0.368004 +0.674866 +0.039781 +0.699920 +0.734449 +0.359101 +0.295076 +0.308677 +0.241049 +0.527512 +0.586848 +0.815043 +-0.185434 +0.769751 +0.114488 +0.950609 +0.478247 +-1014010.694678 +0.717186 +0.600114 +0.729780 +0.192257 +0.579943 +0.475941 +0.463044 +0.987694 +0.721854 +-9.222823 +0.344390 +0.895571 +0.455663 +0.805256 +0.893415 +0.128444 +0.646701 +0.853970 +0.301067 +0.052912 +0.541983 +0.729966 +0.517671 +0.610398 +0.023123 +0.193998 +0.974471 +0.442449 +0.894535 +0.883076 +0.377630 +0.015121 +-0.221458 +0.837089 +0.845791 +0.925316 +0.670110 +0.599327 +0.804663 +0.538821 +0.783459 +0.917740 +0.926753 +0.924260 +0.455008 +0.441813 +0.923082 +0.928439 +0.380913 +0.653519 +0.459723 +0.059761 +0.345393 +0.414030 +0.542270 +0.952188 +0.514607 +0.979665 +0.932874 +0.554407 +0.784835 +0.918518 +0.918774 +-0.032628 +0.936779 +0.895906 +0.304027 +0.466610 +0.922595 +0.489737 +0.580099 +0.912784 +0.944154 +0.641479 +0.797956 +0.619015 +0.217717 +0.776207 +0.927323 +0.942436 +0.411671 +0.523357 +0.201087 +0.515318 +-8.553789 +0.138974 +-0.003569 +0.182129 +0.114033 +0.157771 +0.709426 +0.565500 +0.317606 +0.078936 +0.828983 +0.058428 +0.445799 +0.324227 +0.636372 +0.522064 +0.370091 +0.935948 +0.050950 +0.609337 +0.475104 +0.105736 +-0.308169 +0.274226 +0.790728 +0.629674 +0.229365 +0.736486 +0.053613 +0.398648 +0.221044 +0.372964 +0.770784 +0.086119 +0.655100 +0.451268 +0.162812 +0.165592 +0.522734 +0.453062 +0.185578 +0.995713 +-0.021757 +0.963878 +0.518350 +0.407048 +0.640663 +0.411509 +0.496717 +0.450984 +0.442778 +0.665626 +0.852637 +-7.238535 +0.470417 +0.895756 +0.995937 +-0.424109 +0.990711 +0.451764 +0.535274 +0.662213 +0.653470 +0.758491 +0.939640 +0.988745 +0.732964 +0.151142 +0.931330 +-2.535062 +0.552046 +0.551692 +0.551799 +0.551748 +0.551743 +0.576648 +0.576648 +0.576648 +0.868531 +0.495362 +0.389970 +0.255392 +0.261656 +0.404321 +0.645522 +-3.241771 +0.503003 +0.409486 +0.720341 +-0.170843 +0.684556 +0.907727 +-0.174570 +0.741856 +0.919995 +0.970839 +0.764949 +0.296474 +0.669031 +0.834813 +0.394338 +0.741294 +0.462854 +0.660501 +0.761579 +0.512193 +0.676040 +0.667680 +-0.159937 +-0.176223 +0.916375 +0.553210 +0.831759 +0.435189 +0.430202 +-0.186900 +0.584861 +0.888528 +-0.186334 +0.740665 +0.932637 +0.814707 +0.809216 +-0.075055 +0.698847 +0.876021 +0.886473 +0.359453 +0.910387 +0.973387 +0.686216 +0.993587 +-4.155688 +-0.068746 +0.720430 +0.931506 +0.922813 +0.543892 +0.688936 +0.392713 +0.759417 +0.806695 +0.919822 +0.931725 +0.828027 +0.908221 +0.655735 +0.677516 +0.808889 +0.683214 +0.363614 +0.928185 +0.103917 +0.862196 +0.697812 +0.688547 +0.534587 +0.890183 +0.872986 +0.503055 +-0.596000 +0.763336 +0.173639 +0.609282 +0.474598 +0.537981 +0.168667 +0.645114 +0.824523 +0.139422 +0.786324 +0.701909 +0.418049 +0.061589 +0.201117 +0.195910 +0.883887 +-47.120191 +0.123872 +0.834944 +0.263009 +0.151237 +0.275735 +0.154022 +0.860140 +0.360738 +0.381374 +0.750021 +-0.507887 +0.952696 +0.677025 +0.671610 +0.071727 +0.339422 +0.925054 +0.850643 +-0.438315 +-0.064597 +-0.070175 +-0.234257 +0.367027 +0.672358 +-7.431547 +0.824237 +0.515072 +0.599897 +0.061020 +0.900187 +0.187068 +0.899415 +0.897611 +-3.183128 +0.246041 +0.367486 +0.004703 +0.391749 +0.623824 +0.088438 +0.773320 +0.647331 +0.458617 +0.349178 +0.182423 +0.154037 +0.817532 +-27.075077 +0.245266 +0.994356 +0.938350 +-0.560941 +0.480185 +0.929189 +0.688968 +0.911742 +-0.031252 +0.250117 +-18.515787 +0.119475 +0.463053 +-0.070189 +0.514103 +0.734582 +0.046322 +0.931163 +-0.114093 +0.764170 +0.787512 +0.855353 +0.521435 +0.971270 +0.861224 +0.133733 +-1.120574 +0.920592 +0.780719 +0.787496 +0.727493 +0.542195 +0.944576 +-0.016597 +0.796296 +0.522912 +0.990142 +0.244679 +0.360368 +0.805191 +0.844123 +0.517919 +0.862708 +0.867215 +0.652626 +0.836563 +0.810357 +0.914177 +0.944333 +0.935846 +0.820072 +0.886557 +0.592123 +0.298124 +0.590819 +0.482613 +0.980247 +-0.273144 +-0.214912 +0.242667 +0.505381 +0.510896 +0.340613 +0.423410 +0.647023 +0.425945 +0.945507 +0.917035 +0.205771 +0.909578 +0.957317 +0.615034 +0.886940 +0.834544 +0.910509 +0.918577 +0.822846 +0.921602 +0.935610 +0.922036 +0.924642 +0.778161 +0.738298 +0.914093 +0.001225 +-40.472185 +0.475063 +0.888726 +0.827960 +0.803437 +0.725324 +0.304602 +0.748172 +0.949573 +0.941369 +0.880522 +0.560472 +0.997872 +0.940117 +0.017655 +0.851747 +0.846137 +0.937649 +0.561572 +0.539719 +0.333015 +0.925755 +0.905741 +0.955451 +0.937898 +0.662640 +0.429631 +0.961319 +0.526013 +-0.175088 +0.942731 +0.270374 +0.977457 +0.866271 +0.614239 +0.482142 +0.600503 +0.736465 +0.928556 +0.918531 +0.629632 +0.776292 +0.925496 +0.278830 +0.850399 +0.970728 +0.739855 +0.783172 +0.532936 +0.949431 +0.934732 +0.897133 +0.994842 +0.933387 +0.131220 +0.511735 +0.895461 +0.871006 +0.962176 +0.507904 +0.889333 +0.411949 +0.350548 +0.677266 +0.438362 +0.912889 +0.934297 +0.506723 +0.977040 +0.916165 +0.539084 +0.369210 +0.403377 +0.867929 +0.890209 +0.485749 +0.933199 +0.956217 +0.935217 +0.933614 +0.975105 +0.433228 +0.556312 +0.399292 +0.317700 +0.297958 +0.895027 +0.864920 +0.824004 +0.892776 +0.734838 +0.533373 +0.624824 +0.741844 +0.850950 +0.884495 +0.565165 +0.873767 +0.846814 +0.811453 +0.228094 +0.954993 +0.750035 +0.262606 +0.789861 +0.307568 +0.506861 +0.896543 +0.600582 +0.747435 +-0.207605 +0.042798 +0.080271 +0.911938 +0.063059 +0.711131 +-0.339508 +0.405798 +0.015796 +0.826762 +0.123606 +0.311693 +0.305388 +0.204229 +0.144496 +0.862387 +0.063517 +-0.195435 +-0.098813 +0.629268 +0.066434 +-0.397915 +0.840296 +-0.226838 +0.958165 +0.189558 +0.511474 +0.380160 +0.457983 +0.145536 +0.943627 +0.940368 +0.049541 +0.817844 +0.883853 +0.840909 +0.495784 +0.627664 +0.864918 +0.583699 +0.899247 +0.368859 +0.875317 +0.141497 +0.830370 +0.519133 +0.843128 +0.821344 +0.312158 +0.804987 +0.889388 +0.967684 +0.980931 +0.378209 +0.540106 +0.607089 +0.909865 +0.944416 +0.748650 +0.845456 +0.943114 +0.210596 +0.408140 +0.469481 +0.376432 +0.505558 +0.861145 +0.884217 +0.742575 +0.480233 +0.938761 +0.761571 +0.762742 +0.405700 +0.401574 +0.555497 +0.434181 +0.347286 +0.842077 +0.776685 +0.557536 +0.609057 +0.616754 +0.644124 +0.868194 +0.289913 +0.982228 +0.862443 +0.468128 +0.571693 +0.657196 +0.295851 +0.448429 +0.577101 +0.235987 +0.512596 +0.836222 +0.541175 +0.513824 +0.572970 +0.661876 +0.727585 +0.251672 +0.556488 +0.290559 +0.933476 +0.901681 +0.728015 +0.727938 +0.772757 +0.847432 +0.804921 +0.753307 +0.728254 +0.839787 +0.968941 +0.879552 +0.451421 +0.192842 +0.894126 +0.651189 +0.477270 +0.391484 +0.525618 +0.928072 +0.912449 +0.697738 +0.481910 +0.949867 +0.447729 +0.373521 +0.532441 +0.577272 +0.960621 +0.922270 +-0.302947 +0.338939 +0.763387 +0.291159 +0.358844 +0.575916 +0.404436 +-0.400034 +0.455609 +0.749411 +0.909335 +-0.154878 +0.699087 +0.734771 +0.921356 +0.932076 +0.370017 +-0.069207 +0.921367 +0.668127 +0.803400 +0.585593 +0.840474 +0.277652 +0.972190 +0.952586 +0.894989 +0.667705 +-0.425788 +0.727492 +0.806596 +0.701393 +-0.429942 +0.990865 +0.085887 +-3.209395 +0.534245 +0.461945 +0.436813 +0.439882 +0.227584 +0.864398 +0.791759 +0.227892 +0.707755 +0.767697 +0.959275 +0.887026 +0.381684 +0.754426 +0.291742 +0.609395 +0.690065 +0.808198 +0.373925 +0.649717 +0.956914 +0.459475 +0.766756 +0.624199 +0.644061 +0.769073 +0.429856 +0.542523 +0.925981 +0.511547 +0.884902 +0.405818 +0.454970 +0.878125 +0.629112 +0.926955 +0.642192 +0.608232 +0.934922 +0.771640 +0.254902 +0.599536 +0.918775 +0.918864 +0.446031 +0.541052 +-0.075736 +0.593702 +0.615491 +0.969339 +0.696031 +0.399358 +0.937513 +0.069354 +0.970199 +0.821599 +0.725977 +0.773691 +0.444291 +0.713364 +0.803766 +0.587878 +0.488373 +-0.266183 +0.888983 +0.564148 +0.251769 +0.296830 +0.287530 +0.896210 +0.147361 +0.153489 +0.896209 +0.891651 +0.465746 +0.582782 +-0.225845 +0.569098 +0.977652 +0.696148 +-0.448892 +0.469795 +-0.060649 +0.911640 +0.982999 +0.763314 +0.822365 +0.257405 +0.952784 +0.148745 +0.296589 +0.697980 +0.302719 +0.904330 +0.668439 +0.195209 +0.075026 +0.626909 +0.609473 +-0.031066 +0.755233 +0.700176 +0.119099 +0.230637 +0.122087 +-1.300014 +0.488225 +-14.289157 +0.064658 +0.043330 +0.996848 +0.459540 +0.338306 +0.415532 +0.481331 +0.579951 +0.265144 +0.228477 +0.599082 +0.249113 +0.776073 +0.427920 +0.381285 +0.675016 +0.628453 +0.374391 +0.856411 +0.717509 +0.426667 +0.700325 +0.587447 +0.622346 +0.895745 +0.386349 +0.515513 +0.311734 +0.906492 +0.361676 +0.202738 +0.538812 +0.404621 +0.431956 +0.850739 +0.433918 +0.343351 +0.432341 +0.491495 +0.892170 +0.909896 +0.241079 +0.836842 +0.836896 +0.787221 +0.616249 +-0.000820 +0.897080 +0.905309 +0.788684 +0.950647 +0.810883 +0.107630 +0.892390 +0.692757 +0.728974 +0.505998 +-0.171237 +0.430079 +0.822255 +0.904783 +0.873624 +0.788976 +-0.170159 +0.556709 +0.410250 +0.895094 +0.461472 +0.557683 +0.209620 +0.647163 +0.362249 +0.845688 +0.846486 +0.817340 +0.347470 +0.763339 +0.439948 +0.585612 +0.758776 +0.584533 +-14.449011 +0.970501 +0.755153 +0.987001 +0.828369 +0.067636 +0.930497 +0.708422 +0.884849 +0.434225 +0.613394 +0.914759 +0.905081 +-0.000374 +0.365718 +-0.123321 +0.442485 +0.793310 +0.912551 +-410735248851.213074 +0.443878 +0.495087 +0.689611 +0.335236 +0.382186 +0.661945 +0.769531 +0.982945 +0.296854 +0.638144 +0.357655 +0.820968 +0.901658 +0.422978 +0.669734 +0.978266 +0.693237 +0.418254 +0.238180 +0.475810 +0.265346 +0.549827 +0.125838 +0.127211 +0.380966 +-0.000035 +0.287985 +0.931050 +0.867053 +0.956475 +0.964436 +0.532162 +0.745082 +0.619415 +0.835344 +0.611236 +0.575134 +0.593736 +0.885783 +0.928524 +0.667469 +0.684109 +0.843947 +0.745753 +0.667821 +0.921116 +-0.000174 +0.874321 +0.412328 +0.218553 +0.599424 +0.892546 +0.125783 +0.838903 +0.229525 +0.539861 +0.602879 +0.541552 +0.170730 +0.871025 +0.634868 +0.742252 +0.817801 +-0.084986 +0.990188 +0.524834 +0.990241 +-0.000404 +0.203118 +0.478330 +0.852947 +0.931094 +0.423030 +0.553940 +0.415656 +0.312343 +0.032878 +0.856167 +0.416181 +0.720785 +-0.398455 +0.159535 +-0.040861 +0.394166 +0.924180 +0.022083 +0.283274 +0.570979 +0.993699 +0.929923 +0.228461 +0.785680 +0.306497 +0.432284 +-0.443276 +0.383109 +0.821099 +0.148102 +0.163605 +0.045888 +0.598195 +0.769368 +0.740704 +0.534572 +0.899071 +0.564886 +0.886021 +0.530614 +0.923367 +0.554990 +0.885718 +0.694381 +0.792563 +0.449973 +0.857408 +0.583127 +0.783325 +0.454533 +0.908858 +0.789376 +0.660992 +0.827158 +0.889749 +0.987241 +0.903223 +0.445181 +0.558011 +0.149449 +0.378176 +0.175820 +0.893381 +0.977890 +0.941834 +-0.658907 +0.638051 +0.833061 +0.031188 +0.567099 +0.329690 +0.348958 +-2.842409 +0.871082 +0.659761 +0.267473 +0.280100 +0.723125 +0.591486 +0.298211 +0.849305 +0.298464 +0.598245 +0.322243 +0.890607 +0.854029 +0.850637 +0.841641 +0.927131 +0.179803 +0.655087 +0.203051 +0.495743 +-0.670840 +0.673496 +0.109707 +0.251527 +0.996192 +0.154351 +0.411414 +0.096404 +0.070673 +0.698558 +0.900004 +0.518451 +0.234232 +0.376650 +0.901531 +-0.017603 +0.978566 +0.926641 +0.790100 +0.466928 +0.659821 +0.866160 +0.902158 +0.921399 +0.929989 +0.992059 +0.928427 +0.769756 +0.926106 +0.834437 +0.958397 +0.802165 +0.948366 +0.489448 +0.851295 +0.972500 +0.924426 +0.335178 +0.190211 +0.438568 +0.157373 +0.043859 +0.745573 +0.017582 +0.026397 +0.419827 +0.873428 +0.164761 +0.025310 +0.566331 +0.795178 +0.371710 +0.362411 +0.312855 +-0.457984 +0.772700 +0.782957 +0.904083 +0.048872 +0.254791 +0.767858 +0.045314 +0.228921 +0.128421 +0.704492 +0.338888 +0.153611 +0.522288 +0.217464 +0.621963 +0.475554 +0.603869 +0.923000 +0.786321 +0.086226 +0.929921 +0.252062 +0.208914 +0.915232 +-0.447795 +0.439993 +-0.074386 +0.891422 +0.411201 +0.934733 +0.212431 +0.242965 +0.445403 +0.752161 +0.429385 +0.910384 +0.583801 +0.345753 +0.869025 +0.534600 +0.164922 +0.307460 +0.762489 +0.036714 +0.912749 +-0.585069 +0.119376 +0.858701 +0.592444 +0.544461 +0.655035 +0.930450 +-0.092363 +0.613189 +0.812602 +0.600807 +-0.250697 +0.787280 +0.225151 +-0.149155 +0.845117 +0.915282 +0.993406 +0.390370 +0.938845 +0.488781 +0.745907 +0.411138 +0.881528 +0.914577 +0.050444 +0.742645 +0.735497 +0.961969 +0.921006 +0.433272 +0.640428 +0.908057 +0.508659 +0.906871 +0.936226 +0.889665 +0.817735 +0.810815 +0.839779 +0.697325 +0.750061 +0.857881 +0.826021 +0.835285 +0.928281 +0.916209 +0.722643 +0.831813 +0.575562 +0.931231 +0.911297 +0.715498 +0.932923 +0.875358 +0.724754 +0.929881 +0.728260 +0.707034 +0.507558 +0.952707 +0.724662 +0.944445 +-0.285116 +0.773344 +0.456774 +0.932833 +0.329552 +-0.251523 +0.011899 +0.902819 +0.832089 +0.510384 +0.818226 +0.612602 +0.413500 +-0.104003 +0.679028 +0.621512 +0.629314 +0.676167 +0.647211 +0.040924 +0.931423 +0.757782 +0.801753 +-0.258126 +0.860909 +0.814782 +0.849277 +0.925867 +0.691821 +0.929051 +0.305483 +0.851223 +0.321914 +0.432338 +0.952700 +0.646213 +0.685513 +0.433208 +-1.161354 +0.482475 +0.726654 +0.660494 +0.446118 +0.779781 +0.492471 +0.492471 +0.492471 +0.489156 +0.492484 +0.932844 +0.803781 +0.736098 +0.572068 +0.875425 +0.927055 +0.359808 +0.708150 +0.804108 +0.998818 +0.974635 +0.993715 +0.150994 +0.751163 +0.860043 +0.098283 +0.115265 +0.791401 +0.555331 +0.901541 +0.547270 +0.112860 +0.886363 +0.776950 +0.040009 +-0.377090 +0.270662 +0.495802 +0.239621 +0.045291 +0.400462 +0.311254 +0.983177 +0.122071 +0.217199 +0.255776 +0.235224 +0.119852 +0.770490 +0.579053 +0.486570 +0.096975 +0.996886 +0.267159 +0.342951 +0.312471 +0.653976 +0.771039 +0.815893 +0.382698 +0.226043 +0.332891 +0.262764 +0.906514 +0.781955 +0.955942 +0.336156 +0.928020 +0.213754 +0.626638 +0.785291 +0.926249 +0.950781 +0.927547 +0.823233 +0.918922 +0.919223 +0.955086 +0.659637 +0.913819 +0.910073 +0.907181 +0.428739 +0.374218 +0.838536 +-0.537928 +-0.214790 +0.613623 +0.632146 +-0.119838 +0.483432 +0.659086 +0.930299 +-0.261975 +-0.225379 +0.962632 +0.596412 +0.992159 +0.780794 +0.482749 +0.703079 +0.155579 +0.339253 +-0.278622 +0.557362 +0.797832 +-0.286955 +-0.264230 +0.691386 +0.102152 +0.022426 +0.673953 +0.670676 +0.649615 +0.723739 +0.270964 +0.621935 +0.859698 +0.674827 +0.685002 +0.868048 +0.886203 +0.826142 +0.689372 +0.914258 +-0.171016 +0.913626 +0.657798 +0.778062 +0.094335 +-0.036846 +0.259295 +-0.120417 +0.147294 +0.386186 +0.280114 +-0.045448 +-0.189083 +-0.133485 +0.488173 +0.540514 +0.740435 +-0.076178 +0.103077 +0.002836 +0.310502 +0.210935 +0.443170 +0.359659 +0.226350 +0.875224 +0.611846 +-0.098752 +0.673798 +0.732785 +0.552290 +0.312930 +0.009738 +0.879418 +0.887464 +-0.277332 +0.748031 +-0.157086 +-0.282658 +-0.200209 +-0.194803 +0.643932 +0.929704 +0.301998 +0.667967 +0.931348 +0.910776 +0.908272 +0.259947 +0.263325 +0.542977 +0.851656 +0.942615 +0.997900 +0.837595 +0.726830 +0.931205 +0.863536 +0.857190 +0.773996 +0.783459 +0.232353 +0.561673 +0.262321 +0.881346 +0.349780 +0.380848 +0.941856 +0.935442 +0.757479 +0.805875 +0.723072 +0.916923 +0.840966 +0.645652 +0.992444 +0.770160 +0.935148 +0.773358 +0.666839 +0.767501 +0.721730 +0.862389 +0.838123 +0.930790 +0.913636 +0.802885 +0.778663 +0.718221 +0.106887 +0.806453 +0.701477 +0.726786 +0.798388 +0.746888 +0.788417 +0.546233 +0.869431 +0.734455 +0.851946 +0.907253 +0.468333 +0.808066 +0.306090 +0.721221 +0.962209 +0.980484 +0.811183 +0.043542 +-0.042877 +0.640902 +0.907337 +0.461567 +-0.159576 +0.828659 +0.694261 +0.666773 +0.082451 +0.892164 +0.751671 +0.189912 +0.660238 +0.056636 +0.908345 +0.308941 +-0.048063 +0.832178 +0.615613 +-0.178959 +-0.084361 +0.220257 +0.906471 +-0.151287 +0.709632 +0.788168 +0.802603 +-0.133090 +0.254400 +-0.137524 +0.673224 +-0.137074 +0.489725 +-0.100256 +0.596343 +0.583930 +0.456532 +-0.272926 +-1.238211 +0.939749 +0.863206 +0.907833 +0.892424 +0.181622 +0.556198 +0.496229 +-0.143027 +-1.314369 +0.667118 +0.675611 +0.814170 +0.802679 +0.081345 +0.928807 +0.163960 +-0.272903 +0.717620 +0.841504 +0.191263 +0.315233 +-7.317774 +0.666367 +0.815817 +0.749972 +0.711188 +0.741562 +0.798695 +0.270682 +0.804930 +0.558448 +0.826019 +-0.065347 +0.937374 +0.824666 +0.596936 +0.817992 +0.744796 +0.403245 +0.847763 +0.166820 +0.866216 +0.753395 +0.809783 +0.815225 +0.730855 +-0.192818 +-0.490021 +0.937415 +0.655638 +0.529874 +0.496703 +0.256799 +0.774295 +-0.030562 +0.786534 +0.694496 +0.882726 +0.531839 +0.686869 +0.707491 +0.445485 +0.648597 +0.876780 +0.662506 +0.686762 +0.043465 +0.754112 +0.716408 +-0.010572 +0.154674 +0.701286 +0.836613 +0.651315 +0.697472 +0.854621 +0.817945 +0.178742 +0.870622 +0.753757 +0.479840 +0.622279 +-0.189697 +0.585100 +0.712454 +0.007724 +0.825152 +-0.286328 +0.599122 +0.707987 +0.359676 +-0.230948 +0.696472 +0.160699 +0.857458 +0.597671 +0.637414 +0.266016 +0.999568 +0.702694 +-0.073718 +0.763843 +0.473659 +-0.224446 +0.348103 +0.871686 +-0.122485 +0.742158 +0.950652 +0.557511 +0.356859 +0.517921 +0.639277 +0.918111 +0.918570 +0.809338 +0.914450 +0.900700 +0.700581 +0.804954 +0.931779 +0.816272 +0.831845 +0.891924 +0.770914 +0.670201 +0.571773 +0.754801 +-0.571485 +0.789277 +0.879186 +0.784893 +0.933397 +0.931837 +0.779577 +0.401006 +0.722942 +0.208145 +0.656487 +0.241431 +0.927135 +0.785053 +0.381641 +0.757248 +0.895689 +0.890837 +0.379810 +0.589347 +0.627294 +0.381810 +0.847723 +0.575570 +0.953967 +0.805972 +0.748470 +0.511739 +0.617816 +0.782427 +0.586476 +0.296860 +0.981285 +0.304860 +0.604840 +-0.275647 +0.528351 +0.589450 +0.190001 +0.447136 +0.769950 +0.778801 +0.406223 +0.312402 +0.381213 +0.959833 +0.926407 +0.024813 +-1.180095 +0.931543 +-0.139520 +0.725012 +0.583334 +0.663300 +0.915486 +0.927446 +-0.084892 +0.007626 +-0.142237 +-51.532000 +0.567756 +-0.168185 +0.886016 +0.278271 +0.940761 +0.105104 +0.905908 +0.422617 +0.890808 +0.833915 +0.242858 +0.908929 +0.602328 +0.759146 +0.725001 +0.576979 +0.925167 +0.759831 +0.930567 +0.755314 +0.761866 +0.502658 +0.792646 +0.846334 +0.742166 +0.676754 +0.521500 +0.907921 +0.628664 +-0.178012 +0.937067 +0.756503 +0.724683 +0.936481 +0.727728 +0.865584 +0.439001 +0.936996 +0.708859 +0.732880 +0.698495 +0.720007 +0.889536 +0.218826 +0.109880 +0.599572 +0.805255 +0.565332 +-0.231699 +-0.015206 +0.508113 +0.747645 +0.790636 +0.977978 +0.381859 +0.509429 +0.283070 +0.569651 +0.719747 +0.134329 +-0.123881 +0.263011 +0.270103 +-0.155799 +0.520547 +0.210870 +0.458626 +0.402787 +-0.218074 +0.376839 +0.092828 +0.461173 +0.161469 +0.397720 +0.370630 +0.995007 +0.808948 +-0.282241 +0.842193 +0.837918 +0.332791 +-0.090448 +0.801654 +-0.329524 +0.357500 +0.560108 +0.217949 +0.656158 +0.499793 +0.756269 +0.008185 +0.805825 +0.907863 +0.733933 +0.586364 +0.907214 +0.387249 +0.932373 +0.484541 +0.764168 +0.931302 +0.995664 +0.932997 +0.959693 +0.798047 +0.715766 +0.931251 +0.974619 +0.103781 +0.931286 +0.811319 +0.922072 +0.850128 +0.928959 +0.706401 +0.770713 +0.831790 +0.911021 +0.435624 +0.843184 +0.791176 +0.676348 +0.494041 +0.303505 +0.697043 +0.410672 +0.143701 +0.926018 +0.748823 +0.761230 +0.231395 +-0.041181 +0.372235 +0.064881 +0.632877 +0.495953 +0.683814 +0.684835 +-0.247798 +0.067748 +-0.172803 +0.785780 +0.059578 +-0.029513 +0.751080 +-0.163829 +-0.255563 +0.702641 +0.822468 +-0.238037 +0.659102 +0.934770 +0.794245 +0.039530 +0.367786 +-0.031965 +-0.091363 +0.652348 +0.421273 +0.744274 +0.636057 +0.716061 +-0.211506 +0.545663 +0.869625 +0.806426 +-0.143705 +-0.235204 +0.971749 +-0.233342 +0.415695 +-0.173826 +0.615572 +-0.193273 +0.656332 +0.670635 +0.649800 +0.733976 +0.928786 +0.940020 +0.811445 +-2.716075 +0.902848 +-0.062174 +0.955976 +-0.085195 +0.937026 +-0.125614 +0.309085 +-0.255956 +0.983031 +0.302221 +-0.190097 +0.855146 +0.321179 +0.331541 +0.731578 +0.866212 +0.875016 +-0.234212 +0.720953 +-0.226712 +0.927358 +0.543461 +0.836038 +0.783431 +0.660305 +-0.246903 +0.676059 +-0.298155 +0.855291 +-0.196350 +0.076119 +0.726808 +0.803612 +0.777771 +0.859418 +0.802894 +-0.192569 +0.889813 +0.079936 +0.656241 +0.663122 +-0.222765 +0.320898 +-0.059939 +0.222785 +0.112369 +0.606307 +-0.177711 +0.630967 +0.816296 +-0.208875 +0.622302 +0.367522 +0.737033 +-0.125253 +0.326367 +-0.061757 +0.911087 +0.351336 +0.432466 +0.575402 +0.116111 +0.344395 +0.448365 +-0.265600 +0.950141 +0.787392 +0.408295 +0.724742 +-0.161700 +0.084047 +0.355502 +0.202101 +-0.060533 +0.226901 +0.711432 +-0.135925 +-1.530436 +0.654644 +0.956073 +-0.022393 +0.843907 +0.921828 +0.885465 +0.745148 +0.515197 +0.500907 +0.221138 +0.448370 +-0.130313 +0.919663 +0.704548 +0.255168 +-0.069680 +0.052276 +0.862306 +-0.329821 +0.951445 +0.732194 +0.963616 +0.723994 +0.254158 +0.765273 +0.920161 +0.728927 +-0.050035 +0.250185 +0.571092 +0.738691 +0.685696 +-0.267622 +0.753690 +-0.016020 +0.969321 +0.494432 +0.419343 +0.438156 +0.833000 +-0.948424 +0.763888 +0.135596 +0.573692 +0.004515 +0.746314 +-0.013160 +0.285180 +0.775927 +0.745070 +0.051385 +0.146888 +0.938316 +-0.354179 +0.030930 +0.328487 +0.439154 +0.805079 +0.346328 +0.210399 +0.155754 +0.395421 +0.074390 +0.098781 +0.434087 +0.614891 +0.495313 +0.452110 +0.270854 +0.167104 +-0.137837 +0.651722 +0.113373 +0.218653 +0.477677 +-0.193804 +0.805736 +0.736623 +0.849800 +0.562288 +0.270152 +0.255187 +0.804280 diff --git a/reports/data/revenue.csv b/reports/data/revenue.csv new file mode 100644 index 0000000..a38240f --- /dev/null +++ b/reports/data/revenue.csv @@ -0,0 +1,2135 @@ +0.3240485009999998 +7.090994928454501 +0.12787012607851178 +0.1589308846496138 +3.2873232000000003 +0.7276315789473682 +0.020187483870356005 +0.029359999999999997 +0.005716588013257071 +0.44680345010467537 +0.015697325000174754 +0.0708752 +0.013707999999999998 +0.009929755 +0.02705999097669 +0.014719359999999997 +0.0071662934338560524 +0.09596282846280002 +0.9479827107840002 +0.020508664287999998 +2.7037619897628957 +0.0161452512 +0.1079488 +0.05885956676683346 +0.002367877202175379 +0.016654999999331 +0.015516727499999994 +0.032781600000000743 +0.01206885 +0.45549003948 +0.15610399000000008 +0.4110167464114832 +0.1489473684189 +0.018483428489279974 +1.1011370859046763 +0.40971135999999997 +0.0362070000000001 +0.31547954190943983 +0.1034900000000003 +0.23650000000000126 +0.051652266644999986 +0.4173744637370582 +1.4938506559999993 +0.007464386989146227 +0.03369575489957699 +0.027720835704342237 +0.040681679999857404 +0.084573963 +1.0671545920000085 +0.054218688420000105 +0.025735798965981438 +0.011629134120567486 +0.02443999999999999 +0.05442805577767131 +0.07134222060000095 +0.14486036260715984 +0.014379156856775242 +0.032774399999999995 +0.22396563698903293 +0.021446751494976074 +0.03244646999999999 +0.016920000000000046 +0.38008 +0.060161584738363805 +0.029163008000000004 +0.008178333330000002 +0.005462576943377151 +0.009809999999999985 +0.05060332800000001 +0.010977233922525542 +0.01804489344 +0.004167223199999999 +0.05564157383414722 +0.06789586000000003 +0.353356216 +0.009063879909361198 +0.018100000000000893 +0.15600519946880015 +0.23759799999999998 +0.08802480000000035 +0.014842015999999993 +0.01634065978007157 +14.464258554144212 +0.016048570868710144 +0.029902188 +0.3193704762061067 +0.036026031154495985 +0.08002223382400064 +0.014835192544079195 +0.0006816135440514525 +0.094240987 +0.07307049237191043 +0.12043789199454805 +0.024994984 +0.10225400000000007 +0.005657263200000002 +0.0093979000000535 +0.36712 +0.04706167140000003 +0.4521476400230401 +0.03492981577415055 +0.223 +0.38409446998100005 +0.02322736000000014 +0.38418651506359414 +0.04193280000042134 +0.022775605659109743 +0.0168154112 +0.01297043920800034 +0.06965569999999932 +0.4415209039800896 +0.2054220638085743 +0.1490762260722529 +0.0199388 +2.744237726918799 +0.5238319469696969 +0.01480244647056825 +0.04335889465685694 +0.025862479999999993 +0.4938 +0.02955502688685363 +0.23446920000000304 +0.022411199999629178 +0.03958552693246857 +0.031738000000000016 +0.08337440000000002 +0.00949825 +0.13185736900000045 +0.07597449120577623 +0.9539800000737588 +0.6056671808007379 +0.030368806104000612 +0.009910000560550004 +0.015591535999999996 +0.02158976 +0.042884864 +0.111712592 +0.09810438399999999 +0.025073386839222687 +0.03813763999999997 +0.14546999999999993 +0.0899999998404912 +0.0891756000000008 +0.11016528000000009 +0.02397224851148322 +0.5695704266347685 +0.07885049599999999 +0.01272888576000003 +0.2645346471228986 +0.4017544370015949 +0.022757687999999984 +0.047660000000000924 +0.9922937725328076 +0.6020433939393937 +0.09664923452798907 +0.0147239584 +0.24477790030754676 +0.2997904 +0.12660000000000016 +0.874295928 +0.09846889902918654 +0.03820000000000012 +0.029340799999999945 +0.10917225 +0.015581503999999996 +0.3554999999286156 +0.041798399999999986 +0.2333181999999998 +0.008217549010500001 +0.2135815034735492 +0.037287623366399986 +0.0005388563796799584 +0.3155698658483009 +0.04432369330168662 +0.18975004959999997 +0.2597992 +0.76098906512 +0.08666840000000109 +0.010139007700000001 +0.07792248000000002 +0.004880000560550005 +0.01600080000000001 +0.029449000000000003 +0.012469468394815525 +2.87455 +0.13010376 +0.031430224596942224 +0.08033423183569553 +0.047952570175917 +0.1783728125 +0.118554241004 +0.12728816158858236 +0.21537906146015984 +0.03284344640333903 +0.9712500000000001 +0.08208858240000005 +0.3819165000000009 +0.03564999999999996 +0.01987240829346092 +0.1542161002241565 +0.0195265 +0.006162649374808149 +0.1892475 +0.16471291866028703 +0.032824456136216686 +0.0704061970000005 +0.11875912000000005 +0.0369136 +0.01195389304967097 +0.37546220233030086 +1.71875199987952 +0.0541281746240001 +0.011629827140155813 +0.05849999 +0.09030703999999999 +0.0667610007363666 +0.20462000000000002 +0.016006 +0.014229465709728828 +0.009616115809999999 +0.19908000000000003 +0.004334562709459713 +0.45425000000000004 +0.01759296 +0.01789770032 +0.011833192982456137 +0.11088458644338228 +0.1850256 +0.021620222240000042 +0.07473749999999998 +0.02681344799999999 +0.00595142852121977 +0.3774433213824 +0.013559355199999956 +0.08317521060000033 +0.07385857510000002 +0.02748399018370773 +0.2761185474839092 +0.022393071748358473 +0.07551213328125606 +0.08475276143540669 +0.34044368520591917 +0.014999998003632 +0.41984729919999886 +0.0468280000000002 +0.060522594123027296 +0.2062925 +0.029876 +0.018706912 +0.6956000000000002 +0.06681983451654894 +0.22237411479872282 +0.17600000000000002 +0.009348999999999996 +0.01014283296 +0.12096900000000055 +0.07869473684210525 +0.04395122009569377 +0.2895910000000004 +0.07096881452909776 +0.07577763844000002 +0.017968506970523282 +0.060110697056965076 +0.04805816339232094 +0.07533178610127299 +0.15395618 +0.019823999999999994 +0.08743875 +0.038744019138755977 +0.024879600000000012 +0.4720148359999998 +0.0008453011849148574 +0.14815933333333334 +0.173 +0.007098179600000087 +0.01504912 +0.2875328841795648 +0.028686240000000002 +0.3463200000000013 +0.040749999999999946 +0.006361667053388281 +0.045156599999999436 +0.18573546143653408 +0.16499999480934452 +0.099952944312 +0.45138710249066705 +0.023146345329178794 +0.36348800000000003 +0.031408935164800006 +0.2135815034735492 +0.11266802993263925 +0.07473749999999998 +0.014305024 +0.014719219887914997 +0.2325024000000009 +0.16856566772648218 +0.21949199999999996 +1.2029795106678902 +0.0195398 +23.054031723344174 +0.13168791489141163 +0.0030038540000000002 +0.1022988070111632 +0.016516305000138967 +0.014879706402399995 +0.2499749 +0.033539205519755255 +0.023657444399990027 +0.028100000000000014 +0.01403416 +0.01202149208 +0.014488768910370842 +0.025863182239999997 +1.66092748535 +0.01110603441003159 +0.03356143386 +0.4272265680230772 +0.25721456375819685 +0.00999998996499508 +0.03566466663100196 +0.032332000000000055 +0.03896480000044141 +0.02158976 +0.019868571446055 +0.02184312 +0.016755607817668827 +0.002546682282469681 +0.11789399999999994 +0.020440388932799994 +0.06988 +0.004193795700000001 +0.03627818186355136 +0.0199856 +0.06368939227632 +0.0041173845800415165 +0.259585326953748 +0.04831693703999995 +0.28518340858000024 +0.03519999985 +0.07440971182559997 +0.009688774999999998 +0.08559720000000048 +0.014804349999999994 +0.09919744000000001 +0.020139311999999996 +0.03021551515151516 +0.1522950000000005 +0.01848302784881132 +0.00010667622201442073 +0.0574191392256 +0.09784108254585326 +4.380053485340001 +0.28456140350877135 +0.3278858 +0.06776315789473683 +0.012628395393939392 +0.0469951966784 +0.023262304030392866 +0.41121740799999995 +0.018540575999999996 +0.53008165629852 +0.0087958 +1.4430969121347381 +0.7108824866 +0.09714114832535885 +0.5005271217854421 +0.08995311579882637 +0.29827005998059963 +0.02549455493304753 +0.098919169 +0.19260258360000004 +0.155721075 +0.3073003688 +0.014581504000000002 +0.11064798460867231 +0.1039616 +0.023241277500000046 +0.18748296000000036 +0.22304068415107192 +0.2498559999999994 +0.03147970032 +0.009792346514788927 +0.029968044162041352 +0.08452209 +0.009711250000000001 +0.020374169048000004 +0.8238686400000006 +0.38893000000000005 +0.0989648 +0.0071600000000000275 +0.015766361822960918 +1.3195212 +0.010220921497701593 +0.032815234978564756 +0.19679999995999997 +0.011662000000000006 +0.0382083312 +0.08540400000000026 +0.4783419199807999 +0.08454303332920432 +0.1859455318893128 +0.03936774999999998 +0.01493049599999996 +0.0406872432 +0.03810720000000012 +0.10167480000000007 +0.10607999999999951 +0.01039608752 +0.006732220543255852 +0.09329375249376234 +0.0406872432 +0.07650999999999997 +0.5480956000000008 +0.7843026968377976 +0.010382199999999998 +0.193620000000001 +0.014842015999999993 +0.09881977671451353 +0.007730126536600004 +0.01612514194577353 +0.02358391290000003 +0.1526034964396379 +0.08594932536258693 +0.008728763096642 +0.06240000000000023 +0.0654239999999997 +0.034008 +0.0252937999975104 +0.21812 +0.020034160000000002 +0.4246232659178581 +0.018839999999999968 +0.5727381198617398 +0.07232775119617224 +0.09059702503734464 +0.03145201204800041 +0.012134319999999999 +0.3281382860083131 +0.15825481138452435 +0.8838474959798805 +0.6235435597328554 +0.025435135503484224 +0.006330237944056405 +0.07979188999999987 +0.45164673843028 +0.027675204899999972 +0.03171264272720997 +0.007715756704376433 +0.0030038540000000002 +0.09920000000000004 +9.553602993337684 +0.10081011399296236 +0.1331 +0.19679999995999997 +0.011086414681175993 +0.05284929904747582 +0.11713267995300014 +0.4213994425339602 +0.31914279788554045 +0.06350099702079992 +0.021394397765310047 +0.008793300000000018 +0.07519999999999993 +0.023815669291337827 +0.06781051009919992 +0.9238394879999999 +1.5736930334950055e-06 +0.20098532124000013 +0.0929580808 +0.6777812659799904 +0.021859200000000002 +0.0769780792413659 +0.02133124111422932 +0.08161451568000022 +0.02699771899745411 +0.1968002000000001 +0.32999999992476003 +0.07832460718560963 +0.03143532875 +0.016807999999999997 +0.026913599999999996 +0.3197759999998864 +0.59570815183 +0.2975973080757728 +0.09004385964912276 +0.0158538279047864 +0.1553428834227124 +0.6509432699805497 +0.14190800000000015 +0.052479752601574774 +0.06038334625578767 +0.165671685832692 +0.6389504000000001 +0.006622336323763959 +0.2893585200000004 +0.0235397728 +0.07411281600270003 +0.01675204799999999 +0.055724473927968005 +0.013915999157199993 +0.03342489560621953 +0.04378879999999999 +0.010220020000000052 +4.50023947232074 +0.018631629141617007 +0.017285014999999987 +0.3847806783042364 +0.018456810032 +0.3878340000000001 +0.06016528000000004 +0.20259973800000008 +0.0159398 +0.029724880382775043 +0.5579831101409888 +0.00783 +0.0016838285895133254 +0.01256761402567741 +0.21806893722000004 +0.24789583999999998 +0.024218370450000002 +0.09986524133760001 +0.07309802587814698 +0.1349720000000021 +0.022636562882133893 +0.016932800000000192 +0.0663600000000002 +0.3373101440193129 +0.09700810000000004 +0.08394904319999999 +0.004919421562143825 +0.12069888000000001 +0.08312599681020716 +0.011401170365057667 +0.014799999948559996 +0.009879616 +0.015985600000000003 +0.15059666943999994 +0.04309489800000055 +0.04932799999999998 +0.019343999999999972 +0.615652701804 +0.3688092799804199 +0.01500387316363289 +0.6145638765670767 +0.008730370449920064 +0.007790480441592184 +0.17262362078280047 +0.029876 +0.014924759999999999 +0.03955342902711323 +0.032900156198069866 +0.04602215999999998 +0.0809357021866464 +0.010493600100320001 +0.10766560221738786 +0.010670077 +0.0934909424 +0.02417800000000009 +0.8790802400000001 +0.1269268635698805 +0.733248282849312 +0.04068744384 +0.09706081518714799 +0.12239008941038233 +0.299547456 +0.9400991999980022 +0.04419 +0.16795360000000004 +0.036803586793084264 +0.011702085715200001 +0.037287623366399986 +0.11865599999999998 +0.07059234913759213 +0.13397901 +0.23951 +0.09390041651440006 +0.0537989616 +0.04897665625146 +0.08339102000000001 +0.06831073599999993 +0.01372485 +0.02358264736462768 +0.14973684210526272 +0.04415691951067857 +0.5318515799999997 +0.016389576 +0.6876584000000001 +0.0089648 +0.008970162589999997 +0.1107080130520004 +0.06775200019963103 +0.015684194428032 +0.8299696088439488 +0.026463049999999988 +0.14004788700000015 +0.02780309999999986 +0.0457644 +0.2060495360000001 +0.09030703999999999 +0.04137860365266044 +0.026134731900540463 +0.19967999999999997 +0.005726097500000001 +0.5847790277571026 +0.036059142217821805 +0.037956000000000045 +0.02038101027112843 +0.0899999998404912 +0.010952713505 +0.1434008565 +0.005878056069999999 +0.12338457827638505 +0.04365648 +0.051666750000000004 +0.16018920000000003 +0.19859552 +0.16632559999999996 +0.007508524693855002 +0.7111188448704007 +0.12320000000000003 +0.010044000000000053 +0.121588 +0.074888 +0.3272513768249279 +0.0753012 +0.027375074155182033 +0.029887999999999998 +0.012834285714644001 +0.028471999999999997 +0.01731859649122807 +0.04455186399113398 +0.13538197767145133 +0.0628667 +0.10189036596851953 +0.11306802551834128 +0.03510936 +0.07054352815999987 +0.0772915703391387 +0.054453471800000014 +0.02850649879025645 +0.003234197407776678 +0.043936 +0.14900212 +0.007909700000000006 +0.009999999698950001 +0.10230546458033674 +0.0956756207191615 +0.07898830439085469 +0.024994984 +0.029736016007297 +0.07275219968 +0.13154400000000002 +8.525720000000007 +0.010935999999999998 +0.01555581349434021 +0.13916000000000006 +0.05196184691959438 +0.006108756241395494 +0.2849478336 +0.011894250467796602 +0.027000000000000024 +0.0309136 +0.017100807922416 +0.07320004960000001 +0.8335742851445662 +0.026557117597299118 +0.010935999999999998 +0.024587069920000038 +0.0358796 +0.07881977671451357 +0.17128785133894775 +1.49790977368589 +0.18628447999999997 +0.0144824 +0.005068781966847347 +0.09780000000000011 +0.2960933 +0.019006549100000006 +0.03706000000000009 +0.3702901799807501 +0.305955 +0.060973482041999996 +0.4525024292806119 +0.6558196399801997 +0.020220405441437106 +0.12901209597989016 +0.015013035288 +0.024369593600000045 +0.10994233036138062 +0.17302784000000004 +0.01984502465226192 +0.015760971199999974 +0.14862990387807073 +0.05145933014354065 +0.05317114879999996 +0.00957853000002784 +0.06466672157912438 +0.13941840000000028 +0.047999976428812804 +0.012440064 +0.027095099999999983 +0.025935443942753267 +0.02545825485 +0.2777600000000001 +0.08420347421850001 +0.10628338614903998 +0.07320000000000002 +0.541993620414673 +0.03806192 +0.079965 +0.082482989309 +0.10418836475409776 +0.00039670000000000005 +0.029669999999999974 +0.7999999997068762 +0.005919999999999998 +0.03293444000000001 +0.5262692499801997 +0.017809392 +0.08517828845437037 +0.051452495042995317 +0.018510159999999998 +0.13420560607999998 +0.13761000000000045 +0.3845125410382775 +2.4005360000000024 +0.011397935272495482 +0.015648197399999998 +0.021171848297296236 +0.12929720000000078 +0.13333294039234422 +0.26662518000000024 +0.02015729257558796 +0.01477180551168028 +0.06874701000000005 +0.0190199425655488 +0.13615309600000014 +0.019002660063999997 +0.21908665900000002 +0.01563182348983716 +0.00878800000000024 +0.23111817629923498 +0.014778961279999999 +0.5763439767792 +0.03893280000042134 +0.16145600000000015 +0.03298080030096 +0.32703104000000005 +0.026317425000000005 +0.42552735999999936 +0.010968000000000002 +0.36757074998100014 +0.02984950000000001 +0.4716319999999996 +0.13995740231259912 +0.19472449760765542 +0.04115060147327387 +0.2520245000000001 +0.0186207367679998 +0.021295057000000003 +0.014742015999999997 +0.02158976 +0.041123820000000005 +0.05125968000025281 +0.012351868901901625 +0.018122000000000416 +0.007379999999999998 +0.014679999999999999 +0.5210000000000008 +0.022669659999999814 +0.17601315439640383 +1.373400000000001 +0.015357642321599987 +0.011501817019907342 +0.013885789892835001 +0.01399999508285 +0.15117999999999965 +0.010484191071519988 +0.18770649976998666 +0.011595256272100002 +0.05647300000000001 +0.011982208 +0.09883909743630999 +0.16138304066985631 +0.02204844192 +0.33888 +0.030988575010680103 +1.227103669004234 +0.018143999999999993 +0.0366875414673046 +0.592828815247608 +0.0553870139999999 +0.23940099999999997 +0.04668225 +0.019901116427432215 +0.29860712277932 +0.041673440000000006 +0.030056400000000316 +0.1999994035999999 +0.024814753012614453 +0.005657263200000002 +0.12456249999999999 +0.014247999999999983 +0.7707543999804001 +0.01288876799999994 +0.08871062519086881 +0.29780000000000006 +0.38760000000000017 +0.02228571446399996 +0.08180144579106852 +0.10002449999999996 +0.5563896035270904 +0.2813040000000022 +0.009376242098056764 +0.03304807552 +0.10674012000000022 +0.08336799999999989 +0.014769576200000002 +0.07886014284032017 +0.43285264 +0.668999920742232 +0.011210533149761337 +0.014950799999999995 +0.010714992739899287 +0.017202144000000003 +0.017297500001693014 +0.10380000000000011 +0.009006161297221357 +0.02158976 +0.0995290635590047 +0.025919468 +0.03388 +0.005657263200000002 +0.030430000000000026 +0.1148418 +0.29416479876000023 +0.009972927999999999 +0.0030038540000000002 +0.029876 +0.01205100000000009 +0.23527311199999998 +0.03987958801 +0.01291614696400023 +0.09723840481535995 +0.12442222780000001 +0.07433805741626794 +0.023316451233300006 +0.2825616000000001 +0.017232193007680016 +6.0170056416 +0.036088005321043615 +0.022406763725519044 +0.20776714513556616 +0.1759800000000009 +0.06959872 +0.0779296 +2.0696000000000003 +0.36390737998019995 +0.10090677268751469 +0.0114568 +0.01735166979144 +0.33032408471999997 +0.20665821371610843 +0.022412 +0.0206993508609375 +0.014966076555023921 +0.178400000000007 +0.010775039999999998 +0.003327 +0.246766791 +0.01919744 +0.07801176 +0.21897700000000003 +0.012899666000000002 +0.003273405299303223 +0.029185078399999995 +0.0027984940176134926 +0.03700346055979645 +0.21601017339372408 +0.070074376 +0.014380990398702886 +0.3766450889275319 +1.1673446399999996 +0.05234454399999999 +0.02148197824 +0.11815512000000017 +0.06464985176319615 +3.964914912 +0.016807379039999987 +0.634800000000002 +0.0373816939728753 +0.0928 +0.03359820903232444 +0.5956000000000001 +0.03235294140274991 +0.0664012823092408 +0.22658666600000002 +0.03707472 +0.032582970398560396 +0.02007012853446133 +0.29375000000000107 +0.024994984 +0.018634787345416015 +0.2125895369319002 +0.06999999964888001 +0.019314819113873227 +0.0035054834569248072 +0.026949799999999996 +0.3591000000000002 +0.11423677639553431 +0.0977580024 +3.2912011244800006 +0.0666105072503094 +0.0035959908807018937 +0.01074399999999999 +0.0028381890058929438 +0.01869592001013029 +0.10594210000000026 +0.019548211742000055 +0.08981784000000001 +0.008588167559999998 +0.0089101 +0.20745914634146345 +0.11101233000000121 +0.11884799999999995 +0.014822535272709228 +0.13015096430646977 +0.08245894736842097 +0.011222519775999997 +0.18720501000000006 +0.029854465709728828 +0.07224745958720019 +0.06343774023703563 +0.03460952650484672 +0.037512896000000046 +0.03882999845 +0.8407306328566513 +0.36483454799999926 +0.05025600000000019 +0.4001800000000004 +0.15723279110331534 +0.059965000000000004 +0.0989692794116591 +0.312510106505413 +0.0979936 +0.02062161183333601 +0.011374646875280475 +0.022892331253018483 +0.029189302991000032 +0.7904099999999996 +0.322510352 +0.10511999999999999 +0.06554317277200017 +0.06878930000000001 +0.02827887454063177 +0.4119008 +0.12115323612312001 +0.007069900000000004 +0.57199996306284 +0.010065 +0.07915999999999995 +0.39908319999999997 +0.18880000000000008 +0.011671754999999995 +0.0033732539132306227 +0.03664985819999997 +1.118934 +0.076787840256 +0.005666951590611258 +0.14281840000000035 +0.0424787616 +0.019993479200000937 +1.3871511000708674 +0.12344149583999986 +0.0420998584200003 +0.014428004999999999 +0.03284480846 +0.020090412048000106 +0.024717038319169937 +0.11568000000000023 +0.005657263200000002 +0.1344465600000001 +0.12394080000000002 +0.00818032 +0.07572999999999999 +0.17250428170014453 +0.03790948817919926 +0.010620104000000002 +0.8106249105000001 +0.029579914479999858 +0.018644206522125457 +0.008760095999999998 +0.041370150876 +0.014432750000000008 +0.12222783999999998 +0.08205981596974343 +0.0459884897567783 +0.04023395998559853 +0.04038634032 +0.084602194 +0.03493286999999956 +0.3174988080000003 +0.2249399302741535 +0.2248725016 +0.11885519242103415 +0.058947719999999995 +0.04210580830906707 +0.5712000000000002 +0.024810699999999998 +0.07476680836540084 +0.04122304 +0.01608322320000033 +0.17592000000000008 +0.16362954544086938 +0.19711327999999995 +0.013178879999999893 +0.027510000000000034 +0.062410284799999965 +0.037849279913919745 +0.077880006486577 +0.08106483200651393 +0.09850000000000003 +0.014999980437600003 +0.09056800000000009 +0.02202935892323031 +0.012714243200000001 +0.0017528659042652661 +0.05251339630914306 +0.10277135999999976 +0.040519199999999866 +0.039825637958532695 +0.0143916 +0.07393110860966681 +0.03502053921358306 +0.019799360000000002 +0.39505 +0.07832052704226955 +0.1940036 +0.006391950000000007 +1.0078502999798995 +0.06364566024567919 +0.013656123041997842 +0.025061427199999986 +4.15983151886651 +0.012775366645800756 +0.040072349977500005 +0.08082728781791593 +0.436282297207736 +0.012073399999999984 +0.1402077432216906 +0.04978239681607066 +0.3461324099801999 +0.018150399999999997 +1.199999999999977 +0.019473684210526313 +0.06734640000000014 +0.0418270208165887 +0.751506641 +0.013202460192000002 +0.414612 +0.014629244004564945 +0.025073386839222687 +0.0132681308 +0.2343231107192454 +0.08675315999999977 +0.13952003200000007 +0.05166000000000093 +0.6996501 +0.010935999999999998 +0.52750703852 +0.055193779904306205 +0.09457500000000019 +0.12032289621921954 +0.013695028535 +0.07245471999999999 +0.20744662472854092 +0.03807328000063949 +0.028821347687400273 +1.483144602930702 +0.006410000000000138 +1.1803788206599992e-07 +0.05215996591247496 +0.07932000000000003 +0.04892805089721 +0.2462000000000002 +0.039551999999999976 +0.2001889600000002 +0.39416764752 +0.23520047846889947 +0.009609068373601204 +0.8892003290137594 +0.07111390000000006 +0.029056649370423404 +0.05978070175438595 +0.018676800010132305 +0.046314395400000014 +0.041044 +0.5246987416193041 +0.09999995470385237 +0.01764918920000001 +0.21896036512000028 +0.1280171588703931 +0.03399879154078567 +0.1840564 +0.024994984 +0.0948810207336523 +0.23130857023532905 +0.09318705299999999 +0.013309115863000903 +0.3819605263157895 +0.4154112 +0.0410407352316 +0.5107254999999995 +0.014144736842105265 +0.18312732477196114 +0.3784029999999987 +0.013407800000000025 +0.07320796000000007 +0.47263199999999905 +0.09385219607248718 +0.04047133119999996 +0.879616 +0.0659730150826352 +0.04116064002435005 +0.064129308449616 +6.603762570000001 +0.01516000036334142 +0.03365267191201937 +0.11954850000000003 +0.030432295732269788 +0.8328319999999998 +0.4277763699799899 +0.21564780540292494 +0.09410000000000002 +0.3537714171601918 +0.0369744 +0.03064399999999995 +0.05482786757077768 +0.024911999999999997 +0.7992400000000001 +0.29750390082000067 +0.021589264 +0.01040400015048 +0.08517004137148165 +0.011113919999999998 +0.010248987980000002 +0.3946716876567784 +0.010006963599811292 +0.47378750000000025 +0.18580981760000004 +0.03274105673372674 +0.12398960000000003 +0.0681551152 +0.012272897399844225 +0.059499999999999886 +0.3324934799999999 +0.0142476 +0.011976 +0.028125435009728833 +0.008437383296704 +0.0127888 +0.20834149999999996 +0.1499999997602448 +0.011113919999999998 +0.015709767000000006 +0.013218700159489626 +0.0158276799999999 +0.0382587856 +0.7037162 +0.455862 +0.16912480000000002 +0.12635999999999997 +0.5907847940697266 +0.04691436004784688 +2.4925213762185005e-05 +0.6948968332800005 +0.021839503226532386 +0.01456513762847552 +0.011264459999999997 +0.07509597253199998 +0.12424695 +0.017242469310337953 +0.05375918577296046 +0.011899934197207473 +0.010935999999999998 +0.014158758780662764 +0.12326399999999982 +0.29439200999999926 +0.048546659199999995 +0.06986963340000008 +0.012796381578947365 +0.17199622555230887 +0.009241000100000035 +0.06164353087200025 +0.25004553147871533 +0.4574130999803998 +0.018100000000000005 +1.3795180346422482 +0.02352829286627503 +0.7422029186559982 +0.27510326400033536 +0.016809392000000003 +0.13154400000000002 +0.0396769690921 +0.01592788804014 +0.04038624 +0.021119999999999972 +0.034670987038800005 +0.029876 +0.1190368 +0.014924759999999999 +0.02869039884708488 +0.15679069199999995 +0.0160583394987871 +0.18819409299999998 +0.0890683049979 +0.05813734999999999 +0.0259872 +0.19999959872 +0.7027580160000004 +0.014713531100478468 +0.025397560956331944 +0.04822203949561403 +0.029007199999999955 +0.010493600100320001 +0.09663159999999982 +0.2712880000000001 +0.11129618519999984 +0.01599478336000075 +0.0269552000002809 +0.05037735848899198 +0.08692221882998385 +0.010793600100320001 +0.08156627668522987 +0.0403872432 +0.10240000000000005 +0.15721229999999997 +0.0465184 +0.04515012000000018 +0.18499553600000063 +0.06264000000000003 +0.10870159752238284 +0.2960010000000002 +0.00969895000002675 +0.02699771899745411 +0.9655437 +0.09164842822324104 +0.21930000000000094 +0.011427980000000004 +0.06294175999999999 +0.01799999739168 +0.0028559079442090907 +0.08971559999999999 +0.06287805455999998 +0.20658600000000005 +0.6786314165389555 +0.04580885399999998 +0.011126990700599342 +1.235838648 +0.002201950000000001 +0.014914349999999995 +0.009084214006199992 +0.016947999999999963 +0.075610724155 +0.037163999999999975 +0.029023926440127995 +0.03709066699867314 +0.02204844192 +0.03837511964107679 +0.011439471345000007 +0.3965004000000002 +0.00863091999 +0.09595099200000001 +0.022887602870813387 +0.037213683885887514 +0.017680000000000015 +0.011083919999999999 +0.035317360000000075 +0.08630120000000001 +0.017752047999999993 +0.013343583999999992 +0.05555718400000001 +0.10044495000000002 +0.006238302137511448 +0.01784994232841852 +0.03499941591979197 +0.1054815999841 +0.11597353416278877 +0.33360000000000056 +0.21254684141681224 +0.019871791039997602 +1.2792000000000172 +0.020788659189573178 +0.3153255399806003 +0.028021554000000393 +0.027746936 +0.2475699988 +0.10284024500000011 +0.013446446279238133 +0.08639079 +0.08384692218042478 +0.0111734224 +0.02907365042161736 +0.015571474991999998 +0.12299999999999933 +0.1443541999995097 +0.08529566964019386 +0.3489363149226201 +0.11450129600000047 +0.12151636904285894 +0.06260000000000002 +0.24902400000000036 +0.5695704266347685 +0.127364 +0.299999996147712 +0.39333886 +0.2924812799804002 +0.005581499999999989 +34.1648 +0.011979199999999999 +0.22900000000000098 +0.0099348064 +0.01445655225809044 +0.3367503999999999 +0.0145200000000002 +0.017509843199999993 +0.007032030449999999 +0.034664 +0.006348895486066 +0.050779663954750864 +0.04768899521531099 +0.11600000000000144 +0.025345599999999857 +0.03379447953801999 +0.13409999999999966 +7.1169423536 +0.20732201258414892 +0.1855360000000026 +0.050337280000000005 +0.014737460139999992 +0.06265610149562818 +0.012168000000000068 +0.03376595218918155 +0.00985323390012402 +0.09765063636363636 +0.3532281599999999 +9.2127273336 +0.186782 +0.01303103190216748 +0.0142476 +0.08927849746862751 +0.10704974982000001 +0.025168640000000003 +0.03590191999999992 +0.08406062400000008 +0.10784032000000021 +0.3638015999997777 +0.53352 +0.050399457813800286 +0.019372794425053685 +0.104928074865 +0.7561200000000001 +0.03894069282194046 +0.05617780913300008 +0.2795302153358 +0.01811000000000096 +0.09320316000000028 +1.8362199999999973 +0.019881600000000013 +3.9986999836352015 +0.602701200000002 +0.18369766800000065 +0.10076919999999989 +0.004410603049178452 +0.029055257294026166 +0.7467631569 +0.008306401787249545 +0.13698199999999994 +0.04324480800942432 +0.1743999999999999 +0.17877292981439 +0.05897903188800235 +2.2692000000000014 +0.07999492000000001 +0.0014323911637805775 +0.011194345800000116 +0.02978443074999998 +0.08677200000000002 +0.24780000000000013 +0.011054220959999998 +1.5556649962010982e-08 +0.014225831199999983 +0.012452 +0.05480999999999997 +0.09708506000000017 +0.015335999999888994 +0.005483830729861 +0.009489395 +0.0406872432 +0.19939797143145713 +0.004856924693438014 +0.07390479360000002 +0.11354639999999994 +0.10808800000000007 +0.009061199992868446 +0.16912480000000002 +0.35994200000000004 +0.11566985641100036 +0.5999999999626552 +0.04689724841 +0.08996800002508 +0.01608592 +0.0406872432 +0.06563155597987969 +0.03192001599999998 +0.19376079086898734 +0.02744300000000005 +0.5665297526728161 +0.019974330000000002 +0.10252631578947335 +0.018306000000000003 +0.12349999904696 +0.011120000000000074 +35.5276 +0.005723797976928985 +0.0044403078128315565 +0.01588528 +0.0755746168946616 +0.2856618099802999 +0.019001116427432213 +0.010655570670261301 +1.0402800000000028 +0.22758109056908005 +0.011850848599999964 +0.020069168 +0.06075230957246571 +0.021832210804940005 +0.05205230800000005 +0.49470749998020036 +0.015677000000000007 +0.06550648804567565 +1.2237452510000002 +0.7956000000000001 +0.0966 +0.05658495000304618 +0.21450000000000036 +0.04481909904640008 +1.9959686063264874 +0.04038624 +0.1568791450072 +0.11630995199999994 +0.30827119999999986 +0.20799466099416797 +0.12507068782124398 +0.016808009048344 +0.018871999999999993 +0.13190940000000007 +0.07890049599999999 +0.010394224502392302 +0.06784959998631201 +0.035810999999999996 +0.015013558560000001 +0.4481215039999995 +0.059965000000000004 +0.16768000000000027 +0.028544721891238467 +0.19777758284600233 +0.04395122009569377 +0.005978894284582675 +0.038301066000000106 +0.024896 +0.010935999999999998 +0.030276887500000016 +0.07477365000000001 +0.08774171200000025 +0.02319875136 +0.02705999097669 +0.08998710000000032 +0.027311328 +0.011525000000000014 +0.024979752755903917 +0.009744604000000046 +0.027667039999999997 +0.09030703999999999 +0.4232028587102441 +0.6874278800000001 +0.014752048008485182 +0.35264896 +0.022873676236044527 +0.20108127999999997 +0.02159777538487084 +0.00937319999999997 +0.0234601807928268 +0.014733788800000001 +0.5712138239799898 +0.7164800000000002 +0.1802733260700604 +0.07519999999999993 +0.13154400000000002 +2.8017224880382763 +0.014370000000000022 +0.14619112999999828 +1.8679995984000002 +0.03304000000000151 +0.020399999999999974 +0.08739999999999985 +0.07915483549351945 +0.04098624 +0.6815619 +0.04632880001673227 +0.014663999999999983 +0.7202609147652281 +0.08676112629999988 +2.749 +0.09889748320000459 +0.08883792000000013 +0.0328832912413306 +0.014524171283228623 +4.61286527775 +0.01987958 +0.11846000000000007 +0.024994984 +0.009965000508993 +0.03813760000000066 +0.06906127820550445 +0.005087519999999999 +0.014265797733558017 +0.004220490961527171 +0.11527801600000043 +0.194073 +0.7227289719807102 +0.2123192 +0.016686839999999994 +0.12030591292159531 +0.05331990560000044 +0.14999999999995986 +0.012317919856459247 +0.17520000000000202 +0.3438000768 +0.011734925549999997 +0.01836193716331616 +0.013292639999999994 +0.03472 +0.029546799999999984 +0.364104416 +0.06682953792 +0.22440000000000282 +0.21457273820000022 +0.06162000000000023 +0.027296239680000056 +0.013516746411483205 +0.01107125623130608 +0.04005962100480001 +0.014802440904849237 +0.045359999999999845 +1.7447009006564613 +0.024995084320000003 +0.12199700399999999 +0.13144527 +0.11627199999999949 +0.11576049732800087 +0.3585514613919587 +0.09833771666711666 +0.011632563774246818 +0.03588000000000002 +0.32559972704640017 +0.15740681947635354 +0.04040914417862834 +0.05133872769 +0.026155720098350647 +0.07904 +0.15110996510871308 +0.02585331195253404 +0.0396899879999999 +0.009668944 +0.02084563447967369 +0.18367996799951958 +0.20099192190000048 +0.037213683885887514 +0.15247743152499993 +0.07197440000000005 +0.029561391760000003 +0.3211342719999992 +0.07559908000000082 +0.015512048008485178 +0.047127060064000005 +0.13877441373490454 +0.11540764387477315 +0.006927578064584328 +0.07828000000000035 +0.192499974 +0.018541627272727235 +0.19743799359999992 +0.004427728199999981 +0.08717968000000001 +0.08887999999999999 +0.02130771067863174 +0.07702567895679996 +0.5478929997906323 +0.8921920499999999 +0.035993658 +0.0322332 +0.014887999999999998 +0.007362332366 +1.2324783999999998 +0.13663500000000006 +0.01999999709072 +0.18996000000000002 +0.012380897324759998 +0.010527232419546104 +0.016511664000000002 +0.054026376 +0.2771440000000003 +0.5770399999999984 +0.11700700790079999 +0.22978998338677736 +0.06192005692565683 +0.05857256214309037 +0.12458 +0.02198720020064 +0.09649660716299999 +0.03109999999999999 +0.06169899997573333 +0.09983999999999993 +0.04444715068650851 +0.021086164998573187 +0.082630237725 +0.005880879999999998 +0.14926634768739966 +0.077932195544 +0.005846021924502787 +0.011879849999999999 +0.10867300000000313 +0.04165684854 +0.22276363840211655 +0.06288979199999997 +0.16400000000000148 +0.1366400000000002 +0.015235199999999893 +0.11322171359999977 +0.03501957930415728 +0.13938537515865923 +0.2697019216560026 +0.07477365000000001 +0.0182633904 +0.6076000000000015 +0.0178112 +0.022016640000000254 +0.1722706717626168 +0.023791701184799785 +0.018631400000000006 +1.630935 +0.08897483200004587 +0.026741489234449755 +0.02980542199999997 +0.03994677000000013 +0.13687499999999986 +0.1618421052631579 +0.16213450292364762 +0.014415000000000039 +0.38137679999999996 +0.01674201599999999 +0.4831682799999997 +0.03441556980340499 +0.149999997110784 +1.047755677858154 +0.1086588376040783 +0.25670304 +0.36971282892238744 +0.3271025039872407 +0.04923199999999994 +0.09171863999999985 +0.008323000000000136 +0.02868348454885994 +0.007800010000000079 +0.022495468799999987 +0.06072300000000119 +0.07924765356800001 +0.016166963111638958 +80.47586 +0.17221276080000003 +0.010637688608352 +0.011733456 +0.01742904793547506 +0.029999999946830398 +0.41733692 +0.019048682 +0.26686506998079995 +0.14614079999999996 +0.1554945000000002 +0.787876655948168 +0.0029259224493564558 +0.09889648000000001 +0.02064568621819938 +0.0999200011211 +0.027799628640000004 +0.24400140000000192 +0.1772267374564782 +0.8592000000000013 +0.027485516291408607 +0.021892680000000025 +0.04481166400000003 +0.020888525658410928 +0.025862479999999993 +0.16612442917879466 +0.09507467636046603 +0.012710303999999999 +0.003153990452190336 +0.012045569154479342 +0.2862015000000002 +0.011891697904902576 +0.00586319667410401 +0.20147711999999998 +0.008582535885167462 +0.1526940000000001 +0.012499999999999997 +0.11719163177830944 +0.02204844192 +0.02397159799991982 +0.005359334074100719 +0.29634764000000136 +0.04455095999999997 +0.01296958226970002 +0.15332392344497603 +0.1678464 +0.16753217490239777 +0.17669448600000015 +0.12361639377685174 +0.087898706513588 +0.11609759414192833 +0.012873755419433253 +0.053083457001127335 +0.07088400000000002 +0.36649627399875406 +0.06288800000000005 +0.08273600000000009 +0.032605994 +0.027474234503387485 +0.010320316835742582 +0.0740232 +0.17854465960000002 +0.03799000000000008 +0.06679928002881308 +0.007425000000000237 +0.03683595901440051 +0.04734534119 +0.08333592417196489 +0.011167732193481772 +0.006448850000000001 +0.7486860047846893 +0.0928 +0.01936173473568508 +0.1620813240000003 +0.01709092096000002 +0.013975360000000001 +0.011335000000000012 +0.040300791630062005 +0.11023019999999972 +0.02514120643035256 +0.1519880000627 +0.016904670152692258 +0.06230469000000005 +0.019554863753298513 +0.015409904 +0.26146768000000087 +0.10809921889257357 +0.013995435440000658 +0.059818940024999996 +0.10267030685337819 +17.347874863103993 +0.12968084593675888 +0.010421120000000006 +0.12853770731707215 +0.025073386839222687 +0.06792489718680939 +0.09760060000000001 +0.009594069499999998 +0.014399804375999999 +0.01768000000000003 +0.18540621989999906 +0.15484600000000004 +0.019434226755769057 +0.09245016 +0.01438528 +0.3986040000000002 +0.016036775342447906 +0.17276719600000057 +0.5166411250462479 +0.009049983099172793 +0.24780044058630596 +0.19912000000000005 +0.17424000000000017 +0.0138382944 +0.027706976521453264 +0.5833324907699066 +0.3781700000000008 +0.09839999999999999 +0.13248000000000015 +0.05439407423404585 +1.759999998409664 +0.025937419357057817 +0.0891962764736 +0.02325144126173477 +0.15096251600000032 +0.010775999989999993 +0.00666002100000003 +0.03525296 +0.14849367729321541 +0.011319805439999994 +0.08273360000000005 +0.031499664 +0.03421117660045535 +0.02139586020300968 +0.11215428000000083 +0.09839975000000012 +0.16940000000000666 +0.00999299990007 +0.04422604799999999 +0.10131280000000001 +0.03845709602185282 +0.24911267822400002 +0.26425886 +0.5701519586349644 +0.081944592 +0.05520072828891198 +0.45120000000000093 +0.0931034506770001 +0.1486661843367711 +0.050431681407274526 +0.0022323000000000004 +0.008132517999999998 +0.014137231798999998 +0.16868653783677 +0.041406153599999995 +0.1105392 +0.034129092888000034 +0.014602240000000322 +0.01968 +0.012815110447025196 +0.008035747500000023 +0.16480712814170484 +0.1048775517505991 +0.021127152215005263 +0.09504719999999989 +0.15134960000000003 +0.7428000567801489 +0.17745000000000033 +0.019961700316713092 +0.9099999869584 +0.03511315114765551 +0.1686238390298267 +0.7330058590673266 +0.21010574934400017 +0.0283105846271997 +0.03300000000000014 +0.36406000000000116 +0.03400274168640016 +0.189998494 +0.014583769372016 +0.16544144675505934 +1.1057270378263202 +0.0030481029000000003 +0.083485848 +0.29641294127586004 +0.10731071999999964 +0.777472 +0.01889648 +0.2523225 +0.21343936000000002 +2.615419705127546 +0.01199040147 +0.00999396188420043 +0.0179936 +0.0753019960000001 +0.01613597440000001 +0.10637003201786258 +0.03044635455871436 +0.3800348883572564 +0.3738076663219238 +0.027152000000000037 +0.023550938848253544 +0.05034719999999998 +0.23654724589184417 +0.014664673046251991 +0.00565908 +0.404664 +0.005511492000000001 +0.024290368893320063 +3.75138632232 +0.0187836435276567 +0.10522795999334507 +0.01749125 +0.03272034431999798 +0.8995818800000013 +0.012995413846372372 +0.014360938881730253 +0.08134428000000038 +0.08181885022130293 +0.0999616 +0.21786095947 +0.03385645933014354 +0.020958518448654026 +0.01154425389131838 +0.04848655000000002 +0.07164800000000002 +0.09549524454220837 +0.021419778079999993 +0.028922004000000057 +1.44535 +0.08719774999999999 +0.02059193069091987 +0.007781276000000011 +0.012361326510125788 +0.069965 +0.11336000000000013 +0.15614783757745343 +3.7632372005799226 +0.12046225792000342 +0.40618562036000005 +0.05310317334085967 +0.04298813638164476 +0.016439037262879874 +0.5133540560000001 +0.1985900002382781 +0.10034628099620013 +0.7098000000000004 +0.012627990430622005 +0.2035504642314554 +0.15256000000000003 +0.7562400000000009 +0.06075522150459989 +1.5240480000000005 +0.013407930231087148 +0.5096849999999999 +0.31458 +0.29879999999999995 +0.030138965842494585 +0.6815800007135997 +0.2712880000000001 +0.1071323968000002 +0.0357296327936982 +0.41747462398004 +0.06001000000000023 +0.17290845144 +0.14644000000000013 +0.09589107144706449 +0.1805616016 +0.4753579999999997 +0.004193795700000001 +0.14520999941100501 +0.08332503294360061 +0.10786014969301677 +0.20069916799999998 +0.033682609999999995 +0.0415536897858631 +0.2885424854274383 +0.07382340747267628 +0.11767847344552962 +0.2776000000000002 +0.015591535999999996 +0.013630536432800211 +0.010858153800000001 +0.11230336289599974 +0.04889948733300287 +0.042187526399999994 +0.05156229862439707 +0.47479442862375176 +0.055925629014749845 +0.013875000000000526 +0.38790745410972605 +0.23334 +0.05529638400000003 +0.025043340602776465 +0.168186428 +0.08075451671451339 +0.1511366490288 +0.02609714321421401 +0.31803000000000003 +0.43172716909155007 +0.010935999999999998 +0.22137955 +0.18061751400000003 +0.004193795700000001 +0.04160268 +0.05318400000000001 +0.10373391238278984 +0.005657263200000002 +0.014858961279999996 +0.12391300000000083 +0.00973135869800331 +0.024302256 +0.014842015999999993 +3.990199979755344 +0.5384171068622385 +0.008724107699999997 +0.03006830170183128 +0.0006177080871139218 +0.010480800000000002 +0.5193056799798996 +0.00950622870138459 +0.25240070074751975 +0.0195312 +0.13324279999999988 +0.1313085812999999 +0.25209600000000076 +1.5620082673556457 +0.011208040000000016 +0.7364522948748 +0.10540298847188967 +0.013364824550000001 +0.018114489518104016 +0.08874469078534908 +0.13073999999999986 +1.71708423762 +0.03717670305359999 +0.011032899689999986 +0.04771200000000042 +0.038963587993062966 +0.011920255183413076 +0.025490667200000004 +0.22286671660000001 +0.11850652576175325 +0.03501614516902776 +0.04346973939396015 +0.026878787878787874 +0.08676 +0.10012766623991087 +0.08993976 +0.0030038540000000002 +0.009932799999999999 +0.8417885970952553 +0.0780826950000002 +0.049196800000000006 +0.048804957545808936 +0.1274399999968 +0.13672933343795202 +0.01453416 +0.08200000000000007 +8.218463199704098 +0.0764295 +0.40301382775119615 +0.07500941822643147 +0.14042792810546978 +0.022498540750667168 +0.080394792 +0.2958792000000008 +0.5235999999999998 +0.09730863999999995 +0.12936000000000014 +0.015756124340917665 +0.01349947228503323 +0.09926000000000004 +0.009731255910000028 +0.013883089999999994 +0.014152295849999968 +0.1777265672 +0.0239808 +0.4461832678877344 +0.7756080861171206 +0.5538550830345237 +0.12000602400000027 +0.09242476128217443 +0.02699771899745411 +0.008898880325555303 +0.013782851360000237 +0.0060764431552000064 +0.368241143648 +0.1938075600000002 +0.0711907 +0.02911180000000005 +0.0101832000040553 +0.07940420000000004 +0.009566687999999997 +0.017826771450602075 +0.05390711998 +0.08427461273429199 +1.8842049792 +0.08721034999999999 +0.2959043756376139 +0.503412918660287 +0.11136000000000013 +0.017937516000000014 +0.02204844192 +0.015088228859999999 +0.07060100000000014 +0.2856000000000001 +0.013450399865495998 +0.0358796 +0.006347392697037879 +0.016886635567605612 +0.19954711333052633 +0.041912060800000005 +0.017429131 +0.014039234723124315 +3.2609748086784 +0.105188 +0.07124866501455397 +19.5423999979093 +0.02031255183413075 +0.13231262239999997 +0.19397782378860606 +0.09828000000000037 +0.0735027199999998 +0.012123753 +0.22075922879600002 +0.56934963912 +0.23434878265199988 +0.009711250000000001 +0.018698270000000003 +0.13251839999999993 +0.03200000000000092 +0.0992415808 +0.1341818793495999 +0.07381927638433819 +0.037470481794272814 +0.05442912 +0.04959867726950569 +0.436480000088296 +0.132675 +0.020473245 +0.20069916799999998 +0.002225502813689273 +0.015666860098732784 +0.015313075199999998 +0.39720222600000055 +0.37958009722780633 +0.01081974343601855 +1.8079796 +0.18291755567115664 +0.17641154241762813 +0.01774786616 +0.36177325798071003 +0.017809392 +0.03552371432012 +0.06799792 diff --git a/reports/latency_scatter.tex b/reports/latency_scatter.tex new file mode 100644 index 0000000..0f60ef7 --- /dev/null +++ b/reports/latency_scatter.tex @@ -0,0 +1,35 @@ +\begin{tikzpicture} +\begin{axis}[cycle list/RdGy-6, clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year}, xlabel={Date (MM-YY)}, ylabel={Mean Observed Time Between Bids},title={Bot Latency Evolution}, + log basis y={10}, ymin=0, ymax=1, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, + cycle multiindex* list={ + color list + \nextlist + linestyles + \nextlist + very thick + \nextlist + }, legend pos=north east, + legend entries = {},legend style={fill=none},legend cell align={right}, x label style={at={(0.5,-.25)},anchor=south,}, scatter/use mapped color={ + draw=mapped color, + fill=mapped color!70, + }, colorbar, point meta= explicit, point meta max=50, + colorbar style={ + title={\# of Raises}, + ytick={0,10,...,40}, extra y ticks={50}, + extra y tick labels={50+}}, +] + + + +\addplot+[only marks, scatter,opacity=0.1,mark=*] coordinates {(2018-06-27,0.723021) [6.000000] (2018-06-27,0.209233) [7.000000] (2018-06-28,0.437499) [7.000000] (2018-06-28,0.212688) [12.000000] (2018-06-28,0.427871) [7.000000] (2018-06-28,0.249342) [10.000000] (2018-06-28,0.385228) [4.000000] (2018-06-28,0.747227) [5.000000] (2018-06-28,0.558873) [7.000000] (2018-06-28,0.413909) [4.000000] (2018-06-28,0.278323) [6.000000] (2018-06-28,0.455817) [10.000000] (2018-06-28,0.277163) [13.000000] (2018-06-28,0.432910) [7.000000] (2018-06-28,0.432620) [7.000000] (2018-06-29,0.506060) [8.000000] (2018-06-29,0.496815) [8.000000] (2018-06-29,0.502704) [9.000000] (2018-06-29,0.409247) [6.000000] (2018-06-29,0.516990) [8.000000] (2018-06-29,0.236231) [6.000000] (2018-06-29,0.051479) [10.000000] (2018-06-30,1.469775) [8.000000] (2018-06-30,0.811101) [7.000000] (2018-06-30,0.343262) [10.000000] (2018-06-30,0.459041) [7.000000] (2018-06-30,0.510824) [6.000000] (2018-06-30,0.512374) [6.000000] (2018-06-30,0.453317) [7.000000] (2018-06-30,0.446370) [5.000000] (2018-07-01,0.170770) [12.000000] (2018-07-01,0.147913) [9.000000] (2018-07-02,0.835066) [7.000000] (2018-07-02,0.833977) [7.000000] (2018-07-02,0.509611) [6.000000] (2018-07-02,0.343167) [8.000000] (2018-07-02,0.526501) [7.000000] (2018-07-02,0.383789) [9.000000] (2018-07-03,0.296203) [9.000000] (2018-07-03,0.374227) [7.000000] (2018-07-03,0.748812) [4.000000] (2018-07-03,0.660148) [4.000000] (2018-07-04,0.362921) [8.000000] (2018-07-04,0.253083) [11.000000] (2018-07-04,0.415621) [7.000000] (2018-07-04,0.222331) [12.000000] (2018-07-04,0.377749) [8.000000] (2018-07-04,0.267305) [11.000000] (2018-07-04,0.320288) [4.000000] (2018-07-04,0.165859) [7.000000] (2018-07-04,0.197012) [6.000000] (2018-07-04,0.505268) [4.000000] (2018-07-04,0.502782) [4.000000] (2018-07-04,0.355588) [5.000000] (2018-07-04,0.424280) [5.000000] (2018-07-04,0.395523) [4.000000] (2018-07-05,0.444323) [4.000000] (2018-07-05,0.480600) [4.000000] (2018-07-05,0.179971) [17.000000] (2018-07-05,0.310874) [11.000000] (2018-07-05,0.090820) [14.000000] (2018-07-05,0.340006) [6.000000] (2018-07-05,0.199898) [11.000000] (2018-07-05,0.241640) [10.000000] (2018-07-05,0.089410) [10.000000] (2018-07-05,0.459466) [8.000000] (2018-07-05,0.450130) [8.000000] (2018-07-05,0.871978) [7.000000] (2018-07-05,0.453619) [10.000000] (2018-07-05,2.214557) [6.000000] (2018-07-05,0.645280) [6.000000] (2018-07-05,0.738815) [5.000000] (2018-07-06,0.569452) [5.000000] (2018-07-06,0.346707) [9.000000] (2018-07-06,0.630074) [8.000000] (2018-07-06,0.474474) [8.000000] (2018-07-06,0.458050) [4.000000] (2018-07-06,0.173956) [7.000000] (2018-07-07,0.543592) [4.000000] (2018-07-07,0.516473) [11.000000] (2018-07-07,0.201079) [22.000000] (2018-07-07,0.416488) [8.000000] (2018-07-08,0.497982) [4.000000] (2018-07-08,0.194920) [11.000000] (2018-07-08,0.699112) [4.000000] (2018-07-08,0.661972) [20.000000] (2018-07-08,0.487772) [8.000000] (2018-07-08,0.372269) [18.000000] (2018-07-09,0.749940) [8.000000] (2018-07-09,0.646453) [7.000000] (2018-07-09,0.369461) [4.000000] (2018-07-09,0.469487) [4.000000] (2018-07-09,0.613101) [9.000000] (2018-07-09,0.414782) [13.000000] (2018-07-10,0.275212) [7.000000] (2018-07-10,0.526264) [11.000000] (2018-07-10,0.379011) [4.000000] (2018-07-10,0.304889) [4.000000] (2018-07-10,0.459658) [12.000000] (2018-07-10,0.539818) [4.000000] (2018-07-10,0.410459) [16.000000] (2018-07-10,0.428333) [7.000000] (2018-07-11,0.323219) [6.000000] (2018-07-11,0.265834) [12.000000] (2018-07-11,0.384632) [9.000000] (2018-07-11,0.158610) [19.000000] (2018-07-11,0.618881) [7.000000] (2018-07-11,0.517641) [6.000000] (2018-07-11,0.507036) [4.000000] (2018-07-11,0.402027) [8.000000] (2018-07-11,0.819124) [6.000000] (2018-07-11,0.452273) [14.000000] (2018-07-11,0.507117) [12.000000] (2018-07-12,0.339839) [20.000000] (2018-07-12,0.349562) [14.000000] (2018-07-12,0.678225) [4.000000] (2018-07-12,0.264051) [10.000000] (2018-07-13,0.345177) [9.000000] (2018-07-13,0.182355) [22.000000] (2018-07-13,0.115812) [5.000000] (2018-07-13,0.687290) [4.000000] (2018-07-13,0.663985) [8.000000] (2018-07-13,0.157792) [5.000000] (2018-07-13,0.270616) [4.000000] (2018-07-13,0.101304) [6.000000] (2018-07-13,0.347050) [8.000000] (2018-07-13,0.366804) [16.000000] (2018-07-14,0.761418) [7.000000] (2018-07-14,0.479654) [4.000000] (2018-07-14,0.385972) [7.000000] (2018-07-14,0.350889) [8.000000] (2018-07-14,0.265956) [7.000000] (2018-07-14,0.802772) [8.000000] (2018-07-14,1.138836) [4.000000] (2018-07-14,0.233448) [8.000000] (2018-07-14,0.361505) [12.000000] (2018-07-16,0.621025) [6.000000] (2018-07-16,0.271361) [12.000000] (2018-07-16,0.555792) [8.000000] (2018-07-16,0.523590) [15.000000] (2018-07-17,0.255308) [11.000000] (2018-07-17,0.386121) [23.000000] (2018-07-17,0.353294) [6.000000] (2018-07-17,0.739014) [14.000000] (2018-07-17,0.401591) [6.000000] (2018-07-17,0.372033) [6.000000] (2018-07-17,0.290084) [13.000000] (2018-07-18,0.036127) [5.000000] (2018-07-18,0.594684) [4.000000] (2018-07-18,1.206628) [4.000000] (2018-07-18,0.237562) [4.000000] (2018-07-18,0.781541) [7.000000] (2018-07-18,0.802320) [7.000000] (2018-07-20,0.423281) [5.000000] (2018-07-20,0.024254) [4.000000] (2018-07-20,0.796561) [9.000000] (2018-07-20,0.914101) [8.000000] (2018-07-21,0.487936) [7.000000] (2018-07-21,0.554286) [12.000000] (2018-07-21,0.467823) [6.000000] (2018-07-21,0.595530) [6.000000] (2018-07-21,0.359090) [6.000000] (2018-07-21,0.436308) [16.000000] (2018-07-22,0.530575) [4.000000] (2018-07-22,-0.021517) [14.000000] (2018-07-22,0.780967) [16.000000] (2018-07-22,0.741758) [15.000000] (2018-07-22,0.273783) [5.000000] (2018-07-22,0.212711) [12.000000] (2018-07-23,0.466338) [6.000000] (2018-07-23,0.039019) [6.000000] (2018-07-23,0.994750) [9.000000] (2018-07-23,0.924853) [8.000000] (2018-07-23,0.443388) [9.000000] (2018-07-23,0.693424) [6.000000] (2018-07-23,0.518802) [6.000000] (2018-07-24,0.522454) [14.000000] (2018-07-24,1.131674) [9.000000] (2018-07-24,0.312465) [4.000000] (2018-07-24,0.949384) [6.000000] (2018-07-24,0.669236) [12.000000] (2018-07-24,0.653513) [10.000000] (2018-07-24,0.445812) [9.000000] (2018-07-24,0.370406) [6.000000] (2018-07-24,0.291883) [15.000000] (2018-07-24,1.092825) [10.000000] (2018-07-24,0.535404) [9.000000] (2018-07-24,0.529568) [8.000000] (2018-07-24,0.701147) [6.000000] (2018-07-24,0.863686) [11.000000] (2018-07-24,0.510211) [7.000000] (2018-07-25,0.331752) [18.000000] (2018-07-25,0.410133) [15.000000] (2018-07-25,0.795126) [6.000000] (2018-07-25,2.172272) [5.000000] (2018-07-25,0.369042) [5.000000] (2018-07-25,0.558329) [6.000000] (2018-07-25,0.576975) [6.000000] (2018-07-25,0.458323) [14.000000] (2018-07-26,0.500307) [14.000000] (2018-07-26,0.632923) [11.000000] (2018-07-26,0.594624) [12.000000] (2018-07-26,0.517763) [6.000000] (2018-07-26,0.410122) [10.000000] (2018-07-26,0.352283) [6.000000] (2018-07-26,1.126296) [13.000000] (2018-07-27,0.608189) [11.000000] (2018-07-27,0.937896) [9.000000] (2018-07-28,0.714718) [7.000000] (2018-07-28,1.503806) [10.000000] (2018-07-28,0.765277) [6.000000] (2018-07-29,1.313950) [5.000000] (2018-07-29,0.807698) [8.000000] (2018-07-30,1.007722) [5.000000] (2018-07-30,1.277821) [4.000000] (2018-07-30,5.294983) [5.000000] (2018-07-30,6.172444) [4.000000] (2018-07-30,5.751897) [4.000000] (2018-07-30,2.442763) [11.000000] (2018-07-30,2.097135) [12.000000] (2018-07-30,1.145309) [6.000000] (2018-07-30,1.246760) [7.000000] (2018-07-30,1.085272) [5.000000] (2018-07-30,-0.203632) [19.000000] (2018-07-30,-0.280074) [17.000000] (2018-07-30,1.075276) [13.000000] (2018-07-30,1.927230) [5.000000] (2018-07-31,1.622924) [10.000000] (2018-07-31,1.622884) [8.000000] (2018-07-31,0.639871) [13.000000] (2018-07-31,0.752817) [6.000000] (2018-07-31,0.281316) [7.000000] (2018-07-31,0.686582) [4.000000] (2018-07-31,0.886330) [5.000000] (2018-07-31,0.632988) [7.000000] (2018-07-31,1.038253) [7.000000] (2018-08-01,0.850332) [12.000000] (2018-08-01,1.603270) [12.000000] (2018-08-01,0.876106) [5.000000] (2018-08-01,4.162110) [10.000000] (2018-08-01,1.246525) [7.000000] (2018-08-01,2.253991) [8.000000] (2018-08-01,2.910152) [5.000000] (2018-08-03,0.247240) [5.000000] (2018-08-03,-0.018286) [5.000000] (2018-08-03,0.937243) [4.000000] (2018-08-03,1.747735) [6.000000] (2018-08-04,0.389408) [7.000000] (2018-08-04,0.286271) [10.000000] (2018-08-04,0.576683) [11.000000] (2018-08-04,0.277329) [18.000000] (2018-08-04,0.363564) [4.000000] (2018-08-04,0.258960) [19.000000] (2018-08-04,0.350121) [14.000000] (2018-08-04,0.310642) [14.000000] (2018-08-04,0.692195) [10.000000] (2018-08-04,0.298451) [22.000000] (2018-08-05,0.328145) [7.000000] (2018-08-05,1.274307) [5.000000] (2018-08-05,0.133007) [13.000000] (2018-08-05,0.949302) [7.000000] (2018-08-05,0.310069) [6.000000] (2018-08-05,0.198887) [9.000000] (2018-08-05,0.263508) [6.000000] (2018-08-05,0.164605) [9.000000] (2018-08-05,0.362136) [5.000000] (2018-08-05,0.804791) [5.000000] (2018-08-05,0.406826) [14.000000] (2018-08-05,0.572103) [9.000000] (2018-08-05,0.403359) [16.000000] (2018-08-05,0.187666) [6.000000] (2018-08-05,0.764801) [11.000000] (2018-08-05,0.332786) [16.000000] (2018-08-05,0.303033) [6.000000] (2018-08-05,0.214245) [8.000000] (2018-08-05,0.257077) [6.000000] (2018-08-05,0.407155) [6.000000] (2018-08-05,0.826290) [14.000000] (2018-08-06,0.429932) [6.000000] (2018-08-06,0.343107) [19.000000] (2018-08-06,0.318815) [18.000000] (2018-08-06,0.992289) [10.000000] (2018-08-06,0.246117) [20.000000] (2018-08-06,0.607620) [13.000000] (2018-08-07,0.268184) [7.000000] (2018-08-07,0.229043) [8.000000] (2018-08-07,0.173770) [4.000000] (2018-08-07,0.505148) [6.000000] (2018-08-07,0.460370) [6.000000] (2018-08-07,0.535992) [5.000000] (2018-08-07,0.514601) [4.000000] (2018-08-07,1.360342) [16.000000] (2018-08-07,1.319643) [15.000000] (2018-08-07,1.219028) [4.000000] (2018-08-07,1.411439) [5.000000] (2018-08-07,1.630628) [4.000000] (2018-08-08,0.550803) [6.000000] (2018-08-08,0.394695) [8.000000] (2018-08-08,0.605834) [6.000000] (2018-08-08,0.498452) [10.000000] (2018-08-08,2.358470) [4.000000] (2018-08-08,0.510529) [6.000000] (2018-08-08,0.487744) [6.000000] (2018-08-08,1.022071) [6.000000] (2018-08-08,1.115814) [5.000000] (2018-08-08,0.982724) [14.000000] (2018-08-08,1.040785) [12.000000] (2018-08-08,1.408665) [6.000000] (2018-08-08,1.376361) [6.000000] (2018-08-08,0.759966) [4.000000] (2018-08-08,0.565760) [5.000000] (2018-08-08,0.913264) [4.000000] (2018-08-08,0.129576) [6.000000] (2018-08-08,0.372511) [9.000000] (2018-08-08,0.248075) [13.000000] (2018-08-09,1.166511) [13.000000] (2018-08-09,1.782076) [9.000000] (2018-08-09,0.275983) [19.000000] (2018-08-09,0.863745) [6.000000] (2018-08-09,0.367574) [7.000000] (2018-08-09,0.239818) [11.000000] (2018-08-10,0.385812) [4.000000] (2018-08-10,0.258382) [5.000000] (2018-08-10,0.463331) [5.000000] (2018-08-10,0.357544) [6.000000] (2018-08-10,0.512058) [5.000000] (2018-08-10,0.579537) [11.000000] (2018-08-10,0.186886) [7.000000] (2018-08-10,0.487458) [10.000000] (2018-08-10,0.001483) [10.000000] (2018-08-10,-0.097206) [8.000000] (2018-08-10,0.034924) [5.000000] (2018-08-10,0.669836) [14.000000] (2018-08-10,0.388403) [18.000000] (2018-08-11,0.339593) [20.000000] (2018-08-11,1.407589) [5.000000] (2018-08-11,0.729104) [8.000000] (2018-08-11,0.644906) [7.000000] (2018-08-11,0.374806) [5.000000] (2018-08-11,0.059950) [8.000000] (2018-08-11,0.276276) [5.000000] (2018-08-11,0.212587) [9.000000] (2018-08-11,0.276728) [6.000000] (2018-08-11,0.227518) [7.000000] (2018-08-11,0.301837) [7.000000] (2018-08-11,0.161539) [13.000000] (2018-08-12,0.367844) [7.000000] (2018-08-12,0.324877) [9.000000] (2018-08-12,0.318021) [17.000000] (2018-08-12,0.312500) [14.000000] (2018-08-12,0.413780) [12.000000] (2018-08-12,0.699602) [6.000000] (2018-08-12,0.381510) [6.000000] (2018-08-12,0.282681) [10.000000] (2018-08-12,0.352808) [5.000000] (2018-08-12,0.235707) [7.000000] (2018-08-12,0.344892) [9.000000] (2018-08-12,0.253856) [12.000000] (2018-08-13,0.472119) [10.000000] (2018-08-13,0.665796) [10.000000] (2018-08-13,0.592973) [11.000000] (2018-08-13,0.352787) [6.000000] (2018-08-13,0.218453) [9.000000] (2018-08-13,0.876294) [6.000000] (2018-08-13,0.809256) [6.000000] (2018-08-13,2.247309) [4.000000] (2018-08-13,0.350185) [9.000000] (2018-08-13,0.256536) [12.000000] (2018-08-13,0.260064) [4.000000] (2018-08-13,0.686391) [8.000000] (2018-08-13,0.436029) [12.000000] (2018-08-13,1.209070) [4.000000] (2018-08-13,0.486592) [6.000000] (2018-08-13,0.261970) [10.000000] (2018-08-13,0.433082) [13.000000] (2018-08-13,0.331980) [22.000000] (2018-08-14,0.355139) [4.000000] (2018-08-14,0.480252) [11.000000] (2018-08-14,0.349280) [20.000000] (2018-08-14,0.631655) [8.000000] (2018-08-14,0.335953) [14.000000] (2018-08-14,0.834380) [7.000000] (2018-08-14,2.113696) [5.000000] (2018-08-14,0.504849) [4.000000] (2018-08-14,0.996002) [7.000000] (2018-08-14,1.052937) [4.000000] (2018-08-14,0.423009) [9.000000] (2018-08-14,0.375516) [4.000000] (2018-08-14,0.261747) [6.000000] (2018-08-14,0.249307) [5.000000] (2018-08-15,0.188336) [7.000000] (2018-08-15,0.304432) [10.000000] (2018-08-15,0.166799) [17.000000] (2018-08-15,0.529852) [13.000000] (2018-08-15,0.776336) [8.000000] (2018-08-15,0.019806) [4.000000] (2018-08-15,1.585859) [18.000000] (2018-08-15,1.618154) [17.000000] (2018-08-16,0.430663) [17.000000] (2018-08-16,0.400599) [18.000000] (2018-08-16,0.369129) [13.000000] (2018-08-16,0.558582) [9.000000] (2018-08-16,0.396313) [9.000000] (2018-08-16,0.577450) [9.000000] (2018-08-16,0.325136) [15.000000] (2018-08-16,0.612097) [7.000000] (2018-08-16,0.781876) [9.000000] (2018-08-16,0.311113) [4.000000] (2018-08-16,0.322104) [8.000000] (2018-08-16,0.184299) [13.000000] (2018-08-16,0.307900) [8.000000] (2018-08-16,0.189567) [13.000000] (2018-08-16,0.897890) [7.000000] (2018-08-16,0.870113) [6.000000] (2018-08-17,0.510668) [8.000000] (2018-08-17,0.586303) [18.000000] (2018-08-17,1.171468) [5.000000] (2018-08-17,1.174567) [4.000000] (2018-08-17,0.221205) [12.000000] (2018-08-17,0.560074) [10.000000] (2018-08-17,0.331376) [17.000000] (2018-08-17,0.665284) [6.000000] (2018-08-17,0.803512) [7.000000] (2018-08-17,0.688355) [7.000000] (2018-08-17,0.560209) [11.000000] (2018-08-17,0.424265) [15.000000] (2018-08-17,0.389070) [5.000000] (2018-08-18,0.441144) [8.000000] (2018-08-18,0.673664) [8.000000] (2018-08-18,0.664813) [8.000000] (2018-08-18,0.875671) [5.000000] (2018-08-18,0.494786) [11.000000] (2018-08-18,0.393827) [14.000000] (2018-08-19,0.241602) [8.000000] (2018-08-19,0.128761) [14.000000] (2018-08-19,0.351988) [23.000000] (2018-08-19,0.559876) [16.000000] (2018-08-19,0.542617) [7.000000] (2018-08-19,0.602366) [5.000000] (2018-08-19,0.605096) [18.000000] (2018-08-19,0.580080) [17.000000] (2018-08-19,0.271908) [4.000000] (2018-08-19,0.260120) [4.000000] (2018-08-19,0.398431) [7.000000] (2018-08-20,0.387707) [6.000000] (2018-08-20,0.199051) [13.000000] (2018-08-20,0.280678) [5.000000] (2018-08-20,0.223373) [7.000000] (2018-08-20,0.721243) [8.000000] (2018-08-20,0.361432) [16.000000] (2018-08-20,0.660698) [17.000000] (2018-08-20,0.230561) [10.000000] (2018-08-21,0.319077) [11.000000] (2018-08-21,0.404177) [10.000000] (2018-08-21,0.599297) [5.000000] (2018-08-21,0.505314) [13.000000] (2018-08-21,0.896903) [4.000000] (2018-08-21,0.428582) [10.000000] (2018-08-21,1.144091) [5.000000] (2018-08-21,0.531658) [4.000000] (2018-08-21,0.485808) [4.000000] (2018-08-21,0.414619) [4.000000] (2018-08-21,0.403844) [4.000000] (2018-08-21,0.376894) [5.000000] (2018-08-22,0.327507) [15.000000] (2018-08-22,0.463958) [14.000000] (2018-08-22,0.685763) [10.000000] (2018-08-22,0.993809) [8.000000] (2018-08-22,0.558546) [8.000000] (2018-08-22,0.828449) [4.000000] (2018-08-22,0.340666) [8.000000] (2018-08-22,0.316831) [8.000000] (2018-08-22,0.330898) [20.000000] (2018-08-22,0.372774) [18.000000] (2018-08-23,0.479177) [11.000000] (2018-08-23,0.414575) [10.000000] (2018-08-23,0.376582) [12.000000] (2018-08-23,0.637605) [8.000000] (2018-08-23,0.595647) [13.000000] (2018-08-23,0.635525) [12.000000] (2018-08-23,0.358078) [16.000000] (2018-08-23,0.575748) [15.000000] (2018-08-23,0.536207) [11.000000] (2018-08-23,0.580200) [9.000000] (2018-08-23,0.614912) [11.000000] (2018-08-23,0.544319) [7.000000] (2018-08-23,0.294256) [17.000000] (2018-08-23,0.333556) [13.000000] (2018-08-23,1.356627) [6.000000] (2018-08-23,1.402339) [6.000000] (2018-08-23,0.243377) [5.000000] (2018-08-23,0.509404) [5.000000] (2018-08-24,0.438116) [13.000000] (2018-08-24,0.324953) [15.000000] (2018-08-24,0.496140) [20.000000] (2018-08-24,0.771295) [14.000000] (2018-08-24,0.783513) [12.000000] (2018-08-24,0.854198) [10.000000] (2018-08-24,0.948613) [8.000000] (2018-08-24,0.840885) [5.000000] (2018-08-24,0.838212) [6.000000] (2018-08-24,0.341429) [4.000000] (2018-08-24,0.289503) [4.000000] (2018-08-24,0.210894) [4.000000] (2018-08-24,0.351091) [8.000000] (2018-08-24,0.457049) [17.000000] (2018-08-24,0.814974) [6.000000] (2018-08-25,0.498825) [8.000000] (2018-08-25,0.761334) [15.000000] (2018-08-25,0.374645) [20.000000] (2018-08-25,0.720974) [13.000000] (2018-08-25,0.280661) [7.000000] (2018-08-25,0.372830) [13.000000] (2018-08-25,0.897268) [7.000000] (2018-08-25,0.536388) [10.000000] (2018-08-25,0.321146) [12.000000] (2018-08-25,0.267376) [19.000000] (2018-08-25,0.325056) [16.000000] (2018-08-25,0.411784) [8.000000] (2018-08-25,0.436721) [6.000000] (2018-08-25,0.184735) [4.000000] (2018-08-26,0.314231) [14.000000] (2018-08-26,0.309866) [13.000000] (2018-08-26,0.279152) [21.000000] (2018-08-26,0.410198) [14.000000] (2018-08-26,0.348900) [12.000000] (2018-08-26,0.416392) [4.000000] (2018-08-26,0.405208) [4.000000] (2018-08-26,0.237543) [7.000000] (2018-08-26,0.307054) [4.000000] (2018-08-26,0.246745) [9.000000] (2018-08-26,0.197353) [11.000000] (2018-08-26,0.365643) [8.000000] (2018-08-26,0.222878) [14.000000] (2018-08-27,0.193160) [12.000000] (2018-08-27,0.411274) [14.000000] (2018-08-27,0.478890) [19.000000] (2018-08-27,0.294816) [14.000000] (2018-08-27,0.396450) [14.000000] (2018-08-27,0.385261) [20.000000] (2018-08-27,1.028862) [15.000000] (2018-08-27,0.436268) [15.000000] (2018-08-27,0.195894) [15.000000] (2018-08-27,1.098631) [9.000000] (2018-08-27,0.146902) [4.000000] (2018-08-27,1.195542) [7.000000] (2018-08-27,0.144504) [5.000000] (2018-08-27,2.876694) [5.000000] (2018-08-28,0.603521) [5.000000] (2018-08-28,0.637989) [15.000000] (2018-08-28,0.397493) [9.000000] (2018-08-28,0.343521) [10.000000] (2018-08-28,0.330871) [10.000000] (2018-08-28,0.425797) [5.000000] (2018-08-28,0.354499) [15.000000] (2018-08-28,0.518594) [17.000000] (2018-08-28,1.268276) [9.000000] (2018-08-28,0.179085) [13.000000] (2018-08-28,0.188521) [11.000000] (2018-08-29,0.596309) [13.000000] (2018-08-29,0.600317) [12.000000] (2018-08-29,0.260008) [6.000000] (2018-08-29,0.538504) [10.000000] (2018-08-29,0.524156) [15.000000] (2018-08-29,0.456667) [14.000000] (2018-08-29,0.182136) [5.000000] (2018-08-30,0.472286) [7.000000] (2018-08-30,0.408825) [17.000000] (2018-08-30,0.446282) [15.000000] (2018-08-30,0.352856) [8.000000] (2018-08-30,0.385939) [6.000000] (2018-08-30,0.430134) [20.000000] (2018-08-30,1.008062) [4.000000] (2018-08-30,0.817721) [9.000000] (2018-08-30,1.013433) [6.000000] (2018-08-30,0.459744) [10.000000] (2018-08-30,0.610027) [6.000000] (2018-08-30,0.250124) [11.000000] (2018-08-30,0.088133) [31.000000] (2018-08-31,0.199098) [14.000000] (2018-08-31,0.286444) [10.000000] (2018-08-31,0.304657) [12.000000] (2018-08-31,0.533567) [5.000000] (2018-08-31,0.302503) [8.000000] (2018-08-31,0.140477) [17.000000] (2018-08-31,0.347756) [10.000000] (2018-08-31,0.152478) [21.000000] (2018-09-01,0.293130) [8.000000] (2018-09-01,0.172255) [18.000000] (2018-09-02,0.154970) [8.000000] (2018-09-02,0.348850) [5.000000] (2018-09-02,0.167239) [10.000000] (2018-09-02,0.360096) [5.000000] (2018-09-02,0.184864) [9.000000] (2018-09-02,0.203634) [8.000000] (2018-09-02,0.465926) [7.000000] (2018-09-02,0.951490) [14.000000] (2018-09-02,0.302931) [15.000000] (2018-09-02,0.362106) [10.000000] (2018-09-02,0.197673) [14.000000] (2018-09-02,0.244065) [13.000000] (2018-09-02,0.466631) [16.000000] (2018-09-03,0.284542) [8.000000] (2018-09-03,0.172853) [16.000000] (2018-09-03,0.205193) [18.000000] (2018-09-03,0.598048) [11.000000] (2018-09-03,0.361539) [15.000000] (2018-09-03,0.613793) [13.000000] (2018-09-03,0.569721) [13.000000] (2018-09-03,0.212618) [21.000000] (2018-09-03,0.227119) [26.000000] (2018-09-03,1.167294) [15.000000] (2018-09-03,0.405783) [13.000000] (2018-09-03,0.348422) [12.000000] (2018-09-03,0.318863) [8.000000] (2018-09-03,0.218299) [12.000000] (2018-09-03,0.180960) [5.000000] (2018-09-03,0.157756) [6.000000] (2018-09-03,0.730082) [9.000000] (2018-09-03,0.257197) [10.000000] (2018-09-03,0.156191) [16.000000] (2018-09-03,0.347176) [9.000000] (2018-09-03,1.154820) [4.000000] (2018-09-03,1.333811) [4.000000] (2018-09-03,1.267506) [4.000000] (2018-09-03,0.567506) [4.000000] (2018-09-03,0.268986) [8.000000] (2018-09-03,0.146693) [14.000000] (2018-09-03,0.358372) [11.000000] (2018-09-03,0.194001) [21.000000] (2018-09-03,0.932570) [9.000000] (2018-09-03,0.915952) [4.000000] (2018-09-03,0.435840) [9.000000] (2018-09-04,0.747570) [4.000000] (2018-09-04,0.125876) [7.000000] (2018-09-04,0.367049) [6.000000] (2018-09-04,0.115434) [21.000000] (2018-09-04,0.236504) [23.000000] (2018-09-04,1.544552) [23.000000] (2018-09-04,0.321547) [20.000000] (2018-09-04,1.227319) [9.000000] (2018-09-04,0.716747) [6.000000] (2018-09-04,0.199501) [22.000000] (2018-09-04,0.204962) [22.000000] (2018-09-04,0.178025) [20.000000] (2018-09-05,0.274474) [9.000000] (2018-09-05,0.291079) [9.000000] (2018-09-05,0.083698) [24.000000] (2018-09-05,0.235151) [7.000000] (2018-09-05,0.355573) [7.000000] (2018-09-05,0.132620) [19.000000] (2018-09-05,0.121623) [20.000000] (2018-09-05,0.352774) [7.000000] (2018-09-05,0.254400) [6.000000] (2018-09-05,0.905586) [14.000000] (2018-09-05,1.372017) [11.000000] (2018-09-05,1.011544) [10.000000] (2018-09-05,0.977128) [12.000000] (2018-09-05,0.829365) [10.000000] (2018-09-06,1.505850) [13.000000] (2018-09-06,1.126881) [9.000000] (2018-09-06,0.614573) [13.000000] (2018-09-06,0.616917) [12.000000] (2018-09-06,0.298157) [6.000000] (2018-09-06,0.134921) [16.000000] (2018-09-06,0.638934) [5.000000] (2018-09-06,0.611646) [5.000000] (2018-09-06,0.652406) [13.000000] (2018-09-06,0.619235) [9.000000] (2018-09-06,1.290786) [10.000000] (2018-09-06,0.763552) [14.000000] (2018-09-06,0.755470) [13.000000] (2018-09-06,0.291958) [20.000000] (2018-09-06,0.365652) [14.000000] (2018-09-06,0.426157) [11.000000] (2018-09-06,0.267694) [9.000000] (2018-09-06,0.236689) [10.000000] (2018-09-06,0.187287) [13.000000] (2018-09-06,0.199464) [13.000000] (2018-09-07,0.502102) [12.000000] (2018-09-07,0.500714) [11.000000] (2018-09-07,0.275244) [8.000000] (2018-09-07,0.088967) [26.000000] (2018-09-07,0.496208) [4.000000] (2018-09-07,0.329825) [16.000000] (2018-09-07,1.473843) [8.000000] (2018-09-07,0.737355) [20.000000] (2018-09-07,0.608624) [18.000000] (2018-09-07,0.669651) [13.000000] (2018-09-07,-0.142978) [23.000000] (2018-09-07,0.998644) [12.000000] (2018-09-07,0.460709) [18.000000] (2018-09-07,0.585939) [8.000000] (2018-09-07,0.560617) [11.000000] (2018-09-07,0.733682) [5.000000] (2018-09-07,0.382927) [15.000000] (2018-09-07,0.362128) [10.000000] (2018-09-07,0.791506) [7.000000] (2018-09-07,0.225198) [12.000000] (2018-09-07,0.117069) [22.000000] (2018-09-08,0.171883) [9.000000] (2018-09-08,0.273865) [4.000000] (2018-09-08,0.294302) [4.000000] (2018-09-08,0.203133) [9.000000] (2018-09-08,0.334015) [4.000000] (2018-09-08,0.121087) [13.000000] (2018-09-08,0.254673) [8.000000] (2018-09-08,0.114473) [21.000000] (2018-09-08,0.305863) [12.000000] (2018-09-08,0.327672) [11.000000] (2018-09-08,-0.120591) [16.000000] (2018-09-08,0.873865) [18.000000] (2018-09-08,0.885883) [17.000000] (2018-09-08,0.496825) [13.000000] (2018-09-08,0.485140) [12.000000] (2018-09-08,0.229434) [4.000000] (2018-09-08,0.156505) [10.000000] (2018-09-09,0.688968) [4.000000] (2018-09-09,1.534707) [6.000000] (2018-09-09,1.224938) [4.000000] (2018-09-09,0.831796) [19.000000] (2018-09-09,0.878682) [5.000000] (2018-09-09,1.146523) [9.000000] (2018-09-09,0.293506) [7.000000] (2018-09-09,0.198574) [18.000000] (2018-09-09,0.273336) [8.000000] (2018-09-09,0.274638) [8.000000] (2018-09-09,0.292184) [20.000000] (2018-09-10,0.303307) [6.000000] (2018-09-10,0.050575) [20.000000] (2018-09-10,0.278795) [5.000000] (2018-09-10,0.269734) [5.000000] (2018-09-10,-0.052535) [13.000000] (2018-09-10,0.199688) [4.000000] (2018-09-10,0.069356) [11.000000] (2018-09-11,0.756970) [14.000000] (2018-09-11,0.745046) [13.000000] (2018-09-11,1.238261) [7.000000] (2018-09-11,1.150084) [8.000000] (2018-09-11,0.266135) [7.000000] (2018-09-11,0.348145) [5.000000] (2018-09-11,0.159646) [10.000000] (2018-09-12,0.097830) [26.000000] (2018-09-12,0.176928) [11.000000] (2018-09-12,0.263910) [5.000000] (2018-09-12,0.120759) [15.000000] (2018-09-12,0.449966) [15.000000] (2018-09-12,0.530812) [15.000000] (2018-09-12,0.590922) [15.000000] (2018-09-12,0.580749) [14.000000] (2018-09-12,0.997493) [12.000000] (2018-09-12,1.022162) [11.000000] (2018-09-12,0.655463) [11.000000] (2018-09-12,0.736893) [10.000000] (2018-09-12,0.485991) [17.000000] (2018-09-12,0.491914) [16.000000] (2018-09-12,1.249992) [12.000000] (2018-09-12,1.199099) [11.000000] (2018-09-12,0.369086) [14.000000] (2018-09-12,0.962360) [9.000000] (2018-09-12,0.482633) [7.000000] (2018-09-12,0.338613) [21.000000] (2018-09-12,0.436294) [17.000000] (2018-09-12,0.270600) [28.000000] (2018-09-12,0.232011) [9.000000] (2018-09-12,0.003108) [14.000000] (2018-09-12,0.092849) [11.000000] (2018-09-12,0.410282) [15.000000] (2018-09-12,0.403098) [14.000000] (2018-09-12,0.027217) [12.000000] (2018-09-13,1.800449) [6.000000] (2018-09-13,0.440895) [14.000000] (2018-09-13,0.436775) [13.000000] (2018-09-13,0.412406) [17.000000] (2018-09-13,0.187163) [28.000000] (2018-09-13,0.420210) [17.000000] (2018-09-13,0.422552) [16.000000] (2018-09-13,0.305231) [8.000000] (2018-09-13,0.159879) [13.000000] (2018-09-13,0.387781) [8.000000] (2018-09-13,0.148676) [22.000000] (2018-09-13,0.271977) [5.000000] (2018-09-13,0.079315) [14.000000] (2018-09-13,0.350470) [4.000000] (2018-09-13,0.117241) [10.000000] (2018-09-13,0.989022) [12.000000] (2018-09-13,1.008637) [11.000000] (2018-09-13,0.321676) [19.000000] (2018-09-13,0.303893) [11.000000] (2018-09-14,0.500435) [4.000000] (2018-09-14,0.444239) [12.000000] (2018-09-14,0.113403) [26.000000] (2018-09-14,0.325225) [12.000000] (2018-09-14,0.331720) [11.000000] (2018-09-14,0.555087) [14.000000] (2018-09-14,0.442463) [15.000000] (2018-09-14,0.633380) [12.000000] (2018-09-14,0.682194) [12.000000] (2018-09-14,0.390150) [4.000000] (2018-09-14,0.290911) [4.000000] (2018-09-14,-1.290722) [12.000000] (2018-09-14,0.215545) [7.000000] (2018-09-14,0.178837) [12.000000] (2018-09-14,0.879228) [11.000000] (2018-09-14,0.613489) [9.000000] (2018-09-14,0.273455) [4.000000] (2018-09-14,0.108499) [13.000000] (2018-09-14,0.709368) [10.000000] (2018-09-14,0.718207) [9.000000] (2018-09-14,0.132723) [5.000000] (2018-09-14,0.293308) [8.000000] (2018-09-14,0.215416) [20.000000] (2018-09-14,0.514093) [15.000000] (2018-09-14,0.447288) [16.000000] (2018-09-14,0.815006) [18.000000] (2018-09-14,0.828613) [17.000000] (2018-09-14,0.240012) [6.000000] (2018-09-14,0.143756) [12.000000] (2018-09-14,0.765652) [13.000000] (2018-09-14,0.631425) [11.000000] (2018-09-14,0.883229) [7.000000] (2018-09-14,0.782633) [6.000000] (2018-09-15,0.042966) [5.000000] (2018-09-15,0.184210) [12.000000] (2018-09-15,0.139706) [21.000000] (2018-09-15,0.400295) [8.000000] (2018-09-15,0.122038) [23.000000] (2018-09-15,0.393869) [14.000000] (2018-09-15,0.478389) [9.000000] (2018-09-16,0.274089) [11.000000] (2018-09-16,0.274681) [13.000000] (2018-09-16,0.349026) [16.000000] (2018-09-16,0.358138) [21.000000] (2018-09-16,2.032453) [11.000000] (2018-09-16,0.640469) [12.000000] (2018-09-16,0.688997) [11.000000] (2018-09-16,0.345726) [19.000000] (2018-09-16,0.354503) [15.000000] (2018-09-16,0.290746) [14.000000] (2018-09-16,0.312860) [12.000000] (2018-09-16,2.139601) [5.000000] (2018-09-16,0.006249) [10.000000] (2018-09-16,0.140606) [4.000000] (2018-09-17,0.333772) [4.000000] (2018-09-17,0.279877) [11.000000] (2018-09-17,0.162463) [7.000000] (2018-09-17,0.444408) [12.000000] (2018-09-17,0.616346) [7.000000] (2018-09-17,0.397556) [10.000000] (2018-09-17,0.151383) [30.000000] (2018-09-17,0.509815) [5.000000] (2018-09-17,0.171098) [12.000000] (2018-09-17,0.474382) [5.000000] (2018-09-17,-0.088574) [13.000000] (2018-09-17,0.906215) [5.000000] (2018-09-17,0.183454) [10.000000] (2018-09-17,0.349098) [4.000000] (2018-09-17,0.110902) [8.000000] (2018-09-17,0.419973) [4.000000] (2018-09-17,0.117952) [12.000000] (2018-09-17,1.450846) [4.000000] (2018-09-17,0.175552) [11.000000] (2018-09-17,1.030679) [4.000000] (2018-09-17,1.641076) [10.000000] (2018-09-17,0.472522) [5.000000] (2018-09-17,0.227228) [13.000000] (2018-09-17,0.238792) [5.000000] (2018-09-17,0.309691) [5.000000] (2018-09-17,0.055626) [15.000000] (2018-09-17,0.260271) [11.000000] (2018-09-17,0.079277) [32.000000] (2018-09-17,0.227727) [9.000000] (2018-09-17,0.111595) [18.000000] (2018-09-17,-0.277118) [6.000000] (2018-09-17,0.237958) [7.000000] (2018-09-17,0.121217) [18.000000] (2018-09-17,0.437233) [4.000000] (2018-09-17,0.174313) [13.000000] (2018-09-17,0.117134) [19.000000] (2018-09-17,0.178160) [12.000000] (2018-09-17,0.324888) [8.000000] (2018-09-17,-0.073011) [22.000000] (2018-09-17,1.813160) [10.000000] (2018-09-17,0.296532) [8.000000] (2018-09-17,0.164332) [19.000000] (2018-09-17,0.245296) [4.000000] (2018-09-17,0.054440) [10.000000] (2018-09-17,0.238151) [9.000000] (2018-09-17,0.217561) [24.000000] (2018-09-17,0.232929) [7.000000] (2018-09-17,0.199039) [18.000000] (2018-09-17,0.479928) [10.000000] (2018-09-17,0.260594) [29.000000] (2018-09-17,0.286549) [12.000000] (2018-09-17,0.130347) [7.000000] (2018-09-17,0.311468) [9.000000] (2018-09-17,0.390685) [5.000000] (2018-09-17,-0.288398) [11.000000] (2018-09-17,0.159772) [10.000000] (2018-09-17,-0.285998) [11.000000] (2018-09-17,0.276842) [10.000000] (2018-09-17,0.107746) [27.000000] (2018-09-17,0.419976) [12.000000] (2018-09-17,0.249668) [12.000000] (2018-09-17,1.125362) [5.000000] (2018-09-17,0.344635) [19.000000] (2018-09-17,0.354928) [8.000000] (2018-09-17,1.355138) [7.000000] (2018-09-17,0.504464) [27.000000] (2018-09-17,1.464257) [8.000000] (2018-09-17,0.397888) [26.000000] (2018-09-17,1.202377) [10.000000] (2018-09-17,0.440888) [27.000000] (2018-09-17,0.277129) [12.000000] (2018-09-17,0.268900) [12.000000] (2018-09-17,0.201866) [13.000000] (2018-09-17,0.930137) [5.000000] (2018-09-17,0.676404) [17.000000] (2018-09-17,1.110533) [8.000000] (2018-09-17,0.305082) [25.000000] (2018-09-17,1.041165) [7.000000] (2018-09-17,0.294663) [25.000000] (2018-09-17,0.254136) [13.000000] (2018-09-17,0.531834) [14.000000] (2018-09-17,0.210327) [14.000000] (2018-09-17,0.200525) [13.000000] (2018-09-17,0.743207) [14.000000] (2018-09-17,0.674808) [15.000000] (2018-09-18,1.109771) [7.000000] (2018-09-18,0.295886) [25.000000] (2018-09-18,0.237849) [21.000000] (2018-09-18,0.545644) [14.000000] (2018-09-18,0.188778) [22.000000] (2018-09-18,0.544217) [14.000000] (2018-09-18,0.464370) [12.000000] (2018-09-19,0.597255) [10.000000] (2018-09-19,0.531807) [11.000000] (2018-09-20,1.065818) [9.000000] (2018-09-20,1.071263) [19.000000] (2018-09-20,0.295320) [12.000000] (2018-09-20,0.353656) [7.000000] (2018-09-20,0.294423) [10.000000] (2018-09-20,0.182524) [9.000000] (2018-09-20,0.270006) [18.000000] (2018-09-20,0.497120) [11.000000] (2018-09-20,0.376266) [16.000000] (2018-09-20,0.293342) [21.000000] (2018-09-20,0.563088) [12.000000] (2018-09-20,0.586715) [5.000000] (2018-09-20,0.584827) [10.000000] (2018-09-20,0.547569) [9.000000] (2018-09-20,1.142742) [4.000000] (2018-09-20,0.647625) [8.000000] (2018-09-20,0.733188) [4.000000] (2018-09-20,0.627540) [18.000000] (2018-09-20,0.794038) [4.000000] (2018-09-20,0.302035) [9.000000] (2018-09-20,0.738403) [20.000000] (2018-09-21,0.032384) [23.000000] (2018-09-21,-0.436480) [4.000000] (2018-09-21,0.701910) [17.000000] (2018-09-21,0.705089) [17.000000] (2018-09-21,0.675700) [17.000000] (2018-09-21,1.391707) [7.000000] (2018-09-21,-0.355791) [5.000000] (2018-09-21,0.842238) [9.000000] (2018-09-21,0.965473) [17.000000] (2018-09-21,0.567390) [14.000000] (2018-09-21,0.465991) [7.000000] (2018-09-21,0.935581) [4.000000] (2018-09-21,0.564377) [13.000000] (2018-09-22,0.414239) [12.000000] (2018-09-22,0.463460) [18.000000] (2018-09-22,0.434520) [17.000000] (2018-09-23,0.812932) [16.000000] (2018-09-23,1.111184) [12.000000] (2018-09-23,0.630682) [18.000000] (2018-09-23,0.908183) [7.000000] (2018-09-23,0.669935) [10.000000] (2018-09-23,0.588090) [14.000000] (2018-09-23,0.485718) [12.000000] (2018-09-23,-0.152818) [9.000000] (2018-09-23,0.797810) [6.000000] (2018-09-23,0.749470) [4.000000] (2018-09-23,0.300350) [10.000000] (2018-09-23,-0.109456) [33.000000] (2018-09-23,0.555547) [18.000000] (2018-09-23,0.827849) [17.000000] (2018-09-24,1.071021) [5.000000] (2018-09-24,0.441443) [11.000000] (2018-09-24,0.208667) [23.000000] (2018-09-24,0.258208) [19.000000] (2018-09-24,0.224539) [21.000000] (2018-09-24,0.237772) [19.000000] (2018-09-24,0.416239) [12.000000] (2018-09-24,0.420304) [11.000000] (2018-09-24,-0.103207) [23.000000] (2018-09-24,0.958601) [12.000000] (2018-09-24,0.535226) [11.000000] (2018-09-24,0.678244) [12.000000] (2018-09-24,0.697358) [11.000000] (2018-09-24,0.174474) [16.000000] (2018-09-24,0.195909) [11.000000] (2018-09-24,0.144249) [21.000000] (2018-09-25,0.772033) [4.000000] (2018-09-25,0.725602) [4.000000] (2018-09-25,0.482223) [12.000000] (2018-09-25,0.413845) [13.000000] (2018-09-25,1.383427) [13.000000] (2018-09-25,0.864213) [11.000000] (2018-09-25,1.677930) [5.000000] (2018-09-25,1.024050) [10.000000] (2018-09-25,0.679098) [16.000000] (2018-09-25,1.863513) [6.000000] (2018-09-25,2.279651) [8.000000] (2018-09-25,0.521985) [4.000000] (2018-09-25,2.324334) [5.000000] (2018-09-25,0.590689) [5.000000] (2018-09-25,0.656957) [15.000000] (2018-09-25,0.500203) [12.000000] (2018-09-25,0.559132) [16.000000] (2018-09-25,0.506947) [13.000000] (2018-09-25,0.296991) [20.000000] (2018-09-25,0.485346) [14.000000] (2018-09-25,0.214917) [18.000000] (2018-09-25,1.019142) [9.000000] (2018-09-25,0.429717) [21.000000] (2018-09-25,0.960595) [9.000000] (2018-09-25,0.560115) [22.000000] (2018-09-26,0.967108) [8.000000] (2018-09-26,0.350490) [33.000000] (2018-09-26,0.533362) [18.000000] (2018-09-26,0.877568) [15.000000] (2018-09-26,0.443324) [20.000000] (2018-09-26,0.759059) [14.000000] (2018-09-26,0.584329) [18.000000] (2018-09-26,0.613416) [15.000000] (2018-09-26,0.557338) [18.000000] (2018-09-26,0.562180) [17.000000] (2018-09-26,0.963413) [7.000000] (2018-09-27,0.685006) [7.000000] (2018-09-27,0.386991) [20.000000] (2018-09-27,0.715734) [13.000000] (2018-09-28,0.569509) [12.000000] (2018-09-28,0.609245) [6.000000] (2018-09-28,0.523353) [6.000000] (2018-09-28,0.382649) [4.000000] (2018-09-28,1.536815) [9.000000] (2018-09-28,0.823041) [12.000000] (2018-09-28,0.763127) [15.000000] (2018-09-28,0.809423) [11.000000] (2018-09-28,0.844168) [10.000000] (2018-09-28,0.825147) [10.000000] (2018-09-28,0.805378) [10.000000] (2018-09-28,0.649711) [16.000000] (2018-09-28,0.319573) [19.000000] (2018-09-28,0.318161) [18.000000] (2018-09-28,0.344683) [10.000000] (2018-09-28,0.336523) [9.000000] (2018-09-28,0.511483) [21.000000] (2018-09-28,0.604427) [17.000000] (2018-09-28,0.220342) [13.000000] (2018-09-28,0.914538) [18.000000] (2018-09-28,0.450540) [34.000000] (2018-09-28,0.540929) [15.000000] (2018-09-28,0.517620) [14.000000] (2018-09-29,0.596668) [6.000000] (2018-09-29,0.475977) [6.000000] (2018-09-29,0.860966) [11.000000] (2018-09-29,0.787061) [10.000000] (2018-09-29,0.669347) [9.000000] (2018-09-29,0.370885) [14.000000] (2018-09-29,0.426980) [10.000000] (2018-09-29,0.397899) [8.000000] (2018-09-29,0.418268) [13.000000] (2018-09-29,0.410705) [12.000000] (2018-09-29,0.383012) [16.000000] (2018-09-29,0.381947) [15.000000] (2018-09-29,0.264262) [17.000000] (2018-09-29,0.337670) [15.000000] (2018-09-29,0.205155) [19.000000] (2018-09-29,0.396235) [11.000000] (2018-09-29,0.339432) [11.000000] (2018-09-30,0.840629) [7.000000] (2018-09-30,0.265247) [22.000000] (2018-09-30,0.263620) [14.000000] (2018-09-30,0.287685) [14.000000] (2018-09-30,0.230484) [14.000000] (2018-09-30,0.292911) [20.000000] (2018-09-30,0.453406) [15.000000] (2018-09-30,0.348531) [11.000000] (2018-09-30,0.448174) [12.000000] (2018-09-30,1.919903) [13.000000] (2018-09-30,0.501998) [4.000000] (2018-09-30,0.193012) [16.000000] (2018-09-30,0.609783) [4.000000] (2018-09-30,0.703315) [6.000000] (2018-09-30,-0.002011) [15.000000] (2018-09-30,0.296059) [14.000000] (2018-09-30,0.306089) [11.000000] (2018-09-30,0.167106) [11.000000] (2018-09-30,0.239799) [10.000000] (2018-09-30,0.277559) [7.000000] (2018-10-01,0.110673) [5.000000] (2018-10-01,7.324481) [4.000000] (2018-10-01,2.937035) [10.000000] (2018-10-01,2.614048) [7.000000] (2018-10-01,0.821786) [5.000000] (2018-10-01,5.451711) [5.000000] (2018-10-02,0.302789) [22.000000] (2018-10-02,0.301179) [21.000000] (2018-10-02,0.359833) [27.000000] (2018-10-02,0.303024) [19.000000] (2018-10-02,0.372284) [22.000000] (2018-10-03,0.190588) [11.000000] (2018-10-03,0.270449) [18.000000] (2018-10-03,0.291268) [14.000000] (2018-10-03,0.316563) [15.000000] (2018-10-03,0.267911) [18.000000] (2018-10-03,0.553294) [17.000000] (2018-10-03,0.204197) [20.000000] (2018-10-03,0.240383) [14.000000] (2018-10-03,0.255867) [18.000000] (2018-10-03,0.298042) [15.000000] (2018-10-03,0.792286) [8.000000] (2018-10-03,1.016275) [6.000000] (2018-10-03,0.688076) [11.000000] (2018-10-03,0.909618) [8.000000] (2018-10-03,0.292532) [31.000000] (2018-10-04,0.445089) [15.000000] (2018-10-04,0.571926) [11.000000] (2018-10-04,0.425780) [14.000000] (2018-10-04,0.385681) [13.000000] (2018-10-04,0.367674) [11.000000] (2018-10-04,0.374531) [9.000000] (2018-10-04,0.263757) [8.000000] (2018-10-04,0.663052) [4.000000] (2018-10-04,0.289508) [14.000000] (2018-10-04,0.184789) [13.000000] (2018-10-04,0.274932) [13.000000] (2018-10-04,0.157088) [11.000000] (2018-10-04,0.467691) [7.000000] (2018-10-04,0.361857) [11.000000] (2018-10-05,0.629654) [11.000000] (2018-10-05,0.560657) [10.000000] (2018-10-05,0.377222) [10.000000] (2018-10-05,0.303301) [14.000000] (2018-10-05,0.183142) [6.000000] (2018-10-05,0.457464) [12.000000] (2018-10-05,0.264065) [13.000000] (2018-10-05,0.433849) [8.000000] (2018-10-05,0.193501) [11.000000] (2018-10-05,0.271774) [10.000000] (2018-10-05,0.185067) [4.000000] (2018-10-05,0.462741) [16.000000] (2018-10-05,0.411550) [17.000000] (2018-10-05,0.571164) [16.000000] (2018-10-05,0.524086) [15.000000] (2018-10-05,0.235557) [16.000000] (2018-10-05,0.282144) [11.000000] (2018-10-05,0.245528) [14.000000] (2018-10-05,0.259983) [17.000000] (2018-10-05,0.325490) [14.000000] (2018-10-05,0.275550) [16.000000] (2018-10-05,0.294959) [14.000000] (2018-10-05,0.293269) [10.000000] (2018-10-05,0.283144) [15.000000] (2018-10-05,0.233392) [7.000000] (2018-10-05,0.360982) [20.000000] (2018-10-05,0.179814) [24.000000] (2018-10-05,0.201983) [20.000000] (2018-10-05,0.217207) [8.000000] (2018-10-05,0.638921) [4.000000] (2018-10-05,0.416209) [6.000000] (2018-10-05,0.077290) [5.000000] (2018-10-05,0.172676) [15.000000] (2018-10-05,0.262268) [9.000000] (2018-10-05,0.167518) [12.000000] (2018-10-05,0.243377) [15.000000] (2018-10-05,0.302606) [8.000000] (2018-10-05,0.213011) [14.000000] (2018-10-05,0.343368) [13.000000] (2018-10-05,0.429944) [10.000000] (2018-10-05,0.234606) [6.000000] (2018-10-05,0.335539) [13.000000] (2018-10-05,0.182117) [19.000000] (2018-10-05,0.184505) [14.000000] (2018-10-05,0.270077) [9.000000] (2018-10-05,0.172359) [11.000000] (2018-10-05,0.201872) [20.000000] (2018-10-05,0.238734) [15.000000] (2018-10-05,0.238312) [14.000000] (2018-10-05,0.391459) [20.000000] (2018-10-05,-0.252149) [22.000000] (2018-10-05,0.286126) [21.000000] (2018-10-05,0.124512) [4.000000] (2018-10-05,0.243885) [13.000000] (2018-10-05,0.185139) [10.000000] (2018-10-05,0.346422) [8.000000] (2018-10-05,0.249396) [9.000000] (2018-10-05,0.165068) [11.000000] (2018-10-05,1.296509) [9.000000] (2018-10-05,0.181196) [14.000000] (2018-10-05,0.183365) [14.000000] (2018-10-05,0.242275) [9.000000] (2018-10-06,0.439128) [18.000000] (2018-10-06,0.455165) [17.000000] (2018-10-06,0.339846) [16.000000] (2018-10-06,0.336186) [15.000000] (2018-10-06,0.557687) [5.000000] (2018-10-06,0.200471) [18.000000] (2018-10-06,0.273259) [12.000000] (2018-10-06,0.161576) [14.000000] (2018-10-06,0.394095) [21.000000] (2018-10-06,0.369435) [21.000000] (2018-10-06,0.705295) [4.000000] (2018-10-06,0.622050) [4.000000] (2018-10-06,0.569017) [5.000000] (2018-10-06,0.670308) [4.000000] (2018-10-06,0.811194) [4.000000] (2018-10-06,0.611158) [13.000000] (2018-10-06,0.274911) [17.000000] (2018-10-06,0.289811) [15.000000] (2018-10-06,0.187109) [10.000000] (2018-10-06,0.239315) [15.000000] (2018-10-06,0.189210) [14.000000] (2018-10-06,0.387545) [9.000000] (2018-10-06,0.425173) [20.000000] (2018-10-06,0.421586) [20.000000] (2018-10-06,0.465641) [18.000000] (2018-10-06,0.429835) [17.000000] (2018-10-06,0.885802) [14.000000] (2018-10-06,0.410486) [15.000000] (2018-10-06,0.453401) [13.000000] (2018-10-06,0.822913) [9.000000] (2018-10-06,0.606240) [12.000000] (2018-10-06,0.489312) [11.000000] (2018-10-06,0.555315) [12.000000] (2018-10-06,0.529443) [9.000000] (2018-10-06,0.357672) [9.000000] (2018-10-06,0.278972) [5.000000] (2018-10-06,0.171588) [23.000000] (2018-10-06,0.179950) [21.000000] (2018-10-06,0.266621) [18.000000] (2018-10-06,0.201399) [25.000000] (2018-10-06,0.362559) [4.000000] (2018-10-06,0.193347) [14.000000] (2018-10-06,0.303127) [9.000000] (2018-10-06,0.203296) [13.000000] (2018-10-06,0.186331) [16.000000] (2018-10-06,0.240784) [12.000000] (2018-10-06,0.176537) [16.000000] (2018-10-07,0.184427) [21.000000] (2018-10-07,0.332441) [11.000000] (2018-10-07,0.320229) [13.000000] (2018-10-07,0.152342) [16.000000] (2018-10-07,0.234478) [12.000000] (2018-10-07,0.252487) [22.000000] (2018-10-07,0.308867) [22.000000] (2018-10-07,0.249771) [22.000000] (2018-10-07,0.272067) [19.000000] (2018-10-07,0.261338) [19.000000] (2018-10-07,0.318692) [16.000000] (2018-10-07,0.277568) [19.000000] (2018-10-07,2.266557) [7.000000] (2018-10-07,0.379403) [11.000000] (2018-10-07,0.372800) [10.000000] (2018-10-07,0.491164) [17.000000] (2018-10-07,0.489657) [16.000000] (2018-10-07,0.409643) [13.000000] (2018-10-07,0.991138) [14.000000] (2018-10-07,0.445075) [18.000000] (2018-10-07,0.771912) [14.000000] (2018-10-07,0.586321) [17.000000] (2018-10-07,0.375089) [16.000000] (2018-10-07,0.261062) [26.000000] (2018-10-07,0.440376) [15.000000] (2018-10-07,0.265147) [23.000000] (2018-10-07,0.318455) [15.000000] (2018-10-07,0.150265) [25.000000] (2018-10-08,0.546210) [11.000000] (2018-10-08,0.389245) [10.000000] (2018-10-08,1.382104) [5.000000] (2018-10-08,0.565296) [10.000000] (2018-10-08,1.067792) [11.000000] (2018-10-08,0.530887) [22.000000] (2018-10-08,0.229690) [13.000000] (2018-10-08,0.387854) [11.000000] (2018-10-08,0.228449) [13.000000] (2018-10-08,1.003193) [9.000000] (2018-10-08,0.341976) [27.000000] (2018-10-08,0.477238) [21.000000] (2018-10-08,0.596270) [12.000000] (2018-10-08,0.854474) [4.000000] (2018-10-08,1.260484) [7.000000] (2018-10-08,0.930622) [16.000000] (2018-10-08,0.814419) [15.000000] (2018-10-08,0.286886) [12.000000] (2018-10-08,0.340474) [12.000000] (2018-10-08,0.257882) [16.000000] (2018-10-08,0.487558) [11.000000] (2018-10-08,4.344701) [13.000000] (2018-10-08,0.453968) [10.000000] (2018-10-08,0.404003) [9.000000] (2018-10-08,0.997362) [6.000000] (2018-10-08,0.509287) [14.000000] (2018-10-08,0.607424) [13.000000] (2018-10-08,0.773902) [15.000000] (2018-10-08,2.443008) [4.000000] (2018-10-08,0.351941) [16.000000] (2018-10-08,0.275890) [19.000000] (2018-10-08,0.183648) [5.000000] (2018-10-09,0.326986) [12.000000] (2018-10-09,0.354284) [11.000000] (2018-10-09,0.384891) [5.000000] (2018-10-09,0.290441) [16.000000] (2018-10-09,0.280994) [15.000000] (2018-10-09,0.300189) [15.000000] (2018-10-09,0.301962) [14.000000] (2018-10-09,0.818343) [7.000000] (2018-10-09,0.432442) [24.000000] (2018-10-09,-0.037736) [4.000000] (2018-10-09,0.348730) [16.000000] (2018-10-09,0.363733) [15.000000] (2018-10-09,0.289562) [12.000000] (2018-10-09,0.458677) [6.000000] (2018-10-09,0.352024) [11.000000] (2018-10-10,0.237285) [17.000000] (2018-10-10,0.566244) [17.000000] (2018-10-10,0.175225) [26.000000] (2018-10-10,0.218062) [15.000000] (2018-10-10,0.214816) [15.000000] (2018-10-10,0.494517) [15.000000] (2018-10-10,0.167428) [4.000000] (2018-10-10,0.473659) [15.000000] (2018-10-10,0.313086) [21.000000] (2018-10-10,0.614933) [16.000000] (2018-10-10,0.179766) [17.000000] (2018-10-10,0.168435) [19.000000] (2018-10-10,0.130347) [12.000000] (2018-10-10,0.255076) [9.000000] (2018-10-10,0.272354) [10.000000] (2018-10-10,0.222287) [9.000000] (2018-10-10,0.173470) [11.000000] (2018-10-10,0.184835) [10.000000] (2018-10-10,0.184409) [12.000000] (2018-10-10,0.127743) [15.000000] (2018-10-10,0.178503) [11.000000] (2018-10-10,0.187222) [10.000000] (2018-10-10,0.208140) [11.000000] (2018-10-10,0.236929) [10.000000] (2018-10-10,0.190969) [16.000000] (2018-10-10,0.205173) [15.000000] (2018-10-10,0.187248) [16.000000] (2018-10-10,0.153682) [22.000000] (2018-10-10,0.181091) [16.000000] (2018-10-10,0.352726) [20.000000] (2018-10-10,0.195914) [15.000000] (2018-10-10,0.244813) [15.000000] (2018-10-10,0.282470) [17.000000] (2018-10-10,0.236260) [11.000000] (2018-10-10,0.198683) [16.000000] (2018-10-10,0.114294) [27.000000] (2018-10-10,0.181636) [12.000000] (2018-10-10,0.203428) [11.000000] (2018-10-10,0.308411) [16.000000] (2018-10-10,0.286538) [15.000000] (2018-10-10,0.225585) [15.000000] (2018-10-10,0.233865) [14.000000] (2018-10-10,0.200246) [17.000000] (2018-10-10,0.169632) [21.000000] (2018-10-10,0.454893) [16.000000] (2018-10-10,0.433014) [15.000000] (2018-10-10,0.180563) [16.000000] (2018-10-10,0.190441) [15.000000] (2018-10-10,0.176800) [13.000000] (2018-10-10,0.199118) [12.000000] (2018-10-10,0.170487) [12.000000] (2018-10-10,0.189924) [11.000000] (2018-10-10,0.177343) [12.000000] (2018-10-10,0.210896) [11.000000] (2018-10-10,0.385827) [15.000000] (2018-10-10,0.375134) [15.000000] (2018-10-10,0.371037) [15.000000] (2018-10-10,0.391575) [14.000000] (2018-10-10,0.355938) [15.000000] (2018-10-10,0.194412) [15.000000] (2018-10-10,0.111682) [26.000000] (2018-10-10,0.176939) [15.000000] (2018-10-10,0.130575) [21.000000] (2018-10-10,0.256366) [13.000000] (2018-10-10,0.282036) [14.000000] (2018-10-10,0.284363) [11.000000] (2018-10-10,0.262804) [16.000000] (2018-10-10,0.249184) [15.000000] (2018-10-10,0.257970) [12.000000] (2018-10-10,0.300626) [11.000000] (2018-10-10,0.198289) [11.000000] (2018-10-10,0.183313) [12.000000] (2018-10-10,0.182085) [11.000000] (2018-10-10,0.225559) [12.000000] (2018-10-10,0.233335) [12.000000] (2018-10-10,0.541765) [7.000000] (2018-10-10,0.181839) [11.000000] (2018-10-10,0.260022) [10.000000] (2018-10-10,0.222720) [11.000000] (2018-10-10,0.328112) [18.000000] (2018-10-10,0.189786) [10.000000] (2018-10-10,0.213297) [9.000000] (2018-10-10,0.160810) [7.000000] (2018-10-10,0.243347) [12.000000] (2018-10-10,0.241257) [14.000000] (2018-10-10,0.501225) [9.000000] (2018-10-10,0.190923) [15.000000] (2018-10-10,0.592064) [15.000000] (2018-10-10,0.114099) [24.000000] (2018-10-10,1.187409) [16.000000] (2018-10-10,1.116078) [15.000000] (2018-10-10,0.169936) [15.000000] (2018-10-10,0.138811) [21.000000] (2018-10-10,0.175750) [12.000000] (2018-10-10,0.212972) [18.000000] (2018-10-10,0.414542) [16.000000] (2018-10-10,0.188232) [25.000000] (2018-10-10,0.293078) [10.000000] (2018-10-10,0.302337) [9.000000] (2018-10-10,0.286374) [16.000000] (2018-10-10,0.197864) [23.000000] (2018-10-10,0.595702) [8.000000] (2018-10-10,0.410932) [8.000000] (2018-10-10,0.691361) [6.000000] (2018-10-10,0.226770) [18.000000] (2018-10-10,0.235520) [13.000000] (2018-10-10,0.281113) [14.000000] (2018-10-10,0.323876) [11.000000] (2018-10-10,0.324563) [10.000000] (2018-10-10,0.281629) [14.000000] (2018-10-10,0.380761) [11.000000] (2018-10-10,0.378092) [9.000000] (2018-10-10,0.290427) [12.000000] (2018-10-10,0.321219) [10.000000] (2018-10-10,0.207461) [7.000000] (2018-10-10,0.314298) [12.000000] (2018-10-10,0.361241) [10.000000] (2018-10-10,0.258765) [8.000000] (2018-10-10,0.405975) [13.000000] (2018-10-10,0.359203) [14.000000] (2018-10-10,0.191526) [4.000000] (2018-10-10,0.431926) [11.000000] (2018-10-10,0.439841) [10.000000] (2018-10-10,0.355161) [11.000000] (2018-10-10,0.359694) [10.000000] (2018-10-10,0.337530) [11.000000] (2018-10-10,0.354874) [10.000000] (2018-10-10,0.502894) [11.000000] (2018-10-10,0.575646) [10.000000] (2018-10-10,0.470906) [17.000000] (2018-10-10,0.369125) [13.000000] (2018-10-10,0.578217) [9.000000] (2018-10-10,0.319505) [16.000000] (2018-10-10,-0.197618) [30.000000] (2018-10-10,0.470956) [15.000000] (2018-10-10,0.867963) [15.000000] (2018-10-10,0.328557) [14.000000] (2018-10-10,0.546781) [16.000000] (2018-10-10,0.534137) [16.000000] (2018-10-10,0.336539) [14.000000] (2018-10-10,0.274238) [6.000000] (2018-10-10,0.364178) [14.000000] (2018-10-10,0.359624) [14.000000] (2018-10-10,0.373508) [13.000000] (2018-10-10,0.410855) [17.000000] (2018-10-10,0.517362) [13.000000] (2018-10-10,0.341371) [11.000000] (2018-10-10,0.485385) [11.000000] (2018-10-10,0.500832) [10.000000] (2018-10-10,0.627489) [19.000000] (2018-10-10,0.764292) [16.000000] (2018-10-10,0.440404) [13.000000] (2018-10-10,0.318765) [15.000000] (2018-10-10,0.287772) [16.000000] (2018-10-10,0.823754) [9.000000] (2018-10-10,0.320977) [15.000000] (2018-10-10,0.333967) [14.000000] (2018-10-10,0.481354) [12.000000] (2018-10-10,0.443585) [13.000000] (2018-10-10,0.420820) [16.000000] (2018-10-10,0.377885) [17.000000] (2018-10-10,0.350025) [17.000000] (2018-10-10,0.201758) [27.000000] (2018-10-11,0.965931) [13.000000] (2018-10-11,0.647375) [18.000000] (2018-10-11,0.437337) [13.000000] (2018-10-11,0.406409) [13.000000] (2018-10-11,0.158363) [15.000000] (2018-10-11,0.172769) [14.000000] (2018-10-12,0.193842) [15.000000] (2018-10-12,0.239639) [15.000000] (2018-10-12,0.173829) [15.000000] (2018-10-12,0.163735) [14.000000] (2018-10-12,0.424861) [8.000000] (2018-10-12,0.211766) [18.000000] (2018-10-12,0.234778) [18.000000] (2018-10-12,0.483900) [15.000000] (2018-10-12,0.398709) [5.000000] (2018-10-12,0.133136) [10.000000] (2018-10-12,0.185215) [13.000000] (2018-10-12,0.112284) [20.000000] (2018-10-12,0.093683) [5.000000] (2018-10-12,0.210965) [15.000000] (2018-10-12,0.358984) [26.000000] (2018-10-12,0.277219) [5.000000] (2018-10-12,0.415676) [11.000000] (2018-10-12,0.427733) [10.000000] (2018-10-12,0.433470) [11.000000] (2018-10-12,0.377043) [11.000000] (2018-10-12,0.322003) [11.000000] (2018-10-12,0.152064) [20.000000] (2018-10-12,0.382647) [15.000000] (2018-10-12,0.377365) [14.000000] (2018-10-12,0.392822) [9.000000] (2018-10-12,0.366166) [9.000000] (2018-10-12,0.202646) [13.000000] (2018-10-12,0.179427) [15.000000] (2018-10-12,0.195922) [14.000000] (2018-10-12,0.422292) [32.000000] (2018-10-12,0.194812) [25.000000] (2018-10-12,0.245068) [22.000000] (2018-10-12,0.103970) [14.000000] (2018-10-12,0.387461) [14.000000] (2018-10-12,0.542276) [16.000000] (2018-10-12,0.251555) [10.000000] (2018-10-12,1.558405) [5.000000] (2018-10-12,0.259844) [16.000000] (2018-10-12,0.317451) [12.000000] (2018-10-12,0.232201) [10.000000] (2018-10-12,0.193216) [11.000000] (2018-10-12,0.169475) [11.000000] (2018-10-12,0.185900) [5.000000] (2018-10-12,0.318752) [14.000000] (2018-10-12,0.212092) [15.000000] (2018-10-12,1.250434) [9.000000] (2018-10-12,0.200065) [11.000000] (2018-10-12,0.227235) [10.000000] (2018-10-12,0.222659) [8.000000] (2018-10-12,0.235910) [11.000000] (2018-10-12,0.227752) [10.000000] (2018-10-12,0.210394) [11.000000] (2018-10-12,0.212583) [10.000000] (2018-10-12,0.175039) [13.000000] (2018-10-12,0.177382) [12.000000] (2018-10-12,0.230380) [15.000000] (2018-10-12,0.218276) [17.000000] (2018-10-12,0.223651) [12.000000] (2018-10-12,0.200463) [13.000000] (2018-10-12,0.189127) [14.000000] (2018-10-12,0.151537) [7.000000] (2018-10-12,0.210501) [10.000000] (2018-10-12,0.209410) [14.000000] (2018-10-12,0.113008) [24.000000] (2018-10-12,0.327186) [6.000000] (2018-10-12,0.178010) [12.000000] (2018-10-12,0.242879) [11.000000] (2018-10-12,0.280718) [9.000000] (2018-10-12,0.279669) [6.000000] (2018-10-13,0.508170) [10.000000] (2018-10-13,0.354902) [17.000000] (2018-10-13,0.530301) [9.000000] (2018-10-13,0.763266) [8.000000] (2018-10-13,0.188499) [14.000000] (2018-10-13,0.296187) [11.000000] (2018-10-13,0.181431) [12.000000] (2018-10-13,0.435785) [10.000000] (2018-10-13,0.847707) [10.000000] (2018-10-13,0.273956) [10.000000] (2018-10-13,0.210208) [21.000000] (2018-10-13,0.317171) [15.000000] (2018-10-13,0.182224) [18.000000] (2018-10-13,0.348399) [14.000000] (2018-10-13,0.561955) [12.000000] (2018-10-13,0.372695) [9.000000] (2018-10-13,0.301620) [14.000000] (2018-10-13,0.231339) [18.000000] (2018-10-13,0.247775) [12.000000] (2018-10-13,0.346653) [19.000000] (2018-10-13,0.510340) [16.000000] (2018-10-13,0.286206) [20.000000] (2018-10-13,0.467106) [11.000000] (2018-10-13,0.272794) [11.000000] (2018-10-13,0.415648) [18.000000] (2018-10-13,0.421433) [17.000000] (2018-10-13,0.313575) [11.000000] (2018-10-13,0.320460) [10.000000] (2018-10-13,0.415402) [19.000000] (2018-10-13,0.756049) [20.000000] (2018-10-13,0.390209) [20.000000] (2018-10-13,0.291139) [21.000000] (2018-10-13,0.305566) [13.000000] (2018-10-13,0.435535) [12.000000] (2018-10-13,0.417666) [18.000000] (2018-10-13,0.394444) [19.000000] (2018-10-13,0.118584) [13.000000] (2018-10-13,1.302402) [9.000000] (2018-10-14,-1.526217) [6.000000] (2018-10-14,0.395651) [12.000000] (2018-10-14,0.281153) [11.000000] (2018-10-14,0.663356) [8.000000] (2018-10-14,0.499552) [22.000000] (2018-10-14,0.745956) [7.000000] (2018-10-14,0.251009) [12.000000] (2018-10-14,0.180654) [11.000000] (2018-10-14,0.313741) [18.000000] (2018-10-14,0.280140) [17.000000] (2018-10-14,0.286694) [18.000000] (2018-10-14,0.253162) [17.000000] (2018-10-14,0.260558) [18.000000] (2018-10-14,0.200617) [17.000000] (2018-10-14,0.220872) [18.000000] (2018-10-14,0.178106) [17.000000] (2018-10-14,0.217600) [17.000000] (2018-10-14,0.219281) [16.000000] (2018-10-14,0.591500) [11.000000] (2018-10-14,0.350643) [11.000000] (2018-10-14,0.317315) [4.000000] (2018-10-14,0.279278) [4.000000] (2018-10-14,0.083435) [13.000000] (2018-10-15,0.569512) [12.000000] (2018-10-15,0.493764) [12.000000] (2018-10-15,0.504421) [19.000000] (2018-10-15,0.377386) [20.000000] (2018-10-15,0.486715) [20.000000] (2018-10-15,0.412406) [21.000000] (2018-10-15,0.274902) [12.000000] (2018-10-15,0.241818) [12.000000] (2018-10-15,0.342342) [20.000000] (2018-10-15,0.325419) [20.000000] (2018-10-15,-0.701531) [5.000000] (2018-10-15,0.824504) [5.000000] (2018-10-15,0.385644) [16.000000] (2018-10-15,0.378138) [15.000000] (2018-10-15,0.249254) [19.000000] (2018-10-15,0.351240) [18.000000] (2018-10-15,0.460827) [14.000000] (2018-10-15,0.354103) [15.000000] (2018-10-15,0.713849) [20.000000] (2018-10-15,0.627152) [20.000000] (2018-10-15,0.275341) [8.000000] (2018-10-16,0.223428) [14.000000] (2018-10-16,0.203397) [14.000000] (2018-10-16,0.184469) [15.000000] (2018-10-16,0.189102) [14.000000] (2018-10-16,0.277532) [14.000000] (2018-10-16,0.238836) [13.000000] (2018-10-16,-0.474766) [6.000000] (2018-10-16,0.316880) [21.000000] (2018-10-16,0.334797) [20.000000] (2018-10-16,0.225083) [22.000000] (2018-10-16,0.233945) [15.000000] (2018-10-16,0.164745) [14.000000] (2018-10-16,0.269694) [18.000000] (2018-10-16,0.183428) [17.000000] (2018-10-16,0.317499) [11.000000] (2018-10-16,0.201111) [11.000000] (2018-10-16,0.305304) [7.000000] (2018-10-16,0.051299) [27.000000] (2018-10-16,0.235376) [14.000000] (2018-10-16,0.208056) [13.000000] (2018-10-16,0.517993) [19.000000] (2018-10-16,0.416512) [22.000000] (2018-10-16,0.275199) [20.000000] (2018-10-16,0.281412) [17.000000] (2018-10-16,0.175537) [16.000000] (2018-10-16,0.258437) [13.000000] (2018-10-16,0.193535) [12.000000] (2018-10-16,0.413040) [13.000000] (2018-10-16,0.233424) [12.000000] (2018-10-17,0.743711) [11.000000] (2018-10-17,0.541331) [11.000000] (2018-10-17,0.503084) [17.000000] (2018-10-17,0.287681) [18.000000] (2018-10-17,0.234410) [17.000000] (2018-10-17,0.394231) [19.000000] (2018-10-17,0.258792) [18.000000] (2018-10-17,0.295992) [31.000000] (2018-10-17,0.347298) [32.000000] (2018-10-17,0.189213) [4.000000] (2018-10-17,0.093809) [9.000000] (2018-10-17,0.227649) [6.000000] (2018-10-18,0.325127) [13.000000] (2018-10-18,0.231203) [13.000000] (2018-10-18,0.302663) [12.000000] (2018-10-18,0.156675) [11.000000] (2018-10-18,0.528494) [9.000000] (2018-10-18,0.207559) [20.000000] (2018-10-18,0.482008) [20.000000] (2018-10-18,0.182796) [10.000000] (2018-10-18,0.406991) [14.000000] (2018-10-18,0.501246) [9.000000] (2018-10-18,0.213964) [11.000000] (2018-10-18,0.645186) [10.000000] (2018-10-18,0.418107) [12.000000] (2018-10-18,0.263066) [11.000000] (2018-10-18,0.329927) [15.000000] (2018-10-18,0.154446) [14.000000] (2018-10-18,0.384882) [4.000000] (2018-10-18,0.564179) [9.000000] (2018-10-18,0.337105) [9.000000] (2018-10-18,0.222924) [19.000000] (2018-10-18,0.248416) [12.000000] (2018-10-18,0.159878) [11.000000] (2018-10-18,0.366297) [12.000000] (2018-10-18,0.521922) [8.000000] (2018-10-18,0.184420) [10.000000] (2018-10-18,0.304458) [12.000000] (2018-10-18,0.149248) [11.000000] (2018-10-18,0.384129) [12.000000] (2018-10-18,0.244064) [11.000000] (2018-10-18,0.317076) [12.000000] (2018-10-18,0.164465) [11.000000] (2018-10-18,0.395291) [11.000000] (2018-10-18,0.232730) [19.000000] (2018-10-18,0.171790) [11.000000] (2018-10-18,0.219253) [16.000000] (2018-10-18,0.380801) [8.000000] (2018-10-18,0.133430) [11.000000] (2018-10-18,0.207119) [20.000000] (2018-10-18,0.256417) [12.000000] (2018-10-18,0.160370) [11.000000] (2018-10-18,0.287569) [22.000000] (2018-10-18,0.769371) [17.000000] (2018-10-18,0.143311) [11.000000] (2018-10-18,0.349361) [13.000000] (2018-10-18,0.174991) [11.000000] (2018-10-18,0.519369) [19.000000] (2018-10-18,0.463007) [21.000000] (2018-10-18,0.474279) [15.000000] (2018-10-18,0.416410) [14.000000] (2018-10-18,0.442114) [13.000000] (2018-10-18,0.343917) [24.000000] (2018-10-18,0.330112) [9.000000] (2018-10-18,0.373200) [12.000000] (2018-10-18,0.175213) [11.000000] (2018-10-18,0.350288) [18.000000] (2018-10-18,0.192568) [17.000000] (2018-10-18,0.649844) [10.000000] (2018-10-18,0.159987) [10.000000] (2018-10-18,0.480104) [8.000000] (2018-10-18,0.464419) [6.000000] (2018-10-18,0.303001) [5.000000] (2018-10-18,0.115837) [9.000000] (2018-10-19,0.470315) [12.000000] (2018-10-19,0.319659) [11.000000] (2018-10-19,0.232233) [12.000000] (2018-10-19,-0.387352) [13.000000] (2018-10-19,0.183926) [8.000000] (2018-10-19,0.374465) [23.000000] (2018-10-19,0.500897) [16.000000] (2018-10-19,0.194038) [12.000000] (2018-10-19,0.441483) [22.000000] (2018-10-19,0.438310) [21.000000] (2018-10-19,0.789044) [8.000000] (2018-10-19,0.971448) [7.000000] (2018-10-19,0.591168) [10.000000] (2018-10-19,0.419212) [9.000000] (2018-10-19,0.474366) [15.000000] (2018-10-19,0.481381) [15.000000] (2018-10-19,0.281123) [12.000000] (2018-10-19,0.258501) [14.000000] (2018-10-20,0.263916) [17.000000] (2018-10-20,0.632704) [18.000000] (2018-10-20,0.499663) [22.000000] (2018-10-20,0.460322) [22.000000] (2018-10-20,0.524123) [15.000000] (2018-10-20,0.456169) [14.000000] (2018-10-20,0.380926) [13.000000] (2018-10-20,0.484992) [20.000000] (2018-10-20,0.319110) [19.000000] (2018-10-20,0.637288) [10.000000] (2018-10-20,0.715486) [9.000000] (2018-10-20,0.199221) [6.000000] (2018-10-20,0.121148) [12.000000] (2018-10-20,0.511537) [6.000000] (2018-10-20,0.751022) [14.000000] (2018-10-20,0.692745) [14.000000] (2018-10-20,0.576892) [15.000000] (2018-10-20,0.464832) [12.000000] (2018-10-20,0.002634) [6.000000] (2018-10-20,0.451273) [11.000000] (2018-10-20,0.406294) [10.000000] (2018-10-20,-0.129273) [4.000000] (2018-10-20,0.602112) [16.000000] (2018-10-20,0.598162) [16.000000] (2018-10-20,0.617484) [15.000000] (2018-10-20,0.576355) [16.000000] (2018-10-20,0.446545) [12.000000] (2018-10-20,0.499171) [12.000000] (2018-10-20,0.564710) [14.000000] (2018-10-20,0.567008) [11.000000] (2018-10-20,0.545130) [10.000000] (2018-10-20,0.723782) [10.000000] (2018-10-21,0.269334) [19.000000] (2018-10-21,0.822151) [21.000000] (2018-10-21,0.265230) [6.000000] (2018-10-21,0.135613) [11.000000] (2018-10-21,0.250827) [24.000000] (2018-10-21,0.361352) [13.000000] (2018-10-21,0.192713) [17.000000] (2018-10-21,0.309287) [23.000000] (2018-10-21,0.212326) [22.000000] (2018-10-21,0.160255) [7.000000] (2018-10-21,0.253361) [23.000000] (2018-10-21,0.291771) [16.000000] (2018-10-21,0.273925) [14.000000] (2018-10-21,0.431423) [8.000000] (2018-10-21,0.252691) [6.000000] (2018-10-21,0.408353) [21.000000] (2018-10-21,0.260689) [20.000000] (2018-10-21,0.453872) [4.000000] (2018-10-21,0.240823) [24.000000] (2018-10-21,0.668167) [14.000000] (2018-10-21,0.699883) [12.000000] (2018-10-21,0.734863) [11.000000] (2018-10-21,0.794280) [10.000000] (2018-10-21,0.200081) [17.000000] (2018-10-21,0.203847) [4.000000] (2018-10-21,0.478408) [12.000000] (2018-10-21,0.489645) [21.000000] (2018-10-21,0.392933) [22.000000] (2018-10-21,0.534050) [18.000000] (2018-10-21,0.282609) [22.000000] (2018-10-21,0.165681) [22.000000] (2018-10-22,0.262217) [23.000000] (2018-10-22,0.594702) [7.000000] (2018-10-22,0.173351) [17.000000] (2018-10-22,0.114539) [11.000000] (2018-10-22,0.271776) [19.000000] (2018-10-22,0.344704) [10.000000] (2018-10-22,0.213478) [13.000000] (2018-10-22,0.321572) [17.000000] (2018-10-22,0.456385) [10.000000] (2018-10-22,0.194409) [12.000000] (2018-10-22,0.273506) [24.000000] (2018-10-22,0.310360) [22.000000] (2018-10-22,0.287455) [22.000000] (2018-10-22,0.172226) [22.000000] (2018-10-22,0.373247) [10.000000] (2018-10-22,-0.516087) [6.000000] (2018-10-22,0.505897) [18.000000] (2018-10-22,0.324970) [17.000000] (2018-10-22,0.409713) [14.000000] (2018-10-22,0.248399) [13.000000] (2018-10-22,0.566456) [15.000000] (2018-10-22,0.402861) [14.000000] (2018-10-22,0.417924) [16.000000] (2018-10-22,0.281098) [15.000000] (2018-10-22,0.404019) [17.000000] (2018-10-22,1.594418) [18.000000] (2018-10-22,0.270144) [27.000000] (2018-10-22,0.352901) [28.000000] (2018-10-22,0.255765) [28.000000] (2018-10-22,0.899763) [8.000000] (2018-10-22,0.603468) [7.000000] (2018-10-22,0.295721) [23.000000] (2018-10-22,0.312797) [25.000000] (2018-10-22,0.282301) [18.000000] (2018-10-22,0.386723) [23.000000] (2018-10-22,0.573089) [22.000000] (2018-10-22,0.708564) [16.000000] (2018-10-22,0.744577) [15.000000] (2018-10-22,0.675007) [15.000000] (2018-10-22,0.298461) [21.000000] (2018-10-22,2.514879) [11.000000] (2018-10-22,0.306246) [23.000000] (2018-10-22,0.273617) [22.000000] (2018-10-22,0.440214) [19.000000] (2018-10-22,0.325540) [22.000000] (2018-10-22,0.561466) [15.000000] (2018-10-22,0.361533) [19.000000] (2018-10-22,0.229133) [15.000000] (2018-10-23,0.242740) [9.000000] (2018-10-23,0.120349) [25.000000] (2018-10-23,0.248036) [23.000000] (2018-10-23,0.242858) [13.000000] (2018-10-23,0.187202) [17.000000] (2018-10-23,0.459965) [7.000000] (2018-10-23,0.286940) [7.000000] (2018-10-23,0.464025) [13.000000] (2018-10-23,0.467611) [20.000000] (2018-10-23,0.528899) [20.000000] (2018-10-23,0.301287) [19.000000] (2018-10-23,0.439644) [18.000000] (2018-10-23,0.255379) [12.000000] (2018-10-23,0.401594) [23.000000] (2018-10-23,1.223065) [7.000000] (2018-10-23,0.301755) [18.000000] (2018-10-23,0.327524) [22.000000] (2018-10-23,0.921039) [7.000000] (2018-10-23,0.219741) [18.000000] (2018-10-23,0.281601) [6.000000] (2018-10-23,0.109765) [16.000000] (2018-10-23,0.273342) [20.000000] (2018-10-23,0.382277) [20.000000] (2018-10-23,0.262511) [18.000000] (2018-10-23,0.315373) [19.000000] (2018-10-23,0.443309) [11.000000] (2018-10-23,0.228621) [13.000000] (2018-10-23,0.153736) [4.000000] (2018-10-23,0.527388) [11.000000] (2018-10-23,0.635596) [11.000000] (2018-10-23,0.656887) [10.000000] (2018-10-23,0.568451) [11.000000] (2018-10-23,0.531256) [10.000000] (2018-10-23,0.266606) [10.000000] (2018-10-23,0.510016) [12.000000] (2018-10-23,0.576076) [13.000000] (2018-10-23,0.668593) [13.000000] (2018-10-23,0.722623) [12.000000] (2018-10-23,0.731571) [11.000000] (2018-10-23,0.382766) [23.000000] (2018-10-23,0.486523) [11.000000] (2018-10-23,0.315865) [17.000000] (2018-10-23,0.830115) [7.000000] (2018-10-23,0.766042) [8.000000] (2018-10-23,0.442219) [14.000000] (2018-10-23,0.229768) [13.000000] (2018-10-23,0.268839) [18.000000] (2018-10-23,0.217450) [17.000000] (2018-10-23,0.185679) [11.000000] (2018-10-23,0.295944) [22.000000] (2018-10-23,0.377716) [17.000000] (2018-10-23,0.240707) [8.000000] (2018-10-24,0.268220) [6.000000] (2018-10-24,0.126932) [17.000000] (2018-10-24,0.162370) [8.000000] (2018-10-24,-0.214319) [4.000000] (2018-10-24,0.368628) [20.000000] (2018-10-24,0.274395) [19.000000] (2018-10-24,0.424581) [20.000000] (2018-10-24,0.279334) [19.000000] (2018-10-24,0.873145) [11.000000] (2018-10-24,0.811422) [13.000000] (2018-10-24,0.173668) [7.000000] (2018-10-24,0.336417) [4.000000] (2018-10-24,0.100491) [10.000000] (2018-10-24,0.203988) [4.000000] (2018-10-25,0.215879) [17.000000] (2018-10-25,0.210478) [15.000000] (2018-10-25,0.748183) [6.000000] (2018-10-25,0.442969) [10.000000] (2018-10-25,-0.188140) [6.000000] (2018-10-25,0.432610) [21.000000] (2018-10-25,0.408894) [6.000000] (2018-10-25,0.223916) [15.000000] (2018-10-25,0.384701) [7.000000] (2018-10-25,0.404983) [5.000000] (2018-10-25,0.036867) [5.000000] (2018-10-25,0.243607) [7.000000] (2018-10-25,0.073186) [25.000000] (2018-10-25,0.481427) [21.000000] (2018-10-25,0.252231) [14.000000] (2018-10-25,0.244995) [4.000000] (2018-10-25,0.274419) [14.000000] (2018-10-25,0.170262) [4.000000] (2018-10-25,0.402854) [16.000000] (2018-10-25,0.394357) [16.000000] (2018-10-25,0.514786) [16.000000] (2018-10-25,0.848861) [9.000000] (2018-10-25,0.453437) [22.000000] (2018-10-25,0.490050) [17.000000] (2018-10-25,0.143475) [5.000000] (2018-10-25,0.556347) [8.000000] (2018-10-25,0.402775) [7.000000] (2018-10-25,0.298667) [6.000000] (2018-10-25,0.226492) [21.000000] (2018-10-25,-0.477143) [6.000000] (2018-10-25,-0.206613) [5.000000] (2018-10-25,0.611890) [22.000000] (2018-10-25,0.797098) [7.000000] (2018-10-25,0.416189) [19.000000] (2018-10-25,0.500680) [4.000000] (2018-10-25,0.246345) [19.000000] (2018-10-25,0.161059) [6.000000] (2018-10-25,0.073766) [6.000000] (2018-10-25,0.342267) [33.000000] (2018-10-25,0.635861) [8.000000] (2018-10-25,0.610372) [8.000000] (2018-10-25,0.763370) [6.000000] (2018-10-25,0.823973) [5.000000] (2018-10-25,0.659198) [6.000000] (2018-10-25,0.178729) [26.000000] (2018-10-25,0.325255) [4.000000] (2018-10-25,0.311798) [4.000000] (2018-10-25,0.307498) [18.000000] (2018-10-26,0.175725) [18.000000] (2018-10-26,0.275264) [9.000000] (2018-10-26,0.189079) [13.000000] (2018-10-26,0.390562) [22.000000] (2018-10-26,0.377799) [23.000000] (2018-10-26,0.240676) [8.000000] (2018-10-26,0.070869) [29.000000] (2018-10-26,0.377290) [22.000000] (2018-10-26,0.304368) [15.000000] (2018-10-26,0.215265) [8.000000] (2018-10-26,0.167030) [5.000000] (2018-10-26,0.100555) [18.000000] (2018-10-26,0.168902) [9.000000] (2018-10-26,-0.935550) [10.000000] (2018-10-26,0.282067) [4.000000] (2018-10-26,0.253441) [10.000000] (2018-10-26,0.110216) [22.000000] (2018-10-26,0.152815) [9.000000] (2018-10-26,0.398075) [16.000000] (2018-10-26,0.600649) [11.000000] (2018-10-26,0.675488) [10.000000] (2018-10-26,0.314987) [11.000000] (2018-10-26,0.578225) [19.000000] (2018-10-26,0.439854) [15.000000] (2018-10-26,1.116947) [7.000000] (2018-10-26,0.337768) [4.000000] (2018-10-26,0.716370) [19.000000] (2018-10-26,0.449586) [22.000000] (2018-10-26,0.543509) [21.000000] (2018-10-26,0.422131) [22.000000] (2018-10-26,0.415822) [17.000000] (2018-10-26,0.176712) [6.000000] (2018-10-26,0.410427) [22.000000] (2018-10-26,0.492130) [18.000000] (2018-10-26,0.218342) [8.000000] (2018-10-26,0.114012) [35.000000] (2018-10-26,0.297480) [6.000000] (2018-10-26,0.221350) [8.000000] (2018-10-27,2.679773) [5.000000] (2018-10-27,0.808205) [18.000000] (2018-10-27,0.866289) [16.000000] (2018-10-27,0.251726) [4.000000] (2018-10-27,0.092031) [18.000000] (2018-10-27,0.272132) [9.000000] (2018-10-27,0.129728) [34.000000] (2018-10-27,0.179899) [20.000000] (2018-10-27,-0.013656) [6.000000] (2018-10-27,-0.168826) [6.000000] (2018-10-27,0.368111) [24.000000] (2018-10-27,0.227088) [25.000000] (2018-10-27,-0.358144) [16.000000] (2018-10-27,0.319329) [30.000000] (2018-10-27,0.282870) [31.000000] (2018-10-27,0.431848) [14.000000] (2018-10-27,0.551445) [14.000000] (2018-10-27,0.753755) [10.000000] (2018-10-27,0.542992) [10.000000] (2018-10-27,0.612308) [6.000000] (2018-10-27,-0.740384) [9.000000] (2018-10-27,0.084287) [6.000000] (2018-10-27,0.584245) [7.000000] (2018-10-27,0.456766) [7.000000] (2018-10-27,0.497390) [37.000000] (2018-10-27,1.218337) [5.000000] (2018-10-27,1.193107) [5.000000] (2018-10-27,0.271495) [34.000000] (2018-10-27,0.310227) [7.000000] (2018-10-27,0.144839) [20.000000] (2018-10-28,0.209941) [5.000000] (2018-10-28,0.123388) [19.000000] (2018-10-28,0.582070) [20.000000] (2018-10-28,0.224932) [16.000000] (2018-10-28,0.202068) [9.000000] (2018-10-28,0.085912) [33.000000] (2018-10-28,0.171713) [6.000000] (2018-10-28,0.054518) [19.000000] (2018-10-29,-0.146625) [16.000000] (2018-10-29,0.299638) [13.000000] (2018-10-29,0.455340) [27.000000] (2018-10-29,0.575738) [29.000000] (2018-10-29,0.264815) [12.000000] (2018-10-29,0.081787) [42.000000] (2018-10-29,0.558532) [15.000000] (2018-10-29,0.392732) [13.000000] (2018-10-29,0.882922) [8.000000] (2018-10-29,0.341128) [25.000000] (2018-10-29,0.208439) [10.000000] (2018-10-29,-0.063703) [8.000000] (2018-10-29,-0.174940) [7.000000] (2018-10-29,0.270244) [13.000000] (2018-10-29,0.148436) [24.000000] (2018-10-29,0.001788) [10.000000] (2018-10-29,0.406185) [10.000000] (2018-10-29,0.334700) [25.000000] (2018-10-29,1.109190) [5.000000] (2018-10-29,0.163842) [12.000000] (2018-10-29,0.175201) [12.000000] (2018-10-29,0.307549) [9.000000] (2018-10-29,0.146365) [30.000000] (2018-10-29,0.095720) [5.000000] (2018-10-29,0.273335) [13.000000] (2018-10-29,0.205566) [13.000000] (2018-10-29,0.702030) [5.000000] (2018-10-29,0.544337) [6.000000] (2018-10-29,0.356148) [11.000000] (2018-10-29,0.150884) [40.000000] (2018-10-29,0.329820) [12.000000] (2018-10-29,0.374067) [12.000000] (2018-10-29,0.072973) [26.000000] (2018-10-29,0.163370) [6.000000] (2018-10-30,0.204170) [19.000000] (2018-10-30,0.210539) [18.000000] (2018-10-30,0.203531) [15.000000] (2018-10-30,0.210137) [34.000000] (2018-10-30,0.436908) [18.000000] (2018-10-30,0.960536) [25.000000] (2018-10-30,0.260716) [15.000000] (2018-10-30,0.281405) [19.000000] (2018-10-30,-0.647451) [17.000000] (2018-10-30,0.190884) [16.000000] (2018-10-30,0.485149) [6.000000] (2018-10-30,0.086052) [13.000000] (2018-10-30,0.470313) [11.000000] (2018-10-30,0.184052) [31.000000] (2018-10-30,0.472331) [7.000000] (2018-10-30,0.414383) [7.000000] (2018-10-30,0.232034) [14.000000] (2018-10-30,0.398626) [4.000000] (2018-10-30,-0.579369) [4.000000] (2018-10-30,0.173658) [13.000000] (2018-10-30,0.247651) [20.000000] (2018-10-30,0.115802) [6.000000] (2018-10-30,0.090882) [7.000000] (2018-10-30,0.254242) [11.000000] (2018-10-30,0.376485) [4.000000] (2018-10-30,0.071437) [37.000000] (2018-10-30,0.303419) [10.000000] (2018-10-30,0.148777) [14.000000] (2018-10-30,0.274708) [8.000000] (2018-10-30,-0.293462) [11.000000] (2018-10-30,0.396077) [5.000000] (2018-10-30,0.557299) [7.000000] (2018-10-30,0.188153) [21.000000] (2018-10-30,0.172715) [7.000000] (2018-10-30,0.223437) [9.000000] (2018-10-30,0.226843) [27.000000] (2018-10-30,0.155424) [11.000000] (2018-10-30,0.048110) [31.000000] (2018-10-30,0.443139) [19.000000] (2018-10-30,0.635976) [18.000000] (2018-10-30,0.445864) [20.000000] (2018-10-30,1.046919) [21.000000] (2018-10-30,0.296700) [13.000000] (2018-10-30,-0.956486) [6.000000] (2018-10-30,-0.000639) [5.000000] (2018-10-30,0.281140) [15.000000] (2018-10-30,0.561838) [6.000000] (2018-10-30,0.168510) [6.000000] (2018-10-31,0.215929) [11.000000] (2018-10-31,0.067025) [38.000000] (2018-10-31,0.006352) [7.000000] (2018-10-31,-0.017110) [9.000000] (2018-10-31,0.213496) [6.000000] (2018-10-31,0.161763) [17.000000] (2018-10-31,0.458430) [4.000000] (2018-10-31,-0.606559) [4.000000] (2018-10-31,0.285059) [11.000000] (2018-10-31,0.038668) [42.000000] (2018-10-31,0.252041) [12.000000] (2018-10-31,0.057353) [35.000000] (2018-10-31,0.181911) [10.000000] (2018-10-31,0.142346) [36.000000] (2018-10-31,0.319148) [12.000000] (2018-10-31,0.055953) [42.000000] (2018-10-31,0.529926) [23.000000] (2018-10-31,0.723931) [25.000000] (2018-10-31,0.220375) [13.000000] (2018-10-31,-0.261929) [5.000000] (2018-10-31,0.537912) [11.000000] (2018-10-31,-0.589111) [5.000000] (2018-10-31,0.489245) [10.000000] (2018-10-31,0.420488) [11.000000] (2018-10-31,0.140850) [18.000000] (2018-11-01,0.445278) [8.000000] (2018-11-01,0.341491) [8.000000] (2018-11-01,0.266082) [6.000000] (2018-11-01,0.142931) [20.000000] (2018-11-01,0.238311) [15.000000] (2018-11-01,0.187338) [14.000000] (2018-11-01,0.179472) [22.000000] (2018-11-01,0.185703) [21.000000] (2018-11-01,0.248037) [14.000000] (2018-11-01,0.389284) [4.000000] (2018-11-01,-0.757921) [11.000000] (2018-11-01,0.312555) [10.000000] (2018-11-01,0.107256) [26.000000] (2018-11-01,0.423865) [15.000000] (2018-11-01,0.246734) [14.000000] (2018-11-01,0.270563) [16.000000] (2018-11-01,0.167627) [5.000000] (2018-11-01,0.241450) [13.000000] (2018-11-01,0.222434) [12.000000] (2018-11-01,0.262465) [13.000000] (2018-11-01,0.269204) [12.000000] (2018-11-01,0.139033) [18.000000] (2018-11-01,0.406967) [4.000000] (2018-11-01,0.140886) [6.000000] (2018-11-01,0.193446) [19.000000] (2018-11-01,0.179488) [18.000000] (2018-11-01,0.246236) [21.000000] (2018-11-01,0.228977) [20.000000] (2018-11-01,0.257220) [13.000000] (2018-11-01,0.260156) [12.000000] (2018-11-02,0.246265) [13.000000] (2018-11-02,0.101318) [22.000000] (2018-11-02,0.249774) [15.000000] (2018-11-02,0.231059) [14.000000] (2018-11-02,0.249205) [16.000000] (2018-11-02,0.237038) [15.000000] (2018-11-02,0.109431) [4.000000] (2018-11-02,0.202299) [24.000000] (2018-11-02,0.208140) [23.000000] (2018-11-02,0.341364) [7.000000] (2018-11-02,0.225278) [26.000000] (2018-11-02,0.198585) [27.000000] (2018-11-02,0.252149) [8.000000] (2018-11-02,0.121082) [15.000000] (2018-11-02,0.250572) [15.000000] (2018-11-02,0.238673) [15.000000] (2018-11-02,-0.016072) [20.000000] (2018-11-02,0.209667) [13.000000] (2018-11-02,0.168369) [12.000000] (2018-11-02,0.209477) [17.000000] (2018-11-02,0.204871) [16.000000] (2018-11-02,0.269747) [17.000000] (2018-11-02,0.194992) [16.000000] (2018-11-08,0.339188) [12.000000] (2018-11-08,0.498968) [7.000000] (2018-11-08,0.248246) [23.000000] (2018-11-08,0.402076) [15.000000] (2018-11-08,-1.042183) [9.000000] (2018-11-08,0.647213) [8.000000] (2018-11-08,0.613989) [10.000000] (2018-11-08,0.755663) [6.000000] (2018-11-08,0.017584) [24.000000] (2018-11-08,0.568808) [8.000000] (2018-11-08,0.436138) [5.000000] (2018-11-08,0.322109) [8.000000] (2018-11-08,0.671955) [14.000000] (2018-11-08,0.312326) [23.000000] (2018-11-08,0.829058) [8.000000] (2018-11-08,0.188333) [18.000000] (2018-11-08,0.207691) [13.000000] (2018-11-08,0.438368) [5.000000] (2018-11-09,0.291234) [12.000000] (2018-11-09,0.094764) [29.000000] (2018-11-09,0.196286) [25.000000] (2018-11-09,0.584499) [7.000000] (2018-11-09,0.435508) [23.000000] (2018-11-09,0.253079) [10.000000] (2018-11-09,0.127918) [20.000000] (2018-11-09,0.179055) [10.000000] (2018-11-09,0.639075) [9.000000] (2018-11-09,0.267703) [20.000000] (2018-11-09,0.227631) [19.000000] (2018-11-09,0.301526) [10.000000] (2018-11-09,0.304697) [9.000000] (2018-11-09,0.126277) [21.000000] (2018-11-09,0.260395) [12.000000] (2018-11-09,0.348141) [9.000000] (2018-11-09,0.299476) [10.000000] (2018-11-09,0.083775) [23.000000] (2018-11-09,0.331151) [19.000000] (2018-11-09,0.289867) [6.000000] (2018-11-09,0.339757) [22.000000] (2018-11-09,0.291118) [23.000000] (2018-11-09,0.270641) [14.000000] (2018-11-09,0.201620) [35.000000] (2018-11-09,0.230539) [11.000000] (2018-11-09,0.273031) [24.000000] (2018-11-09,0.415461) [7.000000] (2018-11-09,0.209754) [13.000000] (2018-11-09,0.181056) [12.000000] (2018-11-09,0.073144) [32.000000] (2018-11-09,0.170775) [26.000000] (2018-11-09,0.395675) [10.000000] (2018-11-09,0.225865) [24.000000] (2018-11-09,0.198135) [15.000000] (2018-11-09,0.259190) [24.000000] (2018-11-09,0.191768) [23.000000] (2018-11-09,0.384319) [21.000000] (2018-11-09,0.468540) [23.000000] (2018-11-10,0.309095) [21.000000] (2018-11-10,0.446007) [14.000000] (2018-11-10,0.257429) [20.000000] (2018-11-10,0.249560) [12.000000] (2018-11-10,0.525456) [7.000000] (2018-11-10,0.244840) [19.000000] (2018-11-10,0.296872) [17.000000] (2018-11-10,0.193269) [17.000000] (2018-11-10,0.308503) [8.000000] (2018-11-10,0.493789) [4.000000] (2018-11-10,0.230528) [21.000000] (2018-11-10,0.468760) [9.000000] (2018-11-10,0.137127) [4.000000] (2018-11-10,0.241354) [41.000000] (2018-11-10,0.222785) [41.000000] (2018-11-10,0.303158) [31.000000] (2018-11-10,0.791640) [14.000000] (2018-11-10,0.603784) [4.000000] (2018-11-10,0.589216) [7.000000] (2018-11-10,0.594921) [7.000000] (2018-11-10,0.464637) [4.000000] (2018-11-10,0.544812) [6.000000] (2018-11-10,-0.771931) [4.000000] (2018-11-10,0.403052) [27.000000] (2018-11-10,1.403778) [6.000000] (2018-11-10,1.196370) [7.000000] (2018-11-10,1.076280) [8.000000] (2018-11-10,1.118781) [6.000000] (2018-11-10,1.144798) [6.000000] (2018-11-10,0.224441) [25.000000] (2018-11-10,0.303262) [44.000000] (2018-11-10,1.129022) [19.000000] (2018-11-10,1.205376) [19.000000] (2018-11-10,1.259334) [18.000000] (2018-11-10,1.108630) [20.000000] (2018-11-10,1.249841) [17.000000] (2018-11-10,0.241935) [45.000000] (2018-11-10,0.464750) [12.000000] (2018-11-10,2.176498) [14.000000] (2018-11-10,0.234729) [22.000000] (2018-11-10,0.316748) [21.000000] (2018-11-10,0.190372) [22.000000] (2018-11-10,0.332156) [22.000000] (2018-11-10,0.960028) [7.000000] (2018-11-11,0.242239) [23.000000] (2018-11-11,0.501983) [21.000000] (2018-11-11,0.237647) [20.000000] (2018-11-11,0.560027) [18.000000] (2018-11-11,0.405916) [11.000000] (2018-11-11,0.033367) [28.000000] (2018-11-11,0.533049) [9.000000] (2018-11-11,0.287903) [12.000000] (2018-11-11,0.259379) [11.000000] (2018-11-11,0.006046) [34.000000] (2018-11-11,0.407702) [13.000000] (2018-11-11,0.348776) [12.000000] (2018-11-11,0.117634) [36.000000] (2018-11-11,0.346650) [8.000000] (2018-11-11,0.172475) [14.000000] (2018-11-11,0.393678) [5.000000] (2018-11-11,0.266647) [21.000000] (2018-11-11,0.635798) [6.000000] (2018-11-11,0.482397) [19.000000] (2018-11-11,0.161565) [16.000000] (2018-11-11,0.335331) [6.000000] (2018-11-11,0.389813) [9.000000] (2018-11-11,0.113004) [25.000000] (2018-11-11,0.287228) [7.000000] (2018-11-12,0.209510) [36.000000] (2018-11-12,0.428695) [36.000000] (2018-11-12,0.192483) [35.000000] (2018-11-12,0.324259) [22.000000] (2018-11-12,0.718702) [8.000000] (2018-11-12,-0.280133) [9.000000] (2018-11-12,0.285232) [15.000000] (2018-11-12,0.211915) [9.000000] (2018-11-12,0.477730) [8.000000] (2018-11-12,0.317553) [6.000000] (2018-11-12,0.217371) [22.000000] (2018-11-12,0.497826) [6.000000] (2018-11-12,0.243635) [36.000000] (2018-11-12,0.209776) [37.000000] (2018-11-12,1.946667) [4.000000] (2018-11-12,0.212363) [30.000000] (2018-11-12,0.206026) [32.000000] (2018-11-12,0.210348) [30.000000] (2018-11-12,0.137352) [34.000000] (2018-11-12,0.429273) [7.000000] (2018-11-12,0.290950) [22.000000] (2018-11-12,0.345478) [18.000000] (2018-11-12,0.221837) [23.000000] (2018-11-12,0.183957) [21.000000] (2018-11-12,0.261487) [16.000000] (2018-11-12,0.195275) [15.000000] (2018-11-12,0.192860) [15.000000] (2018-11-12,0.254539) [12.000000] (2018-11-12,0.076663) [26.000000] (2018-11-12,0.271847) [9.000000] (2018-11-12,0.270419) [24.000000] (2018-11-12,0.375592) [18.000000] (2018-11-12,0.334974) [20.000000] (2018-11-12,0.220471) [22.000000] (2018-11-13,0.660989) [14.000000] (2018-11-13,0.626921) [4.000000] (2018-11-13,0.184867) [15.000000] (2018-11-13,0.468448) [5.000000] (2018-11-13,0.330514) [21.000000] (2018-11-13,0.285887) [18.000000] (2018-11-13,1.108070) [15.000000] (2018-11-13,0.267279) [32.000000] (2018-11-13,0.218925) [19.000000] (2018-11-13,0.239160) [28.000000] (2018-11-13,0.217673) [5.000000] (2018-11-13,0.188728) [4.000000] (2018-11-13,-0.186574) [5.000000] (2018-11-13,0.243080) [11.000000] (2018-11-13,0.454872) [5.000000] (2018-11-13,0.240773) [18.000000] (2018-11-13,0.259622) [14.000000] (2018-11-13,1.036105) [11.000000] (2018-11-13,0.319928) [20.000000] (2018-11-13,0.251434) [19.000000] (2018-11-13,1.733862) [4.000000] (2018-11-13,0.430029) [13.000000] (2018-11-13,0.281264) [14.000000] (2018-11-13,0.236888) [13.000000] (2018-11-13,0.378087) [7.000000] (2018-11-13,0.490378) [6.000000] (2018-11-13,0.203417) [17.000000] (2018-11-13,0.198235) [10.000000] (2018-11-13,0.086592) [28.000000] (2018-11-13,0.301841) [17.000000] (2018-11-13,0.220923) [8.000000] (2018-11-13,0.089357) [38.000000] (2018-11-13,0.183888) [14.000000] (2018-11-13,0.313889) [8.000000] (2018-11-13,0.143977) [20.000000] (2018-11-13,0.360667) [7.000000] (2018-11-13,0.304743) [7.000000] (2018-11-14,0.243755) [11.000000] (2018-11-14,0.252777) [10.000000] (2018-11-14,0.154458) [34.000000] (2018-11-14,0.357598) [13.000000] (2018-11-14,0.468362) [7.000000] (2018-11-14,0.231110) [20.000000] (2018-11-14,0.377736) [7.000000] (2018-11-14,0.333455) [15.000000] (2018-11-14,0.690086) [9.000000] (2018-11-14,0.239083) [14.000000] (2018-11-14,0.278888) [14.000000] (2018-11-14,0.203922) [16.000000] (2018-11-14,0.387883) [7.000000] (2018-11-14,0.370495) [10.000000] (2018-11-14,0.336313) [11.000000] (2018-11-14,0.334231) [11.000000] (2018-11-14,0.233759) [10.000000] (2018-11-14,-0.034903) [34.000000] (2018-11-14,0.567242) [25.000000] (2018-11-14,0.378758) [5.000000] (2018-11-14,0.628717) [12.000000] (2018-11-14,1.117450) [6.000000] (2018-11-14,0.670045) [5.000000] (2018-11-14,0.076190) [28.000000] (2018-11-14,0.175402) [11.000000] (2018-11-14,0.899495) [4.000000] (2018-11-14,0.534602) [11.000000] (2018-11-14,0.259966) [22.000000] (2018-11-14,0.330906) [14.000000] (2018-11-14,0.241986) [15.000000] (2018-11-15,0.307386) [14.000000] (2018-11-15,0.253713) [13.000000] (2018-11-15,0.258260) [11.000000] (2018-11-15,0.777759) [8.000000] (2018-11-15,0.170049) [5.000000] (2018-11-15,0.193528) [20.000000] (2018-11-15,0.551067) [4.000000] (2018-11-15,0.291524) [5.000000] (2018-11-15,0.194534) [34.000000] (2018-11-15,0.361721) [7.000000] (2018-11-15,0.217548) [41.000000] (2018-11-15,0.305414) [9.000000] (2018-11-15,0.206314) [13.000000] (2018-11-15,0.390511) [4.000000] (2018-11-15,0.145309) [10.000000] (2018-11-15,0.295697) [15.000000] (2018-11-15,0.270217) [13.000000] (2018-11-15,0.239113) [11.000000] (2018-11-15,0.365004) [29.000000] (2018-11-15,0.332315) [9.000000] (2018-11-15,0.325190) [13.000000] (2018-11-15,0.283840) [12.000000] (2018-11-15,0.283592) [12.000000] (2018-11-15,1.627968) [4.000000] (2018-11-15,0.312247) [9.000000] (2018-11-15,0.307498) [8.000000] (2018-11-15,0.327229) [41.000000] (2018-11-15,0.289670) [42.000000] (2018-11-15,0.191350) [9.000000] (2018-11-15,0.288411) [10.000000] (2018-11-15,0.093789) [30.000000] (2018-11-16,0.179039) [23.000000] (2018-11-16,0.294121) [8.000000] (2018-11-16,0.367008) [10.000000] (2018-11-16,6.545892) [4.000000] (2018-11-16,0.292279) [11.000000] (2018-11-16,0.388938) [4.000000] (2018-11-16,0.085419) [25.000000] (2018-11-16,0.443314) [12.000000] (2018-11-16,0.571274) [9.000000] (2018-11-16,0.315005) [11.000000] (2018-11-16,0.278150) [11.000000] (2018-11-16,-1.157775) [9.000000] (2018-11-16,0.090956) [25.000000] (2018-11-16,1.125865) [11.000000] (2018-11-16,0.222573) [13.000000] (2018-11-16,0.330877) [5.000000] (2018-11-16,0.202200) [9.000000] (2018-11-16,0.045746) [8.000000] (2018-11-16,0.212246) [8.000000] (2018-11-16,0.462760) [4.000000] (2018-11-16,0.526487) [32.000000] (2018-11-16,0.311499) [34.000000] (2018-11-16,0.261321) [31.000000] (2018-11-16,0.544053) [24.000000] (2018-11-16,0.319522) [24.000000] (2018-11-16,0.296092) [23.000000] (2018-11-16,0.225647) [9.000000] (2018-11-16,0.197211) [8.000000] (2018-11-16,0.131752) [12.000000] (2018-11-16,0.201509) [22.000000] (2018-11-16,0.386462) [19.000000] (2018-11-16,0.217781) [14.000000] (2018-11-16,0.232330) [7.000000] (2018-11-16,-0.183783) [12.000000] (2018-11-16,0.267631) [20.000000] (2018-11-16,0.581480) [14.000000] (2018-11-16,0.300203) [14.000000] (2018-11-16,0.208371) [12.000000] (2018-11-16,0.211514) [9.000000] (2018-11-16,0.062825) [34.000000] (2018-11-16,0.316790) [12.000000] (2018-11-16,0.105372) [23.000000] (2018-11-16,0.419242) [10.000000] (2018-11-16,0.375859) [8.000000] (2018-11-16,0.303710) [4.000000] (2018-11-16,0.079973) [4.000000] (2018-11-16,0.590486) [16.000000] (2018-11-16,1.125935) [18.000000] (2018-11-16,0.185693) [8.000000] (2018-11-16,0.135484) [11.000000] (2018-11-17,0.312437) [12.000000] (2018-11-17,0.077601) [33.000000] (2018-11-17,0.266616) [11.000000] (2018-11-17,0.070490) [39.000000] (2018-11-17,0.227905) [11.000000] (2018-11-17,0.247604) [7.000000] (2018-11-17,0.087515) [20.000000] (2018-11-17,0.273632) [14.000000] (2018-11-17,0.274175) [10.000000] (2018-11-17,0.340189) [6.000000] (2018-11-17,1.465586) [20.000000] (2018-11-17,0.373048) [29.000000] (2018-11-17,0.390478) [11.000000] (2018-11-17,0.301514) [37.000000] (2018-11-17,0.239915) [19.000000] (2018-11-17,0.376290) [17.000000] (2018-11-17,0.295938) [14.000000] (2018-11-17,0.308607) [19.000000] (2018-11-17,0.565228) [13.000000] (2018-11-17,0.348193) [12.000000] (2018-11-18,0.401353) [17.000000] (2018-11-18,0.357287) [18.000000] (2018-11-19,0.591452) [42.000000] (2018-11-19,0.936990) [10.000000] (2018-11-19,0.982148) [10.000000] (2018-11-19,0.381904) [19.000000] (2018-11-19,0.809002) [10.000000] (2018-11-19,0.748193) [10.000000] (2018-11-19,0.149872) [11.000000] (2018-11-19,0.162936) [11.000000] (2018-11-19,1.852557) [4.000000] (2018-11-19,0.581918) [24.000000] (2018-11-19,0.844789) [9.000000] (2018-11-19,0.782564) [10.000000] (2018-11-19,0.847600) [9.000000] (2018-11-19,-1.324084) [11.000000] (2018-11-19,0.335720) [16.000000] (2018-11-19,0.356904) [14.000000] (2018-11-19,0.474622) [13.000000] (2018-11-19,0.436491) [12.000000] (2018-11-19,0.329674) [14.000000] (2018-11-19,0.972734) [17.000000] (2018-11-19,0.407363) [15.000000] (2018-11-19,0.304802) [41.000000] (2018-11-19,0.410472) [31.000000] (2018-11-19,0.264314) [29.000000] (2018-11-19,0.302061) [23.000000] (2018-11-19,0.323248) [22.000000] (2018-11-19,0.213803) [5.000000] (2018-11-20,0.435830) [16.000000] (2018-11-20,0.402679) [16.000000] (2018-11-20,0.293999) [20.000000] (2018-11-20,0.275112) [48.000000] (2018-11-20,0.260723) [45.000000] (2018-11-20,0.227532) [46.000000] (2018-11-20,0.461474) [21.000000] (2018-11-20,0.664349) [23.000000] (2018-11-20,-2.242301) [5.000000] (2018-11-20,0.336963) [23.000000] (2018-11-20,0.335673) [21.000000] (2018-11-20,0.341523) [18.000000] (2018-11-20,0.337217) [24.000000] (2018-11-20,0.368605) [22.000000] (2018-11-20,0.437698) [23.000000] (2018-11-21,0.313997) [20.000000] (2018-11-21,0.068817) [67.000000] (2018-11-21,0.301920) [19.000000] (2018-11-21,0.296515) [18.000000] (2018-11-21,0.256552) [16.000000] (2018-11-21,0.294146) [19.000000] (2018-11-21,0.250134) [19.000000] (2018-11-21,0.252760) [27.000000] (2018-11-21,0.230515) [28.000000] (2018-11-22,0.147303) [21.000000] (2018-11-22,0.041463) [63.000000] (2018-11-22,0.623577) [17.000000] (2018-11-22,0.573309) [16.000000] (2018-11-22,0.470866) [14.000000] (2018-11-22,0.556087) [17.000000] (2018-11-22,0.146654) [19.000000] (2018-11-22,0.040008) [49.000000] (2018-11-23,0.211692) [22.000000] (2018-11-23,0.291318) [15.000000] (2018-11-23,0.194242) [20.000000] (2018-11-24,0.292531) [22.000000] (2018-11-24,0.063518) [56.000000] (2018-11-24,0.236305) [17.000000] (2018-11-24,0.068765) [46.000000] (2018-11-24,0.240734) [16.000000] (2018-11-24,0.193327) [15.000000] (2018-11-24,0.240993) [15.000000] (2018-11-25,1.513139) [5.000000] (2018-11-25,0.334124) [20.000000] (2018-11-25,0.383179) [19.000000] (2018-11-25,0.401865) [18.000000] (2018-11-25,0.385568) [17.000000] (2018-11-25,0.196049) [33.000000] (2018-11-25,0.149196) [35.000000] (2018-11-25,0.230480) [26.000000] (2018-11-25,0.193450) [29.000000] (2018-11-25,0.042168) [4.000000] (2018-11-26,0.655310) [12.000000] (2018-11-26,0.033801) [39.000000] (2018-11-26,3.705241) [4.000000] (2018-11-26,-0.404008) [22.000000] (2018-11-26,-0.617486) [18.000000] (2018-11-26,-1.605744) [16.000000] (2018-11-26,-0.116048) [72.000000] (2018-11-26,1.820065) [9.000000] (2018-11-26,0.787361) [4.000000] (2018-11-26,0.415403) [23.000000] (2018-11-26,0.258172) [30.000000] (2018-11-26,0.218514) [29.000000] (2018-11-26,0.243722) [22.000000] (2018-11-26,0.104887) [40.000000] (2018-11-26,0.224564) [22.000000] (2018-11-26,-0.000132) [40.000000] (2018-11-26,-6.653647) [4.000000] (2018-11-26,1.178598) [106.000000] (2018-11-26,19.825125) [5.000000] (2018-11-26,10.538904) [4.000000] (2018-11-26,9.228679) [7.000000] (2018-11-26,-0.473566) [7.000000] (2018-11-27,0.242391) [20.000000] (2018-11-27,0.289057) [12.000000] (2018-11-27,0.248247) [12.000000] (2018-11-27,0.310806) [34.000000] (2018-11-27,0.350572) [27.000000] (2018-11-27,0.252897) [35.000000] (2018-11-27,0.444587) [25.000000] (2018-11-27,0.403489) [18.000000] (2018-11-27,0.476092) [26.000000] (2018-11-27,0.305325) [17.000000] (2018-11-27,0.314827) [38.000000] (2018-11-27,0.327215) [34.000000] (2018-11-27,0.323658) [24.000000] (2018-11-27,0.323728) [24.000000] (2018-11-27,0.323824) [24.000000] (2018-11-27,0.650465) [34.000000] (2018-11-27,0.684867) [10.000000] (2018-11-27,1.027027) [9.000000] (2018-11-27,0.261061) [37.000000] (2018-11-28,0.341040) [20.000000] (2018-11-28,0.591522) [11.000000] (2018-11-28,0.301908) [13.000000] (2018-11-28,0.259818) [24.000000] (2018-11-28,0.236990) [25.000000] (2018-11-28,0.232737) [24.000000] (2018-11-28,0.322595) [24.000000] (2018-11-28,0.807564) [13.000000] (2018-11-28,0.293853) [19.000000] (2018-11-28,0.297104) [24.000000] (2018-11-28,0.348186) [17.000000] (2018-11-28,0.210951) [18.000000] (2018-11-28,0.236762) [25.000000] (2018-11-28,0.282362) [16.000000] (2018-11-28,0.215921) [15.000000] (2018-11-29,0.299455) [14.000000] (2018-11-29,0.199070) [12.000000] (2018-11-29,0.276111) [38.000000] (2018-11-29,0.591411) [21.000000] (2018-11-29,0.758565) [16.000000] (2018-11-29,0.265416) [38.000000] (2018-11-29,0.851512) [9.000000] (2018-11-29,0.891198) [10.000000] (2018-11-29,0.245742) [22.000000] (2018-11-29,0.161065) [41.000000] (2018-11-29,0.604514) [12.000000] (2018-11-29,0.414229) [11.000000] (2018-11-29,0.333942) [12.000000] (2018-11-29,0.611148) [17.000000] (2018-11-29,0.598247) [17.000000] (2018-11-29,0.623378) [17.000000] (2018-11-29,0.583014) [17.000000] (2018-11-29,0.306091) [26.000000] (2018-11-29,0.212824) [27.000000] (2018-11-30,0.813928) [6.000000] (2018-11-30,0.524732) [22.000000] (2018-11-30,0.592701) [11.000000] (2018-11-30,1.318138) [22.000000] (2018-11-30,0.332462) [22.000000] (2018-11-30,0.401655) [19.000000] (2018-11-30,0.605432) [14.000000] (2018-11-30,0.601282) [63.000000] (2018-11-30,1.114153) [33.000000] (2018-11-30,0.323240) [49.000000] (2018-11-30,-7.092408) [5.000000] (2018-11-30,0.244070) [25.000000] (2018-11-30,0.290626) [18.000000] (2018-11-30,0.238966) [20.000000] (2018-11-30,0.301542) [17.000000] (2018-11-30,0.232832) [17.000000] (2018-12-01,0.374451) [22.000000] (2018-12-01,0.359269) [13.000000] (2018-12-01,0.472439) [18.000000] (2018-12-01,0.279682) [15.000000] (2018-12-01,0.194737) [13.000000] (2018-12-01,0.321661) [19.000000] (2018-12-01,0.242779) [18.000000] (2018-12-01,0.288795) [20.000000] (2018-12-01,0.291039) [18.000000] (2018-12-01,0.235819) [11.000000] (2018-12-01,0.272612) [17.000000] (2018-12-01,0.209662) [16.000000] (2018-12-01,0.293410) [48.000000] (2018-12-01,0.278483) [48.000000] (2018-12-01,0.721109) [25.000000] (2018-12-01,1.080845) [14.000000] (2018-12-01,1.137607) [12.000000] (2018-12-01,0.234318) [24.000000] (2018-12-01,0.355897) [17.000000] (2018-12-01,0.194647) [21.000000] (2018-12-01,0.201264) [22.000000] (2018-12-01,0.270391) [13.000000] (2018-12-01,0.220660) [14.000000] (2018-12-01,0.266814) [19.000000] (2018-12-01,0.801388) [11.000000] (2018-12-01,0.261896) [14.000000] (2018-12-01,0.252840) [23.000000] (2018-12-01,0.443865) [13.000000] (2018-12-01,0.211791) [13.000000] (2018-12-01,0.377831) [16.000000] (2018-12-01,0.272085) [15.000000] (2018-12-01,1.285063) [5.000000] (2018-12-01,0.264245) [19.000000] (2018-12-01,0.566534) [7.000000] (2018-12-01,0.228655) [15.000000] (2018-12-01,0.319756) [15.000000] (2018-12-01,0.233531) [15.000000] (2018-12-01,0.272991) [14.000000] (2018-12-02,-2.849839) [8.000000] (2018-12-02,2.380336) [12.000000] (2018-12-02,3.035668) [10.000000] (2018-12-02,3.114424) [9.000000] (2018-12-02,0.257789) [14.000000] (2018-12-02,0.155489) [32.000000] (2018-12-02,0.025177) [6.000000] (2018-12-02,0.309548) [24.000000] (2018-12-02,0.251758) [25.000000] (2018-12-02,0.302180) [27.000000] (2018-12-02,0.446686) [20.000000] (2018-12-02,0.242294) [28.000000] (2018-12-02,0.290532) [37.000000] (2018-12-02,0.297748) [35.000000] (2018-12-02,0.338406) [25.000000] (2018-12-02,0.335187) [25.000000] (2018-12-02,0.332324) [25.000000] (2018-12-02,0.280810) [24.000000] (2018-12-02,0.720572) [14.000000] (2018-12-02,0.797582) [10.000000] (2018-12-02,0.255611) [36.000000] (2018-12-02,-0.679340) [11.000000] (2018-12-02,-0.120862) [15.000000] (2018-12-02,0.657595) [11.000000] (2018-12-02,0.151368) [16.000000] (2018-12-02,0.063637) [34.000000] (2018-12-03,0.236204) [24.000000] (2018-12-03,0.430989) [18.000000] (2018-12-03,0.129492) [19.000000] (2018-12-03,1.663238) [11.000000] (2018-12-03,0.471630) [12.000000] (2018-12-03,0.802548) [24.000000] (2018-12-03,0.763470) [25.000000] (2018-12-03,0.901439) [22.000000] (2018-12-03,0.757612) [25.000000] (2018-12-03,0.855114) [22.000000] (2018-12-03,0.764656) [24.000000] (2018-12-03,1.429136) [21.000000] (2018-12-03,0.843116) [8.000000] (2018-12-03,0.240738) [18.000000] (2018-12-03,0.200878) [13.000000] (2018-12-03,0.254586) [22.000000] (2018-12-03,0.269829) [16.000000] (2018-12-03,0.219728) [17.000000] (2018-12-03,0.274524) [32.000000] (2018-12-03,0.416532) [21.000000] (2018-12-03,0.231811) [30.000000] (2018-12-04,0.291919) [25.000000] (2018-12-04,0.231160) [25.000000] (2018-12-04,0.254252) [32.000000] (2018-12-04,0.458578) [14.000000] (2018-12-04,0.437758) [13.000000] (2018-12-04,0.223893) [29.000000] (2018-12-04,0.278753) [22.000000] (2018-12-04,0.282908) [17.000000] (2018-12-04,0.339499) [16.000000] (2018-12-04,0.237016) [18.000000] (2018-12-04,2.348433) [11.000000] (2018-12-04,0.301599) [21.000000] (2018-12-04,0.313378) [15.000000] (2018-12-04,0.304224) [15.000000] (2018-12-04,0.926141) [10.000000] (2018-12-04,0.820454) [6.000000] (2018-12-04,0.788686) [8.000000] (2018-12-04,0.433660) [20.000000] (2018-12-04,0.602936) [13.000000] (2018-12-04,0.313762) [20.000000] (2018-12-04,0.261489) [17.000000] (2018-12-04,0.213813) [9.000000] (2018-12-05,0.295954) [19.000000] (2018-12-05,0.326089) [13.000000] (2018-12-05,0.248477) [17.000000] (2018-12-05,0.293284) [32.000000] (2018-12-05,0.245316) [22.000000] (2018-12-05,0.942559) [7.000000] (2018-12-05,0.456589) [14.000000] (2018-12-05,0.192270) [19.000000] (2018-12-06,0.281892) [21.000000] (2018-12-06,0.080236) [66.000000] (2018-12-06,0.304149) [22.000000] (2018-12-06,0.105600) [61.000000] (2018-12-06,3.326103) [5.000000] (2018-12-06,2.663561) [8.000000] (2018-12-06,0.009910) [4.000000] (2018-12-06,0.491240) [19.000000] (2018-12-06,0.439494) [18.000000] (2018-12-06,0.200402) [22.000000] (2018-12-06,0.061159) [66.000000] (2018-12-06,0.276047) [30.000000] (2018-12-06,0.254011) [31.000000] (2018-12-07,0.463057) [26.000000] (2018-12-07,0.454820) [26.000000] (2018-12-07,0.200876) [22.000000] (2018-12-07,0.062037) [62.000000] (2018-12-07,0.352907) [20.000000] (2018-12-07,0.349247) [20.000000] (2018-12-07,0.719999) [21.000000] (2018-12-07,0.416883) [12.000000] (2018-12-07,0.380407) [12.000000] (2018-12-07,0.636609) [11.000000] (2018-12-07,3.311479) [4.000000] (2018-12-07,0.244667) [29.000000] (2018-12-07,0.301828) [25.000000] (2018-12-07,0.222505) [28.000000] (2018-12-07,0.280264) [38.000000] (2018-12-07,0.451490) [10.000000] (2018-12-07,0.657837) [6.000000] (2018-12-07,0.766796) [5.000000] (2018-12-07,0.574397) [5.000000] (2018-12-07,0.237218) [36.000000] (2018-12-07,0.254185) [14.000000] (2018-12-07,0.212120) [12.000000] (2018-12-07,0.346698) [16.000000] (2018-12-07,0.076955) [45.000000] (2018-12-07,0.271229) [17.000000] (2018-12-07,0.073422) [45.000000] (2018-12-07,0.167896) [22.000000] (2018-12-07,0.052476) [60.000000] (2018-12-08,0.270624) [22.000000] (2018-12-08,0.073541) [65.000000] (2018-12-08,0.265675) [15.000000] (2018-12-08,0.201907) [49.000000] (2018-12-08,0.269984) [29.000000] (2018-12-08,0.308750) [20.000000] (2018-12-08,0.793953) [24.000000] (2018-12-08,0.241918) [25.000000] (2018-12-08,0.291563) [15.000000] (2018-12-08,0.221542) [17.000000] (2018-12-08,0.323567) [23.000000] (2018-12-08,0.228729) [20.000000] (2018-12-08,0.288340) [15.000000] (2018-12-08,0.300165) [14.000000] (2018-12-08,0.649754) [6.000000] (2018-12-08,0.228948) [13.000000] (2018-12-08,0.209716) [22.000000] (2018-12-08,0.085680) [64.000000] (2018-12-09,0.253978) [22.000000] (2018-12-09,0.248264) [22.000000] (2018-12-09,0.067678) [66.000000] (2018-12-09,0.262255) [16.000000] (2018-12-09,0.228030) [15.000000] (2018-12-09,0.293853) [24.000000] (2018-12-09,0.280974) [16.000000] (2018-12-09,0.263159) [23.000000] (2018-12-09,0.331438) [4.000000] (2018-12-09,0.309416) [18.000000] (2018-12-09,0.214704) [16.000000] (2018-12-10,0.288882) [19.000000] (2018-12-10,0.276681) [13.000000] (2018-12-10,0.271150) [15.000000] (2018-12-10,0.294993) [21.000000] (2018-12-10,0.177278) [40.000000] (2018-12-10,0.269907) [21.000000] (2018-12-10,0.115898) [45.000000] (2018-12-10,0.548644) [28.000000] (2018-12-10,0.645113) [9.000000] (2018-12-10,0.626582) [9.000000] (2018-12-10,0.615135) [9.000000] (2018-12-10,-0.921320) [10.000000] (2018-12-10,0.251560) [21.000000] (2018-12-10,0.066357) [71.000000] (2018-12-10,0.425544) [10.000000] (2018-12-10,0.433033) [10.000000] (2018-12-10,0.421526) [10.000000] (2018-12-10,0.051198) [30.000000] (2018-12-10,0.050478) [10.000000] (2018-12-10,0.210306) [18.000000] (2018-12-10,0.406239) [6.000000] (2018-12-10,0.404778) [6.000000] (2018-12-10,0.406504) [6.000000] (2018-12-10,0.355596) [5.000000] (2018-12-10,0.107984) [12.000000] (2018-12-11,0.339844) [22.000000] (2018-12-11,0.083077) [52.000000] (2018-12-11,0.202031) [15.000000] (2018-12-11,0.726805) [35.000000] (2018-12-11,0.019164) [121.000000] (2018-12-11,0.337190) [17.000000] (2018-12-11,0.256580) [14.000000] (2018-12-11,3.140884) [11.000000] (2018-12-11,1.027134) [5.000000] (2018-12-11,2.405402) [11.000000] (2018-12-11,0.295477) [16.000000] (2018-12-11,0.276165) [12.000000] (2018-12-11,0.235267) [12.000000] (2018-12-11,0.219463) [22.000000] (2018-12-11,0.235314) [19.000000] (2018-12-11,-0.115475) [73.000000] (2018-12-11,0.285243) [28.000000] (2018-12-11,0.262358) [22.000000] (2018-12-11,0.512864) [18.000000] (2018-12-11,0.326730) [10.000000] (2018-12-11,0.268349) [10.000000] (2018-12-11,0.624875) [13.000000] (2018-12-11,0.243647) [27.000000] (2018-12-11,0.598248) [10.000000] (2018-12-11,0.310374) [17.000000] (2018-12-11,0.104240) [49.000000] (2018-12-11,0.256807) [14.000000] (2018-12-11,0.167085) [6.000000] (2018-12-12,0.244527) [23.000000] (2018-12-12,1.489747) [23.000000] (2018-12-12,-0.103444) [22.000000] (2018-12-12,-0.058448) [23.000000] (2018-12-12,-0.262865) [22.000000] (2018-12-12,-0.170231) [31.000000] (2018-12-12,0.252981) [21.000000] (2018-12-12,0.430891) [14.000000] (2018-12-12,0.229501) [18.000000] (2018-12-12,0.274840) [12.000000] (2018-12-12,0.169500) [24.000000] (2018-12-12,0.103656) [18.000000] (2018-12-12,0.471958) [16.000000] (2018-12-12,-0.529812) [15.000000] (2018-12-12,0.273853) [37.000000] (2018-12-12,0.310119) [34.000000] (2018-12-12,0.297012) [29.000000] (2018-12-12,0.381449) [13.000000] (2018-12-12,0.435270) [10.000000] (2018-12-12,0.291992) [30.000000] (2018-12-12,0.298055) [28.000000] (2018-12-12,0.271862) [28.000000] (2018-12-13,0.194087) [21.000000] (2018-12-13,-0.014673) [54.000000] (2018-12-13,6.761655) [4.000000] (2018-12-13,0.029061) [23.000000] (2018-12-13,0.077946) [56.000000] (2018-12-13,3.198910) [4.000000] (2018-12-13,0.326773) [22.000000] (2018-12-13,0.118798) [50.000000] (2018-12-13,0.181414) [24.000000] (2018-12-13,-1.148869) [16.000000] (2018-12-13,-2.208935) [5.000000] (2018-12-13,0.022883) [10.000000] (2018-12-13,0.283266) [24.000000] (2018-12-13,0.301593) [22.000000] (2018-12-13,0.158251) [21.000000] (2018-12-13,0.063044) [50.000000] (2018-12-13,0.451730) [13.000000] (2018-12-13,0.381553) [12.000000] (2018-12-14,0.360757) [25.000000] (2018-12-14,1.203536) [15.000000] (2018-12-14,1.075601) [4.000000] (2018-12-14,0.273455) [15.000000] (2018-12-14,0.497520) [22.000000] (2018-12-14,0.501751) [20.000000] (2018-12-14,0.509256) [15.000000] (2018-12-14,0.101019) [42.000000] (2018-12-14,0.168274) [21.000000] (2018-12-14,0.205447) [18.000000] (2018-12-14,0.215663) [22.000000] (2018-12-14,0.095929) [38.000000] (2018-12-14,0.131796) [16.000000] (2018-12-14,0.406239) [25.000000] (2018-12-14,0.247565) [21.000000] (2018-12-14,0.295361) [15.000000] (2018-12-14,0.109961) [43.000000] (2018-12-14,0.218659) [20.000000] (2018-12-14,0.212472) [20.000000] (2018-12-14,0.205655) [9.000000] (2018-12-14,0.064629) [54.000000] (2018-12-14,0.191089) [9.000000] (2018-12-15,0.337604) [19.000000] (2018-12-15,0.494529) [12.000000] (2018-12-15,0.266120) [9.000000] (2018-12-15,0.235413) [11.000000] (2018-12-15,0.260875) [24.000000] (2018-12-15,1.205872) [4.000000] (2018-12-15,0.286458) [20.000000] (2018-12-15,0.231972) [24.000000] (2018-12-15,0.428515) [28.000000] (2018-12-15,0.450484) [27.000000] (2018-12-15,0.360147) [54.000000] (2018-12-15,0.358846) [54.000000] (2018-12-15,0.513528) [42.000000] (2018-12-15,0.428082) [42.000000] (2018-12-15,0.210148) [8.000000] (2018-12-15,0.092954) [16.000000] (2018-12-15,0.248648) [22.000000] (2018-12-15,0.096630) [45.000000] (2018-12-15,0.146899) [17.000000] (2018-12-15,0.394892) [6.000000] (2018-12-15,0.328579) [7.000000] (2018-12-15,0.142722) [33.000000] (2018-12-15,0.266474) [7.000000] (2018-12-15,0.506717) [10.000000] (2018-12-15,0.407629) [7.000000] (2018-12-15,0.217228) [6.000000] (2018-12-15,0.918107) [5.000000] (2019-01-05,0.335251) [15.000000] (2019-01-05,0.430050) [14.000000] (2019-01-05,0.607983) [15.000000] (2019-01-05,0.623155) [14.000000] (2019-01-05,0.359909) [16.000000] (2019-01-05,0.252425) [24.000000] (2019-01-05,0.402489) [16.000000] (2019-01-06,0.786801) [19.000000] (2019-01-06,1.031077) [14.000000] (2019-01-06,0.884334) [16.000000] (2019-01-06,0.236487) [21.000000] (2019-01-06,0.218968) [19.000000] (2019-01-06,0.187806) [23.000000] (2019-01-06,0.234034) [19.000000] (2019-01-06,0.234501) [27.000000] (2019-01-06,0.267199) [17.000000] (2019-01-06,0.249887) [28.000000] (2019-01-06,0.216647) [31.000000] (2019-01-06,0.255023) [22.000000] (2019-01-07,0.210957) [22.000000] (2019-01-07,0.158889) [30.000000] (2019-01-07,-0.006149) [6.000000] (2019-01-07,0.326945) [26.000000] (2019-01-07,0.347733) [21.000000] (2019-01-07,0.298371) [24.000000] (2019-01-07,0.310616) [21.000000] (2019-01-07,0.286997) [27.000000] (2019-01-07,0.260754) [28.000000] (2019-01-07,0.418830) [26.000000] (2019-01-07,0.433575) [24.000000] (2019-01-07,0.304376) [23.000000] (2019-01-07,0.300866) [25.000000] (2019-01-07,0.307476) [31.000000] (2019-01-07,0.307388) [36.000000] (2019-01-07,0.314252) [32.000000] (2019-01-07,0.481613) [14.000000] (2019-01-07,0.452786) [13.000000] (2019-01-07,0.263195) [23.000000] (2019-01-07,0.091177) [50.000000] (2019-01-07,0.204521) [22.000000] (2019-01-07,0.050214) [73.000000] (2019-01-08,0.285214) [31.000000] (2019-01-08,0.312186) [24.000000] (2019-01-08,0.243393) [32.000000] (2019-01-08,0.255046) [27.000000] (2019-01-10,0.093879) [12.000000] (2019-01-10,0.046859) [13.000000] (2019-01-10,0.218291) [6.000000] (2019-01-10,0.135791) [8.000000] (2019-01-10,0.211218) [4.000000] (2019-01-10,0.232196) [45.000000] (2019-01-10,0.213173) [46.000000] (2019-01-10,0.264019) [33.000000] (2019-01-10,0.214271) [40.000000] (2019-01-11,0.174640) [22.000000] (2019-01-11,0.064762) [53.000000] (2019-01-11,0.294605) [22.000000] (2019-01-11,0.261853) [24.000000] (2019-01-11,0.285569) [21.000000] (2019-01-11,0.111007) [51.000000] (2019-01-11,0.244135) [21.000000] (2019-01-11,0.132102) [38.000000] (2019-01-11,0.445503) [28.000000] (2019-01-11,0.393265) [27.000000] (2019-01-11,0.350248) [17.000000] (2019-01-11,0.348229) [16.000000] (2019-01-11,0.409809) [15.000000] (2019-01-11,0.395944) [14.000000] (2019-01-11,0.600946) [26.000000] (2019-01-11,0.601816) [25.000000] (2019-01-11,0.198462) [22.000000] (2019-01-11,-0.384151) [61.000000] (2019-01-12,0.196000) [22.000000] (2019-01-12,0.058330) [70.000000] (2019-01-12,0.245188) [27.000000] (2019-01-12,0.217060) [28.000000] (2019-01-12,0.240527) [19.000000] (2019-01-12,0.227606) [21.000000] (2019-01-12,0.230961) [22.000000] (2019-01-12,0.043036) [62.000000] (2019-01-13,0.270939) [22.000000] (2019-01-13,0.070262) [73.000000] (2019-01-14,0.365441) [10.000000] (2019-01-14,0.397390) [14.000000] (2019-01-14,0.381334) [11.000000] (2019-01-14,0.437827) [19.000000] (2019-01-14,0.418455) [18.000000] (2019-01-14,0.403451) [15.000000] (2019-01-14,0.365802) [14.000000] (2019-01-14,1.053927) [7.000000] (2019-01-14,0.266203) [22.000000] (2019-01-14,0.306428) [17.000000] (2019-01-14,0.315976) [20.000000] (2019-01-14,0.335920) [17.000000] (2019-01-14,0.101532) [49.000000] (2019-01-14,0.205213) [26.000000] (2019-01-14,0.613126) [12.000000] (2019-01-14,0.228443) [19.000000] (2019-01-14,0.175175) [4.000000] (2019-01-14,0.223166) [22.000000] (2019-01-14,0.235142) [20.000000] (2019-01-14,0.196482) [11.000000] (2019-01-14,0.290954) [23.000000] (2019-01-14,0.404403) [20.000000] (2019-01-14,0.206771) [16.000000] (2019-01-15,0.256609) [21.000000] (2019-01-15,0.081860) [58.000000] (2019-01-15,0.137349) [22.000000] (2019-01-15,0.046933) [61.000000] (2019-01-15,0.136904) [7.000000] (2019-01-15,0.205470) [4.000000] (2019-01-17,0.632511) [26.000000] (2019-01-17,0.628465) [24.000000] (2019-01-17,0.080476) [28.000000] (2019-01-17,0.099559) [23.000000] (2019-01-17,0.084430) [23.000000] (2019-01-17,0.120485) [20.000000] (2019-01-17,0.139079) [22.000000] (2019-01-17,0.044119) [57.000000] (2019-01-17,0.308376) [14.000000] (2019-01-17,0.267198) [13.000000] (2019-01-17,0.051804) [74.000000] (2019-01-17,0.207484) [27.000000] (2019-01-17,0.187460) [26.000000] (2019-01-17,0.165822) [19.000000] (2019-01-17,0.204676) [11.000000] (2019-01-18,0.191419) [17.000000] (2019-01-18,0.210727) [17.000000] (2019-01-18,0.206792) [17.000000] (2019-01-18,0.186469) [16.000000] (2019-01-18,0.226513) [12.000000] (2019-01-18,0.150671) [36.000000] (2019-01-18,0.144328) [35.000000] (2019-01-18,0.136879) [32.000000] (2019-01-18,0.118655) [17.000000] (2019-01-18,0.194440) [13.000000] (2019-01-18,0.174124) [19.000000] (2019-01-18,0.178773) [16.000000] (2019-01-18,0.206945) [8.000000] (2019-01-18,0.216485) [23.000000] (2019-01-18,0.216814) [23.000000] (2019-01-18,0.164104) [10.000000] (2019-01-18,0.075866) [16.000000] (2019-01-18,0.156531) [20.000000] (2019-01-18,0.132140) [21.000000] (2019-01-18,0.144323) [19.000000] (2019-01-18,0.197953) [13.000000] (2019-01-19,0.270728) [21.000000] (2019-01-19,0.110978) [52.000000] (2019-01-19,0.125864) [22.000000] (2019-01-19,0.062216) [37.000000] (2019-01-19,0.100841) [34.000000] (2019-01-19,0.151258) [22.000000] (2019-01-19,0.128154) [20.000000] (2019-01-19,0.130114) [22.000000] (2019-01-19,0.085762) [45.000000] (2019-01-20,0.062924) [44.000000] (2019-01-20,0.118027) [22.000000] (2019-01-20,0.758895) [8.000000] (2019-01-20,0.291141) [24.000000] (2019-01-20,0.843535) [7.000000] (2019-01-20,0.253774) [26.000000] (2019-01-20,0.345813) [17.000000] (2019-01-20,0.459864) [12.000000] (2019-01-20,0.314059) [17.000000] (2019-01-20,0.457825) [12.000000] (2019-01-20,0.455426) [12.000000] (2019-01-20,0.310802) [19.000000] (2019-01-20,0.350714) [26.000000] (2019-01-20,0.314694) [24.000000] (2019-01-20,0.252174) [14.000000] (2019-01-20,0.376794) [14.000000] (2019-01-20,0.261745) [23.000000] (2019-01-20,0.280517) [21.000000] (2019-01-21,0.243358) [17.000000] (2019-01-21,0.236199) [16.000000] (2019-01-21,0.255179) [55.000000] (2019-01-21,0.193228) [55.000000] (2019-01-21,0.209012) [37.000000] (2019-01-21,0.143888) [33.000000] (2019-01-21,0.143822) [31.000000] (2019-01-21,0.135260) [31.000000] (2019-01-21,0.272037) [15.000000] (2019-01-21,0.272533) [15.000000] (2019-01-21,0.055352) [60.000000] (2019-01-21,0.147931) [21.000000] (2019-01-22,0.142744) [22.000000] (2019-01-22,0.076266) [38.000000] (2019-01-22,0.331256) [27.000000] (2019-01-22,0.322692) [26.000000] (2019-01-22,0.359388) [25.000000] (2019-01-22,0.322562) [23.000000] (2019-01-22,0.264360) [13.000000] (2019-01-22,0.259701) [12.000000] (2019-01-22,0.311866) [13.000000] (2019-01-22,0.372695) [11.000000] (2019-01-22,0.311224) [13.000000] (2019-01-22,0.310434) [13.000000] (2019-01-22,0.231540) [17.000000] (2019-01-22,0.348521) [14.000000] (2019-01-22,0.303518) [13.000000] (2019-01-22,0.251372) [18.000000] (2019-01-22,0.402665) [14.000000] (2019-01-22,0.393755) [14.000000] (2019-01-22,0.244547) [13.000000] (2019-01-22,0.262848) [13.000000] (2019-01-22,0.140183) [21.000000] (2019-01-22,0.057510) [55.000000] (2019-01-22,0.072982) [48.000000] (2019-01-22,0.101190) [22.000000] (2019-01-23,0.134712) [22.000000] (2019-01-23,0.045846) [59.000000] (2019-01-23,0.223816) [26.000000] (2019-01-23,0.237875) [20.000000] (2019-01-23,0.208844) [26.000000] (2019-01-23,0.112752) [11.000000] (2019-01-23,0.165517) [24.000000] (2019-01-23,0.166431) [23.000000] (2019-01-23,0.175177) [20.000000] (2019-01-23,0.204680) [17.000000] (2019-01-23,0.131849) [29.000000] (2019-01-23,2.176543) [9.000000] (2019-01-23,-0.760363) [5.000000] (2019-01-23,0.385374) [26.000000] (2019-01-23,0.376088) [25.000000] (2019-01-23,0.391383) [24.000000] (2019-01-23,0.336347) [22.000000] (2019-01-23,0.220128) [28.000000] (2019-01-23,0.211364) [26.000000] (2019-01-23,0.493903) [16.000000] (2019-01-23,0.559299) [14.000000] (2019-01-23,0.491872) [15.000000] (2019-01-23,0.477121) [16.000000] (2019-01-23,0.329964) [20.000000] (2019-01-23,0.305261) [19.000000] (2019-01-23,0.332959) [20.000000] (2019-01-23,0.360827) [9.000000] (2019-01-23,0.325644) [20.000000] (2019-01-23,0.317388) [20.000000] (2019-01-23,0.535180) [21.000000] (2019-01-23,0.445132) [21.000000] (2019-01-23,0.358495) [12.000000] (2019-01-23,0.291152) [11.000000] (2019-01-23,0.290586) [18.000000] (2019-01-23,0.268816) [17.000000] (2019-01-24,0.196098) [26.000000] (2019-01-24,0.280434) [22.000000] (2019-01-24,0.178728) [26.000000] (2019-01-24,0.152529) [25.000000] (2019-01-24,0.237510) [26.000000] (2019-01-24,0.238077) [17.000000] (2019-01-24,0.385345) [20.000000] (2019-01-24,0.090370) [50.000000] (2019-01-24,0.419253) [19.000000] (2019-01-24,0.380859) [18.000000] (2019-01-24,0.491986) [20.000000] (2019-01-24,0.472285) [19.000000] (2019-01-24,0.458251) [19.000000] (2019-01-24,0.447205) [20.000000] (2019-01-24,0.271364) [11.000000] (2019-01-24,0.256693) [8.000000] (2019-01-24,0.557739) [20.000000] (2019-01-24,0.500550) [19.000000] (2019-01-24,0.333995) [20.000000] (2019-01-24,0.323193) [19.000000] (2019-01-24,0.169436) [32.000000] (2019-01-24,0.151249) [33.000000] (2019-01-24,0.161699) [29.000000] (2019-01-24,0.184478) [27.000000] (2019-01-24,0.213831) [24.000000] (2019-01-24,0.200393) [21.000000] (2019-01-24,0.199364) [21.000000] (2019-01-24,0.313734) [23.000000] (2019-01-24,0.202896) [20.000000] (2019-01-24,0.099142) [49.000000] (2019-01-24,0.142792) [32.000000] (2019-01-24,0.204813) [24.000000] (2019-01-24,0.205209) [23.000000] (2019-01-24,0.220199) [21.000000] (2019-01-24,0.208191) [22.000000] (2019-01-24,0.398453) [21.000000] (2019-01-24,0.379904) [20.000000] (2019-01-24,0.173454) [17.000000] (2019-01-24,0.149890) [19.000000] (2019-01-24,0.197231) [15.000000] (2019-01-24,0.138101) [13.000000] (2019-01-24,0.060182) [16.000000] (2019-01-24,0.110573) [8.000000] (2019-01-25,0.179329) [20.000000] (2019-01-25,0.191981) [20.000000] (2019-01-25,0.179178) [16.000000] (2019-01-25,0.169620) [13.000000] (2019-01-25,0.161931) [13.000000] (2019-01-25,0.087882) [24.000000] (2019-01-25,0.320674) [22.000000] (2019-01-25,0.309460) [21.000000] (2019-01-25,0.176882) [13.000000] (2019-01-25,0.190793) [18.000000] (2019-01-25,0.160412) [17.000000] (2019-01-25,0.117283) [15.000000] (2019-01-25,0.392012) [13.000000] (2019-01-25,0.338992) [12.000000] (2019-01-25,0.806904) [5.000000] (2019-01-25,0.214156) [26.000000] (2019-01-25,0.229761) [23.000000] (2019-01-25,0.319849) [6.000000] (2019-01-25,0.332876) [26.000000] (2019-01-25,0.402091) [20.000000] (2019-01-25,0.187477) [28.000000] (2019-01-25,0.191349) [27.000000] (2019-01-25,0.176667) [16.000000] (2019-01-25,0.146546) [18.000000] (2019-01-25,0.148884) [11.000000] (2019-01-25,0.186653) [13.000000] (2019-01-25,0.132414) [22.000000] (2019-01-25,0.069022) [35.000000] (2019-01-26,0.171990) [23.000000] (2019-01-26,0.150715) [20.000000] (2019-01-26,0.151901) [19.000000] (2019-01-26,0.109757) [41.000000] (2019-01-26,0.371573) [9.000000] (2019-01-26,0.237562) [26.000000] (2019-01-26,0.232853) [25.000000] (2019-01-26,0.206548) [20.000000] (2019-01-27,0.003679) [25.000000] (2019-01-27,0.087540) [26.000000] (2019-01-27,0.166444) [34.000000] (2019-01-27,0.234328) [24.000000] (2019-01-27,0.148485) [34.000000] (2019-01-28,0.207434) [21.000000] (2019-01-28,0.169103) [25.000000] (2019-01-28,0.159519) [25.000000] (2019-01-28,0.171991) [21.000000] (2019-01-28,0.168666) [22.000000] (2019-01-28,0.179374) [41.000000] (2019-01-28,0.201252) [31.000000] (2019-01-28,0.202397) [29.000000] (2019-01-28,0.228705) [19.000000] (2019-01-28,0.155192) [18.000000] (2019-01-28,0.180782) [21.000000] (2019-01-28,0.172736) [21.000000] (2019-01-28,0.191231) [14.000000] (2019-01-28,0.147547) [22.000000] (2019-01-28,0.038616) [71.000000] (2019-01-28,0.142608) [22.000000] (2019-01-28,0.072510) [40.000000] (2019-01-28,0.154425) [17.000000] (2019-01-28,0.140390) [22.000000] (2019-01-28,0.152017) [20.000000] (2019-01-28,0.143462) [19.000000] (2019-01-28,0.032213) [6.000000] (2019-01-28,1.591964) [8.000000] (2019-01-28,1.155856) [9.000000] (2019-01-28,0.860080) [12.000000] (2019-01-28,0.858270) [12.000000] (2019-01-28,0.937690) [11.000000] (2019-01-28,0.787581) [16.000000] (2019-01-28,0.339215) [39.000000] (2019-01-28,0.347102) [36.000000] (2019-01-28,0.324019) [26.000000] (2019-01-28,0.327805) [24.000000] (2019-01-28,0.308787) [15.000000] (2019-01-28,0.259977) [14.000000] (2019-01-29,0.275627) [27.000000] (2019-01-29,0.268551) [26.000000] (2019-01-29,0.203307) [21.000000] (2019-01-29,0.124423) [30.000000] (2019-01-29,0.153028) [22.000000] (2019-01-29,0.123486) [26.000000] (2019-01-29,0.215892) [27.000000] (2019-01-29,0.183396) [27.000000] (2019-01-29,0.174204) [17.000000] (2019-01-29,0.165354) [22.000000] (2019-01-29,0.181222) [20.000000] (2019-01-29,0.091846) [39.000000] (2019-01-29,0.295298) [20.000000] (2019-01-29,0.270687) [19.000000] (2019-01-29,0.403920) [25.000000] (2019-01-29,0.328194) [24.000000] (2019-01-30,0.409219) [11.000000] (2019-01-30,0.392658) [10.000000] (2019-01-30,0.138234) [22.000000] (2019-01-30,0.051814) [52.000000] (2019-01-30,0.198267) [31.000000] (2019-01-30,0.179958) [32.000000] (2019-01-30,0.187336) [30.000000] (2019-01-30,0.170463) [22.000000] (2019-01-30,0.077323) [43.000000] (2019-01-31,0.264211) [22.000000] (2019-01-31,0.243290) [22.000000] (2019-01-31,0.134916) [43.000000] (2019-01-31,0.640769) [12.000000] (2019-01-31,1.096198) [14.000000] (2019-01-31,0.305172) [21.000000] (2019-01-31,0.616635) [16.000000] (2019-01-31,-0.383329) [40.000000] (2019-02-01,0.456254) [32.000000] (2019-02-01,0.727765) [23.000000] (2019-02-01,0.493209) [30.000000] (2019-02-01,0.217476) [29.000000] (2019-02-02,0.294661) [28.000000] (2019-02-02,0.260896) [28.000000] (2019-02-02,0.303278) [27.000000] (2019-02-02,-0.357589) [15.000000] (2019-02-02,0.234621) [29.000000] (2019-02-02,0.255740) [27.000000] (2019-02-02,0.184371) [28.000000] (2019-02-03,0.852775) [13.000000] (2019-02-03,0.482853) [23.000000] (2019-02-03,0.325626) [26.000000] (2019-02-03,0.343612) [33.000000] (2019-02-03,0.464918) [33.000000] (2019-02-03,0.417782) [27.000000] (2019-02-03,0.480548) [17.000000] (2019-02-03,0.400691) [16.000000] (2019-02-03,0.307382) [25.000000] (2019-02-03,0.682022) [26.000000] (2019-02-05,0.516348) [9.000000] (2019-02-06,0.240606) [22.000000] (2019-02-06,0.130810) [75.000000] (2019-02-06,0.237126) [27.000000] (2019-02-06,0.204927) [24.000000] (2019-02-06,-0.121562) [21.000000] (2019-02-06,1.056173) [27.000000] (2019-02-06,0.339128) [16.000000] (2019-02-06,0.079747) [41.000000] (2019-02-06,0.557471) [15.000000] (2019-02-06,0.281324) [23.000000] (2019-02-06,0.521248) [20.000000] (2019-02-06,0.209086) [40.000000] (2019-02-06,-1.986818) [10.000000] (2019-02-06,1.283164) [21.000000] (2019-02-06,-3.174365) [9.000000] (2019-02-07,0.475265) [12.000000] (2019-02-07,0.397508) [16.000000] (2019-02-07,0.319661) [22.000000] (2019-02-07,0.240550) [14.000000] (2019-02-07,0.369647) [26.000000] (2019-02-07,0.363992) [26.000000] (2019-02-07,0.197924) [17.000000] (2019-02-07,0.289791) [23.000000] (2019-02-07,0.345320) [24.000000] (2019-02-07,0.189951) [8.000000] (2019-02-08,0.614862) [24.000000] (2019-02-08,0.368902) [25.000000] (2019-02-08,1.590204) [25.000000] (2019-02-08,-1.556639) [6.000000] (2019-02-08,0.498854) [18.000000] (2019-02-08,0.465511) [18.000000] (2019-02-08,0.310858) [27.000000] (2019-02-08,0.290863) [26.000000] (2019-02-08,0.316344) [27.000000] (2019-02-08,0.311197) [28.000000] (2019-02-08,0.358028) [23.000000] (2019-02-08,0.180053) [17.000000] (2019-02-08,0.246130) [22.000000] (2019-02-08,0.170127) [29.000000] (2019-02-08,1.177587) [24.000000] (2019-02-08,0.993571) [22.000000] (2019-02-08,1.147848) [19.000000] (2019-02-08,0.899869) [12.000000] (2019-02-09,0.196548) [22.000000] (2019-02-09,0.117452) [37.000000] (2019-02-10,0.436290) [23.000000] (2019-02-10,0.532670) [18.000000] (2019-02-10,0.368325) [28.000000] (2019-02-10,1.202649) [4.000000] (2019-02-10,0.164358) [18.000000] (2019-02-10,0.259398) [16.000000] (2019-02-11,0.687125) [15.000000] (2019-02-11,0.609871) [22.000000] (2019-02-11,1.359978) [10.000000] (2019-02-11,1.112796) [14.000000] (2019-02-11,0.197674) [19.000000] (2019-02-11,0.467934) [14.000000] (2019-02-11,0.949536) [14.000000] (2019-02-11,1.115581) [16.000000] (2019-02-11,1.725617) [11.000000] (2019-02-11,0.479435) [37.000000] (2019-02-11,0.176578) [38.000000] (2019-02-11,0.253552) [13.000000] (2019-02-11,0.194289) [17.000000] (2019-02-11,0.131687) [28.000000] (2019-02-11,0.237970) [17.000000] (2019-02-11,0.180732) [24.000000] (2019-02-11,0.405191) [22.000000] (2019-02-11,0.273217) [34.000000] (2019-02-11,0.185776) [14.000000] (2019-02-12,0.356009) [22.000000] (2019-02-12,0.091459) [45.000000] (2019-02-12,0.249766) [28.000000] (2019-02-12,0.226741) [21.000000] (2019-02-12,0.183417) [26.000000] (2019-02-12,0.256963) [17.000000] (2019-02-12,0.627047) [16.000000] (2019-02-12,0.228101) [15.000000] (2019-02-12,0.226277) [13.000000] (2019-02-12,0.612378) [13.000000] (2019-02-12,0.369119) [20.000000] (2019-02-12,0.277017) [25.000000] (2019-02-12,0.227875) [24.000000] (2019-02-12,0.260292) [15.000000] (2019-02-12,0.350973) [22.000000] (2019-02-12,0.116360) [39.000000] (2019-02-12,4.674395) [5.000000] (2019-02-12,1.003468) [4.000000] (2019-02-13,0.261219) [33.000000] (2019-02-13,0.266377) [28.000000] (2019-02-13,0.199522) [34.000000] (2019-02-13,0.418924) [12.000000] (2019-02-13,0.523989) [11.000000] (2019-02-13,0.335820) [22.000000] (2019-02-13,0.156966) [34.000000] (2019-02-13,0.285771) [22.000000] (2019-02-13,0.267270) [21.000000] (2019-02-13,0.273416) [28.000000] (2019-02-13,0.274148) [27.000000] (2019-02-15,0.149640) [22.000000] (2019-02-15,0.066262) [48.000000] (2019-02-16,0.362905) [24.000000] (2019-02-16,0.232308) [23.000000] (2019-02-17,0.168251) [22.000000] (2019-02-17,0.117612) [33.000000] (2019-02-17,0.293099) [42.000000] (2019-02-17,0.350419) [33.000000] (2019-02-17,0.488763) [28.000000] (2019-02-17,0.274771) [43.000000] (2019-02-17,0.260316) [47.000000] (2019-02-17,0.404638) [25.000000] (2019-02-17,0.348455) [23.000000] (2019-02-17,0.138063) [26.000000] (2019-02-17,0.401462) [31.000000] (2019-02-17,0.219774) [42.000000] (2019-02-17,0.388684) [30.000000] (2019-02-17,0.182914) [39.000000] (2019-02-17,0.218304) [35.000000] (2019-02-17,0.223744) [42.000000] (2019-02-18,0.288608) [27.000000] (2019-02-18,0.205896) [26.000000] (2019-02-18,-0.367455) [14.000000] (2019-02-19,0.250742) [22.000000] (2019-02-19,0.362772) [13.000000] (2019-02-19,0.179826) [16.000000] (2019-02-19,0.149801) [15.000000] (2019-02-19,0.771133) [22.000000] (2019-02-19,0.121532) [42.000000] (2019-02-19,0.815185) [22.000000] (2019-02-19,0.262937) [26.000000] (2019-02-19,0.256249) [27.000000] (2019-02-19,0.207856) [17.000000] (2019-02-19,0.239554) [27.000000] (2019-02-19,0.264699) [31.000000] (2019-02-19,0.221709) [18.000000] (2019-02-20,0.184000) [36.000000] (2019-02-20,0.265199) [34.000000] (2019-02-20,0.231545) [31.000000] (2019-02-20,0.272215) [28.000000] (2019-02-20,0.248081) [30.000000] (2019-02-20,0.170001) [31.000000] (2019-02-20,0.155932) [27.000000] (2019-02-20,0.191224) [22.000000] (2019-02-20,0.153416) [64.000000] (2019-02-20,0.228538) [19.000000] (2019-02-20,0.193286) [25.000000] (2019-02-20,0.192365) [9.000000] (2019-02-20,0.321791) [12.000000] (2019-02-20,0.443485) [9.000000] (2019-02-20,0.098079) [27.000000] (2019-02-21,0.363093) [22.000000] (2019-02-21,0.187075) [47.000000] (2019-02-22,0.192836) [24.000000] (2019-02-22,0.187527) [22.000000] (2019-02-22,0.098573) [25.000000] (2019-02-22,0.252705) [22.000000] (2019-02-22,0.098883) [59.000000] (2019-02-23,0.378826) [20.000000] (2019-02-23,0.279201) [18.000000] (2019-02-23,0.220221) [22.000000] (2019-02-23,0.100074) [67.000000] (2019-02-23,0.335413) [21.000000] (2019-02-23,0.386810) [9.000000] (2019-02-23,0.133000) [32.000000] (2019-02-23,0.247253) [31.000000] (2019-02-23,0.234498) [15.000000] (2019-02-24,0.218719) [23.000000] (2019-02-24,0.342103) [15.000000] (2019-02-24,0.172320) [24.000000] (2019-02-24,0.273417) [22.000000] (2019-02-24,0.084122) [60.000000] (2019-02-24,0.427433) [14.000000] (2019-02-24,0.170117) [32.000000] (2019-02-24,0.211668) [28.000000] (2019-02-24,0.144315) [31.000000] (2019-02-24,0.217596) [23.000000] (2019-02-24,0.073560) [5.000000] (2019-02-24,0.495193) [16.000000] (2019-02-24,0.388699) [17.000000] (2019-02-25,0.567457) [19.000000] (2019-02-25,0.450309) [18.000000] (2019-02-26,0.354393) [10.000000] (2019-02-26,0.124313) [9.000000] (2019-02-26,0.362092) [24.000000] (2019-02-26,0.355888) [23.000000] (2019-02-26,0.017140) [12.000000] (2019-02-26,0.569814) [5.000000] (2019-02-26,0.486434) [17.000000] (2019-02-26,0.531304) [17.000000] (2019-02-26,0.175907) [42.000000] (2019-02-26,0.381981) [22.000000] (2019-02-26,0.231661) [36.000000] (2019-02-26,0.437432) [11.000000] (2019-02-27,0.335745) [26.000000] (2019-02-27,0.413760) [25.000000] (2019-02-27,0.452037) [22.000000] (2019-02-27,0.121206) [39.000000] (2019-02-27,0.916479) [41.000000] (2019-02-27,2.415992) [9.000000] (2019-02-27,1.121624) [9.000000] (2019-02-27,1.347916) [5.000000] (2019-02-27,1.362090) [8.000000] (2019-02-27,0.757725) [6.000000] (2019-02-27,0.544731) [7.000000] (2019-02-27,0.280966) [15.000000] (2019-02-27,0.075946) [45.000000] (2019-02-27,0.934852) [18.000000] (2019-02-27,1.580699) [10.000000] (2019-02-27,0.998739) [17.000000] (2019-02-27,0.636660) [42.000000] (2019-02-27,1.233224) [14.000000] (2019-02-27,-0.533411) [23.000000] (2019-02-27,0.368120) [40.000000] (2019-02-27,0.296780) [19.000000] (2019-02-27,0.216267) [22.000000] (2019-02-27,0.627538) [19.000000] (2019-02-27,0.423176) [20.000000] (2019-02-27,0.337982) [17.000000] (2019-02-27,0.314190) [15.000000] (2019-02-27,0.269158) [17.000000] (2019-02-27,0.557891) [19.000000] (2019-02-27,1.090443) [12.000000] (2019-02-27,0.411277) [21.000000] (2019-02-27,0.417890) [22.000000] (2019-02-27,0.570218) [15.000000] (2019-02-27,0.578391) [15.000000] (2019-02-28,0.237139) [22.000000] (2019-02-28,0.135609) [83.000000] (2019-02-28,0.311930) [30.000000] (2019-02-28,0.485112) [20.000000] (2019-02-28,0.251807) [29.000000] (2019-02-28,0.276111) [19.000000] (2019-02-28,0.316053) [15.000000] (2019-02-28,0.429018) [7.000000] (2019-02-28,0.213633) [13.000000] (2019-02-28,0.237701) [22.000000] (2019-02-28,0.251803) [22.000000] (2019-02-28,0.118810) [45.000000] (2019-02-28,0.223762) [22.000000] (2019-02-28,0.121787) [42.000000] (2019-02-28,0.422046) [21.000000] (2019-02-28,0.188316) [29.000000] (2019-02-28,1.046893) [7.000000] (2019-02-28,0.826645) [7.000000] (2019-02-28,0.665092) [10.000000] (2019-02-28,0.188345) [22.000000] (2019-02-28,0.115201) [45.000000] (2019-02-28,0.252096) [21.000000] (2019-02-28,0.132236) [34.000000] (2019-03-01,0.319327) [16.000000] (2019-03-01,0.304962) [12.000000] (2019-03-01,0.292659) [16.000000] (2019-03-01,0.251274) [31.000000] (2019-03-01,0.224962) [34.000000] (2019-03-01,0.105795) [28.000000] (2019-03-01,0.333659) [25.000000] (2019-03-01,0.332232) [28.000000] (2019-03-01,0.322132) [27.000000] (2019-03-01,0.417917) [22.000000] (2019-03-01,0.236579) [16.000000] (2019-03-02,0.183968) [85.000000] (2019-03-02,0.194965) [82.000000] (2019-03-02,0.284914) [43.000000] (2019-03-02,0.743383) [34.000000] (2019-03-02,0.313296) [14.000000] (2019-03-02,0.378608) [13.000000] (2019-03-02,0.206048) [27.000000] (2019-03-02,0.190108) [27.000000] (2019-03-02,-0.580117) [14.000000] (2019-03-02,-0.126631) [9.000000] (2019-03-02,0.209519) [26.000000] (2019-03-02,0.325197) [25.000000] (2019-03-02,0.246486) [18.000000] (2019-03-02,0.266028) [29.000000] (2019-03-02,0.183150) [30.000000] (2019-03-03,0.201759) [22.000000] (2019-03-03,0.062130) [58.000000] (2019-03-03,0.241508) [24.000000] (2019-03-03,0.163485) [28.000000] (2019-03-03,0.188256) [23.000000] (2019-03-03,0.198525) [25.000000] (2019-03-03,0.194425) [19.000000] (2019-03-03,0.187772) [22.000000] (2019-03-04,0.213514) [15.000000] (2019-03-04,0.224957) [12.000000] (2019-03-04,0.155938) [10.000000] (2019-03-04,0.032504) [9.000000] (2019-03-04,0.235345) [18.000000] (2019-03-04,0.399699) [15.000000] (2019-03-04,0.297553) [16.000000] (2019-03-04,0.332059) [13.000000] (2019-03-04,0.434445) [18.000000] (2019-03-04,0.330406) [25.000000] (2019-03-04,0.204650) [23.000000] (2019-03-04,0.449929) [17.000000] (2019-03-05,0.435726) [14.000000] (2019-03-05,0.400683) [13.000000] (2019-03-06,-0.607732) [45.000000] (2019-03-06,0.039260) [88.000000] (2019-03-06,0.748069) [19.000000] (2019-03-06,0.548010) [22.000000] (2019-03-06,0.443534) [26.000000] (2019-03-06,0.404625) [38.000000] (2019-03-06,0.915752) [25.000000] (2019-03-06,-1.684629) [11.000000] (2019-03-06,1.200361) [5.000000] (2019-03-06,0.357973) [17.000000] (2019-03-06,0.396575) [16.000000] (2019-03-06,0.440304) [11.000000] (2019-03-06,0.438622) [27.000000] (2019-03-06,0.755507) [17.000000] (2019-03-06,0.134183) [22.000000] (2019-03-06,0.321150) [49.000000] (2019-03-07,0.382130) [78.000000] (2019-03-07,0.396089) [78.000000] (2019-03-07,0.425771) [69.000000] (2019-03-07,3.900645) [11.000000] (2019-03-07,3.823026) [11.000000] (2019-03-07,0.267240) [21.000000] (2019-03-07,0.249568) [45.000000] (2019-03-07,0.233037) [30.000000] (2019-03-07,0.405793) [15.000000] (2019-03-07,0.571468) [26.000000] (2019-03-07,0.551067) [25.000000] (2019-03-07,0.705538) [18.000000] (2019-03-07,0.285991) [28.000000] (2019-03-07,0.290263) [27.000000] (2019-03-07,0.346355) [15.000000] (2019-03-07,0.274999) [14.000000] (2019-03-08,0.258994) [14.000000] (2019-03-08,0.202194) [19.000000] (2019-03-08,-1.289738) [6.000000] (2019-03-09,0.182544) [22.000000] (2019-03-09,-0.262115) [30.000000] (2019-03-09,0.708244) [20.000000] (2019-03-09,0.911344) [20.000000] (2019-03-09,0.768793) [26.000000] (2019-03-09,0.965859) [21.000000] (2019-03-09,0.218665) [21.000000] (2019-03-09,0.124226) [40.000000] (2019-03-09,0.179347) [16.000000] (2019-03-10,0.406856) [13.000000] (2019-03-10,0.450362) [19.000000] (2019-03-10,0.472260) [12.000000] (2019-03-10,0.457456) [39.000000] (2019-03-10,0.466490) [38.000000] (2019-03-10,0.445218) [15.000000] (2019-03-10,0.319791) [14.000000] (2019-03-10,0.343337) [14.000000] (2019-03-10,0.394511) [15.000000] (2019-03-10,0.397449) [12.000000] (2019-03-10,0.305602) [11.000000] (2019-03-10,0.450319) [19.000000] (2019-03-10,0.450671) [17.000000] (2019-03-10,0.510201) [10.000000] (2019-03-10,0.600973) [9.000000] (2019-03-10,0.250048) [22.000000] (2019-03-10,0.385798) [21.000000] (2019-03-10,-0.388353) [40.000000] (2019-03-10,0.341590) [16.000000] (2019-03-10,0.339886) [9.000000] (2019-03-11,0.663045) [11.000000] (2019-03-11,0.487602) [10.000000] (2019-03-11,0.312642) [20.000000] (2019-03-11,0.239640) [19.000000] (2019-03-11,0.185637) [22.000000] (2019-03-11,0.109952) [38.000000] (2019-03-11,2.007190) [6.000000] (2019-03-11,0.281349) [22.000000] (2019-03-11,0.322446) [18.000000] (2019-03-11,0.183973) [21.000000] (2019-03-11,-1.152562) [14.000000] (2019-03-12,0.296621) [17.000000] (2019-03-12,0.223776) [22.000000] (2019-03-12,0.192950) [25.000000] (2019-03-12,0.145861) [22.000000] (2019-03-12,0.093577) [29.000000] (2019-03-13,0.530468) [13.000000] (2019-03-13,0.504078) [13.000000] (2019-03-13,0.352342) [11.000000] (2019-03-13,0.500358) [12.000000] (2019-03-13,0.284992) [28.000000] (2019-03-13,0.331214) [27.000000] (2019-03-14,0.321561) [18.000000] (2019-03-14,0.312854) [22.000000] (2019-03-14,-0.000203) [59.000000] (2019-03-15,0.304384) [13.000000] (2019-03-15,0.309419) [12.000000] (2019-03-15,-2.172027) [4.000000] (2019-03-15,1.072132) [11.000000] (2019-03-15,0.580791) [8.000000] (2019-03-15,0.194711) [4.000000] (2019-03-15,0.233375) [7.000000] (2019-03-15,0.064397) [7.000000] (2019-03-15,5.712262) [4.000000] (2019-03-15,4.468075) [4.000000] (2019-03-15,0.302383) [24.000000] (2019-03-15,0.352623) [23.000000] (2019-03-15,0.491341) [14.000000] (2019-03-15,0.521637) [12.000000] (2019-03-15,0.277337) [24.000000] (2019-03-15,0.565574) [10.000000] (2019-03-15,0.625967) [10.000000] (2019-03-15,0.931467) [21.000000] (2019-03-15,0.107125) [30.000000] (2019-03-15,0.337706) [11.000000] (2019-03-16,0.196920) [22.000000] (2019-03-16,0.104548) [43.000000] (2019-03-16,0.176735) [22.000000] (2019-03-16,0.092596) [26.000000] (2019-03-16,0.305280) [11.000000] (2019-03-17,0.372679) [5.000000] (2019-03-17,0.418650) [10.000000] (2019-03-17,0.297455) [5.000000] (2019-03-17,1.433801) [4.000000] (2019-03-17,0.466061) [12.000000] (2019-03-17,0.347975) [11.000000] (2019-03-17,0.307136) [12.000000] (2019-03-17,0.406119) [11.000000] (2019-03-17,0.156365) [22.000000] (2019-03-17,0.184783) [28.000000] (2019-03-17,0.191450) [22.000000] (2019-03-17,0.084347) [41.000000] (2019-03-17,0.151471) [22.000000] (2019-03-17,0.100199) [35.000000] (2019-03-17,0.189265) [22.000000] (2019-03-17,0.128287) [36.000000] (2019-03-18,0.340031) [12.000000] (2019-03-18,0.377145) [11.000000] (2019-03-18,0.148430) [22.000000] (2019-03-18,0.200547) [21.000000] (2019-03-18,0.131858) [20.000000] (2019-03-18,0.127149) [29.000000] (2019-03-18,0.212433) [7.000000] (2019-03-18,0.183839) [21.000000] (2019-03-18,0.097498) [34.000000] (2019-03-18,0.133998) [22.000000] (2019-03-18,0.111466) [23.000000] (2019-03-19,0.256148) [15.000000] (2019-03-19,0.188981) [19.000000] (2019-03-19,0.223888) [37.000000] (2019-03-19,0.175075) [20.000000] (2019-03-19,0.411590) [19.000000] (2019-03-19,0.416679) [14.000000] (2019-03-19,0.316642) [15.000000] (2019-03-19,0.335450) [17.000000] (2019-03-19,0.199928) [16.000000] (2019-03-19,0.152628) [17.000000] (2019-03-19,0.272631) [19.000000] (2019-03-19,0.137938) [40.000000] (2019-03-19,-0.931808) [25.000000] (2019-03-19,0.266739) [31.000000] (2019-03-19,0.299316) [41.000000] (2019-03-19,0.292911) [35.000000] (2019-03-19,0.164399) [21.000000] (2019-03-19,0.142678) [25.000000] (2019-03-19,0.188492) [13.000000] (2019-03-19,0.245674) [13.000000] (2019-03-19,0.135771) [17.000000] (2019-03-20,0.296379) [24.000000] (2019-03-20,0.336820) [23.000000] (2019-03-20,0.253033) [22.000000] (2019-03-20,0.382994) [17.000000] (2019-03-20,0.322477) [17.000000] (2019-03-20,0.170924) [20.000000] (2019-03-21,0.228673) [16.000000] (2019-03-21,0.240348) [15.000000] (2019-03-21,0.197401) [19.000000] (2019-03-21,0.340633) [30.000000] (2019-03-22,0.220268) [27.000000] (2019-03-22,0.359013) [18.000000] (2019-03-22,0.106274) [22.000000] (2019-03-22,0.256646) [21.000000] (2019-03-22,0.245142) [18.000000] (2019-03-22,0.200931) [17.000000] (2019-03-22,0.761963) [23.000000] (2019-03-22,0.158098) [21.000000] (2019-03-22,0.442374) [32.000000] (2019-03-22,0.219154) [22.000000] (2019-03-22,-0.242106) [38.000000] (2019-03-22,0.161561) [21.000000] (2019-03-22,0.124964) [26.000000] (2019-03-22,0.163553) [22.000000] (2019-03-22,0.137827) [25.000000] (2019-03-22,0.260310) [16.000000] (2019-03-22,-0.413105) [22.000000] (2019-03-22,-0.018793) [19.000000] (2019-03-22,-0.094799) [18.000000] (2019-03-22,0.237130) [15.000000] (2019-03-22,0.258230) [14.000000] (2019-03-22,0.622620) [5.000000] (2019-03-22,0.215981) [22.000000] (2019-03-22,0.178734) [21.000000] (2019-03-23,0.324962) [25.000000] (2019-03-23,0.494347) [19.000000] (2019-03-23,0.443565) [18.000000] (2019-03-23,0.225478) [23.000000] (2019-03-23,0.184330) [29.000000] (2019-03-23,0.165895) [21.000000] (2019-03-23,0.267875) [18.000000] (2019-03-23,0.158810) [22.000000] (2019-03-24,0.236026) [17.000000] (2019-03-24,0.162872) [23.000000] (2019-03-24,0.495910) [25.000000] (2019-03-24,0.026050) [25.000000] (2019-03-24,0.665166) [9.000000] (2019-03-24,0.454529) [10.000000] (2019-03-24,0.550204) [17.000000] (2019-03-24,0.441834) [17.000000] (2019-03-24,0.206259) [22.000000] (2019-03-24,0.151136) [40.000000] (2019-03-24,0.132880) [21.000000] (2019-03-24,0.076367) [40.000000] (2019-03-24,0.078301) [42.000000] (2019-03-24,0.172764) [22.000000] (2019-03-25,0.478797) [8.000000] (2019-03-25,0.355321) [11.000000] (2019-03-25,0.290607) [11.000000] (2019-03-25,0.281839) [16.000000] (2019-03-25,0.193575) [17.000000] (2019-03-25,0.245062) [5.000000] (2019-03-25,0.330657) [23.000000] (2019-03-25,0.295514) [14.000000] (2019-03-25,0.233109) [20.000000] (2019-03-26,0.201346) [22.000000] (2019-03-26,0.114292) [26.000000] (2019-03-26,0.172889) [20.000000] (2019-03-26,0.498462) [4.000000] (2019-03-26,0.178275) [21.000000] (2019-03-26,2.149056) [4.000000] (2019-03-26,0.202173) [14.000000] (2019-03-26,0.175502) [19.000000] (2019-03-26,0.186640) [21.000000] (2019-03-26,0.212089) [21.000000] (2019-03-26,0.170374) [44.000000] }; + +\end{axis} +\end{tikzpicture} diff --git a/reports/median_raise_scatter.tex b/reports/median_raise_scatter.tex new file mode 100644 index 0000000..f1802c3 --- /dev/null +++ b/reports/median_raise_scatter.tex @@ -0,0 +1,35 @@ +\begin{tikzpicture} +\begin{axis}[cycle list/RdGy-6, clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year}, xlabel={Date (MM-YY)}, ylabel={Median Raise Percent Over Own Bid},title={Raise Strategy Evolution}, + log basis y={10}, ymin=0, ymax=75, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, + cycle multiindex* list={ + color list + \nextlist + linestyles + \nextlist + very thick + \nextlist + }, legend pos=north east, + legend entries = {\\y=15\\y=12.5\\},legend style={fill=none},legend cell align={right}, x label style={at={(0.5,-.25)},anchor=south,}, scatter/use mapped color={ + draw=mapped color, + fill=mapped color!70, + }, colorbar, point meta= explicit, point meta max=1, + colorbar style={ + title={Revenue (ETH)}, + ytick={0,.2,...,0.8}, extra y ticks={1}, + extra y tick labels={1+}}, +] + + + +\addplot+[only marks, scatter,opacity=0.1,mark=*] coordinates {(2018-06-27,31.500699) [0.037470] (2018-06-27,10.068602) [0.037470] (2018-06-28,50.442478) [0.120306] (2018-06-28,6.633603) [0.120306] (2018-06-28,69.886114) [0.103800] (2018-06-28,13.294065) [0.103800] (2018-06-28,59.260923) [0.030139] (2018-06-28,40.148706) [2.801722] (2018-06-28,21.299728) [2.801722] (2018-06-28,69.875985) [0.185946] (2018-06-28,69.751970) [0.185946] (2018-06-28,20.472668) [0.102670] (2018-06-28,13.250000) [0.102670] (2018-06-28,50.707909) [0.105482] (2018-06-28,69.387047) [0.105482] (2018-06-29,41.476739) [0.027443] (2018-06-29,48.880573) [0.027443] (2018-06-29,13.250000) [0.027443] (2018-06-29,37.178050) [0.027443] (2018-06-29,34.506690) [0.027443] (2018-06-29,14.514562) [0.340444] (2018-06-29,11.535689) [0.340444] (2018-06-30,21.000000) [0.054128] (2018-06-30,21.000000) [0.054128] (2018-06-30,15.500000) [0.054128] (2018-06-30,51.161744) [0.078083] (2018-06-30,69.660730) [0.078083] (2018-06-30,69.595079) [0.078083] (2018-06-30,69.529479) [0.078083] (2018-06-30,70.000000) [0.078083] (2018-07-01,21.000000) [0.079404] (2018-07-01,21.000000) [0.079404] (2018-07-02,56.773097) [0.531852] (2018-07-02,70.000000) [0.531852] (2018-07-02,70.000000) [0.118155] (2018-07-02,41.446835) [0.118155] (2018-07-02,56.773097) [0.583332] (2018-07-02,13.250000) [0.583332] (2018-07-03,21.000000) [0.155721] (2018-07-03,21.000000) [0.155721] (2018-07-03,70.000000) [0.180618] (2018-07-03,70.000000) [0.180618] (2018-07-04,59.495815) [0.077932] (2018-07-04,13.250000) [0.077932] (2018-07-04,13.250000) [0.071191] (2018-07-04,10.963438) [0.071191] (2018-07-04,13.250000) [0.088880] (2018-07-04,13.250000) [0.088880] (2018-07-04,69.974517) [0.189998] (2018-07-04,69.820365) [0.189998] (2018-07-04,34.918948) [0.364060] (2018-07-04,69.830340) [0.149266] (2018-07-04,69.830340) [0.149266] (2018-07-04,69.943618) [0.149266] (2018-07-04,70.000000) [0.149266] (2018-07-04,70.000000) [0.149266] (2018-07-05,70.000000) [0.207447] (2018-07-05,70.000000) [0.207447] (2018-07-05,13.000000) [0.083325] (2018-07-05,13.250000) [0.083325] (2018-07-05,12.882582) [0.083325] (2018-07-05,35.000000) [0.073823] (2018-07-05,13.250000) [0.085404] (2018-07-05,22.967474) [0.085404] (2018-07-05,6.327003) [0.085404] (2018-07-05,31.696096) [0.010421] (2018-07-05,31.546254) [0.010421] (2018-07-05,11.945958) [0.010421] (2018-07-05,6.611976) [0.010421] (2018-07-05,31.830298) [0.010421] (2018-07-05,41.625000) [0.010421] (2018-07-05,51.162649) [0.010421] (2018-07-06,70.000000) [0.112668] (2018-07-06,13.043065) [0.112668] (2018-07-06,40.044378) [0.098500] (2018-07-06,41.424766) [0.098500] (2018-07-06,70.000000) [1.101137] (2018-07-06,69.475149) [1.101137] (2018-07-07,70.000000) [0.218069] (2018-07-07,0.190807) [0.218069] (2018-07-07,0.000000) [0.075096] (2018-07-07,13.250000) [0.075096] (2018-07-08,70.000000) [0.120699] (2018-07-08,0.188170) [0.120699] (2018-07-08,69.963202) [0.141908] (2018-07-08,6.589153) [0.141908] (2018-07-08,30.716193) [0.113546] (2018-07-08,13.250000) [0.113546] (2018-07-09,19.557616) [0.047345] (2018-07-09,21.000000) [0.047345] (2018-07-09,70.000000) [0.224940] (2018-07-09,70.000000) [0.224940] (2018-07-09,13.250000) [0.085949] (2018-07-09,13.250000) [0.085949] (2018-07-10,50.219004) [1.040280] (2018-07-10,13.043416) [1.040280] (2018-07-10,33.346896) [0.066401] (2018-07-10,54.609488) [0.066401] (2018-07-10,16.995396) [0.066401] (2018-07-10,46.506847) [0.066401] (2018-07-10,13.250000) [0.072247] (2018-07-10,38.549818) [0.072247] (2018-07-11,63.386548) [0.078280] (2018-07-11,6.625000) [0.078280] (2018-07-11,13.250000) [0.078321] (2018-07-11,0.000000) [0.078321] (2018-07-11,21.000000) [0.011168] (2018-07-11,21.000000) [0.011168] (2018-07-11,69.939256) [0.172504] (2018-07-11,34.963508) [0.172504] (2018-07-11,12.800639) [0.172504] (2018-07-11,21.000000) [0.038200] (2018-07-11,21.000000) [0.038200] (2018-07-12,13.000000) [0.094100] (2018-07-12,21.000000) [0.094100] (2018-07-12,63.386548) [0.150000] (2018-07-12,6.625000) [0.150000] (2018-07-13,13.250000) [0.075302] (2018-07-13,0.000000) [0.075302] (2018-07-13,0.038932) [1.200000] (2018-07-13,69.986673) [0.180562] (2018-07-13,34.985455) [0.180562] (2018-07-13,63.135268) [0.378170] (2018-07-13,52.777613) [0.155343] (2018-07-13,50.170781) [0.155343] (2018-07-13,31.846239) [0.088025] (2018-07-13,6.625000) [0.088025] (2018-07-14,13.250000) [0.029074] (2018-07-14,43.730289) [0.029074] (2018-07-14,13.000000) [0.279530] (2018-07-14,17.749201) [0.279530] (2018-07-14,19.285470) [0.279530] (2018-07-14,30.617491) [0.279530] (2018-07-14,70.000000) [0.279530] (2018-07-14,32.258859) [0.139385] (2018-07-14,12.942100) [0.139385] (2018-07-16,63.386548) [0.087899] (2018-07-16,6.442438) [0.087899] (2018-07-16,21.779647) [0.011071] (2018-07-16,13.250000) [0.011071] (2018-07-17,13.000000) [0.076429] (2018-07-17,1.627925) [0.076429] (2018-07-17,60.204597) [0.129360] (2018-07-17,0.172778) [0.129360] (2018-07-17,36.415125) [0.129360] (2018-07-17,63.386548) [0.069656] (2018-07-17,0.000000) [0.069656] (2018-07-18,69.990793) [0.259799] (2018-07-18,48.100359) [0.213439] (2018-07-18,70.000000) [0.089940] (2018-07-18,54.368627) [0.089940] (2018-07-18,27.862745) [0.077292] (2018-07-18,32.955068) [0.077292] (2018-07-20,70.000000) [0.174400] (2018-07-20,69.948020) [0.174400] (2018-07-20,13.250000) [0.047712] (2018-07-20,13.250000) [0.047712] (2018-07-21,50.435995) [0.145210] (2018-07-21,13.247560) [0.145210] (2018-07-21,46.518057) [0.197778] (2018-07-21,69.924508) [0.197778] (2018-07-21,55.750698) [0.108673] (2018-07-21,13.250000) [0.108673] (2018-07-22,70.000037) [0.777472] (2018-07-22,0.222710) [0.777472] (2018-07-22,20.619668) [0.012568] (2018-07-22,21.000000) [0.012568] (2018-07-22,30.163849) [0.298800] (2018-07-22,3.677569) [0.298800] (2018-07-23,28.976546) [0.368241] (2018-07-23,0.282268) [0.394672] (2018-07-23,20.837982) [0.584779] (2018-07-23,21.000000) [0.584779] (2018-07-23,10.000000) [0.028279] (2018-07-23,41.625000) [0.028279] (2018-07-23,23.251007) [0.028279] (2018-07-24,13.250000) [0.025736] (2018-07-24,13.250000) [0.025736] (2018-07-24,82.298912) [0.091648] (2018-07-24,0.000000) [0.091648] (2018-07-24,19.557616) [0.130151] (2018-07-24,21.000000) [0.130151] (2018-07-24,31.896552) [0.025043] (2018-07-24,13.234912) [0.025043] (2018-07-24,13.250000) [0.025043] (2018-07-24,13.000000) [0.709800] (2018-07-24,13.105334) [0.709800] (2018-07-24,27.345527) [0.034003] (2018-07-24,24.784379) [0.034003] (2018-07-24,13.250000) [0.034003] (2018-07-24,13.250000) [0.034003] (2018-07-25,13.000000) [0.029449] (2018-07-25,21.000000) [0.029449] (2018-07-25,31.721239) [0.175980] (2018-07-25,70.000000) [0.175980] (2018-07-25,50.661906) [0.187706] (2018-07-25,69.860834) [0.187706] (2018-07-25,63.386548) [0.110648] (2018-07-25,13.250000) [0.110648] (2018-07-26,6.625000) [0.026097] (2018-07-26,13.000000) [0.089818] (2018-07-26,13.250000) [0.089818] (2018-07-26,34.865783) [0.089818] (2018-07-26,13.250000) [0.089818] (2018-07-26,63.386548) [0.115670] (2018-07-26,0.000000) [0.115670] (2018-07-27,13.250000) [0.030369] (2018-07-27,13.250000) [0.030369] (2018-07-28,38.737254) [0.129681] (2018-07-28,13.250000) [0.129681] (2018-07-28,69.714687) [0.239510] (2018-07-29,70.000000) [0.070544] (2018-07-29,41.625000) [0.070544] (2018-07-30,50.536364) [0.013031] (2018-07-30,70.053045) [0.013031] (2018-07-30,20.812407) [0.068747] (2018-07-30,20.948670) [0.068747] (2018-07-30,17.802649) [0.068747] (2018-07-30,21.000000) [0.068747] (2018-07-30,21.000000) [0.068747] (2018-07-30,63.386548) [0.085178] (2018-07-30,70.000000) [0.085178] (2018-07-30,69.740068) [0.048805] (2018-07-30,13.250000) [0.048805] (2018-07-30,21.000000) [0.048805] (2018-07-30,15.000000) [0.048805] (2018-07-30,70.000000) [0.236547] (2018-07-31,13.250000) [0.018362] (2018-07-31,45.622945) [0.018362] (2018-07-31,13.250000) [0.066761] (2018-07-31,39.103987) [0.196800] (2018-07-31,45.782140) [0.196800] (2018-07-31,70.114076) [0.196800] (2018-07-31,69.801180) [0.196800] (2018-07-31,31.501326) [0.167954] (2018-07-31,48.596498) [0.167954] (2018-08-01,13.000000) [0.070884] (2018-08-01,13.125000) [0.070884] (2018-08-01,70.000000) [0.080395] (2018-08-01,13.250000) [0.080395] (2018-08-01,56.773097) [0.451647] (2018-08-01,41.625000) [0.451647] (2018-08-01,70.000000) [0.451647] (2018-08-03,69.727594) [0.271288] (2018-08-03,69.949477) [0.271288] (2018-08-03,60.202021) [0.157407] (2018-08-03,35.000000) [0.157407] (2018-08-04,69.977020) [0.025919] (2018-08-04,13.257655) [0.025919] (2018-08-04,27.862745) [0.075512] (2018-08-04,13.395466) [0.075512] (2018-08-04,69.801799) [0.035317] (2018-08-04,13.000000) [0.067896] (2018-08-04,21.000000) [0.067896] (2018-08-04,13.000000) [0.017938] (2018-08-04,21.000000) [0.017938] (2018-08-04,21.000000) [8.218463] (2018-08-05,27.862745) [0.088838] (2018-08-05,12.501000) [0.088838] (2018-08-05,27.862745) [0.088838] (2018-08-05,13.250000) [0.088838] (2018-08-05,63.386548) [0.092800] (2018-08-05,13.250000) [0.092800] (2018-08-05,63.386548) [0.092800] (2018-08-05,13.250000) [0.092800] (2018-08-05,70.000000) [0.127288] (2018-08-05,70.000000) [0.127288] (2018-08-05,13.000000) [0.205422] (2018-08-05,21.000000) [0.205422] (2018-08-05,21.000000) [0.016920] (2018-08-05,13.830253) [0.016920] (2018-08-05,21.000000) [0.024290] (2018-08-05,13.146555) [0.024290] (2018-08-05,63.386548) [0.116000] (2018-08-05,41.625000) [0.116000] (2018-08-05,60.581325) [0.116000] (2018-08-05,63.386548) [0.115760] (2018-08-05,0.000000) [0.115760] (2018-08-06,63.386548) [0.132518] (2018-08-06,0.000000) [0.132518] (2018-08-06,13.000000) [0.297597] (2018-08-06,21.000000) [0.297597] (2018-08-06,14.146555) [0.051652] (2018-08-06,23.360303) [0.051652] (2018-08-07,50.442478) [0.083391] (2018-08-07,41.625000) [0.083391] (2018-08-07,58.311699) [0.083391] (2018-08-07,46.320257) [0.111360] (2018-08-07,60.371681) [0.111360] (2018-08-07,50.743363) [0.111360] (2018-08-07,70.000000) [0.111360] (2018-08-07,20.898652) [0.473788] (2018-08-07,21.000000) [0.473788] (2018-08-07,66.968996) [0.023146] (2018-08-07,13.250000) [0.023146] (2018-08-07,21.000000) [0.023146] (2018-08-08,69.960765) [0.775608] (2018-08-08,41.585765) [0.775608] (2018-08-08,62.120277) [0.103734] (2018-08-08,6.619429) [0.103734] (2018-08-08,69.399034) [0.103734] (2018-08-08,63.386548) [0.107132] (2018-08-08,70.000000) [0.107132] (2018-08-08,20.821129) [0.084543] (2018-08-08,21.000000) [0.084543] (2018-08-08,21.000000) [0.027095] (2018-08-08,21.000000) [0.027095] (2018-08-08,63.386548) [0.086922] (2018-08-08,70.000000) [0.086922] (2018-08-08,70.000000) [0.157212] (2018-08-08,70.000000) [0.157212] (2018-08-08,70.000000) [0.161383] (2018-08-08,63.882426) [0.161383] (2018-08-08,13.250000) [0.075575] (2018-08-08,13.250000) [0.075575] (2018-08-09,13.250000) [0.051339] (2018-08-09,21.000000) [0.051339] (2018-08-09,13.000000) [0.031738] (2018-08-09,22.650000) [0.031738] (2018-08-09,50.442478) [0.102254] (2018-08-09,13.000000) [0.102254] (2018-08-10,70.000000) [0.172213] (2018-08-10,69.967618) [0.172213] (2018-08-10,69.850524) [2.269200] (2018-08-10,69.850524) [2.269200] (2018-08-10,70.000000) [0.118460] (2018-08-10,0.153744) [0.118460] (2018-08-10,0.166013) [0.293750] (2018-08-10,23.181821) [0.046314] (2018-08-10,31.554654) [0.046314] (2018-08-10,62.199330) [0.046314] (2018-08-10,55.096244) [0.046314] (2018-08-10,21.000000) [0.076510] (2018-08-10,13.000000) [0.076510] (2018-08-11,13.000000) [0.044552] (2018-08-11,21.000000) [0.044552] (2018-08-11,19.557616) [0.055642] (2018-08-11,21.000000) [0.055642] (2018-08-11,41.770625) [0.164807] (2018-08-11,0.268523) [0.164807] (2018-08-11,50.442478) [0.187205] (2018-08-11,0.092781) [0.187205] (2018-08-11,59.469036) [0.010320] (2018-08-11,69.966794) [0.010320] (2018-08-11,32.955068) [0.086772] (2018-08-11,13.250000) [0.086772] (2018-08-12,38.549818) [0.078988] (2018-08-12,13.250000) [0.078988] (2018-08-12,13.000000) [0.099953] (2018-08-12,21.000000) [0.099953] (2018-08-12,6.625000) [0.097758] (2018-08-12,63.386548) [0.097758] (2018-08-12,62.963360) [0.105403] (2018-08-12,13.250039) [0.105403] (2018-08-12,70.000000) [0.123200] (2018-08-12,69.921933) [0.123200] (2018-08-12,13.250000) [0.069061] (2018-08-12,13.250000) [0.069061] (2018-08-13,15.393806) [0.092450] (2018-08-13,19.675731) [0.092450] (2018-08-13,21.000000) [0.092450] (2018-08-13,63.386548) [0.103490] (2018-08-13,13.250000) [0.103490] (2018-08-13,46.059453) [0.200699] (2018-08-13,69.751258) [0.200699] (2018-08-13,69.947405) [0.200699] (2018-08-13,13.250000) [0.017091] (2018-08-13,13.250000) [0.017091] (2018-08-13,32.081325) [0.017091] (2018-08-13,32.236175) [0.193978] (2018-08-13,13.250000) [0.193978] (2018-08-13,60.973127) [0.193978] (2018-08-13,63.386548) [0.152694] (2018-08-13,13.250000) [0.152694] (2018-08-13,13.000000) [0.072455] (2018-08-13,12.959812) [0.072455] (2018-08-14,70.000000) [0.336750] (2018-08-14,13.000000) [0.090568] (2018-08-14,12.730822) [0.090568] (2018-08-14,35.011548) [0.510725] (2018-08-14,13.250000) [0.510725] (2018-08-14,13.250000) [0.017811] (2018-08-14,12.501000) [0.017811] (2018-08-14,63.386548) [0.196800] (2018-08-14,70.000000) [0.196800] (2018-08-14,63.386548) [0.163630] (2018-08-14,0.000000) [0.163630] (2018-08-14,63.542984) [2.069600] (2018-08-14,69.240154) [2.069600] (2018-08-14,50.442478) [2.069600] (2018-08-15,0.000000) [0.384187] (2018-08-15,13.250000) [0.070074] (2018-08-15,13.250000) [0.070074] (2018-08-15,13.250000) [0.093203] (2018-08-15,35.011548) [0.093203] (2018-08-15,70.000000) [0.756120] (2018-08-15,20.930672) [2.874550] (2018-08-15,21.000000) [2.874550] (2018-08-16,18.023186) [0.971250] (2018-08-16,21.000000) [0.971250] (2018-08-16,13.000000) [0.014370] (2018-08-16,21.000000) [0.014370] (2018-08-16,14.301810) [0.553855] (2018-08-16,14.301810) [0.553855] (2018-08-16,14.301810) [0.553855] (2018-08-16,70.000000) [0.553855] (2018-08-16,0.153726) [0.249024] (2018-08-16,70.061492) [0.249024] (2018-08-16,35.011548) [0.105120] (2018-08-16,13.250000) [0.105120] (2018-08-16,35.011548) [0.123990] (2018-08-16,13.250000) [0.123990] (2018-08-16,70.000000) [0.084275] (2018-08-16,70.000000) [0.084275] (2018-08-17,35.011548) [0.034211] (2018-08-17,0.000000) [0.034211] (2018-08-17,70.000000) [0.455490] (2018-08-17,70.000000) [0.455490] (2018-08-17,14.000000) [0.024587] (2018-08-17,13.250000) [1.497910] (2018-08-17,13.250000) [1.497910] (2018-08-17,38.764423) [1.497910] (2018-08-17,70.000000) [0.073819] (2018-08-17,70.000000) [0.073819] (2018-08-17,13.250000) [0.067850] (2018-08-17,13.250000) [0.067850] (2018-08-17,13.250000) [0.067850] (2018-08-18,31.571096) [0.133243] (2018-08-18,31.721239) [0.133243] (2018-08-18,40.752575) [0.133243] (2018-08-18,70.000000) [0.133243] (2018-08-18,13.250000) [0.074023] (2018-08-18,13.250000) [0.074023] (2018-08-19,25.058737) [0.114501] (2018-08-19,13.896861) [0.114501] (2018-08-19,15.000000) [0.699650] (2018-08-19,21.000000) [0.699650] (2018-08-19,18.115232) [0.017969] (2018-08-19,70.000000) [0.017969] (2018-08-19,20.704381) [0.029968] (2018-08-19,21.000000) [0.029968] (2018-08-19,31.923749) [0.264535] (2018-08-19,35.134610) [0.264535] (2018-08-19,13.000000) [0.264535] (2018-08-20,63.386548) [0.140428] (2018-08-20,0.000000) [0.140428] (2018-08-20,54.019764) [0.020959] (2018-08-20,69.383744) [0.020959] (2018-08-20,35.011548) [0.093491] (2018-08-20,6.625000) [0.093491] (2018-08-20,21.000000) [0.025937] (2018-08-20,15.000000) [0.025937] (2018-08-21,13.000000) [0.178373] (2018-08-21,21.000000) [0.178373] (2018-08-21,70.000000) [0.020374] (2018-08-21,0.000000) [0.020374] (2018-08-21,63.386548) [0.252025] (2018-08-21,0.000000) [0.252025] (2018-08-21,13.250000) [0.154846] (2018-08-21,53.575234) [0.154846] (2018-08-21,54.036128) [0.154846] (2018-08-21,53.729839) [0.154846] (2018-08-21,53.884169) [0.154846] (2018-08-21,66.759372) [0.154846] (2018-08-22,21.000000) [0.095075] (2018-08-22,21.000000) [0.095075] (2018-08-22,19.511593) [0.020187] (2018-08-22,21.000000) [0.020187] (2018-08-22,41.625000) [0.033880] (2018-08-22,70.000000) [0.033880] (2018-08-22,35.011548) [0.107050] (2018-08-22,41.625000) [0.107050] (2018-08-22,21.000000) [0.022393] (2018-08-22,20.589014) [0.022393] (2018-08-23,21.000000) [0.018631] (2018-08-23,21.000000) [0.018631] (2018-08-23,15.000000) [0.013365] (2018-08-23,21.000000) [0.013365] (2018-08-23,21.000000) [0.022029] (2018-08-23,21.000000) [0.022029] (2018-08-23,13.000000) [0.023227] (2018-08-23,19.247686) [0.023227] (2018-08-23,14.400000) [0.379580] (2018-08-23,21.000000) [0.379580] (2018-08-23,15.015904) [0.384781] (2018-08-23,21.000000) [0.384781] (2018-08-23,15.000000) [0.039677] (2018-08-23,21.000000) [0.039677] (2018-08-23,19.557616) [0.021308] (2018-08-23,21.000000) [0.021308] (2018-08-23,17.930750) [0.021308] (2018-08-23,15.000000) [0.021308] (2018-08-24,21.000000) [0.027510] (2018-08-24,21.000000) [0.027510] (2018-08-24,13.000000) [0.095951] (2018-08-24,21.000000) [0.095951] (2018-08-24,15.000000) [0.095951] (2018-08-24,13.973378) [0.095951] (2018-08-24,12.943312) [0.095951] (2018-08-24,70.000000) [0.155495] (2018-08-24,70.000000) [0.155495] (2018-08-24,60.183442) [0.328138] (2018-08-24,70.000000) [0.328138] (2018-08-24,70.000000) [0.325600] (2018-08-24,35.011548) [0.116272] (2018-08-24,0.000000) [0.116272] (2018-08-24,35.000000) [0.393339] (2018-08-25,35.011548) [0.548096] (2018-08-25,13.250000) [0.548096] (2018-08-25,13.000000) [0.034671] (2018-08-25,21.000000) [0.034671] (2018-08-25,56.773097) [0.109942] (2018-08-25,13.250000) [0.109942] (2018-08-25,13.000000) [0.207767] (2018-08-25,41.625000) [0.207767] (2018-08-25,15.000000) [0.207767] (2018-08-25,13.000000) [0.100445] (2018-08-25,21.000000) [0.100445] (2018-08-25,15.000000) [0.100445] (2018-08-25,15.000000) [0.100445] (2018-08-25,26.522717) [0.100445] (2018-08-26,21.000000) [0.030216] (2018-08-26,21.000000) [0.030216] (2018-08-26,13.000000) [0.062867] (2018-08-26,21.000000) [0.062867] (2018-08-26,15.000000) [0.062867] (2018-08-26,63.216888) [1.105727] (2018-08-26,70.340000) [1.105727] (2018-08-26,50.110375) [1.105727] (2018-08-26,70.000000) [1.105727] (2018-08-26,13.250000) [0.013408] (2018-08-26,13.250000) [0.013408] (2018-08-26,34.886548) [0.114237] (2018-08-26,6.442438) [0.114237] (2018-08-27,17.805229) [0.073905] (2018-08-27,20.953314) [0.073905] (2018-08-27,13.000000) [0.024811] (2018-08-27,21.000000) [0.024811] (2018-08-27,15.000000) [0.024811] (2018-08-27,13.146555) [0.033048] (2018-08-27,21.000000) [0.033048] (2018-08-27,15.000000) [0.033048] (2018-08-27,15.000000) [0.033048] (2018-08-27,13.000000) [0.124247] (2018-08-27,26.784320) [0.124247] (2018-08-27,15.000000) [0.124247] (2018-08-27,21.000000) [0.124247] (2018-08-27,12.934854) [0.124247] (2018-08-28,70.000000) [0.150963] (2018-08-28,0.000000) [0.150963] (2018-08-28,13.476500) [0.474794] (2018-08-28,13.363250) [0.474794] (2018-08-28,13.250000) [0.474794] (2018-08-28,51.464974) [0.474794] (2018-08-28,15.000000) [0.414612] (2018-08-28,13.000000) [0.414612] (2018-08-28,21.000000) [0.414612] (2018-08-28,13.000000) [0.010968] (2018-08-28,15.000000) [0.010968] (2018-08-29,20.718827) [0.055201] (2018-08-29,21.000000) [0.055201] (2018-08-29,63.386548) [0.129297] (2018-08-29,13.250000) [0.129297] (2018-08-29,13.000000) [0.015313] (2018-08-29,15.000000) [0.015313] (2018-08-29,15.000000) [0.015313] (2018-08-30,56.773097) [0.116310] (2018-08-30,0.000000) [0.116310] (2018-08-30,21.000000) [0.016145] (2018-08-30,20.397171) [0.016145] (2018-08-30,25.646290) [0.222764] (2018-08-30,15.173441) [0.222764] (2018-08-30,21.000000) [0.222764] (2018-08-30,13.250000) [0.011629] (2018-08-30,21.000000) [0.011629] (2018-08-30,13.825000) [0.023251] (2018-08-30,45.500000) [0.023251] (2018-08-30,13.000000) [0.084061] (2018-08-30,4.208000) [0.084061] (2018-08-31,13.000000) [0.013219] (2018-08-31,21.000000) [0.013219] (2018-08-31,6.625000) [0.043359] (2018-08-31,70.000000) [0.043359] (2018-08-31,35.011548) [0.075778] (2018-08-31,0.000000) [0.075778] (2018-08-31,13.250000) [0.411901] (2018-08-31,12.461644) [0.411901] (2018-09-01,35.011548) [0.093900] (2018-09-01,0.000000) [0.093900] (2018-09-02,0.000000) [0.355500] (2018-09-02,50.442478) [0.207995] (2018-09-02,0.266232) [0.207995] (2018-09-02,70.000000) [0.153956] (2018-09-02,13.250000) [0.153956] (2018-09-02,4.253020) [0.363802] (2018-09-02,56.773097) [0.121997] (2018-09-02,6.625000) [0.121997] (2018-09-02,15.000000) [0.002232] (2018-09-02,21.000000) [0.002232] (2018-09-02,13.000000) [0.015014] (2018-09-02,21.000000) [0.015014] (2018-09-02,15.000000) [0.015014] (2018-09-03,35.011548) [0.115278] (2018-09-03,6.625000) [0.115278] (2018-09-03,15.000000) [0.032606] (2018-09-03,15.000000) [0.032606] (2018-09-03,15.000000) [0.032606] (2018-09-03,21.000000) [0.008631] (2018-09-03,21.000000) [0.008631] (2018-09-03,13.000000) [0.086391] (2018-09-03,21.000000) [0.086391] (2018-09-03,15.000000) [0.086391] (2018-09-03,21.000000) [0.018483] (2018-09-03,21.000000) [0.018483] (2018-09-03,35.011548) [0.079155] (2018-09-03,13.250000) [0.079155] (2018-09-03,13.250000) [0.079155] (2018-09-03,35.000000) [0.346320] (2018-09-03,0.000000) [0.185810] (2018-09-03,13.250000) [0.406186] (2018-09-03,13.250000) [0.406186] (2018-09-03,0.000000) [0.176412] (2018-09-03,70.340000) [8.525720] (2018-09-03,31.721239) [8.525720] (2018-09-03,70.170000) [8.525720] (2018-09-03,226.909108) [8.525720] (2018-09-03,35.011548) [0.081801] (2018-09-03,13.250000) [0.081801] (2018-09-03,21.000000) [0.021589] (2018-09-03,0.000000) [0.021589] (2018-09-03,21.000000) [0.021589] (2018-09-03,63.386548) [0.183680] (2018-09-03,0.000000) [0.183680] (2018-09-04,102.555642) [0.138774] (2018-09-04,0.000000) [0.138774] (2018-09-04,61.868350) [0.703716] (2018-09-04,0.121871) [0.703716] (2018-09-04,13.000000) [0.143401] (2018-09-04,15.000000) [0.143401] (2018-09-04,20.123843) [0.143401] (2018-09-04,18.115232) [0.032583] (2018-09-04,21.000000) [0.032583] (2018-09-04,13.000000) [0.035730] (2018-09-04,18.174451) [0.035730] (2018-09-04,15.000000) [0.035730] (2018-09-05,13.274005) [0.095495] (2018-09-05,13.476500) [0.095495] (2018-09-05,0.902402) [0.095495] (2018-09-05,13.250000) [0.095495] (2018-09-05,56.773097) [0.132480] (2018-09-05,0.000000) [0.132480] (2018-09-05,0.090443) [0.116098] (2018-09-05,54.450834) [0.116098] (2018-09-05,63.386548) [0.120969] (2018-09-05,0.000000) [0.120969] (2018-09-05,21.000000) [0.051962] (2018-09-05,21.000000) [0.051962] (2018-09-05,21.000000) [0.064650] (2018-09-05,21.000000) [0.064650] (2018-09-06,21.000000) [0.088745] (2018-09-06,21.000000) [0.088745] (2018-09-06,21.000000) [0.148630] (2018-09-06,21.000000) [0.148630] (2018-09-06,63.386548) [0.702758] (2018-09-06,0.000000) [0.702758] (2018-09-06,21.000000) [0.100000] (2018-09-06,21.000000) [0.100000] (2018-09-06,21.000000) [0.100000] (2018-09-06,21.000000) [0.100000] (2018-09-06,21.000000) [0.022637] (2018-09-06,21.000000) [0.022637] (2018-09-06,21.000000) [0.022637] (2018-09-06,13.000000) [0.005511] (2018-09-06,15.000000) [0.005511] (2018-09-06,21.000000) [0.005511] (2018-09-06,13.792130) [0.056178] (2018-09-06,15.404222) [0.056178] (2018-09-06,13.250000) [0.056178] (2018-09-06,13.250000) [0.056178] (2018-09-07,21.000000) [0.019555] (2018-09-07,21.000000) [0.019555] (2018-09-07,35.011548) [0.089953] (2018-09-07,0.000000) [0.089953] (2018-09-07,63.386548) [0.227581] (2018-09-07,0.000000) [0.227581] (2018-09-07,6.625000) [0.227581] (2018-09-07,21.000000) [0.615653] (2018-09-07,21.000000) [0.615653] (2018-09-07,21.000000) [0.086760] (2018-09-07,21.000000) [0.086760] (2018-09-07,21.000000) [0.086760] (2018-09-07,13.879764) [0.024218] (2018-09-07,15.000000) [0.024218] (2018-09-07,21.000000) [0.024218] (2018-09-07,48.312728) [0.024218] (2018-09-07,13.000000) [0.017242] (2018-09-07,15.000000) [0.017242] (2018-09-07,21.000000) [0.017242] (2018-09-07,13.000000) [0.523600] (2018-09-07,12.730822) [0.523600] (2018-09-08,0.184998) [0.178545] (2018-09-08,53.009541) [0.178545] (2018-09-08,63.386548) [0.169125] (2018-09-08,0.000000) [0.169125] (2018-09-08,63.386548) [0.169125] (2018-09-08,0.000000) [0.169125] (2018-09-08,35.011548) [0.576344] (2018-09-08,0.000000) [0.576344] (2018-09-08,21.000000) [0.259585] (2018-09-08,21.000000) [0.259585] (2018-09-08,21.000000) [0.128538] (2018-09-08,21.000000) [0.128538] (2018-09-08,21.000000) [0.128538] (2018-09-08,21.000000) [0.523832] (2018-09-08,21.000000) [0.523832] (2018-09-08,26.004196) [0.319776] (2018-09-08,2.104000) [0.319776] (2018-09-09,21.000000) [0.004440] (2018-09-09,20.699005) [0.004440] (2018-09-09,21.000000) [0.004440] (2018-09-09,13.000000) [0.099865] (2018-09-09,15.000000) [0.099865] (2018-09-09,21.000000) [0.099865] (2018-09-09,56.773097) [0.120006] (2018-09-09,0.000000) [0.120006] (2018-09-09,35.124798) [0.101313] (2018-09-09,35.168322) [0.101313] (2018-09-09,0.000000) [0.101313] (2018-09-10,63.386548) [0.123441] (2018-09-10,7.003838) [0.123441] (2018-09-10,13.476500) [0.295904] (2018-09-10,70.000000) [0.295904] (2018-09-10,0.902402) [0.295904] (2018-09-10,55.307416) [0.269702] (2018-09-10,11.491153) [0.269702] (2018-09-11,21.000000) [0.104928] (2018-09-11,21.000000) [0.104928] (2018-09-11,21.000000) [0.015854] (2018-09-11,18.000000) [0.015854] (2018-09-11,4.208000) [0.373808] (2018-09-11,70.000000) [0.157233] (2018-09-11,6.442438) [0.157233] (2018-09-12,11.626211) [0.123385] (2018-09-12,17.915945) [0.123385] (2018-09-12,34.021172) [0.229790] (2018-09-12,16.976367) [0.229790] (2018-09-12,21.000000) [0.020846] (2018-09-12,21.000000) [0.020846] (2018-09-12,21.000000) [0.176000] (2018-09-12,21.000000) [0.176000] (2018-09-12,21.000000) [0.028545] (2018-09-12,21.000000) [0.028545] (2018-09-12,21.000000) [0.028545] (2018-09-12,21.000000) [0.021840] (2018-09-12,21.000000) [0.081566] (2018-09-12,21.000000) [0.081566] (2018-09-12,21.000000) [0.037909] (2018-09-12,21.000000) [0.037909] (2018-09-12,17.579756) [0.212547] (2018-09-12,28.255625) [0.212547] (2018-09-12,48.690986) [0.212547] (2018-09-12,0.701000) [0.212547] (2018-09-12,21.000000) [0.014602] (2018-09-12,10.000000) [0.014602] (2018-09-12,49.982947) [3.751386] (2018-09-12,1.398014) [3.751386] (2018-09-12,0.000000) [1.562008] (2018-09-12,21.000000) [0.019315] (2018-09-12,21.000000) [0.019315] (2018-09-12,18.394707) [0.381917] (2018-09-13,70.000000) [0.051452] (2018-09-13,21.000000) [0.016905] (2018-09-13,21.000000) [0.016905] (2018-09-13,21.000000) [0.023816] (2018-09-13,20.679412) [0.023816] (2018-09-13,21.000000) [0.024980] (2018-09-13,21.000000) [0.024980] (2018-09-13,35.011548) [0.087742] (2018-09-13,12.461644) [0.087742] (2018-09-13,35.011548) [0.097008] (2018-09-13,0.000000) [0.097008] (2018-09-13,70.000000) [0.151110] (2018-09-13,2.104000) [0.151110] (2018-09-13,63.386548) [0.171996] (2018-09-13,4.208000) [0.171996] (2018-09-13,21.000000) [0.060755] (2018-09-13,21.000000) [0.060755] (2018-09-13,13.000000) [0.035253] (2018-09-13,21.000000) [0.035253] (2018-09-14,34.886548) [0.298607] (2018-09-14,21.000000) [0.298607] (2018-09-14,0.000000) [0.298607] (2018-09-14,21.000000) [0.054810] (2018-09-14,21.000000) [0.054810] (2018-09-14,21.000000) [0.220759] (2018-09-14,21.000000) [0.220759] (2018-09-14,21.000000) [1.445350] (2018-09-14,21.000000) [1.445350] (2018-09-14,63.373661) [1.235839] (2018-09-14,63.216888) [1.235839] (2018-09-14,4.208000) [1.235839] (2018-09-14,32.587512) [0.161456] (2018-09-14,6.581322) [0.161456] (2018-09-14,21.000000) [0.063438] (2018-09-14,21.000000) [0.063438] (2018-09-14,63.386548) [0.235273] (2018-09-14,0.000000) [0.235273] (2018-09-14,21.000000) [0.091719] (2018-09-14,21.000000) [0.091719] (2018-09-14,12.841171) [2.744238] (2018-09-14,35.011548) [0.527507] (2018-09-14,0.000000) [0.527507] (2018-09-14,21.000000) [0.025398] (2018-09-14,21.000000) [0.025398] (2018-09-14,21.000000) [0.376645] (2018-09-14,21.000000) [0.376645] (2018-09-14,25.644268) [0.249975] (2018-09-14,13.000000) [0.249975] (2018-09-14,21.000000) [0.024717] (2018-09-14,21.000000) [0.024717] (2018-09-14,21.000000) [0.076978] (2018-09-14,21.000000) [0.076978] (2018-09-15,70.000000) [35.527600] (2018-09-15,16.471691) [0.513354] (2018-09-15,10.007526) [0.513354] (2018-09-15,35.011548) [0.164000] (2018-09-15,0.000000) [0.164000] (2018-09-15,15.000000) [0.022888] (2018-09-15,21.000000) [0.022888] (2018-09-16,13.000000) [0.010394] (2018-09-16,15.000000) [0.010394] (2018-09-16,13.000000) [0.415411] (2018-09-16,10.220000) [0.415411] (2018-09-16,15.000000) [0.415411] (2018-09-16,21.000000) [0.044447] (2018-09-16,21.000000) [0.044447] (2018-09-16,21.000000) [0.059781] (2018-09-16,21.000000) [0.059781] (2018-09-16,16.511593) [0.029902] (2018-09-16,21.000000) [0.029902] (2018-09-16,15.000000) [0.029902] (2018-09-16,0.000000) [2.400536] (2018-09-16,66.567634) [2.400536] (2018-09-17,63.386548) [0.246200] (2018-09-17,0.000000) [0.246200] (2018-09-17,13.000000) [3.990200] (2018-09-17,14.586644) [0.369713] (2018-09-17,40.495868) [0.369713] (2018-09-17,13.250000) [0.431727] (2018-09-17,0.000000) [0.431727] (2018-09-17,70.000000) [0.572738] (2018-09-17,0.000000) [0.572738] (2018-09-17,70.000000) [0.655820] (2018-09-17,0.000000) [0.655820] (2018-09-17,70.000000) [0.526269] (2018-09-17,2.104000) [0.526269] (2018-09-17,63.386548) [0.742800] (2018-09-17,2.104000) [0.742800] (2018-09-17,63.386548) [0.677781] (2018-09-17,0.000000) [0.677781] (2018-09-17,63.386548) [1.007850] (2018-09-17,0.000000) [1.007850] (2018-09-17,63.386548) [0.720261] (2018-09-17,0.000000) [0.720261] (2018-09-17,46.027250) [0.212590] (2018-09-17,0.000000) [0.212590] (2018-09-17,40.992208) [0.212590] (2018-09-17,70.000000) [0.129012] (2018-09-17,4.208000) [0.129012] (2018-09-17,13.250000) [0.065632] (2018-09-17,0.000000) [0.065632] (2018-09-17,13.250000) [0.104878] (2018-09-17,11.617309) [0.104878] (2018-09-17,7.275366) [0.883847] (2018-09-17,56.773097) [0.681580] (2018-09-17,0.000000) [0.681580] (2018-09-17,63.386548) [0.829970] (2018-09-17,0.000000) [0.829970] (2018-09-17,10.529623) [0.519306] (2018-09-17,16.037331) [0.519306] (2018-09-17,35.011548) [0.530082] (2018-09-17,0.000000) [0.530082] (2018-09-17,0.000000) [0.285662] (2018-09-17,35.011548) [0.571214] (2018-09-17,0.000000) [0.571214] (2018-09-17,34.886548) [0.363907] (2018-09-17,5.452869) [0.363907] (2018-09-17,13.250000) [0.427776] (2018-09-17,0.000000) [0.427776] (2018-09-17,56.773097) [0.494707] (2018-09-17,0.000000) [0.494707] (2018-09-17,13.250000) [0.441521] (2018-09-17,0.000000) [0.441521] (2018-09-17,13.000000) [0.012834] (2018-09-17,15.000000) [0.012834] (2018-09-17,21.000000) [0.012834] (2018-09-17,13.000000) [0.292481] (2018-09-17,13.000000) [0.292481] (2018-09-17,0.000000) [0.315326] (2018-09-17,0.000000) [0.298270] (2018-09-17,13.250000) [0.417475] (2018-09-17,0.000000) [0.417475] (2018-09-17,0.000000) [0.348936] (2018-09-17,0.000000) [0.370290] (2018-09-17,70.000000) [0.722729] (2018-09-17,0.000000) [0.722729] (2018-09-17,2.104000) [0.361773] (2018-09-17,56.773097) [0.566530] (2018-09-17,0.000000) [0.566530] (2018-09-17,35.011548) [0.478342] (2018-09-17,0.000000) [0.478342] (2018-09-17,13.250000) [0.421399] (2018-09-17,4.208000) [0.421399] (2018-09-17,0.000000) [0.266865] (2018-09-17,0.000000) [0.367571] (2018-09-17,14.257542) [0.384094] (2018-09-17,70.000000) [0.770754] (2018-09-17,0.000000) [0.770754] (2018-09-17,35.011548) [0.457413] (2018-09-17,0.000000) [0.457413] (2018-09-17,56.773097) [0.650943] (2018-09-17,0.000000) [0.650943] (2018-09-17,0.000000) [0.368809] (2018-09-17,20.879241) [0.027000] (2018-09-17,21.000000) [0.027000] (2018-09-17,0.000000) [0.346132] (2018-09-17,21.000000) [0.015632] (2018-09-17,21.000000) [0.015632] (2018-09-18,56.773097) [0.623544] (2018-09-18,4.208000) [0.623544] (2018-09-18,13.000000) [0.072752] (2018-09-18,15.000000) [0.072752] (2018-09-18,19.247686) [0.072752] (2018-09-18,21.000000) [0.035994] (2018-09-18,21.000000) [0.035994] (2018-09-19,21.000000) [0.038941] (2018-09-19,21.000000) [0.038941] (2018-09-20,17.252676) [0.082483] (2018-09-20,0.000000) [0.082483] (2018-09-20,13.000000) [0.012628] (2018-09-20,15.000000) [0.012628] (2018-09-20,21.000000) [0.012628] (2018-09-20,0.048842) [0.294392] (2018-09-20,15.000000) [0.417337] (2018-09-20,21.000000) [0.417337] (2018-09-20,15.000000) [0.201477] (2018-09-20,15.000000) [0.201477] (2018-09-20,21.000000) [0.201477] (2018-09-20,21.000000) [0.032883] (2018-09-20,21.000000) [0.032883] (2018-09-20,21.000000) [0.032883] (2018-09-20,70.000000) [0.256703] (2018-09-20,35.000000) [0.256703] (2018-09-20,56.773097) [0.256703] (2018-09-20,10.000001) [0.249113] (2018-09-20,63.386548) [0.249113] (2018-09-20,4.208000) [0.249113] (2018-09-20,10.001000) [0.249113] (2018-09-21,0.000000) [0.000000] (2018-09-21,8.333334) [0.000000] (2018-09-21,10.001000) [0.000000] (2018-09-21,10.000001) [0.000000] (2018-09-21,10.001000) [0.000000] (2018-09-21,21.000000) [0.233340] (2018-09-21,0.000000) [0.233340] (2018-09-21,21.000000) [0.233340] (2018-09-21,21.000000) [0.023551] (2018-09-21,21.000000) [0.023551] (2018-09-21,10.000000) [0.016037] (2018-09-21,63.386548) [0.176013] (2018-09-21,0.000000) [0.176013] (2018-09-22,21.000000) [0.315570] (2018-09-22,21.000000) [0.315570] (2018-09-22,21.000000) [0.315570] (2018-09-23,21.000000) [0.132675] (2018-09-23,21.000000) [0.132675] (2018-09-23,21.000000) [0.132675] (2018-09-23,56.773097) [0.115680] (2018-09-23,13.250000) [0.115680] (2018-09-23,21.000000) [0.030446] (2018-09-23,21.000000) [0.030446] (2018-09-23,21.000000) [0.104188] (2018-09-23,21.000000) [0.104188] (2018-09-23,63.386548) [1.718752] (2018-09-23,13.000000) [1.718752] (2018-09-23,18.374407) [0.048899] (2018-09-23,21.000000) [0.048899] (2018-09-23,21.000000) [0.048899] (2018-09-24,70.000000) [0.150000] (2018-09-24,13.000000) [0.150000] (2018-09-24,13.000000) [0.098896] (2018-09-24,16.313982) [0.098896] (2018-09-24,15.000000) [0.098896] (2018-09-24,15.000000) [0.098896] (2018-09-24,21.000000) [0.031430] (2018-09-24,21.000000) [0.031430] (2018-09-24,5.267409) [0.042106] (2018-09-24,21.000000) [0.042106] (2018-09-24,21.000000) [0.042106] (2018-09-24,21.000000) [0.041151] (2018-09-24,21.000000) [0.041151] (2018-09-24,21.000000) [0.099242] (2018-09-24,21.000000) [0.099242] (2018-09-24,10.220000) [0.099242] (2018-09-25,63.652476) [0.172908] (2018-09-25,63.497931) [0.172908] (2018-09-25,21.000000) [0.172908] (2018-09-25,21.000000) [0.172908] (2018-09-25,21.000000) [0.096497] (2018-09-25,21.000000) [0.096497] (2018-09-25,15.000000) [0.008583] (2018-09-25,13.250000) [0.107840] (2018-09-25,13.250000) [0.107840] (2018-09-25,19.263797) [0.054394] (2018-09-25,21.000000) [0.054394] (2018-09-25,70.000000) [0.158255] (2018-09-25,13.000000) [0.158255] (2018-09-25,0.000000) [0.602701] (2018-09-25,13.000000) [0.017298] (2018-09-25,15.369565) [0.017298] (2018-09-25,21.000000) [0.017298] (2018-09-25,15.000000) [0.017298] (2018-09-25,13.000000) [0.087180] (2018-09-25,21.000000) [0.087180] (2018-09-25,15.000000) [0.087180] (2018-09-25,13.250000) [0.083374] (2018-09-25,0.000000) [0.083374] (2018-09-25,13.250000) [0.094881] (2018-09-25,5.689810) [0.094881] (2018-09-26,35.011548) [0.097061] (2018-09-26,0.000000) [0.097061] (2018-09-26,15.000000) [0.037849] (2018-09-26,15.000000) [0.037849] (2018-09-26,15.500000) [0.037849] (2018-09-26,21.000000) [0.038457] (2018-09-26,15.000000) [0.038457] (2018-09-26,15.000000) [0.038457] (2018-09-26,21.000000) [0.113360] (2018-09-26,21.000000) [0.113360] (2018-09-26,0.000000) [0.572000] (2018-09-27,15.000000) [0.023316] (2018-09-27,21.000000) [0.023316] (2018-09-27,17.231674) [0.023316] (2018-09-28,21.000000) [0.025853] (2018-09-28,21.000000) [0.025853] (2018-09-28,15.741506) [0.025853] (2018-09-28,15.000000) [0.025853] (2018-09-28,16.483011) [0.025853] (2018-09-28,18.741506) [0.040060] (2018-09-28,21.000000) [0.040060] (2018-09-28,16.483011) [0.040060] (2018-09-28,16.111071) [0.040060] (2018-09-28,16.111071) [0.040060] (2018-09-28,16.111071) [0.040060] (2018-09-28,21.000000) [0.040060] (2018-09-28,21.000000) [0.189248] (2018-09-28,21.000000) [0.189248] (2018-09-28,21.000000) [0.013883] (2018-09-28,21.000000) [0.013883] (2018-09-28,15.000000) [0.060111] (2018-09-28,21.000000) [0.060111] (2018-09-28,15.000000) [0.060111] (2018-09-28,21.000000) [0.095676] (2018-09-28,5.000000) [0.095676] (2018-09-28,21.000000) [0.009594] (2018-09-28,21.000000) [0.009594] (2018-09-29,21.000000) [0.010620] (2018-09-29,21.000000) [0.010620] (2018-09-29,21.000000) [0.046022] (2018-09-29,21.000000) [0.046022] (2018-09-29,15.000000) [0.018483] (2018-09-29,15.000000) [0.018483] (2018-09-29,12.500000) [0.018483] (2018-09-29,15.000000) [0.018483] (2018-09-29,21.000000) [0.035880] (2018-09-29,21.000000) [0.035880] (2018-09-29,21.000000) [0.060383] (2018-09-29,21.000000) [0.060383] (2018-09-29,21.000000) [0.089968] (2018-09-29,21.000000) [0.089968] (2018-09-29,15.000000) [0.089968] (2018-09-29,21.000000) [0.012134] (2018-09-29,21.000000) [0.012134] (2018-09-30,56.773097) [0.009050] (2018-09-30,0.000000) [0.009050] (2018-09-30,21.000000) [0.364104] (2018-09-30,21.000000) [0.364104] (2018-09-30,15.000000) [0.364104] (2018-09-30,13.000000) [0.124580] (2018-09-30,21.000000) [0.124580] (2018-09-30,15.000000) [0.124580] (2018-09-30,21.000000) [0.012500] (2018-09-30,21.000000) [0.012500] (2018-09-30,70.000000) [0.134100] (2018-09-30,0.000000) [0.134100] (2018-09-30,70.000000) [0.134100] (2018-09-30,65.902561) [0.148159] (2018-09-30,0.378348) [0.148159] (2018-09-30,10.038986) [0.148159] (2018-09-30,9.982275) [0.148159] (2018-09-30,21.000000) [0.015160] (2018-09-30,21.000000) [0.015160] (2018-09-30,21.000000) [0.015160] (2018-10-01,15.000000) [0.020789] (2018-10-01,0.000000) [0.020789] (2018-10-01,16.332143) [0.020789] (2018-10-01,70.000000) [0.020789] (2018-10-01,15.000000) [0.020789] (2018-10-01,15.000000) [0.020789] (2018-10-02,13.000000) [0.307300] (2018-10-02,13.000000) [0.307300] (2018-10-02,12.900660) [0.307300] (2018-10-02,13.000000) [0.307300] (2018-10-02,15.000000) [0.307300] (2018-10-03,16.759558) [0.234349] (2018-10-03,18.366326) [0.039552] (2018-10-03,20.758483) [0.039552] (2018-10-03,21.000000) [0.039552] (2018-10-03,15.000000) [0.039552] (2018-10-03,21.000000) [0.043656] (2018-10-03,13.000000) [0.043656] (2018-10-03,15.000000) [0.043656] (2018-10-03,13.000000) [0.036688] (2018-10-03,21.000000) [0.036688] (2018-10-03,15.000000) [0.036688] (2018-10-03,15.000000) [0.036688] (2018-10-03,0.000000) [0.452148] (2018-10-03,35.011548) [0.098280] (2018-10-03,0.000000) [0.098280] (2018-10-04,13.000000) [0.009567] (2018-10-04,21.000000) [0.009567] (2018-10-04,17.868677) [0.009567] (2018-10-04,20.276894) [0.009567] (2018-10-04,15.460460) [0.009567] (2018-10-04,20.758483) [0.009567] (2018-10-04,15.000000) [0.009567] (2018-10-04,0.000000) [0.020889] (2018-10-04,0.000000) [0.294165] (2018-10-04,0.000000) [0.318030] (2018-10-04,13.000000) [0.012021] (2018-10-04,15.000000) [0.012021] (2018-10-04,21.000000) [0.012021] (2018-10-04,15.000000) [0.012021] (2018-10-05,13.000000) [0.009880] (2018-10-05,15.000000) [0.009880] (2018-10-05,15.000000) [0.009880] (2018-10-05,13.830253) [0.067998] (2018-10-05,15.000000) [0.067998] (2018-10-05,21.000000) [0.067998] (2018-10-05,15.000000) [0.264259] (2018-10-05,21.000000) [0.264259] (2018-10-05,15.000000) [0.264259] (2018-10-05,8.587635) [0.185406] (2018-10-05,32.636037) [0.185406] (2018-10-05,21.000000) [0.084602] (2018-10-05,21.000000) [0.084602] (2018-10-05,21.000000) [0.015088] (2018-10-05,21.000000) [0.015088] (2018-10-05,13.000000) [0.016808] (2018-10-05,21.000000) [0.016808] (2018-10-05,15.000000) [0.016808] (2018-10-05,15.000000) [0.022499] (2018-10-05,21.000000) [0.022499] (2018-10-05,15.000000) [0.022499] (2018-10-05,15.741506) [0.014226] (2018-10-05,19.508857) [0.014226] (2018-10-05,21.000000) [0.014226] (2018-10-05,15.000000) [0.014226] (2018-10-05,15.000000) [0.024302] (2018-10-05,10.220000) [0.024302] (2018-10-05,13.000000) [0.024302] (2018-10-05,15.000000) [0.024302] (2018-10-05,63.386548) [0.285600] (2018-10-05,70.000000) [0.285600] (2018-10-05,0.263848) [0.571200] (2018-10-05,13.000000) [0.015000] (2018-10-05,21.000000) [0.015000] (2018-10-05,15.000000) [0.015000] (2018-10-05,13.000000) [0.018000] (2018-10-05,21.000000) [0.018000] (2018-10-05,15.000000) [0.018000] (2018-10-05,15.000000) [0.015995] (2018-10-05,21.000000) [0.015995] (2018-10-05,15.000000) [0.015995] (2018-10-05,21.000000) [0.019993] (2018-10-05,10.220000) [0.019993] (2018-10-05,13.000000) [0.013995] (2018-10-05,21.000000) [0.013995] (2018-10-05,15.000000) [0.013995] (2018-10-05,13.000000) [0.042188] (2018-10-05,21.000000) [0.042188] (2018-10-05,15.000000) [0.042188] (2018-10-05,15.000000) [0.130104] (2018-10-05,21.000000) [0.130104] (2018-10-05,13.000000) [0.130104] (2018-10-05,15.000000) [0.130104] (2018-10-05,13.000000) [0.011990] (2018-10-05,13.000000) [0.011990] (2018-10-05,21.000000) [0.011990] (2018-10-05,15.000000) [0.011990] (2018-10-05,15.000000) [0.011990] (2018-10-05,15.000000) [0.011990] (2018-10-05,13.000000) [0.014400] (2018-10-05,15.000000) [0.014400] (2018-10-05,21.000000) [0.014400] (2018-10-06,45.869565) [0.000025] (2018-10-06,70.000000) [0.000025] (2018-10-06,21.000000) [0.079160] (2018-10-06,21.000000) [0.079160] (2018-10-06,21.000000) [0.079160] (2018-10-06,13.000000) [0.026914] (2018-10-06,21.000000) [0.026914] (2018-10-06,15.000000) [0.026914] (2018-10-06,21.000000) [0.327886] (2018-10-06,21.000000) [0.327886] (2018-10-06,70.000000) [0.096649] (2018-10-06,70.000000) [0.096649] (2018-10-06,70.000000) [0.096649] (2018-10-06,70.000000) [0.096649] (2018-10-06,53.398883) [0.206050] (2018-10-06,14.602088) [0.206050] (2018-10-06,21.000000) [0.041406] (2018-10-06,21.000000) [0.041406] (2018-10-06,15.000000) [0.041406] (2018-10-06,13.000000) [0.013499] (2018-10-06,15.000000) [0.013499] (2018-10-06,21.000000) [0.013499] (2018-10-06,13.703036) [0.034664] (2018-10-06,14.770459) [0.034664] (2018-10-06,14.885229) [0.034664] (2018-10-06,15.000000) [0.034664] (2018-10-06,21.000000) [0.034664] (2018-10-06,15.000000) [0.034664] (2018-10-06,13.000000) [0.322510] (2018-10-06,21.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,15.000000) [0.322510] (2018-10-06,13.000000) [0.131857] (2018-10-06,13.000000) [0.131857] (2018-10-06,21.000000) [0.131857] (2018-10-06,15.000000) [0.131857] (2018-10-06,15.000000) [0.131857] (2018-10-06,13.000000) [0.131309] (2018-10-06,21.000000) [0.131309] (2018-10-06,15.000000) [0.131309] (2018-10-06,13.000000) [0.018707] (2018-10-06,21.000000) [0.018707] (2018-10-06,15.000000) [0.018707] (2018-10-07,13.000000) [0.038138] (2018-10-07,21.000000) [0.038138] (2018-10-07,15.000000) [0.038138] (2018-10-07,15.000000) [0.038138] (2018-10-07,15.000000) [0.038138] (2018-10-07,13.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,21.000000) [0.055296] (2018-10-07,15.000000) [0.055296] (2018-10-07,13.000000) [0.055296] (2018-10-07,21.000000) [0.014145] (2018-10-07,21.000000) [0.014145] (2018-10-07,21.000000) [0.041657] (2018-10-07,21.000000) [0.041657] (2018-10-07,21.000000) [0.020220] (2018-10-07,21.000000) [0.020220] (2018-10-07,13.000000) [0.923839] (2018-10-07,21.000000) [0.923839] (2018-10-07,15.000000) [0.923839] (2018-10-07,21.000000) [0.070969] (2018-10-07,10.110000) [0.070969] (2018-10-07,21.000000) [0.569570] (2018-10-07,10.220000) [0.569570] (2018-10-07,21.000000) [0.569570] (2018-10-07,10.220000) [0.569570] (2018-10-08,21.000000) [0.014137] (2018-10-08,21.000000) [0.014137] (2018-10-08,12.501000) [0.013708] (2018-10-08,0.000000) [0.013708] (2018-10-08,13.250000) [0.072328] (2018-10-08,6.442438) [0.072328] (2018-10-08,13.000000) [0.014584] (2018-10-08,21.000000) [0.014584] (2018-10-08,15.000000) [0.014584] (2018-10-08,13.250000) [0.107311] (2018-10-08,11.785246) [0.107311] (2018-10-08,0.000000) [0.107311] (2018-10-08,13.250000) [0.107311] (2018-10-08,67.139423) [0.107311] (2018-10-08,0.000000) [0.011194] (2018-10-08,21.000000) [0.051459] (2018-10-08,21.000000) [0.051459] (2018-10-08,13.000000) [0.040072] (2018-10-08,21.000000) [0.040072] (2018-10-08,15.000000) [0.040072] (2018-10-08,13.000000) [0.009669] (2018-10-08,15.000000) [0.009669] (2018-10-08,18.913951) [0.012796] (2018-10-08,21.000000) [0.012796] (2018-10-08,15.000000) [0.012796] (2018-10-08,21.000000) [0.381961] (2018-10-08,21.000000) [0.381961] (2018-10-08,0.000000) [0.021893] (2018-10-08,13.250000) [0.021893] (2018-10-08,21.000000) [0.164713] (2018-10-08,13.000000) [0.164713] (2018-10-08,70.000000) [0.027152] (2018-10-09,21.000000) [0.018542] (2018-10-09,21.000000) [0.018542] (2018-10-09,21.000000) [0.018542] (2018-10-09,21.000000) [0.062942] (2018-10-09,21.000000) [0.062942] (2018-10-09,21.000000) [0.029854] (2018-10-09,21.000000) [0.029854] (2018-10-09,13.250000) [0.093187] (2018-10-09,0.000000) [0.093187] (2018-10-09,37.035579) [0.093187] (2018-10-09,20.378753) [0.029725] (2018-10-09,21.000000) [0.029725] (2018-10-09,17.272592) [0.029725] (2018-10-09,0.000000) [0.751507] (2018-10-09,0.000000) [0.026557] (2018-10-10,17.787611) [0.040687] (2018-10-10,15.000000) [0.040687] (2018-10-10,10.000220) [0.040687] (2018-10-10,21.000000) [0.040687] (2018-10-10,21.000000) [0.040687] (2018-10-10,21.000000) [0.040687] (2018-10-10,21.000000) [0.040687] (2018-10-10,21.000000) [0.040682] (2018-10-10,10.000000) [0.040682] (2018-10-10,20.879241) [0.040386] (2018-10-10,18.023186) [0.040386] (2018-10-10,21.000000) [0.040386] (2018-10-10,13.000000) [0.040386] (2018-10-10,0.000000) [0.054219] (2018-10-10,19.511593) [0.011733] (2018-10-10,21.000000) [0.011733] (2018-10-10,21.000000) [0.015667] (2018-10-10,21.000000) [0.015667] (2018-10-10,21.000000) [0.004194] (2018-10-10,13.000000) [0.004194] (2018-10-10,21.000000) [0.005657] (2018-10-10,21.000000) [0.005657] (2018-10-10,21.000000) [0.014742] (2018-10-10,21.000000) [0.014742] (2018-10-10,21.000000) [0.044551] (2018-10-10,21.000000) [0.044551] (2018-10-10,21.000000) [0.035016] (2018-10-10,10.220000) [0.035016] (2018-10-10,21.000000) [0.003327] (2018-10-10,20.758483) [0.003327] (2018-10-10,21.000000) [0.003327] (2018-10-10,21.000000) [0.037177] (2018-10-10,21.000000) [0.037177] (2018-10-10,21.000000) [0.037177] (2018-10-10,21.000000) [0.051562] (2018-10-10,13.000000) [0.051562] (2018-10-10,21.000000) [0.016687] (2018-10-10,21.000000) [0.016687] (2018-10-10,21.000000) [0.093294] (2018-10-10,21.000000) [0.093294] (2018-10-10,21.000000) [0.026156] (2018-10-10,21.000000) [0.026156] (2018-10-10,21.000000) [0.048547] (2018-10-10,10.220000) [0.048547] (2018-10-10,21.000000) [0.053799] (2018-10-10,21.000000) [0.053799] (2018-10-10,21.000000) [0.122228] (2018-10-10,21.000000) [0.122228] (2018-10-10,21.000000) [0.021420] (2018-10-10,21.000000) [0.021420] (2018-10-10,21.000000) [0.018677] (2018-10-10,21.000000) [0.018677] (2018-10-10,21.000000) [0.018696] (2018-10-10,21.000000) [0.018696] (2018-10-10,20.758483) [0.029024] (2018-10-10,20.758483) [0.029024] (2018-10-10,20.517448) [0.029024] (2018-10-10,21.000000) [0.029024] (2018-10-10,20.758483) [0.029024] (2018-10-10,21.000000) [0.003048] (2018-10-10,7.079646) [0.003048] (2018-10-10,21.000000) [0.081065] (2018-10-10,17.787611) [0.081065] (2018-10-10,21.000000) [0.062410] (2018-10-10,15.000000) [0.062410] (2018-10-10,21.000000) [0.062410] (2018-10-10,21.000000) [0.082060] (2018-10-10,21.000000) [0.082060] (2018-10-10,21.000000) [0.016742] (2018-10-10,21.000000) [0.016742] (2018-10-10,15.970609) [0.016742] (2018-10-10,21.000000) [0.015512] (2018-10-10,21.000000) [0.015512] (2018-10-10,13.000000) [0.014752] (2018-10-10,15.000000) [0.014752] (2018-10-10,15.000000) [0.014842] (2018-10-10,21.000000) [0.014842] (2018-10-10,21.000000) [0.014842] (2018-10-10,21.000000) [0.014842] (2018-10-10,15.500000) [0.014842] (2018-10-10,21.000000) [0.014665] (2018-10-10,21.000000) [0.014665] (2018-10-10,15.970609) [0.014665] (2018-10-10,21.000000) [0.014842] (2018-10-10,21.000000) [0.014842] (2018-10-10,19.659821) [0.014842] (2018-10-10,21.000000) [0.029185] (2018-10-10,16.715977) [0.029185] (2018-10-10,10.220000) [0.029185] (2018-10-10,21.000000) [0.055557] (2018-10-10,21.000000) [0.055557] (2018-10-10,21.000000) [0.042885] (2018-10-10,10.220000) [0.042885] (2018-10-10,21.000000) [0.042885] (2018-10-10,13.830253) [0.044226] (2018-10-10,15.000000) [0.044226] (2018-10-10,10.220000) [0.044226] (2018-10-10,21.000000) [0.011320] (2018-10-10,21.000000) [0.011320] (2018-10-10,20.378753) [0.029163] (2018-10-10,21.000000) [0.029163] (2018-10-10,16.219943) [0.029163] (2018-10-10,15.000000) [0.029163] (2018-10-10,16.219943) [0.029163] (2018-10-10,13.000000) [0.028686] (2018-10-10,15.000000) [0.028686] (2018-10-10,21.000000) [0.028686] (2018-10-10,21.000000) [0.015592] (2018-10-10,21.000000) [0.015592] (2018-10-10,13.000000) [0.017510] (2018-10-10,21.000000) [0.017510] (2018-10-10,15.000000) [0.017510] (2018-10-10,16.341846) [0.015592] (2018-10-10,21.000000) [0.015592] (2018-10-10,15.000000) [0.015592] (2018-10-10,16.378753) [0.015582] (2018-10-10,21.000000) [0.015582] (2018-10-10,15.000000) [0.015582] (2018-10-10,13.000000) [0.014582] (2018-10-10,15.487244) [0.014582] (2018-10-10,15.000000) [0.014582] (2018-10-10,21.000000) [0.014880] (2018-10-10,21.000000) [0.014880] (2018-10-10,21.000000) [0.014724] (2018-10-10,21.000000) [0.014724] (2018-10-10,21.000000) [0.014770] (2018-10-10,21.000000) [0.014770] (2018-10-10,21.000000) [0.013344] (2018-10-10,21.000000) [0.013344] (2018-10-10,13.000000) [0.022758] (2018-10-10,21.000000) [0.022758] (2018-10-10,15.000000) [0.022758] (2018-10-10,21.000000) [0.092425] (2018-10-10,10.000000) [0.092425] (2018-10-10,21.000000) [0.092425] (2018-10-10,21.000000) [0.080936] (2018-10-10,21.000000) [0.080936] (2018-10-10,20.879241) [0.081819] (2018-10-10,21.000000) [0.081819] (2018-10-10,21.000000) [0.081819] (2018-10-10,15.741506) [0.081819] (2018-10-10,20.758483) [0.022407] (2018-10-10,20.758483) [0.022407] (2018-10-10,21.000000) [0.022407] (2018-10-10,13.293110) [0.006392] (2018-10-10,21.000000) [0.006392] (2018-10-10,15.000000) [0.006392] (2018-10-10,21.000000) [0.028821] (2018-10-10,21.000000) [0.028821] (2018-10-10,13.000000) [0.040986] (2018-10-10,21.000000) [0.040986] (2018-10-10,15.000000) [0.040986] (2018-10-10,14.660506) [0.025141] (2018-10-10,21.000000) [0.025141] (2018-10-10,15.000000) [0.025141] (2018-10-10,21.000000) [0.033856] (2018-10-10,21.000000) [0.033856] (2018-10-10,21.000000) [0.054428] (2018-10-10,21.000000) [0.054428] (2018-10-10,21.000000) [0.106283] (2018-10-10,21.000000) [0.106283] (2018-10-10,21.000000) [1.379518] (2018-10-10,10.220000) [1.379518] (2018-10-11,21.000000) [0.012970] (2018-10-11,15.500000) [0.012970] (2018-10-11,21.000000) [0.025294] (2018-10-11,21.000000) [0.025294] (2018-10-11,21.000000) [0.046995] (2018-10-11,21.000000) [0.046995] (2018-10-12,21.000000) [0.027474] (2018-10-12,21.000000) [0.027474] (2018-10-12,21.000000) [0.030068] (2018-10-12,21.000000) [0.030068] (2018-10-12,0.000000) [0.062600] (2018-10-12,18.023186) [0.122390] (2018-10-12,15.000000) [0.122390] (2018-10-12,21.000000) [0.122390] (2018-10-12,0.000000) [0.031409] (2018-10-12,20.000000) [0.031409] (2018-10-12,21.000000) [0.021843] (2018-10-12,13.000000) [0.021843] (2018-10-12,15.000000) [0.021843] (2018-10-12,21.000000) [0.032774] (2018-10-12,10.039823) [0.032774] (2018-10-12,15.000000) [0.032774] (2018-10-12,21.000000) [0.017352] (2018-10-12,21.000000) [0.017352] (2018-10-12,21.000000) [0.017429] (2018-10-12,21.000000) [0.017429] (2018-10-12,21.000000) [0.014719] (2018-10-12,4.881423) [0.014719] (2018-10-12,21.000000) [0.032720] (2018-10-12,21.000000) [0.032720] (2018-10-12,21.000000) [0.014737] (2018-10-12,21.000000) [0.014737] (2018-10-12,21.000000) [0.022048] (2018-10-12,21.000000) [0.022048] (2018-10-12,19.511593) [0.022048] (2018-10-12,2.727273) [0.022048] (2018-10-12,6.710840) [0.022048] (2018-10-12,7.876069) [0.022048] (2018-10-12,10.023117) [0.022048] (2018-10-12,21.000000) [0.022048] (2018-10-12,15.000000) [0.022048] (2018-10-12,21.000000) [0.022048] (2018-10-12,15.000000) [0.022048] (2018-10-12,15.000000) [0.011054] (2018-10-12,21.000000) [0.011054] (2018-10-12,13.000000) [0.011054] (2018-10-12,21.000000) [0.014779] (2018-10-12,21.000000) [0.014779] (2018-10-12,15.000000) [0.014779] (2018-10-12,20.758483) [0.025862] (2018-10-12,21.000000) [0.025862] (2018-10-12,21.000000) [0.025862] (2018-10-12,21.000000) [0.014859] (2018-10-12,21.000000) [0.014859] (2018-10-12,18.857989) [0.014859] (2018-10-12,21.000000) [0.015828] (2018-10-12,21.000000) [0.015828] (2018-10-12,21.000000) [0.016948] (2018-10-12,21.000000) [0.016948] (2018-10-12,21.000000) [0.023262] (2018-10-12,21.000000) [0.023262] (2018-10-12,21.000000) [0.411017] (2018-10-12,21.000000) [0.411017] (2018-10-12,15.000000) [0.411017] (2018-10-12,13.000000) [0.013517] (2018-10-12,13.000000) [0.013517] (2018-10-12,15.000000) [0.013517] (2018-10-12,15.000000) [0.013517] (2018-10-12,21.000000) [0.033766] (2018-10-12,13.000000) [0.033766] (2018-10-12,21.000000) [0.033766] (2018-10-12,21.000000) [0.008036] (2018-10-12,21.000000) [0.008036] (2018-10-12,21.000000) [0.008036] (2018-10-12,15.741506) [0.008036] (2018-10-13,21.000000) [0.199999] (2018-10-13,21.000000) [0.199999] (2018-10-13,21.000000) [0.199999] (2018-10-13,15.000000) [0.015235] (2018-10-13,13.000000) [0.015235] (2018-10-13,21.000000) [0.015235] (2018-10-13,15.000000) [0.015235] (2018-10-13,15.000000) [0.012318] (2018-10-13,14.770459) [0.012318] (2018-10-13,15.000000) [0.012318] (2018-10-13,13.000000) [0.503413] (2018-10-13,21.000000) [0.503413] (2018-10-13,15.000000) [0.503413] (2018-10-13,15.000000) [0.206292] (2018-10-13,18.000000) [0.206292] (2018-10-13,15.000000) [0.206292] (2018-10-13,13.000000) [0.206658] (2018-10-13,10.000000) [0.206658] (2018-10-13,15.000000) [0.206658] (2018-10-13,13.000000) [0.110539] (2018-10-13,21.000000) [0.110539] (2018-10-13,15.000000) [0.110539] (2018-10-13,15.000000) [0.012889] (2018-10-13,15.000000) [0.012889] (2018-10-13,21.000000) [0.066611] (2018-10-13,21.000000) [0.066611] (2018-10-13,21.000000) [0.013293] (2018-10-13,21.000000) [0.013293] (2018-10-13,15.000000) [0.062878] (2018-10-13,15.000000) [0.062878] (2018-10-13,15.000000) [0.062890] (2018-10-13,15.000000) [0.062890] (2018-10-13,13.000000) [0.014229] (2018-10-13,15.000000) [0.014229] (2018-10-13,15.000000) [0.074338] (2018-10-13,15.000000) [0.074338] (2018-10-13,5.383529) [0.113222] (2018-10-13,0.000000) [0.113222] (2018-10-14,39.642857) [0.011702] (2018-10-14,13.000000) [0.011702] (2018-10-14,15.000000) [0.011702] (2018-10-14,13.000000) [0.079995] (2018-10-14,0.100000) [0.079995] (2018-10-14,13.000000) [0.079995] (2018-10-14,13.000000) [0.013559] (2018-10-14,15.000000) [0.013559] (2018-10-14,14.880265) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,14.880265) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,14.880265) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,14.880265) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,15.000000) [0.024995] (2018-10-14,15.000000) [0.011833] (2018-10-14,15.000000) [0.011833] (2018-10-14,14.000000) [0.075009] (2018-10-14,14.000000) [0.075009] (2018-10-14,2.596587) [0.075009] (2018-10-15,15.000000) [0.014248] (2018-10-15,15.000000) [0.014248] (2018-10-15,15.000000) [0.038744] (2018-10-15,15.000000) [0.038744] (2018-10-15,15.000000) [0.043951] (2018-10-15,15.000000) [0.043951] (2018-10-15,15.000000) [0.013450] (2018-10-15,15.000000) [0.013450] (2018-10-15,15.000000) [0.040409] (2018-10-15,15.000000) [0.040409] (2018-10-15,52.380952) [0.020157] (2018-10-15,16.034570) [0.020440] (2018-10-15,13.880265) [0.020440] (2018-10-15,15.000000) [0.020440] (2018-10-15,15.000000) [0.031920] (2018-10-15,15.000000) [0.031920] (2018-10-15,13.146555) [0.541994] (2018-10-15,15.000000) [0.541994] (2018-10-15,15.000000) [0.040471] (2018-10-15,15.000000) [0.040471] (2018-10-15,7.000000) [0.188800] (2018-10-16,15.000000) [0.018150] (2018-10-16,15.000000) [0.018150] (2018-10-16,13.000000) [0.016815] (2018-10-16,15.000000) [0.016815] (2018-10-16,13.000000) [0.014888] (2018-10-16,15.000000) [0.014888] (2018-10-16,2.500000) [0.014888] (2018-10-16,15.000000) [0.097309] (2018-10-16,15.000000) [0.097309] (2018-10-16,15.000000) [0.097309] (2018-10-16,13.000000) [0.017898] (2018-10-16,15.000000) [0.017898] (2018-10-16,14.880265) [0.027747] (2018-10-16,15.000000) [0.027747] (2018-10-16,15.000000) [0.011457] (2018-10-16,15.000000) [0.011457] (2018-10-16,14.000000) [0.082736] (2018-10-16,0.076855) [0.082736] (2018-10-16,13.000000) [0.014719] (2018-10-16,15.000000) [0.014719] (2018-10-16,15.000000) [0.099962] (2018-10-16,15.000000) [0.099962] (2018-10-16,14.770459) [0.099962] (2018-10-16,14.760530) [0.023583] (2018-10-16,15.000000) [0.023583] (2018-10-16,13.000000) [0.013202] (2018-10-16,15.000000) [0.013202] (2018-10-16,13.000000) [0.012452] (2018-10-16,15.000000) [0.012452] (2018-10-17,15.000000) [0.011920] (2018-10-17,15.000000) [0.011920] (2018-10-17,14.770459) [0.029805] (2018-10-17,15.000000) [0.029805] (2018-10-17,15.000000) [0.029805] (2018-10-17,15.000000) [0.030914] (2018-10-17,15.000000) [0.030914] (2018-10-17,15.000000) [0.327103] (2018-10-17,15.000000) [0.327103] (2018-10-17,59.371544) [0.136729] (2018-10-17,0.000000) [0.136729] (2018-10-17,6.625000) [0.136729] (2018-10-18,15.000000) [0.015517] (2018-10-18,15.000000) [0.015517] (2018-10-18,15.000000) [0.011894] (2018-10-18,15.000000) [0.011894] (2018-10-18,15.000000) [0.011894] (2018-10-18,15.000000) [0.009933] (2018-10-18,15.000000) [0.009933] (2018-10-18,15.000000) [0.009933] (2018-10-18,15.000000) [0.005088] (2018-10-18,15.000000) [0.005088] (2018-10-18,15.000000) [0.005088] (2018-10-18,15.000000) [0.005088] (2018-10-18,15.000000) [0.011979] (2018-10-18,15.000000) [0.011979] (2018-10-18,15.000000) [0.018510] (2018-10-18,15.000000) [0.018510] (2018-10-18,24.171472) [0.203550] (2018-10-18,15.000000) [0.203550] (2018-10-18,15.000000) [0.203550] (2018-10-18,15.000000) [0.011173] (2018-10-18,15.000000) [0.011173] (2018-10-18,15.000000) [0.011173] (2018-10-18,15.000000) [0.009935] (2018-10-18,15.000000) [0.009935] (2018-10-18,15.000000) [0.009935] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.009973] (2018-10-18,15.000000) [0.009973] (2018-10-18,15.000000) [0.009973] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.011223] (2018-10-18,15.000000) [0.011223] (2018-10-18,15.000000) [0.011223] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.010936] (2018-10-18,15.000000) [0.018896] (2018-10-18,15.000000) [0.018896] (2018-10-18,15.230000) [0.018896] (2018-10-18,15.000000) [0.018896] (2018-10-18,15.230000) [0.018896] (2018-10-18,15.000000) [0.018896] (2018-10-18,15.230000) [0.018896] (2018-10-18,15.000000) [0.011892] (2018-10-18,15.000000) [0.011892] (2018-10-18,15.000000) [0.026813] (2018-10-18,15.000000) [0.026813] (2018-10-18,15.000000) [0.010404] (2018-10-18,15.000000) [0.010404] (2018-10-18,13.250000) [0.032000] (2018-10-18,31.647436) [0.032000] (2018-10-18,20.000000) [0.032000] (2018-10-18,0.000000) [0.277600] (2018-10-19,15.000000) [0.011976] (2018-10-19,15.000000) [0.011976] (2018-10-19,15.000000) [0.021127] (2018-10-19,15.000000) [0.021127] (2018-10-19,15.000000) [0.021127] (2018-10-19,13.979312) [0.015049] (2018-10-19,15.000000) [0.015049] (2018-10-19,15.000000) [0.015049] (2018-10-19,15.000000) [0.053103] (2018-10-19,15.000000) [0.053103] (2018-10-19,15.000000) [0.010858] (2018-10-19,15.000000) [0.010858] (2018-10-19,13.000000) [0.019901] (2018-10-19,15.000000) [0.019901] (2018-10-19,15.000000) [0.013975] (2018-10-19,15.000000) [0.013975] (2018-10-19,13.000000) [0.019001] (2018-10-19,15.000000) [0.019001] (2018-10-20,15.000000) [0.019962] (2018-10-20,15.000000) [0.019962] (2018-10-20,13.000000) [0.038830] (2018-10-20,15.000000) [0.038830] (2018-10-20,15.000000) [0.038830] (2018-10-20,15.000000) [0.038830] (2018-10-20,13.000000) [0.038830] (2018-10-20,15.000000) [0.018045] (2018-10-20,15.000000) [0.018045] (2018-10-20,15.000000) [0.010481] (2018-10-20,15.000000) [0.010481] (2018-10-20,0.000000) [3.260975] (2018-10-20,13.250000) [0.048977] (2018-10-20,20.000000) [0.048977] (2018-10-20,13.000000) [0.018263] (2018-10-20,15.000000) [0.018263] (2018-10-20,15.000000) [0.018457] (2018-10-20,13.146555) [0.018457] (2018-10-20,0.000000) [0.018457] (2018-10-20,0.000000) [0.016439] (2018-10-20,13.187175) [0.016439] (2018-10-20,35.140000) [0.016439] (2018-10-20,13.000000) [0.036914] (2018-10-20,15.000000) [0.036914] (2018-10-20,15.000000) [0.036914] (2018-10-20,15.000000) [0.036914] (2018-10-20,13.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-20,15.000000) [0.055194] (2018-10-21,15.000000) [0.148666] (2018-10-21,15.000000) [0.148666] (2018-10-21,62.286496) [0.117007] (2018-10-21,14.608378) [0.117007] (2018-10-21,15.000000) [0.024815] (2018-10-21,15.000000) [0.024815] (2018-10-21,15.000000) [0.024815] (2018-10-21,15.000000) [0.025169] (2018-10-21,15.000000) [0.025169] (2018-10-21,42.739888) [0.208341] (2018-10-21,13.000000) [0.025491] (2018-10-21,15.000000) [0.025491] (2018-10-21,15.000000) [0.025491] (2018-10-21,16.406275) [0.036207] (2018-10-21,20.000000) [0.036207] (2018-10-21,15.000000) [0.042479] (2018-10-21,15.000000) [0.042479] (2018-10-21,15.000000) [0.042479] (2018-10-21,13.000000) [0.047127] (2018-10-21,14.000000) [0.047127] (2018-10-21,15.000000) [0.047127] (2018-10-21,15.000000) [0.047127] (2018-10-21,15.000000) [0.047127] (2018-10-21,15.000000) [0.047127] (2018-10-21,62.698948) [0.250046] (2018-10-21,0.000000) [0.250046] (2018-10-21,14.770459) [0.030277] (2018-10-21,15.000000) [0.030277] (2018-10-21,15.000000) [0.030277] (2018-10-21,15.000000) [0.052345] (2018-10-21,15.000000) [0.052345] (2018-10-22,13.069227) [0.026879] (2018-10-22,15.000000) [0.026879] (2018-10-22,15.000000) [0.026879] (2018-10-22,0.000000) [0.388930] (2018-10-22,15.000000) [0.014534] (2018-10-22,15.000000) [0.014534] (2018-10-22,15.000000) [0.014534] (2018-10-22,15.000000) [0.014034] (2018-10-22,15.000000) [0.014034] (2018-10-22,15.000000) [0.014034] (2018-10-22,15.000000) [0.067763] (2018-10-22,15.000000) [0.067763] (2018-10-22,15.000000) [0.045764] (2018-10-22,15.000000) [0.045764] (2018-10-22,8.759739) [0.021396] (2018-10-22,33.666666) [0.021396] (2018-10-22,15.000000) [0.027667] (2018-10-22,15.000000) [0.027667] (2018-10-22,15.000000) [0.014305] (2018-10-22,15.000000) [0.014305] (2018-10-22,15.000000) [0.017202] (2018-10-22,15.000000) [0.017202] (2018-10-22,15.000000) [0.020069] (2018-10-22,15.000000) [0.020069] (2018-10-22,15.000000) [0.014385] (2018-10-22,15.000000) [0.014385] (2018-10-22,15.000000) [0.148494] (2018-10-22,15.000000) [0.148494] (2018-10-22,15.000000) [0.148494] (2018-10-22,15.000000) [0.007509] (2018-10-22,15.000000) [0.007509] (2018-10-22,15.000000) [0.075611] (2018-10-22,15.000000) [0.075611] (2018-10-22,15.000000) [0.075611] (2018-10-22,15.000000) [0.083486] (2018-10-22,15.000000) [0.083486] (2018-10-22,14.885229) [0.083486] (2018-10-22,15.000000) [0.083486] (2018-10-22,15.000000) [0.083486] (2018-10-22,15.000000) [0.083486] (2018-10-22,13.000000) [0.083486] (2018-10-22,15.000000) [0.058573] (2018-10-22,15.000000) [0.058573] (2018-10-22,15.000000) [0.058573] (2018-10-22,15.000000) [0.019362] (2018-10-22,15.000000) [0.019362] (2018-10-22,15.000000) [0.019362] (2018-10-22,15.000000) [0.019362] (2018-10-23,24.274134) [0.083126] (2018-10-23,0.000000) [0.083126] (2018-10-23,14.096880) [0.026741] (2018-10-23,15.000000) [0.026741] (2018-10-23,15.000000) [0.026741] (2018-10-23,2.243643) [0.455862] (2018-10-23,14.000000) [1.118934] (2018-10-23,4.208000) [1.118934] (2018-10-23,13.146555) [0.016086] (2018-10-23,15.000000) [0.016086] (2018-10-23,15.000000) [0.012714] (2018-10-23,15.000000) [0.012714] (2018-10-23,15.000000) [0.012714] (2018-10-23,13.000000) [0.031500] (2018-10-23,15.000000) [0.031500] (2018-10-23,15.000000) [0.031500] (2018-10-23,15.000000) [0.031480] (2018-10-23,15.000000) [0.031480] (2018-10-23,15.000000) [0.031480] (2018-10-23,62.698948) [0.126360] (2018-10-23,0.000000) [0.126360] (2018-10-23,15.000000) [0.033000] (2018-10-23,15.000000) [0.033000] (2018-10-23,15.000000) [0.033000] (2018-10-23,15.000000) [0.015885] (2018-10-23,15.000000) [0.015885] (2018-10-23,15.000000) [0.015885] (2018-10-23,15.115000) [0.015885] (2018-10-23,13.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,15.000000) [0.353356] (2018-10-23,13.000000) [0.352649] (2018-10-23,15.000000) [0.352649] (2018-10-23,15.000000) [0.352649] (2018-10-23,15.000000) [0.352649] (2018-10-23,15.000000) [0.352649] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.045988] (2018-10-23,15.000000) [0.015986] (2018-10-23,15.000000) [0.015986] (2018-10-23,15.000000) [0.027486] (2018-10-23,15.000000) [0.027486] (2018-10-23,15.000000) [0.027486] (2018-10-23,15.000000) [0.044812] (2018-10-23,15.000000) [0.044812] (2018-10-23,15.000000) [0.044812] (2018-10-24,62.698948) [0.136640] (2018-10-24,0.000000) [0.136640] (2018-10-24,30.833334) [0.136640] (2018-10-24,30.833334) [0.136640] (2018-10-24,15.000000) [0.037075] (2018-10-24,15.000000) [0.037075] (2018-10-24,15.000000) [0.036974] (2018-10-24,15.000000) [0.036974] (2018-10-24,13.000000) [0.019986] (2018-10-24,15.000000) [0.019986] (2018-10-24,15.230000) [0.019986] (2018-10-24,62.698948) [0.214500] (2018-10-24,0.000000) [0.214500] (2018-10-24,60.581325) [0.214500] (2018-10-25,15.000000) [0.017994] (2018-10-25,15.000000) [0.017994] (2018-10-25,37.350000) [0.021394] (2018-10-25,13.250000) [0.021394] (2018-10-25,37.350000) [0.021394] (2018-10-25,15.000000) [0.020509] (2018-10-25,15.000000) [0.020509] (2018-10-25,15.000000) [0.020509] (2018-10-25,13.250000) [0.019531] (2018-10-25,68.316832) [0.019531] (2018-10-25,68.316832) [0.019531] (2018-10-25,55.397895) [0.121153] (2018-10-25,4.208000) [0.121153] (2018-10-25,15.000000) [0.046914] (2018-10-25,15.000000) [0.046914] (2018-10-25,25.156972) [0.134182] (2018-10-25,0.000000) [0.134182] (2018-10-25,59.561403) [0.134182] (2018-10-25,14.000000) [0.014381] (2018-10-25,14.031785) [0.014381] (2018-10-25,15.000000) [0.014381] (2018-10-25,15.000000) [0.014381] (2018-10-25,13.033488) [0.012273] (2018-10-25,15.000000) [0.012273] (2018-10-25,15.000000) [0.012273] (2018-10-25,15.000000) [0.008180] (2018-10-25,15.000000) [0.008180] (2018-10-25,62.698948) [0.123913] (2018-10-25,0.000000) [0.123913] (2018-10-25,30.833334) [0.123913] (2018-10-25,41.666667) [0.123913] (2018-10-25,15.000000) [0.041041] (2018-10-25,15.000000) [0.041041] (2018-10-25,15.000000) [0.041041] (2018-10-25,62.698948) [0.210106] (2018-10-25,0.000000) [0.210106] (2018-10-25,30.132013) [0.210106] (2018-10-25,30.132013) [0.210106] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,15.000000) [0.231118] (2018-10-25,62.714176) [0.184056] (2018-10-25,62.529287) [0.184056] (2018-10-25,0.000000) [0.184056] (2018-10-26,15.000000) [0.015410] (2018-10-26,15.000000) [0.015410] (2018-10-26,15.000000) [0.015410] (2018-10-26,15.000000) [0.029360] (2018-10-26,15.000000) [0.029360] (2018-10-26,34.698948) [0.118759] (2018-10-26,0.000000) [0.118759] (2018-10-26,15.000000) [0.023540] (2018-10-26,15.000000) [0.023540] (2018-10-26,15.000000) [0.023540] (2018-10-26,70.000000) [0.146440] (2018-10-26,6.583593) [0.146440] (2018-10-26,20.000000) [0.146440] (2018-10-26,20.000000) [0.146440] (2018-10-26,62.698948) [0.175920] (2018-10-26,30.833334) [0.175920] (2018-10-26,0.000000) [0.175920] (2018-10-26,41.950000) [0.175920] (2018-10-26,15.000000) [0.029112] (2018-10-26,15.000000) [0.029112] (2018-10-26,15.000000) [0.029112] (2018-10-26,0.000000) [0.427227] (2018-10-26,15.000000) [0.047689] (2018-10-26,15.000000) [0.047689] (2018-10-26,15.000000) [0.047689] (2018-10-26,62.698948) [0.172624] (2018-10-26,0.000000) [0.172624] (2018-10-26,15.000000) [0.021482] (2018-10-26,15.000000) [0.021482] (2018-10-26,15.000000) [0.013268] (2018-10-26,15.000000) [0.013268] (2018-10-26,15.000000) [0.013268] (2018-10-26,15.000000) [0.010638] (2018-10-26,15.000000) [0.010638] (2018-10-26,15.000000) [0.010638] (2018-10-26,1.104660) [0.108088] (2018-10-26,14.000000) [0.108088] (2018-10-26,32.783729) [0.108088] (2018-10-27,0.000000) [0.023792] (2018-10-27,15.000000) [0.054026] (2018-10-27,15.000000) [0.054026] (2018-10-27,62.698948) [0.160189] (2018-10-27,0.000000) [0.160189] (2018-10-27,14.000000) [0.082734] (2018-10-27,2.104000) [0.082734] (2018-10-27,0.000000) [0.016049] (2018-10-27,20.000000) [0.016049] (2018-10-27,19.939154) [0.016049] (2018-10-27,15.000000) [0.064129] (2018-10-27,15.000000) [0.064129] (2018-10-27,15.000000) [0.064129] (2018-10-27,15.000000) [0.151988] (2018-10-27,15.000000) [0.151988] (2018-10-27,15.000000) [0.151988] (2018-10-27,15.000000) [0.151988] (2018-10-27,19.579277) [0.013783] (2018-10-27,19.579277) [0.013783] (2018-10-27,21.448509) [0.013783] (2018-10-27,0.170597) [0.013783] (2018-10-27,21.657877) [0.013783] (2018-10-27,15.000000) [0.008588] (2018-10-27,15.000000) [0.008588] (2018-10-27,15.000000) [0.330324] (2018-10-27,15.000000) [0.330324] (2018-10-27,15.000000) [0.330324] (2018-10-27,15.000000) [0.330324] (2018-10-27,13.250000) [0.011208] (2018-10-27,0.000000) [0.011208] (2018-10-28,57.330018) [1.223745] (2018-10-28,0.000000) [1.223745] (2018-10-28,15.000000) [0.029561] (2018-10-28,15.000000) [0.029561] (2018-10-28,33.631955) [0.080022] (2018-10-28,0.000000) [0.080022] (2018-10-28,25.464370) [0.214573] (2018-10-28,0.000000) [0.214573] (2018-10-29,15.000000) [0.010382] (2018-10-29,15.000000) [0.010382] (2018-10-29,15.000000) [0.118656] (2018-10-29,15.000000) [0.118656] (2018-10-29,13.250000) [0.516641] (2018-10-29,0.168715) [0.516641] (2018-10-29,15.000000) [0.012900] (2018-10-29,15.000000) [0.012900] (2018-10-29,15.000000) [0.012900] (2018-10-29,0.000000) [0.027296] (2018-10-29,13.250000) [0.027296] (2018-10-29,30.833334) [0.027296] (2018-10-29,40.144217) [0.027296] (2018-10-29,13.250000) [0.178773] (2018-10-29,13.250000) [0.178773] (2018-10-29,0.000000) [0.031713] (2018-10-29,13.250000) [0.031713] (2018-10-29,0.000000) [0.031713] (2018-10-29,45.249495) [0.031713] (2018-10-29,15.000000) [0.010744] (2018-10-29,15.000000) [0.010744] (2018-10-29,13.250000) [0.049197] (2018-10-29,0.000000) [0.049197] (2018-10-29,28.255625) [0.049197] (2018-10-29,15.000000) [0.015000] (2018-10-29,15.000000) [0.015000] (2018-10-29,12.600000) [0.083949] (2018-10-29,15.000000) [0.083949] (2018-10-29,13.250000) [0.131544] (2018-10-29,0.000000) [0.131544] (2018-10-29,13.343046) [0.131544] (2018-10-29,13.296523) [0.131544] (2018-10-29,12.461644) [0.131544] (2018-10-29,13.250000) [0.131544] (2018-10-30,15.000000) [0.016516] (2018-10-30,15.000000) [0.016516] (2018-10-30,15.000000) [0.016516] (2018-10-30,10.124823) [0.017809] (2018-10-30,15.000000) [0.017809] (2018-10-30,10.124823) [0.017809] (2018-10-30,15.000000) [0.017809] (2018-10-30,15.000000) [0.016809] (2018-10-30,15.000000) [0.016809] (2018-10-30,15.000000) [0.016809] (2018-10-30,69.969749) [0.892192] (2018-10-30,0.229313) [0.892192] (2018-10-30,13.250000) [0.197438] (2018-10-30,0.000000) [0.197438] (2018-10-30,46.148691) [0.197438] (2018-10-30,46.166337) [0.197438] (2018-10-30,0.000000) [0.034129] (2018-10-30,68.440744) [0.034129] (2018-10-30,69.158416) [0.034129] (2018-10-30,12.600000) [0.075200] (2018-10-30,4.208000) [0.075200] (2018-10-30,30.073491) [0.075200] (2018-10-30,20.000000) [0.075200] (2018-10-30,13.388587) [0.451200] (2018-10-30,69.726450) [0.451200] (2018-10-30,0.577921) [0.451200] (2018-10-30,31.966192) [0.756240] (2018-10-30,6.611590) [0.756240] (2018-10-30,31.637779) [0.756240] (2018-10-30,43.728589) [0.756240] (2018-10-30,12.600000) [0.756240] (2018-10-30,69.467933) [0.062640] (2018-10-30,0.000000) [0.062640] (2018-10-30,70.000000) [0.062640] (2018-10-30,24.651503) [0.065424] (2018-10-30,4.208000) [0.065424] (2018-10-30,13.250000) [0.137610] (2018-10-30,0.000000) [0.137610] (2018-10-30,15.000000) [0.019872] (2018-10-30,15.000000) [0.019872] (2018-10-30,15.000000) [0.018144] (2018-10-30,15.000000) [0.018144] (2018-10-30,0.000000) [0.041161] (2018-10-30,70.000000) [0.041161] (2018-10-30,69.826729) [0.041161] (2018-10-30,0.000000) [0.050603] (2018-10-30,69.764614) [0.050603] (2018-10-30,70.000000) [0.050603] (2018-10-31,13.250000) [0.156791] (2018-10-31,0.000000) [0.156791] (2018-10-31,20.000000) [0.156791] (2018-10-31,19.996601) [0.156791] (2018-10-31,1.741294) [0.060723] (2018-10-31,0.000000) [0.060723] (2018-10-31,68.420966) [0.060723] (2018-10-31,69.158416) [0.060723] (2018-10-31,13.250000) [0.398604] (2018-10-31,0.044317) [0.398604] (2018-10-31,13.250000) [0.399083] (2018-10-31,0.239674) [0.399083] (2018-10-31,13.250000) [0.202600] (2018-10-31,0.000000) [0.202600] (2018-10-31,13.250000) [0.247800] (2018-10-31,0.078446) [0.247800] (2018-10-31,15.000000) [0.073503] (2018-10-31,15.000000) [0.073503] (2018-10-31,14.285714) [0.028506] (2018-10-31,70.000000) [0.028506] (2018-10-31,0.000000) [0.041827] (2018-10-31,70.000000) [0.041827] (2018-10-31,41.738250) [0.321134] (2018-10-31,13.476500) [0.321134] (2018-10-31,8.676877) [0.321134] (2018-11-01,70.000000) [0.425527] (2018-11-01,41.625000) [0.425527] (2018-11-01,70.000000) [0.600000] (2018-11-01,2.132054) [0.600000] (2018-11-01,15.000000) [0.018840] (2018-11-01,15.000000) [0.018840] (2018-11-01,15.000000) [0.039368] (2018-11-01,15.000000) [0.039368] (2018-11-01,15.000000) [0.039368] (2018-11-01,70.000000) [1.167345] (2018-11-01,0.065733) [1.167345] (2018-11-01,13.250000) [0.162081] (2018-11-01,4.208000) [0.162081] (2018-11-01,15.000000) [0.013838] (2018-11-01,15.000000) [0.013838] (2018-11-01,0.272693) [0.032824] (2018-11-01,70.000000) [0.032824] (2018-11-01,15.000000) [0.010494] (2018-11-01,15.000000) [0.010494] (2018-11-01,15.000000) [0.010794] (2018-11-01,15.000000) [0.010794] (2018-11-01,0.000000) [0.066360] (2018-11-01,69.839069) [0.066360] (2018-11-01,70.000000) [0.066360] (2018-11-01,15.000000) [0.021987] (2018-11-01,15.000000) [0.021987] (2018-11-01,15.000000) [0.032981] (2018-11-01,15.000000) [0.032981] (2018-11-01,15.000000) [0.010494] (2018-11-01,15.000000) [0.010494] (2018-11-02,12.600000) [0.524699] (2018-11-02,11.183775) [0.524699] (2018-11-02,15.000000) [0.014734] (2018-11-02,15.000000) [0.014734] (2018-11-02,15.000000) [0.014664] (2018-11-02,15.000000) [0.014664] (2018-11-02,15.115000) [0.014664] (2018-11-02,15.000000) [0.049328] (2018-11-02,15.000000) [0.049328] (2018-11-02,15.000000) [0.049328] (2018-11-02,15.000000) [0.111713] (2018-11-02,15.000000) [0.111713] (2018-11-02,70.000000) [0.799240] (2018-11-02,4.208000) [0.799240] (2018-11-02,15.000000) [0.020139] (2018-11-02,15.000000) [0.020139] (2018-11-02,0.000000) [0.020139] (2018-11-02,15.000000) [0.014152] (2018-11-02,15.000000) [0.014152] (2018-11-02,15.000000) [0.020473] (2018-11-02,15.000000) [0.020473] (2018-11-02,15.000000) [0.020034] (2018-11-02,15.000000) [0.020034] (2018-11-08,16.001936) [0.257215] (2018-11-08,70.000000) [0.257215] (2018-11-08,0.183009) [0.108099] (2018-11-08,13.010000) [0.108099] (2018-11-08,70.000000) [0.108099] (2018-11-08,0.000000) [0.108099] (2018-11-08,2.250000) [0.108099] (2018-11-08,6.331731) [0.108099] (2018-11-08,4.000000) [0.177227] (2018-11-08,41.505000) [0.177227] (2018-11-08,0.000000) [0.177227] (2018-11-08,0.106186) [0.005717] (2018-11-08,0.000000) [0.021120] (2018-11-08,0.500000) [0.168566] (2018-11-08,41.505000) [0.168566] (2018-11-08,0.000000) [0.017827] (2018-11-08,12.447761) [0.017827] (2018-11-08,70.000000) [0.017827] (2018-11-09,13.010000) [0.281304] (2018-11-09,0.698430) [0.281304] (2018-11-09,0.000000) [0.020622] (2018-11-09,21.000000) [0.020622] (2018-11-09,0.000000) [0.037990] (2018-11-09,42.857143) [0.037990] (2018-11-09,4.000000) [0.037990] (2018-11-09,16.711538) [0.037990] (2018-11-09,0.000000) [0.037990] (2018-11-09,15.000000) [0.029670] (2018-11-09,15.000000) [0.029670] (2018-11-09,13.010000) [0.079040] (2018-11-09,13.010000) [0.079040] (2018-11-09,0.000000) [0.079040] (2018-11-09,12.897215) [0.053083] (2018-11-09,32.701116) [0.053083] (2018-11-09,13.010226) [0.053083] (2018-11-09,0.000000) [0.053083] (2018-11-09,0.000000) [0.016756] (2018-11-09,41.505000) [0.016756] (2018-11-09,15.000000) [0.066830] (2018-11-09,15.000000) [0.066830] (2018-11-09,12.600000) [0.134972] (2018-11-09,0.701000) [0.134972] (2018-11-09,12.600000) [0.134972] (2018-11-09,4.000000) [0.027375] (2018-11-09,70.000000) [0.027375] (2018-11-09,12.600000) [0.123941] (2018-11-09,12.600000) [0.123941] (2018-11-09,4.475278) [0.123941] (2018-11-09,1.034488) [0.037956] (2018-11-09,13.010000) [0.037956] (2018-11-09,15.000000) [0.012073] (2018-11-09,12.600000) [0.012073] (2018-11-09,15.000000) [0.012073] (2018-11-09,15.000000) [0.012073] (2018-11-09,15.000000) [0.022495] (2018-11-09,15.000000) [0.022495] (2018-11-10,15.000000) [0.032233] (2018-11-10,15.000000) [0.032233] (2018-11-10,15.000000) [0.032233] (2018-11-10,13.010000) [0.014520] (2018-11-10,13.010000) [0.014520] (2018-11-10,15.000000) [0.021295] (2018-11-10,15.000000) [0.021295] (2018-11-10,15.000000) [0.021295] (2018-11-10,12.651017) [0.007425] (2018-11-10,13.010000) [0.007425] (2018-11-10,0.000000) [0.037060] (2018-11-10,13.010000) [0.037060] (2018-11-10,70.000000) [0.037060] (2018-11-10,15.000000) [0.874296] (2018-11-10,15.000000) [0.874296] (2018-11-10,15.000000) [0.874296] (2018-11-10,0.120297) [0.224400] (2018-11-10,33.880716) [0.224400] (2018-11-10,70.000000) [0.224400] (2018-11-10,70.000000) [0.224400] (2018-11-10,33.880716) [0.224400] (2018-11-10,70.000000) [0.224400] (2018-11-10,70.000000) [0.224400] (2018-11-10,15.000000) [0.177727] (2018-11-10,15.000000) [0.177727] (2018-11-10,12.600000) [0.177727] (2018-11-10,12.600000) [0.177727] (2018-11-10,13.800000) [0.177727] (2018-11-10,11.425043) [0.177727] (2018-11-10,15.000000) [0.177727] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [4.612865] (2018-11-10,15.000000) [0.013886] (2018-11-10,15.000000) [0.013886] (2018-11-10,15.000000) [0.089196] (2018-11-10,15.000000) [0.089196] (2018-11-10,15.000000) [0.089196] (2018-11-10,4.000000) [0.019680] (2018-11-10,13.010000) [0.019680] (2018-11-11,15.000000) [0.029888] (2018-11-11,15.000000) [0.029888] (2018-11-11,15.000000) [0.029888] (2018-11-11,15.000000) [0.029888] (2018-11-11,13.010000) [0.144354] (2018-11-11,0.000000) [0.144354] (2018-11-11,13.010000) [0.144354] (2018-11-11,12.600000) [0.167846] (2018-11-11,12.600000) [0.167846] (2018-11-11,2.454500) [0.167846] (2018-11-11,15.000000) [0.011595] (2018-11-11,15.000000) [0.011595] (2018-11-11,0.000000) [0.052052] (2018-11-11,13.010000) [0.052052] (2018-11-11,4.000000) [0.010527] (2018-11-11,13.010000) [0.010527] (2018-11-11,0.000000) [0.016058] (2018-11-11,41.505000) [0.016058] (2018-11-11,0.000000) [0.016058] (2018-11-11,4.000000) [0.016807] (2018-11-11,41.505000) [0.016807] (2018-11-11,69.824254) [0.800000] (2018-11-11,0.364121) [0.800000] (2018-11-11,70.000000) [0.800000] (2018-11-12,15.000000) [0.411217] (2018-11-12,15.000000) [0.411217] (2018-11-12,15.000000) [0.411217] (2018-11-12,4.000000) [0.032332] (2018-11-12,41.505000) [0.032332] (2018-11-12,0.063113) [0.169400] (2018-11-12,13.010000) [0.169400] (2018-11-12,4.000000) [0.169400] (2018-11-12,41.505000) [0.169400] (2018-11-12,70.000000) [0.169400] (2018-11-12,0.000000) [0.065543] (2018-11-12,70.000000) [0.065543] (2018-11-12,15.000000) [0.446183] (2018-11-12,15.000000) [0.446183] (2018-11-12,0.000000) [0.436480] (2018-11-12,15.000000) [0.436480] (2018-11-12,15.000000) [0.436480] (2018-11-12,15.000000) [0.436480] (2018-11-12,0.000000) [0.075599] (2018-11-12,70.000000) [0.075599] (2018-11-12,15.000000) [0.078012] (2018-11-12,15.000000) [0.078012] (2018-11-12,15.000000) [0.078012] (2018-11-12,12.600000) [0.016390] (2018-11-12,15.000000) [0.016390] (2018-11-12,15.000000) [0.016390] (2018-11-12,12.600000) [0.387834] (2018-11-12,12.917600) [0.387834] (2018-11-12,0.568330) [0.387834] (2018-11-12,0.134146) [4.500239] (2018-11-12,15.000000) [0.046329] (2018-11-12,15.000000) [0.046329] (2018-11-12,15.000000) [0.046329] (2018-11-12,15.000000) [0.046329] (2018-11-13,0.000000) [0.013656] (2018-11-13,70.000000) [0.013656] (2018-11-13,4.000000) [0.009506] (2018-11-13,13.010000) [0.009506] (2018-11-13,15.000000) [0.028125] (2018-11-13,15.000000) [0.028125] (2018-11-13,15.000000) [0.028125] (2018-11-13,15.000000) [0.165672] (2018-11-13,15.000000) [0.165672] (2018-11-13,15.000000) [0.165672] (2018-11-13,70.000000) [1.868000] (2018-11-13,69.830340) [1.868000] (2018-11-13,69.915354) [1.868000] (2018-11-13,8.663462) [0.015336] (2018-11-13,70.000000) [0.015336] (2018-11-13,15.000000) [0.016167] (2018-11-13,15.000000) [0.016167] (2018-11-13,15.000000) [0.016167] (2018-11-13,15.000000) [0.029341] (2018-11-13,15.000000) [0.029341] (2018-11-13,58.067859) [0.029341] (2018-11-13,15.000000) [0.029341] (2018-11-13,15.000000) [0.014930] (2018-11-13,15.000000) [0.014930] (2018-11-13,13.010000) [0.011375] (2018-11-13,13.010000) [0.011375] (2018-11-13,13.010000) [0.669000] (2018-11-13,26.274953) [0.669000] (2018-11-13,4.208000) [0.669000] (2018-11-13,12.600000) [0.156005] (2018-11-13,42.669638) [0.156005] (2018-11-13,0.308380) [0.156005] (2018-11-13,12.901278) [0.156005] (2018-11-13,57.933648) [0.156005] (2018-11-13,0.000000) [0.032782] (2018-11-13,13.010000) [0.032782] (2018-11-13,13.010000) [0.032782] (2018-11-14,13.010000) [0.167532] (2018-11-14,13.123010) [0.167532] (2018-11-14,0.000000) [0.167532] (2018-11-14,13.010000) [0.027800] (2018-11-14,70.000000) [0.027800] (2018-11-14,0.000000) [0.028922] (2018-11-14,70.000000) [0.028922] (2018-11-14,15.000000) [0.014266] (2018-11-14,0.000000) [0.014266] (2018-11-14,15.000000) [0.014266] (2018-11-14,15.000000) [0.014266] (2018-11-14,2.000000) [0.024896] (2018-11-14,70.000000) [0.024896] (2018-11-14,12.600000) [0.223000] (2018-11-14,12.600000) [0.223000] (2018-11-14,12.600000) [0.223000] (2018-11-14,12.825200) [0.223000] (2018-11-14,0.000000) [0.223000] (2018-11-14,0.000000) [0.061920] (2018-11-14,70.000000) [0.061920] (2018-11-14,6.372668) [0.007781] (2018-11-14,14.485769) [0.007781] (2018-11-14,70.000000) [0.007781] (2018-11-14,0.159852) [0.146191] (2018-11-14,13.010000) [0.146191] (2018-11-14,70.000000) [0.030056] (2018-11-14,4.000000) [0.030056] (2018-11-14,15.000000) [0.017101] (2018-11-14,15.000000) [0.017101] (2018-11-14,15.000000) [0.017101] (2018-11-15,14.244883) [0.010484] (2018-11-15,15.000000) [0.010484] (2018-11-15,15.000000) [0.010484] (2018-11-15,0.000000) [0.006928] (2018-11-15,0.000000) [0.006928] (2018-11-15,0.000000) [0.005846] (2018-11-15,13.010000) [0.005846] (2018-11-15,13.010000) [0.005846] (2018-11-15,0.000000) [0.046828] (2018-11-15,13.010000) [0.046828] (2018-11-15,0.000000) [0.055724] (2018-11-15,13.010000) [0.055724] (2018-11-15,0.000000) [0.004428] (2018-11-15,13.010000) [0.004428] (2018-11-15,6.505000) [0.004428] (2018-11-15,15.000000) [0.005659] (2018-11-15,15.000000) [0.005659] (2018-11-15,15.000000) [0.005659] (2018-11-15,0.000000) [0.010000] (2018-11-15,13.010000) [0.010000] (2018-11-15,15.000000) [0.011106] (2018-11-15,15.000000) [0.011106] (2018-11-15,15.000000) [0.011106] (2018-11-15,0.000000) [0.049782] (2018-11-15,13.010000) [0.038107] (2018-11-15,41.505000) [0.038107] (2018-11-15,15.000000) [0.787877] (2018-11-15,15.000000) [0.787877] (2018-11-15,13.010000) [0.081945] (2018-11-15,13.123010) [0.081945] (2018-11-15,0.000000) [0.081945] (2018-11-16,0.000000) [0.098400] (2018-11-16,32.139423) [0.098400] (2018-11-16,13.010000) [0.098400] (2018-11-16,0.000000) [0.098400] (2018-11-16,13.010000) [0.180273] (2018-11-16,63.507993) [0.180273] (2018-11-16,4.208000) [0.180273] (2018-11-16,15.000000) [0.010007] (2018-11-16,15.000000) [0.010007] (2018-11-16,15.000000) [0.010007] (2018-11-16,13.010000) [0.184996] (2018-11-16,13.010000) [0.184996] (2018-11-16,0.701000) [0.184996] (2018-11-16,13.010000) [0.184996] (2018-11-16,13.010000) [0.060165] (2018-11-16,50.976909) [0.060165] (2018-11-16,13.010000) [0.060165] (2018-11-16,23.771285) [0.060165] (2018-11-16,33.730769) [0.009745] (2018-11-16,70.000000) [0.009745] (2018-11-16,15.000000) [0.224873] (2018-11-16,15.000000) [0.224873] (2018-11-16,15.000000) [0.224873] (2018-11-16,15.000000) [0.224873] (2018-11-16,15.000000) [0.043936] (2018-11-16,15.000000) [0.043936] (2018-11-16,69.660679) [1.319521] (2018-11-16,70.000000) [1.319521] (2018-11-16,13.010000) [1.319521] (2018-11-16,12.600000) [0.015697] (2018-11-16,15.000000) [0.015697] (2018-11-16,15.000000) [0.015697] (2018-11-16,70.000000) [0.736452] (2018-11-16,6.502282) [0.736452] (2018-11-16,15.000000) [0.017748] (2018-11-16,15.000000) [0.017748] (2018-11-16,15.000000) [0.017748] (2018-11-16,13.123010) [0.296001] (2018-11-16,19.597559) [0.296001] (2018-11-16,0.215516) [0.296001] (2018-11-16,13.092908) [0.223966] (2018-11-16,0.146727) [0.223966] (2018-11-16,13.010000) [0.125071] (2018-11-16,41.505000) [0.125071] (2018-11-16,6.334983) [0.125071] (2018-11-16,0.000000) [0.031100] (2018-11-16,21.000000) [0.031100] (2018-11-16,21.000000) [0.031100] (2018-11-16,30.527389) [1.717084] (2018-11-16,20.728289) [1.717084] (2018-11-17,13.010000) [0.332493] (2018-11-17,4.176954) [0.332493] (2018-11-17,13.010000) [0.194073] (2018-11-17,0.000000) [0.194073] (2018-11-17,13.010000) [0.121588] (2018-11-17,69.660679) [0.121588] (2018-11-17,12.616657) [0.121588] (2018-11-17,13.123010) [0.396500] (2018-11-17,38.367220) [0.396500] (2018-11-17,60.488455) [0.396500] (2018-11-17,0.000000) [0.396500] (2018-11-17,1.082855) [0.396500] (2018-11-17,13.010000) [0.094575] (2018-11-17,0.000000) [0.094575] (2018-11-17,15.000000) [0.019540] (2018-11-17,15.000000) [0.019540] (2018-11-17,15.000000) [0.019540] (2018-11-17,15.000000) [0.010396] (2018-11-17,15.000000) [0.010396] (2018-11-17,15.000000) [0.010396] (2018-11-18,15.000000) [0.074410] (2018-11-18,15.000000) [0.074410] (2018-11-19,0.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,19.515407) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,20.000000) [0.050256] (2018-11-19,15.000000) [0.085296] (2018-11-19,0.049646) [0.085296] (2018-11-19,20.000000) [0.085296] (2018-11-19,20.000000) [0.085296] (2018-11-19,20.000000) [0.085296] (2018-11-19,20.000000) [0.085296] (2018-11-19,14.130112) [0.014714] (2018-11-19,15.000000) [0.014714] (2018-11-19,15.000000) [0.014714] (2018-11-19,15.000000) [0.014714] (2018-11-19,15.000000) [0.014714] (2018-11-19,15.000000) [0.034720] (2018-11-19,15.000000) [0.034720] (2018-11-19,15.000000) [0.953980] (2018-11-19,15.000000) [0.953980] (2018-11-19,15.000000) [0.953980] (2018-11-19,15.000000) [0.021620] (2018-11-19,15.000000) [0.021620] (2018-11-19,15.000000) [0.021620] (2018-11-20,15.000000) [0.019939] (2018-11-20,15.000000) [0.019939] (2018-11-20,12.600000) [0.098338] (2018-11-20,4.687797) [0.098338] (2018-11-20,15.000000) [1.227104] (2018-11-20,15.000000) [1.227104] (2018-11-20,15.000000) [0.023981] (2018-11-20,15.000000) [0.023981] (2018-11-20,0.000000) [0.221380] (2018-11-20,15.000000) [0.221380] (2018-11-20,15.000000) [0.221380] (2018-11-20,15.000000) [0.221380] (2018-11-20,15.000000) [0.221380] (2018-11-20,15.000000) [0.018872] (2018-11-20,15.000000) [0.018872] (2018-11-21,12.600000) [0.397202] (2018-11-21,4.208000) [0.397202] (2018-11-21,15.000000) [0.019474] (2018-11-21,15.000000) [0.019474] (2018-11-21,15.000000) [0.019474] (2018-11-21,15.000000) [0.041603] (2018-11-21,15.000000) [0.041603] (2018-11-21,15.000000) [0.109172] (2018-11-21,15.000000) [0.109172] (2018-11-22,12.600000) [0.165000] (2018-11-22,4.625462) [0.165000] (2018-11-22,14.770459) [0.009711] (2018-11-22,15.000000) [0.009711] (2018-11-22,15.000000) [0.009711] (2018-11-22,15.000000) [0.009711] (2018-11-22,12.600000) [0.711119] (2018-11-22,4.876742) [0.711119] (2018-11-23,15.000000) [0.035880] (2018-11-23,15.000000) [0.035880] (2018-11-23,15.000000) [0.035880] (2018-11-24,12.600000) [0.166124] (2018-11-24,4.374785) [0.166124] (2018-11-24,12.600000) [0.910000] (2018-11-24,4.784355) [0.910000] (2018-11-24,15.000000) [0.019020] (2018-11-24,15.000000) [0.019020] (2018-11-24,15.000000) [0.019020] (2018-11-25,0.000000) [0.117678] (2018-11-25,12.600000) [0.570152] (2018-11-25,12.600000) [0.570152] (2018-11-25,12.600000) [0.570152] (2018-11-25,12.600000) [0.570152] (2018-11-25,7.966759) [0.570152] (2018-11-25,7.373262) [0.570152] (2018-11-25,7.848625) [0.570152] (2018-11-25,11.748241) [0.570152] (2018-11-25,41.625000) [0.570152] (2018-11-26,12.600000) [0.317499] (2018-11-26,0.094055) [0.317499] (2018-11-26,13.000000) [0.317499] (2018-11-26,12.600000) [0.013631] (2018-11-26,12.600000) [0.013631] (2018-11-26,12.600000) [0.013631] (2018-11-26,4.499942) [0.013631] (2018-11-26,0.000000) [0.013631] (2018-11-26,13.000000) [0.013631] (2018-11-26,15.000000) [0.123500] (2018-11-26,15.000000) [0.123500] (2018-11-26,15.000000) [0.123500] (2018-11-26,12.600000) [0.093103] (2018-11-26,6.230842) [0.093103] (2018-11-26,12.600000) [0.139520] (2018-11-26,6.423927) [0.139520] (2018-11-26,57.500000) [0.021086] (2018-11-26,0.000000) [0.021086] (2018-11-26,0.000000) [0.021086] (2018-11-26,0.000000) [0.021086] (2018-11-26,0.000000) [0.021086] (2018-11-26,15.000000) [0.021086] (2018-11-27,15.000000) [0.010820] (2018-11-27,15.000000) [0.010820] (2018-11-27,15.000000) [0.010820] (2018-11-27,15.000000) [0.327251] (2018-11-27,15.000000) [0.327251] (2018-11-27,15.000000) [0.327251] (2018-11-27,15.000000) [0.201081] (2018-11-27,14.885229) [0.201081] (2018-11-27,15.000000) [0.201081] (2018-11-27,15.000000) [0.201081] (2018-11-27,14.770459) [0.090307] (2018-11-27,14.770459) [0.090307] (2018-11-27,14.312979) [0.090307] (2018-11-27,14.541376) [0.090307] (2018-11-27,14.427064) [0.090307] (2018-11-27,14.579453) [0.090307] (2018-11-27,15.000000) [0.090307] (2018-11-27,15.000000) [0.090307] (2018-11-27,15.000000) [0.090307] (2018-11-28,15.000000) [0.011954] (2018-11-28,15.000000) [0.011954] (2018-11-28,15.000000) [0.011954] (2018-11-28,15.000000) [0.070875] (2018-11-28,15.000000) [0.070875] (2018-11-28,15.000000) [0.070875] (2018-11-28,15.000000) [0.032845] (2018-11-28,15.000000) [0.032845] (2018-11-28,15.000000) [0.032845] (2018-11-28,15.000000) [0.039880] (2018-11-28,15.000000) [0.039880] (2018-11-28,15.000000) [0.039880] (2018-11-28,13.716745) [0.052480] (2018-11-28,15.000000) [0.052480] (2018-11-28,15.000000) [0.052480] (2018-11-29,15.000000) [0.013309] (2018-11-29,15.000000) [0.013309] (2018-11-29,15.000000) [0.403014] (2018-11-29,15.000000) [0.403014] (2018-11-29,15.000000) [0.403014] (2018-11-29,15.000000) [0.403014] (2018-11-29,15.000000) [0.403014] (2018-11-29,23.740000) [0.403014] (2018-11-29,12.600000) [0.112154] (2018-11-29,0.314121) [0.112154] (2018-11-29,15.000000) [0.198596] (2018-11-29,15.000000) [0.198596] (2018-11-29,15.000000) [0.198596] (2018-11-29,14.770459) [0.879616] (2018-11-29,14.770459) [0.879616] (2018-11-29,15.000000) [0.879616] (2018-11-29,15.000000) [0.879616] (2018-11-29,15.000000) [0.097238] (2018-11-29,15.000000) [0.097238] (2018-11-30,15.000000) [0.041673] (2018-11-30,12.600000) [0.106370] (2018-11-30,15.000000) [0.106370] (2018-11-30,15.000000) [0.106370] (2018-11-30,12.600000) [0.095047] (2018-11-30,12.600000) [0.095047] (2018-11-30,12.600000) [0.095047] (2018-11-30,0.000000) [0.095047] (2018-11-30,0.200000) [0.095047] (2018-11-30,0.000000) [0.095047] (2018-11-30,36.571908) [0.095047] (2018-11-30,13.716745) [0.032900] (2018-11-30,15.000000) [0.032900] (2018-11-30,15.000000) [0.032900] (2018-11-30,15.000000) [0.019845] (2018-11-30,15.000000) [0.019845] (2018-12-01,13.951660) [0.039826] (2018-12-01,15.000000) [0.039826] (2018-12-01,15.000000) [0.039826] (2018-12-01,15.000000) [0.017285] (2018-12-01,15.000000) [0.017285] (2018-12-01,15.000000) [0.023584] (2018-12-01,15.000000) [0.023584] (2018-12-01,15.000000) [0.027311] (2018-12-01,15.000000) [0.027311] (2018-12-01,15.000000) [0.027311] (2018-12-01,15.000000) [0.024880] (2018-12-01,15.000000) [0.024880] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [1.807980] (2018-12-01,15.000000) [0.069880] (2018-12-01,15.000000) [0.069880] (2018-12-01,15.000000) [0.069880] (2018-12-01,15.000000) [0.014951] (2018-12-01,15.000000) [0.014951] (2018-12-01,15.000000) [0.014951] (2018-12-01,15.000000) [0.014914] (2018-12-01,15.000000) [0.014914] (2018-12-01,15.000000) [0.014914] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.230000) [0.014925] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.000000) [0.014925] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014248] (2018-12-01,15.000000) [0.014248] (2018-12-02,49.719118) [0.005979] (2018-12-02,0.000000) [0.005979] (2018-12-02,0.000000) [0.005979] (2018-12-02,70.000000) [0.005979] (2018-12-02,12.600000) [0.005979] (2018-12-02,0.000000) [0.005979] (2018-12-02,0.000000) [0.005979] (2018-12-02,15.000000) [0.098897] (2018-12-02,15.000000) [0.098897] (2018-12-02,15.000000) [0.088975] (2018-12-02,15.000000) [0.088975] (2018-12-02,15.000000) [0.088975] (2018-12-02,14.770459) [0.040301] (2018-12-02,14.770459) [0.040301] (2018-12-02,14.770459) [0.040301] (2018-12-02,14.541376) [0.040301] (2018-12-02,14.858470) [0.040301] (2018-12-02,14.471263) [0.040301] (2018-12-02,15.000000) [0.040301] (2018-12-02,15.000000) [0.040301] (2018-12-02,15.000000) [0.040301] (2018-12-02,15.000000) [0.020646] (2018-12-02,15.000000) [0.020646] (2018-12-02,15.000000) [0.020646] (2018-12-02,12.600000) [0.823869] (2018-12-02,2.538009) [0.823869] (2018-12-03,13.158372) [0.090000] (2018-12-03,15.000000) [0.090000] (2018-12-03,15.000000) [0.090000] (2018-12-03,12.600000) [0.030000] (2018-12-03,15.000000) [0.030000] (2018-12-03,12.600000) [0.026955] (2018-12-03,12.600000) [0.026955] (2018-12-03,15.000000) [0.026955] (2018-12-03,12.600000) [0.026955] (2018-12-03,15.000000) [0.026955] (2018-12-03,12.600000) [0.026955] (2018-12-03,15.000000) [0.026955] (2018-12-03,15.000000) [0.013725] (2018-12-03,15.000000) [0.013725] (2018-12-03,15.000000) [0.013725] (2018-12-03,15.000000) [0.009853] (2018-12-03,15.000000) [0.009853] (2018-12-03,15.000000) [0.009853] (2018-12-03,15.000000) [0.172271] (2018-12-03,15.000000) [0.172271] (2018-12-03,15.000000) [0.172271] (2018-12-04,15.000000) [0.071249] (2018-12-04,15.000000) [0.071249] (2018-12-04,15.000000) [0.154216] (2018-12-04,15.000000) [0.154216] (2018-12-04,15.000000) [0.154216] (2018-12-04,15.000000) [0.154216] (2018-12-04,14.770459) [0.029007] (2018-12-04,14.770459) [0.029007] (2018-12-04,15.000000) [0.029007] (2018-12-04,15.000000) [0.029007] (2018-12-04,0.000000) [0.020313] (2018-12-04,14.770459) [0.020313] (2018-12-04,12.600000) [0.020313] (2018-12-04,12.600000) [0.020313] (2018-12-04,15.000000) [0.020313] (2018-12-04,15.000000) [0.020313] (2018-12-04,13.800000) [0.020313] (2018-12-04,15.000000) [0.020313] (2018-12-04,15.000000) [0.020313] (2018-12-04,15.000000) [0.021832] (2018-12-04,15.000000) [0.021832] (2018-12-04,15.000000) [0.021832] (2018-12-05,15.000000) [0.011851] (2018-12-05,15.000000) [0.011851] (2018-12-05,15.000000) [0.011851] (2018-12-05,0.000000) [0.011851] (2018-12-05,15.000000) [0.034416] (2018-12-05,15.000000) [0.034416] (2018-12-05,15.000000) [0.034416] (2018-12-05,15.000000) [0.034416] (2018-12-06,12.600000) [0.118848] (2018-12-06,4.291359) [0.118848] (2018-12-06,12.600000) [0.009994] (2018-12-06,4.291359) [0.009994] (2018-12-06,0.000000) [0.009994] (2018-12-06,0.000000) [0.605667] (2018-12-06,15.000000) [0.605667] (2018-12-06,15.000000) [0.605667] (2018-12-06,15.000000) [0.605667] (2018-12-06,12.600000) [0.156148] (2018-12-06,0.641738) [0.156148] (2018-12-06,15.000000) [0.151137] (2018-12-06,15.000000) [0.151137] (2018-12-07,15.000000) [0.275103] (2018-12-07,15.000000) [0.275103] (2018-12-07,12.600000) [0.142818] (2018-12-07,4.876742) [0.142818] (2018-12-07,15.000000) [0.014966] (2018-12-07,15.000000) [0.014966] (2018-12-07,15.000000) [0.014966] (2018-12-07,14.652662) [0.035113] (2018-12-07,15.000000) [0.035113] (2018-12-07,15.000000) [0.035113] (2018-12-07,3.333333) [0.035113] (2018-12-07,15.000000) [0.102771] (2018-12-07,15.000000) [0.102771] (2018-12-07,15.000000) [0.102771] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.547893] (2018-12-07,15.000000) [0.010776] (2018-12-07,15.000000) [0.010776] (2018-12-07,12.600000) [0.300000] (2018-12-07,4.709155) [0.300000] (2018-12-07,12.600000) [0.150000] (2018-12-07,4.535659) [0.150000] (2018-12-07,12.600000) [0.098104] (2018-12-07,0.140077) [0.098104] (2018-12-08,12.600000) [0.330000] (2018-12-08,4.648373) [0.330000] (2018-12-08,12.600000) [0.899582] (2018-12-08,0.157722) [0.899582] (2018-12-08,15.000000) [0.099197] (2018-12-08,15.000000) [0.099197] (2018-12-08,15.000000) [0.099197] (2018-12-08,13.716745) [0.019197] (2018-12-08,15.000000) [0.019197] (2018-12-08,15.000000) [0.019197] (2018-12-08,15.000000) [0.035880] (2018-12-08,15.000000) [0.035880] (2018-12-08,15.000000) [0.014565] (2018-12-08,15.000000) [0.014565] (2018-12-08,15.230230) [0.014565] (2018-12-08,15.000000) [0.014565] (2018-12-08,12.600000) [0.236500] (2018-12-08,0.000000) [0.236500] (2018-12-09,12.600000) [0.266625] (2018-12-09,12.600000) [0.266625] (2018-12-09,0.057074) [0.266625] (2018-12-09,15.000000) [0.015684] (2018-12-09,15.000000) [0.015684] (2018-12-09,15.000000) [0.058860] (2018-12-09,15.000000) [0.058860] (2018-12-09,15.000000) [0.058860] (2018-12-09,15.000000) [0.007032] (2018-12-09,15.000000) [0.020592] (2018-12-09,15.000000) [0.020592] (2018-12-10,15.000000) [0.017593] (2018-12-10,15.000000) [0.017593] (2018-12-10,15.000000) [0.017593] (2018-12-10,12.600000) [0.173000] (2018-12-10,6.243142) [0.173000] (2018-12-10,12.600000) [0.247896] (2018-12-10,0.068636) [0.247896] (2018-12-10,0.000000) [0.041124] (2018-12-10,20.000000) [0.041124] (2018-12-10,20.000000) [0.041124] (2018-12-10,20.000000) [0.041124] (2018-12-10,20.000000) [0.041124] (2018-12-10,12.600000) [0.071648] (2018-12-10,0.072344) [0.071648] (2018-12-10,20.000000) [0.011033] (2018-12-10,20.000000) [0.011033] (2018-12-10,20.000000) [0.011033] (2018-12-10,0.000000) [0.011033] (2018-12-10,20.000000) [0.011033] (2018-12-10,0.020210) [0.296348] (2018-12-10,20.000000) [0.296348] (2018-12-10,20.000000) [0.296348] (2018-12-10,20.000000) [0.296348] (2018-12-10,20.000000) [0.296348] (2018-12-10,0.019869) [0.120323] (2018-12-11,12.600000) [0.139957] (2018-12-11,0.112574) [0.139957] (2018-12-11,12.510000) [0.139957] (2018-12-11,11.241197) [0.199547] (2018-12-11,0.115955) [0.199547] (2018-12-11,13.489766) [0.014379] (2018-12-11,15.000000) [0.014379] (2018-12-11,15.000000) [0.014379] (2018-12-11,0.000000) [0.014379] (2018-12-11,0.000000) [0.010977] (2018-12-11,15.000000) [0.010977] (2018-12-11,15.000000) [0.010977] (2018-12-11,15.000000) [0.010977] (2018-12-11,12.600000) [0.099260] (2018-12-11,12.600000) [0.099260] (2018-12-11,0.105925) [0.099260] (2018-12-11,15.000000) [0.008178] (2018-12-11,14.770459) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,12.600000) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,15.000000) [0.008178] (2018-12-11,12.600000) [0.011633] (2018-12-11,0.199040) [0.011633] (2018-12-11,12.330216) [0.011633] (2018-12-11,70.000000) [0.011633] (2018-12-12,12.600000) [0.018114] (2018-12-12,12.510000) [0.018114] (2018-12-12,12.600000) [0.018114] (2018-12-12,12.510000) [0.018114] (2018-12-12,12.600000) [0.018114] (2018-12-12,12.322056) [0.018114] (2018-12-12,15.000000) [0.054429] (2018-12-12,15.000000) [0.054429] (2018-12-12,15.000000) [0.054429] (2018-12-12,12.600000) [0.694897] (2018-12-12,4.271958) [0.694897] (2018-12-12,10.533861) [0.694897] (2018-12-12,15.000000) [0.018784] (2018-12-12,14.999932) [0.018784] (2018-12-12,15.000000) [0.308271] (2018-12-12,15.000000) [0.308271] (2018-12-12,15.000000) [0.308271] (2018-12-12,12.600000) [0.308271] (2018-12-12,15.000000) [0.308271] (2018-12-12,15.000000) [0.152560] (2018-12-12,15.000000) [0.152560] (2018-12-12,15.000000) [0.152560] (2018-12-13,12.600000) [0.089987] (2018-12-13,4.792915) [0.089987] (2018-12-13,0.000000) [0.151350] (2018-12-13,12.600000) [0.151350] (2018-12-13,0.051190) [0.151350] (2018-12-13,0.000000) [0.151350] (2018-12-13,12.600000) [0.112303] (2018-12-13,4.208000) [0.112303] (2018-12-13,12.510000) [0.112303] (2018-12-13,12.510000) [0.112303] (2018-12-13,12.510000) [0.112303] (2018-12-13,0.000000) [0.028022] (2018-12-13,15.000000) [0.087198] (2018-12-13,15.000000) [0.087198] (2018-12-13,12.600000) [0.120462] (2018-12-13,0.024642) [0.120462] (2018-12-13,15.000000) [0.009616] (2018-12-13,14.999916) [0.009616] (2018-12-14,12.695704) [0.019882] (2018-12-14,15.000000) [0.019882] (2018-12-14,19.728210) [0.019882] (2018-12-14,15.000000) [0.019882] (2018-12-14,12.600000) [0.019003] (2018-12-14,13.044829) [0.019003] (2018-12-14,15.000000) [0.019003] (2018-12-14,4.208000) [0.748686] (2018-12-14,12.600000) [0.748686] (2018-12-14,12.510000) [0.748686] (2018-12-14,12.600000) [0.007800] (2018-12-14,6.594565) [0.007800] (2018-12-14,12.510000) [0.007800] (2018-12-14,12.240431) [0.007800] (2018-12-14,12.600000) [0.289359] (2018-12-14,12.600000) [0.289359] (2018-12-14,4.120467) [0.289359] (2018-12-14,12.510000) [0.289359] (2018-12-14,12.600000) [0.607600] (2018-12-14,12.600000) [0.607600] (2018-12-14,4.208000) [0.607600] (2018-12-14,12.510000) [0.607600] (2018-12-15,15.000000) [0.020400] (2018-12-15,13.799781) [0.020400] (2018-12-15,15.000000) [0.020400] (2018-12-15,15.000000) [0.020400] (2018-12-15,15.000000) [0.076788] (2018-12-15,71.952874) [0.076788] (2018-12-15,15.000000) [0.076788] (2018-12-15,15.000000) [0.076788] (2018-12-15,12.600000) [0.019526] (2018-12-15,12.599913) [0.019526] (2018-12-15,15.000000) [6.603763] (2018-12-15,14.999995) [6.603763] (2018-12-15,14.999995) [1.995969] (2018-12-15,15.000000) [1.995969] (2018-12-15,12.600000) [1.760000] (2018-12-15,0.032290) [1.760000] (2018-12-15,12.600000) [0.158931] (2018-12-15,0.178164) [0.158931] (2018-12-15,12.600000) [0.082000] (2018-12-15,12.689966) [0.082000] (2018-12-15,12.600000) [0.082000] (2018-12-15,4.114795) [0.082000] (2018-12-15,12.510000) [0.082000] (2018-12-15,15.000000) [0.130740] (2018-12-15,14.999934) [0.130740] (2018-12-15,15.000000) [0.130740] (2018-12-15,0.000000) [0.053184] (2019-01-05,15.000000) [0.017491] (2019-01-05,14.999927) [0.017491] (2019-01-05,15.000000) [0.014392] (2019-01-05,14.999927) [0.014392] (2019-01-05,15.000000) [0.011211] (2019-01-05,12.600000) [0.011211] (2019-01-05,12.501000) [0.011211] (2019-01-06,15.000000) [0.014000] (2019-01-06,15.000000) [0.014000] (2019-01-06,12.550486) [0.014000] (2019-01-06,15.000000) [0.056585] (2019-01-06,15.000000) [0.056585] (2019-01-06,12.501000) [0.056585] (2019-01-06,15.000000) [0.056585] (2019-01-06,15.000000) [0.156104] (2019-01-06,15.000000) [0.156104] (2019-01-06,15.000000) [0.156104] (2019-01-06,12.501000) [0.156104] (2019-01-06,15.000000) [0.156104] (2019-01-07,12.600000) [0.099840] (2019-01-07,12.203499) [0.099840] (2019-01-07,15.000000) [0.099840] (2019-01-07,12.600000) [0.124562] (2019-01-07,12.600000) [0.124562] (2019-01-07,12.600000) [0.124562] (2019-01-07,15.000000) [0.124562] (2019-01-07,12.501000) [0.124562] (2019-01-07,15.000000) [0.124562] (2019-01-07,15.000000) [0.074774] (2019-01-07,14.999971) [0.074774] (2019-01-07,14.999970) [0.074774] (2019-01-07,15.000000) [0.074774] (2019-01-07,12.600000) [2.615420] (2019-01-07,12.501000) [2.615420] (2019-01-07,15.000000) [2.615420] (2019-01-07,15.000000) [0.010670] (2019-01-07,14.999922) [0.010670] (2019-01-07,12.600000) [0.162135] (2019-01-07,4.249680) [0.162135] (2019-01-07,12.600000) [0.222867] (2019-01-07,0.087133) [0.222867] (2019-01-08,12.726002) [0.035109] (2019-01-08,12.600000) [0.035109] (2019-01-08,12.501000) [0.035109] (2019-01-08,15.000000) [0.035109] (2019-01-10,14.999916) [0.011880] (2019-01-10,15.000000) [0.011880] (2019-01-10,12.600000) [3.763237] (2019-01-10,12.393883) [3.763237] (2019-01-10,12.510000) [3.763237] (2019-01-10,12.600000) [0.569350] (2019-01-10,12.501000) [0.569350] (2019-01-10,15.000000) [0.569350] (2019-01-10,15.000000) [0.569350] (2019-01-11,12.600000) [0.074113] (2019-01-11,0.480918) [0.074113] (2019-01-11,12.600000) [0.097601] (2019-01-11,12.600000) [0.097601] (2019-01-11,12.600000) [0.097601] (2019-01-11,4.208000) [0.097601] (2019-01-11,12.510000) [0.097601] (2019-01-11,8.504726) [0.097601] (2019-01-11,15.000000) [0.094241] (2019-01-11,14.999971) [0.094241] (2019-01-11,15.000000) [0.017649] (2019-01-11,14.999937) [0.017649] (2019-01-11,15.000000) [0.015648] (2019-01-11,14.999927) [0.015648] (2019-01-11,15.000000) [0.010656] (2019-01-11,14.999820) [0.010656] (2019-01-11,12.600000) [0.000618] (2019-01-11,0.138702) [0.000618] (2019-01-12,12.600000) [0.079248] (2019-01-12,0.090378) [0.079248] (2019-01-12,12.600000) [0.098969] (2019-01-12,12.501000) [0.098969] (2019-01-12,15.000000) [0.098969] (2019-01-12,15.000000) [0.098969] (2019-01-12,12.600000) [0.078695] (2019-01-12,0.157419) [0.078695] (2019-01-13,12.600000) [0.252401] (2019-01-13,4.291359) [0.252401] (2019-01-14,15.000000) [0.008970] (2019-01-14,14.999890) [0.008970] (2019-01-14,15.000000) [0.008970] (2019-01-14,15.000000) [0.032353] (2019-01-14,14.999945) [0.032353] (2019-01-14,15.000000) [0.015756] (2019-01-14,14.999927) [0.015756] (2019-01-14,74.900625) [0.200992] (2019-01-14,12.600000) [0.200992] (2019-01-14,12.600000) [0.200992] (2019-01-14,12.600000) [0.200992] (2019-01-14,12.600000) [0.200992] (2019-01-14,3.107507) [0.200992] (2019-01-14,12.510000) [0.200992] (2019-01-14,12.510000) [0.200992] (2019-01-14,12.510000) [0.200992] (2019-01-14,12.510000) [0.200992] (2019-01-14,15.000000) [0.009373] (2019-01-14,15.000000) [0.009373] (2019-01-14,15.000000) [0.009373] (2019-01-14,12.600000) [0.050347] (2019-01-14,12.501000) [0.050347] (2019-01-14,15.000000) [0.050347] (2019-01-15,12.600000) [0.098400] (2019-01-15,0.197788) [0.098400] (2019-01-15,12.600000) [0.139418] (2019-01-15,4.208000) [0.139418] (2019-01-15,4.668290) [3.964915] (2019-01-15,12.600000) [3.964915] (2019-01-17,15.000000) [0.088711] (2019-01-17,14.999975) [0.088711] (2019-01-17,12.501000) [0.061699] (2019-01-17,15.000000) [0.061699] (2019-01-17,15.000000) [0.061699] (2019-01-17,12.600000) [0.061699] (2019-01-17,12.600000) [0.174240] (2019-01-17,0.109024) [0.174240] (2019-01-17,15.000000) [0.014802] (2019-01-17,14.999922) [0.014802] (2019-01-17,0.000000) [0.000002] (2019-01-17,12.600000) [0.024995] (2019-01-17,12.599818) [0.024995] (2019-01-17,12.600000) [0.024995] (2019-01-17,15.000000) [0.024995] (2019-01-18,12.600000) [0.011982] (2019-01-18,12.726002) [0.011982] (2019-01-18,12.600000) [0.011982] (2019-01-18,12.501000) [0.011982] (2019-01-18,15.000000) [0.011982] (2019-01-18,12.600000) [0.186782] (2019-01-18,12.501000) [0.186782] (2019-01-18,15.000000) [0.186782] (2019-01-18,15.000000) [0.186782] (2019-01-18,15.000000) [0.018698] (2019-01-18,14.999864) [0.018698] (2019-01-18,15.000000) [0.018698] (2019-01-18,15.000000) [0.018698] (2019-01-18,15.000000) [0.186284] (2019-01-18,15.000000) [0.186284] (2019-01-18,12.600000) [1.884205] (2019-01-18,12.209326) [1.884205] (2019-01-18,15.000000) [0.028472] (2019-01-18,15.000000) [0.028472] (2019-01-18,15.000000) [0.028472] (2019-01-18,32.249746) [0.028472] (2019-01-19,12.600000) [0.097141] (2019-01-19,0.013512) [0.097141] (2019-01-19,12.600000) [0.096600] (2019-01-19,12.278889) [0.096600] (2019-01-19,11.346525) [0.124422] (2019-01-19,12.600000) [0.124422] (2019-01-19,12.600000) [0.124422] (2019-01-19,12.600000) [0.194724] (2019-01-19,4.620853) [0.194724] (2019-01-20,5.483094) [0.121516] (2019-01-20,12.600000) [0.121516] (2019-01-20,15.000000) [0.079965] (2019-01-20,15.000000) [0.079965] (2019-01-20,15.000000) [0.079965] (2019-01-20,12.501000) [0.079965] (2019-01-20,14.541376) [0.079965] (2019-01-20,12.600000) [0.079965] (2019-01-20,12.600000) [0.079965] (2019-01-20,12.600000) [0.079965] (2019-01-20,12.600000) [0.079965] (2019-01-20,13.489766) [0.079965] (2019-01-20,15.000000) [0.069965] (2019-01-20,14.999969) [0.069965] (2019-01-20,15.000000) [0.069965] (2019-01-20,15.000000) [0.059965] (2019-01-20,15.000000) [0.059965] (2019-01-20,14.999969) [0.059965] (2019-01-21,15.000000) [0.019869] (2019-01-21,14.999937) [0.019869] (2019-01-21,12.600000) [1.660927] (2019-01-21,12.501000) [1.660927] (2019-01-21,15.000000) [1.660927] (2019-01-21,15.000000) [0.149002] (2019-01-21,12.599996) [0.149002] (2019-01-21,15.000000) [0.149002] (2019-01-21,14.999932) [0.013695] (2019-01-21,15.000000) [0.013695] (2019-01-21,0.064048) [0.246767] (2019-01-21,12.600000) [0.246767] (2019-01-22,12.600000) [0.136635] (2019-01-22,12.486404) [0.136635] (2019-01-22,15.000000) [0.073070] (2019-01-22,14.999969) [0.073070] (2019-01-22,15.000000) [0.060162] (2019-01-22,14.999966) [0.060162] (2019-01-22,15.000000) [0.012124] (2019-01-22,14.999916) [0.012124] (2019-01-22,15.000000) [0.025987] (2019-01-22,15.230000) [0.025987] (2019-01-22,15.000000) [0.025987] (2019-01-22,15.000000) [0.025987] (2019-01-22,15.000000) [0.025987] (2019-01-22,15.229656) [0.025987] (2019-01-22,15.000000) [0.025987] (2019-01-22,12.501000) [0.025987] (2019-01-22,14.999927) [0.015940] (2019-01-22,15.000000) [0.015940] (2019-01-22,14.999922) [0.012789] (2019-01-22,15.000000) [0.012789] (2019-01-22,12.600000) [0.118554] (2019-01-22,4.887451) [0.118554] (2019-01-22,2.930724) [0.126600] (2019-01-22,12.600000) [0.126600] (2019-01-23,12.600000) [0.085597] (2019-01-23,0.047393) [0.085597] (2019-01-23,12.600000) [0.026950] (2019-01-23,12.600000) [0.026950] (2019-01-23,12.501000) [0.026950] (2019-01-23,15.000000) [0.026950] (2019-01-23,12.600000) [0.483168] (2019-01-23,12.600000) [0.483168] (2019-01-23,12.600000) [0.483168] (2019-01-23,12.600000) [0.483168] (2019-01-23,12.510000) [0.483168] (2019-01-23,0.000000) [0.023460] (2019-01-23,12.501000) [0.023460] (2019-01-23,15.000000) [0.075332] (2019-01-23,14.999966) [0.075332] (2019-01-23,12.600000) [0.011127] (2019-01-23,12.501000) [0.011127] (2019-01-23,12.600000) [0.040750] (2019-01-23,12.599953) [0.040750] (2019-01-23,15.000000) [0.050377] (2019-01-23,15.000000) [0.050377] (2019-01-23,15.000000) [0.050377] (2019-01-23,15.000000) [0.050377] (2019-01-23,14.885229) [0.050377] (2019-01-23,14.541376) [0.050377] (2019-01-23,14.198667) [0.050377] (2019-01-23,14.770459) [0.050377] (2019-01-23,14.655917) [0.050377] (2019-01-23,15.000000) [0.050377] (2019-01-23,14.999956) [0.033794] (2019-01-23,15.000000) [0.033794] (2019-01-23,15.000000) [0.010139] (2019-01-23,14.999911) [0.010139] (2019-01-23,15.000000) [0.021331] (2019-01-23,14.999941) [0.021331] (2019-01-24,15.000000) [0.084574] (2019-01-24,15.000000) [0.084574] (2019-01-24,12.501000) [0.084574] (2019-01-24,15.000000) [0.084574] (2019-01-24,15.000000) [0.084574] (2019-01-24,12.600000) [0.192603] (2019-01-24,12.600000) [0.192603] (2019-01-24,0.131854) [0.192603] (2019-01-24,15.000000) [0.027060] (2019-01-24,14.999945) [0.027060] (2019-01-24,15.000000) [0.025073] (2019-01-24,14.999949) [0.025073] (2019-01-24,14.999949) [0.025073] (2019-01-24,15.000000) [0.025073] (2019-01-24,15.000000) [0.027060] (2019-01-24,14.999982) [0.027060] (2019-01-24,15.000000) [0.026998] (2019-01-24,14.999949) [0.026998] (2019-01-24,15.000000) [0.026998] (2019-01-24,14.999949) [0.026998] (2019-01-24,12.600000) [0.133100] (2019-01-24,12.501000) [0.133100] (2019-01-24,15.000000) [0.133100] (2019-01-24,15.000000) [0.133100] (2019-01-24,12.600000) [0.832832] (2019-01-24,12.600000) [0.832832] (2019-01-24,12.600000) [0.832832] (2019-01-24,12.600000) [0.832832] (2019-01-24,12.600000) [0.832832] (2019-01-24,4.208000) [0.832832] (2019-01-24,11.748321) [0.832832] (2019-01-24,15.000000) [0.059819] (2019-01-24,15.000000) [0.059819] (2019-01-24,15.000000) [0.059819] (2019-01-24,14.430283) [0.059819] (2019-01-24,15.000000) [0.035811] (2019-01-24,14.999953) [0.035811] (2019-01-24,15.000000) [0.015710] (2019-01-24,12.501000) [0.015710] (2019-01-24,15.000000) [0.015710] (2019-01-24,15.000000) [0.015710] (2019-01-24,5.816835) [0.687428] (2019-01-24,12.600000) [0.687428] (2019-01-25,15.000000) [0.030989] (2019-01-25,15.000000) [0.030989] (2019-01-25,14.999916) [0.030989] (2019-01-25,12.600000) [0.364835] (2019-01-25,12.600000) [0.364835] (2019-01-25,6.087379) [0.364835] (2019-01-25,15.000000) [0.041044] (2019-01-25,14.999956) [0.041044] (2019-01-25,15.000000) [0.007362] (2019-01-25,15.000000) [0.007362] (2019-01-25,15.000000) [0.007362] (2019-01-25,12.501000) [0.007362] (2019-01-25,15.000000) [0.010221] (2019-01-25,14.999916) [0.010221] (2019-01-25,22.700000) [0.005667] (2019-01-25,12.600000) [0.119037] (2019-01-25,12.600000) [0.119037] (2019-01-25,12.600000) [0.119037] (2019-01-25,15.000000) [0.119037] (2019-01-25,12.712600) [0.119037] (2019-01-25,12.501000) [0.119037] (2019-01-25,15.000000) [0.119037] (2019-01-25,15.000000) [0.011439] (2019-01-25,12.501000) [0.011439] (2019-01-25,15.000000) [0.011439] (2019-01-25,15.000000) [0.011439] (2019-01-25,12.600000) [0.110708] (2019-01-25,12.258787) [0.110708] (2019-01-26,12.600000) [0.105188] (2019-01-26,12.600000) [0.105188] (2019-01-26,12.600000) [0.105188] (2019-01-26,7.839895) [0.105188] (2019-01-26,26.787600) [0.105188] (2019-01-26,12.600000) [0.070000] (2019-01-26,12.599930) [0.070000] (2019-01-26,15.000000) [0.070000] (2019-01-27,12.501000) [0.014457] (2019-01-27,12.600000) [0.014457] (2019-01-27,15.000000) [0.199680] (2019-01-27,14.231813) [0.199680] (2019-01-27,15.000000) [0.199680] (2019-01-28,15.000000) [0.038965] (2019-01-28,15.000000) [0.038965] (2019-01-28,12.501000) [0.038965] (2019-01-28,15.000000) [0.038965] (2019-01-28,12.600000) [0.235200] (2019-01-28,12.426473) [0.235200] (2019-01-28,12.600000) [0.156879] (2019-01-28,12.599849) [0.156879] (2019-01-28,15.000000) [0.156879] (2019-01-28,15.000000) [0.156879] (2019-01-28,15.000000) [0.014428] (2019-01-28,12.501000) [0.014428] (2019-01-28,15.000000) [0.014428] (2019-01-28,12.600000) [0.216010] (2019-01-28,0.173191) [0.216010] (2019-01-28,12.600000) [2.703762] (2019-01-28,12.249854) [2.703762] (2019-01-28,15.000000) [2.703762] (2019-01-28,15.000000) [0.027803] (2019-01-28,14.999873) [0.027803] (2019-01-28,15.000000) [0.027803] (2019-01-28,15.000000) [0.027803] (2019-01-28,15.230000) [0.509685] (2019-01-28,14.541376) [0.509685] (2019-01-28,15.345204) [0.509685] (2019-01-28,15.210769) [0.509685] (2019-01-28,15.230000) [0.509685] (2019-01-28,15.230230) [0.509685] (2019-01-28,15.000000) [0.509685] (2019-01-28,14.999990) [0.509685] (2019-01-28,15.000000) [0.115408] (2019-01-28,14.999982) [0.115408] (2019-01-28,15.000000) [0.012361] (2019-01-28,14.999927) [0.012361] (2019-01-29,15.000000) [0.095891] (2019-01-29,14.999969) [0.095891] (2019-01-29,12.600000) [0.107860] (2019-01-29,12.423063) [0.107860] (2019-01-29,12.600000) [0.100128] (2019-01-29,12.510000) [0.100128] (2019-01-29,12.600000) [0.089278] (2019-01-29,12.501000) [0.089278] (2019-01-29,15.000000) [0.089278] (2019-01-29,12.600000) [0.115974] (2019-01-29,12.510000) [0.115974] (2019-01-29,12.480871) [0.115974] (2019-01-29,15.000000) [0.068789] (2019-01-29,14.999949) [0.068789] (2019-01-29,15.000000) [0.059965] (2019-01-29,14.999963) [0.059965] (2019-01-30,15.000000) [0.009498] (2019-01-30,14.999904) [0.009498] (2019-01-30,12.600000) [0.219300] (2019-01-30,4.285007) [0.219300] (2019-01-30,15.000000) [0.168186] (2019-01-30,12.501000) [0.168186] (2019-01-30,15.000000) [0.168186] (2019-01-30,12.600000) [0.009241] (2019-01-30,0.113533) [0.009241] (2019-01-31,12.600000) [0.252096] (2019-01-31,12.600000) [0.252096] (2019-01-31,0.247255) [0.252096] (2019-01-31,14.999904) [0.022411] (2019-01-31,15.000000) [0.022411] (2019-01-31,12.600000) [0.538417] (2019-01-31,12.600000) [0.538417] (2019-01-31,7.149829) [0.538417] (2019-02-01,15.000000) [0.207322] (2019-02-01,15.000000) [0.207322] (2019-02-01,12.501000) [0.207322] (2019-02-01,15.000000) [0.207322] (2019-02-02,12.600000) [0.038259] (2019-02-02,12.600000) [0.038259] (2019-02-02,12.501000) [0.038259] (2019-02-02,15.000000) [0.038259] (2019-02-02,15.000000) [0.087439] (2019-02-02,12.501000) [0.087439] (2019-02-02,15.000000) [0.087439] (2019-02-03,12.600000) [0.557983] (2019-02-03,14.999983) [0.557983] (2019-02-03,15.000000) [0.557983] (2019-02-03,12.600000) [0.127364] (2019-02-03,12.501000) [0.127364] (2019-02-03,15.000000) [0.127364] (2019-02-03,15.000000) [0.018644] (2019-02-03,14.999937) [0.018644] (2019-02-03,15.000000) [0.199398] (2019-02-03,14.999969) [0.199398] (2019-02-05,0.000000) [0.004411] (2019-02-06,12.600000) [0.189960] (2019-02-06,0.061563) [0.189960] (2019-02-06,12.600000) [0.038073] (2019-02-06,12.501000) [0.038073] (2019-02-06,15.000000) [0.038073] (2019-02-06,12.600000) [0.053907] (2019-02-06,12.600000) [0.053907] (2019-02-06,12.501000) [0.053907] (2019-02-06,15.000000) [0.053907] (2019-02-06,12.600000) [0.013875] (2019-02-06,12.600000) [0.013875] (2019-02-06,7.922707) [0.013875] (2019-02-06,12.510000) [0.013875] (2019-02-06,12.510000) [0.013875] (2019-02-06,12.510000) [0.013875] (2019-02-07,12.600000) [0.833574] (2019-02-07,12.600000) [0.833574] (2019-02-07,12.305842) [0.833574] (2019-02-07,12.510000) [0.833574] (2019-02-07,12.600000) [0.019974] (2019-02-07,12.599740) [0.019974] (2019-02-07,15.000000) [0.019974] (2019-02-07,12.600000) [0.992294] (2019-02-07,12.599956) [0.992294] (2019-02-07,12.600000) [0.992294] (2019-02-08,12.600000) [0.020000] (2019-02-08,12.600000) [0.020000] (2019-02-08,12.501000) [0.020000] (2019-02-08,15.000000) [0.020000] (2019-02-08,15.000000) [0.029736] (2019-02-08,14.999871) [0.029736] (2019-02-08,12.600000) [0.015004] (2019-02-08,12.501000) [0.015004] (2019-02-08,12.600000) [0.087400] (2019-02-08,12.501000) [0.087400] (2019-02-08,15.000000) [0.087400] (2019-02-08,15.000000) [0.087400] (2019-02-08,12.600000) [0.079320] (2019-02-08,12.510000) [0.079320] (2019-02-08,12.600000) [0.011401] (2019-02-08,12.501000) [0.011401] (2019-02-08,15.000000) [0.011401] (2019-02-08,15.000000) [0.011401] (2019-02-09,12.600000) [0.175200] (2019-02-09,12.227568) [0.175200] (2019-02-10,12.600000) [0.176694] (2019-02-10,12.600000) [0.176694] (2019-02-10,12.510000) [0.176694] (2019-02-10,12.510000) [0.176694] (2019-02-10,12.510000) [0.176694] (2019-02-10,12.510000) [0.176694] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.409312) [0.387907] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.510000) [0.387907] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.510000) [0.387907] (2019-02-11,12.600000) [0.387907] (2019-02-11,12.510000) [0.387907] (2019-02-11,15.000000) [0.784303] (2019-02-11,14.999986) [0.784303] (2019-02-11,12.600000) [0.940099] (2019-02-11,12.600000) [0.940099] (2019-02-11,12.398933) [0.940099] (2019-02-11,12.600000) [0.965544] (2019-02-11,9.988177) [0.965544] (2019-02-11,12.600000) [0.073200] (2019-02-11,12.494186) [0.073200] (2019-02-11,12.510000) [0.073200] (2019-02-12,12.600000) [0.105228] (2019-02-12,0.802815) [0.105228] (2019-02-12,12.600000) [0.019049] (2019-02-12,15.000000) [0.019049] (2019-02-12,12.501000) [0.019049] (2019-02-12,15.000000) [0.019049] (2019-02-12,15.000000) [0.011544] (2019-02-12,12.501000) [0.011544] (2019-02-12,15.000000) [0.011544] (2019-02-12,15.000000) [0.011544] (2019-02-12,15.000000) [0.023972] (2019-02-12,12.600000) [0.023972] (2019-02-12,12.501000) [0.023972] (2019-02-12,15.000000) [0.023972] (2019-02-12,12.600000) [0.193620] (2019-02-12,11.703230) [0.193620] (2019-02-12,0.000000) [0.193620] (2019-02-12,0.000000) [0.080827] (2019-02-13,12.600000) [0.136875] (2019-02-13,15.000000) [0.136875] (2019-02-13,12.501000) [0.136875] (2019-02-13,15.000000) [0.009965] (2019-02-13,14.999911) [0.009965] (2019-02-13,12.600000) [0.009965] (2019-02-13,12.365096) [0.009965] (2019-02-13,12.600000) [0.014039] (2019-02-13,12.501000) [0.014039] (2019-02-13,12.600000) [0.082630] (2019-02-13,12.599979) [0.082630] (2019-02-15,12.600000) [0.083336] (2019-02-15,0.110340) [0.083336] (2019-02-16,12.600000) [0.010249] (2019-02-16,12.501000) [0.010249] (2019-02-17,12.600000) [0.097085] (2019-02-17,12.475161) [0.097085] (2019-02-17,15.000000) [0.746763] (2019-02-17,12.600000) [0.746763] (2019-02-17,12.600000) [0.746763] (2019-02-17,12.600000) [0.746763] (2019-02-17,12.501000) [0.746763] (2019-02-17,15.000000) [0.746763] (2019-02-17,12.600000) [0.746763] (2019-02-17,15.000000) [0.746763] (2019-02-17,12.600000) [0.681562] (2019-02-17,12.600000) [0.681562] (2019-02-17,12.600000) [0.681562] (2019-02-17,15.000000) [0.681562] (2019-02-17,15.000000) [0.681562] (2019-02-17,12.501000) [0.681562] (2019-02-18,12.600000) [0.038964] (2019-02-18,12.501000) [0.038964] (2019-02-18,15.000000) [0.038964] (2019-02-19,15.000000) [0.015928] (2019-02-19,15.000000) [0.015928] (2019-02-19,14.885003) [0.015928] (2019-02-19,15.000000) [0.015928] (2019-02-19,12.600000) [0.074888] (2019-02-19,6.235381) [0.074888] (2019-02-19,12.600000) [0.074888] (2019-02-19,12.600000) [0.039553] (2019-02-19,12.501000) [0.039553] (2019-02-19,15.000000) [0.039553] (2019-02-19,12.600000) [0.016136] (2019-02-19,12.501000) [0.016136] (2019-02-19,15.000000) [0.016136] (2019-02-20,12.600000) [0.206586] (2019-02-20,12.501000) [0.206586] (2019-02-20,15.000000) [0.206586] (2019-02-20,15.000000) [0.252323] (2019-02-20,15.000000) [0.252323] (2019-02-20,12.501000) [0.252323] (2019-02-20,15.000000) [0.252323] (2019-02-20,12.600000) [0.233318] (2019-02-20,0.078104) [0.233318] (2019-02-20,12.600000) [0.261468] (2019-02-20,7.966759) [0.261468] (2019-02-20,12.510000) [0.261468] (2019-02-20,12.600000) [0.634800] (2019-02-20,12.600000) [0.634800] (2019-02-20,0.189821) [0.634800] (2019-02-21,12.600000) [0.200000] (2019-02-21,0.077727) [0.200000] (2019-02-22,15.000000) [0.073859] (2019-02-22,14.885200) [0.073859] (2019-02-22,15.000000) [0.073859] (2019-02-22,12.600000) [0.079792] (2019-02-22,0.039375) [0.079792] (2019-02-23,12.600000) [0.073098] (2019-02-23,12.599986) [0.073098] (2019-02-23,12.600000) [0.232502] (2019-02-23,0.166125) [0.232502] (2019-02-23,12.600000) [0.296413] (2019-02-23,12.600000) [0.296413] (2019-02-23,8.149699) [0.296413] (2019-02-23,11.514280) [0.296413] (2019-02-23,12.510000) [0.296413] (2019-02-24,15.000000) [0.084203] (2019-02-24,15.000000) [0.084203] (2019-02-24,15.000000) [0.084203] (2019-02-24,12.600000) [0.097994] (2019-02-24,0.179813) [0.097994] (2019-02-24,15.115000) [0.168687] (2019-02-24,15.000000) [0.168687] (2019-02-24,15.000000) [0.168687] (2019-02-24,15.000000) [0.168687] (2019-02-24,14.999843) [0.168687] (2019-02-24,32.250000) [0.168687] (2019-02-24,14.999937) [0.014524] (2019-02-24,15.000000) [0.014524] (2019-02-25,12.600000) [0.010183] (2019-02-25,12.501000) [0.010183] (2019-02-26,12.600000) [0.014802] (2019-02-26,12.501000) [0.014802] (2019-02-26,12.600000) [0.014159] (2019-02-26,12.501000) [0.014159] (2019-02-26,15.000000) [0.014159] (2019-02-26,0.078716) [4.380053] (2019-02-26,12.600000) [0.841789] (2019-02-26,12.600000) [0.841789] (2019-02-26,1.316114) [0.841789] (2019-02-26,12.600000) [0.075974] (2019-02-26,12.315898) [0.075974] (2019-02-26,12.510000) [0.075974] (2019-02-27,15.000000) [0.006163] (2019-02-27,14.999987) [0.006163] (2019-02-27,12.600000) [0.247800] (2019-02-27,7.880462) [0.247800] (2019-02-27,12.420072) [0.247800] (2019-02-27,12.510000) [0.247800] (2019-02-27,12.600000) [0.247800] (2019-02-27,12.600000) [0.247800] (2019-02-27,12.510000) [0.247800] (2019-02-27,12.600000) [0.247800] (2019-02-27,12.600000) [0.247800] (2019-02-27,12.600000) [0.716480] (2019-02-27,0.085413) [0.716480] (2019-02-27,12.600000) [0.795600] (2019-02-27,12.600000) [0.795600] (2019-02-27,12.600000) [0.795600] (2019-02-27,1.908485) [0.795600] (2019-02-27,12.600000) [0.795600] (2019-02-27,12.510000) [0.795600] (2019-02-27,5.694805) [0.353771] (2019-02-27,12.600000) [0.353771] (2019-02-27,12.600000) [0.353771] (2019-02-27,21.000000) [0.008899] (2019-02-27,20.999975) [0.008899] (2019-02-27,15.000000) [0.016006] (2019-02-27,15.000000) [0.016006] (2019-02-27,12.501000) [0.016006] (2019-02-27,15.000000) [0.084522] (2019-02-27,15.000000) [0.084522] (2019-02-27,15.000000) [0.084522] (2019-02-27,12.501000) [0.084522] (2019-02-27,15.000000) [0.084522] (2019-02-27,15.000000) [0.084522] (2019-02-28,12.600000) [0.134206] (2019-02-28,0.092907) [0.134206] (2019-02-28,15.000000) [0.194004] (2019-02-28,15.000000) [0.194004] (2019-02-28,15.000000) [0.194004] (2019-02-28,12.501000) [0.194004] (2019-02-28,15.000000) [0.012381] (2019-02-28,15.000000) [0.012381] (2019-02-28,15.000000) [0.012381] (2019-02-28,12.600000) [0.314580] (2019-02-28,12.600000) [0.314580] (2019-02-28,0.212064) [0.314580] (2019-02-28,12.600000) [0.381377] (2019-02-28,6.083836) [0.381377] (2019-02-28,12.600000) [0.533520] (2019-02-28,11.792585) [0.533520] (2019-02-28,12.600000) [3.291201] (2019-02-28,12.600000) [3.291201] (2019-02-28,7.622097) [3.291201] (2019-02-28,12.600000) [0.404664] (2019-02-28,0.107294) [0.404664] (2019-02-28,12.600000) [0.367120] (2019-02-28,6.935739) [0.367120] (2019-03-01,15.000000) [0.011735] (2019-03-01,15.000000) [0.011735] (2019-03-01,12.501000) [0.011735] (2019-03-01,15.000000) [0.120438] (2019-03-01,12.501000) [0.120438] (2019-03-01,15.000000) [0.120438] (2019-03-01,15.000000) [0.120438] (2019-03-01,12.600000) [0.020699] (2019-03-01,12.501000) [0.020699] (2019-03-01,15.000000) [0.020699] (2019-03-01,15.000000) [0.020699] (2019-03-02,15.000000) [1.047756] (2019-03-02,14.999853) [1.047756] (2019-03-02,15.000000) [1.047756] (2019-03-02,15.000000) [1.047756] (2019-03-02,15.000000) [0.012775] (2019-03-02,14.999922) [0.012775] (2019-03-02,12.600000) [0.033683] (2019-03-02,12.501000) [0.033683] (2019-03-02,15.000000) [0.033683] (2019-03-02,15.000000) [0.033683] (2019-03-02,15.000229) [0.187483] (2019-03-02,15.000000) [0.187483] (2019-03-02,15.000000) [0.187483] (2019-03-02,15.000000) [0.187483] (2019-03-02,12.501000) [0.187483] (2019-03-03,12.600000) [0.100810] (2019-03-03,0.083060) [0.100810] (2019-03-03,13.044883) [0.045360] (2019-03-03,12.501000) [0.045360] (2019-03-03,15.000000) [0.045360] (2019-03-03,13.489766) [0.038062] (2019-03-03,15.000000) [0.038062] (2019-03-03,12.501000) [0.038062] (2019-03-04,12.600000) [0.011672] (2019-03-04,15.000000) [0.011672] (2019-03-04,15.000000) [0.011672] (2019-03-04,12.501000) [0.011672] (2019-03-04,15.000000) [0.012069] (2019-03-04,15.000000) [0.012069] (2019-03-04,12.501000) [0.012069] (2019-03-04,15.000000) [0.012069] (2019-03-04,15.000000) [0.035524] (2019-03-04,12.600000) [0.035524] (2019-03-04,12.501000) [0.035524] (2019-03-04,15.000000) [0.035524] (2019-03-05,15.000000) [0.012815] (2019-03-05,14.999922) [0.012815] (2019-03-06,10.046344) [0.127440] (2019-03-06,0.202809) [0.127440] (2019-03-06,12.600000) [0.070601] (2019-03-06,12.600000) [0.070601] (2019-03-06,12.510000) [0.070601] (2019-03-06,12.061078) [0.070601] (2019-03-06,12.510000) [0.070601] (2019-03-06,12.510000) [0.070601] (2019-03-06,12.510000) [0.070601] (2019-03-06,15.000000) [0.008796] (2019-03-06,14.999873) [0.008796] (2019-03-06,15.000000) [0.008796] (2019-03-06,12.441284) [0.037382] (2019-03-06,15.000000) [0.037382] (2019-03-06,12.600000) [0.099200] (2019-03-06,0.049393) [0.099200] (2019-03-07,7.950361) [0.217861] (2019-03-07,12.106269) [0.217861] (2019-03-07,10.250087) [0.217861] (2019-03-07,12.600000) [0.217861] (2019-03-07,15.000000) [0.217861] (2019-03-07,12.600000) [0.071114] (2019-03-07,0.105452) [0.071114] (2019-03-07,11.794336) [0.071114] (2019-03-07,11.971509) [0.071114] (2019-03-07,12.600000) [0.019799] (2019-03-07,12.599906) [0.019799] (2019-03-07,12.600000) [0.019799] (2019-03-07,12.600000) [0.069599] (2019-03-07,12.599973) [0.069599] (2019-03-07,12.600000) [0.068155] (2019-03-07,12.599941) [0.068155] (2019-03-08,12.600000) [0.760989] (2019-03-08,12.312155) [0.760989] (2019-03-08,15.000000) [0.760989] (2019-03-09,12.600000) [0.102400] (2019-03-09,12.415083) [0.102400] (2019-03-09,12.600000) [0.078820] (2019-03-09,12.600000) [0.078820] (2019-03-09,12.510000) [0.078820] (2019-03-09,12.510000) [0.078820] (2019-03-09,12.600000) [0.097841] (2019-03-09,7.880462) [0.097841] (2019-03-09,15.000000) [0.097841] (2019-03-10,15.000000) [0.009579] (2019-03-10,12.501000) [0.009579] (2019-03-10,15.000000) [0.009579] (2019-03-10,15.000000) [0.028311] (2019-03-10,7.499910) [0.028311] (2019-03-10,15.000000) [0.016655] (2019-03-10,14.999927) [0.016655] (2019-03-10,14.999927) [0.013916] (2019-03-10,15.000000) [0.013916] (2019-03-10,15.000000) [0.009993] (2019-03-10,14.999911) [0.009993] (2019-03-10,15.000000) [0.009064] (2019-03-10,14.999843) [0.009064] (2019-03-10,15.000000) [0.004857] (2019-03-10,14.999897) [0.004857] (2019-03-10,12.600000) [1.443097] (2019-03-10,12.600000) [1.443097] (2019-03-10,7.966759) [1.443097] (2019-03-10,12.600000) [1.443097] (2019-03-10,15.000000) [1.443097] (2019-03-11,15.000000) [0.009930] (2019-03-11,14.999904) [0.009930] (2019-03-11,15.000000) [0.002856] (2019-03-11,14.999980) [0.002856] (2019-03-11,12.600000) [0.182918] (2019-03-11,12.412575) [0.182918] (2019-03-11,6.255000) [0.182918] (2019-03-11,12.600000) [0.028100] (2019-03-11,15.000000) [0.028100] (2019-03-11,12.501000) [0.028100] (2019-03-11,15.000000) [0.028100] (2019-03-12,12.600000) [0.085170] (2019-03-12,12.600000) [0.085170] (2019-03-12,12.510000) [0.085170] (2019-03-12,12.600000) [0.110230] (2019-03-12,12.510000) [0.110230] (2019-03-13,12.600000) [0.011335] (2019-03-13,12.600000) [0.011335] (2019-03-13,15.000000) [0.011335] (2019-03-13,12.501000) [0.011335] (2019-03-13,15.000000) [0.119549] (2019-03-13,14.999971) [0.119549] (2019-03-14,12.600000) [0.146141] (2019-03-14,12.600000) [0.146141] (2019-03-14,4.274724) [0.146141] (2019-03-15,15.000000) [0.004117] (2019-03-15,14.999966) [0.004117] (2019-03-15,25.878329) [80.475860] (2019-03-15,12.244052) [80.475860] (2019-03-15,11.685770) [80.475860] (2019-03-15,98.527136) [80.475860] (2019-03-15,12.600000) [80.475860] (2019-03-15,12.510000) [80.475860] (2019-03-15,12.600000) [34.164800] (2019-03-15,21.287446) [34.164800] (2019-03-15,15.000000) [0.060752] (2019-03-15,14.999961) [0.060752] (2019-03-15,12.600000) [0.859200] (2019-03-15,12.600000) [0.859200] (2019-03-15,5.951352) [0.859200] (2019-03-15,12.600000) [0.859200] (2019-03-15,12.600000) [0.859200] (2019-03-15,12.600000) [0.090044] (2019-03-15,12.490400) [0.090044] (2019-03-15,12.510000) [0.090044] (2019-03-16,12.600000) [0.083175] (2019-03-16,4.109352) [0.083175] (2019-03-16,12.600000) [0.432853] (2019-03-16,12.510000) [0.432853] (2019-03-16,12.510000) [0.432853] (2019-03-17,15.000000) [0.007830] (2019-03-17,15.000000) [0.007830] (2019-03-17,14.999922) [0.007830] (2019-03-17,191.450217) [0.009699] (2019-03-17,15.000000) [0.009699] (2019-03-17,14.999911) [0.009699] (2019-03-17,15.000000) [0.009398] (2019-03-17,14.999911) [0.009398] (2019-03-17,12.600000) [0.029547] (2019-03-17,12.484384) [0.029547] (2019-03-17,12.600000) [0.377443] (2019-03-17,8.013148) [0.377443] (2019-03-17,12.600000) [1.232478] (2019-03-17,12.286610) [1.232478] (2019-03-17,12.600000) [0.123264] (2019-03-17,6.666359) [0.123264] (2019-03-18,15.000000) [0.010000] (2019-03-18,14.999911) [0.010000] (2019-03-18,12.600000) [0.277144] (2019-03-18,12.510000) [0.277144] (2019-03-18,12.600000) [0.239401] (2019-03-18,7.966759) [0.239401] (2019-03-18,27.397345) [0.239401] (2019-03-18,12.600000) [0.067811] (2019-03-18,8.231562) [0.067811] (2019-03-18,12.600000) [0.032934] (2019-03-18,12.510000) [0.032934] (2019-03-19,12.600000) [0.012440] (2019-03-19,12.510000) [0.012440] (2019-03-19,12.378487) [0.394168] (2019-03-19,12.600000) [0.394168] (2019-03-19,12.600000) [0.022670] (2019-03-19,15.000000) [0.022670] (2019-03-19,15.000000) [0.022670] (2019-03-19,12.501000) [0.022670] (2019-03-19,12.600000) [0.015571] (2019-03-19,12.510000) [0.015571] (2019-03-19,12.600000) [0.041912] (2019-03-19,0.000000) [0.041912] (2019-03-19,15.000000) [7.090995] (2019-03-19,15.000000) [7.090995] (2019-03-19,12.600000) [7.090995] (2019-03-19,12.501000) [7.090995] (2019-03-19,12.600000) [0.038208] (2019-03-19,12.510000) [0.038208] (2019-03-19,12.600000) [0.080755] (2019-03-19,12.600000) [0.080755] (2019-03-19,12.510000) [0.080755] (2019-03-20,15.000000) [0.049599] (2019-03-20,14.999961) [0.049599] (2019-03-20,12.600000) [0.021598] (2019-03-20,15.000000) [0.021598] (2019-03-20,15.000000) [0.021598] (2019-03-20,12.501000) [0.021598] (2019-03-21,15.000000) [0.019880] (2019-03-21,14.999932) [0.019880] (2019-03-21,12.600000) [0.084753] (2019-03-21,11.971509) [0.084753] (2019-03-22,12.600000) [0.013446] (2019-03-22,15.000000) [0.013446] (2019-03-22,12.599889) [0.013446] (2019-03-22,12.510000) [0.016341] (2019-03-22,12.600000) [0.016341] (2019-03-22,12.600000) [0.018122] (2019-03-22,12.330216) [0.018122] (2019-03-22,12.600000) [0.029580] (2019-03-22,12.478339) [0.029580] (2019-03-22,12.600000) [0.004220] (2019-03-22,9.474403) [0.004220] (2019-03-22,12.600000) [0.033539] (2019-03-22,9.048363) [0.033539] (2019-03-22,12.600000) [0.556390] (2019-03-22,12.510000) [0.556390] (2019-03-22,12.600000) [0.009731] (2019-03-22,12.510000) [0.009731] (2019-03-22,12.600000) [0.074767] (2019-03-22,12.510000) [0.074767] (2019-03-22,15.000000) [0.003373] (2019-03-22,14.999971) [0.003373] (2019-03-22,12.510000) [0.058948] (2019-03-22,12.510000) [0.058948] (2019-03-22,12.600000) [0.058948] (2019-03-23,15.000000) [0.064667] (2019-03-23,15.000000) [0.064667] (2019-03-23,14.999927) [0.064667] (2019-03-23,15.000000) [0.064667] (2019-03-23,12.436404) [0.035200] (2019-03-23,12.600000) [0.035200] (2019-03-23,12.600000) [0.043789] (2019-03-23,12.510000) [0.043789] (2019-03-24,12.600000) [0.048000] (2019-03-24,12.461588) [0.048000] (2019-03-24,15.000000) [0.046518] (2019-03-24,14.999961) [0.046518] (2019-03-24,12.600000) [0.046518] (2019-03-24,15.000000) [0.046518] (2019-03-24,15.000000) [0.046518] (2019-03-24,15.000000) [0.046518] (2019-03-24,12.600000) [0.030430] (2019-03-24,6.992718) [0.030430] (2019-03-24,12.600000) [0.100346] (2019-03-24,6.227175) [0.100346] (2019-03-24,6.234469) [0.358551] (2019-03-24,12.600000) [0.358551] (2019-03-25,15.000000) [0.008306] (2019-03-25,14.999897) [0.008306] (2019-03-25,15.000000) [0.008306] (2019-03-25,12.600000) [0.012710] (2019-03-25,12.510000) [0.012710] (2019-03-25,15.000000) [0.012710] (2019-03-25,12.510000) [0.048222] (2019-03-25,12.510000) [0.048222] (2019-03-25,12.600000) [0.048222] (2019-03-26,12.600000) [0.006076] (2019-03-26,12.510000) [0.006076] (2019-03-26,12.600000) [0.790410] (2019-03-26,12.600000) [0.790410] (2019-03-26,12.510000) [0.790410] (2019-03-26,6.255000) [0.790410] (2019-03-26,12.600000) [0.475358] (2019-03-26,12.510000) [0.475358] (2019-03-26,12.600000) [0.061620] (2019-03-26,12.600000) [0.061620] (2019-03-26,0.000000) [0.061620] }; \addplot+[red] coordinates {(2018-06-27,15.0) (2019-03-26,15.0)}; \addplot+[green] coordinates {(2018-06-27,12.5) (2019-03-26,12.5)}; + +\end{axis} +\end{tikzpicture} diff --git a/reports/pure_revenue_bot_profit.tex b/reports/pure_revenue_bot_profit.tex new file mode 100644 index 0000000..f0240de --- /dev/null +++ b/reports/pure_revenue_bot_profit.tex @@ -0,0 +1,38 @@ +\begin{tikzpicture} +\begin{axis}[cycle list/RdGy-6, clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year},ymode=log, xlabel={Date (MM-YY)}, ylabel={Daily Pure Revenue Profit (USD)},title={Pure Revenue Profit Per Bot, 14-Day Moving Average}, + log basis y={10}, ymin=0, ymax=110451.194592356, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, + cycle multiindex* list={ + color list + \nextlist + linestyles + \nextlist + very thick + \nextlist + }, legend pos=outer north east, + legend entries = {Market Total,0x0000f7..,0x44e05b..,0xaa2432..,0xb3707d..,0xf13ecd..,0x5a2896..,0xbb3a8c..,0xa53170..,0x905451..,0x00bd1f..},legend style={fill=none},legend cell align={right}, ,enlarge x limits=-1,width=.9\textwidth, height=0.4\textwidth,x label style={at={(1.15,-.15)},anchor=south,}] + + + +\addplot+[black] coordinates {(2017-07-01,228.568825)(2017-07-02,231.685468)(2017-07-03,243.600273)(2017-07-04,311.975998)(2017-07-05,334.947996)(2017-07-06,384.243176)(2017-07-07,582.873644)(2017-07-08,640.352903)(2017-07-09,715.648367)(2017-07-10,718.818514)(2017-07-11,804.758569)(2017-07-12,823.490270)(2017-07-13,873.117673)(2017-07-14,943.480380)(2017-07-15,863.763962)(2017-07-16,883.939428)(2017-07-17,910.537325)(2017-07-18,1330.295269)(2017-07-19,1344.007524)(2017-07-20,1302.262931)(2017-07-21,1112.563400)(2017-07-22,1062.120779)(2017-07-23,989.425152)(2017-07-24,1183.399008)(2017-07-25,1093.094696)(2017-07-26,1061.943273)(2017-07-27,1012.132234)(2017-07-28,884.998449)(2017-07-29,918.089226)(2017-07-30,921.415331)(2017-07-31,938.675442)(2017-08-01,548.799042)(2017-08-02,551.622413)(2017-08-03,585.568107)(2017-08-04,603.163928)(2017-08-05,664.863504)(2017-08-06,986.260312)(2017-08-07,913.182629)(2017-08-08,1017.212985)(2017-08-09,1595.795026)(2017-08-10,2122.934737)(2017-08-11,2915.796728)(2017-08-12,3302.991067)(2017-08-13,3695.244272)(2017-08-14,3796.689172)(2017-08-15,4001.264583)(2017-08-16,4082.897530)(2017-08-17,4257.868056)(2017-08-18,4414.743081)(2017-08-19,4572.581939)(2017-08-20,4381.416014)(2017-08-21,4582.657512)(2017-08-22,5018.342526)(2017-08-23,4816.131619)(2017-08-24,6308.706096)(2017-08-25,5681.885146)(2017-08-26,5669.576673)(2017-08-27,5609.030805)(2017-08-28,5752.571175)(2017-08-29,5823.404669)(2017-08-30,6119.890687)(2017-08-31,6632.604921)(2017-09-01,7168.762673)(2017-09-02,7775.229912)(2017-09-03,8284.422772)(2017-09-04,8783.908625)(2017-09-05,8822.605702)(2017-09-06,9043.487167)(2017-09-07,7536.199499)(2017-09-08,7535.216318)(2017-09-09,7738.661071)(2017-09-10,7492.448917)(2017-09-11,7626.058741)(2017-09-12,7558.455106)(2017-09-13,8054.474037)(2017-09-14,8234.950850)(2017-09-15,8112.624765)(2017-09-16,7518.369882)(2017-09-17,7214.091938)(2017-09-18,7310.592454)(2017-09-19,7438.907967)(2017-09-20,7325.332418)(2017-09-21,7465.229370)(2017-09-22,7964.745717)(2017-09-23,9239.174562)(2017-09-24,9562.333270)(2017-09-25,9452.904762)(2017-09-26,9621.294302)(2017-09-27,9143.093627)(2017-09-28,9006.372955)(2017-09-29,10276.600231)(2017-09-30,11885.274004)(2017-10-01,12097.283975)(2017-10-02,11636.548874)(2017-10-03,11797.223677)(2017-10-04,12007.396494)(2017-10-05,11848.694193)(2017-10-06,13150.398893)(2017-10-07,11898.486897)(2017-10-08,12088.762892)(2017-10-09,12173.771497)(2017-10-10,11997.571469)(2017-10-11,12095.547176)(2017-10-12,11792.086167)(2017-10-13,10320.284724)(2017-10-14,8980.160176)(2017-10-15,8725.423971)(2017-10-16,8552.417571)(2017-10-17,8386.649925)(2017-10-18,7966.634052)(2017-10-19,9390.668580)(2017-10-20,7923.381345)(2017-10-21,7993.557798)(2017-10-22,7959.276950)(2017-10-23,7916.512123)(2017-10-24,8122.509373)(2017-10-25,8192.282948)(2017-10-26,8574.950849)(2017-10-27,8632.379600)(2017-10-28,8449.089460)(2017-10-29,8360.795510)(2017-10-30,8296.283449)(2017-10-31,8347.228935)(2017-11-01,9068.351117)(2017-11-02,9938.234576)(2017-11-03,10548.441783)(2017-11-04,11988.835872)(2017-11-05,11766.287576)(2017-11-06,12678.724777)(2017-11-07,12742.364458)(2017-11-08,13190.824770)(2017-11-09,13531.063092)(2017-11-10,14058.816873)(2017-11-11,15124.700144)(2017-11-12,15995.597910)(2017-11-13,16343.874747)(2017-11-14,17137.776970)(2017-11-15,18163.598466)(2017-11-16,16086.919308)(2017-11-17,16070.944275)(2017-11-18,14574.376049)(2017-11-19,18635.172149)(2017-11-20,19067.140257)(2017-11-21,19748.194620)(2017-11-22,19422.693747)(2017-11-23,18873.764496)(2017-11-24,18607.954945)(2017-11-25,17999.274123)(2017-11-26,17855.649484)(2017-11-27,18198.029868)(2017-11-28,18215.924648)(2017-11-29,17160.162570)(2017-11-30,18338.098576)(2017-12-01,17807.115635)(2017-12-02,18341.867689)(2017-12-03,14387.130539)(2017-12-04,14180.205768)(2017-12-05,13574.647661)(2017-12-06,16197.286616)(2017-12-07,20411.674786)(2017-12-08,21468.781448)(2017-12-09,23355.969234)(2017-12-10,26056.456455)(2017-12-11,29421.048811)(2017-12-12,30011.794749)(2017-12-13,33130.585589)(2017-12-14,33070.646309)(2017-12-15,35581.653167)(2017-12-16,35163.354862)(2017-12-17,35653.411183)(2017-12-18,35042.148676)(2017-12-19,35801.899130)(2017-12-20,33119.699511)(2017-12-21,29100.972259)(2017-12-22,28887.863091)(2017-12-23,30429.892614)(2017-12-24,29213.678963)(2017-12-25,27231.848893)(2017-12-26,27090.830450)(2017-12-27,26006.326276)(2017-12-28,28480.667300)(2017-12-29,28931.689297)(2017-12-30,33250.005768)(2017-12-31,38158.283542)(2018-01-01,43755.674182)(2018-01-02,47777.952711)(2018-01-03,50736.160371)(2018-01-04,53157.278905)(2018-01-05,55225.597296)(2018-01-06,53641.828536)(2018-01-07,53626.711915)(2018-01-08,53445.091540)(2018-01-09,54870.419133)(2018-01-10,52737.553793)(2018-01-11,49925.345303)(2018-01-12,51067.813446)(2018-01-13,49412.468931)(2018-01-14,44977.856097)(2018-01-15,39449.905618)(2018-01-16,34878.575061)(2018-01-17,35243.451813)(2018-01-18,34915.513611)(2018-01-19,33616.810647)(2018-01-20,33092.118392)(2018-01-21,32053.306629)(2018-01-22,31761.229487)(2018-01-23,30400.246997)(2018-01-24,30627.955616)(2018-01-25,30943.654426)(2018-01-26,29436.917632)(2018-01-27,27465.888631)(2018-01-28,27664.493855)(2018-01-29,28273.762633)(2018-01-30,28060.100248)(2018-01-31,26160.508617)(2018-02-01,24598.258501)(2018-02-02,24515.776784)(2018-02-03,23260.038926)(2018-02-04,22852.635615)(2018-02-05,21812.632607)(2018-02-06,22886.490276)(2018-02-07,22079.357088)(2018-02-08,21458.436649)(2018-02-09,18803.037363)(2018-02-10,17821.499668)(2018-02-11,16850.190222)(2018-02-12,15880.125006)(2018-02-13,16359.957373)(2018-02-14,14820.895584)(2018-02-15,14195.881530)(2018-02-16,12349.069130)(2018-02-17,11823.568387)(2018-02-18,11370.479377)(2018-02-19,10819.258537)(2018-02-20,8001.237396)(2018-02-21,8036.416744)(2018-02-22,7202.908454)(2018-02-23,7552.655097)(2018-02-24,8249.841563)(2018-02-25,9404.758174)(2018-02-26,10505.345900)(2018-02-27,9716.284762)(2018-02-28,9694.038363)(2018-03-01,9562.917097)(2018-03-02,9546.753382)(2018-03-03,9802.831307)(2018-03-04,9639.761808)(2018-03-05,9489.294904)(2018-03-06,9554.453532)(2018-03-07,9485.156358)(2018-03-08,9476.493321)(2018-03-09,8779.412071)(2018-03-10,8054.891275)(2018-03-11,6375.452721)(2018-03-12,5312.921661)(2018-03-13,5199.185514)(2018-03-14,4835.235080)(2018-03-15,4432.341168)(2018-03-16,4117.697758)(2018-03-17,4942.045150)(2018-03-18,4689.987390)(2018-03-19,4661.536218)(2018-03-20,4434.783657)(2018-03-21,4325.411139)(2018-03-22,4242.418262)(2018-03-23,4151.407314)(2018-03-24,3801.645121)(2018-03-25,3686.767401)(2018-03-26,3102.512438)(2018-03-27,3997.219425)(2018-03-28,3984.836685)(2018-03-29,3815.877680)(2018-03-30,3873.121939)(2018-03-31,3166.590891)(2018-04-01,3113.840049)(2018-04-02,3109.313830)(2018-04-03,3503.083705)(2018-04-04,3508.483872)(2018-04-05,3549.124565)(2018-04-06,3532.876898)(2018-04-07,3611.622992)(2018-04-08,3794.132471)(2018-04-09,3823.416975)(2018-04-10,2862.520706)(2018-04-11,3255.030210)(2018-04-12,5910.353449)(2018-04-13,6810.758554)(2018-04-14,6435.173301)(2018-04-15,6727.536125)(2018-04-16,6889.063324)(2018-04-17,6653.277637)(2018-04-18,6959.266478)(2018-04-19,7125.389630)(2018-04-20,8209.611827)(2018-04-21,8711.129449)(2018-04-22,8806.364343)(2018-04-23,9211.591908)(2018-04-24,9812.158072)(2018-04-25,9917.299940)(2018-04-26,7520.967322)(2018-04-27,7010.696755)(2018-04-28,6962.356187)(2018-04-29,7051.648778)(2018-04-30,7438.869941)(2018-05-01,7597.657997)(2018-05-02,7397.106618)(2018-05-03,7747.203384)(2018-05-04,8125.812965)(2018-05-05,7964.117054)(2018-05-06,8155.050100)(2018-05-07,7759.805537)(2018-05-08,7217.913595)(2018-05-09,6952.224908)(2018-05-10,7269.358410)(2018-05-11,7072.094740)(2018-05-12,7441.183253)(2018-05-13,7219.221135)(2018-05-14,6684.678653)(2018-05-15,6286.699836)(2018-05-16,6125.451724)(2018-05-17,5373.849285)(2018-05-18,3899.898306)(2018-05-19,3521.145542)(2018-05-20,3086.859697)(2018-05-21,3066.173433)(2018-05-22,2953.961446)(2018-05-23,2689.236365)(2018-05-24,2162.433763)(2018-05-25,1958.296385)(2018-05-26,1594.699054)(2018-05-27,2033.657085)(2018-05-28,2010.784082)(2018-05-29,1989.206551)(2018-05-30,1982.446563)(2018-05-31,2399.948136)(2018-06-01,2570.574936)(2018-06-02,2491.229926)(2018-06-03,2715.514899)(2018-06-04,2722.019144)(2018-06-05,2711.441091)(2018-06-06,3203.166926)(2018-06-07,3211.035709)(2018-06-08,3504.691210)(2018-06-09,3267.610208)(2018-06-10,2683.615717)(2018-06-11,2895.020156)(2018-06-12,2891.844980)(2018-06-13,2853.161560)(2018-06-14,2500.335038)(2018-06-15,2554.764511)(2018-06-16,2843.675739)(2018-06-17,2656.589550)(2018-06-18,2879.637572)(2018-06-19,2943.385179)(2018-06-20,2440.011682)(2018-06-21,2506.963589)(2018-06-22,2374.590556)(2018-06-23,2422.677800)(2018-06-24,2449.506580)(2018-06-25,2210.971066)(2018-06-26,2257.905650)(2018-06-27,2307.149208)(2018-06-28,2226.214997)(2018-06-29,2000.603850)(2018-06-30,1732.691248)(2018-07-01,1680.087807)(2018-07-02,1410.248215)(2018-07-03,1343.744523)(2018-07-04,1324.290916)(2018-07-05,1190.519981)(2018-07-06,1011.270396)(2018-07-07,1268.086420)(2018-07-08,1351.332401)(2018-07-09,1423.352860)(2018-07-10,1530.691665)(2018-07-11,1543.753568)(2018-07-12,1656.588249)(2018-07-13,1737.637455)(2018-07-14,1917.173823)(2018-07-15,2018.013082)(2018-07-16,2235.923660)(2018-07-17,3240.107736)(2018-07-18,3557.904657)(2018-07-19,3860.023139)(2018-07-20,3889.417140)(2018-07-21,3578.460174)(2018-07-22,3452.381267)(2018-07-23,3588.511626)(2018-07-24,3504.254759)(2018-07-25,3480.369831)(2018-07-26,3597.649533)(2018-07-27,3628.112482)(2018-07-28,3569.602849)(2018-07-29,4708.076267)(2018-07-30,4585.449598)(2018-07-31,3562.319306)(2018-08-01,3550.432424)(2018-08-02,4436.680889)(2018-08-03,4386.904639)(2018-08-04,4653.096960)(2018-08-05,10952.542713)(2018-08-06,11206.658410)(2018-08-07,11176.935389)(2018-08-08,11229.114496)(2018-08-09,11121.679015)(2018-08-10,11038.270996)(2018-08-11,11396.565844)(2018-08-12,10171.763001)(2018-08-13,10109.048983)(2018-08-14,10171.450895)(2018-08-15,9904.567320)(2018-08-16,8753.405094)(2018-08-17,8726.547322)(2018-08-18,8494.989091)(2018-08-19,2193.317314)(2018-08-20,1794.043523)(2018-08-21,2666.910423)(2018-08-22,2521.701417)(2018-08-23,2482.298233)(2018-08-24,2432.394517)(2018-08-25,2007.840494)(2018-08-26,2057.560577)(2018-08-27,2055.925070)(2018-08-28,2280.180633)(2018-08-29,2384.601262)(2018-08-30,2445.793838)(2018-08-31,2458.966829)(2018-09-01,2483.164838)(2018-09-02,2531.676927)(2018-09-03,2625.460788)(2018-09-04,1676.662017)(2018-09-05,2116.656598)(2018-09-06,2185.180374)(2018-09-07,2342.588828)(2018-09-08,2333.858976)(2018-09-09,2854.515569)(2018-09-10,2849.305506)(2018-09-11,3076.881365)(2018-09-12,2915.905286)(2018-09-13,2810.305706)(2018-09-14,2879.064455)(2018-09-15,2827.453967)(2018-09-16,2802.092068)(2018-09-17,2657.843314)(2018-09-18,2644.528329)(2018-09-19,2327.165002)(2018-09-20,2147.857599)(2018-09-21,2046.222160)(2018-09-22,1948.362149)(2018-09-23,1335.603743)(2018-09-24,1304.489587)(2018-09-25,762.863508)(2018-09-26,814.896817)(2018-09-27,839.339573)(2018-09-28,746.102544)(2018-09-29,1082.260537)(2018-09-30,1068.902052)(2018-10-01,1066.244570)(2018-10-02,1061.431787)(2018-10-03,975.208538)(2018-10-04,1050.746583)(2018-10-05,1080.562108)(2018-10-06,1066.274911)(2018-10-07,1132.685776)(2018-10-08,1122.303840)(2018-10-09,1215.643946)(2018-10-10,1261.058703)(2018-10-11,1334.079955)(2018-10-12,1330.513214)(2018-10-13,1058.200562)(2018-10-14,1145.458253)(2018-10-15,1165.590928)(2018-10-16,1200.825515)(2018-10-17,1250.075856)(2018-10-18,1177.114912)(2018-10-19,1091.851792)(2018-10-20,1108.977423)(2018-10-21,1086.798116)(2018-10-22,1139.743831)(2018-10-23,1045.357678)(2018-10-24,919.801679)(2018-10-25,822.950154)(2018-10-26,837.045631)(2018-10-27,762.048382)(2018-10-28,691.342439)(2018-10-29,701.242403)(2018-10-30,676.677835)(2018-10-31,663.557275)(2018-11-01,651.276716)(2018-11-02,651.053231)(2018-11-03,636.899554)(2018-11-04,660.238617)(2018-11-05,620.218469)(2018-11-06,682.929162)(2018-11-07,673.357591)(2018-11-08,750.443188)(2018-11-09,867.625408)(2018-11-10,910.669001)(2018-11-11,907.360975)(2018-11-12,867.889005)(2018-11-13,976.276863)(2018-11-14,950.082880)(2018-11-15,1029.148282)(2018-11-16,1043.691991)(2018-11-17,1105.446768)(2018-11-18,1038.293299)(2018-11-19,1096.760460)(2018-11-20,1036.824376)(2018-11-21,1058.600764)(2018-11-22,984.508644)(2018-11-23,962.054682)(2018-11-24,910.142949)(2018-11-25,862.734608)(2018-11-26,958.736816)(2018-11-27,844.693656)(2018-11-28,875.821491)(2018-11-29,823.357279)(2018-11-30,840.415344)(2018-12-01,810.081000)(2018-12-02,811.215157)(2018-12-03,738.876062)(2018-12-04,752.743638)(2018-12-05,722.373767)(2018-12-06,720.092365)(2018-12-07,597.665569)(2018-12-08,600.600783)(2018-12-09,769.248986)(2018-12-10,766.595001)(2018-12-11,763.135590)(2018-12-12,710.521700)(2018-12-13,716.376182)(2018-12-14,671.240350)(2018-12-15,635.747265)(2018-12-16,674.640370)(2018-12-17,681.845609)(2018-12-18,678.977507)(2018-12-19,684.616927)(2018-12-20,677.089613)(2018-12-21,689.643706)(2018-12-22,724.030164)(2018-12-23,590.487347)(2018-12-24,539.434068)(2018-12-25,595.983413)(2018-12-26,592.760541)(2018-12-27,562.179331)(2018-12-28,550.303126)(2018-12-29,543.132804)(2018-12-30,537.838412)(2018-12-31,524.067114)(2019-01-01,483.341219)(2019-01-02,1598.089253)(2019-01-03,1609.118307)(2019-01-04,1666.512157)(2019-01-05,1666.683592)(2019-01-06,1660.145961)(2019-01-07,1664.534594)(2019-01-08,1617.424129)(2019-01-09,1635.648992)(2019-01-10,1664.313160)(2019-01-11,1720.703057)(2019-01-12,1728.237437)(2019-01-13,1698.179229)(2019-01-14,1707.445169)(2019-01-15,1705.222131)(2019-01-16,628.668465)(2019-01-17,617.017568)(2019-01-18,590.189060)(2019-01-19,578.464626)(2019-01-20,765.531261)(2019-01-21,759.105960)(2019-01-22,813.924370)(2019-01-23,805.569878)(2019-01-24,803.764638)(2019-01-25,780.824919)(2019-01-26,781.564481)(2019-01-27,787.351772)(2019-01-28,786.895469)(2019-01-29,796.239495)(2019-01-30,751.852738)(2019-01-31,765.933950)(2019-02-01,729.149674)(2019-02-02,739.604678)(2019-02-03,546.085681)(2019-02-04,517.795580)(2019-02-05,497.637646)(2019-02-06,489.724110)(2019-02-07,475.441753)(2019-02-08,470.486163)(2019-02-09,549.977167)(2019-02-10,534.581967)(2019-02-11,564.732776)(2019-02-12,614.208117)(2019-02-13,627.587529)(2019-02-14,648.703016)(2019-02-15,672.347389)(2019-02-16,639.609254)(2019-02-17,627.707914)(2019-02-18,623.269009)(2019-02-19,621.388676)(2019-02-20,723.954439)(2019-02-21,782.025571)(2019-02-22,860.537726)(2019-02-23,774.349224)(2019-02-24,824.487948)(2019-02-25,803.359152)(2019-02-26,920.494350)(2019-02-27,925.812318)(2019-02-28,935.935954)(2019-03-01,964.107043)(2019-03-02,1077.463184)(2019-03-03,1298.882422)(2019-03-04,1598.333289)(2019-03-05,1600.658264)(2019-03-06,1544.424686)(2019-03-07,1544.674226)(2019-03-08,1476.124724)(2019-03-09,2768.756738)(2019-03-10,2770.306966)(2019-03-11,2863.522127)(2019-03-12,2813.038481)(2019-03-13,2870.901527)(2019-03-14,2836.227521)(2019-03-15,2808.337601)(2019-03-16,3025.590700)(2019-03-17,2814.958207)(2019-03-18,2487.183180)(2019-03-19,2417.818696)(2019-03-20,2333.512643)(2019-03-21,2245.880359)(2019-03-22,2192.136920)(2019-03-23,886.196345)}; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,2.494481) (2017-10-21,36.438149) (2017-10-22,37.532255) (2017-10-23,37.532255) (2017-10-24,63.673817) (2017-10-25,216.458859) (2017-10-26,516.605230) (2017-10-27,570.007497) (2017-10-28,660.162304) (2017-10-29,722.602832) (2017-10-30,808.066113) (2017-10-31,929.316883) (2017-11-01,1456.719614) (2017-11-02,1997.132605) (2017-11-03,2271.591167) (2017-11-04,2475.433244) (2017-11-05,2580.080236) (2017-11-06,3147.962854) (2017-11-07,3326.534749) (2017-11-08,3516.847425) (2017-11-09,3915.466800) (2017-11-10,4017.736160) (2017-11-11,4203.437061) (2017-11-12,4753.035170) (2017-11-13,4782.060104) (2017-11-14,5461.330859) (2017-11-15,6192.935845) (2017-11-16,5774.857131) (2017-11-17,5806.206119) (2017-11-18,5680.016615) (2017-11-19,6033.222762) (2017-11-20,5999.450405) (2017-11-21,6200.450352) (2017-11-22,6093.032567) (2017-11-23,5495.923316) (2017-11-24,5401.148059) (2017-11-25,5272.592602) (2017-11-26,5038.102282) (2017-11-27,5217.901766) (2017-11-28,5079.437154) (2017-11-29,4000.258664) (2017-11-30,4579.568599) (2017-12-01,4494.698237) (2017-12-02,4955.296995) (2017-12-03,4596.409897) (2017-12-04,5407.394954) (2017-12-05,5271.840176) (2017-12-06,5760.646358) (2017-12-07,9808.908210) (2017-12-08,11101.310850) (2017-12-09,11816.270483) (2017-12-10,14125.635189) (2017-12-11,16067.235992) (2017-12-12,16436.316811) (2017-12-13,18123.720885) (2017-12-14,18517.090516) (2017-12-15,18296.410863) (2017-12-16,18216.511580) (2017-12-17,18669.247328) (2017-12-18,17916.288368) (2017-12-19,18031.249252) (2017-12-20,17706.181680) (2017-12-21,13797.684471) (2017-12-22,13472.582245) (2017-12-23,15974.653104) (2017-12-24,14686.488511) (2017-12-25,13917.033946) (2017-12-26,14046.385319) (2017-12-27,14326.834244) (2017-12-28,16905.778856) (2017-12-29,19166.824342) (2017-12-30,21149.936799) (2017-12-31,23111.138608) (2018-01-01,23830.300572) (2018-01-02,26288.780620) (2018-01-03,26949.031423) (2018-01-04,27353.053388) (2018-01-05,27164.140266) (2018-01-06,24242.658990) (2018-01-07,23112.379132) (2018-01-08,22584.188327) (2018-01-09,22633.594573) (2018-01-10,20698.101244) (2018-01-11,17705.278736) (2018-01-12,18509.611341) (2018-01-13,16034.203168) (2018-01-14,14509.789951) (2018-01-15,13751.711635) (2018-01-16,11159.930228) (2018-01-17,13555.845046) (2018-01-18,15247.221924) (2018-01-19,15540.239161) (2018-01-20,16403.276280) (2018-01-21,17265.336935) (2018-01-22,17448.259216) (2018-01-23,17237.745315) (2018-01-24,17370.057122) (2018-01-25,18201.071916) (2018-01-26,17146.667231) (2018-01-27,18275.351836) (2018-01-28,18615.961154) (2018-01-29,18889.203631) (2018-01-30,18738.778770) (2018-01-31,16767.164174) (2018-02-01,15632.648894) (2018-02-02,16266.699863) (2018-02-03,15548.915364) (2018-02-04,15039.719897) (2018-02-05,14571.190370) (2018-02-06,16632.656319) (2018-02-07,16507.908528) (2018-02-08,15645.644248) (2018-02-09,14051.821522) (2018-02-10,13251.661739) (2018-02-11,12474.431988) (2018-02-12,12077.302391) (2018-02-13,12895.125731) (2018-02-14,11791.751464) (2018-02-15,11041.794879) (2018-02-16,9559.440942) (2018-02-17,9210.067167) (2018-02-18,9007.080936) (2018-02-19,8552.289781) (2018-02-20,5733.154107) (2018-02-21,5774.669540) (2018-02-22,5365.632214) (2018-02-23,5485.769101) (2018-02-24,6193.644010) (2018-02-25,7258.567496) (2018-02-26,7517.661628) (2018-02-27,6812.664064) (2018-02-28,6821.789816) (2018-03-01,6791.692924) (2018-03-02,6722.128285) (2018-03-03,6873.356373) (2018-03-04,6651.464022) (2018-03-05,6519.345742) (2018-03-06,6303.050298) (2018-03-07,6216.369093) (2018-03-08,6112.637523) (2018-03-09,5661.576324) (2018-03-10,5031.093819) (2018-03-11,3448.823983) (2018-03-12,3304.210486) (2018-03-13,3184.217101) (2018-03-14,2845.433222) (2018-03-15,2553.684136) (2018-03-16,2369.846506) (2018-03-17,3307.075754) (2018-03-18,3142.825790) (2018-03-19,3101.721179) (2018-03-20,3204.969752) (2018-03-21,3092.690608) (2018-03-22,3187.583789) (2018-03-23,3134.144730) (2018-03-24,2774.962100) (2018-03-25,2753.980367) (2018-03-26,2223.998096) (2018-03-27,2633.867870) (2018-03-28,2710.209276) (2018-03-29,2603.360206) (2018-03-30,2619.722886) (2018-03-31,1688.488789) (2018-04-01,1670.535283) (2018-04-02,1683.538995) (2018-04-03,1632.620420) (2018-04-04,1653.931874) (2018-04-05,1598.623335) (2018-04-06,1583.755030) (2018-04-07,1659.895835) (2018-04-08,1778.115379) (2018-04-09,1817.335401) (2018-04-10,1393.315715) (2018-04-11,1616.141983) (2018-04-12,2739.270355) (2018-04-13,3487.549963) (2018-04-14,3214.394688) (2018-04-15,3371.733869) (2018-04-16,3413.190922) (2018-04-17,3472.211929) (2018-04-18,3645.232329) (2018-04-19,3756.241972) (2018-04-20,4604.766758) (2018-04-21,4638.302005) (2018-04-22,4689.293059) (2018-04-23,4969.363685) (2018-04-24,5208.434348) (2018-04-25,5284.399640) (2018-04-26,4216.281030) (2018-04-27,3834.062785) (2018-04-28,3763.041962) (2018-04-29,3804.339971) (2018-04-30,4185.471693) (2018-05-01,4174.792024) (2018-05-02,3974.759180) (2018-05-03,4300.105927) (2018-05-04,4286.299267) (2018-05-05,4477.850708) (2018-05-06,4430.157203) (2018-05-07,4150.351688) (2018-05-08,3855.389709) (2018-05-09,3503.713862) (2018-05-10,3490.129254) (2018-05-11,3232.047134) (2018-05-12,3701.097798) (2018-05-13,3515.109504) (2018-05-14,3072.940117) (2018-05-15,2984.778177) (2018-05-16,2954.393045) (2018-05-17,2358.803767) (2018-05-18,1534.282798) (2018-05-19,1254.241791) (2018-05-20,1145.276589) (2018-05-21,1149.036263) (2018-05-22,1137.029001) (2018-05-23,1143.363145) (2018-05-24,1134.173751) (2018-05-25,1002.483422) (2018-05-26,487.525043) (2018-05-27,463.222243) (2018-05-28,445.177303) (2018-05-29,397.504762) (2018-05-30,374.050655) (2018-05-31,362.086991) (2018-06-01,331.836913) (2018-06-02,263.915831) (2018-06-03,236.727969) (2018-06-04,182.128930) (2018-06-05,169.951740) (2018-06-06,245.829909) (2018-06-07,186.802247) (2018-06-08,163.554990) (2018-06-09,157.687253) (2018-06-10,158.158007) (2018-06-11,158.158007) (2018-06-12,167.904870) (2018-06-13,165.137103) (2018-06-14,160.462353) (2018-06-15,163.627088) (2018-06-16,163.627088) (2018-06-17,163.627088) (2018-06-18,161.150070) (2018-06-19,154.339163) (2018-06-20,-2.626791) (2018-06-21,10.756833) (2018-06-22,10.278871) (2018-06-23,10.278871) (2018-06-24,10.614363) (2018-06-25,10.614363) (2018-06-26,11.496493) (2018-06-27,12.982226) (2018-06-28,12.151320) (2018-06-29,8.368486) (2018-06-30,8.847697) (2018-07-01,8.847697) (2018-07-02,7.111698) (2018-07-03,13.922605) (2018-07-04,12.879999) (2018-07-05,2.635208) (2018-07-06,3.113170) (2018-07-07,4.550221) (2018-07-08,1.146172) (2018-07-09,1.146172) (2018-07-10,0.264042) (2018-07-11,-1.221692) (2018-07-12,0.930110) (2018-07-13,0.930110) (2018-07-14,-0.495336) (2018-07-15,-0.495336) (2018-07-16,1.240664) (2018-07-17,1.240664) (2018-07-18,2.642617) (2018-07-19,2.642617) (2018-07-20,3.910841) (2018-07-21,2.473791) (2018-07-22,2.473791) (2018-07-23,2.473791) (2018-07-24,2.473791) (2018-07-25,2.473791) (2018-07-26,6.557977) (2018-07-27,6.557977) (2018-07-28,7.504212) (2018-07-29,9.002292) (2018-07-30,9.145256) (2018-07-31,8.771125) (2018-08-01,9.876519) (2018-08-02,9.876519) (2018-08-03,9.928118) (2018-08-04,9.928118) (2018-08-05,9.493210) (2018-08-06,9.493210) (2018-08-07,12.210886) (2018-08-08,16.499986) (2018-08-09,10.263998) (2018-08-10,10.438574) (2018-08-11,10.438574) (2018-08-12,8.447932) (2018-08-13,11.599366) (2018-08-14,11.973496) (2018-08-15,12.763527) (2018-08-16,12.763527) (2018-08-17,11.443703) (2018-08-18,11.758009) (2018-08-19,12.192917) (2018-08-20,16.818982) (2018-08-21,14.101306) (2018-08-22,9.314174) (2018-08-23,9.314174) (2018-08-24,9.139598) (2018-08-25,9.139598) (2018-08-26,9.632160) (2018-08-27,8.515587) (2018-08-28,158.349048) (2018-08-29,177.257971) (2018-08-30,176.929090) (2018-08-31,176.530163) (2018-09-01,175.915133) (2018-09-02,175.915133) (2018-09-03,171.289069) (2018-09-04,174.320996) (2018-09-05,174.819028) (2018-09-06,174.819028) (2018-09-07,174.819028) (2018-09-08,174.819028) (2018-09-09,174.819028) (2018-09-10,172.641203) (2018-09-11,22.807742) (2018-09-12,2.003396) (2018-09-13,2.332276) (2018-09-14,10.552641) (2018-09-15,10.853366) (2018-09-16,10.853366) (2018-09-17,10.853366) (2018-09-18,7.821438) (2018-09-19,8.938749) (2018-09-20,8.938749) (2018-09-21,19.455097) (2018-09-22,19.455097) (2018-09-23,19.455097) (2018-09-24,29.103798) (2018-09-25,29.103798) (2018-09-26,29.103798) (2018-09-27,29.103798) (2018-09-28,21.282360) (2018-09-29,23.507083) (2018-09-30,23.768913) (2018-10-01,23.768913) (2018-10-02,24.245653) (2018-10-03,23.128343) (2018-10-04,23.128343) (2018-10-05,12.611994) (2018-10-06,12.611994) (2018-10-07,13.178043) (2018-10-08,3.109628) (2018-10-09,3.109628) (2018-10-10,3.109628) (2018-10-11,3.711480) (2018-10-12,4.639849) (2018-10-13,2.415126) (2018-10-14,2.153296) (2018-10-15,2.153296) (2018-10-16,1.676555) (2018-10-17,1.676555) (2018-10-18,1.442832) (2018-10-19,1.333274) (2018-10-20,1.819679) (2018-10-21,1.253630) (2018-10-22,1.673344) (2018-10-23,1.490154) (2018-10-24,-0.829806) (2018-10-25,-1.431658) (2018-10-26,-2.360027) (2018-10-27,-2.608189) (2018-10-28,-2.608189) (2018-10-29,0.316784) (2018-10-30,0.316784) (2018-10-31,0.289662) (2018-11-01,-0.193364) (2018-11-02,-1.308949) (2018-11-03,-1.795353) (2018-11-04,-1.444929) (2018-11-05,-1.444929) (2018-11-06,0.784809) (2018-11-07,3.882399) (2018-11-08,3.882399) (2018-11-09,3.882399) (2018-11-10,3.589515) (2018-11-11,1.815730) (2018-11-12,1.651281) (2018-11-13,1.651281) (2018-11-14,9.553924) (2018-11-15,10.270673) (2018-11-16,11.495817) (2018-11-17,11.624703) (2018-11-18,11.274278) (2018-11-19,12.485464) (2018-11-20,10.438917) (2018-11-21,9.661287) (2018-11-22,9.661287) (2018-11-23,9.661287) (2018-11-24,10.202333) (2018-11-25,11.976117) (2018-11-26,9.215595) (2018-11-27,9.215595) (2018-11-28,1.340072) (2018-11-29,1.340072) (2018-11-30,1.586259) (2018-12-01,1.457372) (2018-12-02,1.457372) (2018-12-03,0.246186) (2018-12-04,0.271693) (2018-12-05,0.298660) (2018-12-06,0.757944) (2018-12-07,1.109042) (2018-12-08,0.889498) (2018-12-09,0.793835) (2018-12-10,0.793835) (2018-12-11,0.696841) (2018-12-12,0.696841) (2018-12-13,0.696841) (2018-12-14,0.662985) (2018-12-15,0.662985) (2018-12-16,0.662985) (2018-12-17,0.662985) (2018-12-18,0.637478) (2018-12-19,0.610511) (2018-12-20,0.151228) (2018-12-21,0.464785) (2018-12-22,0.684330) (2018-12-23,1.927949) (2018-12-24,1.927949) (2018-12-25,2.024944) (2018-12-26,2.561071) (2018-12-27,2.561071) (2018-12-28,2.348740) (2018-12-29,2.348740) (2018-12-30,2.348740) (2018-12-31,2.958438) (2019-01-01,2.958438) (2019-01-02,2.958438) (2019-01-03,2.958438) (2019-01-04,2.293782) (2019-01-05,2.162528) (2019-01-06,1.014571) (2019-01-07,1.014571) (2019-01-08,1.014571) (2019-01-09,0.478444) (2019-01-10,0.478444) (2019-01-11,0.478444) (2019-01-12,0.478444) (2019-01-13,0.478444) (2019-01-14,-0.131254) (2019-01-15,-0.131254) (2019-01-16,-0.131254) (2019-01-17,-0.131254) (2019-01-18,-0.131254) (2019-01-19,1.520022) (2019-01-20,1.520022) (2019-01-21,1.520022) (2019-01-22,1.520022) (2019-01-23,8.583803) (2019-01-24,8.970756) (2019-01-25,8.970756) (2019-01-26,8.970756) (2019-01-27,8.970756) (2019-01-28,8.970756) (2019-01-29,9.265655) (2019-01-30,9.265655) (2019-01-31,10.341117) (2019-02-01,10.341117) (2019-02-02,8.821095) (2019-02-03,8.821095) (2019-02-04,8.633053) (2019-02-05,8.347349) (2019-02-06,1.475250) (2019-02-07,1.088297) (2019-02-08,1.088297) (2019-02-09,1.088297) (2019-02-10,1.088297) (2019-02-11,1.088297) (2019-02-12,1.304534) (2019-02-13,1.304534) (2019-02-14,0.066054) (2019-02-15,1.056217) (2019-02-16,1.056217) (2019-02-17,0.978346) (2019-02-18,1.166388) (2019-02-19,1.452092) (2019-02-20,3.184643) (2019-02-21,12.873039) (2019-02-22,12.275836) (2019-02-23,12.275836) (2019-02-24,12.275836) (2019-02-25,12.275836) (2019-02-26,11.764701) (2019-02-27,11.764701) (2019-02-28,11.657726) (2019-03-01,10.667563) (2019-03-02,10.667563) (2019-03-03,10.745433) (2019-03-04,10.889852) (2019-03-05,10.889852) (2019-03-06,8.902381) (2019-03-07,-0.786015) (2019-03-08,-0.188812) (2019-03-09,29.374865) (2019-03-10,29.374865) (2019-03-11,29.374865) (2019-03-12,29.374865) (2019-03-13,29.374865) (2019-03-14,29.644858) (2019-03-15,29.644858) (2019-03-16,41.896353) (2019-03-17,41.896353) (2019-03-18,41.751934) (2019-03-19,41.751934) (2019-03-20,41.815172) (2019-03-21,41.815172) (2019-03-22,41.815172) (2019-03-23,12.251495) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,0.000000) (2017-10-21,0.000000) (2017-10-22,0.000000) (2017-10-23,0.000000) (2017-10-24,0.000000) (2017-10-25,0.000000) (2017-10-26,0.000000) (2017-10-27,0.000000) (2017-10-28,0.000000) (2017-10-29,0.000000) (2017-10-30,0.000000) (2017-10-31,0.000000) (2017-11-01,0.000000) (2017-11-02,0.000000) (2017-11-03,0.000000) (2017-11-04,0.000000) (2017-11-05,0.000000) (2017-11-06,0.000000) (2017-11-07,0.000000) (2017-11-08,0.000000) (2017-11-09,0.000000) (2017-11-10,0.000000) (2017-11-11,0.000000) (2017-11-12,0.000000) (2017-11-13,0.000000) (2017-11-14,0.000000) (2017-11-15,0.000000) (2017-11-16,0.000000) (2017-11-17,0.000000) (2017-11-18,0.000000) (2017-11-19,0.000000) (2017-11-20,0.000000) (2017-11-21,0.000000) (2017-11-22,0.000000) (2017-11-23,0.000000) (2017-11-24,0.000000) (2017-11-25,0.000000) (2017-11-26,0.000000) (2017-11-27,0.000000) (2017-11-28,0.000000) (2017-11-29,0.000000) (2017-11-30,0.000000) (2017-12-01,0.000000) (2017-12-02,0.000000) (2017-12-03,0.000000) (2017-12-04,0.000000) (2017-12-05,23.017510) (2017-12-06,452.984724) (2017-12-07,946.419036) (2017-12-08,1098.498825) (2017-12-09,1159.874340) (2017-12-10,1284.419611) (2017-12-11,2005.445870) (2017-12-12,2149.310399) (2017-12-13,2541.969230) (2017-12-14,2856.131857) (2017-12-15,2926.799329) (2017-12-16,2952.379016) (2017-12-17,2986.629709) (2017-12-18,3014.703484) (2017-12-19,3070.727104) (2017-12-20,2678.454374) (2017-12-21,2232.967267) (2017-12-22,2121.686944) (2017-12-23,2168.409473) (2017-12-24,2188.648825) (2017-12-25,1566.250770) (2017-12-26,1573.945294) (2017-12-27,1327.364697) (2017-12-28,1048.196158) (2017-12-29,1097.976023) (2017-12-30,1511.134864) (2017-12-31,2586.961963) (2018-01-01,4541.031195) (2018-01-02,5332.607220) (2018-01-03,6998.434894) (2018-01-04,8022.793617) (2018-01-05,9043.826141) (2018-01-06,9764.483353) (2018-01-07,9950.643124) (2018-01-08,10482.230143) (2018-01-09,10548.801879) (2018-01-10,10549.620568) (2018-01-11,10574.748816) (2018-01-12,10692.187943) (2018-01-13,10549.783867) (2018-01-14,9479.800818) (2018-01-15,7560.537584) (2018-01-16,6739.001262) (2018-01-17,5060.845915) (2018-01-18,4000.649302) (2018-01-19,2973.829245) (2018-01-20,2193.511417) (2018-01-21,1863.687963) (2018-01-22,1318.183793) (2018-01-23,1147.997558) (2018-01-24,1019.252075) (2018-01-25,986.573697) (2018-01-26,874.705743) (2018-01-27,624.987300) (2018-01-28,619.390943) (2018-01-29,668.131842) (2018-01-30,628.299384) (2018-01-31,604.051215) (2018-02-01,609.546758) (2018-02-02,580.342940) (2018-02-03,536.496897) (2018-02-04,563.386712) (2018-02-05,483.955572) (2018-02-06,436.631418) (2018-02-07,420.035555) (2018-02-08,705.945320) (2018-02-09,580.237234) (2018-02-10,545.686655) (2018-02-11,512.249980) (2018-02-12,413.210295) (2018-02-13,423.625934) (2018-02-14,456.144434) (2018-02-15,443.029155) (2018-02-16,440.651839) (2018-02-17,449.912686) (2018-02-18,422.298235) (2018-02-19,417.018322) (2018-02-20,422.264340) (2018-02-21,420.978084) (2018-02-22,107.624360) (2018-02-23,112.478047) (2018-02-24,108.462076) (2018-02-25,109.052280) (2018-02-26,96.471292) (2018-02-27,79.540252) (2018-02-28,45.903112) (2018-03-01,42.085868) (2018-03-02,44.557176) (2018-03-03,39.231726) (2018-03-04,42.280996) (2018-03-05,42.280996) (2018-03-06,51.642223) (2018-03-07,52.305815) (2018-03-08,55.322042) (2018-03-09,60.075205) (2018-03-10,52.648545) (2018-03-11,54.226019) (2018-03-12,55.150128) (2018-03-13,67.736207) (2018-03-14,67.959574) (2018-03-15,67.287241) (2018-03-16,61.491514) (2018-03-17,53.047158) (2018-03-18,54.661470) (2018-03-19,55.120067) (2018-03-20,40.538623) (2018-03-21,42.460101) (2018-03-22,39.626326) (2018-03-23,31.964356) (2018-03-24,32.592494) (2018-03-25,30.111396) (2018-03-26,30.990850) (2018-03-27,15.671796) (2018-03-28,15.662401) (2018-03-29,15.804822) (2018-03-30,15.763230) (2018-03-31,15.728244) (2018-04-01,10.746518) (2018-04-02,10.434819) (2018-04-03,9.850140) (2018-04-04,6.995748) (2018-04-05,6.687120) (2018-04-06,4.557250) (2018-04-07,3.530902) (2018-04-08,2.782613) (2018-04-09,1.582114) (2018-04-10,5.997529) (2018-04-11,8.809603) (2018-04-12,240.285620) (2018-04-13,248.645351) (2018-04-14,249.769032) (2018-04-15,249.730989) (2018-04-16,252.458228) (2018-04-17,252.737543) (2018-04-18,265.399531) (2018-04-19,273.179642) (2018-04-20,273.448774) (2018-04-21,277.519182) (2018-04-22,281.950210) (2018-04-23,284.849006) (2018-04-24,286.894360) (2018-04-25,287.662144) (2018-04-26,56.854939) (2018-04-27,60.827024) (2018-04-28,59.655904) (2018-04-29,61.329944) (2018-04-30,60.146006) (2018-05-01,68.673764) (2018-05-02,57.636666) (2018-05-03,51.407231) (2018-05-04,51.787409) (2018-05-05,48.608329) (2018-05-06,48.477632) (2018-05-07,45.843200) (2018-05-08,40.044160) (2018-05-09,36.250330) (2018-05-10,40.306946) (2018-05-11,27.910340) (2018-05-12,31.886689) (2018-05-13,32.116278) (2018-05-14,30.426078) (2018-05-15,15.846571) (2018-05-16,14.221680) (2018-05-17,12.797181) (2018-05-18,12.022438) (2018-05-19,10.906520) (2018-05-20,6.606188) (2018-05-21,5.738759) (2018-05-22,5.726484) (2018-05-23,6.160337) (2018-05-24,2.168083) (2018-05-25,3.483538) (2018-05-26,0.096493) (2018-05-27,-1.847252) (2018-05-28,-1.847252) (2018-05-29,3.863662) (2018-05-30,3.863662) (2018-05-31,3.863662) (2018-06-01,3.863662) (2018-06-02,3.863662) (2018-06-03,3.863662) (2018-06-04,3.863662) (2018-06-05,3.214208) (2018-06-06,2.780355) (2018-06-07,1.904760) (2018-06-08,0.589305) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.183649) (2018-07-04,0.183649) (2018-07-05,0.183649) (2018-07-06,0.183649) (2018-07-07,0.183649) (2018-07-08,0.183649) (2018-07-09,0.183649) (2018-07-10,0.183649) (2018-07-11,0.183649) (2018-07-12,0.183649) (2018-07-13,0.183649) (2018-07-14,0.183649) (2018-07-15,0.183649) (2018-07-16,0.183649) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,3.361640) (2018-12-05,3.391385) (2018-12-06,3.391385) (2018-12-07,3.391385) (2018-12-08,3.391385) (2018-12-09,8.472489) (2018-12-10,9.473385) (2018-12-11,10.952231) (2018-12-12,29.079971) (2018-12-13,46.074954) (2018-12-14,48.456084) (2018-12-15,50.594691) (2018-12-16,56.054394) (2018-12-17,63.880835) (2018-12-18,76.588195) (2018-12-19,91.098988) (2018-12-20,98.268018) (2018-12-21,99.008739) (2018-12-22,129.708081) (2018-12-23,132.921605) (2018-12-24,174.695730) (2018-12-25,194.405673) (2018-12-26,178.379943) (2018-12-27,165.256433) (2018-12-28,166.355132) (2018-12-29,167.876901) (2018-12-30,174.406897) (2018-12-31,168.564086) (2019-01-01,156.526468) (2019-01-02,157.394061) (2019-01-03,156.695667) (2019-01-04,177.668176) (2019-01-05,146.968833) (2019-01-06,138.674205) (2019-01-07,95.899184) (2019-01-08,74.710395) (2019-01-09,72.608385) (2019-01-10,68.736912) (2019-01-11,65.257083) (2019-01-12,61.596707) (2019-01-13,49.607008) (2019-01-14,47.623377) (2019-01-15,43.591996) (2019-01-16,28.183865) (2019-01-17,21.713229) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,0.000000) (2017-10-21,0.000000) (2017-10-22,0.000000) (2017-10-23,0.000000) (2017-10-24,0.000000) (2017-10-25,0.000000) (2017-10-26,0.000000) (2017-10-27,0.000000) (2017-10-28,0.000000) (2017-10-29,0.000000) (2017-10-30,0.000000) (2017-10-31,0.000000) (2017-11-01,0.000000) (2017-11-02,1.777989) (2017-11-03,111.751785) (2017-11-04,228.267133) (2017-11-05,288.460491) (2017-11-06,314.873345) (2017-11-07,353.076468) (2017-11-08,400.558845) (2017-11-09,485.564641) (2017-11-10,535.327020) (2017-11-11,584.843222) (2017-11-12,608.843619) (2017-11-13,683.087242) (2017-11-14,723.105307) (2017-11-15,980.122482) (2017-11-16,1020.373018) (2017-11-17,1007.109661) (2017-11-18,917.494169) (2017-11-19,891.435496) (2017-11-20,898.559712) (2017-11-21,903.795268) (2017-11-22,910.125368) (2017-11-23,958.049284) (2017-11-24,955.665877) (2017-11-25,964.996116) (2017-11-26,1035.340858) (2017-11-27,988.767280) (2017-11-28,1055.278934) (2017-11-29,798.261760) (2017-11-30,756.233235) (2017-12-01,659.522796) (2017-12-02,632.622939) (2017-12-03,598.488254) (2017-12-04,564.951184) (2017-12-05,521.512506) (2017-12-06,467.700029) (2017-12-07,334.770317) (2017-12-08,287.391344) (2017-12-09,228.544903) (2017-12-10,134.199764) (2017-12-11,106.529720) (2017-12-12,0.000000) (2017-12-13,0.000000) (2017-12-14,0.000000) (2017-12-15,0.000000) (2017-12-16,0.000000) (2017-12-17,0.000000) (2017-12-18,0.000000) (2017-12-19,0.000000) (2017-12-20,0.000000) (2017-12-21,0.000000) (2017-12-22,0.000000) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,212.336869) (2018-01-30,391.667742) (2018-01-31,391.667742) (2018-02-01,391.667742) (2018-02-02,391.667742) (2018-02-03,391.667742) (2018-02-04,391.667742) (2018-02-05,391.667742) (2018-02-06,391.667742) (2018-02-07,391.667742) (2018-02-08,391.667742) (2018-02-09,391.667742) (2018-02-10,439.275464) (2018-02-11,438.400885) (2018-02-12,265.448256) (2018-02-13,123.238706) (2018-02-14,143.887345) (2018-02-15,333.111132) (2018-02-16,350.712901) (2018-02-17,375.185867) (2018-02-18,426.235449) (2018-02-19,431.016415) (2018-02-20,448.154327) (2018-02-21,453.164076) (2018-02-22,492.291728) (2018-02-23,538.389130) (2018-02-24,514.919856) (2018-02-25,668.656185) (2018-02-26,1467.599209) (2018-02-27,1471.023042) (2018-02-28,1463.344467) (2018-03-01,1276.643595) (2018-03-02,1276.587917) (2018-03-03,1278.641276) (2018-03-04,1267.661913) (2018-03-05,1262.880947) (2018-03-06,1245.494132) (2018-03-07,1268.825531) (2018-03-08,1247.206456) (2018-03-09,1205.799211) (2018-03-10,1181.660763) (2018-03-11,1028.799014) (2018-03-12,196.608137) (2018-03-13,160.869207) (2018-03-14,213.372144) (2018-03-15,237.386303) (2018-03-16,225.517395) (2018-03-17,204.630563) (2018-03-18,166.155081) (2018-03-19,175.454822) (2018-03-20,175.703727) (2018-03-21,151.744294) (2018-03-22,139.547380) (2018-03-23,137.511693) (2018-03-24,137.511693) (2018-03-25,137.511693) (2018-03-26,133.832839) (2018-03-27,490.307001) (2018-03-28,427.531957) (2018-03-29,404.941605) (2018-03-30,401.489590) (2018-03-31,555.906666) (2018-04-01,554.311928) (2018-04-02,545.012186) (2018-04-03,553.308557) (2018-04-04,568.659061) (2018-04-05,624.066443) (2018-04-06,623.427780) (2018-04-07,626.115540) (2018-04-08,637.551914) (2018-04-09,635.094381) (2018-04-10,276.233389) (2018-04-11,301.954930) (2018-04-12,815.476576) (2018-04-13,830.932711) (2018-04-14,673.810659) (2018-04-15,691.702225) (2018-04-16,691.702225) (2018-04-17,695.524696) (2018-04-18,701.018967) (2018-04-19,661.079941) (2018-04-20,662.879429) (2018-04-21,670.752663) (2018-04-22,678.864154) (2018-04-23,678.864154) (2018-04-24,833.428216) (2018-04-25,814.119559) (2018-04-26,298.435474) (2018-04-27,283.339065) (2018-04-28,280.404548) (2018-04-29,309.974151) (2018-04-30,328.127985) (2018-05-01,317.062199) (2018-05-02,312.951647) (2018-05-03,300.327907) (2018-05-04,577.772612) (2018-05-05,610.672817) (2018-05-06,831.520685) (2018-05-07,831.520685) (2018-05-08,674.537226) (2018-05-09,755.345203) (2018-05-10,752.563802) (2018-05-11,756.436617) (2018-05-12,773.553294) (2018-05-13,729.411350) (2018-05-14,728.774748) (2018-05-15,725.756683) (2018-05-16,703.469679) (2018-05-17,693.918893) (2018-05-18,412.658892) (2018-05-19,369.197693) (2018-05-20,128.801960) (2018-05-21,128.801960) (2018-05-22,129.456264) (2018-05-23,40.557539) (2018-05-24,41.554657) (2018-05-25,35.096950) (2018-05-26,17.980272) (2018-05-27,492.501082) (2018-05-28,480.040678) (2018-05-29,510.568003) (2018-05-30,563.554131) (2018-05-31,996.689358) (2018-06-01,1066.584275) (2018-06-02,1104.143109) (2018-06-03,1119.688746) (2018-06-04,1161.635934) (2018-06-05,1154.803303) (2018-06-06,1533.125163) (2018-06-07,1544.678733) (2018-06-08,1904.032791) (2018-06-09,1911.053543) (2018-06-10,1465.262767) (2018-06-11,1699.951383) (2018-06-12,1685.474701) (2018-06-13,1642.093749) (2018-06-14,1270.986757) (2018-06-15,1383.928484) (2018-06-16,1352.265937) (2018-06-17,1350.256991) (2018-06-18,1325.967465) (2018-06-19,1344.646458) (2018-06-20,992.927111) (2018-06-21,1001.560422) (2018-06-22,665.085366) (2018-06-23,670.687397) (2018-06-24,668.066136) (2018-06-25,431.313626) (2018-06-26,428.962222) (2018-06-27,434.152293) (2018-06-28,395.633196) (2018-06-29,221.105601) (2018-06-30,240.027898) (2018-07-01,229.457657) (2018-07-02,222.795598) (2018-07-03,216.585717) (2018-07-04,206.157542) (2018-07-05,195.125031) (2018-07-06,179.596750) (2018-07-07,380.823058) (2018-07-08,370.539284) (2018-07-09,367.546351) (2018-07-10,365.518511) (2018-07-11,356.245854) (2018-07-12,347.474095) (2018-07-13,342.254801) (2018-07-14,329.152458) (2018-07-15,329.094118) (2018-07-16,333.006587) (2018-07-17,348.751233) (2018-07-18,355.405482) (2018-07-19,482.069709) (2018-07-20,492.005680) (2018-07-21,279.311472) (2018-07-22,265.034111) (2018-07-23,272.126638) (2018-07-24,271.563375) (2018-07-25,286.015731) (2018-07-26,458.097724) (2018-07-27,486.886059) (2018-07-28,549.773511) (2018-07-29,565.070185) (2018-07-30,559.081511) (2018-07-31,543.139028) (2018-08-01,533.301335) (2018-08-02,401.761072) (2018-08-03,386.744075) (2018-08-04,441.058760) (2018-08-05,445.732138) (2018-08-06,890.386632) (2018-08-07,906.541942) (2018-08-08,913.476944) (2018-08-09,769.399909) (2018-08-10,754.198100) (2018-08-11,678.426427) (2018-08-12,661.900689) (2018-08-13,658.447049) (2018-08-14,664.432042) (2018-08-15,675.379629) (2018-08-16,671.056068) (2018-08-17,678.048025) (2018-08-18,650.441520) (2018-08-19,652.929022) (2018-08-20,212.200354) (2018-08-21,190.166166) (2018-08-22,167.708457) (2018-08-23,136.902307) (2018-08-24,130.283082) (2018-08-25,135.340577) (2018-08-26,133.482841) (2018-08-27,140.246427) (2018-08-28,137.411836) (2018-08-29,289.788349) (2018-08-30,325.622251) (2018-08-31,320.341971) (2018-09-01,294.494037) (2018-09-02,288.615148) (2018-09-03,281.948182) (2018-09-04,281.400547) (2018-09-05,295.990540) (2018-09-06,307.818175) (2018-09-07,422.476389) (2018-09-08,462.764132) (2018-09-09,970.467064) (2018-09-10,1006.231416) (2018-09-11,1489.679713) (2018-09-12,1317.474540) (2018-09-13,1286.427784) (2018-09-14,1326.557133) (2018-09-15,1329.168013) (2018-09-16,1324.744509) (2018-09-17,1335.084307) (2018-09-18,1335.029969) (2018-09-19,1330.432945) (2018-09-20,1315.728605) (2018-09-21,1224.289923) (2018-09-22,1184.749411) (2018-09-23,677.225170) (2018-09-24,631.640788) (2018-09-25,141.188770) (2018-09-26,137.282395) (2018-09-27,142.716803) (2018-09-28,104.998945) (2018-09-29,120.222416) (2018-09-30,130.479637) (2018-10-01,117.232507) (2018-10-02,114.570231) (2018-10-03,112.122280) (2018-10-04,108.987260) (2018-10-05,75.710674) (2018-10-06,72.284778) (2018-10-07,106.893782) (2018-10-08,106.960969) (2018-10-09,111.245847) (2018-10-10,110.222084) (2018-10-11,103.612572) (2018-10-12,107.402350) (2018-10-13,93.046646) (2018-10-14,118.713298) (2018-10-15,120.799438) (2018-10-16,130.674936) (2018-10-17,135.619327) (2018-10-18,134.464527) (2018-10-19,138.533485) (2018-10-20,142.532045) (2018-10-21,134.883897) (2018-10-22,140.327941) (2018-10-23,142.694000) (2018-10-24,152.594391) (2018-10-25,145.531151) (2018-10-26,149.714122) (2018-10-27,149.061787) (2018-10-28,111.187091) (2018-10-29,150.039817) (2018-10-30,140.082802) (2018-10-31,194.695707) (2018-11-01,191.591115) (2018-11-02,187.477274) (2018-11-03,179.713435) (2018-11-04,156.409760) (2018-11-05,152.764332) (2018-11-06,200.707764) (2018-11-07,209.804687) (2018-11-08,211.353197) (2018-11-09,196.421411) (2018-11-10,203.197373) (2018-11-11,205.434796) (2018-11-12,166.280236) (2018-11-13,167.639782) (2018-11-14,97.853073) (2018-11-15,97.567101) (2018-11-16,98.045336) (2018-11-17,108.169013) (2018-11-18,104.587174) (2018-11-19,101.233414) (2018-11-20,47.797293) (2018-11-21,28.619842) (2018-11-22,30.206850) (2018-11-23,31.657816) (2018-11-24,20.040414) (2018-11-25,20.104903) (2018-11-26,20.280705) (2018-11-27,18.873088) (2018-11-28,19.097586) (2018-11-29,20.649509) (2018-11-30,21.298137) (2018-12-01,13.445043) (2018-12-02,16.493084) (2018-12-03,15.786866) (2018-12-04,26.226712) (2018-12-05,29.468298) (2018-12-06,41.791066) (2018-12-07,42.881987) (2018-12-08,44.246211) (2018-12-09,51.670429) (2018-12-10,63.798360) (2018-12-11,74.336628) (2018-12-12,80.103406) (2018-12-13,78.881789) (2018-12-14,80.033231) (2018-12-15,85.627260) (2018-12-16,82.503876) (2018-12-17,83.177142) (2018-12-18,69.156209) (2018-12-19,65.360579) (2018-12-20,62.374078) (2018-12-21,62.079179) (2018-12-22,60.714954) (2018-12-23,62.977094) (2018-12-24,48.224137) (2018-12-25,45.276946) (2018-12-26,51.615078) (2018-12-27,52.743251) (2018-12-28,51.117260) (2018-12-29,46.417817) (2018-12-30,46.931450) (2018-12-31,47.479238) (2019-01-01,49.476657) (2019-01-02,50.011061) (2019-01-03,44.606616) (2019-01-04,82.076769) (2019-01-05,87.762732) (2019-01-06,75.786455) (2019-01-07,76.122569) (2019-01-08,69.924127) (2019-01-09,88.198810) (2019-01-10,87.058039) (2019-01-11,85.981676) (2019-01-12,96.516867) (2019-01-13,95.563835) (2019-01-14,94.393207) (2019-01-15,92.344831) (2019-01-16,94.166710) (2019-01-17,90.336883) (2019-01-18,57.980121) (2019-01-19,53.882682) (2019-01-20,54.096159) (2019-01-21,52.980910) (2019-01-22,62.387364) (2019-01-23,31.763760) (2019-01-24,33.858859) (2019-01-25,51.308836) (2019-01-26,46.871736) (2019-01-27,48.295506) (2019-01-28,47.854442) (2019-01-29,49.043713) (2019-01-30,47.221834) (2019-01-31,49.369111) (2019-02-01,48.022873) (2019-02-02,49.377397) (2019-02-03,49.607203) (2019-02-04,52.895203) (2019-02-05,48.056529) (2019-02-06,49.358535) (2019-02-07,45.898208) (2019-02-08,29.878767) (2019-02-09,22.932089) (2019-02-10,21.947719) (2019-02-11,24.574619) (2019-02-12,60.221448) (2019-02-13,60.617308) (2019-02-14,62.832372) (2019-02-15,66.442007) (2019-02-16,63.878028) (2019-02-17,63.097959) (2019-02-18,59.809959) (2019-02-19,54.192772) (2019-02-20,102.433329) (2019-02-21,115.299715) (2019-02-22,140.166544) (2019-02-23,141.269874) (2019-02-24,157.877806) (2019-02-25,157.645663) (2019-02-26,125.053376) (2019-02-27,124.306552) (2019-02-28,120.002261) (2019-03-01,119.791694) (2019-03-02,127.037448) (2019-03-03,127.336198) (2019-03-04,130.709946) (2019-03-05,130.496305) (2019-03-06,80.516464) (2019-03-07,70.761811) (2019-03-08,47.131618) (2019-03-09,1241.421247) (2019-03-10,1224.655668) (2019-03-11,1218.565322) (2019-03-12,1213.036757) (2019-03-13,1212.738168) (2019-03-14,1212.939030) (2019-03-15,1205.206084) (2019-03-16,1289.863166) (2019-03-17,1290.114678) (2019-03-18,1286.740931) (2019-03-19,1286.740931) (2019-03-20,1286.600942) (2019-03-21,1284.552138) (2019-03-22,1282.353896) (2019-03-23,87.198786) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,45.894209) (2017-10-02,47.462994) (2017-10-03,87.338938) (2017-10-04,87.338938) (2017-10-05,94.823396) (2017-10-06,1604.467916) (2017-10-07,1905.763730) (2017-10-08,1922.266640) (2017-10-09,2058.685127) (2017-10-10,2058.685127) (2017-10-11,2090.517932) (2017-10-12,2097.479554) (2017-10-13,2113.372694) (2017-10-14,2138.263640) (2017-10-15,2092.369431) (2017-10-16,2090.800645) (2017-10-17,2050.924702) (2017-10-18,2050.924702) (2017-10-19,2112.739373) (2017-10-20,658.590699) (2017-10-21,386.704930) (2017-10-22,424.022150) (2017-10-23,324.607778) (2017-10-24,362.227974) (2017-10-25,430.046653) (2017-10-26,471.638323) (2017-10-27,479.600970) (2017-10-28,456.530305) (2017-10-29,498.432216) (2017-10-30,500.755193) (2017-10-31,502.550628) (2017-11-01,757.782581) (2017-11-02,1840.039296) (2017-11-03,2066.922796) (2017-11-04,2082.293476) (2017-11-05,2042.359563) (2017-11-06,2006.592218) (2017-11-07,1976.112701) (2017-11-08,2063.563923) (2017-11-09,2124.045653) (2017-11-10,2391.562948) (2017-11-11,2726.314580) (2017-11-12,2823.739861) (2017-11-13,2945.999162) (2017-11-14,3152.077549) (2017-11-15,3088.754803) (2017-11-16,2055.329403) (2017-11-17,1978.537627) (2017-11-18,1964.474419) (2017-11-19,5591.776689) (2017-11-20,5640.943455) (2017-11-21,5666.287891) (2017-11-22,5570.278313) (2017-11-23,5523.035306) (2017-11-24,5244.273985) (2017-11-25,5073.066566) (2017-11-26,5129.114145) (2017-11-27,5039.075259) (2017-11-28,5102.112678) (2017-11-29,5352.378315) (2017-11-30,5309.537727) (2017-12-01,5112.804503) (2017-12-02,5176.305338) (2017-12-03,1648.252749) (2017-12-04,1600.025023) (2017-12-05,1592.213577) (2017-12-06,1501.120447) (2017-12-07,1439.328432) (2017-12-08,1435.323998) (2017-12-09,1273.768040) (2017-12-10,1078.393270) (2017-12-11,1066.268533) (2017-12-12,803.736527) (2017-12-13,483.807913) (2017-12-14,417.306999) (2017-12-15,408.452653) (2017-12-16,335.142171) (2017-12-17,487.067236) (2017-12-18,490.910901) (2017-12-19,809.634420) (2017-12-20,809.634420) (2017-12-21,909.023579) (2017-12-22,915.037126) (2017-12-23,946.294140) (2017-12-24,946.294140) (2017-12-25,923.875484) (2017-12-26,915.496249) (2017-12-27,801.722916) (2017-12-28,792.933973) (2017-12-29,797.770701) (2017-12-30,776.862831) (2017-12-31,511.801868) (2018-01-01,505.782393) (2018-01-02,162.385206) (2018-01-03,162.385206) (2018-01-04,62.996048) (2018-01-05,48.375175) (2018-01-06,13.309624) (2018-01-07,13.309624) (2018-01-08,13.309624) (2018-01-09,13.309624) (2018-01-10,4.836728) (2018-01-11,4.836728) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,0.000000) (2018-01-30,0.000000) (2018-01-31,0.000000) (2018-02-01,0.000000) (2018-02-02,0.000000) (2018-02-03,0.000000) (2018-02-04,0.000000) (2018-02-05,0.000000) (2018-02-06,0.000000) (2018-02-07,0.000000) (2018-02-08,0.000000) (2018-02-09,0.000000) (2018-02-10,0.000000) (2018-02-11,0.000000) (2018-02-12,0.000000) (2018-02-13,0.000000) (2018-02-14,0.000000) (2018-02-15,0.000000) (2018-02-16,0.000000) (2018-02-17,0.000000) (2018-02-18,0.000000) (2018-02-19,0.000000) (2018-02-20,0.000000) (2018-02-21,0.000000) (2018-02-22,0.000000) (2018-02-23,0.000000) (2018-02-24,0.000000) (2018-02-25,0.000000) (2018-02-26,0.000000) (2018-02-27,0.000000) (2018-02-28,0.000000) (2018-03-01,0.000000) (2018-03-02,0.000000) (2018-03-03,0.000000) (2018-03-04,0.000000) (2018-03-05,0.000000) (2018-03-06,0.000000) (2018-03-07,0.000000) (2018-03-08,0.000000) (2018-03-09,0.000000) (2018-03-10,0.000000) (2018-03-11,0.000000) (2018-03-12,0.000000) (2018-03-13,0.000000) (2018-03-14,0.000000) (2018-03-15,0.000000) (2018-03-16,0.000000) (2018-03-17,0.000000) (2018-03-18,0.000000) (2018-03-19,0.000000) (2018-03-20,0.000000) (2018-03-21,0.000000) (2018-03-22,0.000000) (2018-03-23,0.000000) (2018-03-24,0.000000) (2018-03-25,0.000000) (2018-03-26,0.000000) (2018-03-27,0.000000) (2018-03-28,0.000000) (2018-03-29,0.000000) (2018-03-30,0.000000) (2018-03-31,0.000000) (2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.670270) (2017-08-12,80.570706) (2017-08-13,404.784379) (2017-08-14,482.281168) (2017-08-15,592.951618) (2017-08-16,700.888678) (2017-08-17,871.780444) (2017-08-18,927.259656) (2017-08-19,958.092845) (2017-08-20,1025.319741) (2017-08-21,1045.469381) (2017-08-22,1147.475742) (2017-08-23,1264.321016) (2017-08-24,1295.311046) (2017-08-25,1298.987015) (2017-08-26,1311.462169) (2017-08-27,1157.745479) (2017-08-28,1156.033919) (2017-08-29,1131.836925) (2017-08-30,1202.280396) (2017-08-31,1236.610352) (2017-09-01,1379.580565) (2017-09-02,1541.837491) (2017-09-03,1684.772979) (2017-09-04,1668.525912) (2017-09-05,1793.906237) (2017-09-06,1915.390125) (2017-09-07,2176.225556) (2017-09-08,2241.453876) (2017-09-09,2508.779961) (2017-09-10,2355.531803) (2017-09-11,2641.205200) (2017-09-12,2652.357679) (2017-09-13,2570.990577) (2017-09-14,2668.673792) (2017-09-15,2558.849938) (2017-09-16,2404.637753) (2017-09-17,2403.831532) (2017-09-18,2757.286249) (2017-09-19,2702.003847) (2017-09-20,2583.913176) (2017-09-21,2472.003908) (2017-09-22,2827.887251) (2017-09-23,2699.607979) (2017-09-24,2837.530686) (2017-09-25,2597.110206) (2017-09-26,2640.661572) (2017-09-27,2612.363337) (2017-09-28,2400.961983) (2017-09-29,2426.973718) (2017-09-30,2533.246845) (2017-10-01,2400.755027) (2017-10-02,2062.075285) (2017-10-03,2005.181567) (2017-10-04,2010.323123) (2017-10-05,1855.188554) (2017-10-06,1446.874322) (2017-10-07,1274.204141) (2017-10-08,1364.353773) (2017-10-09,1256.240149) (2017-10-10,1145.821473) (2017-10-11,1092.085480) (2017-10-12,1072.462489) (2017-10-13,993.736781) (2017-10-14,933.231331) (2017-10-15,872.689467) (2017-10-16,855.350313) (2017-10-17,743.241816) (2017-10-18,669.977361) (2017-10-19,652.623309) (2017-10-20,673.122011) (2017-10-21,642.937579) (2017-10-22,399.845904) (2017-10-23,386.921383) (2017-10-24,356.162759) (2017-10-25,341.183558) (2017-10-26,269.302965) (2017-10-27,233.391367) (2017-10-28,148.745760) (2017-10-29,132.423280) (2017-10-30,131.084885) (2017-10-31,127.982816) (2017-11-01,75.867225) (2017-11-02,68.439652) (2017-11-03,30.797281) (2017-11-04,2.229490) (2017-11-05,0.000000) (2017-11-06,0.000000) (2017-11-07,0.000000) (2017-11-08,0.000000) (2017-11-09,0.000000) (2017-11-10,0.000000) (2017-11-11,0.000000) (2017-11-12,0.000000) (2017-11-13,0.000000) (2017-11-14,0.000000) (2017-11-15,0.000000) (2017-11-16,0.000000) (2017-11-17,0.000000) (2017-11-18,0.000000) (2017-11-19,0.000000) (2017-11-20,0.000000) (2017-11-21,0.000000) (2017-11-22,0.000000) (2017-11-23,0.000000) (2017-11-24,0.000000) (2017-11-25,0.000000) (2017-11-26,0.000000) (2017-11-27,0.000000) (2017-11-28,0.000000) (2017-11-29,0.000000) (2017-11-30,0.000000) (2017-12-01,0.000000) (2017-12-02,0.000000) (2017-12-03,0.000000) (2017-12-04,0.000000) (2017-12-05,0.000000) (2017-12-06,0.000000) (2017-12-07,0.000000) (2017-12-08,0.000000) (2017-12-09,0.000000) (2017-12-10,0.000000) (2017-12-11,0.000000) (2017-12-12,0.000000) (2017-12-13,0.000000) (2017-12-14,0.000000) (2017-12-15,0.000000) (2017-12-16,0.000000) (2017-12-17,0.000000) (2017-12-18,0.000000) (2017-12-19,0.000000) (2017-12-20,0.000000) (2017-12-21,0.000000) (2017-12-22,0.000000) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,0.000000) (2018-01-30,0.000000) (2018-01-31,0.000000) (2018-02-01,0.000000) (2018-02-02,0.000000) (2018-02-03,0.000000) (2018-02-04,0.000000) (2018-02-05,0.000000) (2018-02-06,0.000000) (2018-02-07,0.000000) (2018-02-08,0.000000) (2018-02-09,0.000000) (2018-02-10,0.000000) (2018-02-11,0.000000) (2018-02-12,0.000000) (2018-02-13,0.000000) (2018-02-14,0.000000) (2018-02-15,0.000000) (2018-02-16,0.000000) (2018-02-17,0.000000) (2018-02-18,0.000000) (2018-02-19,0.000000) (2018-02-20,0.000000) (2018-02-21,0.000000) (2018-02-22,0.000000) (2018-02-23,0.000000) (2018-02-24,0.000000) (2018-02-25,0.000000) (2018-02-26,0.000000) (2018-02-27,0.000000) (2018-02-28,0.000000) (2018-03-01,0.000000) (2018-03-02,0.000000) (2018-03-03,0.000000) (2018-03-04,0.000000) (2018-03-05,0.000000) (2018-03-06,0.000000) (2018-03-07,0.000000) (2018-03-08,0.000000) (2018-03-09,0.000000) (2018-03-10,0.000000) (2018-03-11,0.000000) (2018-03-12,0.000000) (2018-03-13,0.000000) (2018-03-14,0.000000) (2018-03-15,0.000000) (2018-03-16,0.000000) (2018-03-17,0.000000) (2018-03-18,0.000000) (2018-03-19,0.000000) (2018-03-20,0.000000) (2018-03-21,0.000000) (2018-03-22,0.000000) (2018-03-23,0.000000) (2018-03-24,0.000000) (2018-03-25,0.000000) (2018-03-26,0.000000) (2018-03-27,0.000000) (2018-03-28,0.000000) (2018-03-29,0.000000) (2018-03-30,0.000000) (2018-03-31,0.000000) (2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,0.000000) (2017-10-21,0.000000) (2017-10-22,0.000000) (2017-10-23,0.000000) (2017-10-24,0.000000) (2017-10-25,0.000000) (2017-10-26,0.000000) (2017-10-27,0.000000) (2017-10-28,0.000000) (2017-10-29,0.000000) (2017-10-30,0.000000) (2017-10-31,0.000000) (2017-11-01,0.000000) (2017-11-02,0.000000) (2017-11-03,0.000000) (2017-11-04,0.000000) (2017-11-05,0.000000) (2017-11-06,0.000000) (2017-11-07,0.000000) (2017-11-08,0.000000) (2017-11-09,0.000000) (2017-11-10,0.000000) (2017-11-11,0.000000) (2017-11-12,0.000000) (2017-11-13,0.000000) (2017-11-14,0.000000) (2017-11-15,0.000000) (2017-11-16,0.000000) (2017-11-17,0.000000) (2017-11-18,0.000000) (2017-11-19,0.000000) (2017-11-20,0.000000) (2017-11-21,0.000000) (2017-11-22,0.000000) (2017-11-23,0.000000) (2017-11-24,0.000000) (2017-11-25,0.000000) (2017-11-26,0.000000) (2017-11-27,0.000000) (2017-11-28,0.000000) (2017-11-29,0.000000) (2017-11-30,0.000000) (2017-12-01,0.000000) (2017-12-02,0.000000) (2017-12-03,0.000000) (2017-12-04,0.000000) (2017-12-05,6.639486) (2017-12-06,255.132368) (2017-12-07,271.375340) (2017-12-08,343.178157) (2017-12-09,372.471589) (2017-12-10,456.030193) (2017-12-11,1152.154766) (2017-12-12,1200.522337) (2017-12-13,1339.198843) (2017-12-14,1392.887671) (2017-12-15,1403.397464) (2017-12-16,1485.072135) (2017-12-17,1517.956084) (2017-12-18,1529.921273) (2017-12-19,1569.754735) (2017-12-20,1338.183976) (2017-12-21,1330.810529) (2017-12-22,1310.767495) (2017-12-23,1303.049749) (2017-12-24,1288.372106) (2017-12-25,626.116883) (2017-12-26,616.401077) (2017-12-27,748.190884) (2017-12-28,705.824268) (2017-12-29,786.008226) (2017-12-30,878.440141) (2017-12-31,1047.162412) (2018-01-01,2074.317217) (2018-01-02,2582.544750) (2018-01-03,2943.968620) (2018-01-04,3243.336794) (2018-01-05,3271.043379) (2018-01-06,3397.507433) (2018-01-07,3353.259709) (2018-01-08,3371.989095) (2018-01-09,4560.854693) (2018-01-10,4320.959611) (2018-01-11,4309.637399) (2018-01-12,4331.919770) (2018-01-13,4462.457688) (2018-01-14,4260.612853) (2018-01-15,3240.814614) (2018-01-16,2686.114133) (2018-01-17,2307.768141) (2018-01-18,2008.405658) (2018-01-19,2015.056668) (2018-01-20,1964.102628) (2018-01-21,1939.469391) (2018-01-22,1902.236602) (2018-01-23,678.920059) (2018-01-24,668.382822) (2018-01-25,688.551118) (2018-01-26,622.277550) (2018-01-27,317.115385) (2018-01-28,335.463468) (2018-01-29,331.241514) (2018-01-30,336.328401) (2018-01-31,344.019463) (2018-02-01,351.496512) (2018-02-02,265.509587) (2018-02-03,181.061121) (2018-02-04,192.020509) (2018-02-05,177.612871) (2018-02-06,178.912502) (2018-02-07,159.709202) (2018-02-08,149.353644) (2018-02-09,102.798207) (2018-02-10,103.449220) (2018-02-11,87.432842) (2018-02-12,77.014585) (2018-02-13,74.158884) (2018-02-14,66.593051) (2018-02-15,67.824598) (2018-02-16,84.058410) (2018-02-17,71.421175) (2018-02-18,60.461787) (2018-02-19,59.503478) (2018-02-20,55.126612) (2018-02-21,54.295917) (2018-02-22,55.669706) (2018-02-23,76.423718) (2018-02-24,85.129167) (2018-02-25,83.036077) (2018-02-26,78.354533) (2018-02-27,85.026841) (2018-02-28,84.901612) (2018-03-01,69.562055) (2018-03-02,56.429863) (2018-03-03,58.609158) (2018-03-04,58.609158) (2018-03-05,58.609158) (2018-03-06,57.485573) (2018-03-07,57.485573) (2018-03-08,51.751529) (2018-03-09,32.954948) (2018-03-10,24.470923) (2018-03-11,26.316025) (2018-03-12,28.168587) (2018-03-13,27.918707) (2018-03-14,30.150949) (2018-03-15,28.453776) (2018-03-16,25.221705) (2018-03-17,23.042410) (2018-03-18,23.042410) (2018-03-19,24.738779) (2018-03-20,24.738779) (2018-03-21,24.842453) (2018-03-22,20.246101) (2018-03-23,18.141553) (2018-03-24,17.786778) (2018-03-25,16.189108) (2018-03-26,15.606197) (2018-03-27,7.407247) (2018-03-28,5.175005) (2018-03-29,5.161481) (2018-03-30,5.390339) (2018-03-31,5.390339) (2018-04-01,5.390339) (2018-04-02,3.693970) (2018-04-03,7.097846) (2018-04-04,7.061414) (2018-04-05,7.351952) (2018-04-06,7.351952) (2018-04-07,7.351952) (2018-04-08,7.104520) (2018-04-09,5.834869) (2018-04-10,5.380205) (2018-04-11,11.791501) (2018-04-12,142.784992) (2018-04-13,146.857551) (2018-04-14,146.857551) (2018-04-15,146.857551) (2018-04-16,146.857551) (2018-04-17,160.883117) (2018-04-18,160.815874) (2018-04-19,159.876266) (2018-04-20,170.894883) (2018-04-21,176.052237) (2018-04-22,176.294685) (2018-04-23,177.331364) (2018-04-24,179.223278) (2018-04-25,172.942160) (2018-04-26,41.618295) (2018-04-27,44.891250) (2018-04-28,45.631108) (2018-04-29,45.997530) (2018-04-30,46.476588) (2018-05-01,30.035305) (2018-05-02,30.035305) (2018-05-03,31.034612) (2018-05-04,20.593744) (2018-05-05,16.570906) (2018-05-06,16.328458) (2018-05-07,15.291779) (2018-05-08,13.399865) (2018-05-09,15.272812) (2018-05-10,15.069627) (2018-05-11,7.495254) (2018-05-12,6.755397) (2018-05-13,6.388974) (2018-05-14,5.909916) (2018-05-15,6.249589) (2018-05-16,6.249589) (2018-05-17,5.481159) (2018-05-18,4.903410) (2018-05-19,3.768894) (2018-05-20,3.768894) (2018-05-21,3.768894) (2018-05-22,3.768894) (2018-05-23,3.070079) (2018-05-24,3.070079) (2018-05-25,3.070079) (2018-05-26,3.070079) (2018-05-27,3.070079) (2018-05-28,3.294778) (2018-05-29,1.966947) (2018-05-30,1.966947) (2018-05-31,2.561007) (2018-06-01,3.322269) (2018-06-02,3.322269) (2018-06-03,3.322269) (2018-06-04,5.296116) (2018-06-05,6.556699) (2018-06-06,5.252389) (2018-06-07,6.122780) (2018-06-08,6.116739) (2018-06-09,6.116739) (2018-06-10,6.116739) (2018-06-11,6.187214) (2018-06-12,6.455099) (2018-06-13,6.455099) (2018-06-14,5.423101) (2018-06-15,4.661839) (2018-06-16,4.661839) (2018-06-17,4.661839) (2018-06-18,2.687992) (2018-06-19,1.427409) (2018-06-20,1.427409) (2018-06-21,0.557018) (2018-06-22,0.563059) (2018-06-23,0.563059) (2018-06-24,0.563059) (2018-06-25,0.267885) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,2.063343) (2018-07-10,4.548563) (2018-07-11,5.986522) (2018-07-12,6.977964) (2018-07-13,11.235226) (2018-07-14,12.498668) (2018-07-15,12.498668) (2018-07-16,12.498668) (2018-07-17,60.309939) (2018-07-18,60.309939) (2018-07-19,62.615151) (2018-07-20,62.742955) (2018-07-21,62.742955) (2018-07-22,63.335812) (2018-07-23,61.272469) (2018-07-24,58.787249) (2018-07-25,57.400543) (2018-07-26,56.483494) (2018-07-27,52.226232) (2018-07-28,51.026775) (2018-07-29,51.026775) (2018-07-30,51.026775) (2018-07-31,3.215504) (2018-08-01,3.215504) (2018-08-02,0.910292) (2018-08-03,3.830439) (2018-08-04,3.977718) (2018-08-05,3.384862) (2018-08-06,3.384862) (2018-08-07,3.384862) (2018-08-08,3.559064) (2018-08-09,3.484671) (2018-08-10,3.484671) (2018-08-11,3.420686) (2018-08-12,3.959163) (2018-08-13,7.099984) (2018-08-14,13.488152) (2018-08-15,15.166253) (2018-08-16,18.543666) (2018-08-17,16.942537) (2018-08-18,18.325078) (2018-08-19,20.421609) (2018-08-20,23.198777) (2018-08-21,30.174118) (2018-08-22,30.513592) (2018-08-23,31.780298) (2018-08-24,34.026750) (2018-08-25,34.231222) (2018-08-26,33.878927) (2018-08-27,30.857852) (2018-08-28,24.682347) (2018-08-29,26.607690) (2018-08-30,30.696051) (2018-08-31,32.185360) (2018-09-01,32.783804) (2018-09-02,33.775179) (2018-09-03,31.976539) (2018-09-04,30.776906) (2018-09-05,30.799097) (2018-09-06,79.391173) (2018-09-07,78.517443) (2018-09-08,80.166448) (2018-09-09,81.203832) (2018-09-10,81.432504) (2018-09-11,81.841492) (2018-09-12,79.175487) (2018-09-13,75.632343) (2018-09-14,74.484873) (2018-09-15,73.112123) (2018-09-16,69.029837) (2018-09-17,69.618237) (2018-09-18,64.876602) (2018-09-19,82.367626) (2018-09-20,33.472236) (2018-09-21,32.454660) (2018-09-22,31.752226) (2018-09-23,31.385701) (2018-09-24,36.085301) (2018-09-25,36.316123) (2018-09-26,35.475556) (2018-09-27,31.880017) (2018-09-28,30.366197) (2018-09-29,40.862750) (2018-09-30,42.149496) (2018-10-01,40.629191) (2018-10-02,39.706959) (2018-10-03,21.820189) (2018-10-04,37.874475) (2018-10-05,42.990444) (2018-10-06,41.968631) (2018-10-07,42.980826) (2018-10-08,39.452652) (2018-10-09,42.574772) (2018-10-10,44.911469) (2018-10-11,60.107192) (2018-10-12,60.042661) (2018-10-13,64.506235) (2018-10-14,79.948848) (2018-10-15,82.168122) (2018-10-16,82.561991) (2018-10-17,83.270516) (2018-10-18,67.838468) (2018-10-19,65.340051) (2018-10-20,65.315286) (2018-10-21,63.871533) (2018-10-22,63.686978) (2018-10-23,60.492980) (2018-10-24,58.705199) (2018-10-25,43.182385) (2018-10-26,43.393570) (2018-10-27,28.081341) (2018-10-28,20.748914) (2018-10-29,18.882500) (2018-10-30,19.220144) (2018-10-31,18.385677) (2018-11-01,19.617188) (2018-11-02,18.617855) (2018-11-03,19.220364) (2018-11-04,21.062769) (2018-11-05,25.630526) (2018-11-06,25.325067) (2018-11-07,25.455338) (2018-11-08,26.958306) (2018-11-09,37.801319) (2018-11-10,41.843875) (2018-11-11,36.155517) (2018-11-12,35.756032) (2018-11-13,46.187835) (2018-11-14,47.867453) (2018-11-15,47.968200) (2018-11-16,46.432639) (2018-11-17,46.959437) (2018-11-18,45.014602) (2018-11-19,46.050345) (2018-11-20,52.695149) (2018-11-21,53.307634) (2018-11-22,54.896048) (2018-11-23,48.579035) (2018-11-24,45.557949) (2018-11-25,43.530232) (2018-11-26,73.892439) (2018-11-27,64.290906) (2018-11-28,67.157601) (2018-11-29,67.977048) (2018-11-30,71.510503) (2018-12-01,76.934225) (2018-12-02,77.107359) (2018-12-03,71.515239) (2018-12-04,66.246315) (2018-12-05,65.456816) (2018-12-06,64.664389) (2018-12-07,64.616026) (2018-12-08,66.736954) (2018-12-09,85.108019) (2018-12-10,55.263696) (2018-12-11,53.768926) (2018-12-12,49.450154) (2018-12-13,46.006641) (2018-12-14,43.499065) (2018-12-15,37.231351) (2018-12-16,38.248947) (2018-12-17,37.067123) (2018-12-18,35.256386) (2018-12-19,34.776388) (2018-12-20,32.477434) (2018-12-21,27.578301) (2018-12-22,24.075714) (2018-12-23,5.018172) (2018-12-24,4.718998) (2018-12-25,4.540146) (2018-12-26,4.247172) (2018-12-27,3.953349) (2018-12-28,2.727119) (2018-12-29,2.485634) (2018-12-30,0.997273) (2018-12-31,0.832428) (2019-01-01,0.792149) (2019-01-02,0.673100) (2019-01-03,0.685099) (2019-01-04,0.762778) (2019-01-05,2.231291) (2019-01-06,2.453403) (2019-01-07,6.560958) (2019-01-08,6.627164) (2019-01-09,6.768462) (2019-01-10,7.560843) (2019-01-11,8.486899) (2019-01-12,8.448373) (2019-01-13,8.653485) (2019-01-14,9.012041) (2019-01-15,9.012041) (2019-01-16,11.727862) (2019-01-17,12.139195) (2019-01-18,14.025638) (2019-01-19,13.627650) (2019-01-20,13.620572) (2019-01-21,12.808742) (2019-01-22,14.454800) (2019-01-23,16.919802) (2019-01-24,19.740267) (2019-01-25,20.363579) (2019-01-26,20.629140) (2019-01-27,20.591992) (2019-01-28,20.375480) (2019-01-29,20.424533) (2019-01-30,17.757143) (2019-01-31,18.354576) (2019-02-01,17.546783) (2019-02-02,17.625565) (2019-02-03,19.502927) (2019-02-04,17.629042) (2019-02-05,19.808886) (2019-02-06,24.779701) (2019-02-07,21.871370) (2019-02-08,25.627460) (2019-02-09,25.956305) (2019-02-10,26.091210) (2019-02-11,26.795359) (2019-02-12,26.984178) (2019-02-13,27.286133) (2019-02-14,27.047722) (2019-02-15,26.911699) (2019-02-16,25.791680) (2019-02-17,23.898825) (2019-02-18,22.945216) (2019-02-19,20.736920) (2019-02-20,17.197028) (2019-02-21,18.322553) (2019-02-22,13.049996) (2019-02-23,12.818203) (2019-02-24,13.240761) (2019-02-25,14.303142) (2019-02-26,21.376402) (2019-02-27,21.504051) (2019-02-28,23.696546) (2019-03-01,27.825489) (2019-03-02,31.345546) (2019-03-03,35.941927) (2019-03-04,38.354125) (2019-03-05,42.555284) (2019-03-06,40.427735) (2019-03-07,38.990898) (2019-03-08,39.132459) (2019-03-09,45.320619) (2019-03-10,49.464769) (2019-03-11,51.229643) (2019-03-12,52.695306) (2019-03-13,55.781932) (2019-03-14,58.063856) (2019-03-15,58.661503) (2019-03-16,61.422991) (2019-03-17,60.056248) (2019-03-18,56.957110) (2019-03-19,51.072138) (2019-03-20,49.162464) (2019-03-21,48.769261) (2019-03-22,48.357346) (2019-03-23,41.696802) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,0.000000) (2017-10-21,0.000000) (2017-10-22,0.000000) (2017-10-23,0.000000) (2017-10-24,0.000000) (2017-10-25,0.000000) (2017-10-26,0.000000) (2017-10-27,0.000000) (2017-10-28,0.000000) (2017-10-29,0.000000) (2017-10-30,0.000000) (2017-10-31,0.000000) (2017-11-01,0.000000) (2017-11-02,0.000000) (2017-11-03,0.000000) (2017-11-04,0.000000) (2017-11-05,0.000000) (2017-11-06,0.000000) (2017-11-07,0.000000) (2017-11-08,0.000000) (2017-11-09,0.000000) (2017-11-10,0.000000) (2017-11-11,0.000000) (2017-11-12,0.000000) (2017-11-13,0.000000) (2017-11-14,0.000000) (2017-11-15,0.000000) (2017-11-16,0.000000) (2017-11-17,0.000000) (2017-11-18,0.000000) (2017-11-19,0.000000) (2017-11-20,0.000000) (2017-11-21,0.000000) (2017-11-22,0.000000) (2017-11-23,0.000000) (2017-11-24,0.000000) (2017-11-25,0.000000) (2017-11-26,0.000000) (2017-11-27,0.000000) (2017-11-28,0.000000) (2017-11-29,0.000000) (2017-11-30,0.000000) (2017-12-01,0.000000) (2017-12-02,0.000000) (2017-12-03,0.000000) (2017-12-04,0.000000) (2017-12-05,0.000000) (2017-12-06,0.000000) (2017-12-07,0.000000) (2017-12-08,0.000000) (2017-12-09,1.789257) (2017-12-10,1.789257) (2017-12-11,1.789257) (2017-12-12,1.789257) (2017-12-13,1.789257) (2017-12-14,1.789257) (2017-12-15,1.789257) (2017-12-16,1.789257) (2017-12-17,1.789257) (2017-12-18,1.789257) (2017-12-19,1.789257) (2017-12-20,1.789257) (2017-12-21,1.789257) (2017-12-22,1.789257) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,484.513601) (2018-01-13,1690.516850) (2018-01-14,1690.516850) (2018-01-15,1690.516850) (2018-01-16,1690.516850) (2018-01-17,1691.199053) (2018-01-18,1737.507635) (2018-01-19,1795.296550) (2018-01-20,1871.139734) (2018-01-21,1896.029362) (2018-01-22,1934.905247) (2018-01-23,1974.662565) (2018-01-24,2014.826158) (2018-01-25,2088.907751) (2018-01-26,1663.526094) (2018-01-27,485.366872) (2018-01-28,504.721821) (2018-01-29,525.363582) (2018-01-30,544.491367) (2018-01-31,562.875448) (2018-02-01,526.364355) (2018-02-02,478.376529) (2018-02-03,427.612360) (2018-02-04,454.870403) (2018-02-05,470.182963) (2018-02-06,479.056634) (2018-02-07,490.689601) (2018-02-08,459.577362) (2018-02-09,449.775075) (2018-02-10,490.536980) (2018-02-11,514.242833) (2018-02-12,543.887441) (2018-02-13,571.605831) (2018-02-14,604.192379) (2018-02-15,629.629935) (2018-02-16,645.291661) (2018-02-17,641.334578) (2018-02-18,609.759563) (2018-02-19,575.083338) (2018-02-20,553.930450) (2018-02-21,536.873152) (2018-02-22,522.075216) (2018-02-23,500.002847) (2018-02-24,479.160676) (2018-02-25,465.703149) (2018-02-26,448.275155) (2018-02-27,426.220867) (2018-02-28,398.821462) (2018-03-01,402.087243) (2018-03-02,417.098495) (2018-03-03,444.837870) (2018-03-04,461.282400) (2018-03-05,457.653563) (2018-03-06,441.557643) (2018-03-07,426.164800) (2018-03-08,416.902251) (2018-03-09,405.675402) (2018-03-10,373.391311) (2018-03-11,357.482806) (2018-03-12,338.606856) (2018-03-13,318.180497) (2018-03-14,298.577895) (2018-03-15,263.712036) (2018-03-16,228.784979) (2018-03-17,194.952706) (2018-03-18,165.015499) (2018-03-19,156.755208) (2018-03-20,152.251519) (2018-03-21,139.706518) (2018-03-22,128.291334) (2018-03-23,124.121371) (2018-03-24,120.441157) (2018-03-25,109.366653) (2018-03-26,100.972479) (2018-03-27,100.078813) (2018-03-28,96.728854) (2018-03-29,95.912466) (2018-03-30,93.380919) (2018-03-31,83.843508) (2018-04-01,78.331695) (2018-04-02,73.483793) (2018-04-03,67.633703) (2018-04-04,68.521310) (2018-04-05,68.548840) (2018-04-06,62.575178) (2018-04-07,58.574862) (2018-04-08,74.376450) (2018-04-09,82.344726) (2018-04-10,99.719377) (2018-04-11,120.125009) (2018-04-12,152.046765) (2018-04-13,175.909723) (2018-04-14,196.836994) (2018-04-15,218.258388) (2018-04-16,233.926228) (2018-04-17,258.964420) (2018-04-18,288.369727) (2018-04-19,309.197903) (2018-04-20,352.271756) (2018-04-21,381.708964) (2018-04-22,396.828475) (2018-04-23,415.187168) (2018-04-24,427.545989) (2018-04-25,425.095018) (2018-04-26,408.857175) (2018-04-27,403.057847) (2018-04-28,404.220058) (2018-04-29,425.257101) (2018-04-30,435.326765) (2018-05-01,418.284699) (2018-05-02,394.739305) (2018-05-03,402.529521) (2018-05-04,391.200472) (2018-05-05,391.223569) (2018-05-06,372.609903) (2018-05-07,356.230942) (2018-05-08,356.327504) (2018-05-09,363.158201) (2018-05-10,373.117220) (2018-05-11,387.576971) (2018-05-12,398.617041) (2018-05-13,366.839145) (2018-05-14,349.265114) (2018-05-15,361.926279) (2018-05-16,356.788306) (2018-05-17,330.395316) (2018-05-18,303.126580) (2018-05-19,272.380150) (2018-05-20,267.246694) (2018-05-21,260.466488) (2018-05-22,235.996130) (2018-05-23,214.652934) (2018-05-24,201.398907) (2018-05-25,173.198567) (2018-05-26,141.598991) (2018-05-27,138.074721) (2018-05-28,130.864959) (2018-05-29,115.961119) (2018-05-30,116.963861) (2018-05-31,126.692430) (2018-06-01,126.699598) (2018-06-02,131.569221) (2018-06-03,130.704256) (2018-06-04,129.360502) (2018-06-05,124.662270) (2018-06-06,124.378764) (2018-06-07,115.445621) (2018-06-08,118.959650) (2018-06-09,120.167166) (2018-06-10,113.389041) (2018-06-11,116.859396) (2018-06-12,114.124994) (2018-06-13,110.736952) (2018-06-14,103.338602) (2018-06-15,96.315306) (2018-06-16,92.320644) (2018-06-17,90.151454) (2018-06-18,95.817661) (2018-06-19,96.673778) (2018-06-20,98.712852) (2018-06-21,102.912831) (2018-06-22,102.407493) (2018-06-23,96.367972) (2018-06-24,101.262020) (2018-06-25,95.012523) (2018-06-26,92.125303) (2018-06-27,87.839456) (2018-06-28,78.572537) (2018-06-29,76.780853) (2018-06-30,70.514637) (2018-07-01,65.154218) (2018-07-02,56.411968) (2018-07-03,54.337526) (2018-07-04,53.324996) (2018-07-05,48.480612) (2018-07-06,43.582833) (2018-07-07,43.927970) (2018-07-08,38.174047) (2018-07-09,38.818799) (2018-07-10,42.974043) (2018-07-11,47.445394) (2018-07-12,53.757856) (2018-07-13,57.508538) (2018-07-14,60.897865) (2018-07-15,61.419623) (2018-07-16,58.770182) (2018-07-17,59.739146) (2018-07-18,61.077999) (2018-07-19,61.653302) (2018-07-20,61.740392) (2018-07-21,63.109368) (2018-07-22,65.620367) (2018-07-23,69.465639) (2018-07-24,65.707738) (2018-07-25,63.773182) (2018-07-26,61.309899) (2018-07-27,63.867031) (2018-07-28,68.564836) (2018-07-29,74.178135) (2018-07-30,76.992817) (2018-07-31,77.251149) (2018-08-01,78.475814) (2018-08-02,76.071627) (2018-08-03,73.380491) (2018-08-04,77.321474) (2018-08-05,74.931326) (2018-08-06,72.149953) (2018-08-07,74.049640) (2018-08-08,75.158896) (2018-08-09,70.231023) (2018-08-10,67.863115) (2018-08-11,60.444559) (2018-08-12,56.963565) (2018-08-13,55.621721) (2018-08-14,53.605512) (2018-08-15,46.689408) (2018-08-16,44.072598) (2018-08-17,43.300485) (2018-08-18,36.664842) (2018-08-19,38.663078) (2018-08-20,40.549412) (2018-08-21,42.104855) (2018-08-22,37.921971) (2018-08-23,37.767439) (2018-08-24,36.098256) (2018-08-25,36.613856) (2018-08-26,34.887441) (2018-08-27,33.470982) (2018-08-28,33.903274) (2018-08-29,36.587005) (2018-08-30,39.780268) (2018-08-31,38.674456) (2018-09-01,39.168316) (2018-09-02,38.251236) (2018-09-03,35.690838) (2018-09-04,32.889166) (2018-09-05,33.733572) (2018-09-06,33.242419) (2018-09-07,30.333648) (2018-09-08,29.901221) (2018-09-09,28.897358) (2018-09-10,27.884390) (2018-09-11,29.765127) (2018-09-12,27.194644) (2018-09-13,23.784493) (2018-09-14,25.539671) (2018-09-15,25.473209) (2018-09-16,24.383386) (2018-09-17,23.790996) (2018-09-18,24.279926) (2018-09-19,21.745187) (2018-09-20,21.351538) (2018-09-21,22.444660) (2018-09-22,22.789549) (2018-09-23,21.922024) (2018-09-24,21.626315) (2018-09-25,18.539908) (2018-09-26,18.436318) (2018-09-27,19.046422) (2018-09-28,17.857721) (2018-09-29,18.685309) (2018-09-30,18.030583) (2018-10-01,19.691129) (2018-10-02,17.577544) (2018-10-03,18.225788) (2018-10-04,18.751488) (2018-10-05,17.408093) (2018-10-06,16.329332) (2018-10-07,16.813446) (2018-10-08,16.995327) (2018-10-09,16.017520) (2018-10-10,15.548496) (2018-10-11,15.909506) (2018-10-12,14.691846) (2018-10-13,12.468756) (2018-10-14,13.278976) (2018-10-15,11.225605) (2018-10-16,12.895034) (2018-10-17,14.174812) (2018-10-18,13.427438) (2018-10-19,14.317323) (2018-10-20,14.509999) (2018-10-21,14.692942) (2018-10-22,14.003418) (2018-10-23,14.582466) (2018-10-24,15.020640) (2018-10-25,14.005174) (2018-10-26,14.581921) (2018-10-27,14.577714) (2018-10-28,13.385822) (2018-10-29,13.960376) (2018-10-30,12.736124) (2018-10-31,12.104046) (2018-11-01,12.231860) (2018-11-02,11.541092) (2018-11-03,9.625107) (2018-11-04,8.573987) (2018-11-05,8.780473) (2018-11-06,8.344455) (2018-11-07,7.497750) (2018-11-08,6.468242) (2018-11-09,5.475038) (2018-11-10,5.694108) (2018-11-11,6.115584) (2018-11-12,5.075112) (2018-11-13,4.892558) (2018-11-14,4.508667) (2018-11-15,4.948394) (2018-11-16,4.783499) (2018-11-17,6.033867) (2018-11-18,6.212976) (2018-11-19,6.953707) (2018-11-20,6.675050) (2018-11-21,6.705735) (2018-11-22,7.434413) (2018-11-23,7.817892) (2018-11-24,7.581941) (2018-11-25,8.053437) (2018-11-26,8.168113) (2018-11-27,8.076933) (2018-11-28,8.386857) (2018-11-29,7.941601) (2018-11-30,8.147849) (2018-12-01,8.865706) (2018-12-02,8.996834) (2018-12-03,8.652249) (2018-12-04,9.836890) (2018-12-05,11.020548) (2018-12-06,10.888589) (2018-12-07,11.931131) (2018-12-08,12.360776) (2018-12-09,11.659789) (2018-12-10,11.658083) (2018-12-11,12.010287) (2018-12-12,11.800120) (2018-12-13,12.602801) (2018-12-14,12.457674) (2018-12-15,11.859257) (2018-12-16,11.907896) (2018-12-17,12.018356) (2018-12-18,11.527770) (2018-12-19,10.362873) (2018-12-20,10.836391) (2018-12-21,9.893256) (2018-12-22,9.634354) (2018-12-23,11.552118) (2018-12-24,11.340438) (2018-12-25,10.994881) (2018-12-26,11.973419) (2018-12-27,12.148984) (2018-12-28,11.483068) (2018-12-29,11.286375) (2018-12-30,11.216220) (2018-12-31,12.791690) (2019-01-01,12.542715) (2019-01-02,13.154824) (2019-01-03,12.884396) (2019-01-04,12.934592) (2019-01-05,13.762347) (2019-01-06,11.912211) (2019-01-07,12.330251) (2019-01-08,12.102576) (2019-01-09,10.754881) (2019-01-10,9.465372) (2019-01-11,10.546901) (2019-01-12,10.825298) (2019-01-13,10.706599) (2019-01-14,8.877106) (2019-01-15,8.510450) (2019-01-16,7.642495) (2019-01-17,7.786784) (2019-01-18,8.058082) (2019-01-19,7.379088) (2019-01-20,7.404447) (2019-01-21,6.784261) (2019-01-22,7.789818) (2019-01-23,8.084885) (2019-01-24,8.530102) (2019-01-25,7.718728) (2019-01-26,7.484118) (2019-01-27,7.704554) (2019-01-28,7.456982) (2019-01-29,8.171554) (2019-01-30,8.598856) (2019-01-31,7.777451) (2019-02-01,7.945300) (2019-02-02,7.765660) (2019-02-03,7.578761) (2019-02-04,8.237196) (2019-02-05,7.882264) (2019-02-06,8.124589) (2019-02-07,7.835767) (2019-02-08,8.814056) (2019-02-09,8.937913) (2019-02-10,9.113145) (2019-02-11,9.090664) (2019-02-12,8.618394) (2019-02-13,8.961606) (2019-02-14,9.397441) (2019-02-15,8.905109) (2019-02-16,9.889114) (2019-02-17,10.237386) (2019-02-18,9.921023) (2019-02-19,9.355441) (2019-02-20,9.725749) (2019-02-21,10.431824) (2019-02-22,9.630155) (2019-02-23,9.357587) (2019-02-24,9.108146) (2019-02-25,10.107799) (2019-02-26,10.062125) (2019-02-27,9.752714) (2019-02-28,10.211786) (2019-03-01,10.227830) (2019-03-02,9.831069) (2019-03-03,9.530332) (2019-03-04,9.505165) (2019-03-05,10.017013) (2019-03-06,9.365001) (2019-03-07,9.112433) (2019-03-08,8.647503) (2019-03-09,9.465544) (2019-03-10,9.370341) (2019-03-11,8.688706) (2019-03-12,8.496555) (2019-03-13,8.297141) (2019-03-14,7.696211) (2019-03-15,7.357065) (2019-03-16,6.845011) (2019-03-17,6.455622) (2019-03-18,5.906362) (2019-03-19,4.772679) (2019-03-20,4.361686) (2019-03-21,3.470546) (2019-03-22,3.392524) (2019-03-23,2.089968) }; +\addplot+ coordinates {(2017-07-01,228.568825) (2017-07-02,231.685468) (2017-07-03,243.600273) (2017-07-04,311.975998) (2017-07-05,334.947996) (2017-07-06,384.243176) (2017-07-07,582.873644) (2017-07-08,640.352903) (2017-07-09,715.648367) (2017-07-10,718.818514) (2017-07-11,804.758569) (2017-07-12,823.490270) (2017-07-13,873.117673) (2017-07-14,943.480380) (2017-07-15,863.763962) (2017-07-16,883.939428) (2017-07-17,910.537325) (2017-07-18,1330.295269) (2017-07-19,1344.007524) (2017-07-20,1302.262931) (2017-07-21,1112.563400) (2017-07-22,1062.120779) (2017-07-23,989.425152) (2017-07-24,1183.399008) (2017-07-25,1093.094696) (2017-07-26,1061.943273) (2017-07-27,1012.132234) (2017-07-28,884.998449) (2017-07-29,918.089226) (2017-07-30,921.415331) (2017-07-31,938.675442) (2017-08-01,548.799042) (2017-08-02,551.622413) (2017-08-03,585.568107) (2017-08-04,595.418777) (2017-08-05,653.980425) (2017-08-06,973.709434) (2017-08-07,900.631750) (2017-08-08,1004.662107) (2017-08-09,1581.130758) (2017-08-10,2108.270469) (2017-08-11,2900.462189) (2017-08-12,3207.756093) (2017-08-13,3275.795625) (2017-08-14,3299.743735) (2017-08-15,3393.481576) (2017-08-16,3365.611804) (2017-08-17,3370.289983) (2017-08-18,3479.566744) (2017-08-19,3590.992428) (2017-08-20,3287.731462) (2017-08-21,3204.782062) (2017-08-22,3356.157273) (2017-08-23,2768.108481) (2017-08-24,2238.499261) (2017-08-25,1424.501377) (2017-08-26,1077.175761) (2017-08-27,982.518015) (2017-08-28,902.797092) (2017-08-29,710.801981) (2017-08-30,699.164130) (2017-08-31,652.989670) (2017-09-01,619.834626) (2017-09-02,736.113785) (2017-09-03,918.334818) (2017-09-04,919.722867) (2017-09-05,717.619974) (2017-09-06,857.301075) (2017-09-07,924.355520) (2017-09-08,973.813156) (2017-09-09,1034.397768) (2017-09-10,1039.387568) (2017-09-11,1039.387568) (2017-09-12,1050.497682) (2017-09-13,1054.989883) (2017-09-14,1112.857306) (2017-09-15,1038.482870) (2017-09-16,764.858333) (2017-09-17,617.904133) (2017-09-18,596.385811) (2017-09-19,552.253259) (2017-09-20,446.436609) (2017-09-21,391.809976) (2017-09-22,361.139234) (2017-09-23,303.227386) (2017-09-24,327.973299) (2017-09-25,330.846941) (2017-09-26,326.069909) (2017-09-27,326.676281) (2017-09-28,637.742469) (2017-09-29,695.473704) (2017-09-30,692.657378) (2017-10-01,641.518338) (2017-10-02,613.166329) (2017-10-03,597.673985) (2017-10-04,556.391598) (2017-10-05,544.291181) (2017-10-06,523.444195) (2017-10-07,528.894213) (2017-10-08,499.158500) (2017-10-09,500.053966) (2017-10-10,493.930096) (2017-10-11,488.918860) (2017-10-12,121.583525) (2017-10-13,45.707581) (2017-10-14,29.953624) (2017-10-15,25.246621) (2017-10-16,24.912898) (2017-10-17,21.091910) (2017-10-18,18.978343) (2017-10-19,19.009526) (2017-10-20,20.224703) (2017-10-21,15.775115) (2017-10-22,17.180758) (2017-10-23,13.687671) (2017-10-24,13.886005) (2017-10-25,13.905601) (2017-10-26,12.307325) (2017-10-27,14.197295) (2017-10-28,13.329398) (2017-10-29,13.015967) (2017-10-30,12.684968) (2017-10-31,12.698149) (2017-11-01,12.697383) (2017-11-02,12.699931) (2017-11-03,11.683848) (2017-11-04,8.026320) (2017-11-05,6.620677) (2017-11-06,6.344654) (2017-11-07,6.018746) (2017-11-08,5.911814) (2017-11-09,6.583488) (2017-11-10,3.392767) (2017-11-11,3.152357) (2017-11-12,3.085500) (2017-11-13,3.070307) (2017-11-14,3.067015) (2017-11-15,2.990982) (2017-11-16,2.664730) (2017-11-17,2.384012) (2017-11-18,2.368345) (2017-11-19,2.368345) (2017-11-20,2.526710) (2017-11-21,2.580921) (2017-11-22,2.580921) (2017-11-23,2.135319) (2017-11-24,1.051889) (2017-11-25,1.051889) (2017-11-26,0.988615) (2017-11-27,0.966294) (2017-11-28,0.801816) (2017-11-29,0.666856) (2017-11-30,0.631983) (2017-12-01,0.520285) (2017-12-02,0.520285) (2017-12-03,0.520285) (2017-12-04,0.361920) (2017-12-05,0.226072) (2017-12-06,0.226072) (2017-12-07,1.142812) (2017-12-08,1.142812) (2017-12-09,1.142812) (2017-12-10,1.142812) (2017-12-11,1.142812) (2017-12-12,1.142812) (2017-12-13,1.142812) (2017-12-14,1.142812) (2017-12-15,1.142812) (2017-12-16,1.142812) (2017-12-17,1.142812) (2017-12-18,1.142812) (2017-12-19,1.142812) (2017-12-20,1.142812) (2017-12-21,0.000000) (2017-12-22,0.000000) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,4.103585) (2018-01-03,7.859930) (2018-01-04,15.854021) (2018-01-05,15.854021) (2018-01-06,15.854021) (2018-01-07,15.854021) (2018-01-08,15.854021) (2018-01-09,15.854021) (2018-01-10,15.854021) (2018-01-11,15.854021) (2018-01-12,15.854021) (2018-01-13,15.854021) (2018-01-14,15.854021) (2018-01-15,15.854021) (2018-01-16,11.750437) (2018-01-17,7.994091) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,1.050448) (2018-01-23,4.873519) (2018-01-24,12.604572) (2018-01-25,19.549598) (2018-01-26,22.621803) (2018-01-27,32.642904) (2018-01-28,35.495453) (2018-01-29,66.766177) (2018-01-30,70.267986) (2018-01-31,73.879597) (2018-02-01,75.436512) (2018-02-02,77.470253) (2018-02-03,78.121775) (2018-02-04,78.121775) (2018-02-05,77.071326) (2018-02-06,73.248256) (2018-02-07,65.517203) (2018-02-08,58.572176) (2018-02-09,55.499972) (2018-02-10,45.478871) (2018-02-11,42.626322) (2018-02-12,11.355598) (2018-02-13,7.853789) (2018-02-14,4.242177) (2018-02-15,2.685262) (2018-02-16,0.651522) (2018-02-17,0.000000) (2018-02-18,0.680773) (2018-02-19,1.280433) (2018-02-20,2.944797) (2018-02-21,6.868190) (2018-02-22,11.724601) (2018-02-23,13.704899) (2018-02-24,19.303566) (2018-02-25,19.354306) (2018-02-26,19.523696) (2018-02-27,19.977107) (2018-02-28,21.522720) (2018-03-01,24.311338) (2018-03-02,26.169053) (2018-03-03,26.978786) (2018-03-04,27.081194) (2018-03-05,26.739596) (2018-03-06,27.270198) (2018-03-07,25.822537) (2018-03-08,21.959550) (2018-03-09,21.641085) (2018-03-10,16.287547) (2018-03-11,16.573946) (2018-03-12,17.101172) (2018-03-13,18.331120) (2018-03-14,17.444553) (2018-03-15,14.818480) (2018-03-16,13.464582) (2018-03-17,12.654850) (2018-03-18,11.871668) (2018-03-19,11.784636) (2018-03-20,9.674860) (2018-03-21,8.094537) (2018-03-22,7.461568) (2018-03-23,5.857174) (2018-03-24,5.612045) (2018-03-25,5.320084) (2018-03-26,4.623467) (2018-03-27,2.940109) (2018-03-28,2.281064) (2018-03-29,2.118518) (2018-03-30,1.620158) (2018-03-31,1.620158) (2018-04-01,1.620158) (2018-04-02,1.449130) (2018-04-03,1.363938) (2018-04-04,0.468529) (2018-04-05,0.108075) (2018-04-06,0.050635) (2018-04-07,0.050635) (2018-04-08,0.005458) (2018-04-09,0.005458) (2018-04-10,0.005458) (2018-04-11,0.005458) (2018-04-12,0.005458) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,14.312711) (2017-09-29,47.883145) (2017-09-30,115.342317) (2017-10-01,130.638390) (2017-10-02,133.639154) (2017-10-03,147.624057) (2017-10-04,192.211004) (2017-10-05,192.989996) (2017-10-06,296.648120) (2017-10-07,306.692686) (2017-10-08,309.045001) (2017-10-09,322.706824) (2017-10-10,323.935109) (2017-10-11,324.512179) (2017-10-12,310.484982) (2017-10-13,276.914548) (2017-10-14,217.523568) (2017-10-15,202.847233) (2017-10-16,187.021263) (2017-10-17,173.522518) (2017-10-18,129.782377) (2017-10-19,748.151443) (2017-10-20,645.469645) (2017-10-21,668.540380) (2017-10-22,672.330648) (2017-10-23,663.304939) (2017-10-24,693.611023) (2017-10-25,716.033013) (2017-10-26,731.171848) (2017-10-27,759.028270) (2017-10-28,793.986469) (2017-10-29,854.352884) (2017-10-30,887.650514) (2017-10-31,1084.855384) (2017-11-01,1130.290248) (2017-11-02,632.709741) (2017-11-03,787.836196) (2017-11-04,1254.700507) (2017-11-05,1292.110214) (2017-11-06,1771.792872) (2017-11-07,1852.951903) (2017-11-08,1916.631659) (2017-11-09,1951.252498) (2017-11-10,1989.688554) (2017-11-11,2012.799519) (2017-11-12,1986.780243) (2017-11-13,2072.043087) (2017-11-14,2027.022171) (2017-11-15,2034.970828) (2017-11-16,1942.137667) (2017-11-17,1897.192580) (2017-11-18,1434.786486) (2017-11-19,1412.134177) (2017-11-20,1119.833840) (2017-11-21,1510.799115) (2017-11-22,1396.152530) (2017-11-23,1404.594570) (2017-11-24,1416.478357) (2017-11-25,1362.746680) (2017-11-26,1327.779803) (2017-11-27,1222.044535) (2017-11-28,1069.374422) (2017-11-29,1029.278746) (2017-11-30,1018.969287) (2017-12-01,912.435012) (2017-12-02,931.426218) (2017-12-03,968.744040) (2017-12-04,828.531964) (2017-12-05,351.527405) (2017-12-06,379.495174) (2017-12-07,321.007946) (2017-12-08,242.831680) (2017-12-09,230.426001) (2017-12-10,230.426001) (2017-12-11,230.426001) (2017-12-12,230.426001) (2017-12-13,216.291352) (2017-12-14,197.866420) (2017-12-15,193.243000) (2017-12-16,136.678277) (2017-12-17,78.460475) (2017-12-18,26.654114) (2017-12-19,0.000000) (2017-12-20,0.000000) (2017-12-21,0.000000) (2017-12-22,0.000000) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,0.000000) (2018-01-30,0.000000) (2018-01-31,0.000000) (2018-02-01,0.000000) (2018-02-02,0.000000) (2018-02-03,0.000000) (2018-02-04,0.000000) (2018-02-05,0.000000) (2018-02-06,0.000000) (2018-02-07,0.000000) (2018-02-08,0.000000) (2018-02-09,0.000000) (2018-02-10,0.000000) (2018-02-11,0.000000) (2018-02-12,0.000000) (2018-02-13,0.000000) (2018-02-14,0.000000) (2018-02-15,0.000000) (2018-02-16,0.000000) (2018-02-17,0.000000) (2018-02-18,0.000000) (2018-02-19,0.000000) (2018-02-20,0.000000) (2018-02-21,0.000000) (2018-02-22,0.000000) (2018-02-23,0.000000) (2018-02-24,0.000000) (2018-02-25,0.000000) (2018-02-26,0.000000) (2018-02-27,0.000000) (2018-02-28,0.000000) (2018-03-01,0.000000) (2018-03-02,0.000000) (2018-03-03,0.000000) (2018-03-04,0.000000) (2018-03-05,0.000000) (2018-03-06,0.000000) (2018-03-07,0.000000) (2018-03-08,0.000000) (2018-03-09,0.000000) (2018-03-10,0.000000) (2018-03-11,0.000000) (2018-03-12,0.000000) (2018-03-13,0.000000) (2018-03-14,0.000000) (2018-03-15,0.000000) (2018-03-16,0.000000) (2018-03-17,0.000000) (2018-03-18,0.000000) (2018-03-19,0.000000) (2018-03-20,0.000000) (2018-03-21,0.000000) (2018-03-22,0.000000) (2018-03-23,0.000000) (2018-03-24,0.000000) (2018-03-25,0.000000) (2018-03-26,0.000000) (2018-03-27,0.000000) (2018-03-28,0.000000) (2018-03-29,0.000000) (2018-03-30,0.000000) (2018-03-31,0.000000) (2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,1.409311) (2017-09-26,88.211041) (2017-09-27,105.963270) (2017-09-28,121.629478) (2017-09-29,128.272848) (2017-09-30,131.102689) (2017-10-01,136.405950) (2017-10-02,180.356862) (2017-10-03,202.626230) (2017-10-04,204.664176) (2017-10-05,209.180449) (2017-10-06,211.746557) (2017-10-07,212.668157) (2017-10-08,218.363922) (2017-10-09,235.799332) (2017-10-10,158.255524) (2017-10-11,186.788058) (2017-10-12,253.520182) (2017-10-13,254.975913) (2017-10-14,279.817177) (2017-10-15,282.967424) (2017-10-16,427.792197) (2017-10-17,994.284704) (2017-10-18,1051.326050) (2017-10-19,1268.875399) (2017-10-20,1365.927826) (2017-10-21,1479.911215) (2017-10-22,1761.952387) (2017-10-23,1911.390904) (2017-10-24,2021.753063) (2017-10-25,2012.845463) (2017-10-26,1999.478371) (2017-10-27,2045.403052) (2017-10-28,2055.507338) (2017-10-29,2055.519525) (2017-10-30,1878.494992) (2017-10-31,1315.201839) (2017-11-01,1268.211633) (2017-11-02,1696.116807) (2017-11-03,1605.377199) (2017-11-04,1513.922073) (2017-11-05,1237.431421) (2017-11-06,1173.535272) (2017-11-07,1117.552201) (2017-11-08,1105.081081) (2017-11-09,1055.909318) (2017-11-10,1073.530848) (2017-11-11,1117.937480) (2017-11-12,1201.358018) (2017-11-13,1234.427743) (2017-11-14,1232.463850) (2017-11-15,1271.243015) (2017-11-16,644.492516) (2017-11-17,669.547715) (2017-11-18,655.473553) (2017-11-19,732.667968) (2017-11-20,776.783624) (2017-11-21,759.744964) (2017-11-22,748.838328) (2017-11-23,751.641997) (2017-11-24,718.570862) (2017-11-25,688.850190) (2017-11-26,633.892767) (2017-11-27,629.072979) (2017-11-28,662.250644) (2017-11-29,690.354926) (2017-11-30,774.891325) (2017-12-01,793.474125) (2017-12-02,804.608710) (2017-12-03,719.798059) (2017-12-04,587.567482) (2017-12-05,587.396041) (2017-12-06,583.499062) (2017-12-07,617.834288) (2017-12-08,597.460386) (2017-12-09,552.304151) (2017-12-10,568.799723) (2017-12-11,574.627765) (2017-12-12,517.945270) (2017-12-13,438.972737) (2017-12-14,331.216042) (2017-12-15,278.699116) (2017-12-16,258.188829) (2017-12-17,254.558780) (2017-12-18,238.286612) (2017-12-19,191.859703) (2017-12-20,181.757275) (2017-12-21,124.758905) (2017-12-22,106.558628) (2017-12-23,99.253512) (2017-12-24,45.829129) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,0.000000) (2018-01-30,0.000000) (2018-01-31,0.000000) (2018-02-01,0.000000) (2018-02-02,0.000000) (2018-02-03,0.000000) (2018-02-04,0.000000) (2018-02-05,0.000000) (2018-02-06,0.000000) (2018-02-07,0.000000) (2018-02-08,0.000000) (2018-02-09,0.000000) (2018-02-10,0.000000) (2018-02-11,0.000000) (2018-02-12,0.000000) (2018-02-13,0.000000) (2018-02-14,0.000000) (2018-02-15,0.000000) (2018-02-16,0.000000) (2018-02-17,0.000000) (2018-02-18,0.000000) (2018-02-19,0.000000) (2018-02-20,0.000000) (2018-02-21,0.000000) (2018-02-22,0.000000) (2018-02-23,0.000000) (2018-02-24,0.000000) (2018-02-25,0.000000) (2018-02-26,0.000000) (2018-02-27,0.000000) (2018-02-28,0.000000) (2018-03-01,0.000000) (2018-03-02,0.000000) (2018-03-03,0.000000) (2018-03-04,0.000000) (2018-03-05,0.000000) (2018-03-06,0.000000) (2018-03-07,0.000000) (2018-03-08,0.000000) (2018-03-09,0.000000) (2018-03-10,0.000000) (2018-03-11,0.000000) (2018-03-12,0.000000) (2018-03-13,0.000000) (2018-03-14,0.000000) (2018-03-15,0.000000) (2018-03-16,0.000000) (2018-03-17,0.000000) (2018-03-18,0.000000) (2018-03-19,0.000000) (2018-03-20,0.000000) (2018-03-21,0.000000) (2018-03-22,0.000000) (2018-03-23,0.000000) (2018-03-24,0.000000) (2018-03-25,0.000000) (2018-03-26,0.000000) (2018-03-27,0.000000) (2018-03-28,0.000000) (2018-03-29,0.000000) (2018-03-30,0.000000) (2018-03-31,0.000000) (2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; + + +\end{axis} +\end{tikzpicture} diff --git a/reports/pure_revenue_bot_revenue.tex b/reports/pure_revenue_bot_revenue.tex new file mode 100644 index 0000000..5186a09 --- /dev/null +++ b/reports/pure_revenue_bot_revenue.tex @@ -0,0 +1,38 @@ +\begin{tikzpicture} +\begin{axis}[cycle list/RdGy-6, clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year},ymode=log, xlabel={Date (MM-YY)}, ylabel={Daily Pure Revenue Captured (USD)},title={Pure Revenue Per Bot, 14-Day Moving Average}, + log basis y={10}, ymin=0, ymax=153759.7667740503, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, + cycle multiindex* list={ + color list + \nextlist + linestyles + \nextlist + very thick + \nextlist + }, legend pos=outer north east, + legend entries = {Market Total,0x0000f7..,0x44e05b..,0xaa2432..,0xb3707d..,0xf13ecd..,0x5a2896..,0xbb3a8c..,0xa53170..,0x905451..,0x00bd1f..},legend style={fill=none},legend cell align={right}, ,enlarge x limits=-1,width=.9\textwidth, height=0.4\textwidth,x label style={at={(1.15,-.15)},anchor=south,}] + + + +\addplot+[black] coordinates {(2017-07-01,238.260609)(2017-07-02,241.797661)(2017-07-03,255.413134)(2017-07-04,325.917800)(2017-07-05,351.763319)(2017-07-06,403.460201)(2017-07-07,608.321912)(2017-07-08,671.671375)(2017-07-09,748.388132)(2017-07-10,752.297536)(2017-07-11,840.251675)(2017-07-12,862.571545)(2017-07-13,915.066526)(2017-07-14,987.461576)(2017-07-15,905.495385)(2017-07-16,928.392565)(2017-07-17,957.354508)(2017-07-18,1387.206088)(2017-07-19,1399.921453)(2017-07-20,1356.755706)(2017-07-21,1161.435242)(2017-07-22,1106.201004)(2017-07-23,1031.968439)(2017-07-24,1226.621015)(2017-07-25,1134.105482)(2017-07-26,1099.409564)(2017-07-27,1046.972563)(2017-07-28,917.982124)(2017-07-29,954.685817)(2017-07-30,957.253363)(2017-07-31,973.910405)(2017-08-01,577.475144)(2017-08-02,582.398752)(2017-08-03,619.432612)(2017-08-04,638.914882)(2017-08-05,703.122280)(2017-08-06,1034.669966)(2017-08-07,964.641084)(2017-08-08,1075.040251)(2017-08-09,1673.478948)(2017-08-10,2228.982568)(2017-08-11,3047.188682)(2017-08-12,3449.079996)(2017-08-13,3848.556449)(2017-08-14,3959.537565)(2017-08-15,4178.443255)(2017-08-16,4271.910297)(2017-08-17,4492.354585)(2017-08-18,4661.628135)(2017-08-19,4827.507452)(2017-08-20,4670.964924)(2017-08-21,4890.740088)(2017-08-22,5412.546969)(2017-08-23,5400.037388)(2017-08-24,7031.839142)(2017-08-25,6422.872067)(2017-08-26,6440.568573)(2017-08-27,6429.494693)(2017-08-28,6618.558141)(2017-08-29,6724.483342)(2017-08-30,7049.991586)(2017-08-31,7569.553390)(2017-09-01,8205.448324)(2017-09-02,8832.448680)(2017-09-03,9325.924820)(2017-09-04,9831.063758)(2017-09-05,9831.417301)(2017-09-06,9969.926146)(2017-09-07,8392.216809)(2017-09-08,8366.721673)(2017-09-09,8583.717787)(2017-09-10,8296.612352)(2017-09-11,8465.166449)(2017-09-12,8451.360231)(2017-09-13,8951.854836)(2017-09-14,9182.203846)(2017-09-15,9040.115363)(2017-09-16,8441.701910)(2017-09-17,8156.868661)(2017-09-18,8407.707871)(2017-09-19,8689.665122)(2017-09-20,8565.026041)(2017-09-21,8801.964268)(2017-09-22,9502.364086)(2017-09-23,10820.049079)(2017-09-24,11330.991577)(2017-09-25,11333.876690)(2017-09-26,11577.726495)(2017-09-27,11239.098719)(2017-09-28,11207.360959)(2017-09-29,12780.023537)(2017-09-30,14824.347698)(2017-10-01,15214.776323)(2017-10-02,14716.487639)(2017-10-03,14932.070475)(2017-10-04,15234.894005)(2017-10-05,15024.988732)(2017-10-06,16234.579079)(2017-10-07,15025.812974)(2017-10-08,15143.482124)(2017-10-09,15211.134425)(2017-10-10,14969.016538)(2017-10-11,15039.344384)(2017-10-12,14698.863179)(2017-10-13,12874.816903)(2017-10-14,11258.971901)(2017-10-15,10853.307341)(2017-10-16,10765.139576)(2017-10-17,10523.756750)(2017-10-18,10138.042201)(2017-10-19,11983.210521)(2017-10-20,10820.545094)(2017-10-21,11157.983311)(2017-10-22,11343.359578)(2017-10-23,11459.877999)(2017-10-24,11954.640458)(2017-10-25,12232.183408)(2017-10-26,12934.819965)(2017-10-27,13312.248235)(2017-10-28,13123.630923)(2017-10-29,13093.733686)(2017-10-30,12907.065612)(2017-10-31,12930.594801)(2017-11-01,13655.349804)(2017-11-02,14582.056145)(2017-11-03,15228.484838)(2017-11-04,16439.246309)(2017-11-05,15986.618408)(2017-11-06,16771.844125)(2017-11-07,16592.469258)(2017-11-08,17000.948589)(2017-11-09,17471.685363)(2017-11-10,18093.783158)(2017-11-11,19309.509978)(2017-11-12,20429.162534)(2017-11-13,20995.741170)(2017-11-14,22464.349921)(2017-11-15,23729.250558)(2017-11-16,21385.189371)(2017-11-17,21500.819631)(2017-11-18,20075.387397)(2017-11-19,24729.212511)(2017-11-20,25921.923020)(2017-11-21,26705.773985)(2017-11-22,26630.760196)(2017-11-23,25936.463402)(2017-11-24,25850.243283)(2017-11-25,25292.219848)(2017-11-26,25123.923162)(2017-11-27,25354.340773)(2017-11-28,24899.486599)(2017-11-29,23646.355364)(2017-11-30,25010.021121)(2017-12-01,24135.994613)(2017-12-02,25421.123532)(2017-12-03,21212.022516)(2017-12-04,20717.409130)(2017-12-05,20397.758834)(2017-12-06,23170.012487)(2017-12-07,27833.189075)(2017-12-08,29005.748831)(2017-12-09,31018.736348)(2017-12-10,34538.071248)(2017-12-11,39171.951968)(2017-12-12,40671.123806)(2017-12-13,44800.946392)(2017-12-14,44853.680443)(2017-12-15,47179.924462)(2017-12-16,46085.190744)(2017-12-17,46637.470302)(2017-12-18,45741.263438)(2017-12-19,46687.024169)(2017-12-20,43797.599542)(2017-12-21,39353.660808)(2017-12-22,38732.116453)(2017-12-23,40297.171542)(2017-12-24,38143.355793)(2017-12-25,35236.075861)(2017-12-26,34069.355360)(2017-12-27,32012.212238)(2017-12-28,34221.311058)(2017-12-29,35364.644320)(2017-12-30,40929.760304)(2017-12-31,48422.128747)(2018-01-01,56843.862222)(2018-01-02,62927.596793)(2018-01-03,67352.482442)(2018-01-04,70512.442668)(2018-01-05,73426.962513)(2018-01-06,72797.228660)(2018-01-07,73575.856497)(2018-01-08,74290.953837)(2018-01-09,76879.883387)(2018-01-10,75271.267910)(2018-01-11,72710.048261)(2018-01-12,74280.406338)(2018-01-13,72883.948639)(2018-01-14,66817.529759)(2018-01-15,58656.705734)(2018-01-16,52023.526360)(2018-01-17,50876.440391)(2018-01-18,49717.710845)(2018-01-19,47612.485042)(2018-01-20,45930.776943)(2018-01-21,44066.909220)(2018-01-22,42592.969929)(2018-01-23,40069.223190)(2018-01-24,40185.168428)(2018-01-25,40174.914238)(2018-01-26,37956.192699)(2018-01-27,34456.208422)(2018-01-28,33572.262625)(2018-01-29,33991.953193)(2018-01-30,33251.358782)(2018-01-31,31294.678932)(2018-02-01,29697.841340)(2018-02-02,29490.327376)(2018-02-03,28130.977716)(2018-02-04,27673.579577)(2018-02-05,26481.691578)(2018-02-06,27571.895801)(2018-02-07,26080.373280)(2018-02-08,25247.795834)(2018-02-09,22181.628896)(2018-02-10,20963.061680)(2018-02-11,19742.735551)(2018-02-12,18495.995647)(2018-02-13,18966.604152)(2018-02-14,17115.136528)(2018-02-15,16215.713814)(2018-02-16,14176.131597)(2018-02-17,13535.083715)(2018-02-18,13016.117774)(2018-02-19,12391.929343)(2018-02-20,9400.846575)(2018-02-21,9466.217488)(2018-02-22,8626.688517)(2018-02-23,9029.375488)(2018-02-24,9820.480823)(2018-02-25,11027.484645)(2018-02-26,12162.625312)(2018-02-27,11222.920904)(2018-02-28,11177.173399)(2018-03-01,11033.248565)(2018-03-02,11026.376328)(2018-03-03,11261.617410)(2018-03-04,11086.378466)(2018-03-05,10920.780689)(2018-03-06,10963.357190)(2018-03-07,10964.493759)(2018-03-08,10995.002047)(2018-03-09,10235.846500)(2018-03-10,9392.196913)(2018-03-11,7538.044322)(2018-03-12,6394.730323)(2018-03-13,6318.462634)(2018-03-14,5939.160974)(2018-03-15,5535.868804)(2018-03-16,5200.100462)(2018-03-17,6094.003628)(2018-03-18,5799.727553)(2018-03-19,5778.340258)(2018-03-20,5533.218738)(2018-03-21,5309.244987)(2018-03-22,5168.203677)(2018-03-23,5038.729603)(2018-03-24,4679.116903)(2018-03-25,4578.060103)(2018-03-26,3930.649387)(2018-03-27,4842.570902)(2018-03-28,4817.035528)(2018-03-29,4606.524576)(2018-03-30,4650.439873)(2018-03-31,3869.352030)(2018-04-01,3815.007394)(2018-04-02,3795.921177)(2018-04-03,4199.655979)(2018-04-04,4220.533610)(2018-04-05,4247.455009)(2018-04-06,4259.749873)(2018-04-07,4358.329592)(2018-04-08,4552.628025)(2018-04-09,4585.706355)(2018-04-10,3572.043197)(2018-04-11,3968.868687)(2018-04-12,6798.603190)(2018-04-13,7762.993146)(2018-04-14,7352.546545)(2018-04-15,7651.995647)(2018-04-16,7841.437374)(2018-04-17,7690.958348)(2018-04-18,8010.026270)(2018-04-19,8214.384998)(2018-04-20,9394.119942)(2018-04-21,9917.646092)(2018-04-22,10010.645847)(2018-04-23,10479.755626)(2018-04-24,11171.413535)(2018-04-25,11299.933766)(2018-04-26,8746.634828)(2018-04-27,8242.932191)(2018-04-28,8232.809053)(2018-04-29,8351.786045)(2018-04-30,8821.981595)(2018-05-01,9046.092128)(2018-05-02,9047.456285)(2018-05-03,9402.720360)(2018-05-04,9749.847529)(2018-05-05,9600.470853)(2018-05-06,9811.643175)(2018-05-07,9359.833082)(2018-05-08,8719.352765)(2018-05-09,8514.163647)(2018-05-10,8896.741194)(2018-05-11,8776.825412)(2018-05-12,9197.069674)(2018-05-13,8991.402612)(2018-05-14,8372.386616)(2018-05-15,7876.752372)(2018-05-16,7561.568342)(2018-05-17,6807.379441)(2018-05-18,5266.075248)(2018-05-19,4871.314246)(2018-05-20,4407.524618)(2018-05-21,4371.929802)(2018-05-22,4264.918144)(2018-05-23,3932.110896)(2018-05-24,3327.743616)(2018-05-25,2966.580996)(2018-05-26,2520.786613)(2018-05-27,2980.675934)(2018-05-28,2937.302507)(2018-05-29,2958.604778)(2018-05-30,2901.008649)(2018-05-31,3267.775568)(2018-06-01,3544.366487)(2018-06-02,3434.376455)(2018-06-03,3675.284364)(2018-06-04,3745.989629)(2018-06-05,3749.514203)(2018-06-06,4312.220851)(2018-06-07,4439.829836)(2018-06-08,4742.981965)(2018-06-09,4459.927569)(2018-06-10,3826.270008)(2018-06-11,4068.892094)(2018-06-12,3944.847455)(2018-06-13,3870.550146)(2018-06-14,3515.439411)(2018-06-15,3491.995421)(2018-06-16,3751.647894)(2018-06-17,3521.810255)(2018-06-18,3688.260368)(2018-06-19,3840.757630)(2018-06-20,3245.086529)(2018-06-21,3234.044270)(2018-06-22,3087.708250)(2018-06-23,3140.084509)(2018-06-24,3141.117843)(2018-06-25,2861.705712)(2018-06-26,2924.827791)(2018-06-27,2965.478976)(2018-06-28,2865.814545)(2018-06-29,2587.875333)(2018-06-30,2353.631142)(2018-07-01,2315.206525)(2018-07-02,2043.315754)(2018-07-03,1839.240335)(2018-07-04,1810.701440)(2018-07-05,1599.668648)(2018-07-06,1419.279092)(2018-07-07,1725.373902)(2018-07-08,1823.077531)(2018-07-09,1889.048840)(2018-07-10,1977.131769)(2018-07-11,1999.317501)(2018-07-12,2145.274859)(2018-07-13,2216.854056)(2018-07-14,2391.521937)(2018-07-15,2491.672373)(2018-07-16,2711.297802)(2018-07-17,3770.256946)(2018-07-18,4106.236580)(2018-07-19,4428.305707)(2018-07-20,4444.351677)(2018-07-21,4079.106756)(2018-07-22,3917.470889)(2018-07-23,4053.065669)(2018-07-24,3977.816673)(2018-07-25,3959.721500)(2018-07-26,4136.532984)(2018-07-27,4209.356535)(2018-07-28,4164.287055)(2018-07-29,5333.140762)(2018-07-30,5214.338689)(2018-07-31,4135.740228)(2018-08-01,4082.534074)(2018-08-02,5001.992934)(2018-08-03,4956.035392)(2018-08-04,5323.163055)(2018-08-05,11632.785979)(2018-08-06,11912.906328)(2018-08-07,11873.639980)(2018-08-08,11952.871395)(2018-08-09,11751.712469)(2018-08-10,11672.953140)(2018-08-11,12040.243682)(2018-08-12,10773.633834)(2018-08-13,10708.906381)(2018-08-14,10786.464477)(2018-08-15,10514.214452)(2018-08-16,9307.604560)(2018-08-17,9276.962848)(2018-08-18,8952.337175)(2018-08-19,2638.345550)(2018-08-20,2225.552938)(2018-08-21,3077.885546)(2018-08-22,2907.350627)(2018-08-23,2849.910172)(2018-08-24,2752.583928)(2018-08-25,2282.394648)(2018-08-26,2324.460365)(2018-08-27,2308.947284)(2018-08-28,2610.172988)(2018-08-29,2748.316655)(2018-08-30,2815.263429)(2018-08-31,2840.785612)(2018-09-01,2878.707242)(2018-09-02,2947.018472)(2018-09-03,3019.569449)(2018-09-04,2069.671428)(2018-09-05,2480.704433)(2018-09-06,2571.807386)(2018-09-07,2738.028405)(2018-09-08,2760.036244)(2018-09-09,3316.713140)(2018-09-10,3319.049724)(2018-09-11,3655.928997)(2018-09-12,3458.566703)(2018-09-13,3338.850250)(2018-09-14,3406.725795)(2018-09-15,3334.327702)(2018-09-16,3290.199121)(2018-09-17,3162.142887)(2018-09-18,3150.273838)(2018-09-19,2846.567167)(2018-09-20,2642.110888)(2018-09-21,2524.562659)(2018-09-22,2387.680173)(2018-09-23,1744.056833)(2018-09-24,1706.954900)(2018-09-25,953.705229)(2018-09-26,1001.099288)(2018-09-27,1030.681482)(2018-09-28,918.607467)(2018-09-29,1277.754074)(2018-09-30,1272.107822)(2018-10-01,1284.153965)(2018-10-02,1280.865365)(2018-10-03,1179.218884)(2018-10-04,1314.290485)(2018-10-05,1344.861284)(2018-10-06,1341.172164)(2018-10-07,1435.487082)(2018-10-08,1421.897868)(2018-10-09,1526.605420)(2018-10-10,1578.084452)(2018-10-11,1657.015622)(2018-10-12,1684.571272)(2018-10-13,1409.494553)(2018-10-14,1499.678439)(2018-10-15,1498.247998)(2018-10-16,1536.705402)(2018-10-17,1595.262623)(2018-10-18,1463.287769)(2018-10-19,1386.777413)(2018-10-20,1399.470653)(2018-10-21,1349.664074)(2018-10-22,1406.244050)(2018-10-23,1328.784672)(2018-10-24,1232.122758)(2018-10-25,1153.341068)(2018-10-26,1150.627903)(2018-10-27,1066.977289)(2018-10-28,981.539673)(2018-10-29,1020.562162)(2018-10-30,989.371432)(2018-10-31,1001.504856)(2018-11-01,1019.149894)(2018-11-02,1047.964929)(2018-11-03,1040.895820)(2018-11-04,1089.214968)(2018-11-05,1045.814397)(2018-11-06,1125.624698)(2018-11-07,1104.530165)(2018-11-08,1168.983720)(2018-11-09,1274.479706)(2018-11-10,1343.040632)(2018-11-11,1348.802208)(2018-11-12,1265.319543)(2018-11-13,1390.038910)(2018-11-14,1331.654141)(2018-11-15,1379.308562)(2018-11-16,1360.957529)(2018-11-17,1401.641424)(2018-11-18,1304.291510)(2018-11-19,1353.289923)(2018-11-20,1254.696965)(2018-11-21,1252.472371)(2018-11-22,1161.143999)(2018-11-23,1137.289512)(2018-11-24,1046.724578)(2018-11-25,1004.326865)(2018-11-26,1107.212332)(2018-11-27,986.101460)(2018-11-28,1011.591631)(2018-11-29,954.091483)(2018-11-30,967.520368)(2018-12-01,948.744681)(2018-12-02,955.062874)(2018-12-03,882.248797)(2018-12-04,893.428901)(2018-12-05,860.947334)(2018-12-06,867.674360)(2018-12-07,742.585526)(2018-12-08,750.785529)(2018-12-09,940.592040)(2018-12-10,960.323370)(2018-12-11,946.809793)(2018-12-12,894.702194)(2018-12-13,901.264502)(2018-12-14,850.380334)(2018-12-15,806.927629)(2018-12-16,838.450449)(2018-12-17,870.366901)(2018-12-18,862.753780)(2018-12-19,868.408032)(2018-12-20,853.755131)(2018-12-21,863.212001)(2018-12-22,885.484779)(2018-12-23,716.228061)(2018-12-24,643.844186)(2018-12-25,710.132438)(2018-12-26,722.232550)(2018-12-27,692.627468)(2018-12-28,679.701324)(2018-12-29,713.730569)(2018-12-30,712.336621)(2018-12-31,677.378340)(2019-01-01,683.981436)(2019-01-02,1797.557856)(2019-01-03,1805.754631)(2019-01-04,1884.153807)(2019-01-05,1895.313329)(2019-01-06,1886.485354)(2019-01-07,1885.807313)(2019-01-08,1833.969246)(2019-01-09,1844.570664)(2019-01-10,1875.858377)(2019-01-11,1938.876339)(2019-01-12,1922.115747)(2019-01-13,1894.753156)(2019-01-14,1904.554863)(2019-01-15,1873.307383)(2019-01-16,801.859053)(2019-01-17,799.533550)(2019-01-18,768.261637)(2019-01-19,755.067065)(2019-01-20,945.711790)(2019-01-21,943.107264)(2019-01-22,1007.509301)(2019-01-23,995.729601)(2019-01-24,997.660482)(2019-01-25,984.538934)(2019-01-26,968.149210)(2019-01-27,969.641864)(2019-01-28,965.867825)(2019-01-29,954.125693)(2019-01-30,902.049119)(2019-01-31,918.493379)(2019-02-01,876.399895)(2019-02-02,889.176762)(2019-02-03,690.185003)(2019-02-04,670.177868)(2019-02-05,658.062562)(2019-02-06,648.209580)(2019-02-07,633.467398)(2019-02-08,629.134565)(2019-02-09,711.604524)(2019-02-10,697.345535)(2019-02-11,738.019997)(2019-02-12,803.655878)(2019-02-13,824.080405)(2019-02-14,860.015002)(2019-02-15,880.388454)(2019-02-16,846.022928)(2019-02-17,853.280934)(2019-02-18,853.018500)(2019-02-19,840.554766)(2019-02-20,973.618419)(2019-02-21,1070.632373)(2019-02-22,1178.348438)(2019-02-23,1091.808548)(2019-02-24,1161.733876)(2019-02-25,1135.519189)(2019-02-26,1289.338037)(2019-02-27,1297.503081)(2019-02-28,1295.688415)(2019-03-01,1327.378311)(2019-03-02,1459.216826)(2019-03-03,1713.176980)(2019-03-04,2016.808285)(2019-03-05,2010.723091)(2019-03-06,1926.323099)(2019-03-07,1883.063802)(2019-03-08,1772.448083)(2019-03-09,3125.600342)(2019-03-10,3113.878430)(2019-03-11,3230.830633)(2019-03-12,3145.745060)(2019-03-13,3242.601946)(2019-03-14,3196.230769)(2019-03-15,3163.253923)(2019-03-16,3374.957763)(2019-03-17,3115.526349)(2019-03-18,2761.843555)(2019-03-19,2681.514957)(2019-03-20,2585.622803)(2019-03-21,2491.370432)(2019-03-22,2430.925574)(2019-03-23,1054.378346)}; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,3.896000) (2017-10-21,97.400578) (2017-10-22,109.039909) (2017-10-23,109.039909) (2017-10-24,169.683719) (2017-10-25,497.056702) (2017-10-26,1037.626647) (2017-10-27,1151.736521) (2017-10-28,1328.452486) (2017-10-29,1450.342926) (2017-10-30,1609.126112) (2017-10-31,1797.283937) (2017-11-01,2477.107172) (2017-11-02,3333.001607) (2017-11-03,3848.648550) (2017-11-04,4060.939532) (2017-11-05,4224.041901) (2017-11-06,4968.965927) (2017-11-07,5202.475426) (2017-11-08,5396.218478) (2017-11-09,5827.871740) (2017-11-10,6038.305171) (2017-11-11,6286.373436) (2017-11-12,7029.747554) (2017-11-13,7167.983820) (2017-11-14,8281.822755) (2017-11-15,9213.891304) (2017-11-16,8607.798680) (2017-11-17,8730.316833) (2017-11-18,8604.835759) (2017-11-19,9013.251431) (2017-11-20,9061.548809) (2017-11-21,9287.120520) (2017-11-22,9092.173776) (2017-11-23,8299.617372) (2017-11-24,8267.086970) (2017-11-25,8070.620689) (2017-11-26,7769.656846) (2017-11-27,7895.360459) (2017-11-28,7452.040844) (2017-11-29,6073.929026) (2017-11-30,6833.797195) (2017-12-01,6574.295823) (2017-12-02,7491.552510) (2017-12-03,7081.805635) (2017-12-04,8130.323338) (2017-12-05,8199.695265) (2017-12-06,8978.239592) (2017-12-07,13418.540456) (2017-12-08,14869.480597) (2017-12-09,15861.366019) (2017-12-10,18741.858019) (2017-12-11,21403.467217) (2017-12-12,22404.129865) (2017-12-13,24883.884354) (2017-12-14,25397.645747) (2017-12-15,25053.345644) (2017-12-16,24682.289569) (2017-12-17,25425.365136) (2017-12-18,24444.144745) (2017-12-19,24811.655489) (2017-12-20,24460.376735) (2017-12-21,20423.598765) (2017-12-22,19975.512033) (2017-12-23,22504.290176) (2017-12-24,20624.021485) (2017-12-25,19465.742601) (2017-12-26,18954.415656) (2017-12-27,18617.888808) (2017-12-28,21059.688326) (2017-12-29,23563.991001) (2017-12-30,26002.777326) (2017-12-31,29148.133688) (2018-01-01,31206.936393) (2018-01-02,34864.524620) (2018-01-03,36049.683352) (2018-01-04,36487.397319) (2018-01-05,36329.071480) (2018-01-06,33623.962262) (2018-01-07,32631.604707) (2018-01-08,32311.836555) (2018-01-09,32720.281737) (2018-01-10,30858.590430) (2018-01-11,27893.074768) (2018-01-12,28880.465261) (2018-01-13,25715.163837) (2018-01-14,23568.259101) (2018-01-15,21524.534911) (2018-01-16,17679.623945) (2018-01-17,19464.006915) (2018-01-18,21003.195764) (2018-01-19,21145.217718) (2018-01-20,21537.926609) (2018-01-21,22201.911636) (2018-01-22,21821.033651) (2018-01-23,21155.788290) (2018-01-24,21424.382752) (2018-01-25,22081.260012) (2018-01-26,20807.204243) (2018-01-27,22061.555869) (2018-01-28,21733.862826) (2018-01-29,21761.735340) (2018-01-30,21104.612612) (2018-01-31,19083.826863) (2018-02-01,17948.261124) (2018-02-02,18604.232297) (2018-02-03,17882.346965) (2018-02-04,17347.732739) (2018-02-05,16836.476251) (2018-02-06,19023.775899) (2018-02-07,18484.659703) (2018-02-08,17531.785788) (2018-02-09,15735.455845) (2018-02-10,14842.999390) (2018-02-11,13899.186066) (2018-02-12,13483.732669) (2018-02-13,14430.387894) (2018-02-14,13173.129413) (2018-02-15,12253.471161) (2018-02-16,10647.075498) (2018-02-17,10236.950236) (2018-02-18,10010.737337) (2018-02-19,9521.011282) (2018-02-20,6525.545248) (2018-02-21,6577.004772) (2018-02-22,6155.842433) (2018-02-23,6299.964467) (2018-02-24,7079.603100) (2018-02-25,8199.630026) (2018-02-26,8466.566013) (2018-02-27,7645.614974) (2018-02-28,7633.933333) (2018-03-01,7592.009648) (2018-03-02,7504.925152) (2018-03-03,7629.341995) (2018-03-04,7386.653646) (2018-03-05,7245.659077) (2018-03-06,7015.003752) (2018-03-07,6976.123343) (2018-03-08,6910.996586) (2018-03-09,6420.276430) (2018-03-10,5715.972457) (2018-03-11,3995.917289) (2018-03-12,3836.871746) (2018-03-13,3735.722994) (2018-03-14,3378.690651) (2018-03-15,3086.622977) (2018-03-16,2893.977512) (2018-03-17,3914.651379) (2018-03-18,3733.441211) (2018-03-19,3692.775412) (2018-03-20,3790.435662) (2018-03-21,3613.993257) (2018-03-22,3667.431703) (2018-03-23,3596.689686) (2018-03-24,3218.022338) (2018-03-25,3203.122180) (2018-03-26,2626.853644) (2018-03-27,3046.494617) (2018-03-28,3123.127129) (2018-03-29,2984.976873) (2018-03-30,3003.482715) (2018-03-31,2001.541628) (2018-04-01,1984.723949) (2018-04-02,1992.276509) (2018-04-03,1943.647259) (2018-04-04,1970.218595) (2018-04-05,1904.256463) (2018-04-06,1898.467285) (2018-04-07,1983.375500) (2018-04-08,2104.882037) (2018-04-09,2149.497944) (2018-04-10,1701.440313) (2018-04-11,1930.899082) (2018-04-12,3149.915981) (2018-04-13,3947.629698) (2018-04-14,3635.164674) (2018-04-15,3787.404269) (2018-04-16,3824.999183) (2018-04-17,3898.985317) (2018-04-18,4081.302791) (2018-04-19,4198.333739) (2018-04-20,5108.393146) (2018-04-21,5146.829893) (2018-04-22,5199.436901) (2018-04-23,5523.426017) (2018-04-24,5804.310232) (2018-04-25,5897.704487) (2018-04-26,4760.541795) (2018-04-27,4387.534389) (2018-04-28,4343.183137) (2018-04-29,4406.490550) (2018-04-30,4888.714787) (2018-05-01,4903.069888) (2018-05-02,4829.239710) (2018-05-03,5184.243074) (2018-05-04,5161.820058) (2018-05-05,5380.965243) (2018-05-06,5346.129317) (2018-05-07,5035.047674) (2018-05-08,4682.770971) (2018-05-09,4335.508624) (2018-05-10,4332.035839) (2018-05-11,4113.775409) (2018-05-12,4626.817203) (2018-05-13,4445.181694) (2018-05-14,3914.693281) (2018-05-15,3787.554824) (2018-05-16,3667.299054) (2018-05-17,3056.975881) (2018-05-18,2195.052275) (2018-05-19,1910.321869) (2018-05-20,1787.186213) (2018-05-21,1778.303936) (2018-05-22,1768.512393) (2018-05-23,1748.038237) (2018-05-24,1702.750569) (2018-05-25,1465.353794) (2018-05-26,878.095816) (2018-05-27,814.320594) (2018-05-28,774.672966) (2018-05-29,730.583779) (2018-05-30,640.786706) (2018-05-31,580.060203) (2018-06-01,525.248296) (2018-06-02,408.926073) (2018-06-03,364.281189) (2018-06-04,298.893486) (2018-06-05,271.776516) (2018-06-06,347.530158) (2018-06-07,302.565571) (2018-06-08,266.602651) (2018-06-09,249.914893) (2018-06-10,260.091803) (2018-06-11,260.091803) (2018-06-12,241.556253) (2018-06-13,235.619186) (2018-06-14,232.048338) (2018-06-15,240.278244) (2018-06-16,240.278244) (2018-06-17,240.278244) (2018-06-18,237.386587) (2018-06-19,245.916019) (2018-06-20,66.774321) (2018-06-21,69.610554) (2018-06-22,71.178285) (2018-06-23,71.178285) (2018-06-24,61.733322) (2018-06-25,61.733322) (2018-06-26,63.126584) (2018-06-27,64.797240) (2018-06-28,62.477662) (2018-06-29,46.909117) (2018-06-30,48.538333) (2018-07-01,48.538333) (2018-07-02,54.619986) (2018-07-03,46.090555) (2018-07-04,43.769630) (2018-07-05,20.077321) (2018-07-06,18.509589) (2018-07-07,20.114402) (2018-07-08,14.638003) (2018-07-09,14.638003) (2018-07-10,13.244741) (2018-07-11,11.574085) (2018-07-12,23.500673) (2018-07-13,23.500673) (2018-07-14,24.325544) (2018-07-15,24.325544) (2018-07-16,18.243891) (2018-07-17,18.243891) (2018-07-18,15.985488) (2018-07-19,15.985488) (2018-07-20,17.437903) (2018-07-21,15.833090) (2018-07-22,15.833090) (2018-07-23,15.833090) (2018-07-24,15.833090) (2018-07-25,15.833090) (2018-07-26,20.196245) (2018-07-27,20.196245) (2018-07-28,17.742157) (2018-07-29,21.809634) (2018-07-30,23.885438) (2018-07-31,25.449120) (2018-08-01,28.684923) (2018-08-02,28.684923) (2018-08-03,28.851725) (2018-08-04,28.851725) (2018-08-05,29.921813) (2018-08-06,29.921813) (2018-08-07,32.888723) (2018-08-08,52.279710) (2018-08-09,35.989967) (2018-08-10,37.883048) (2018-08-11,37.883048) (2018-08-12,35.396571) (2018-08-13,38.907550) (2018-08-14,37.343868) (2018-08-15,38.057233) (2018-08-16,38.057233) (2018-08-17,36.438017) (2018-08-18,38.159685) (2018-08-19,37.089597) (2018-08-20,48.925847) (2018-08-21,45.958937) (2018-08-22,29.268795) (2018-08-23,29.268795) (2018-08-24,27.375715) (2018-08-25,27.375715) (2018-08-26,25.794715) (2018-08-27,24.719839) (2018-08-28,208.198067) (2018-08-29,234.897022) (2018-08-30,236.559060) (2018-08-31,237.488602) (2018-09-01,236.648316) (2018-09-02,236.648316) (2018-09-03,224.812066) (2018-09-04,228.993828) (2018-09-05,226.292983) (2018-09-06,226.292983) (2018-09-07,226.292983) (2018-09-08,226.292983) (2018-09-09,226.292983) (2018-09-10,221.781076) (2018-09-11,38.302849) (2018-09-12,7.654725) (2018-09-13,5.992687) (2018-09-14,13.407309) (2018-09-15,12.525927) (2018-09-16,12.525927) (2018-09-17,12.525927) (2018-09-18,8.344164) (2018-09-19,10.925187) (2018-09-20,10.925187) (2018-09-21,22.205100) (2018-09-22,22.205100) (2018-09-23,22.205100) (2018-09-24,34.468943) (2018-09-25,34.468943) (2018-09-26,34.468943) (2018-09-27,34.468943) (2018-09-28,26.124779) (2018-09-29,29.998650) (2018-09-30,31.569545) (2018-10-01,31.569545) (2018-10-02,32.566893) (2018-10-03,29.985870) (2018-10-04,29.985870) (2018-10-05,18.705957) (2018-10-06,18.705957) (2018-10-07,19.354087) (2018-10-08,8.160146) (2018-10-09,8.160146) (2018-10-10,8.160146) (2018-10-11,10.213235) (2018-10-12,18.597805) (2018-10-13,14.723934) (2018-10-14,13.153039) (2018-10-15,13.153039) (2018-10-16,12.155691) (2018-10-17,12.155691) (2018-10-18,12.814106) (2018-10-19,13.419217) (2018-10-20,13.984281) (2018-10-21,13.336152) (2018-10-22,12.266249) (2018-10-23,14.566242) (2018-10-24,19.624422) (2018-10-25,17.571334) (2018-10-26,9.186763) (2018-10-27,16.644232) (2018-10-28,16.644232) (2018-10-29,27.217645) (2018-10-30,27.217645) (2018-10-31,27.943423) (2018-11-01,28.609493) (2018-11-02,32.433660) (2018-11-03,31.868596) (2018-11-04,33.206039) (2018-11-05,33.206039) (2018-11-06,33.465317) (2018-11-07,30.748886) (2018-11-08,30.748886) (2018-11-09,30.748886) (2018-11-10,24.068710) (2018-11-11,31.447802) (2018-11-12,24.073329) (2018-11-13,24.073329) (2018-11-14,32.309131) (2018-11-15,30.984646) (2018-11-16,26.555368) (2018-11-17,26.989588) (2018-11-18,25.652145) (2018-11-19,26.998098) (2018-11-20,24.438827) (2018-11-21,22.097078) (2018-11-22,22.097078) (2018-11-23,22.097078) (2018-11-24,21.319785) (2018-11-25,13.940693) (2018-11-26,10.741753) (2018-11-27,10.741753) (2018-11-28,1.780173) (2018-11-29,1.780173) (2018-11-30,2.101011) (2018-12-01,1.666791) (2018-12-02,1.666791) (2018-12-03,0.320838) (2018-12-04,0.644211) (2018-12-05,1.489690) (2018-12-06,6.351195) (2018-12-07,7.660126) (2018-12-08,8.820590) (2018-12-09,9.314230) (2018-12-10,9.314230) (2018-12-11,10.232175) (2018-12-12,10.232175) (2018-12-13,10.232175) (2018-12-14,10.169974) (2018-12-15,10.169974) (2018-12-16,10.169974) (2018-12-17,10.169974) (2018-12-18,9.846601) (2018-12-19,9.001122) (2018-12-20,4.139617) (2018-12-21,3.852123) (2018-12-22,2.691660) (2018-12-23,3.475465) (2018-12-24,3.475465) (2018-12-25,2.557519) (2018-12-26,5.715651) (2018-12-27,5.715651) (2018-12-28,5.457015) (2018-12-29,5.457015) (2018-12-30,5.457015) (2018-12-31,6.127431) (2019-01-01,6.127431) (2019-01-02,6.127431) (2019-01-03,6.127431) (2019-01-04,5.105993) (2019-01-05,5.893862) (2019-01-06,4.616416) (2019-01-07,4.616416) (2019-01-08,4.616416) (2019-01-09,1.458285) (2019-01-10,1.458285) (2019-01-11,1.458285) (2019-01-12,1.458285) (2019-01-13,1.458285) (2019-01-14,0.787868) (2019-01-15,0.787868) (2019-01-16,0.787868) (2019-01-17,0.787868) (2019-01-18,0.787868) (2019-01-19,1.733613) (2019-01-20,1.733613) (2019-01-21,1.733613) (2019-01-22,1.733613) (2019-01-23,11.730887) (2019-01-24,12.161647) (2019-01-25,12.161647) (2019-01-26,12.161647) (2019-01-27,12.161647) (2019-01-28,12.161647) (2019-01-29,12.498439) (2019-01-30,12.498439) (2019-01-31,13.668609) (2019-02-01,13.668609) (2019-02-02,11.934996) (2019-02-03,11.934996) (2019-02-04,13.442074) (2019-02-05,14.140989) (2019-02-06,5.174876) (2019-02-07,4.744117) (2019-02-08,4.744117) (2019-02-09,4.744117) (2019-02-10,4.744117) (2019-02-11,4.744117) (2019-02-12,4.983356) (2019-02-13,4.983356) (2019-02-14,4.630910) (2019-02-15,5.722290) (2019-02-16,5.722290) (2019-02-17,8.775889) (2019-02-18,7.268811) (2019-02-19,6.569896) (2019-02-20,7.695642) (2019-02-21,25.145395) (2019-02-22,27.083686) (2019-02-23,27.083686) (2019-02-24,27.083686) (2019-02-25,27.083686) (2019-02-26,26.507654) (2019-02-27,26.507654) (2019-02-28,27.392428) (2019-03-01,26.301048) (2019-03-02,26.301048) (2019-03-03,23.247449) (2019-03-04,23.930116) (2019-03-05,23.930116) (2019-03-06,22.223689) (2019-03-07,4.773937) (2019-03-08,2.835646) (2019-03-09,38.398576) (2019-03-10,38.398576) (2019-03-11,38.398576) (2019-03-12,38.398576) (2019-03-13,38.398576) (2019-03-14,36.696079) (2019-03-15,36.696079) (2019-03-16,50.403987) (2019-03-17,50.403987) (2019-03-18,49.721319) (2019-03-19,49.721319) (2019-03-20,49.270838) (2019-03-21,49.270838) (2019-03-22,49.270838) (2019-03-23,13.707908) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,0.000000) (2017-10-21,0.000000) (2017-10-22,0.000000) (2017-10-23,0.000000) (2017-10-24,0.000000) (2017-10-25,0.000000) (2017-10-26,0.000000) (2017-10-27,0.000000) (2017-10-28,0.000000) (2017-10-29,0.000000) (2017-10-30,0.000000) (2017-10-31,0.000000) (2017-11-01,0.000000) (2017-11-02,0.000000) (2017-11-03,0.000000) (2017-11-04,0.000000) (2017-11-05,0.000000) (2017-11-06,0.000000) (2017-11-07,0.000000) (2017-11-08,0.000000) (2017-11-09,0.000000) (2017-11-10,0.000000) (2017-11-11,0.000000) (2017-11-12,0.000000) (2017-11-13,0.000000) (2017-11-14,0.000000) (2017-11-15,0.000000) (2017-11-16,0.000000) (2017-11-17,0.000000) (2017-11-18,0.000000) (2017-11-19,0.000000) (2017-11-20,0.000000) (2017-11-21,0.000000) (2017-11-22,0.000000) (2017-11-23,0.000000) (2017-11-24,0.000000) (2017-11-25,0.000000) (2017-11-26,0.000000) (2017-11-27,0.000000) (2017-11-28,0.000000) (2017-11-29,0.000000) (2017-11-30,0.000000) (2017-12-01,0.000000) (2017-12-02,0.000000) (2017-12-03,0.000000) (2017-12-04,0.000000) (2017-12-05,58.201540) (2017-12-06,717.567807) (2017-12-07,1471.442423) (2017-12-08,1878.815787) (2017-12-09,1983.121368) (2017-12-10,2283.792870) (2017-12-11,3291.399691) (2017-12-12,3704.530463) (2017-12-13,4327.016566) (2017-12-14,4775.221931) (2017-12-15,4861.956991) (2017-12-16,4917.447374) (2017-12-17,5016.568952) (2017-12-18,5140.300239) (2017-12-19,5251.494397) (2017-12-20,4730.028684) (2017-12-21,4037.010065) (2017-12-22,3687.398036) (2017-12-23,3718.121323) (2017-12-24,3584.772322) (2017-12-25,2697.462209) (2017-12-26,2449.893037) (2017-12-27,1995.173457) (2017-12-28,1596.760191) (2017-12-29,1679.294243) (2017-12-30,2230.999925) (2017-12-31,3805.835964) (2018-01-01,6577.693419) (2018-01-02,7937.865171) (2018-01-03,10420.964576) (2018-01-04,11977.133725) (2018-01-05,13385.361798) (2018-01-06,14653.047583) (2018-01-07,15064.851752) (2018-01-08,15961.583051) (2018-01-09,16415.210804) (2018-01-10,16607.423512) (2018-01-11,16684.628111) (2018-01-12,16961.488682) (2018-01-13,16939.331631) (2018-01-14,15458.566723) (2018-01-15,12635.812355) (2018-01-16,11161.175955) (2018-01-17,8572.862180) (2018-01-18,6970.928589) (2018-01-19,5546.344315) (2018-01-20,4195.712547) (2018-01-21,3619.744811) (2018-01-22,2690.805829) (2018-01-23,2121.194806) (2018-01-24,1780.682089) (2018-01-25,1682.957013) (2018-01-26,1419.033272) (2018-01-27,885.092124) (2018-01-28,727.480387) (2018-01-29,801.924561) (2018-01-30,769.227827) (2018-01-31,803.146637) (2018-02-01,842.031970) (2018-02-02,808.298378) (2018-02-03,763.469021) (2018-02-04,792.496337) (2018-02-05,710.731901) (2018-02-06,662.062860) (2018-02-07,644.729006) (2018-02-08,930.581389) (2018-02-09,748.753046) (2018-02-10,710.460798) (2018-02-11,676.288687) (2018-02-12,542.285419) (2018-02-13,540.783027) (2018-02-14,510.172479) (2018-02-15,461.445366) (2018-02-16,458.048546) (2018-02-17,466.378541) (2018-02-18,434.701861) (2018-02-19,428.377272) (2018-02-20,435.965339) (2018-02-21,435.238387) (2018-02-22,120.114383) (2018-02-23,125.632291) (2018-02-24,122.177053) (2018-02-25,123.138198) (2018-02-26,109.862920) (2018-02-27,92.104861) (2018-02-28,56.110416) (2018-03-01,51.672647) (2018-03-02,53.794135) (2018-03-03,47.677213) (2018-03-04,50.766768) (2018-03-05,50.766768) (2018-03-06,57.729616) (2018-03-07,57.490895) (2018-03-08,60.754738) (2018-03-09,65.075204) (2018-03-10,56.482681) (2018-03-11,57.680825) (2018-03-12,58.778482) (2018-03-13,71.421483) (2018-03-14,71.692943) (2018-03-15,70.880934) (2018-03-16,64.605978) (2018-03-17,55.254482) (2018-03-18,56.824110) (2018-03-19,57.376852) (2018-03-20,42.793370) (2018-03-21,44.647356) (2018-03-22,41.613450) (2018-03-23,33.788594) (2018-03-24,34.401991) (2018-03-25,31.687145) (2018-03-26,33.110407) (2018-03-27,17.493541) (2018-03-28,17.479016) (2018-03-29,17.680920) (2018-03-30,17.649536) (2018-03-31,17.607201) (2018-04-01,12.540102) (2018-04-02,12.157581) (2018-04-03,11.455654) (2018-04-04,8.434679) (2018-04-05,8.439307) (2018-04-06,6.472605) (2018-04-07,5.381747) (2018-04-08,4.528441) (2018-04-09,2.805638) (2018-04-10,7.408795) (2018-04-11,10.682473) (2018-04-12,243.043255) (2018-04-13,251.773975) (2018-04-14,253.315041) (2018-04-15,253.563761) (2018-04-16,256.936644) (2018-04-17,257.310894) (2018-04-18,271.523481) (2018-04-19,279.763362) (2018-04-20,279.842869) (2018-04-21,284.091746) (2018-04-22,288.987992) (2018-04-23,292.023768) (2018-04-24,294.556129) (2018-04-25,295.227304) (2018-04-26,63.602520) (2018-04-27,71.155952) (2018-04-28,69.542115) (2018-04-29,71.059802) (2018-04-30,69.406425) (2018-05-01,79.164069) (2018-05-02,66.701848) (2018-05-03,59.826756) (2018-05-04,60.189035) (2018-05-05,57.354622) (2018-05-06,57.072209) (2018-05-07,54.174435) (2018-05-08,47.867599) (2018-05-09,43.665811) (2018-05-10,47.822013) (2018-05-11,31.447991) (2018-05-12,35.821855) (2018-05-13,35.990351) (2018-05-14,34.100624) (2018-05-15,31.671751) (2018-05-16,29.921385) (2018-05-17,28.322031) (2018-05-18,27.455831) (2018-05-19,25.760970) (2018-05-20,21.147137) (2018-05-21,20.211020) (2018-05-22,20.145301) (2018-05-23,20.796000) (2018-05-24,16.671706) (2018-05-25,18.210138) (2018-05-26,14.541529) (2018-05-27,12.504975) (2018-05-28,12.504975) (2018-05-29,4.627158) (2018-05-30,4.627158) (2018-05-31,4.627158) (2018-06-01,4.627158) (2018-06-02,4.627158) (2018-06-03,4.627158) (2018-06-04,4.627158) (2018-06-05,3.864196) (2018-06-06,3.213496) (2018-06-07,2.243687) (2018-06-08,0.705255) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.227469) (2018-07-04,0.227469) (2018-07-05,0.227469) (2018-07-06,0.227469) (2018-07-07,0.227469) (2018-07-08,0.227469) (2018-07-09,0.227469) (2018-07-10,0.227469) (2018-07-11,0.227469) (2018-07-12,0.227469) (2018-07-13,0.227469) (2018-07-14,0.227469) (2018-07-15,0.227469) (2018-07-16,0.227469) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,3.547573) (2018-12-05,3.601071) (2018-12-06,3.601071) (2018-12-07,3.601071) (2018-12-08,3.601071) (2018-12-09,8.699543) (2018-12-10,9.850193) (2018-12-11,11.493093) (2018-12-12,30.137796) (2018-12-13,47.928435) (2018-12-14,50.577219) (2018-12-15,53.207717) (2018-12-16,59.411415) (2018-12-17,67.840313) (2018-12-18,80.761882) (2018-12-19,95.916607) (2018-12-20,103.458538) (2018-12-21,104.418597) (2018-12-22,135.444834) (2018-12-23,139.310127) (2018-12-24,181.492964) (2018-12-25,202.317173) (2018-12-26,186.022654) (2018-12-27,172.574604) (2018-12-28,173.870472) (2018-12-29,175.208010) (2018-12-30,182.010000) (2018-12-31,176.508091) (2019-01-01,165.592019) (2019-01-02,166.683622) (2019-01-03,166.221983) (2019-01-04,188.272038) (2019-01-05,157.245801) (2019-01-06,148.282035) (2019-01-07,104.948548) (2019-01-08,82.481439) (2019-01-09,80.131255) (2019-01-10,75.788666) (2019-01-11,71.844015) (2019-01-12,67.875979) (2019-01-13,54.870290) (2019-01-14,51.943302) (2019-01-15,46.390231) (2019-01-16,30.090405) (2019-01-17,23.010113) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,0.000000) (2017-10-21,0.000000) (2017-10-22,0.000000) (2017-10-23,0.000000) (2017-10-24,0.000000) (2017-10-25,0.000000) (2017-10-26,0.000000) (2017-10-27,0.000000) (2017-10-28,0.000000) (2017-10-29,0.000000) (2017-10-30,0.000000) (2017-10-31,0.000000) (2017-11-01,0.000000) (2017-11-02,1.818717) (2017-11-03,112.084499) (2017-11-04,229.084648) (2017-11-05,289.591359) (2017-11-06,316.297104) (2017-11-07,354.829665) (2017-11-08,402.655520) (2017-11-09,488.339641) (2017-11-10,538.618033) (2017-11-11,588.751571) (2017-11-12,613.149380) (2017-11-13,687.910018) (2017-11-14,728.717360) (2017-11-15,986.111874) (2017-11-16,1026.639475) (2017-11-17,1014.087723) (2017-11-18,924.345002) (2017-11-19,898.662424) (2017-11-20,907.238932) (2017-11-21,912.797343) (2017-11-22,919.011675) (2017-11-23,966.781442) (2017-11-24,964.387348) (2017-11-25,973.812116) (2017-11-26,1044.293867) (2017-11-27,997.532998) (2017-11-28,1063.704020) (2017-11-29,806.309507) (2017-11-30,763.963188) (2017-12-01,666.249158) (2017-12-02,638.991731) (2017-12-03,604.167598) (2017-12-04,568.885344) (2017-12-05,524.794373) (2017-12-06,470.754185) (2017-12-07,337.300297) (2017-12-08,289.415999) (2017-12-09,229.857693) (2017-12-10,134.978133) (2017-12-11,106.978364) (2017-12-12,0.000000) (2017-12-13,0.000000) (2017-12-14,0.000000) (2017-12-15,0.000000) (2017-12-16,0.000000) (2017-12-17,0.000000) (2017-12-18,0.000000) (2017-12-19,0.000000) (2017-12-20,0.000000) (2017-12-21,0.000000) (2017-12-22,0.000000) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,394.763569) (2018-01-30,670.722176) (2018-01-31,670.722176) (2018-02-01,670.722176) (2018-02-02,670.722176) (2018-02-03,670.722176) (2018-02-04,670.722176) (2018-02-05,670.722176) (2018-02-06,670.722176) (2018-02-07,670.722176) (2018-02-08,670.722176) (2018-02-09,670.722176) (2018-02-10,724.050218) (2018-02-11,733.929604) (2018-02-12,396.091379) (2018-02-13,163.123556) (2018-02-14,188.383141) (2018-02-15,391.531761) (2018-02-16,412.847620) (2018-02-17,443.919383) (2018-02-18,503.818865) (2018-02-19,510.371689) (2018-02-20,530.837967) (2018-02-21,538.928320) (2018-02-22,584.064306) (2018-02-23,633.869266) (2018-02-24,607.500519) (2018-02-25,761.985313) (2018-02-26,1605.578667) (2018-02-27,1608.105130) (2018-02-28,1597.494186) (2018-03-01,1402.632052) (2018-03-02,1401.547776) (2018-03-03,1400.918300) (2018-03-04,1390.771310) (2018-03-05,1384.218485) (2018-03-06,1366.164493) (2018-03-07,1395.825449) (2018-03-08,1372.386060) (2018-03-09,1328.248751) (2018-03-10,1301.289457) (2018-03-11,1136.925277) (2018-03-12,246.200265) (2018-03-13,212.102990) (2018-03-14,272.742855) (2018-03-15,298.098537) (2018-03-16,292.280947) (2018-03-17,269.889807) (2018-03-18,222.234847) (2018-03-19,235.685976) (2018-03-20,233.273691) (2018-03-21,200.735637) (2018-03-22,184.796319) (2018-03-23,181.964381) (2018-03-24,181.964381) (2018-03-25,181.964381) (2018-03-26,175.244274) (2018-03-27,552.255083) (2018-03-28,480.155183) (2018-03-29,451.016921) (2018-03-30,441.684106) (2018-03-31,602.626252) (2018-04-01,600.528721) (2018-04-02,587.077591) (2018-04-03,604.289769) (2018-04-04,625.872812) (2018-04-05,687.225564) (2018-04-06,689.701258) (2018-04-07,696.394578) (2018-04-08,711.401110) (2018-04-09,708.327530) (2018-04-10,323.169359) (2018-04-11,351.114150) (2018-04-12,901.370704) (2018-04-13,917.437793) (2018-04-14,752.172226) (2018-04-15,771.410786) (2018-04-16,771.410786) (2018-04-17,787.255544) (2018-04-18,790.115699) (2018-04-19,745.858841) (2018-04-20,750.113086) (2018-04-21,756.623581) (2018-04-22,762.966872) (2018-04-23,762.966872) (2018-04-24,951.065938) (2018-04-25,930.335364) (2018-04-26,377.634160) (2018-04-27,359.350443) (2018-04-28,355.622719) (2018-04-29,393.515824) (2018-04-30,416.711477) (2018-05-01,386.682914) (2018-05-02,392.661750) (2018-05-03,379.118940) (2018-05-04,672.304375) (2018-05-05,705.373940) (2018-05-06,940.620748) (2018-05-07,940.620748) (2018-05-08,749.249071) (2018-05-09,877.458386) (2018-05-10,902.012320) (2018-05-11,922.201360) (2018-05-12,940.949697) (2018-05-13,887.400622) (2018-05-14,888.329715) (2018-05-15,888.682381) (2018-05-16,855.073350) (2018-05-17,848.086148) (2018-05-18,545.335061) (2018-05-19,499.061680) (2018-05-20,242.465049) (2018-05-21,242.465049) (2018-05-22,245.477602) (2018-05-23,111.423445) (2018-05-24,84.810257) (2018-05-25,61.756664) (2018-05-26,43.008326) (2018-05-27,585.462450) (2018-05-28,571.079979) (2018-05-29,692.133541) (2018-05-30,772.791565) (2018-05-31,1239.724157) (2018-06-01,1347.795259) (2018-06-02,1416.236018) (2018-06-03,1468.775751) (2018-06-04,1562.404797) (2018-06-05,1591.580783) (2018-06-06,2019.590457) (2018-06-07,2077.032397) (2018-06-08,2467.307287) (2018-06-09,2478.146560) (2018-06-10,2010.659977) (2018-06-11,2297.410952) (2018-06-12,2188.032434) (2018-06-13,2120.205640) (2018-06-14,1729.738569) (2018-06-15,1831.119683) (2018-06-16,1769.912213) (2018-06-17,1735.425745) (2018-06-18,1675.219173) (2018-06-19,1679.334939) (2018-06-20,1307.842237) (2018-06-21,1299.329270) (2018-06-22,946.395013) (2018-06-23,953.083336) (2018-06-24,911.083036) (2018-06-25,618.229883) (2018-06-26,632.269592) (2018-06-27,636.335733) (2018-06-28,599.282805) (2018-06-29,408.387512) (2018-06-30,451.807555) (2018-07-01,443.681272) (2018-07-02,431.949359) (2018-07-03,406.520295) (2018-07-04,387.706693) (2018-07-05,354.337800) (2018-07-06,329.456816) (2018-07-07,563.682557) (2018-07-08,555.185043) (2018-07-09,551.544945) (2018-07-10,537.076715) (2018-07-11,540.858858) (2018-07-12,547.256273) (2018-07-13,538.840348) (2018-07-14,504.932938) (2018-07-15,504.694412) (2018-07-16,520.724789) (2018-07-17,541.167112) (2018-07-18,547.682905) (2018-07-19,689.376199) (2018-07-20,699.330033) (2018-07-21,450.726835) (2018-07-22,437.430920) (2018-07-23,453.403128) (2018-07-24,461.176617) (2018-07-25,476.619966) (2018-07-26,708.860535) (2018-07-27,770.315214) (2018-07-28,872.408719) (2018-07-29,888.117225) (2018-07-30,874.369142) (2018-07-31,849.587905) (2018-08-01,818.377192) (2018-08-02,674.362830) (2018-08-03,656.872900) (2018-08-04,774.427426) (2018-08-05,776.857857) (2018-08-06,1249.746756) (2018-08-07,1266.037448) (2018-08-08,1284.916668) (2018-08-09,1063.934169) (2018-08-10,1017.905031) (2018-08-11,936.487656) (2018-08-12,915.434056) (2018-08-13,899.275068) (2018-08-14,925.623152) (2018-08-15,939.657670) (2018-08-16,928.574716) (2018-08-17,940.771542) (2018-08-18,857.193713) (2018-08-19,858.646751) (2018-08-20,395.491670) (2018-08-21,362.456061) (2018-08-22,324.021477) (2018-08-23,278.514772) (2018-08-24,267.639710) (2018-08-25,248.444582) (2018-08-26,246.002702) (2018-08-27,260.152562) (2018-08-28,260.332043) (2018-08-29,437.434936) (2018-08-30,479.373909) (2018-08-31,476.811628) (2018-09-01,455.814968) (2018-09-02,451.347479) (2018-09-03,431.775793) (2018-09-04,433.743092) (2018-09-05,437.445678) (2018-09-06,458.872016) (2018-09-07,582.680638) (2018-09-08,644.197178) (2018-09-09,1183.150440) (2018-09-10,1221.973595) (2018-09-11,1865.337393) (2018-09-12,1668.188373) (2018-09-13,1631.998458) (2018-09-14,1671.301553) (2018-09-15,1663.587605) (2018-09-16,1651.347228) (2018-09-17,1680.930410) (2018-09-18,1677.497454) (2018-09-19,1677.111339) (2018-09-20,1653.085514) (2018-09-21,1550.295085) (2018-09-22,1475.522381) (2018-09-23,934.667636) (2018-09-24,878.167885) (2018-09-25,204.208353) (2018-09-26,194.076779) (2018-09-27,202.678894) (2018-09-28,158.887915) (2018-09-29,178.543848) (2018-09-30,192.265489) (2018-10-01,158.103590) (2018-10-02,153.913113) (2018-10-03,145.862499) (2018-10-04,139.925432) (2018-10-05,104.215762) (2018-10-06,100.810669) (2018-10-07,147.769930) (2018-10-08,150.013681) (2018-10-09,163.591952) (2018-10-10,164.113358) (2018-10-11,153.885903) (2018-10-12,174.182368) (2018-10-13,165.249929) (2018-10-14,197.711156) (2018-10-15,205.954984) (2018-10-16,219.796805) (2018-10-17,234.459913) (2018-10-18,236.061693) (2018-10-19,247.986782) (2018-10-20,263.663057) (2018-10-21,248.989760) (2018-10-22,264.638573) (2018-10-23,278.041184) (2018-10-24,315.326746) (2018-10-25,335.984280) (2018-10-26,335.809981) (2018-10-27,330.594593) (2018-10-28,283.681881) (2018-10-29,343.543027) (2018-10-30,330.877582) (2018-10-31,404.894635) (2018-11-01,425.547585) (2018-11-02,442.283818) (2018-11-03,438.480868) (2018-11-04,411.156196) (2018-11-05,404.099103) (2018-11-06,453.138485) (2018-11-07,451.990446) (2018-11-08,434.327805) (2018-11-09,405.808549) (2018-11-10,436.042302) (2018-11-11,441.719792) (2018-11-12,375.777350) (2018-11-13,377.251249) (2018-11-14,276.714723) (2018-11-15,253.334623) (2018-11-16,234.495826) (2018-11-17,229.529750) (2018-11-18,225.664059) (2018-11-19,211.570875) (2018-11-20,140.643299) (2018-11-21,103.986030) (2018-11-22,96.103624) (2018-11-23,96.622490) (2018-11-24,52.464404) (2018-11-25,47.930656) (2018-11-26,51.848180) (2018-11-27,61.627604) (2018-11-28,60.576386) (2018-11-29,58.083433) (2018-11-30,50.889815) (2018-12-01,45.392302) (2018-12-02,52.533221) (2018-12-03,53.978288) (2018-12-04,66.309985) (2018-12-05,70.265403) (2018-12-06,82.914692) (2018-12-07,84.948139) (2018-12-08,92.120008) (2018-12-09,105.278103) (2018-12-10,115.036938) (2018-12-11,117.304439) (2018-12-12,126.807893) (2018-12-13,125.435569) (2018-12-14,125.310453) (2018-12-15,131.944714) (2018-12-16,123.708194) (2018-12-17,126.224176) (2018-12-18,107.020291) (2018-12-19,105.583282) (2018-12-20,105.807215) (2018-12-21,103.753000) (2018-12-22,96.581130) (2018-12-23,94.194884) (2018-12-24,83.687293) (2018-12-25,86.674771) (2018-12-26,103.013442) (2018-12-27,106.199245) (2018-12-28,104.376550) (2018-12-29,99.940110) (2018-12-30,100.522613) (2018-12-31,97.155473) (2019-01-01,103.227362) (2019-01-02,99.284048) (2019-01-03,89.008794) (2019-01-04,133.431674) (2019-01-05,142.891382) (2019-01-06,130.495520) (2019-01-07,124.876529) (2019-01-08,110.800517) (2019-01-09,122.782578) (2019-01-10,119.592622) (2019-01-11,120.449443) (2019-01-12,142.417796) (2019-01-13,143.755187) (2019-01-14,143.796301) (2019-01-15,139.144552) (2019-01-16,145.033514) (2019-01-17,145.128594) (2019-01-18,109.852122) (2019-01-19,104.350130) (2019-01-20,103.628240) (2019-01-21,102.360309) (2019-01-22,110.770916) (2019-01-23,72.668743) (2019-01-24,81.017892) (2019-01-25,110.451878) (2019-01-26,90.877802) (2019-01-27,90.055289) (2019-01-28,89.209127) (2019-01-29,88.198215) (2019-01-30,82.309253) (2019-01-31,89.725687) (2019-02-01,86.421400) (2019-02-02,89.308126) (2019-02-03,91.223888) (2019-02-04,100.152510) (2019-02-05,108.268366) (2019-02-06,111.559687) (2019-02-07,107.240031) (2019-02-08,90.466443) (2019-02-09,84.625132) (2019-02-10,83.527750) (2019-02-11,87.819625) (2019-02-12,127.449798) (2019-02-13,127.916292) (2019-02-14,131.245264) (2019-02-15,133.339746) (2019-02-16,131.300524) (2019-02-17,139.700766) (2019-02-18,130.772145) (2019-02-19,112.749358) (2019-02-20,171.726419) (2019-02-21,200.842757) (2019-02-22,235.652035) (2019-02-23,234.891702) (2019-02-24,255.118163) (2019-02-25,255.699866) (2019-02-26,224.155982) (2019-02-27,225.806480) (2019-02-28,216.733947) (2019-03-01,217.284304) (2019-03-02,222.115145) (2019-03-03,212.785765) (2019-03-04,220.125337) (2019-03-05,218.012994) (2019-03-06,157.102744) (2019-03-07,125.905587) (2019-03-08,79.382820) (2019-03-09,1326.543790) (2019-03-10,1307.136664) (2019-03-11,1321.108549) (2019-03-12,1320.094715) (2019-03-13,1323.596956) (2019-03-14,1317.838771) (2019-03-15,1308.424705) (2019-03-16,1407.927867) (2019-03-17,1406.941243) (2019-03-18,1399.601670) (2019-03-19,1399.601670) (2019-03-20,1397.569495) (2019-03-21,1395.267643) (2019-03-22,1392.782816) (2019-03-23,144.655990) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,47.971914) (2017-10-02,50.515065) (2017-10-03,94.119687) (2017-10-04,94.119687) (2017-10-05,106.875990) (2017-10-06,1634.712803) (2017-10-07,1967.736683) (2017-10-08,1997.559397) (2017-10-09,2164.274343) (2017-10-10,2164.274343) (2017-10-11,2207.392338) (2017-10-12,2222.053520) (2017-10-13,2244.562329) (2017-10-14,2279.428016) (2017-10-15,2231.456102) (2017-10-16,2228.912951) (2017-10-17,2185.308329) (2017-10-18,2185.308329) (2017-10-19,2256.440949) (2017-10-20,807.456662) (2017-10-21,518.885101) (2017-10-22,585.888569) (2017-10-23,489.716813) (2017-10-24,544.243402) (2017-10-25,645.464313) (2017-10-26,699.159418) (2017-10-27,715.401176) (2017-10-28,683.751533) (2017-10-29,737.976158) (2017-10-30,741.240060) (2017-10-31,743.775124) (2017-11-01,1032.062383) (2017-11-02,2283.185600) (2017-11-03,2656.475276) (2017-11-04,2666.100958) (2017-11-05,2589.491460) (2017-11-06,2520.859334) (2017-11-07,2476.600528) (2017-11-08,2555.549097) (2017-11-09,2712.847321) (2017-11-10,3103.836627) (2017-11-11,3556.960364) (2017-11-12,3722.420034) (2017-11-13,3888.876228) (2017-11-14,4239.755380) (2017-11-15,4191.611952) (2017-11-16,3023.760580) (2017-11-17,2823.228264) (2017-11-18,2821.295965) (2017-11-19,6618.763051) (2017-11-20,6692.813441) (2017-11-21,6730.099565) (2017-11-22,6640.099452) (2017-11-23,6495.439790) (2017-11-24,6083.144554) (2017-11-25,5935.236494) (2017-11-26,6017.572977) (2017-11-27,5900.597246) (2017-11-28,5875.247648) (2017-11-29,6177.296635) (2017-11-30,6111.678115) (2017-12-01,5882.879287) (2017-12-02,5949.408619) (2017-12-03,2320.337152) (2017-12-04,2247.420087) (2017-12-05,2235.052926) (2017-12-06,2101.765566) (2017-12-07,2020.770715) (2017-12-08,2016.357354) (2017-12-09,1712.751056) (2017-12-10,1410.730278) (2017-12-11,1391.581205) (2017-12-12,1075.913452) (2017-12-13,703.174199) (2017-12-14,614.676991) (2017-12-15,591.865934) (2017-12-16,501.854871) (2017-12-17,595.807595) (2017-12-18,601.334727) (2017-12-19,927.483717) (2017-12-20,927.483717) (2017-12-21,1077.817669) (2017-12-22,1086.514824) (2017-12-23,1133.473632) (2017-12-24,1133.473632) (2017-12-25,1099.878340) (2017-12-26,1087.481476) (2017-12-27,931.007483) (2017-12-28,917.962442) (2017-12-29,925.157222) (2017-12-30,896.493251) (2017-12-31,613.928224) (2018-01-01,605.356702) (2018-01-02,244.020966) (2018-01-03,244.020966) (2018-01-04,93.687014) (2018-01-05,71.958585) (2018-01-06,20.174353) (2018-01-07,20.174353) (2018-01-08,20.174353) (2018-01-09,20.174353) (2018-01-10,7.194780) (2018-01-11,7.194780) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,0.000000) (2018-01-30,0.000000) (2018-01-31,0.000000) (2018-02-01,0.000000) (2018-02-02,0.000000) (2018-02-03,0.000000) (2018-02-04,0.000000) (2018-02-05,0.000000) (2018-02-06,0.000000) (2018-02-07,0.000000) (2018-02-08,0.000000) (2018-02-09,0.000000) (2018-02-10,0.000000) (2018-02-11,0.000000) (2018-02-12,0.000000) (2018-02-13,0.000000) (2018-02-14,0.000000) (2018-02-15,0.000000) (2018-02-16,0.000000) (2018-02-17,0.000000) (2018-02-18,0.000000) (2018-02-19,0.000000) (2018-02-20,0.000000) (2018-02-21,0.000000) (2018-02-22,0.000000) (2018-02-23,0.000000) (2018-02-24,0.000000) (2018-02-25,0.000000) (2018-02-26,0.000000) (2018-02-27,0.000000) (2018-02-28,0.000000) (2018-03-01,0.000000) (2018-03-02,0.000000) (2018-03-03,0.000000) (2018-03-04,0.000000) (2018-03-05,0.000000) (2018-03-06,0.000000) (2018-03-07,0.000000) (2018-03-08,0.000000) (2018-03-09,0.000000) (2018-03-10,0.000000) (2018-03-11,0.000000) (2018-03-12,0.000000) (2018-03-13,0.000000) (2018-03-14,0.000000) (2018-03-15,0.000000) (2018-03-16,0.000000) (2018-03-17,0.000000) (2018-03-18,0.000000) (2018-03-19,0.000000) (2018-03-20,0.000000) (2018-03-21,0.000000) (2018-03-22,0.000000) (2018-03-23,0.000000) (2018-03-24,0.000000) (2018-03-25,0.000000) (2018-03-26,0.000000) (2018-03-27,0.000000) (2018-03-28,0.000000) (2018-03-29,0.000000) (2018-03-30,0.000000) (2018-03-31,0.000000) (2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.859736) (2017-08-12,84.330525) (2017-08-13,411.232182) (2017-08-14,494.472891) (2017-08-15,613.421131) (2017-08-16,734.949534) (2017-08-17,948.635145) (2017-08-18,1013.919525) (2017-08-19,1050.754066) (2017-08-20,1158.053219) (2017-08-21,1183.728658) (2017-08-22,1358.172424) (2017-08-23,1621.138295) (2017-08-24,1665.033050) (2017-08-25,1671.106253) (2017-08-26,1705.693086) (2017-08-27,1593.758913) (2017-08-28,1629.334485) (2017-08-29,1619.543899) (2017-08-30,1697.732264) (2017-08-31,1711.507254) (2017-09-01,1897.206097) (2017-09-02,2062.200760) (2017-09-03,2171.554003) (2017-09-04,2150.956611) (2017-09-05,2231.386067) (2017-09-06,2278.230205) (2017-09-07,2600.927832) (2017-09-08,2670.312201) (2017-09-09,2953.386048) (2017-09-10,2759.626901) (2017-09-11,3086.925380) (2017-09-12,3143.633478) (2017-09-13,3069.126468) (2017-09-14,3195.002224) (2017-09-15,3047.185606) (2017-09-16,2887.266477) (2017-09-17,2911.781994) (2017-09-18,3365.068060) (2017-09-19,3363.258575) (2017-09-20,3195.201615) (2017-09-21,3084.723897) (2017-09-22,3548.910980) (2017-09-23,3412.026313) (2017-09-24,3633.609161) (2017-09-25,3410.529938) (2017-09-26,3411.705377) (2017-09-27,3382.122847) (2017-09-28,3145.159481) (2017-09-29,3188.295949) (2017-09-30,3356.765251) (2017-10-01,3237.219302) (2017-10-02,2805.101400) (2017-10-03,2685.981815) (2017-10-04,2691.970054) (2017-10-05,2467.749516) (2017-10-06,1949.089200) (2017-10-07,1755.520080) (2017-10-08,1770.867691) (2017-10-09,1569.878587) (2017-10-10,1450.065625) (2017-10-11,1374.330706) (2017-10-12,1338.733726) (2017-10-13,1238.229898) (2017-10-14,1138.853654) (2017-10-15,1038.364514) (2017-10-16,1014.411739) (2017-10-17,886.249640) (2017-10-18,834.832497) (2017-10-19,816.160260) (2017-10-20,896.581501) (2017-10-21,879.198974) (2017-10-22,624.218397) (2017-10-23,602.171966) (2017-10-24,554.943736) (2017-10-25,535.051427) (2017-10-26,454.275415) (2017-10-27,408.476171) (2017-10-28,297.473038) (2017-10-29,276.340215) (2017-10-30,274.046779) (2017-10-31,268.264725) (2017-11-01,171.940581) (2017-11-02,158.718692) (2017-11-03,56.453375) (2017-11-04,3.158219) (2017-11-05,0.000000) (2017-11-06,0.000000) (2017-11-07,0.000000) (2017-11-08,0.000000) (2017-11-09,0.000000) (2017-11-10,0.000000) (2017-11-11,0.000000) (2017-11-12,0.000000) (2017-11-13,0.000000) (2017-11-14,0.000000) (2017-11-15,0.000000) (2017-11-16,0.000000) (2017-11-17,0.000000) (2017-11-18,0.000000) (2017-11-19,0.000000) (2017-11-20,0.000000) (2017-11-21,0.000000) (2017-11-22,0.000000) (2017-11-23,0.000000) (2017-11-24,0.000000) (2017-11-25,0.000000) (2017-11-26,0.000000) (2017-11-27,0.000000) (2017-11-28,0.000000) (2017-11-29,0.000000) (2017-11-30,0.000000) (2017-12-01,0.000000) (2017-12-02,0.000000) (2017-12-03,0.000000) (2017-12-04,0.000000) (2017-12-05,0.000000) (2017-12-06,0.000000) (2017-12-07,0.000000) (2017-12-08,0.000000) (2017-12-09,0.000000) (2017-12-10,0.000000) (2017-12-11,0.000000) (2017-12-12,0.000000) (2017-12-13,0.000000) (2017-12-14,0.000000) (2017-12-15,0.000000) (2017-12-16,0.000000) (2017-12-17,0.000000) (2017-12-18,0.000000) (2017-12-19,0.000000) (2017-12-20,0.000000) (2017-12-21,0.000000) (2017-12-22,0.000000) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,0.000000) (2018-01-30,0.000000) (2018-01-31,0.000000) (2018-02-01,0.000000) (2018-02-02,0.000000) (2018-02-03,0.000000) (2018-02-04,0.000000) (2018-02-05,0.000000) (2018-02-06,0.000000) (2018-02-07,0.000000) (2018-02-08,0.000000) (2018-02-09,0.000000) (2018-02-10,0.000000) (2018-02-11,0.000000) (2018-02-12,0.000000) (2018-02-13,0.000000) (2018-02-14,0.000000) (2018-02-15,0.000000) (2018-02-16,0.000000) (2018-02-17,0.000000) (2018-02-18,0.000000) (2018-02-19,0.000000) (2018-02-20,0.000000) (2018-02-21,0.000000) (2018-02-22,0.000000) (2018-02-23,0.000000) (2018-02-24,0.000000) (2018-02-25,0.000000) (2018-02-26,0.000000) (2018-02-27,0.000000) (2018-02-28,0.000000) (2018-03-01,0.000000) (2018-03-02,0.000000) (2018-03-03,0.000000) (2018-03-04,0.000000) (2018-03-05,0.000000) (2018-03-06,0.000000) (2018-03-07,0.000000) (2018-03-08,0.000000) (2018-03-09,0.000000) (2018-03-10,0.000000) (2018-03-11,0.000000) (2018-03-12,0.000000) (2018-03-13,0.000000) (2018-03-14,0.000000) (2018-03-15,0.000000) (2018-03-16,0.000000) (2018-03-17,0.000000) (2018-03-18,0.000000) (2018-03-19,0.000000) (2018-03-20,0.000000) (2018-03-21,0.000000) (2018-03-22,0.000000) (2018-03-23,0.000000) (2018-03-24,0.000000) (2018-03-25,0.000000) (2018-03-26,0.000000) (2018-03-27,0.000000) (2018-03-28,0.000000) (2018-03-29,0.000000) (2018-03-30,0.000000) (2018-03-31,0.000000) (2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,0.000000) (2017-10-21,0.000000) (2017-10-22,0.000000) (2017-10-23,0.000000) (2017-10-24,0.000000) (2017-10-25,0.000000) (2017-10-26,0.000000) (2017-10-27,0.000000) (2017-10-28,0.000000) (2017-10-29,0.000000) (2017-10-30,0.000000) (2017-10-31,0.000000) (2017-11-01,0.000000) (2017-11-02,0.000000) (2017-11-03,0.000000) (2017-11-04,0.000000) (2017-11-05,0.000000) (2017-11-06,0.000000) (2017-11-07,0.000000) (2017-11-08,0.000000) (2017-11-09,0.000000) (2017-11-10,0.000000) (2017-11-11,0.000000) (2017-11-12,0.000000) (2017-11-13,0.000000) (2017-11-14,0.000000) (2017-11-15,0.000000) (2017-11-16,0.000000) (2017-11-17,0.000000) (2017-11-18,0.000000) (2017-11-19,0.000000) (2017-11-20,0.000000) (2017-11-21,0.000000) (2017-11-22,0.000000) (2017-11-23,0.000000) (2017-11-24,0.000000) (2017-11-25,0.000000) (2017-11-26,0.000000) (2017-11-27,0.000000) (2017-11-28,0.000000) (2017-11-29,0.000000) (2017-11-30,0.000000) (2017-12-01,0.000000) (2017-12-02,0.000000) (2017-12-03,0.000000) (2017-12-04,0.000000) (2017-12-05,15.167219) (2017-12-06,298.607534) (2017-12-07,441.687535) (2017-12-08,554.794312) (2017-12-09,590.027073) (2017-12-10,737.479478) (2017-12-11,1614.924277) (2017-12-12,1710.066872) (2017-12-13,1883.878113) (2017-12-14,1963.137025) (2017-12-15,1980.239335) (2017-12-16,2090.555022) (2017-12-17,2173.911292) (2017-12-18,2206.455113) (2017-12-19,2254.739183) (2017-12-20,1996.849206) (2017-12-21,1874.922787) (2017-12-22,1821.100815) (2017-12-23,1830.721361) (2017-12-24,1755.307138) (2017-12-25,916.161058) (2017-12-26,862.677134) (2017-12-27,973.418311) (2017-12-28,907.924032) (2017-12-29,991.956699) (2017-12-30,1143.739172) (2017-12-31,1421.350734) (2018-01-01,2592.885944) (2018-01-02,3198.594757) (2018-01-03,3615.872152) (2018-01-04,4000.959661) (2018-01-05,4073.959157) (2018-01-06,4218.502627) (2018-01-07,4184.625296) (2018-01-08,4222.840166) (2018-01-09,5429.270687) (2018-01-10,5187.230333) (2018-01-11,5173.465700) (2018-01-12,5206.303507) (2018-01-13,5375.611145) (2018-01-14,5020.275146) (2018-01-15,3838.351981) (2018-01-16,3169.191880) (2018-01-17,2726.364147) (2018-01-18,2330.304509) (2018-01-19,2292.295118) (2018-01-20,2203.532835) (2018-01-21,2165.371984) (2018-01-22,2107.382682) (2018-01-23,863.993995) (2018-01-24,842.374197) (2018-01-25,863.040119) (2018-01-26,783.891410) (2018-01-27,355.682528) (2018-01-28,378.749031) (2018-01-29,372.385603) (2018-01-30,377.938384) (2018-01-31,396.736956) (2018-02-01,403.233322) (2018-02-02,309.199043) (2018-02-03,224.660799) (2018-02-04,236.404046) (2018-02-05,219.339636) (2018-02-06,220.432605) (2018-02-07,200.615044) (2018-02-08,190.646685) (2018-02-09,135.994160) (2018-02-10,132.968055) (2018-02-11,111.112114) (2018-02-12,104.712116) (2018-02-13,101.784732) (2018-02-14,83.132269) (2018-02-15,84.962676) (2018-02-16,101.264278) (2018-02-17,85.168028) (2018-02-18,73.424781) (2018-02-19,71.964904) (2018-02-20,67.572669) (2018-02-21,66.497965) (2018-02-22,68.471507) (2018-02-23,89.422433) (2018-02-24,98.962950) (2018-02-25,92.120555) (2018-02-26,82.728115) (2018-02-27,89.207788) (2018-02-28,89.061679) (2018-03-01,72.968609) (2018-03-02,60.797569) (2018-03-03,63.217722) (2018-03-04,63.217722) (2018-03-05,63.217722) (2018-03-06,61.816483) (2018-03-07,61.816483) (2018-03-08,54.773882) (2018-03-09,35.958979) (2018-03-10,26.670171) (2018-03-11,28.615621) (2018-03-12,30.717996) (2018-03-13,30.483776) (2018-03-14,32.777410) (2018-03-15,30.971273) (2018-03-16,26.600080) (2018-03-17,24.179927) (2018-03-18,24.179927) (2018-03-19,26.026812) (2018-03-20,26.026812) (2018-03-21,26.162921) (2018-03-22,21.495098) (2018-03-23,19.187526) (2018-03-24,18.765006) (2018-03-25,17.110747) (2018-03-26,16.377578) (2018-03-27,8.033871) (2018-03-28,5.740237) (2018-03-29,5.738521) (2018-03-30,6.030305) (2018-03-31,6.030305) (2018-04-01,6.030305) (2018-04-02,4.183421) (2018-04-03,7.903492) (2018-04-04,7.854600) (2018-04-05,8.589737) (2018-04-06,8.589737) (2018-04-07,8.589737) (2018-04-08,8.298547) (2018-04-09,6.929340) (2018-04-10,6.402197) (2018-04-11,12.870163) (2018-04-12,144.419196) (2018-04-13,148.655244) (2018-04-14,148.655244) (2018-04-15,148.655244) (2018-04-16,148.655244) (2018-04-17,162.550630) (2018-04-18,162.463413) (2018-04-19,161.017588) (2018-04-20,172.166693) (2018-04-21,177.510902) (2018-04-22,177.788984) (2018-04-23,178.942986) (2018-04-24,180.953290) (2018-04-25,174.652669) (2018-04-26,42.855540) (2018-04-27,49.377024) (2018-04-28,50.160013) (2018-04-29,50.585032) (2018-04-30,51.113305) (2018-05-01,35.059415) (2018-05-02,35.059415) (2018-05-03,36.140998) (2018-05-04,25.653046) (2018-05-05,21.734400) (2018-05-06,21.456319) (2018-05-07,20.302317) (2018-05-08,18.292013) (2018-05-09,20.281548) (2018-05-10,19.922340) (2018-05-11,8.873023) (2018-05-12,8.090034) (2018-05-13,7.665015) (2018-05-14,7.136742) (2018-05-15,6.982020) (2018-05-16,6.982020) (2018-05-17,6.220184) (2018-05-18,5.559031) (2018-05-19,4.133468) (2018-05-20,4.133468) (2018-05-21,4.133468) (2018-05-22,4.133468) (2018-05-23,3.366666) (2018-05-24,3.366666) (2018-05-25,3.366666) (2018-05-26,3.366666) (2018-05-27,3.366666) (2018-05-28,3.831466) (2018-05-29,2.424621) (2018-05-30,2.424621) (2018-05-31,3.386631) (2018-06-01,4.243908) (2018-06-02,4.243908) (2018-06-03,4.243908) (2018-06-04,6.545155) (2018-06-05,7.852348) (2018-06-06,6.462270) (2018-06-07,7.666472) (2018-06-08,7.805995) (2018-06-09,7.805995) (2018-06-10,7.805995) (2018-06-11,7.705934) (2018-06-12,8.028645) (2018-06-13,8.028645) (2018-06-14,6.496892) (2018-06-15,5.639615) (2018-06-16,5.639615) (2018-06-17,5.639615) (2018-06-18,3.338369) (2018-06-19,2.031175) (2018-06-20,2.031175) (2018-06-21,0.826974) (2018-06-22,0.687450) (2018-06-23,0.687450) (2018-06-24,0.687450) (2018-06-25,0.322711) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,2.229769) (2018-07-10,4.819277) (2018-07-11,6.367415) (2018-07-12,7.438810) (2018-07-13,11.851118) (2018-07-14,13.264659) (2018-07-15,13.264659) (2018-07-16,13.264659) (2018-07-17,62.548259) (2018-07-18,62.548259) (2018-07-19,64.949218) (2018-07-20,65.177936) (2018-07-21,65.177936) (2018-07-22,65.837197) (2018-07-23,63.607429) (2018-07-24,61.017920) (2018-07-25,59.583825) (2018-07-26,58.609648) (2018-07-27,54.197341) (2018-07-28,52.874595) (2018-07-29,52.874595) (2018-07-30,52.874595) (2018-07-31,3.590995) (2018-08-01,3.590995) (2018-08-02,1.190036) (2018-08-03,4.364556) (2018-08-04,4.622154) (2018-08-05,3.962893) (2018-08-06,3.962893) (2018-08-07,3.962893) (2018-08-08,4.205494) (2018-08-09,4.108276) (2018-08-10,4.108276) (2018-08-11,4.017480) (2018-08-12,4.701182) (2018-08-13,8.026230) (2018-08-14,14.761843) (2018-08-15,16.970263) (2018-08-16,20.608907) (2018-08-17,18.893623) (2018-08-18,20.352422) (2018-08-19,22.556579) (2018-08-20,25.580927) (2018-08-21,32.924450) (2018-08-22,33.449212) (2018-08-23,35.134290) (2018-08-24,37.665172) (2018-08-25,38.007723) (2018-08-26,37.601040) (2018-08-27,34.449161) (2018-08-28,27.984177) (2018-08-29,29.864637) (2018-08-30,34.037488) (2018-08-31,36.285766) (2018-09-01,37.194752) (2018-09-02,38.612629) (2018-09-03,36.825305) (2018-09-04,35.395978) (2018-09-05,35.341788) (2018-09-06,88.586888) (2018-09-07,87.918280) (2018-09-08,89.819933) (2018-09-09,91.078878) (2018-09-10,91.362307) (2018-09-11,91.969642) (2018-09-12,88.954158) (2018-09-13,85.273609) (2018-09-14,83.726606) (2018-09-15,82.226957) (2018-09-16,84.945499) (2018-09-17,85.577324) (2018-09-18,80.929464) (2018-09-19,98.925762) (2018-09-20,45.053725) (2018-09-21,43.631187) (2018-09-22,42.776162) (2018-09-23,42.391139) (2018-09-24,47.482113) (2018-09-25,47.703242) (2018-09-26,47.029590) (2018-09-27,43.308904) (2018-09-28,41.237311) (2018-09-29,51.939625) (2018-09-30,45.984604) (2018-10-01,45.260234) (2018-10-02,44.142867) (2018-10-03,25.725507) (2018-10-04,45.341430) (2018-10-05,50.963289) (2018-10-06,49.799871) (2018-10-07,50.796395) (2018-10-08,47.072721) (2018-10-09,50.453322) (2018-10-10,53.213298) (2018-10-11,69.629380) (2018-10-12,69.655086) (2018-10-13,75.618097) (2018-10-14,92.555268) (2018-10-15,94.029561) (2018-10-16,94.523693) (2018-10-17,95.128214) (2018-10-18,76.697123) (2018-10-19,74.004521) (2018-10-20,74.017227) (2018-10-21,72.498384) (2018-10-22,72.275766) (2018-10-23,68.802064) (2018-10-24,66.553759) (2018-10-25,49.727417) (2018-10-26,49.956338) (2018-10-27,32.693579) (2018-10-28,23.979060) (2018-10-29,22.082355) (2018-10-30,22.514507) (2018-10-31,21.590560) (2018-11-01,22.669895) (2018-11-02,21.942858) (2018-11-03,22.665111) (2018-11-04,24.360136) (2018-11-05,28.725788) (2018-11-06,28.351584) (2018-11-07,28.647242) (2018-11-08,30.526386) (2018-11-09,41.532946) (2018-11-10,45.848465) (2018-11-11,40.371313) (2018-11-12,39.649246) (2018-11-13,50.108479) (2018-11-14,52.287395) (2018-11-15,52.015231) (2018-11-16,49.937157) (2018-11-17,50.389463) (2018-11-18,48.450254) (2018-11-19,49.920353) (2018-11-20,56.847892) (2018-11-21,57.318021) (2018-11-22,58.834412) (2018-11-23,52.804236) (2018-11-24,49.912789) (2018-11-25,47.511354) (2018-11-26,78.109987) (2018-11-27,68.597888) (2018-11-28,71.404925) (2018-11-29,72.231339) (2018-11-30,76.222746) (2018-12-01,82.053053) (2018-12-02,82.260130) (2018-12-03,76.295106) (2018-12-04,70.744009) (2018-12-05,69.846983) (2018-12-06,68.858456) (2018-12-07,68.341052) (2018-12-08,70.030561) (2018-12-09,88.472228) (2018-12-10,58.476375) (2018-12-11,56.646628) (2018-12-12,52.205208) (2018-12-13,48.715000) (2018-12-14,45.731366) (2018-12-15,38.978818) (2018-12-16,39.957963) (2018-12-17,38.682066) (2018-12-18,36.769256) (2018-12-19,36.137405) (2018-12-20,33.730397) (2018-12-21,28.699157) (2018-12-22,25.117380) (2018-12-23,5.946094) (2018-12-24,5.672449) (2018-12-25,5.479809) (2018-12-26,4.848548) (2018-12-27,4.462198) (2018-12-28,3.147310) (2018-12-29,2.836960) (2018-12-30,1.304112) (2018-12-31,1.107999) (2019-01-01,1.012580) (2019-01-02,0.864255) (2019-01-03,0.905519) (2019-01-04,1.065687) (2019-01-05,2.720862) (2019-01-06,2.999225) (2019-01-07,7.110161) (2019-01-08,7.188481) (2019-01-09,7.490573) (2019-01-10,8.580188) (2019-01-11,9.624172) (2019-01-12,9.628906) (2019-01-13,9.945191) (2019-01-14,10.462518) (2019-01-15,10.462518) (2019-01-16,13.584895) (2019-01-17,14.494828) (2019-01-18,16.711878) (2019-01-19,16.398328) (2019-01-20,16.450680) (2019-01-21,16.318430) (2019-01-22,18.461035) (2019-01-23,21.280552) (2019-01-24,24.071917) (2019-01-25,24.927822) (2019-01-26,25.416349) (2019-01-27,25.501380) (2019-01-28,25.234383) (2019-01-29,25.337310) (2019-01-30,22.314168) (2019-01-31,22.687144) (2019-02-01,21.651588) (2019-02-02,21.727738) (2019-02-03,23.621149) (2019-02-04,21.342765) (2019-02-05,23.428878) (2019-02-06,28.364526) (2019-02-07,25.452253) (2019-02-08,29.109488) (2019-02-09,29.549885) (2019-02-10,29.686630) (2019-02-11,31.021782) (2019-02-12,31.714407) (2019-02-13,32.520238) (2019-02-14,32.780715) (2019-02-15,33.103126) (2019-02-16,31.784452) (2019-02-17,30.128122) (2019-02-18,29.513109) (2019-02-19,27.555606) (2019-02-20,25.204883) (2019-02-21,27.415608) (2019-02-22,22.523725) (2019-02-23,22.522817) (2019-02-24,23.131381) (2019-02-25,23.910162) (2019-02-26,30.982149) (2019-02-27,31.003018) (2019-02-28,32.864807) (2019-03-01,37.870898) (2019-03-02,42.206728) (2019-03-03,47.712618) (2019-03-04,50.224241) (2019-03-05,54.206621) (2019-03-06,50.872441) (2019-03-07,48.266920) (2019-03-08,47.865109) (2019-03-09,53.782136) (2019-03-10,57.939370) (2019-03-11,59.839942) (2019-03-12,61.311973) (2019-03-13,64.252314) (2019-03-14,66.845514) (2019-03-15,66.837558) (2019-03-16,69.005941) (2019-03-17,67.533363) (2019-03-18,63.607316) (2019-03-19,57.275402) (2019-03-20,54.903048) (2019-03-21,54.329137) (2019-03-22,53.808940) (2019-03-23,46.778727) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,0.000000) (2017-09-29,0.000000) (2017-09-30,0.000000) (2017-10-01,0.000000) (2017-10-02,0.000000) (2017-10-03,0.000000) (2017-10-04,0.000000) (2017-10-05,0.000000) (2017-10-06,0.000000) (2017-10-07,0.000000) (2017-10-08,0.000000) (2017-10-09,0.000000) (2017-10-10,0.000000) (2017-10-11,0.000000) (2017-10-12,0.000000) (2017-10-13,0.000000) (2017-10-14,0.000000) (2017-10-15,0.000000) (2017-10-16,0.000000) (2017-10-17,0.000000) (2017-10-18,0.000000) (2017-10-19,0.000000) (2017-10-20,0.000000) (2017-10-21,0.000000) (2017-10-22,0.000000) (2017-10-23,0.000000) (2017-10-24,0.000000) (2017-10-25,0.000000) (2017-10-26,0.000000) (2017-10-27,0.000000) (2017-10-28,0.000000) (2017-10-29,0.000000) (2017-10-30,0.000000) (2017-10-31,0.000000) (2017-11-01,0.000000) (2017-11-02,0.000000) (2017-11-03,0.000000) (2017-11-04,0.000000) (2017-11-05,0.000000) (2017-11-06,0.000000) (2017-11-07,0.000000) (2017-11-08,0.000000) (2017-11-09,0.000000) (2017-11-10,0.000000) (2017-11-11,0.000000) (2017-11-12,0.000000) (2017-11-13,0.000000) (2017-11-14,0.000000) (2017-11-15,0.000000) (2017-11-16,0.000000) (2017-11-17,0.000000) (2017-11-18,0.000000) (2017-11-19,0.000000) (2017-11-20,0.000000) (2017-11-21,0.000000) (2017-11-22,0.000000) (2017-11-23,0.000000) (2017-11-24,0.000000) (2017-11-25,0.000000) (2017-11-26,0.000000) (2017-11-27,0.000000) (2017-11-28,0.000000) (2017-11-29,0.000000) (2017-11-30,0.000000) (2017-12-01,0.000000) (2017-12-02,0.000000) (2017-12-03,0.000000) (2017-12-04,0.000000) (2017-12-05,0.000000) (2017-12-06,0.000000) (2017-12-07,0.000000) (2017-12-08,0.000000) (2017-12-09,2.171470) (2017-12-10,2.171470) (2017-12-11,2.171470) (2017-12-12,2.171470) (2017-12-13,2.171470) (2017-12-14,2.171470) (2017-12-15,2.171470) (2017-12-16,2.171470) (2017-12-17,2.171470) (2017-12-18,2.171470) (2017-12-19,2.171470) (2017-12-20,2.171470) (2017-12-21,2.171470) (2017-12-22,2.171470) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,640.274819) (2018-01-13,2885.788518) (2018-01-14,2885.788518) (2018-01-15,2885.788518) (2018-01-16,2885.788518) (2018-01-17,2948.291578) (2018-01-18,3073.888989) (2018-01-19,3240.782765) (2018-01-20,3415.522711) (2018-01-21,3479.908504) (2018-01-22,3577.883818) (2018-01-23,3697.880510) (2018-01-24,3815.634540) (2018-01-25,3947.553774) (2018-01-26,3470.828522) (2018-01-27,1344.824480) (2018-01-28,1420.876951) (2018-01-29,1513.353118) (2018-01-30,1578.515770) (2018-01-31,1592.502912) (2018-02-01,1540.093647) (2018-02-02,1426.220052) (2018-02-03,1320.156603) (2018-02-04,1348.081933) (2018-02-05,1340.224863) (2018-02-06,1293.829328) (2018-02-07,1248.056743) (2018-02-08,1183.853499) (2018-02-09,1090.614042) (2018-02-10,1064.995359) (2018-02-11,1055.307797) (2018-02-12,1042.432795) (2018-02-13,1053.082375) (2018-02-14,1053.850579) (2018-02-15,1039.350299) (2018-02-16,1024.848930) (2018-02-17,1001.335668) (2018-02-18,949.908072) (2018-02-19,892.967435) (2018-02-20,869.311523) (2018-02-21,860.025741) (2018-02-22,844.252937) (2018-02-23,829.728341) (2018-02-24,820.693587) (2018-02-25,804.766977) (2018-02-26,778.699686) (2018-02-27,742.229066) (2018-02-28,707.359360) (2018-03-01,707.084494) (2018-03-02,731.979478) (2018-03-03,760.907624) (2018-03-04,774.104621) (2018-03-05,769.659242) (2018-03-06,746.332725) (2018-03-07,730.601775) (2018-03-08,706.352155) (2018-03-09,689.780788) (2018-03-10,629.169242) (2018-03-11,597.809336) (2018-03-12,573.923944) (2018-03-13,550.212276) (2018-03-14,523.962653) (2018-03-15,485.013862) (2018-03-16,435.571568) (2018-03-17,390.254036) (2018-03-18,352.268943) (2018-03-19,341.473225) (2018-03-20,339.327568) (2018-03-21,308.177253) (2018-03-22,305.344384) (2018-03-23,285.538915) (2018-03-24,282.454388) (2018-03-25,274.781247) (2018-03-26,255.290859) (2018-03-27,245.037876) (2018-03-28,246.188040) (2018-03-29,243.022567) (2018-03-30,240.202185) (2018-03-31,221.446282) (2018-04-01,213.502127) (2018-04-02,204.639751) (2018-04-03,191.001157) (2018-04-04,194.921458) (2018-04-05,190.256747) (2018-04-06,190.120771) (2018-04-07,189.455700) (2018-04-08,203.482699) (2018-04-09,218.506245) (2018-04-10,248.215756) (2018-04-11,262.422152) (2018-04-12,297.722730) (2018-04-13,324.934205) (2018-04-14,351.477160) (2018-04-15,373.018667) (2018-04-16,388.540070) (2018-04-17,412.817943) (2018-04-18,445.255141) (2018-04-19,464.748294) (2018-04-20,510.138128) (2018-04-21,539.077885) (2018-04-22,555.975969) (2018-04-23,580.536391) (2018-04-24,602.629588) (2018-04-25,602.755008) (2018-04-26,578.587084) (2018-04-27,571.947024) (2018-04-28,586.074023) (2018-04-29,612.599662) (2018-04-30,627.869398) (2018-05-01,622.435740) (2018-05-02,620.291122) (2018-05-03,638.267288) (2018-05-04,621.805802) (2018-05-05,625.408543) (2018-05-06,602.943565) (2018-05-07,574.907199) (2018-05-08,562.658552) (2018-05-09,566.348305) (2018-05-10,581.656170) (2018-05-11,594.541467) (2018-05-12,591.596321) (2018-05-13,558.117318) (2018-05-14,533.576550) (2018-05-15,538.693037) (2018-05-16,503.164272) (2018-05-17,465.447581) (2018-05-18,431.848673) (2018-05-19,387.423878) (2018-05-20,382.272476) (2018-05-21,371.495598) (2018-05-22,339.661377) (2018-05-23,313.463887) (2018-05-24,297.420520) (2018-05-25,267.073216) (2018-05-26,231.370875) (2018-05-27,225.636670) (2018-05-28,222.941024) (2018-05-29,198.445545) (2018-05-30,203.086727) (2018-05-31,208.164030) (2018-06-01,215.218430) (2018-06-02,223.128639) (2018-06-03,222.281874) (2018-06-04,230.483414) (2018-06-05,234.188648) (2018-06-06,235.847417) (2018-06-07,226.602186) (2018-06-08,228.054128) (2018-06-09,226.506533) (2018-06-10,212.062130) (2018-06-11,208.170182) (2018-06-12,203.256517) (2018-06-13,193.196467) (2018-06-14,186.405320) (2018-06-15,173.973335) (2018-06-16,167.572937) (2018-06-17,162.787800) (2018-06-18,161.067854) (2018-06-19,151.274478) (2018-06-20,149.569726) (2018-06-21,145.738630) (2018-06-22,143.281327) (2018-06-23,137.050510) (2018-06-24,144.099690) (2018-06-25,138.497522) (2018-06-26,136.602848) (2018-06-27,130.956504) (2018-06-28,116.979643) (2018-06-29,111.290961) (2018-06-30,103.773842) (2018-07-01,97.493070) (2018-07-02,86.806463) (2018-07-03,84.358396) (2018-07-04,84.920720) (2018-07-05,79.910018) (2018-07-06,73.838556) (2018-07-07,77.298579) (2018-07-08,69.752779) (2018-07-09,70.561780) (2018-07-10,75.752401) (2018-07-11,83.002820) (2018-07-12,91.646373) (2018-07-13,95.835358) (2018-07-14,101.990962) (2018-07-15,102.934269) (2018-07-16,98.379390) (2018-07-17,100.248753) (2018-07-18,101.423602) (2018-07-19,101.934497) (2018-07-20,101.740136) (2018-07-21,101.340798) (2018-07-22,103.642969) (2018-07-23,107.419174) (2018-07-24,103.767599) (2018-07-25,101.337282) (2018-07-26,96.395696) (2018-07-27,103.272684) (2018-07-28,106.807801) (2018-07-29,115.300613) (2018-07-30,119.812365) (2018-07-31,118.955233) (2018-08-01,118.269475) (2018-08-02,115.218992) (2018-08-03,112.252577) (2018-08-04,114.585180) (2018-08-05,112.124905) (2018-08-06,107.823546) (2018-08-07,107.196173) (2018-08-08,105.583564) (2018-08-09,99.992903) (2018-08-10,93.642554) (2018-08-11,84.330285) (2018-08-12,76.901751) (2018-08-13,74.413293) (2018-08-14,71.604808) (2018-08-15,63.969827) (2018-08-16,60.336410) (2018-08-17,58.696778) (2018-08-18,50.611785) (2018-08-19,53.144870) (2018-08-20,55.810476) (2018-08-21,57.696211) (2018-08-22,53.313269) (2018-08-23,53.200178) (2018-08-24,50.091737) (2018-08-25,49.985102) (2018-08-26,48.147380) (2018-08-27,46.040253) (2018-08-28,47.013870) (2018-08-29,48.955821) (2018-08-30,51.940965) (2018-08-31,50.775536) (2018-09-01,51.215090) (2018-09-02,49.975924) (2018-09-03,46.132596) (2018-09-04,42.496675) (2018-09-05,42.847983) (2018-09-06,42.064816) (2018-09-07,38.242877) (2018-09-08,37.812544) (2018-09-09,36.405270) (2018-09-10,35.285621) (2018-09-11,37.164513) (2018-09-12,34.416530) (2018-09-13,30.214784) (2018-09-14,32.600114) (2018-09-15,32.889978) (2018-09-16,31.429124) (2018-09-17,30.951615) (2018-09-18,31.589583) (2018-09-19,29.779258) (2018-09-20,29.288066) (2018-09-21,30.594985) (2018-09-22,31.007203) (2018-09-23,30.236199) (2018-09-24,30.138671) (2018-09-25,26.205091) (2018-09-26,25.937601) (2018-09-27,26.894305) (2018-09-28,25.340286) (2018-09-29,26.054938) (2018-09-30,25.062092) (2018-10-01,27.029181) (2018-10-02,25.588823) (2018-10-03,25.335866) (2018-10-04,26.003609) (2018-10-05,24.271386) (2018-10-06,23.172554) (2018-10-07,24.976738) (2018-10-08,25.951899) (2018-10-09,25.169466) (2018-10-10,25.739075) (2018-10-11,26.307012) (2018-10-12,25.358748) (2018-10-13,23.480815) (2018-10-14,24.903192) (2018-10-15,23.522662) (2018-10-16,24.357763) (2018-10-17,25.673245) (2018-10-18,24.696366) (2018-10-19,26.121859) (2018-10-20,26.087534) (2018-10-21,25.991776) (2018-10-22,24.445986) (2018-10-23,26.191729) (2018-10-24,26.599839) (2018-10-25,25.438159) (2018-10-26,25.985659) (2018-10-27,25.508298) (2018-10-28,23.631136) (2018-10-29,23.783974) (2018-10-30,22.821957) (2018-10-31,22.923441) (2018-11-01,24.804882) (2018-11-02,26.288846) (2018-11-03,27.724104) (2018-11-04,26.416890) (2018-11-05,27.389254) (2018-11-06,25.949665) (2018-11-07,24.893230) (2018-11-08,24.562580) (2018-11-09,24.082061) (2018-11-10,24.829071) (2018-11-11,25.381491) (2018-11-12,23.666361) (2018-11-13,23.380486) (2018-11-14,22.136725) (2018-11-15,20.834128) (2018-11-16,17.974077) (2018-11-17,15.686398) (2018-11-18,14.800244) (2018-11-19,14.698601) (2018-11-20,13.781390) (2018-11-21,12.807494) (2018-11-22,12.305512) (2018-11-23,11.485437) (2018-11-24,10.594088) (2018-11-25,10.990382) (2018-11-26,11.087402) (2018-11-27,10.594073) (2018-11-28,10.858736) (2018-11-29,10.326401) (2018-11-30,10.578241) (2018-12-01,11.319724) (2018-12-02,11.510588) (2018-12-03,11.022251) (2018-12-04,12.433626) (2018-12-05,13.959665) (2018-12-06,13.831324) (2018-12-07,15.152889) (2018-12-08,15.777747) (2018-12-09,15.088765) (2018-12-10,15.055476) (2018-12-11,15.497707) (2018-12-12,15.193829) (2018-12-13,16.120575) (2018-12-14,15.886542) (2018-12-15,15.289532) (2018-12-16,15.392657) (2018-12-17,15.520461) (2018-12-18,14.892073) (2018-12-19,13.373076) (2018-12-20,13.997039) (2018-12-21,12.805286) (2018-12-22,12.139818) (2018-12-23,14.311756) (2018-12-24,14.475309) (2018-12-25,14.107572) (2018-12-26,15.499329) (2018-12-27,15.999205) (2018-12-28,15.185724) (2018-12-29,14.959347) (2018-12-30,14.773703) (2018-12-31,16.632891) (2019-01-01,16.519166) (2019-01-02,17.231827) (2019-01-03,16.884858) (2019-01-04,16.932248) (2019-01-05,17.901600) (2019-01-06,15.652048) (2019-01-07,15.670784) (2019-01-08,15.710572) (2019-01-09,13.865391) (2019-01-10,12.056321) (2019-01-11,13.304001) (2019-01-12,13.561907) (2019-01-13,13.450285) (2019-01-14,11.302471) (2019-01-15,10.748779) (2019-01-16,9.766720) (2019-01-17,9.879825) (2019-01-18,10.214761) (2019-01-19,9.452470) (2019-01-20,9.534697) (2019-01-21,8.776007) (2019-01-22,9.508016) (2019-01-23,9.852444) (2019-01-24,10.397387) (2019-01-25,9.433008) (2019-01-26,9.153405) (2019-01-27,9.390810) (2019-01-28,9.065756) (2019-01-29,9.893245) (2019-01-30,10.419210) (2019-01-31,9.532157) (2019-02-01,9.729604) (2019-02-02,9.488592) (2019-02-03,9.281914) (2019-02-04,10.416964) (2019-02-05,10.490543) (2019-02-06,10.859574) (2019-02-07,10.495381) (2019-02-08,11.691433) (2019-02-09,11.901544) (2019-02-10,12.139566) (2019-02-11,12.122265) (2019-02-12,11.771271) (2019-02-13,12.213738) (2019-02-14,12.683111) (2019-02-15,12.175374) (2019-02-16,13.370761) (2019-02-17,13.826453) (2019-02-18,13.200284) (2019-02-19,12.228933) (2019-02-20,12.755632) (2019-02-21,13.617303) (2019-02-22,12.657882) (2019-02-23,12.289125) (2019-02-24,12.086072) (2019-02-25,13.410105) (2019-02-26,13.148416) (2019-02-27,12.895196) (2019-02-28,14.044651) (2019-03-01,14.371094) (2019-03-02,13.922486) (2019-03-03,13.546127) (2019-03-04,13.496545) (2019-03-05,13.885498) (2019-03-06,12.986416) (2019-03-07,12.651657) (2019-03-08,12.084657) (2019-03-09,13.411439) (2019-03-10,13.585703) (2019-03-11,12.617835) (2019-03-12,12.837511) (2019-03-13,13.483608) (2019-03-14,12.203816) (2019-03-15,11.542770) (2019-03-16,11.398019) (2019-03-17,11.576045) (2019-03-18,10.841790) (2019-03-19,9.559980) (2019-03-20,8.992458) (2019-03-21,7.948110) (2019-03-22,7.845625) (2019-03-23,5.907500) }; +\addplot+ coordinates {(2017-07-01,238.260609) (2017-07-02,241.797661) (2017-07-03,255.413134) (2017-07-04,325.917800) (2017-07-05,351.763319) (2017-07-06,403.460201) (2017-07-07,608.321912) (2017-07-08,671.671375) (2017-07-09,748.388132) (2017-07-10,752.297536) (2017-07-11,840.251675) (2017-07-12,862.571545) (2017-07-13,915.066526) (2017-07-14,987.461576) (2017-07-15,905.495385) (2017-07-16,928.392565) (2017-07-17,957.354508) (2017-07-18,1387.206088) (2017-07-19,1399.921453) (2017-07-20,1356.755706) (2017-07-21,1161.435242) (2017-07-22,1106.201004) (2017-07-23,1031.968439) (2017-07-24,1226.621015) (2017-07-25,1134.105482) (2017-07-26,1099.409564) (2017-07-27,1046.972563) (2017-07-28,917.982124) (2017-07-29,954.685817) (2017-07-30,957.253363) (2017-07-31,973.910405) (2017-08-01,577.475144) (2017-08-02,582.398752) (2017-08-03,619.432612) (2017-08-04,630.536845) (2017-08-05,691.134206) (2017-08-06,1020.532536) (2017-08-07,950.503654) (2017-08-08,1060.902821) (2017-08-09,1657.077354) (2017-08-10,2212.580973) (2017-08-11,3029.927352) (2017-08-12,3348.347877) (2017-08-13,3420.922672) (2017-08-14,3448.663080) (2017-08-15,3548.414701) (2017-08-16,3518.438475) (2017-08-17,3525.063497) (2017-08-18,3637.156927) (2017-08-19,3749.396906) (2017-08-20,3437.739719) (2017-08-21,3352.039973) (2017-08-22,3499.641962) (2017-08-23,2892.292320) (2017-08-24,2333.611687) (2017-08-25,1493.583439) (2017-08-26,1130.794231) (2017-08-27,1029.217658) (2017-08-28,942.242793) (2017-08-29,738.570186) (2017-08-30,725.061921) (2017-08-31,672.871903) (2017-09-01,643.132489) (2017-09-02,764.206290) (2017-09-03,948.239895) (2017-09-04,948.811157) (2017-09-05,746.738207) (2017-09-06,887.586364) (2017-09-07,958.341111) (2017-09-08,1010.038199) (2017-09-09,1073.023376) (2017-09-10,1078.817453) (2017-09-11,1078.817453) (2017-09-12,1090.948765) (2017-09-13,1096.068835) (2017-09-14,1158.977092) (2017-09-15,1079.764112) (2017-09-16,800.627377) (2017-09-17,653.216115) (2017-09-18,634.615650) (2017-09-19,591.318713) (2017-09-20,489.691121) (2017-09-21,434.120971) (2017-09-22,403.900821) (2017-09-23,344.755442) (2017-09-24,409.625406) (2017-09-25,415.810254) (2017-09-26,418.946341) (2017-09-27,421.467817) (2017-09-28,739.449817) (2017-09-29,809.883854) (2017-09-30,811.274545) (2017-10-01,758.327421) (2017-10-02,726.086178) (2017-10-03,708.029907) (2017-10-04,660.673932) (2017-10-05,646.357925) (2017-10-06,622.816042) (2017-10-07,630.407655) (2017-10-08,559.743614) (2017-10-09,559.886397) (2017-10-10,545.073255) (2017-10-11,537.761355) (2017-10-12,159.699319) (2017-10-13,68.860934) (2017-10-14,45.940354) (2017-10-15,39.855176) (2017-10-16,38.155085) (2017-10-17,32.172707) (2017-10-18,29.119107) (2017-10-19,28.693954) (2017-10-20,29.761613) (2017-10-21,23.961788) (2017-10-22,26.063456) (2017-10-23,20.064010) (2017-10-24,20.122190) (2017-10-25,19.959159) (2017-10-26,17.130937) (2017-10-27,18.414736) (2017-10-28,17.314866) (2017-10-29,16.951909) (2017-10-30,16.562276) (2017-10-31,16.540701) (2017-11-01,16.466567) (2017-11-02,16.488091) (2017-11-03,15.347829) (2017-11-04,9.752227) (2017-11-05,7.650558) (2017-11-06,7.322373) (2017-11-07,6.913911) (2017-11-08,6.747296) (2017-11-09,7.877019) (2017-11-10,4.620264) (2017-11-11,4.360392) (2017-11-12,4.280603) (2017-11-13,4.250638) (2017-11-14,4.279049) (2017-11-15,4.205739) (2017-11-16,3.796882) (2017-11-17,3.401281) (2017-11-18,3.365297) (2017-11-19,3.365297) (2017-11-20,3.553016) (2017-11-21,3.610448) (2017-11-22,3.610448) (2017-11-23,2.805250) (2017-11-24,1.396039) (2017-11-25,1.396039) (2017-11-26,1.307201) (2017-11-27,1.264441) (2017-11-28,1.053464) (2017-11-29,0.896863) (2017-11-30,0.840760) (2017-12-01,0.673651) (2017-12-02,0.673651) (2017-12-03,0.673651) (2017-12-04,0.485932) (2017-12-05,0.324525) (2017-12-06,0.324525) (2017-12-07,1.586173) (2017-12-08,1.586173) (2017-12-09,1.586173) (2017-12-10,1.586173) (2017-12-11,1.586173) (2017-12-12,1.586173) (2017-12-13,1.586173) (2017-12-14,1.586173) (2017-12-15,1.586173) (2017-12-16,1.586173) (2017-12-17,1.586173) (2017-12-18,1.586173) (2017-12-19,1.586173) (2017-12-20,1.586173) (2017-12-21,0.000000) (2017-12-22,0.000000) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,10.356011) (2018-01-03,17.729059) (2018-01-04,37.390557) (2018-01-05,37.390557) (2018-01-06,37.390557) (2018-01-07,37.390557) (2018-01-08,37.390557) (2018-01-09,37.390557) (2018-01-10,37.390557) (2018-01-11,37.390557) (2018-01-12,37.390557) (2018-01-13,37.390557) (2018-01-14,37.390557) (2018-01-15,37.390557) (2018-01-16,27.034545) (2018-01-17,19.661498) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,1.549200) (2018-01-23,7.091716) (2018-01-24,18.182871) (2018-01-25,26.999329) (2018-01-26,31.647616) (2018-01-27,45.544010) (2018-01-28,50.198003) (2018-01-29,93.581006) (2018-01-30,98.568663) (2018-01-31,104.120437) (2018-02-01,106.260713) (2018-02-02,108.762759) (2018-02-03,109.762753) (2018-02-04,109.762753) (2018-02-05,108.213554) (2018-02-06,102.671037) (2018-02-07,91.579882) (2018-02-08,82.763425) (2018-02-09,78.115138) (2018-02-10,64.218743) (2018-02-11,59.564750) (2018-02-12,16.181747) (2018-02-13,11.194090) (2018-02-14,5.642316) (2018-02-15,3.502040) (2018-02-16,0.999994) (2018-02-17,0.000000) (2018-02-18,1.358691) (2018-02-19,2.273801) (2018-02-20,4.496660) (2018-02-21,10.322631) (2018-02-22,15.842348) (2018-02-23,18.627825) (2018-02-24,24.466823) (2018-02-25,24.563888) (2018-02-26,24.896044) (2018-02-27,25.659352) (2018-02-28,27.583978) (2018-03-01,32.089333) (2018-03-02,35.207843) (2018-03-03,36.462562) (2018-03-04,36.349399) (2018-03-05,35.921535) (2018-03-06,37.185183) (2018-03-07,35.165363) (2018-03-08,31.398890) (2018-03-09,31.023394) (2018-03-10,25.723112) (2018-03-11,26.140265) (2018-03-12,26.882870) (2018-03-13,28.493368) (2018-03-14,27.454331) (2018-03-15,23.397506) (2018-03-16,20.943435) (2018-03-17,19.688715) (2018-03-18,18.443188) (2018-03-19,18.195735) (2018-03-20,14.936758) (2018-03-21,12.239099) (2018-03-22,11.119365) (2018-03-23,8.849734) (2018-03-24,8.311019) (2018-03-25,7.875950) (2018-03-26,6.801189) (2018-03-27,4.427383) (2018-03-28,3.541794) (2018-03-29,3.093264) (2018-03-30,2.463519) (2018-03-31,2.463519) (2018-04-01,2.463519) (2018-04-02,2.223725) (2018-04-03,1.996195) (2018-04-04,0.887705) (2018-04-05,0.254194) (2018-04-06,0.113844) (2018-04-07,0.113844) (2018-04-08,0.034694) (2018-04-09,0.034694) (2018-04-10,0.034694) (2018-04-11,0.034694) (2018-04-12,0.034694) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,0.000000) (2017-09-26,0.000000) (2017-09-27,0.000000) (2017-09-28,18.497768) (2017-09-29,64.925618) (2017-09-30,154.043203) (2017-10-01,177.450456) (2017-10-02,181.103005) (2017-10-03,196.170259) (2017-10-04,254.014156) (2017-10-05,255.254733) (2017-10-06,359.478870) (2017-10-07,371.598778) (2017-10-08,375.554822) (2017-10-09,393.824589) (2017-10-10,395.416339) (2017-10-11,396.126750) (2017-10-12,377.978743) (2017-10-13,331.550893) (2017-10-14,251.595192) (2017-10-15,229.107533) (2017-10-16,228.274858) (2017-10-17,214.375545) (2017-10-18,157.725214) (2017-10-19,842.097599) (2017-10-20,740.375864) (2017-10-21,767.121217) (2017-10-22,777.659066) (2017-10-23,765.680861) (2017-10-24,816.117650) (2017-10-25,849.129502) (2017-10-26,868.734331) (2017-10-27,951.874873) (2017-10-28,993.190064) (2017-10-29,1086.060407) (2017-10-30,1109.370232) (2017-10-31,1379.449852) (2017-11-01,1462.647750) (2017-11-02,957.603624) (2017-11-03,1151.213217) (2017-11-04,1665.935855) (2017-11-05,1713.069980) (2017-11-06,2199.695463) (2017-11-07,2282.324287) (2017-11-08,2356.229311) (2017-11-09,2409.712065) (2017-11-10,2414.431700) (2017-11-11,2442.948407) (2017-11-12,2389.754816) (2017-11-13,2506.026749) (2017-11-14,2428.559911) (2017-11-15,2411.609232) (2017-11-16,2284.381727) (2017-11-17,2302.362598) (2017-11-18,1884.326812) (2017-11-19,2160.685922) (2017-11-20,2395.036189) (2017-11-21,2844.470557) (2017-11-22,3085.657905) (2017-11-23,3369.443410) (2017-11-24,3711.343238) (2017-11-25,3693.980102) (2017-11-26,3653.383755) (2017-11-27,3510.982124) (2017-11-28,3317.201400) (2017-11-29,3289.134027) (2017-11-30,3263.234975) (2017-12-01,3063.528004) (2017-12-02,3220.347884) (2017-12-03,3135.938604) (2017-12-04,2594.302881) (2017-12-05,2129.667618) (2017-12-06,1780.852983) (2017-12-07,1423.630134) (2017-12-08,993.870128) (2017-12-09,932.239483) (2017-12-10,932.239483) (2017-12-11,932.239483) (2017-12-12,932.239483) (2017-12-13,892.866073) (2017-12-14,865.423793) (2017-12-15,851.037898) (2017-12-16,558.665904) (2017-12-17,305.088057) (2017-12-18,119.456468) (2017-12-19,0.000000) (2017-12-20,0.000000) (2017-12-21,0.000000) (2017-12-22,0.000000) (2017-12-23,0.000000) (2017-12-24,0.000000) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,0.000000) (2018-01-30,0.000000) (2018-01-31,0.000000) (2018-02-01,0.000000) (2018-02-02,0.000000) (2018-02-03,0.000000) (2018-02-04,0.000000) (2018-02-05,0.000000) (2018-02-06,0.000000) (2018-02-07,0.000000) (2018-02-08,0.000000) (2018-02-09,0.000000) (2018-02-10,0.000000) (2018-02-11,0.000000) (2018-02-12,0.000000) (2018-02-13,0.000000) (2018-02-14,0.000000) (2018-02-15,0.000000) (2018-02-16,0.000000) (2018-02-17,0.000000) (2018-02-18,0.000000) (2018-02-19,0.000000) (2018-02-20,0.000000) (2018-02-21,0.000000) (2018-02-22,0.000000) (2018-02-23,0.000000) (2018-02-24,0.000000) (2018-02-25,0.000000) (2018-02-26,0.000000) (2018-02-27,0.000000) (2018-02-28,0.000000) (2018-03-01,0.000000) (2018-03-02,0.000000) (2018-03-03,0.000000) (2018-03-04,0.000000) (2018-03-05,0.000000) (2018-03-06,0.000000) (2018-03-07,0.000000) (2018-03-08,0.000000) (2018-03-09,0.000000) (2018-03-10,0.000000) (2018-03-11,0.000000) (2018-03-12,0.000000) (2018-03-13,0.000000) (2018-03-14,0.000000) (2018-03-15,0.000000) (2018-03-16,0.000000) (2018-03-17,0.000000) (2018-03-18,0.000000) (2018-03-19,0.000000) (2018-03-20,0.000000) (2018-03-21,0.000000) (2018-03-22,0.000000) (2018-03-23,0.000000) (2018-03-24,0.000000) (2018-03-25,0.000000) (2018-03-26,0.000000) (2018-03-27,0.000000) (2018-03-28,0.000000) (2018-03-29,0.000000) (2018-03-30,0.000000) (2018-03-31,0.000000) (2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; +\addplot+ coordinates {(2017-07-01,0.000000) (2017-07-02,0.000000) (2017-07-03,0.000000) (2017-07-04,0.000000) (2017-07-05,0.000000) (2017-07-06,0.000000) (2017-07-07,0.000000) (2017-07-08,0.000000) (2017-07-09,0.000000) (2017-07-10,0.000000) (2017-07-11,0.000000) (2017-07-12,0.000000) (2017-07-13,0.000000) (2017-07-14,0.000000) (2017-07-15,0.000000) (2017-07-16,0.000000) (2017-07-17,0.000000) (2017-07-18,0.000000) (2017-07-19,0.000000) (2017-07-20,0.000000) (2017-07-21,0.000000) (2017-07-22,0.000000) (2017-07-23,0.000000) (2017-07-24,0.000000) (2017-07-25,0.000000) (2017-07-26,0.000000) (2017-07-27,0.000000) (2017-07-28,0.000000) (2017-07-29,0.000000) (2017-07-30,0.000000) (2017-07-31,0.000000) (2017-08-01,0.000000) (2017-08-02,0.000000) (2017-08-03,0.000000) (2017-08-04,0.000000) (2017-08-05,0.000000) (2017-08-06,0.000000) (2017-08-07,0.000000) (2017-08-08,0.000000) (2017-08-09,0.000000) (2017-08-10,0.000000) (2017-08-11,0.000000) (2017-08-12,0.000000) (2017-08-13,0.000000) (2017-08-14,0.000000) (2017-08-15,0.000000) (2017-08-16,0.000000) (2017-08-17,0.000000) (2017-08-18,0.000000) (2017-08-19,0.000000) (2017-08-20,0.000000) (2017-08-21,0.000000) (2017-08-22,0.000000) (2017-08-23,0.000000) (2017-08-24,0.000000) (2017-08-25,0.000000) (2017-08-26,0.000000) (2017-08-27,0.000000) (2017-08-28,0.000000) (2017-08-29,0.000000) (2017-08-30,0.000000) (2017-08-31,0.000000) (2017-09-01,0.000000) (2017-09-02,0.000000) (2017-09-03,0.000000) (2017-09-04,0.000000) (2017-09-05,0.000000) (2017-09-06,0.000000) (2017-09-07,0.000000) (2017-09-08,0.000000) (2017-09-09,0.000000) (2017-09-10,0.000000) (2017-09-11,0.000000) (2017-09-12,0.000000) (2017-09-13,0.000000) (2017-09-14,0.000000) (2017-09-15,0.000000) (2017-09-16,0.000000) (2017-09-17,0.000000) (2017-09-18,0.000000) (2017-09-19,0.000000) (2017-09-20,0.000000) (2017-09-21,0.000000) (2017-09-22,0.000000) (2017-09-23,0.000000) (2017-09-24,0.000000) (2017-09-25,3.188806) (2017-09-26,154.616982) (2017-09-27,200.245782) (2017-09-28,240.618143) (2017-09-29,256.653077) (2017-09-30,262.696576) (2017-10-01,274.021769) (2017-10-02,334.157746) (2017-10-03,379.375168) (2017-10-04,384.192664) (2017-10-05,398.421598) (2017-10-06,404.932964) (2017-10-07,406.399267) (2017-10-08,428.608279) (2017-10-09,462.493932) (2017-10-10,324.995201) (2017-10-11,354.628487) (2017-10-12,447.816153) (2017-10-13,444.175177) (2017-10-14,484.195379) (2017-10-15,487.825332) (2017-10-16,756.980535) (2017-10-17,1397.724850) (2017-10-18,1554.310258) (2017-10-19,1966.359345) (2017-10-20,2205.105969) (2017-10-21,2445.303492) (2017-10-22,2862.606256) (2017-10-23,3178.059771) (2017-10-24,3434.716991) (2017-10-25,3438.691965) (2017-10-26,3477.316856) (2017-10-27,3578.194377) (2017-10-28,3613.036563) (2017-10-29,3625.267451) (2017-10-30,3321.000491) (2017-10-31,2666.913709) (2017-11-01,2526.236074) (2017-11-02,2758.544456) (2017-11-03,2526.713369) (2017-11-04,2312.836629) (2017-11-05,1892.476469) (2017-11-06,1655.470716) (2017-11-07,1455.941248) (2017-11-08,1406.429875) (2017-11-09,1266.687147) (2017-11-10,1262.311212) (2017-11-11,1275.954729) (2017-11-12,1354.851053) (2017-11-13,1390.311083) (2017-11-14,1399.050484) (2017-11-15,1438.605995) (2017-11-16,815.666628) (2017-11-17,860.580902) (2017-11-18,851.582332) (2017-11-19,945.849443) (2017-11-20,1029.889982) (2017-11-21,1023.746751) (2017-11-22,1024.520789) (2017-11-23,1030.705312) (2017-11-24,978.487424) (2017-11-25,977.099028) (2017-11-26,937.731953) (2017-11-27,938.956872) (2017-11-28,982.919539) (2017-11-29,1057.544166) (2017-11-30,1179.779961) (2017-12-01,1219.559732) (2017-12-02,1245.714842) (2017-12-03,1141.743365) (2017-12-04,969.642027) (2017-12-05,964.854664) (2017-12-06,951.232357) (2017-12-07,987.190126) (2017-12-08,958.607157) (2017-12-09,879.005953) (2017-12-10,871.687600) (2017-12-11,863.979643) (2017-12-12,779.402620) (2017-12-13,644.497213) (2017-12-14,486.614381) (2017-12-15,388.493434) (2017-12-16,343.549808) (2017-12-17,334.102559) (2017-12-18,306.641135) (2017-12-19,246.514532) (2017-12-20,229.637115) (2017-12-21,155.052634) (2017-12-22,126.957945) (2017-12-23,113.398142) (2017-12-24,54.001213) (2017-12-25,0.000000) (2017-12-26,0.000000) (2017-12-27,0.000000) (2017-12-28,0.000000) (2017-12-29,0.000000) (2017-12-30,0.000000) (2017-12-31,0.000000) (2018-01-01,0.000000) (2018-01-02,0.000000) (2018-01-03,0.000000) (2018-01-04,0.000000) (2018-01-05,0.000000) (2018-01-06,0.000000) (2018-01-07,0.000000) (2018-01-08,0.000000) (2018-01-09,0.000000) (2018-01-10,0.000000) (2018-01-11,0.000000) (2018-01-12,0.000000) (2018-01-13,0.000000) (2018-01-14,0.000000) (2018-01-15,0.000000) (2018-01-16,0.000000) (2018-01-17,0.000000) (2018-01-18,0.000000) (2018-01-19,0.000000) (2018-01-20,0.000000) (2018-01-21,0.000000) (2018-01-22,0.000000) (2018-01-23,0.000000) (2018-01-24,0.000000) (2018-01-25,0.000000) (2018-01-26,0.000000) (2018-01-27,0.000000) (2018-01-28,0.000000) (2018-01-29,0.000000) (2018-01-30,0.000000) (2018-01-31,0.000000) (2018-02-01,0.000000) (2018-02-02,0.000000) (2018-02-03,0.000000) (2018-02-04,0.000000) (2018-02-05,0.000000) (2018-02-06,0.000000) (2018-02-07,0.000000) (2018-02-08,0.000000) (2018-02-09,0.000000) (2018-02-10,0.000000) (2018-02-11,0.000000) (2018-02-12,0.000000) (2018-02-13,0.000000) (2018-02-14,0.000000) (2018-02-15,0.000000) (2018-02-16,0.000000) (2018-02-17,0.000000) (2018-02-18,0.000000) (2018-02-19,0.000000) (2018-02-20,0.000000) (2018-02-21,0.000000) (2018-02-22,0.000000) (2018-02-23,0.000000) (2018-02-24,0.000000) (2018-02-25,0.000000) (2018-02-26,0.000000) (2018-02-27,0.000000) (2018-02-28,0.000000) (2018-03-01,0.000000) (2018-03-02,0.000000) (2018-03-03,0.000000) (2018-03-04,0.000000) (2018-03-05,0.000000) (2018-03-06,0.000000) (2018-03-07,0.000000) (2018-03-08,0.000000) (2018-03-09,0.000000) (2018-03-10,0.000000) (2018-03-11,0.000000) (2018-03-12,0.000000) (2018-03-13,0.000000) (2018-03-14,0.000000) (2018-03-15,0.000000) (2018-03-16,0.000000) (2018-03-17,0.000000) (2018-03-18,0.000000) (2018-03-19,0.000000) (2018-03-20,0.000000) (2018-03-21,0.000000) (2018-03-22,0.000000) (2018-03-23,0.000000) (2018-03-24,0.000000) (2018-03-25,0.000000) (2018-03-26,0.000000) (2018-03-27,0.000000) (2018-03-28,0.000000) (2018-03-29,0.000000) (2018-03-30,0.000000) (2018-03-31,0.000000) (2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.000000) (2019-01-07,0.000000) (2019-01-08,0.000000) (2019-01-09,0.000000) (2019-01-10,0.000000) (2019-01-11,0.000000) (2019-01-12,0.000000) (2019-01-13,0.000000) (2019-01-14,0.000000) (2019-01-15,0.000000) (2019-01-16,0.000000) (2019-01-17,0.000000) (2019-01-18,0.000000) (2019-01-19,0.000000) (2019-01-20,0.000000) (2019-01-21,0.000000) (2019-01-22,0.000000) (2019-01-23,0.000000) (2019-01-24,0.000000) (2019-01-25,0.000000) (2019-01-26,0.000000) (2019-01-27,0.000000) (2019-01-28,0.000000) (2019-01-29,0.000000) (2019-01-30,0.000000) (2019-01-31,0.000000) (2019-02-01,0.000000) (2019-02-02,0.000000) (2019-02-03,0.000000) (2019-02-04,0.000000) (2019-02-05,0.000000) (2019-02-06,0.000000) (2019-02-07,0.000000) (2019-02-08,0.000000) (2019-02-09,0.000000) (2019-02-10,0.000000) (2019-02-11,0.000000) (2019-02-12,0.000000) (2019-02-13,0.000000) (2019-02-14,0.000000) (2019-02-15,0.000000) (2019-02-16,0.000000) (2019-02-17,0.000000) (2019-02-18,0.000000) (2019-02-19,0.000000) (2019-02-20,0.000000) (2019-02-21,0.000000) (2019-02-22,0.000000) (2019-02-23,0.000000) (2019-02-24,0.000000) (2019-02-25,0.000000) (2019-02-26,0.000000) (2019-02-27,0.000000) (2019-02-28,0.000000) (2019-03-01,0.000000) (2019-03-02,0.000000) (2019-03-03,0.000000) (2019-03-04,0.000000) (2019-03-05,0.000000) (2019-03-06,0.000000) (2019-03-07,0.000000) (2019-03-08,0.000000) (2019-03-09,0.000000) (2019-03-10,0.000000) (2019-03-11,0.000000) (2019-03-12,0.000000) (2019-03-13,0.000000) (2019-03-14,0.000000) (2019-03-15,0.000000) (2019-03-16,0.000000) (2019-03-17,0.000000) (2019-03-18,0.000000) (2019-03-19,0.000000) (2019-03-20,0.000000) (2019-03-21,0.000000) (2019-03-22,0.000000) (2019-03-23,0.000000) }; + + +\end{axis} +\end{tikzpicture} diff --git a/reports/pure_revenue_eth.tex b/reports/pure_revenue_eth.tex new file mode 100644 index 0000000..e40dc6c --- /dev/null +++ b/reports/pure_revenue_eth.tex @@ -0,0 +1,29 @@ + +\begin{tikzpicture} +\begin{axis}[clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year},ymode=log, xlabel={Date (MM-YY)}, ylabel={Daily Pure Revenue Captured (ETH)},title={Pure Revenue Market Size (ETH)}, + log basis y={10}, ymin=0, ymax=25138.071454212582, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, +scatter/use mapped color={ + draw=mapped color, + fill=mapped color!70, + }, colorbar, point meta= explicit, + colorbar style={ + title={\# Trades}, + ytick={0,200,400,...,800}, extra y ticks={1000}, extra y tick labels={1000+} + }, + point meta max=1000, +] +\addplot[scatter,opacity=0.5] coordinates { (2017-07-01,0.129630) [8.000000] (2017-07-02,0.488491) [18.000000] (2017-07-03,0.785066) [16.000000] (2017-07-04,1.738612) [14.000000] (2017-07-05,0.159892) [6.000000] (2017-07-06,4.268709) [14.000000] (2017-07-07,4.641526) [36.000000] (2017-07-08,0.201386) [6.000000] (2017-07-09,0.756956) [24.000000] (2017-07-10,4.061830) [30.000000] (2017-07-11,1.710653) [38.000000] (2017-07-12,3.671095) [40.000000] (2017-07-13,12.372477) [74.000000] (2017-07-14,4.232771) [88.000000] (2017-07-15,5.568382) [26.000000] (2017-07-16,1.115323) [42.000000] (2017-07-17,9.111687) [62.000000] (2017-07-18,4.117813) [80.000000] (2017-07-19,3.314022) [46.000000] (2017-07-20,10.520962) [40.000000] (2017-07-21,0.474696) [10.000000] (2017-07-22,1.698702) [48.000000] (2017-07-23,2.601623) [60.000000] (2017-07-24,30.955798) [150.000000] (2017-07-25,2.406081) [24.000000] (2017-07-26,0.576734) [16.000000] (2017-07-27,0.652043) [10.000000] (2017-07-28,0.556055) [16.000000] (2017-07-29,0.376568) [10.000000] (2017-07-30,14.096263) [36.000000] (2017-07-31,0.823512) [22.000000] (2017-08-01,1.550414) [20.000000] (2017-08-02,0.195931) [10.000000] (2017-08-03,1.613906) [20.000000] (2017-08-04,2.756920) [62.000000] (2017-08-05,1.821965) [36.000000] (2017-08-06,3.234079) [44.000000] (2017-08-07,5.569185) [68.000000] (2017-08-08,2.262292) [46.000000] (2017-08-09,2.143299) [46.000000] (2017-08-10,1.368296) [41.000000] (2017-08-11,3.438204) [46.000000] (2017-08-12,15.271527) [95.000000] (2017-08-13,6.230812) [58.000000] (2017-08-14,5.731469) [76.000000] (2017-08-15,28.989818) [207.000000] (2017-08-16,26.987540) [314.000000] (2017-08-17,39.003419) [246.000000] (2017-08-18,20.708121) [218.000000] (2017-08-19,20.253546) [106.000000] (2017-08-20,8.033367) [132.000000] (2017-08-21,15.041179) [194.000000] (2017-08-22,5.972034) [92.000000] (2017-08-23,11.812510) [114.000000] (2017-08-24,8.745185) [78.000000] (2017-08-25,10.226081) [132.000000] (2017-08-26,7.599258) [110.000000] (2017-08-27,14.985971) [188.000000] (2017-08-28,25.749760) [286.000000] (2017-08-29,24.486613) [244.000000] (2017-08-30,83.002012) [476.000000] (2017-08-31,8.679570) [231.000000] (2017-09-01,16.938459) [249.000000] (2017-09-02,15.067972) [268.000000] (2017-09-03,14.361723) [266.000000] (2017-09-04,17.291868) [372.000000] (2017-09-05,21.757694) [366.000000] (2017-09-06,35.047786) [629.000000] (2017-09-07,35.016455) [775.000000] (2017-09-08,36.745638) [476.000000] (2017-09-09,31.845034) [326.000000] (2017-09-10,41.089079) [383.000000] (2017-09-11,31.125822) [462.000000] (2017-09-12,35.500410) [401.000000] (2017-09-13,29.468338) [508.000000] (2017-09-14,10.585214) [240.000000] (2017-09-15,44.295775) [347.000000] (2017-09-16,7.271435) [267.000000] (2017-09-17,30.057611) [149.000000] (2017-09-18,23.031516) [320.000000] (2017-09-19,45.908062) [393.000000] (2017-09-20,50.432173) [590.000000] (2017-09-21,34.206910) [528.000000] (2017-09-22,14.470744) [330.000000] (2017-09-23,20.573992) [228.000000] (2017-09-24,54.485879) [674.000000] (2017-09-25,45.942162) [880.000000] (2017-09-26,29.808581) [832.000000] (2017-09-27,41.446442) [684.000000] (2017-09-28,41.548477) [842.000000] (2017-09-29,93.544151) [792.000000] (2017-09-30,30.799299) [724.000000] (2017-10-01,24.639546) [742.000000] (2017-10-02,30.491723) [704.000000] (2017-10-03,29.382051) [708.000000] (2017-10-04,47.065936) [690.000000] (2017-10-05,108.299093) [1248.000000] (2017-10-06,109.624198) [1794.000000] (2017-10-07,35.319625) [888.000000] (2017-10-08,27.706429) [470.000000] (2017-10-09,51.783318) [464.000000] (2017-10-10,43.528454) [590.000000] (2017-10-11,29.740634) [520.000000] (2017-10-12,97.751653) [442.000000] (2017-10-13,36.366091) [500.000000] (2017-10-14,31.355313) [350.000000] (2017-10-15,24.672893) [350.000000] (2017-10-16,17.324956) [330.000000] (2017-10-17,29.162655) [712.000000] (2017-10-18,28.433823) [592.000000] (2017-10-19,19.616193) [299.000000] (2017-10-20,31.597962) [540.000000] (2017-10-21,17.230211) [492.000000] (2017-10-22,24.568335) [652.000000] (2017-10-23,42.712969) [743.000000] (2017-10-24,26.309781) [1020.000000] (2017-10-25,116.571641) [2002.000000] (2017-10-26,44.930913) [1607.000000] (2017-10-27,53.226994) [1508.000000] (2017-10-28,44.374381) [1503.000000] (2017-10-29,33.768963) [1286.000000] (2017-10-30,41.866791) [1684.000000] (2017-10-31,44.279926) [1596.000000] (2017-11-01,61.645499) [1359.000000] (2017-11-02,39.397631) [1132.000000] (2017-11-03,24.586169) [1180.000000] (2017-11-04,15.752304) [700.000000] (2017-11-05,15.900080) [788.000000] (2017-11-06,43.632580) [698.000000] (2017-11-07,59.284705) [1145.000000] (2017-11-08,162.311922) [1379.000000] (2017-11-09,72.707078) [1086.000000] (2017-11-10,102.076891) [1015.000000] (2017-11-11,23.052430) [1034.000000] (2017-11-12,66.737441) [1151.000000] (2017-11-13,33.381905) [1349.000000] (2017-11-14,61.022460) [1311.000000] (2017-11-15,75.272347) [1703.000000] (2017-11-16,60.470976) [1834.000000] (2017-11-17,73.032938) [1510.000000] (2017-11-18,61.712000) [1294.000000] (2017-11-19,36.565230) [1270.000000] (2017-11-20,94.593263) [2110.000000] (2017-11-21,96.367416) [1828.000000] (2017-11-22,41.482814) [1740.000000] (2017-11-23,63.074497) [2028.000000] (2017-11-24,30.974413) [1501.000000] (2017-11-25,151.439574) [1473.000000] (2017-11-26,80.905536) [2359.000000] (2017-11-27,45.008432) [1284.000000] (2017-11-28,38.040625) [1178.000000] (2017-11-29,33.212659) [1477.000000] (2017-11-30,43.960856) [1327.000000] (2017-12-01,36.614086) [1531.000000] (2017-12-02,38.836877) [1023.000000] (2017-12-03,34.351105) [1052.000000] (2017-12-04,58.205278) [1023.000000] (2017-12-05,37.988063) [693.000000] (2017-12-06,73.579752) [746.000000] (2017-12-07,27.728886) [445.000000] (2017-12-08,70.734385) [789.000000] (2017-12-09,28.664369) [401.000000] (2017-12-10,65.092250) [406.000000] (2017-12-11,38.031887) [609.000000] (2017-12-12,109.308684) [871.000000] (2017-12-13,125.604130) [966.000000] (2017-12-14,50.489155) [736.000000] (2017-12-15,63.877168) [819.000000] (2017-12-16,98.225979) [1258.000000] (2017-12-17,116.056155) [1641.000000] (2017-12-18,66.666171) [1418.000000] (2017-12-19,95.330548) [1464.000000] (2017-12-20,42.024688) [592.000000] (2017-12-21,54.118528) [98.000000] (2017-12-22,18.771854) [320.000000] (2017-12-23,30.589556) [505.000000] (2017-12-24,25.254678) [466.000000] (2017-12-25,42.909800) [879.000000] (2017-12-26,21.796622) [778.000000] (2017-12-27,24.243800) [1013.000000] (2017-12-28,34.991113) [916.000000] (2017-12-29,89.673758) [1030.000000] (2017-12-30,49.412677) [742.000000] (2017-12-31,56.305048) [927.000000] (2018-01-01,42.051562) [811.000000] (2018-01-02,60.701649) [991.000000] (2018-01-03,74.157622) [706.000000] (2018-01-04,62.801517) [711.000000] (2018-01-05,95.674201) [975.000000] (2018-01-06,126.347218) [1302.000000] (2018-01-07,130.518727) [1169.000000] (2018-01-08,99.425566) [979.000000] (2018-01-09,68.575294) [826.000000] (2018-01-10,48.470139) [605.000000] (2018-01-11,53.209042) [817.000000] (2018-01-12,49.708864) [861.000000] (2018-01-13,37.898615) [802.000000] (2018-01-14,35.859104) [818.000000] (2018-01-15,49.828160) [856.000000] (2018-01-16,18.847081) [580.000000] (2018-01-17,28.121600) [505.000000] (2018-01-18,81.049408) [664.000000] (2018-01-19,71.736255) [978.000000] (2018-01-20,39.049304) [729.000000] (2018-01-21,18.933270) [881.000000] (2018-01-22,21.126778) [814.000000] (2018-01-23,62.268424) [719.000000] (2018-01-24,47.398881) [1070.000000] (2018-01-25,35.741138) [1228.000000] (2018-01-26,32.329596) [971.000000] (2018-01-27,20.890273) [618.000000] (2018-01-28,26.513547) [951.000000] (2018-01-29,26.223990) [737.000000] (2018-01-30,21.944833) [846.000000] (2018-01-31,27.731582) [737.000000] (2018-02-01,45.847002) [742.000000] (2018-02-02,23.947319) [804.000000] (2018-02-03,30.928002) [657.000000] (2018-02-04,28.773020) [721.000000] (2018-02-05,14.285502) [685.000000] (2018-02-06,49.643323) [808.000000] (2018-02-07,30.932177) [646.000000] (2018-02-08,46.432443) [745.000000] (2018-02-09,18.329673) [774.000000] (2018-02-10,17.735823) [758.000000] (2018-02-11,14.885311) [795.000000] (2018-02-12,58.661432) [589.000000] (2018-02-13,5.871711) [481.000000] (2018-02-14,21.375534) [527.000000] (2018-02-15,9.086444) [430.000000] (2018-02-16,8.284185) [508.000000] (2018-02-17,12.008217) [520.000000] (2018-02-18,10.584179) [525.000000] (2018-02-19,20.089991) [526.000000] (2018-02-20,9.765061) [405.000000] (2018-02-21,13.261684) [340.000000] (2018-02-22,7.702407) [274.000000] (2018-02-23,7.427150) [306.000000] (2018-02-24,9.732946) [338.000000] (2018-02-25,4.827105) [266.000000] (2018-02-26,7.194241) [420.000000] (2018-02-27,6.916003) [403.000000] (2018-02-28,7.168601) [452.000000] (2018-03-01,16.391209) [484.000000] (2018-03-02,21.587877) [508.000000] (2018-03-03,32.966601) [348.000000] (2018-03-04,30.593770) [350.000000] (2018-03-05,6.183861) [282.000000] (2018-03-06,10.041406) [424.000000] (2018-03-07,12.058332) [520.000000] (2018-03-08,8.564167) [634.000000] (2018-03-09,13.274246) [600.000000] (2018-03-10,8.124881) [376.000000] (2018-03-11,2.529939) [198.000000] (2018-03-12,9.217459) [370.000000] (2018-03-13,8.644739) [544.000000] (2018-03-14,9.722875) [442.000000] (2018-03-15,5.534548) [468.000000] (2018-03-16,11.455677) [320.000000] (2018-03-17,3.797169) [332.000000] (2018-03-18,18.467994) [442.000000] (2018-03-19,7.853087) [496.000000] (2018-03-20,5.861708) [382.000000] (2018-03-21,7.506286) [388.000000] (2018-03-22,3.103324) [222.000000] (2018-03-23,40.447190) [374.000000] (2018-03-24,3.340764) [244.000000] (2018-03-25,2.744156) [310.000000] (2018-03-26,6.190311) [397.000000] (2018-03-27,5.922695) [480.000000] (2018-03-28,10.540024) [490.000000] (2018-03-29,3.548974) [362.000000] (2018-03-30,5.114734) [460.000000] (2018-03-31,2.202241) [308.000000] (2018-04-01,2.829286) [280.000000] (2018-04-02,44.929244) [340.000000] (2018-04-03,7.502608) [407.000000] (2018-04-04,3.000411) [328.000000] (2018-04-05,6.209218) [356.000000] (2018-04-06,28.481149) [360.000000] (2018-04-07,2.839715) [346.000000] (2018-04-08,3.025777) [308.000000] (2018-04-09,22.196790) [400.000000] (2018-04-10,7.991735) [428.000000] (2018-04-11,12.343904) [402.000000] (2018-04-12,4.096969) [545.000000] (2018-04-13,6.800819) [469.000000] (2018-04-14,7.288285) [488.000000] (2018-04-15,3.155883) [434.000000] (2018-04-16,5.390925) [538.000000] (2018-04-17,16.553961) [592.000000] (2018-04-18,81.194282) [832.000000] (2018-04-19,30.266109) [584.000000] (2018-04-20,9.074698) [706.000000] (2018-04-21,8.513086) [650.000000] (2018-04-22,6.301306) [436.000000] (2018-04-23,10.932226) [598.000000] (2018-04-24,11.903839) [742.000000] (2018-04-25,11.291813) [712.000000] (2018-04-26,29.573262) [616.000000] (2018-04-27,16.135171) [470.000000] (2018-04-28,7.588707) [420.000000] (2018-04-29,11.923451) [488.000000] (2018-04-30,18.196997) [522.000000] (2018-05-01,15.303933) [424.000000] (2018-05-02,7.595106) [384.000000] (2018-05-03,12.829804) [490.000000] (2018-05-04,6.453068) [410.000000] (2018-05-05,8.806927) [470.000000] (2018-05-06,12.746247) [396.000000] (2018-05-07,12.514995) [576.000000] (2018-05-08,10.169439) [732.000000] (2018-05-09,17.210368) [652.000000] (2018-05-10,30.745465) [348.000000] (2018-05-11,11.818248) [396.000000] (2018-05-12,11.543908) [274.000000] (2018-05-13,2.661970) [208.000000] (2018-05-14,4.892438) [296.000000] (2018-05-15,10.104805) [238.000000] (2018-05-16,14.794440) [302.000000] (2018-05-17,10.060382) [262.000000] (2018-05-18,16.211923) [332.000000] (2018-05-19,5.798553) [186.000000] (2018-05-20,2.487192) [152.000000] (2018-05-21,4.168724) [296.000000] (2018-05-22,4.663732) [162.000000] (2018-05-23,3.709839) [214.000000] (2018-05-24,2.669044) [122.000000] (2018-05-25,5.090728) [138.000000] (2018-05-26,2.307369) [180.000000] (2018-05-27,2.261433) [134.000000] (2018-05-28,3.641409) [140.000000] (2018-05-29,5.286692) [188.000000] (2018-05-30,3.554245) [234.000000] (2018-05-31,3.713012) [144.000000] (2018-06-01,8.044157) [128.000000] (2018-06-02,18.036370) [224.000000] (2018-06-03,1.908861) [188.000000] (2018-06-04,5.308018) [166.000000] (2018-06-05,4.144025) [202.000000] (2018-06-06,12.345195) [190.000000] (2018-06-07,8.939486) [186.000000] (2018-06-08,2.519606) [144.000000] (2018-06-09,7.868280) [156.000000] (2018-06-10,3.904789) [220.000000] (2018-06-11,4.069689) [318.000000] (2018-06-12,19.910681) [232.000000] (2018-06-13,7.632582) [310.000000] (2018-06-14,13.206754) [184.000000] (2018-06-15,1.329831) [142.000000] (2018-06-16,3.257773) [150.000000] (2018-06-17,9.060470) [200.000000] (2018-06-18,3.106600) [204.000000] (2018-06-19,2.733890) [206.000000] (2018-06-20,4.757996) [451.000000] (2018-06-21,9.514811) [262.000000] (2018-06-22,9.788890) [310.000000] (2018-06-23,3.239328) [252.000000] (2018-06-24,9.796478) [502.000000] (2018-06-25,9.367413) [251.000000] (2018-06-26,4.920938) [297.000000] (2018-06-27,8.436487) [305.000000] (2018-06-28,9.652361) [333.000000] (2018-06-29,3.373053) [249.000000] (2018-06-30,3.695723) [326.000000] (2018-07-01,1.347800) [126.000000] (2018-07-02,5.365746) [103.000000] (2018-07-03,4.181956) [97.000000] (2018-07-04,2.514115) [64.000000] (2018-07-05,2.595971) [91.000000] (2018-07-06,3.965735) [95.000000] (2018-07-07,2.051337) [56.000000] (2018-07-08,1.716429) [103.000000] (2018-07-09,2.892167) [155.000000] (2018-07-10,3.922377) [134.000000] (2018-07-11,1.592856) [132.000000] (2018-07-12,3.905239) [185.000000] (2018-07-13,13.257988) [200.000000] (2018-07-14,6.858213) [150.000000] (2018-07-15,3.526592) [189.000000] (2018-07-16,8.144052) [316.000000] (2018-07-17,4.788078) [393.000000] (2018-07-18,6.409890) [380.000000] (2018-07-19,4.608909) [327.000000] (2018-07-20,9.218931) [486.000000] (2018-07-21,5.268844) [307.000000] (2018-07-22,8.475390) [245.000000] (2018-07-23,35.345966) [838.000000] (2018-07-24,14.566197) [559.000000] (2018-07-25,10.837648) [373.000000] (2018-07-26,4.167283) [306.000000] (2018-07-27,1.287293) [211.000000] (2018-07-28,1.526699) [211.000000] (2018-07-29,7.357787) [383.000000] (2018-07-30,5.601092) [364.000000] (2018-07-31,4.473106) [394.000000] (2018-08-01,13.104594) [358.000000] (2018-08-02,7.686865) [421.000000] (2018-08-03,8.957422) [451.000000] (2018-08-04,44.803258) [315.000000] (2018-08-05,5.538555) [359.000000] (2018-08-06,2.774124) [265.000000] (2018-08-07,14.322782) [245.000000] (2018-08-08,47.575666) [280.000000] (2018-08-09,3.711592) [123.000000] (2018-08-10,15.684576) [474.000000] (2018-08-11,266.414710) [454.000000] (2018-08-12,22.932431) [158.000000] (2018-08-13,6.448984) [347.000000] (2018-08-14,11.015706) [461.000000] (2018-08-15,10.233836) [252.000000] (2018-08-16,7.540776) [314.000000] (2018-08-17,30.720354) [293.000000] (2018-08-18,3.175532) [286.000000] (2018-08-19,4.565718) [258.000000] (2018-08-20,7.381995) [343.000000] (2018-08-21,7.372068) [356.000000] (2018-08-22,4.188322) [326.000000] (2018-08-23,3.296939) [273.000000] (2018-08-24,4.287313) [240.000000] (2018-08-25,2.315370) [219.000000] (2018-08-26,5.645700) [243.000000] (2018-08-27,50.835975) [337.000000] (2018-08-28,2.676012) [173.000000] (2018-08-29,6.973591) [426.000000] (2018-08-30,2.655778) [236.000000] (2018-08-31,7.936722) [200.000000] (2018-09-01,5.625738) [109.000000] (2018-09-02,3.834025) [143.000000] (2018-09-03,21.823787) [194.000000] (2018-09-04,13.650255) [195.000000] (2018-09-05,7.405125) [353.000000] (2018-09-06,5.410117) [313.000000] (2018-09-07,7.507722) [286.000000] (2018-09-08,7.398721) [324.000000] (2018-09-09,13.074906) [279.000000] (2018-09-10,3.533552) [174.000000] (2018-09-11,32.907160) [291.000000] (2018-09-12,18.017151) [332.000000] (2018-09-13,16.858700) [429.000000] (2018-09-14,12.051964) [340.000000] (2018-09-15,44.747025) [269.000000] (2018-09-16,5.231036) [147.000000] (2018-09-17,50.357682) [475.000000] (2018-09-18,6.017285) [268.000000] (2018-09-19,2.111069) [115.000000] (2018-09-20,10.478441) [340.000000] (2018-09-21,3.150607) [242.000000] (2018-09-22,4.020600) [179.000000] (2018-09-23,3.323841) [156.000000] (2018-09-24,2.176714) [143.000000] (2018-09-25,9.940207) [292.000000] (2018-09-26,2.187753) [101.000000] (2018-09-27,6.734732) [148.000000] (2018-09-28,2.823683) [176.000000] (2018-09-29,1.703336) [153.000000] (2018-09-30,2.792754) [119.000000] (2018-10-01,2.627390) [146.000000] (2018-10-02,8.002871) [156.000000] (2018-10-03,3.782326) [200.000000] (2018-10-04,2.878090) [146.000000] (2018-10-05,25.814220) [531.000000] (2018-10-06,4.022886) [230.000000] (2018-10-07,4.301182) [276.000000] (2018-10-08,2.149601) [166.000000] (2018-10-09,3.685503) [231.000000] (2018-10-10,10.409255) [1114.000000] (2018-10-11,8.328186) [309.000000] (2018-10-12,3.153456) [356.000000] (2018-10-13,8.647665) [400.000000] (2018-10-14,2.282532) [350.000000] (2018-10-15,10.645084) [354.000000] (2018-10-16,12.260506) [413.000000] (2018-10-17,9.330191) [601.000000] (2018-10-18,4.919258) [388.000000] (2018-10-19,9.281967) [745.000000] (2018-10-20,10.702089) [616.000000] (2018-10-21,4.623557) [364.000000] (2018-10-22,4.997367) [256.000000] (2018-10-23,8.167816) [218.000000] (2018-10-24,2.555757) [186.000000] (2018-10-25,3.962216) [222.000000] (2018-10-26,3.819285) [223.000000] (2018-10-27,4.921141) [170.000000] (2018-10-28,6.101993) [215.000000] (2018-10-29,4.845905) [261.000000] (2018-10-30,6.170908) [250.000000] (2018-10-31,4.343279) [228.000000] (2018-11-01,4.972511) [233.000000] (2018-11-02,3.596060) [132.000000] (2018-11-03,4.891180) [213.000000] (2018-11-04,7.473757) [215.000000] (2018-11-05,2.842297) [270.000000] (2018-11-06,8.766247) [176.000000] (2018-11-07,3.511819) [249.000000] (2018-11-08,5.573034) [257.000000] (2018-11-09,3.178577) [183.000000] (2018-11-10,7.987957) [176.000000] (2018-11-11,3.013509) [141.000000] (2018-11-12,9.983351) [205.000000] (2018-11-13,4.385342) [158.000000] (2018-11-14,8.525633) [410.000000] (2018-11-15,13.519591) [273.000000] (2018-11-16,9.262990) [307.000000] (2018-11-17,6.059064) [219.000000] (2018-11-18,1.878458) [143.000000] (2018-11-19,13.177056) [373.000000] (2018-11-20,6.846845) [364.000000] (2018-11-21,10.949360) [214.000000] (2018-11-22,6.975170) [206.000000] (2018-11-23,9.835478) [188.000000] (2018-11-24,2.549332) [145.000000] (2018-11-25,11.723577) [302.000000] (2018-11-26,6.285689) [309.000000] (2018-11-27,8.251648) [277.000000] (2018-11-28,4.375696) [156.000000] (2018-11-29,17.317885) [252.000000] (2018-11-30,3.461207) [213.000000] (2018-12-01,4.135357) [168.000000] (2018-12-02,14.945349) [196.000000] (2018-12-03,5.491997) [206.000000] (2018-12-04,12.644682) [220.000000] (2018-12-05,5.717755) [204.000000] (2018-12-06,11.149608) [354.000000] (2018-12-07,10.698761) [511.000000] (2018-12-08,4.312036) [259.000000] (2018-12-09,3.334324) [213.000000] (2018-12-10,9.346231) [279.000000] (2018-12-11,4.757517) [283.000000] (2018-12-12,6.504685) [187.000000] (2018-12-13,4.125382) [260.000000] (2018-12-14,6.028950) [260.000000] (2018-12-15,37.093506) [215.000000] (2018-12-16,24.195868) [177.000000] (2018-12-17,5.270186) [220.000000] (2018-12-18,6.794607) [218.000000] (2018-12-19,7.108275) [252.000000] (2018-12-20,4.252637) [279.000000] (2018-12-21,3.213083) [179.000000] (2018-12-22,7.711555) [241.000000] (2018-12-23,6.427232) [279.000000] (2018-12-24,5.979905) [277.000000] (2018-12-25,3.651439) [161.000000] (2018-12-26,2.858107) [122.000000] (2018-12-27,3.838715) [140.000000] (2018-12-28,7.135216) [166.000000] (2018-12-29,5.464336) [210.000000] (2018-12-30,7.487109) [197.000000] (2018-12-31,9.840777) [297.000000] (2019-01-01,6.113301) [180.000000] (2019-01-02,2.178478) [214.000000] (2019-01-03,1.603950) [128.000000] (2019-01-04,5.698832) [164.000000] (2019-01-05,5.342695) [217.000000] (2019-01-06,1.696442) [453.000000] (2019-01-07,5.536140) [414.000000] (2019-01-08,105.974355) [324.000000] (2019-01-09,3.228126) [292.000000] (2019-01-10,10.633729) [663.000000] (2019-01-11,7.748534) [529.000000] (2019-01-12,4.963969) [478.000000] (2019-01-13,8.108635) [452.000000] (2019-01-14,5.575920) [317.000000] (2019-01-15,7.463470) [440.000000] (2019-01-16,6.126970) [809.000000] (2019-01-17,9.154200) [765.000000] (2019-01-18,4.965344) [410.000000] (2019-01-19,3.630583) [458.000000] (2019-01-20,3.221772) [646.000000] (2019-01-21,3.645883) [371.000000] (2019-01-22,9.432552) [425.000000] (2019-01-23,3.819706) [355.000000] (2019-01-24,9.928358) [434.000000] (2019-01-25,6.851060) [452.000000] (2019-01-26,28.375708) [988.000000] (2019-01-27,8.449874) [1025.000000] (2019-01-28,13.716124) [788.000000] (2019-01-29,7.488200) [587.000000] (2019-01-30,7.336672) [615.000000] (2019-01-31,8.700485) [592.000000] (2019-02-01,3.588508) [611.000000] (2019-02-02,4.302711) [485.000000] (2019-02-03,3.155878) [445.000000] (2019-02-04,2.525352) [378.000000] (2019-02-05,3.489493) [498.000000] (2019-02-06,6.355461) [1027.000000] (2019-02-07,5.502444) [1045.000000] (2019-02-08,9.407475) [1351.000000] (2019-02-09,4.330144) [552.000000] (2019-02-10,5.898961) [1066.000000] (2019-02-11,11.085812) [725.000000] (2019-02-12,5.456337) [644.000000] (2019-02-13,4.626799) [336.000000] (2019-02-14,7.244104) [517.000000] (2019-02-15,12.672606) [606.000000] (2019-02-16,2.146949) [579.000000] (2019-02-17,7.453608) [1107.000000] (2019-02-18,8.950657) [832.000000] (2019-02-19,4.518562) [577.000000] (2019-02-20,8.174838) [688.000000] (2019-02-21,5.772377) [437.000000] (2019-02-22,3.446121) [365.000000] (2019-02-23,4.155291) [510.000000] (2019-02-24,4.409823) [692.000000] (2019-02-25,8.928362) [930.000000] (2019-02-26,18.074401) [1249.000000] (2019-02-27,13.947427) [893.000000] (2019-02-28,17.572997) [591.000000] (2019-03-01,2.393522) [990.000000] (2019-03-02,9.107012) [1009.000000] (2019-03-03,4.088803) [957.000000] (2019-03-04,25.303948) [1248.000000] (2019-03-05,6.071118) [1252.000000] (2019-03-06,8.417918) [1135.000000] (2019-03-07,9.398036) [1074.000000] (2019-03-08,16.984413) [2827.000000] (2019-03-09,30.938177) [5095.000000] (2019-03-10,35.834123) [3196.000000] (2019-03-11,8.217759) [2479.000000] (2019-03-12,10.017836) [2107.000000] (2019-03-13,9.802639) [1547.000000] (2019-03-14,6.353063) [1316.000000] (2019-03-15,144.281360) [1013.000000] (2019-03-16,7.814041) [1121.000000] (2019-03-17,15.385691) [1925.000000] (2019-03-18,15.367393) [1384.000000] (2019-03-19,15.309332) [1211.000000] (2019-03-20,3.645640) [929.000000] (2019-03-21,6.008594) [1090.000000] (2019-03-22,38.905740) [953.000000] (2019-03-23,3.949292) [560.000000] }; +\addplot[mark=none, black, line width=2pt] coordinates { (2017-07-01,0.872280)(2017-07-02,0.886665)(2017-07-03,0.940733)(2017-07-04,1.230864)(2017-07-05,1.353054)(2017-07-06,1.615275)(2017-07-07,2.499023)(2017-07-08,2.801364)(2017-07-09,3.189846)(2017-07-10,3.234620)(2017-07-11,3.829378)(2017-07-12,3.999321)(2017-07-13,4.224616)(2017-07-14,4.671206)(2017-07-15,4.373575)(2017-07-16,4.480526)(2017-07-17,4.612288)(2017-07-18,6.533286)(2017-07-19,6.582959)(2017-07-20,6.361934)(2017-07-21,5.524760)(2017-07-22,5.262137)(2017-07-23,4.891293)(2017-07-24,5.818503)(2017-07-25,5.226491)(2017-07-26,5.043105)(2017-07-27,4.820384)(2017-07-28,4.184166)(2017-07-29,4.347182)(2017-07-30,4.355986)(2017-07-31,4.401162)(2017-08-01,2.587832)(2017-08-02,2.577562)(2017-08-03,2.689459)(2017-08-04,2.740620)(2017-08-05,2.946488)(2017-08-06,4.010414)(2017-08-07,3.448596)(2017-08-08,3.799164)(2017-08-09,5.759122)(2017-08-10,7.672808)(2017-08-11,10.343487)(2017-08-12,11.625716)(2017-08-13,12.942258)(2017-08-14,13.285064)(2017-08-15,13.961635)(2017-08-16,14.226616)(2017-08-17,14.917274)(2017-08-18,15.444195)(2017-08-19,15.929043)(2017-08-20,15.381024)(2017-08-21,16.006393)(2017-08-22,17.436271)(2017-08-23,17.114613)(2017-08-24,21.115647)(2017-08-25,18.949658)(2017-08-26,18.680396)(2017-08-27,18.309998)(2017-08-28,18.762023)(2017-08-29,18.922787)(2017-08-30,20.050334)(2017-08-31,21.709997)(2017-09-01,23.586516)(2017-09-02,25.480770)(2017-09-03,27.212611)(2017-09-04,29.077119)(2017-09-05,29.461123)(2017-09-06,30.247823)(2017-09-07,26.423989)(2017-09-08,26.560107)(2017-09-09,28.514201)(2017-09-10,27.957305)(2017-09-11,29.078440)(2017-09-12,29.488415)(2017-09-13,31.213441)(2017-09-14,32.312326)(2017-09-15,32.254501)(2017-09-16,30.663437)(2017-09-17,29.858363)(2017-09-18,30.815277)(2017-09-19,31.873587)(2017-09-20,31.467028)(2017-09-21,32.322607)(2017-09-22,34.534268)(2017-09-23,38.052010)(2017-09-24,39.732571)(2017-09-25,39.345567)(2017-09-26,39.878439)(2017-09-27,38.698009)(2017-09-28,38.457564)(2017-09-29,43.749863)(2017-09-30,50.546538)(2017-10-01,51.599797)(2017-10-02,49.686980)(2017-10-03,50.104205)(2017-10-04,51.084196)(2017-10-05,50.248067)(2017-10-06,54.262579)(2017-10-07,50.178432)(2017-10-08,50.218148)(2017-10-09,50.220529)(2017-10-10,49.280046)(2017-10-11,49.264375)(2017-10-12,47.933510)(2017-10-13,41.599017)(2017-10-14,36.025714)(2017-10-15,34.733613)(2017-10-16,34.509464)(2017-10-17,33.861582)(2017-10-18,32.631676)(2017-10-19,38.833891)(2017-10-20,35.060981)(2017-10-21,36.265332)(2017-10-22,37.195265)(2017-10-23,37.844984)(2017-10-24,39.597972)(2017-10-25,40.677777)(2017-10-26,43.050040)(2017-10-27,44.463000)(2017-10-28,43.962157)(2017-10-29,43.856593)(2017-10-30,43.237432)(2017-10-31,43.303118)(2017-11-01,45.658470)(2017-11-02,48.925633)(2017-11-03,50.909645)(2017-11-04,54.398923)(2017-11-05,52.875926)(2017-11-06,55.230818)(2017-11-07,54.624754)(2017-11-08,55.820650)(2017-11-09,56.793996)(2017-11-10,58.299235)(2017-11-11,61.759718)(2017-11-12,65.042554)(2017-11-13,66.518636)(2017-11-14,70.158685)(2017-11-15,72.807450)(2017-11-16,64.176799)(2017-11-17,63.488758)(2017-11-18,58.410009)(2017-11-19,67.580520)(2017-11-20,68.592526)(2017-11-21,69.422993)(2017-11-22,67.781433)(2017-11-23,64.777170)(2017-11-24,63.597875)(2017-11-25,60.996529)(2017-11-26,59.362591)(2017-11-27,59.204439)(2017-11-28,56.605298)(2017-11-29,52.435344)(2017-11-30,54.727982)(2017-12-01,52.203296)(2017-12-02,55.043294)(2017-12-03,46.273636)(2017-12-04,45.144116)(2017-12-05,44.645791)(2017-12-06,49.736367)(2017-12-07,56.335758)(2017-12-08,56.802065)(2017-12-09,58.749428)(2017-12-10,62.991507)(2017-12-11,68.827582)(2017-12-12,69.431931)(2017-12-13,73.527823)(2017-12-14,71.273890)(2017-12-15,73.158864)(2017-12-16,69.447255)(2017-12-17,69.584768)(2017-12-18,66.739227)(2017-12-19,67.087650)(2017-12-20,60.836788)(2017-12-21,53.596765)(2017-12-22,52.489762)(2017-12-23,54.332375)(2017-12-24,50.845711)(2017-12-25,46.577774)(2017-12-26,44.819588)(2017-12-27,42.346095)(2017-12-28,44.641305)(2017-12-29,45.261518)(2017-12-30,50.754543)(2017-12-31,57.594376)(2018-01-01,65.113237)(2018-01-02,69.150077)(2018-01-03,72.491411)(2018-01-04,74.221864)(2018-01-05,75.523144)(2018-01-06,72.668509)(2018-01-07,71.846076)(2018-01-08,70.385652)(2018-01-09,70.941123)(2018-01-10,67.951511)(2018-01-11,64.663223)(2018-01-12,65.966644)(2018-01-13,64.256791)(2018-01-14,58.021226)(2018-01-15,50.050836)(2018-01-16,44.458065)(2018-01-17,44.007574)(2018-01-18,43.931056)(2018-01-19,42.683349)(2018-01-20,41.441972)(2018-01-21,40.227091)(2018-01-22,39.559551)(2018-01-23,37.873539)(2018-01-24,38.094807)(2018-01-25,38.066948)(2018-01-26,35.552491)(2018-01-27,32.138995)(2018-01-28,31.558902)(2018-01-29,32.261742)(2018-01-30,31.773079)(2018-01-31,30.871286)(2018-02-01,29.695093)(2018-02-02,30.458758)(2018-02-03,29.458763)(2018-02-04,29.233445)(2018-02-05,28.402857)(2018-02-06,30.719817)(2018-02-07,29.571737)(2018-02-08,29.117734)(2018-02-09,26.491980)(2018-02-10,25.373184)(2018-02-11,24.021771)(2018-02-12,22.722568)(2018-02-13,23.137175)(2018-02-14,20.288727)(2018-02-15,19.026549)(2018-02-16,16.260118)(2018-02-17,15.481366)(2018-02-18,14.909732)(2018-02-19,14.191289)(2018-02-20,10.515061)(2018-02-21,10.589653)(2018-02-22,9.574873)(2018-02-23,10.096641)(2018-02-24,11.046905)(2018-02-25,12.543933)(2018-02-26,13.973189)(2018-02-27,12.979894)(2018-02-28,12.999633)(2018-03-01,12.913679)(2018-03-02,12.975234)(2018-03-03,13.392883)(2018-03-04,13.278022)(2018-03-05,13.113938)(2018-03-06,13.258454)(2018-03-07,13.381935)(2018-03-08,13.564383)(2018-03-09,12.788907)(2018-03-10,12.065179)(2018-03-11,9.981648)(2018-03-12,9.115521)(2018-03-13,9.234751)(2018-03-14,8.936201)(2018-03-15,8.611055)(2018-03-16,8.220995)(2018-03-17,10.161920)(2018-03-18,9.820197)(2018-03-19,9.835498)(2018-03-20,9.619273)(2018-03-21,9.424842)(2018-03-22,9.483209)(2018-03-23,9.341383)(2018-03-24,8.888458)(2018-03-25,8.774535)(2018-03-26,7.657484)(2018-03-27,10.305781)(2018-03-28,10.422988)(2018-03-29,10.101140)(2018-03-30,10.322990)(2018-03-31,9.468273)(2018-04-01,9.432483)(2018-04-02,9.452599)(2018-04-03,10.595919)(2018-04-04,10.743708)(2018-04-05,10.872556)(2018-04-06,10.911699)(2018-04-07,11.032133)(2018-04-08,11.395422)(2018-04-09,11.418751)(2018-04-10,8.594585)(2018-04-11,9.241110)(2018-04-12,14.826387)(2018-04-13,16.544736)(2018-04-14,15.158561)(2018-04-15,15.563802)(2018-04-16,15.797768)(2018-04-17,14.993156)(2018-04-18,15.272592)(2018-04-19,15.197443)(2018-04-20,17.017178)(2018-04-21,17.683918)(2018-04-22,17.705376)(2018-04-23,18.331631)(2018-04-24,19.246351)(2018-04-25,19.157063)(2018-04-26,13.899979)(2018-04-27,12.654528)(2018-04-28,12.467269)(2018-04-29,12.488258)(2018-04-30,12.948611)(2018-05-01,13.061666)(2018-05-02,12.937780)(2018-05-03,13.360534)(2018-05-04,13.444263)(2018-05-05,13.135911)(2018-05-06,13.418425)(2018-05-07,12.756891)(2018-05-08,11.806566)(2018-05-09,11.435199)(2018-05-10,11.949437)(2018-05-11,11.751622)(2018-05-12,12.448683)(2018-05-13,12.233799)(2018-05-14,11.501009)(2018-05-15,10.904847)(2018-05-16,10.511582)(2018-05-17,9.547259)(2018-05-18,7.541800)(2018-05-19,7.061263)(2018-05-20,6.401510)(2018-05-21,6.372900)(2018-05-22,6.283541)(2018-05-23,5.939390)(2018-05-24,5.136519)(2018-05-25,4.683135)(2018-05-26,4.099723)(2018-05-27,4.973853)(2018-05-28,4.932544)(2018-05-29,5.013922)(2018-05-30,4.976800)(2018-05-31,5.593611)(2018-06-01,6.041500)(2018-06-02,5.857848)(2018-06-03,6.255056)(2018-06-04,6.372439)(2018-06-05,6.403030)(2018-06-06,7.447601)(2018-06-07,7.738911)(2018-06-08,8.417035)(2018-06-09,7.937441)(2018-06-10,6.881827)(2018-06-11,7.392656)(2018-06-12,7.235412)(2018-06-13,7.134688)(2018-06-14,6.592745)(2018-06-15,6.633839)(2018-06-16,7.153074)(2018-06-17,6.822435)(2018-06-18,7.243270)(2018-06-19,7.621678)(2018-06-20,6.550982)(2018-06-21,6.608404)(2018-06-22,6.354519)(2018-06-23,6.500463)(2018-06-24,6.531745)(2018-06-25,5.980840)(2018-06-26,6.142208)(2018-06-27,6.245641)(2018-06-28,6.085364)(2018-06-29,5.591161)(2018-06-30,5.175222)(2018-07-01,5.090365)(2018-07-02,4.513219)(2018-07-03,4.050701)(2018-07-04,3.979375)(2018-07-05,3.490545)(2018-07-06,3.080036)(2018-07-07,3.786103)(2018-07-08,4.011995)(2018-07-09,4.167623)(2018-07-10,4.366073)(2018-07-11,4.409368)(2018-07-12,4.687637)(2018-07-13,4.831419)(2018-07-14,5.206647)(2018-07-15,5.436469)(2018-07-16,5.919252)(2018-07-17,8.237380)(2018-07-18,8.997653)(2018-07-19,9.657995)(2018-07-20,9.676713)(2018-07-21,8.821663)(2018-07-22,8.440841)(2018-07-23,8.714498)(2018-07-24,8.532858)(2018-07-25,8.510360)(2018-07-26,8.988553)(2018-07-27,9.208407)(2018-07-28,9.189728)(2018-07-29,12.013614)(2018-07-30,11.803840)(2018-07-31,9.477280)(2018-08-01,9.459893)(2018-08-02,12.084038)(2018-08-03,12.051488)(2018-08-04,13.079866)(2018-08-05,32.000438)(2018-08-06,33.112912)(2018-08-07,33.173476)(2018-08-08,33.640805)(2018-08-09,33.435750)(2018-08-10,33.425316)(2018-08-11,34.979811)(2018-08-12,32.006402)(2018-08-13,31.936913)(2018-08-14,32.266047)(2018-08-15,31.769567)(2018-08-16,28.670471)(2018-08-17,28.640853)(2018-08-18,27.826763)(2018-08-19,8.962525)(2018-08-20,7.727758)(2018-08-21,10.898257)(2018-08-22,10.302565)(2018-08-23,10.069690)(2018-08-24,9.720762)(2018-08-25,8.093360)(2018-08-26,8.268374)(2018-08-27,8.216111)(2018-08-28,9.247667)(2018-08-29,9.696109)(2018-08-30,9.925881)(2018-08-31,10.076822)(2018-09-01,10.306851)(2018-09-02,10.669948)(2018-09-03,11.200605)(2018-09-04,7.821861)(2018-09-05,9.981229)(2018-09-06,10.770054)(2018-09-07,11.784549)(2018-09-08,12.078494)(2018-09-09,14.872872)(2018-09-10,14.972659)(2018-09-11,17.010794)(2018-09-12,16.465582)(2018-09-13,16.087435)(2018-09-14,16.449458)(2018-09-15,16.138236)(2018-09-16,15.896941)(2018-09-17,15.200437)(2018-09-18,15.103520)(2018-09-19,13.463023)(2018-09-20,12.332352)(2018-09-21,11.609211)(2018-09-22,10.950048)(2018-09-23,7.875499)(2018-09-24,7.701336)(2018-09-25,4.292029)(2018-09-26,4.433857)(2018-09-27,4.553232)(2018-09-28,4.010350)(2018-09-29,5.629180)(2018-09-30,5.629343)(2018-10-01,5.699153)(2018-10-02,5.697217)(2018-10-03,5.250452)(2018-10-04,5.837702)(2018-10-05,5.951520)(2018-10-06,5.975075)(2018-10-07,6.471099)(2018-10-08,6.434654)(2018-10-09,7.007347)(2018-10-10,7.311464)(2018-10-11,7.707740)(2018-10-12,7.853537)(2018-10-13,6.672662)(2018-10-14,7.149748)(2018-10-15,7.172775)(2018-10-16,7.376187)(2018-10-17,7.696352)(2018-10-18,7.135388)(2018-10-19,6.823533)(2018-10-20,6.871092)(2018-10-21,6.604912)(2018-10-22,6.877731)(2018-10-23,6.463503)(2018-10-24,6.028532)(2018-10-25,5.672324)(2018-10-26,5.676128)(2018-10-27,5.269992)(2018-10-28,4.854927)(2018-10-29,5.058513)(2018-10-30,4.904579)(2018-10-31,4.947324)(2018-11-01,5.015614)(2018-11-02,5.130673)(2018-11-03,5.084908)(2018-11-04,5.303966)(2018-11-05,5.083360)(2018-11-06,5.450320)(2018-11-07,5.322780)(2018-11-08,5.621520)(2018-11-09,6.232025)(2018-11-10,6.636806)(2018-11-11,6.720226)(2018-11-12,6.320562)(2018-11-13,7.058759)(2018-11-14,6.921659)(2018-11-15,7.452912)(2018-11-16,7.553065)(2018-11-17,8.028557)(2018-11-18,7.640084)(2018-11-19,8.262232)(2018-11-20,7.998113)(2018-11-21,8.274278)(2018-11-22,7.977854)(2018-11-23,8.249161)(2018-11-24,7.834748)(2018-11-25,7.697340)(2018-11-26,8.630689)(2018-11-27,8.081756)(2018-11-28,8.495888)(2018-11-29,8.122202)(2018-11-30,8.420376)(2018-12-01,8.482039)(2018-12-02,8.607946)(2018-12-03,8.008714)(2018-12-04,8.227324)(2018-12-05,7.977743)(2018-12-06,8.129814)(2018-12-07,7.187492)(2018-12-08,7.370902)(2018-12-09,9.725056)(2018-12-10,10.385807)(2018-12-11,10.369964)(2018-12-12,9.952101)(2018-12-13,10.051424)(2018-12-14,9.558783)(2018-12-15,9.024092)(2018-12-16,9.266915)(2018-12-17,9.487837)(2018-12-18,9.247385)(2018-12-19,9.168379)(2018-12-20,8.907909)(2018-12-21,8.887433)(2018-12-22,8.966452)(2018-12-23,6.707226)(2018-12-24,5.513743)(2018-12-25,5.840214)(2018-12-26,5.791549)(2018-12-27,5.439421)(2018-12-28,5.250229)(2018-12-29,5.427782)(2018-12-30,5.258578)(2018-12-31,4.920664)(2019-01-01,4.888967)(2019-01-02,12.197747)(2019-01-03,12.224177)(2019-01-04,12.709535)(2019-01-05,12.753343)(2019-01-06,12.717603)(2019-01-07,12.761997)(2019-01-08,12.457365)(2019-01-09,12.553805)(2019-01-10,12.835840)(2019-01-11,13.375144)(2019-01-12,13.322752)(2019-01-13,13.200458)(2019-01-14,13.309411)(2019-01-15,13.174392)(2019-01-16,6.278549)(2019-01-17,6.320805)(2019-01-18,6.270421)(2019-01-19,6.206316)(2019-01-20,7.878583)(2019-01-21,7.902957)(2019-01-22,8.484400)(2019-01-23,8.486167)(2019-01-24,8.572574)(2019-01-25,8.540166)(2019-01-26,8.441820)(2019-01-27,8.489829)(2019-01-28,8.485123)(2019-01-29,8.405085)(2019-01-30,7.980581)(2019-01-31,8.161706)(2019-02-01,7.845569)(2019-02-02,8.028170)(2019-02-03,6.310630)(2019-02-04,6.128422)(2019-02-05,5.940542)(2019-02-06,5.795409)(2019-02-07,5.601847)(2019-02-08,5.497820)(2019-02-09,6.146684)(2019-02-10,5.992701)(2019-02-11,6.299682)(2019-02-12,6.758632)(2019-02-13,6.832137)(2019-02-14,6.962093)(2019-02-15,6.981374)(2019-02-16,6.555563)(2019-02-17,6.543073)(2019-02-18,6.436706)(2019-02-19,6.282602)(2019-02-20,7.183893)(2019-02-21,7.849652)(2019-02-22,8.587430)(2019-02-23,7.853210)(2019-02-24,8.350357)(2019-02-25,8.110014)(2019-02-26,9.278106)(2019-02-27,9.389003)(2019-02-28,9.406366)(2019-03-01,9.665341)(2019-03-02,10.632362)(2019-03-03,12.545426)(2019-03-04,14.790018)(2019-03-05,14.739261)(2019-03-06,14.163792)(2019-03-07,13.867736)(2019-03-08,13.066312)(2019-03-09,23.201157)(2019-03-10,23.108802)(2019-03-11,23.915723)(2019-03-12,23.205969)(2019-03-13,23.865841)(2019-03-14,23.524964)(2019-03-15,23.282861)(2019-03-16,24.848671)(2019-03-17,22.920893)(2019-03-18,20.361313)(2019-03-19,19.774330)(2019-03-20,19.058770)(2019-03-21,18.358582)(2019-03-22,17.904792)(2019-03-23,7.598980) }; +\addplot[mark=none, orange, dashed, line width=3pt] coordinates { (2017-07-01,0.129630) (2017-07-02,0.618121) (2017-07-03,1.403186) (2017-07-04,3.141799) (2017-07-05,3.301690) (2017-07-06,7.570400) (2017-07-07,12.211926) (2017-07-08,12.413312) (2017-07-09,13.170267) (2017-07-10,17.232097) (2017-07-11,18.942750) (2017-07-12,22.613845) (2017-07-13,34.986322) (2017-07-14,39.219093) (2017-07-15,44.787475) (2017-07-16,45.902798) (2017-07-17,55.014484) (2017-07-18,59.132298) (2017-07-19,62.446319) (2017-07-20,72.967281) (2017-07-21,73.441977) (2017-07-22,75.140679) (2017-07-23,77.742302) (2017-07-24,108.698100) (2017-07-25,111.104181) (2017-07-26,111.680915) (2017-07-27,112.332957) (2017-07-28,112.889012) (2017-07-29,113.265580) (2017-07-30,127.361843) (2017-07-31,128.185355) (2017-08-01,129.735769) (2017-08-02,129.931700) (2017-08-03,131.545605) (2017-08-04,134.302525) (2017-08-05,136.124490) (2017-08-06,139.358569) (2017-08-07,144.927753) (2017-08-08,147.190046) (2017-08-09,149.333344) (2017-08-10,150.701640) (2017-08-11,154.139844) (2017-08-12,169.411372) (2017-08-13,175.642183) (2017-08-14,181.373652) (2017-08-15,210.363470) (2017-08-16,237.351010) (2017-08-17,276.354430) (2017-08-18,297.062550) (2017-08-19,317.316096) (2017-08-20,325.349463) (2017-08-21,340.390642) (2017-08-22,346.362676) (2017-08-23,358.175186) (2017-08-24,366.920371) (2017-08-25,377.146452) (2017-08-26,384.745710) (2017-08-27,399.731681) (2017-08-28,425.481441) (2017-08-29,449.968054) (2017-08-30,532.970066) (2017-08-31,541.649636) (2017-09-01,558.588095) (2017-09-02,573.656067) (2017-09-03,588.017791) (2017-09-04,605.309659) (2017-09-05,627.067353) (2017-09-06,662.115138) (2017-09-07,697.131593) (2017-09-08,733.877231) (2017-09-09,765.722266) (2017-09-10,806.811344) (2017-09-11,837.937166) (2017-09-12,873.437576) (2017-09-13,902.905914) (2017-09-14,913.491128) (2017-09-15,957.786903) (2017-09-16,965.058338) (2017-09-17,995.115949) (2017-09-18,1018.147465) (2017-09-19,1064.055526) (2017-09-20,1114.487699) (2017-09-21,1148.694609) (2017-09-22,1163.165353) (2017-09-23,1183.739345) (2017-09-24,1238.225224) (2017-09-25,1284.167386) (2017-09-26,1313.975967) (2017-09-27,1355.422409) (2017-09-28,1396.970887) (2017-09-29,1490.515038) (2017-09-30,1521.314337) (2017-10-01,1545.953884) (2017-10-02,1576.445607) (2017-10-03,1605.827658) (2017-10-04,1652.893594) (2017-10-05,1761.192687) (2017-10-06,1870.816885) (2017-10-07,1906.136510) (2017-10-08,1933.842939) (2017-10-09,1985.626257) (2017-10-10,2029.154711) (2017-10-11,2058.895345) (2017-10-12,2156.646998) (2017-10-13,2193.013090) (2017-10-14,2224.368403) (2017-10-15,2249.041296) (2017-10-16,2266.366252) (2017-10-17,2295.528908) (2017-10-18,2323.962731) (2017-10-19,2343.578924) (2017-10-20,2375.176886) (2017-10-21,2392.407097) (2017-10-22,2416.975432) (2017-10-23,2459.688401) (2017-10-24,2485.998182) (2017-10-25,2602.569823) (2017-10-26,2647.500736) (2017-10-27,2700.727731) (2017-10-28,2745.102112) (2017-10-29,2778.871075) (2017-10-30,2820.737866) (2017-10-31,2865.017792) (2017-11-01,2926.663291) (2017-11-02,2966.060922) (2017-11-03,2990.647090) (2017-11-04,3006.399394) (2017-11-05,3022.299475) (2017-11-06,3065.932055) (2017-11-07,3125.216760) (2017-11-08,3287.528682) (2017-11-09,3360.235760) (2017-11-10,3462.312651) (2017-11-11,3485.365081) (2017-11-12,3552.102522) (2017-11-13,3585.484427) (2017-11-14,3646.506886) (2017-11-15,3721.779234) (2017-11-16,3782.250210) (2017-11-17,3855.283148) (2017-11-18,3916.995148) (2017-11-19,3953.560378) (2017-11-20,4048.153641) (2017-11-21,4144.521056) (2017-11-22,4186.003870) (2017-11-23,4249.078367) (2017-11-24,4280.052780) (2017-11-25,4431.492355) (2017-11-26,4512.397890) (2017-11-27,4557.406322) (2017-11-28,4595.446947) (2017-11-29,4628.659607) (2017-11-30,4672.620463) (2017-12-01,4709.234548) (2017-12-02,4748.071425) (2017-12-03,4782.422531) (2017-12-04,4840.627809) (2017-12-05,4878.615872) (2017-12-06,4952.195624) (2017-12-07,4979.924509) (2017-12-08,5050.658895) (2017-12-09,5079.323263) (2017-12-10,5144.415514) (2017-12-11,5182.447401) (2017-12-12,5291.756084) (2017-12-13,5417.360215) (2017-12-14,5467.849370) (2017-12-15,5531.726538) (2017-12-16,5629.952517) (2017-12-17,5746.008673) (2017-12-18,5812.674844) (2017-12-19,5908.005392) (2017-12-20,5950.030080) (2017-12-21,6004.148608) (2017-12-22,6022.920462) (2017-12-23,6053.510018) (2017-12-24,6078.764696) (2017-12-25,6121.674496) (2017-12-26,6143.471119) (2017-12-27,6167.714918) (2017-12-28,6202.706031) (2017-12-29,6292.379789) (2017-12-30,6341.792466) (2017-12-31,6398.097514) (2018-01-01,6440.149077) (2018-01-02,6500.850725) (2018-01-03,6575.008348) (2018-01-04,6637.809865) (2018-01-05,6733.484066) (2018-01-06,6859.831285) (2018-01-07,6990.350012) (2018-01-08,7089.775578) (2018-01-09,7158.350872) (2018-01-10,7206.821011) (2018-01-11,7260.030053) (2018-01-12,7309.738916) (2018-01-13,7347.637532) (2018-01-14,7383.496636) (2018-01-15,7433.324796) (2018-01-16,7452.171877) (2018-01-17,7480.293476) (2018-01-18,7561.342884) (2018-01-19,7633.079139) (2018-01-20,7672.128443) (2018-01-21,7691.061713) (2018-01-22,7712.188491) (2018-01-23,7774.456914) (2018-01-24,7821.855795) (2018-01-25,7857.596933) (2018-01-26,7889.926530) (2018-01-27,7910.816803) (2018-01-28,7937.330350) (2018-01-29,7963.554340) (2018-01-30,7985.499173) (2018-01-31,8013.230754) (2018-02-01,8059.077756) (2018-02-02,8083.025075) (2018-02-03,8113.953077) (2018-02-04,8142.726097) (2018-02-05,8157.011599) (2018-02-06,8206.654922) (2018-02-07,8237.587099) (2018-02-08,8284.019542) (2018-02-09,8302.349215) (2018-02-10,8320.085038) (2018-02-11,8334.970349) (2018-02-12,8393.631781) (2018-02-13,8399.503492) (2018-02-14,8420.879026) (2018-02-15,8429.965470) (2018-02-16,8438.249655) (2018-02-17,8450.257873) (2018-02-18,8460.842052) (2018-02-19,8480.932043) (2018-02-20,8490.697103) (2018-02-21,8503.958788) (2018-02-22,8511.661195) (2018-02-23,8519.088345) (2018-02-24,8528.821291) (2018-02-25,8533.648395) (2018-02-26,8540.842637) (2018-02-27,8547.758640) (2018-02-28,8554.927241) (2018-03-01,8571.318450) (2018-03-02,8592.906328) (2018-03-03,8625.872929) (2018-03-04,8656.466699) (2018-03-05,8662.650560) (2018-03-06,8672.691966) (2018-03-07,8684.750298) (2018-03-08,8693.314465) (2018-03-09,8706.588712) (2018-03-10,8714.713593) (2018-03-11,8717.243532) (2018-03-12,8726.460991) (2018-03-13,8735.105730) (2018-03-14,8744.828605) (2018-03-15,8750.363153) (2018-03-16,8761.818829) (2018-03-17,8765.615998) (2018-03-18,8784.083991) (2018-03-19,8791.937078) (2018-03-20,8797.798786) (2018-03-21,8805.305072) (2018-03-22,8808.408396) (2018-03-23,8848.855586) (2018-03-24,8852.196350) (2018-03-25,8854.940506) (2018-03-26,8861.130817) (2018-03-27,8867.053512) (2018-03-28,8877.593536) (2018-03-29,8881.142510) (2018-03-30,8886.257244) (2018-03-31,8888.459485) (2018-04-01,8891.288771) (2018-04-02,8936.218015) (2018-04-03,8943.720623) (2018-04-04,8946.721034) (2018-04-05,8952.930252) (2018-04-06,8981.411401) (2018-04-07,8984.251116) (2018-04-08,8987.276893) (2018-04-09,9009.473683) (2018-04-10,9017.465418) (2018-04-11,9029.809322) (2018-04-12,9033.906292) (2018-04-13,9040.707111) (2018-04-14,9047.995396) (2018-04-15,9051.151279) (2018-04-16,9056.542204) (2018-04-17,9073.096166) (2018-04-18,9154.290448) (2018-04-19,9184.556557) (2018-04-20,9193.631255) (2018-04-21,9202.144341) (2018-04-22,9208.445647) (2018-04-23,9219.377873) (2018-04-24,9231.281712) (2018-04-25,9242.573525) (2018-04-26,9272.146786) (2018-04-27,9288.281958) (2018-04-28,9295.870664) (2018-04-29,9307.794115) (2018-04-30,9325.991112) (2018-05-01,9341.295045) (2018-05-02,9348.890151) (2018-05-03,9361.719955) (2018-05-04,9368.173023) (2018-05-05,9376.979950) (2018-05-06,9389.726197) (2018-05-07,9402.241192) (2018-05-08,9412.410631) (2018-05-09,9429.621000) (2018-05-10,9460.366465) (2018-05-11,9472.184713) (2018-05-12,9483.728621) (2018-05-13,9486.390591) (2018-05-14,9491.283029) (2018-05-15,9501.387835) (2018-05-16,9516.182274) (2018-05-17,9526.242656) (2018-05-18,9542.454579) (2018-05-19,9548.253132) (2018-05-20,9550.740324) (2018-05-21,9554.909048) (2018-05-22,9559.572780) (2018-05-23,9563.282619) (2018-05-24,9565.951663) (2018-05-25,9571.042391) (2018-05-26,9573.349759) (2018-05-27,9575.611193) (2018-05-28,9579.252601) (2018-05-29,9584.539293) (2018-05-30,9588.093538) (2018-05-31,9591.806550) (2018-06-01,9599.850707) (2018-06-02,9617.887077) (2018-06-03,9619.795938) (2018-06-04,9625.103957) (2018-06-05,9629.247981) (2018-06-06,9641.593176) (2018-06-07,9650.532662) (2018-06-08,9653.052268) (2018-06-09,9660.920548) (2018-06-10,9664.825337) (2018-06-11,9668.895026) (2018-06-12,9688.805707) (2018-06-13,9696.438290) (2018-06-14,9709.645044) (2018-06-15,9710.974875) (2018-06-16,9714.232649) (2018-06-17,9723.293119) (2018-06-18,9726.399718) (2018-06-19,9729.133608) (2018-06-20,9733.891604) (2018-06-21,9743.406415) (2018-06-22,9753.195305) (2018-06-23,9756.434632) (2018-06-24,9766.231111) (2018-06-25,9775.598524) (2018-06-26,9780.519462) (2018-06-27,9788.955948) (2018-06-28,9798.608309) (2018-06-29,9801.981362) (2018-06-30,9805.677085) (2018-07-01,9807.024885) (2018-07-02,9812.390631) (2018-07-03,9816.572587) (2018-07-04,9819.086702) (2018-07-05,9821.682673) (2018-07-06,9825.648408) (2018-07-07,9827.699745) (2018-07-08,9829.416174) (2018-07-09,9832.308341) (2018-07-10,9836.230718) (2018-07-11,9837.823574) (2018-07-12,9841.728813) (2018-07-13,9854.986800) (2018-07-14,9861.845013) (2018-07-15,9865.371605) (2018-07-16,9873.515657) (2018-07-17,9878.303735) (2018-07-18,9884.713625) (2018-07-19,9889.322534) (2018-07-20,9898.541465) (2018-07-21,9903.810309) (2018-07-22,9912.285699) (2018-07-23,9947.631665) (2018-07-24,9962.197862) (2018-07-25,9973.035510) (2018-07-26,9977.202792) (2018-07-27,9978.490085) (2018-07-28,9980.016784) (2018-07-29,9987.374571) (2018-07-30,9992.975663) (2018-07-31,9997.448770) (2018-08-01,10010.553363) (2018-08-02,10018.240228) (2018-08-03,10027.197651) (2018-08-04,10072.000909) (2018-08-05,10077.539464) (2018-08-06,10080.313588) (2018-08-07,10094.636370) (2018-08-08,10142.212036) (2018-08-09,10145.923628) (2018-08-10,10161.608203) (2018-08-11,10428.022913) (2018-08-12,10450.955344) (2018-08-13,10457.404328) (2018-08-14,10468.420034) (2018-08-15,10478.653870) (2018-08-16,10486.194646) (2018-08-17,10516.915000) (2018-08-18,10520.090532) (2018-08-19,10524.656250) (2018-08-20,10532.038245) (2018-08-21,10539.410313) (2018-08-22,10543.598635) (2018-08-23,10546.895574) (2018-08-24,10551.182887) (2018-08-25,10553.498257) (2018-08-26,10559.143957) (2018-08-27,10609.979932) (2018-08-28,10612.655944) (2018-08-29,10619.629535) (2018-08-30,10622.285313) (2018-08-31,10630.222035) (2018-09-01,10635.847773) (2018-09-02,10639.681798) (2018-09-03,10661.505585) (2018-09-04,10675.155840) (2018-09-05,10682.560965) (2018-09-06,10687.971083) (2018-09-07,10695.478805) (2018-09-08,10702.877526) (2018-09-09,10715.952431) (2018-09-10,10719.485984) (2018-09-11,10752.393143) (2018-09-12,10770.410294) (2018-09-13,10787.268994) (2018-09-14,10799.320958) (2018-09-15,10844.067983) (2018-09-16,10849.299020) (2018-09-17,10899.656702) (2018-09-18,10905.673986) (2018-09-19,10907.785056) (2018-09-20,10918.263496) (2018-09-21,10921.414103) (2018-09-22,10925.434703) (2018-09-23,10928.758544) (2018-09-24,10930.935258) (2018-09-25,10940.875465) (2018-09-26,10943.063219) (2018-09-27,10949.797951) (2018-09-28,10952.621634) (2018-09-29,10954.324970) (2018-09-30,10957.117724) (2018-10-01,10959.745114) (2018-10-02,10967.747985) (2018-10-03,10971.530311) (2018-10-04,10974.408401) (2018-10-05,11000.222621) (2018-10-06,11004.245507) (2018-10-07,11008.546689) (2018-10-08,11010.696290) (2018-10-09,11014.381793) (2018-10-10,11024.791048) (2018-10-11,11033.119234) (2018-10-12,11036.272690) (2018-10-13,11044.920354) (2018-10-14,11047.202886) (2018-10-15,11057.847971) (2018-10-16,11070.108477) (2018-10-17,11079.438668) (2018-10-18,11084.357926) (2018-10-19,11093.639893) (2018-10-20,11104.341982) (2018-10-21,11108.965538) (2018-10-22,11113.962906) (2018-10-23,11122.130722) (2018-10-24,11124.686479) (2018-10-25,11128.648695) (2018-10-26,11132.467980) (2018-10-27,11137.389121) (2018-10-28,11143.491114) (2018-10-29,11148.337019) (2018-10-30,11154.507927) (2018-10-31,11158.851206) (2018-11-01,11163.823717) (2018-11-02,11167.419777) (2018-11-03,11172.310957) (2018-11-04,11179.784714) (2018-11-05,11182.627010) (2018-11-06,11191.393258) (2018-11-07,11194.905077) (2018-11-08,11200.478111) (2018-11-09,11203.656688) (2018-11-10,11211.644645) (2018-11-11,11214.658155) (2018-11-12,11224.641505) (2018-11-13,11229.026847) (2018-11-14,11237.552480) (2018-11-15,11251.072071) (2018-11-16,11260.335061) (2018-11-17,11266.394125) (2018-11-18,11268.272583) (2018-11-19,11281.449640) (2018-11-20,11288.296485) (2018-11-21,11299.245845) (2018-11-22,11306.221015) (2018-11-23,11316.056493) (2018-11-24,11318.605825) (2018-11-25,11330.329402) (2018-11-26,11336.615091) (2018-11-27,11344.866739) (2018-11-28,11349.242435) (2018-11-29,11366.560320) (2018-11-30,11370.021526) (2018-12-01,11374.156884) (2018-12-02,11389.102232) (2018-12-03,11394.594229) (2018-12-04,11407.238912) (2018-12-05,11412.956666) (2018-12-06,11424.106275) (2018-12-07,11434.805036) (2018-12-08,11439.117072) (2018-12-09,11442.451396) (2018-12-10,11451.797628) (2018-12-11,11456.555145) (2018-12-12,11463.059829) (2018-12-13,11467.185211) (2018-12-14,11473.214161) (2018-12-15,11510.307667) (2018-12-16,11534.503535) (2018-12-17,11539.773721) (2018-12-18,11546.568328) (2018-12-19,11553.676603) (2018-12-20,11557.929240) (2018-12-21,11561.142323) (2018-12-22,11568.853878) (2018-12-23,11575.281110) (2018-12-24,11581.261016) (2018-12-25,11584.912455) (2018-12-26,11587.770561) (2018-12-27,11591.609276) (2018-12-28,11598.744493) (2018-12-29,11604.208829) (2018-12-30,11611.695938) (2018-12-31,11621.536715) (2019-01-01,11627.650016) (2019-01-02,11629.828494) (2019-01-03,11631.432444) (2019-01-04,11637.131276) (2019-01-05,11642.473970) (2019-01-06,11644.170412) (2019-01-07,11649.706552) (2019-01-08,11755.680907) (2019-01-09,11758.909033) (2019-01-10,11769.542762) (2019-01-11,11777.291296) (2019-01-12,11782.255265) (2019-01-13,11790.363900) (2019-01-14,11795.939820) (2019-01-15,11803.403290) (2019-01-16,11809.530260) (2019-01-17,11818.684460) (2019-01-18,11823.649804) (2019-01-19,11827.280387) (2019-01-20,11830.502159) (2019-01-21,11834.148042) (2019-01-22,11843.580594) (2019-01-23,11847.400300) (2019-01-24,11857.328659) (2019-01-25,11864.179719) (2019-01-26,11892.555426) (2019-01-27,11901.005300) (2019-01-28,11914.721424) (2019-01-29,11922.209624) (2019-01-30,11929.546295) (2019-01-31,11938.246780) (2019-02-01,11941.835288) (2019-02-02,11946.137999) (2019-02-03,11949.293877) (2019-02-04,11951.819229) (2019-02-05,11955.308722) (2019-02-06,11961.664183) (2019-02-07,11967.166627) (2019-02-08,11976.574101) (2019-02-09,11980.904246) (2019-02-10,11986.803207) (2019-02-11,11997.889019) (2019-02-12,12003.345356) (2019-02-13,12007.972155) (2019-02-14,12015.216259) (2019-02-15,12027.888865) (2019-02-16,12030.035814) (2019-02-17,12037.489422) (2019-02-18,12046.440079) (2019-02-19,12050.958641) (2019-02-20,12059.133479) (2019-02-21,12064.905857) (2019-02-22,12068.351978) (2019-02-23,12072.507268) (2019-02-24,12076.917091) (2019-02-25,12085.845453) (2019-02-26,12103.919854) (2019-02-27,12117.867281) (2019-02-28,12135.440278) (2019-03-01,12137.833800) (2019-03-02,12146.940812) (2019-03-03,12151.029616) (2019-03-04,12176.333564) (2019-03-05,12182.404682) (2019-03-06,12190.822600) (2019-03-07,12200.220636) (2019-03-08,12217.205048) (2019-03-09,12248.143225) (2019-03-10,12283.977348) (2019-03-11,12292.195108) (2019-03-12,12302.212943) (2019-03-13,12312.015582) (2019-03-14,12318.368645) (2019-03-15,12462.650005) (2019-03-16,12470.464045) (2019-03-17,12485.849736) (2019-03-18,12501.217129) (2019-03-19,12516.526462) (2019-03-20,12520.172102) (2019-03-21,12526.180695) (2019-03-22,12565.086435) (2019-03-23,12569.035727) }; +\end{axis} + +\end{tikzpicture} + diff --git a/reports/pure_revenue_exch_breakdown.tex b/reports/pure_revenue_exch_breakdown.tex new file mode 100644 index 0000000..da525eb --- /dev/null +++ b/reports/pure_revenue_exch_breakdown.tex @@ -0,0 +1,34 @@ +\begin{tikzpicture} +\begin{axis}[cycle list/RdGy-6, clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year},ymode=log, xlabel={Date (MM-YY)}, ylabel={Cumulative Pure Revenue Captured (ETH)},title={Pure Revenue Per Exchange Since 04/18}, + log basis y={10}, ymin=0, ymax=7361.152483944131, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, + cycle multiindex* list={ + color list + \nextlist + linestyles + \nextlist + very thick + \nextlist + }, legend pos=south east, + legend entries = {Market Total,Etherdelta,Bancor,0x v1,Tokenstore,Kyber,0x v2},legend style={fill=none},legend cell align={right}, ] + + + +\addplot+[black] coordinates {(2018-04-01,2.829286) (2018-04-02,47.758530) (2018-04-03,55.261138) (2018-04-04,58.261549) (2018-04-05,64.470767) (2018-04-06,92.951916) (2018-04-07,95.791631) (2018-04-08,98.817408) (2018-04-09,121.014198) (2018-04-10,129.005933) (2018-04-11,141.349837) (2018-04-12,145.446807) (2018-04-13,152.247626) (2018-04-14,159.535910) (2018-04-15,162.691794) (2018-04-16,168.082719) (2018-04-17,184.636680) (2018-04-18,265.830963) (2018-04-19,296.097072) (2018-04-20,305.171770) (2018-04-21,313.684856) (2018-04-22,319.986162) (2018-04-23,330.918388) (2018-04-24,342.822227) (2018-04-25,354.114040) (2018-04-26,383.687301) (2018-04-27,399.822472) (2018-04-28,407.411179) (2018-04-29,419.334630) (2018-04-30,437.531627) (2018-05-01,452.835560) (2018-05-02,460.430666) (2018-05-03,473.260470) (2018-05-04,479.713538) (2018-05-05,488.520465) (2018-05-06,501.266712) (2018-05-07,513.781707) (2018-05-08,523.951146) (2018-05-09,541.161515) (2018-05-10,571.906979) (2018-05-11,583.725228) (2018-05-12,595.269136) (2018-05-13,597.931106) (2018-05-14,602.823544) (2018-05-15,612.928349) (2018-05-16,627.722789) (2018-05-17,637.783171) (2018-05-18,653.995094) (2018-05-19,659.793647) (2018-05-20,662.280839) (2018-05-21,666.449563) (2018-05-22,671.113294) (2018-05-23,674.823134) (2018-05-24,677.492178) (2018-05-25,682.582906) (2018-05-26,684.890274) (2018-05-27,687.151707) (2018-05-28,690.793116) (2018-05-29,696.079808) (2018-05-30,699.634053) (2018-05-31,703.347065) (2018-06-01,711.391222) (2018-06-02,729.427592) (2018-06-03,731.336453) (2018-06-04,736.644471) (2018-06-05,740.788496) (2018-06-06,753.133691) (2018-06-07,762.073177) (2018-06-08,764.592783) (2018-06-09,772.461063) (2018-06-10,776.365852) (2018-06-11,780.435541) (2018-06-12,800.346222) (2018-06-13,807.978804) (2018-06-14,821.185559) (2018-06-15,822.515390) (2018-06-16,825.773163) (2018-06-17,834.833633) (2018-06-18,837.940233) (2018-06-19,840.674123) (2018-06-20,845.432119) (2018-06-21,854.946930) (2018-06-22,864.735820) (2018-06-23,867.975147) (2018-06-24,877.771625) (2018-06-25,887.139039) (2018-06-26,892.059976) (2018-06-27,900.496463) (2018-06-28,910.148824) (2018-06-29,913.521877) (2018-06-30,917.217600) (2018-07-01,918.565400) (2018-07-02,923.931146) (2018-07-03,928.113102) (2018-07-04,930.627217) (2018-07-05,933.223188) (2018-07-06,937.188923) (2018-07-07,939.240260) (2018-07-08,940.956689) (2018-07-09,943.848856) (2018-07-10,947.771233) (2018-07-11,949.364089) (2018-07-12,953.269327) (2018-07-13,966.527315) (2018-07-14,973.385528) (2018-07-15,976.912120) (2018-07-16,985.056172) (2018-07-17,989.844250) (2018-07-18,996.254140) (2018-07-19,1000.863049) (2018-07-20,1010.081980) (2018-07-21,1015.350824) (2018-07-22,1023.826214) (2018-07-23,1059.172180) (2018-07-24,1073.738376) (2018-07-25,1084.576024) (2018-07-26,1088.743307) (2018-07-27,1090.030600) (2018-07-28,1091.557299) (2018-07-29,1098.915086) (2018-07-30,1104.516178) (2018-07-31,1108.989284) (2018-08-01,1122.093878) (2018-08-02,1129.780743) (2018-08-03,1138.738166) (2018-08-04,1183.541424) (2018-08-05,1189.079978) (2018-08-06,1191.854103) (2018-08-07,1206.176885) (2018-08-08,1253.752551) (2018-08-09,1257.464143) (2018-08-10,1273.148718) (2018-08-11,1539.563428) (2018-08-12,1562.495859) (2018-08-13,1568.944843) (2018-08-14,1579.960549) (2018-08-15,1590.194385) (2018-08-16,1597.735161) (2018-08-17,1628.455515) (2018-08-18,1631.631047) (2018-08-19,1636.196765) (2018-08-20,1643.578759) (2018-08-21,1650.950828) (2018-08-22,1655.139150) (2018-08-23,1658.436089) (2018-08-24,1662.723402) (2018-08-25,1665.038772) (2018-08-26,1670.684472) (2018-08-27,1721.520447) (2018-08-28,1724.196459) (2018-08-29,1731.170050) (2018-08-30,1733.825828) (2018-08-31,1741.762550) (2018-09-01,1747.388288) (2018-09-02,1751.222313) (2018-09-03,1773.046100) (2018-09-04,1786.696355) (2018-09-05,1794.101480) (2018-09-06,1799.511597) (2018-09-07,1807.019319) (2018-09-08,1814.418041) (2018-09-09,1827.492946) (2018-09-10,1831.026498) (2018-09-11,1863.933658) (2018-09-12,1881.950809) (2018-09-13,1898.809509) (2018-09-14,1910.861473) (2018-09-15,1955.608498) (2018-09-16,1960.839534) (2018-09-17,2011.197217) (2018-09-18,2017.214501) (2018-09-19,2019.325571) (2018-09-20,2029.804011) (2018-09-21,2032.954618) (2018-09-22,2036.975218) (2018-09-23,2040.299059) (2018-09-24,2042.475773) (2018-09-25,2052.415980) (2018-09-26,2054.603733) (2018-09-27,2061.338466) (2018-09-28,2064.162149) (2018-09-29,2065.865485) (2018-09-30,2068.658239) (2018-10-01,2071.285629) (2018-10-02,2079.288499) (2018-10-03,2083.070826) (2018-10-04,2085.948916) (2018-10-05,2111.763136) (2018-10-06,2115.786022) (2018-10-07,2120.087204) (2018-10-08,2122.236805) (2018-10-09,2125.922308) (2018-10-10,2136.331563) (2018-10-11,2144.659748) (2018-10-12,2147.813205) (2018-10-13,2156.460869) (2018-10-14,2158.743401) (2018-10-15,2169.388485) (2018-10-16,2181.648991) (2018-10-17,2190.979183) (2018-10-18,2195.898441) (2018-10-19,2205.180408) (2018-10-20,2215.882496) (2018-10-21,2220.506053) (2018-10-22,2225.503421) (2018-10-23,2233.671237) (2018-10-24,2236.226994) (2018-10-25,2240.189210) (2018-10-26,2244.008495) (2018-10-27,2248.929636) (2018-10-28,2255.031629) (2018-10-29,2259.877533) (2018-10-30,2266.048442) (2018-10-31,2270.391721) (2018-11-01,2275.364232) (2018-11-02,2278.960292) (2018-11-03,2283.851472) (2018-11-04,2291.325228) (2018-11-05,2294.167525) (2018-11-06,2302.933773) (2018-11-07,2306.445592) (2018-11-08,2312.018626) (2018-11-09,2315.197203) (2018-11-10,2323.185160) (2018-11-11,2326.198670) (2018-11-12,2336.182020) (2018-11-13,2340.567362) (2018-11-14,2349.092995) (2018-11-15,2362.612586) (2018-11-16,2371.875576) (2018-11-17,2377.934640) (2018-11-18,2379.813098) (2018-11-19,2392.990154) (2018-11-20,2399.837000) (2018-11-21,2410.786360) (2018-11-22,2417.761530) (2018-11-23,2427.597008) (2018-11-24,2430.146339) (2018-11-25,2441.869917) (2018-11-26,2448.155606) (2018-11-27,2456.407253) (2018-11-28,2460.782950) (2018-11-29,2478.100834) (2018-11-30,2481.562041) (2018-12-01,2485.697398) (2018-12-02,2500.642747) (2018-12-03,2506.134744) (2018-12-04,2518.779427) (2018-12-05,2524.497181) (2018-12-06,2535.646790) (2018-12-07,2546.345551) (2018-12-08,2550.657587) (2018-12-09,2553.991911) (2018-12-10,2563.338143) (2018-12-11,2568.095659) (2018-12-12,2574.600344) (2018-12-13,2578.725726) (2018-12-14,2584.754675) (2018-12-15,2621.848181) (2018-12-16,2646.044050) (2018-12-17,2651.314236) (2018-12-18,2658.108843) (2018-12-19,2665.217118) (2018-12-20,2669.469755) (2018-12-21,2672.682838) (2018-12-22,2680.394393) (2018-12-23,2686.821625) (2018-12-24,2692.801530) (2018-12-25,2696.452970) (2018-12-26,2699.311076) (2018-12-27,2703.149791) (2018-12-28,2710.285008) (2018-12-29,2715.749344) (2018-12-30,2723.236453) (2018-12-31,2733.077230) (2019-01-01,2739.190531) (2019-01-02,2741.369009) (2019-01-03,2742.972959) (2019-01-04,2748.671791) (2019-01-05,2754.014485) (2019-01-06,2755.710927) (2019-01-07,2761.247066) (2019-01-08,2867.221422) (2019-01-09,2870.449548) (2019-01-10,2881.083277) (2019-01-11,2888.831811) (2019-01-12,2893.795780) (2019-01-13,2901.904415) (2019-01-14,2907.480335) (2019-01-15,2914.943805) (2019-01-16,2921.070775) (2019-01-17,2930.224975) (2019-01-18,2935.190319) (2019-01-19,2938.820902) (2019-01-20,2942.042674) (2019-01-21,2945.688557) (2019-01-22,2955.121109) (2019-01-23,2958.940815) (2019-01-24,2968.869174) (2019-01-25,2975.720233) (2019-01-26,3004.095941) (2019-01-27,3012.545815) (2019-01-28,3026.261939) (2019-01-29,3033.750138) (2019-01-30,3041.086810) (2019-01-31,3049.787295) (2019-02-01,3053.375803) (2019-02-02,3057.678514) (2019-02-03,3060.834392) (2019-02-04,3063.359744) (2019-02-05,3066.849237) (2019-02-06,3073.204698) (2019-02-07,3078.707141) (2019-02-08,3088.114616) (2019-02-09,3092.444761) (2019-02-10,3098.343721) (2019-02-11,3109.429534) (2019-02-12,3114.885871) (2019-02-13,3119.512670) (2019-02-14,3126.756773) (2019-02-15,3139.429380) (2019-02-16,3141.576328) (2019-02-17,3149.029936) (2019-02-18,3157.980594) (2019-02-19,3162.499156) (2019-02-20,3170.673994) (2019-02-21,3176.446372) (2019-02-22,3179.892492) (2019-02-23,3184.047783) (2019-02-24,3188.457606) (2019-02-25,3197.385968) (2019-02-26,3215.460369) (2019-02-27,3229.407796) (2019-02-28,3246.980793) (2019-03-01,3249.374315) (2019-03-02,3258.481327) (2019-03-03,3262.570131) (2019-03-04,3287.874079) (2019-03-05,3293.945197) (2019-03-06,3302.363115) (2019-03-07,3311.761150) (2019-03-08,3328.745563) (2019-03-09,3359.683740) (2019-03-10,3395.517863) (2019-03-11,3403.735623) (2019-03-12,3413.753458) (2019-03-13,3423.556097) (2019-03-14,3429.909160) (2019-03-15,3574.190520) (2019-03-16,3582.004560) (2019-03-17,3597.390251) (2019-03-18,3612.757644) (2019-03-19,3628.066977) (2019-03-20,3631.712617) (2019-03-21,3637.721210) (2019-03-22,3676.626950) (2019-03-23,3680.576242) }; +\addplot+ coordinates {(2018-04-01,2.267863) (2018-04-02,45.718938) (2018-04-03,53.185957) (2018-04-04,55.688929) (2018-04-05,61.817381) (2018-04-06,89.343824) (2018-04-07,92.159889) (2018-04-08,95.010444) (2018-04-09,108.835270) (2018-04-10,116.588014) (2018-04-11,128.678706) (2018-04-12,132.352366) (2018-04-13,138.876353) (2018-04-14,145.695164) (2018-04-15,148.833618) (2018-04-16,153.859285) (2018-04-17,170.019942) (2018-04-18,250.613600) (2018-04-19,280.523097) (2018-04-20,286.358809) (2018-04-21,293.595767) (2018-04-22,297.077831) (2018-04-23,307.125556) (2018-04-24,317.232204) (2018-04-25,326.820815) (2018-04-26,353.412745) (2018-04-27,364.607860) (2018-04-28,371.588005) (2018-04-29,381.395593) (2018-04-30,399.356426) (2018-05-01,413.734088) (2018-05-02,418.782758) (2018-05-03,431.058935) (2018-05-04,434.931725) (2018-05-05,442.572575) (2018-05-06,454.352334) (2018-05-07,464.948463) (2018-05-08,474.508049) (2018-05-09,490.058499) (2018-05-10,517.746917) (2018-05-11,528.058925) (2018-05-12,538.764196) (2018-05-13,541.063746) (2018-05-14,545.582071) (2018-05-15,554.969162) (2018-05-16,560.397039) (2018-05-17,570.261009) (2018-05-18,586.325376) (2018-05-19,590.299975) (2018-05-20,592.650901) (2018-05-21,596.479488) (2018-05-22,600.489289) (2018-05-23,603.495654) (2018-05-24,605.940970) (2018-05-25,609.165665) (2018-05-26,611.307030) (2018-05-27,613.348258) (2018-05-28,615.356489) (2018-05-29,619.500890) (2018-05-30,622.527103) (2018-05-31,625.036655) (2018-06-01,632.436981) (2018-06-02,650.159198) (2018-06-03,651.576436) (2018-06-04,656.453474) (2018-06-05,659.645893) (2018-06-06,671.964526) (2018-06-07,678.627110) (2018-06-08,681.032387) (2018-06-09,682.954338) (2018-06-10,686.426730) (2018-06-11,688.882757) (2018-06-12,708.442415) (2018-06-13,713.340313) (2018-06-14,726.128305) (2018-06-15,727.034718) (2018-06-16,729.888077) (2018-06-17,738.716133) (2018-06-18,739.518710) (2018-06-19,740.910905) (2018-06-20,743.851097) (2018-06-21,751.660520) (2018-06-22,752.899873) (2018-06-23,754.685353) (2018-06-24,759.427136) (2018-06-25,766.280896) (2018-06-26,770.272282) (2018-06-27,776.352510) (2018-06-28,781.845869) (2018-06-29,783.216399) (2018-06-30,786.127774) (2018-07-01,786.681063) (2018-07-02,788.889120) (2018-07-03,790.065963) (2018-07-04,791.955352) (2018-07-05,793.397325) (2018-07-06,796.008223) (2018-07-07,796.696584) (2018-07-08,797.944010) (2018-07-09,799.348323) (2018-07-10,801.591639) (2018-07-11,802.901100) (2018-07-12,804.363535) (2018-07-13,814.666998) (2018-07-14,817.313946) (2018-07-15,817.742515) (2018-07-16,819.802325) (2018-07-17,821.262433) (2018-07-18,824.837091) (2018-07-19,826.116325) (2018-07-20,830.348950) (2018-07-21,832.821000) (2018-07-22,837.150042) (2018-07-23,841.844415) (2018-07-24,848.114414) (2018-07-25,855.240927) (2018-07-26,857.459843) (2018-07-27,858.225035) (2018-07-28,859.254147) (2018-07-29,862.291875) (2018-07-30,864.927393) (2018-07-31,867.147628) (2018-08-01,879.037133) (2018-08-02,884.300527) (2018-08-03,890.467380) (2018-08-04,904.087676) (2018-08-05,906.654380) (2018-08-06,907.830038) (2018-08-07,919.913104) (2018-08-08,925.952758) (2018-08-09,927.520687) (2018-08-10,936.024392) (2018-08-11,939.205249) (2018-08-12,961.289722) (2018-08-13,965.949217) (2018-08-14,972.631823) (2018-08-15,976.288152) (2018-08-16,980.585310) (2018-08-17,996.171341) (2018-08-18,997.817347) (2018-08-19,999.673311) (2018-08-20,1002.535568) (2018-08-21,1007.016713) (2018-08-22,1008.683803) (2018-08-23,1010.573687) (2018-08-24,1013.426485) (2018-08-25,1015.130714) (2018-08-26,1018.777015) (2018-08-27,1035.835160) (2018-08-28,1037.677651) (2018-08-29,1040.316681) (2018-08-30,1041.853087) (2018-08-31,1045.631030) (2018-09-01,1046.329404) (2018-09-02,1048.728524) (2018-09-03,1069.564824) (2018-09-04,1081.718648) (2018-09-05,1085.318318) (2018-09-06,1086.956203) (2018-09-07,1089.776955) (2018-09-08,1092.976165) (2018-09-09,1094.237602) (2018-09-10,1095.831451) (2018-09-11,1099.646214) (2018-09-12,1108.977428) (2018-09-13,1121.502934) (2018-09-14,1129.831476) (2018-09-15,1166.955087) (2018-09-16,1171.060602) (2018-09-17,1218.791205) (2018-09-18,1220.425883) (2018-09-19,1221.543294) (2018-09-20,1228.513292) (2018-09-21,1229.884177) (2018-09-22,1231.403317) (2018-09-23,1233.930179) (2018-09-24,1234.942880) (2018-09-25,1239.777896) (2018-09-26,1241.046006) (2018-09-27,1245.499869) (2018-09-28,1246.292925) (2018-09-29,1246.707156) (2018-09-30,1248.155675) (2018-10-01,1249.386456) (2018-10-02,1252.329075) (2018-10-03,1255.066590) (2018-10-04,1256.542262) (2018-10-05,1267.861311) (2018-10-06,1270.043326) (2018-10-07,1270.659908) (2018-10-08,1271.353384) (2018-10-09,1273.144038) (2018-10-10,1274.603610) (2018-10-11,1277.251279) (2018-10-12,1277.930387) (2018-10-13,1281.848131) (2018-10-14,1283.033918) (2018-10-15,1288.159613) (2018-10-16,1293.491750) (2018-10-17,1296.718359) (2018-10-18,1299.947799) (2018-10-19,1302.568393) (2018-10-20,1306.403249) (2018-10-21,1308.207199) (2018-10-22,1310.523707) (2018-10-23,1314.479726) (2018-10-24,1315.614514) (2018-10-25,1317.848923) (2018-10-26,1319.872014) (2018-10-27,1322.907432) (2018-10-28,1325.847994) (2018-10-29,1329.143360) (2018-10-30,1334.441108) (2018-10-31,1337.506960) (2018-11-01,1340.934374) (2018-11-02,1343.136528) (2018-11-03,1344.562156) (2018-11-04,1351.335772) (2018-11-05,1351.906958) (2018-11-06,1359.480512) (2018-11-07,1361.844407) (2018-11-08,1365.289843) (2018-11-09,1367.188107) (2018-11-10,1368.484451) (2018-11-11,1370.296621) (2018-11-12,1376.777330) (2018-11-13,1380.238126) (2018-11-14,1383.662766) (2018-11-15,1387.800001) (2018-11-16,1395.066284) (2018-11-17,1398.430946) (2018-11-18,1399.544337) (2018-11-19,1404.373573) (2018-11-20,1406.813678) (2018-11-21,1410.754560) (2018-11-22,1414.284435) (2018-11-23,1419.573037) (2018-11-24,1421.262369) (2018-11-25,1425.078998) (2018-11-26,1427.583123) (2018-11-27,1429.873382) (2018-11-28,1432.491106) (2018-11-29,1437.460083) (2018-11-30,1438.455847) (2018-12-01,1439.300050) (2018-12-02,1444.717848) (2018-12-03,1447.781175) (2018-12-04,1453.122218) (2018-12-05,1455.230256) (2018-12-06,1458.880193) (2018-12-07,1461.953385) (2018-12-08,1464.199506) (2018-12-09,1465.292064) (2018-12-10,1471.294267) (2018-12-11,1474.108568) (2018-12-12,1478.028487) (2018-12-13,1480.020567) (2018-12-14,1484.213646) (2018-12-15,1488.499420) (2018-12-16,1492.257918) (2018-12-17,1495.566113) (2018-12-18,1499.691673) (2018-12-19,1503.175697) (2018-12-20,1504.966127) (2018-12-21,1507.249720) (2018-12-22,1509.678984) (2018-12-23,1511.161428) (2018-12-24,1514.149476) (2018-12-25,1515.205083) (2018-12-26,1517.328006) (2018-12-27,1518.836543) (2018-12-28,1521.564050) (2018-12-29,1524.616024) (2018-12-30,1527.863239) (2018-12-31,1532.525174) (2019-01-01,1536.791750) (2019-01-02,1537.734692) (2019-01-03,1538.037782) (2019-01-04,1539.152378) (2019-01-05,1542.935461) (2019-01-06,1543.661041) (2019-01-07,1544.682577) (2019-01-08,1545.649758) (2019-01-09,1546.518224) (2019-01-10,1552.051338) (2019-01-11,1556.277504) (2019-01-12,1556.695066) (2019-01-13,1559.389963) (2019-01-14,1560.795527) (2019-01-15,1565.662008) (2019-01-16,1565.912784) (2019-01-17,1568.562244) (2019-01-18,1571.952206) (2019-01-19,1573.079686) (2019-01-20,1573.829405) (2019-01-21,1574.883255) (2019-01-22,1578.179798) (2019-01-23,1580.307920) (2019-01-24,1584.743256) (2019-01-25,1587.672240) (2019-01-26,1594.428604) (2019-01-27,1595.536474) (2019-01-28,1600.256091) (2019-01-29,1604.454439) (2019-01-30,1607.555163) (2019-01-31,1612.210665) (2019-02-01,1613.631445) (2019-02-02,1614.409588) (2019-02-03,1614.816508) (2019-02-04,1615.523363) (2019-02-05,1616.493032) (2019-02-06,1618.959149) (2019-02-07,1621.380276) (2019-02-08,1623.596847) (2019-02-09,1624.199855) (2019-02-10,1626.555132) (2019-02-11,1632.545235) (2019-02-12,1633.752559) (2019-02-13,1634.660978) (2019-02-14,1638.071194) (2019-02-15,1639.285448) (2019-02-16,1639.690395) (2019-02-17,1641.291624) (2019-02-18,1646.317893) (2019-02-19,1647.978545) (2019-02-20,1650.366196) (2019-02-21,1652.454168) (2019-02-22,1653.779722) (2019-02-23,1655.782785) (2019-02-24,1656.852328) (2019-02-25,1659.073214) (2019-02-26,1667.097724) (2019-02-27,1675.774572) (2019-02-28,1682.634973) (2019-03-01,1683.035362) (2019-03-02,1685.423488) (2019-03-03,1686.481376) (2019-03-04,1689.071810) (2019-03-05,1689.806493) (2019-03-06,1693.066397) (2019-03-07,1695.462242) (2019-03-08,1698.275439) (2019-03-09,1699.939273) (2019-03-10,1714.790498) (2019-03-11,1716.613987) (2019-03-12,1719.142868) (2019-03-13,1720.932896) (2019-03-14,1721.906045) (2019-03-15,1861.647934) (2019-03-16,1863.798577) (2019-03-17,1867.210356) (2019-03-18,1870.912530) (2019-03-19,1872.762860) (2019-03-20,1873.461114) (2019-03-21,1874.097143) (2019-03-22,1894.734245) (2019-03-23,1895.260466) }; +\addplot+ coordinates {(2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.574933) (2018-06-20,1.437101) (2018-06-21,2.500481) (2018-06-22,8.143311) (2018-06-23,9.501092) (2018-06-24,13.960628) (2018-06-25,15.518305) (2018-06-26,16.200172) (2018-06-27,16.966147) (2018-06-28,19.934996) (2018-06-29,21.322701) (2018-06-30,21.779152) (2018-07-01,22.054787) (2018-07-02,23.147955) (2018-07-03,24.560967) (2018-07-04,25.066092) (2018-07-05,25.865853) (2018-07-06,27.017323) (2018-07-07,27.506378) (2018-07-08,27.782521) (2018-07-09,29.105837) (2018-07-10,29.105837) (2018-07-11,29.105837) (2018-07-12,30.139529) (2018-07-13,32.201946) (2018-07-14,34.164988) (2018-07-15,35.146685) (2018-07-16,36.330688) (2018-07-17,37.179548) (2018-07-18,38.751894) (2018-07-19,40.713229) (2018-07-20,44.644693) (2018-07-21,47.066300) (2018-07-22,50.046553) (2018-07-23,64.742573) (2018-07-24,70.964011) (2018-07-25,73.496901) (2018-07-26,74.920765) (2018-07-27,75.244959) (2018-07-28,75.508886) (2018-07-29,79.771159) (2018-07-30,81.853124) (2018-07-31,83.541232) (2018-08-01,84.296832) (2018-08-02,86.191335) (2018-08-03,88.553150) (2018-08-04,91.372845) (2018-08-05,93.685102) (2018-08-06,94.524850) (2018-08-07,95.089822) (2018-08-08,117.934719) (2018-08-09,119.853615) (2018-08-10,124.982794) (2018-08-11,284.700120) (2018-08-12,285.212812) (2018-08-13,286.092799) (2018-08-14,288.915445) (2018-08-15,291.377864) (2018-08-16,292.585574) (2018-08-17,307.213340) (2018-08-18,308.408471) (2018-08-19,310.204508) (2018-08-20,311.432158) (2018-08-21,313.724292) (2018-08-22,315.388421) (2018-08-23,316.487782) (2018-08-24,317.467337) (2018-08-25,317.809178) (2018-08-26,318.863628) (2018-08-27,350.815860) (2018-08-28,351.105298) (2018-08-29,354.404799) (2018-08-30,355.244770) (2018-08-31,359.198758) (2018-09-01,361.266155) (2018-09-02,362.648591) (2018-09-03,362.795738) (2018-09-04,363.159252) (2018-09-05,364.879747) (2018-09-06,365.965227) (2018-09-07,366.592586) (2018-09-08,368.834117) (2018-09-09,370.175546) (2018-09-10,371.398388) (2018-09-11,373.849727) (2018-09-12,375.754802) (2018-09-13,377.714571) (2018-09-14,378.469148) (2018-09-15,379.127090) (2018-09-16,379.272909) (2018-09-17,380.632863) (2018-09-18,381.515219) (2018-09-19,382.324446) (2018-09-20,385.012457) (2018-09-21,386.147044) (2018-09-22,388.207340) (2018-09-23,388.447559) (2018-09-24,388.839015) (2018-09-25,392.288575) (2018-09-26,392.838608) (2018-09-27,393.993197) (2018-09-28,394.441366) (2018-09-29,394.960159) (2018-09-30,395.434406) (2018-10-01,396.575535) (2018-10-02,401.164187) (2018-10-03,401.773600) (2018-10-04,402.979644) (2018-10-05,415.429818) (2018-10-06,415.956730) (2018-10-07,416.267316) (2018-10-08,416.799368) (2018-10-09,418.250964) (2018-10-10,418.726240) (2018-10-11,421.305163) (2018-10-12,421.761997) (2018-10-13,422.338147) (2018-10-14,422.670837) (2018-10-15,426.869171) (2018-10-16,432.393485) (2018-10-17,434.628544) (2018-10-18,435.223605) (2018-10-19,438.587379) (2018-10-20,441.999175) (2018-10-21,443.849929) (2018-10-22,445.697468) (2018-10-23,448.493926) (2018-10-24,449.285460) (2018-10-25,450.356213) (2018-10-26,451.418696) (2018-10-27,452.102872) (2018-10-28,454.835747) (2018-10-29,455.821316) (2018-10-30,456.185426) (2018-10-31,456.803526) (2018-11-01,457.962561) (2018-11-02,458.957017) (2018-11-03,460.594863) (2018-11-04,461.092864) (2018-11-05,461.952597) (2018-11-06,462.131329) (2018-11-07,462.288695) (2018-11-08,463.534435) (2018-11-09,463.996497) (2018-11-10,464.647384) (2018-11-11,465.124232) (2018-11-12,466.623682) (2018-11-13,466.864472) (2018-11-14,471.451965) (2018-11-15,478.782977) (2018-11-16,480.209931) (2018-11-17,480.972450) (2018-11-18,481.434192) (2018-11-19,487.703617) (2018-11-20,489.949708) (2018-11-21,496.493790) (2018-11-22,499.535732) (2018-11-23,500.291242) (2018-11-24,501.011547) (2018-11-25,504.429355) (2018-11-26,506.333076) (2018-11-27,509.447825) (2018-11-28,510.541561) (2018-11-29,518.835039) (2018-11-30,519.360627) (2018-12-01,520.007142) (2018-12-02,528.387749) (2018-12-03,529.809569) (2018-12-04,532.550667) (2018-12-05,535.689081) (2018-12-06,537.454583) (2018-12-07,541.295032) (2018-12-08,542.640688) (2018-12-09,543.107177) (2018-12-10,544.384467) (2018-12-11,545.623385) (2018-12-12,546.857655) (2018-12-13,547.932962) (2018-12-14,549.489379) (2018-12-15,556.636766) (2018-12-16,558.828038) (2018-12-17,560.135764) (2018-12-18,562.227651) (2018-12-19,564.025330) (2018-12-20,565.971785) (2018-12-21,566.301946) (2018-12-22,570.771587) (2018-12-23,572.639250) (2018-12-24,575.322205) (2018-12-25,576.684777) (2018-12-26,576.991616) (2018-12-27,579.090250) (2018-12-28,583.121711) (2018-12-29,583.785063) (2018-12-30,584.233105) (2018-12-31,589.078354) (2019-01-01,590.286949) (2019-01-02,590.948175) (2019-01-03,591.771679) (2019-01-04,592.672494) (2019-01-05,593.084855) (2019-01-06,593.551478) (2019-01-07,594.311335) (2019-01-08,664.631550) (2019-01-09,665.479289) (2019-01-10,668.239422) (2019-01-11,671.074268) (2019-01-12,672.782050) (2019-01-13,677.622007) (2019-01-14,678.697019) (2019-01-15,680.044792) (2019-01-16,683.158711) (2019-01-17,688.647882) (2019-01-18,689.339480) (2019-01-19,690.189067) (2019-01-20,691.019162) (2019-01-21,691.515536) (2019-01-22,695.769709) (2019-01-23,696.285229) (2019-01-24,698.251385) (2019-01-25,700.396600) (2019-01-26,716.131565) (2019-01-27,718.686830) (2019-01-28,722.484152) (2019-01-29,723.993509) (2019-01-30,726.475927) (2019-01-31,728.154164) (2019-02-01,728.847565) (2019-02-02,730.003566) (2019-02-03,730.462831) (2019-02-04,730.767410) (2019-02-05,732.981494) (2019-02-06,735.118909) (2019-02-07,736.596647) (2019-02-08,739.856424) (2019-02-09,740.940402) (2019-02-10,742.974919) (2019-02-11,744.820832) (2019-02-12,746.255770) (2019-02-13,747.132649) (2019-02-14,749.766479) (2019-02-15,757.795102) (2019-02-16,758.559189) (2019-02-17,760.554567) (2019-02-18,761.997596) (2019-02-19,762.675227) (2019-02-20,765.202614) (2019-02-21,767.020587) (2019-02-22,767.866215) (2019-02-23,769.411425) (2019-02-24,770.927193) (2019-02-25,774.645123) (2019-02-26,779.216822) (2019-02-27,781.081938) (2019-02-28,787.378965) (2019-03-01,788.474824) (2019-03-02,789.596190) (2019-03-03,790.606903) (2019-03-04,793.607443) (2019-03-05,795.522459) (2019-03-06,798.324769) (2019-03-07,800.575485) (2019-03-08,808.599435) (2019-03-09,822.684764) (2019-03-10,828.812177) (2019-03-11,833.228862) (2019-03-12,838.344819) (2019-03-13,843.327095) (2019-03-14,845.345463) (2019-03-15,847.744176) (2019-03-16,852.009215) (2019-03-17,859.509264) (2019-03-18,866.605610) (2019-03-19,870.639409) (2019-03-20,871.667540) (2019-03-21,873.545205) (2019-03-22,889.131187) (2019-03-23,889.803261) }; +\addplot+ coordinates {(2018-04-01,0.551673) (2018-04-02,1.993994) (2018-04-03,2.029582) (2018-04-04,2.523927) (2018-04-05,2.597070) (2018-04-06,3.508779) (2018-04-07,3.532428) (2018-04-08,3.663325) (2018-04-09,12.028795) (2018-04-10,12.143044) (2018-04-11,12.348430) (2018-04-12,12.651091) (2018-04-13,12.805391) (2018-04-14,13.143255) (2018-04-15,13.160684) (2018-04-16,13.372512) (2018-04-17,13.628277) (2018-04-18,14.188667) (2018-04-19,14.255311) (2018-04-20,15.311111) (2018-04-21,15.880922) (2018-04-22,16.353914) (2018-04-23,17.056603) (2018-04-24,18.069010) (2018-04-25,19.272134) (2018-04-26,22.088775) (2018-04-27,26.775878) (2018-04-28,27.256780) (2018-04-29,27.594636) (2018-04-30,27.810435) (2018-05-01,27.995904) (2018-05-02,28.253893) (2018-05-03,28.618448) (2018-05-04,29.643001) (2018-05-05,30.708489) (2018-05-06,30.927546) (2018-05-07,32.721666) (2018-05-08,32.956927) (2018-05-09,34.552329) (2018-05-10,35.974347) (2018-05-11,37.276273) (2018-05-12,37.993193) (2018-05-13,38.264617) (2018-05-14,38.638730) (2018-05-15,38.902419) (2018-05-16,38.973673) (2018-05-17,39.094571) (2018-05-18,39.242128) (2018-05-19,39.441399) (2018-05-20,39.467698) (2018-05-21,39.740811) (2018-05-22,39.786149) (2018-05-23,40.391037) (2018-05-24,40.614765) (2018-05-25,41.979967) (2018-05-26,42.057058) (2018-05-27,42.109480) (2018-05-28,43.051994) (2018-05-29,43.775545) (2018-05-30,43.958632) (2018-05-31,44.690114) (2018-06-01,44.727258) (2018-06-02,44.747025) (2018-06-03,45.036523) (2018-06-04,45.054925) (2018-06-05,45.129341) (2018-06-06,45.142627) (2018-06-07,45.142627) (2018-06-08,45.154496) (2018-06-09,50.904231) (2018-06-10,51.287875) (2018-06-11,52.643092) (2018-06-12,52.846699) (2018-06-13,55.261356) (2018-06-14,55.606131) (2018-06-15,55.865553) (2018-06-16,56.198996) (2018-06-17,56.293624) (2018-06-18,57.997346) (2018-06-19,58.125667) (2018-06-20,58.778088) (2018-06-21,59.373790) (2018-06-22,62.202580) (2018-06-23,62.268008) (2018-06-24,62.803784) (2018-06-25,63.315272) (2018-06-26,63.556684) (2018-06-27,63.843612) (2018-06-28,64.998785) (2018-06-29,65.533502) (2018-06-30,65.825980) (2018-07-01,66.046081) (2018-07-02,68.100663) (2018-07-03,69.485264) (2018-07-04,69.546830) (2018-07-05,69.887407) (2018-07-06,70.090774) (2018-07-07,70.643052) (2018-07-08,70.835911) (2018-07-09,70.993933) (2018-07-10,72.650160) (2018-07-11,72.805534) (2018-07-12,72.902550) (2018-07-13,73.794657) (2018-07-14,76.024494) (2018-07-15,78.136860) (2018-07-16,82.902399) (2018-07-17,85.371030) (2018-07-18,86.532978) (2018-07-19,87.895974) (2018-07-20,88.578081) (2018-07-21,88.948441) (2018-07-22,90.027141) (2018-07-23,105.954363) (2018-07-24,107.484089) (2018-07-25,108.013397) (2018-07-26,108.454225) (2018-07-27,108.588658) (2018-07-28,108.782675) (2018-07-29,108.833045) (2018-07-30,109.274465) (2018-07-31,109.580319) (2018-08-01,109.732531) (2018-08-02,110.129726) (2018-08-03,110.429713) (2018-08-04,110.460286) (2018-08-05,110.707900) (2018-08-06,110.833102) (2018-08-07,112.454930) (2018-08-08,131.098223) (2018-08-09,131.240497) (2018-08-10,132.857494) (2018-08-11,236.183439) (2018-08-12,236.281625) (2018-08-13,236.833896) (2018-08-14,238.282574) (2018-08-15,242.281108) (2018-08-16,242.417793) (2018-08-17,242.745759) (2018-08-18,243.063176) (2018-08-19,243.218147) (2018-08-20,245.892003) (2018-08-21,246.191916) (2018-08-22,246.694384) (2018-08-23,246.804118) (2018-08-24,247.029625) (2018-08-25,247.138189) (2018-08-26,247.979504) (2018-08-27,249.490942) (2018-08-28,249.562131) (2018-08-29,250.553121) (2018-08-30,250.655540) (2018-08-31,250.727895) (2018-09-01,253.586183) (2018-09-02,253.603527) (2018-09-03,254.215873) (2018-09-04,255.031880) (2018-09-05,257.068082) (2018-09-06,259.345789) (2018-09-07,262.481832) (2018-09-08,263.639824) (2018-09-09,273.827021) (2018-09-10,274.502397) (2018-09-11,301.121521) (2018-09-12,307.889439) (2018-09-13,310.168117) (2018-09-14,311.494622) (2018-09-15,318.297311) (2018-09-16,318.712035) (2018-09-17,319.870482) (2018-09-18,323.176708) (2018-09-19,323.305169) (2018-09-20,323.436161) (2018-09-21,324.073167) (2018-09-22,324.494747) (2018-09-23,325.051507) (2018-09-24,325.616703) (2018-09-25,327.078398) (2018-09-26,327.116140) (2018-09-27,328.087615) (2018-09-28,328.348847) (2018-09-29,328.649376) (2018-09-30,328.875438) (2018-10-01,328.875438) (2018-10-02,328.875438) (2018-10-03,328.875438) (2018-10-04,328.875438) (2018-10-05,328.880128) (2018-10-06,328.880128) (2018-10-07,328.880128) (2018-10-08,328.896579) (2018-10-09,328.896579) (2018-10-10,328.896579) (2018-10-11,329.565751) (2018-10-12,329.565751) (2018-10-13,329.565751) (2018-10-14,329.565751) (2018-10-15,329.565751) (2018-10-16,329.565751) (2018-10-17,329.569247) (2018-10-18,329.569247) (2018-10-19,329.569247) (2018-10-20,329.569247) (2018-10-21,329.569247) (2018-10-22,329.573443) (2018-10-23,329.577264) (2018-10-24,329.592645) (2018-10-25,329.596992) (2018-10-26,329.596992) (2018-10-27,329.596992) (2018-10-28,329.596992) (2018-10-29,329.598194) (2018-10-30,329.598194) (2018-10-31,329.598194) (2018-11-01,329.598194) (2018-11-02,329.598194) (2018-11-03,330.173294) (2018-11-04,330.173294) (2018-11-05,330.173294) (2018-11-06,330.173294) (2018-11-07,330.173294) (2018-11-08,330.173294) (2018-11-09,330.173294) (2018-11-10,330.173294) (2018-11-11,330.173294) (2018-11-12,330.173294) (2018-11-13,330.173294) (2018-11-14,330.368358) (2018-11-15,330.368358) (2018-11-16,330.402608) (2018-11-17,330.402608) (2018-11-18,330.402608) (2018-11-19,330.422440) (2018-11-20,330.577865) (2018-11-21,330.607622) (2018-11-22,330.607622) (2018-11-23,330.607622) (2018-11-24,330.636708) (2018-11-25,330.636708) (2018-11-26,330.636708) (2018-11-27,330.644697) (2018-11-28,330.644697) (2018-11-29,330.644697) (2018-11-30,330.644697) (2018-12-01,330.644697) (2018-12-02,330.644697) (2018-12-03,330.644697) (2018-12-04,330.644697) (2018-12-05,330.668411) (2018-12-06,330.709175) (2018-12-07,330.746082) (2018-12-08,330.751575) (2018-12-09,330.755664) (2018-12-10,330.771526) (2018-12-11,330.771526) (2018-12-12,330.771526) (2018-12-13,330.771526) (2018-12-14,330.771526) (2018-12-15,330.771526) (2018-12-16,330.771526) (2018-12-17,330.886010) (2018-12-18,330.889710) (2018-12-19,330.896059) (2018-12-20,330.902342) (2018-12-21,330.915935) (2018-12-22,330.915935) (2018-12-23,330.937241) (2018-12-24,330.966481) (2018-12-25,330.966481) (2018-12-26,330.986355) (2018-12-27,331.020475) (2018-12-28,331.060320) (2018-12-29,331.112700) (2018-12-30,331.112700) (2018-12-31,331.112700) (2019-01-01,331.112700) (2019-01-02,331.112700) (2019-01-03,331.112700) (2019-01-04,331.112700) (2019-01-05,331.529191) (2019-01-06,331.558854) (2019-01-07,331.558854) (2019-01-08,331.558854) (2019-01-09,331.558854) (2019-01-10,331.558854) (2019-01-11,331.558854) (2019-01-12,331.558854) (2019-01-13,331.558854) (2019-01-14,331.558854) (2019-01-15,331.558854) (2019-01-16,331.558854) (2019-01-17,331.558854) (2019-01-18,331.558854) (2019-01-19,331.558854) (2019-01-20,331.558854) (2019-01-21,331.558854) (2019-01-22,331.558854) (2019-01-23,331.558854) (2019-01-24,331.558854) (2019-01-25,331.558854) (2019-01-26,331.558854) (2019-01-27,331.558854) (2019-01-28,331.558854) (2019-01-29,331.558854) (2019-01-30,331.558854) (2019-01-31,331.558854) (2019-02-01,331.558854) (2019-02-02,331.558854) (2019-02-03,331.558854) (2019-02-04,331.558854) (2019-02-05,331.558854) (2019-02-06,331.558854) (2019-02-07,331.558854) (2019-02-08,331.558854) (2019-02-09,331.558854) (2019-02-10,331.558854) (2019-02-11,331.558854) (2019-02-12,331.558854) (2019-02-13,331.558854) (2019-02-14,331.580690) (2019-02-15,331.580690) (2019-02-16,331.580690) (2019-02-17,331.580690) (2019-02-18,331.612692) (2019-02-19,331.612692) (2019-02-20,331.612692) (2019-02-21,331.612692) (2019-02-22,331.612692) (2019-02-23,331.612692) (2019-02-24,331.616049) (2019-02-25,331.616049) (2019-02-26,331.616049) (2019-02-27,331.616049) (2019-02-28,331.616049) (2019-03-01,331.616049) (2019-03-02,331.616049) (2019-03-03,331.616049) (2019-03-04,331.616049) (2019-03-05,331.616049) (2019-03-06,331.616049) (2019-03-07,331.616049) (2019-03-08,331.616049) (2019-03-09,331.616049) (2019-03-10,331.616049) (2019-03-11,331.616049) (2019-03-12,331.616049) (2019-03-13,331.616049) (2019-03-14,331.616049) (2019-03-15,331.616049) (2019-03-16,331.616049) (2019-03-17,331.616049) (2019-03-18,331.616049) (2019-03-19,331.616049) (2019-03-20,331.616049) (2019-03-21,331.616049) (2019-03-22,331.616049) (2019-03-23,331.639899) }; +\addplot+ coordinates {(2018-04-01,0.009750) (2018-04-02,0.045598) (2018-04-03,0.045598) (2018-04-04,0.048693) (2018-04-05,0.056316) (2018-04-06,0.099313) (2018-04-07,0.099313) (2018-04-08,0.143639) (2018-04-09,0.150133) (2018-04-10,0.274875) (2018-04-11,0.322701) (2018-04-12,0.443349) (2018-04-13,0.565882) (2018-04-14,0.697491) (2018-04-15,0.697491) (2018-04-16,0.850923) (2018-04-17,0.988462) (2018-04-18,1.028696) (2018-04-19,1.318664) (2018-04-20,3.501850) (2018-04-21,4.208166) (2018-04-22,6.554417) (2018-04-23,6.736229) (2018-04-24,7.521012) (2018-04-25,8.021091) (2018-04-26,8.185782) (2018-04-27,8.438735) (2018-04-28,8.566394) (2018-04-29,10.344401) (2018-04-30,10.364765) (2018-05-01,11.105568) (2018-05-02,13.394015) (2018-05-03,13.583088) (2018-05-04,15.138811) (2018-05-05,15.239400) (2018-05-06,15.986832) (2018-05-07,16.111578) (2018-05-08,16.486170) (2018-05-09,16.550687) (2018-05-10,18.185716) (2018-05-11,18.390030) (2018-05-12,18.511747) (2018-05-13,18.602743) (2018-05-14,18.602743) (2018-05-15,19.056768) (2018-05-16,28.352077) (2018-05-17,28.427591) (2018-05-18,28.427591) (2018-05-19,30.052273) (2018-05-20,30.162240) (2018-05-21,30.229264) (2018-05-22,30.837857) (2018-05-23,30.936443) (2018-05-24,30.936443) (2018-05-25,31.437273) (2018-05-26,31.526186) (2018-05-27,31.693970) (2018-05-28,32.384634) (2018-05-29,32.803373) (2018-05-30,33.148317) (2018-05-31,33.620296) (2018-06-01,34.226983) (2018-06-02,34.521369) (2018-06-03,34.723495) (2018-06-04,35.136073) (2018-06-05,36.013262) (2018-06-06,36.026539) (2018-06-07,38.303441) (2018-06-08,38.405900) (2018-06-09,38.602494) (2018-06-10,38.651248) (2018-06-11,38.909692) (2018-06-12,39.057108) (2018-06-13,39.377135) (2018-06-14,39.451123) (2018-06-15,39.615120) (2018-06-16,39.686091) (2018-06-17,39.823876) (2018-06-18,40.424178) (2018-06-19,41.062617) (2018-06-20,41.365833) (2018-06-21,41.412139) (2018-06-22,41.490056) (2018-06-23,41.520695) (2018-06-24,41.580077) (2018-06-25,42.024566) (2018-06-26,42.030837) (2018-06-27,43.334193) (2018-06-28,43.369174) (2018-06-29,43.449274) (2018-06-30,43.484694) (2018-07-01,43.783469) (2018-07-02,43.793408) (2018-07-03,44.000908) (2018-07-04,44.058942) (2018-07-05,44.072603) (2018-07-06,44.072603) (2018-07-07,44.394246) (2018-07-08,44.394246) (2018-07-09,44.400763) (2018-07-10,44.423597) (2018-07-11,44.551618) (2018-07-12,45.863714) (2018-07-13,45.863714) (2018-07-14,45.882100) (2018-07-15,45.886060) (2018-07-16,46.020760) (2018-07-17,46.031239) (2018-07-18,46.132176) (2018-07-19,46.137521) (2018-07-20,46.510256) (2018-07-21,46.515083) (2018-07-22,46.602478) (2018-07-23,46.630830) (2018-07-24,47.175863) (2018-07-25,47.824800) (2018-07-26,47.908474) (2018-07-27,47.971947) (2018-07-28,48.011590) (2018-07-29,48.019006) (2018-07-30,48.461197) (2018-07-31,48.720106) (2018-08-01,49.027382) (2018-08-02,49.159155) (2018-08-03,49.287922) (2018-08-04,77.620617) (2018-08-05,78.032595) (2018-08-06,78.666112) (2018-08-07,78.719028) (2018-08-08,78.766850) (2018-08-09,78.849344) (2018-08-10,79.284038) (2018-08-11,79.474620) (2018-08-12,79.711701) (2018-08-13,80.068932) (2018-08-14,80.130706) (2018-08-15,80.247260) (2018-08-16,82.146485) (2018-08-17,82.325075) (2018-08-18,82.342053) (2018-08-19,83.100799) (2018-08-20,83.719031) (2018-08-21,84.017907) (2018-08-22,84.372542) (2018-08-23,84.570501) (2018-08-24,84.799955) (2018-08-25,84.960691) (2018-08-26,85.064325) (2018-08-27,85.378485) (2018-08-28,85.851378) (2018-08-29,85.895448) (2018-08-30,86.072432) (2018-08-31,86.204867) (2018-09-01,86.206545) (2018-09-02,86.241671) (2018-09-03,86.469665) (2018-09-04,86.786575) (2018-09-05,86.835333) (2018-09-06,87.244378) (2018-09-07,88.167946) (2018-09-08,88.967935) (2018-09-09,89.252777) (2018-09-10,89.294263) (2018-09-11,89.316197) (2018-09-12,89.329140) (2018-09-13,89.423887) (2018-09-14,91.066227) (2018-09-15,91.229010) (2018-09-16,91.793988) (2018-09-17,91.902667) (2018-09-18,92.096692) (2018-09-19,92.152661) (2018-09-20,92.842102) (2018-09-21,92.850229) (2018-09-22,92.869813) (2018-09-23,92.869813) (2018-09-24,93.077175) (2018-09-25,93.271111) (2018-09-26,93.589019) (2018-09-27,93.674800) (2018-09-28,94.742649) (2018-09-29,95.141184) (2018-09-30,95.694700) (2018-10-01,95.719618) (2018-10-02,96.078726) (2018-10-03,96.483290) (2018-10-04,96.588708) (2018-10-05,97.938367) (2018-10-06,99.175658) (2018-10-07,102.339115) (2018-10-08,103.179044) (2018-10-09,103.525194) (2018-10-10,111.039866) (2018-10-11,111.192984) (2018-10-12,113.143185) (2018-10-13,117.081931) (2018-10-14,117.822593) (2018-10-15,118.876609) (2018-10-16,120.089945) (2018-10-17,122.250668) (2018-10-18,123.242968) (2018-10-19,124.206540) (2018-10-20,126.219637) (2018-10-21,126.847249) (2018-10-22,127.644925) (2018-10-23,128.815889) (2018-10-24,129.407186) (2018-10-25,129.992234) (2018-10-26,130.602749) (2018-10-27,131.553930) (2018-10-28,131.929049) (2018-10-29,132.404826) (2018-10-30,132.868361) (2018-10-31,133.492758) (2018-11-01,133.706016) (2018-11-02,134.039973) (2018-11-03,134.398645) (2018-11-04,134.485263) (2018-11-05,134.760113) (2018-11-06,135.703372) (2018-11-07,136.173141) (2018-11-08,136.635068) (2018-11-09,137.397277) (2018-11-10,143.429019) (2018-11-11,143.782385) (2018-11-12,145.779666) (2018-11-13,146.381584) (2018-11-14,146.588411) (2018-11-15,148.527227) (2018-11-16,149.023731) (2018-11-17,150.719807) (2018-11-18,150.990486) (2018-11-19,152.632026) (2018-11-20,154.272674) (2018-11-21,154.641937) (2018-11-22,154.989654) (2018-11-23,158.584421) (2018-11-24,158.656146) (2018-11-25,158.688161) (2018-11-26,159.206599) (2018-11-27,161.865982) (2018-11-28,162.240264) (2018-11-29,165.555297) (2018-11-30,166.911423) (2018-12-01,169.521062) (2018-12-02,170.588084) (2018-12-03,171.549210) (2018-12-04,175.667065) (2018-12-05,176.016898) (2018-12-06,178.640631) (2018-12-07,180.766919) (2018-12-08,181.098849) (2018-12-09,182.622515) (2018-12-10,184.580515) (2018-12-11,185.157319) (2018-12-12,186.502339) (2018-12-13,186.705248) (2018-12-14,186.807102) (2018-12-15,210.375447) (2018-12-16,228.223138) (2018-12-17,228.559248) (2018-12-18,228.801580) (2018-12-19,229.038200) (2018-12-20,229.172552) (2018-12-21,229.351759) (2018-12-22,229.645627) (2018-12-23,232.297476) (2018-12-24,232.425542) (2018-12-25,232.441699) (2018-12-26,232.582381) (2018-12-27,232.617523) (2018-12-28,232.724481) (2018-12-29,233.626199) (2018-12-30,234.921571) (2018-12-31,235.162812) (2019-01-01,235.506238) (2019-01-02,235.948693) (2019-01-03,236.067420) (2019-01-04,239.706734) (2019-01-05,239.999050) (2019-01-06,240.278321) (2019-01-07,243.738468) (2019-01-08,243.925994) (2019-01-09,244.013624) (2019-01-10,244.998229) (2019-01-11,245.150935) (2019-01-12,245.258237) (2019-01-13,245.296159) (2019-01-14,245.987426) (2019-01-15,246.023843) (2019-01-16,246.034713) (2019-01-17,246.239599) (2019-01-18,246.746932) (2019-01-19,246.897207) (2019-01-20,247.244316) (2019-01-21,249.087809) (2019-01-22,249.507243) (2019-01-23,250.164622) (2019-01-24,251.986780) (2019-01-25,252.857433) (2019-01-26,253.015584) (2019-01-27,253.529070) (2019-01-28,256.289315) (2019-01-29,256.772787) (2019-01-30,257.737804) (2019-01-31,257.779744) (2019-02-01,258.064606) (2019-02-02,258.203451) (2019-02-03,259.200300) (2019-02-04,259.309352) (2019-02-05,259.340453) (2019-02-06,259.469055) (2019-02-07,260.500910) (2019-02-08,260.721432) (2019-02-09,260.824972) (2019-02-10,261.265395) (2019-02-11,262.052979) (2019-02-12,262.126452) (2019-02-13,262.443332) (2019-02-14,262.467363) (2019-02-15,262.470412) (2019-02-16,262.599022) (2019-02-17,265.646145) (2019-02-18,265.692061) (2019-02-19,265.818861) (2019-02-20,266.277770) (2019-02-21,266.310120) (2019-02-22,266.410941) (2019-02-23,266.492616) (2019-02-24,267.133936) (2019-02-25,267.170083) (2019-02-26,268.042928) (2019-02-27,268.194879) (2019-02-28,268.424155) (2019-03-01,268.581961) (2019-03-02,270.974040) (2019-03-03,271.063742) (2019-03-04,271.596430) (2019-03-05,271.617525) (2019-03-06,271.674918) (2019-03-07,272.913093) (2019-03-08,272.914328) (2019-03-09,272.930050) (2019-03-10,273.068145) (2019-03-11,273.151287) (2019-03-12,273.151287) (2019-03-13,273.308421) (2019-03-14,273.334149) (2019-03-15,274.100493) (2019-03-16,274.108118) (2019-03-17,274.244661) (2019-03-18,275.300798) (2019-03-19,282.463473) (2019-03-20,282.882573) (2019-03-21,283.027586) (2019-03-22,283.118208) (2019-03-23,283.205633) }; +\addplot+ coordinates {(2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.000000) (2018-09-27,0.000000) (2018-09-28,0.000000) (2018-09-29,0.000000) (2018-09-30,0.000000) (2018-10-01,0.000000) (2018-10-02,0.000000) (2018-10-03,0.000000) (2018-10-04,0.000000) (2018-10-05,0.000000) (2018-10-06,0.000000) (2018-10-07,0.000000) (2018-10-08,0.000000) (2018-10-09,0.000000) (2018-10-10,0.000000) (2018-10-11,0.000000) (2018-10-12,0.000000) (2018-10-13,0.000000) (2018-10-14,0.000000) (2018-10-15,0.000000) (2018-10-16,0.000000) (2018-10-17,0.000000) (2018-10-18,0.000000) (2018-10-19,0.000000) (2018-10-20,0.000000) (2018-10-21,0.000000) (2018-10-22,0.000000) (2018-10-23,0.000000) (2018-10-24,0.000000) (2018-10-25,0.000000) (2018-10-26,0.000000) (2018-10-27,0.000000) (2018-10-28,0.000000) (2018-10-29,0.000000) (2018-10-30,0.000000) (2018-10-31,0.000000) (2018-11-01,0.000000) (2018-11-02,0.000000) (2018-11-03,0.000000) (2018-11-04,0.000000) (2018-11-05,0.000000) (2018-11-06,0.000000) (2018-11-07,0.000000) (2018-11-08,0.000000) (2018-11-09,0.000000) (2018-11-10,0.000000) (2018-11-11,0.000000) (2018-11-12,0.000000) (2018-11-13,0.000000) (2018-11-14,0.000000) (2018-11-15,0.000000) (2018-11-16,0.000000) (2018-11-17,0.000000) (2018-11-18,0.000000) (2018-11-19,0.000000) (2018-11-20,0.000000) (2018-11-21,0.000000) (2018-11-22,0.000000) (2018-11-23,0.000000) (2018-11-24,0.000000) (2018-11-25,0.000000) (2018-11-26,0.000000) (2018-11-27,0.000000) (2018-11-28,0.000000) (2018-11-29,0.000000) (2018-11-30,0.000000) (2018-12-01,0.000000) (2018-12-02,0.000000) (2018-12-03,0.000000) (2018-12-04,0.000000) (2018-12-05,0.000000) (2018-12-06,0.000000) (2018-12-07,0.000000) (2018-12-08,0.000000) (2018-12-09,0.000000) (2018-12-10,0.000000) (2018-12-11,0.000000) (2018-12-12,0.000000) (2018-12-13,0.000000) (2018-12-14,0.000000) (2018-12-15,0.000000) (2018-12-16,0.000000) (2018-12-17,0.000000) (2018-12-18,0.000000) (2018-12-19,0.000000) (2018-12-20,0.000000) (2018-12-21,0.000000) (2018-12-22,0.000000) (2018-12-23,0.000000) (2018-12-24,0.000000) (2018-12-25,0.000000) (2018-12-26,0.000000) (2018-12-27,0.000000) (2018-12-28,0.000000) (2018-12-29,0.000000) (2018-12-30,0.000000) (2018-12-31,0.000000) (2019-01-01,0.000000) (2019-01-02,0.000000) (2019-01-03,0.000000) (2019-01-04,0.000000) (2019-01-05,0.000000) (2019-01-06,0.151722) (2019-01-07,0.393107) (2019-01-08,34.811573) (2019-01-09,34.926996) (2019-01-10,35.539592) (2019-01-11,36.050886) (2019-01-12,36.726906) (2019-01-13,37.111932) (2019-01-14,37.325566) (2019-01-15,37.690325) (2019-01-16,39.470971) (2019-01-17,40.270193) (2019-01-18,40.599389) (2019-01-19,40.866280) (2019-01-20,41.343854) (2019-01-21,41.548853) (2019-01-22,41.713200) (2019-01-23,41.860422) (2019-01-24,42.570098) (2019-01-25,42.899369) (2019-01-26,46.233540) (2019-01-27,50.187657) (2019-01-28,51.304131) (2019-01-29,51.818774) (2019-01-30,52.192146) (2019-01-31,52.554258) (2019-02-01,52.937672) (2019-02-02,53.196437) (2019-02-03,53.425542) (2019-02-04,53.961186) (2019-02-05,54.217758) (2019-02-06,54.820065) (2019-02-07,55.319907) (2019-02-08,56.762751) (2019-02-09,56.968742) (2019-02-10,57.840947) (2019-02-11,58.115214) (2019-02-12,58.345172) (2019-02-13,58.485827) (2019-02-14,58.803834) (2019-02-15,61.964035) (2019-02-16,62.659102) (2019-02-17,63.359491) (2019-02-18,64.008905) (2019-02-19,64.327269) (2019-02-20,65.222879) (2019-02-21,65.832979) (2019-02-22,66.067096) (2019-02-23,66.408942) (2019-02-24,67.330332) (2019-02-25,70.156968) (2019-02-26,72.505364) (2019-02-27,73.570016) (2019-02-28,76.617560) (2019-03-01,77.295613) (2019-03-02,77.758328) (2019-03-03,78.146223) (2019-03-04,95.683400) (2019-03-05,96.319373) (2019-03-06,97.129418) (2019-03-07,98.356406) (2019-03-08,102.958467) (2019-03-09,118.027839) (2019-03-10,132.711847) (2019-03-11,134.180300) (2019-03-12,135.476685) (2019-03-13,137.213558) (2019-03-14,138.214601) (2019-03-15,139.371887) (2019-03-16,140.665308) (2019-03-17,143.667636) (2019-03-18,145.205808) (2019-03-19,147.044301) (2019-03-20,147.582713) (2019-03-21,148.325826) (2019-03-22,149.628482) (2019-03-23,149.926388) }; +\addplot+ coordinates {(2018-04-01,0.000000) (2018-04-02,0.000000) (2018-04-03,0.000000) (2018-04-04,0.000000) (2018-04-05,0.000000) (2018-04-06,0.000000) (2018-04-07,0.000000) (2018-04-08,0.000000) (2018-04-09,0.000000) (2018-04-10,0.000000) (2018-04-11,0.000000) (2018-04-12,0.000000) (2018-04-13,0.000000) (2018-04-14,0.000000) (2018-04-15,0.000000) (2018-04-16,0.000000) (2018-04-17,0.000000) (2018-04-18,0.000000) (2018-04-19,0.000000) (2018-04-20,0.000000) (2018-04-21,0.000000) (2018-04-22,0.000000) (2018-04-23,0.000000) (2018-04-24,0.000000) (2018-04-25,0.000000) (2018-04-26,0.000000) (2018-04-27,0.000000) (2018-04-28,0.000000) (2018-04-29,0.000000) (2018-04-30,0.000000) (2018-05-01,0.000000) (2018-05-02,0.000000) (2018-05-03,0.000000) (2018-05-04,0.000000) (2018-05-05,0.000000) (2018-05-06,0.000000) (2018-05-07,0.000000) (2018-05-08,0.000000) (2018-05-09,0.000000) (2018-05-10,0.000000) (2018-05-11,0.000000) (2018-05-12,0.000000) (2018-05-13,0.000000) (2018-05-14,0.000000) (2018-05-15,0.000000) (2018-05-16,0.000000) (2018-05-17,0.000000) (2018-05-18,0.000000) (2018-05-19,0.000000) (2018-05-20,0.000000) (2018-05-21,0.000000) (2018-05-22,0.000000) (2018-05-23,0.000000) (2018-05-24,0.000000) (2018-05-25,0.000000) (2018-05-26,0.000000) (2018-05-27,0.000000) (2018-05-28,0.000000) (2018-05-29,0.000000) (2018-05-30,0.000000) (2018-05-31,0.000000) (2018-06-01,0.000000) (2018-06-02,0.000000) (2018-06-03,0.000000) (2018-06-04,0.000000) (2018-06-05,0.000000) (2018-06-06,0.000000) (2018-06-07,0.000000) (2018-06-08,0.000000) (2018-06-09,0.000000) (2018-06-10,0.000000) (2018-06-11,0.000000) (2018-06-12,0.000000) (2018-06-13,0.000000) (2018-06-14,0.000000) (2018-06-15,0.000000) (2018-06-16,0.000000) (2018-06-17,0.000000) (2018-06-18,0.000000) (2018-06-19,0.000000) (2018-06-20,0.000000) (2018-06-21,0.000000) (2018-06-22,0.000000) (2018-06-23,0.000000) (2018-06-24,0.000000) (2018-06-25,0.000000) (2018-06-26,0.000000) (2018-06-27,0.000000) (2018-06-28,0.000000) (2018-06-29,0.000000) (2018-06-30,0.000000) (2018-07-01,0.000000) (2018-07-02,0.000000) (2018-07-03,0.000000) (2018-07-04,0.000000) (2018-07-05,0.000000) (2018-07-06,0.000000) (2018-07-07,0.000000) (2018-07-08,0.000000) (2018-07-09,0.000000) (2018-07-10,0.000000) (2018-07-11,0.000000) (2018-07-12,0.000000) (2018-07-13,0.000000) (2018-07-14,0.000000) (2018-07-15,0.000000) (2018-07-16,0.000000) (2018-07-17,0.000000) (2018-07-18,0.000000) (2018-07-19,0.000000) (2018-07-20,0.000000) (2018-07-21,0.000000) (2018-07-22,0.000000) (2018-07-23,0.000000) (2018-07-24,0.000000) (2018-07-25,0.000000) (2018-07-26,0.000000) (2018-07-27,0.000000) (2018-07-28,0.000000) (2018-07-29,0.000000) (2018-07-30,0.000000) (2018-07-31,0.000000) (2018-08-01,0.000000) (2018-08-02,0.000000) (2018-08-03,0.000000) (2018-08-04,0.000000) (2018-08-05,0.000000) (2018-08-06,0.000000) (2018-08-07,0.000000) (2018-08-08,0.000000) (2018-08-09,0.000000) (2018-08-10,0.000000) (2018-08-11,0.000000) (2018-08-12,0.000000) (2018-08-13,0.000000) (2018-08-14,0.000000) (2018-08-15,0.000000) (2018-08-16,0.000000) (2018-08-17,0.000000) (2018-08-18,0.000000) (2018-08-19,0.000000) (2018-08-20,0.000000) (2018-08-21,0.000000) (2018-08-22,0.000000) (2018-08-23,0.000000) (2018-08-24,0.000000) (2018-08-25,0.000000) (2018-08-26,0.000000) (2018-08-27,0.000000) (2018-08-28,0.000000) (2018-08-29,0.000000) (2018-08-30,0.000000) (2018-08-31,0.000000) (2018-09-01,0.000000) (2018-09-02,0.000000) (2018-09-03,0.000000) (2018-09-04,0.000000) (2018-09-05,0.000000) (2018-09-06,0.000000) (2018-09-07,0.000000) (2018-09-08,0.000000) (2018-09-09,0.000000) (2018-09-10,0.000000) (2018-09-11,0.000000) (2018-09-12,0.000000) (2018-09-13,0.000000) (2018-09-14,0.000000) (2018-09-15,0.000000) (2018-09-16,0.000000) (2018-09-17,0.000000) (2018-09-18,0.000000) (2018-09-19,0.000000) (2018-09-20,0.000000) (2018-09-21,0.000000) (2018-09-22,0.000000) (2018-09-23,0.000000) (2018-09-24,0.000000) (2018-09-25,0.000000) (2018-09-26,0.013961) (2018-09-27,0.082985) (2018-09-28,0.336361) (2018-09-29,0.407611) (2018-09-30,0.498020) (2018-10-01,0.728582) (2018-10-02,0.841074) (2018-10-03,0.871907) (2018-10-04,0.962865) (2018-10-05,1.653512) (2018-10-06,1.730180) (2018-10-07,1.940736) (2018-10-08,2.008430) (2018-10-09,2.105534) (2018-10-10,3.065269) (2018-10-11,5.344571) (2018-10-12,5.411885) (2018-10-13,5.626910) (2018-10-14,5.650303) (2018-10-15,5.917342) (2018-10-16,6.108060) (2018-10-17,7.812364) (2018-10-18,7.914821) (2018-10-19,10.248849) (2018-10-20,11.691189) (2018-10-21,12.032428) (2018-10-22,12.063877) (2018-10-23,12.304433) (2018-10-24,12.327189) (2018-10-25,12.394848) (2018-10-26,12.518043) (2018-10-27,12.768410) (2018-10-28,12.821846) (2018-10-29,12.909838) (2018-10-30,12.955353) (2018-10-31,12.990282) (2018-11-01,13.163086) (2018-11-02,13.228579) (2018-11-03,14.122513) (2018-11-04,14.238035) (2018-11-05,15.374562) (2018-11-06,15.445265) (2018-11-07,15.966054) (2018-11-08,16.385985) (2018-11-09,16.442028) (2018-11-10,16.451011) (2018-11-11,16.822137) (2018-11-12,16.828048) (2018-11-13,16.909885) (2018-11-14,17.021494) (2018-11-15,17.134024) (2018-11-16,17.173022) (2018-11-17,17.408830) (2018-11-18,17.441476) (2018-11-19,17.858498) (2018-11-20,18.223075) (2018-11-21,18.288452) (2018-11-22,18.344087) (2018-11-23,18.540685) (2018-11-24,18.579569) (2018-11-25,23.036694) (2018-11-26,24.396100) (2018-11-27,24.575367) (2018-11-28,24.865321) (2018-11-29,25.605718) (2018-11-30,26.189447) (2018-12-01,26.224448) (2018-12-02,26.304368) (2018-12-03,26.350093) (2018-12-04,26.794779) (2018-12-05,26.892535) (2018-12-06,29.962206) (2018-12-07,31.584134) (2018-12-08,31.966970) (2018-12-09,32.214491) (2018-12-10,32.307367) (2018-12-11,32.434861) (2018-12-12,32.440336) (2018-12-13,33.295422) (2018-12-14,33.473022) (2018-12-15,35.565022) (2018-12-16,35.963429) (2018-12-17,36.167102) (2018-12-18,36.498228) (2018-12-19,38.081832) (2018-12-20,38.456949) (2018-12-21,38.863478) (2018-12-22,39.382259) (2018-12-23,39.786230) (2018-12-24,39.937827) (2018-12-25,41.154930) (2018-12-26,41.422719) (2018-12-27,41.585001) (2018-12-28,41.814446) (2018-12-29,42.609358) (2018-12-30,45.105837) (2018-12-31,45.198190) (2019-01-01,45.492894) (2019-01-02,45.624750) (2019-01-03,45.983378) (2019-01-04,46.027485) (2019-01-05,46.465929) (2019-01-06,46.509512) (2019-01-07,46.562726) (2019-01-08,46.643693) (2019-01-09,47.952560) (2019-01-10,48.695844) (2019-01-11,48.719364) (2019-01-12,50.774667) (2019-01-13,50.925500) (2019-01-14,53.115943) (2019-01-15,53.963983) (2019-01-16,54.934742) (2019-01-17,54.946203) (2019-01-18,54.993459) (2019-01-19,56.229808) (2019-01-20,57.047083) (2019-01-21,57.094250) (2019-01-22,58.392306) (2019-01-23,58.763769) (2019-01-24,59.758801) (2019-01-25,60.335737) (2019-01-26,62.727795) (2019-01-27,63.046930) (2019-01-28,64.369396) (2019-01-29,65.151776) (2019-01-30,65.566916) (2019-01-31,67.529609) (2019-02-01,68.335660) (2019-02-02,70.306619) (2019-02-03,71.370357) (2019-02-04,72.239579) (2019-02-05,72.257646) (2019-02-06,73.278665) (2019-02-07,73.350547) (2019-02-08,75.618309) (2019-02-09,77.951935) (2019-02-10,78.148474) (2019-02-11,80.336419) (2019-02-12,82.847063) (2019-02-13,85.231031) (2019-02-14,86.067214) (2019-02-15,86.333693) (2019-02-16,86.487931) (2019-02-17,86.597420) (2019-02-18,88.351447) (2019-02-19,90.086562) (2019-02-20,91.991844) (2019-02-21,93.215825) (2019-02-22,94.155828) (2019-02-23,94.339323) (2019-02-24,94.597768) (2019-02-25,94.724532) (2019-02-26,96.981481) (2019-02-27,99.170342) (2019-02-28,100.309091) (2019-03-01,100.370507) (2019-03-02,103.113233) (2019-03-03,104.655838) (2019-03-04,106.298947) (2019-03-05,109.063298) (2019-03-06,110.551564) (2019-03-07,112.837876) (2019-03-08,114.381845) (2019-03-09,114.485765) (2019-03-10,114.519148) (2019-03-11,114.945138) (2019-03-12,116.021751) (2019-03-13,117.158079) (2019-03-14,119.492853) (2019-03-15,119.709981) (2019-03-16,119.807294) (2019-03-17,121.142285) (2019-03-18,123.116850) (2019-03-19,123.540885) (2019-03-20,124.502629) (2019-03-21,127.109401) (2019-03-22,128.398779) (2019-03-23,130.740596) }; + + +\end{axis} +\end{tikzpicture} diff --git a/reports/pure_revenue_gas.tex b/reports/pure_revenue_gas.tex new file mode 100644 index 0000000..cd7ed33 --- /dev/null +++ b/reports/pure_revenue_gas.tex @@ -0,0 +1,29 @@ + +\begin{tikzpicture} +\begin{axis}[clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year}, xlabel={Date (MM-YY)}, ylabel={Mean Gas Used Per Trade},title={Gas Trends in Pure Revenue}, + log basis y={10}, ymin=0, ymax=300000, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, +scatter/use mapped color={ + draw=mapped color, + fill=mapped color!70, + }, colorbar, point meta= explicit, + colorbar style={ + title={Mean Trades/TX}, + %extracolorbar% + }, +%extraaxisoptions% +] +\addplot[scatter, only marks,opacity=0.5] coordinates { (2017-07-01,121385.250000) [2.000000] (2017-07-02,108272.111111) [2.000000] (2017-07-03,114594.000000) [2.000000] (2017-07-04,115266.714286) [2.000000] (2017-07-05,99512.666667) [2.000000] (2017-07-06,106641.000000) [2.000000] (2017-07-07,106943.611111) [2.000000] (2017-07-08,99735.000000) [2.000000] (2017-07-09,98488.666667) [2.000000] (2017-07-10,100374.866667) [2.000000] (2017-07-11,108394.526316) [2.000000] (2017-07-12,101517.500000) [2.000000] (2017-07-13,101620.675676) [2.000000] (2017-07-14,100081.022727) [2.000000] (2017-07-15,99472.461538) [2.000000] (2017-07-16,106300.714286) [2.000000] (2017-07-17,100085.967742) [2.000000] (2017-07-18,99523.500000) [2.000000] (2017-07-19,98041.000000) [2.000000] (2017-07-20,103803.200000) [2.000000] (2017-07-21,106764.400000) [2.000000] (2017-07-22,100157.416667) [2.000000] (2017-07-23,98558.600000) [2.000000] (2017-07-24,97556.106667) [2.000000] (2017-07-25,99102.416667) [2.000000] (2017-07-26,98643.375000) [2.000000] (2017-07-27,99305.200000) [2.000000] (2017-07-28,109977.375000) [2.000000] (2017-07-29,111319.200000) [2.000000] (2017-07-30,99224.222222) [2.000000] (2017-07-31,100835.272727) [2.000000] (2017-08-01,99997.400000) [2.000000] (2017-08-02,103887.600000) [2.000000] (2017-08-03,100111.200000) [2.000000] (2017-08-04,100440.258065) [2.000000] (2017-08-05,99035.388889) [2.000000] (2017-08-06,98294.090909) [2.000000] (2017-08-07,97474.029412) [2.000000] (2017-08-08,101306.521739) [2.000000] (2017-08-09,99060.695652) [2.000000] (2017-08-10,97055.916667) [2.277778] (2017-08-11,99974.554167) [2.300000] (2017-08-12,102374.295652) [2.065217] (2017-08-13,101013.965517) [2.000000] (2017-08-14,102091.342105) [2.000000] (2017-08-15,100853.905233) [2.049505] (2017-08-16,98986.082803) [2.000000] (2017-08-17,101140.138211) [2.000000] (2017-08-18,94397.275229) [2.000000] (2017-08-19,100187.490566) [2.000000] (2017-08-20,95891.507576) [2.000000] (2017-08-21,94303.654639) [2.000000] (2017-08-22,86570.216667) [2.044444] (2017-08-23,95444.412281) [2.000000] (2017-08-24,94080.987179) [2.000000] (2017-08-25,89040.833333) [2.000000] (2017-08-26,89112.772727) [2.000000] (2017-08-27,88923.622340) [2.000000] (2017-08-28,87907.688811) [2.000000] (2017-08-29,87544.170833) [2.033333] (2017-08-30,87059.627754) [2.042918] (2017-08-31,88462.941003) [2.044248] (2017-09-01,87593.061828) [2.008065] (2017-09-02,86628.334586) [2.015038] (2017-09-03,86323.127525) [2.015152] (2017-09-04,86324.086481) [2.066667] (2017-09-05,85875.539595) [2.022099] (2017-09-06,86361.891720) [2.003185] (2017-09-07,87265.478584) [2.039474] (2017-09-08,86888.900424) [2.016949] (2017-09-09,89630.564451) [2.063291] (2017-09-10,95859.536232) [2.081522] (2017-09-11,91069.639881) [2.062500] (2017-09-12,94560.194845) [2.067010] (2017-09-13,93137.678523) [2.065041] (2017-09-14,95919.914414) [2.162162] (2017-09-15,95233.799699) [2.090361] (2017-09-16,98014.191288) [2.022727] (2017-09-17,98570.128378) [2.013514] (2017-09-18,97163.029958) [2.025316] (2017-09-19,96576.737245) [2.005102] (2017-09-20,95929.849153) [2.000000] (2017-09-21,95841.744318) [2.000000] (2017-09-22,99442.542424) [2.000000] (2017-09-23,97742.026316) [2.000000] (2017-09-24,95581.143917) [2.000000] (2017-09-25,97175.898864) [2.000000] (2017-09-26,98224.492788) [2.000000] (2017-09-27,98482.745614) [2.000000] (2017-09-28,95270.925178) [2.000000] (2017-09-29,97512.344697) [2.000000] (2017-09-30,92911.189227) [2.000000] (2017-10-01,92858.568733) [2.000000] (2017-10-02,92690.349432) [2.000000] (2017-10-03,93740.007062) [2.000000] (2017-10-04,93607.930435) [2.000000] (2017-10-05,96957.393429) [2.000000] (2017-10-06,94123.937012) [2.000000] (2017-10-07,95381.754505) [2.000000] (2017-10-08,95752.023404) [2.000000] (2017-10-09,95363.683190) [2.000000] (2017-10-10,94208.249153) [2.000000] (2017-10-11,95478.853846) [2.000000] (2017-10-12,96546.828054) [2.000000] (2017-10-13,95680.154000) [2.000000] (2017-10-14,95613.768571) [2.000000] (2017-10-15,96685.808571) [2.000000] (2017-10-16,95352.860606) [2.000000] (2017-10-17,92334.250000) [2.000000] (2017-10-18,91532.439189) [2.000000] (2017-10-19,95018.686667) [1.993333] (2017-10-20,93357.375926) [2.000000] (2017-10-21,91617.939024) [2.000000] (2017-10-22,89423.067485) [2.000000] (2017-10-23,94074.229839) [1.997312] (2017-10-24,95203.450980) [2.000000] (2017-10-25,93242.120380) [2.000000] (2017-10-26,93393.727273) [2.001245] (2017-10-27,93164.015936) [2.002656] (2017-10-28,95099.153444) [2.004000] (2017-10-29,93737.763736) [2.018838] (2017-10-30,94820.322487) [2.036276] (2017-10-31,94923.470666) [2.027954] (2017-11-01,94293.730853) [2.055976] (2017-11-02,96919.352124) [2.032316] (2017-11-03,92324.203966) [2.027491] (2017-11-04,97943.045259) [2.011494] (2017-11-05,97821.710660) [2.000000] (2017-11-06,97688.262337) [2.167702] (2017-11-07,96166.472851) [2.197697] (2017-11-08,96085.486423) [2.202875] (2017-11-09,98266.602066) [2.291139] (2017-11-10,98393.482545) [2.225877] (2017-11-11,96080.928470) [2.308036] (2017-11-12,98174.038963) [2.279208] (2017-11-13,101130.460187) [2.337955] (2017-11-14,101445.859371) [2.291958] (2017-11-15,98552.587451) [2.352210] (2017-11-16,93787.572697) [2.236585] (2017-11-17,99689.053106) [2.291351] (2017-11-18,100807.559691) [2.219554] (2017-11-19,97685.097471) [2.182131] (2017-11-20,96113.297187) [2.235169] (2017-11-21,98999.784337) [2.302267] (2017-11-22,99236.766062) [2.245161] (2017-11-23,97717.213559) [2.235943] (2017-11-24,98486.440307) [2.210604] (2017-11-25,96297.205092) [2.172566] (2017-11-26,95107.935624) [2.506908] (2017-11-27,99872.886099) [2.236934] (2017-11-28,100746.288620) [2.346614] (2017-11-29,98858.292183) [2.344444] (2017-11-30,98564.302377) [2.382406] (2017-12-01,95243.176201) [2.295352] (2017-12-02,97462.565138) [2.258278] (2017-12-03,97468.996801) [2.296943] (2017-12-04,93500.955777) [2.293722] (2017-12-05,91841.282777) [2.250000] (2017-12-06,91958.916265) [2.253776] (2017-12-07,90996.232148) [2.109005] (2017-12-08,87806.982914) [2.081794] (2017-12-09,86599.313675) [2.056410] (2017-12-10,88217.475093) [2.103627] (2017-12-11,91471.413911) [2.280899] (2017-12-12,91022.332254) [2.453521] (2017-12-13,89741.582952) [2.118421] (2017-12-14,87185.230278) [2.164706] (2017-12-15,94693.654714) [2.437500] (2017-12-16,95355.116039) [2.369115] (2017-12-17,94009.579922) [2.254121] (2017-12-18,93226.004552) [2.403390] (2017-12-19,89309.376691) [2.464646] (2017-12-20,86998.376739) [2.436214] (2017-12-21,85078.173469) [2.000000] (2017-12-22,96418.989011) [2.237762] (2017-12-23,100253.826917) [2.264574] (2017-12-24,100386.802536) [2.251208] (2017-12-25,98984.361745) [2.307087] (2017-12-26,98034.999536) [2.408669] (2017-12-27,100524.099423) [2.590793] (2017-12-28,95960.056437) [2.336735] (2017-12-29,94711.806706) [2.575000] (2017-12-30,96671.707350) [2.393548] (2017-12-31,95601.808172) [2.376923] (2018-01-01,96074.294941) [2.364431] (2018-01-02,91751.872630) [2.315421] (2018-01-03,93621.178857) [2.330033] (2018-01-04,90541.072146) [2.208075] (2018-01-05,89812.074070) [2.437500] (2018-01-06,89641.314838) [2.280210] (2018-01-07,90624.854753) [2.450734] (2018-01-08,91973.138113) [2.185268] (2018-01-09,87698.957628) [2.156658] (2018-01-10,89704.018166) [2.093426] (2018-01-11,88035.305906) [2.314448] (2018-01-12,91181.049229) [2.333333] (2018-01-13,89063.417371) [2.155914] (2018-01-14,90152.195862) [2.175532] (2018-01-15,86972.190388) [2.172589] (2018-01-16,85631.502356) [2.049470] (2018-01-17,89491.616864) [2.186147] (2018-01-18,89669.640453) [2.228188] (2018-01-19,90604.683057) [2.285047] (2018-01-20,91866.561439) [2.250000] (2018-01-21,86866.213810) [2.097619] (2018-01-22,87469.695188) [2.211957] (2018-01-23,92125.405879) [2.172205] (2018-01-24,92302.717289) [2.341357] (2018-01-25,90396.690275) [2.375242] (2018-01-26,87357.514899) [2.351090] (2018-01-27,90264.642886) [2.502024] (2018-01-28,93346.354370) [2.319512] (2018-01-29,94599.210063) [2.253823] (2018-01-30,89183.117830) [2.120301] (2018-01-31,91549.267809) [2.117816] (2018-02-01,88302.910813) [2.169591] (2018-02-02,89294.148203) [2.099217] (2018-02-03,92437.382950) [2.212121] (2018-02-04,90025.261662) [2.232198] (2018-02-05,91527.650213) [2.114198] (2018-02-06,90308.479008) [2.189702] (2018-02-07,89010.519292) [2.146179] (2018-02-08,87862.820554) [2.172012] (2018-02-09,88470.318271) [2.256560] (2018-02-10,86693.151269) [2.129213] (2018-02-11,88717.722701) [2.178082] (2018-02-12,91760.938929) [2.126354] (2018-02-13,90814.637145) [2.156951] (2018-02-14,88059.378523) [2.142276] (2018-02-15,89741.753130) [2.182741] (2018-02-16,91715.054772) [2.048387] (2018-02-17,89587.416840) [2.166667] (2018-02-18,93979.514391) [2.108434] (2018-02-19,89818.145086) [2.095618] (2018-02-20,89609.694585) [2.055838] (2018-02-21,95302.050296) [2.011834] (2018-02-22,90673.311694) [2.209677] (2018-02-23,93062.217105) [2.013158] (2018-02-24,94925.387500) [2.112500] (2018-02-25,98554.729921) [2.094488] (2018-02-26,94454.007807) [2.210526] (2018-02-27,99085.347436) [2.066667] (2018-02-28,100325.753889) [2.152381] (2018-03-01,97639.308515) [2.113537] (2018-03-02,95533.228216) [2.107884] (2018-03-03,98477.692485) [2.134969] (2018-03-04,92829.132036) [2.095808] (2018-03-05,92011.203704) [2.088889] (2018-03-06,97626.557343) [2.099010] (2018-03-07,99211.567139) [2.105263] (2018-03-08,99781.718159) [2.141892] (2018-03-09,93155.629693) [2.047782] (2018-03-10,96587.117864) [2.077348] (2018-03-11,93227.085859) [2.000000] (2018-03-12,95860.216480) [2.067039] (2018-03-13,79229.799237) [2.076336] (2018-03-14,93135.104660) [2.094787] (2018-03-15,85167.615721) [2.043668] (2018-03-16,79041.561181) [2.025316] (2018-03-17,72493.984940) [2.000000] (2018-03-18,75244.801494) [2.084906] (2018-03-19,86732.921011) [2.110638] (2018-03-20,81555.301230) [2.087432] (2018-03-21,82682.420763) [2.192090] (2018-03-22,79073.433962) [2.094340] (2018-03-23,71782.177178) [2.125000] (2018-03-24,70848.139339) [2.198198] (2018-03-25,74732.810345) [2.137931] (2018-03-26,85662.736111) [2.134409] (2018-03-27,95005.173077) [2.051282] (2018-03-28,75401.524895) [2.067511] (2018-03-29,75994.698940) [2.092486] (2018-03-30,88954.130090) [2.081448] (2018-03-31,86228.819820) [2.081081] (2018-04-01,101399.147840) [2.074074] (2018-04-02,95460.008760) [2.138365] (2018-04-03,77322.922251) [2.097938] (2018-04-04,79160.689873) [2.075949] (2018-04-05,81545.237121) [2.157576] (2018-04-06,81706.181800) [2.337662] (2018-04-07,80004.225309) [2.135802] (2018-04-08,81934.459048) [2.200000] (2018-04-09,78329.780541) [2.094241] (2018-04-10,76085.770531) [2.067633] (2018-04-11,72184.149485) [2.072165] (2018-04-12,83345.333668) [2.188755] (2018-04-13,76516.016141) [2.112613] (2018-04-14,79120.860106) [2.076596] (2018-04-15,72458.951667) [2.170000] (2018-04-16,78447.814913) [2.077220] (2018-04-17,76503.784107) [2.114286] (2018-04-18,71133.628656) [2.111675] (2018-04-19,73943.716752) [2.085714] (2018-04-20,78727.516493) [2.101190] (2018-04-21,83232.832796) [2.096774] (2018-04-22,77107.931075) [2.037383] (2018-04-23,79001.505912) [2.020270] (2018-04-24,73702.039474) [2.055402] (2018-04-25,80081.711557) [2.040115] (2018-04-26,71121.569901) [2.026316] (2018-04-27,70467.256608) [2.070485] (2018-04-28,69555.127990) [2.009569] (2018-04-29,73587.755858) [2.041841] (2018-04-30,80547.243164) [2.039062] (2018-05-01,70210.075124) [2.109453] (2018-05-02,73075.900538) [2.064516] (2018-05-03,78627.380556) [2.041667] (2018-05-04,70697.999167) [2.050000] (2018-05-05,69939.140830) [2.052402] (2018-05-06,73643.193869) [2.051813] (2018-05-07,78476.966256) [2.028169] (2018-05-08,74138.389017) [2.115607] (2018-05-09,74393.477392) [2.056782] (2018-05-10,70958.612069) [2.000000] (2018-05-11,70831.327411) [2.010152] (2018-05-12,78199.525735) [2.014706] (2018-05-13,78868.423077) [2.000000] (2018-05-14,61129.545455) [2.069930] (2018-05-15,69053.216524) [2.034188] (2018-05-16,67213.324201) [2.068493] (2018-05-17,60963.404580) [2.000000] (2018-05-18,60722.060606) [2.012121] (2018-05-19,74078.134409) [2.000000] (2018-05-20,64837.152397) [2.082192] (2018-05-21,66578.145270) [2.000000] (2018-05-22,68467.025000) [2.025000] (2018-05-23,78252.906542) [2.000000] (2018-05-24,63382.783333) [2.033333] (2018-05-25,74568.174129) [2.059701] (2018-05-26,71669.910112) [2.022472] (2018-05-27,73893.503846) [2.061538] (2018-05-28,71208.246377) [2.028986] (2018-05-29,73829.887097) [2.021505] (2018-05-30,69116.645468) [2.052632] (2018-05-31,77357.236111) [2.000000] (2018-06-01,72727.617188) [2.000000] (2018-06-02,72360.016055) [2.055046] (2018-06-03,72871.858696) [2.043478] (2018-06-04,67333.131250) [2.075000] (2018-06-05,71858.611111) [2.040404] (2018-06-06,68456.215426) [2.021277] (2018-06-07,69668.013736) [2.043956] (2018-06-08,67433.415493) [2.028169] (2018-06-09,72571.460526) [2.052632] (2018-06-10,72291.250000) [2.095238] (2018-06-11,84126.389552) [2.373134] (2018-06-12,80372.293810) [2.209524] (2018-06-13,81643.414683) [2.152778] (2018-06-14,77743.565934) [2.021978] (2018-06-15,80296.391791) [2.119403] (2018-06-16,90423.632143) [2.142857] (2018-06-17,93213.161458) [2.083333] (2018-06-18,96513.957904) [2.103093] (2018-06-19,93853.457843) [2.423529] (2018-06-20,94267.214764) [2.451087] (2018-06-21,98167.403392) [2.318584] (2018-06-22,101924.690290) [2.421875] (2018-06-23,107904.138889) [2.333333] (2018-06-24,102120.433016) [2.390476] (2018-06-25,96451.264423) [2.413462] (2018-06-26,98527.244444) [2.475000] (2018-06-27,89838.116667) [2.276119] (2018-06-28,99528.402859) [2.430657] (2018-06-29,110638.951485) [2.465347] (2018-06-30,88787.063492) [2.488550] (2018-07-01,91647.927273) [2.290909] (2018-07-02,85525.766667) [2.288889] (2018-07-03,82255.670635) [2.309524] (2018-07-04,83157.339080) [2.206897] (2018-07-05,93286.698198) [2.459459] (2018-07-06,97008.705238) [2.714286] (2018-07-07,91202.089744) [2.153846] (2018-07-08,84486.273050) [2.191489] (2018-07-09,102920.662879) [2.348485] (2018-07-10,81548.041026) [2.061538] (2018-07-11,73977.378788) [2.000000] (2018-07-12,86785.114583) [2.312500] (2018-07-13,91834.162447) [2.531646] (2018-07-14,104214.874359) [2.307692] (2018-07-15,118680.265823) [2.392405] (2018-07-16,108216.912661) [2.449612] (2018-07-17,95742.520062) [2.425926] (2018-07-18,98411.427233) [2.483660] (2018-07-19,98388.509353) [2.352518] (2018-07-20,110687.678800) [2.670330] (2018-07-21,119806.741082) [2.692982] (2018-07-22,119077.544139) [2.692308] (2018-07-23,121895.993011) [2.703226] (2018-07-24,111601.371121) [2.576037] (2018-07-25,107050.571918) [2.554795] (2018-07-26,99010.851282) [2.353846] (2018-07-27,103798.364216) [2.482353] (2018-07-28,103891.355620) [2.453488] (2018-07-29,110994.229046) [2.775362] (2018-07-30,113847.501111) [2.426667] (2018-07-31,110060.115385) [2.525641] (2018-08-01,100015.198851) [2.468966] (2018-08-02,97438.274674) [2.351955] (2018-08-03,100833.782552) [2.348958] (2018-08-04,98806.769922) [2.460938] (2018-08-05,105641.575964) [2.442177] (2018-08-06,103789.698198) [2.387387] (2018-08-07,91834.682051) [2.355769] (2018-08-08,123323.420411) [2.718447] (2018-08-09,105347.509184) [2.510204] (2018-08-10,120431.323796) [2.771930] (2018-08-11,136026.687711) [2.819876] (2018-08-12,107708.644608) [2.323529] (2018-08-13,96539.757407) [2.409722] (2018-08-14,112962.406341) [2.505435] (2018-08-15,106593.160714) [2.571429] (2018-08-16,97937.164773) [2.378788] (2018-08-17,109308.921865) [2.688073] (2018-08-18,110658.786325) [2.444444] (2018-08-19,105984.282233) [2.433962] (2018-08-20,105597.708038) [2.432624] (2018-08-21,106743.468841) [2.579710] (2018-08-22,117964.699219) [2.546875] (2018-08-23,117193.391827) [2.625000] (2018-08-24,116169.833871) [2.580645] (2018-08-25,91134.304480) [2.354839] (2018-08-26,111861.032990) [2.505155] (2018-08-27,114164.054198) [2.572519] (2018-08-28,105766.439456) [2.471429] (2018-08-29,112640.256133) [2.581818] (2018-08-30,108123.528674) [2.537634] (2018-08-31,110476.712025) [2.531646] (2018-09-01,104219.842746) [2.534884] (2018-09-02,98940.113506) [2.465517] (2018-09-03,89438.368056) [2.309524] (2018-09-04,91154.644841) [2.321429] (2018-09-05,106954.973858) [2.417808] (2018-09-06,123445.052163) [2.389313] (2018-09-07,116369.090972) [2.383333] (2018-09-08,99272.794844) [2.330935] (2018-09-09,113724.857357) [2.513514] (2018-09-10,99406.704762) [2.485714] (2018-09-11,114570.421121) [2.508621] (2018-09-12,104359.666908) [2.405797] (2018-09-13,119834.715996) [2.465517] (2018-09-14,129841.834475) [2.328767] (2018-09-15,131656.082633) [2.260504] (2018-09-16,115066.236772) [2.333333] (2018-09-17,97259.469212) [2.339901] (2018-09-18,107250.704156) [2.350877] (2018-09-19,104953.676471) [2.254902] (2018-09-20,120778.714720) [2.481752] (2018-09-21,129264.302778) [2.520833] (2018-09-22,114443.629227) [2.594203] (2018-09-23,101855.205453) [2.516129] (2018-09-24,111130.435897) [2.200000] (2018-09-25,115424.645669) [2.299213] (2018-09-26,113435.529070) [2.348837] (2018-09-27,99778.651282) [2.276923] (2018-09-28,101321.725000) [2.200000] (2018-09-29,121330.825641) [2.353846] (2018-09-30,102609.680000) [2.380000] (2018-10-01,126577.309942) [2.561404] (2018-10-02,134914.999435) [2.644068] (2018-10-03,99437.076550) [2.325581] (2018-10-04,105156.475556) [2.433333] (2018-10-05,115823.320537) [2.516588] (2018-10-06,93017.862500) [2.300000] (2018-10-07,85381.539103) [2.123077] (2018-10-08,87529.890351) [2.184211] (2018-10-09,114094.230287) [2.483871] (2018-10-10,121961.734932) [2.055351] (2018-10-11,136538.024797) [2.512195] (2018-10-12,90404.148765) [2.197531] (2018-10-13,119208.648876) [2.247191] (2018-10-14,107390.979039) [2.147239] (2018-10-15,102542.542299) [2.441379] (2018-10-16,113344.103448) [2.373563] (2018-10-17,118366.958333) [2.404000] (2018-10-18,86352.600000) [2.217143] (2018-10-19,133914.215191) [2.749077] (2018-10-20,132108.101732) [2.666667] (2018-10-21,122987.526379) [2.618705] (2018-10-22,98477.087383) [2.392523] (2018-10-23,95156.965636) [2.247423] (2018-10-24,116946.405063) [2.354430] (2018-10-25,104091.609649) [2.336842] (2018-10-26,107176.654639) [2.298969] (2018-10-27,99827.772000) [2.266667] (2018-10-28,111160.872222) [2.388889] (2018-10-29,95845.285088) [2.289474] (2018-10-30,94706.923676) [2.336449] (2018-10-31,99291.568576) [2.375000] (2018-11-01,124174.934239) [2.532609] (2018-11-02,94266.221264) [2.275862] (2018-11-03,118252.526955) [2.629630] (2018-11-04,104022.085185) [2.388889] (2018-11-05,120921.675389) [2.523364] (2018-11-06,99196.878404) [2.478873] (2018-11-07,101830.317251) [2.184211] (2018-11-08,107803.521970) [2.336364] (2018-11-09,104399.173077) [2.346154] (2018-11-10,98569.051370) [2.410959] (2018-11-11,97870.546448) [2.311475] (2018-11-12,111354.005093) [2.847222] (2018-11-13,104097.672135) [2.468750] (2018-11-14,122440.322931) [2.751678] (2018-11-15,107487.882540) [2.600000] (2018-11-16,106764.176503) [2.516393] (2018-11-17,103828.586081) [2.406593] (2018-11-18,102021.789308) [2.698113] (2018-11-19,116503.799034) [2.702899] (2018-11-20,114188.225768) [2.581560] (2018-11-21,127771.782922) [2.641975] (2018-11-22,121031.092827) [2.607595] (2018-11-23,131214.010870) [2.724638] (2018-11-24,130852.202244) [2.788462] (2018-11-25,138829.491220) [2.696429] (2018-11-26,132213.182609) [2.686957] (2018-11-27,145503.913303) [2.541284] (2018-11-28,125116.714286) [2.476190] (2018-11-29,146669.872518) [2.680851] (2018-11-30,143071.944444) [2.366667] (2018-12-01,104013.576190) [2.400000] (2018-12-02,129063.031893) [2.419753] (2018-12-03,123282.036145) [2.481928] (2018-12-04,135626.300916) [2.417582] (2018-12-05,133180.961538) [2.615385] (2018-12-06,136664.242266) [2.313725] (2018-12-07,137831.489447) [2.567839] (2018-12-08,141616.571782) [2.564356] (2018-12-09,120288.625926) [2.366667] (2018-12-10,124770.670354) [2.469027] (2018-12-11,116722.720029) [2.482456] (2018-12-12,107830.147260) [2.561644] (2018-12-13,114815.277244) [2.500000] (2018-12-14,118830.917563) [2.795699] (2018-12-15,127238.886179) [2.621951] (2018-12-16,117875.226190) [2.528571] (2018-12-17,114518.898039) [2.588235] (2018-12-18,123260.729563) [2.595238] (2018-12-19,131126.313531) [2.495050] (2018-12-20,123167.649918) [2.735294] (2018-12-21,117042.100939) [2.521127] (2018-12-22,140859.419504) [2.563830] (2018-12-23,132151.418413) [2.657143] (2018-12-24,142454.606293) [2.826531] (2018-12-25,146870.108046) [2.775862] (2018-12-26,106163.579000) [2.440000] (2018-12-27,131058.015173) [2.745098] (2018-12-28,132015.050820) [2.721311] (2018-12-29,108736.356863) [2.470588] (2018-12-30,117369.084416) [2.558442] (2018-12-31,131016.401212) [2.700000] (2019-01-01,108455.713333) [2.400000] (2019-01-02,120597.396743) [2.459770] (2019-01-03,135446.026596) [2.723404] (2019-01-04,115439.912634) [2.645161] (2019-01-05,105547.259925) [2.438202] (2019-01-06,153248.852692) [2.813665] (2019-01-07,156889.621333) [2.760000] (2019-01-08,163336.959273) [2.842105] (2019-01-09,154820.497050) [2.584071] (2019-01-10,168687.889009) [2.857759] (2019-01-11,152233.210582) [2.798942] (2019-01-12,173365.883130) [2.914634] (2019-01-13,166564.286200) [2.878981] (2019-01-14,153409.806936) [2.756522] (2019-01-15,169752.669935) [2.875817] (2019-01-16,199663.772028) [2.576433] (2019-01-17,198167.701111) [2.550000] (2019-01-18,164736.397523) [2.770270] (2019-01-19,165902.712526) [2.844720] (2019-01-20,194124.693320) [2.615385] (2019-01-21,183060.140712) [2.832061] (2019-01-22,159415.248770) [2.852349] (2019-01-23,147690.776570) [2.572464] (2019-01-24,134322.256783) [2.523256] (2019-01-25,150309.834451) [2.756098] (2019-01-26,187721.402502) [2.798867] (2019-01-27,192565.443972) [2.997076] (2019-01-28,174702.574643) [2.814286] (2019-01-29,163885.512186) [2.768868] (2019-01-30,160841.083714) [2.808219] (2019-01-31,184674.740558) [2.916256] (2019-02-01,172359.455607) [2.855140] (2019-02-02,181754.435516) [2.886905] (2019-02-03,170032.222567) [2.763975] (2019-02-04,164171.561772) [2.643357] (2019-02-05,168258.223757) [2.751381] (2019-02-06,166496.040608) [2.837017] (2019-02-07,183741.615113) [2.951977] (2019-02-08,175665.492812) [2.856237] (2019-02-09,169151.226496) [2.830769] (2019-02-10,171693.185956) [2.842667] (2019-02-11,152903.502083) [2.746212] (2019-02-12,155001.316092) [2.775862] (2019-02-13,177064.693889) [2.800000] (2019-02-14,174584.333333) [2.794595] (2019-02-15,180070.170794) [2.885714] (2019-02-16,176878.484553) [2.824390] (2019-02-17,174200.587618) [2.845758] (2019-02-18,184615.784495) [2.898955] (2019-02-19,174687.550023) [2.760766] (2019-02-20,178925.035914) [2.878661] (2019-02-21,172938.608280) [2.783439] (2019-02-22,165173.658015) [2.786260] (2019-02-23,171200.289709) [2.786885] (2019-02-24,184161.729748) [2.756972] (2019-02-25,180640.167240) [2.906250] (2019-02-26,173833.840653) [2.813063] (2019-02-27,177080.875133) [2.853035] (2019-02-28,171395.130952) [2.814286] (2019-03-01,190167.333333) [2.911765] (2019-03-02,184659.708812) [2.899425] (2019-03-03,178035.625871) [2.856716] (2019-03-04,181530.992132) [2.678112] (2019-03-05,180572.181014) [2.952830] (2019-03-06,166430.611526) [2.823383] (2019-03-07,173154.734609) [2.833773] (2019-03-08,186772.738660) [2.914433] (2019-03-09,181942.348515) [2.873660] (2019-03-10,179406.622689) [2.858676] (2019-03-11,181825.553677) [2.940688] (2019-03-12,176753.391818) [2.938633] (2019-03-13,175390.305187) [2.935484] (2019-03-14,175483.863363) [2.963964] (2019-03-15,166346.755107) [2.821727] (2019-03-16,177861.480946) [2.919271] (2019-03-17,173588.407480) [2.899096] (2019-03-18,169036.659028) [2.883333] (2019-03-19,167182.488152) [2.869668] (2019-03-20,170165.929012) [2.867284] (2019-03-21,176513.890957) [2.898936] (2019-03-22,165443.456256) [2.794721] (2019-03-23,172930.061382) [2.731707] }; +\addplot[mark=none, black, line width=2pt] coordinates { }; +\addplot[mark=none, orange, dashed, line width=3pt] coordinates { (2018-03-08, 0) (2018-03-08, 300000) }; +\end{axis} + +\end{tikzpicture} + diff --git a/reports/pure_revenue_usd.tex b/reports/pure_revenue_usd.tex new file mode 100644 index 0000000..bcf39bc --- /dev/null +++ b/reports/pure_revenue_usd.tex @@ -0,0 +1,35 @@ + +\begin{tikzpicture} +\begin{axis}[clip mode=individual, date coordinates in=x, + xticklabel=\month-\shortyear{\year},ymode=log, xlabel={Date (MM-YY)}, ylabel={Daily Pure Revenue Captured (USD)},title={Pure Revenue Market Size (USD)}, + log basis y={10}, ymin=0, ymax=12307713.456311056, +x label style={ + at={(0.5,-.07)}, + anchor=south, +}, y label style={ + at={(.03,0)}, + anchor=west, +}, title style={at={(0.5,1.06)},anchor=north,}, +scatter/use mapped color={ + draw=mapped color, + fill=mapped color!70, + }, colorbar, point meta= explicit, + colorbar style={ + title={\# Trades}, + %extracolorbar% + }, +%extraaxisoptions% +] +\addplot[scatter,opacity=0.5] coordinates { (2017-07-01,38.026923) [8.000000] (2017-07-02,134.393619) [18.000000] (2017-07-03,226.420797) [16.000000] (2017-07-04,490.618945) [14.000000] (2017-07-05,43.666485) [6.000000] (2017-07-06,1147.685235) [14.000000] (2017-07-07,1254.836526) [36.000000] (2017-07-08,49.518725) [6.000000] (2017-07-09,190.616625) [24.000000] (2017-07-10,987.065325) [30.000000] (2017-07-11,361.837265) [38.000000] (2017-07-12,723.756338) [40.000000] (2017-07-13,2868.063954) [74.000000] (2017-07-14,886.892485) [88.000000] (2017-07-15,1112.061524) [26.000000] (2017-07-16,189.125278) [42.000000] (2017-07-17,1457.778734) [62.000000] (2017-07-18,803.097131) [80.000000] (2017-07-19,778.596214) [46.000000] (2017-07-20,2161.215936) [40.000000] (2017-07-21,107.309862) [10.000000] (2017-07-22,370.079238) [48.000000] (2017-07-23,596.083829) [60.000000] (2017-07-24,7004.987447) [150.000000] (2017-07-25,539.852375) [24.000000] (2017-07-26,119.435880) [16.000000] (2017-07-27,133.577459) [10.000000] (2017-07-28,113.613153) [16.000000] (2017-07-29,72.805611) [10.000000] (2017-07-30,2914.261335) [36.000000] (2017-07-31,162.561279) [22.000000] (2017-08-01,317.354284) [20.000000] (2017-08-02,44.478194) [10.000000] (2017-08-03,355.349795) [20.000000] (2017-08-04,621.161551) [62.000000] (2017-08-05,406.024891) [36.000000] (2017-08-06,829.282414) [44.000000] (2017-08-07,1454.893797) [68.000000] (2017-08-08,608.782877) [46.000000] (2017-08-09,637.909933) [46.000000] (2017-08-10,406.329231) [41.000000] (2017-08-11,1012.516732) [46.000000] (2017-08-12,4714.473216) [95.000000] (2017-08-13,1933.856988) [58.000000] (2017-08-14,1708.149613) [76.000000] (2017-08-15,8695.496044) [207.000000] (2017-08-16,7821.528865) [314.000000] (2017-08-17,11810.235390) [246.000000] (2017-08-18,6247.639958) [218.000000] (2017-08-19,5998.695228) [106.000000] (2017-08-20,2383.018032) [132.000000] (2017-08-21,4519.573463) [194.000000] (2017-08-22,1917.321460) [92.000000] (2017-08-23,3724.129967) [114.000000] (2017-08-24,2776.158930) [78.000000] (2017-08-25,3334.827180) [132.000000] (2017-08-26,2522.877815) [110.000000] (2017-08-27,5010.709290) [188.000000] (2017-08-28,9013.445945) [286.000000] (2017-08-29,8520.361912) [244.000000] (2017-08-30,30666.753417) [476.000000] (2017-08-31,3284.696335) [231.000000] (2017-09-01,6495.391044) [249.000000] (2017-09-02,5843.660915) [268.000000] (2017-09-03,5029.906297) [266.000000] (2017-09-04,6002.526275) [372.000000] (2017-09-05,6474.436882) [366.000000] (2017-09-06,10997.995221) [629.000000] (2017-09-07,11678.688007) [775.000000] (2017-09-08,12112.832164) [476.000000] (2017-09-09,9431.543773) [326.000000] (2017-09-10,12082.654431) [383.000000] (2017-09-11,9018.395536) [462.000000] (2017-09-12,10459.485747) [401.000000] (2017-09-13,8578.822701) [508.000000] (2017-09-14,2927.764425) [240.000000] (2017-09-15,9533.336650) [347.000000] (2017-09-16,1824.184826) [267.000000] (2017-09-17,7389.663648) [149.000000] (2017-09-18,5809.239220) [320.000000] (2017-09-19,13481.361354) [393.000000] (2017-09-20,14222.881358) [590.000000] (2017-09-21,9689.449256) [528.000000] (2017-09-22,3735.043820) [330.000000] (2017-09-23,5443.878280) [228.000000] (2017-09-24,15594.403373) [674.000000] (2017-09-25,12965.797054) [880.000000] (2017-09-26,8714.538613) [832.000000] (2017-09-27,11895.957880) [684.000000] (2017-09-28,12733.361880) [842.000000] (2017-09-29,27980.926542) [792.000000] (2017-09-30,8977.379798) [724.000000] (2017-10-01,7430.055228) [742.000000] (2017-10-02,9223.136489) [704.000000] (2017-10-03,8740.572496) [708.000000] (2017-10-04,13778.552721) [690.000000] (2017-10-05,31706.725343) [1248.000000] (2017-10-06,32355.582075) [1794.000000] (2017-10-07,10909.879027) [888.000000] (2017-10-08,8618.361804) [470.000000] (2017-10-09,15983.956756) [464.000000] (2017-10-10,12954.068033) [590.000000] (2017-10-11,8957.284058) [520.000000] (2017-10-12,29667.626735) [442.000000] (2017-10-13,11058.201076) [500.000000] (2017-10-14,10624.747890) [350.000000] (2017-10-15,8377.187441) [350.000000] (2017-10-16,5833.486071) [330.000000] (2017-10-17,9725.162342) [712.000000] (2017-10-18,9011.815850) [592.000000] (2017-10-19,6170.077485) [299.000000] (2017-10-20,9733.752052) [540.000000] (2017-10-21,5230.575182) [492.000000] (2017-10-22,7384.013098) [652.000000] (2017-10-23,12604.597180) [743.000000] (2017-10-24,7554.064348) [1020.000000] (2017-10-25,34789.640540) [2002.000000] (2017-10-26,13390.310761) [1607.000000] (2017-10-27,15782.336109) [1508.000000] (2017-10-28,13220.015634) [1503.000000] (2017-10-29,10008.445333) [1286.000000] (2017-10-30,12760.160503) [1684.000000] (2017-10-31,13610.763637) [1596.000000] (2017-11-01,18848.727651) [1359.000000] (2017-11-02,11454.073269) [1132.000000] (2017-11-03,7093.109675) [1180.000000] (2017-11-04,4812.013866) [700.000000] (2017-11-05,4770.660068) [788.000000] (2017-11-06,12934.005817) [698.000000] (2017-11-07,17700.634389) [1145.000000] (2017-11-08,47763.529313) [1379.000000] (2017-11-09,22440.312467) [1086.000000] (2017-11-10,32732.996706) [1015.000000] (2017-11-11,6883.225023) [1034.000000] (2017-11-12,21001.605361) [1151.000000] (2017-11-13,10248.912373) [1349.000000] (2017-11-14,19329.474274) [1311.000000] (2017-11-15,25439.042487) [1703.000000] (2017-11-16,20163.442398) [1834.000000] (2017-11-17,24113.285149) [1510.000000] (2017-11-18,20487.149654) [1294.000000] (2017-11-19,12702.760969) [1270.000000] (2017-11-20,33494.528334) [2110.000000] (2017-11-21,35409.243301) [1828.000000] (2017-11-22,14946.672694) [1740.000000] (2017-11-23,24059.136112) [2028.000000] (2017-11-24,12776.945429) [1501.000000] (2017-11-25,72036.776617) [1473.000000] (2017-11-26,37699.552494) [2359.000000] (2017-11-27,21222.825880) [1284.000000] (2017-11-28,18279.281231) [1178.000000] (2017-11-29,15718.887370) [1477.000000] (2017-11-30,18956.360729) [1327.000000] (2017-12-01,16300.957053) [1531.000000] (2017-12-02,18130.996060) [1023.000000] (2017-12-03,15928.607515) [1052.000000] (2017-12-04,27126.569899) [1023.000000] (2017-12-05,17865.406015) [693.000000] (2017-12-06,34037.993297) [746.000000] (2017-12-07,11822.764986) [445.000000] (2017-12-08,30768.750303) [789.000000] (2017-12-09,13109.362390) [401.000000] (2017-12-10,30774.965090) [406.000000] (2017-12-11,16747.721730) [609.000000] (2017-12-12,57090.832385) [871.000000] (2017-12-13,81003.359592) [966.000000] (2017-12-14,35372.197322) [736.000000] (2017-12-15,44482.782291) [819.000000] (2017-12-16,67401.684657) [1258.000000] (2017-12-17,80802.937600) [1641.000000] (2017-12-18,48114.975619) [1418.000000] (2017-12-19,75682.922227) [1464.000000] (2017-12-20,34776.270013) [592.000000] (2017-12-21,44390.181243) [98.000000] (2017-12-22,15442.478250) [320.000000] (2017-12-23,20841.276213) [505.000000] (2017-12-24,18228.068984) [466.000000] (2017-12-25,29988.371971) [879.000000] (2017-12-26,16638.887609) [778.000000] (2017-12-27,18788.217314) [1013.000000] (2017-12-28,26670.576353) [916.000000] (2017-12-29,66393.553533) [1030.000000] (2017-12-30,37248.264174) [742.000000] (2017-12-31,40101.018552) [927.000000] (2018-01-01,31780.888609) [811.000000] (2018-01-02,46882.918510) [991.000000] (2018-01-03,65703.653502) [706.000000] (2018-01-04,60396.846910) [711.000000] (2018-01-05,93354.102022) [975.000000] (2018-01-06,125734.434415) [1302.000000] (2018-01-07,136132.337635) [1169.000000] (2018-01-08,115160.655960) [979.000000] (2018-01-09,78587.286698) [826.000000] (2018-01-10,63027.660472) [605.000000] (2018-01-11,67473.854189) [817.000000] (2018-01-12,57577.279585) [861.000000] (2018-01-13,48149.053900) [802.000000] (2018-01-14,50112.381312) [818.000000] (2018-01-15,68025.902308) [856.000000] (2018-01-16,24362.301834) [580.000000] (2018-01-17,29846.578415) [505.000000] (2018-01-18,82381.859991) [664.000000] (2018-01-19,73803.694226) [978.000000] (2018-01-20,40804.570098) [729.000000] (2018-01-21,21880.801295) [881.000000] (2018-01-22,22296.144724) [814.000000] (2018-01-23,62528.083125) [719.000000] (2018-01-24,46805.446832) [1070.000000] (2018-01-25,38000.692949) [1228.000000] (2018-01-26,34033.366190) [971.000000] (2018-01-27,22054.905788) [618.000000] (2018-01-28,29477.231235) [951.000000] (2018-01-29,32693.447958) [737.000000] (2018-01-30,25985.535169) [846.000000] (2018-01-31,29703.019759) [737.000000] (2018-02-01,51319.758438) [742.000000] (2018-02-02,24803.914354) [804.000000] (2018-02-03,28429.328929) [657.000000] (2018-02-04,27756.469247) [721.000000] (2018-02-05,11927.822976) [685.000000] (2018-02-06,35134.565226) [808.000000] (2018-02-07,24449.720549) [646.000000] (2018-02-08,35095.497449) [745.000000] (2018-02-09,15002.470952) [774.000000] (2018-02-10,15651.331835) [758.000000] (2018-02-11,12790.799247) [795.000000] (2018-02-12,47956.307090) [589.000000] (2018-02-13,5104.219876) [481.000000] (2018-02-14,18046.935503) [527.000000] (2018-02-15,8393.421307) [430.000000] (2018-02-16,7743.973334) [508.000000] (2018-02-17,11344.763119) [520.000000] (2018-02-18,10302.110600) [525.000000] (2018-02-19,18516.342047) [526.000000] (2018-02-20,9214.018489) [405.000000] (2018-02-21,11857.802554) [340.000000] (2018-02-22,6541.346410) [274.000000] (2018-02-23,6027.800599) [306.000000] (2018-02-24,8385.808657) [338.000000] (2018-02-25,4052.161219) [266.000000] (2018-02-26,6081.148342) [420.000000] (2018-02-27,6019.412653) [403.000000] (2018-02-28,6293.529908) [452.000000] (2018-03-01,14031.038908) [484.000000] (2018-03-02,18819.448017) [508.000000] (2018-03-03,28242.816625) [348.000000] (2018-03-04,26194.079936) [350.000000] (2018-03-05,5360.480339) [282.000000] (2018-03-06,8573.553417) [424.000000] (2018-03-07,9842.854888) [520.000000] (2018-03-08,6445.135079) [634.000000] (2018-03-09,9321.175751) [600.000000] (2018-03-10,5932.463437) [376.000000] (2018-03-11,1733.792353) [198.000000] (2018-03-12,6677.219352) [370.000000] (2018-03-13,6035.324611) [544.000000] (2018-03-14,6720.645945) [442.000000] (2018-03-15,3402.861256) [468.000000] (2018-03-16,7008.353794) [320.000000] (2018-03-17,2284.680349) [332.000000] (2018-03-18,10187.683946) [442.000000] (2018-03-19,4292.732697) [496.000000] (2018-03-20,3263.330176) [382.000000] (2018-03-21,4196.764506) [388.000000] (2018-03-22,1744.378289) [222.000000] (2018-03-23,21835.820077) [374.000000] (2018-03-24,1812.598394) [244.000000] (2018-03-25,1434.370222) [310.000000] (2018-03-26,3245.518065) [397.000000] (2018-03-27,2899.692099) [480.000000] (2018-03-28,4746.067603) [490.000000] (2018-03-29,1590.224221) [362.000000] (2018-03-30,1973.776003) [460.000000] (2018-03-31,869.885147) [308.000000] (2018-04-01,1123.933911) [280.000000] (2018-04-02,17059.633912) [340.000000] (2018-04-03,2905.834936) [407.000000] (2018-04-04,1249.611179) [328.000000] (2018-04-05,2359.192449) [356.000000] (2018-04-06,10900.590280) [360.000000] (2018-04-07,1051.773492) [346.000000] (2018-04-08,1167.163182) [308.000000] (2018-04-09,8897.805293) [400.000000] (2018-04-10,3191.978927) [428.000000] (2018-04-11,5122.967188) [402.000000] (2018-04-12,1762.352319) [545.000000] (2018-04-13,3353.892068) [469.000000] (2018-04-14,3590.063210) [488.000000] (2018-04-15,1587.030532) [434.000000] (2018-04-16,2868.349703) [538.000000] (2018-04-17,8461.391787) [592.000000] (2018-04-18,40865.894221) [832.000000] (2018-04-19,15860.651846) [584.000000] (2018-04-20,5154.337861) [706.000000] (2018-04-21,5244.060917) [650.000000] (2018-04-22,3819.347360) [436.000000] (2018-04-23,6791.098932) [598.000000] (2018-04-24,7658.929841) [742.000000] (2018-04-25,7983.989379) [712.000000] (2018-04-26,18278.641529) [616.000000] (2018-04-27,10683.258166) [470.000000] (2018-04-28,4892.059780) [420.000000] (2018-04-29,8154.567445) [488.000000] (2018-04-30,12551.560419) [522.000000] (2018-05-01,10260.675027) [424.000000] (2018-05-02,5119.709089) [384.000000] (2018-05-03,8808.814925) [490.000000] (2018-05-04,5012.613930) [410.000000] (2018-05-05,6909.738803) [470.000000] (2018-05-06,10402.085064) [396.000000] (2018-05-07,9928.646401) [576.000000] (2018-05-08,7678.028035) [732.000000] (2018-05-09,12957.686431) [652.000000] (2018-05-10,23138.421895) [348.000000] (2018-05-11,8591.984692) [396.000000] (2018-05-12,7848.472293) [274.000000] (2018-05-13,1829.226147) [208.000000] (2018-05-14,3584.835973) [296.000000] (2018-05-15,7388.027377) [238.000000] (2018-05-16,10475.794752) [302.000000] (2018-05-17,7129.993975) [262.000000] (2018-05-18,10896.033601) [332.000000] (2018-05-19,4030.399932) [186.000000] (2018-05-20,1735.861118) [152.000000] (2018-05-21,2989.766982) [296.000000] (2018-05-22,3265.451613) [162.000000] (2018-05-23,2399.041821) [214.000000] (2018-05-24,1560.163189) [122.000000] (2018-05-25,3065.330672) [138.000000] (2018-05-26,1355.417497) [180.000000] (2018-05-27,1330.898720) [134.000000] (2018-05-28,2086.672770) [140.000000] (2018-05-29,2728.725907) [188.000000] (2018-05-30,2014.652822) [234.000000] (2018-05-31,2073.717298) [144.000000] (2018-06-01,4654.912239) [128.000000] (2018-06-02,10468.850432) [224.000000] (2018-06-03,1128.633134) [188.000000] (2018-06-04,3287.998777) [166.000000] (2018-06-05,2459.105811) [202.000000] (2018-06-06,7533.778680) [190.000000] (2018-06-07,5432.436063) [186.000000] (2018-06-08,1525.470212) [144.000000] (2018-06-09,4728.128228) [156.000000] (2018-06-10,2320.772435) [220.000000] (2018-06-11,2136.016798) [318.000000] (2018-06-12,10606.618979) [232.000000] (2018-06-13,3801.178619) [310.000000] (2018-06-14,6317.847102) [184.000000] (2018-06-15,692.150691) [142.000000] (2018-06-16,1597.644587) [150.000000] (2018-06-17,4525.342336) [200.000000] (2018-06-18,1551.373825) [204.000000] (2018-06-19,1418.943491) [206.000000] (2018-06-20,2562.228384) [451.000000] (2018-06-21,5104.220202) [262.000000] (2018-06-22,5160.604844) [310.000000] (2018-06-23,1510.401277) [252.000000] (2018-06-24,4651.074009) [502.000000] (2018-06-25,4270.978475) [251.000000] (2018-06-26,2267.223566) [297.000000] (2018-06-27,3646.586993) [305.000000] (2018-06-28,4269.142823) [333.000000] (2018-06-29,1425.418315) [249.000000] (2018-06-30,1612.111263) [326.000000] (2018-07-01,613.572504) [126.000000] (2018-07-02,2435.082930) [103.000000] (2018-07-03,1988.060081) [97.000000] (2018-07-04,1166.926354) [64.000000] (2018-07-05,1213.071232) [91.000000] (2018-07-06,1881.186170) [95.000000] (2018-07-07,972.456634) [56.000000] (2018-07-08,844.603219) [103.000000] (2018-07-09,1413.922608) [155.000000] (2018-07-10,1867.679034) [134.000000] (2018-07-11,692.127906) [132.000000] (2018-07-12,1743.689032) [185.000000] (2018-07-13,5710.745657) [200.000000] (2018-07-14,2979.962065) [150.000000] (2018-07-15,1537.170838) [189.000000] (2018-07-16,3668.243930) [316.000000] (2018-07-17,2298.660331) [393.000000] (2018-07-18,3210.329366) [380.000000] (2018-07-19,2215.179993) [327.000000] (2018-07-20,4326.536500) [486.000000] (2018-07-21,2374.562743) [307.000000] (2018-07-22,3919.359216) [245.000000] (2018-07-23,16239.350630) [838.000000] (2018-07-24,6571.393905) [559.000000] (2018-07-25,5201.095688) [373.000000] (2018-07-26,1968.332621) [306.000000] (2018-07-27,597.316759) [211.000000] (2018-07-28,717.059922) [211.000000] (2018-07-29,3435.497766) [383.000000] (2018-07-30,2614.757988) [364.000000] (2018-07-31,2045.327899) [394.000000] (2018-08-01,5685.690140) [358.000000] (2018-08-02,3234.709708) [421.000000] (2018-08-03,3695.563782) [451.000000] (2018-08-04,18738.514646) [315.000000] (2018-08-05,2256.130194) [359.000000] (2018-08-06,1138.972179) [265.000000] (2018-08-07,5826.507748) [245.000000] (2018-08-08,18073.519725) [280.000000] (2018-08-09,1324.927037) [123.000000] (2018-08-10,5737.104042) [474.000000] (2018-08-11,89051.780855) [454.000000] (2018-08-12,7357.182647) [158.000000] (2018-08-13,2065.029113) [347.000000] (2018-08-14,3154.567718) [461.000000] (2018-08-15,2869.465171) [252.000000] (2018-08-16,2132.079104) [314.000000] (2018-08-17,8837.631373) [293.000000] (2018-08-18,1005.976764) [286.000000] (2018-08-19,1349.945852) [258.000000] (2018-08-20,2224.785532) [343.000000] (2018-08-21,2015.007396) [356.000000] (2018-08-22,1180.981238) [326.000000] (2018-08-23,895.943063) [273.000000] (2018-08-24,1192.344626) [240.000000] (2018-08-25,655.898098) [219.000000] (2018-08-26,1578.086083) [243.000000] (2018-08-27,13997.685620) [337.000000] (2018-08-28,767.078859) [173.000000] (2018-08-29,2065.298797) [426.000000] (2018-08-30,769.511690) [236.000000] (2018-08-31,2254.981454) [200.000000] (2018-09-01,1594.896802) [109.000000] (2018-09-02,1132.762713) [143.000000] (2018-09-03,6441.945387) [194.000000] (2018-09-04,3949.018741) [195.000000] (2018-09-05,2118.236076) [353.000000] (2018-09-06,1253.253626) [313.000000] (2018-09-07,1723.247440) [286.000000] (2018-09-08,1612.255321) [324.000000] (2018-09-09,2593.799759) [279.000000] (2018-09-10,699.113324) [174.000000] (2018-09-11,6521.540931) [291.000000] (2018-09-12,3340.740143) [332.000000] (2018-09-13,3096.605959) [429.000000] (2018-09-14,2563.091193) [340.000000] (2018-09-15,9388.373347) [269.000000] (2018-09-16,1165.474882) [147.000000] (2018-09-17,11158.255221) [475.000000] (2018-09-18,1185.946624) [268.000000] (2018-09-19,442.205727) [115.000000] (2018-09-20,2203.511260) [340.000000] (2018-09-21,709.674130) [242.000000] (2018-09-22,994.455190) [179.000000] (2018-09-23,801.012484) [156.000000] (2018-09-24,532.946640) [143.000000] (2018-09-25,2269.647540) [292.000000] (2018-09-26,478.352239) [101.000000] (2018-09-27,1450.930756) [148.000000] (2018-09-28,646.736389) [176.000000] (2018-09-29,377.646579) [153.000000] (2018-09-30,646.047826) [119.000000] (2018-10-01,612.759827) [146.000000] (2018-10-02,1849.463443) [156.000000] (2018-10-03,856.356448) [200.000000] (2018-10-04,634.475044) [146.000000] (2018-10-05,5737.726638) [531.000000] (2018-10-06,915.407660) [230.000000] (2018-10-07,969.658487) [276.000000] (2018-10-08,486.906232) [166.000000] (2018-10-09,846.596810) [231.000000] (2018-10-10,2369.354645) [1114.000000] (2018-10-11,1878.921941) [309.000000] (2018-10-12,595.088718) [356.000000] (2018-10-13,1698.055425) [400.000000] (2018-10-14,455.798832) [350.000000] (2018-10-15,2078.665560) [354.000000] (2018-10-16,2570.169889) [413.000000] (2018-10-17,1961.392829) [601.000000] (2018-10-18,1020.254143) [388.000000] (2018-10-19,1886.652563) [745.000000] (2018-10-20,2177.982069) [616.000000] (2018-10-21,949.632315) [364.000000] (2018-10-22,1025.309886) [256.000000] (2018-10-23,1666.397905) [218.000000] (2018-10-24,521.706684) [186.000000] (2018-10-25,807.776964) [222.000000] (2018-10-26,772.794076) [223.000000] (2018-10-27,1000.763321) [170.000000] (2018-10-28,1247.918492) [215.000000] (2018-10-29,994.234266) [261.000000] (2018-10-30,1216.903104) [250.000000] (2018-10-31,858.449156) [228.000000] (2018-11-01,982.269840) [233.000000] (2018-11-02,715.543965) [132.000000] (2018-11-03,981.855447) [213.000000] (2018-11-04,1495.947156) [215.000000] (2018-11-05,588.639673) [270.000000] (2018-11-06,1836.265835) [176.000000] (2018-11-07,768.737225) [249.000000] (2018-11-08,1211.187452) [257.000000] (2018-11-09,673.826549) [183.000000] (2018-11-10,1677.231396) [176.000000] (2018-11-11,640.310496) [141.000000] (2018-11-12,2111.578479) [205.000000] (2018-11-13,921.579634) [158.000000] (2018-11-14,1760.798939) [410.000000] (2018-11-15,2459.213633) [273.000000] (2018-11-16,1675.396930) [307.000000] (2018-11-17,1062.517513) [219.000000] (2018-11-18,327.189849) [143.000000] (2018-11-19,2334.710812) [373.000000] (2018-11-20,1018.879060) [364.000000] (2018-11-21,1435.899128) [214.000000] (2018-11-22,954.272991) [206.000000] (2018-11-23,1243.401071) [188.000000] (2018-11-24,314.332603) [145.000000] (2018-11-25,1326.288280) [302.000000] (2018-11-26,731.277071) [309.000000] (2018-11-27,890.435318) [277.000000] (2018-11-28,482.201728) [156.000000] (2018-11-29,2125.250810) [252.000000] (2018-11-30,407.487854) [213.000000] (2018-12-01,468.949531) [168.000000] (2018-12-02,1767.586389) [196.000000] (2018-12-03,639.158601) [206.000000] (2018-12-04,1375.741453) [220.000000] (2018-12-05,630.897059) [204.000000] (2018-12-06,1142.277389) [354.000000] (2018-12-07,980.541454) [511.000000] (2018-12-08,402.787297) [259.000000] (2018-12-09,306.891202) [213.000000] (2018-12-10,887.798527) [279.000000] (2018-12-11,435.693382) [283.000000] (2018-12-12,576.380099) [187.000000] (2018-12-13,374.007121) [260.000000] (2018-12-14,522.287898) [260.000000] (2018-12-15,3126.240691) [215.000000] (2018-12-16,2043.825005) [177.000000] (2018-12-17,449.968523) [220.000000] (2018-12-18,646.235065) [218.000000] (2018-12-19,722.769374) [252.000000] (2018-12-20,429.899044) [279.000000] (2018-12-21,372.203579) [179.000000] (2018-12-22,844.106774) [241.000000] (2018-12-23,753.721531) [279.000000] (2018-12-24,781.214835) [277.000000] (2018-12-25,514.852914) [161.000000] (2018-12-26,371.239486) [122.000000] (2018-12-27,506.403293) [140.000000] (2018-12-28,834.106798) [166.000000] (2018-12-29,756.646637) [210.000000] (2018-12-30,1030.450757) [197.000000] (2018-12-31,1378.004046) [297.000000] (2019-01-01,815.636634) [180.000000] (2019-01-02,308.298220) [214.000000] (2019-01-03,248.933034) [128.000000] (2019-01-04,848.613009) [164.000000] (2019-01-05,824.591507) [217.000000] (2019-01-06,264.305590) [453.000000] (2019-01-07,873.658184) [414.000000] (2019-01-08,16104.922782) [324.000000] (2019-01-09,485.994345) [292.000000] (2019-01-10,1603.991757) [663.000000] (2019-01-11,990.340109) [529.000000] (2019-01-12,633.054984) [478.000000] (2019-01-13,1020.958176) [452.000000] (2019-01-14,652.271117) [317.000000] (2019-01-15,964.056476) [440.000000] (2019-01-16,746.326214) [809.000000] (2019-01-17,1131.184489) [765.000000] (2019-01-18,613.964731) [410.000000] (2019-01-19,441.515223) [458.000000] (2019-01-20,401.529494) [646.000000] (2019-01-21,436.193460) [371.000000] (2019-01-22,1104.646172) [425.000000] (2019-01-23,453.437294) [355.000000] (2019-01-24,1166.184983) [434.000000] (2019-01-25,805.616104) [452.000000] (2019-01-26,3302.081134) [988.000000] (2019-01-27,984.494810) [1025.000000] (2019-01-28,1553.899634) [788.000000] (2019-01-29,799.140669) [587.000000] (2019-01-30,773.358546) [615.000000] (2019-01-31,947.482817) [592.000000] (2019-02-01,384.508596) [611.000000] (2019-02-02,462.412385) [485.000000] (2019-02-03,348.692951) [445.000000] (2019-02-04,271.803610) [378.000000] (2019-02-05,375.574136) [498.000000] (2019-02-06,683.656927) [1027.000000] (2019-02-07,576.876214) [1045.000000] (2019-02-08,984.492239) [1351.000000] (2019-02-09,516.196507) [552.000000] (2019-02-10,704.394918) [1066.000000] (2019-02-11,1384.285359) [725.000000] (2019-02-12,661.198914) [644.000000] (2019-02-13,566.967994) [336.000000] (2019-02-14,886.823164) [517.000000] (2019-02-15,1539.088024) [606.000000] (2019-02-16,262.786530) [579.000000] (2019-02-17,918.135430) [1107.000000] (2019-02-18,1190.705933) [832.000000] (2019-02-19,661.517523) [577.000000] (2019-02-20,1186.741283) [688.000000] (2019-02-21,862.104535) [437.000000] (2019-02-22,503.374879) [365.000000] (2019-02-23,617.808592) [510.000000] (2019-02-24,700.720838) [692.000000] (2019-02-25,1209.793086) [930.000000] (2019-02-26,2524.090052) [1249.000000] (2019-02-27,1925.163350) [893.000000] (2019-02-28,2394.848077) [591.000000] (2019-03-01,327.529565) [990.000000] (2019-03-02,1241.741122) [1009.000000] (2019-03-03,551.129807) [957.000000] (2019-03-04,3344.169814) [1248.000000] (2019-03-05,775.828134) [1252.000000] (2019-03-06,1161.335965) [1135.000000] (2019-03-07,1305.763071) [1074.000000] (2019-03-08,2349.114097) [2827.000000] (2019-03-09,4173.250738) [5095.000000] (2019-03-10,4951.559115) [3196.000000] (2019-03-11,1124.600372) [2479.000000] (2019-03-12,1342.490165) [2107.000000] (2019-03-13,1319.533188) [1547.000000] (2019-03-14,846.228012) [1316.000000] (2019-03-15,19271.661191) [1013.000000] (2019-03-16,1077.634346) [1121.000000] (2019-03-17,2188.460659) [1925.000000] (2019-03-18,2152.971787) [1384.000000] (2019-03-19,2131.824534) [1211.000000] (2019-03-20,512.139489) [929.000000] (2019-03-21,844.087227) [1090.000000] (2019-03-22,5312.967856) [953.000000] (2019-03-23,541.210948) [560.000000] }; +\addplot[mark=none, black, line width=2pt] coordinates { (2017-07-01,238.260609)(2017-07-02,241.797661)(2017-07-03,255.413134)(2017-07-04,325.917800)(2017-07-05,351.763319)(2017-07-06,403.460201)(2017-07-07,608.321912)(2017-07-08,671.671375)(2017-07-09,748.388132)(2017-07-10,752.297536)(2017-07-11,840.251675)(2017-07-12,862.571545)(2017-07-13,915.066526)(2017-07-14,987.461576)(2017-07-15,905.495385)(2017-07-16,928.392565)(2017-07-17,957.354508)(2017-07-18,1387.206088)(2017-07-19,1399.921453)(2017-07-20,1356.755706)(2017-07-21,1161.435242)(2017-07-22,1106.201004)(2017-07-23,1031.968439)(2017-07-24,1226.621015)(2017-07-25,1134.105482)(2017-07-26,1099.409564)(2017-07-27,1046.972563)(2017-07-28,917.982124)(2017-07-29,954.685817)(2017-07-30,957.253363)(2017-07-31,973.910405)(2017-08-01,577.475144)(2017-08-02,582.398752)(2017-08-03,619.432612)(2017-08-04,638.914882)(2017-08-05,703.122280)(2017-08-06,1034.669966)(2017-08-07,964.641084)(2017-08-08,1075.040251)(2017-08-09,1673.478948)(2017-08-10,2228.982568)(2017-08-11,3047.188682)(2017-08-12,3449.079996)(2017-08-13,3848.556449)(2017-08-14,3959.537565)(2017-08-15,4178.443255)(2017-08-16,4271.910297)(2017-08-17,4492.354585)(2017-08-18,4661.628135)(2017-08-19,4827.507452)(2017-08-20,4670.964924)(2017-08-21,4890.740088)(2017-08-22,5412.546969)(2017-08-23,5400.037388)(2017-08-24,7031.839142)(2017-08-25,6422.872067)(2017-08-26,6440.568573)(2017-08-27,6429.494693)(2017-08-28,6618.558141)(2017-08-29,6724.483342)(2017-08-30,7049.991586)(2017-08-31,7569.553390)(2017-09-01,8205.448324)(2017-09-02,8832.448680)(2017-09-03,9325.924820)(2017-09-04,9831.063758)(2017-09-05,9831.417301)(2017-09-06,9969.926146)(2017-09-07,8392.216809)(2017-09-08,8366.721673)(2017-09-09,8583.717787)(2017-09-10,8296.612352)(2017-09-11,8465.166449)(2017-09-12,8451.360231)(2017-09-13,8951.854836)(2017-09-14,9182.203846)(2017-09-15,9040.115363)(2017-09-16,8441.701910)(2017-09-17,8156.868661)(2017-09-18,8407.707871)(2017-09-19,8689.665122)(2017-09-20,8565.026041)(2017-09-21,8801.964268)(2017-09-22,9502.364086)(2017-09-23,10820.049079)(2017-09-24,11330.991577)(2017-09-25,11333.876690)(2017-09-26,11577.726495)(2017-09-27,11239.098719)(2017-09-28,11207.360959)(2017-09-29,12780.023537)(2017-09-30,14824.347698)(2017-10-01,15214.776323)(2017-10-02,14716.487639)(2017-10-03,14932.070475)(2017-10-04,15234.894005)(2017-10-05,15024.988732)(2017-10-06,16234.579079)(2017-10-07,15025.812974)(2017-10-08,15143.482124)(2017-10-09,15211.134425)(2017-10-10,14969.016538)(2017-10-11,15039.344384)(2017-10-12,14698.863179)(2017-10-13,12874.816903)(2017-10-14,11258.971901)(2017-10-15,10853.307341)(2017-10-16,10765.139576)(2017-10-17,10523.756750)(2017-10-18,10138.042201)(2017-10-19,11983.210521)(2017-10-20,10820.545094)(2017-10-21,11157.983311)(2017-10-22,11343.359578)(2017-10-23,11459.877999)(2017-10-24,11954.640458)(2017-10-25,12232.183408)(2017-10-26,12934.819965)(2017-10-27,13312.248235)(2017-10-28,13123.630923)(2017-10-29,13093.733686)(2017-10-30,12907.065612)(2017-10-31,12930.594801)(2017-11-01,13655.349804)(2017-11-02,14582.056145)(2017-11-03,15228.484838)(2017-11-04,16439.246309)(2017-11-05,15986.618408)(2017-11-06,16771.844125)(2017-11-07,16592.469258)(2017-11-08,17000.948589)(2017-11-09,17471.685363)(2017-11-10,18093.783158)(2017-11-11,19309.509978)(2017-11-12,20429.162534)(2017-11-13,20995.741170)(2017-11-14,22464.349921)(2017-11-15,23729.250558)(2017-11-16,21385.189371)(2017-11-17,21500.819631)(2017-11-18,20075.387397)(2017-11-19,24729.212511)(2017-11-20,25921.923020)(2017-11-21,26705.773985)(2017-11-22,26630.760196)(2017-11-23,25936.463402)(2017-11-24,25850.243283)(2017-11-25,25292.219848)(2017-11-26,25123.923162)(2017-11-27,25354.340773)(2017-11-28,24899.486599)(2017-11-29,23646.355364)(2017-11-30,25010.021121)(2017-12-01,24135.994613)(2017-12-02,25421.123532)(2017-12-03,21212.022516)(2017-12-04,20717.409130)(2017-12-05,20397.758834)(2017-12-06,23170.012487)(2017-12-07,27833.189075)(2017-12-08,29005.748831)(2017-12-09,31018.736348)(2017-12-10,34538.071248)(2017-12-11,39171.951968)(2017-12-12,40671.123806)(2017-12-13,44800.946392)(2017-12-14,44853.680443)(2017-12-15,47179.924462)(2017-12-16,46085.190744)(2017-12-17,46637.470302)(2017-12-18,45741.263438)(2017-12-19,46687.024169)(2017-12-20,43797.599542)(2017-12-21,39353.660808)(2017-12-22,38732.116453)(2017-12-23,40297.171542)(2017-12-24,38143.355793)(2017-12-25,35236.075861)(2017-12-26,34069.355360)(2017-12-27,32012.212238)(2017-12-28,34221.311058)(2017-12-29,35364.644320)(2017-12-30,40929.760304)(2017-12-31,48422.128747)(2018-01-01,56843.862222)(2018-01-02,62927.596793)(2018-01-03,67352.482442)(2018-01-04,70512.442668)(2018-01-05,73426.962513)(2018-01-06,72797.228660)(2018-01-07,73575.856497)(2018-01-08,74290.953837)(2018-01-09,76879.883387)(2018-01-10,75271.267910)(2018-01-11,72710.048261)(2018-01-12,74280.406338)(2018-01-13,72883.948639)(2018-01-14,66817.529759)(2018-01-15,58656.705734)(2018-01-16,52023.526360)(2018-01-17,50876.440391)(2018-01-18,49717.710845)(2018-01-19,47612.485042)(2018-01-20,45930.776943)(2018-01-21,44066.909220)(2018-01-22,42592.969929)(2018-01-23,40069.223190)(2018-01-24,40185.168428)(2018-01-25,40174.914238)(2018-01-26,37956.192699)(2018-01-27,34456.208422)(2018-01-28,33572.262625)(2018-01-29,33991.953193)(2018-01-30,33251.358782)(2018-01-31,31294.678932)(2018-02-01,29697.841340)(2018-02-02,29490.327376)(2018-02-03,28130.977716)(2018-02-04,27673.579577)(2018-02-05,26481.691578)(2018-02-06,27571.895801)(2018-02-07,26080.373280)(2018-02-08,25247.795834)(2018-02-09,22181.628896)(2018-02-10,20963.061680)(2018-02-11,19742.735551)(2018-02-12,18495.995647)(2018-02-13,18966.604152)(2018-02-14,17115.136528)(2018-02-15,16215.713814)(2018-02-16,14176.131597)(2018-02-17,13535.083715)(2018-02-18,13016.117774)(2018-02-19,12391.929343)(2018-02-20,9400.846575)(2018-02-21,9466.217488)(2018-02-22,8626.688517)(2018-02-23,9029.375488)(2018-02-24,9820.480823)(2018-02-25,11027.484645)(2018-02-26,12162.625312)(2018-02-27,11222.920904)(2018-02-28,11177.173399)(2018-03-01,11033.248565)(2018-03-02,11026.376328)(2018-03-03,11261.617410)(2018-03-04,11086.378466)(2018-03-05,10920.780689)(2018-03-06,10963.357190)(2018-03-07,10964.493759)(2018-03-08,10995.002047)(2018-03-09,10235.846500)(2018-03-10,9392.196913)(2018-03-11,7538.044322)(2018-03-12,6394.730323)(2018-03-13,6318.462634)(2018-03-14,5939.160974)(2018-03-15,5535.868804)(2018-03-16,5200.100462)(2018-03-17,6094.003628)(2018-03-18,5799.727553)(2018-03-19,5778.340258)(2018-03-20,5533.218738)(2018-03-21,5309.244987)(2018-03-22,5168.203677)(2018-03-23,5038.729603)(2018-03-24,4679.116903)(2018-03-25,4578.060103)(2018-03-26,3930.649387)(2018-03-27,4842.570902)(2018-03-28,4817.035528)(2018-03-29,4606.524576)(2018-03-30,4650.439873)(2018-03-31,3869.352030)(2018-04-01,3815.007394)(2018-04-02,3795.921177)(2018-04-03,4199.655979)(2018-04-04,4220.533610)(2018-04-05,4247.455009)(2018-04-06,4259.749873)(2018-04-07,4358.329592)(2018-04-08,4552.628025)(2018-04-09,4585.706355)(2018-04-10,3572.043197)(2018-04-11,3968.868687)(2018-04-12,6798.603190)(2018-04-13,7762.993146)(2018-04-14,7352.546545)(2018-04-15,7651.995647)(2018-04-16,7841.437374)(2018-04-17,7690.958348)(2018-04-18,8010.026270)(2018-04-19,8214.384998)(2018-04-20,9394.119942)(2018-04-21,9917.646092)(2018-04-22,10010.645847)(2018-04-23,10479.755626)(2018-04-24,11171.413535)(2018-04-25,11299.933766)(2018-04-26,8746.634828)(2018-04-27,8242.932191)(2018-04-28,8232.809053)(2018-04-29,8351.786045)(2018-04-30,8821.981595)(2018-05-01,9046.092128)(2018-05-02,9047.456285)(2018-05-03,9402.720360)(2018-05-04,9749.847529)(2018-05-05,9600.470853)(2018-05-06,9811.643175)(2018-05-07,9359.833082)(2018-05-08,8719.352765)(2018-05-09,8514.163647)(2018-05-10,8896.741194)(2018-05-11,8776.825412)(2018-05-12,9197.069674)(2018-05-13,8991.402612)(2018-05-14,8372.386616)(2018-05-15,7876.752372)(2018-05-16,7561.568342)(2018-05-17,6807.379441)(2018-05-18,5266.075248)(2018-05-19,4871.314246)(2018-05-20,4407.524618)(2018-05-21,4371.929802)(2018-05-22,4264.918144)(2018-05-23,3932.110896)(2018-05-24,3327.743616)(2018-05-25,2966.580996)(2018-05-26,2520.786613)(2018-05-27,2980.675934)(2018-05-28,2937.302507)(2018-05-29,2958.604778)(2018-05-30,2901.008649)(2018-05-31,3267.775568)(2018-06-01,3544.366487)(2018-06-02,3434.376455)(2018-06-03,3675.284364)(2018-06-04,3745.989629)(2018-06-05,3749.514203)(2018-06-06,4312.220851)(2018-06-07,4439.829836)(2018-06-08,4742.981965)(2018-06-09,4459.927569)(2018-06-10,3826.270008)(2018-06-11,4068.892094)(2018-06-12,3944.847455)(2018-06-13,3870.550146)(2018-06-14,3515.439411)(2018-06-15,3491.995421)(2018-06-16,3751.647894)(2018-06-17,3521.810255)(2018-06-18,3688.260368)(2018-06-19,3840.757630)(2018-06-20,3245.086529)(2018-06-21,3234.044270)(2018-06-22,3087.708250)(2018-06-23,3140.084509)(2018-06-24,3141.117843)(2018-06-25,2861.705712)(2018-06-26,2924.827791)(2018-06-27,2965.478976)(2018-06-28,2865.814545)(2018-06-29,2587.875333)(2018-06-30,2353.631142)(2018-07-01,2315.206525)(2018-07-02,2043.315754)(2018-07-03,1839.240335)(2018-07-04,1810.701440)(2018-07-05,1599.668648)(2018-07-06,1419.279092)(2018-07-07,1725.373902)(2018-07-08,1823.077531)(2018-07-09,1889.048840)(2018-07-10,1977.131769)(2018-07-11,1999.317501)(2018-07-12,2145.274859)(2018-07-13,2216.854056)(2018-07-14,2391.521937)(2018-07-15,2491.672373)(2018-07-16,2711.297802)(2018-07-17,3770.256946)(2018-07-18,4106.236580)(2018-07-19,4428.305707)(2018-07-20,4444.351677)(2018-07-21,4079.106756)(2018-07-22,3917.470889)(2018-07-23,4053.065669)(2018-07-24,3977.816673)(2018-07-25,3959.721500)(2018-07-26,4136.532984)(2018-07-27,4209.356535)(2018-07-28,4164.287055)(2018-07-29,5333.140762)(2018-07-30,5214.338689)(2018-07-31,4135.740228)(2018-08-01,4082.534074)(2018-08-02,5001.992934)(2018-08-03,4956.035392)(2018-08-04,5323.163055)(2018-08-05,11632.785979)(2018-08-06,11912.906328)(2018-08-07,11873.639980)(2018-08-08,11952.871395)(2018-08-09,11751.712469)(2018-08-10,11672.953140)(2018-08-11,12040.243682)(2018-08-12,10773.633834)(2018-08-13,10708.906381)(2018-08-14,10786.464477)(2018-08-15,10514.214452)(2018-08-16,9307.604560)(2018-08-17,9276.962848)(2018-08-18,8952.337175)(2018-08-19,2638.345550)(2018-08-20,2225.552938)(2018-08-21,3077.885546)(2018-08-22,2907.350627)(2018-08-23,2849.910172)(2018-08-24,2752.583928)(2018-08-25,2282.394648)(2018-08-26,2324.460365)(2018-08-27,2308.947284)(2018-08-28,2610.172988)(2018-08-29,2748.316655)(2018-08-30,2815.263429)(2018-08-31,2840.785612)(2018-09-01,2878.707242)(2018-09-02,2947.018472)(2018-09-03,3019.569449)(2018-09-04,2069.671428)(2018-09-05,2480.704433)(2018-09-06,2571.807386)(2018-09-07,2738.028405)(2018-09-08,2760.036244)(2018-09-09,3316.713140)(2018-09-10,3319.049724)(2018-09-11,3655.928997)(2018-09-12,3458.566703)(2018-09-13,3338.850250)(2018-09-14,3406.725795)(2018-09-15,3334.327702)(2018-09-16,3290.199121)(2018-09-17,3162.142887)(2018-09-18,3150.273838)(2018-09-19,2846.567167)(2018-09-20,2642.110888)(2018-09-21,2524.562659)(2018-09-22,2387.680173)(2018-09-23,1744.056833)(2018-09-24,1706.954900)(2018-09-25,953.705229)(2018-09-26,1001.099288)(2018-09-27,1030.681482)(2018-09-28,918.607467)(2018-09-29,1277.754074)(2018-09-30,1272.107822)(2018-10-01,1284.153965)(2018-10-02,1280.865365)(2018-10-03,1179.218884)(2018-10-04,1314.290485)(2018-10-05,1344.861284)(2018-10-06,1341.172164)(2018-10-07,1435.487082)(2018-10-08,1421.897868)(2018-10-09,1526.605420)(2018-10-10,1578.084452)(2018-10-11,1657.015622)(2018-10-12,1684.571272)(2018-10-13,1409.494553)(2018-10-14,1499.678439)(2018-10-15,1498.247998)(2018-10-16,1536.705402)(2018-10-17,1595.262623)(2018-10-18,1463.287769)(2018-10-19,1386.777413)(2018-10-20,1399.470653)(2018-10-21,1349.664074)(2018-10-22,1406.244050)(2018-10-23,1328.784672)(2018-10-24,1232.122758)(2018-10-25,1153.341068)(2018-10-26,1150.627903)(2018-10-27,1066.977289)(2018-10-28,981.539673)(2018-10-29,1020.562162)(2018-10-30,989.371432)(2018-10-31,1001.504856)(2018-11-01,1019.149894)(2018-11-02,1047.964929)(2018-11-03,1040.895820)(2018-11-04,1089.214968)(2018-11-05,1045.814397)(2018-11-06,1125.624698)(2018-11-07,1104.530165)(2018-11-08,1168.983720)(2018-11-09,1274.479706)(2018-11-10,1343.040632)(2018-11-11,1348.802208)(2018-11-12,1265.319543)(2018-11-13,1390.038910)(2018-11-14,1331.654141)(2018-11-15,1379.308562)(2018-11-16,1360.957529)(2018-11-17,1401.641424)(2018-11-18,1304.291510)(2018-11-19,1353.289923)(2018-11-20,1254.696965)(2018-11-21,1252.472371)(2018-11-22,1161.143999)(2018-11-23,1137.289512)(2018-11-24,1046.724578)(2018-11-25,1004.326865)(2018-11-26,1107.212332)(2018-11-27,986.101460)(2018-11-28,1011.591631)(2018-11-29,954.091483)(2018-11-30,967.520368)(2018-12-01,948.744681)(2018-12-02,955.062874)(2018-12-03,882.248797)(2018-12-04,893.428901)(2018-12-05,860.947334)(2018-12-06,867.674360)(2018-12-07,742.585526)(2018-12-08,750.785529)(2018-12-09,940.592040)(2018-12-10,960.323370)(2018-12-11,946.809793)(2018-12-12,894.702194)(2018-12-13,901.264502)(2018-12-14,850.380334)(2018-12-15,806.927629)(2018-12-16,838.450449)(2018-12-17,870.366901)(2018-12-18,862.753780)(2018-12-19,868.408032)(2018-12-20,853.755131)(2018-12-21,863.212001)(2018-12-22,885.484779)(2018-12-23,716.228061)(2018-12-24,643.844186)(2018-12-25,710.132438)(2018-12-26,722.232550)(2018-12-27,692.627468)(2018-12-28,679.701324)(2018-12-29,713.730569)(2018-12-30,712.336621)(2018-12-31,677.378340)(2019-01-01,683.981436)(2019-01-02,1797.557856)(2019-01-03,1805.754631)(2019-01-04,1884.153807)(2019-01-05,1895.313329)(2019-01-06,1886.485354)(2019-01-07,1885.807313)(2019-01-08,1833.969246)(2019-01-09,1844.570664)(2019-01-10,1875.858377)(2019-01-11,1938.876339)(2019-01-12,1922.115747)(2019-01-13,1894.753156)(2019-01-14,1904.554863)(2019-01-15,1873.307383)(2019-01-16,801.859053)(2019-01-17,799.533550)(2019-01-18,768.261637)(2019-01-19,755.067065)(2019-01-20,945.711790)(2019-01-21,943.107264)(2019-01-22,1007.509301)(2019-01-23,995.729601)(2019-01-24,997.660482)(2019-01-25,984.538934)(2019-01-26,968.149210)(2019-01-27,969.641864)(2019-01-28,965.867825)(2019-01-29,954.125693)(2019-01-30,902.049119)(2019-01-31,918.493379)(2019-02-01,876.399895)(2019-02-02,889.176762)(2019-02-03,690.185003)(2019-02-04,670.177868)(2019-02-05,658.062562)(2019-02-06,648.209580)(2019-02-07,633.467398)(2019-02-08,629.134565)(2019-02-09,711.604524)(2019-02-10,697.345535)(2019-02-11,738.019997)(2019-02-12,803.655878)(2019-02-13,824.080405)(2019-02-14,860.015002)(2019-02-15,880.388454)(2019-02-16,846.022928)(2019-02-17,853.280934)(2019-02-18,853.018500)(2019-02-19,840.554766)(2019-02-20,973.618419)(2019-02-21,1070.632373)(2019-02-22,1178.348438)(2019-02-23,1091.808548)(2019-02-24,1161.733876)(2019-02-25,1135.519189)(2019-02-26,1289.338037)(2019-02-27,1297.503081)(2019-02-28,1295.688415)(2019-03-01,1327.378311)(2019-03-02,1459.216826)(2019-03-03,1713.176980)(2019-03-04,2016.808285)(2019-03-05,2010.723091)(2019-03-06,1926.323099)(2019-03-07,1883.063802)(2019-03-08,1772.448083)(2019-03-09,3125.600342)(2019-03-10,3113.878430)(2019-03-11,3230.830633)(2019-03-12,3145.745060)(2019-03-13,3242.601946)(2019-03-14,3196.230769)(2019-03-15,3163.253923)(2019-03-16,3374.957763)(2019-03-17,3115.526349)(2019-03-18,2761.843555)(2019-03-19,2681.514957)(2019-03-20,2585.622803)(2019-03-21,2491.370432)(2019-03-22,2430.925574)(2019-03-23,1054.378346) }; +\addplot[mark=none, orange, dashed, line width=3pt] coordinates { (2017-07-01,38.026923) (2017-07-02,172.420542) (2017-07-03,398.841339) (2017-07-04,889.460284) (2017-07-05,933.126769) (2017-07-06,2080.812005) (2017-07-07,3335.648531) (2017-07-08,3385.167256) (2017-07-09,3575.783881) (2017-07-10,4562.849205) (2017-07-11,4924.686471) (2017-07-12,5648.442808) (2017-07-13,8516.506762) (2017-07-14,9403.399247) (2017-07-15,10515.460771) (2017-07-16,10704.586049) (2017-07-17,12162.364784) (2017-07-18,12965.461915) (2017-07-19,13744.058129) (2017-07-20,15905.274064) (2017-07-21,16012.583926) (2017-07-22,16382.663164) (2017-07-23,16978.746993) (2017-07-24,23983.734440) (2017-07-25,24523.586815) (2017-07-26,24643.022696) (2017-07-27,24776.600154) (2017-07-28,24890.213308) (2017-07-29,24963.018919) (2017-07-30,27877.280254) (2017-07-31,28039.841533) (2017-08-01,28357.195817) (2017-08-02,28401.674011) (2017-08-03,28757.023806) (2017-08-04,29378.185358) (2017-08-05,29784.210249) (2017-08-06,30613.492663) (2017-08-07,32068.386460) (2017-08-08,32677.169336) (2017-08-09,33315.079269) (2017-08-10,33721.408500) (2017-08-11,34733.925233) (2017-08-12,39448.398449) (2017-08-13,41382.255437) (2017-08-14,43090.405049) (2017-08-15,51785.901094) (2017-08-16,59607.429959) (2017-08-17,71417.665349) (2017-08-18,77665.305306) (2017-08-19,83664.000535) (2017-08-20,86047.018567) (2017-08-21,90566.592029) (2017-08-22,92483.913489) (2017-08-23,96208.043456) (2017-08-24,98984.202386) (2017-08-25,102319.029566) (2017-08-26,104841.907381) (2017-08-27,109852.616671) (2017-08-28,118866.062616) (2017-08-29,127386.424528) (2017-08-30,158053.177945) (2017-08-31,161337.874280) (2017-09-01,167833.265324) (2017-09-02,173676.926240) (2017-09-03,178706.832537) (2017-09-04,184709.358812) (2017-09-05,191183.795694) (2017-09-06,202181.790915) (2017-09-07,213860.478923) (2017-09-08,225973.311086) (2017-09-09,235404.854859) (2017-09-10,247487.509290) (2017-09-11,256505.904826) (2017-09-12,266965.390573) (2017-09-13,275544.213274) (2017-09-14,278471.977698) (2017-09-15,288005.314348) (2017-09-16,289829.499174) (2017-09-17,297219.162822) (2017-09-18,303028.402042) (2017-09-19,316509.763396) (2017-09-20,330732.644754) (2017-09-21,340422.094010) (2017-09-22,344157.137829) (2017-09-23,349601.016109) (2017-09-24,365195.419482) (2017-09-25,378161.216536) (2017-09-26,386875.755148) (2017-09-27,398771.713028) (2017-09-28,411505.074908) (2017-09-29,439486.001450) (2017-09-30,448463.381248) (2017-10-01,455893.436476) (2017-10-02,465116.572965) (2017-10-03,473857.145461) (2017-10-04,487635.698182) (2017-10-05,519342.423525) (2017-10-06,551698.005599) (2017-10-07,562607.884626) (2017-10-08,571226.246431) (2017-10-09,587210.203187) (2017-10-10,600164.271220) (2017-10-11,609121.555277) (2017-10-12,638789.182012) (2017-10-13,649847.383088) (2017-10-14,660472.130978) (2017-10-15,668849.318420) (2017-10-16,674682.804491) (2017-10-17,684407.966832) (2017-10-18,693419.782683) (2017-10-19,699589.860167) (2017-10-20,709323.612220) (2017-10-21,714554.187402) (2017-10-22,721938.200500) (2017-10-23,734542.797680) (2017-10-24,742096.862028) (2017-10-25,776886.502568) (2017-10-26,790276.813329) (2017-10-27,806059.149438) (2017-10-28,819279.165072) (2017-10-29,829287.610405) (2017-10-30,842047.770907) (2017-10-31,855658.534544) (2017-11-01,874507.262195) (2017-11-02,885961.335464) (2017-11-03,893054.445138) (2017-11-04,897866.459005) (2017-11-05,902637.119073) (2017-11-06,915571.124889) (2017-11-07,933271.759278) (2017-11-08,981035.288592) (2017-11-09,1003475.601059) (2017-11-10,1036208.597765) (2017-11-11,1043091.822787) (2017-11-12,1064093.428149) (2017-11-13,1074342.340521) (2017-11-14,1093671.814796) (2017-11-15,1119110.857282) (2017-11-16,1139274.299681) (2017-11-17,1163387.584829) (2017-11-18,1183874.734483) (2017-11-19,1196577.495452) (2017-11-20,1230072.023786) (2017-11-21,1265481.267087) (2017-11-22,1280427.939781) (2017-11-23,1304487.075893) (2017-11-24,1317264.021322) (2017-11-25,1389300.797939) (2017-11-26,1427000.350432) (2017-11-27,1448223.176312) (2017-11-28,1466502.457543) (2017-11-29,1482221.344914) (2017-11-30,1501177.705643) (2017-12-01,1517478.662696) (2017-12-02,1535609.658755) (2017-12-03,1551538.266270) (2017-12-04,1578664.836169) (2017-12-05,1596530.242184) (2017-12-06,1630568.235481) (2017-12-07,1642391.000468) (2017-12-08,1673159.750771) (2017-12-09,1686269.113161) (2017-12-10,1717044.078252) (2017-12-11,1733791.799981) (2017-12-12,1790882.632366) (2017-12-13,1871885.991959) (2017-12-14,1907258.189281) (2017-12-15,1951740.971571) (2017-12-16,2019142.656228) (2017-12-17,2099945.593829) (2017-12-18,2148060.569448) (2017-12-19,2223743.491675) (2017-12-20,2258519.761688) (2017-12-21,2302909.942930) (2017-12-22,2318352.421181) (2017-12-23,2339193.697394) (2017-12-24,2357421.766377) (2017-12-25,2387410.138348) (2017-12-26,2404049.025957) (2017-12-27,2422837.243271) (2017-12-28,2449507.819625) (2017-12-29,2515901.373157) (2017-12-30,2553149.637331) (2017-12-31,2593250.655883) (2018-01-01,2625031.544492) (2018-01-02,2671914.463002) (2018-01-03,2737618.116504) (2018-01-04,2798014.963414) (2018-01-05,2891369.065436) (2018-01-06,3017103.499851) (2018-01-07,3153235.837487) (2018-01-08,3268396.493447) (2018-01-09,3346983.780145) (2018-01-10,3410011.440617) (2018-01-11,3477485.294806) (2018-01-12,3535062.574391) (2018-01-13,3583211.628291) (2018-01-14,3633324.009603) (2018-01-15,3701349.911911) (2018-01-16,3725712.213745) (2018-01-17,3755558.792159) (2018-01-18,3837940.652151) (2018-01-19,3911744.346376) (2018-01-20,3952548.916474) (2018-01-21,3974429.717769) (2018-01-22,3996725.862493) (2018-01-23,4059253.945618) (2018-01-24,4106059.392450) (2018-01-25,4144060.085399) (2018-01-26,4178093.451589) (2018-01-27,4200148.357377) (2018-01-28,4229625.588612) (2018-01-29,4262319.036570) (2018-01-30,4288304.571739) (2018-01-31,4318007.591498) (2018-02-01,4369327.349936) (2018-02-02,4394131.264290) (2018-02-03,4422560.593219) (2018-02-04,4450317.062466) (2018-02-05,4462244.885442) (2018-02-06,4497379.450668) (2018-02-07,4521829.171217) (2018-02-08,4556924.668666) (2018-02-09,4571927.139618) (2018-02-10,4587578.471453) (2018-02-11,4600369.270699) (2018-02-12,4648325.577789) (2018-02-13,4653429.797665) (2018-02-14,4671476.733168) (2018-02-15,4679870.154475) (2018-02-16,4687614.127810) (2018-02-17,4698958.890929) (2018-02-18,4709261.001529) (2018-02-19,4727777.343575) (2018-02-20,4736991.362064) (2018-02-21,4748849.164618) (2018-02-22,4755390.511028) (2018-02-23,4761418.311627) (2018-02-24,4769804.120284) (2018-02-25,4773856.281503) (2018-02-26,4779937.429845) (2018-02-27,4785956.842497) (2018-02-28,4792250.372405) (2018-03-01,4806281.411313) (2018-03-02,4825100.859330) (2018-03-03,4853343.675955) (2018-03-04,4879537.755891) (2018-03-05,4884898.236230) (2018-03-06,4893471.789646) (2018-03-07,4903314.644534) (2018-03-08,4909759.779613) (2018-03-09,4919080.955364) (2018-03-10,4925013.418801) (2018-03-11,4926747.211154) (2018-03-12,4933424.430506) (2018-03-13,4939459.755117) (2018-03-14,4946180.401062) (2018-03-15,4949583.262317) (2018-03-16,4956591.616112) (2018-03-17,4958876.296460) (2018-03-18,4969063.980406) (2018-03-19,4973356.713103) (2018-03-20,4976620.043279) (2018-03-21,4980816.807785) (2018-03-22,4982561.186074) (2018-03-23,5004397.006152) (2018-03-24,5006209.604545) (2018-03-25,5007643.974767) (2018-03-26,5010889.492833) (2018-03-27,5013789.184932) (2018-03-28,5018535.252536) (2018-03-29,5020125.476757) (2018-03-30,5022099.252760) (2018-03-31,5022969.137907) (2018-04-01,5024093.071818) (2018-04-02,5041152.705730) (2018-04-03,5044058.540666) (2018-04-04,5045308.151846) (2018-04-05,5047667.344295) (2018-04-06,5058567.934575) (2018-04-07,5059619.708068) (2018-04-08,5060786.871250) (2018-04-09,5069684.676543) (2018-04-10,5072876.655470) (2018-04-11,5077999.622658) (2018-04-12,5079761.974977) (2018-04-13,5083115.867045) (2018-04-14,5086705.930255) (2018-04-15,5088292.960787) (2018-04-16,5091161.310490) (2018-04-17,5099622.702278) (2018-04-18,5140488.596499) (2018-04-19,5156349.248344) (2018-04-20,5161503.586205) (2018-04-21,5166747.647122) (2018-04-22,5170566.994482) (2018-04-23,5177358.093415) (2018-04-24,5185017.023256) (2018-04-25,5193001.012635) (2018-04-26,5211279.654164) (2018-04-27,5221962.912329) (2018-04-28,5226854.972110) (2018-04-29,5235009.539555) (2018-04-30,5247561.099974) (2018-05-01,5257821.775000) (2018-05-02,5262941.484089) (2018-05-03,5271750.299014) (2018-05-04,5276762.912944) (2018-05-05,5283672.651747) (2018-05-06,5294074.736811) (2018-05-07,5304003.383212) (2018-05-08,5311681.411247) (2018-05-09,5324639.097678) (2018-05-10,5347777.519573) (2018-05-11,5356369.504265) (2018-05-12,5364217.976559) (2018-05-13,5366047.202706) (2018-05-14,5369632.038679) (2018-05-15,5377020.066056) (2018-05-16,5387495.860808) (2018-05-17,5394625.854783) (2018-05-18,5405521.888383) (2018-05-19,5409552.288315) (2018-05-20,5411288.149433) (2018-05-21,5414277.916415) (2018-05-22,5417543.368029) (2018-05-23,5419942.409850) (2018-05-24,5421502.573039) (2018-05-25,5424567.903711) (2018-05-26,5425923.321208) (2018-05-27,5427254.219928) (2018-05-28,5429340.892698) (2018-05-29,5432069.618605) (2018-05-30,5434084.271427) (2018-05-31,5436157.988726) (2018-06-01,5440812.900964) (2018-06-02,5451281.751397) (2018-06-03,5452410.384530) (2018-06-04,5455698.383308) (2018-06-05,5458157.489119) (2018-06-06,5465691.267799) (2018-06-07,5471123.703862) (2018-06-08,5472649.174074) (2018-06-09,5477377.302303) (2018-06-10,5479698.074738) (2018-06-11,5481834.091536) (2018-06-12,5492440.710516) (2018-06-13,5496241.889135) (2018-06-14,5502559.736237) (2018-06-15,5503251.886928) (2018-06-16,5504849.531515) (2018-06-17,5509374.873851) (2018-06-18,5510926.247676) (2018-06-19,5512345.191168) (2018-06-20,5514907.419551) (2018-06-21,5520011.639753) (2018-06-22,5525172.244597) (2018-06-23,5526682.645874) (2018-06-24,5531333.719884) (2018-06-25,5535604.698358) (2018-06-26,5537871.921925) (2018-06-27,5541518.508918) (2018-06-28,5545787.651741) (2018-06-29,5547213.070056) (2018-06-30,5548825.181320) (2018-07-01,5549438.753824) (2018-07-02,5551873.836754) (2018-07-03,5553861.896834) (2018-07-04,5555028.823188) (2018-07-05,5556241.894421) (2018-07-06,5558123.080591) (2018-07-07,5559095.537225) (2018-07-08,5559940.140445) (2018-07-09,5561354.063052) (2018-07-10,5563221.742087) (2018-07-11,5563913.869993) (2018-07-12,5565657.559025) (2018-07-13,5571368.304683) (2018-07-14,5574348.266748) (2018-07-15,5575885.437586) (2018-07-16,5579553.681516) (2018-07-17,5581852.341847) (2018-07-18,5585062.671214) (2018-07-19,5587277.851207) (2018-07-20,5591604.387708) (2018-07-21,5593978.950451) (2018-07-22,5597898.309666) (2018-07-23,5614137.660296) (2018-07-24,5620709.054201) (2018-07-25,5625910.149889) (2018-07-26,5627878.482510) (2018-07-27,5628475.799269) (2018-07-28,5629192.859191) (2018-07-29,5632628.356957) (2018-07-30,5635243.114945) (2018-07-31,5637288.442844) (2018-08-01,5642974.132984) (2018-08-02,5646208.842693) (2018-08-03,5649904.406474) (2018-08-04,5668642.921120) (2018-08-05,5670899.051314) (2018-08-06,5672038.023493) (2018-08-07,5677864.531241) (2018-08-08,5695938.050966) (2018-08-09,5697262.978002) (2018-08-10,5703000.082044) (2018-08-11,5792051.862900) (2018-08-12,5799409.045547) (2018-08-13,5801474.074661) (2018-08-14,5804628.642378) (2018-08-15,5807498.107549) (2018-08-16,5809630.186653) (2018-08-17,5818467.818026) (2018-08-18,5819473.794790) (2018-08-19,5820823.740643) (2018-08-20,5823048.526175) (2018-08-21,5825063.533571) (2018-08-22,5826244.514809) (2018-08-23,5827140.457872) (2018-08-24,5828332.802499) (2018-08-25,5828988.700596) (2018-08-26,5830566.786679) (2018-08-27,5844564.472299) (2018-08-28,5845331.551158) (2018-08-29,5847396.849955) (2018-08-30,5848166.361644) (2018-08-31,5850421.343099) (2018-09-01,5852016.239900) (2018-09-02,5853149.002613) (2018-09-03,5859590.948000) (2018-09-04,5863539.966741) (2018-09-05,5865658.202817) (2018-09-06,5866911.456443) (2018-09-07,5868634.703883) (2018-09-08,5870246.959204) (2018-09-09,5872840.758963) (2018-09-10,5873539.872287) (2018-09-11,5880061.413218) (2018-09-12,5883402.153361) (2018-09-13,5886498.759320) (2018-09-14,5889061.850513) (2018-09-15,5898450.223860) (2018-09-16,5899615.698742) (2018-09-17,5910773.953964) (2018-09-18,5911959.900588) (2018-09-19,5912402.106314) (2018-09-20,5914605.617575) (2018-09-21,5915315.291704) (2018-09-22,5916309.746894) (2018-09-23,5917110.759378) (2018-09-24,5917643.706018) (2018-09-25,5919913.353558) (2018-09-26,5920391.705796) (2018-09-27,5921842.636553) (2018-09-28,5922489.372942) (2018-09-29,5922867.019521) (2018-09-30,5923513.067347) (2018-10-01,5924125.827174) (2018-10-02,5925975.290618) (2018-10-03,5926831.647066) (2018-10-04,5927466.122109) (2018-10-05,5933203.848747) (2018-10-06,5934119.256407) (2018-10-07,5935088.914894) (2018-10-08,5935575.821126) (2018-10-09,5936422.417936) (2018-10-10,5938791.772581) (2018-10-11,5940670.694522) (2018-10-12,5941265.783240) (2018-10-13,5942963.838665) (2018-10-14,5943419.637498) (2018-10-15,5945498.303058) (2018-10-16,5948068.472947) (2018-10-17,5950029.865776) (2018-10-18,5951050.119919) (2018-10-19,5952936.772482) (2018-10-20,5955114.754551) (2018-10-21,5956064.386866) (2018-10-22,5957089.696752) (2018-10-23,5958756.094656) (2018-10-24,5959277.801341) (2018-10-25,5960085.578305) (2018-10-26,5960858.372380) (2018-10-27,5961859.135702) (2018-10-28,5963107.054194) (2018-10-29,5964101.288460) (2018-10-30,5965318.191565) (2018-10-31,5966176.640721) (2018-11-01,5967158.910561) (2018-11-02,5967874.454525) (2018-11-03,5968856.309972) (2018-11-04,5970352.257128) (2018-11-05,5970940.896802) (2018-11-06,5972777.162637) (2018-11-07,5973545.899862) (2018-11-08,5974757.087314) (2018-11-09,5975430.913863) (2018-11-10,5977108.145259) (2018-11-11,5977748.455755) (2018-11-12,5979860.034234) (2018-11-13,5980781.613868) (2018-11-14,5982542.412807) (2018-11-15,5985001.626441) (2018-11-16,5986677.023371) (2018-11-17,5987739.540884) (2018-11-18,5988066.730732) (2018-11-19,5990401.441545) (2018-11-20,5991420.320605) (2018-11-21,5992856.219733) (2018-11-22,5993810.492724) (2018-11-23,5995053.893795) (2018-11-24,5995368.226398) (2018-11-25,5996694.514678) (2018-11-26,5997425.791749) (2018-11-27,5998316.227067) (2018-11-28,5998798.428795) (2018-11-29,6000923.679605) (2018-11-30,6001331.167458) (2018-12-01,6001800.116989) (2018-12-02,6003567.703378) (2018-12-03,6004206.861979) (2018-12-04,6005582.603432) (2018-12-05,6006213.500491) (2018-12-06,6007355.777881) (2018-12-07,6008336.319334) (2018-12-08,6008739.106631) (2018-12-09,6009045.997833) (2018-12-10,6009933.796360) (2018-12-11,6010369.489742) (2018-12-12,6010945.869841) (2018-12-13,6011319.876962) (2018-12-14,6011842.164861) (2018-12-15,6014968.405552) (2018-12-16,6017012.230557) (2018-12-17,6017462.199080) (2018-12-18,6018108.434145) (2018-12-19,6018831.203519) (2018-12-20,6019261.102563) (2018-12-21,6019633.306142) (2018-12-22,6020477.412916) (2018-12-23,6021231.134447) (2018-12-24,6022012.349282) (2018-12-25,6022527.202196) (2018-12-26,6022898.441682) (2018-12-27,6023404.844975) (2018-12-28,6024238.951773) (2018-12-29,6024995.598410) (2018-12-30,6026026.049167) (2018-12-31,6027404.053213) (2019-01-01,6028219.689847) (2019-01-02,6028527.988067) (2019-01-03,6028776.921101) (2019-01-04,6029625.534109) (2019-01-05,6030450.125617) (2019-01-06,6030714.431207) (2019-01-07,6031588.089391) (2019-01-08,6047693.012174) (2019-01-09,6048179.006519) (2019-01-10,6049782.998276) (2019-01-11,6050773.338385) (2019-01-12,6051406.393369) (2019-01-13,6052427.351545) (2019-01-14,6053079.622662) (2019-01-15,6054043.679138) (2019-01-16,6054790.005351) (2019-01-17,6055921.189840) (2019-01-18,6056535.154571) (2019-01-19,6056976.669794) (2019-01-20,6057378.199288) (2019-01-21,6057814.392747) (2019-01-22,6058919.038919) (2019-01-23,6059372.476213) (2019-01-24,6060538.661196) (2019-01-25,6061344.277300) (2019-01-26,6064646.358433) (2019-01-27,6065630.853244) (2019-01-28,6067184.752878) (2019-01-29,6067983.893547) (2019-01-30,6068757.252093) (2019-01-31,6069704.734910) (2019-02-01,6070089.243506) (2019-02-02,6070551.655891) (2019-02-03,6070900.348842) (2019-02-04,6071172.152451) (2019-02-05,6071547.726587) (2019-02-06,6072231.383514) (2019-02-07,6072808.259728) (2019-02-08,6073792.751967) (2019-02-09,6074308.948474) (2019-02-10,6075013.343392) (2019-02-11,6076397.628751) (2019-02-12,6077058.827664) (2019-02-13,6077625.795658) (2019-02-14,6078512.618822) (2019-02-15,6080051.706846) (2019-02-16,6080314.493375) (2019-02-17,6081232.628805) (2019-02-18,6082423.334738) (2019-02-19,6083084.852261) (2019-02-20,6084271.593544) (2019-02-21,6085133.698079) (2019-02-22,6085637.072958) (2019-02-23,6086254.881550) (2019-02-24,6086955.602388) (2019-02-25,6088165.395475) (2019-02-26,6090689.485527) (2019-02-27,6092614.648877) (2019-02-28,6095009.496954) (2019-03-01,6095337.026519) (2019-03-02,6096578.767641) (2019-03-03,6097129.897448) (2019-03-04,6100474.067262) (2019-03-05,6101249.895396) (2019-03-06,6102411.231361) (2019-03-07,6103716.994432) (2019-03-08,6106066.108529) (2019-03-09,6110239.359267) (2019-03-10,6115190.918382) (2019-03-11,6116315.518754) (2019-03-12,6117658.008919) (2019-03-13,6118977.542107) (2019-03-14,6119823.770119) (2019-03-15,6139095.431310) (2019-03-16,6140173.065656) (2019-03-17,6142361.526314) (2019-03-18,6144514.498101) (2019-03-19,6146646.322635) (2019-03-20,6147158.462124) (2019-03-21,6148002.549352) (2019-03-22,6153315.517207) (2019-03-23,6153856.728156) }; +\end{axis} +\begin{axis}[clip mode=individual, date coordinates in=x, + xticklabel=\month-\year,ymode=log, xmajorticks=false, y tick style={draw=none}, y tick label style={color=green}, ylabel={\color{green}ETH Price (USD)}, + log basis y={10}, ymin=0, ymax=2000,ylabel near ticks, yticklabel pos=right] +\addplot[mark=none, green, dashed, line width=2pt] coordinates { (2017-07-01,293.350000) (2017-07-02,275.120000) (2017-07-03,288.410000) (2017-07-04,282.190000) (2017-07-05,273.100000) (2017-07-06,268.860000) (2017-07-07,270.350000) (2017-07-08,245.890000) (2017-07-09,251.820000) (2017-07-10,243.010000) (2017-07-11,211.520000) (2017-07-12,197.150000) (2017-07-13,231.810000) (2017-07-14,209.530000) (2017-07-15,199.710000) (2017-07-16,169.570000) (2017-07-17,159.990000) (2017-07-18,195.030000) (2017-07-19,234.940000) (2017-07-20,205.420000) (2017-07-21,226.060000) (2017-07-22,217.860000) (2017-07-23,229.120000) (2017-07-24,226.290000) (2017-07-25,224.370000) (2017-07-26,207.090000) (2017-07-27,204.860000) (2017-07-28,204.320000) (2017-07-29,193.340000) (2017-07-30,206.740000) (2017-07-31,197.400000) (2017-08-01,204.690000) (2017-08-02,227.010000) (2017-08-03,220.180000) (2017-08-04,225.310000) (2017-08-05,222.850000) (2017-08-06,256.420000) (2017-08-07,261.240000) (2017-08-08,269.100000) (2017-08-09,297.630000) (2017-08-10,296.960000) (2017-08-11,294.490000) (2017-08-12,308.710000) (2017-08-13,310.370000) (2017-08-14,298.030000) (2017-08-15,299.950000) (2017-08-16,289.820000) (2017-08-17,302.800000) (2017-08-18,301.700000) (2017-08-19,296.180000) (2017-08-20,296.640000) (2017-08-21,300.480000) (2017-08-22,321.050000) (2017-08-23,315.270000) (2017-08-24,317.450000) (2017-08-25,326.110000) (2017-08-26,331.990000) (2017-08-27,334.360000) (2017-08-28,350.040000) (2017-08-29,347.960000) (2017-08-30,369.470000) (2017-08-31,378.440000) (2017-09-01,383.470000) (2017-09-02,387.820000) (2017-09-03,350.230000) (2017-09-04,347.130000) (2017-09-05,297.570000) (2017-09-06,313.800000) (2017-09-07,333.520000) (2017-09-08,329.640000) (2017-09-09,296.170000) (2017-09-10,294.060000) (2017-09-11,289.740000) (2017-09-12,294.630000) (2017-09-13,291.120000) (2017-09-14,276.590000) (2017-09-15,215.220000) (2017-09-16,250.870000) (2017-09-17,245.850000) (2017-09-18,252.230000) (2017-09-19,293.660000) (2017-09-20,282.020000) (2017-09-21,283.260000) (2017-09-22,258.110000) (2017-09-23,264.600000) (2017-09-24,286.210000) (2017-09-25,282.220000) (2017-09-26,292.350000) (2017-09-27,287.020000) (2017-09-28,306.470000) (2017-09-29,299.120000) (2017-09-30,291.480000) (2017-10-01,301.550000) (2017-10-02,302.480000) (2017-10-03,297.480000) (2017-10-04,292.750000) (2017-10-05,292.770000) (2017-10-06,295.150000) (2017-10-07,308.890000) (2017-10-08,311.060000) (2017-10-09,308.670000) (2017-10-10,297.600000) (2017-10-11,301.180000) (2017-10-12,303.500000) (2017-10-13,304.080000) (2017-10-14,338.850000) (2017-10-15,339.530000) (2017-10-16,336.710000) (2017-10-17,333.480000) (2017-10-18,316.940000) (2017-10-19,314.540000) (2017-10-20,308.050000) (2017-10-21,303.570000) (2017-10-22,300.550000) (2017-10-23,295.100000) (2017-10-24,287.120000) (2017-10-25,298.440000) (2017-10-26,298.020000) (2017-10-27,296.510000) (2017-10-28,297.920000) (2017-10-29,296.380000) (2017-10-30,304.780000) (2017-10-31,307.380000) (2017-11-01,305.760000) (2017-11-02,290.730000) (2017-11-03,288.500000) (2017-11-04,305.480000) (2017-11-05,300.040000) (2017-11-06,296.430000) (2017-11-07,298.570000) (2017-11-08,294.270000) (2017-11-09,308.640000) (2017-11-10,320.670000) (2017-11-11,298.590000) (2017-11-12,314.690000) (2017-11-13,307.020000) (2017-11-14,316.760000) (2017-11-15,337.960000) (2017-11-16,333.440000) (2017-11-17,330.170000) (2017-11-18,331.980000) (2017-11-19,347.400000) (2017-11-20,354.090000) (2017-11-21,367.440000) (2017-11-22,360.310000) (2017-11-23,381.440000) (2017-11-24,412.500000) (2017-11-25,475.680000) (2017-11-26,465.970000) (2017-11-27,471.530000) (2017-11-28,480.520000) (2017-11-29,473.280000) (2017-11-30,431.210000) (2017-12-01,445.210000) (2017-12-02,466.850000) (2017-12-03,463.700000) (2017-12-04,466.050000) (2017-12-05,470.290000) (2017-12-06,462.600000) (2017-12-07,426.370000) (2017-12-08,434.990000) (2017-12-09,457.340000) (2017-12-10,472.790000) (2017-12-11,440.360000) (2017-12-12,522.290000) (2017-12-13,644.910000) (2017-12-14,700.590000) (2017-12-15,696.380000) (2017-12-16,686.190000) (2017-12-17,696.240000) (2017-12-18,721.730000) (2017-12-19,793.900000) (2017-12-20,827.520000) (2017-12-21,820.240000) (2017-12-22,822.640000) (2017-12-23,681.320000) (2017-12-24,721.770000) (2017-12-25,698.870000) (2017-12-26,763.370000) (2017-12-27,774.970000) (2017-12-28,762.210000) (2017-12-29,740.390000) (2017-12-30,753.820000) (2017-12-31,712.210000) (2018-01-01,755.760000) (2018-01-02,772.350000) (2018-01-03,886.000000) (2018-01-04,961.710000) (2018-01-05,975.750000) (2018-01-06,995.150000) (2018-01-07,1043.010000) (2018-01-08,1158.260000) (2018-01-09,1146.000000) (2018-01-10,1300.340000) (2018-01-11,1268.090000) (2018-01-12,1158.290000) (2018-01-13,1270.470000) (2018-01-14,1397.480000) (2018-01-15,1365.210000) (2018-01-16,1292.630000) (2018-01-17,1061.340000) (2018-01-18,1016.440000) (2018-01-19,1028.820000) (2018-01-20,1044.950000) (2018-01-21,1155.680000) (2018-01-22,1055.350000) (2018-01-23,1004.170000) (2018-01-24,987.480000) (2018-01-25,1063.220000) (2018-01-26,1052.700000) (2018-01-27,1055.750000) (2018-01-28,1111.780000) (2018-01-29,1246.700000) (2018-01-30,1184.130000) (2018-01-31,1071.090000) (2018-02-01,1119.370000) (2018-02-02,1035.770000) (2018-02-03,919.210000) (2018-02-04,964.670000) (2018-02-05,834.960000) (2018-02-06,707.740000) (2018-02-07,790.430000) (2018-02-08,755.840000) (2018-02-09,818.480000) (2018-02-10,882.470000) (2018-02-11,859.290000) (2018-02-12,817.510000) (2018-02-13,869.290000) (2018-02-14,844.280000) (2018-02-15,923.730000) (2018-02-16,934.790000) (2018-02-17,944.750000) (2018-02-18,973.350000) (2018-02-19,921.670000) (2018-02-20,943.570000) (2018-02-21,894.140000) (2018-02-22,849.260000) (2018-02-23,811.590000) (2018-02-24,861.590000) (2018-02-25,839.460000) (2018-02-26,845.280000) (2018-02-27,870.360000) (2018-02-28,877.930000) (2018-03-01,856.010000) (2018-03-02,871.760000) (2018-03-03,856.710000) (2018-03-04,856.190000) (2018-03-05,866.850000) (2018-03-06,853.820000) (2018-03-07,816.270000) (2018-03-08,752.570000) (2018-03-09,702.200000) (2018-03-10,730.160000) (2018-03-11,685.310000) (2018-03-12,724.410000) (2018-03-13,698.150000) (2018-03-14,691.220000) (2018-03-15,614.840000) (2018-03-16,611.780000) (2018-03-17,601.680000) (2018-03-18,551.640000) (2018-03-19,546.630000) (2018-03-20,556.720000) (2018-03-21,559.100000) (2018-03-22,562.100000) (2018-03-23,539.860000) (2018-03-24,542.570000) (2018-03-25,522.700000) (2018-03-26,524.290000) (2018-03-27,489.590000) (2018-03-28,450.290000) (2018-03-29,448.080000) (2018-03-30,385.900000) (2018-03-31,395.000000) (2018-04-01,397.250000) (2018-04-02,379.700000) (2018-04-03,387.310000) (2018-04-04,416.480000) (2018-04-05,379.950000) (2018-04-06,382.730000) (2018-04-07,370.380000) (2018-04-08,385.740000) (2018-04-09,400.860000) (2018-04-10,399.410000) (2018-04-11,415.020000) (2018-04-12,430.160000) (2018-04-13,493.160000) (2018-04-14,492.580000) (2018-04-15,502.880000) (2018-04-16,532.070000) (2018-04-17,511.140000) (2018-04-18,503.310000) (2018-04-19,524.040000) (2018-04-20,567.990000) (2018-04-21,616.000000) (2018-04-22,606.120000) (2018-04-23,621.200000) (2018-04-24,643.400000) (2018-04-25,707.060000) (2018-04-26,618.080000) (2018-04-27,662.110000) (2018-04-28,644.650000) (2018-04-29,683.910000) (2018-04-30,689.760000) (2018-05-01,670.460000) (2018-05-02,674.080000) (2018-05-03,686.590000) (2018-05-04,776.780000) (2018-05-05,784.580000) (2018-05-06,816.090000) (2018-05-07,793.340000) (2018-05-08,755.010000) (2018-05-09,752.900000) (2018-05-10,752.580000) (2018-05-11,727.010000) (2018-05-12,679.880000) (2018-05-13,687.170000) (2018-05-14,732.730000) (2018-05-15,731.140000) (2018-05-16,708.090000) (2018-05-17,708.720000) (2018-05-18,672.100000) (2018-05-19,695.070000) (2018-05-20,697.920000) (2018-05-21,717.190000) (2018-05-22,700.180000) (2018-05-23,646.670000) (2018-05-24,584.540000) (2018-05-25,602.140000) (2018-05-26,587.430000) (2018-05-27,588.520000) (2018-05-28,573.040000) (2018-05-29,516.150000) (2018-05-30,566.830000) (2018-05-31,558.500000) (2018-06-01,578.670000) (2018-06-02,580.430000) (2018-06-03,591.260000) (2018-06-04,619.440000) (2018-06-05,593.410000) (2018-06-06,610.260000) (2018-06-07,607.690000) (2018-06-08,605.440000) (2018-06-09,600.910000) (2018-06-10,594.340000) (2018-06-11,524.860000) (2018-06-12,532.710000) (2018-06-13,498.020000) (2018-06-14,478.380000) (2018-06-15,520.480000) (2018-06-16,490.410000) (2018-06-17,499.460000) (2018-06-18,499.380000) (2018-06-19,519.020000) (2018-06-20,538.510000) (2018-06-21,536.450000) (2018-06-22,527.190000) (2018-06-23,466.270000) (2018-06-24,474.770000) (2018-06-25,455.940000) (2018-06-26,460.730000) (2018-06-27,432.240000) (2018-06-28,442.290000) (2018-06-29,422.590000) (2018-06-30,436.210000) (2018-07-01,455.240000) (2018-07-02,453.820000) (2018-07-03,475.390000) (2018-07-04,464.150000) (2018-07-05,467.290000) (2018-07-06,474.360000) (2018-07-07,474.060000) (2018-07-08,492.070000) (2018-07-09,488.880000) (2018-07-10,476.160000) (2018-07-11,434.520000) (2018-07-12,446.500000) (2018-07-13,430.740000) (2018-07-14,434.510000) (2018-07-15,435.880000) (2018-07-16,450.420000) (2018-07-17,480.080000) (2018-07-18,500.840000) (2018-07-19,480.630000) (2018-07-20,469.310000) (2018-07-21,450.680000) (2018-07-22,462.440000) (2018-07-23,459.440000) (2018-07-24,451.140000) (2018-07-25,479.910000) (2018-07-26,472.330000) (2018-07-27,464.010000) (2018-07-28,469.680000) (2018-07-29,466.920000) (2018-07-30,466.830000) (2018-07-31,457.250000) (2018-08-01,433.870000) (2018-08-02,420.810000) (2018-08-03,412.570000) (2018-08-04,418.240000) (2018-08-05,407.350000) (2018-08-06,410.570000) (2018-08-07,406.800000) (2018-08-08,379.890000) (2018-08-09,356.970000) (2018-08-10,365.780000) (2018-08-11,334.260000) (2018-08-12,320.820000) (2018-08-13,320.210000) (2018-08-14,286.370000) (2018-08-15,280.390000) (2018-08-16,282.740000) (2018-08-17,287.680000) (2018-08-18,316.790000) (2018-08-19,295.670000) (2018-08-20,301.380000) (2018-08-21,273.330000) (2018-08-22,281.970000) (2018-08-23,271.750000) (2018-08-24,278.110000) (2018-08-25,283.280000) (2018-08-26,279.520000) (2018-08-27,275.350000) (2018-08-28,286.650000) (2018-08-29,296.160000) (2018-08-30,289.750000) (2018-08-31,284.120000) (2018-09-01,283.500000) (2018-09-02,295.450000) (2018-09-03,295.180000) (2018-09-04,289.300000) (2018-09-05,286.050000) (2018-09-06,231.650000) (2018-09-07,229.530000) (2018-09-08,217.910000) (2018-09-09,198.380000) (2018-09-10,197.850000) (2018-09-11,198.180000) (2018-09-12,185.420000) (2018-09-13,183.680000) (2018-09-14,212.670000) (2018-09-15,209.810000) (2018-09-16,222.800000) (2018-09-17,221.580000) (2018-09-18,197.090000) (2018-09-19,209.470000) (2018-09-20,210.290000) (2018-09-21,225.250000) (2018-09-22,247.340000) (2018-09-23,240.990000) (2018-09-24,244.840000) (2018-09-25,228.330000) (2018-09-26,218.650000) (2018-09-27,215.440000) (2018-09-28,229.040000) (2018-09-29,221.710000) (2018-09-30,231.330000) (2018-10-01,233.220000) (2018-10-02,231.100000) (2018-10-03,226.410000) (2018-10-04,220.450000) (2018-10-05,222.270000) (2018-10-06,227.550000) (2018-10-07,225.440000) (2018-10-08,226.510000) (2018-10-09,229.710000) (2018-10-10,227.620000) (2018-10-11,225.610000) (2018-10-12,188.710000) (2018-10-13,196.360000) (2018-10-14,199.690000) (2018-10-15,195.270000) (2018-10-16,209.630000) (2018-10-17,210.220000) (2018-10-18,207.400000) (2018-10-19,203.260000) (2018-10-20,203.510000) (2018-10-21,205.390000) (2018-10-22,205.170000) (2018-10-23,204.020000) (2018-10-24,204.130000) (2018-10-25,203.870000) (2018-10-26,202.340000) (2018-10-27,203.360000) (2018-10-28,204.510000) (2018-10-29,205.170000) (2018-10-30,197.200000) (2018-10-31,197.650000) (2018-11-01,197.540000) (2018-11-02,198.980000) (2018-11-03,200.740000) (2018-11-04,200.160000) (2018-11-05,207.100000) (2018-11-06,209.470000) (2018-11-07,218.900000) (2018-11-08,217.330000) (2018-11-09,211.990000) (2018-11-10,209.970000) (2018-11-11,212.480000) (2018-11-12,211.510000) (2018-11-13,210.150000) (2018-11-14,206.530000) (2018-11-15,181.900000) (2018-11-16,180.870000) (2018-11-17,175.360000) (2018-11-18,174.180000) (2018-11-19,177.180000) (2018-11-20,148.810000) (2018-11-21,131.140000) (2018-11-22,136.810000) (2018-11-23,126.420000) (2018-11-24,123.300000) (2018-11-25,113.130000) (2018-11-26,116.340000) (2018-11-27,107.910000) (2018-11-28,110.200000) (2018-11-29,122.720000) (2018-11-30,117.730000) (2018-12-01,113.400000) (2018-12-02,118.270000) (2018-12-03,116.380000) (2018-12-04,108.800000) (2018-12-05,110.340000) (2018-12-06,102.450000) (2018-12-07,91.650000) (2018-12-08,93.410000) (2018-12-09,92.040000) (2018-12-10,94.990000) (2018-12-11,91.580000) (2018-12-12,88.610000) (2018-12-13,90.660000) (2018-12-14,86.630000) (2018-12-15,84.280000) (2018-12-16,84.470000) (2018-12-17,85.380000) (2018-12-18,95.110000) (2018-12-19,101.680000) (2018-12-20,101.090000) (2018-12-21,115.840000) (2018-12-22,109.460000) (2018-12-23,117.270000) (2018-12-24,130.640000) (2018-12-25,141.000000) (2018-12-26,129.890000) (2018-12-27,131.920000) (2018-12-28,116.900000) (2018-12-29,138.470000) (2018-12-30,137.630000) (2018-12-31,140.030000) (2019-01-01,133.420000) (2019-01-02,141.520000) (2019-01-03,155.200000) (2019-01-04,148.910000) (2019-01-05,154.340000) (2019-01-06,155.800000) (2019-01-07,157.810000) (2019-01-08,151.970000) (2019-01-09,150.550000) (2019-01-10,150.840000) (2019-01-11,127.810000) (2019-01-12,127.530000) (2019-01-13,125.910000) (2019-01-14,116.980000) (2019-01-15,129.170000) (2019-01-16,121.810000) (2019-01-17,123.570000) (2019-01-18,123.650000) (2019-01-19,121.610000) (2019-01-20,124.630000) (2019-01-21,119.640000) (2019-01-22,117.110000) (2019-01-23,118.710000) (2019-01-24,117.460000) (2019-01-25,117.590000) (2019-01-26,116.370000) (2019-01-27,116.510000) (2019-01-28,113.290000) (2019-01-29,106.720000) (2019-01-30,105.410000) (2019-01-31,108.900000) (2019-02-01,107.150000) (2019-02-02,107.470000) (2019-02-03,110.490000) (2019-02-04,107.630000) (2019-02-05,107.630000) (2019-02-06,107.570000) (2019-02-07,104.840000) (2019-02-08,104.650000) (2019-02-09,119.210000) (2019-02-10,119.410000) (2019-02-11,124.870000) (2019-02-12,121.180000) (2019-02-13,122.540000) (2019-02-14,122.420000) (2019-02-15,121.450000) (2019-02-16,122.400000) (2019-02-17,123.180000) (2019-02-18,133.030000) (2019-02-19,146.400000) (2019-02-20,145.170000) (2019-02-21,149.350000) (2019-02-22,146.070000) (2019-02-23,148.680000) (2019-02-24,158.900000) (2019-02-25,135.500000) (2019-02-26,139.650000) (2019-02-27,138.030000) (2019-02-28,136.280000) (2019-03-01,136.840000) (2019-03-02,136.350000) (2019-03-03,134.790000) (2019-03-04,132.160000) (2019-03-05,127.790000) (2019-03-06,137.960000) (2019-03-07,138.940000) (2019-03-08,138.310000) (2019-03-09,134.890000) (2019-03-10,138.180000) (2019-03-11,136.850000) (2019-03-12,134.010000) (2019-03-13,134.610000) (2019-03-14,133.200000) (2019-03-15,133.570000) (2019-03-16,137.910000) (2019-03-17,142.240000) (2019-03-18,140.100000) (2019-03-19,139.250000) (2019-03-20,140.480000) (2019-03-21,140.480000) (2019-03-22,136.560000) (2019-03-23,137.040000) }; + +\end{axis} + +\end{tikzpicture} + diff --git a/scrape_gasauctions.py b/scrape_gasauctions.py new file mode 100644 index 0000000..f2ac5ba --- /dev/null +++ b/scrape_gasauctions.py @@ -0,0 +1,58 @@ +from web3 import Web3 +from receipts import write_receipt + +LOGOUT = "data/gas_slots_6207336_6146507.csv" + +START_BLOCK = 6207336 +END_BLOCK = 6146507 + +curr_block = START_BLOCK + +my_provider = Web3.IPCProvider('/home/geth/parity_mainnet/jsonrpc.ipc') +w3 = Web3(my_provider) +loghandle = open(LOGOUT, "w") +loghandle.write("block_num,tx_position,gas_limit,gas_price,gas_used,from,to,input,hash,log_addrs,log_topics,log_data,gastoken\n") + +while curr_block >= END_BLOCK: + while True: + try: + block = w3.eth.getBlock(curr_block, full_transactions=True) + break + except: + pass # retry in the event of an error + numtxs = len(block['transactions']) + for txposition in range(0, 10): + if txposition >= numtxs: + break + tx = block['transactions'][txposition] + while True: + try: + receipt = w3.eth.getTransactionReceipt(tx['hash']) + break + except Exception as e: + print(e) # retry in the event of an error + + write_receipt(receipt, tx, loghandle) + + # now do top 10 gas price level txs + gas_prices = {} + for tx in block['transactions']: + gas_price = int(tx['gasPrice']) + if not gas_price in gas_prices: + gas_prices[gas_price] = [] + gas_prices[gas_price].append(tx) + + sorted_prices = sorted(gas_prices.keys(), reverse=True)[:10] + for price in sorted_prices: + for tx in gas_prices[price]: + while True: + try: + receipt = w3.eth.getTransactionReceipt(tx['hash']) + break + except Exception as e: + print(e) # retry in the event of an error + write_receipt(receipt, tx, loghandle) + + print("Done with block", curr_block) + curr_block -= 1 + diff --git a/sqlite_adapter.py b/sqlite_adapter.py new file mode 100644 index 0000000..91bc163 --- /dev/null +++ b/sqlite_adapter.py @@ -0,0 +1,15 @@ +import sqlite3 + +DATABASE = '../data/arbitrage.db' + +db = sqlite3.connect(DATABASE) +db.row_factory = sqlite3.Row + +def query_db(query, args=(), one=False): + cur = db.execute(query, args) + rv = cur.fetchall() + cur.close() + return (rv[0] if rv else None) if one else rv + + + diff --git a/test.py b/test.py new file mode 100644 index 0000000..5cc57d0 --- /dev/null +++ b/test.py @@ -0,0 +1,18 @@ +import csv +i = 0 +senders = {} +start_id = 251975668 +with open('attack.csv', 'r' ) as f: + i += 1 + if i % 10000 == 0: + print(i) + reader = csv.DictReader(f) + for line in reader: + sender= line['sender'] + if len(sender) > 10: + if sender not in senders: + senders[sender] = 0 + senders[sender] += 1 + + +print(senders) diff --git a/testing.py b/testing.py new file mode 100644 index 0000000..ee55cc8 --- /dev/null +++ b/testing.py @@ -0,0 +1,43 @@ +import csv, os +from google.cloud import bigquery + +FIELDS_TO_GRAB = 'block_number,transaction_hash,to_address,from_address,num_logs,gas,gas_price,receipt_gas_used,input,transaction_index' + + +addresses = set(['0x0000bAA8F700aF2476492b19e378d61b90454982']) + + +os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "etharbskey.json" +client = bigquery.Client() + + + + + +query = """SELECT block_number,transactions.hash,to_address,from_address,gas,gas_price,receipt_gas_used,input,transaction_index FROM + `bigquery-public-data.ethereum_blockchain.transactions` AS transactions +WHERE from_address IN UNNEST(@addrs) """ + + +aqp = bigquery.ArrayQueryParameter('addrs', 'STRING', [x.lower() for x in ['0x0000bAA8F700aF2476492b19e378d61b90454982']]) +query_params = [aqp] +job_config = bigquery.QueryJobConfig() +job_config.query_parameters = query_params +query_job = client.query( + query, + # Location must match that of the dataset(s) referenced in the query. + location='US', + job_config=job_config) # API request - starts the query + + +with open('data/all_inclfail_arb_txs_bigquery.csv', 'w') as csvfile: + spamwriter = csv.writer(csvfile, delimiter=',', + quotechar='|', quoting=csv.QUOTE_MINIMAL) + + spamwriter.writerow(FIELDS_TO_GRAB.split(",")) + for item in query_job: + spamwriter.writerow(item) + +assert query_job.state == 'DONE' +print("[database fetcher] Wrote all BQ incl fail data") + diff --git a/update.py b/update.py new file mode 100644 index 0000000..8d234b8 --- /dev/null +++ b/update.py @@ -0,0 +1,26 @@ +import os, time + +while True: + print(time.time()) + + os.system("python3 write_csv.py") + os.system("python3 read_csv.py") + #os.system("cp data/gas_slots.csv data/gas_slots_cache.csv") + #os.system("python3 calculate_slots.py > slotout") + #os.system("python3 get_auction_slots_intersection.py") + os.system("python3 get_pairwise_data.py") # todo fix div by 0 + os.system("python3 get_bq_relayers.py") + os.system("python3 get_bq_txlist.py") + os.system("python3 get_bq_logs.py") + os.system("python3 get_bq_blocks.py") + os.system("python3 get_bq_fees.py") + os.system("python3 get_bq_summarystats.py") # todo fix argv error + os.system("rm -rf data/eth.csv") + os.system("wget https://coinmetrics.io/data/eth.csv -O data/eth.csv") + os.system("python3 calculate_profit_from_logs.py") + os.system("python3 csv_to_sqlite.py") + exit(1) + + print(time.time()) + + time.sleep(60 * 60) diff --git a/webapp/csv_hack.py b/webapp/csv_hack.py new file mode 120000 index 0000000..7e45ed0 --- /dev/null +++ b/webapp/csv_hack.py @@ -0,0 +1 @@ +../csv_hack.py \ No newline at end of file diff --git a/webapp/server.py b/webapp/server.py new file mode 100644 index 0000000..9b1f0d9 --- /dev/null +++ b/webapp/server.py @@ -0,0 +1,175 @@ +from sqlite_adapter import * +import os, sys +import datetime, json, random +from flask import Flask, render_template, request, g, Markup +app = Flask(__name__) + +DEFAULT_AUCTIONS_LIMIT = 20 +DEFAULT_TXS_LIMIT = 2000 + + +from werkzeug.contrib.cache import SimpleCache + +if sys.argv[1] == "--dev": + CACHE_TIMEOUT = -2 +else: + CACHE_TIMEOUT = 3000 + +cache = SimpleCache() + +class cached(object): + + def __init__(self, timeout=None): + self.timeout = timeout or CACHE_TIMEOUT + + def __call__(self, f): + def decorator(*args, **kwargs): + response = cache.get(request.path) + if response is None: + response = f(*args, **kwargs) + cache.set(request.path, response, self.timeout) + return response + return decorator + + +def get_range(page, limit, start, end, max_val): + limits = ((page-1)*limit, page*limit) + if start is None: + start = max_val - limits[0] + end=max(max_val - limits[1], 0) + else: + if end is None: + end = start + end = end - 1 + return (start, end) + + +# SQLITE UTILITY FUNCTIONS - http://flask.pocoo.org/docs/0.12/patterns/sqlite3/ +def get_db(): + db = getattr(g, '_database', None) + if db is None: + db = g._database = sqlite3.connect(DATABASE) + db.row_factory = sqlite3.Row + return db + +@app.teardown_appcontext +def close_connection(exception): + db = getattr(g, '_database', None) + if db is not None: + db.close() + +def query_db(query, args=(), one=False): + cur = get_db().execute(query, args) + rv = cur.fetchall() + cur.close() + return (rv[0] if rv else None) if one else rv + + +def parse_profit_graph(profit_graph): + profitstr = "

Trade Log


" + exchanges = set() + for trade_index in range(0, len(profit_graph), 2): + exchange = profit_graph[trade_index][1][1:] + profitstr += "" + exchange + ": " + profitstr += str(profit_graph[trade_index][2]) + " " + profit_graph[trade_index][0] + " to " + str(profit_graph[trade_index+1][2]) + " " + profit_graph[trade_index+1][1] + profitstr += "
" + return Markup(profitstr) + +def parse_profits(profit_data): + eth_profit = profit_data.get('ETH', 0) + profitstr = "

Profits


" + profitstr += "ETH: " + str(eth_profit) + "
" + for token in profit_data: + if token != "ETH" and not "!" in token: + profitstr += "" + token + ": " + str(profit_data[token]) + "
" + return Markup(profitstr) + +# END SQLITE UTILITY FUNCTIONS + +@app.route('/global') +def global_stats(): + blockstats_wfail = open('../data/bq_inclfail_aggregate.csv').read() + blockstats_success = open('../data/bq_success_aggregate.csv').read() + return render_template("global.html", blockstats_wfail=blockstats_wfail, blockstats_success=blockstats_success) + +@app.route('/revenuegraphs') +def revenue_graphs(): + stats = query_db("""SELECT block_number,SUM(CAST(eth_profit as INTEGER)) AS total_profit,SUM(CAST(gas as INTEGER)) AS total_gas_bid,SUM(CAST(receipt_gas_used as INTEGER)) AS total_gas_used FROM mergedprofitabletxs WHERE all_positive="True" GROUP BY block_number ORDER BY mergedprofitabletxs.rowid DESC;""") + stats = [dict(stat) for stat in stats] + print(stats) + return render_template("revenuegraphs.html", stats=stats) + +@app.route('/revenue/', defaults={'page': 1, 'limit': DEFAULT_TXS_LIMIT, 'start': None, 'end': None}) +@app.route('/revenue/page/', defaults={'limit': DEFAULT_TXS_LIMIT, 'start': None, 'end': None}) +@app.route('/revenue/page//limit/', defaults={'start': None, 'end': None}) +@app.route('/revenue/range//', defaults={'page': -1, 'limit': DEFAULT_TXS_LIMIT}) +def revenue(page, limit, start, end): + max_tx = query_db('SELECT MAX(rowid) from mergedprofitabletxs', one=True)[0] + lastpage = int(max_tx/limit) + 1 + (start_id, end_id) = get_range(lastpage - page - 1, limit, start, end, max_tx) + txs = query_db('SELECT * FROM mergedprofitabletxs WHERE rowid > ? AND rowid <= ? AND drawn="True" ORDER BY rowid DESC', (end_id, start_id)) + profits = [] + for tx in txs: + tx = dict(tx) + tx['drawn'] = (tx['drawn'] == "True") + tx['all_positive'] = (tx['all_positive'] == "True") + tx['unknown'] = (tx['unknown'] == "True") # todo remove this field, replace w profit graph is none + if tx['profit_graph'] != None: + tx['profit_graph'] = json.loads(tx['profit_graph']) + tx['profit_calcs'] = json.loads(tx['profit_calcs']) + profits.append(tx) + return render_template("profit.html", txs=profits, limit=limit, limits=(500, 1000, 5000), page=page, lastpage=lastpage, basepath='/revenue', graph_parser=parse_profit_graph, profit_parser=parse_profits) + +@app.route('/strategies') +def strategies(): + return render_template("strategies.html", pairwise_data = json.loads(open('../data/pairwise_self.csv').read())) + +@app.route('/', defaults={'page': 1, 'limit': DEFAULT_AUCTIONS_LIMIT, 'start': None, 'end': None}) +@app.route('/page/', defaults={'limit': DEFAULT_AUCTIONS_LIMIT, 'start': None, 'end': None}) +@app.route('/page//limit/', defaults={'start': None, 'end': None}) +@app.route('/range//', defaults={'page': -1, 'limit': DEFAULT_AUCTIONS_LIMIT}) +@app.route('/auction/', defaults={'page': -1, 'limit': DEFAULT_AUCTIONS_LIMIT, 'end': None}) +@cached() +def hello_world(page, limit, start, end): + # build and process auctions + auctions = {} + max_auction = query_db('SELECT MAX(CAST(auction_id as decimal)) from auctions', one=True)[0] + (start_id, end_id) = get_range(page, limit, start, end, max_auction) + bidsdict = query_db('SELECT * FROM auctions LEFT JOIN success ON success.transaction_hash=auctions.hash WHERE auction_id >= ? AND auction_id <= ?', (end_id, start_id)) + for bid in bidsdict: + bid = dict(bid) # convert sqlite row to dict + if bid['transaction_hash'] != None: + print(bid) + auction_id = int(bid['auction_id']) + if bid['num_logs'] != None: + bid['num_logs'] = int(bid['num_logs']) + bid['time_seen'] = int(bid['time_seen']) + bid['gas_price'] = int(bid['gas_price']) + bid['drawn'] = os.path.exists("static/profit/%s.png" % bid['hash']) + bid['date'] = datetime.datetime.utcfromtimestamp(bid['time_seen'] / (10 ** 9)) + if auction_id in auctions: + auctions[auction_id].append(bid) + else: + auctions[auction_id] = [bid] + for auction in auctions: + auction = auctions[auction] + bid_times = [bid['time_seen'] for bid in auction] + start_time = min(bid_times) + for bid in auction: + bid['time_delta'] = bid['time_seen'] - start_time + + + # build and process slots; ugly af, sorry :( + slots = open('../data/slots.csv').read().splitlines() + slots = [[float(y) for y in x.split(",")] for x in slots] + + hide_global_graphs = request.args.get('hideglobal') is not None + + return render_template("index.html", auctions=auctions, max_auction=max_auction, slots=slots, start=start_id, end=end_id, limit=limit, limits=(5,10,20,50,100), page=page, lastpage=int(max_auction/limit)+1, hide_global_graphs=hide_global_graphs, deanon=("frontrun.me" in request.url)) + + +if __name__ == "__main__": + if sys.argv[1] == "--dev": + app.run(host='0.0.0.0', debug=True, port=5000, threaded=True) + else: + app.run(host='frontrun.me', debug=False, port=80, threaded=True) # using dev servers in production booooo diff --git a/webapp/sqlite_adapter.py b/webapp/sqlite_adapter.py new file mode 120000 index 0000000..99edcc4 --- /dev/null +++ b/webapp/sqlite_adapter.py @@ -0,0 +1 @@ +../sqlite_adapter.py \ No newline at end of file diff --git a/webapp/static/css/main.css b/webapp/static/css/main.css new file mode 100755 index 0000000..a7dbfc0 --- /dev/null +++ b/webapp/static/css/main.css @@ -0,0 +1,408 @@ +/* frontrun.me specific stuff */ + +@font-face { + font-family: 'Potra'; + src: url('../fonts/potra.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ + url('../fonts/potra.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */ +} + +#top { + padding: 20px; + margin-bottom: 20px; +} + + +.proftable { + transform-origin: top left; + zoom: 50 %; + transform: scale(calc(2/3));} + +#header { + display: inline-block; + font-family: 'Potra', Fallback, sans-serif; + font-size: 6em; + vertical-align: middle; + margin-left: 20px; +} + +#logo { + display: inline-block; + vertical-align: middle; + width: 20em; +} + +#content { + padding: 20px; +} + +/* pagination */ +.pagination { + display: inline-block; + margin-left: auto; + margin-right: auto; +} + +.pagination a { + color: black; + float: left; + padding: 8px 16px; + text-decoration: none; + border: 1px solid #ddd; +} + +.pagination a.active { + background-color: #4CAF50; + color: white; + border: 1px solid #4CAF50; +} + +.pagination a:hover:not(.active) {background-color: #ddd;} + +.pagination a:first-child { + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; +} + +.pagination a:last-child { + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; +} + +/* alert modal */ + +/* The alert message box */ +.alert { + margin: 0px 20px 0px 20px; + padding: 20px; + background-color: #eeeeee; /* Red */ + color: black; +} + +/* The close button */ +.closebtn { + margin-left: 15px; + color: black; + font-weight: bold; + float: right; + font-size: 22px; + line-height: 20px; + cursor: pointer; + transition: 0.3s; +} + +/* When moving the mouse over the close button */ +.closebtn:hover { + color: black; +} + + +/* table boilerplate */ + +/*////////////////////////////////////////////////////////////////// +[ FONT ]*/ + + +@font-face { + font-family: OpenSans-Regular; + src: url('../fonts/OpenSans/OpenSans-Regular.ttf'); +} + + + +/*////////////////////////////////////////////////////////////////// +[ RESTYLE TAG ]*/ +* { + margin: 0px; + padding: 0px; + box-sizing: border-box; +} + +body, html { + height: 100%; + font-family: sans-serif; +} + +/* ------------------------------------ */ +a { + margin: 0px; + transition: all 0.4s; + -webkit-transition: all 0.4s; + -o-transition: all 0.4s; + -moz-transition: all 0.4s; +} + +a:focus { + outline: none !important; +} + +a:hover { + text-decoration: none; +} + +/* ------------------------------------ */ +h1,h2,h3,h4,h5,h6 {margin: 0px;} + +p {margin: 0px;} + +ul, li { + margin: 0px; + list-style-type: none; +} + + +/* ------------------------------------ */ +input { + display: block; + outline: none; + border: none !important; +} + +textarea { + display: block; + outline: none; +} + +textarea:focus, input:focus { + border-color: transparent !important; +} + +/* ------------------------------------ */ +button { + outline: none !important; + border: none; + background: transparent; +} + +button:hover { + cursor: pointer; +} + +iframe { + border: none !important; +} + + + + +/*////////////////////////////////////////////////////////////////// +[ Utiliti ]*/ + + + + + + +/*////////////////////////////////////////////////////////////////// +[ Table ]*/ + +.limiter { + width: 100%; + margin: 0 auto; +} + +.container-table100 { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + align-items: center; + justify-content: center; + flex-wrap: wrap; +} + +.wrap-table100 { + width: 100%; +} + +table { + border-spacing: 1; + border-collapse: collapse; + background: #eeeeee; + border-radius: 10px; + overflow: hidden; + width: 100%; + margin: 0 auto; + position: relative; +} +table * { + position: relative; +} +table td, table th { + padding-left: 8px; +} +table thead tr { + height: 60px; + background: #36304a; +} +table tbody tr { + height: 50px; +} +table tbody tr:last-child { + border: 0; +} +table td, table th { + text-align: left; +} +table td.l, table th.l { + text-align: right; +} +table td.c, table th.c { + text-align: center; +} +table td.r, table th.r { + text-align: center; +} + + +.table100-head th{ + font-family: OpenSans-Regular; + font-size: 18px; + color: #fff; + line-height: 1.2; + font-weight: unset; +} + +tbody tr:nth-child(even) { + background-color: #f5f5f5; +} + +tbody tr { + font-family: OpenSans-Regular; + font-size: 15px; + color: #808080; + line-height: 1.2; + font-weight: unset; +} + +tbody tr:hover { + color: #555555; + background-color: #f5f5f5; + cursor: pointer; +} + +.column1 { + padding-left: 40px; + padding-right: 40px; + text-align: left; +} + +.column2 { + width: 300px; + text-align: left; +} + +.column3 { + width: 245px; + text-align: left; +} + +.columnprofit { + text-align: left; + padding-left: 20px; +} + +.column4 { + width: 110px; + padding-left: 30px; + text-align: center; +} + +.column5 { + width: 170px; + text-align: center; +} + +.column6 { + text-align: center; + padding-right: 62px; + padding-left: 30px; +} + +.column7 { +} + +.column8 { + width: 100px; + text-align: right; + padding-right: 40px; +} + + +@media screen and (max-width: 992px) { + table { + display: block; + } + table > *, table tr, table td, table th { + display: block; + } + table thead { + display: none; + } + table tbody tr { + height: auto; + padding: 37px 0; + } + table tbody tr td { + padding-left: 40% !important; + margin-bottom: 24px; + } + table tbody tr td:last-child { + margin-bottom: 0; + } + table tbody tr td:before { + font-family: OpenSans-Regular; + font-size: 14px; + color: #999999; + line-height: 1.2; + font-weight: unset; + position: absolute; + width: 40%; + left: 30px; + top: 0; + } + table tbody tr td:nth-child(1):before { + content: "Date"; + } + table tbody tr td:nth-child(2):before { + content: "Order ID"; + } + table tbody tr td:nth-child(3):before { + content: "Name"; + } + table tbody tr td:nth-child(4):before { + content: "Price"; + } + table tbody tr td:nth-child(5):before { + content: "Quantity"; + } + table tbody tr td:nth-child(6):before { + content: "Total"; + } + + .column4, + .column5, + .column6 { + text-align: left; + } + + .column4, + .column5, + .column6, + .column1, + .column2, + .column3 { + width: 100%; + } + + tbody tr { + font-size: 14px; + } +} + +@media (max-width: 576px) { + .container-table100 { + padding-left: 15px; + padding-right: 15px; + } +} diff --git a/webapp/static/css/util.css b/webapp/static/css/util.css new file mode 100755 index 0000000..fb91c69 --- /dev/null +++ b/webapp/static/css/util.css @@ -0,0 +1,2988 @@ +/*[ FONT SIZE ] +/////////////////////////////////////////////////////////// +*/ +.fs-1 {font-size: 1px;} +.fs-2 {font-size: 2px;} +.fs-3 {font-size: 3px;} +.fs-4 {font-size: 4px;} +.fs-5 {font-size: 5px;} +.fs-6 {font-size: 6px;} +.fs-7 {font-size: 7px;} +.fs-8 {font-size: 8px;} +.fs-9 {font-size: 9px;} +.fs-10 {font-size: 10px;} +.fs-11 {font-size: 11px;} +.fs-12 {font-size: 12px;} +.fs-13 {font-size: 13px;} +.fs-14 {font-size: 14px;} +.fs-15 {font-size: 15px;} +.fs-16 {font-size: 16px;} +.fs-17 {font-size: 17px;} +.fs-18 {font-size: 18px;} +.fs-19 {font-size: 19px;} +.fs-20 {font-size: 20px;} +.fs-21 {font-size: 21px;} +.fs-22 {font-size: 22px;} +.fs-23 {font-size: 23px;} +.fs-24 {font-size: 24px;} +.fs-25 {font-size: 25px;} +.fs-26 {font-size: 26px;} +.fs-27 {font-size: 27px;} +.fs-28 {font-size: 28px;} +.fs-29 {font-size: 29px;} +.fs-30 {font-size: 30px;} +.fs-31 {font-size: 31px;} +.fs-32 {font-size: 32px;} +.fs-33 {font-size: 33px;} +.fs-34 {font-size: 34px;} +.fs-35 {font-size: 35px;} +.fs-36 {font-size: 36px;} +.fs-37 {font-size: 37px;} +.fs-38 {font-size: 38px;} +.fs-39 {font-size: 39px;} +.fs-40 {font-size: 40px;} +.fs-41 {font-size: 41px;} +.fs-42 {font-size: 42px;} +.fs-43 {font-size: 43px;} +.fs-44 {font-size: 44px;} +.fs-45 {font-size: 45px;} +.fs-46 {font-size: 46px;} +.fs-47 {font-size: 47px;} +.fs-48 {font-size: 48px;} +.fs-49 {font-size: 49px;} +.fs-50 {font-size: 50px;} +.fs-51 {font-size: 51px;} +.fs-52 {font-size: 52px;} +.fs-53 {font-size: 53px;} +.fs-54 {font-size: 54px;} +.fs-55 {font-size: 55px;} +.fs-56 {font-size: 56px;} +.fs-57 {font-size: 57px;} +.fs-58 {font-size: 58px;} +.fs-59 {font-size: 59px;} +.fs-60 {font-size: 60px;} +.fs-61 {font-size: 61px;} +.fs-62 {font-size: 62px;} +.fs-63 {font-size: 63px;} +.fs-64 {font-size: 64px;} +.fs-65 {font-size: 65px;} +.fs-66 {font-size: 66px;} +.fs-67 {font-size: 67px;} +.fs-68 {font-size: 68px;} +.fs-69 {font-size: 69px;} +.fs-70 {font-size: 70px;} +.fs-71 {font-size: 71px;} +.fs-72 {font-size: 72px;} +.fs-73 {font-size: 73px;} +.fs-74 {font-size: 74px;} +.fs-75 {font-size: 75px;} +.fs-76 {font-size: 76px;} +.fs-77 {font-size: 77px;} +.fs-78 {font-size: 78px;} +.fs-79 {font-size: 79px;} +.fs-80 {font-size: 80px;} +.fs-81 {font-size: 81px;} +.fs-82 {font-size: 82px;} +.fs-83 {font-size: 83px;} +.fs-84 {font-size: 84px;} +.fs-85 {font-size: 85px;} +.fs-86 {font-size: 86px;} +.fs-87 {font-size: 87px;} +.fs-88 {font-size: 88px;} +.fs-89 {font-size: 89px;} +.fs-90 {font-size: 90px;} +.fs-91 {font-size: 91px;} +.fs-92 {font-size: 92px;} +.fs-93 {font-size: 93px;} +.fs-94 {font-size: 94px;} +.fs-95 {font-size: 95px;} +.fs-96 {font-size: 96px;} +.fs-97 {font-size: 97px;} +.fs-98 {font-size: 98px;} +.fs-99 {font-size: 99px;} +.fs-100 {font-size: 100px;} +.fs-101 {font-size: 101px;} +.fs-102 {font-size: 102px;} +.fs-103 {font-size: 103px;} +.fs-104 {font-size: 104px;} +.fs-105 {font-size: 105px;} +.fs-106 {font-size: 106px;} +.fs-107 {font-size: 107px;} +.fs-108 {font-size: 108px;} +.fs-109 {font-size: 109px;} +.fs-110 {font-size: 110px;} +.fs-111 {font-size: 111px;} +.fs-112 {font-size: 112px;} +.fs-113 {font-size: 113px;} +.fs-114 {font-size: 114px;} +.fs-115 {font-size: 115px;} +.fs-116 {font-size: 116px;} +.fs-117 {font-size: 117px;} +.fs-118 {font-size: 118px;} +.fs-119 {font-size: 119px;} +.fs-120 {font-size: 120px;} +.fs-121 {font-size: 121px;} +.fs-122 {font-size: 122px;} +.fs-123 {font-size: 123px;} +.fs-124 {font-size: 124px;} +.fs-125 {font-size: 125px;} +.fs-126 {font-size: 126px;} +.fs-127 {font-size: 127px;} +.fs-128 {font-size: 128px;} +.fs-129 {font-size: 129px;} +.fs-130 {font-size: 130px;} +.fs-131 {font-size: 131px;} +.fs-132 {font-size: 132px;} +.fs-133 {font-size: 133px;} +.fs-134 {font-size: 134px;} +.fs-135 {font-size: 135px;} +.fs-136 {font-size: 136px;} +.fs-137 {font-size: 137px;} +.fs-138 {font-size: 138px;} +.fs-139 {font-size: 139px;} +.fs-140 {font-size: 140px;} +.fs-141 {font-size: 141px;} +.fs-142 {font-size: 142px;} +.fs-143 {font-size: 143px;} +.fs-144 {font-size: 144px;} +.fs-145 {font-size: 145px;} +.fs-146 {font-size: 146px;} +.fs-147 {font-size: 147px;} +.fs-148 {font-size: 148px;} +.fs-149 {font-size: 149px;} +.fs-150 {font-size: 150px;} +.fs-151 {font-size: 151px;} +.fs-152 {font-size: 152px;} +.fs-153 {font-size: 153px;} +.fs-154 {font-size: 154px;} +.fs-155 {font-size: 155px;} +.fs-156 {font-size: 156px;} +.fs-157 {font-size: 157px;} +.fs-158 {font-size: 158px;} +.fs-159 {font-size: 159px;} +.fs-160 {font-size: 160px;} +.fs-161 {font-size: 161px;} +.fs-162 {font-size: 162px;} +.fs-163 {font-size: 163px;} +.fs-164 {font-size: 164px;} +.fs-165 {font-size: 165px;} +.fs-166 {font-size: 166px;} +.fs-167 {font-size: 167px;} +.fs-168 {font-size: 168px;} +.fs-169 {font-size: 169px;} +.fs-170 {font-size: 170px;} +.fs-171 {font-size: 171px;} +.fs-172 {font-size: 172px;} +.fs-173 {font-size: 173px;} +.fs-174 {font-size: 174px;} +.fs-175 {font-size: 175px;} +.fs-176 {font-size: 176px;} +.fs-177 {font-size: 177px;} +.fs-178 {font-size: 178px;} +.fs-179 {font-size: 179px;} +.fs-180 {font-size: 180px;} +.fs-181 {font-size: 181px;} +.fs-182 {font-size: 182px;} +.fs-183 {font-size: 183px;} +.fs-184 {font-size: 184px;} +.fs-185 {font-size: 185px;} +.fs-186 {font-size: 186px;} +.fs-187 {font-size: 187px;} +.fs-188 {font-size: 188px;} +.fs-189 {font-size: 189px;} +.fs-190 {font-size: 190px;} +.fs-191 {font-size: 191px;} +.fs-192 {font-size: 192px;} +.fs-193 {font-size: 193px;} +.fs-194 {font-size: 194px;} +.fs-195 {font-size: 195px;} +.fs-196 {font-size: 196px;} +.fs-197 {font-size: 197px;} +.fs-198 {font-size: 198px;} +.fs-199 {font-size: 199px;} +.fs-200 {font-size: 200px;} + +/*[ PADDING ] +/////////////////////////////////////////////////////////// +*/ +.p-t-0 {padding-top: 0px;} +.p-t-1 {padding-top: 1px;} +.p-t-2 {padding-top: 2px;} +.p-t-3 {padding-top: 3px;} +.p-t-4 {padding-top: 4px;} +.p-t-5 {padding-top: 5px;} +.p-t-6 {padding-top: 6px;} +.p-t-7 {padding-top: 7px;} +.p-t-8 {padding-top: 8px;} +.p-t-9 {padding-top: 9px;} +.p-t-10 {padding-top: 10px;} +.p-t-11 {padding-top: 11px;} +.p-t-12 {padding-top: 12px;} +.p-t-13 {padding-top: 13px;} +.p-t-14 {padding-top: 14px;} +.p-t-15 {padding-top: 15px;} +.p-t-16 {padding-top: 16px;} +.p-t-17 {padding-top: 17px;} +.p-t-18 {padding-top: 18px;} +.p-t-19 {padding-top: 19px;} +.p-t-20 {padding-top: 20px;} +.p-t-21 {padding-top: 21px;} +.p-t-22 {padding-top: 22px;} +.p-t-23 {padding-top: 23px;} +.p-t-24 {padding-top: 24px;} +.p-t-25 {padding-top: 25px;} +.p-t-26 {padding-top: 26px;} +.p-t-27 {padding-top: 27px;} +.p-t-28 {padding-top: 28px;} +.p-t-29 {padding-top: 29px;} +.p-t-30 {padding-top: 30px;} +.p-t-31 {padding-top: 31px;} +.p-t-32 {padding-top: 32px;} +.p-t-33 {padding-top: 33px;} +.p-t-34 {padding-top: 34px;} +.p-t-35 {padding-top: 35px;} +.p-t-36 {padding-top: 36px;} +.p-t-37 {padding-top: 37px;} +.p-t-38 {padding-top: 38px;} +.p-t-39 {padding-top: 39px;} +.p-t-40 {padding-top: 40px;} +.p-t-41 {padding-top: 41px;} +.p-t-42 {padding-top: 42px;} +.p-t-43 {padding-top: 43px;} +.p-t-44 {padding-top: 44px;} +.p-t-45 {padding-top: 45px;} +.p-t-46 {padding-top: 46px;} +.p-t-47 {padding-top: 47px;} +.p-t-48 {padding-top: 48px;} +.p-t-49 {padding-top: 49px;} +.p-t-50 {padding-top: 50px;} +.p-t-51 {padding-top: 51px;} +.p-t-52 {padding-top: 52px;} +.p-t-53 {padding-top: 53px;} +.p-t-54 {padding-top: 54px;} +.p-t-55 {padding-top: 55px;} +.p-t-56 {padding-top: 56px;} +.p-t-57 {padding-top: 57px;} +.p-t-58 {padding-top: 58px;} +.p-t-59 {padding-top: 59px;} +.p-t-60 {padding-top: 60px;} +.p-t-61 {padding-top: 61px;} +.p-t-62 {padding-top: 62px;} +.p-t-63 {padding-top: 63px;} +.p-t-64 {padding-top: 64px;} +.p-t-65 {padding-top: 65px;} +.p-t-66 {padding-top: 66px;} +.p-t-67 {padding-top: 67px;} +.p-t-68 {padding-top: 68px;} +.p-t-69 {padding-top: 69px;} +.p-t-70 {padding-top: 70px;} +.p-t-71 {padding-top: 71px;} +.p-t-72 {padding-top: 72px;} +.p-t-73 {padding-top: 73px;} +.p-t-74 {padding-top: 74px;} +.p-t-75 {padding-top: 75px;} +.p-t-76 {padding-top: 76px;} +.p-t-77 {padding-top: 77px;} +.p-t-78 {padding-top: 78px;} +.p-t-79 {padding-top: 79px;} +.p-t-80 {padding-top: 80px;} +.p-t-81 {padding-top: 81px;} +.p-t-82 {padding-top: 82px;} +.p-t-83 {padding-top: 83px;} +.p-t-84 {padding-top: 84px;} +.p-t-85 {padding-top: 85px;} +.p-t-86 {padding-top: 86px;} +.p-t-87 {padding-top: 87px;} +.p-t-88 {padding-top: 88px;} +.p-t-89 {padding-top: 89px;} +.p-t-90 {padding-top: 90px;} +.p-t-91 {padding-top: 91px;} +.p-t-92 {padding-top: 92px;} +.p-t-93 {padding-top: 93px;} +.p-t-94 {padding-top: 94px;} +.p-t-95 {padding-top: 95px;} +.p-t-96 {padding-top: 96px;} +.p-t-97 {padding-top: 97px;} +.p-t-98 {padding-top: 98px;} +.p-t-99 {padding-top: 99px;} +.p-t-100 {padding-top: 100px;} +.p-t-101 {padding-top: 101px;} +.p-t-102 {padding-top: 102px;} +.p-t-103 {padding-top: 103px;} +.p-t-104 {padding-top: 104px;} +.p-t-105 {padding-top: 105px;} +.p-t-106 {padding-top: 106px;} +.p-t-107 {padding-top: 107px;} +.p-t-108 {padding-top: 108px;} +.p-t-109 {padding-top: 109px;} +.p-t-110 {padding-top: 110px;} +.p-t-111 {padding-top: 111px;} +.p-t-112 {padding-top: 112px;} +.p-t-113 {padding-top: 113px;} +.p-t-114 {padding-top: 114px;} +.p-t-115 {padding-top: 115px;} +.p-t-116 {padding-top: 116px;} +.p-t-117 {padding-top: 117px;} +.p-t-118 {padding-top: 118px;} +.p-t-119 {padding-top: 119px;} +.p-t-120 {padding-top: 120px;} +.p-t-121 {padding-top: 121px;} +.p-t-122 {padding-top: 122px;} +.p-t-123 {padding-top: 123px;} +.p-t-124 {padding-top: 124px;} +.p-t-125 {padding-top: 125px;} +.p-t-126 {padding-top: 126px;} +.p-t-127 {padding-top: 127px;} +.p-t-128 {padding-top: 128px;} +.p-t-129 {padding-top: 129px;} +.p-t-130 {padding-top: 130px;} +.p-t-131 {padding-top: 131px;} +.p-t-132 {padding-top: 132px;} +.p-t-133 {padding-top: 133px;} +.p-t-134 {padding-top: 134px;} +.p-t-135 {padding-top: 135px;} +.p-t-136 {padding-top: 136px;} +.p-t-137 {padding-top: 137px;} +.p-t-138 {padding-top: 138px;} +.p-t-139 {padding-top: 139px;} +.p-t-140 {padding-top: 140px;} +.p-t-141 {padding-top: 141px;} +.p-t-142 {padding-top: 142px;} +.p-t-143 {padding-top: 143px;} +.p-t-144 {padding-top: 144px;} +.p-t-145 {padding-top: 145px;} +.p-t-146 {padding-top: 146px;} +.p-t-147 {padding-top: 147px;} +.p-t-148 {padding-top: 148px;} +.p-t-149 {padding-top: 149px;} +.p-t-150 {padding-top: 150px;} +.p-t-151 {padding-top: 151px;} +.p-t-152 {padding-top: 152px;} +.p-t-153 {padding-top: 153px;} +.p-t-154 {padding-top: 154px;} +.p-t-155 {padding-top: 155px;} +.p-t-156 {padding-top: 156px;} +.p-t-157 {padding-top: 157px;} +.p-t-158 {padding-top: 158px;} +.p-t-159 {padding-top: 159px;} +.p-t-160 {padding-top: 160px;} +.p-t-161 {padding-top: 161px;} +.p-t-162 {padding-top: 162px;} +.p-t-163 {padding-top: 163px;} +.p-t-164 {padding-top: 164px;} +.p-t-165 {padding-top: 165px;} +.p-t-166 {padding-top: 166px;} +.p-t-167 {padding-top: 167px;} +.p-t-168 {padding-top: 168px;} +.p-t-169 {padding-top: 169px;} +.p-t-170 {padding-top: 170px;} +.p-t-171 {padding-top: 171px;} +.p-t-172 {padding-top: 172px;} +.p-t-173 {padding-top: 173px;} +.p-t-174 {padding-top: 174px;} +.p-t-175 {padding-top: 175px;} +.p-t-176 {padding-top: 176px;} +.p-t-177 {padding-top: 177px;} +.p-t-178 {padding-top: 178px;} +.p-t-179 {padding-top: 179px;} +.p-t-180 {padding-top: 180px;} +.p-t-181 {padding-top: 181px;} +.p-t-182 {padding-top: 182px;} +.p-t-183 {padding-top: 183px;} +.p-t-184 {padding-top: 184px;} +.p-t-185 {padding-top: 185px;} +.p-t-186 {padding-top: 186px;} +.p-t-187 {padding-top: 187px;} +.p-t-188 {padding-top: 188px;} +.p-t-189 {padding-top: 189px;} +.p-t-190 {padding-top: 190px;} +.p-t-191 {padding-top: 191px;} +.p-t-192 {padding-top: 192px;} +.p-t-193 {padding-top: 193px;} +.p-t-194 {padding-top: 194px;} +.p-t-195 {padding-top: 195px;} +.p-t-196 {padding-top: 196px;} +.p-t-197 {padding-top: 197px;} +.p-t-198 {padding-top: 198px;} +.p-t-199 {padding-top: 199px;} +.p-t-200 {padding-top: 200px;} +.p-t-201 {padding-top: 201px;} +.p-t-202 {padding-top: 202px;} +.p-t-203 {padding-top: 203px;} +.p-t-204 {padding-top: 204px;} +.p-t-205 {padding-top: 205px;} +.p-t-206 {padding-top: 206px;} +.p-t-207 {padding-top: 207px;} +.p-t-208 {padding-top: 208px;} +.p-t-209 {padding-top: 209px;} +.p-t-210 {padding-top: 210px;} +.p-t-211 {padding-top: 211px;} +.p-t-212 {padding-top: 212px;} +.p-t-213 {padding-top: 213px;} +.p-t-214 {padding-top: 214px;} +.p-t-215 {padding-top: 215px;} +.p-t-216 {padding-top: 216px;} +.p-t-217 {padding-top: 217px;} +.p-t-218 {padding-top: 218px;} +.p-t-219 {padding-top: 219px;} +.p-t-220 {padding-top: 220px;} +.p-t-221 {padding-top: 221px;} +.p-t-222 {padding-top: 222px;} +.p-t-223 {padding-top: 223px;} +.p-t-224 {padding-top: 224px;} +.p-t-225 {padding-top: 225px;} +.p-t-226 {padding-top: 226px;} +.p-t-227 {padding-top: 227px;} +.p-t-228 {padding-top: 228px;} +.p-t-229 {padding-top: 229px;} +.p-t-230 {padding-top: 230px;} +.p-t-231 {padding-top: 231px;} +.p-t-232 {padding-top: 232px;} +.p-t-233 {padding-top: 233px;} +.p-t-234 {padding-top: 234px;} +.p-t-235 {padding-top: 235px;} +.p-t-236 {padding-top: 236px;} +.p-t-237 {padding-top: 237px;} +.p-t-238 {padding-top: 238px;} +.p-t-239 {padding-top: 239px;} +.p-t-240 {padding-top: 240px;} +.p-t-241 {padding-top: 241px;} +.p-t-242 {padding-top: 242px;} +.p-t-243 {padding-top: 243px;} +.p-t-244 {padding-top: 244px;} +.p-t-245 {padding-top: 245px;} +.p-t-246 {padding-top: 246px;} +.p-t-247 {padding-top: 247px;} +.p-t-248 {padding-top: 248px;} +.p-t-249 {padding-top: 249px;} +.p-t-250 {padding-top: 250px;} +.p-b-0 {padding-bottom: 0px;} +.p-b-1 {padding-bottom: 1px;} +.p-b-2 {padding-bottom: 2px;} +.p-b-3 {padding-bottom: 3px;} +.p-b-4 {padding-bottom: 4px;} +.p-b-5 {padding-bottom: 5px;} +.p-b-6 {padding-bottom: 6px;} +.p-b-7 {padding-bottom: 7px;} +.p-b-8 {padding-bottom: 8px;} +.p-b-9 {padding-bottom: 9px;} +.p-b-10 {padding-bottom: 10px;} +.p-b-11 {padding-bottom: 11px;} +.p-b-12 {padding-bottom: 12px;} +.p-b-13 {padding-bottom: 13px;} +.p-b-14 {padding-bottom: 14px;} +.p-b-15 {padding-bottom: 15px;} +.p-b-16 {padding-bottom: 16px;} +.p-b-17 {padding-bottom: 17px;} +.p-b-18 {padding-bottom: 18px;} +.p-b-19 {padding-bottom: 19px;} +.p-b-20 {padding-bottom: 20px;} +.p-b-21 {padding-bottom: 21px;} +.p-b-22 {padding-bottom: 22px;} +.p-b-23 {padding-bottom: 23px;} +.p-b-24 {padding-bottom: 24px;} +.p-b-25 {padding-bottom: 25px;} +.p-b-26 {padding-bottom: 26px;} +.p-b-27 {padding-bottom: 27px;} +.p-b-28 {padding-bottom: 28px;} +.p-b-29 {padding-bottom: 29px;} +.p-b-30 {padding-bottom: 30px;} +.p-b-31 {padding-bottom: 31px;} +.p-b-32 {padding-bottom: 32px;} +.p-b-33 {padding-bottom: 33px;} +.p-b-34 {padding-bottom: 34px;} +.p-b-35 {padding-bottom: 35px;} +.p-b-36 {padding-bottom: 36px;} +.p-b-37 {padding-bottom: 37px;} +.p-b-38 {padding-bottom: 38px;} +.p-b-39 {padding-bottom: 39px;} +.p-b-40 {padding-bottom: 40px;} +.p-b-41 {padding-bottom: 41px;} +.p-b-42 {padding-bottom: 42px;} +.p-b-43 {padding-bottom: 43px;} +.p-b-44 {padding-bottom: 44px;} +.p-b-45 {padding-bottom: 45px;} +.p-b-46 {padding-bottom: 46px;} +.p-b-47 {padding-bottom: 47px;} +.p-b-48 {padding-bottom: 48px;} +.p-b-49 {padding-bottom: 49px;} +.p-b-50 {padding-bottom: 50px;} +.p-b-51 {padding-bottom: 51px;} +.p-b-52 {padding-bottom: 52px;} +.p-b-53 {padding-bottom: 53px;} +.p-b-54 {padding-bottom: 54px;} +.p-b-55 {padding-bottom: 55px;} +.p-b-56 {padding-bottom: 56px;} +.p-b-57 {padding-bottom: 57px;} +.p-b-58 {padding-bottom: 58px;} +.p-b-59 {padding-bottom: 59px;} +.p-b-60 {padding-bottom: 60px;} +.p-b-61 {padding-bottom: 61px;} +.p-b-62 {padding-bottom: 62px;} +.p-b-63 {padding-bottom: 63px;} +.p-b-64 {padding-bottom: 64px;} +.p-b-65 {padding-bottom: 65px;} +.p-b-66 {padding-bottom: 66px;} +.p-b-67 {padding-bottom: 67px;} +.p-b-68 {padding-bottom: 68px;} +.p-b-69 {padding-bottom: 69px;} +.p-b-70 {padding-bottom: 70px;} +.p-b-71 {padding-bottom: 71px;} +.p-b-72 {padding-bottom: 72px;} +.p-b-73 {padding-bottom: 73px;} +.p-b-74 {padding-bottom: 74px;} +.p-b-75 {padding-bottom: 75px;} +.p-b-76 {padding-bottom: 76px;} +.p-b-77 {padding-bottom: 77px;} +.p-b-78 {padding-bottom: 78px;} +.p-b-79 {padding-bottom: 79px;} +.p-b-80 {padding-bottom: 80px;} +.p-b-81 {padding-bottom: 81px;} +.p-b-82 {padding-bottom: 82px;} +.p-b-83 {padding-bottom: 83px;} +.p-b-84 {padding-bottom: 84px;} +.p-b-85 {padding-bottom: 85px;} +.p-b-86 {padding-bottom: 86px;} +.p-b-87 {padding-bottom: 87px;} +.p-b-88 {padding-bottom: 88px;} +.p-b-89 {padding-bottom: 89px;} +.p-b-90 {padding-bottom: 90px;} +.p-b-91 {padding-bottom: 91px;} +.p-b-92 {padding-bottom: 92px;} +.p-b-93 {padding-bottom: 93px;} +.p-b-94 {padding-bottom: 94px;} +.p-b-95 {padding-bottom: 95px;} +.p-b-96 {padding-bottom: 96px;} +.p-b-97 {padding-bottom: 97px;} +.p-b-98 {padding-bottom: 98px;} +.p-b-99 {padding-bottom: 99px;} +.p-b-100 {padding-bottom: 100px;} +.p-b-101 {padding-bottom: 101px;} +.p-b-102 {padding-bottom: 102px;} +.p-b-103 {padding-bottom: 103px;} +.p-b-104 {padding-bottom: 104px;} +.p-b-105 {padding-bottom: 105px;} +.p-b-106 {padding-bottom: 106px;} +.p-b-107 {padding-bottom: 107px;} +.p-b-108 {padding-bottom: 108px;} +.p-b-109 {padding-bottom: 109px;} +.p-b-110 {padding-bottom: 110px;} +.p-b-111 {padding-bottom: 111px;} +.p-b-112 {padding-bottom: 112px;} +.p-b-113 {padding-bottom: 113px;} +.p-b-114 {padding-bottom: 114px;} +.p-b-115 {padding-bottom: 115px;} +.p-b-116 {padding-bottom: 116px;} +.p-b-117 {padding-bottom: 117px;} +.p-b-118 {padding-bottom: 118px;} +.p-b-119 {padding-bottom: 119px;} +.p-b-120 {padding-bottom: 120px;} +.p-b-121 {padding-bottom: 121px;} +.p-b-122 {padding-bottom: 122px;} +.p-b-123 {padding-bottom: 123px;} +.p-b-124 {padding-bottom: 124px;} +.p-b-125 {padding-bottom: 125px;} +.p-b-126 {padding-bottom: 126px;} +.p-b-127 {padding-bottom: 127px;} +.p-b-128 {padding-bottom: 128px;} +.p-b-129 {padding-bottom: 129px;} +.p-b-130 {padding-bottom: 130px;} +.p-b-131 {padding-bottom: 131px;} +.p-b-132 {padding-bottom: 132px;} +.p-b-133 {padding-bottom: 133px;} +.p-b-134 {padding-bottom: 134px;} +.p-b-135 {padding-bottom: 135px;} +.p-b-136 {padding-bottom: 136px;} +.p-b-137 {padding-bottom: 137px;} +.p-b-138 {padding-bottom: 138px;} +.p-b-139 {padding-bottom: 139px;} +.p-b-140 {padding-bottom: 140px;} +.p-b-141 {padding-bottom: 141px;} +.p-b-142 {padding-bottom: 142px;} +.p-b-143 {padding-bottom: 143px;} +.p-b-144 {padding-bottom: 144px;} +.p-b-145 {padding-bottom: 145px;} +.p-b-146 {padding-bottom: 146px;} +.p-b-147 {padding-bottom: 147px;} +.p-b-148 {padding-bottom: 148px;} +.p-b-149 {padding-bottom: 149px;} +.p-b-150 {padding-bottom: 150px;} +.p-b-151 {padding-bottom: 151px;} +.p-b-152 {padding-bottom: 152px;} +.p-b-153 {padding-bottom: 153px;} +.p-b-154 {padding-bottom: 154px;} +.p-b-155 {padding-bottom: 155px;} +.p-b-156 {padding-bottom: 156px;} +.p-b-157 {padding-bottom: 157px;} +.p-b-158 {padding-bottom: 158px;} +.p-b-159 {padding-bottom: 159px;} +.p-b-160 {padding-bottom: 160px;} +.p-b-161 {padding-bottom: 161px;} +.p-b-162 {padding-bottom: 162px;} +.p-b-163 {padding-bottom: 163px;} +.p-b-164 {padding-bottom: 164px;} +.p-b-165 {padding-bottom: 165px;} +.p-b-166 {padding-bottom: 166px;} +.p-b-167 {padding-bottom: 167px;} +.p-b-168 {padding-bottom: 168px;} +.p-b-169 {padding-bottom: 169px;} +.p-b-170 {padding-bottom: 170px;} +.p-b-171 {padding-bottom: 171px;} +.p-b-172 {padding-bottom: 172px;} +.p-b-173 {padding-bottom: 173px;} +.p-b-174 {padding-bottom: 174px;} +.p-b-175 {padding-bottom: 175px;} +.p-b-176 {padding-bottom: 176px;} +.p-b-177 {padding-bottom: 177px;} +.p-b-178 {padding-bottom: 178px;} +.p-b-179 {padding-bottom: 179px;} +.p-b-180 {padding-bottom: 180px;} +.p-b-181 {padding-bottom: 181px;} +.p-b-182 {padding-bottom: 182px;} +.p-b-183 {padding-bottom: 183px;} +.p-b-184 {padding-bottom: 184px;} +.p-b-185 {padding-bottom: 185px;} +.p-b-186 {padding-bottom: 186px;} +.p-b-187 {padding-bottom: 187px;} +.p-b-188 {padding-bottom: 188px;} +.p-b-189 {padding-bottom: 189px;} +.p-b-190 {padding-bottom: 190px;} +.p-b-191 {padding-bottom: 191px;} +.p-b-192 {padding-bottom: 192px;} +.p-b-193 {padding-bottom: 193px;} +.p-b-194 {padding-bottom: 194px;} +.p-b-195 {padding-bottom: 195px;} +.p-b-196 {padding-bottom: 196px;} +.p-b-197 {padding-bottom: 197px;} +.p-b-198 {padding-bottom: 198px;} +.p-b-199 {padding-bottom: 199px;} +.p-b-200 {padding-bottom: 200px;} +.p-b-201 {padding-bottom: 201px;} +.p-b-202 {padding-bottom: 202px;} +.p-b-203 {padding-bottom: 203px;} +.p-b-204 {padding-bottom: 204px;} +.p-b-205 {padding-bottom: 205px;} +.p-b-206 {padding-bottom: 206px;} +.p-b-207 {padding-bottom: 207px;} +.p-b-208 {padding-bottom: 208px;} +.p-b-209 {padding-bottom: 209px;} +.p-b-210 {padding-bottom: 210px;} +.p-b-211 {padding-bottom: 211px;} +.p-b-212 {padding-bottom: 212px;} +.p-b-213 {padding-bottom: 213px;} +.p-b-214 {padding-bottom: 214px;} +.p-b-215 {padding-bottom: 215px;} +.p-b-216 {padding-bottom: 216px;} +.p-b-217 {padding-bottom: 217px;} +.p-b-218 {padding-bottom: 218px;} +.p-b-219 {padding-bottom: 219px;} +.p-b-220 {padding-bottom: 220px;} +.p-b-221 {padding-bottom: 221px;} +.p-b-222 {padding-bottom: 222px;} +.p-b-223 {padding-bottom: 223px;} +.p-b-224 {padding-bottom: 224px;} +.p-b-225 {padding-bottom: 225px;} +.p-b-226 {padding-bottom: 226px;} +.p-b-227 {padding-bottom: 227px;} +.p-b-228 {padding-bottom: 228px;} +.p-b-229 {padding-bottom: 229px;} +.p-b-230 {padding-bottom: 230px;} +.p-b-231 {padding-bottom: 231px;} +.p-b-232 {padding-bottom: 232px;} +.p-b-233 {padding-bottom: 233px;} +.p-b-234 {padding-bottom: 234px;} +.p-b-235 {padding-bottom: 235px;} +.p-b-236 {padding-bottom: 236px;} +.p-b-237 {padding-bottom: 237px;} +.p-b-238 {padding-bottom: 238px;} +.p-b-239 {padding-bottom: 239px;} +.p-b-240 {padding-bottom: 240px;} +.p-b-241 {padding-bottom: 241px;} +.p-b-242 {padding-bottom: 242px;} +.p-b-243 {padding-bottom: 243px;} +.p-b-244 {padding-bottom: 244px;} +.p-b-245 {padding-bottom: 245px;} +.p-b-246 {padding-bottom: 246px;} +.p-b-247 {padding-bottom: 247px;} +.p-b-248 {padding-bottom: 248px;} +.p-b-249 {padding-bottom: 249px;} +.p-b-250 {padding-bottom: 250px;} +.p-l-0 {padding-left: 0px;} +.p-l-1 {padding-left: 1px;} +.p-l-2 {padding-left: 2px;} +.p-l-3 {padding-left: 3px;} +.p-l-4 {padding-left: 4px;} +.p-l-5 {padding-left: 5px;} +.p-l-6 {padding-left: 6px;} +.p-l-7 {padding-left: 7px;} +.p-l-8 {padding-left: 8px;} +.p-l-9 {padding-left: 9px;} +.p-l-10 {padding-left: 10px;} +.p-l-11 {padding-left: 11px;} +.p-l-12 {padding-left: 12px;} +.p-l-13 {padding-left: 13px;} +.p-l-14 {padding-left: 14px;} +.p-l-15 {padding-left: 15px;} +.p-l-16 {padding-left: 16px;} +.p-l-17 {padding-left: 17px;} +.p-l-18 {padding-left: 18px;} +.p-l-19 {padding-left: 19px;} +.p-l-20 {padding-left: 20px;} +.p-l-21 {padding-left: 21px;} +.p-l-22 {padding-left: 22px;} +.p-l-23 {padding-left: 23px;} +.p-l-24 {padding-left: 24px;} +.p-l-25 {padding-left: 25px;} +.p-l-26 {padding-left: 26px;} +.p-l-27 {padding-left: 27px;} +.p-l-28 {padding-left: 28px;} +.p-l-29 {padding-left: 29px;} +.p-l-30 {padding-left: 30px;} +.p-l-31 {padding-left: 31px;} +.p-l-32 {padding-left: 32px;} +.p-l-33 {padding-left: 33px;} +.p-l-34 {padding-left: 34px;} +.p-l-35 {padding-left: 35px;} +.p-l-36 {padding-left: 36px;} +.p-l-37 {padding-left: 37px;} +.p-l-38 {padding-left: 38px;} +.p-l-39 {padding-left: 39px;} +.p-l-40 {padding-left: 40px;} +.p-l-41 {padding-left: 41px;} +.p-l-42 {padding-left: 42px;} +.p-l-43 {padding-left: 43px;} +.p-l-44 {padding-left: 44px;} +.p-l-45 {padding-left: 45px;} +.p-l-46 {padding-left: 46px;} +.p-l-47 {padding-left: 47px;} +.p-l-48 {padding-left: 48px;} +.p-l-49 {padding-left: 49px;} +.p-l-50 {padding-left: 50px;} +.p-l-51 {padding-left: 51px;} +.p-l-52 {padding-left: 52px;} +.p-l-53 {padding-left: 53px;} +.p-l-54 {padding-left: 54px;} +.p-l-55 {padding-left: 55px;} +.p-l-56 {padding-left: 56px;} +.p-l-57 {padding-left: 57px;} +.p-l-58 {padding-left: 58px;} +.p-l-59 {padding-left: 59px;} +.p-l-60 {padding-left: 60px;} +.p-l-61 {padding-left: 61px;} +.p-l-62 {padding-left: 62px;} +.p-l-63 {padding-left: 63px;} +.p-l-64 {padding-left: 64px;} +.p-l-65 {padding-left: 65px;} +.p-l-66 {padding-left: 66px;} +.p-l-67 {padding-left: 67px;} +.p-l-68 {padding-left: 68px;} +.p-l-69 {padding-left: 69px;} +.p-l-70 {padding-left: 70px;} +.p-l-71 {padding-left: 71px;} +.p-l-72 {padding-left: 72px;} +.p-l-73 {padding-left: 73px;} +.p-l-74 {padding-left: 74px;} +.p-l-75 {padding-left: 75px;} +.p-l-76 {padding-left: 76px;} +.p-l-77 {padding-left: 77px;} +.p-l-78 {padding-left: 78px;} +.p-l-79 {padding-left: 79px;} +.p-l-80 {padding-left: 80px;} +.p-l-81 {padding-left: 81px;} +.p-l-82 {padding-left: 82px;} +.p-l-83 {padding-left: 83px;} +.p-l-84 {padding-left: 84px;} +.p-l-85 {padding-left: 85px;} +.p-l-86 {padding-left: 86px;} +.p-l-87 {padding-left: 87px;} +.p-l-88 {padding-left: 88px;} +.p-l-89 {padding-left: 89px;} +.p-l-90 {padding-left: 90px;} +.p-l-91 {padding-left: 91px;} +.p-l-92 {padding-left: 92px;} +.p-l-93 {padding-left: 93px;} +.p-l-94 {padding-left: 94px;} +.p-l-95 {padding-left: 95px;} +.p-l-96 {padding-left: 96px;} +.p-l-97 {padding-left: 97px;} +.p-l-98 {padding-left: 98px;} +.p-l-99 {padding-left: 99px;} +.p-l-100 {padding-left: 100px;} +.p-l-101 {padding-left: 101px;} +.p-l-102 {padding-left: 102px;} +.p-l-103 {padding-left: 103px;} +.p-l-104 {padding-left: 104px;} +.p-l-105 {padding-left: 105px;} +.p-l-106 {padding-left: 106px;} +.p-l-107 {padding-left: 107px;} +.p-l-108 {padding-left: 108px;} +.p-l-109 {padding-left: 109px;} +.p-l-110 {padding-left: 110px;} +.p-l-111 {padding-left: 111px;} +.p-l-112 {padding-left: 112px;} +.p-l-113 {padding-left: 113px;} +.p-l-114 {padding-left: 114px;} +.p-l-115 {padding-left: 115px;} +.p-l-116 {padding-left: 116px;} +.p-l-117 {padding-left: 117px;} +.p-l-118 {padding-left: 118px;} +.p-l-119 {padding-left: 119px;} +.p-l-120 {padding-left: 120px;} +.p-l-121 {padding-left: 121px;} +.p-l-122 {padding-left: 122px;} +.p-l-123 {padding-left: 123px;} +.p-l-124 {padding-left: 124px;} +.p-l-125 {padding-left: 125px;} +.p-l-126 {padding-left: 126px;} +.p-l-127 {padding-left: 127px;} +.p-l-128 {padding-left: 128px;} +.p-l-129 {padding-left: 129px;} +.p-l-130 {padding-left: 130px;} +.p-l-131 {padding-left: 131px;} +.p-l-132 {padding-left: 132px;} +.p-l-133 {padding-left: 133px;} +.p-l-134 {padding-left: 134px;} +.p-l-135 {padding-left: 135px;} +.p-l-136 {padding-left: 136px;} +.p-l-137 {padding-left: 137px;} +.p-l-138 {padding-left: 138px;} +.p-l-139 {padding-left: 139px;} +.p-l-140 {padding-left: 140px;} +.p-l-141 {padding-left: 141px;} +.p-l-142 {padding-left: 142px;} +.p-l-143 {padding-left: 143px;} +.p-l-144 {padding-left: 144px;} +.p-l-145 {padding-left: 145px;} +.p-l-146 {padding-left: 146px;} +.p-l-147 {padding-left: 147px;} +.p-l-148 {padding-left: 148px;} +.p-l-149 {padding-left: 149px;} +.p-l-150 {padding-left: 150px;} +.p-l-151 {padding-left: 151px;} +.p-l-152 {padding-left: 152px;} +.p-l-153 {padding-left: 153px;} +.p-l-154 {padding-left: 154px;} +.p-l-155 {padding-left: 155px;} +.p-l-156 {padding-left: 156px;} +.p-l-157 {padding-left: 157px;} +.p-l-158 {padding-left: 158px;} +.p-l-159 {padding-left: 159px;} +.p-l-160 {padding-left: 160px;} +.p-l-161 {padding-left: 161px;} +.p-l-162 {padding-left: 162px;} +.p-l-163 {padding-left: 163px;} +.p-l-164 {padding-left: 164px;} +.p-l-165 {padding-left: 165px;} +.p-l-166 {padding-left: 166px;} +.p-l-167 {padding-left: 167px;} +.p-l-168 {padding-left: 168px;} +.p-l-169 {padding-left: 169px;} +.p-l-170 {padding-left: 170px;} +.p-l-171 {padding-left: 171px;} +.p-l-172 {padding-left: 172px;} +.p-l-173 {padding-left: 173px;} +.p-l-174 {padding-left: 174px;} +.p-l-175 {padding-left: 175px;} +.p-l-176 {padding-left: 176px;} +.p-l-177 {padding-left: 177px;} +.p-l-178 {padding-left: 178px;} +.p-l-179 {padding-left: 179px;} +.p-l-180 {padding-left: 180px;} +.p-l-181 {padding-left: 181px;} +.p-l-182 {padding-left: 182px;} +.p-l-183 {padding-left: 183px;} +.p-l-184 {padding-left: 184px;} +.p-l-185 {padding-left: 185px;} +.p-l-186 {padding-left: 186px;} +.p-l-187 {padding-left: 187px;} +.p-l-188 {padding-left: 188px;} +.p-l-189 {padding-left: 189px;} +.p-l-190 {padding-left: 190px;} +.p-l-191 {padding-left: 191px;} +.p-l-192 {padding-left: 192px;} +.p-l-193 {padding-left: 193px;} +.p-l-194 {padding-left: 194px;} +.p-l-195 {padding-left: 195px;} +.p-l-196 {padding-left: 196px;} +.p-l-197 {padding-left: 197px;} +.p-l-198 {padding-left: 198px;} +.p-l-199 {padding-left: 199px;} +.p-l-200 {padding-left: 200px;} +.p-l-201 {padding-left: 201px;} +.p-l-202 {padding-left: 202px;} +.p-l-203 {padding-left: 203px;} +.p-l-204 {padding-left: 204px;} +.p-l-205 {padding-left: 205px;} +.p-l-206 {padding-left: 206px;} +.p-l-207 {padding-left: 207px;} +.p-l-208 {padding-left: 208px;} +.p-l-209 {padding-left: 209px;} +.p-l-210 {padding-left: 210px;} +.p-l-211 {padding-left: 211px;} +.p-l-212 {padding-left: 212px;} +.p-l-213 {padding-left: 213px;} +.p-l-214 {padding-left: 214px;} +.p-l-215 {padding-left: 215px;} +.p-l-216 {padding-left: 216px;} +.p-l-217 {padding-left: 217px;} +.p-l-218 {padding-left: 218px;} +.p-l-219 {padding-left: 219px;} +.p-l-220 {padding-left: 220px;} +.p-l-221 {padding-left: 221px;} +.p-l-222 {padding-left: 222px;} +.p-l-223 {padding-left: 223px;} +.p-l-224 {padding-left: 224px;} +.p-l-225 {padding-left: 225px;} +.p-l-226 {padding-left: 226px;} +.p-l-227 {padding-left: 227px;} +.p-l-228 {padding-left: 228px;} +.p-l-229 {padding-left: 229px;} +.p-l-230 {padding-left: 230px;} +.p-l-231 {padding-left: 231px;} +.p-l-232 {padding-left: 232px;} +.p-l-233 {padding-left: 233px;} +.p-l-234 {padding-left: 234px;} +.p-l-235 {padding-left: 235px;} +.p-l-236 {padding-left: 236px;} +.p-l-237 {padding-left: 237px;} +.p-l-238 {padding-left: 238px;} +.p-l-239 {padding-left: 239px;} +.p-l-240 {padding-left: 240px;} +.p-l-241 {padding-left: 241px;} +.p-l-242 {padding-left: 242px;} +.p-l-243 {padding-left: 243px;} +.p-l-244 {padding-left: 244px;} +.p-l-245 {padding-left: 245px;} +.p-l-246 {padding-left: 246px;} +.p-l-247 {padding-left: 247px;} +.p-l-248 {padding-left: 248px;} +.p-l-249 {padding-left: 249px;} +.p-l-250 {padding-left: 250px;} +.p-r-0 {padding-right: 0px;} +.p-r-1 {padding-right: 1px;} +.p-r-2 {padding-right: 2px;} +.p-r-3 {padding-right: 3px;} +.p-r-4 {padding-right: 4px;} +.p-r-5 {padding-right: 5px;} +.p-r-6 {padding-right: 6px;} +.p-r-7 {padding-right: 7px;} +.p-r-8 {padding-right: 8px;} +.p-r-9 {padding-right: 9px;} +.p-r-10 {padding-right: 10px;} +.p-r-11 {padding-right: 11px;} +.p-r-12 {padding-right: 12px;} +.p-r-13 {padding-right: 13px;} +.p-r-14 {padding-right: 14px;} +.p-r-15 {padding-right: 15px;} +.p-r-16 {padding-right: 16px;} +.p-r-17 {padding-right: 17px;} +.p-r-18 {padding-right: 18px;} +.p-r-19 {padding-right: 19px;} +.p-r-20 {padding-right: 20px;} +.p-r-21 {padding-right: 21px;} +.p-r-22 {padding-right: 22px;} +.p-r-23 {padding-right: 23px;} +.p-r-24 {padding-right: 24px;} +.p-r-25 {padding-right: 25px;} +.p-r-26 {padding-right: 26px;} +.p-r-27 {padding-right: 27px;} +.p-r-28 {padding-right: 28px;} +.p-r-29 {padding-right: 29px;} +.p-r-30 {padding-right: 30px;} +.p-r-31 {padding-right: 31px;} +.p-r-32 {padding-right: 32px;} +.p-r-33 {padding-right: 33px;} +.p-r-34 {padding-right: 34px;} +.p-r-35 {padding-right: 35px;} +.p-r-36 {padding-right: 36px;} +.p-r-37 {padding-right: 37px;} +.p-r-38 {padding-right: 38px;} +.p-r-39 {padding-right: 39px;} +.p-r-40 {padding-right: 40px;} +.p-r-41 {padding-right: 41px;} +.p-r-42 {padding-right: 42px;} +.p-r-43 {padding-right: 43px;} +.p-r-44 {padding-right: 44px;} +.p-r-45 {padding-right: 45px;} +.p-r-46 {padding-right: 46px;} +.p-r-47 {padding-right: 47px;} +.p-r-48 {padding-right: 48px;} +.p-r-49 {padding-right: 49px;} +.p-r-50 {padding-right: 50px;} +.p-r-51 {padding-right: 51px;} +.p-r-52 {padding-right: 52px;} +.p-r-53 {padding-right: 53px;} +.p-r-54 {padding-right: 54px;} +.p-r-55 {padding-right: 55px;} +.p-r-56 {padding-right: 56px;} +.p-r-57 {padding-right: 57px;} +.p-r-58 {padding-right: 58px;} +.p-r-59 {padding-right: 59px;} +.p-r-60 {padding-right: 60px;} +.p-r-61 {padding-right: 61px;} +.p-r-62 {padding-right: 62px;} +.p-r-63 {padding-right: 63px;} +.p-r-64 {padding-right: 64px;} +.p-r-65 {padding-right: 65px;} +.p-r-66 {padding-right: 66px;} +.p-r-67 {padding-right: 67px;} +.p-r-68 {padding-right: 68px;} +.p-r-69 {padding-right: 69px;} +.p-r-70 {padding-right: 70px;} +.p-r-71 {padding-right: 71px;} +.p-r-72 {padding-right: 72px;} +.p-r-73 {padding-right: 73px;} +.p-r-74 {padding-right: 74px;} +.p-r-75 {padding-right: 75px;} +.p-r-76 {padding-right: 76px;} +.p-r-77 {padding-right: 77px;} +.p-r-78 {padding-right: 78px;} +.p-r-79 {padding-right: 79px;} +.p-r-80 {padding-right: 80px;} +.p-r-81 {padding-right: 81px;} +.p-r-82 {padding-right: 82px;} +.p-r-83 {padding-right: 83px;} +.p-r-84 {padding-right: 84px;} +.p-r-85 {padding-right: 85px;} +.p-r-86 {padding-right: 86px;} +.p-r-87 {padding-right: 87px;} +.p-r-88 {padding-right: 88px;} +.p-r-89 {padding-right: 89px;} +.p-r-90 {padding-right: 90px;} +.p-r-91 {padding-right: 91px;} +.p-r-92 {padding-right: 92px;} +.p-r-93 {padding-right: 93px;} +.p-r-94 {padding-right: 94px;} +.p-r-95 {padding-right: 95px;} +.p-r-96 {padding-right: 96px;} +.p-r-97 {padding-right: 97px;} +.p-r-98 {padding-right: 98px;} +.p-r-99 {padding-right: 99px;} +.p-r-100 {padding-right: 100px;} +.p-r-101 {padding-right: 101px;} +.p-r-102 {padding-right: 102px;} +.p-r-103 {padding-right: 103px;} +.p-r-104 {padding-right: 104px;} +.p-r-105 {padding-right: 105px;} +.p-r-106 {padding-right: 106px;} +.p-r-107 {padding-right: 107px;} +.p-r-108 {padding-right: 108px;} +.p-r-109 {padding-right: 109px;} +.p-r-110 {padding-right: 110px;} +.p-r-111 {padding-right: 111px;} +.p-r-112 {padding-right: 112px;} +.p-r-113 {padding-right: 113px;} +.p-r-114 {padding-right: 114px;} +.p-r-115 {padding-right: 115px;} +.p-r-116 {padding-right: 116px;} +.p-r-117 {padding-right: 117px;} +.p-r-118 {padding-right: 118px;} +.p-r-119 {padding-right: 119px;} +.p-r-120 {padding-right: 120px;} +.p-r-121 {padding-right: 121px;} +.p-r-122 {padding-right: 122px;} +.p-r-123 {padding-right: 123px;} +.p-r-124 {padding-right: 124px;} +.p-r-125 {padding-right: 125px;} +.p-r-126 {padding-right: 126px;} +.p-r-127 {padding-right: 127px;} +.p-r-128 {padding-right: 128px;} +.p-r-129 {padding-right: 129px;} +.p-r-130 {padding-right: 130px;} +.p-r-131 {padding-right: 131px;} +.p-r-132 {padding-right: 132px;} +.p-r-133 {padding-right: 133px;} +.p-r-134 {padding-right: 134px;} +.p-r-135 {padding-right: 135px;} +.p-r-136 {padding-right: 136px;} +.p-r-137 {padding-right: 137px;} +.p-r-138 {padding-right: 138px;} +.p-r-139 {padding-right: 139px;} +.p-r-140 {padding-right: 140px;} +.p-r-141 {padding-right: 141px;} +.p-r-142 {padding-right: 142px;} +.p-r-143 {padding-right: 143px;} +.p-r-144 {padding-right: 144px;} +.p-r-145 {padding-right: 145px;} +.p-r-146 {padding-right: 146px;} +.p-r-147 {padding-right: 147px;} +.p-r-148 {padding-right: 148px;} +.p-r-149 {padding-right: 149px;} +.p-r-150 {padding-right: 150px;} +.p-r-151 {padding-right: 151px;} +.p-r-152 {padding-right: 152px;} +.p-r-153 {padding-right: 153px;} +.p-r-154 {padding-right: 154px;} +.p-r-155 {padding-right: 155px;} +.p-r-156 {padding-right: 156px;} +.p-r-157 {padding-right: 157px;} +.p-r-158 {padding-right: 158px;} +.p-r-159 {padding-right: 159px;} +.p-r-160 {padding-right: 160px;} +.p-r-161 {padding-right: 161px;} +.p-r-162 {padding-right: 162px;} +.p-r-163 {padding-right: 163px;} +.p-r-164 {padding-right: 164px;} +.p-r-165 {padding-right: 165px;} +.p-r-166 {padding-right: 166px;} +.p-r-167 {padding-right: 167px;} +.p-r-168 {padding-right: 168px;} +.p-r-169 {padding-right: 169px;} +.p-r-170 {padding-right: 170px;} +.p-r-171 {padding-right: 171px;} +.p-r-172 {padding-right: 172px;} +.p-r-173 {padding-right: 173px;} +.p-r-174 {padding-right: 174px;} +.p-r-175 {padding-right: 175px;} +.p-r-176 {padding-right: 176px;} +.p-r-177 {padding-right: 177px;} +.p-r-178 {padding-right: 178px;} +.p-r-179 {padding-right: 179px;} +.p-r-180 {padding-right: 180px;} +.p-r-181 {padding-right: 181px;} +.p-r-182 {padding-right: 182px;} +.p-r-183 {padding-right: 183px;} +.p-r-184 {padding-right: 184px;} +.p-r-185 {padding-right: 185px;} +.p-r-186 {padding-right: 186px;} +.p-r-187 {padding-right: 187px;} +.p-r-188 {padding-right: 188px;} +.p-r-189 {padding-right: 189px;} +.p-r-190 {padding-right: 190px;} +.p-r-191 {padding-right: 191px;} +.p-r-192 {padding-right: 192px;} +.p-r-193 {padding-right: 193px;} +.p-r-194 {padding-right: 194px;} +.p-r-195 {padding-right: 195px;} +.p-r-196 {padding-right: 196px;} +.p-r-197 {padding-right: 197px;} +.p-r-198 {padding-right: 198px;} +.p-r-199 {padding-right: 199px;} +.p-r-200 {padding-right: 200px;} +.p-r-201 {padding-right: 201px;} +.p-r-202 {padding-right: 202px;} +.p-r-203 {padding-right: 203px;} +.p-r-204 {padding-right: 204px;} +.p-r-205 {padding-right: 205px;} +.p-r-206 {padding-right: 206px;} +.p-r-207 {padding-right: 207px;} +.p-r-208 {padding-right: 208px;} +.p-r-209 {padding-right: 209px;} +.p-r-210 {padding-right: 210px;} +.p-r-211 {padding-right: 211px;} +.p-r-212 {padding-right: 212px;} +.p-r-213 {padding-right: 213px;} +.p-r-214 {padding-right: 214px;} +.p-r-215 {padding-right: 215px;} +.p-r-216 {padding-right: 216px;} +.p-r-217 {padding-right: 217px;} +.p-r-218 {padding-right: 218px;} +.p-r-219 {padding-right: 219px;} +.p-r-220 {padding-right: 220px;} +.p-r-221 {padding-right: 221px;} +.p-r-222 {padding-right: 222px;} +.p-r-223 {padding-right: 223px;} +.p-r-224 {padding-right: 224px;} +.p-r-225 {padding-right: 225px;} +.p-r-226 {padding-right: 226px;} +.p-r-227 {padding-right: 227px;} +.p-r-228 {padding-right: 228px;} +.p-r-229 {padding-right: 229px;} +.p-r-230 {padding-right: 230px;} +.p-r-231 {padding-right: 231px;} +.p-r-232 {padding-right: 232px;} +.p-r-233 {padding-right: 233px;} +.p-r-234 {padding-right: 234px;} +.p-r-235 {padding-right: 235px;} +.p-r-236 {padding-right: 236px;} +.p-r-237 {padding-right: 237px;} +.p-r-238 {padding-right: 238px;} +.p-r-239 {padding-right: 239px;} +.p-r-240 {padding-right: 240px;} +.p-r-241 {padding-right: 241px;} +.p-r-242 {padding-right: 242px;} +.p-r-243 {padding-right: 243px;} +.p-r-244 {padding-right: 244px;} +.p-r-245 {padding-right: 245px;} +.p-r-246 {padding-right: 246px;} +.p-r-247 {padding-right: 247px;} +.p-r-248 {padding-right: 248px;} +.p-r-249 {padding-right: 249px;} +.p-r-250 {padding-right: 250px;} + +/*[ MARGIN ] +/////////////////////////////////////////////////////////// +*/ +.m-t-0 {margin-top: 0px;} +.m-t-1 {margin-top: 1px;} +.m-t-2 {margin-top: 2px;} +.m-t-3 {margin-top: 3px;} +.m-t-4 {margin-top: 4px;} +.m-t-5 {margin-top: 5px;} +.m-t-6 {margin-top: 6px;} +.m-t-7 {margin-top: 7px;} +.m-t-8 {margin-top: 8px;} +.m-t-9 {margin-top: 9px;} +.m-t-10 {margin-top: 10px;} +.m-t-11 {margin-top: 11px;} +.m-t-12 {margin-top: 12px;} +.m-t-13 {margin-top: 13px;} +.m-t-14 {margin-top: 14px;} +.m-t-15 {margin-top: 15px;} +.m-t-16 {margin-top: 16px;} +.m-t-17 {margin-top: 17px;} +.m-t-18 {margin-top: 18px;} +.m-t-19 {margin-top: 19px;} +.m-t-20 {margin-top: 20px;} +.m-t-21 {margin-top: 21px;} +.m-t-22 {margin-top: 22px;} +.m-t-23 {margin-top: 23px;} +.m-t-24 {margin-top: 24px;} +.m-t-25 {margin-top: 25px;} +.m-t-26 {margin-top: 26px;} +.m-t-27 {margin-top: 27px;} +.m-t-28 {margin-top: 28px;} +.m-t-29 {margin-top: 29px;} +.m-t-30 {margin-top: 30px;} +.m-t-31 {margin-top: 31px;} +.m-t-32 {margin-top: 32px;} +.m-t-33 {margin-top: 33px;} +.m-t-34 {margin-top: 34px;} +.m-t-35 {margin-top: 35px;} +.m-t-36 {margin-top: 36px;} +.m-t-37 {margin-top: 37px;} +.m-t-38 {margin-top: 38px;} +.m-t-39 {margin-top: 39px;} +.m-t-40 {margin-top: 40px;} +.m-t-41 {margin-top: 41px;} +.m-t-42 {margin-top: 42px;} +.m-t-43 {margin-top: 43px;} +.m-t-44 {margin-top: 44px;} +.m-t-45 {margin-top: 45px;} +.m-t-46 {margin-top: 46px;} +.m-t-47 {margin-top: 47px;} +.m-t-48 {margin-top: 48px;} +.m-t-49 {margin-top: 49px;} +.m-t-50 {margin-top: 50px;} +.m-t-51 {margin-top: 51px;} +.m-t-52 {margin-top: 52px;} +.m-t-53 {margin-top: 53px;} +.m-t-54 {margin-top: 54px;} +.m-t-55 {margin-top: 55px;} +.m-t-56 {margin-top: 56px;} +.m-t-57 {margin-top: 57px;} +.m-t-58 {margin-top: 58px;} +.m-t-59 {margin-top: 59px;} +.m-t-60 {margin-top: 60px;} +.m-t-61 {margin-top: 61px;} +.m-t-62 {margin-top: 62px;} +.m-t-63 {margin-top: 63px;} +.m-t-64 {margin-top: 64px;} +.m-t-65 {margin-top: 65px;} +.m-t-66 {margin-top: 66px;} +.m-t-67 {margin-top: 67px;} +.m-t-68 {margin-top: 68px;} +.m-t-69 {margin-top: 69px;} +.m-t-70 {margin-top: 70px;} +.m-t-71 {margin-top: 71px;} +.m-t-72 {margin-top: 72px;} +.m-t-73 {margin-top: 73px;} +.m-t-74 {margin-top: 74px;} +.m-t-75 {margin-top: 75px;} +.m-t-76 {margin-top: 76px;} +.m-t-77 {margin-top: 77px;} +.m-t-78 {margin-top: 78px;} +.m-t-79 {margin-top: 79px;} +.m-t-80 {margin-top: 80px;} +.m-t-81 {margin-top: 81px;} +.m-t-82 {margin-top: 82px;} +.m-t-83 {margin-top: 83px;} +.m-t-84 {margin-top: 84px;} +.m-t-85 {margin-top: 85px;} +.m-t-86 {margin-top: 86px;} +.m-t-87 {margin-top: 87px;} +.m-t-88 {margin-top: 88px;} +.m-t-89 {margin-top: 89px;} +.m-t-90 {margin-top: 90px;} +.m-t-91 {margin-top: 91px;} +.m-t-92 {margin-top: 92px;} +.m-t-93 {margin-top: 93px;} +.m-t-94 {margin-top: 94px;} +.m-t-95 {margin-top: 95px;} +.m-t-96 {margin-top: 96px;} +.m-t-97 {margin-top: 97px;} +.m-t-98 {margin-top: 98px;} +.m-t-99 {margin-top: 99px;} +.m-t-100 {margin-top: 100px;} +.m-t-101 {margin-top: 101px;} +.m-t-102 {margin-top: 102px;} +.m-t-103 {margin-top: 103px;} +.m-t-104 {margin-top: 104px;} +.m-t-105 {margin-top: 105px;} +.m-t-106 {margin-top: 106px;} +.m-t-107 {margin-top: 107px;} +.m-t-108 {margin-top: 108px;} +.m-t-109 {margin-top: 109px;} +.m-t-110 {margin-top: 110px;} +.m-t-111 {margin-top: 111px;} +.m-t-112 {margin-top: 112px;} +.m-t-113 {margin-top: 113px;} +.m-t-114 {margin-top: 114px;} +.m-t-115 {margin-top: 115px;} +.m-t-116 {margin-top: 116px;} +.m-t-117 {margin-top: 117px;} +.m-t-118 {margin-top: 118px;} +.m-t-119 {margin-top: 119px;} +.m-t-120 {margin-top: 120px;} +.m-t-121 {margin-top: 121px;} +.m-t-122 {margin-top: 122px;} +.m-t-123 {margin-top: 123px;} +.m-t-124 {margin-top: 124px;} +.m-t-125 {margin-top: 125px;} +.m-t-126 {margin-top: 126px;} +.m-t-127 {margin-top: 127px;} +.m-t-128 {margin-top: 128px;} +.m-t-129 {margin-top: 129px;} +.m-t-130 {margin-top: 130px;} +.m-t-131 {margin-top: 131px;} +.m-t-132 {margin-top: 132px;} +.m-t-133 {margin-top: 133px;} +.m-t-134 {margin-top: 134px;} +.m-t-135 {margin-top: 135px;} +.m-t-136 {margin-top: 136px;} +.m-t-137 {margin-top: 137px;} +.m-t-138 {margin-top: 138px;} +.m-t-139 {margin-top: 139px;} +.m-t-140 {margin-top: 140px;} +.m-t-141 {margin-top: 141px;} +.m-t-142 {margin-top: 142px;} +.m-t-143 {margin-top: 143px;} +.m-t-144 {margin-top: 144px;} +.m-t-145 {margin-top: 145px;} +.m-t-146 {margin-top: 146px;} +.m-t-147 {margin-top: 147px;} +.m-t-148 {margin-top: 148px;} +.m-t-149 {margin-top: 149px;} +.m-t-150 {margin-top: 150px;} +.m-t-151 {margin-top: 151px;} +.m-t-152 {margin-top: 152px;} +.m-t-153 {margin-top: 153px;} +.m-t-154 {margin-top: 154px;} +.m-t-155 {margin-top: 155px;} +.m-t-156 {margin-top: 156px;} +.m-t-157 {margin-top: 157px;} +.m-t-158 {margin-top: 158px;} +.m-t-159 {margin-top: 159px;} +.m-t-160 {margin-top: 160px;} +.m-t-161 {margin-top: 161px;} +.m-t-162 {margin-top: 162px;} +.m-t-163 {margin-top: 163px;} +.m-t-164 {margin-top: 164px;} +.m-t-165 {margin-top: 165px;} +.m-t-166 {margin-top: 166px;} +.m-t-167 {margin-top: 167px;} +.m-t-168 {margin-top: 168px;} +.m-t-169 {margin-top: 169px;} +.m-t-170 {margin-top: 170px;} +.m-t-171 {margin-top: 171px;} +.m-t-172 {margin-top: 172px;} +.m-t-173 {margin-top: 173px;} +.m-t-174 {margin-top: 174px;} +.m-t-175 {margin-top: 175px;} +.m-t-176 {margin-top: 176px;} +.m-t-177 {margin-top: 177px;} +.m-t-178 {margin-top: 178px;} +.m-t-179 {margin-top: 179px;} +.m-t-180 {margin-top: 180px;} +.m-t-181 {margin-top: 181px;} +.m-t-182 {margin-top: 182px;} +.m-t-183 {margin-top: 183px;} +.m-t-184 {margin-top: 184px;} +.m-t-185 {margin-top: 185px;} +.m-t-186 {margin-top: 186px;} +.m-t-187 {margin-top: 187px;} +.m-t-188 {margin-top: 188px;} +.m-t-189 {margin-top: 189px;} +.m-t-190 {margin-top: 190px;} +.m-t-191 {margin-top: 191px;} +.m-t-192 {margin-top: 192px;} +.m-t-193 {margin-top: 193px;} +.m-t-194 {margin-top: 194px;} +.m-t-195 {margin-top: 195px;} +.m-t-196 {margin-top: 196px;} +.m-t-197 {margin-top: 197px;} +.m-t-198 {margin-top: 198px;} +.m-t-199 {margin-top: 199px;} +.m-t-200 {margin-top: 200px;} +.m-t-201 {margin-top: 201px;} +.m-t-202 {margin-top: 202px;} +.m-t-203 {margin-top: 203px;} +.m-t-204 {margin-top: 204px;} +.m-t-205 {margin-top: 205px;} +.m-t-206 {margin-top: 206px;} +.m-t-207 {margin-top: 207px;} +.m-t-208 {margin-top: 208px;} +.m-t-209 {margin-top: 209px;} +.m-t-210 {margin-top: 210px;} +.m-t-211 {margin-top: 211px;} +.m-t-212 {margin-top: 212px;} +.m-t-213 {margin-top: 213px;} +.m-t-214 {margin-top: 214px;} +.m-t-215 {margin-top: 215px;} +.m-t-216 {margin-top: 216px;} +.m-t-217 {margin-top: 217px;} +.m-t-218 {margin-top: 218px;} +.m-t-219 {margin-top: 219px;} +.m-t-220 {margin-top: 220px;} +.m-t-221 {margin-top: 221px;} +.m-t-222 {margin-top: 222px;} +.m-t-223 {margin-top: 223px;} +.m-t-224 {margin-top: 224px;} +.m-t-225 {margin-top: 225px;} +.m-t-226 {margin-top: 226px;} +.m-t-227 {margin-top: 227px;} +.m-t-228 {margin-top: 228px;} +.m-t-229 {margin-top: 229px;} +.m-t-230 {margin-top: 230px;} +.m-t-231 {margin-top: 231px;} +.m-t-232 {margin-top: 232px;} +.m-t-233 {margin-top: 233px;} +.m-t-234 {margin-top: 234px;} +.m-t-235 {margin-top: 235px;} +.m-t-236 {margin-top: 236px;} +.m-t-237 {margin-top: 237px;} +.m-t-238 {margin-top: 238px;} +.m-t-239 {margin-top: 239px;} +.m-t-240 {margin-top: 240px;} +.m-t-241 {margin-top: 241px;} +.m-t-242 {margin-top: 242px;} +.m-t-243 {margin-top: 243px;} +.m-t-244 {margin-top: 244px;} +.m-t-245 {margin-top: 245px;} +.m-t-246 {margin-top: 246px;} +.m-t-247 {margin-top: 247px;} +.m-t-248 {margin-top: 248px;} +.m-t-249 {margin-top: 249px;} +.m-t-250 {margin-top: 250px;} +.m-b-0 {margin-bottom: 0px;} +.m-b-1 {margin-bottom: 1px;} +.m-b-2 {margin-bottom: 2px;} +.m-b-3 {margin-bottom: 3px;} +.m-b-4 {margin-bottom: 4px;} +.m-b-5 {margin-bottom: 5px;} +.m-b-6 {margin-bottom: 6px;} +.m-b-7 {margin-bottom: 7px;} +.m-b-8 {margin-bottom: 8px;} +.m-b-9 {margin-bottom: 9px;} +.m-b-10 {margin-bottom: 10px;} +.m-b-11 {margin-bottom: 11px;} +.m-b-12 {margin-bottom: 12px;} +.m-b-13 {margin-bottom: 13px;} +.m-b-14 {margin-bottom: 14px;} +.m-b-15 {margin-bottom: 15px;} +.m-b-16 {margin-bottom: 16px;} +.m-b-17 {margin-bottom: 17px;} +.m-b-18 {margin-bottom: 18px;} +.m-b-19 {margin-bottom: 19px;} +.m-b-20 {margin-bottom: 20px;} +.m-b-21 {margin-bottom: 21px;} +.m-b-22 {margin-bottom: 22px;} +.m-b-23 {margin-bottom: 23px;} +.m-b-24 {margin-bottom: 24px;} +.m-b-25 {margin-bottom: 25px;} +.m-b-26 {margin-bottom: 26px;} +.m-b-27 {margin-bottom: 27px;} +.m-b-28 {margin-bottom: 28px;} +.m-b-29 {margin-bottom: 29px;} +.m-b-30 {margin-bottom: 30px;} +.m-b-31 {margin-bottom: 31px;} +.m-b-32 {margin-bottom: 32px;} +.m-b-33 {margin-bottom: 33px;} +.m-b-34 {margin-bottom: 34px;} +.m-b-35 {margin-bottom: 35px;} +.m-b-36 {margin-bottom: 36px;} +.m-b-37 {margin-bottom: 37px;} +.m-b-38 {margin-bottom: 38px;} +.m-b-39 {margin-bottom: 39px;} +.m-b-40 {margin-bottom: 40px;} +.m-b-41 {margin-bottom: 41px;} +.m-b-42 {margin-bottom: 42px;} +.m-b-43 {margin-bottom: 43px;} +.m-b-44 {margin-bottom: 44px;} +.m-b-45 {margin-bottom: 45px;} +.m-b-46 {margin-bottom: 46px;} +.m-b-47 {margin-bottom: 47px;} +.m-b-48 {margin-bottom: 48px;} +.m-b-49 {margin-bottom: 49px;} +.m-b-50 {margin-bottom: 50px;} +.m-b-51 {margin-bottom: 51px;} +.m-b-52 {margin-bottom: 52px;} +.m-b-53 {margin-bottom: 53px;} +.m-b-54 {margin-bottom: 54px;} +.m-b-55 {margin-bottom: 55px;} +.m-b-56 {margin-bottom: 56px;} +.m-b-57 {margin-bottom: 57px;} +.m-b-58 {margin-bottom: 58px;} +.m-b-59 {margin-bottom: 59px;} +.m-b-60 {margin-bottom: 60px;} +.m-b-61 {margin-bottom: 61px;} +.m-b-62 {margin-bottom: 62px;} +.m-b-63 {margin-bottom: 63px;} +.m-b-64 {margin-bottom: 64px;} +.m-b-65 {margin-bottom: 65px;} +.m-b-66 {margin-bottom: 66px;} +.m-b-67 {margin-bottom: 67px;} +.m-b-68 {margin-bottom: 68px;} +.m-b-69 {margin-bottom: 69px;} +.m-b-70 {margin-bottom: 70px;} +.m-b-71 {margin-bottom: 71px;} +.m-b-72 {margin-bottom: 72px;} +.m-b-73 {margin-bottom: 73px;} +.m-b-74 {margin-bottom: 74px;} +.m-b-75 {margin-bottom: 75px;} +.m-b-76 {margin-bottom: 76px;} +.m-b-77 {margin-bottom: 77px;} +.m-b-78 {margin-bottom: 78px;} +.m-b-79 {margin-bottom: 79px;} +.m-b-80 {margin-bottom: 80px;} +.m-b-81 {margin-bottom: 81px;} +.m-b-82 {margin-bottom: 82px;} +.m-b-83 {margin-bottom: 83px;} +.m-b-84 {margin-bottom: 84px;} +.m-b-85 {margin-bottom: 85px;} +.m-b-86 {margin-bottom: 86px;} +.m-b-87 {margin-bottom: 87px;} +.m-b-88 {margin-bottom: 88px;} +.m-b-89 {margin-bottom: 89px;} +.m-b-90 {margin-bottom: 90px;} +.m-b-91 {margin-bottom: 91px;} +.m-b-92 {margin-bottom: 92px;} +.m-b-93 {margin-bottom: 93px;} +.m-b-94 {margin-bottom: 94px;} +.m-b-95 {margin-bottom: 95px;} +.m-b-96 {margin-bottom: 96px;} +.m-b-97 {margin-bottom: 97px;} +.m-b-98 {margin-bottom: 98px;} +.m-b-99 {margin-bottom: 99px;} +.m-b-100 {margin-bottom: 100px;} +.m-b-101 {margin-bottom: 101px;} +.m-b-102 {margin-bottom: 102px;} +.m-b-103 {margin-bottom: 103px;} +.m-b-104 {margin-bottom: 104px;} +.m-b-105 {margin-bottom: 105px;} +.m-b-106 {margin-bottom: 106px;} +.m-b-107 {margin-bottom: 107px;} +.m-b-108 {margin-bottom: 108px;} +.m-b-109 {margin-bottom: 109px;} +.m-b-110 {margin-bottom: 110px;} +.m-b-111 {margin-bottom: 111px;} +.m-b-112 {margin-bottom: 112px;} +.m-b-113 {margin-bottom: 113px;} +.m-b-114 {margin-bottom: 114px;} +.m-b-115 {margin-bottom: 115px;} +.m-b-116 {margin-bottom: 116px;} +.m-b-117 {margin-bottom: 117px;} +.m-b-118 {margin-bottom: 118px;} +.m-b-119 {margin-bottom: 119px;} +.m-b-120 {margin-bottom: 120px;} +.m-b-121 {margin-bottom: 121px;} +.m-b-122 {margin-bottom: 122px;} +.m-b-123 {margin-bottom: 123px;} +.m-b-124 {margin-bottom: 124px;} +.m-b-125 {margin-bottom: 125px;} +.m-b-126 {margin-bottom: 126px;} +.m-b-127 {margin-bottom: 127px;} +.m-b-128 {margin-bottom: 128px;} +.m-b-129 {margin-bottom: 129px;} +.m-b-130 {margin-bottom: 130px;} +.m-b-131 {margin-bottom: 131px;} +.m-b-132 {margin-bottom: 132px;} +.m-b-133 {margin-bottom: 133px;} +.m-b-134 {margin-bottom: 134px;} +.m-b-135 {margin-bottom: 135px;} +.m-b-136 {margin-bottom: 136px;} +.m-b-137 {margin-bottom: 137px;} +.m-b-138 {margin-bottom: 138px;} +.m-b-139 {margin-bottom: 139px;} +.m-b-140 {margin-bottom: 140px;} +.m-b-141 {margin-bottom: 141px;} +.m-b-142 {margin-bottom: 142px;} +.m-b-143 {margin-bottom: 143px;} +.m-b-144 {margin-bottom: 144px;} +.m-b-145 {margin-bottom: 145px;} +.m-b-146 {margin-bottom: 146px;} +.m-b-147 {margin-bottom: 147px;} +.m-b-148 {margin-bottom: 148px;} +.m-b-149 {margin-bottom: 149px;} +.m-b-150 {margin-bottom: 150px;} +.m-b-151 {margin-bottom: 151px;} +.m-b-152 {margin-bottom: 152px;} +.m-b-153 {margin-bottom: 153px;} +.m-b-154 {margin-bottom: 154px;} +.m-b-155 {margin-bottom: 155px;} +.m-b-156 {margin-bottom: 156px;} +.m-b-157 {margin-bottom: 157px;} +.m-b-158 {margin-bottom: 158px;} +.m-b-159 {margin-bottom: 159px;} +.m-b-160 {margin-bottom: 160px;} +.m-b-161 {margin-bottom: 161px;} +.m-b-162 {margin-bottom: 162px;} +.m-b-163 {margin-bottom: 163px;} +.m-b-164 {margin-bottom: 164px;} +.m-b-165 {margin-bottom: 165px;} +.m-b-166 {margin-bottom: 166px;} +.m-b-167 {margin-bottom: 167px;} +.m-b-168 {margin-bottom: 168px;} +.m-b-169 {margin-bottom: 169px;} +.m-b-170 {margin-bottom: 170px;} +.m-b-171 {margin-bottom: 171px;} +.m-b-172 {margin-bottom: 172px;} +.m-b-173 {margin-bottom: 173px;} +.m-b-174 {margin-bottom: 174px;} +.m-b-175 {margin-bottom: 175px;} +.m-b-176 {margin-bottom: 176px;} +.m-b-177 {margin-bottom: 177px;} +.m-b-178 {margin-bottom: 178px;} +.m-b-179 {margin-bottom: 179px;} +.m-b-180 {margin-bottom: 180px;} +.m-b-181 {margin-bottom: 181px;} +.m-b-182 {margin-bottom: 182px;} +.m-b-183 {margin-bottom: 183px;} +.m-b-184 {margin-bottom: 184px;} +.m-b-185 {margin-bottom: 185px;} +.m-b-186 {margin-bottom: 186px;} +.m-b-187 {margin-bottom: 187px;} +.m-b-188 {margin-bottom: 188px;} +.m-b-189 {margin-bottom: 189px;} +.m-b-190 {margin-bottom: 190px;} +.m-b-191 {margin-bottom: 191px;} +.m-b-192 {margin-bottom: 192px;} +.m-b-193 {margin-bottom: 193px;} +.m-b-194 {margin-bottom: 194px;} +.m-b-195 {margin-bottom: 195px;} +.m-b-196 {margin-bottom: 196px;} +.m-b-197 {margin-bottom: 197px;} +.m-b-198 {margin-bottom: 198px;} +.m-b-199 {margin-bottom: 199px;} +.m-b-200 {margin-bottom: 200px;} +.m-b-201 {margin-bottom: 201px;} +.m-b-202 {margin-bottom: 202px;} +.m-b-203 {margin-bottom: 203px;} +.m-b-204 {margin-bottom: 204px;} +.m-b-205 {margin-bottom: 205px;} +.m-b-206 {margin-bottom: 206px;} +.m-b-207 {margin-bottom: 207px;} +.m-b-208 {margin-bottom: 208px;} +.m-b-209 {margin-bottom: 209px;} +.m-b-210 {margin-bottom: 210px;} +.m-b-211 {margin-bottom: 211px;} +.m-b-212 {margin-bottom: 212px;} +.m-b-213 {margin-bottom: 213px;} +.m-b-214 {margin-bottom: 214px;} +.m-b-215 {margin-bottom: 215px;} +.m-b-216 {margin-bottom: 216px;} +.m-b-217 {margin-bottom: 217px;} +.m-b-218 {margin-bottom: 218px;} +.m-b-219 {margin-bottom: 219px;} +.m-b-220 {margin-bottom: 220px;} +.m-b-221 {margin-bottom: 221px;} +.m-b-222 {margin-bottom: 222px;} +.m-b-223 {margin-bottom: 223px;} +.m-b-224 {margin-bottom: 224px;} +.m-b-225 {margin-bottom: 225px;} +.m-b-226 {margin-bottom: 226px;} +.m-b-227 {margin-bottom: 227px;} +.m-b-228 {margin-bottom: 228px;} +.m-b-229 {margin-bottom: 229px;} +.m-b-230 {margin-bottom: 230px;} +.m-b-231 {margin-bottom: 231px;} +.m-b-232 {margin-bottom: 232px;} +.m-b-233 {margin-bottom: 233px;} +.m-b-234 {margin-bottom: 234px;} +.m-b-235 {margin-bottom: 235px;} +.m-b-236 {margin-bottom: 236px;} +.m-b-237 {margin-bottom: 237px;} +.m-b-238 {margin-bottom: 238px;} +.m-b-239 {margin-bottom: 239px;} +.m-b-240 {margin-bottom: 240px;} +.m-b-241 {margin-bottom: 241px;} +.m-b-242 {margin-bottom: 242px;} +.m-b-243 {margin-bottom: 243px;} +.m-b-244 {margin-bottom: 244px;} +.m-b-245 {margin-bottom: 245px;} +.m-b-246 {margin-bottom: 246px;} +.m-b-247 {margin-bottom: 247px;} +.m-b-248 {margin-bottom: 248px;} +.m-b-249 {margin-bottom: 249px;} +.m-b-250 {margin-bottom: 250px;} +.m-l-0 {margin-left: 0px;} +.m-l-1 {margin-left: 1px;} +.m-l-2 {margin-left: 2px;} +.m-l-3 {margin-left: 3px;} +.m-l-4 {margin-left: 4px;} +.m-l-5 {margin-left: 5px;} +.m-l-6 {margin-left: 6px;} +.m-l-7 {margin-left: 7px;} +.m-l-8 {margin-left: 8px;} +.m-l-9 {margin-left: 9px;} +.m-l-10 {margin-left: 10px;} +.m-l-11 {margin-left: 11px;} +.m-l-12 {margin-left: 12px;} +.m-l-13 {margin-left: 13px;} +.m-l-14 {margin-left: 14px;} +.m-l-15 {margin-left: 15px;} +.m-l-16 {margin-left: 16px;} +.m-l-17 {margin-left: 17px;} +.m-l-18 {margin-left: 18px;} +.m-l-19 {margin-left: 19px;} +.m-l-20 {margin-left: 20px;} +.m-l-21 {margin-left: 21px;} +.m-l-22 {margin-left: 22px;} +.m-l-23 {margin-left: 23px;} +.m-l-24 {margin-left: 24px;} +.m-l-25 {margin-left: 25px;} +.m-l-26 {margin-left: 26px;} +.m-l-27 {margin-left: 27px;} +.m-l-28 {margin-left: 28px;} +.m-l-29 {margin-left: 29px;} +.m-l-30 {margin-left: 30px;} +.m-l-31 {margin-left: 31px;} +.m-l-32 {margin-left: 32px;} +.m-l-33 {margin-left: 33px;} +.m-l-34 {margin-left: 34px;} +.m-l-35 {margin-left: 35px;} +.m-l-36 {margin-left: 36px;} +.m-l-37 {margin-left: 37px;} +.m-l-38 {margin-left: 38px;} +.m-l-39 {margin-left: 39px;} +.m-l-40 {margin-left: 40px;} +.m-l-41 {margin-left: 41px;} +.m-l-42 {margin-left: 42px;} +.m-l-43 {margin-left: 43px;} +.m-l-44 {margin-left: 44px;} +.m-l-45 {margin-left: 45px;} +.m-l-46 {margin-left: 46px;} +.m-l-47 {margin-left: 47px;} +.m-l-48 {margin-left: 48px;} +.m-l-49 {margin-left: 49px;} +.m-l-50 {margin-left: 50px;} +.m-l-51 {margin-left: 51px;} +.m-l-52 {margin-left: 52px;} +.m-l-53 {margin-left: 53px;} +.m-l-54 {margin-left: 54px;} +.m-l-55 {margin-left: 55px;} +.m-l-56 {margin-left: 56px;} +.m-l-57 {margin-left: 57px;} +.m-l-58 {margin-left: 58px;} +.m-l-59 {margin-left: 59px;} +.m-l-60 {margin-left: 60px;} +.m-l-61 {margin-left: 61px;} +.m-l-62 {margin-left: 62px;} +.m-l-63 {margin-left: 63px;} +.m-l-64 {margin-left: 64px;} +.m-l-65 {margin-left: 65px;} +.m-l-66 {margin-left: 66px;} +.m-l-67 {margin-left: 67px;} +.m-l-68 {margin-left: 68px;} +.m-l-69 {margin-left: 69px;} +.m-l-70 {margin-left: 70px;} +.m-l-71 {margin-left: 71px;} +.m-l-72 {margin-left: 72px;} +.m-l-73 {margin-left: 73px;} +.m-l-74 {margin-left: 74px;} +.m-l-75 {margin-left: 75px;} +.m-l-76 {margin-left: 76px;} +.m-l-77 {margin-left: 77px;} +.m-l-78 {margin-left: 78px;} +.m-l-79 {margin-left: 79px;} +.m-l-80 {margin-left: 80px;} +.m-l-81 {margin-left: 81px;} +.m-l-82 {margin-left: 82px;} +.m-l-83 {margin-left: 83px;} +.m-l-84 {margin-left: 84px;} +.m-l-85 {margin-left: 85px;} +.m-l-86 {margin-left: 86px;} +.m-l-87 {margin-left: 87px;} +.m-l-88 {margin-left: 88px;} +.m-l-89 {margin-left: 89px;} +.m-l-90 {margin-left: 90px;} +.m-l-91 {margin-left: 91px;} +.m-l-92 {margin-left: 92px;} +.m-l-93 {margin-left: 93px;} +.m-l-94 {margin-left: 94px;} +.m-l-95 {margin-left: 95px;} +.m-l-96 {margin-left: 96px;} +.m-l-97 {margin-left: 97px;} +.m-l-98 {margin-left: 98px;} +.m-l-99 {margin-left: 99px;} +.m-l-100 {margin-left: 100px;} +.m-l-101 {margin-left: 101px;} +.m-l-102 {margin-left: 102px;} +.m-l-103 {margin-left: 103px;} +.m-l-104 {margin-left: 104px;} +.m-l-105 {margin-left: 105px;} +.m-l-106 {margin-left: 106px;} +.m-l-107 {margin-left: 107px;} +.m-l-108 {margin-left: 108px;} +.m-l-109 {margin-left: 109px;} +.m-l-110 {margin-left: 110px;} +.m-l-111 {margin-left: 111px;} +.m-l-112 {margin-left: 112px;} +.m-l-113 {margin-left: 113px;} +.m-l-114 {margin-left: 114px;} +.m-l-115 {margin-left: 115px;} +.m-l-116 {margin-left: 116px;} +.m-l-117 {margin-left: 117px;} +.m-l-118 {margin-left: 118px;} +.m-l-119 {margin-left: 119px;} +.m-l-120 {margin-left: 120px;} +.m-l-121 {margin-left: 121px;} +.m-l-122 {margin-left: 122px;} +.m-l-123 {margin-left: 123px;} +.m-l-124 {margin-left: 124px;} +.m-l-125 {margin-left: 125px;} +.m-l-126 {margin-left: 126px;} +.m-l-127 {margin-left: 127px;} +.m-l-128 {margin-left: 128px;} +.m-l-129 {margin-left: 129px;} +.m-l-130 {margin-left: 130px;} +.m-l-131 {margin-left: 131px;} +.m-l-132 {margin-left: 132px;} +.m-l-133 {margin-left: 133px;} +.m-l-134 {margin-left: 134px;} +.m-l-135 {margin-left: 135px;} +.m-l-136 {margin-left: 136px;} +.m-l-137 {margin-left: 137px;} +.m-l-138 {margin-left: 138px;} +.m-l-139 {margin-left: 139px;} +.m-l-140 {margin-left: 140px;} +.m-l-141 {margin-left: 141px;} +.m-l-142 {margin-left: 142px;} +.m-l-143 {margin-left: 143px;} +.m-l-144 {margin-left: 144px;} +.m-l-145 {margin-left: 145px;} +.m-l-146 {margin-left: 146px;} +.m-l-147 {margin-left: 147px;} +.m-l-148 {margin-left: 148px;} +.m-l-149 {margin-left: 149px;} +.m-l-150 {margin-left: 150px;} +.m-l-151 {margin-left: 151px;} +.m-l-152 {margin-left: 152px;} +.m-l-153 {margin-left: 153px;} +.m-l-154 {margin-left: 154px;} +.m-l-155 {margin-left: 155px;} +.m-l-156 {margin-left: 156px;} +.m-l-157 {margin-left: 157px;} +.m-l-158 {margin-left: 158px;} +.m-l-159 {margin-left: 159px;} +.m-l-160 {margin-left: 160px;} +.m-l-161 {margin-left: 161px;} +.m-l-162 {margin-left: 162px;} +.m-l-163 {margin-left: 163px;} +.m-l-164 {margin-left: 164px;} +.m-l-165 {margin-left: 165px;} +.m-l-166 {margin-left: 166px;} +.m-l-167 {margin-left: 167px;} +.m-l-168 {margin-left: 168px;} +.m-l-169 {margin-left: 169px;} +.m-l-170 {margin-left: 170px;} +.m-l-171 {margin-left: 171px;} +.m-l-172 {margin-left: 172px;} +.m-l-173 {margin-left: 173px;} +.m-l-174 {margin-left: 174px;} +.m-l-175 {margin-left: 175px;} +.m-l-176 {margin-left: 176px;} +.m-l-177 {margin-left: 177px;} +.m-l-178 {margin-left: 178px;} +.m-l-179 {margin-left: 179px;} +.m-l-180 {margin-left: 180px;} +.m-l-181 {margin-left: 181px;} +.m-l-182 {margin-left: 182px;} +.m-l-183 {margin-left: 183px;} +.m-l-184 {margin-left: 184px;} +.m-l-185 {margin-left: 185px;} +.m-l-186 {margin-left: 186px;} +.m-l-187 {margin-left: 187px;} +.m-l-188 {margin-left: 188px;} +.m-l-189 {margin-left: 189px;} +.m-l-190 {margin-left: 190px;} +.m-l-191 {margin-left: 191px;} +.m-l-192 {margin-left: 192px;} +.m-l-193 {margin-left: 193px;} +.m-l-194 {margin-left: 194px;} +.m-l-195 {margin-left: 195px;} +.m-l-196 {margin-left: 196px;} +.m-l-197 {margin-left: 197px;} +.m-l-198 {margin-left: 198px;} +.m-l-199 {margin-left: 199px;} +.m-l-200 {margin-left: 200px;} +.m-l-201 {margin-left: 201px;} +.m-l-202 {margin-left: 202px;} +.m-l-203 {margin-left: 203px;} +.m-l-204 {margin-left: 204px;} +.m-l-205 {margin-left: 205px;} +.m-l-206 {margin-left: 206px;} +.m-l-207 {margin-left: 207px;} +.m-l-208 {margin-left: 208px;} +.m-l-209 {margin-left: 209px;} +.m-l-210 {margin-left: 210px;} +.m-l-211 {margin-left: 211px;} +.m-l-212 {margin-left: 212px;} +.m-l-213 {margin-left: 213px;} +.m-l-214 {margin-left: 214px;} +.m-l-215 {margin-left: 215px;} +.m-l-216 {margin-left: 216px;} +.m-l-217 {margin-left: 217px;} +.m-l-218 {margin-left: 218px;} +.m-l-219 {margin-left: 219px;} +.m-l-220 {margin-left: 220px;} +.m-l-221 {margin-left: 221px;} +.m-l-222 {margin-left: 222px;} +.m-l-223 {margin-left: 223px;} +.m-l-224 {margin-left: 224px;} +.m-l-225 {margin-left: 225px;} +.m-l-226 {margin-left: 226px;} +.m-l-227 {margin-left: 227px;} +.m-l-228 {margin-left: 228px;} +.m-l-229 {margin-left: 229px;} +.m-l-230 {margin-left: 230px;} +.m-l-231 {margin-left: 231px;} +.m-l-232 {margin-left: 232px;} +.m-l-233 {margin-left: 233px;} +.m-l-234 {margin-left: 234px;} +.m-l-235 {margin-left: 235px;} +.m-l-236 {margin-left: 236px;} +.m-l-237 {margin-left: 237px;} +.m-l-238 {margin-left: 238px;} +.m-l-239 {margin-left: 239px;} +.m-l-240 {margin-left: 240px;} +.m-l-241 {margin-left: 241px;} +.m-l-242 {margin-left: 242px;} +.m-l-243 {margin-left: 243px;} +.m-l-244 {margin-left: 244px;} +.m-l-245 {margin-left: 245px;} +.m-l-246 {margin-left: 246px;} +.m-l-247 {margin-left: 247px;} +.m-l-248 {margin-left: 248px;} +.m-l-249 {margin-left: 249px;} +.m-l-250 {margin-left: 250px;} +.m-r-0 {margin-right: 0px;} +.m-r-1 {margin-right: 1px;} +.m-r-2 {margin-right: 2px;} +.m-r-3 {margin-right: 3px;} +.m-r-4 {margin-right: 4px;} +.m-r-5 {margin-right: 5px;} +.m-r-6 {margin-right: 6px;} +.m-r-7 {margin-right: 7px;} +.m-r-8 {margin-right: 8px;} +.m-r-9 {margin-right: 9px;} +.m-r-10 {margin-right: 10px;} +.m-r-11 {margin-right: 11px;} +.m-r-12 {margin-right: 12px;} +.m-r-13 {margin-right: 13px;} +.m-r-14 {margin-right: 14px;} +.m-r-15 {margin-right: 15px;} +.m-r-16 {margin-right: 16px;} +.m-r-17 {margin-right: 17px;} +.m-r-18 {margin-right: 18px;} +.m-r-19 {margin-right: 19px;} +.m-r-20 {margin-right: 20px;} +.m-r-21 {margin-right: 21px;} +.m-r-22 {margin-right: 22px;} +.m-r-23 {margin-right: 23px;} +.m-r-24 {margin-right: 24px;} +.m-r-25 {margin-right: 25px;} +.m-r-26 {margin-right: 26px;} +.m-r-27 {margin-right: 27px;} +.m-r-28 {margin-right: 28px;} +.m-r-29 {margin-right: 29px;} +.m-r-30 {margin-right: 30px;} +.m-r-31 {margin-right: 31px;} +.m-r-32 {margin-right: 32px;} +.m-r-33 {margin-right: 33px;} +.m-r-34 {margin-right: 34px;} +.m-r-35 {margin-right: 35px;} +.m-r-36 {margin-right: 36px;} +.m-r-37 {margin-right: 37px;} +.m-r-38 {margin-right: 38px;} +.m-r-39 {margin-right: 39px;} +.m-r-40 {margin-right: 40px;} +.m-r-41 {margin-right: 41px;} +.m-r-42 {margin-right: 42px;} +.m-r-43 {margin-right: 43px;} +.m-r-44 {margin-right: 44px;} +.m-r-45 {margin-right: 45px;} +.m-r-46 {margin-right: 46px;} +.m-r-47 {margin-right: 47px;} +.m-r-48 {margin-right: 48px;} +.m-r-49 {margin-right: 49px;} +.m-r-50 {margin-right: 50px;} +.m-r-51 {margin-right: 51px;} +.m-r-52 {margin-right: 52px;} +.m-r-53 {margin-right: 53px;} +.m-r-54 {margin-right: 54px;} +.m-r-55 {margin-right: 55px;} +.m-r-56 {margin-right: 56px;} +.m-r-57 {margin-right: 57px;} +.m-r-58 {margin-right: 58px;} +.m-r-59 {margin-right: 59px;} +.m-r-60 {margin-right: 60px;} +.m-r-61 {margin-right: 61px;} +.m-r-62 {margin-right: 62px;} +.m-r-63 {margin-right: 63px;} +.m-r-64 {margin-right: 64px;} +.m-r-65 {margin-right: 65px;} +.m-r-66 {margin-right: 66px;} +.m-r-67 {margin-right: 67px;} +.m-r-68 {margin-right: 68px;} +.m-r-69 {margin-right: 69px;} +.m-r-70 {margin-right: 70px;} +.m-r-71 {margin-right: 71px;} +.m-r-72 {margin-right: 72px;} +.m-r-73 {margin-right: 73px;} +.m-r-74 {margin-right: 74px;} +.m-r-75 {margin-right: 75px;} +.m-r-76 {margin-right: 76px;} +.m-r-77 {margin-right: 77px;} +.m-r-78 {margin-right: 78px;} +.m-r-79 {margin-right: 79px;} +.m-r-80 {margin-right: 80px;} +.m-r-81 {margin-right: 81px;} +.m-r-82 {margin-right: 82px;} +.m-r-83 {margin-right: 83px;} +.m-r-84 {margin-right: 84px;} +.m-r-85 {margin-right: 85px;} +.m-r-86 {margin-right: 86px;} +.m-r-87 {margin-right: 87px;} +.m-r-88 {margin-right: 88px;} +.m-r-89 {margin-right: 89px;} +.m-r-90 {margin-right: 90px;} +.m-r-91 {margin-right: 91px;} +.m-r-92 {margin-right: 92px;} +.m-r-93 {margin-right: 93px;} +.m-r-94 {margin-right: 94px;} +.m-r-95 {margin-right: 95px;} +.m-r-96 {margin-right: 96px;} +.m-r-97 {margin-right: 97px;} +.m-r-98 {margin-right: 98px;} +.m-r-99 {margin-right: 99px;} +.m-r-100 {margin-right: 100px;} +.m-r-101 {margin-right: 101px;} +.m-r-102 {margin-right: 102px;} +.m-r-103 {margin-right: 103px;} +.m-r-104 {margin-right: 104px;} +.m-r-105 {margin-right: 105px;} +.m-r-106 {margin-right: 106px;} +.m-r-107 {margin-right: 107px;} +.m-r-108 {margin-right: 108px;} +.m-r-109 {margin-right: 109px;} +.m-r-110 {margin-right: 110px;} +.m-r-111 {margin-right: 111px;} +.m-r-112 {margin-right: 112px;} +.m-r-113 {margin-right: 113px;} +.m-r-114 {margin-right: 114px;} +.m-r-115 {margin-right: 115px;} +.m-r-116 {margin-right: 116px;} +.m-r-117 {margin-right: 117px;} +.m-r-118 {margin-right: 118px;} +.m-r-119 {margin-right: 119px;} +.m-r-120 {margin-right: 120px;} +.m-r-121 {margin-right: 121px;} +.m-r-122 {margin-right: 122px;} +.m-r-123 {margin-right: 123px;} +.m-r-124 {margin-right: 124px;} +.m-r-125 {margin-right: 125px;} +.m-r-126 {margin-right: 126px;} +.m-r-127 {margin-right: 127px;} +.m-r-128 {margin-right: 128px;} +.m-r-129 {margin-right: 129px;} +.m-r-130 {margin-right: 130px;} +.m-r-131 {margin-right: 131px;} +.m-r-132 {margin-right: 132px;} +.m-r-133 {margin-right: 133px;} +.m-r-134 {margin-right: 134px;} +.m-r-135 {margin-right: 135px;} +.m-r-136 {margin-right: 136px;} +.m-r-137 {margin-right: 137px;} +.m-r-138 {margin-right: 138px;} +.m-r-139 {margin-right: 139px;} +.m-r-140 {margin-right: 140px;} +.m-r-141 {margin-right: 141px;} +.m-r-142 {margin-right: 142px;} +.m-r-143 {margin-right: 143px;} +.m-r-144 {margin-right: 144px;} +.m-r-145 {margin-right: 145px;} +.m-r-146 {margin-right: 146px;} +.m-r-147 {margin-right: 147px;} +.m-r-148 {margin-right: 148px;} +.m-r-149 {margin-right: 149px;} +.m-r-150 {margin-right: 150px;} +.m-r-151 {margin-right: 151px;} +.m-r-152 {margin-right: 152px;} +.m-r-153 {margin-right: 153px;} +.m-r-154 {margin-right: 154px;} +.m-r-155 {margin-right: 155px;} +.m-r-156 {margin-right: 156px;} +.m-r-157 {margin-right: 157px;} +.m-r-158 {margin-right: 158px;} +.m-r-159 {margin-right: 159px;} +.m-r-160 {margin-right: 160px;} +.m-r-161 {margin-right: 161px;} +.m-r-162 {margin-right: 162px;} +.m-r-163 {margin-right: 163px;} +.m-r-164 {margin-right: 164px;} +.m-r-165 {margin-right: 165px;} +.m-r-166 {margin-right: 166px;} +.m-r-167 {margin-right: 167px;} +.m-r-168 {margin-right: 168px;} +.m-r-169 {margin-right: 169px;} +.m-r-170 {margin-right: 170px;} +.m-r-171 {margin-right: 171px;} +.m-r-172 {margin-right: 172px;} +.m-r-173 {margin-right: 173px;} +.m-r-174 {margin-right: 174px;} +.m-r-175 {margin-right: 175px;} +.m-r-176 {margin-right: 176px;} +.m-r-177 {margin-right: 177px;} +.m-r-178 {margin-right: 178px;} +.m-r-179 {margin-right: 179px;} +.m-r-180 {margin-right: 180px;} +.m-r-181 {margin-right: 181px;} +.m-r-182 {margin-right: 182px;} +.m-r-183 {margin-right: 183px;} +.m-r-184 {margin-right: 184px;} +.m-r-185 {margin-right: 185px;} +.m-r-186 {margin-right: 186px;} +.m-r-187 {margin-right: 187px;} +.m-r-188 {margin-right: 188px;} +.m-r-189 {margin-right: 189px;} +.m-r-190 {margin-right: 190px;} +.m-r-191 {margin-right: 191px;} +.m-r-192 {margin-right: 192px;} +.m-r-193 {margin-right: 193px;} +.m-r-194 {margin-right: 194px;} +.m-r-195 {margin-right: 195px;} +.m-r-196 {margin-right: 196px;} +.m-r-197 {margin-right: 197px;} +.m-r-198 {margin-right: 198px;} +.m-r-199 {margin-right: 199px;} +.m-r-200 {margin-right: 200px;} +.m-r-201 {margin-right: 201px;} +.m-r-202 {margin-right: 202px;} +.m-r-203 {margin-right: 203px;} +.m-r-204 {margin-right: 204px;} +.m-r-205 {margin-right: 205px;} +.m-r-206 {margin-right: 206px;} +.m-r-207 {margin-right: 207px;} +.m-r-208 {margin-right: 208px;} +.m-r-209 {margin-right: 209px;} +.m-r-210 {margin-right: 210px;} +.m-r-211 {margin-right: 211px;} +.m-r-212 {margin-right: 212px;} +.m-r-213 {margin-right: 213px;} +.m-r-214 {margin-right: 214px;} +.m-r-215 {margin-right: 215px;} +.m-r-216 {margin-right: 216px;} +.m-r-217 {margin-right: 217px;} +.m-r-218 {margin-right: 218px;} +.m-r-219 {margin-right: 219px;} +.m-r-220 {margin-right: 220px;} +.m-r-221 {margin-right: 221px;} +.m-r-222 {margin-right: 222px;} +.m-r-223 {margin-right: 223px;} +.m-r-224 {margin-right: 224px;} +.m-r-225 {margin-right: 225px;} +.m-r-226 {margin-right: 226px;} +.m-r-227 {margin-right: 227px;} +.m-r-228 {margin-right: 228px;} +.m-r-229 {margin-right: 229px;} +.m-r-230 {margin-right: 230px;} +.m-r-231 {margin-right: 231px;} +.m-r-232 {margin-right: 232px;} +.m-r-233 {margin-right: 233px;} +.m-r-234 {margin-right: 234px;} +.m-r-235 {margin-right: 235px;} +.m-r-236 {margin-right: 236px;} +.m-r-237 {margin-right: 237px;} +.m-r-238 {margin-right: 238px;} +.m-r-239 {margin-right: 239px;} +.m-r-240 {margin-right: 240px;} +.m-r-241 {margin-right: 241px;} +.m-r-242 {margin-right: 242px;} +.m-r-243 {margin-right: 243px;} +.m-r-244 {margin-right: 244px;} +.m-r-245 {margin-right: 245px;} +.m-r-246 {margin-right: 246px;} +.m-r-247 {margin-right: 247px;} +.m-r-248 {margin-right: 248px;} +.m-r-249 {margin-right: 249px;} +.m-r-250 {margin-right: 250px;} +.m-l-r-auto {margin-left: auto; margin-right: auto;} +.m-l-auto {margin-left: auto;} +.m-r-auto {margin-right: auto;} + + + +/*[ TEXT ] +/////////////////////////////////////////////////////////// +*/ +/* ------------------------------------ */ +.text-white {color: white;} +.text-black {color: black;} + +.text-hov-white:hover {color: white;} + +/* ------------------------------------ */ +.text-up {text-transform: uppercase;} + +/* ------------------------------------ */ +.text-center {text-align: center;} +.text-left {text-align: left;} +.text-right {text-align: right;} +.text-middle {vertical-align: middle;} + +/* ------------------------------------ */ +.lh-1-0 {line-height: 1.0;} +.lh-1-1 {line-height: 1.1;} +.lh-1-2 {line-height: 1.2;} +.lh-1-3 {line-height: 1.3;} +.lh-1-4 {line-height: 1.4;} +.lh-1-5 {line-height: 1.5;} +.lh-1-6 {line-height: 1.6;} +.lh-1-7 {line-height: 1.7;} +.lh-1-8 {line-height: 1.8;} +.lh-1-9 {line-height: 1.9;} +.lh-2-0 {line-height: 2.0;} +.lh-2-1 {line-height: 2.1;} +.lh-2-2 {line-height: 2.2;} +.lh-2-3 {line-height: 2.3;} +.lh-2-4 {line-height: 2.4;} +.lh-2-5 {line-height: 2.5;} +.lh-2-6 {line-height: 2.6;} +.lh-2-7 {line-height: 2.7;} +.lh-2-8 {line-height: 2.8;} +.lh-2-9 {line-height: 2.9;} + + + + + +/*[ SHAPE ] +/////////////////////////////////////////////////////////// +*/ + +/*[ Display ] +----------------------------------------------------------- +*/ +.dis-none {display: none;} +.dis-block {display: block;} +.dis-inline {display: inline;} +.dis-inline-block {display: inline-block;} +.dis-flex { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; +} + +/*[ Position ] +----------------------------------------------------------- +*/ +.pos-relative {position: relative;} +.pos-absolute {position: absolute;} +.pos-fixed {position: fixed;} + +/*[ float ] +----------------------------------------------------------- +*/ +.float-l {float: left;} +.float-r {float: right;} + + +/*[ Width & Height ] +----------------------------------------------------------- +*/ +.sizefull { + width: 100%; + height: 100%; +} +.w-full {width: 100%;} +.h-full {height: 100%;} +.max-w-full {max-width: 100%;} +.max-h-full {max-height: 100%;} +.min-w-full {min-width: 100%;} +.min-h-full {min-height: 100%;} + +/*[ Top Bottom Left Right ] +----------------------------------------------------------- +*/ +.top-0 {top: 0;} +.bottom-0 {bottom: 0;} +.left-0 {left: 0;} +.right-0 {right: 0;} + +.top-auto {top: auto;} +.bottom-auto {bottom: auto;} +.left-auto {left: auto;} +.right-auto {right: auto;} + + +/*[ Opacity ] +----------------------------------------------------------- +*/ +.op-0-0 {opacity: 0;} +.op-0-1 {opacity: 0.1;} +.op-0-2 {opacity: 0.2;} +.op-0-3 {opacity: 0.3;} +.op-0-4 {opacity: 0.4;} +.op-0-5 {opacity: 0.5;} +.op-0-6 {opacity: 0.6;} +.op-0-7 {opacity: 0.7;} +.op-0-8 {opacity: 0.8;} +.op-0-9 {opacity: 0.9;} +.op-1-0 {opacity: 1;} + +/*[ Background ] +----------------------------------------------------------- +*/ +.bgwhite {background-color: white;} +.bgblack {background-color: black;} + + + +/*[ Wrap Picture ] +----------------------------------------------------------- +*/ +.wrap-pic-w img {width: 100%;} +.wrap-pic-max-w img {max-width: 100%;} + +/* ------------------------------------ */ +.wrap-pic-h img {height: 100%;} +.wrap-pic-max-h img {max-height: 100%;} + +/* ------------------------------------ */ +.wrap-pic-cir { + border-radius: 50%; + overflow: hidden; +} +.wrap-pic-cir img { + width: 100%; +} + + + +/*[ Hover ] +----------------------------------------------------------- +*/ +.hov-pointer:hover {cursor: pointer;} + +/* ------------------------------------ */ +.hov-img-zoom { + display: block; + overflow: hidden; +} +.hov-img-zoom img{ + width: 100%; + -webkit-transition: all 0.6s; + -o-transition: all 0.6s; + -moz-transition: all 0.6s; + transition: all 0.6s; +} +.hov-img-zoom:hover img { + -webkit-transform: scale(1.1); + -moz-transform: scale(1.1); + -ms-transform: scale(1.1); + -o-transform: scale(1.1); + transform: scale(1.1); +} + + + +/*[ ] +----------------------------------------------------------- +*/ +.bo-cir {border-radius: 50%;} + +.of-hidden {overflow: hidden;} + +.visible-false {visibility: hidden;} +.visible-true {visibility: visible;} + + + + +/*[ Transition ] +----------------------------------------------------------- +*/ +.trans-0-1 { + -webkit-transition: all 0.1s; + -o-transition: all 0.1s; + -moz-transition: all 0.1s; + transition: all 0.1s; +} +.trans-0-2 { + -webkit-transition: all 0.2s; + -o-transition: all 0.2s; + -moz-transition: all 0.2s; + transition: all 0.2s; +} +.trans-0-3 { + -webkit-transition: all 0.3s; + -o-transition: all 0.3s; + -moz-transition: all 0.3s; + transition: all 0.3s; +} +.trans-0-4 { + -webkit-transition: all 0.4s; + -o-transition: all 0.4s; + -moz-transition: all 0.4s; + transition: all 0.4s; +} +.trans-0-5 { + -webkit-transition: all 0.5s; + -o-transition: all 0.5s; + -moz-transition: all 0.5s; + transition: all 0.5s; +} +.trans-0-6 { + -webkit-transition: all 0.6s; + -o-transition: all 0.6s; + -moz-transition: all 0.6s; + transition: all 0.6s; +} +.trans-0-9 { + -webkit-transition: all 0.9s; + -o-transition: all 0.9s; + -moz-transition: all 0.9s; + transition: all 0.9s; +} +.trans-1-0 { + -webkit-transition: all 1s; + -o-transition: all 1s; + -moz-transition: all 1s; + transition: all 1s; +} + + + +/*[ Layout ] +/////////////////////////////////////////////////////////// +*/ + +/*[ Flex ] +----------------------------------------------------------- +*/ +/* ------------------------------------ */ +.flex-w { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-wrap: wrap; + -moz-flex-wrap: wrap; + -ms-flex-wrap: wrap; + -o-flex-wrap: wrap; + flex-wrap: wrap; +} + +/* ------------------------------------ */ +.flex-l { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: flex-start; +} + +.flex-r { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: flex-end; +} + +.flex-c { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: center; +} + +.flex-sa { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: space-around; +} + +.flex-sb { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: space-between; +} + +/* ------------------------------------ */ +.flex-t { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -ms-align-items: flex-start; + align-items: flex-start; +} + +.flex-b { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -ms-align-items: flex-end; + align-items: flex-end; +} + +.flex-m { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -ms-align-items: center; + align-items: center; +} + +.flex-str { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -ms-align-items: stretch; + align-items: stretch; +} + +/* ------------------------------------ */ +.flex-row { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: row; + -moz-flex-direction: row; + -ms-flex-direction: row; + -o-flex-direction: row; + flex-direction: row; +} + +.flex-row-rev { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: row-reverse; + -moz-flex-direction: row-reverse; + -ms-flex-direction: row-reverse; + -o-flex-direction: row-reverse; + flex-direction: row-reverse; +} + +.flex-col { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -moz-flex-direction: column; + -ms-flex-direction: column; + -o-flex-direction: column; + flex-direction: column; +} + +.flex-col-rev { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column-reverse; + -moz-flex-direction: column-reverse; + -ms-flex-direction: column-reverse; + -o-flex-direction: column-reverse; + flex-direction: column-reverse; +} + +/* ------------------------------------ */ +.flex-c-m { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: center; + -ms-align-items: center; + align-items: center; +} + +.flex-c-t { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: center; + -ms-align-items: flex-start; + align-items: flex-start; +} + +.flex-c-b { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: center; + -ms-align-items: flex-end; + align-items: flex-end; +} + +.flex-c-str { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: center; + -ms-align-items: stretch; + align-items: stretch; +} + +.flex-l-m { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: flex-start; + -ms-align-items: center; + align-items: center; +} + +.flex-r-m { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: flex-end; + -ms-align-items: center; + align-items: center; +} + +.flex-sa-m { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: space-around; + -ms-align-items: center; + align-items: center; +} + +.flex-sb-m { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + justify-content: space-between; + -ms-align-items: center; + align-items: center; +} + +/* ------------------------------------ */ +.flex-col-l { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -moz-flex-direction: column; + -ms-flex-direction: column; + -o-flex-direction: column; + flex-direction: column; + -ms-align-items: flex-start; + align-items: flex-start; +} + +.flex-col-r { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -moz-flex-direction: column; + -ms-flex-direction: column; + -o-flex-direction: column; + flex-direction: column; + -ms-align-items: flex-end; + align-items: flex-end; +} + +.flex-col-c { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -moz-flex-direction: column; + -ms-flex-direction: column; + -o-flex-direction: column; + flex-direction: column; + -ms-align-items: center; + align-items: center; +} + +.flex-col-l-m { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -moz-flex-direction: column; + -ms-flex-direction: column; + -o-flex-direction: column; + flex-direction: column; + -ms-align-items: flex-start; + align-items: flex-start; + justify-content: center; +} + +.flex-col-r-m { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -moz-flex-direction: column; + -ms-flex-direction: column; + -o-flex-direction: column; + flex-direction: column; + -ms-align-items: flex-end; + align-items: flex-end; + justify-content: center; +} + +.flex-col-c-m { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -moz-flex-direction: column; + -ms-flex-direction: column; + -o-flex-direction: column; + flex-direction: column; + -ms-align-items: center; + align-items: center; + justify-content: center; +} + +.flex-col-str { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -moz-flex-direction: column; + -ms-flex-direction: column; + -o-flex-direction: column; + flex-direction: column; + -ms-align-items: stretch; + align-items: stretch; +} + +.flex-col-sb { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -moz-flex-direction: column; + -ms-flex-direction: column; + -o-flex-direction: column; + flex-direction: column; + justify-content: space-between; +} + +/* ------------------------------------ */ +.flex-col-rev-l { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column-reverse; + -moz-flex-direction: column-reverse; + -ms-flex-direction: column-reverse; + -o-flex-direction: column-reverse; + flex-direction: column-reverse; + -ms-align-items: flex-start; + align-items: flex-start; +} + +.flex-col-rev-r { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column-reverse; + -moz-flex-direction: column-reverse; + -ms-flex-direction: column-reverse; + -o-flex-direction: column-reverse; + flex-direction: column-reverse; + -ms-align-items: flex-end; + align-items: flex-end; +} + +.flex-col-rev-c { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column-reverse; + -moz-flex-direction: column-reverse; + -ms-flex-direction: column-reverse; + -o-flex-direction: column-reverse; + flex-direction: column-reverse; + -ms-align-items: center; + align-items: center; +} + +.flex-col-rev-str { + display: -webkit-box; + display: -webkit-flex; + display: -moz-box; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column-reverse; + -moz-flex-direction: column-reverse; + -ms-flex-direction: column-reverse; + -o-flex-direction: column-reverse; + flex-direction: column-reverse; + -ms-align-items: stretch; + align-items: stretch; +} + + +/*[ Absolute ] +----------------------------------------------------------- +*/ +.ab-c-m { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + -moz-transform: translate(-50%, -50%); + -ms-transform: translate(-50%, -50%); + -o-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} + +.ab-c-t { + position: absolute; + top: 0px; + left: 50%; + -webkit-transform: translateX(-50%); + -moz-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.ab-c-b { + position: absolute; + bottom: 0px; + left: 50%; + -webkit-transform: translateX(-50%); + -moz-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.ab-l-m { + position: absolute; + left: 0px; + top: 50%; + -webkit-transform: translateY(-50%); + -moz-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); +} + +.ab-r-m { + position: absolute; + right: 0px; + top: 50%; + -webkit-transform: translateY(-50%); + -moz-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); +} + +.ab-t-l { + position: absolute; + left: 0px; + top: 0px; +} + +.ab-t-r { + position: absolute; + right: 0px; + top: 0px; +} + +.ab-b-l { + position: absolute; + left: 0px; + bottom: 0px; +} + +.ab-b-r { + position: absolute; + right: 0px; + bottom: 0px; +} + + + + diff --git a/webapp/static/data.csv b/webapp/static/data.csv new file mode 120000 index 0000000..7771620 --- /dev/null +++ b/webapp/static/data.csv @@ -0,0 +1 @@ +../../arbitrage_data.csv \ No newline at end of file diff --git a/webapp/static/fonts/OpenSans/OpenSans-Bold.ttf b/webapp/static/fonts/OpenSans/OpenSans-Bold.ttf new file mode 100755 index 0000000..7b52945 Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-Bold.ttf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-BoldItalic.ttf b/webapp/static/fonts/OpenSans/OpenSans-BoldItalic.ttf new file mode 100755 index 0000000..a670e14 Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-BoldItalic.ttf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-ExtraBold.ttf b/webapp/static/fonts/OpenSans/OpenSans-ExtraBold.ttf new file mode 100755 index 0000000..3660681 Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-ExtraBold.ttf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf b/webapp/static/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf new file mode 100755 index 0000000..8c4c15d Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-Italic.ttf b/webapp/static/fonts/OpenSans/OpenSans-Italic.ttf new file mode 100755 index 0000000..e6c5414 Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-Italic.ttf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-Light.ttf b/webapp/static/fonts/OpenSans/OpenSans-Light.ttf new file mode 100755 index 0000000..563872c Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-Light.ttf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-LightItalic.ttf b/webapp/static/fonts/OpenSans/OpenSans-LightItalic.ttf new file mode 100755 index 0000000..5ebe2a2 Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-LightItalic.ttf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-Regular.otf b/webapp/static/fonts/OpenSans/OpenSans-Regular.otf new file mode 100755 index 0000000..d84c97e Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-Regular.otf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-Regular.ttf b/webapp/static/fonts/OpenSans/OpenSans-Regular.ttf new file mode 100755 index 0000000..2e31d02 Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-Regular.ttf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-SemiBold.ttf b/webapp/static/fonts/OpenSans/OpenSans-SemiBold.ttf new file mode 100755 index 0000000..99db86a Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-SemiBold.ttf differ diff --git a/webapp/static/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf b/webapp/static/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf new file mode 100755 index 0000000..8cad4e3 Binary files /dev/null and b/webapp/static/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf differ diff --git a/webapp/static/fonts/font-awesome-4.7.0/HELP-US-OUT.txt b/webapp/static/fonts/font-awesome-4.7.0/HELP-US-OUT.txt new file mode 100755 index 0000000..83d083d --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/HELP-US-OUT.txt @@ -0,0 +1,7 @@ +I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, +Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, +comprehensive icon sets or copy and paste your own. + +Please. Check it out. + +-Dave Gandy diff --git a/webapp/static/fonts/font-awesome-4.7.0/css/font-awesome.css b/webapp/static/fonts/font-awesome-4.7.0/css/font-awesome.css new file mode 100755 index 0000000..ee906a8 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/css/font-awesome.css @@ -0,0 +1,2337 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal; +} +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.fa-2x { + font-size: 2em; +} +.fa-3x { + font-size: 3em; +} +.fa-4x { + font-size: 4em; +} +.fa-5x { + font-size: 5em; +} +.fa-fw { + width: 1.28571429em; + text-align: center; +} +.fa-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none; +} +.fa-ul > li { + position: relative; +} +.fa-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: 0.14285714em; + text-align: center; +} +.fa-li.fa-lg { + left: -1.85714286em; +} +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} +.fa-pull-left { + float: left; +} +.fa-pull-right { + float: right; +} +.fa.fa-pull-left { + margin-right: .3em; +} +.fa.fa-pull-right { + margin-left: .3em; +} +/* Deprecated as of 4.4.0 */ +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.fa.pull-left { + margin-right: .3em; +} +.fa.pull-right { + margin-left: .3em; +} +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); +} +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + filter: none; +} +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.fa-stack-1x, +.fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.fa-stack-1x { + line-height: inherit; +} +.fa-stack-2x { + font-size: 2em; +} +.fa-inverse { + color: #ffffff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: "\f000"; +} +.fa-music:before { + content: "\f001"; +} +.fa-search:before { + content: "\f002"; +} +.fa-envelope-o:before { + content: "\f003"; +} +.fa-heart:before { + content: "\f004"; +} +.fa-star:before { + content: "\f005"; +} +.fa-star-o:before { + content: "\f006"; +} +.fa-user:before { + content: "\f007"; +} +.fa-film:before { + content: "\f008"; +} +.fa-th-large:before { + content: "\f009"; +} +.fa-th:before { + content: "\f00a"; +} +.fa-th-list:before { + content: "\f00b"; +} +.fa-check:before { + content: "\f00c"; +} +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: "\f00d"; +} +.fa-search-plus:before { + content: "\f00e"; +} +.fa-search-minus:before { + content: "\f010"; +} +.fa-power-off:before { + content: "\f011"; +} +.fa-signal:before { + content: "\f012"; +} +.fa-gear:before, +.fa-cog:before { + content: "\f013"; +} +.fa-trash-o:before { + content: "\f014"; +} +.fa-home:before { + content: "\f015"; +} +.fa-file-o:before { + content: "\f016"; +} +.fa-clock-o:before { + content: "\f017"; +} +.fa-road:before { + content: "\f018"; +} +.fa-download:before { + content: "\f019"; +} +.fa-arrow-circle-o-down:before { + content: "\f01a"; +} +.fa-arrow-circle-o-up:before { + content: "\f01b"; +} +.fa-inbox:before { + content: "\f01c"; +} +.fa-play-circle-o:before { + content: "\f01d"; +} +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e"; +} +.fa-refresh:before { + content: "\f021"; +} +.fa-list-alt:before { + content: "\f022"; +} +.fa-lock:before { + content: "\f023"; +} +.fa-flag:before { + content: "\f024"; +} +.fa-headphones:before { + content: "\f025"; +} +.fa-volume-off:before { + content: "\f026"; +} +.fa-volume-down:before { + content: "\f027"; +} +.fa-volume-up:before { + content: "\f028"; +} +.fa-qrcode:before { + content: "\f029"; +} +.fa-barcode:before { + content: "\f02a"; +} +.fa-tag:before { + content: "\f02b"; +} +.fa-tags:before { + content: "\f02c"; +} +.fa-book:before { + content: "\f02d"; +} +.fa-bookmark:before { + content: "\f02e"; +} +.fa-print:before { + content: "\f02f"; +} +.fa-camera:before { + content: "\f030"; +} +.fa-font:before { + content: "\f031"; +} +.fa-bold:before { + content: "\f032"; +} +.fa-italic:before { + content: "\f033"; +} +.fa-text-height:before { + content: "\f034"; +} +.fa-text-width:before { + content: "\f035"; +} +.fa-align-left:before { + content: "\f036"; +} +.fa-align-center:before { + content: "\f037"; +} +.fa-align-right:before { + content: "\f038"; +} +.fa-align-justify:before { + content: "\f039"; +} +.fa-list:before { + content: "\f03a"; +} +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b"; +} +.fa-indent:before { + content: "\f03c"; +} +.fa-video-camera:before { + content: "\f03d"; +} +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: "\f03e"; +} +.fa-pencil:before { + content: "\f040"; +} +.fa-map-marker:before { + content: "\f041"; +} +.fa-adjust:before { + content: "\f042"; +} +.fa-tint:before { + content: "\f043"; +} +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044"; +} +.fa-share-square-o:before { + content: "\f045"; +} +.fa-check-square-o:before { + content: "\f046"; +} +.fa-arrows:before { + content: "\f047"; +} +.fa-step-backward:before { + content: "\f048"; +} +.fa-fast-backward:before { + content: "\f049"; +} +.fa-backward:before { + content: "\f04a"; +} +.fa-play:before { + content: "\f04b"; +} +.fa-pause:before { + content: "\f04c"; +} +.fa-stop:before { + content: "\f04d"; +} +.fa-forward:before { + content: "\f04e"; +} +.fa-fast-forward:before { + content: "\f050"; +} +.fa-step-forward:before { + content: "\f051"; +} +.fa-eject:before { + content: "\f052"; +} +.fa-chevron-left:before { + content: "\f053"; +} +.fa-chevron-right:before { + content: "\f054"; +} +.fa-plus-circle:before { + content: "\f055"; +} +.fa-minus-circle:before { + content: "\f056"; +} +.fa-times-circle:before { + content: "\f057"; +} +.fa-check-circle:before { + content: "\f058"; +} +.fa-question-circle:before { + content: "\f059"; +} +.fa-info-circle:before { + content: "\f05a"; +} +.fa-crosshairs:before { + content: "\f05b"; +} +.fa-times-circle-o:before { + content: "\f05c"; +} +.fa-check-circle-o:before { + content: "\f05d"; +} +.fa-ban:before { + content: "\f05e"; +} +.fa-arrow-left:before { + content: "\f060"; +} +.fa-arrow-right:before { + content: "\f061"; +} +.fa-arrow-up:before { + content: "\f062"; +} +.fa-arrow-down:before { + content: "\f063"; +} +.fa-mail-forward:before, +.fa-share:before { + content: "\f064"; +} +.fa-expand:before { + content: "\f065"; +} +.fa-compress:before { + content: "\f066"; +} +.fa-plus:before { + content: "\f067"; +} +.fa-minus:before { + content: "\f068"; +} +.fa-asterisk:before { + content: "\f069"; +} +.fa-exclamation-circle:before { + content: "\f06a"; +} +.fa-gift:before { + content: "\f06b"; +} +.fa-leaf:before { + content: "\f06c"; +} +.fa-fire:before { + content: "\f06d"; +} +.fa-eye:before { + content: "\f06e"; +} +.fa-eye-slash:before { + content: "\f070"; +} +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071"; +} +.fa-plane:before { + content: "\f072"; +} +.fa-calendar:before { + content: "\f073"; +} +.fa-random:before { + content: "\f074"; +} +.fa-comment:before { + content: "\f075"; +} +.fa-magnet:before { + content: "\f076"; +} +.fa-chevron-up:before { + content: "\f077"; +} +.fa-chevron-down:before { + content: "\f078"; +} +.fa-retweet:before { + content: "\f079"; +} +.fa-shopping-cart:before { + content: "\f07a"; +} +.fa-folder:before { + content: "\f07b"; +} +.fa-folder-open:before { + content: "\f07c"; +} +.fa-arrows-v:before { + content: "\f07d"; +} +.fa-arrows-h:before { + content: "\f07e"; +} +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: "\f080"; +} +.fa-twitter-square:before { + content: "\f081"; +} +.fa-facebook-square:before { + content: "\f082"; +} +.fa-camera-retro:before { + content: "\f083"; +} +.fa-key:before { + content: "\f084"; +} +.fa-gears:before, +.fa-cogs:before { + content: "\f085"; +} +.fa-comments:before { + content: "\f086"; +} +.fa-thumbs-o-up:before { + content: "\f087"; +} +.fa-thumbs-o-down:before { + content: "\f088"; +} +.fa-star-half:before { + content: "\f089"; +} +.fa-heart-o:before { + content: "\f08a"; +} +.fa-sign-out:before { + content: "\f08b"; +} +.fa-linkedin-square:before { + content: "\f08c"; +} +.fa-thumb-tack:before { + content: "\f08d"; +} +.fa-external-link:before { + content: "\f08e"; +} +.fa-sign-in:before { + content: "\f090"; +} +.fa-trophy:before { + content: "\f091"; +} +.fa-github-square:before { + content: "\f092"; +} +.fa-upload:before { + content: "\f093"; +} +.fa-lemon-o:before { + content: "\f094"; +} +.fa-phone:before { + content: "\f095"; +} +.fa-square-o:before { + content: "\f096"; +} +.fa-bookmark-o:before { + content: "\f097"; +} +.fa-phone-square:before { + content: "\f098"; +} +.fa-twitter:before { + content: "\f099"; +} +.fa-facebook-f:before, +.fa-facebook:before { + content: "\f09a"; +} +.fa-github:before { + content: "\f09b"; +} +.fa-unlock:before { + content: "\f09c"; +} +.fa-credit-card:before { + content: "\f09d"; +} +.fa-feed:before, +.fa-rss:before { + content: "\f09e"; +} +.fa-hdd-o:before { + content: "\f0a0"; +} +.fa-bullhorn:before { + content: "\f0a1"; +} +.fa-bell:before { + content: "\f0f3"; +} +.fa-certificate:before { + content: "\f0a3"; +} +.fa-hand-o-right:before { + content: "\f0a4"; +} +.fa-hand-o-left:before { + content: "\f0a5"; +} +.fa-hand-o-up:before { + content: "\f0a6"; +} +.fa-hand-o-down:before { + content: "\f0a7"; +} +.fa-arrow-circle-left:before { + content: "\f0a8"; +} +.fa-arrow-circle-right:before { + content: "\f0a9"; +} +.fa-arrow-circle-up:before { + content: "\f0aa"; +} +.fa-arrow-circle-down:before { + content: "\f0ab"; +} +.fa-globe:before { + content: "\f0ac"; +} +.fa-wrench:before { + content: "\f0ad"; +} +.fa-tasks:before { + content: "\f0ae"; +} +.fa-filter:before { + content: "\f0b0"; +} +.fa-briefcase:before { + content: "\f0b1"; +} +.fa-arrows-alt:before { + content: "\f0b2"; +} +.fa-group:before, +.fa-users:before { + content: "\f0c0"; +} +.fa-chain:before, +.fa-link:before { + content: "\f0c1"; +} +.fa-cloud:before { + content: "\f0c2"; +} +.fa-flask:before { + content: "\f0c3"; +} +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4"; +} +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5"; +} +.fa-paperclip:before { + content: "\f0c6"; +} +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7"; +} +.fa-square:before { + content: "\f0c8"; +} +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: "\f0c9"; +} +.fa-list-ul:before { + content: "\f0ca"; +} +.fa-list-ol:before { + content: "\f0cb"; +} +.fa-strikethrough:before { + content: "\f0cc"; +} +.fa-underline:before { + content: "\f0cd"; +} +.fa-table:before { + content: "\f0ce"; +} +.fa-magic:before { + content: "\f0d0"; +} +.fa-truck:before { + content: "\f0d1"; +} +.fa-pinterest:before { + content: "\f0d2"; +} +.fa-pinterest-square:before { + content: "\f0d3"; +} +.fa-google-plus-square:before { + content: "\f0d4"; +} +.fa-google-plus:before { + content: "\f0d5"; +} +.fa-money:before { + content: "\f0d6"; +} +.fa-caret-down:before { + content: "\f0d7"; +} +.fa-caret-up:before { + content: "\f0d8"; +} +.fa-caret-left:before { + content: "\f0d9"; +} +.fa-caret-right:before { + content: "\f0da"; +} +.fa-columns:before { + content: "\f0db"; +} +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc"; +} +.fa-sort-down:before, +.fa-sort-desc:before { + content: "\f0dd"; +} +.fa-sort-up:before, +.fa-sort-asc:before { + content: "\f0de"; +} +.fa-envelope:before { + content: "\f0e0"; +} +.fa-linkedin:before { + content: "\f0e1"; +} +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2"; +} +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3"; +} +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4"; +} +.fa-comment-o:before { + content: "\f0e5"; +} +.fa-comments-o:before { + content: "\f0e6"; +} +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7"; +} +.fa-sitemap:before { + content: "\f0e8"; +} +.fa-umbrella:before { + content: "\f0e9"; +} +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea"; +} +.fa-lightbulb-o:before { + content: "\f0eb"; +} +.fa-exchange:before { + content: "\f0ec"; +} +.fa-cloud-download:before { + content: "\f0ed"; +} +.fa-cloud-upload:before { + content: "\f0ee"; +} +.fa-user-md:before { + content: "\f0f0"; +} +.fa-stethoscope:before { + content: "\f0f1"; +} +.fa-suitcase:before { + content: "\f0f2"; +} +.fa-bell-o:before { + content: "\f0a2"; +} +.fa-coffee:before { + content: "\f0f4"; +} +.fa-cutlery:before { + content: "\f0f5"; +} +.fa-file-text-o:before { + content: "\f0f6"; +} +.fa-building-o:before { + content: "\f0f7"; +} +.fa-hospital-o:before { + content: "\f0f8"; +} +.fa-ambulance:before { + content: "\f0f9"; +} +.fa-medkit:before { + content: "\f0fa"; +} +.fa-fighter-jet:before { + content: "\f0fb"; +} +.fa-beer:before { + content: "\f0fc"; +} +.fa-h-square:before { + content: "\f0fd"; +} +.fa-plus-square:before { + content: "\f0fe"; +} +.fa-angle-double-left:before { + content: "\f100"; +} +.fa-angle-double-right:before { + content: "\f101"; +} +.fa-angle-double-up:before { + content: "\f102"; +} +.fa-angle-double-down:before { + content: "\f103"; +} +.fa-angle-left:before { + content: "\f104"; +} +.fa-angle-right:before { + content: "\f105"; +} +.fa-angle-up:before { + content: "\f106"; +} +.fa-angle-down:before { + content: "\f107"; +} +.fa-desktop:before { + content: "\f108"; +} +.fa-laptop:before { + content: "\f109"; +} +.fa-tablet:before { + content: "\f10a"; +} +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b"; +} +.fa-circle-o:before { + content: "\f10c"; +} +.fa-quote-left:before { + content: "\f10d"; +} +.fa-quote-right:before { + content: "\f10e"; +} +.fa-spinner:before { + content: "\f110"; +} +.fa-circle:before { + content: "\f111"; +} +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112"; +} +.fa-github-alt:before { + content: "\f113"; +} +.fa-folder-o:before { + content: "\f114"; +} +.fa-folder-open-o:before { + content: "\f115"; +} +.fa-smile-o:before { + content: "\f118"; +} +.fa-frown-o:before { + content: "\f119"; +} +.fa-meh-o:before { + content: "\f11a"; +} +.fa-gamepad:before { + content: "\f11b"; +} +.fa-keyboard-o:before { + content: "\f11c"; +} +.fa-flag-o:before { + content: "\f11d"; +} +.fa-flag-checkered:before { + content: "\f11e"; +} +.fa-terminal:before { + content: "\f120"; +} +.fa-code:before { + content: "\f121"; +} +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122"; +} +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123"; +} +.fa-location-arrow:before { + content: "\f124"; +} +.fa-crop:before { + content: "\f125"; +} +.fa-code-fork:before { + content: "\f126"; +} +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127"; +} +.fa-question:before { + content: "\f128"; +} +.fa-info:before { + content: "\f129"; +} +.fa-exclamation:before { + content: "\f12a"; +} +.fa-superscript:before { + content: "\f12b"; +} +.fa-subscript:before { + content: "\f12c"; +} +.fa-eraser:before { + content: "\f12d"; +} +.fa-puzzle-piece:before { + content: "\f12e"; +} +.fa-microphone:before { + content: "\f130"; +} +.fa-microphone-slash:before { + content: "\f131"; +} +.fa-shield:before { + content: "\f132"; +} +.fa-calendar-o:before { + content: "\f133"; +} +.fa-fire-extinguisher:before { + content: "\f134"; +} +.fa-rocket:before { + content: "\f135"; +} +.fa-maxcdn:before { + content: "\f136"; +} +.fa-chevron-circle-left:before { + content: "\f137"; +} +.fa-chevron-circle-right:before { + content: "\f138"; +} +.fa-chevron-circle-up:before { + content: "\f139"; +} +.fa-chevron-circle-down:before { + content: "\f13a"; +} +.fa-html5:before { + content: "\f13b"; +} +.fa-css3:before { + content: "\f13c"; +} +.fa-anchor:before { + content: "\f13d"; +} +.fa-unlock-alt:before { + content: "\f13e"; +} +.fa-bullseye:before { + content: "\f140"; +} +.fa-ellipsis-h:before { + content: "\f141"; +} +.fa-ellipsis-v:before { + content: "\f142"; +} +.fa-rss-square:before { + content: "\f143"; +} +.fa-play-circle:before { + content: "\f144"; +} +.fa-ticket:before { + content: "\f145"; +} +.fa-minus-square:before { + content: "\f146"; +} +.fa-minus-square-o:before { + content: "\f147"; +} +.fa-level-up:before { + content: "\f148"; +} +.fa-level-down:before { + content: "\f149"; +} +.fa-check-square:before { + content: "\f14a"; +} +.fa-pencil-square:before { + content: "\f14b"; +} +.fa-external-link-square:before { + content: "\f14c"; +} +.fa-share-square:before { + content: "\f14d"; +} +.fa-compass:before { + content: "\f14e"; +} +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150"; +} +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151"; +} +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152"; +} +.fa-euro:before, +.fa-eur:before { + content: "\f153"; +} +.fa-gbp:before { + content: "\f154"; +} +.fa-dollar:before, +.fa-usd:before { + content: "\f155"; +} +.fa-rupee:before, +.fa-inr:before { + content: "\f156"; +} +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157"; +} +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158"; +} +.fa-won:before, +.fa-krw:before { + content: "\f159"; +} +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a"; +} +.fa-file:before { + content: "\f15b"; +} +.fa-file-text:before { + content: "\f15c"; +} +.fa-sort-alpha-asc:before { + content: "\f15d"; +} +.fa-sort-alpha-desc:before { + content: "\f15e"; +} +.fa-sort-amount-asc:before { + content: "\f160"; +} +.fa-sort-amount-desc:before { + content: "\f161"; +} +.fa-sort-numeric-asc:before { + content: "\f162"; +} +.fa-sort-numeric-desc:before { + content: "\f163"; +} +.fa-thumbs-up:before { + content: "\f164"; +} +.fa-thumbs-down:before { + content: "\f165"; +} +.fa-youtube-square:before { + content: "\f166"; +} +.fa-youtube:before { + content: "\f167"; +} +.fa-xing:before { + content: "\f168"; +} +.fa-xing-square:before { + content: "\f169"; +} +.fa-youtube-play:before { + content: "\f16a"; +} +.fa-dropbox:before { + content: "\f16b"; +} +.fa-stack-overflow:before { + content: "\f16c"; +} +.fa-instagram:before { + content: "\f16d"; +} +.fa-flickr:before { + content: "\f16e"; +} +.fa-adn:before { + content: "\f170"; +} +.fa-bitbucket:before { + content: "\f171"; +} +.fa-bitbucket-square:before { + content: "\f172"; +} +.fa-tumblr:before { + content: "\f173"; +} +.fa-tumblr-square:before { + content: "\f174"; +} +.fa-long-arrow-down:before { + content: "\f175"; +} +.fa-long-arrow-up:before { + content: "\f176"; +} +.fa-long-arrow-left:before { + content: "\f177"; +} +.fa-long-arrow-right:before { + content: "\f178"; +} +.fa-apple:before { + content: "\f179"; +} +.fa-windows:before { + content: "\f17a"; +} +.fa-android:before { + content: "\f17b"; +} +.fa-linux:before { + content: "\f17c"; +} +.fa-dribbble:before { + content: "\f17d"; +} +.fa-skype:before { + content: "\f17e"; +} +.fa-foursquare:before { + content: "\f180"; +} +.fa-trello:before { + content: "\f181"; +} +.fa-female:before { + content: "\f182"; +} +.fa-male:before { + content: "\f183"; +} +.fa-gittip:before, +.fa-gratipay:before { + content: "\f184"; +} +.fa-sun-o:before { + content: "\f185"; +} +.fa-moon-o:before { + content: "\f186"; +} +.fa-archive:before { + content: "\f187"; +} +.fa-bug:before { + content: "\f188"; +} +.fa-vk:before { + content: "\f189"; +} +.fa-weibo:before { + content: "\f18a"; +} +.fa-renren:before { + content: "\f18b"; +} +.fa-pagelines:before { + content: "\f18c"; +} +.fa-stack-exchange:before { + content: "\f18d"; +} +.fa-arrow-circle-o-right:before { + content: "\f18e"; +} +.fa-arrow-circle-o-left:before { + content: "\f190"; +} +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191"; +} +.fa-dot-circle-o:before { + content: "\f192"; +} +.fa-wheelchair:before { + content: "\f193"; +} +.fa-vimeo-square:before { + content: "\f194"; +} +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195"; +} +.fa-plus-square-o:before { + content: "\f196"; +} +.fa-space-shuttle:before { + content: "\f197"; +} +.fa-slack:before { + content: "\f198"; +} +.fa-envelope-square:before { + content: "\f199"; +} +.fa-wordpress:before { + content: "\f19a"; +} +.fa-openid:before { + content: "\f19b"; +} +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: "\f19c"; +} +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: "\f19d"; +} +.fa-yahoo:before { + content: "\f19e"; +} +.fa-google:before { + content: "\f1a0"; +} +.fa-reddit:before { + content: "\f1a1"; +} +.fa-reddit-square:before { + content: "\f1a2"; +} +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} +.fa-stumbleupon:before { + content: "\f1a4"; +} +.fa-delicious:before { + content: "\f1a5"; +} +.fa-digg:before { + content: "\f1a6"; +} +.fa-pied-piper-pp:before { + content: "\f1a7"; +} +.fa-pied-piper-alt:before { + content: "\f1a8"; +} +.fa-drupal:before { + content: "\f1a9"; +} +.fa-joomla:before { + content: "\f1aa"; +} +.fa-language:before { + content: "\f1ab"; +} +.fa-fax:before { + content: "\f1ac"; +} +.fa-building:before { + content: "\f1ad"; +} +.fa-child:before { + content: "\f1ae"; +} +.fa-paw:before { + content: "\f1b0"; +} +.fa-spoon:before { + content: "\f1b1"; +} +.fa-cube:before { + content: "\f1b2"; +} +.fa-cubes:before { + content: "\f1b3"; +} +.fa-behance:before { + content: "\f1b4"; +} +.fa-behance-square:before { + content: "\f1b5"; +} +.fa-steam:before { + content: "\f1b6"; +} +.fa-steam-square:before { + content: "\f1b7"; +} +.fa-recycle:before { + content: "\f1b8"; +} +.fa-automobile:before, +.fa-car:before { + content: "\f1b9"; +} +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba"; +} +.fa-tree:before { + content: "\f1bb"; +} +.fa-spotify:before { + content: "\f1bc"; +} +.fa-deviantart:before { + content: "\f1bd"; +} +.fa-soundcloud:before { + content: "\f1be"; +} +.fa-database:before { + content: "\f1c0"; +} +.fa-file-pdf-o:before { + content: "\f1c1"; +} +.fa-file-word-o:before { + content: "\f1c2"; +} +.fa-file-excel-o:before { + content: "\f1c3"; +} +.fa-file-powerpoint-o:before { + content: "\f1c4"; +} +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: "\f1c5"; +} +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: "\f1c6"; +} +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: "\f1c7"; +} +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8"; +} +.fa-file-code-o:before { + content: "\f1c9"; +} +.fa-vine:before { + content: "\f1ca"; +} +.fa-codepen:before { + content: "\f1cb"; +} +.fa-jsfiddle:before { + content: "\f1cc"; +} +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: "\f1cd"; +} +.fa-circle-o-notch:before { + content: "\f1ce"; +} +.fa-ra:before, +.fa-resistance:before, +.fa-rebel:before { + content: "\f1d0"; +} +.fa-ge:before, +.fa-empire:before { + content: "\f1d1"; +} +.fa-git-square:before { + content: "\f1d2"; +} +.fa-git:before { + content: "\f1d3"; +} +.fa-y-combinator-square:before, +.fa-yc-square:before, +.fa-hacker-news:before { + content: "\f1d4"; +} +.fa-tencent-weibo:before { + content: "\f1d5"; +} +.fa-qq:before { + content: "\f1d6"; +} +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7"; +} +.fa-send:before, +.fa-paper-plane:before { + content: "\f1d8"; +} +.fa-send-o:before, +.fa-paper-plane-o:before { + content: "\f1d9"; +} +.fa-history:before { + content: "\f1da"; +} +.fa-circle-thin:before { + content: "\f1db"; +} +.fa-header:before { + content: "\f1dc"; +} +.fa-paragraph:before { + content: "\f1dd"; +} +.fa-sliders:before { + content: "\f1de"; +} +.fa-share-alt:before { + content: "\f1e0"; +} +.fa-share-alt-square:before { + content: "\f1e1"; +} +.fa-bomb:before { + content: "\f1e2"; +} +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: "\f1e3"; +} +.fa-tty:before { + content: "\f1e4"; +} +.fa-binoculars:before { + content: "\f1e5"; +} +.fa-plug:before { + content: "\f1e6"; +} +.fa-slideshare:before { + content: "\f1e7"; +} +.fa-twitch:before { + content: "\f1e8"; +} +.fa-yelp:before { + content: "\f1e9"; +} +.fa-newspaper-o:before { + content: "\f1ea"; +} +.fa-wifi:before { + content: "\f1eb"; +} +.fa-calculator:before { + content: "\f1ec"; +} +.fa-paypal:before { + content: "\f1ed"; +} +.fa-google-wallet:before { + content: "\f1ee"; +} +.fa-cc-visa:before { + content: "\f1f0"; +} +.fa-cc-mastercard:before { + content: "\f1f1"; +} +.fa-cc-discover:before { + content: "\f1f2"; +} +.fa-cc-amex:before { + content: "\f1f3"; +} +.fa-cc-paypal:before { + content: "\f1f4"; +} +.fa-cc-stripe:before { + content: "\f1f5"; +} +.fa-bell-slash:before { + content: "\f1f6"; +} +.fa-bell-slash-o:before { + content: "\f1f7"; +} +.fa-trash:before { + content: "\f1f8"; +} +.fa-copyright:before { + content: "\f1f9"; +} +.fa-at:before { + content: "\f1fa"; +} +.fa-eyedropper:before { + content: "\f1fb"; +} +.fa-paint-brush:before { + content: "\f1fc"; +} +.fa-birthday-cake:before { + content: "\f1fd"; +} +.fa-area-chart:before { + content: "\f1fe"; +} +.fa-pie-chart:before { + content: "\f200"; +} +.fa-line-chart:before { + content: "\f201"; +} +.fa-lastfm:before { + content: "\f202"; +} +.fa-lastfm-square:before { + content: "\f203"; +} +.fa-toggle-off:before { + content: "\f204"; +} +.fa-toggle-on:before { + content: "\f205"; +} +.fa-bicycle:before { + content: "\f206"; +} +.fa-bus:before { + content: "\f207"; +} +.fa-ioxhost:before { + content: "\f208"; +} +.fa-angellist:before { + content: "\f209"; +} +.fa-cc:before { + content: "\f20a"; +} +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: "\f20b"; +} +.fa-meanpath:before { + content: "\f20c"; +} +.fa-buysellads:before { + content: "\f20d"; +} +.fa-connectdevelop:before { + content: "\f20e"; +} +.fa-dashcube:before { + content: "\f210"; +} +.fa-forumbee:before { + content: "\f211"; +} +.fa-leanpub:before { + content: "\f212"; +} +.fa-sellsy:before { + content: "\f213"; +} +.fa-shirtsinbulk:before { + content: "\f214"; +} +.fa-simplybuilt:before { + content: "\f215"; +} +.fa-skyatlas:before { + content: "\f216"; +} +.fa-cart-plus:before { + content: "\f217"; +} +.fa-cart-arrow-down:before { + content: "\f218"; +} +.fa-diamond:before { + content: "\f219"; +} +.fa-ship:before { + content: "\f21a"; +} +.fa-user-secret:before { + content: "\f21b"; +} +.fa-motorcycle:before { + content: "\f21c"; +} +.fa-street-view:before { + content: "\f21d"; +} +.fa-heartbeat:before { + content: "\f21e"; +} +.fa-venus:before { + content: "\f221"; +} +.fa-mars:before { + content: "\f222"; +} +.fa-mercury:before { + content: "\f223"; +} +.fa-intersex:before, +.fa-transgender:before { + content: "\f224"; +} +.fa-transgender-alt:before { + content: "\f225"; +} +.fa-venus-double:before { + content: "\f226"; +} +.fa-mars-double:before { + content: "\f227"; +} +.fa-venus-mars:before { + content: "\f228"; +} +.fa-mars-stroke:before { + content: "\f229"; +} +.fa-mars-stroke-v:before { + content: "\f22a"; +} +.fa-mars-stroke-h:before { + content: "\f22b"; +} +.fa-neuter:before { + content: "\f22c"; +} +.fa-genderless:before { + content: "\f22d"; +} +.fa-facebook-official:before { + content: "\f230"; +} +.fa-pinterest-p:before { + content: "\f231"; +} +.fa-whatsapp:before { + content: "\f232"; +} +.fa-server:before { + content: "\f233"; +} +.fa-user-plus:before { + content: "\f234"; +} +.fa-user-times:before { + content: "\f235"; +} +.fa-hotel:before, +.fa-bed:before { + content: "\f236"; +} +.fa-viacoin:before { + content: "\f237"; +} +.fa-train:before { + content: "\f238"; +} +.fa-subway:before { + content: "\f239"; +} +.fa-medium:before { + content: "\f23a"; +} +.fa-yc:before, +.fa-y-combinator:before { + content: "\f23b"; +} +.fa-optin-monster:before { + content: "\f23c"; +} +.fa-opencart:before { + content: "\f23d"; +} +.fa-expeditedssl:before { + content: "\f23e"; +} +.fa-battery-4:before, +.fa-battery:before, +.fa-battery-full:before { + content: "\f240"; +} +.fa-battery-3:before, +.fa-battery-three-quarters:before { + content: "\f241"; +} +.fa-battery-2:before, +.fa-battery-half:before { + content: "\f242"; +} +.fa-battery-1:before, +.fa-battery-quarter:before { + content: "\f243"; +} +.fa-battery-0:before, +.fa-battery-empty:before { + content: "\f244"; +} +.fa-mouse-pointer:before { + content: "\f245"; +} +.fa-i-cursor:before { + content: "\f246"; +} +.fa-object-group:before { + content: "\f247"; +} +.fa-object-ungroup:before { + content: "\f248"; +} +.fa-sticky-note:before { + content: "\f249"; +} +.fa-sticky-note-o:before { + content: "\f24a"; +} +.fa-cc-jcb:before { + content: "\f24b"; +} +.fa-cc-diners-club:before { + content: "\f24c"; +} +.fa-clone:before { + content: "\f24d"; +} +.fa-balance-scale:before { + content: "\f24e"; +} +.fa-hourglass-o:before { + content: "\f250"; +} +.fa-hourglass-1:before, +.fa-hourglass-start:before { + content: "\f251"; +} +.fa-hourglass-2:before, +.fa-hourglass-half:before { + content: "\f252"; +} +.fa-hourglass-3:before, +.fa-hourglass-end:before { + content: "\f253"; +} +.fa-hourglass:before { + content: "\f254"; +} +.fa-hand-grab-o:before, +.fa-hand-rock-o:before { + content: "\f255"; +} +.fa-hand-stop-o:before, +.fa-hand-paper-o:before { + content: "\f256"; +} +.fa-hand-scissors-o:before { + content: "\f257"; +} +.fa-hand-lizard-o:before { + content: "\f258"; +} +.fa-hand-spock-o:before { + content: "\f259"; +} +.fa-hand-pointer-o:before { + content: "\f25a"; +} +.fa-hand-peace-o:before { + content: "\f25b"; +} +.fa-trademark:before { + content: "\f25c"; +} +.fa-registered:before { + content: "\f25d"; +} +.fa-creative-commons:before { + content: "\f25e"; +} +.fa-gg:before { + content: "\f260"; +} +.fa-gg-circle:before { + content: "\f261"; +} +.fa-tripadvisor:before { + content: "\f262"; +} +.fa-odnoklassniki:before { + content: "\f263"; +} +.fa-odnoklassniki-square:before { + content: "\f264"; +} +.fa-get-pocket:before { + content: "\f265"; +} +.fa-wikipedia-w:before { + content: "\f266"; +} +.fa-safari:before { + content: "\f267"; +} +.fa-chrome:before { + content: "\f268"; +} +.fa-firefox:before { + content: "\f269"; +} +.fa-opera:before { + content: "\f26a"; +} +.fa-internet-explorer:before { + content: "\f26b"; +} +.fa-tv:before, +.fa-television:before { + content: "\f26c"; +} +.fa-contao:before { + content: "\f26d"; +} +.fa-500px:before { + content: "\f26e"; +} +.fa-amazon:before { + content: "\f270"; +} +.fa-calendar-plus-o:before { + content: "\f271"; +} +.fa-calendar-minus-o:before { + content: "\f272"; +} +.fa-calendar-times-o:before { + content: "\f273"; +} +.fa-calendar-check-o:before { + content: "\f274"; +} +.fa-industry:before { + content: "\f275"; +} +.fa-map-pin:before { + content: "\f276"; +} +.fa-map-signs:before { + content: "\f277"; +} +.fa-map-o:before { + content: "\f278"; +} +.fa-map:before { + content: "\f279"; +} +.fa-commenting:before { + content: "\f27a"; +} +.fa-commenting-o:before { + content: "\f27b"; +} +.fa-houzz:before { + content: "\f27c"; +} +.fa-vimeo:before { + content: "\f27d"; +} +.fa-black-tie:before { + content: "\f27e"; +} +.fa-fonticons:before { + content: "\f280"; +} +.fa-reddit-alien:before { + content: "\f281"; +} +.fa-edge:before { + content: "\f282"; +} +.fa-credit-card-alt:before { + content: "\f283"; +} +.fa-codiepie:before { + content: "\f284"; +} +.fa-modx:before { + content: "\f285"; +} +.fa-fort-awesome:before { + content: "\f286"; +} +.fa-usb:before { + content: "\f287"; +} +.fa-product-hunt:before { + content: "\f288"; +} +.fa-mixcloud:before { + content: "\f289"; +} +.fa-scribd:before { + content: "\f28a"; +} +.fa-pause-circle:before { + content: "\f28b"; +} +.fa-pause-circle-o:before { + content: "\f28c"; +} +.fa-stop-circle:before { + content: "\f28d"; +} +.fa-stop-circle-o:before { + content: "\f28e"; +} +.fa-shopping-bag:before { + content: "\f290"; +} +.fa-shopping-basket:before { + content: "\f291"; +} +.fa-hashtag:before { + content: "\f292"; +} +.fa-bluetooth:before { + content: "\f293"; +} +.fa-bluetooth-b:before { + content: "\f294"; +} +.fa-percent:before { + content: "\f295"; +} +.fa-gitlab:before { + content: "\f296"; +} +.fa-wpbeginner:before { + content: "\f297"; +} +.fa-wpforms:before { + content: "\f298"; +} +.fa-envira:before { + content: "\f299"; +} +.fa-universal-access:before { + content: "\f29a"; +} +.fa-wheelchair-alt:before { + content: "\f29b"; +} +.fa-question-circle-o:before { + content: "\f29c"; +} +.fa-blind:before { + content: "\f29d"; +} +.fa-audio-description:before { + content: "\f29e"; +} +.fa-volume-control-phone:before { + content: "\f2a0"; +} +.fa-braille:before { + content: "\f2a1"; +} +.fa-assistive-listening-systems:before { + content: "\f2a2"; +} +.fa-asl-interpreting:before, +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; +} +.fa-deafness:before, +.fa-hard-of-hearing:before, +.fa-deaf:before { + content: "\f2a4"; +} +.fa-glide:before { + content: "\f2a5"; +} +.fa-glide-g:before { + content: "\f2a6"; +} +.fa-signing:before, +.fa-sign-language:before { + content: "\f2a7"; +} +.fa-low-vision:before { + content: "\f2a8"; +} +.fa-viadeo:before { + content: "\f2a9"; +} +.fa-viadeo-square:before { + content: "\f2aa"; +} +.fa-snapchat:before { + content: "\f2ab"; +} +.fa-snapchat-ghost:before { + content: "\f2ac"; +} +.fa-snapchat-square:before { + content: "\f2ad"; +} +.fa-pied-piper:before { + content: "\f2ae"; +} +.fa-first-order:before { + content: "\f2b0"; +} +.fa-yoast:before { + content: "\f2b1"; +} +.fa-themeisle:before { + content: "\f2b2"; +} +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: "\f2b3"; +} +.fa-fa:before, +.fa-font-awesome:before { + content: "\f2b4"; +} +.fa-handshake-o:before { + content: "\f2b5"; +} +.fa-envelope-open:before { + content: "\f2b6"; +} +.fa-envelope-open-o:before { + content: "\f2b7"; +} +.fa-linode:before { + content: "\f2b8"; +} +.fa-address-book:before { + content: "\f2b9"; +} +.fa-address-book-o:before { + content: "\f2ba"; +} +.fa-vcard:before, +.fa-address-card:before { + content: "\f2bb"; +} +.fa-vcard-o:before, +.fa-address-card-o:before { + content: "\f2bc"; +} +.fa-user-circle:before { + content: "\f2bd"; +} +.fa-user-circle-o:before { + content: "\f2be"; +} +.fa-user-o:before { + content: "\f2c0"; +} +.fa-id-badge:before { + content: "\f2c1"; +} +.fa-drivers-license:before, +.fa-id-card:before { + content: "\f2c2"; +} +.fa-drivers-license-o:before, +.fa-id-card-o:before { + content: "\f2c3"; +} +.fa-quora:before { + content: "\f2c4"; +} +.fa-free-code-camp:before { + content: "\f2c5"; +} +.fa-telegram:before { + content: "\f2c6"; +} +.fa-thermometer-4:before, +.fa-thermometer:before, +.fa-thermometer-full:before { + content: "\f2c7"; +} +.fa-thermometer-3:before, +.fa-thermometer-three-quarters:before { + content: "\f2c8"; +} +.fa-thermometer-2:before, +.fa-thermometer-half:before { + content: "\f2c9"; +} +.fa-thermometer-1:before, +.fa-thermometer-quarter:before { + content: "\f2ca"; +} +.fa-thermometer-0:before, +.fa-thermometer-empty:before { + content: "\f2cb"; +} +.fa-shower:before { + content: "\f2cc"; +} +.fa-bathtub:before, +.fa-s15:before, +.fa-bath:before { + content: "\f2cd"; +} +.fa-podcast:before { + content: "\f2ce"; +} +.fa-window-maximize:before { + content: "\f2d0"; +} +.fa-window-minimize:before { + content: "\f2d1"; +} +.fa-window-restore:before { + content: "\f2d2"; +} +.fa-times-rectangle:before, +.fa-window-close:before { + content: "\f2d3"; +} +.fa-times-rectangle-o:before, +.fa-window-close-o:before { + content: "\f2d4"; +} +.fa-bandcamp:before { + content: "\f2d5"; +} +.fa-grav:before { + content: "\f2d6"; +} +.fa-etsy:before { + content: "\f2d7"; +} +.fa-imdb:before { + content: "\f2d8"; +} +.fa-ravelry:before { + content: "\f2d9"; +} +.fa-eercast:before { + content: "\f2da"; +} +.fa-microchip:before { + content: "\f2db"; +} +.fa-snowflake-o:before { + content: "\f2dc"; +} +.fa-superpowers:before { + content: "\f2dd"; +} +.fa-wpexplorer:before { + content: "\f2de"; +} +.fa-meetup:before { + content: "\f2e0"; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/css/font-awesome.min.css b/webapp/static/fonts/font-awesome-4.7.0/css/font-awesome.min.css new file mode 100755 index 0000000..540440c --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/webapp/static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf b/webapp/static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf new file mode 100755 index 0000000..401ec0f Binary files /dev/null and b/webapp/static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf differ diff --git a/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot new file mode 100755 index 0000000..e9f60ca Binary files /dev/null and b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot differ diff --git a/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg new file mode 100755 index 0000000..855c845 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf new file mode 100755 index 0000000..35acda2 Binary files /dev/null and b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf differ diff --git a/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff new file mode 100755 index 0000000..400014a Binary files /dev/null and b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff differ diff --git a/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 new file mode 100755 index 0000000..4d13fc6 Binary files /dev/null and b/webapp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 differ diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/animated.less b/webapp/static/fonts/font-awesome-4.7.0/less/animated.less new file mode 100755 index 0000000..66ad52a --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/animated.less @@ -0,0 +1,34 @@ +// Animated Icons +// -------------------------- + +.@{fa-css-prefix}-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +.@{fa-css-prefix}-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/bordered-pulled.less b/webapp/static/fonts/font-awesome-4.7.0/less/bordered-pulled.less new file mode 100755 index 0000000..f1c8ad7 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/bordered-pulled.less @@ -0,0 +1,25 @@ +// Bordered & Pulled +// ------------------------- + +.@{fa-css-prefix}-border { + padding: .2em .25em .15em; + border: solid .08em @fa-border-color; + border-radius: .1em; +} + +.@{fa-css-prefix}-pull-left { float: left; } +.@{fa-css-prefix}-pull-right { float: right; } + +.@{fa-css-prefix} { + &.@{fa-css-prefix}-pull-left { margin-right: .3em; } + &.@{fa-css-prefix}-pull-right { margin-left: .3em; } +} + +/* Deprecated as of 4.4.0 */ +.pull-right { float: right; } +.pull-left { float: left; } + +.@{fa-css-prefix} { + &.pull-left { margin-right: .3em; } + &.pull-right { margin-left: .3em; } +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/core.less b/webapp/static/fonts/font-awesome-4.7.0/less/core.less new file mode 100755 index 0000000..c577ac8 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/core.less @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.@{fa-css-prefix} { + display: inline-block; + font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/fixed-width.less b/webapp/static/fonts/font-awesome-4.7.0/less/fixed-width.less new file mode 100755 index 0000000..110289f --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/fixed-width.less @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.@{fa-css-prefix}-fw { + width: (18em / 14); + text-align: center; +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/font-awesome.less b/webapp/static/fonts/font-awesome-4.7.0/less/font-awesome.less new file mode 100755 index 0000000..c3677de --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/font-awesome.less @@ -0,0 +1,18 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ + +@import "variables.less"; +@import "mixins.less"; +@import "path.less"; +@import "core.less"; +@import "larger.less"; +@import "fixed-width.less"; +@import "list.less"; +@import "bordered-pulled.less"; +@import "animated.less"; +@import "rotated-flipped.less"; +@import "stacked.less"; +@import "icons.less"; +@import "screen-reader.less"; diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/icons.less b/webapp/static/fonts/font-awesome-4.7.0/less/icons.less new file mode 100755 index 0000000..159d600 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/icons.less @@ -0,0 +1,789 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.@{fa-css-prefix}-glass:before { content: @fa-var-glass; } +.@{fa-css-prefix}-music:before { content: @fa-var-music; } +.@{fa-css-prefix}-search:before { content: @fa-var-search; } +.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; } +.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } +.@{fa-css-prefix}-star:before { content: @fa-var-star; } +.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; } +.@{fa-css-prefix}-user:before { content: @fa-var-user; } +.@{fa-css-prefix}-film:before { content: @fa-var-film; } +.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } +.@{fa-css-prefix}-th:before { content: @fa-var-th; } +.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } +.@{fa-css-prefix}-check:before { content: @fa-var-check; } +.@{fa-css-prefix}-remove:before, +.@{fa-css-prefix}-close:before, +.@{fa-css-prefix}-times:before { content: @fa-var-times; } +.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } +.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } +.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } +.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } +.@{fa-css-prefix}-gear:before, +.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } +.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; } +.@{fa-css-prefix}-home:before { content: @fa-var-home; } +.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; } +.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; } +.@{fa-css-prefix}-road:before { content: @fa-var-road; } +.@{fa-css-prefix}-download:before { content: @fa-var-download; } +.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; } +.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; } +.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } +.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; } +.@{fa-css-prefix}-rotate-right:before, +.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; } +.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; } +.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } +.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } +.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } +.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } +.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } +.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } +.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } +.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } +.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } +.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } +.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } +.@{fa-css-prefix}-book:before { content: @fa-var-book; } +.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } +.@{fa-css-prefix}-print:before { content: @fa-var-print; } +.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } +.@{fa-css-prefix}-font:before { content: @fa-var-font; } +.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } +.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } +.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } +.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } +.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } +.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } +.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } +.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } +.@{fa-css-prefix}-list:before { content: @fa-var-list; } +.@{fa-css-prefix}-dedent:before, +.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } +.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } +.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; } +.@{fa-css-prefix}-photo:before, +.@{fa-css-prefix}-image:before, +.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; } +.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; } +.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } +.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } +.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } +.@{fa-css-prefix}-edit:before, +.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; } +.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; } +.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; } +.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; } +.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } +.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } +.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } +.@{fa-css-prefix}-play:before { content: @fa-var-play; } +.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } +.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } +.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } +.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } +.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } +.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } +.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } +.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } +.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } +.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } +.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } +.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } +.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } +.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } +.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } +.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; } +.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; } +.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } +.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } +.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } +.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } +.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } +.@{fa-css-prefix}-mail-forward:before, +.@{fa-css-prefix}-share:before { content: @fa-var-share; } +.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } +.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } +.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } +.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } +.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } +.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } +.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } +.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } +.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } +.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } +.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } +.@{fa-css-prefix}-warning:before, +.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } +.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } +.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } +.@{fa-css-prefix}-random:before { content: @fa-var-random; } +.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } +.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } +.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } +.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } +.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } +.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } +.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } +.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } +.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; } +.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; } +.@{fa-css-prefix}-bar-chart-o:before, +.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; } +.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } +.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } +.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } +.@{fa-css-prefix}-key:before { content: @fa-var-key; } +.@{fa-css-prefix}-gears:before, +.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } +.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } +.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; } +.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; } +.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } +.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; } +.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; } +.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; } +.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; } +.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; } +.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; } +.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } +.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } +.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } +.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; } +.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } +.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; } +.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; } +.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } +.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } +.@{fa-css-prefix}-facebook-f:before, +.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } +.@{fa-css-prefix}-github:before { content: @fa-var-github; } +.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } +.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } +.@{fa-css-prefix}-feed:before, +.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } +.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; } +.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } +.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } +.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } +.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; } +.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; } +.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; } +.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; } +.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } +.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } +.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } +.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } +.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } +.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } +.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } +.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } +.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } +.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } +.@{fa-css-prefix}-group:before, +.@{fa-css-prefix}-users:before { content: @fa-var-users; } +.@{fa-css-prefix}-chain:before, +.@{fa-css-prefix}-link:before { content: @fa-var-link; } +.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } +.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } +.@{fa-css-prefix}-cut:before, +.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; } +.@{fa-css-prefix}-copy:before, +.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; } +.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } +.@{fa-css-prefix}-save:before, +.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; } +.@{fa-css-prefix}-square:before { content: @fa-var-square; } +.@{fa-css-prefix}-navicon:before, +.@{fa-css-prefix}-reorder:before, +.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } +.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } +.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } +.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } +.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } +.@{fa-css-prefix}-table:before { content: @fa-var-table; } +.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } +.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } +.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } +.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } +.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } +.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } +.@{fa-css-prefix}-money:before { content: @fa-var-money; } +.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } +.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } +.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } +.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } +.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } +.@{fa-css-prefix}-unsorted:before, +.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } +.@{fa-css-prefix}-sort-down:before, +.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; } +.@{fa-css-prefix}-sort-up:before, +.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; } +.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } +.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } +.@{fa-css-prefix}-rotate-left:before, +.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } +.@{fa-css-prefix}-legal:before, +.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } +.@{fa-css-prefix}-dashboard:before, +.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; } +.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; } +.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; } +.@{fa-css-prefix}-flash:before, +.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } +.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } +.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } +.@{fa-css-prefix}-paste:before, +.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } +.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; } +.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; } +.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; } +.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; } +.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } +.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } +.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } +.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; } +.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } +.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; } +.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; } +.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; } +.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; } +.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } +.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } +.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } +.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } +.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } +.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } +.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } +.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } +.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } +.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } +.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } +.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } +.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } +.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } +.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } +.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } +.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } +.@{fa-css-prefix}-mobile-phone:before, +.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } +.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; } +.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } +.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } +.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } +.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } +.@{fa-css-prefix}-mail-reply:before, +.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } +.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } +.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; } +.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; } +.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; } +.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; } +.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; } +.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } +.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; } +.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; } +.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } +.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } +.@{fa-css-prefix}-code:before { content: @fa-var-code; } +.@{fa-css-prefix}-mail-reply-all:before, +.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } +.@{fa-css-prefix}-star-half-empty:before, +.@{fa-css-prefix}-star-half-full:before, +.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; } +.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } +.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } +.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; } +.@{fa-css-prefix}-unlink:before, +.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; } +.@{fa-css-prefix}-question:before { content: @fa-var-question; } +.@{fa-css-prefix}-info:before { content: @fa-var-info; } +.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } +.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } +.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } +.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } +.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } +.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } +.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } +.@{fa-css-prefix}-shield:before { content: @fa-var-shield; } +.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; } +.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } +.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } +.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } +.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } +.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } +.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } +.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } +.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } +.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } +.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } +.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } +.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } +.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } +.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } +.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } +.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } +.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; } +.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } +.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; } +.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; } +.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; } +.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } +.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; } +.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; } +.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } +.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } +.@{fa-css-prefix}-toggle-down:before, +.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; } +.@{fa-css-prefix}-toggle-up:before, +.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; } +.@{fa-css-prefix}-toggle-right:before, +.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; } +.@{fa-css-prefix}-euro:before, +.@{fa-css-prefix}-eur:before { content: @fa-var-eur; } +.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; } +.@{fa-css-prefix}-dollar:before, +.@{fa-css-prefix}-usd:before { content: @fa-var-usd; } +.@{fa-css-prefix}-rupee:before, +.@{fa-css-prefix}-inr:before { content: @fa-var-inr; } +.@{fa-css-prefix}-cny:before, +.@{fa-css-prefix}-rmb:before, +.@{fa-css-prefix}-yen:before, +.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; } +.@{fa-css-prefix}-ruble:before, +.@{fa-css-prefix}-rouble:before, +.@{fa-css-prefix}-rub:before { content: @fa-var-rub; } +.@{fa-css-prefix}-won:before, +.@{fa-css-prefix}-krw:before { content: @fa-var-krw; } +.@{fa-css-prefix}-bitcoin:before, +.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } +.@{fa-css-prefix}-file:before { content: @fa-var-file; } +.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; } +.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; } +.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; } +.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; } +.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; } +.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; } +.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; } +.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } +.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } +.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } +.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } +.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } +.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } +.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; } +.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } +.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } +.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } +.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } +.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } +.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } +.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; } +.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } +.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } +.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; } +.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; } +.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; } +.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; } +.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } +.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } +.@{fa-css-prefix}-android:before { content: @fa-var-android; } +.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } +.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } +.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } +.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } +.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } +.@{fa-css-prefix}-female:before { content: @fa-var-female; } +.@{fa-css-prefix}-male:before { content: @fa-var-male; } +.@{fa-css-prefix}-gittip:before, +.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } +.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; } +.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; } +.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } +.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } +.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } +.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } +.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } +.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } +.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } +.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; } +.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; } +.@{fa-css-prefix}-toggle-left:before, +.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; } +.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; } +.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } +.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } +.@{fa-css-prefix}-turkish-lira:before, +.@{fa-css-prefix}-try:before { content: @fa-var-try; } +.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; } +.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } +.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } +.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } +.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } +.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } +.@{fa-css-prefix}-institution:before, +.@{fa-css-prefix}-bank:before, +.@{fa-css-prefix}-university:before { content: @fa-var-university; } +.@{fa-css-prefix}-mortar-board:before, +.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } +.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } +.@{fa-css-prefix}-google:before { content: @fa-var-google; } +.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } +.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } +.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } +.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } +.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } +.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } +.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } +.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } +.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } +.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } +.@{fa-css-prefix}-language:before { content: @fa-var-language; } +.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } +.@{fa-css-prefix}-building:before { content: @fa-var-building; } +.@{fa-css-prefix}-child:before { content: @fa-var-child; } +.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } +.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; } +.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } +.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } +.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } +.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } +.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } +.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } +.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } +.@{fa-css-prefix}-automobile:before, +.@{fa-css-prefix}-car:before { content: @fa-var-car; } +.@{fa-css-prefix}-cab:before, +.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } +.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } +.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } +.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } +.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } +.@{fa-css-prefix}-database:before { content: @fa-var-database; } +.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; } +.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; } +.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; } +.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; } +.@{fa-css-prefix}-file-photo-o:before, +.@{fa-css-prefix}-file-picture-o:before, +.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; } +.@{fa-css-prefix}-file-zip-o:before, +.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; } +.@{fa-css-prefix}-file-sound-o:before, +.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; } +.@{fa-css-prefix}-file-movie-o:before, +.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; } +.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; } +.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } +.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } +.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } +.@{fa-css-prefix}-life-bouy:before, +.@{fa-css-prefix}-life-buoy:before, +.@{fa-css-prefix}-life-saver:before, +.@{fa-css-prefix}-support:before, +.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } +.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; } +.@{fa-css-prefix}-ra:before, +.@{fa-css-prefix}-resistance:before, +.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } +.@{fa-css-prefix}-ge:before, +.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } +.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } +.@{fa-css-prefix}-git:before { content: @fa-var-git; } +.@{fa-css-prefix}-y-combinator-square:before, +.@{fa-css-prefix}-yc-square:before, +.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } +.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } +.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } +.@{fa-css-prefix}-wechat:before, +.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } +.@{fa-css-prefix}-send:before, +.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } +.@{fa-css-prefix}-send-o:before, +.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; } +.@{fa-css-prefix}-history:before { content: @fa-var-history; } +.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; } +.@{fa-css-prefix}-header:before { content: @fa-var-header; } +.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } +.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; } +.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } +.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } +.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } +.@{fa-css-prefix}-soccer-ball-o:before, +.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; } +.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } +.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } +.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } +.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } +.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } +.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } +.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; } +.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } +.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } +.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } +.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } +.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } +.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } +.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } +.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } +.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } +.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } +.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } +.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; } +.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } +.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } +.@{fa-css-prefix}-at:before { content: @fa-var-at; } +.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; } +.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } +.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } +.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; } +.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; } +.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; } +.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } +.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } +.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } +.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } +.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } +.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } +.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } +.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } +.@{fa-css-prefix}-cc:before { content: @fa-var-cc; } +.@{fa-css-prefix}-shekel:before, +.@{fa-css-prefix}-sheqel:before, +.@{fa-css-prefix}-ils:before { content: @fa-var-ils; } +.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; } +.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } +.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } +.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } +.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } +.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } +.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } +.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } +.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } +.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } +.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } +.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } +.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; } +.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } +.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } +.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } +.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } +.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } +.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } +.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } +.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } +.@{fa-css-prefix}-intersex:before, +.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } +.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } +.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } +.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } +.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } +.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } +.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } +.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } +.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } +.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } +.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; } +.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } +.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } +.@{fa-css-prefix}-server:before { content: @fa-var-server; } +.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } +.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } +.@{fa-css-prefix}-hotel:before, +.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } +.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } +.@{fa-css-prefix}-train:before { content: @fa-var-train; } +.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } +.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } +.@{fa-css-prefix}-yc:before, +.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } +.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } +.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } +.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } +.@{fa-css-prefix}-battery-4:before, +.@{fa-css-prefix}-battery:before, +.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } +.@{fa-css-prefix}-battery-3:before, +.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } +.@{fa-css-prefix}-battery-2:before, +.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } +.@{fa-css-prefix}-battery-1:before, +.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } +.@{fa-css-prefix}-battery-0:before, +.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } +.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } +.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } +.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } +.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } +.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } +.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; } +.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } +.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } +.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } +.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } +.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; } +.@{fa-css-prefix}-hourglass-1:before, +.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } +.@{fa-css-prefix}-hourglass-2:before, +.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } +.@{fa-css-prefix}-hourglass-3:before, +.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } +.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } +.@{fa-css-prefix}-hand-grab-o:before, +.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; } +.@{fa-css-prefix}-hand-stop-o:before, +.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; } +.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; } +.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; } +.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; } +.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; } +.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; } +.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } +.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } +.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } +.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } +.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } +.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } +.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } +.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } +.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } +.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } +.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } +.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } +.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } +.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } +.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } +.@{fa-css-prefix}-tv:before, +.@{fa-css-prefix}-television:before { content: @fa-var-television; } +.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } +.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } +.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } +.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; } +.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; } +.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; } +.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; } +.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } +.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } +.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } +.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; } +.@{fa-css-prefix}-map:before { content: @fa-var-map; } +.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; } +.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; } +.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } +.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } +.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } +.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } +.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } +.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } +.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; } +.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } +.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } +.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } +.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } +.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } +.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } +.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } +.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } +.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; } +.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } +.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; } +.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } +.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } +.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } +.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } +.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } +.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } +.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } +.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } +.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } +.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } +.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } +.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; } +.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; } +.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } +.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } +.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; } +.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } +.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } +.@{fa-css-prefix}-asl-interpreting:before, +.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } +.@{fa-css-prefix}-deafness:before, +.@{fa-css-prefix}-hard-of-hearing:before, +.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } +.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } +.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } +.@{fa-css-prefix}-signing:before, +.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } +.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } +.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } +.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } +.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } +.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } +.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } +.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } +.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } +.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } +.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } +.@{fa-css-prefix}-google-plus-circle:before, +.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; } +.@{fa-css-prefix}-fa:before, +.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } +.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; } +.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } +.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; } +.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } +.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } +.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; } +.@{fa-css-prefix}-vcard:before, +.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } +.@{fa-css-prefix}-vcard-o:before, +.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; } +.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } +.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; } +.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; } +.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } +.@{fa-css-prefix}-drivers-license:before, +.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } +.@{fa-css-prefix}-drivers-license-o:before, +.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; } +.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } +.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } +.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } +.@{fa-css-prefix}-thermometer-4:before, +.@{fa-css-prefix}-thermometer:before, +.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } +.@{fa-css-prefix}-thermometer-3:before, +.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } +.@{fa-css-prefix}-thermometer-2:before, +.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } +.@{fa-css-prefix}-thermometer-1:before, +.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } +.@{fa-css-prefix}-thermometer-0:before, +.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } +.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } +.@{fa-css-prefix}-bathtub:before, +.@{fa-css-prefix}-s15:before, +.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } +.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } +.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } +.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } +.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } +.@{fa-css-prefix}-times-rectangle:before, +.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } +.@{fa-css-prefix}-times-rectangle-o:before, +.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; } +.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } +.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } +.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } +.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } +.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } +.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; } +.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } +.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; } +.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } +.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } +.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/larger.less b/webapp/static/fonts/font-awesome-4.7.0/less/larger.less new file mode 100755 index 0000000..c9d6467 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/larger.less @@ -0,0 +1,13 @@ +// Icon Sizes +// ------------------------- + +/* makes the font 33% larger relative to the icon container */ +.@{fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -15%; +} +.@{fa-css-prefix}-2x { font-size: 2em; } +.@{fa-css-prefix}-3x { font-size: 3em; } +.@{fa-css-prefix}-4x { font-size: 4em; } +.@{fa-css-prefix}-5x { font-size: 5em; } diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/list.less b/webapp/static/fonts/font-awesome-4.7.0/less/list.less new file mode 100755 index 0000000..0b44038 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/list.less @@ -0,0 +1,19 @@ +// List Icons +// ------------------------- + +.@{fa-css-prefix}-ul { + padding-left: 0; + margin-left: @fa-li-width; + list-style-type: none; + > li { position: relative; } +} +.@{fa-css-prefix}-li { + position: absolute; + left: -@fa-li-width; + width: @fa-li-width; + top: (2em / 14); + text-align: center; + &.@{fa-css-prefix}-lg { + left: (-@fa-li-width + (4em / 14)); + } +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/mixins.less b/webapp/static/fonts/font-awesome-4.7.0/less/mixins.less new file mode 100755 index 0000000..beef231 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/mixins.less @@ -0,0 +1,60 @@ +// Mixins +// -------------------------- + +.fa-icon() { + display: inline-block; + font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} + +.fa-icon-rotate(@degrees, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; + -webkit-transform: rotate(@degrees); + -ms-transform: rotate(@degrees); + transform: rotate(@degrees); +} + +.fa-icon-flip(@horiz, @vert, @rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; + -webkit-transform: scale(@horiz, @vert); + -ms-transform: scale(@horiz, @vert); + transform: scale(@horiz, @vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +.sr-only() { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0,0,0,0); + border: 0; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +.sr-only-focusable() { + &:active, + &:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; + } +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/path.less b/webapp/static/fonts/font-awesome-4.7.0/less/path.less new file mode 100755 index 0000000..835be41 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/path.less @@ -0,0 +1,15 @@ +/* FONT PATH + * -------------------------- */ + +@font-face { + font-family: 'FontAwesome'; + src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); + src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), + url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), + url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), + url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), + url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); + // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts + font-weight: normal; + font-style: normal; +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/rotated-flipped.less b/webapp/static/fonts/font-awesome-4.7.0/less/rotated-flipped.less new file mode 100755 index 0000000..f6ba814 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/rotated-flipped.less @@ -0,0 +1,20 @@ +// Rotated & Flipped Icons +// ------------------------- + +.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } +.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } +.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } + +.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } +.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root .@{fa-css-prefix}-rotate-90, +:root .@{fa-css-prefix}-rotate-180, +:root .@{fa-css-prefix}-rotate-270, +:root .@{fa-css-prefix}-flip-horizontal, +:root .@{fa-css-prefix}-flip-vertical { + filter: none; +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/screen-reader.less b/webapp/static/fonts/font-awesome-4.7.0/less/screen-reader.less new file mode 100755 index 0000000..11c1881 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/screen-reader.less @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { .sr-only(); } +.sr-only-focusable { .sr-only-focusable(); } diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/stacked.less b/webapp/static/fonts/font-awesome-4.7.0/less/stacked.less new file mode 100755 index 0000000..fc53fb0 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/stacked.less @@ -0,0 +1,20 @@ +// Stacked Icons +// ------------------------- + +.@{fa-css-prefix}-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.@{fa-css-prefix}-stack-1x { line-height: inherit; } +.@{fa-css-prefix}-stack-2x { font-size: 2em; } +.@{fa-css-prefix}-inverse { color: @fa-inverse; } diff --git a/webapp/static/fonts/font-awesome-4.7.0/less/variables.less b/webapp/static/fonts/font-awesome-4.7.0/less/variables.less new file mode 100755 index 0000000..7ddbbc0 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/less/variables.less @@ -0,0 +1,800 @@ +// Variables +// -------------------------- + +@fa-font-path: "../fonts"; +@fa-font-size-base: 14px; +@fa-line-height-base: 1; +//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly +@fa-css-prefix: fa; +@fa-version: "4.7.0"; +@fa-border-color: #eee; +@fa-inverse: #fff; +@fa-li-width: (30em / 14); + +@fa-var-500px: "\f26e"; +@fa-var-address-book: "\f2b9"; +@fa-var-address-book-o: "\f2ba"; +@fa-var-address-card: "\f2bb"; +@fa-var-address-card-o: "\f2bc"; +@fa-var-adjust: "\f042"; +@fa-var-adn: "\f170"; +@fa-var-align-center: "\f037"; +@fa-var-align-justify: "\f039"; +@fa-var-align-left: "\f036"; +@fa-var-align-right: "\f038"; +@fa-var-amazon: "\f270"; +@fa-var-ambulance: "\f0f9"; +@fa-var-american-sign-language-interpreting: "\f2a3"; +@fa-var-anchor: "\f13d"; +@fa-var-android: "\f17b"; +@fa-var-angellist: "\f209"; +@fa-var-angle-double-down: "\f103"; +@fa-var-angle-double-left: "\f100"; +@fa-var-angle-double-right: "\f101"; +@fa-var-angle-double-up: "\f102"; +@fa-var-angle-down: "\f107"; +@fa-var-angle-left: "\f104"; +@fa-var-angle-right: "\f105"; +@fa-var-angle-up: "\f106"; +@fa-var-apple: "\f179"; +@fa-var-archive: "\f187"; +@fa-var-area-chart: "\f1fe"; +@fa-var-arrow-circle-down: "\f0ab"; +@fa-var-arrow-circle-left: "\f0a8"; +@fa-var-arrow-circle-o-down: "\f01a"; +@fa-var-arrow-circle-o-left: "\f190"; +@fa-var-arrow-circle-o-right: "\f18e"; +@fa-var-arrow-circle-o-up: "\f01b"; +@fa-var-arrow-circle-right: "\f0a9"; +@fa-var-arrow-circle-up: "\f0aa"; +@fa-var-arrow-down: "\f063"; +@fa-var-arrow-left: "\f060"; +@fa-var-arrow-right: "\f061"; +@fa-var-arrow-up: "\f062"; +@fa-var-arrows: "\f047"; +@fa-var-arrows-alt: "\f0b2"; +@fa-var-arrows-h: "\f07e"; +@fa-var-arrows-v: "\f07d"; +@fa-var-asl-interpreting: "\f2a3"; +@fa-var-assistive-listening-systems: "\f2a2"; +@fa-var-asterisk: "\f069"; +@fa-var-at: "\f1fa"; +@fa-var-audio-description: "\f29e"; +@fa-var-automobile: "\f1b9"; +@fa-var-backward: "\f04a"; +@fa-var-balance-scale: "\f24e"; +@fa-var-ban: "\f05e"; +@fa-var-bandcamp: "\f2d5"; +@fa-var-bank: "\f19c"; +@fa-var-bar-chart: "\f080"; +@fa-var-bar-chart-o: "\f080"; +@fa-var-barcode: "\f02a"; +@fa-var-bars: "\f0c9"; +@fa-var-bath: "\f2cd"; +@fa-var-bathtub: "\f2cd"; +@fa-var-battery: "\f240"; +@fa-var-battery-0: "\f244"; +@fa-var-battery-1: "\f243"; +@fa-var-battery-2: "\f242"; +@fa-var-battery-3: "\f241"; +@fa-var-battery-4: "\f240"; +@fa-var-battery-empty: "\f244"; +@fa-var-battery-full: "\f240"; +@fa-var-battery-half: "\f242"; +@fa-var-battery-quarter: "\f243"; +@fa-var-battery-three-quarters: "\f241"; +@fa-var-bed: "\f236"; +@fa-var-beer: "\f0fc"; +@fa-var-behance: "\f1b4"; +@fa-var-behance-square: "\f1b5"; +@fa-var-bell: "\f0f3"; +@fa-var-bell-o: "\f0a2"; +@fa-var-bell-slash: "\f1f6"; +@fa-var-bell-slash-o: "\f1f7"; +@fa-var-bicycle: "\f206"; +@fa-var-binoculars: "\f1e5"; +@fa-var-birthday-cake: "\f1fd"; +@fa-var-bitbucket: "\f171"; +@fa-var-bitbucket-square: "\f172"; +@fa-var-bitcoin: "\f15a"; +@fa-var-black-tie: "\f27e"; +@fa-var-blind: "\f29d"; +@fa-var-bluetooth: "\f293"; +@fa-var-bluetooth-b: "\f294"; +@fa-var-bold: "\f032"; +@fa-var-bolt: "\f0e7"; +@fa-var-bomb: "\f1e2"; +@fa-var-book: "\f02d"; +@fa-var-bookmark: "\f02e"; +@fa-var-bookmark-o: "\f097"; +@fa-var-braille: "\f2a1"; +@fa-var-briefcase: "\f0b1"; +@fa-var-btc: "\f15a"; +@fa-var-bug: "\f188"; +@fa-var-building: "\f1ad"; +@fa-var-building-o: "\f0f7"; +@fa-var-bullhorn: "\f0a1"; +@fa-var-bullseye: "\f140"; +@fa-var-bus: "\f207"; +@fa-var-buysellads: "\f20d"; +@fa-var-cab: "\f1ba"; +@fa-var-calculator: "\f1ec"; +@fa-var-calendar: "\f073"; +@fa-var-calendar-check-o: "\f274"; +@fa-var-calendar-minus-o: "\f272"; +@fa-var-calendar-o: "\f133"; +@fa-var-calendar-plus-o: "\f271"; +@fa-var-calendar-times-o: "\f273"; +@fa-var-camera: "\f030"; +@fa-var-camera-retro: "\f083"; +@fa-var-car: "\f1b9"; +@fa-var-caret-down: "\f0d7"; +@fa-var-caret-left: "\f0d9"; +@fa-var-caret-right: "\f0da"; +@fa-var-caret-square-o-down: "\f150"; +@fa-var-caret-square-o-left: "\f191"; +@fa-var-caret-square-o-right: "\f152"; +@fa-var-caret-square-o-up: "\f151"; +@fa-var-caret-up: "\f0d8"; +@fa-var-cart-arrow-down: "\f218"; +@fa-var-cart-plus: "\f217"; +@fa-var-cc: "\f20a"; +@fa-var-cc-amex: "\f1f3"; +@fa-var-cc-diners-club: "\f24c"; +@fa-var-cc-discover: "\f1f2"; +@fa-var-cc-jcb: "\f24b"; +@fa-var-cc-mastercard: "\f1f1"; +@fa-var-cc-paypal: "\f1f4"; +@fa-var-cc-stripe: "\f1f5"; +@fa-var-cc-visa: "\f1f0"; +@fa-var-certificate: "\f0a3"; +@fa-var-chain: "\f0c1"; +@fa-var-chain-broken: "\f127"; +@fa-var-check: "\f00c"; +@fa-var-check-circle: "\f058"; +@fa-var-check-circle-o: "\f05d"; +@fa-var-check-square: "\f14a"; +@fa-var-check-square-o: "\f046"; +@fa-var-chevron-circle-down: "\f13a"; +@fa-var-chevron-circle-left: "\f137"; +@fa-var-chevron-circle-right: "\f138"; +@fa-var-chevron-circle-up: "\f139"; +@fa-var-chevron-down: "\f078"; +@fa-var-chevron-left: "\f053"; +@fa-var-chevron-right: "\f054"; +@fa-var-chevron-up: "\f077"; +@fa-var-child: "\f1ae"; +@fa-var-chrome: "\f268"; +@fa-var-circle: "\f111"; +@fa-var-circle-o: "\f10c"; +@fa-var-circle-o-notch: "\f1ce"; +@fa-var-circle-thin: "\f1db"; +@fa-var-clipboard: "\f0ea"; +@fa-var-clock-o: "\f017"; +@fa-var-clone: "\f24d"; +@fa-var-close: "\f00d"; +@fa-var-cloud: "\f0c2"; +@fa-var-cloud-download: "\f0ed"; +@fa-var-cloud-upload: "\f0ee"; +@fa-var-cny: "\f157"; +@fa-var-code: "\f121"; +@fa-var-code-fork: "\f126"; +@fa-var-codepen: "\f1cb"; +@fa-var-codiepie: "\f284"; +@fa-var-coffee: "\f0f4"; +@fa-var-cog: "\f013"; +@fa-var-cogs: "\f085"; +@fa-var-columns: "\f0db"; +@fa-var-comment: "\f075"; +@fa-var-comment-o: "\f0e5"; +@fa-var-commenting: "\f27a"; +@fa-var-commenting-o: "\f27b"; +@fa-var-comments: "\f086"; +@fa-var-comments-o: "\f0e6"; +@fa-var-compass: "\f14e"; +@fa-var-compress: "\f066"; +@fa-var-connectdevelop: "\f20e"; +@fa-var-contao: "\f26d"; +@fa-var-copy: "\f0c5"; +@fa-var-copyright: "\f1f9"; +@fa-var-creative-commons: "\f25e"; +@fa-var-credit-card: "\f09d"; +@fa-var-credit-card-alt: "\f283"; +@fa-var-crop: "\f125"; +@fa-var-crosshairs: "\f05b"; +@fa-var-css3: "\f13c"; +@fa-var-cube: "\f1b2"; +@fa-var-cubes: "\f1b3"; +@fa-var-cut: "\f0c4"; +@fa-var-cutlery: "\f0f5"; +@fa-var-dashboard: "\f0e4"; +@fa-var-dashcube: "\f210"; +@fa-var-database: "\f1c0"; +@fa-var-deaf: "\f2a4"; +@fa-var-deafness: "\f2a4"; +@fa-var-dedent: "\f03b"; +@fa-var-delicious: "\f1a5"; +@fa-var-desktop: "\f108"; +@fa-var-deviantart: "\f1bd"; +@fa-var-diamond: "\f219"; +@fa-var-digg: "\f1a6"; +@fa-var-dollar: "\f155"; +@fa-var-dot-circle-o: "\f192"; +@fa-var-download: "\f019"; +@fa-var-dribbble: "\f17d"; +@fa-var-drivers-license: "\f2c2"; +@fa-var-drivers-license-o: "\f2c3"; +@fa-var-dropbox: "\f16b"; +@fa-var-drupal: "\f1a9"; +@fa-var-edge: "\f282"; +@fa-var-edit: "\f044"; +@fa-var-eercast: "\f2da"; +@fa-var-eject: "\f052"; +@fa-var-ellipsis-h: "\f141"; +@fa-var-ellipsis-v: "\f142"; +@fa-var-empire: "\f1d1"; +@fa-var-envelope: "\f0e0"; +@fa-var-envelope-o: "\f003"; +@fa-var-envelope-open: "\f2b6"; +@fa-var-envelope-open-o: "\f2b7"; +@fa-var-envelope-square: "\f199"; +@fa-var-envira: "\f299"; +@fa-var-eraser: "\f12d"; +@fa-var-etsy: "\f2d7"; +@fa-var-eur: "\f153"; +@fa-var-euro: "\f153"; +@fa-var-exchange: "\f0ec"; +@fa-var-exclamation: "\f12a"; +@fa-var-exclamation-circle: "\f06a"; +@fa-var-exclamation-triangle: "\f071"; +@fa-var-expand: "\f065"; +@fa-var-expeditedssl: "\f23e"; +@fa-var-external-link: "\f08e"; +@fa-var-external-link-square: "\f14c"; +@fa-var-eye: "\f06e"; +@fa-var-eye-slash: "\f070"; +@fa-var-eyedropper: "\f1fb"; +@fa-var-fa: "\f2b4"; +@fa-var-facebook: "\f09a"; +@fa-var-facebook-f: "\f09a"; +@fa-var-facebook-official: "\f230"; +@fa-var-facebook-square: "\f082"; +@fa-var-fast-backward: "\f049"; +@fa-var-fast-forward: "\f050"; +@fa-var-fax: "\f1ac"; +@fa-var-feed: "\f09e"; +@fa-var-female: "\f182"; +@fa-var-fighter-jet: "\f0fb"; +@fa-var-file: "\f15b"; +@fa-var-file-archive-o: "\f1c6"; +@fa-var-file-audio-o: "\f1c7"; +@fa-var-file-code-o: "\f1c9"; +@fa-var-file-excel-o: "\f1c3"; +@fa-var-file-image-o: "\f1c5"; +@fa-var-file-movie-o: "\f1c8"; +@fa-var-file-o: "\f016"; +@fa-var-file-pdf-o: "\f1c1"; +@fa-var-file-photo-o: "\f1c5"; +@fa-var-file-picture-o: "\f1c5"; +@fa-var-file-powerpoint-o: "\f1c4"; +@fa-var-file-sound-o: "\f1c7"; +@fa-var-file-text: "\f15c"; +@fa-var-file-text-o: "\f0f6"; +@fa-var-file-video-o: "\f1c8"; +@fa-var-file-word-o: "\f1c2"; +@fa-var-file-zip-o: "\f1c6"; +@fa-var-files-o: "\f0c5"; +@fa-var-film: "\f008"; +@fa-var-filter: "\f0b0"; +@fa-var-fire: "\f06d"; +@fa-var-fire-extinguisher: "\f134"; +@fa-var-firefox: "\f269"; +@fa-var-first-order: "\f2b0"; +@fa-var-flag: "\f024"; +@fa-var-flag-checkered: "\f11e"; +@fa-var-flag-o: "\f11d"; +@fa-var-flash: "\f0e7"; +@fa-var-flask: "\f0c3"; +@fa-var-flickr: "\f16e"; +@fa-var-floppy-o: "\f0c7"; +@fa-var-folder: "\f07b"; +@fa-var-folder-o: "\f114"; +@fa-var-folder-open: "\f07c"; +@fa-var-folder-open-o: "\f115"; +@fa-var-font: "\f031"; +@fa-var-font-awesome: "\f2b4"; +@fa-var-fonticons: "\f280"; +@fa-var-fort-awesome: "\f286"; +@fa-var-forumbee: "\f211"; +@fa-var-forward: "\f04e"; +@fa-var-foursquare: "\f180"; +@fa-var-free-code-camp: "\f2c5"; +@fa-var-frown-o: "\f119"; +@fa-var-futbol-o: "\f1e3"; +@fa-var-gamepad: "\f11b"; +@fa-var-gavel: "\f0e3"; +@fa-var-gbp: "\f154"; +@fa-var-ge: "\f1d1"; +@fa-var-gear: "\f013"; +@fa-var-gears: "\f085"; +@fa-var-genderless: "\f22d"; +@fa-var-get-pocket: "\f265"; +@fa-var-gg: "\f260"; +@fa-var-gg-circle: "\f261"; +@fa-var-gift: "\f06b"; +@fa-var-git: "\f1d3"; +@fa-var-git-square: "\f1d2"; +@fa-var-github: "\f09b"; +@fa-var-github-alt: "\f113"; +@fa-var-github-square: "\f092"; +@fa-var-gitlab: "\f296"; +@fa-var-gittip: "\f184"; +@fa-var-glass: "\f000"; +@fa-var-glide: "\f2a5"; +@fa-var-glide-g: "\f2a6"; +@fa-var-globe: "\f0ac"; +@fa-var-google: "\f1a0"; +@fa-var-google-plus: "\f0d5"; +@fa-var-google-plus-circle: "\f2b3"; +@fa-var-google-plus-official: "\f2b3"; +@fa-var-google-plus-square: "\f0d4"; +@fa-var-google-wallet: "\f1ee"; +@fa-var-graduation-cap: "\f19d"; +@fa-var-gratipay: "\f184"; +@fa-var-grav: "\f2d6"; +@fa-var-group: "\f0c0"; +@fa-var-h-square: "\f0fd"; +@fa-var-hacker-news: "\f1d4"; +@fa-var-hand-grab-o: "\f255"; +@fa-var-hand-lizard-o: "\f258"; +@fa-var-hand-o-down: "\f0a7"; +@fa-var-hand-o-left: "\f0a5"; +@fa-var-hand-o-right: "\f0a4"; +@fa-var-hand-o-up: "\f0a6"; +@fa-var-hand-paper-o: "\f256"; +@fa-var-hand-peace-o: "\f25b"; +@fa-var-hand-pointer-o: "\f25a"; +@fa-var-hand-rock-o: "\f255"; +@fa-var-hand-scissors-o: "\f257"; +@fa-var-hand-spock-o: "\f259"; +@fa-var-hand-stop-o: "\f256"; +@fa-var-handshake-o: "\f2b5"; +@fa-var-hard-of-hearing: "\f2a4"; +@fa-var-hashtag: "\f292"; +@fa-var-hdd-o: "\f0a0"; +@fa-var-header: "\f1dc"; +@fa-var-headphones: "\f025"; +@fa-var-heart: "\f004"; +@fa-var-heart-o: "\f08a"; +@fa-var-heartbeat: "\f21e"; +@fa-var-history: "\f1da"; +@fa-var-home: "\f015"; +@fa-var-hospital-o: "\f0f8"; +@fa-var-hotel: "\f236"; +@fa-var-hourglass: "\f254"; +@fa-var-hourglass-1: "\f251"; +@fa-var-hourglass-2: "\f252"; +@fa-var-hourglass-3: "\f253"; +@fa-var-hourglass-end: "\f253"; +@fa-var-hourglass-half: "\f252"; +@fa-var-hourglass-o: "\f250"; +@fa-var-hourglass-start: "\f251"; +@fa-var-houzz: "\f27c"; +@fa-var-html5: "\f13b"; +@fa-var-i-cursor: "\f246"; +@fa-var-id-badge: "\f2c1"; +@fa-var-id-card: "\f2c2"; +@fa-var-id-card-o: "\f2c3"; +@fa-var-ils: "\f20b"; +@fa-var-image: "\f03e"; +@fa-var-imdb: "\f2d8"; +@fa-var-inbox: "\f01c"; +@fa-var-indent: "\f03c"; +@fa-var-industry: "\f275"; +@fa-var-info: "\f129"; +@fa-var-info-circle: "\f05a"; +@fa-var-inr: "\f156"; +@fa-var-instagram: "\f16d"; +@fa-var-institution: "\f19c"; +@fa-var-internet-explorer: "\f26b"; +@fa-var-intersex: "\f224"; +@fa-var-ioxhost: "\f208"; +@fa-var-italic: "\f033"; +@fa-var-joomla: "\f1aa"; +@fa-var-jpy: "\f157"; +@fa-var-jsfiddle: "\f1cc"; +@fa-var-key: "\f084"; +@fa-var-keyboard-o: "\f11c"; +@fa-var-krw: "\f159"; +@fa-var-language: "\f1ab"; +@fa-var-laptop: "\f109"; +@fa-var-lastfm: "\f202"; +@fa-var-lastfm-square: "\f203"; +@fa-var-leaf: "\f06c"; +@fa-var-leanpub: "\f212"; +@fa-var-legal: "\f0e3"; +@fa-var-lemon-o: "\f094"; +@fa-var-level-down: "\f149"; +@fa-var-level-up: "\f148"; +@fa-var-life-bouy: "\f1cd"; +@fa-var-life-buoy: "\f1cd"; +@fa-var-life-ring: "\f1cd"; +@fa-var-life-saver: "\f1cd"; +@fa-var-lightbulb-o: "\f0eb"; +@fa-var-line-chart: "\f201"; +@fa-var-link: "\f0c1"; +@fa-var-linkedin: "\f0e1"; +@fa-var-linkedin-square: "\f08c"; +@fa-var-linode: "\f2b8"; +@fa-var-linux: "\f17c"; +@fa-var-list: "\f03a"; +@fa-var-list-alt: "\f022"; +@fa-var-list-ol: "\f0cb"; +@fa-var-list-ul: "\f0ca"; +@fa-var-location-arrow: "\f124"; +@fa-var-lock: "\f023"; +@fa-var-long-arrow-down: "\f175"; +@fa-var-long-arrow-left: "\f177"; +@fa-var-long-arrow-right: "\f178"; +@fa-var-long-arrow-up: "\f176"; +@fa-var-low-vision: "\f2a8"; +@fa-var-magic: "\f0d0"; +@fa-var-magnet: "\f076"; +@fa-var-mail-forward: "\f064"; +@fa-var-mail-reply: "\f112"; +@fa-var-mail-reply-all: "\f122"; +@fa-var-male: "\f183"; +@fa-var-map: "\f279"; +@fa-var-map-marker: "\f041"; +@fa-var-map-o: "\f278"; +@fa-var-map-pin: "\f276"; +@fa-var-map-signs: "\f277"; +@fa-var-mars: "\f222"; +@fa-var-mars-double: "\f227"; +@fa-var-mars-stroke: "\f229"; +@fa-var-mars-stroke-h: "\f22b"; +@fa-var-mars-stroke-v: "\f22a"; +@fa-var-maxcdn: "\f136"; +@fa-var-meanpath: "\f20c"; +@fa-var-medium: "\f23a"; +@fa-var-medkit: "\f0fa"; +@fa-var-meetup: "\f2e0"; +@fa-var-meh-o: "\f11a"; +@fa-var-mercury: "\f223"; +@fa-var-microchip: "\f2db"; +@fa-var-microphone: "\f130"; +@fa-var-microphone-slash: "\f131"; +@fa-var-minus: "\f068"; +@fa-var-minus-circle: "\f056"; +@fa-var-minus-square: "\f146"; +@fa-var-minus-square-o: "\f147"; +@fa-var-mixcloud: "\f289"; +@fa-var-mobile: "\f10b"; +@fa-var-mobile-phone: "\f10b"; +@fa-var-modx: "\f285"; +@fa-var-money: "\f0d6"; +@fa-var-moon-o: "\f186"; +@fa-var-mortar-board: "\f19d"; +@fa-var-motorcycle: "\f21c"; +@fa-var-mouse-pointer: "\f245"; +@fa-var-music: "\f001"; +@fa-var-navicon: "\f0c9"; +@fa-var-neuter: "\f22c"; +@fa-var-newspaper-o: "\f1ea"; +@fa-var-object-group: "\f247"; +@fa-var-object-ungroup: "\f248"; +@fa-var-odnoklassniki: "\f263"; +@fa-var-odnoklassniki-square: "\f264"; +@fa-var-opencart: "\f23d"; +@fa-var-openid: "\f19b"; +@fa-var-opera: "\f26a"; +@fa-var-optin-monster: "\f23c"; +@fa-var-outdent: "\f03b"; +@fa-var-pagelines: "\f18c"; +@fa-var-paint-brush: "\f1fc"; +@fa-var-paper-plane: "\f1d8"; +@fa-var-paper-plane-o: "\f1d9"; +@fa-var-paperclip: "\f0c6"; +@fa-var-paragraph: "\f1dd"; +@fa-var-paste: "\f0ea"; +@fa-var-pause: "\f04c"; +@fa-var-pause-circle: "\f28b"; +@fa-var-pause-circle-o: "\f28c"; +@fa-var-paw: "\f1b0"; +@fa-var-paypal: "\f1ed"; +@fa-var-pencil: "\f040"; +@fa-var-pencil-square: "\f14b"; +@fa-var-pencil-square-o: "\f044"; +@fa-var-percent: "\f295"; +@fa-var-phone: "\f095"; +@fa-var-phone-square: "\f098"; +@fa-var-photo: "\f03e"; +@fa-var-picture-o: "\f03e"; +@fa-var-pie-chart: "\f200"; +@fa-var-pied-piper: "\f2ae"; +@fa-var-pied-piper-alt: "\f1a8"; +@fa-var-pied-piper-pp: "\f1a7"; +@fa-var-pinterest: "\f0d2"; +@fa-var-pinterest-p: "\f231"; +@fa-var-pinterest-square: "\f0d3"; +@fa-var-plane: "\f072"; +@fa-var-play: "\f04b"; +@fa-var-play-circle: "\f144"; +@fa-var-play-circle-o: "\f01d"; +@fa-var-plug: "\f1e6"; +@fa-var-plus: "\f067"; +@fa-var-plus-circle: "\f055"; +@fa-var-plus-square: "\f0fe"; +@fa-var-plus-square-o: "\f196"; +@fa-var-podcast: "\f2ce"; +@fa-var-power-off: "\f011"; +@fa-var-print: "\f02f"; +@fa-var-product-hunt: "\f288"; +@fa-var-puzzle-piece: "\f12e"; +@fa-var-qq: "\f1d6"; +@fa-var-qrcode: "\f029"; +@fa-var-question: "\f128"; +@fa-var-question-circle: "\f059"; +@fa-var-question-circle-o: "\f29c"; +@fa-var-quora: "\f2c4"; +@fa-var-quote-left: "\f10d"; +@fa-var-quote-right: "\f10e"; +@fa-var-ra: "\f1d0"; +@fa-var-random: "\f074"; +@fa-var-ravelry: "\f2d9"; +@fa-var-rebel: "\f1d0"; +@fa-var-recycle: "\f1b8"; +@fa-var-reddit: "\f1a1"; +@fa-var-reddit-alien: "\f281"; +@fa-var-reddit-square: "\f1a2"; +@fa-var-refresh: "\f021"; +@fa-var-registered: "\f25d"; +@fa-var-remove: "\f00d"; +@fa-var-renren: "\f18b"; +@fa-var-reorder: "\f0c9"; +@fa-var-repeat: "\f01e"; +@fa-var-reply: "\f112"; +@fa-var-reply-all: "\f122"; +@fa-var-resistance: "\f1d0"; +@fa-var-retweet: "\f079"; +@fa-var-rmb: "\f157"; +@fa-var-road: "\f018"; +@fa-var-rocket: "\f135"; +@fa-var-rotate-left: "\f0e2"; +@fa-var-rotate-right: "\f01e"; +@fa-var-rouble: "\f158"; +@fa-var-rss: "\f09e"; +@fa-var-rss-square: "\f143"; +@fa-var-rub: "\f158"; +@fa-var-ruble: "\f158"; +@fa-var-rupee: "\f156"; +@fa-var-s15: "\f2cd"; +@fa-var-safari: "\f267"; +@fa-var-save: "\f0c7"; +@fa-var-scissors: "\f0c4"; +@fa-var-scribd: "\f28a"; +@fa-var-search: "\f002"; +@fa-var-search-minus: "\f010"; +@fa-var-search-plus: "\f00e"; +@fa-var-sellsy: "\f213"; +@fa-var-send: "\f1d8"; +@fa-var-send-o: "\f1d9"; +@fa-var-server: "\f233"; +@fa-var-share: "\f064"; +@fa-var-share-alt: "\f1e0"; +@fa-var-share-alt-square: "\f1e1"; +@fa-var-share-square: "\f14d"; +@fa-var-share-square-o: "\f045"; +@fa-var-shekel: "\f20b"; +@fa-var-sheqel: "\f20b"; +@fa-var-shield: "\f132"; +@fa-var-ship: "\f21a"; +@fa-var-shirtsinbulk: "\f214"; +@fa-var-shopping-bag: "\f290"; +@fa-var-shopping-basket: "\f291"; +@fa-var-shopping-cart: "\f07a"; +@fa-var-shower: "\f2cc"; +@fa-var-sign-in: "\f090"; +@fa-var-sign-language: "\f2a7"; +@fa-var-sign-out: "\f08b"; +@fa-var-signal: "\f012"; +@fa-var-signing: "\f2a7"; +@fa-var-simplybuilt: "\f215"; +@fa-var-sitemap: "\f0e8"; +@fa-var-skyatlas: "\f216"; +@fa-var-skype: "\f17e"; +@fa-var-slack: "\f198"; +@fa-var-sliders: "\f1de"; +@fa-var-slideshare: "\f1e7"; +@fa-var-smile-o: "\f118"; +@fa-var-snapchat: "\f2ab"; +@fa-var-snapchat-ghost: "\f2ac"; +@fa-var-snapchat-square: "\f2ad"; +@fa-var-snowflake-o: "\f2dc"; +@fa-var-soccer-ball-o: "\f1e3"; +@fa-var-sort: "\f0dc"; +@fa-var-sort-alpha-asc: "\f15d"; +@fa-var-sort-alpha-desc: "\f15e"; +@fa-var-sort-amount-asc: "\f160"; +@fa-var-sort-amount-desc: "\f161"; +@fa-var-sort-asc: "\f0de"; +@fa-var-sort-desc: "\f0dd"; +@fa-var-sort-down: "\f0dd"; +@fa-var-sort-numeric-asc: "\f162"; +@fa-var-sort-numeric-desc: "\f163"; +@fa-var-sort-up: "\f0de"; +@fa-var-soundcloud: "\f1be"; +@fa-var-space-shuttle: "\f197"; +@fa-var-spinner: "\f110"; +@fa-var-spoon: "\f1b1"; +@fa-var-spotify: "\f1bc"; +@fa-var-square: "\f0c8"; +@fa-var-square-o: "\f096"; +@fa-var-stack-exchange: "\f18d"; +@fa-var-stack-overflow: "\f16c"; +@fa-var-star: "\f005"; +@fa-var-star-half: "\f089"; +@fa-var-star-half-empty: "\f123"; +@fa-var-star-half-full: "\f123"; +@fa-var-star-half-o: "\f123"; +@fa-var-star-o: "\f006"; +@fa-var-steam: "\f1b6"; +@fa-var-steam-square: "\f1b7"; +@fa-var-step-backward: "\f048"; +@fa-var-step-forward: "\f051"; +@fa-var-stethoscope: "\f0f1"; +@fa-var-sticky-note: "\f249"; +@fa-var-sticky-note-o: "\f24a"; +@fa-var-stop: "\f04d"; +@fa-var-stop-circle: "\f28d"; +@fa-var-stop-circle-o: "\f28e"; +@fa-var-street-view: "\f21d"; +@fa-var-strikethrough: "\f0cc"; +@fa-var-stumbleupon: "\f1a4"; +@fa-var-stumbleupon-circle: "\f1a3"; +@fa-var-subscript: "\f12c"; +@fa-var-subway: "\f239"; +@fa-var-suitcase: "\f0f2"; +@fa-var-sun-o: "\f185"; +@fa-var-superpowers: "\f2dd"; +@fa-var-superscript: "\f12b"; +@fa-var-support: "\f1cd"; +@fa-var-table: "\f0ce"; +@fa-var-tablet: "\f10a"; +@fa-var-tachometer: "\f0e4"; +@fa-var-tag: "\f02b"; +@fa-var-tags: "\f02c"; +@fa-var-tasks: "\f0ae"; +@fa-var-taxi: "\f1ba"; +@fa-var-telegram: "\f2c6"; +@fa-var-television: "\f26c"; +@fa-var-tencent-weibo: "\f1d5"; +@fa-var-terminal: "\f120"; +@fa-var-text-height: "\f034"; +@fa-var-text-width: "\f035"; +@fa-var-th: "\f00a"; +@fa-var-th-large: "\f009"; +@fa-var-th-list: "\f00b"; +@fa-var-themeisle: "\f2b2"; +@fa-var-thermometer: "\f2c7"; +@fa-var-thermometer-0: "\f2cb"; +@fa-var-thermometer-1: "\f2ca"; +@fa-var-thermometer-2: "\f2c9"; +@fa-var-thermometer-3: "\f2c8"; +@fa-var-thermometer-4: "\f2c7"; +@fa-var-thermometer-empty: "\f2cb"; +@fa-var-thermometer-full: "\f2c7"; +@fa-var-thermometer-half: "\f2c9"; +@fa-var-thermometer-quarter: "\f2ca"; +@fa-var-thermometer-three-quarters: "\f2c8"; +@fa-var-thumb-tack: "\f08d"; +@fa-var-thumbs-down: "\f165"; +@fa-var-thumbs-o-down: "\f088"; +@fa-var-thumbs-o-up: "\f087"; +@fa-var-thumbs-up: "\f164"; +@fa-var-ticket: "\f145"; +@fa-var-times: "\f00d"; +@fa-var-times-circle: "\f057"; +@fa-var-times-circle-o: "\f05c"; +@fa-var-times-rectangle: "\f2d3"; +@fa-var-times-rectangle-o: "\f2d4"; +@fa-var-tint: "\f043"; +@fa-var-toggle-down: "\f150"; +@fa-var-toggle-left: "\f191"; +@fa-var-toggle-off: "\f204"; +@fa-var-toggle-on: "\f205"; +@fa-var-toggle-right: "\f152"; +@fa-var-toggle-up: "\f151"; +@fa-var-trademark: "\f25c"; +@fa-var-train: "\f238"; +@fa-var-transgender: "\f224"; +@fa-var-transgender-alt: "\f225"; +@fa-var-trash: "\f1f8"; +@fa-var-trash-o: "\f014"; +@fa-var-tree: "\f1bb"; +@fa-var-trello: "\f181"; +@fa-var-tripadvisor: "\f262"; +@fa-var-trophy: "\f091"; +@fa-var-truck: "\f0d1"; +@fa-var-try: "\f195"; +@fa-var-tty: "\f1e4"; +@fa-var-tumblr: "\f173"; +@fa-var-tumblr-square: "\f174"; +@fa-var-turkish-lira: "\f195"; +@fa-var-tv: "\f26c"; +@fa-var-twitch: "\f1e8"; +@fa-var-twitter: "\f099"; +@fa-var-twitter-square: "\f081"; +@fa-var-umbrella: "\f0e9"; +@fa-var-underline: "\f0cd"; +@fa-var-undo: "\f0e2"; +@fa-var-universal-access: "\f29a"; +@fa-var-university: "\f19c"; +@fa-var-unlink: "\f127"; +@fa-var-unlock: "\f09c"; +@fa-var-unlock-alt: "\f13e"; +@fa-var-unsorted: "\f0dc"; +@fa-var-upload: "\f093"; +@fa-var-usb: "\f287"; +@fa-var-usd: "\f155"; +@fa-var-user: "\f007"; +@fa-var-user-circle: "\f2bd"; +@fa-var-user-circle-o: "\f2be"; +@fa-var-user-md: "\f0f0"; +@fa-var-user-o: "\f2c0"; +@fa-var-user-plus: "\f234"; +@fa-var-user-secret: "\f21b"; +@fa-var-user-times: "\f235"; +@fa-var-users: "\f0c0"; +@fa-var-vcard: "\f2bb"; +@fa-var-vcard-o: "\f2bc"; +@fa-var-venus: "\f221"; +@fa-var-venus-double: "\f226"; +@fa-var-venus-mars: "\f228"; +@fa-var-viacoin: "\f237"; +@fa-var-viadeo: "\f2a9"; +@fa-var-viadeo-square: "\f2aa"; +@fa-var-video-camera: "\f03d"; +@fa-var-vimeo: "\f27d"; +@fa-var-vimeo-square: "\f194"; +@fa-var-vine: "\f1ca"; +@fa-var-vk: "\f189"; +@fa-var-volume-control-phone: "\f2a0"; +@fa-var-volume-down: "\f027"; +@fa-var-volume-off: "\f026"; +@fa-var-volume-up: "\f028"; +@fa-var-warning: "\f071"; +@fa-var-wechat: "\f1d7"; +@fa-var-weibo: "\f18a"; +@fa-var-weixin: "\f1d7"; +@fa-var-whatsapp: "\f232"; +@fa-var-wheelchair: "\f193"; +@fa-var-wheelchair-alt: "\f29b"; +@fa-var-wifi: "\f1eb"; +@fa-var-wikipedia-w: "\f266"; +@fa-var-window-close: "\f2d3"; +@fa-var-window-close-o: "\f2d4"; +@fa-var-window-maximize: "\f2d0"; +@fa-var-window-minimize: "\f2d1"; +@fa-var-window-restore: "\f2d2"; +@fa-var-windows: "\f17a"; +@fa-var-won: "\f159"; +@fa-var-wordpress: "\f19a"; +@fa-var-wpbeginner: "\f297"; +@fa-var-wpexplorer: "\f2de"; +@fa-var-wpforms: "\f298"; +@fa-var-wrench: "\f0ad"; +@fa-var-xing: "\f168"; +@fa-var-xing-square: "\f169"; +@fa-var-y-combinator: "\f23b"; +@fa-var-y-combinator-square: "\f1d4"; +@fa-var-yahoo: "\f19e"; +@fa-var-yc: "\f23b"; +@fa-var-yc-square: "\f1d4"; +@fa-var-yelp: "\f1e9"; +@fa-var-yen: "\f157"; +@fa-var-yoast: "\f2b1"; +@fa-var-youtube: "\f167"; +@fa-var-youtube-play: "\f16a"; +@fa-var-youtube-square: "\f166"; + diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_animated.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_animated.scss new file mode 100755 index 0000000..8a020db --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_animated.scss @@ -0,0 +1,34 @@ +// Spinning Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +.#{$fa-css-prefix}-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss new file mode 100755 index 0000000..d4b85a0 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss @@ -0,0 +1,25 @@ +// Bordered & Pulled +// ------------------------- + +.#{$fa-css-prefix}-border { + padding: .2em .25em .15em; + border: solid .08em $fa-border-color; + border-radius: .1em; +} + +.#{$fa-css-prefix}-pull-left { float: left; } +.#{$fa-css-prefix}-pull-right { float: right; } + +.#{$fa-css-prefix} { + &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } + &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } +} + +/* Deprecated as of 4.4.0 */ +.pull-right { float: right; } +.pull-left { float: left; } + +.#{$fa-css-prefix} { + &.pull-left { margin-right: .3em; } + &.pull-right { margin-left: .3em; } +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_core.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_core.scss new file mode 100755 index 0000000..7425ef8 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_core.scss @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.#{$fa-css-prefix} { + display: inline-block; + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss new file mode 100755 index 0000000..b221c98 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.#{$fa-css-prefix}-fw { + width: (18em / 14); + text-align: center; +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_icons.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_icons.scss new file mode 100755 index 0000000..e63e702 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_icons.scss @@ -0,0 +1,789 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; } +.#{$fa-css-prefix}-music:before { content: $fa-var-music; } +.#{$fa-css-prefix}-search:before { content: $fa-var-search; } +.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; } +.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; } +.#{$fa-css-prefix}-star:before { content: $fa-var-star; } +.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; } +.#{$fa-css-prefix}-user:before { content: $fa-var-user; } +.#{$fa-css-prefix}-film:before { content: $fa-var-film; } +.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; } +.#{$fa-css-prefix}-th:before { content: $fa-var-th; } +.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; } +.#{$fa-css-prefix}-check:before { content: $fa-var-check; } +.#{$fa-css-prefix}-remove:before, +.#{$fa-css-prefix}-close:before, +.#{$fa-css-prefix}-times:before { content: $fa-var-times; } +.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; } +.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; } +.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; } +.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; } +.#{$fa-css-prefix}-gear:before, +.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; } +.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; } +.#{$fa-css-prefix}-home:before { content: $fa-var-home; } +.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; } +.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; } +.#{$fa-css-prefix}-road:before { content: $fa-var-road; } +.#{$fa-css-prefix}-download:before { content: $fa-var-download; } +.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; } +.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; } +.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; } +.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; } +.#{$fa-css-prefix}-rotate-right:before, +.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; } +.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; } +.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; } +.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; } +.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; } +.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; } +.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; } +.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; } +.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; } +.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; } +.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; } +.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; } +.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; } +.#{$fa-css-prefix}-book:before { content: $fa-var-book; } +.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; } +.#{$fa-css-prefix}-print:before { content: $fa-var-print; } +.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; } +.#{$fa-css-prefix}-font:before { content: $fa-var-font; } +.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; } +.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; } +.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; } +.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; } +.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; } +.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; } +.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; } +.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; } +.#{$fa-css-prefix}-list:before { content: $fa-var-list; } +.#{$fa-css-prefix}-dedent:before, +.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; } +.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; } +.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; } +.#{$fa-css-prefix}-photo:before, +.#{$fa-css-prefix}-image:before, +.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; } +.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; } +.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; } +.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; } +.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; } +.#{$fa-css-prefix}-edit:before, +.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; } +.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; } +.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; } +.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; } +.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; } +.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; } +.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; } +.#{$fa-css-prefix}-play:before { content: $fa-var-play; } +.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; } +.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; } +.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; } +.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; } +.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; } +.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; } +.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; } +.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; } +.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; } +.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; } +.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; } +.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; } +.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; } +.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; } +.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; } +.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; } +.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; } +.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; } +.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; } +.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; } +.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; } +.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; } +.#{$fa-css-prefix}-mail-forward:before, +.#{$fa-css-prefix}-share:before { content: $fa-var-share; } +.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; } +.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; } +.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; } +.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; } +.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; } +.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; } +.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; } +.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; } +.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; } +.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; } +.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; } +.#{$fa-css-prefix}-warning:before, +.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; } +.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; } +.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; } +.#{$fa-css-prefix}-random:before { content: $fa-var-random; } +.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; } +.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; } +.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; } +.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; } +.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; } +.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; } +.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; } +.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; } +.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; } +.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; } +.#{$fa-css-prefix}-bar-chart-o:before, +.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; } +.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; } +.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; } +.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; } +.#{$fa-css-prefix}-key:before { content: $fa-var-key; } +.#{$fa-css-prefix}-gears:before, +.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; } +.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; } +.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; } +.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; } +.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; } +.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; } +.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; } +.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; } +.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; } +.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; } +.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; } +.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; } +.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; } +.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; } +.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; } +.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; } +.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; } +.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; } +.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; } +.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; } +.#{$fa-css-prefix}-facebook-f:before, +.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; } +.#{$fa-css-prefix}-github:before { content: $fa-var-github; } +.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; } +.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; } +.#{$fa-css-prefix}-feed:before, +.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; } +.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; } +.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; } +.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; } +.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; } +.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; } +.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; } +.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; } +.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; } +.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; } +.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; } +.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; } +.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; } +.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; } +.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; } +.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; } +.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; } +.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; } +.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; } +.#{$fa-css-prefix}-group:before, +.#{$fa-css-prefix}-users:before { content: $fa-var-users; } +.#{$fa-css-prefix}-chain:before, +.#{$fa-css-prefix}-link:before { content: $fa-var-link; } +.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; } +.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; } +.#{$fa-css-prefix}-cut:before, +.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; } +.#{$fa-css-prefix}-copy:before, +.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; } +.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; } +.#{$fa-css-prefix}-save:before, +.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; } +.#{$fa-css-prefix}-square:before { content: $fa-var-square; } +.#{$fa-css-prefix}-navicon:before, +.#{$fa-css-prefix}-reorder:before, +.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; } +.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; } +.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; } +.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; } +.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; } +.#{$fa-css-prefix}-table:before { content: $fa-var-table; } +.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; } +.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; } +.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; } +.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; } +.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; } +.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; } +.#{$fa-css-prefix}-money:before { content: $fa-var-money; } +.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; } +.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; } +.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; } +.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; } +.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; } +.#{$fa-css-prefix}-unsorted:before, +.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; } +.#{$fa-css-prefix}-sort-down:before, +.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; } +.#{$fa-css-prefix}-sort-up:before, +.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; } +.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; } +.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; } +.#{$fa-css-prefix}-rotate-left:before, +.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; } +.#{$fa-css-prefix}-legal:before, +.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; } +.#{$fa-css-prefix}-dashboard:before, +.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; } +.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; } +.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; } +.#{$fa-css-prefix}-flash:before, +.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; } +.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; } +.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; } +.#{$fa-css-prefix}-paste:before, +.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; } +.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; } +.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; } +.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; } +.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; } +.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; } +.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; } +.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; } +.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; } +.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; } +.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; } +.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; } +.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; } +.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; } +.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; } +.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; } +.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; } +.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; } +.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; } +.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; } +.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; } +.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; } +.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; } +.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; } +.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; } +.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; } +.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; } +.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; } +.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; } +.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; } +.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; } +.#{$fa-css-prefix}-mobile-phone:before, +.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; } +.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; } +.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; } +.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; } +.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; } +.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; } +.#{$fa-css-prefix}-mail-reply:before, +.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; } +.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; } +.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; } +.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; } +.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; } +.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; } +.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; } +.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; } +.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; } +.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; } +.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; } +.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; } +.#{$fa-css-prefix}-code:before { content: $fa-var-code; } +.#{$fa-css-prefix}-mail-reply-all:before, +.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; } +.#{$fa-css-prefix}-star-half-empty:before, +.#{$fa-css-prefix}-star-half-full:before, +.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; } +.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; } +.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; } +.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; } +.#{$fa-css-prefix}-unlink:before, +.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; } +.#{$fa-css-prefix}-question:before { content: $fa-var-question; } +.#{$fa-css-prefix}-info:before { content: $fa-var-info; } +.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; } +.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; } +.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; } +.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; } +.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; } +.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; } +.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; } +.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; } +.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; } +.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; } +.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; } +.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; } +.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; } +.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; } +.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; } +.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; } +.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; } +.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; } +.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; } +.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; } +.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; } +.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; } +.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; } +.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; } +.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; } +.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; } +.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; } +.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; } +.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; } +.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; } +.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; } +.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; } +.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; } +.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; } +.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; } +.#{$fa-css-prefix}-toggle-down:before, +.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; } +.#{$fa-css-prefix}-toggle-up:before, +.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; } +.#{$fa-css-prefix}-toggle-right:before, +.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; } +.#{$fa-css-prefix}-euro:before, +.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; } +.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; } +.#{$fa-css-prefix}-dollar:before, +.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; } +.#{$fa-css-prefix}-rupee:before, +.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; } +.#{$fa-css-prefix}-cny:before, +.#{$fa-css-prefix}-rmb:before, +.#{$fa-css-prefix}-yen:before, +.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; } +.#{$fa-css-prefix}-ruble:before, +.#{$fa-css-prefix}-rouble:before, +.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; } +.#{$fa-css-prefix}-won:before, +.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; } +.#{$fa-css-prefix}-bitcoin:before, +.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; } +.#{$fa-css-prefix}-file:before { content: $fa-var-file; } +.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; } +.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; } +.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; } +.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; } +.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; } +.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; } +.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; } +.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; } +.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; } +.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; } +.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; } +.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; } +.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; } +.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; } +.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; } +.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; } +.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; } +.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; } +.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; } +.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; } +.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; } +.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; } +.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; } +.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; } +.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; } +.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; } +.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; } +.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; } +.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; } +.#{$fa-css-prefix}-android:before { content: $fa-var-android; } +.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; } +.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; } +.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; } +.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; } +.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; } +.#{$fa-css-prefix}-female:before { content: $fa-var-female; } +.#{$fa-css-prefix}-male:before { content: $fa-var-male; } +.#{$fa-css-prefix}-gittip:before, +.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; } +.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; } +.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; } +.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; } +.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; } +.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; } +.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; } +.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; } +.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; } +.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; } +.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; } +.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; } +.#{$fa-css-prefix}-toggle-left:before, +.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; } +.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; } +.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; } +.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; } +.#{$fa-css-prefix}-turkish-lira:before, +.#{$fa-css-prefix}-try:before { content: $fa-var-try; } +.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; } +.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; } +.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; } +.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; } +.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; } +.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; } +.#{$fa-css-prefix}-institution:before, +.#{$fa-css-prefix}-bank:before, +.#{$fa-css-prefix}-university:before { content: $fa-var-university; } +.#{$fa-css-prefix}-mortar-board:before, +.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; } +.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; } +.#{$fa-css-prefix}-google:before { content: $fa-var-google; } +.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; } +.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; } +.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; } +.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; } +.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; } +.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; } +.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; } +.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; } +.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; } +.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; } +.#{$fa-css-prefix}-language:before { content: $fa-var-language; } +.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; } +.#{$fa-css-prefix}-building:before { content: $fa-var-building; } +.#{$fa-css-prefix}-child:before { content: $fa-var-child; } +.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; } +.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; } +.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; } +.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; } +.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; } +.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; } +.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; } +.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; } +.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; } +.#{$fa-css-prefix}-automobile:before, +.#{$fa-css-prefix}-car:before { content: $fa-var-car; } +.#{$fa-css-prefix}-cab:before, +.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; } +.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; } +.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; } +.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; } +.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; } +.#{$fa-css-prefix}-database:before { content: $fa-var-database; } +.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; } +.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; } +.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; } +.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; } +.#{$fa-css-prefix}-file-photo-o:before, +.#{$fa-css-prefix}-file-picture-o:before, +.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; } +.#{$fa-css-prefix}-file-zip-o:before, +.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; } +.#{$fa-css-prefix}-file-sound-o:before, +.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; } +.#{$fa-css-prefix}-file-movie-o:before, +.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; } +.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; } +.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; } +.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; } +.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; } +.#{$fa-css-prefix}-life-bouy:before, +.#{$fa-css-prefix}-life-buoy:before, +.#{$fa-css-prefix}-life-saver:before, +.#{$fa-css-prefix}-support:before, +.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; } +.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; } +.#{$fa-css-prefix}-ra:before, +.#{$fa-css-prefix}-resistance:before, +.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; } +.#{$fa-css-prefix}-ge:before, +.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; } +.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; } +.#{$fa-css-prefix}-git:before { content: $fa-var-git; } +.#{$fa-css-prefix}-y-combinator-square:before, +.#{$fa-css-prefix}-yc-square:before, +.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; } +.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; } +.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; } +.#{$fa-css-prefix}-wechat:before, +.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; } +.#{$fa-css-prefix}-send:before, +.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; } +.#{$fa-css-prefix}-send-o:before, +.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; } +.#{$fa-css-prefix}-history:before { content: $fa-var-history; } +.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; } +.#{$fa-css-prefix}-header:before { content: $fa-var-header; } +.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; } +.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; } +.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; } +.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; } +.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; } +.#{$fa-css-prefix}-soccer-ball-o:before, +.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; } +.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; } +.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; } +.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; } +.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; } +.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; } +.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; } +.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; } +.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; } +.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; } +.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; } +.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; } +.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; } +.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; } +.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; } +.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; } +.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; } +.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; } +.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; } +.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; } +.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; } +.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; } +.#{$fa-css-prefix}-at:before { content: $fa-var-at; } +.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; } +.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; } +.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; } +.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; } +.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; } +.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; } +.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; } +.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; } +.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; } +.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; } +.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; } +.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; } +.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; } +.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; } +.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; } +.#{$fa-css-prefix}-shekel:before, +.#{$fa-css-prefix}-sheqel:before, +.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; } +.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; } +.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; } +.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; } +.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; } +.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; } +.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; } +.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; } +.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; } +.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; } +.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; } +.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; } +.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; } +.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; } +.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; } +.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; } +.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; } +.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; } +.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; } +.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; } +.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; } +.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; } +.#{$fa-css-prefix}-intersex:before, +.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; } +.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; } +.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; } +.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; } +.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; } +.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; } +.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; } +.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; } +.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; } +.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; } +.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; } +.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; } +.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; } +.#{$fa-css-prefix}-server:before { content: $fa-var-server; } +.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; } +.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; } +.#{$fa-css-prefix}-hotel:before, +.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; } +.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; } +.#{$fa-css-prefix}-train:before { content: $fa-var-train; } +.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; } +.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; } +.#{$fa-css-prefix}-yc:before, +.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; } +.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; } +.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; } +.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; } +.#{$fa-css-prefix}-battery-4:before, +.#{$fa-css-prefix}-battery:before, +.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; } +.#{$fa-css-prefix}-battery-3:before, +.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; } +.#{$fa-css-prefix}-battery-2:before, +.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; } +.#{$fa-css-prefix}-battery-1:before, +.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; } +.#{$fa-css-prefix}-battery-0:before, +.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; } +.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; } +.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; } +.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; } +.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; } +.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; } +.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; } +.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; } +.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; } +.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; } +.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; } +.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; } +.#{$fa-css-prefix}-hourglass-1:before, +.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; } +.#{$fa-css-prefix}-hourglass-2:before, +.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; } +.#{$fa-css-prefix}-hourglass-3:before, +.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; } +.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; } +.#{$fa-css-prefix}-hand-grab-o:before, +.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; } +.#{$fa-css-prefix}-hand-stop-o:before, +.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; } +.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; } +.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; } +.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; } +.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; } +.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; } +.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; } +.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; } +.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; } +.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; } +.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; } +.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; } +.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; } +.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; } +.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; } +.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; } +.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; } +.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; } +.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; } +.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; } +.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; } +.#{$fa-css-prefix}-tv:before, +.#{$fa-css-prefix}-television:before { content: $fa-var-television; } +.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; } +.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; } +.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; } +.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; } +.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; } +.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; } +.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; } +.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; } +.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; } +.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; } +.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; } +.#{$fa-css-prefix}-map:before { content: $fa-var-map; } +.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; } +.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; } +.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; } +.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; } +.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; } +.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; } +.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; } +.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; } +.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; } +.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; } +.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; } +.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; } +.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; } +.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; } +.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; } +.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; } +.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; } +.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; } +.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; } +.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; } +.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; } +.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; } +.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; } +.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; } +.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; } +.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; } +.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; } +.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; } +.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; } +.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; } +.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; } +.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; } +.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; } +.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; } +.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; } +.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; } +.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; } +.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; } +.#{$fa-css-prefix}-asl-interpreting:before, +.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; } +.#{$fa-css-prefix}-deafness:before, +.#{$fa-css-prefix}-hard-of-hearing:before, +.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; } +.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; } +.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; } +.#{$fa-css-prefix}-signing:before, +.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; } +.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; } +.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; } +.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; } +.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; } +.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; } +.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; } +.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; } +.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } +.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } +.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } +.#{$fa-css-prefix}-google-plus-circle:before, +.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } +.#{$fa-css-prefix}-fa:before, +.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } +.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; } +.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; } +.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; } +.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; } +.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; } +.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; } +.#{$fa-css-prefix}-vcard:before, +.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; } +.#{$fa-css-prefix}-vcard-o:before, +.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; } +.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; } +.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; } +.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; } +.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; } +.#{$fa-css-prefix}-drivers-license:before, +.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; } +.#{$fa-css-prefix}-drivers-license-o:before, +.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; } +.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; } +.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; } +.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; } +.#{$fa-css-prefix}-thermometer-4:before, +.#{$fa-css-prefix}-thermometer:before, +.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; } +.#{$fa-css-prefix}-thermometer-3:before, +.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; } +.#{$fa-css-prefix}-thermometer-2:before, +.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; } +.#{$fa-css-prefix}-thermometer-1:before, +.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; } +.#{$fa-css-prefix}-thermometer-0:before, +.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; } +.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; } +.#{$fa-css-prefix}-bathtub:before, +.#{$fa-css-prefix}-s15:before, +.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; } +.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; } +.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; } +.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; } +.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; } +.#{$fa-css-prefix}-times-rectangle:before, +.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; } +.#{$fa-css-prefix}-times-rectangle-o:before, +.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; } +.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; } +.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; } +.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; } +.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; } +.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; } +.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; } +.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; } +.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; } +.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; } +.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; } +.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; } diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_larger.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_larger.scss new file mode 100755 index 0000000..41e9a81 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_larger.scss @@ -0,0 +1,13 @@ +// Icon Sizes +// ------------------------- + +/* makes the font 33% larger relative to the icon container */ +.#{$fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -15%; +} +.#{$fa-css-prefix}-2x { font-size: 2em; } +.#{$fa-css-prefix}-3x { font-size: 3em; } +.#{$fa-css-prefix}-4x { font-size: 4em; } +.#{$fa-css-prefix}-5x { font-size: 5em; } diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_list.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_list.scss new file mode 100755 index 0000000..7d1e4d5 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_list.scss @@ -0,0 +1,19 @@ +// List Icons +// ------------------------- + +.#{$fa-css-prefix}-ul { + padding-left: 0; + margin-left: $fa-li-width; + list-style-type: none; + > li { position: relative; } +} +.#{$fa-css-prefix}-li { + position: absolute; + left: -$fa-li-width; + width: $fa-li-width; + top: (2em / 14); + text-align: center; + &.#{$fa-css-prefix}-lg { + left: -$fa-li-width + (4em / 14); + } +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_mixins.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_mixins.scss new file mode 100755 index 0000000..c3bbd57 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_mixins.scss @@ -0,0 +1,60 @@ +// Mixins +// -------------------------- + +@mixin fa-icon() { + display: inline-block; + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} + +@mixin fa-icon-rotate($degrees, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; + -webkit-transform: rotate($degrees); + -ms-transform: rotate($degrees); + transform: rotate($degrees); +} + +@mixin fa-icon-flip($horiz, $vert, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; + -webkit-transform: scale($horiz, $vert); + -ms-transform: scale($horiz, $vert); + transform: scale($horiz, $vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +@mixin sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0,0,0,0); + border: 0; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +@mixin sr-only-focusable { + &:active, + &:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; + } +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_path.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_path.scss new file mode 100755 index 0000000..bb457c2 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_path.scss @@ -0,0 +1,15 @@ +/* FONT PATH + * -------------------------- */ + +@font-face { + font-family: 'FontAwesome'; + src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); + src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), + url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), + url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), + url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), + url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); +// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts + font-weight: normal; + font-style: normal; +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss new file mode 100755 index 0000000..a3558fd --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss @@ -0,0 +1,20 @@ +// Rotated & Flipped Icons +// ------------------------- + +.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } +.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } +.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } + +.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } +.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root .#{$fa-css-prefix}-rotate-90, +:root .#{$fa-css-prefix}-rotate-180, +:root .#{$fa-css-prefix}-rotate-270, +:root .#{$fa-css-prefix}-flip-horizontal, +:root .#{$fa-css-prefix}-flip-vertical { + filter: none; +} diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss new file mode 100755 index 0000000..637426f --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { @include sr-only(); } +.sr-only-focusable { @include sr-only-focusable(); } diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_stacked.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_stacked.scss new file mode 100755 index 0000000..aef7403 --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_stacked.scss @@ -0,0 +1,20 @@ +// Stacked Icons +// ------------------------- + +.#{$fa-css-prefix}-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.#{$fa-css-prefix}-stack-1x { line-height: inherit; } +.#{$fa-css-prefix}-stack-2x { font-size: 2em; } +.#{$fa-css-prefix}-inverse { color: $fa-inverse; } diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/_variables.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/_variables.scss new file mode 100755 index 0000000..498fc4a --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/_variables.scss @@ -0,0 +1,800 @@ +// Variables +// -------------------------- + +$fa-font-path: "../fonts" !default; +$fa-font-size-base: 14px !default; +$fa-line-height-base: 1 !default; +//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly +$fa-css-prefix: fa !default; +$fa-version: "4.7.0" !default; +$fa-border-color: #eee !default; +$fa-inverse: #fff !default; +$fa-li-width: (30em / 14) !default; + +$fa-var-500px: "\f26e"; +$fa-var-address-book: "\f2b9"; +$fa-var-address-book-o: "\f2ba"; +$fa-var-address-card: "\f2bb"; +$fa-var-address-card-o: "\f2bc"; +$fa-var-adjust: "\f042"; +$fa-var-adn: "\f170"; +$fa-var-align-center: "\f037"; +$fa-var-align-justify: "\f039"; +$fa-var-align-left: "\f036"; +$fa-var-align-right: "\f038"; +$fa-var-amazon: "\f270"; +$fa-var-ambulance: "\f0f9"; +$fa-var-american-sign-language-interpreting: "\f2a3"; +$fa-var-anchor: "\f13d"; +$fa-var-android: "\f17b"; +$fa-var-angellist: "\f209"; +$fa-var-angle-double-down: "\f103"; +$fa-var-angle-double-left: "\f100"; +$fa-var-angle-double-right: "\f101"; +$fa-var-angle-double-up: "\f102"; +$fa-var-angle-down: "\f107"; +$fa-var-angle-left: "\f104"; +$fa-var-angle-right: "\f105"; +$fa-var-angle-up: "\f106"; +$fa-var-apple: "\f179"; +$fa-var-archive: "\f187"; +$fa-var-area-chart: "\f1fe"; +$fa-var-arrow-circle-down: "\f0ab"; +$fa-var-arrow-circle-left: "\f0a8"; +$fa-var-arrow-circle-o-down: "\f01a"; +$fa-var-arrow-circle-o-left: "\f190"; +$fa-var-arrow-circle-o-right: "\f18e"; +$fa-var-arrow-circle-o-up: "\f01b"; +$fa-var-arrow-circle-right: "\f0a9"; +$fa-var-arrow-circle-up: "\f0aa"; +$fa-var-arrow-down: "\f063"; +$fa-var-arrow-left: "\f060"; +$fa-var-arrow-right: "\f061"; +$fa-var-arrow-up: "\f062"; +$fa-var-arrows: "\f047"; +$fa-var-arrows-alt: "\f0b2"; +$fa-var-arrows-h: "\f07e"; +$fa-var-arrows-v: "\f07d"; +$fa-var-asl-interpreting: "\f2a3"; +$fa-var-assistive-listening-systems: "\f2a2"; +$fa-var-asterisk: "\f069"; +$fa-var-at: "\f1fa"; +$fa-var-audio-description: "\f29e"; +$fa-var-automobile: "\f1b9"; +$fa-var-backward: "\f04a"; +$fa-var-balance-scale: "\f24e"; +$fa-var-ban: "\f05e"; +$fa-var-bandcamp: "\f2d5"; +$fa-var-bank: "\f19c"; +$fa-var-bar-chart: "\f080"; +$fa-var-bar-chart-o: "\f080"; +$fa-var-barcode: "\f02a"; +$fa-var-bars: "\f0c9"; +$fa-var-bath: "\f2cd"; +$fa-var-bathtub: "\f2cd"; +$fa-var-battery: "\f240"; +$fa-var-battery-0: "\f244"; +$fa-var-battery-1: "\f243"; +$fa-var-battery-2: "\f242"; +$fa-var-battery-3: "\f241"; +$fa-var-battery-4: "\f240"; +$fa-var-battery-empty: "\f244"; +$fa-var-battery-full: "\f240"; +$fa-var-battery-half: "\f242"; +$fa-var-battery-quarter: "\f243"; +$fa-var-battery-three-quarters: "\f241"; +$fa-var-bed: "\f236"; +$fa-var-beer: "\f0fc"; +$fa-var-behance: "\f1b4"; +$fa-var-behance-square: "\f1b5"; +$fa-var-bell: "\f0f3"; +$fa-var-bell-o: "\f0a2"; +$fa-var-bell-slash: "\f1f6"; +$fa-var-bell-slash-o: "\f1f7"; +$fa-var-bicycle: "\f206"; +$fa-var-binoculars: "\f1e5"; +$fa-var-birthday-cake: "\f1fd"; +$fa-var-bitbucket: "\f171"; +$fa-var-bitbucket-square: "\f172"; +$fa-var-bitcoin: "\f15a"; +$fa-var-black-tie: "\f27e"; +$fa-var-blind: "\f29d"; +$fa-var-bluetooth: "\f293"; +$fa-var-bluetooth-b: "\f294"; +$fa-var-bold: "\f032"; +$fa-var-bolt: "\f0e7"; +$fa-var-bomb: "\f1e2"; +$fa-var-book: "\f02d"; +$fa-var-bookmark: "\f02e"; +$fa-var-bookmark-o: "\f097"; +$fa-var-braille: "\f2a1"; +$fa-var-briefcase: "\f0b1"; +$fa-var-btc: "\f15a"; +$fa-var-bug: "\f188"; +$fa-var-building: "\f1ad"; +$fa-var-building-o: "\f0f7"; +$fa-var-bullhorn: "\f0a1"; +$fa-var-bullseye: "\f140"; +$fa-var-bus: "\f207"; +$fa-var-buysellads: "\f20d"; +$fa-var-cab: "\f1ba"; +$fa-var-calculator: "\f1ec"; +$fa-var-calendar: "\f073"; +$fa-var-calendar-check-o: "\f274"; +$fa-var-calendar-minus-o: "\f272"; +$fa-var-calendar-o: "\f133"; +$fa-var-calendar-plus-o: "\f271"; +$fa-var-calendar-times-o: "\f273"; +$fa-var-camera: "\f030"; +$fa-var-camera-retro: "\f083"; +$fa-var-car: "\f1b9"; +$fa-var-caret-down: "\f0d7"; +$fa-var-caret-left: "\f0d9"; +$fa-var-caret-right: "\f0da"; +$fa-var-caret-square-o-down: "\f150"; +$fa-var-caret-square-o-left: "\f191"; +$fa-var-caret-square-o-right: "\f152"; +$fa-var-caret-square-o-up: "\f151"; +$fa-var-caret-up: "\f0d8"; +$fa-var-cart-arrow-down: "\f218"; +$fa-var-cart-plus: "\f217"; +$fa-var-cc: "\f20a"; +$fa-var-cc-amex: "\f1f3"; +$fa-var-cc-diners-club: "\f24c"; +$fa-var-cc-discover: "\f1f2"; +$fa-var-cc-jcb: "\f24b"; +$fa-var-cc-mastercard: "\f1f1"; +$fa-var-cc-paypal: "\f1f4"; +$fa-var-cc-stripe: "\f1f5"; +$fa-var-cc-visa: "\f1f0"; +$fa-var-certificate: "\f0a3"; +$fa-var-chain: "\f0c1"; +$fa-var-chain-broken: "\f127"; +$fa-var-check: "\f00c"; +$fa-var-check-circle: "\f058"; +$fa-var-check-circle-o: "\f05d"; +$fa-var-check-square: "\f14a"; +$fa-var-check-square-o: "\f046"; +$fa-var-chevron-circle-down: "\f13a"; +$fa-var-chevron-circle-left: "\f137"; +$fa-var-chevron-circle-right: "\f138"; +$fa-var-chevron-circle-up: "\f139"; +$fa-var-chevron-down: "\f078"; +$fa-var-chevron-left: "\f053"; +$fa-var-chevron-right: "\f054"; +$fa-var-chevron-up: "\f077"; +$fa-var-child: "\f1ae"; +$fa-var-chrome: "\f268"; +$fa-var-circle: "\f111"; +$fa-var-circle-o: "\f10c"; +$fa-var-circle-o-notch: "\f1ce"; +$fa-var-circle-thin: "\f1db"; +$fa-var-clipboard: "\f0ea"; +$fa-var-clock-o: "\f017"; +$fa-var-clone: "\f24d"; +$fa-var-close: "\f00d"; +$fa-var-cloud: "\f0c2"; +$fa-var-cloud-download: "\f0ed"; +$fa-var-cloud-upload: "\f0ee"; +$fa-var-cny: "\f157"; +$fa-var-code: "\f121"; +$fa-var-code-fork: "\f126"; +$fa-var-codepen: "\f1cb"; +$fa-var-codiepie: "\f284"; +$fa-var-coffee: "\f0f4"; +$fa-var-cog: "\f013"; +$fa-var-cogs: "\f085"; +$fa-var-columns: "\f0db"; +$fa-var-comment: "\f075"; +$fa-var-comment-o: "\f0e5"; +$fa-var-commenting: "\f27a"; +$fa-var-commenting-o: "\f27b"; +$fa-var-comments: "\f086"; +$fa-var-comments-o: "\f0e6"; +$fa-var-compass: "\f14e"; +$fa-var-compress: "\f066"; +$fa-var-connectdevelop: "\f20e"; +$fa-var-contao: "\f26d"; +$fa-var-copy: "\f0c5"; +$fa-var-copyright: "\f1f9"; +$fa-var-creative-commons: "\f25e"; +$fa-var-credit-card: "\f09d"; +$fa-var-credit-card-alt: "\f283"; +$fa-var-crop: "\f125"; +$fa-var-crosshairs: "\f05b"; +$fa-var-css3: "\f13c"; +$fa-var-cube: "\f1b2"; +$fa-var-cubes: "\f1b3"; +$fa-var-cut: "\f0c4"; +$fa-var-cutlery: "\f0f5"; +$fa-var-dashboard: "\f0e4"; +$fa-var-dashcube: "\f210"; +$fa-var-database: "\f1c0"; +$fa-var-deaf: "\f2a4"; +$fa-var-deafness: "\f2a4"; +$fa-var-dedent: "\f03b"; +$fa-var-delicious: "\f1a5"; +$fa-var-desktop: "\f108"; +$fa-var-deviantart: "\f1bd"; +$fa-var-diamond: "\f219"; +$fa-var-digg: "\f1a6"; +$fa-var-dollar: "\f155"; +$fa-var-dot-circle-o: "\f192"; +$fa-var-download: "\f019"; +$fa-var-dribbble: "\f17d"; +$fa-var-drivers-license: "\f2c2"; +$fa-var-drivers-license-o: "\f2c3"; +$fa-var-dropbox: "\f16b"; +$fa-var-drupal: "\f1a9"; +$fa-var-edge: "\f282"; +$fa-var-edit: "\f044"; +$fa-var-eercast: "\f2da"; +$fa-var-eject: "\f052"; +$fa-var-ellipsis-h: "\f141"; +$fa-var-ellipsis-v: "\f142"; +$fa-var-empire: "\f1d1"; +$fa-var-envelope: "\f0e0"; +$fa-var-envelope-o: "\f003"; +$fa-var-envelope-open: "\f2b6"; +$fa-var-envelope-open-o: "\f2b7"; +$fa-var-envelope-square: "\f199"; +$fa-var-envira: "\f299"; +$fa-var-eraser: "\f12d"; +$fa-var-etsy: "\f2d7"; +$fa-var-eur: "\f153"; +$fa-var-euro: "\f153"; +$fa-var-exchange: "\f0ec"; +$fa-var-exclamation: "\f12a"; +$fa-var-exclamation-circle: "\f06a"; +$fa-var-exclamation-triangle: "\f071"; +$fa-var-expand: "\f065"; +$fa-var-expeditedssl: "\f23e"; +$fa-var-external-link: "\f08e"; +$fa-var-external-link-square: "\f14c"; +$fa-var-eye: "\f06e"; +$fa-var-eye-slash: "\f070"; +$fa-var-eyedropper: "\f1fb"; +$fa-var-fa: "\f2b4"; +$fa-var-facebook: "\f09a"; +$fa-var-facebook-f: "\f09a"; +$fa-var-facebook-official: "\f230"; +$fa-var-facebook-square: "\f082"; +$fa-var-fast-backward: "\f049"; +$fa-var-fast-forward: "\f050"; +$fa-var-fax: "\f1ac"; +$fa-var-feed: "\f09e"; +$fa-var-female: "\f182"; +$fa-var-fighter-jet: "\f0fb"; +$fa-var-file: "\f15b"; +$fa-var-file-archive-o: "\f1c6"; +$fa-var-file-audio-o: "\f1c7"; +$fa-var-file-code-o: "\f1c9"; +$fa-var-file-excel-o: "\f1c3"; +$fa-var-file-image-o: "\f1c5"; +$fa-var-file-movie-o: "\f1c8"; +$fa-var-file-o: "\f016"; +$fa-var-file-pdf-o: "\f1c1"; +$fa-var-file-photo-o: "\f1c5"; +$fa-var-file-picture-o: "\f1c5"; +$fa-var-file-powerpoint-o: "\f1c4"; +$fa-var-file-sound-o: "\f1c7"; +$fa-var-file-text: "\f15c"; +$fa-var-file-text-o: "\f0f6"; +$fa-var-file-video-o: "\f1c8"; +$fa-var-file-word-o: "\f1c2"; +$fa-var-file-zip-o: "\f1c6"; +$fa-var-files-o: "\f0c5"; +$fa-var-film: "\f008"; +$fa-var-filter: "\f0b0"; +$fa-var-fire: "\f06d"; +$fa-var-fire-extinguisher: "\f134"; +$fa-var-firefox: "\f269"; +$fa-var-first-order: "\f2b0"; +$fa-var-flag: "\f024"; +$fa-var-flag-checkered: "\f11e"; +$fa-var-flag-o: "\f11d"; +$fa-var-flash: "\f0e7"; +$fa-var-flask: "\f0c3"; +$fa-var-flickr: "\f16e"; +$fa-var-floppy-o: "\f0c7"; +$fa-var-folder: "\f07b"; +$fa-var-folder-o: "\f114"; +$fa-var-folder-open: "\f07c"; +$fa-var-folder-open-o: "\f115"; +$fa-var-font: "\f031"; +$fa-var-font-awesome: "\f2b4"; +$fa-var-fonticons: "\f280"; +$fa-var-fort-awesome: "\f286"; +$fa-var-forumbee: "\f211"; +$fa-var-forward: "\f04e"; +$fa-var-foursquare: "\f180"; +$fa-var-free-code-camp: "\f2c5"; +$fa-var-frown-o: "\f119"; +$fa-var-futbol-o: "\f1e3"; +$fa-var-gamepad: "\f11b"; +$fa-var-gavel: "\f0e3"; +$fa-var-gbp: "\f154"; +$fa-var-ge: "\f1d1"; +$fa-var-gear: "\f013"; +$fa-var-gears: "\f085"; +$fa-var-genderless: "\f22d"; +$fa-var-get-pocket: "\f265"; +$fa-var-gg: "\f260"; +$fa-var-gg-circle: "\f261"; +$fa-var-gift: "\f06b"; +$fa-var-git: "\f1d3"; +$fa-var-git-square: "\f1d2"; +$fa-var-github: "\f09b"; +$fa-var-github-alt: "\f113"; +$fa-var-github-square: "\f092"; +$fa-var-gitlab: "\f296"; +$fa-var-gittip: "\f184"; +$fa-var-glass: "\f000"; +$fa-var-glide: "\f2a5"; +$fa-var-glide-g: "\f2a6"; +$fa-var-globe: "\f0ac"; +$fa-var-google: "\f1a0"; +$fa-var-google-plus: "\f0d5"; +$fa-var-google-plus-circle: "\f2b3"; +$fa-var-google-plus-official: "\f2b3"; +$fa-var-google-plus-square: "\f0d4"; +$fa-var-google-wallet: "\f1ee"; +$fa-var-graduation-cap: "\f19d"; +$fa-var-gratipay: "\f184"; +$fa-var-grav: "\f2d6"; +$fa-var-group: "\f0c0"; +$fa-var-h-square: "\f0fd"; +$fa-var-hacker-news: "\f1d4"; +$fa-var-hand-grab-o: "\f255"; +$fa-var-hand-lizard-o: "\f258"; +$fa-var-hand-o-down: "\f0a7"; +$fa-var-hand-o-left: "\f0a5"; +$fa-var-hand-o-right: "\f0a4"; +$fa-var-hand-o-up: "\f0a6"; +$fa-var-hand-paper-o: "\f256"; +$fa-var-hand-peace-o: "\f25b"; +$fa-var-hand-pointer-o: "\f25a"; +$fa-var-hand-rock-o: "\f255"; +$fa-var-hand-scissors-o: "\f257"; +$fa-var-hand-spock-o: "\f259"; +$fa-var-hand-stop-o: "\f256"; +$fa-var-handshake-o: "\f2b5"; +$fa-var-hard-of-hearing: "\f2a4"; +$fa-var-hashtag: "\f292"; +$fa-var-hdd-o: "\f0a0"; +$fa-var-header: "\f1dc"; +$fa-var-headphones: "\f025"; +$fa-var-heart: "\f004"; +$fa-var-heart-o: "\f08a"; +$fa-var-heartbeat: "\f21e"; +$fa-var-history: "\f1da"; +$fa-var-home: "\f015"; +$fa-var-hospital-o: "\f0f8"; +$fa-var-hotel: "\f236"; +$fa-var-hourglass: "\f254"; +$fa-var-hourglass-1: "\f251"; +$fa-var-hourglass-2: "\f252"; +$fa-var-hourglass-3: "\f253"; +$fa-var-hourglass-end: "\f253"; +$fa-var-hourglass-half: "\f252"; +$fa-var-hourglass-o: "\f250"; +$fa-var-hourglass-start: "\f251"; +$fa-var-houzz: "\f27c"; +$fa-var-html5: "\f13b"; +$fa-var-i-cursor: "\f246"; +$fa-var-id-badge: "\f2c1"; +$fa-var-id-card: "\f2c2"; +$fa-var-id-card-o: "\f2c3"; +$fa-var-ils: "\f20b"; +$fa-var-image: "\f03e"; +$fa-var-imdb: "\f2d8"; +$fa-var-inbox: "\f01c"; +$fa-var-indent: "\f03c"; +$fa-var-industry: "\f275"; +$fa-var-info: "\f129"; +$fa-var-info-circle: "\f05a"; +$fa-var-inr: "\f156"; +$fa-var-instagram: "\f16d"; +$fa-var-institution: "\f19c"; +$fa-var-internet-explorer: "\f26b"; +$fa-var-intersex: "\f224"; +$fa-var-ioxhost: "\f208"; +$fa-var-italic: "\f033"; +$fa-var-joomla: "\f1aa"; +$fa-var-jpy: "\f157"; +$fa-var-jsfiddle: "\f1cc"; +$fa-var-key: "\f084"; +$fa-var-keyboard-o: "\f11c"; +$fa-var-krw: "\f159"; +$fa-var-language: "\f1ab"; +$fa-var-laptop: "\f109"; +$fa-var-lastfm: "\f202"; +$fa-var-lastfm-square: "\f203"; +$fa-var-leaf: "\f06c"; +$fa-var-leanpub: "\f212"; +$fa-var-legal: "\f0e3"; +$fa-var-lemon-o: "\f094"; +$fa-var-level-down: "\f149"; +$fa-var-level-up: "\f148"; +$fa-var-life-bouy: "\f1cd"; +$fa-var-life-buoy: "\f1cd"; +$fa-var-life-ring: "\f1cd"; +$fa-var-life-saver: "\f1cd"; +$fa-var-lightbulb-o: "\f0eb"; +$fa-var-line-chart: "\f201"; +$fa-var-link: "\f0c1"; +$fa-var-linkedin: "\f0e1"; +$fa-var-linkedin-square: "\f08c"; +$fa-var-linode: "\f2b8"; +$fa-var-linux: "\f17c"; +$fa-var-list: "\f03a"; +$fa-var-list-alt: "\f022"; +$fa-var-list-ol: "\f0cb"; +$fa-var-list-ul: "\f0ca"; +$fa-var-location-arrow: "\f124"; +$fa-var-lock: "\f023"; +$fa-var-long-arrow-down: "\f175"; +$fa-var-long-arrow-left: "\f177"; +$fa-var-long-arrow-right: "\f178"; +$fa-var-long-arrow-up: "\f176"; +$fa-var-low-vision: "\f2a8"; +$fa-var-magic: "\f0d0"; +$fa-var-magnet: "\f076"; +$fa-var-mail-forward: "\f064"; +$fa-var-mail-reply: "\f112"; +$fa-var-mail-reply-all: "\f122"; +$fa-var-male: "\f183"; +$fa-var-map: "\f279"; +$fa-var-map-marker: "\f041"; +$fa-var-map-o: "\f278"; +$fa-var-map-pin: "\f276"; +$fa-var-map-signs: "\f277"; +$fa-var-mars: "\f222"; +$fa-var-mars-double: "\f227"; +$fa-var-mars-stroke: "\f229"; +$fa-var-mars-stroke-h: "\f22b"; +$fa-var-mars-stroke-v: "\f22a"; +$fa-var-maxcdn: "\f136"; +$fa-var-meanpath: "\f20c"; +$fa-var-medium: "\f23a"; +$fa-var-medkit: "\f0fa"; +$fa-var-meetup: "\f2e0"; +$fa-var-meh-o: "\f11a"; +$fa-var-mercury: "\f223"; +$fa-var-microchip: "\f2db"; +$fa-var-microphone: "\f130"; +$fa-var-microphone-slash: "\f131"; +$fa-var-minus: "\f068"; +$fa-var-minus-circle: "\f056"; +$fa-var-minus-square: "\f146"; +$fa-var-minus-square-o: "\f147"; +$fa-var-mixcloud: "\f289"; +$fa-var-mobile: "\f10b"; +$fa-var-mobile-phone: "\f10b"; +$fa-var-modx: "\f285"; +$fa-var-money: "\f0d6"; +$fa-var-moon-o: "\f186"; +$fa-var-mortar-board: "\f19d"; +$fa-var-motorcycle: "\f21c"; +$fa-var-mouse-pointer: "\f245"; +$fa-var-music: "\f001"; +$fa-var-navicon: "\f0c9"; +$fa-var-neuter: "\f22c"; +$fa-var-newspaper-o: "\f1ea"; +$fa-var-object-group: "\f247"; +$fa-var-object-ungroup: "\f248"; +$fa-var-odnoklassniki: "\f263"; +$fa-var-odnoklassniki-square: "\f264"; +$fa-var-opencart: "\f23d"; +$fa-var-openid: "\f19b"; +$fa-var-opera: "\f26a"; +$fa-var-optin-monster: "\f23c"; +$fa-var-outdent: "\f03b"; +$fa-var-pagelines: "\f18c"; +$fa-var-paint-brush: "\f1fc"; +$fa-var-paper-plane: "\f1d8"; +$fa-var-paper-plane-o: "\f1d9"; +$fa-var-paperclip: "\f0c6"; +$fa-var-paragraph: "\f1dd"; +$fa-var-paste: "\f0ea"; +$fa-var-pause: "\f04c"; +$fa-var-pause-circle: "\f28b"; +$fa-var-pause-circle-o: "\f28c"; +$fa-var-paw: "\f1b0"; +$fa-var-paypal: "\f1ed"; +$fa-var-pencil: "\f040"; +$fa-var-pencil-square: "\f14b"; +$fa-var-pencil-square-o: "\f044"; +$fa-var-percent: "\f295"; +$fa-var-phone: "\f095"; +$fa-var-phone-square: "\f098"; +$fa-var-photo: "\f03e"; +$fa-var-picture-o: "\f03e"; +$fa-var-pie-chart: "\f200"; +$fa-var-pied-piper: "\f2ae"; +$fa-var-pied-piper-alt: "\f1a8"; +$fa-var-pied-piper-pp: "\f1a7"; +$fa-var-pinterest: "\f0d2"; +$fa-var-pinterest-p: "\f231"; +$fa-var-pinterest-square: "\f0d3"; +$fa-var-plane: "\f072"; +$fa-var-play: "\f04b"; +$fa-var-play-circle: "\f144"; +$fa-var-play-circle-o: "\f01d"; +$fa-var-plug: "\f1e6"; +$fa-var-plus: "\f067"; +$fa-var-plus-circle: "\f055"; +$fa-var-plus-square: "\f0fe"; +$fa-var-plus-square-o: "\f196"; +$fa-var-podcast: "\f2ce"; +$fa-var-power-off: "\f011"; +$fa-var-print: "\f02f"; +$fa-var-product-hunt: "\f288"; +$fa-var-puzzle-piece: "\f12e"; +$fa-var-qq: "\f1d6"; +$fa-var-qrcode: "\f029"; +$fa-var-question: "\f128"; +$fa-var-question-circle: "\f059"; +$fa-var-question-circle-o: "\f29c"; +$fa-var-quora: "\f2c4"; +$fa-var-quote-left: "\f10d"; +$fa-var-quote-right: "\f10e"; +$fa-var-ra: "\f1d0"; +$fa-var-random: "\f074"; +$fa-var-ravelry: "\f2d9"; +$fa-var-rebel: "\f1d0"; +$fa-var-recycle: "\f1b8"; +$fa-var-reddit: "\f1a1"; +$fa-var-reddit-alien: "\f281"; +$fa-var-reddit-square: "\f1a2"; +$fa-var-refresh: "\f021"; +$fa-var-registered: "\f25d"; +$fa-var-remove: "\f00d"; +$fa-var-renren: "\f18b"; +$fa-var-reorder: "\f0c9"; +$fa-var-repeat: "\f01e"; +$fa-var-reply: "\f112"; +$fa-var-reply-all: "\f122"; +$fa-var-resistance: "\f1d0"; +$fa-var-retweet: "\f079"; +$fa-var-rmb: "\f157"; +$fa-var-road: "\f018"; +$fa-var-rocket: "\f135"; +$fa-var-rotate-left: "\f0e2"; +$fa-var-rotate-right: "\f01e"; +$fa-var-rouble: "\f158"; +$fa-var-rss: "\f09e"; +$fa-var-rss-square: "\f143"; +$fa-var-rub: "\f158"; +$fa-var-ruble: "\f158"; +$fa-var-rupee: "\f156"; +$fa-var-s15: "\f2cd"; +$fa-var-safari: "\f267"; +$fa-var-save: "\f0c7"; +$fa-var-scissors: "\f0c4"; +$fa-var-scribd: "\f28a"; +$fa-var-search: "\f002"; +$fa-var-search-minus: "\f010"; +$fa-var-search-plus: "\f00e"; +$fa-var-sellsy: "\f213"; +$fa-var-send: "\f1d8"; +$fa-var-send-o: "\f1d9"; +$fa-var-server: "\f233"; +$fa-var-share: "\f064"; +$fa-var-share-alt: "\f1e0"; +$fa-var-share-alt-square: "\f1e1"; +$fa-var-share-square: "\f14d"; +$fa-var-share-square-o: "\f045"; +$fa-var-shekel: "\f20b"; +$fa-var-sheqel: "\f20b"; +$fa-var-shield: "\f132"; +$fa-var-ship: "\f21a"; +$fa-var-shirtsinbulk: "\f214"; +$fa-var-shopping-bag: "\f290"; +$fa-var-shopping-basket: "\f291"; +$fa-var-shopping-cart: "\f07a"; +$fa-var-shower: "\f2cc"; +$fa-var-sign-in: "\f090"; +$fa-var-sign-language: "\f2a7"; +$fa-var-sign-out: "\f08b"; +$fa-var-signal: "\f012"; +$fa-var-signing: "\f2a7"; +$fa-var-simplybuilt: "\f215"; +$fa-var-sitemap: "\f0e8"; +$fa-var-skyatlas: "\f216"; +$fa-var-skype: "\f17e"; +$fa-var-slack: "\f198"; +$fa-var-sliders: "\f1de"; +$fa-var-slideshare: "\f1e7"; +$fa-var-smile-o: "\f118"; +$fa-var-snapchat: "\f2ab"; +$fa-var-snapchat-ghost: "\f2ac"; +$fa-var-snapchat-square: "\f2ad"; +$fa-var-snowflake-o: "\f2dc"; +$fa-var-soccer-ball-o: "\f1e3"; +$fa-var-sort: "\f0dc"; +$fa-var-sort-alpha-asc: "\f15d"; +$fa-var-sort-alpha-desc: "\f15e"; +$fa-var-sort-amount-asc: "\f160"; +$fa-var-sort-amount-desc: "\f161"; +$fa-var-sort-asc: "\f0de"; +$fa-var-sort-desc: "\f0dd"; +$fa-var-sort-down: "\f0dd"; +$fa-var-sort-numeric-asc: "\f162"; +$fa-var-sort-numeric-desc: "\f163"; +$fa-var-sort-up: "\f0de"; +$fa-var-soundcloud: "\f1be"; +$fa-var-space-shuttle: "\f197"; +$fa-var-spinner: "\f110"; +$fa-var-spoon: "\f1b1"; +$fa-var-spotify: "\f1bc"; +$fa-var-square: "\f0c8"; +$fa-var-square-o: "\f096"; +$fa-var-stack-exchange: "\f18d"; +$fa-var-stack-overflow: "\f16c"; +$fa-var-star: "\f005"; +$fa-var-star-half: "\f089"; +$fa-var-star-half-empty: "\f123"; +$fa-var-star-half-full: "\f123"; +$fa-var-star-half-o: "\f123"; +$fa-var-star-o: "\f006"; +$fa-var-steam: "\f1b6"; +$fa-var-steam-square: "\f1b7"; +$fa-var-step-backward: "\f048"; +$fa-var-step-forward: "\f051"; +$fa-var-stethoscope: "\f0f1"; +$fa-var-sticky-note: "\f249"; +$fa-var-sticky-note-o: "\f24a"; +$fa-var-stop: "\f04d"; +$fa-var-stop-circle: "\f28d"; +$fa-var-stop-circle-o: "\f28e"; +$fa-var-street-view: "\f21d"; +$fa-var-strikethrough: "\f0cc"; +$fa-var-stumbleupon: "\f1a4"; +$fa-var-stumbleupon-circle: "\f1a3"; +$fa-var-subscript: "\f12c"; +$fa-var-subway: "\f239"; +$fa-var-suitcase: "\f0f2"; +$fa-var-sun-o: "\f185"; +$fa-var-superpowers: "\f2dd"; +$fa-var-superscript: "\f12b"; +$fa-var-support: "\f1cd"; +$fa-var-table: "\f0ce"; +$fa-var-tablet: "\f10a"; +$fa-var-tachometer: "\f0e4"; +$fa-var-tag: "\f02b"; +$fa-var-tags: "\f02c"; +$fa-var-tasks: "\f0ae"; +$fa-var-taxi: "\f1ba"; +$fa-var-telegram: "\f2c6"; +$fa-var-television: "\f26c"; +$fa-var-tencent-weibo: "\f1d5"; +$fa-var-terminal: "\f120"; +$fa-var-text-height: "\f034"; +$fa-var-text-width: "\f035"; +$fa-var-th: "\f00a"; +$fa-var-th-large: "\f009"; +$fa-var-th-list: "\f00b"; +$fa-var-themeisle: "\f2b2"; +$fa-var-thermometer: "\f2c7"; +$fa-var-thermometer-0: "\f2cb"; +$fa-var-thermometer-1: "\f2ca"; +$fa-var-thermometer-2: "\f2c9"; +$fa-var-thermometer-3: "\f2c8"; +$fa-var-thermometer-4: "\f2c7"; +$fa-var-thermometer-empty: "\f2cb"; +$fa-var-thermometer-full: "\f2c7"; +$fa-var-thermometer-half: "\f2c9"; +$fa-var-thermometer-quarter: "\f2ca"; +$fa-var-thermometer-three-quarters: "\f2c8"; +$fa-var-thumb-tack: "\f08d"; +$fa-var-thumbs-down: "\f165"; +$fa-var-thumbs-o-down: "\f088"; +$fa-var-thumbs-o-up: "\f087"; +$fa-var-thumbs-up: "\f164"; +$fa-var-ticket: "\f145"; +$fa-var-times: "\f00d"; +$fa-var-times-circle: "\f057"; +$fa-var-times-circle-o: "\f05c"; +$fa-var-times-rectangle: "\f2d3"; +$fa-var-times-rectangle-o: "\f2d4"; +$fa-var-tint: "\f043"; +$fa-var-toggle-down: "\f150"; +$fa-var-toggle-left: "\f191"; +$fa-var-toggle-off: "\f204"; +$fa-var-toggle-on: "\f205"; +$fa-var-toggle-right: "\f152"; +$fa-var-toggle-up: "\f151"; +$fa-var-trademark: "\f25c"; +$fa-var-train: "\f238"; +$fa-var-transgender: "\f224"; +$fa-var-transgender-alt: "\f225"; +$fa-var-trash: "\f1f8"; +$fa-var-trash-o: "\f014"; +$fa-var-tree: "\f1bb"; +$fa-var-trello: "\f181"; +$fa-var-tripadvisor: "\f262"; +$fa-var-trophy: "\f091"; +$fa-var-truck: "\f0d1"; +$fa-var-try: "\f195"; +$fa-var-tty: "\f1e4"; +$fa-var-tumblr: "\f173"; +$fa-var-tumblr-square: "\f174"; +$fa-var-turkish-lira: "\f195"; +$fa-var-tv: "\f26c"; +$fa-var-twitch: "\f1e8"; +$fa-var-twitter: "\f099"; +$fa-var-twitter-square: "\f081"; +$fa-var-umbrella: "\f0e9"; +$fa-var-underline: "\f0cd"; +$fa-var-undo: "\f0e2"; +$fa-var-universal-access: "\f29a"; +$fa-var-university: "\f19c"; +$fa-var-unlink: "\f127"; +$fa-var-unlock: "\f09c"; +$fa-var-unlock-alt: "\f13e"; +$fa-var-unsorted: "\f0dc"; +$fa-var-upload: "\f093"; +$fa-var-usb: "\f287"; +$fa-var-usd: "\f155"; +$fa-var-user: "\f007"; +$fa-var-user-circle: "\f2bd"; +$fa-var-user-circle-o: "\f2be"; +$fa-var-user-md: "\f0f0"; +$fa-var-user-o: "\f2c0"; +$fa-var-user-plus: "\f234"; +$fa-var-user-secret: "\f21b"; +$fa-var-user-times: "\f235"; +$fa-var-users: "\f0c0"; +$fa-var-vcard: "\f2bb"; +$fa-var-vcard-o: "\f2bc"; +$fa-var-venus: "\f221"; +$fa-var-venus-double: "\f226"; +$fa-var-venus-mars: "\f228"; +$fa-var-viacoin: "\f237"; +$fa-var-viadeo: "\f2a9"; +$fa-var-viadeo-square: "\f2aa"; +$fa-var-video-camera: "\f03d"; +$fa-var-vimeo: "\f27d"; +$fa-var-vimeo-square: "\f194"; +$fa-var-vine: "\f1ca"; +$fa-var-vk: "\f189"; +$fa-var-volume-control-phone: "\f2a0"; +$fa-var-volume-down: "\f027"; +$fa-var-volume-off: "\f026"; +$fa-var-volume-up: "\f028"; +$fa-var-warning: "\f071"; +$fa-var-wechat: "\f1d7"; +$fa-var-weibo: "\f18a"; +$fa-var-weixin: "\f1d7"; +$fa-var-whatsapp: "\f232"; +$fa-var-wheelchair: "\f193"; +$fa-var-wheelchair-alt: "\f29b"; +$fa-var-wifi: "\f1eb"; +$fa-var-wikipedia-w: "\f266"; +$fa-var-window-close: "\f2d3"; +$fa-var-window-close-o: "\f2d4"; +$fa-var-window-maximize: "\f2d0"; +$fa-var-window-minimize: "\f2d1"; +$fa-var-window-restore: "\f2d2"; +$fa-var-windows: "\f17a"; +$fa-var-won: "\f159"; +$fa-var-wordpress: "\f19a"; +$fa-var-wpbeginner: "\f297"; +$fa-var-wpexplorer: "\f2de"; +$fa-var-wpforms: "\f298"; +$fa-var-wrench: "\f0ad"; +$fa-var-xing: "\f168"; +$fa-var-xing-square: "\f169"; +$fa-var-y-combinator: "\f23b"; +$fa-var-y-combinator-square: "\f1d4"; +$fa-var-yahoo: "\f19e"; +$fa-var-yc: "\f23b"; +$fa-var-yc-square: "\f1d4"; +$fa-var-yelp: "\f1e9"; +$fa-var-yen: "\f157"; +$fa-var-yoast: "\f2b1"; +$fa-var-youtube: "\f167"; +$fa-var-youtube-play: "\f16a"; +$fa-var-youtube-square: "\f166"; + diff --git a/webapp/static/fonts/font-awesome-4.7.0/scss/font-awesome.scss b/webapp/static/fonts/font-awesome-4.7.0/scss/font-awesome.scss new file mode 100755 index 0000000..f1c83aa --- /dev/null +++ b/webapp/static/fonts/font-awesome-4.7.0/scss/font-awesome.scss @@ -0,0 +1,18 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ + +@import "variables"; +@import "mixins"; +@import "path"; +@import "core"; +@import "larger"; +@import "fixed-width"; +@import "list"; +@import "bordered-pulled"; +@import "animated"; +@import "rotated-flipped"; +@import "stacked"; +@import "icons"; +@import "screen-reader"; diff --git a/webapp/static/fonts/potra.ttf b/webapp/static/fonts/potra.ttf new file mode 100644 index 0000000..6506d7f Binary files /dev/null and b/webapp/static/fonts/potra.ttf differ diff --git a/webapp/static/fonts/potra.woff b/webapp/static/fonts/potra.woff new file mode 100644 index 0000000..689d1fe Binary files /dev/null and b/webapp/static/fonts/potra.woff differ diff --git a/webapp/static/full_logo.jpg b/webapp/static/full_logo.jpg new file mode 100644 index 0000000..255a6eb Binary files /dev/null and b/webapp/static/full_logo.jpg differ diff --git a/webapp/static/index.html b/webapp/static/index.html new file mode 100755 index 0000000..30fe143 --- /dev/null +++ b/webapp/static/index.html @@ -0,0 +1,176 @@ + + + + Table V01 + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DateOrder IDNamePriceQuantityTotal
2017-09-29 01:22200398iPhone X 64Gb Grey$999.001$999.00
2017-09-28 05:57200397Samsung S8 Black$756.001$756.00
2017-09-26 05:57200396Game Console Controller$22.002$44.00
2017-09-25 23:06200392USB 3.0 Cable$10.003$30.00
2017-09-24 05:57200391Smartwatch 4.0 LTE Wifi$199.006$1494.00
2017-09-23 05:57200390Camera C430W 4k$699.001$699.00
2017-09-22 05:57200389Macbook Pro Retina 2017$2199.001$2199.00
2017-09-21 05:57200388Game Console Controller$999.001$999.00
2017-09-19 05:57200387iPhone X 64Gb Grey$999.001$999.00
2017-09-18 05:57200386iPhone X 64Gb Grey$999.001$999.00
2017-09-22 05:57200389Macbook Pro Retina 2017$2199.001$2199.00
2017-09-21 05:57200388Game Console Controller$999.001$999.00
2017-09-19 05:57200387iPhone X 64Gb Grey$999.001$999.00
2017-09-18 05:57200386iPhone X 64Gb Grey$999.001$999.00
+
+
+
+
+ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/webapp/static/jquery-3.3.1.min.js b/webapp/static/jquery-3.3.1.min.js new file mode 100644 index 0000000..4d9b3a2 --- /dev/null +++ b/webapp/static/jquery-3.3.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.3.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";var n=[],r=e.document,i=Object.getPrototypeOf,o=n.slice,a=n.concat,s=n.push,u=n.indexOf,l={},c=l.toString,f=l.hasOwnProperty,p=f.toString,d=p.call(Object),h={},g=function e(t){return"function"==typeof t&&"number"!=typeof t.nodeType},y=function e(t){return null!=t&&t===t.window},v={type:!0,src:!0,noModule:!0};function m(e,t,n){var i,o=(t=t||r).createElement("script");if(o.text=e,n)for(i in v)n[i]&&(o[i]=n[i]);t.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[c.call(e)]||"object":typeof e}var b="3.3.1",w=function(e,t){return new w.fn.init(e,t)},T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;w.fn=w.prototype={jquery:"3.3.1",constructor:w,length:0,toArray:function(){return o.call(this)},get:function(e){return null==e?o.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=w.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return w.each(this,e)},map:function(e){return this.pushStack(w.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(o.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n0&&t-1 in e)}var E=function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,y,v,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ae(),k=ae(),S=ae(),D=function(e,t){return e===t&&(f=!0),0},N={}.hasOwnProperty,A=[],j=A.pop,q=A.push,L=A.push,H=A.slice,O=function(e,t){for(var n=0,r=e.length;n+~]|"+M+")"+M+"*"),z=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),X=new RegExp(W),U=new RegExp("^"+R+"$"),V={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+P+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},G=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/[+~]/,Z=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ee=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){p()},ie=me(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{L.apply(A=H.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){L={apply:A.length?function(e,t){q.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function oe(e,t,r,i){var o,s,l,c,f,h,v,m=t&&t.ownerDocument,T=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return r;if(!i&&((t?t.ownerDocument||t:w)!==d&&p(t),t=t||d,g)){if(11!==T&&(f=J.exec(e)))if(o=f[1]){if(9===T){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!S[e+" "]&&(!y||!y.test(e))){if(1!==T)m=t,v=e;else if("object"!==t.nodeName.toLowerCase()){(c=t.getAttribute("id"))?c=c.replace(te,ne):t.setAttribute("id",c=b),s=(h=a(e)).length;while(s--)h[s]="#"+c+" "+ve(h[s]);v=h.join(","),m=K.test(e)&&ge(t.parentNode)||t}if(v)try{return L.apply(r,m.querySelectorAll(v)),r}catch(e){}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace(B,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function se(e){return e[b]=!0,e}function ue(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function fe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function de(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return se(function(t){return t=+t,se(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},p=oe.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==d&&9===a.nodeType&&a.documentElement?(d=a,h=d.documentElement,g=!o(d),w!==d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=ue(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ue(function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Q.test(d.getElementsByClassName),n.getById=ue(function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&g)return t.getElementsByClassName(e)},v=[],y=[],(n.qsa=Q.test(d.querySelectorAll))&&(ue(function(e){h.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+b+"-]").length||y.push("~="),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||y.push(".#.+[+~]")}),ue(function(e){e.innerHTML="";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(n.matchesSelector=Q.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue(function(e){n.disconnectedMatch=m.call(e,"*"),m.call(e,"[s!='']:x"),v.push("!=",W)}),y=y.length&&new RegExp(y.join("|")),v=v.length&&new RegExp(v.join("|")),t=Q.test(h.compareDocumentPosition),x=t||Q.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===d||e.ownerDocument===w&&x(w,e)?-1:t===d||t.ownerDocument===w&&x(w,t)?1:c?O(c,e)-O(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===d?-1:t===d?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return ce(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?ce(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},d):d},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==d&&p(e),t=t.replace(z,"='$1']"),n.matchesSelector&&g&&!S[t+" "]&&(!v||!v.test(t))&&(!y||!y.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return oe(t,d,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==d&&p(e),x(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(D),f){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return c=null,e},i=oe.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=oe.selectors={cacheLength:50,createPseudo:se,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(Z,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(Z,ee),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(Z,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=oe.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace($," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",y=t.parentNode,v=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(y){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?y.firstChild:y.lastChild],a&&m){x=(d=(l=(c=(f=(p=y)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&y.childNodes[d];while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===v:1===p.nodeType)&&++x&&(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p===t))break;return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?se(function(e,n){var r,o=i(e,t),a=o.length;while(a--)e[r=O(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:se(function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[b]?se(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:se(function(e){return function(t){return oe(e,t).length>0}}),contains:se(function(e){return e=e.replace(Z,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:se(function(e){return U.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(Z,ee).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:de(!1),disabled:de(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return[0]}),last:he(function(e,t){return[t-1]}),eq:he(function(e,t,n){return[n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function be(e,t,n){for(var r=0,i=t.length;r-1&&(o[l]=!(a[l]=f))}}else v=we(v===a?v.splice(h,v.length):v),i?i(null,a,v,u):L.apply(a,v)})}function Ce(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),f=me(function(e){return O(t,e)>-1},s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&xe(p),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(B,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,y,v=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("*",c),E=T+=null==w?1:Math.random()||.1,k=C.length;for(c&&(l=a===d||a||c);m!==k&&null!=(f=C[m]);m++){if(i&&f){h=0,a||f.ownerDocument===d||(p(f),s=!g);while(y=e[h++])if(y(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!y&&f)&&v--,o&&x.push(f))}if(v+=m,n&&m!==v){h=0;while(y=t[h++])y(x,b,a,s);if(o){if(v>0)while(m--)x[m]||b[m]||(b[m]=j.call(u));b=we(b)}L.apply(u,b),c&&!o&&b.length>0&&v+t.length>1&&oe.uniqueSort(u)}return c&&(T=E,l=w),x};return n?se(o):o}return s=oe.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=a(e)),n=t.length;while(n--)(o=Ce(t[n]))[b]?r.push(o):i.push(o);(o=S(e,Ee(i,r))).selector=e}return o},u=oe.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(Z,ee),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}o=V.needsContext.test(e)?0:u.length;while(o--){if(l=u[o],r.relative[c=l.type])break;if((f=r.find[c])&&(i=f(l.matches[0].replace(Z,ee),K.test(u[0].type)&&ge(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&ve(u)))return L.apply(n,i),n;break}}}return(p||s(e,d))(i,t,!g,n,!t||K.test(e)&&ge(t.parentNode)||t),n},n.sortStable=b.split("").sort(D).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ue(function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))}),ue(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ue(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ue(function(e){return null==e.getAttribute("disabled")})||le(P,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),oe}(e);w.find=E,w.expr=E.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=E.uniqueSort,w.text=E.getText,w.isXMLDoc=E.isXML,w.contains=E.contains,w.escapeSelector=E.escape;var k=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=w.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?w.grep(e,function(e){return e===t!==n}):"string"!=typeof t?w.grep(e,function(e){return u.call(t,e)>-1!==n}):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,function(e){return 1===e.nodeType}))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(w(e).filter(function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&D.test(e)?w(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),A.test(i[1])&&w.isPlainObject(t))for(i in t)g(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=r.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,q=w(r);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?u.call(w(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return k(e,"parentNode")},parentsUntil:function(e,t,n){return k(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return k(e,"nextSibling")},prevAll:function(e){return k(e,"previousSibling")},nextUntil:function(e,t,n){return k(e,"nextSibling",n)},prevUntil:function(e,t,n){return k(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return N(e,"iframe")?e.contentDocument:(N(e,"template")&&(e=e.content||e),w.merge([],e.childNodes))}},function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=w.filter(r,i)),this.length>1&&(O[e]||w.uniqueSort(i),H.test(e)&&i.reverse()),this.pushStack(i)}});var M=/[^\x20\t\r\n\f]+/g;function R(e){var t={};return w.each(e.match(M)||[],function(e,n){t[n]=!0}),t}w.Callbacks=function(e){e="string"==typeof e?R(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1){n=a.shift();while(++s-1)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l};function I(e){return e}function W(e){throw e}function $(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.extend({Deferred:function(t){var n=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},"catch":function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred(function(t){w.each(n,function(n,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==W&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred(function(e){n[0][3].add(a(0,e,g(i)?i:I,e.notifyWith)),n[1][3].add(a(0,e,g(t)?t:I)),n[2][3].add(a(0,e,g(r)?r:W))}).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=o.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(r,i)}};if(t<=1&&($(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||g(i[n]&&i[n].then)))return a.then();while(n--)$(i[n],s(n),a.reject);return a.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&B.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout(function(){throw t})};var F=w.Deferred();w.fn.ready=function(e){return F.then(e)["catch"](function(e){w.readyException(e)}),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(r,[w]))}}),w.ready.then=F.then;function _(){r.removeEventListener("DOMContentLoaded",_),e.removeEventListener("load",_),w.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?e.setTimeout(w.ready):(r.addEventListener("DOMContentLoaded",_),e.addEventListener("load",_));var z=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n)){i=!0;for(s in n)z(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){K.remove(this,e)})}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t),a=function(){w.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:w.Callbacks("once memory").add(function(){J.remove(e,[t+"queue",n])})})}}),w.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?w.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(l=w.contains(o.ownerDocument,o),a=ye(f.appendChild(o),"script"),l&&ve(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),h.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",h.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var be=r.documentElement,we=/^key/,Te=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ce=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function ke(){return!1}function Se(){try{return r.activeElement}catch(e){}}function De(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)De(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ke;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return w().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),e.each(function(){w.event.add(this,t,i,r,n)})}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.get(e);if(y){n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(be,i),n.guid||(n.guid=w.guid++),(u=y.events)||(u=y.events={}),(a=y.handle)||(a=y.handle=function(t){return"undefined"!=typeof w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(M)||[""]).length;while(l--)d=g=(s=Ce.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.hasData(e)&&J.get(e);if(y&&(u=y.events)){l=(t=(t||"").match(M)||[""]).length;while(l--)if(s=Ce.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,y.handle)||w.removeEvent(e,d,y.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&J.remove(e,"handle events")}},dispatch:function(e){var t=w.event.fix(e),n,r,i,o,a,s,u=new Array(arguments.length),l=(J.get(this,"events")||{})[t.type]||[],c=w.event.special[t.type]||{};for(u[0]=t,n=1;n=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,Ae=/\s*$/g;function Le(e,t){return N(e,"table")&&N(11!==t.nodeType?t:t.firstChild,"tr")?w(e).children("tbody")[0]||e:e}function He(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Oe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Pe(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(J.hasData(e)&&(o=J.access(e),a=J.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n1&&"string"==typeof y&&!h.checkClone&&je.test(y))return e.each(function(i){var o=e.eq(i);v&&(t[0]=y.call(this,i,o.html())),Re(o,t,n,r)});if(p&&(i=xe(t,e[0].ownerDocument,!1,e,r),o=i.firstChild,1===i.childNodes.length&&(i=o),o||r)){for(u=(s=w.map(ye(i,"script"),He)).length;f")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=w.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||w.isXMLDoc(e)))for(a=ye(s),r=0,i=(o=ye(e)).length;r0&&ve(a,!u&&ye(e,"script")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(Y(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[K.expando]&&(n[K.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Ie(this,e,!0)},remove:function(e){return Ie(this,e)},text:function(e){return z(this,function(e){return void 0===e?w.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Re(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Le(this,e).appendChild(e)})},prepend:function(){return Re(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Le(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return w.clone(this,e,t)})},html:function(e){return z(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ae.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))),u}function et(e,t,n){var r=$e(e),i=Fe(e,t,r),o="border-box"===w.css(e,"boxSizing",!1,r),a=o;if(We.test(i)){if(!n)return i;i="auto"}return a=a&&(h.boxSizingReliable()||i===e.style[t]),("auto"===i||!parseFloat(i)&&"inline"===w.css(e,"display",!1,r))&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)],a=!0),(i=parseFloat(i)||0)+Ze(e,t,n||(o?"border":"content"),a,r,i)+"px"}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Fe(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=G(t),u=Xe.test(t),l=e.style;if(u||(t=Je(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"==(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=ue(e,t,i),o="number"),null!=n&&n===n&&("number"===o&&(n+=i&&i[3]||(w.cssNumber[s]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=G(t);return Xe.test(t)||(t=Je(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Fe(e,t,r)),"normal"===i&&t in Ve&&(i=Ve[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each(["height","width"],function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!ze.test(w.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):se(e,Ue,function(){return et(e,t,r)})},set:function(e,n,r){var i,o=$e(e),a="border-box"===w.css(e,"boxSizing",!1,o),s=r&&Ze(e,t,r,a,o);return a&&h.scrollboxSize()===o.position&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),s&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=w.css(e,t)),Ke(e,n,s)}}}),w.cssHooks.marginLeft=_e(h.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Fe(e,"marginLeft"))||e.getBoundingClientRect().left-se(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),w.each({margin:"",padding:"",border:"Width"},function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(w.cssHooks[e+t].set=Ke)}),w.fn.extend({css:function(e,t){return z(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=$e(e),i=t.length;a1)}});function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}w.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[w.cssProps[e.prop]]&&!w.cssHooks[e.prop]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},w.fx=tt.prototype.init,w.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===r.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,w.fx.interval),w.fx.tick())}function st(){return e.setTimeout(function(){nt=void 0}),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=oe[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(pt.tweeners[t]||[]).concat(pt.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each(function(){w.removeAttr(this,e)})}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?dt:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&N(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(M);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),dt={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\w+/g),function(e,t){var n=ht[t]||w.find.attr;ht[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ht[a],ht[a]=i,i=null!=n(e,t,r)?a:null,ht[a]=o),i}});var gt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;w.fn.extend({prop:function(e,t){return z(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[w.propFix[e]||e]})}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,"tabindex");return t?parseInt(t,10):gt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){w.propFix[this.toLowerCase()]=this});function vt(e){return(e.match(M)||[]).join(" ")}function mt(e){return e.getAttribute&&e.getAttribute("class")||""}function xt(e){return Array.isArray(e)?e:"string"==typeof e?e.match(M)||[]:[]}w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).addClass(e.call(this,t,mt(this)))});if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).removeClass(e.call(this,t,mt(this)))});if(!arguments.length)return this.attr("class","");if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])while(r.indexOf(" "+o+" ")>-1)r=r.replace(" "+o+" "," ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each(function(n){w(this).toggleClass(e.call(this,n,mt(this),t),t)}):this.each(function(){var t,i,o,a;if(r){i=0,o=w(this),a=xt(e);while(t=a[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else void 0!==e&&"boolean"!==n||((t=mt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&(" "+vt(mt(n))+" ").indexOf(t)>-1)return!0;return!1}});var bt=/\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=g(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=w.map(i,function(e){return null==e?"":e+""})),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(bt,""):null==n?"":n}}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,"value");return null!=t?t:vt(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each(["radio","checkbox"],function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},h.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),h.focusin="onfocusin"in e;var wt=/^(?:focusinfocus|focusoutblur)$/,Tt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,i,o){var a,s,u,l,c,p,d,h,v=[i||r],m=f.call(t,"type")?t.type:t,x=f.call(t,"namespace")?t.namespace.split("."):[];if(s=h=u=i=i||r,3!==i.nodeType&&8!==i.nodeType&&!wt.test(m+w.event.triggered)&&(m.indexOf(".")>-1&&(m=(x=m.split(".")).shift(),x.sort()),c=m.indexOf(":")<0&&"on"+m,t=t[w.expando]?t:new w.Event(m,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:w.makeArray(n,[t]),d=w.event.special[m]||{},o||!d.trigger||!1!==d.trigger.apply(i,n))){if(!o&&!d.noBubble&&!y(i)){for(l=d.delegateType||m,wt.test(l+m)||(s=s.parentNode);s;s=s.parentNode)v.push(s),u=s;u===(i.ownerDocument||r)&&v.push(u.defaultView||u.parentWindow||e)}a=0;while((s=v[a++])&&!t.isPropagationStopped())h=s,t.type=a>1?l:d.bindType||m,(p=(J.get(s,"events")||{})[t.type]&&J.get(s,"handle"))&&p.apply(s,n),(p=c&&s[c])&&p.apply&&Y(s)&&(t.result=p.apply(s,n),!1===t.result&&t.preventDefault());return t.type=m,o||t.isDefaultPrevented()||d._default&&!1!==d._default.apply(v.pop(),n)||!Y(i)||c&&g(i[m])&&!y(i)&&((u=i[c])&&(i[c]=null),w.event.triggered=m,t.isPropagationStopped()&&h.addEventListener(m,Tt),i[m](),t.isPropagationStopped()&&h.removeEventListener(m,Tt),w.event.triggered=void 0,u&&(i[c]=u)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each(function(){w.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),h.focusin||w.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=J.access(r,t);i||r.addEventListener(e,n,!0),J.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=J.access(r,t)-1;i?J.access(r,t,i):(r.removeEventListener(e,n,!0),J.remove(r,t))}}});var Ct=e.location,Et=Date.now(),kt=/\?/;w.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||w.error("Invalid XML: "+t),n};var St=/\[\]$/,Dt=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function jt(e,t,n,r){var i;if(Array.isArray(t))w.each(t,function(t,i){n||St.test(e)?r(e,i):jt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==x(t))r(e,t);else for(i in t)jt(e+"["+i+"]",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,function(){i(this.name,this.value)});else for(n in e)jt(n,e[n],t,i);return r.join("&")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=w.prop(this,"elements");return e?w.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!w(this).is(":disabled")&&At.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,function(e){return{name:t.name,value:e.replace(Dt,"\r\n")}}):{name:t.name,value:n.replace(Dt,"\r\n")}}).get()}});var qt=/%20/g,Lt=/#.*$/,Ht=/([?&])_=[^&]*/,Ot=/^(.*?):[ \t]*([^\r\n]*)$/gm,Pt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Mt=/^(?:GET|HEAD)$/,Rt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Bt=r.createElement("a");Bt.href=Ct.href;function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(M)||[];if(g(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function _t(e,t,n,r){var i={},o=e===Wt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)}),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function zt(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}function Xt(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}function Ut(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ct.href,type:"GET",isLocal:Pt.test(Ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,w.ajaxSettings),t):zt(w.ajaxSettings,e)},ajaxPrefilter:Ft(It),ajaxTransport:Ft(Wt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,p,d,h=w.ajaxSetup({},n),g=h.context||h,y=h.context&&(g.nodeType||g.jquery)?w(g):w.event,v=w.Deferred(),m=w.Callbacks("once memory"),x=h.statusCode||{},b={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s){s={};while(t=Ot.exec(a))s[t[1].toLowerCase()]=t[2]}t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return i&&i.abort(t),k(0,t),this}};if(v.promise(E),h.url=((t||h.url||Ct.href)+"").replace(Rt,Ct.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(M)||[""],null==h.crossDomain){l=r.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Bt.protocol+"//"+Bt.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=w.param(h.data,h.traditional)),_t(It,h,n,E),c)return E;(f=w.event&&h.global)&&0==w.active++&&w.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Mt.test(h.type),o=h.url.replace(Lt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(qt,"+")):(d=h.url.slice(o.length),h.data&&(h.processData||"string"==typeof h.data)&&(o+=(kt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(Ht,"$1"),d=(kt.test(o)?"&":"?")+"_="+Et+++d),h.url=o+d),h.ifModified&&(w.lastModified[o]&&E.setRequestHeader("If-Modified-Since",w.lastModified[o]),w.etag[o]&&E.setRequestHeader("If-None-Match",w.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&E.setRequestHeader("Content-Type",h.contentType),E.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+$t+"; q=0.01":""):h.accepts["*"]);for(p in h.headers)E.setRequestHeader(p,h.headers[p]);if(h.beforeSend&&(!1===h.beforeSend.call(g,E,h)||c))return E.abort();if(C="abort",m.add(h.complete),E.done(h.success),E.fail(h.error),i=_t(Wt,h,n,E)){if(E.readyState=1,f&&y.trigger("ajaxSend",[E,h]),c)return E;h.async&&h.timeout>0&&(u=e.setTimeout(function(){E.abort("timeout")},h.timeout));try{c=!1,i.send(b,k)}catch(e){if(c)throw e;k(-1,e)}}else k(-1,"No Transport");function k(t,n,r,s){var l,p,d,b,T,C=n;c||(c=!0,u&&e.clearTimeout(u),i=void 0,a=s||"",E.readyState=t>0?4:0,l=t>=200&&t<300||304===t,r&&(b=Xt(h,E,r)),b=Ut(h,b,E,l),l?(h.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(w.lastModified[o]=T),(T=E.getResponseHeader("etag"))&&(w.etag[o]=T)),204===t||"HEAD"===h.type?C="nocontent":304===t?C="notmodified":(C=b.state,p=b.data,l=!(d=b.error))):(d=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",l?v.resolveWith(g,[p,C,E]):v.rejectWith(g,[E,C,d]),E.statusCode(x),x=void 0,f&&y.trigger(l?"ajaxSuccess":"ajaxError",[E,h,l?p:d]),m.fireWith(g,[E,C]),f&&(y.trigger("ajaxComplete",[E,h]),--w.active||w.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,"json")},getScript:function(e,t){return w.get(e,void 0,t,"script")}}),w.each(["get","post"],function(e,t){w[t]=function(e,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}}),w._evalUrl=function(e){return w.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return g(e)?this.each(function(t){w(this).wrapInner(e.call(this,t))}):this.each(function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=g(e);return this.each(function(n){w(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){w(this).replaceWith(this.childNodes)}),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Vt={0:200,1223:204},Gt=w.ajaxSettings.xhr();h.cors=!!Gt&&"withCredentials"in Gt,h.ajax=Gt=!!Gt,w.ajaxTransport(function(t){var n,r;if(h.cors||Gt&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Vt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),w.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),w.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),w.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(i,o){t=w(" + + + + + + + + + diff --git a/webapp/templates/global.html b/webapp/templates/global.html new file mode 100644 index 0000000..6558157 --- /dev/null +++ b/webapp/templates/global.html @@ -0,0 +1,121 @@ +{% include 'header.html' %} + +
+ +

Global / Systemic Summary Statistics - Blocks ?? to ??

+ +
+
+ + +
+ +{% include 'footer.html' %} + diff --git a/webapp/templates/header.html b/webapp/templates/header.html new file mode 100644 index 0000000..6e1282e --- /dev/null +++ b/webapp/templates/header.html @@ -0,0 +1,66 @@ + + + + + + + frontrun me! + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ +
+ × + Welcome to frontrun me, the premier site for visualizing Ethereum gas auctions. These gas auctions + are often bids by frontrunners, arbitrageurs, and other programmatic network actors that seek to exploit inefficiencies in on-chain systems, + ultimately profiting miners. On this site, we monitor these behaviors on the network in real-time as these bots compete for block priority + in rapid-fire all-pay auctions*, showing users and mechanism designers the potential + rent-seeking economy created by orderbook inefficiencies on-chain. Timing data is sourced from a global network of + 8 nodes peered deeply with Ethereum. {% if deanon %}Read our full paper!{%endif%}
*Modern auctions are a special kind of all-pay auction, in which + the winner of the auction pays some constant percentage of their bid; they do not pay full gas, as they do not pay for execution, but they must pay for + attempted execution. +
+ +{% if deanon %} +

WARNING: THIS IS AN ALPHA VERSION OF THE SITE WITH PRELIMINARY DATA AND KNOWN BUGS. Use at your own risk and follow @ProjectChicago_ for announcements on release and more data being added.

+{% endif %} diff --git a/webapp/templates/index.html b/webapp/templates/index.html new file mode 100644 index 0000000..a121754 --- /dev/null +++ b/webapp/templates/index.html @@ -0,0 +1,226 @@ +{% include 'header.html' %} + +
+ +

Navigation:Market Insight | Bot Trades | Global Market Summary | Bot Strategies

+

+{% if not hide_global_graphs %} +

Global Market Overview

+
+ +
+{% endif %} +

Individual Real-Time Auction Data


+{% include 'paginate.html' %} +
+ +{% if not hide_global_graphs %} +
Note: only auctions with a single detected "winner" (mined with 2+ log events) are displayed in this view. Other auctions may contain multiple sub-auctions, as the split is heuristic.
+{% endif %} +
+ +{% for auction_id in range(start, end, -1) %} + +

Gas Auction #{{ auction_id }} - {{ auctions[auction_id][0]['date'].strftime('%Y-%m-%d %H:%M:%S') }} to {{ auctions[auction_id][-1]['date'].strftime('%H:%M:%S') }}; Start Time {{ auctions[auction_id][0]['time_seen'] / 10 ** 9 }}

+ + +
+
+ + +
+
+
+
+ + + + + + + + + + + + + + {% for bid in auctions[auction_id] %} + + + + + + + + + + + {% endfor %} + +
Seconds ElapsedGas Price (gwei)Bidder (Sender Address/Nonce)Gas LimitTransaction HashGas PaidBlock/Index Mined
{{ '%.3f' | format(bid['time_delta'] / 10 ** 9) }}{{ '%4.9f' | format(bid['gas_price'] / 10 ** 9) }} ({{ bid['price_percent_delta'] }}) {{ bid['sender'] }}/{{ bid['account_nonce'] }}{{ bid['gas_limit'] }} {{ bid['hash'] }}{% if bid['drawn'] %}{% endif %}{% if bid['block_number'] != None %} {{bid['block_number'] }} {% endif %}{% if bid['block_number'] != None %} {{ bid['block_number'] }} / {{ bid['transaction_index'] }} {% endif %}
+
+
+
+
+ +{% endfor %} +{% include 'paginate.html' %} + +
+ +{% include 'footer.html' %} diff --git a/webapp/templates/paginate.html b/webapp/templates/paginate.html new file mode 100644 index 0000000..b9e3b5b --- /dev/null +++ b/webapp/templates/paginate.html @@ -0,0 +1,11 @@ +
+Displaying Page {{ page }} of {{ lastpage }}
+ +
Viewing {{ limit }} items per page; switch to {% for limit in limits %}{{limit}} {%endfor%} +
diff --git a/webapp/templates/profit.html b/webapp/templates/profit.html new file mode 100644 index 0000000..bd4e8a7 --- /dev/null +++ b/webapp/templates/profit.html @@ -0,0 +1,57 @@ +{% include 'header.html' %} + +
+

Revenue Breakdown - Detailed

+ +{% include 'paginate.html' %} + +
+
+
+
+ + + + + + + + + + + {% for tx in txs %} + + + + + + + {% if tx['profit_data'] != None %} + + + + + {% endif %} + {% endfor %} + +
Transaction Hash
Sender
Gas Price (gwei)Gas Bid / PaidBlock/Index Mined/#Logs
TX #{{ tx['rowid'] }} {{ tx['transaction_hash'] }}
From {{ tx['from_address'] }}
{{ tx['gas_price']|int / (10 ** 9) }} Gwei Bid {{ tx['gas'] }} of {{ tx['receipt_gas_used'] }} Gas Used
[{{ 100 * tx['receipt_gas_used']|float / tx['gas']|float }}%]
Mined Block {{ tx['block_number'] }} @#{{ tx['transaction_index'] }} / {{ tx['num_logs'] }}
+ {% if tx['drawn'] %} + + {% endif %} + {{ graph_parser(tx['profit_graph']) }}

+ {{ profit_parser(tx['profit_calcs']) }} +

Transaction Attributes

+
    +
  • To contract {{tx['to_address']}}
  • +


+
+
+
+
+ +
+ +{% include 'paginate.html' %} +

+{% include 'footer.html' %} + diff --git a/webapp/templates/revenuegraphs.html b/webapp/templates/revenuegraphs.html new file mode 100644 index 0000000..6558157 --- /dev/null +++ b/webapp/templates/revenuegraphs.html @@ -0,0 +1,121 @@ +{% include 'header.html' %} + +
+ +

Global / Systemic Summary Statistics - Blocks ?? to ??

+ +
+
+ + +
+ +{% include 'footer.html' %} + diff --git a/webapp/templates/strategies.html b/webapp/templates/strategies.html new file mode 100644 index 0000000..ade565c --- /dev/null +++ b/webapp/templates/strategies.html @@ -0,0 +1,281 @@ +{% include 'header.html' %} + +
+ +

Navigation:Market Insight | Bot Trades | Global Market Summary | Bot Strategies

+
+ +

Individual Strategies

+ +{% for individual in pairwise_data['self_time'].keys()|sort %} +{% if pairwise_data['self_time'][individual]|length > 50 %} +

{{ individual }}

+({{pairwise_data['auctions'][individual]|length }} auctions participated / {{ pairwise_data['self_time'][individual]|length }} bids: {% for auction in pairwise_data['auctions'][individual]|sort %} {{ auction }} {% endfor %}) +
+
+
+
+
+ +{% endif %} +{% endfor %} + +

Pairwise Strategies

+ +{% for pair in pairwise_data['pairwise_time'].keys()|sort %} +{% if pairwise_data['pairwise_time'][pair]|length > 50 %} +

{{ pair }}

+
+
+
+
+
+ +{% endif %} +{% endfor %} + +
+ + +{% include 'footer.html' %} + diff --git a/write_csv.py b/write_csv.py new file mode 100644 index 0000000..f2a637c --- /dev/null +++ b/write_csv.py @@ -0,0 +1,30 @@ +import psycopg2, time, csv, os + +def get_last_line(): + with open('arbitrage_data.csv', 'rb') as f: + f.seek(-2, os.SEEK_END) + while f.read(1) != b'\n': + f.seek(-2, os.SEEK_CUR) + return str(int(f.readline().decode().split(",")[-1])) # make sure it parses as int implicitly (or typeerror) + + +FIELDS_TO_GRAB = 'hash,monitor_ip,sender,time_seen,payload,gas_price,gas_limit,amount,peer_name,account_nonce,id' + +conn = psycopg2.connect("postgres://tkell:d8HqKH;2~>~=@arbitrage3.ck0rrdngnqmh.us-west-2.rds.amazonaws.com/arbitrage?sslmode=verify-full") +cur = conn.cursor() +print(time.time()) + +grab_from = get_last_line() +print("[database fetcher] Grabbing starting at id " + grab_from) +cur.execute("SELECT " + FIELDS_TO_GRAB + " FROM arbitrage WHERE id > " + get_last_line() + " ;") +print(time.time()) + +with open('arbitrage_data.csv', 'a') as csvfile: + spamwriter = csv.writer(csvfile, delimiter=',', + quotechar='|', quoting=csv.QUOTE_MINIMAL) + + #spamwriter.writerow(FIELDS_TO_GRAB.split(",")) + for item in cur.fetchall(): + spamwriter.writerow(item) + +print("[database fetcher] Wrote to id " + get_last_line())