content
stringlengths
7
1.05M
#!/usr/bin/env python3 for _ in range(int(input())): input() # don't need n try: print(input().index('1') // 2) except ValueError: print(-1)
# basic features for lists: https://docs.python.org/3/tutorial/datastructures.html # List: mutable def main(): my_list = list() my_list = [1, 2, 3] print("----------Hinzufügen----------") # Option 1: Single Value my_list.append(-10) print(my_list) # Option 2: List Concatenation (Verkettung) my_list2 = [4, 5] my_list += my_list2 print(my_list) # Option 3: Iterables it = range(-2, 3, 1) my_list.extend(it) # extend-erweitern print(my_list) # Option 4: Insert at user-defined index my_list.insert(0, "hello") print(my_list) my_list.insert(-30, "hello") print(my_list) print("----------Entfernen----------") # Remove values my_list.pop() print(my_list) while 'hello' in my_list: idx = my_list.index('hello') my_list.pop(idx) print(my_list) print("----------kopieren----------") # Copy my_list_new = my_list print(hex(id(my_list))) print(hex(id(my_list_new))) my_list_new = my_list.copy() print(hex(id(my_list))) print(hex(id(my_list_new))) print("----------umdrehen----------") # Reverse my_list.reverse() print(my_list) print(my_list[::-1]) print("----------zählen----------") # Count print(my_list.count(1)) print("----------sortieren----------") # Sort my_list.sort(reverse=False) print(my_list) if __name__ == "__main__": main()
def assignments_yield_islice(n_clubs: int) -> Iterator[set]: # This is almost but not quite accurate # It's about 15% faster than non-islice, but I can't get the combinators to roll over right n_block_1 = n_clubs // 3 + ((n_clubs % 3) > 0) n_block_2 = n_clubs // 3 + ((n_clubs % 3) > 1) n1 = n_assignments(n_clubs, True) c2 = C(n_clubs - n_block_1, n_block_2) - ((n_clubs % 3) > 1) def _get_runs() -> Iterator[tuple]: if (n_clubs % 3) < 2: r = (n_clubs // 3) - 1 n = (2 * r) + 1 step = C(n, r) limit = n_assignments(n_clubs, True) if not (n_clubs % 3): limit //= 3 for i in range(0, limit, step * 2): yield [i + 1, i + step] else: # all good run i = n_assignments(n_clubs - 1, True) yield [1, i] i += 1 p_r = n_clubs // 3 p_n = 2 * p_r dupes = C(p_n, p_r) goods = C(p_n, p_r + 1) s_r = n_clubs // 3 s_n = 3 * s_r sub_runs = C(s_n, s_r) for _ in range(n_clubs // 3): # print(f'Now to do {sub_runs} runs of {dupes} dupes to {goods} goods') # length x period for __ in range(sub_runs): i += dupes + goods yield [i - goods, i - 1] p_r -= 1 p_n -= 1 change = C(p_n, p_r) dupes += change goods -= change s_n -= 1 sub_runs = C(s_n, s_r) # rest is all dupes # for block_1 in combinations(choices, n_block_1): # rest_2 = choices.difference(block_1) # for block_2 in combinations(rest_2, n_block_2): # yield block_1, block_2, rest_2.difference(block_2) # print('\n\n') def _advance(i: int, gen: Generator, tab: int=0) -> tuple: tab_ = ' ' * tab if i < run[0]: print(f'{tab_}skip from {i} to {run[0]}') skip = run[0] - i return True, skip, islice(gen, skip, None) elif i <= run[1]: return True, 0, gen else: try: run[0], run[1] = next(runs) print(f'{tab_}skip from {i} to {run[0]}') skip = run[0] - i return True, skip, islice(gen, skip, None) except: return False, None, None # choices = set(range(n_clubs)) choices = set(CHARSET[:n_clubs]) # TODO temp runs = _get_runs() # First run run = next(runs) # Get blocks 1 generator combs_1 = combinations(choices, n_block_1) i = 1 # Outer block until i is at n_assignments (naive version) while i <= n1: print(f'block 1 i: {i}') # Get next block 1 block_1 = next(combs_1) print(f'c1 advanced: {block_1}') # Separate remainder rest_2 = choices.difference(block_1) # Get blocks 2 generator combs_2 = combinations(rest_2, n_block_2) go_on, skip, combs_2 = _advance(i, combs_2, 1) if not go_on: return i += skip # Inner block until at most all combinations of rest are tried n2 = i + c2 while i < n2: print(f' block 2 i: {i}') block_2 = next(combs_2) print(f' c2 advanced: {block_2}') yield block_1, block_2, rest_2.difference(block_2) i += 1 print(f' i incremented to {i}') go_on, skip, combs_2 = _advance(i, combs_2, 1) if not go_on: return i += skip go_on, skip, combs_1 = _advance(i, combs_1) if not go_on: return i += skip
def reverse_vowel(s): vowels = "AEIOUaeiou" i, j = 0, len(s)-1 s = list(s) while i < j: while i < j and s[i] not in vowels: i += 1 while i < j and s[j] not in vowels: j -= 1 s[i], s[j] = s[j], s[i] i, j = i + 1, j - 1 return "".join(s)
print('Olá mundo!') print('Como estão vocês?') x = input('Como você está?\n').capitalize() if x == 'Bem': print('Quem bom que está bem!') print(x)
ips = ["127.0.0.1", "255.0.0.1", "137.44.1.20", "48.8.9.72", ".".join(str(x) for x in range(256))] z_a = ord("z") - ord("a") # apparently I find it hard to remember az is 26 letters for ip in ips: sip = [] for byte in ip.split("."): b, s = int(byte), [] if b < ord("a"): b += ord("a") if b > ord("z"): s.append("Z") b -= z_a if b > ord("z"): z, b = divmod(b, z_a) s.append(str(z)) s.append(chr(b + ord("a"))) else: s.append(chr(b)) else: s.append(chr(b).upper()) sip.append("".join(s)) elif b > ord("z"): z, b = divmod(b, z_a) s.append(str(z)) s.append(chr(b + ord("a"))) sip.append("".join(s)) else: sip.append(chr(b)) print(ip, "=", ".".join(sip)) table = {0: 'A', 1: 'B', 2: 'C', 3: 'D', 4: 'E', 5: 'F', 6: 'G', 7: 'H', 8: 'I', 9: 'J', 10: 'K', 11: 'L', 12: 'M', 13: 'N', 14: 'O', 15: 'P', 16: 'Q', 17: 'R', 18: 'S', 19: 'T', 20: 'U', 21: 'V', 22: 'W', 23: 'X', 24: 'Y', 25: 'Z', 26: 'Zb', 27: 'Zc', 28: 'Zd', 29: 'Ze', 30: 'Zf', 31: 'Zg', 32: 'Zh', 33: 'Zi', 34: 'Zj', 35: 'Zk', 36: 'Zl', 37: 'Zm', 38: 'Zn', 39: 'Zo', 40: 'Zp', 41: 'Zq', 42: 'Zr', 43: 'Zs', 44: 'Zt', 45: 'Zu', 46: 'Zv', 47: 'Zw', 48: 'Zx', 49: 'Zy', 50: 'Zz', 51: 'Z4x', 52: 'Z4y', 53: 'Z5a', 54: 'Z5b', 55: 'Z5c', 56: 'Z5d', 57: 'Z5e', 58: 'Z5f', 59: 'Z5g', 60: 'Z5h', 61: 'Z5i', 62: 'Z5j', 63: 'Z5k', 64: 'Z5l', 65: 'Z5m', 66: 'Z5n', 67: 'Z5o', 68: 'Z5p', 69: 'Z5q', 70: 'Z5r', 71: 'Z5s', 72: 'Z5t', 73: 'Z5u', 74: 'Z5v', 75: 'Z5w', 76: 'Z5x', 77: 'Z5y', 78: 'Z6a', 79: 'Z6b', 80: 'Z6c', 81: 'Z6d', 82: 'Z6e', 83: 'Z6f', 84: 'Z6g', 85: 'Z6h', 86: 'Z6i', 87: 'Z6j', 88: 'Z6k', 89: 'Z6l', 90: 'Z6m', 91: 'Z6n', 92: 'Z6o', 93: 'Z6p', 94: 'Z6q', 95: 'Z6r', 96: 'Z6s', 97: 'a', 98: 'b', 99: 'c', 100: 'd', 101: 'e', 102: 'f', 103: 'g', 104: 'h', 105: 'i', 106: 'j', 107: 'k', 108: 'l', 109: 'm', 110: 'n', 111: 'o', 112: 'p', 113: 'q', 114: 'r', 115: 's', 116: 't', 117: 'u', 118: 'v', 119: 'w', 120: 'x', 121: 'y', 122: 'z', 123: '4x', 124: '4y', 125: '5a', 126: '5b', 127: '5c', 128: '5d', 129: '5e', 130: '5f', 131: '5g', 132: '5h', 133: '5i', 134: '5j', 135: '5k', 136: '5l', 137: '5m', 138: '5n', 139: '5o', 140: '5p', 141: '5q', 142: '5r', 143: '5s', 144: '5t', 145: '5u', 146: '5v', 147: '5w', 148: '5x', 149: '5y', 150: '6a', 151: '6b', 152: '6c', 153: '6d', 154: '6e', 155: '6f', 156: '6g', 157: '6h', 158: '6i', 159: '6j', 160: '6k', 161: '6l', 162: '6m', 163: '6n', 164: '6o', 165: '6p', 166: '6q', 167: '6r', 168: '6s', 169: '6t', 170: '6u', 171: '6v', 172: '6w', 173: '6x', 174: '6y', 175: '7a', 176: '7b', 177: '7c', 178: '7d', 179: '7e', 180: '7f', 181: '7g', 182: '7h', 183: '7i', 184: '7j', 185: '7k', 186: '7l', 187: '7m', 188: '7n', 189: '7o', 190: '7p', 191: '7q', 192: '7r', 193: '7s', 194: '7t', 195: '7u', 196: '7v', 197: '7w', 198: '7x', 199: '7y', 200: '8a', 201: '8b', 202: '8c', 203: '8d', 204: '8e', 205: '8f', 206: '8g', 207: '8h', 208: '8i', 209: '8j', 210: '8k', 211: '8l', 212: '8m', 213: '8n', 214: '8o', 215: '8p', 216: '8q', 217: '8r', 218: '8s', 219: '8t', 220: '8u', 221: '8v', 222: '8w', 223: '8x', 224: '8y', 225: '9a', 226: '9b', 227: '9c', 228: '9d', 229: '9e', 230: '9f', 231: '9g', 232: '9h', 233: '9i', 234: '9j', 235: '9k', 236: '9l', 237: '9m', 238: '9n', 239: '9o', 240: '9p', 241: '9q', 242: '9r', 243: '9s', 244: '9t', 245: '9u', 246: '9v', 247: '9w', 248: '9x', 249: '9y', 250: '10a', 251: '10b', 252: '10c', 253: '10d', 254: '10e', 255: '10f'} # yapf: disable
# -*- coding: utf-8 -*- """ Created on Wed Jan 29 09:50:55 2020 @author: Administrator """ """ 已知三个升序整数数组a[l],b[m],c[n],请在三个数组中各找一个元素,使得组成的三元组距离最小. 三元组距离的定义是:假设a[i],b[j],c[k]是一个三元组,那么距离为:Distance=max(|a[i]-b[j]|,|a[i]-c[k]|,|b[j]-c[k]|), 请设计一个求最小三元组距离的最优算法. """ def GetDist(a , b , c): # get the distance among a,b,c dist = max(abs(a - b) , abs(a - c) , abs(b - c)) return dist , min(a , b , c) def FindMinDist(arr1 , arr2 , arr3): # find the minimum distance among three arrays, one element one array. poi1 = 0 ; poi2 = 0 ; poi3 = 0 mindist = 2 ^ 31 while poi1 < len(arr1) and poi2 < len(arr2) and poi3 < len(arr3): tmp_dist , minv = GetDist(arr1[poi1] , arr2[poi2] , arr3[poi3]) if tmp_dist < mindist: mindist = tmp_dist if minv == arr1[poi1]: poi1 += 1 elif minv == arr2[poi2]: poi2 += 1 elif minv == arr3[poi3]: poi3 += 1 if poi1 == len(arr1): while poi2 < len(arr2) and poi3 < len(arr3): tmp_dist , _= GetDist(arr1[-1] , arr2[poi2] , arr3[poi3]) if tmp_dist < mindist: mindist = tmp_dist if arr2[poi2] < arr3[poi3]: poi2 += 1 else: poi3 += 1 elif poi2 == len(arr2): while poi1 < len(arr1) and poi3 < len(arr3): tmp_dist , _ = GetDist(arr2[-1] , arr1[poi1] , arr3[poi3]) if tmp_dist < mindist: mindist = tmp_dist if arr1[poi1] < arr3[poi3]: poi1 += 1 else: poi3 += 1 else: while poi1 < len(arr1) and poi2 < len(arr2): tmp_dist = GetDist(arr1[poi1] , arr2[poi2] , arr3[-1]) if tmp_dist < mindist: mindist = tmp_dist if arr1[poi1] < arr2[poi2]: poi1 += 1 else: poi2 += 1 return mindist if __name__ == "__main__": a = [3,4,5,7,15] b = [10,12,14,16,17] c = [20,21,23,24,37,40] mindist = FindMinDist(a , b , c) print("The minimum distance among three arrays is : " , mindist)
class AI(): def __init__(self, grid): self.grid = grid def solve(self): covered = self.grid.grid.get_covered() try: cell = covered[0] except IndexError: print("Nothing more to do") return self.grid.press(*cell) print("Press", cell)
def StringVersion( seq ): return '.'.join( ['%s'] * len( seq )) % tuple( seq ) def TupleVersion( str ): return map( int, str.split( '.' ))
# responder-brute configuration file # Path to Responder.db RESPONDERDB = '../Responder.db' # Current hash file CURRENTHASHFILE = 'current.txt' # Poll for new hashes every N seconds POLLTIME = 5 # Use 'john' for John The Ripper or 'hashcat' for Hashcat. MODE = 'john' if MODE == 'john': # Command to run. Use "{hashtype}" without quotes where the hash type should be supplied # and {hash} where the hash file should be supplied COMMAND = 'john --format={hashtype} --wordlist=dictionary.dic {hash}' # Hash type format for john HASHTYPE_NTLMv1 = 'netntlm' HASHTYPE_NTLMv2 = 'netntlmv2' # Command to run after COMMAND execution. Not needed for hashcat. COMMAND_POST = 'john --show {}' else: # Command to run. Use "{}" without quotes where the hash file should be supplied COMMAND = 'hashcat -m {hashtype} -a 0 {hash} dictionary.dic' # Hash type format for hashcat HASHTYPE_NTLMv1 = '5500' HASHTYPE_NTLMv2 = '5600' # Command to run after COMMAND execution. Not needed for hashcat. COMMAND_POST = None # Timeout in seconds after which the COMMAND would be terminated TIMEOUT = 10*60
# -*- coding: utf-8 -*- # ---------------------------------------------------------------------- # CISCO-CDP-MIB # Compiled MIB # Do not modify this file directly # Run ./noc mib make_cmib instead # ---------------------------------------------------------------------- # Copyright (C) 2007-2018 The NOC Project # See LICENSE for details # ---------------------------------------------------------------------- # MIB Name NAME = "CISCO-CDP-MIB" # Metadata LAST_UPDATED = "2005-03-21" COMPILED = "2018-06-09" # MIB Data: name -> oid MIB = { "CISCO-CDP-MIB::ciscoCdpMIB": "1.3.6.1.4.1.9.9.23", "CISCO-CDP-MIB::ciscoCdpMIBObjects": "1.3.6.1.4.1.9.9.23.1", "CISCO-CDP-MIB::cdpInterface": "1.3.6.1.4.1.9.9.23.1.1", "CISCO-CDP-MIB::cdpInterfaceTable": "1.3.6.1.4.1.9.9.23.1.1.1", "CISCO-CDP-MIB::cdpInterfaceEntry": "1.3.6.1.4.1.9.9.23.1.1.1.1", "CISCO-CDP-MIB::cdpInterfaceIfIndex": "1.3.6.1.4.1.9.9.23.1.1.1.1.1", "CISCO-CDP-MIB::cdpInterfaceEnable": "1.3.6.1.4.1.9.9.23.1.1.1.1.2", "CISCO-CDP-MIB::cdpInterfaceMessageInterval": "1.3.6.1.4.1.9.9.23.1.1.1.1.3", "CISCO-CDP-MIB::cdpInterfaceGroup": "1.3.6.1.4.1.9.9.23.1.1.1.1.4", "CISCO-CDP-MIB::cdpInterfacePort": "1.3.6.1.4.1.9.9.23.1.1.1.1.5", "CISCO-CDP-MIB::cdpInterfaceName": "1.3.6.1.4.1.9.9.23.1.1.1.1.6", "CISCO-CDP-MIB::cdpInterfaceExtTable": "1.3.6.1.4.1.9.9.23.1.1.2", "CISCO-CDP-MIB::cdpInterfaceExtEntry": "1.3.6.1.4.1.9.9.23.1.1.2.1", "CISCO-CDP-MIB::cdpInterfaceExtendedTrust": "1.3.6.1.4.1.9.9.23.1.1.2.1.1", "CISCO-CDP-MIB::cdpInterfaceCosForUntrustedPort": "1.3.6.1.4.1.9.9.23.1.1.2.1.2", "CISCO-CDP-MIB::cdpCache": "1.3.6.1.4.1.9.9.23.1.2", "CISCO-CDP-MIB::cdpCacheTable": "1.3.6.1.4.1.9.9.23.1.2.1", "CISCO-CDP-MIB::cdpCacheEntry": "1.3.6.1.4.1.9.9.23.1.2.1.1", "CISCO-CDP-MIB::cdpCacheIfIndex": "1.3.6.1.4.1.9.9.23.1.2.1.1.1", "CISCO-CDP-MIB::cdpCacheDeviceIndex": "1.3.6.1.4.1.9.9.23.1.2.1.1.2", "CISCO-CDP-MIB::cdpCacheAddressType": "1.3.6.1.4.1.9.9.23.1.2.1.1.3", "CISCO-CDP-MIB::cdpCacheAddress": "1.3.6.1.4.1.9.9.23.1.2.1.1.4", "CISCO-CDP-MIB::cdpCacheVersion": "1.3.6.1.4.1.9.9.23.1.2.1.1.5", "CISCO-CDP-MIB::cdpCacheDeviceId": "1.3.6.1.4.1.9.9.23.1.2.1.1.6", "CISCO-CDP-MIB::cdpCacheDevicePort": "1.3.6.1.4.1.9.9.23.1.2.1.1.7", "CISCO-CDP-MIB::cdpCachePlatform": "1.3.6.1.4.1.9.9.23.1.2.1.1.8", "CISCO-CDP-MIB::cdpCacheCapabilities": "1.3.6.1.4.1.9.9.23.1.2.1.1.9", "CISCO-CDP-MIB::cdpCacheVTPMgmtDomain": "1.3.6.1.4.1.9.9.23.1.2.1.1.10", "CISCO-CDP-MIB::cdpCacheNativeVLAN": "1.3.6.1.4.1.9.9.23.1.2.1.1.11", "CISCO-CDP-MIB::cdpCacheDuplex": "1.3.6.1.4.1.9.9.23.1.2.1.1.12", "CISCO-CDP-MIB::cdpCacheApplianceID": "1.3.6.1.4.1.9.9.23.1.2.1.1.13", "CISCO-CDP-MIB::cdpCacheVlanID": "1.3.6.1.4.1.9.9.23.1.2.1.1.14", "CISCO-CDP-MIB::cdpCachePowerConsumption": "1.3.6.1.4.1.9.9.23.1.2.1.1.15", "CISCO-CDP-MIB::cdpCacheMTU": "1.3.6.1.4.1.9.9.23.1.2.1.1.16", "CISCO-CDP-MIB::cdpCacheSysName": "1.3.6.1.4.1.9.9.23.1.2.1.1.17", "CISCO-CDP-MIB::cdpCacheSysObjectID": "1.3.6.1.4.1.9.9.23.1.2.1.1.18", "CISCO-CDP-MIB::cdpCachePrimaryMgmtAddrType": "1.3.6.1.4.1.9.9.23.1.2.1.1.19", "CISCO-CDP-MIB::cdpCachePrimaryMgmtAddr": "1.3.6.1.4.1.9.9.23.1.2.1.1.20", "CISCO-CDP-MIB::cdpCacheSecondaryMgmtAddrType": "1.3.6.1.4.1.9.9.23.1.2.1.1.21", "CISCO-CDP-MIB::cdpCacheSecondaryMgmtAddr": "1.3.6.1.4.1.9.9.23.1.2.1.1.22", "CISCO-CDP-MIB::cdpCachePhysLocation": "1.3.6.1.4.1.9.9.23.1.2.1.1.23", "CISCO-CDP-MIB::cdpCacheLastChange": "1.3.6.1.4.1.9.9.23.1.2.1.1.24", "CISCO-CDP-MIB::cdpCtAddressTable": "1.3.6.1.4.1.9.9.23.1.2.2", "CISCO-CDP-MIB::cdpCtAddressEntry": "1.3.6.1.4.1.9.9.23.1.2.2.1", "CISCO-CDP-MIB::cdpCtAddressIndex": "1.3.6.1.4.1.9.9.23.1.2.2.1.3", "CISCO-CDP-MIB::cdpCtAddressType": "1.3.6.1.4.1.9.9.23.1.2.2.1.4", "CISCO-CDP-MIB::cdpCtAddress": "1.3.6.1.4.1.9.9.23.1.2.2.1.5", "CISCO-CDP-MIB::cdpGlobal": "1.3.6.1.4.1.9.9.23.1.3", "CISCO-CDP-MIB::cdpGlobalRun": "1.3.6.1.4.1.9.9.23.1.3.1", "CISCO-CDP-MIB::cdpGlobalMessageInterval": "1.3.6.1.4.1.9.9.23.1.3.2", "CISCO-CDP-MIB::cdpGlobalHoldTime": "1.3.6.1.4.1.9.9.23.1.3.3", "CISCO-CDP-MIB::cdpGlobalDeviceId": "1.3.6.1.4.1.9.9.23.1.3.4", "CISCO-CDP-MIB::cdpGlobalLastChange": "1.3.6.1.4.1.9.9.23.1.3.5", "CISCO-CDP-MIB::cdpGlobalDeviceIdFormatCpb": "1.3.6.1.4.1.9.9.23.1.3.6", "CISCO-CDP-MIB::cdpGlobalDeviceIdFormat": "1.3.6.1.4.1.9.9.23.1.3.7", "CISCO-CDP-MIB::ciscoCdpMIBConformance": "1.3.6.1.4.1.9.9.23.2", "CISCO-CDP-MIB::ciscoCdpMIBCompliances": "1.3.6.1.4.1.9.9.23.2.1", "CISCO-CDP-MIB::ciscoCdpMIBGroups": "1.3.6.1.4.1.9.9.23.2.2", }
class Simple(object): def __init__(self, lines): self.lines = lines def __enter__(self): return self def __exit__(self, *args): pass def path(self): return None def get_doc_ids(self): return list(range(len(self.lines))) def get_doc_text(self, line): return self.lines[line] def close(self): pass
''' igualad: a == b desigualad: a != b a menor que b: a < b a menor o igual b: a <= b a mayor que b: a > b a mayor o igual b: a >= b ''' # if basico en varias lineas a = 33 b = 200 if b > a: print("b es mayor a") # if anidado en varias lineas a = 33 b = 33 if b > a: print("b es mayor a") elif a == b: print("a y b son iguales") # if anidado con else final en varias lineas if b > a: print("b es mayor a") elif a == b: print("a y b son iguales") else: print("a es mayor b") # if y acciones en una sola linea if b > a: print("b es mayor a") elif a == b: print("a y b son iguales") else: print("a es mayor b") # if else una linea print("A") if a > b else print("B") # 3 condiciones en una linea print("A") if a > b else print("=") if a == b else print("B")
# Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right # class Solution: # def inorderTraversal(self, root: TreeNode) -> List[int]: # res = [] # if not root: # return res # def dfs(root): # if not root: # return # left, right = root.left, root.right # if left: # dfs(left) # res.append(root.val) # if right: # dfs(right) # dfs(root) # return res # class Solution: # def inorderTraversal(self, root: TreeNode) -> List[int]: # res = [] # if not root: # return res # stack = [] # p = root # while(p or stack): # if p: # stack.append(p) # p = p.left # else: # p = stack.pop() # res.append(p.val) # p = p.right # return res class Solution: def inorderTraversal(self, root: TreeNode) -> List[int]: res = [] if not root: return res stack = [(False, root)] while stack: visited, node = stack.pop() if not node: continue if visited: res.append(node.val) else: stack.append((False, node.right)) stack.append((True, node)) stack.append((False, node.left)) return res
class Fifo(list): def __init__(self): self.back = [] self.append = self.back.append def pop(self): if not self: self.back.reverse() self[:] = self.back del self.back[:] return super(Fifo, self).pop()
## Script (Python) "getPautasPautao" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters=data='', ##title=Retorna a lista de pautas do pautao ret = { 'manha': [], 'tarde': [], 'noite': [], 'nota':[], 'programas': [], 'semturno': [] } if not data: data = DateTime().Date() pautas = context.portal_catalog.searchResults(portal_type='Pauta', \ getData=data, \ review_state='Pautao') programas = ['nbr-entrevista', 'documentacao', 'bomdiaministro', 'cenasdobrasil', 'brasilempauta', 'cafe' ] for pauta in pautas: turno = pauta.getTurno midias = pauta.getMidias nota = pauta.getNota if nota: ret['nota'].append(pauta) else: if [x for x in midias for y in programas if x == y]: ret['programas'].append(pauta) else: if not turno: ret['semturno'].append(pauta) else: if 'Manh\xc3\xa3' in turno: ret['manha'].append(pauta) if 'Tarde' in turno: ret['tarde'].append(pauta) if 'Noite' in turno: ret['noite'].append(pauta) return ret
"""Hackerrank Problem: https://www.hackerrank.com/challenges/validate-list-of-email-address-with-filter/problem""" def fun(s): """Determine if the passed in email address is valid based on the following rules: It must have the [email protected] format type. The username can only contain letters, digits, dashes and underscores [a-z], [A-Z], [0-9], [_-]. The website name can only have letters and digits [a-z][A-Z][0-9] The extension can only contain letters [a-z][A-Z]. The maximum length of the extension is 3. Args: s (str): Email address to check Returns: (bool): Whether email is valid or not """ if s.count("@") == 1: if s.count(".") == 1: user, domain = s.split("@") website, extension = domain.split(".") if user.replace("-", "").replace("_", "").isalnum(): if website.isalnum(): if extension.isalnum(): if len(extension) <= 3: return True return False if __name__ == "__main__": test = "itsallcrap" print(fun(test))
""" Dummy module to substitute missing dependencies, e.g.: >>> try: ... import termcolor ... except ImportError: ... import dummy as termcolor Now some functionality of missing modules can be used in form of dummy functions, i.e. it will make no real effect. E.g. `termcolor.colored` will return text without any alterations. See sections below for the list of supported modules. """ # termcolor def colored(s, *args, **kwargs): return s
class BaseModule(object): def __init__(self, connector): self.connector = connector def setup(self): pass
''' Created on 09.03.2019 @author: Nicco ''' class plan_base(object): ''' plan base is providing alle the methods to connect to act, perception and the simulator ''' def __init__(self, params): ''' Constructor '''
even_set = set() odd_set = set() for row in range(int(input())): name = input() ascii_letters = [ord(letter) for letter in name] result = sum(ascii_letters) // (row+1) if result % 2 == 0: even_set.add(result) else: odd_set.add(result) if sum(even_set) == sum(odd_set): [odd_set.add(n) for n in even_set] elif sum(even_set) < sum(odd_set): odd_set = odd_set.difference(even_set) else: odd_set = odd_set.symmetric_difference(even_set) print(', '.join([str(n) for n in odd_set]))
_base_ = [ '../_base_/models/ocrnet_r50-d8.py', '../_base_/datasets/cityscapes_sccqq.py', '../_base_/default_runtime.py', '../_base_/schedules/schedule_80k.py' ] model = dict(pretrained='open-mmlab://resnet101_v1c', backbone=dict(depth=101)) optimizer = dict(lr=0.02) lr_config = dict(min_lr=2e-4) data = dict( samples_per_gpu=1, workers_per_gpu=4, )
#!/usr/bin/env python3 # -*- coding:utf-8 -*- # author: bigfoolliu """ python类的内置属性 __dict__ : 类的属性(包含一个字典,由类的数据属性组成) __doc__ :类的文档字符串 __name__: 类名 __module__: 类定义所在的模块(类的全名是'__main__.className',如果类位于一个导入模块mymod中,那么className.__module__ 等于 mymod) __bases__ : 类的所有父类构成元素(包含了一个由所有父类组成的元组) __class__: 类返回其元类 __mro__: 返回类的继承顺序 """ class Employee(object): """员工类:""" employee_count = 0 def __init__(self, name): self.name = name def show_name(self): print(self.name) def main(): print('__doc__: ', Employee.__doc__) print('__name__: ', Employee.__name__) print('__bases__: ', Employee.__bases__) print('__module__: ', Employee.__module__) print('__dict__: ', Employee.__dict__) print('__class__: ', Employee.__class__) print('__mro__: ', Employee.__mro__) if __name__ == '__main__': main()
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @version: 1.0 @author: xjl @file: file_transmission.py 将利用多线程实现文件的传输 @time: 2021/10/22 22:21 """ if __name__ == '__main__': pass
# # PySNMP MIB module BAY-STACK-PIM-EXT-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/BAY-STACK-PIM-EXT-MIB # Produced by pysmi-0.3.4 at Wed May 1 11:36:08 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsIntersection") InterfaceIndex, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") Bits, MibIdentifier, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Counter64, ObjectIdentity, TimeTicks, Gauge32, IpAddress, Integer32, Counter32, Unsigned32, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "MibIdentifier", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Counter64", "ObjectIdentity", "TimeTicks", "Gauge32", "IpAddress", "Integer32", "Counter32", "Unsigned32", "NotificationType") RowStatus, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "DisplayString", "TextualConvention") bayStackMibs, = mibBuilder.importSymbols("SYNOPTICS-ROOT-MIB", "bayStackMibs") bayStackPimExtMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 45, 5, 27)) bayStackPimExtMib.setRevisions(('2009-02-27 00:00', '2009-02-10 00:00', '2007-11-28 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: bayStackPimExtMib.setRevisionsDescriptions(('v3: Changed bspimNeighborLoss to bspimeNeighborStateChanged.', 'v2: Added bspimNeighborLoss.', 'v1: Initial version.',)) if mibBuilder.loadTexts: bayStackPimExtMib.setLastUpdated('200902270000Z') if mibBuilder.loadTexts: bayStackPimExtMib.setOrganization('Nortel Networks') if mibBuilder.loadTexts: bayStackPimExtMib.setContactInfo('Nortel Networks') if mibBuilder.loadTexts: bayStackPimExtMib.setDescription("Nortel Networks PIM Extension MIB Copyright 2007 Nortel Networks, Inc. All rights reserved. This Nortel Networks SNMP Management Information Base Specification embodies Nortel Networks' confidential and proprietary intellectual property. Nortel Networks retains all title and ownership in the Specification, including any revisions. This Specification is supplied 'AS IS,' and Nortel Networks makes no warranty, either express or implied, as to the use, operation, condition, or performance of the Specification.") bspimeNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 45, 5, 27, 0)) bspimeObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 45, 5, 27, 1)) bspimeNotificationObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 45, 5, 27, 2)) bspimeScalars = MibIdentifier((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 1)) bspimePimVirtualNeighborTable = MibTable((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 2), ) if mibBuilder.loadTexts: bspimePimVirtualNeighborTable.setStatus('current') if mibBuilder.loadTexts: bspimePimVirtualNeighborTable.setDescription('PIM Virtual Neighbor table.') bspimePimVirtualNeighborEntry = MibTableRow((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 2, 1), ).setIndexNames((0, "BAY-STACK-PIM-EXT-MIB", "bspimePimVirtualNeighborIfIndex"), (0, "BAY-STACK-PIM-EXT-MIB", "bspimePimVirtualNeighborAddress")) if mibBuilder.loadTexts: bspimePimVirtualNeighborEntry.setStatus('current') if mibBuilder.loadTexts: bspimePimVirtualNeighborEntry.setDescription('A PIM virtual neighbor.') bspimePimVirtualNeighborIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 2, 1, 1), InterfaceIndex()) if mibBuilder.loadTexts: bspimePimVirtualNeighborIfIndex.setStatus('current') if mibBuilder.loadTexts: bspimePimVirtualNeighborIfIndex.setDescription('IP address of the interface of the virtual neighbor.') bspimePimVirtualNeighborAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 2, 1, 2), IpAddress()) if mibBuilder.loadTexts: bspimePimVirtualNeighborAddress.setStatus('current') if mibBuilder.loadTexts: bspimePimVirtualNeighborAddress.setDescription('IP address of the virtual neighbor.') bspimePimVirtualNeighborRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 2, 1, 3), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: bspimePimVirtualNeighborRowStatus.setStatus('current') if mibBuilder.loadTexts: bspimePimVirtualNeighborRowStatus.setDescription('Used to create/delete virtual neighbors.') bspimePimGroupActiveRPMappingTable = MibTable((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 3), ) if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingTable.setStatus('current') if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingTable.setDescription('PIM Group -> Active RP Mapping table.') bspimePimGroupActiveRPMappingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 3, 1), ).setIndexNames((0, "BAY-STACK-PIM-EXT-MIB", "bspimePimGroupActiveRPMappingGroupAddress"), (0, "BAY-STACK-PIM-EXT-MIB", "bspimePimGroupActiveRPMappingGroupMask"), (0, "BAY-STACK-PIM-EXT-MIB", "bspimePimGroupActiveRPMappingActiveRP")) if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingEntry.setStatus('current') if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingEntry.setDescription('A mapping of a group to its active RP.') bspimePimGroupActiveRPMappingGroupAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 3, 1, 1), IpAddress()) if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingGroupAddress.setStatus('current') if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingGroupAddress.setDescription('Group address.') bspimePimGroupActiveRPMappingGroupMask = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 3, 1, 2), IpAddress()) if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingGroupMask.setStatus('current') if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingGroupMask.setDescription('Group mask.') bspimePimGroupActiveRPMappingActiveRP = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 3, 1, 3), IpAddress()) if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingActiveRP.setStatus('current') if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingActiveRP.setDescription('IP address of the active RP.') bspimePimGroupActiveRPMappingPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 45, 5, 27, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly") if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingPriority.setStatus('current') if mibBuilder.loadTexts: bspimePimGroupActiveRPMappingPriority.setDescription('Priority of the active RP.') bspimeNotifNeighborStatus = MibScalar((1, 3, 6, 1, 4, 1, 45, 5, 27, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: bspimeNotifNeighborStatus.setStatus('current') if mibBuilder.loadTexts: bspimeNotifNeighborStatus.setDescription('When a neighbor PIM interface changes state, this indicates whether the new state is up or down.') bspimeNeighborStateChanged = NotificationType((1, 3, 6, 1, 4, 1, 45, 5, 27, 0, 1)).setObjects(("BAY-STACK-PIM-EXT-MIB", "rcPimNeighborIfIndex"), ("BAY-STACK-PIM-EXT-MIB", "bspimeNotifNeighborStatus")) if mibBuilder.loadTexts: bspimeNeighborStateChanged.setStatus('current') if mibBuilder.loadTexts: bspimeNeighborStateChanged.setDescription("A bspimeNeighborChange notification signifies a change of state of an adjacency with a neighbor. This notification should be generated when the router's PIM interface is disabled or enabled, or when a router's PIM neighbor adjacency expires or is established.") mibBuilder.exportSymbols("BAY-STACK-PIM-EXT-MIB", bspimePimVirtualNeighborAddress=bspimePimVirtualNeighborAddress, bspimeScalars=bspimeScalars, bspimePimGroupActiveRPMappingPriority=bspimePimGroupActiveRPMappingPriority, bspimeNotificationObjects=bspimeNotificationObjects, bspimePimGroupActiveRPMappingActiveRP=bspimePimGroupActiveRPMappingActiveRP, bspimeNotifNeighborStatus=bspimeNotifNeighborStatus, bspimeNotifications=bspimeNotifications, bspimeNeighborStateChanged=bspimeNeighborStateChanged, bspimePimGroupActiveRPMappingTable=bspimePimGroupActiveRPMappingTable, bayStackPimExtMib=bayStackPimExtMib, bspimePimGroupActiveRPMappingGroupAddress=bspimePimGroupActiveRPMappingGroupAddress, bspimePimVirtualNeighborTable=bspimePimVirtualNeighborTable, bspimePimVirtualNeighborIfIndex=bspimePimVirtualNeighborIfIndex, bspimePimGroupActiveRPMappingEntry=bspimePimGroupActiveRPMappingEntry, PYSNMP_MODULE_ID=bayStackPimExtMib, bspimePimGroupActiveRPMappingGroupMask=bspimePimGroupActiveRPMappingGroupMask, bspimePimVirtualNeighborEntry=bspimePimVirtualNeighborEntry, bspimePimVirtualNeighborRowStatus=bspimePimVirtualNeighborRowStatus, bspimeObjects=bspimeObjects)
#max() 方法返回给定参数的最小值,可比较字符.汉字和表达式 print(min(1, 2, 3, 45, 4)) print(min([1, 2, 3, 4, 5, 6])) print(min('a', 'b', 'c', 'd')) print(min('梁', '伟', '洋')) print(min(8+2, 1+1, 9+9))
# # PySNMP MIB module Nortel-Magellan-Passport-FrameRelayUniTraceMIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Nortel-Magellan-Passport-FrameRelayUniTraceMIB # Produced by pysmi-0.3.4 at Wed May 1 14:27:22 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint") frUniIndex, frUni = mibBuilder.importSymbols("Nortel-Magellan-Passport-FrameRelayUniMIB", "frUniIndex", "frUni") Unsigned32, StorageType, RowPointer, DisplayString, RowStatus = mibBuilder.importSymbols("Nortel-Magellan-Passport-StandardTextualConventionsMIB", "Unsigned32", "StorageType", "RowPointer", "DisplayString", "RowStatus") NonReplicated, AsciiString = mibBuilder.importSymbols("Nortel-Magellan-Passport-TextualConventionsMIB", "NonReplicated", "AsciiString") passportMIBs, = mibBuilder.importSymbols("Nortel-Magellan-Passport-UsefulDefinitionsMIB", "passportMIBs") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") iso, Counter64, Gauge32, Unsigned32, IpAddress, NotificationType, Integer32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, TimeTicks, ModuleIdentity, Counter32, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "Counter64", "Gauge32", "Unsigned32", "IpAddress", "NotificationType", "Integer32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "TimeTicks", "ModuleIdentity", "Counter32", "ObjectIdentity") DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention") frameRelayUniTraceMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 105)) frUniTrace = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7)) frUniTraceRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 1), ) if mibBuilder.loadTexts: frUniTraceRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceRowStatusTable.setDescription('This entry controls the addition and deletion of frUniTrace components.') frUniTraceRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-FrameRelayUniMIB", "frUniIndex"), (0, "Nortel-Magellan-Passport-FrameRelayUniTraceMIB", "frUniTraceIndex")) if mibBuilder.loadTexts: frUniTraceRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceRowStatusEntry.setDescription('A single entry in the table represents a single frUniTrace component.') frUniTraceRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: frUniTraceRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceRowStatus.setDescription('This variable is used as the basis for SNMP naming of frUniTrace components. These components can be added and deleted.') frUniTraceComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: frUniTraceComponentName.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") frUniTraceStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: frUniTraceStorageType.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceStorageType.setDescription('This variable represents the storage type value for the frUniTrace tables.') frUniTraceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: frUniTraceIndex.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceIndex.setDescription('This variable represents the index for the frUniTrace tables.') frUniTraceOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 10), ) if mibBuilder.loadTexts: frUniTraceOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceOperationalTable.setDescription('This group provides the operational attributes for the Trace component.') frUniTraceOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-FrameRelayUniMIB", "frUniIndex"), (0, "Nortel-Magellan-Passport-FrameRelayUniTraceMIB", "frUniTraceIndex")) if mibBuilder.loadTexts: frUniTraceOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceOperationalEntry.setDescription('An entry in the frUniTraceOperationalTable.') frUniTraceReceiverName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 10, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: frUniTraceReceiverName.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceReceiverName.setDescription('This attribute should be set to the name of the desired trace receiver before starting a trace session. All available trace receivers are listed under the Trace Rcvr/<string> component. This attribute cannot be set while a trace is active.') frUniTraceDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 10, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 9999)).clone(60)).setMaxAccess("readwrite") if mibBuilder.loadTexts: frUniTraceDuration.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceDuration.setDescription('This attribute specifies the duration, in minutes, of a trace session. A value of 0 indicates unlimited duration in which case a trace session remains active until a stop command is issued. The default duration is 60 minutes. This attribute cannot be set while a trace is active.') frUniTraceQueueLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 10, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 100)).clone(20)).setMaxAccess("readwrite") if mibBuilder.loadTexts: frUniTraceQueueLimit.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceQueueLimit.setDescription('This attribute specifies the total number of bytes of traced data which may be queued for transmission to the trace receiver. When this limit is exceeded, incoming traced frames are discarded. This attribute can be set while a trace is active and takes effect immediately.') frUniTraceSession = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 10, 1, 5), RowPointer()).setMaxAccess("readonly") if mibBuilder.loadTexts: frUniTraceSession.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceSession.setDescription('This attribute is set automatically. It identifies the Trace Session component which is forwarding the trace data. This attribute is empty unless a trace is active.') frUniTraceFilter = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2)) frUniTraceFilterRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 1), ) if mibBuilder.loadTexts: frUniTraceFilterRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterRowStatusTable.setDescription('This entry controls the addition and deletion of frUniTraceFilter components.') frUniTraceFilterRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-FrameRelayUniMIB", "frUniIndex"), (0, "Nortel-Magellan-Passport-FrameRelayUniTraceMIB", "frUniTraceIndex"), (0, "Nortel-Magellan-Passport-FrameRelayUniTraceMIB", "frUniTraceFilterIndex")) if mibBuilder.loadTexts: frUniTraceFilterRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterRowStatusEntry.setDescription('A single entry in the table represents a single frUniTraceFilter component.') frUniTraceFilterRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: frUniTraceFilterRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterRowStatus.setDescription('This variable is used as the basis for SNMP naming of frUniTraceFilter components. These components cannot be added nor deleted.') frUniTraceFilterComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: frUniTraceFilterComponentName.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") frUniTraceFilterStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: frUniTraceFilterStorageType.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterStorageType.setDescription('This variable represents the storage type value for the frUniTraceFilter tables.') frUniTraceFilterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: frUniTraceFilterIndex.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterIndex.setDescription('This variable represents the index for the frUniTraceFilter tables.') frUniTraceFilterOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 10), ) if mibBuilder.loadTexts: frUniTraceFilterOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterOperationalTable.setDescription('This group provides the operational attributes for the Frame Relay Trace Filter component.') frUniTraceFilterOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-FrameRelayUniMIB", "frUniIndex"), (0, "Nortel-Magellan-Passport-FrameRelayUniTraceMIB", "frUniTraceIndex"), (0, "Nortel-Magellan-Passport-FrameRelayUniTraceMIB", "frUniTraceFilterIndex")) if mibBuilder.loadTexts: frUniTraceFilterOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterOperationalEntry.setDescription('An entry in the frUniTraceFilterOperationalTable.') frUniTraceFilterTraceType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 10, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="e0")).setMaxAccess("readwrite") if mibBuilder.loadTexts: frUniTraceFilterTraceType.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterTraceType.setDescription('This attribute specifies the level of filtering required for this trace session. A value of lmi indicates that Lmi frames are traced. A value of dlci indicates that frames from the Dlci specified by the tracedDlci attribute are traced. A value of badFrames indicates that bad received frames (overruns, CRC errors, aborts) are traced. The default is to trace all frames. This attribute can be set while a trace is active and takes effect immediately. Description of bits: lmi(0) dlci(1) badFrames(2)') frUniTraceFilterTracedDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 10, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 1007))).setMaxAccess("readwrite") if mibBuilder.loadTexts: frUniTraceFilterTracedDlci.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterTracedDlci.setDescription('This attribute specifies a particular Dlci to trace. A value of zero specifies that all Dlcis are to be traced. This attribute can be set while a trace is active and takes effect immediately.') frUniTraceFilterDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 10, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="c0")).setMaxAccess("readwrite") if mibBuilder.loadTexts: frUniTraceFilterDirection.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterDirection.setDescription('This attribute specifies the direction of the data to be traced as viewed by the service. The values can be egress, and/or ingress. An egress value indicates frames outbound from the service. An ingress value indicates frames inbound to the service. This attribute can be set while a trace is active and takes effect immediately. Description of bits: egress(0) ingress(1)') frUniTraceFilterTracedLength = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 71, 7, 2, 10, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 2000)).clone(2000)).setMaxAccess("readwrite") if mibBuilder.loadTexts: frUniTraceFilterTracedLength.setStatus('mandatory') if mibBuilder.loadTexts: frUniTraceFilterTracedLength.setDescription('This attribute specifies the maximum number of bytes to trace per frame starting from the byte following the frame flag. If the frame length is longer than the value specified by this attribute, then the traced frame is truncated. This attribute can be set while a trace is active and takes effect immediately.') frameRelayUniTraceGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 105, 1)) frameRelayUniTraceGroupBD = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 105, 1, 4)) frameRelayUniTraceGroupBD01 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 105, 1, 4, 2)) frameRelayUniTraceGroupBD01A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 105, 1, 4, 2, 2)) frameRelayUniTraceCapabilities = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 105, 3)) frameRelayUniTraceCapabilitiesBD = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 105, 3, 4)) frameRelayUniTraceCapabilitiesBD01 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 105, 3, 4, 2)) frameRelayUniTraceCapabilitiesBD01A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 105, 3, 4, 2, 2)) mibBuilder.exportSymbols("Nortel-Magellan-Passport-FrameRelayUniTraceMIB", frUniTraceFilterOperationalTable=frUniTraceFilterOperationalTable, frameRelayUniTraceGroup=frameRelayUniTraceGroup, frameRelayUniTraceCapabilitiesBD01A=frameRelayUniTraceCapabilitiesBD01A, frUniTraceIndex=frUniTraceIndex, frUniTraceRowStatusTable=frUniTraceRowStatusTable, frUniTraceFilterTracedDlci=frUniTraceFilterTracedDlci, frameRelayUniTraceCapabilitiesBD=frameRelayUniTraceCapabilitiesBD, frUniTraceFilterComponentName=frUniTraceFilterComponentName, frUniTraceReceiverName=frUniTraceReceiverName, frUniTraceRowStatusEntry=frUniTraceRowStatusEntry, frameRelayUniTraceCapabilitiesBD01=frameRelayUniTraceCapabilitiesBD01, frUniTraceFilter=frUniTraceFilter, frUniTraceFilterStorageType=frUniTraceFilterStorageType, frUniTraceStorageType=frUniTraceStorageType, frUniTraceFilterRowStatusEntry=frUniTraceFilterRowStatusEntry, frameRelayUniTraceGroupBD01=frameRelayUniTraceGroupBD01, frUniTraceOperationalEntry=frUniTraceOperationalEntry, frUniTraceFilterRowStatusTable=frUniTraceFilterRowStatusTable, frUniTraceOperationalTable=frUniTraceOperationalTable, frameRelayUniTraceGroupBD01A=frameRelayUniTraceGroupBD01A, frUniTraceDuration=frUniTraceDuration, frUniTraceFilterTracedLength=frUniTraceFilterTracedLength, frUniTraceFilterTraceType=frUniTraceFilterTraceType, frameRelayUniTraceCapabilities=frameRelayUniTraceCapabilities, frUniTraceSession=frUniTraceSession, frameRelayUniTraceGroupBD=frameRelayUniTraceGroupBD, frUniTraceFilterIndex=frUniTraceFilterIndex, frameRelayUniTraceMIB=frameRelayUniTraceMIB, frUniTraceComponentName=frUniTraceComponentName, frUniTrace=frUniTrace, frUniTraceQueueLimit=frUniTraceQueueLimit, frUniTraceFilterRowStatus=frUniTraceFilterRowStatus, frUniTraceFilterOperationalEntry=frUniTraceFilterOperationalEntry, frUniTraceRowStatus=frUniTraceRowStatus, frUniTraceFilterDirection=frUniTraceFilterDirection)
with open("input.txt") as f: lines = f.readlines() split_lines = [x.split() for x in lines] horiz = map(lambda x: int(x[1]) if x[0][0] == 'f' else -int(x[1]) if x[0][0] == 'b' else 0, split_lines) vert = map(lambda x: int(x[1]) if x[0][0] == 'd' else -int(x[1]) if x[0][0] == 'u' else 0, split_lines) print(sum(horiz)*sum(vert))
''' Use this folder for the development of any products. All data should be saved to S3. '''
nums = [12, 34, 5, 7, 8] iter_nums = iter(nums) # def sum_numbers(nums): # for n in nums: # n += sum_numbers(nums) # return n # print(sum_numbers(iter_nums)) def sum_list(list_to_sum, index): if len(list_to_sum) == 0: return 0 if index == 0: return list_to_sum[0] return list_to_sum[index] + sum_list(list_to_sum, index - 1) # list_to_sum = [1, 2, 3, 4, 5] # print(sum_list(list_to_sum, len(list_to_sum) - 1)) # def sum_string(string_of_numbers, index): # # index = len(string_of_numbers) - 1 # last index # if len(string_of_numbers) == 0: # return 0 # if index == 0: # return int(string_of_numbers[0]) # return int(string_of_numbers[index]) + int(sum_list(string_of_numbers, index - 1)) # my_string = "123" # print(sum_string(my_string, len(my_string) - 1)) string = "123" def recursive_sum_string(list, index): if len(list) == 0: return 0 if index == 0: return list[0] return int(list[index]) + int(recursive_sum_string(list, index - 1)) # print(recursive_sum_string(string, len(string) - 1)) # def get_change(number, coins): # return number / def get_change(number): change = [15, 10, 5, 1] if number == 0 or number == 1: print(str(number), ",") return number for i in change: if (number - i) > 0: print("," + str(i)) return get_change(number - i) coins = [] get_change(66) # = 1, 5, 10, 25 66 - 25 > 25 41 - 25 > 25 66 - 10 > 10
def hello(): return "Hello, pobby!" def main(): s = hello() print(s) """hahahahahah sdjfkadsjflksdjfkldsajfklsda fjdaslkfjdsakl""" if __name__ == '__main__': main()
# -*- coding: utf-8 -*- """Tests dict input objects for `cookiecutter.operator.aws.ec2_meta` module.""" # import os # from cookiecutter.main import cookiecutter # TODO: Need to be able test pyinquirer # def test_operator_terraform(monkeypatch, tmpdir): # """Verify the operator call works successfully.""" # monkeypatch.chdir(os.path.abspath(os.path.dirname(__file__))) # # context = cookiecutter('.', no_input=True, output_dir=str(tmpdir)) # # assert context
""" https://docs.python.org/3/tutorial/controlflow.html """ def parrot(voltage, state='a stiff', action='voom'): print("-- This parrot wouldn't", action, end=' ') print("if you put", voltage, "volts through it.", end=' ') print("E's", state, "!") d = {"voltage": "four million", "state": "bleedin' demised", "action": "VOOM"} if __name__ == '__main__': parrot(**d)
def sell(goods, price): return goods*price goods = int(input('Goods...')) price = int(input('Price...')) r = sell(goods, price) print(f'Прибыль составит {r} $')
class SnapshotView(object): """ A view into some subset of a snapshot instance. The attributes of the view depend on the snapshot from which it was derived, and the kind of view requested. All available attributes from the snapshot are available via the fields property, which returns a tuple. Modifying elements of the view in-place will modify the elements in the associated snapshot. Similarly, modifying elements of the snapshot in-place will modify them in the view. However, it is not possible to reassign attributes of the view. Further, reassignment of attributes of the original snapshot will not be propagated to the view. To clarify, >>> g = GadgetSnapshot('filename') >>> hsml = g.gas.hsml >>> hsml is g.hsml[0] True >>> hsml[0] = 2 * hsml[0] >>> hsml is g.hsml[0] True >>> hsml = 2 * hsml TypeError: 'SnapsotView' object does not support item assignment >>> hsml *= 2 TypeError: 'SnapsotView' object does not support item assignment >>> g.hsml[0] = 2 * g.hsml[0] >>> hsml is g.hsml[0] False >>> g.gas.hsml is g.hsml[0] True """ def __init__(self, _parent_snapshot, _data): super(SnapshotView, self).__setattr__('_parent', _parent_snapshot) super(SnapshotView, self).__setattr__('_fields', set()) for (name, value) in _data: self._fields.add(name) super(SnapshotView, self).__setattr__(name, value) # TODO: We should be able to change attributes of the view, and these # changes should be propagated to the parent snapshot. def __setattr__(self, name, value): raise TypeError("'SnapsotView' object does not support item assignment") @property def fields(self): return tuple(self._fields)
class Solution(object): def spiralOrder(self, matrix): """ :type matrix: List[List[int]] :rtype: List[int] """ if not matrix: return [] M = matrix[:] # duplicate matrix m = len(M) # get m n = len(M[0]) # get n i, j = 0, 0 # set coordinate l = m * n k = 0 res = [] while k < l: # right while j < n and M[i][j] is not None: res.append(M[i][j]) M[i][j] = None k += 1 j += 1 j -= 1 i += 1 # down while i < m and M[i][j] is not None: res.append(M[i][j]) M[i][j] = None k += 1 i += 1 i -= 1 j -= 1 # left while j >= 0 and M[i][j] is not None: res.append(M[i][j]) M[i][j] = None k += 1 j -= 1 j += 1 i -= 1 # up while i >= 0 and M[i][j] is not None: res.append(M[i][j]) M[i][j] = None k += 1 i -= 1 i += 1 j += 1 return res
# Author: OMKAR PATHAK # A Python generator is a function which returns a generator iterator (just an object we can iterate over) # by calling yield def simpleGenerator(numbers): i = 0 while True: check = input('Wanna generate a number? (If yes, press y else n): ') if check in ('Y', 'y') and len(numbers) > i: yield numbers[i] i += 1 else: print('Bye!') break for number in simpleGenerator([10, 11, 12, 14]): print(number)
def _configure_features( ctx, cuda_toolchain, requested_features=[], unsupported_features=[] ): features = cuda_toolchain.features enabled_features = {} # Enable compilation mode feature compilation_mode = ctx.var["COMPILATION_MODE"] if compilation_mode in features: enabled_features[compilation_mode] = features[compilation_mode] # Find all user enabled features for feature_name, _feature in features.items(): if _feature.enabled and feature_name not in unsupported_features: enabled_features[feature_name] = _feature elif _feature.name in requested_features: enabled_features[feature_name] = _feature # Find all implied features for feature_name, _feature in enabled_features.items(): for implied_feature_name in _feature.implies: if implied_feature_name not in enabled_features: if implied_feature_name in unsupported_features: fail("{} feature is implied by {} but it is explicitly disabled!".format(implied_feature_name, feature_name)) if implied_feature_name not in features: fail("{} feature is implied by {} but it was not provided!".format(implied_feature_name, feature_name)) enabled_features[implied_feature_name] = features[implied_feature_name] # Check provided features unique_providers = {} for feature_name, _feature in enabled_features.items(): for provided_feature_name in _feature.provides: if provided_feature_name in unique_providers: fail("{} and {} provides same feature: {}!".format(unique_providers[provided_feature_name], feature_name, provided_feature_name)) unique_providers[provided_feature_name] = feature_name # Check required features for feature_name, _feature in enabled_features.items(): feature_set_found = True for required_feature_set in _feature.requires: for required_feature_name in required_feature_set.features: if required_feature_name not in enabled_features: feature_set_found = False break if feature_set_found: for required_feature_name in required_feature_set.not_features: if required_feature_name in enabled_features: feature_set_found = False break if feature_set_found: break if not feature_set_found: fail("Could not find matching required features_set for feature {}!".format(feature_name)) return enabled_features.keys() def _create_link_variables( host_compiler_executable = None, host_compiler_arguments = [], objects = [], static_libraries = [], shared_libraries = [], output_file = None, ): variables = { "objects": [object.path for object in objects], "static_libraries": [static_library.path for static_library in static_libraries], "shared_libraries": [shared_library.basename for shared_library in shared_libraries], "library_search_directories": [shared_library.dirname for shared_library in shared_libraries], } if host_compiler_executable != None: variables["host_compiler_executable"] = host_compiler_executable if host_compiler_arguments: variables["host_compiler_arguments"] = host_compiler_arguments if output_file != None: variables["output_file"] = output_file.path return variables def _create_compile_variables( source_file = None, output_file = None, gpu_arch = "", gpu_codes = [], max_reg_count = 0, host_compiler_executable = None, host_compiler_arguments = [], include_paths = [], system_include_paths = [], includes = [], ): variables = { "gpu_codes": gpu_codes, "include_paths": include_paths, "system_include_paths": system_include_paths, "includes": [include.path for include in includes], } if source_file != None: variables["source_file"] = source_file.path if output_file != None: variables["output_file"] = output_file.path if gpu_arch != "": variables["gpu_arch"] = gpu_arch if max_reg_count > 0: variables["max_reg_count"] = str(max_reg_count) if host_compiler_executable != None: variables["host_compiler_executable"] = host_compiler_executable if host_compiler_arguments: variables["host_compiler_arguments"] = host_compiler_arguments return variables def _get_tool_path(cuda_toolchain, tool_name): return cuda_toolchain.tools[tool_name] def _get_memory_inefficient_command_line( cuda_toolchain, action_name, feature_configuration = [], variables = {}, ): enabled_flag_sets = [] for feature_name in feature_configuration: for _flag_set in cuda_toolchain.features[feature_name].flag_sets: # Check feature set for correct action if action_name not in _flag_set.actions: continue # Check feature set for required features feature_set_found = True for required_feature_set in _flag_set.with_features: feature_set_found = True for required_feature_name in required_feature_set.features: if required_feature_name not in feature_configuration: feature_set_found = False break if feature_set_found: for required_feature_name in required_feature_set.not_features: if required_feature_name in feature_configuration: feature_set_found = False break if feature_set_found: break if not feature_set_found: continue enabled_flag_sets.append(_flag_set) args = [] for _feature_set in enabled_flag_sets: for _flag_group in _feature_set.flag_groups: if _flag_group.expand_if_available != None and _flag_group.expand_if_available not in variables: continue if _flag_group.expand_if_not_available != None and _flag_group.expand_if_not_available in variables: continue if _flag_group.iterate_over != None and _flag_group.iterate_over not in variables: continue flags = list(_flag_group.flags) if _flag_group.iterate_over != None: flags = [] for variable in variables[_flag_group.iterate_over]: for flag in _flag_group.flags: flags.append(flag.replace("%{{{}}}".format(_flag_group.iterate_over), variable)) for idx in range(len(flags)): for variable_name, variable in variables.items(): flags[idx] = flags[idx].replace("%{{{}}}".format(variable_name), ' '.join(variable) if type(variable) == type([]) else variable) args.extend(flags) return args def _create_linking_context( object_files = [], static_libraries = [], dynamic_libraries = [], ): return struct( object_files = object_files, static_libraries = static_libraries, dynamic_libraries = dynamic_libraries, ) cuda_common = struct( configure_features = _configure_features, create_link_variables = _create_link_variables, create_compile_variables = _create_compile_variables, create_linking_context = _create_linking_context, get_tool_path = _get_tool_path, get_memory_inefficient_command_line = _get_memory_inefficient_command_line, )
"""Test mobile app device tracker.""" async def test_sending_location(hass, create_registrations, webhook_client): """Test sending a location via a webhook.""" resp = await webhook_client.post( "/api/webhook/{}".format(create_registrations[1]["webhook_id"]), json={ "type": "update_location", "data": { "gps": [10, 20], "gps_accuracy": 30, "battery": 40, "altitude": 50, "course": 60, "speed": 70, "vertical_accuracy": 80, "location_name": "bar", }, }, ) assert resp.status == 200 await hass.async_block_till_done() state = hass.states.get("device_tracker.test_1_2") assert state is not None assert state.name == "Test 1" assert state.state == "bar" assert state.attributes["source_type"] == "gps" assert state.attributes["latitude"] == 10 assert state.attributes["longitude"] == 20 assert state.attributes["gps_accuracy"] == 30 assert state.attributes["battery_level"] == 40 assert state.attributes["altitude"] == 50 assert state.attributes["course"] == 60 assert state.attributes["speed"] == 70 assert state.attributes["vertical_accuracy"] == 80 resp = await webhook_client.post( "/api/webhook/{}".format(create_registrations[1]["webhook_id"]), json={ "type": "update_location", "data": { "gps": [1, 2], "gps_accuracy": 3, "battery": 4, "altitude": 5, "course": 6, "speed": 7, "vertical_accuracy": 8, }, }, ) assert resp.status == 200 await hass.async_block_till_done() state = hass.states.get("device_tracker.test_1_2") assert state is not None assert state.state == "not_home" assert state.attributes["source_type"] == "gps" assert state.attributes["latitude"] == 1 assert state.attributes["longitude"] == 2 assert state.attributes["gps_accuracy"] == 3 assert state.attributes["battery_level"] == 4 assert state.attributes["altitude"] == 5 assert state.attributes["course"] == 6 assert state.attributes["speed"] == 7 assert state.attributes["vertical_accuracy"] == 8 async def test_restoring_location(hass, create_registrations, webhook_client): """Test sending a location via a webhook.""" resp = await webhook_client.post( "/api/webhook/{}".format(create_registrations[1]["webhook_id"]), json={ "type": "update_location", "data": { "gps": [10, 20], "gps_accuracy": 30, "battery": 40, "altitude": 50, "course": 60, "speed": 70, "vertical_accuracy": 80, "location_name": "bar", }, }, ) assert resp.status == 200 await hass.async_block_till_done() state_1 = hass.states.get("device_tracker.test_1_2") assert state_1 is not None config_entry = hass.config_entries.async_entries("mobile_app")[1] # mobile app doesn't support unloading, so we just reload device tracker await hass.config_entries.async_forward_entry_unload(config_entry, "device_tracker") await hass.config_entries.async_forward_entry_setup(config_entry, "device_tracker") await hass.async_block_till_done() state_2 = hass.states.get("device_tracker.test_1_2") assert state_2 is not None assert state_1 is not state_2 assert state_2.name == "Test 1" assert state_2.attributes["source_type"] == "gps" assert state_2.attributes["latitude"] == 10 assert state_2.attributes["longitude"] == 20 assert state_2.attributes["gps_accuracy"] == 30 assert state_2.attributes["battery_level"] == 40 assert state_2.attributes["altitude"] == 50 assert state_2.attributes["course"] == 60 assert state_2.attributes["speed"] == 70 assert state_2.attributes["vertical_accuracy"] == 80
""" 347. Top K Frequent Elements ------------------------------ https://leetcode.com/problems/top-k-frequent-elements/ Given a non-empty array of integers, return the k most frequent elements. Example 1: Input: nums = [1,1,1,2,2,3], k = 2 Output: [1,2] Example 2: Input: nums = [1], k = 1 Output: [1] Note: You may assume k is always valid, 1 ≤ k ≤ number of unique elements. Your algorithm's time complexity must be better than O(n log n), where n is the array's size. """ class Node: def __init__(self, val): self.val = val self.next = None class Solution: def insert(self, curr, prev, val): if curr is None or curr.val >= val: node = Node(val) node.next = curr prev.next = node return self.insert(curr.next, curr, val) def fill_freq_arr(self, freq, d): for num, index in d.items(): if freq[index] is None: freq[index] = Node(None) self.insert(freq[index].next, freq[index], num) def getKElement(self, root, ans, k): if k == 0: return k if not root: return k ans.append(root.val) k = k - 1 return self.getKElement(root.next, ans, k) def topKFrequent(self, nums, k): d = dict() # val: freq max_freq = -1 for n in nums: if n not in d: d[n] = 0 d[n] += 1 max_freq = max(max_freq, d[n]) freq = [None] * (max_freq + 1) self.fill_freq_arr(freq, d) ans = [] for node in freq[::-1]: if node is None: continue if k == 0: return ans k = self.getKElement(node.next, ans, k) return ans s = Solution() nums = [1, 1, 1, 2, 2, 3] assert [1, 2] == s.topKFrequent(nums, k=2) nums = [1] assert [1] == s.topKFrequent(nums, k=1)
""" A row measuring seven units in length has red blocks with a minimum length of three units placed on it, such that any two red blocks (which are allowed to be different lengths) are separated by at least one grey square. There are exactly seventeen ways of doing this. p114.png How many ways can a row measuring fifty units in length be filled? NOTE: Although the example above does not lend itself to the possibility, in general it is permitted to mix block sizes. For example, on a row measuring eight units in length you could use red (3), grey (1), and red (4). ans: 16475640049 """ def num_fill(length): mem = {} return num_fill_r(True, length, mem) + num_fill_r(False, length, mem) def num_fill_r(red, length, mem): if red: if length == 3: return 1 elif length < 3: return 0 else: if length == 1: return 1 elif length < 1: return 0 if (red, length) in mem: return mem[(red, length)] count = 1 if red: for i in range(3, length+1): count += num_fill_r(False, length-i, mem) else: for i in range(1, length+1): count += num_fill_r(True, length-i, mem) mem[(red,length)] = count return count assert num_fill(7) == 17 print(num_fill(50))
#!/usr/bin/env python3 #coding:utf-8 class LNode(object): def __init__(self, x): self.val = x self.next = None def reverse(head): """ 方法功能:对带头结点的单链表进行逆序 输入参数:head: 链表头结点 """ if head is None or head.next is None: return None cur = None # 当前结点 nxt = None # 后继结点 cur = head.next.next head.next.next = None # 设置链表第一个结点为尾结点 while cur is not None: # 把遍历到的结点插入到头结点的后面 nxt = cur.next cur.next = head.next head.next = cur cur = nxt return None def printLinkedList(head): """ 方法功能:输出单链表 输入参数:head: 链表头结点 """ cur = head.next while cur != None: print(cur.data, end=' ') cur = cur.next print() return None def constructLinkedList(n): """ 方法功能:构造单链表 输入参数:n: 设定链表长度(不包括头结点) """ head = LNode(None) head.next = None cur = head tmp = None for i in range(n): tmp = LNode(None) tmp.data = i tmp.next = None cur.next = tmp cur = tmp return head if __name__ == "__main__": head = constructLinkedList(8) print("before:") printLinkedList(head) reverse(head) print("\nafter:") printLinkedList(head)
class Node: def __init__(self,data): self.left=None self.right=None self.data=data def PrintTree(self): if self.left: self.left.PrintTree() print(self.data) if self.right: self.right.PrintTree() def insert(self,data): if self.data: if data<self.data: if self.left is None: self.left=Node(data) else: self.left.insert(data) elif data>self.data: if self.right is None: self.right=Node(data) else: self.right.insert(data) else: self.data=data if __name__=='__main__': root=Node(12) root.insert(10) root.insert(6) root.insert(14) root.insert(2) root.insert(1) root.PrintTree()
""" 11 Faça um programa que leia a largura e a altura de uma parede em metros, calcule a sua àrea e a quantidade de tinta necessária para pintá-la, sabendo que cada litro de tinta, cobre uma àrea de 2m²""" l = float(input('Digite o valor da largura da parede em metro(s): ')) a = float(input('Digite o valor da altura da parede em metro(s): ')) print('A área da parede é de {}m².'.format(l * a)) print('Será necessário {}litro(s) de tinta'.format((l * a) / 2))
# Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # TODO(flaviof): remove this once moved over to neutron-lib payloads class PortForwardingPayload(object): """Payload for port-forwarding-related callback registry notifications.""" def __init__(self, context, current_pf=None, original_pf=None): self.context = context self.current_pf = current_pf self.original_pf = original_pf def __eq__(self, other): return (isinstance(other, self.__class__) and self.__dict__ == other.__dict__) def __ne__(self, other): return not self.__eq__(other)
names = ['Simon', 'Sophie', 2] print (names[0] + ' loves ' + names[1] + ' for ' + str(names[2]) + ' years') for name in names : print (name)
''' Using sieve of Eratosthenes, primes(x) returns list of all primes less than x Modification: We don't need to check all even numbers, we can make the sieve excluding even numbers and adding 2 to the primes list by default. We are going to make an array of: x / 2 - 1 if number is even, else x / 2 (The -1 with even number it's to exclude the number itself) Because we just need numbers [from 3..x if x is odd] # We can get value represented at index i with (i*2 + 3) For example, for x = 10, we start with an array of x / 2 - 1 = 4 [1, 1, 1, 1] 3 5 7 9 For x = 11: [1, 1, 1, 1, 1] 3 5 7 9 11 # 11 is odd, it's included in the list With this, we have reduced the array size to a half, and complexity it's also a half now. ''' def primes(x): assert(x >= 0) # If x is even, exclude x from list (-1): sieve_size = (x//2 - 1) if x % 2 == 0 else (x//2) sieve = [1 for v in range(sieve_size)] # Sieve primes = [] # List of Primes if x >= 2: primes.append(2) # Add 2 by default for i in range(sieve_size): if sieve[i] == 1: value_at_i = i*2 + 3 primes.append(value_at_i) for j in range(i, sieve_size, value_at_i): sieve[j] = 0 return primes
# Space: O(1) # Time: O(n) class Solution: def singleNumber(self, nums): res = [] length = len(nums) nums.sort() status = 0 for i in range(length): if i == 0: if nums[i] != nums[i + 1]: res.append(nums[i]) status += 1 elif i == length - 1: if nums[i] != nums[i - 1]: res.append(nums[i]) status += 1 else: if nums[i] != nums[i - 1] and nums[i] != nums[i + 1]: res.append(nums[i]) status += 1 if status == 2: return res return res
numbers_list = input().split(', ') new_list = [] for digit in numbers_list: digits = digit.split(', ') current_digit = int(digits[0]) if current_digit == 0: numbers_list.remove('0') numbers_list.append('0') new_list = list(map(int, numbers_list)) print(new_list)
""" Funções com Parametro (de entrada) - Funções que recebem dados para serem processados dentro da mesma; Num programa qualquer geralmente temos: - Entrada -> Processamento -> Saída Se for uma função, sabemos que: - Não possuem entrada; - Não possuem saída; - Possuem entrada mas não possuem saída; - Não possuem entrada mas possuem saída; - Possuem entrada e saída. # Refatorando uma função def quadrado(numero): # return numero * numero return numero ** 2 # elevado ao quadrado print(quadrado(7)) print(quadrado(2)) print(quadrado(5)) ret = quadrado(6) print(ret) print(quadrado()) # TypeError # Refaturando a função def cantar_parabens(aniversariante): print('Parabéns a voçê') print('Nesta data querida') print('Muitos anos de vida') print(f'Prabéns {aniversariante}') cantar_parabens('Paulo') # Funções podem ter n parâmetros de entrada. Ou seja, podemos receber como entrada # numa função quantos parâmetros forem necessários. Eles são separados por vírgula # Exemplo def soma(a, b): return a + b def multiplica(num1, num2): return num1 * num2 def outra(num1, b, msg): return (num1 + b) * msg print(soma(2, 5)) print(soma(10, 20)) print(multiplica(4, 5)) print(multiplica(2, 8)) print(outra(3, 2, 'Geek ')) print(outra(5, 4, 'Python ')) # OBS: Se informarmos um número errado de parâmetros ou argumentos, teremos TypeError # print(soma(2, 3, 4)) # TypeError - Passando argumentos a mais # print(soma(4)) # TypeError - Passando argumentos a menos # Nomeando parâmentros def nome_compelto(nome, sobrenome): return f'Seu nome compelto é {nome} {sobrenome}' print(nome_compelto('Paulo', 'Silva')) # A diferença entre Parâmetros e Argumentos # Parâmetros são variáveis declaradas na definição de uma função; # Argumentos são dados passados durante a execução de uma função; # A ordem dos parâmetros improta! nome = 'Felicity' sobrenome = 'Jones' print(nome_compelto(sobrenome, nome)) # Argumentos nomeados (KeyWord Arguments) # Caso utilizemos nomes dos parâmentros nos argumentos para informá-los, # podemos utilizar qualquer ordem. print(nome_compelto(nome='Angelina', sobrenome='Jolie')) print(nome_compelto(nome=nome, sobrenome=sobrenome)) print(nome_compelto(sobrenome='Marques', nome='Marcia')) """ # Erro comum na utilização do return def soma_impares(numeros): total = 0 for num in numeros: if num % 2 != 0: total = total + num return total if __name__ == '__main__': lista = [1, 2, 3, 4, 5, 6, 7] print(soma_impares(lista)) tupla = (1, 2, 3, 4, 5, 6, 7) print(soma_impares(tupla))
# Copyright 2018 The GraphNets Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================ #This is priorknowledge from EPR #ORDER_CATALOG_DESCRIPTION ORDER_EVENT #Full blood count, blood Absolute Blast Count #Full blood count, blood Absolute Metamyelocyte Count #Full blood count, blood Absolute Myelocyte Count #Full blood count, blood Absolute Promyelocyte Count #Full blood count, blood Basophil count #Full blood count, blood Blood Culture Sample #Full blood count, blood Eosinophil count #Full blood count, blood Haematocrit #Full blood count, blood Haemoglobin #Full blood count, blood HCT #Full blood count, blood Lymphocyte count #Full blood count, blood Mean cell haemoglobin #Full blood count, blood Mean cell haemoglobin conc #Full blood count, blood Mean cell volume #Full blood count, blood Monocyte count #Full blood count, blood Neutrophil count #Full blood count, blood Platelet count #Full blood count, blood Red blood cell count #Full blood count, blood White blood cell count def CR_inputs_reference(): Reference_Range = { 'C-reactive protein':{'Male':{'min':'0','max':'5'} ,'Female':{'min':'0','max':'5'} ,'Unknown':{'min':'0','max':'5'} ,'Unspecified':{'min':'0','max':'5'}}, } input_node_fields = ['C-reactive protein'] return Reference_Range,input_node_fields
'''Escreva um programa que leia dois números inteiros e compare-os, mostrando na tela uma mensagem: - o primeiro valor é maior; - o segundo valor é maior; - Não existe valor maior, os dois são iguais''' a = int(input('Digite um valor inteiro: ')) b = int(input('Digite outro valor inteiro: ')) if a > b: print('O primeiro valor, {}, é maior.'.format(a)) elif b > a: print('O segundo valor, {}, é maior.'.format(b)) else: print('Os dois valores são iguais.')
class Error(Exception): """ Base exception for all exceptions that indicate a failed request """ class DecodeError(Error): """" Raised when the request cannot be decoded by the server. """ class NoFreeOTAAddresses(Error): """" Raised when the OTA request cannot be completed due to no free addresses. """ class UnsupportedMethod(Error): """ Raised when request method is not understood by the server at all. """ class NotImplemented(Error): """ Raised when request is correct, but feature is not implemented by the server. """ class RequestTimedOut(Error): """ Raised when request is timed out. """ class WaitingForClientTimedOut(Error): """ Raised when server expects some client action but the client does nothing. """ __all__ = ['Error', 'UnsupportedMethod', 'NotImplemented', 'RequestTimedOut', 'WaitingForClientTimedOut']
wt3_3_10 = {'192.168.122.110': [8.5425, 9.6589, 8.3878, 8.9764, 8.5553, 8.1619, 8.5832, 8.1742, 7.8747, 7.6304, 7.6131, 7.5381, 7.3988, 7.2547, 7.2352, 7.1954, 7.0925, 6.9968, 7.8112, 7.7524, 7.6389, 7.5302, 7.4983, 7.4729, 7.4327, 7.3494, 7.2848, 7.2741, 7.2099, 7.1539, 7.2822, 7.2477, 7.3613, 7.315, 7.2783, 7.1005, 7.259, 7.2092, 7.1609, 7.2541, 7.2072, 7.1686, 7.1279, 7.2113, 7.1714, 7.2521, 7.2082, 7.0759, 7.1424, 7.1109, 7.1106, 7.0781, 7.0454, 7.0152, 7.0056, 6.9756, 6.9764, 6.9487, 7.0111, 6.9932, 6.9655, 6.9462, 6.9316, 6.9125, 7.0027, 6.9865, 6.9652, 6.9468, 6.9297, 6.9121, 6.8911, 6.8843, 6.8806, 6.868, 6.8489, 6.8347, 6.8156, 6.7999, 6.7823, 6.7668, 6.7565, 6.7398, 6.7867, 6.7734, 6.8209, 6.8053, 6.7948, 6.9508, 7.0068, 6.9956, 6.9812, 7.2321, 7.213, 7.1994, 7.1836, 7.1799, 7.2166, 7.1988, 7.1821, 7.296, 7.2775, 7.2622, 7.2579, 7.2489, 7.2312, 7.2128, 7.246, 7.2797, 7.2648, 7.2603, 7.2421, 7.2245, 7.2671, 7.2712, 7.3504, 7.3378, 7.2962, 7.2876, 7.3166, 7.3017, 7.2909, 7.2799, 7.3099, 7.3884, 7.3738, 7.3575, 7.341, 7.3254, 7.3509, 7.3998, 7.3939, 7.4582, 7.4459, 7.4311, 7.4207, 7.4048, 7.3892, 7.3815, 7.368, 7.3535, 7.3437, 7.33, 7.3157, 7.3076, 7.2941, 7.2879, 7.2743, 7.2613, 7.2781, 7.2716, 7.2593, 7.2468, 7.242, 7.2515, 7.3003, 7.2873, 7.2774, 7.2732, 7.2672, 7.2595, 7.2486, 7.269, 7.2947, 7.2882, 7.2799, 7.2922, 7.2809, 7.2733, 7.2976, 7.32, 7.4086, 7.414, 7.4355, 7.4735, 7.4623, 7.4964, 7.484, 7.5028, 7.5202, 7.5102, 7.5284, 7.5272, 7.5453, 7.5334, 7.5221, 7.5142, 7.5321, 7.5208, 7.5094, 7.4986, 7.5527, 7.546, 7.5379, 7.5321, 7.5695, 7.5596, 7.5483, 7.5385, 7.5276, 7.5174, 7.5098, 7.5041, 7.4952, 7.4892, 7.4809, 7.4787, 7.4944, 7.4844, 7.4744, 7.5952, 7.6216, 7.6196, 7.6141, 7.6028, 7.5945, 7.6112, 7.6133, 7.6312, 7.6203, 7.6103, 7.6501, 7.639, 7.6554, 7.6488, 7.6435, 7.6347, 7.7299, 7.7005, 7.6904, 7.7041, 7.6941, 7.684, 7.6743, 7.6683, 7.6592, 7.6537, 7.6462, 7.6387, 7.6316, 7.6221, 7.6169, 7.6135, 7.6036, 7.5947, 7.5856, 7.5824, 7.5832, 7.5791, 7.5697, 7.5609, 7.5556, 7.5295, 7.5446, 7.5422, 7.5379, 7.533, 7.5247, 7.5186, 7.5151, 7.5076, 7.5002, 7.4914, 7.4861, 7.4824, 7.4804, 7.4576, 7.4507, 7.4482, 7.4441, 7.4405, 7.4349, 7.4521, 7.4464, 7.439, 7.4328, 7.4279, 7.4218, 7.4142, 7.4065, 7.4167, 7.4095, 7.3874, 7.3828, 7.397, 7.4106, 7.4049, 7.3989, 7.4163, 7.4136, 7.4073, 7.3997, 7.4104, 7.4039, 7.4158, 7.4269, 7.4211, 7.4307, 7.4253, 7.4205, 7.3982, 7.399, 7.4016, 7.4028, 7.3968, 7.3932, 7.373, 7.3684, 7.3679, 7.379, 7.3786, 7.3717, 7.367, 7.3612, 7.3551, 7.3676, 7.3614, 7.3894, 7.3842, 7.3805, 7.3739, 7.3866, 7.3824, 7.379, 7.3747, 7.3963, 7.3903, 7.3844, 7.364, 7.3588, 7.3696, 7.365, 7.361, 7.355, 7.3487, 7.3443, 7.3561, 7.3515, 7.3485, 7.4216, 7.4161, 7.4431, 7.4528, 7.4497, 7.4337, 7.4294, 7.4261, 7.4355, 7.4453, 7.4396, 7.4337, 7.4276, 7.4216, 7.4326, 7.4473, 7.4495, 7.4448, 7.4399, 7.4357, 7.4303, 7.4476, 7.444, 7.454, 7.4514, 7.4619, 7.4584, 7.4681, 7.4625, 7.4582, 7.4524, 7.4478, 7.4452, 7.4395, 7.45, 7.4481, 7.4424, 7.4516, 7.4734, 7.4676, 7.4635, 7.4604, 7.4569, 7.4933, 7.4881, 7.4827, 7.4797, 7.4887, 7.489, 7.4987, 7.4936, 7.5019, 7.4965, 7.4963, 7.493, 7.4887, 7.4834, 7.4818, 7.4789, 7.4738, 7.4727, 7.4674, 7.4656, 7.4753, 7.4707, 7.5167, 7.5151, 7.5121, 7.509, 7.517, 7.5119, 7.5218, 7.5302, 7.5257, 7.51, 7.5264, 7.5231, 7.5191, 7.5138, 7.5085, 7.5041, 7.4898, 7.4851, 7.4846, 7.4936, 7.4883, 7.4837, 7.4787, 7.4765, 7.4714, 7.492, 7.4873, 7.4951, 7.4907, 7.4858, 7.481, 7.4763, 7.4881, 7.5016, 7.5105, 7.5062, 7.5014, 7.4964, 7.4916, 7.4867, 7.4821, 7.4796, 7.4749, 7.4721, 7.4675, 7.463, 7.4706, 7.4696, 7.4692, 7.4649, 7.4626, 7.458, 7.4559, 7.4926, 7.4903, 7.4859, 7.4941, 7.4912, 7.4869, 7.5413, 7.5366, 7.5333, 7.5287, 7.5242, 7.5225, 7.5181, 7.5182, 7.5169, 7.5155, 7.511, 7.5066, 7.5065, 7.5025, 7.5084, 7.5081, 7.515, 7.5135, 7.5092, 7.5052, 7.5021, 7.4995, 7.4951, 7.4909, 7.4887, 7.4845, 7.4818, 7.478, 7.4745, 7.4704, 7.4672, 7.4657, 7.4759, 7.4728, 7.4797, 7.4946, 7.4909, 7.5146, 7.5104, 7.5175, 7.5145, 7.5101, 7.5082, 7.5172, 7.5131, 7.5132, 7.5093, 7.5068, 7.4933, 7.4999, 7.4961, 7.5002, 7.487, 7.4874, 7.4834, 7.4799, 7.4756, 7.4718, 7.4679, 7.4647, 7.4606, 7.4672, 7.4629, 7.4605, 7.467, 7.5121, 7.5081, 7.5059, 7.5021, 7.4998, 7.5061, 7.5024, 7.5001, 7.4966, 7.4929, 7.4907, 7.4871, 7.4832, 7.4897, 7.478, 7.4766, 7.4825, 7.4891, 7.4853, 7.4817, 7.4891, 7.4853, 7.4818, 7.4783, 7.4743, 7.4705, 7.4672, 7.4637, 7.4597, 7.4562, 7.4527, 7.4492, 7.4466, 7.4445, 7.4411, 7.4371, 7.4352, 7.4314, 7.4277, 7.424, 7.4294, 7.4298, 7.4262, 7.4243, 7.4143, 7.4028, 7.401, 7.3977, 7.3942, 7.3905, 7.3872, 7.3839, 7.382, 7.389, 7.3858, 7.3918, 7.3882, 7.3863, 7.3832, 7.3797, 7.3765, 7.3743, 7.3715, 7.3682, 7.375, 7.3724, 7.3701, 7.3668, 7.3683, 7.3661, 7.3651, 7.363, 7.3614, 7.3667, 7.3634, 7.3527, 7.3493, 7.3546, 7.3529, 7.3496, 7.3474, 7.3529, 7.3593, 7.3562, 7.353, 7.3497, 7.3479, 7.3459, 7.3426, 7.3405, 7.3465, 7.3602, 7.3654, 7.3629, 7.3605, 7.358, 7.3639, 7.3615, 7.3588, 7.3598, 7.3587, 7.3819, 7.3877, 7.3857, 7.3829, 7.3797, 7.3855, 7.3825, 7.383500000000001, 7.3803, 7.3775, 7.375, 7.3717, 7.3684, 7.3741, 7.3716, 7.3687, 7.3657, 7.3633, 7.3626, 7.3595, 7.3563, 7.3534, 7.3507, 7.3497, 7.3469, 7.3477, 7.3454, 7.3441, 7.3413, 7.3393, 7.3368, 7.3338, 7.3385, 7.3355, 7.333, 7.33, 7.3289, 7.3258, 7.3236, 7.3239, 7.3249, 7.3301, 7.3273, 7.3256, 7.3241, 7.3325, 7.3297, 7.3398, 7.337, 7.3345, 7.3334, 7.3315, 7.3287, 7.3336, 7.3326, 7.3326, 7.3304, 7.3228, 7.3286, 7.3303, 7.3304, 7.3436, 7.3601, 7.3653, 7.3642, 7.3633, 7.3608, 7.3598, 7.3648, 7.3622, 7.3609, 7.3585, 7.3561, 7.3535, 7.3505, 7.3481, 7.3526, 7.3499, 7.3541, 7.3601, 7.3582, 7.3555, 7.3867, 7.3845, 7.3934, 7.3921, 7.4124, 7.423, 7.4262, 7.4245, 7.4215, 7.4333, 7.4305, 7.4347, 7.4317, 7.4289, 7.4344, 7.4317, 7.4321, 7.4449, 7.4436, 7.4446, 7.4437, 7.4411, 7.4393, 7.4366, 7.4339, 7.439, 7.4371, 7.4346, 7.4338, 7.4485, 7.4456, 7.4432, 7.4477, 7.4478, 7.4524, 7.4496, 7.4467, 7.4509, 7.4554, 7.4597, 7.4616, 7.4595, 7.4578, 7.4558, 7.4537, 7.4515, 7.4485, 7.4541, 7.4586, 7.4562, 7.4476, 7.445, 7.4362, 7.4333, 7.4309, 7.4282, 7.4258, 7.4234, 7.4227, 7.4274, 7.427, 7.4308, 7.4281, 7.426, 7.4233, 7.4147, 7.4128, 7.4106, 7.4147, 7.4259, 7.4239, 7.4222, 7.429, 7.4341, 7.432, 7.43, 7.4342, 7.4331, 7.431, 7.4285, 7.4261, 7.4236, 7.4217, 7.42, 7.4184, 7.4162, 7.4202, 7.4192, 7.4236, 7.4219, 7.4233, 7.4221, 7.4259, 7.4244, 7.4239, 7.4229, 7.4213, 7.4191, 7.4164, 7.4207, 7.42, 7.4178, 7.4157, 7.4131, 7.4188, 7.4164, 7.414, 7.4126, 7.4101, 7.4083, 7.4125, 7.4101, 7.4091, 7.4079, 7.4053, 7.4094, 7.4072, 7.4054, 7.4031, 7.4009, 7.4048, 7.4027, 7.4003, 7.3978, 7.4015, 7.4007, 7.4046, 7.4085, 7.406, 7.4035, 7.4075, 7.405, 7.4032, 7.4009, 7.4048, 7.4024, 7.3999, 7.3986, 7.3963, 7.4001, 7.4039, 7.404, 7.4018, 7.3997, 7.3995, 7.3988, 7.3969, 7.396, 7.3938, 7.3922, 7.3908, 7.3888, 7.3875, 7.3868, 7.3853, 7.383, 7.3815, 7.3797, 7.3783, 7.3712, 7.3699, 7.3748, 7.3727, 7.3703, 7.3691, 7.3666, 7.3643, 7.3628, 7.3665, 7.3646, 7.3624, 7.3663, 7.3699, 7.3675, 7.3669, 7.3654, 7.363, 7.3671, 7.3649, 7.3693, 7.3671, 7.3655, 7.371, 7.3698, 7.3744, 7.3786, 7.3765, 7.3742, 7.3788, 7.3838, 7.3824, 7.3813, 7.3848, 7.3836, 7.3874, 7.3861, 7.3841, 7.382, 7.3799, 7.3786, 7.3765, 7.3742, 7.372, 7.3672, 7.3656, 7.3721, 7.3758, 7.3738, 7.3718, 7.3937, 7.4034, 7.4016, 7.4003, 7.4082, 7.4064, 7.4134, 7.4171, 7.4265, 7.4249, 7.4227, 7.4321, 7.4261, 7.4252, 7.4234, 7.428, 7.4265, 7.4202, 7.4179, 7.4166, 7.4261, 7.424, 7.4218, 7.4196, 7.4181, 7.4214, 7.4193, 7.4182, 7.4162, 7.4146, 7.4127, 7.4119, 7.4104, 7.4193, 7.4177, 7.4207, 7.4211, 7.4204, 7.419, 7.4181, 7.4164, 7.4142, 7.4122, 7.4125, 7.4111, 7.4103, 7.4083, 7.4061, 7.4039, 7.4023, 7.4002, 7.3992, 7.3982, 7.4201, 7.4198, 7.4176, 7.4164, 7.4206, 7.4508, 7.4641, 7.4619, 7.4553, 7.4533, 7.4517, 7.4495, 7.4481, 7.4522, 7.4511, 7.449, 7.4531, 7.4567, 7.4549, 7.4531, 7.451, 7.4488, 7.4467, 7.44, 7.438, 7.436, 7.4349, 7.4357, 7.4342, 7.4325, 7.4316, 7.4297, 7.4284, 7.4269, 7.4257, 7.4246, 7.4225, 7.4204, 7.4186, 7.4166, 7.4151, 7.4136, 7.4115, 7.4131, 7.413, 7.4114, 7.4094, 7.4074, 7.4059, 7.4098, 7.418, 7.4165, 7.4155, 7.4141, 7.4122, 7.4109, 7.4165, 7.4227, 7.4335, 7.4314, 7.4293, 7.4272, 7.4394, 7.4425, 7.4406, 7.4385, 7.4584, 7.4571, 7.4553, 7.4533, 7.4513, 7.4626, 7.4729, 7.4709, 7.4647, 7.4637, 7.4618, 7.4599, 7.4634, 7.4613, 7.4601, 7.4589, 7.4571, 7.4556, 7.4598, 7.4579, 7.4568, 7.4548, 7.4538, 7.452, 7.4501, 7.449, 7.448, 7.446, 7.4446, 7.4427, 7.4366, 7.4402, 7.4383, 7.4374, 7.4407, 7.4391, 7.4378, 7.4362, 7.4354, 7.4348, 7.4382, 7.437, 7.4365, 7.4349, 7.433, 7.4365, 7.4357, 7.4392, 7.4374, 7.4363, 7.4356, 7.4352, 7.4337, 7.4322, 7.4316, 7.4306, 7.429, 7.4273, 7.4324, 7.4313, 7.4302, 7.4294, 7.4279, 7.4311, 7.4293, 7.4277, 7.4268, 7.4302, 7.4289, 7.4271, 7.4252, 7.4307, 7.4304, 7.4292, 7.4282, 7.4337, 7.4413, 7.4403, 7.4447, 7.4431, 7.4429, 7.4426, 7.4456, 7.4436, 7.4417, 7.4447, 7.4477, 7.4517, 7.4547, 7.4539, 7.4531, 7.4512, 7.4494, 7.4476, 7.4457, 7.4439, 7.443, 7.4418, 7.4407, 7.4388, 7.4372, 7.4357, 7.4338, 7.4366, 7.4357, 7.4443, 7.4426, 7.4407, 7.4394, 7.4336, 7.4323, 7.4356, 7.4456, 7.4438, 7.4468, 7.4498, 7.4484, 7.4517, 7.4508, 7.4752, 7.4736, 7.4771, 7.4752, 7.4782, 7.4807, 7.4791, 7.478, 7.4768, 7.4758, 7.4761, 7.4749, 7.473, 7.4715, 7.4698, 7.4688, 7.4719, 7.4663, 7.4693, 7.4723, 7.4714, 7.4698, 7.4687, 7.4725, 7.4711, 7.4693, 7.4681, 7.4663, 7.4693, 7.4681, 7.4663, 7.4693, 7.4726, 7.4708, 7.4734, 7.4766, 7.4749, 7.4734, 7.4717, 7.4699, 7.4681, 7.471, 7.4701, 7.4686, 7.4675, 7.4687, 7.4734, 7.4718, 7.4715, 7.4698, 7.4731, 7.476, 7.4742, 7.4724, 7.4706, 7.4736, 7.4719, 7.4702, 7.4696, 7.4679, 7.4668, 7.4698, 7.479, 7.4775, 7.4759, 7.4792, 7.4823, 7.4851, 7.4877, 7.486, 7.4889, 7.4885, 7.4919, 7.4906, 7.489, 7.4872, 7.4863, 7.4845, 7.4829, 7.4858, 7.4849, 7.4878, 7.4873, 7.4939, 7.493, 7.4921, 7.4904, 7.4942, 7.4974, 7.4964, 7.4955, 7.4983, 7.501, 7.5, 7.4989, 7.4981, 7.5007, 7.4991, 7.5015, 7.4999, 7.4987, 7.4976, 7.4963, 7.4945, 7.4969, 7.4953, 7.4938, 7.4929, 7.4955, 7.4939, 7.4973, 7.4961, 7.4992, 7.5018, 7.5002, 7.4985, 7.4969, 7.4995, 7.4985, 7.497, 7.5003, 7.5029, 7.5013, 7.5003, 7.4994, 7.4977, 7.4972, 7.4955, 7.4938, 7.4924, 7.4907, 7.4894, 7.488, 7.4865, 7.4848, 7.4836, 7.482, 7.4803, 7.4852, 7.4835, 7.4818, 7.4802, 7.4828, 7.4813, 7.4798, 7.4781, 7.4764, 7.475, 7.4801, 7.4787, 7.4816, 7.4803, 7.4751, 7.4743, 7.4727, 7.4714, 7.4697, 7.4681, 7.4666, 7.4694, 7.4679, 7.4672, 7.4669, 7.4654, 7.4647, 7.4632, 7.4622, 7.4607, 7.4591, 7.4575, 7.4568, 7.4558, 7.4546, 7.4574, 7.4524, 7.451, 7.4495, 7.4483, 7.4471, 7.4481, 7.4469, 7.4495, 7.4483, 7.4468, 7.4495, 7.4478, 7.4504, 7.4491, 7.4477, 7.4466, 7.447, 7.4456, 7.4483, 7.4469, 7.4457, 7.4443, 7.4428, 7.4413, 7.4399, 7.4427, 7.4417, 7.444, 7.4466, 7.4457, 7.4441, 7.4469, 7.4461, 7.4445, 7.4429, 7.4415, 7.4399, 7.439, 7.4378, 7.4364, 7.4349, 7.4338, 7.4326, 7.4354, 7.4349, 7.434, 7.4326, 7.4319, 7.4311, 7.4298, 7.4249, 7.4276, 7.4305, 7.429, 7.4315, 7.4309, 7.4294, 7.4279, 7.4302, 7.4292, 7.4278, 7.4263, 7.4294, 7.432, 7.4362, 7.4347, 7.4333, 7.4358, 7.435, 7.4335, 7.432, 7.4344, 7.4332, 7.4354, 7.4352, 7.4376, 7.4362, 7.4449, 7.4434, 7.442, 7.4407, 7.4392, 7.4414, 7.4436, 7.442, 7.4407, 7.4396, 7.4425, 7.4418, 7.4407, 7.4392, 7.4385, 7.4342, 7.4335, 7.4322, 7.4347, 7.4334, 7.432, 7.4318, 7.434, 7.4294, 7.4319, 7.4306, 7.4292, 7.4279, 7.4269, 7.4256, 7.4243, 7.4236, 7.4225, 7.4212, 7.4199, 7.4224, 7.421, 7.4197, 7.4224, 7.4239, 7.4239, 7.4232, 7.4223, 7.4215, 7.4211, 7.4204, 7.4193, 7.4203, 7.4271, 7.428100000000001, 7.4289, 7.4281, 7.4303, 7.4292, 7.4278, 7.4265, 7.4287, 7.4276, 7.4263, 7.4287, 7.4279, 7.4268, 7.4258, 7.4413, 7.44, 7.4393, 7.438, 7.4366, 7.437600000000001, 7.4363, 7.4356, 7.4346, 7.4333, 7.4319, 7.4313, 7.4303, 7.4324, 7.4313, 7.43, 7.4379, 7.4414, 7.4403, 7.4391, 7.4416, 7.4403, 7.4427, 7.4452, 7.4444, 7.4457, 7.4451, 7.4442, 7.4543, 7.4536, 7.456, 7.4528, 7.4587, 7.4573, 7.4565, 7.4554, 7.4564, 7.4586, 7.4576, 7.4569, 7.4555, 7.4542, 7.4529, 7.455, 7.4555, 7.4542, 7.4565, 7.4552, 7.4539, 7.4531, 7.4518, 7.451, 7.4496, 7.4487, 7.4481, 7.4467, 7.4454, 7.4441, 7.4428, 7.4421, 7.4411, 7.4398, 7.4391, 7.4382, 7.4404, 7.4426, 7.4414, 7.4404, 7.4391, 7.4412, 7.4398, 7.4392, 7.4381, 7.4374, 7.4371, 7.4362, 7.4353, 7.4345, 7.4334, 7.4356, 7.4388, 7.4383, 7.4373, 7.4359, 7.4347, 7.4379, 7.4338, 7.4453, 7.4476, 7.4497, 7.4484, 7.4508, 7.4494, 7.4481, 7.4473, 7.4556, 7.4543, 7.4532, 7.4521, 7.4514, 7.45, 7.4492, 7.4483, 7.4472, 7.4464, 7.4457, 7.4455, 7.4444, 7.4463, 7.445, 7.4471, 7.4458, 7.4451, 7.4445, 7.4438, 7.4399, 7.4393, 7.4379, 7.4372, 7.4365, 7.4372, 7.4359, 7.4347, 7.4334, 7.4326, 7.4314, 7.4307, 7.4293, 7.428, 7.4267, 7.4259, 7.4246, 7.4241, 7.4229, 7.422, 7.4241, 7.4262, 7.425, 7.4238, 7.4226, 7.4216, 7.4203, 7.4194, 7.4181, 7.4181, 7.4171, 7.4159, 7.4151, 7.4175, 7.4163, 7.4156, 7.4148, 7.4143, 7.4134, 7.4156, 7.4144, 7.4135, 7.4144, 7.4165, 7.4152, 7.4153, 7.4141, 7.4128, 7.4118, 7.4109, 7.4098, 7.4108, 7.4098, 7.4108, 7.4097, 7.4086, 7.4078, 7.4068, 7.4057, 7.4052, 7.4043, 7.4035, 7.4025, 7.4013, 7.4006, 7.3996, 7.4016, 7.4035, 7.4055, 7.4043, 7.4031, 7.4036, 7.403, 7.4029, 7.4017, 7.4005, 7.4001, 7.4021, 7.4014, 7.3977, 7.4007, 7.3995, 7.4057, 7.4051, 7.404, 7.4028, 7.4022, 7.4059, 7.4047, 7.4057, 7.4044, 7.4131, 7.4125, 7.4146, 7.4135, 7.4127, 7.428, 7.4269, 7.4264, 7.4256, 7.4243, 7.4267, 7.4282, 7.4302, 7.4293, 7.4281, 7.4275, 7.4264, 7.4285, 7.4278, 7.4267, 7.426, 7.4248, 7.4268, 7.4288, 7.4283, 7.4271, 7.4296, 7.4257, 7.4244, 7.4238, 7.4242, 7.4234, 7.4229, 7.4219, 7.4248, 7.4239, 7.423, 7.4219, 7.421, 7.4198, 7.419, 7.4213, 7.4201, 7.4192, 7.4183, 7.4172, 7.421, 7.4201, 7.419, 7.4178, 7.4217, 7.4206, 7.4195, 7.4184, 7.4174, 7.4166, 7.4154, 7.4172, 7.4164, 7.4155, 7.4145, 7.4134, 7.4124, 7.4143, 7.4133, 7.4123, 7.4117, 7.4115, 7.4105, 7.4103, 7.4102, 7.4091, 7.4081, 7.4109, 7.4196, 7.4185, 7.4179, 7.4169, 7.4222, 7.4245, 7.4238, 7.4255, 7.4243, 7.4236, 7.4232, 7.4266, 7.4257, 7.4249, 7.4237, 7.4262, 7.425, 7.424, 7.4228, 7.4218, 7.4207, 7.4209, 7.4231, 7.4222, 7.4215, 7.4206, 7.4196, 7.4216, 7.4236, 7.4226, 7.4215, 7.4203, 7.4205, 7.4197, 7.4207, 7.4258, 7.4252, 7.4271, 7.4261, 7.425, 7.4243, 7.4237, 7.4228, 7.4246, 7.4264, 7.4253, 7.4247, 7.4217, 7.4236, 7.4224, 7.4226, 7.4218, 7.4214, 7.4232, 7.4221, 7.4192, 7.4259, 7.4222, 7.4245, 7.4233, 7.4226, 7.4214, 7.4205, 7.4227, 7.4217, 7.4208, 7.4199, 7.4191, 7.4186, 7.4212, 7.4202, 7.4201, 7.4195, 7.4191, 7.4181, 7.4169, 7.4159, 7.4155, 7.4145, 7.4133, 7.4128, 7.4119, 7.4111, 7.4103, 7.4124, 7.4118, 7.4108, 7.4074, 7.4062, 7.4052, 7.4071, 7.4062, 7.4084, 7.4104, 7.4092, 7.4111, 7.4132, 7.4128, 7.412, 7.4141, 7.4129, 7.412, 7.4111, 7.4104, 7.4093, 7.4082, 7.4074, 7.4063, 7.4056, 7.4049, 7.404, 7.4028, 7.402, 7.4014, 7.4003, 7.4022, 7.4011, 7.403, 7.4047, 7.4037, 7.4027, 7.4044, 7.4061, 7.4049, 7.4038, 7.4026, 7.4016, 7.4005, 7.3995, 7.3988, 7.3982, 7.4001, 7.3992, 7.3981, 7.3976, 7.3971, 7.4, 7.3992, 7.3958, 7.3952, 7.3942, 7.3932, 7.3921, 7.3912, 7.3901, 7.3918, 7.3914, 7.3908, 7.3898, 7.3908000000000005, 7.391800000000001, 7.3926, 7.392, 7.3914, 7.3933, 7.3955, 7.3948, 7.3937, 7.4025, 7.4042, 7.4034, 7.4054, 7.4046, 7.4038, 7.403, 7.4051, 7.4042, 7.4032, 7.4051, 7.4041, 7.4031, 7.402, 7.4018, 7.4007, 7.3999, 7.3989, 7.3984, 7.3974, 7.3993, 7.4011, 7.4005, 7.3994, 7.3984, 7.4002, 7.4108, 7.4102, 7.4095, 7.4092, 7.4112, 7.4128, 7.4118, 7.4109, 7.4103, 7.4121, 7.4113, 7.4106, 7.4098, 7.4091, 7.4081, 7.4099, 7.4094, 7.4088, 7.4103, 7.4093, 7.4082, 7.4071, 7.4065, 7.4082, 7.4074, 7.4072, 7.408, 7.4071, 7.4062, 7.4052, 7.4068, 7.4086, 7.4104, 7.4122, 7.4141, 7.4156, 7.4146, 7.4194, 7.4188, 7.4178, 7.4168, 7.4173, 7.4169, 7.4163, 7.4181, 7.4175, 7.4175, 7.4192, 7.4209, 7.4226, 7.4243, 7.4233, 7.4222, 7.4234, 7.4224, 7.4218, 7.421, 7.4199, 7.4195, 7.4189, 7.4157, 7.4154, 7.4145, 7.4141, 7.4135, 7.4126, 7.4142, 7.4135, 7.4126, 7.4145, 7.4136, 7.4155, 7.4145, 7.4137, 7.4127, 7.4118, 7.4113, 7.4104, 7.4121, 7.4111, 7.4207, 7.4197, 7.4193, 7.4183, 7.4228, 7.4227, 7.4221, 7.4238, 7.4236, 7.4251, 7.4241, 7.4236, 7.4204, 7.4194, 7.4277, 7.4267, 7.4256, 7.4247, 7.4242, 7.4233, 7.4223, 7.4214, 7.4205, 7.4221, 7.4215, 7.4206, 7.4175, 7.4193, 7.4185, 7.4175, 7.4165, 7.4155, 7.4145, 7.4137, 7.4127, 7.4173, 7.4164, 7.418, 7.417, 7.4186, 7.4176, 7.4166, 7.4158, 7.4152, 7.4168, 7.4186, 7.4176, 7.4193, 7.4183, 7.4173, 7.4293, 7.4285, 7.4404, 7.4409, 7.4401, 7.444, 7.4431, 7.4422, 7.4414, 7.445, 7.4459, 7.4452, 7.4447, 7.4438, 7.4429, 7.4426, 7.4443, 7.4433, 7.4427, 7.4418, 7.4408, 7.4398, 7.4389, 7.4381, 7.4397, 7.439, 7.4385, 7.4377, 7.4393, 7.4383, 7.4373, 7.4389, 7.4379, 7.4369, 7.4359, 7.4352, 7.4321, 7.4338, 7.4328, 7.4319, 7.4336, 7.4326, 7.4342, 7.4338, 7.438, 7.4396, 7.4387, 7.4404, 7.442, 7.4412, 7.4402, 7.4397, 7.4392, 7.4387, 7.438, 7.4375, 7.4366, 7.4361, 7.4351, 7.4346, 7.436, 7.4353, 7.4348, 7.4341, 7.4358, 7.4351, 7.4345, 7.4335, 7.4329, 7.4325, 7.4316, 7.4309, 7.4305, 7.4322, 7.4339, 7.4329, 7.4345, 7.4314, 7.4334, 7.4325, 7.4345, 7.4315, 7.4306, 7.4436, 7.4428, 7.4399, 7.4389, 7.4385, 7.4403, 7.4393, 7.4409, 7.4404, 7.4402, 7.4417, 7.4432, 7.4423, 7.4413, 7.4383, 7.4374, 7.437, 7.4364, 7.4355, 7.4346, 7.4362, 7.4358, 7.4386, 7.4376, 7.4366, 7.436, 7.4352, 7.4343, 7.4335, 7.4331, 7.4321, 7.4321, 7.4312, 7.4329, 7.4299, 7.4294, 7.4289, 7.4281, 7.4295, 7.431, 7.4305, 7.4297, 7.4303, 7.4297, 7.4293, 7.4285, 7.4292, 7.4286, 7.4277, 7.4268, 7.4262, 7.4252, 7.4244, 7.4236, 7.4251, 7.4248, 7.4246, 7.4216, 7.4207, 7.4177, 7.4192, 7.4198, 7.4189, 7.4183, 7.4177, 7.4192, 7.4183, 7.4198, 7.4189, 7.4206, 7.4197, 7.4191, 7.4185, 7.4176, 7.4167, 7.4183, 7.418, 7.4172, 7.4187, 7.4202, 7.4202, 7.4193, 7.4188, 7.4179, 7.417, 7.4161, 7.4152, 7.4143, 7.4138, 7.4132, 7.4123, 7.412, 7.4111, 7.4102, 7.4093, 7.4109, 7.4123, 7.4117, 7.4107, 7.4101, 7.4092, 7.411, 7.4105, 7.4097, 7.4089, 7.408, 7.4072, 7.4086, 7.4078, 7.407, 7.4086, 7.4101, 7.4098, 7.4094, 7.4108, 7.41, 7.4094, 7.4092, 7.4208, 7.4226, 7.4307, 7.4303, 7.4294, 7.4295, 7.4291, 7.4308, 7.4298, 7.4289, 7.426, 7.4275, 7.4266, 7.4282, 7.4273, 7.4264, 7.4278, 7.4269, 7.426, 7.4251, 7.425, 7.4246, 7.4238, 7.4251, 7.4245, 7.4239, 7.4235, 7.4212, 7.4204, 7.4195, 7.4192, 7.4209, 7.4201, 7.4194, 7.4214, 7.4213, 7.4231, 7.4227, 7.4219, 7.4213, 7.419, 7.4205, 7.4197, 7.4237, 7.4252, 7.4245, 7.4244, 7.4235, 7.423, 7.4221, 7.4306, 7.4301, 7.4297, 7.429, 7.429, 7.428, 7.4303, 7.4289, 7.4281, 7.4274, 7.4291, 7.4279, 7.4296, 7.4294, 7.4285, 7.4277, 7.4295, 7.4291, 7.4287, 7.4279, 7.4277, 7.4275, 7.4266, 7.4261, 7.4256, 7.4229, 7.4243, 7.4234, 7.425, 7.4245, 7.4258, 7.4255, 7.4269, 7.4264, 7.4261, 7.4277, 7.4299, 7.4293, 7.4286, 7.4277, 7.4268, 7.4328, 7.432, 7.4335, 7.4372, 7.4364, 7.4356, 7.4347, 7.4361, 7.4337, 7.4351, 7.4342, 7.4333, 7.4347, 7.4342, 7.4356, 7.437, 7.4366, 7.4338, 7.4329, 7.4323, 7.4315, 7.4311, 7.4327, 7.4318, 7.431, 7.4302, 7.4299, 7.4297, 7.4294, 7.4285, 7.4278, 7.4277, 7.4268, 7.4308, 7.4322, 7.4294, 7.4266, 7.4238, 7.4239, 7.4231, 7.424, 7.4237, 7.4219, 7.4211, 7.4225, 7.424, 7.4231, 7.4227, 7.4218, 7.421, 7.4206, 7.4202, 7.4195, 7.4192, 7.4206, 7.4201, 7.4196, 7.421, 7.4203, 7.4194, 7.4188, 7.4183, 7.4239, 7.423, 7.4226, 7.422, 7.4211, 7.4202, 7.4195, 7.4353, 7.4345, 7.436, 7.4352, 7.4345, 7.434, 7.4331, 7.4333, 7.4325, 7.4316, 7.4307, 7.4301, 7.4292, 7.4285, 7.4278, 7.4292, 7.4284, 7.4276, 7.4267, 7.4259, 7.4253, 7.4268, 7.426, 7.4252, 7.4249, 7.4243, 7.4235, 7.425, 7.4267, 7.4259, 7.4254, 7.4245, 7.4237, 7.4232, 7.423, 7.4244, 7.4236, 7.425, 7.4247, 7.4239, 7.4234, 7.4226, 7.4241, 7.4234, 7.4231, 7.4223, 7.426, 7.4296, 7.4287, 7.4278, 7.4291, 7.4283, 7.4277, 7.4269, 7.426, 7.4251, 7.4244, 7.4247, 7.4244, 7.4237, 7.4229, 7.4244, 7.4241, 7.4235, 7.4227, 7.422, 7.4234, 7.4226, 7.4199, 7.419, 7.4184, 7.4198, 7.419, 7.4184, 7.4198, 7.4212, 7.4226, 7.4218, 7.4232, 7.4245, 7.4239, 7.4231, 7.4204, 7.4206, 7.4202, 7.4195, 7.4186, 7.42, 7.4193, 7.4206, 7.4198, 7.4189, 7.4181, 7.4175, 7.4169, 7.4161, 7.4174, 7.4166, 7.418, 7.4193, 7.4186, 7.4186, 7.4181, 7.4174, 7.4188, 7.4183, 7.4198, 7.419, 7.4202, 7.4197, 7.4189, 7.4185, 7.4187, 7.4202, 7.4196, 7.4187, 7.4181, 7.4174, 7.4189, 7.4185, 7.4178, 7.4214, 7.4207, 7.42, 7.4193, 7.4172, 7.4165, 7.4157, 7.415, 7.4168, 7.4142, 7.4155, 7.4147, 7.4139, 7.4131, 7.413, 7.4143, 7.4135, 7.413, 7.4163, 7.4155, 7.4147, 7.4146, 7.4159, 7.4151, 7.4145, 7.4158, 7.4171, 7.4163, 7.4155, 7.421, 7.4204, 7.4196, 7.4188, 7.4186, 7.4179, 7.4171, 7.4186, 7.4179, 7.4193, 7.4185, 7.4178, 7.4172, 7.4166, 7.4181, 7.418, 7.4174, 7.4167, 7.4161, 7.4153, 7.4153, 7.4145, 7.4139, 7.4131, 7.4123, 7.4118, 7.411, 7.4123, 7.4136, 7.4149, 7.4141, 7.4139, 7.4131, 7.4143, 7.4135, 7.4132, 7.4128, 7.412, 7.4112, 7.4107, 7.4101, 7.4094, 7.4086, 7.4079, 7.4071, 7.4067, 7.4085, 7.4077, 7.4069, 7.4043, 7.4035, 7.4031, 7.4024, 7.4082, 7.4076, 7.4072, 7.4066, 7.4059, 7.4077, 7.4093, 7.4098, 7.4097, 7.4091, 7.4122, 7.4138, 7.4136, 7.4112, 7.4104, 7.4099, 7.4091, 7.4083, 7.4081, 7.4084, 7.4098, 7.4093, 7.409, 7.4083, 7.4096, 7.4089, 7.4143, 7.4136, 7.4131, 7.4128, 7.4148, 7.4177, 7.4169, 7.4162, 7.4154, 7.4149, 7.4141, 7.4134, 7.4147, 7.4124, 7.4117, 7.411, 7.4107, 7.41, 7.4094, 7.4086, 7.408, 7.4072, 7.4064, 7.4057, 7.407, 7.4083, 7.4076, 7.4069, 7.4062, 7.4058, 7.4071, 7.4063, 7.4056, 7.4049, 7.4042, 7.4038, 7.4032, 7.4025, 7.4038, 7.4051, 7.4044, 7.4057, 7.4052, 7.4065, 7.4057, 7.4068, 7.4063, 7.4057, 7.4051, 7.4045, 7.4039, 7.4054, 7.4047, 7.4044, 7.406, 7.4053, 7.4048, 7.4041, 7.4034, 7.4027, 7.404, 7.4053, 7.4122, 7.4117, 7.411, 7.4121, 7.4119, 7.4133, 7.4145, 7.4158, 7.4155, 7.4147, 7.4161, 7.4137, 7.4149, 7.4143, 7.4137, 7.413, 7.4136, 7.4128, 7.4142, 7.4119, 7.4111, 7.4105, 7.4099, 7.4098, 7.4095, 7.4108, 7.4101, 7.4094, 7.4087, 7.408, 7.4094, 7.4087, 7.408, 7.4073, 7.4072, 7.4066, 7.406, 7.4052, 7.4051, 7.4054, 7.4047, 7.4057, 7.4094, 7.4088, 7.4101, 7.4126, 7.4119, 7.4131, 7.4127, 7.4123, 7.4115, 7.4127, 7.4139, 7.4151, 7.4145, 7.4141, 7.4134, 7.4127, 7.4123, 7.4119, 7.4131, 7.4135, 7.4131, 7.4131, 7.4146, 7.4142, 7.4134, 7.4128, 7.4124, 7.4104, 7.4106, 7.4109, 7.4121, 7.4117, 7.4095, 7.4097, 7.4109, 7.4166, 7.416, 7.4155, 7.4147, 7.4143, 7.4137, 7.4133, 7.4127, 7.412, 7.4118, 7.4095, 7.4088, 7.41, 7.4093, 7.4086, 7.4079, 7.409, 7.4089, 7.4097, 7.4092, 7.4086, 7.4078, 7.4093, 7.4089, 7.4082, 7.4078, 7.4071, 7.4048, 7.4043, 7.4039, 7.4056, 7.4049, 7.4043, 7.4042, 7.4035, 7.4012, 7.4044, 7.4041, 7.4034, 7.403, 7.4011, 7.4004, 7.4001, 7.4013, 7.4006, 7.4018, 7.4029, 7.4024, 7.4023, 7.4015, 7.4027, 7.402, 7.4012, 7.4005, 7.4018, 7.4014, 7.401, 7.4003, 7.3998, 7.4, 7.4012, 7.4008, 7.4006, 7.4024, 7.4036, 7.4039, 7.4057, 7.408, 7.4072, 7.4086, 7.4104, 7.4116, 7.4109, 7.4121, 7.4133, 7.4129, 7.4122, 7.4115, 7.4114, 7.4107, 7.4124, 7.4136, 7.4148, 7.4142, 7.4152, 7.4148, 7.4142, 7.4135, 7.4129, 7.4122, 7.4115, 7.4109, 7.4104, 7.412, 7.4113, 7.4106, 7.4101, 7.4112, 7.4105, 7.4098, 7.4109, 7.4101, 7.4094, 7.4105, 7.4099, 7.4092, 7.4086, 7.408, 7.4073, 7.4069, 7.4062, 7.4055, 7.4051, 7.4046, 7.4039, 7.4021, 7.4016, 7.4009, 7.4002, 7.3999, 7.3992, 7.4006, 7.4019, 7.4018, 7.4017, 7.401, 7.4003, 7.3999, 7.3995, 7.399, 7.4003, 7.4001, 7.4002, 7.4, 7.3982, 7.3975, 7.3971, 7.3967, 7.3983, 7.3976, 7.4005, 7.4003, 7.3996, 7.4006, 7.3999, 7.4001, 7.3996, 7.399, 7.3984, 7.398, 7.3973, 7.3966, 7.396, 7.3956, 7.3952, 7.3946, 7.3996, 7.3988, 7.3981, 7.4003, 7.3997, 7.3991, 7.4003, 7.4015, 7.3993, 7.4005, 7.4003, 7.3996, 7.3989, 7.3985, 7.3978, 7.3974, 7.3968, 7.3962, 7.3973, 7.3967, 7.3979, 7.3991, 7.3984, 7.3997, 7.3992, 7.3985, 7.3983, 7.3995, 7.3973, 7.3985, 7.398, 7.3973, 7.3985, 7.398, 7.3974, 7.3974, 7.3968, 7.3965, 7.3977, 7.3971, 7.3986, 7.3991, 7.3984, 7.3996, 7.4007, 7.4001, 7.3994, 7.3987, 7.398, 7.3976, 7.3989, 7.3985, 7.3978, 7.4014, 7.4024, 7.4019, 7.3998, 7.401, 7.4003, 7.3998, 7.4026, 7.4037, 7.403, 7.4023, 7.4034, 7.4012, 7.4006, 7.4002, 7.3996, 7.3991, 7.3984, 7.3997, 7.3992, 7.3988, 7.3968, 7.3981, 7.398, 7.3981, 7.3975, 7.397, 7.3969, 7.3962, 7.3972, 7.3969, 7.3947, 7.3944, 7.3937, 7.3931, 7.3929, 7.3927, 7.3921, 7.3914, 7.3892, 7.3885, 7.3879, 7.3887, 7.3884, 7.3877, 7.387, 7.3867, 7.3863, 7.3857, 7.3853, 7.3867, 7.386, 7.3857, 7.385, 7.3861, 7.3857, 7.387, 7.3867, 7.386, 7.3863, 7.3883, 7.3876, 7.3924, 7.3989, 7.3983, 7.3977, 7.4011, 7.404, 7.4042, 7.4036, 7.4034, 7.4027, 7.4037, 7.4048, 7.4044, 7.4049, 7.4045, 7.4039, 7.4032, 7.4042, 7.4053, 7.4046, 7.4041, 7.4022, 7.4017, 7.4012, 7.4007, 7.4017, 7.4011, 7.4008, 7.4005, 7.4, 7.4011, 7.4005, 7.4, 7.3993, 7.3987, 7.3981, 7.3975, 7.3968, 7.3982, 7.3975, 7.3969, 7.3963, 7.3957, 7.3953, 7.3949, 7.3944, 7.3937, 7.3917, 7.3928, 7.3939, 7.3933, 7.3929, 7.3923, 7.3921, 7.3918, 7.3912, 7.3911, 7.3906, 7.3901, 7.3896, 7.3894, 7.3889, 7.3884, 7.3879, 7.3876, 7.3906, 7.3937, 7.3933, 7.3927, 7.3922, 7.3917, 7.3932, 7.3929, 7.3942, 7.3936, 7.3947, 7.3941, 7.3935, 7.3946, 7.3957, 7.3967, 7.3969, 7.398, 7.4042, 7.4038, 7.405, 7.4046, 7.4051, 7.4046, 7.404, 7.4036, 7.403, 7.4024, 7.4035, 7.4034, 7.4033, 7.4027, 7.4021, 7.4032, 7.4026, 7.4021, 7.4019, 7.4015, 7.3995, 7.4, 7.3979, 7.3972, 7.3996, 7.4006, 7.4018, 7.4017, 7.4011, 7.4005, 7.4, 7.401, 7.4004, 7.4, 7.3995, 7.4005, 7.4, 7.3994, 7.4005, 7.4008, 7.4004, 7.3998, 7.3994, 7.3991, 7.3987, 7.3981, 7.3975, 7.3969, 7.3963, 7.3957, 7.3968, 7.3977, 7.3973, 7.3999, 7.4025, 7.4021, 7.4018, 7.4012, 7.4006, 7.4002, 7.4012, 7.4007, 7.4003, 7.3983, 7.3976, 7.3973, 7.3967, 7.3978, 7.3957, 7.3956, 7.395, 7.3962, 7.396, 7.3958, 7.3959, 7.3955, 7.3949, 7.3947, 7.3958, 7.3952, 7.3964, 7.3958, 7.3969, 7.398, 7.3992, 7.4003, 7.3997, 7.4006, 7.4004, 7.3998, 7.4024, 7.4019, 7.403, 7.4024, 7.4018, 7.4013, 7.4022, 7.4016, 7.4012, 7.4006, 7.4, 7.3998, 7.3991, 7.3984, 7.4017, 7.4019, 7.4037, 7.4033, 7.4028, 7.4024, 7.4029, 7.4027, 7.4007, 7.4001, 7.3996, 7.3992, 7.4003, 7.3997, 7.4003, 7.3999, 7.3994, 7.3991, 7.3986, 7.3998, 7.401, 7.402, 7.4014, 7.4014, 7.4025, 7.402, 7.4031, 7.4044, 7.4044, 7.4054, 7.4047, 7.4043, 7.4037, 7.4033, 7.4028, 7.4022, 7.4017, 7.4011, 7.4022, 7.4016, 7.401, 7.4004, 7.4041, 7.4051, 7.4061, 7.4073, 7.4083, 7.408, 7.4074, 7.4077, 7.4071, 7.4065, 7.4059, 7.4053, 7.4047, 7.4042, 7.4036, 7.4033, 7.4027, 7.4021, 7.402, 7.4016, 7.4013, 7.401, 7.402, 7.4017, 7.4011, 7.4008, 7.4002, 7.3998, 7.4014, 7.4008, 7.4002, 7.3998, 7.3996, 7.399, 7.3984, 7.3979, 7.3989, 7.3985, 7.3996, 7.3993, 7.3987, 7.3981, 7.3978, 7.3974, 7.3968, 7.3962, 7.3956, 7.395, 7.3964, 7.3981, 7.398, 7.3974, 7.3969, 7.3983, 7.3984, 7.3993, 7.4004, 7.4007, 7.4004, 7.4013, 7.401, 7.4013, 7.4022, 7.4033, 7.4028, 7.4023, 7.4018, 7.4013, 7.4024, 7.4018, 7.403, 7.4026, 7.402, 7.4015, 7.4025, 7.402, 7.4018, 7.4015, 7.401, 7.4021, 7.4017, 7.4011, 7.4007, 7.4034, 7.4031, 7.4025, 7.4019, 7.4014, 7.4012, 7.4009, 7.4019, 7.4013, 7.401, 7.4004, 7.3999, 7.3996, 7.3992, 7.3988, 7.3984, 7.3965, 7.3965, 7.3975, 7.3971, 7.3965, 7.3962, 7.3959, 7.397, 7.3981, 7.3977, 7.3974, 7.3984, 7.3978, 7.3989, 7.3985, 7.3979, 7.3975, 7.3985, 7.3992, 7.4002, 7.4001, 7.3995, 7.3989, 7.3985, 7.3979, 7.3975, 7.3971, 7.3965, 7.3959, 7.3953, 7.3948, 7.395, 7.3945, 7.3939, 7.3934, 7.3928, 7.3939, 7.3936, 7.3931, 7.3931, 7.3925, 7.3922, 7.3919, 7.3913, 7.3907, 7.4007, 7.4017, 7.403, 7.4025, 7.404, 7.4076, 7.407, 7.4067, 7.4061, 7.4056, 7.4066, 7.4064, 7.4073, 7.4067, 7.4063, 7.4057, 7.4067, 7.4061, 7.4059, 7.4055, 7.4064, 7.4059, 7.4057, 7.4055, 7.405, 7.405, 7.4044, 7.4052, 7.4033, 7.4029, 7.4024, 7.402, 7.4017, 7.4015, 7.4011, 7.4021, 7.4016, 7.4011, 7.4021, 7.4016, 7.401, 7.4005, 7.4, 7.3995, 7.4005, 7.4045, 7.4056, 7.4051, 7.4062, 7.4063, 7.4058, 7.4057, 7.4051, 7.4046, 7.4056, 7.405, 7.4048, 7.411, 7.4105, 7.4117, 7.4112, 7.411, 7.4115, 7.4144, 7.4155, 7.4164, 7.4158, 7.4155, 7.4151, 7.4162, 7.4157, 7.4168, 7.4162, 7.4156, 7.4151, 7.416, 7.417, 7.4167, 7.4161, 7.4157, 7.4151, 7.4146, 7.4141, 7.4136, 7.413, 7.4143, 7.414, 7.4134, 7.413, 7.4127, 7.4147, 7.4143, 7.414, 7.4135, 7.413, 7.4125, 7.4121, 7.4103, 7.41, 7.4129, 7.4125, 7.412, 7.4115, 7.411, 7.4106, 7.4117, 7.4113, 7.4109, 7.4118, 7.4112, 7.4108, 7.4118, 7.4129, 7.4123, 7.4119, 7.4136, 7.4145, 7.4147, 7.4145, 7.4141, 7.4141, 7.4166, 7.4188, 7.4205, 7.4202, 7.4196, 7.419, 7.4201, 7.4211, 7.4245, 7.4239, 7.4236, 7.423, 7.4225, 7.4221, 7.4218, 7.4204, 7.4198, 7.4192, 7.4188, 7.4182, 7.4193, 7.4189, 7.4202, 7.4198, 7.4207, 7.4201, 7.4197, 7.4191, 7.4187, 7.4181, 7.4177, 7.4185, 7.418, 7.4176, 7.4173, 7.4169, 7.4163, 7.4158, 7.4154, 7.4148, 7.4157, 7.4167, 7.4162, 7.4159, 7.4153, 7.4135, 7.413, 7.4125, 7.4122, 7.4117, 7.4126, 7.4136, 7.4131, 7.4125, 7.412, 7.4117, 7.4112, 7.4107, 7.4116, 7.4112, 7.4106, 7.4143, 7.4138, 7.4132, 7.4126, 7.4121, 7.4116, 7.4111, 7.4122, 7.4119, 7.4113, 7.4111, 7.4107, 7.4101, 7.4098, 7.4094, 7.4089, 7.4084, 7.4081, 7.4075, 7.407, 7.4074, 7.407, 7.4064, 7.4058, 7.4053, 7.405, 7.4045, 7.404, 7.4034, 7.4016, 7.4011, 7.4005, 7.4001, 7.3996, 7.3992, 7.4001, 7.4011, 7.402, 7.4017, 7.4012, 7.4021, 7.4016, 7.4025, 7.4019, 7.4021, 7.4029, 7.4023, 7.4033, 7.4044, 7.4026, 7.402, 7.4029, 7.4039, 7.405, 7.4045, 7.4041, 7.4036, 7.4032, 7.4041, 7.4035, 7.4048, 7.4059, 7.4059, 7.4053, 7.405, 7.4059, 7.4067, 7.4064, 7.4073, 7.4067, 7.4062, 7.407, 7.408, 7.4062, 7.4058, 7.4067, 7.4061, 7.4055, 7.4049, 7.4057, 7.4061, 7.4044, 7.4039, 7.4034, 7.4032, 7.4026, 7.4036, 7.4033, 7.4029, 7.4056, 7.4051, 7.4061, 7.4062, 7.4058, 7.4055, 7.405, 7.4045, 7.4039, 7.4049, 7.4032, 7.4027, 7.4022, 7.4008, 7.4003, 7.4, 7.3996, 7.3993, 7.3992, 7.3988, 7.3986, 7.3995, 7.3989, 7.3998, 7.3993, 7.399, 7.3985, 7.3994, 7.3991, 7.4001, 7.3997, 7.3994, 7.3991, 7.4, 7.3998, 7.3993, 7.3987, 7.3983, 7.398, 7.3989, 7.3983, 7.3979, 7.3976, 7.3985, 7.3982, 7.398, 7.3989, 7.3984, 7.3978, 7.4004, 7.4, 7.3995, 7.399, 7.4015, 7.401, 7.4006, 7.4018, 7.4017, 7.4028, 7.4013, 7.401, 7.4005, 7.4003, 7.4012, 7.4006, 7.4015, 7.4011, 7.4007, 7.4004, 7.4002, 7.3998, 7.3994, 7.4001, 7.4011, 7.4006, 7.4002, 7.3997, 7.3979, 7.3974, 7.3968, 7.3968, 7.3963, 7.3963, 7.3957, 7.3952, 7.3947, 7.3957, 7.3952, 7.3971, 7.398, 7.3963, 7.3974, 7.3959, 7.3955, 7.395, 7.3959, 7.3954, 7.3948, 7.3942, 7.3938, 7.3934, 7.3931, 7.3925, 7.3919, 7.3915, 7.3909, 7.3904, 7.3914, 7.3908, 7.3893, 7.3891, 7.3901, 7.3897, 7.3894, 7.3905, 7.39, 7.3897, 7.3892, 7.3887, 7.3882, 7.3892, 7.389, 7.3885, 7.3882, 7.3892, 7.3902, 7.3912, 7.3909, 7.3918, 7.3913, 7.3922, 7.3917, 7.3916, 7.3925, 7.3934, 7.3929, 7.3937, 7.392, 7.3917, 7.3927, 7.3924, 7.3907, 7.3904, 7.3899, 7.3894, 7.3889, 7.3884, 7.3879, 7.3874, 7.3882, 7.3878, 7.3873, 7.3869, 7.3878, 7.3874, 7.3869, 7.3852, 7.3853, 7.3848, 7.3851, 7.3861, 7.3858, 7.3855, 7.3852, 7.3847, 7.3842, 7.3837, 7.3846, 7.3842, 7.3866, 7.3861, 7.3844, 7.3841, 7.3837, 7.3846, 7.3841, 7.3838, 7.3836, 7.3831, 7.3826, 7.3835, 7.3843, 7.3827, 7.3811, 7.3806, 7.3802, 7.3798, 7.3795, 7.3791, 7.3802, 7.3811, 7.3807, 7.3816, 7.3813, 7.3823, 7.3819, 7.3816, 7.3811, 7.3806, 7.3815, 7.381, 7.3807, 7.379, 7.3787, 7.377, 7.3766, 7.3762, 7.3757, 7.3752, 7.3749, 7.3744, 7.3739, 7.3734, 7.3729, 7.3724, 7.3732, 7.374, 7.3748, 7.3759, 7.3766, 7.3762, 7.3757, 7.3753, 7.3749, 7.3789, 7.3803, 7.38, 7.3783, 7.378, 7.3776, 7.3805, 7.3807, 7.3803, 7.3812, 7.3808, 7.3804, 7.38, 7.3808, 7.3817, 7.3804, 7.3889, 7.3884, 7.3879, 7.3875, 7.3885, 7.3882, 7.3879, 7.3887, 7.3885, 7.3881, 7.389, 7.3887, 7.3885, 7.3885, 7.3884, 7.388, 7.3875, 7.3884, 7.3895, 7.3904, 7.3901, 7.391, 7.3908, 7.3904, 7.3913, 7.3908, 7.3917, 7.3914, 7.3923, 7.3918, 7.3913, 7.3908, 7.3903, 7.3898, 7.3893, 7.3901, 7.391, 7.3905, 7.39, 7.3896, 7.3946, 7.3943, 7.3972, 7.397, 7.3979, 7.3974, 7.3969, 7.3978, 7.3974, 7.3972, 7.3967, 7.3964, 7.3959, 7.3955, 7.3953, 7.3963, 7.3958, 7.3953, 7.3953, 7.3962, 7.3957, 7.3955, 7.3981, 7.3979, 7.3974, 7.3982, 7.3977, 7.3962, 7.4003, 7.3998, 7.3993, 7.399, 7.3985, 7.3982, 7.3977, 7.3972, 7.3967, 7.3974, 7.397, 7.3967, 7.3975, 7.397, 7.3965, 7.396, 7.3955, 7.3963, 7.3958, 7.3953, 7.3961, 7.3969, 7.3964, 7.3962, 7.3957, 7.3952, 7.3947, 7.3945, 7.3941, 7.3924, 7.3919, 7.3914, 7.3923, 7.3918, 7.3913, 7.3908, 7.3906, 7.3902, 7.391, 7.3908, 7.3903, 7.3899, 7.3894, 7.389, 7.3887, 7.3882, 7.388, 7.3878, 7.3873, 7.387, 7.3878, 7.3886, 7.3881, 7.3876, 7.3872, 7.3867, 7.3862, 7.3858, 7.3853, 7.3837, 7.3832, 7.3827, 7.3836, 7.3831, 7.3826, 7.3837, 7.3832, 7.3827, 7.3823, 7.3822, 7.3817, 7.3825, 7.382, 7.3818, 7.3826, 7.3823, 7.382, 7.3829, 7.3825, 7.3822, 7.3831, 7.3841, 7.3838, 7.3834, 7.3835, 7.3833, 7.3828, 7.3827, 7.3826, 7.3821, 7.3819, 7.3814, 7.3811, 7.3806, 7.3804, 7.3799, 7.3808, 7.3804, 7.3799, 7.38, 7.3798, 7.3793, 7.3801, 7.3835, 7.383, 7.3825, 7.3821, 7.3822, 7.3818, 7.3844, 7.383, 7.3848, 7.3844, 7.3839, 7.3846, 7.3843, 7.3842, 7.3837, 7.3847, 7.3844, 7.3841, 7.3838, 7.3846, 7.3841, 7.3836, 7.3833, 7.3841, 7.3836, 7.3844, 7.3839, 7.3834, 7.383, 7.3825, 7.3824, 7.3819, 7.3816, 7.3811, 7.3806, 7.3814, 7.381, 7.3805, 7.3802, 7.3797, 7.3792, 7.3787, 7.3782, 7.3777, 7.3773, 7.3774, 7.3774, 7.3787, 7.3782, 7.3778, 7.3763, 7.3759, 7.3768, 7.3754, 7.375, 7.3745, 7.3741, 7.3749, 7.3744, 7.374, 7.3735, 7.373, 7.3739, 7.3748, 7.3757, 7.3752, 7.3749, 7.3758, 7.3753, 7.3761, 7.3758, 7.3755, 7.3752, 7.3759, 7.3754, 7.3751, 7.3759, 7.3754, 7.3751, 7.3747, 7.3742, 7.374, 7.3747, 7.3756, 7.3751, 7.3749, 7.3746, 7.3754, 7.3749, 7.3744, 7.3739, 7.3734, 7.3732, 7.373, 7.3733, 7.373, 7.3728, 7.3723, 7.373, 7.3725, 7.3722, 7.3731, 7.3729, 7.3737, 7.3732, 7.3728, 7.3737, 7.3734, 7.373, 7.3726, 7.3723, 7.372, 7.3715, 7.3723, 7.3718, 7.3715, 7.3712, 7.3721, 7.373, 7.3725, 7.3732, 7.3729, 7.3736, 7.3732, 7.3741, 7.3736, 7.3732, 7.3727, 7.3711, 7.3696, 7.3692, 7.3689, 7.37, 7.3696, 7.3692, 7.3689, 7.3684, 7.3679, 7.3689, 7.3686, 7.3682, 7.3679, 7.3676, 7.3676, 7.3671, 7.3669, 7.3678, 7.3664, 7.365, 7.3645, 7.3655, 7.3652, 7.3647, 7.3646, 7.3643, 7.364, 7.3649, 7.3647, 7.3642, 7.3649, 7.367, 7.3724, 7.3731, 7.3739, 7.3735, 7.3733, 7.3731, 7.3727, 7.3735, 7.3735, 7.3732, 7.3729, 7.3727, 7.3723, 7.3718, 7.3726, 7.3723, 7.3718, 7.3713, 7.3711, 7.3706, 7.3705, 7.3719, 7.3722, 7.3718, 7.3726, 7.3724, 7.372, 7.3716, 7.3724, 7.3732, 7.374, 7.3726, 7.3722, 7.3732, 7.3728, 7.3736, 7.3733, 7.3744, 7.374, 7.3737, 7.3746, 7.3741, 7.3736, 7.3734, 7.3731, 7.373, 7.3728, 7.3723, 7.3718, 7.3714, 7.371, 7.3706, 7.3702, 7.3697, 7.3693, 7.3688, 7.3696, 7.3693, 7.3688, 7.3683, 7.3691, 7.3699, 7.3694, 7.3702, 7.3697, 7.3705, 7.3713, 7.3721, 7.3716, 7.3704, 7.3702, 7.3698, 7.3693, 7.3689, 7.3697, 7.3706, 7.3703, 7.3691, 7.3687, 7.3696, 7.3692, 7.3688, 7.3688, 7.3687, 7.3683, 7.368, 7.3681, 7.3666, 7.3664, 7.3666, 7.3674, 7.3673, 7.3669, 7.3676, 7.3671, 7.367, 7.3665, 7.3662, 7.3658, 7.3668, 7.3691, 7.3687, 7.3682, 7.3681, 7.3676, 7.3672, 7.3668, 7.3663, 7.366, 7.3656, 7.3653, 7.3649, 7.367, 7.3682, 7.3678, 7.3677, 7.3685, 7.3682, 7.3679, 7.3677, 7.3673, 7.367, 7.3668, 7.3665, 7.3663, 7.3672, 7.3669, 7.3667, 7.3666, 7.3675, 7.3671, 7.367, 7.3666, 7.3661, 7.3669, 7.3665, 7.3673, 7.3668, 7.3676, 7.3671, 7.3667, 7.3663, 7.3658, 7.3654, 7.3651, 7.3646, 7.3654, 7.3649, 7.3644, 7.3639, 7.3659, 7.3668, 7.3682, 7.3678, 7.3674, 7.367, 7.3666, 7.3663, 7.3659, 7.3656, 7.3662, 7.366, 7.3655, 7.3688, 7.3695, 7.3691, 7.3691, 7.3688, 7.3686, 7.3684, 7.3692, 7.3694, 7.3715, 7.3723, 7.3719, 7.3715, 7.3712, 7.3721, 7.3717, 7.3743, 7.3739, 7.3746, 7.3753, 7.3751, 7.3759, 7.3757, 7.3754, 7.375, 7.3746, 7.3754, 7.3749, 7.3746, 7.3759, 7.3756, 7.3754, 7.3762, 7.3757, 7.3752, 7.3759, 7.3754, 7.3763, 7.376, 7.3756, 7.3752, 7.375, 7.3746, 7.3754, 7.3762, 7.377, 7.378, 7.3776, 7.3773, 7.3769, 7.3765, 7.3775, 7.3782, 7.379, 7.379, 7.3799, 7.3807, 7.3804, 7.3812, 7.381, 7.3818, 7.3814, 7.3811, 7.3819, 7.3826, 7.3823, 7.3822, 7.383, 7.3825, 7.382, 7.3829, 7.3825, 7.3827, 7.3826, 7.3822, 7.3819, 7.3815, 7.3823, 7.3819, 7.3815, 7.3811, 7.3807, 7.3804, 7.38, 7.3796, 7.3793, 7.3802, 7.381, 7.3807, 7.3792, 7.3788, 7.3784, 7.378, 7.378, 7.3788, 7.3785, 7.3781, 7.3779, 7.3776, 7.3772, 7.3779, 7.3787, 7.3785, 7.3783, 7.378, 7.378, 7.3777, 7.3785, 7.3782, 7.379, 7.3788, 7.3786, 7.3772, 7.3767, 7.3763, 7.376, 7.3759, 7.3755, 7.3774, 7.3782, 7.3778, 7.3787, 7.3783, 7.3779, 7.3775, 7.3782, 7.3778, 7.3786, 7.3782, 7.3778, 7.3792, 7.3788, 7.3784, 7.3805, 7.3824, 7.382, 7.3818, 7.3827, 7.3826, 7.3835, 7.3843, 7.3853, 7.3849, 7.3846, 7.3843, 7.3839, 7.3834, 7.383, 7.3831, 7.3839, 7.3849, 7.3847, 7.3844, 7.3847, 7.3862, 7.3873, 7.3871, 7.387, 7.3866, 7.3874, 7.3869, 7.3866, 7.3863, 7.3883, 7.3883, 7.3879, 7.3877, 7.3885, 7.389, 7.3898, 7.3894, 7.389, 7.3886, 7.3883, 7.3879, 7.3875, 7.3871, 7.3866, 7.3874, 7.387, 7.3866, 7.3864, 7.3871, 7.3868, 7.3871, 7.3869, 7.3866, 7.3862, 7.386, 7.3868, 7.3865, 7.3861, 7.3858, 7.3867, 7.3862, 7.3857, 7.3853, 7.385, 7.3857, 7.3853, 7.3849, 7.3835, 7.3832, 7.3828, 7.3824, 7.3832, 7.384, 7.3838, 7.3836, 7.3832, 7.384, 7.3827, 7.3836, 7.3844, 7.384, 7.3837, 7.3833, 7.3834, 7.3832, 7.3828, 7.3835, 7.3843, 7.3839, 7.3864, 7.386, 7.397, 7.3969, 7.3975, 7.3972, 7.3968, 7.3965, 7.3961, 7.3957, 7.3964, 7.3972, 7.3969, 7.3968, 7.3975, 7.3971, 7.4001, 7.4008, 7.4004, 7.4, 7.3996, 7.3993, 7.4, 7.3995, 7.4003, 7.3999, 7.3996, 7.3993, 7.3989, 7.3986, 7.3993, 7.399, 7.3985, 7.3992, 7.3993, 7.3991, 7.3987, 7.4003, 7.4018, 7.4019, 7.4021, 7.401, 7.4018, 7.4013, 7.4011, 7.4006, 7.4002, 7.3998, 7.3995, 7.3993, 7.3989, 7.399, 7.3988, 7.3996, 7.3993, 7.399, 7.3999, 7.3985, 7.3981, 7.3978, 7.3986, 7.3983, 7.3996, 7.3992, 7.3988, 7.3984, 7.398, 7.399, 7.3987, 7.3984, 7.3981, 7.3979, 7.3975, 7.3983, 7.3981, 7.3977, 7.3973, 7.3969, 7.3955, 7.3952, 7.3959, 7.3954, 7.3952, 7.3949, 7.3956, 7.3952, 7.3949, 7.3944, 7.3951, 7.3948, 7.3944, 7.3951, 7.3957, 7.3954, 7.3991, 7.3988, 7.3983, 7.3978, 7.3976, 7.3972, 7.3967, 7.3964, 7.396, 7.3957, 7.3953, 7.3949, 7.3957, 7.3954, 7.3961, 7.3958, 7.3964, 7.396, 7.3979, 7.3987, 7.3986, 7.3985, 7.3981, 7.3988, 7.3986, 7.3982, 7.3978, 7.3975, 7.3961, 7.3968, 7.3964, 7.3973, 7.3969, 7.3965, 7.3961, 7.3957, 7.3953, 7.3949, 7.3945, 7.3941, 7.3938, 7.3936, 7.3932, 7.3939, 7.3946, 7.3942, 7.3938, 7.3935, 7.3942, 7.3941, 7.3939, 7.3948, 7.3944, 7.3952, 7.3948, 7.3944, 7.394, 7.3936, 7.3932, 7.394, 7.3938, 7.3936, 7.3946, 7.3942, 7.3938, 7.3934, 7.3941, 7.3937, 7.3934, 7.3942, 7.394, 7.3936, 7.3933, 7.3941, 7.3949, 7.3945, 7.3932, 7.393, 7.3926, 7.3944, 7.3941, 7.3939, 7.3937, 7.3942, 7.394, 7.3936, 7.3923, 7.392, 7.3917, 7.3913, 7.3921, 7.3917, 7.3913, 7.3912, 7.391, 7.3908, 7.3894, 7.389, 7.3942, 7.3949, 7.3958, 7.3954, 7.395, 7.3946, 7.3942, 7.3938, 7.3945, 7.3964, 7.3971, 7.3967, 7.3953, 7.3949, 7.3945, 7.3941, 7.3949, 7.3945, 7.3944, 7.3951, 7.3947, 7.3955, 7.3952, 7.3948, 7.3944, 7.3941, 7.3928, 7.3924, 7.392, 7.3916, 7.3912, 7.391, 7.3906, 7.3902, 7.3898, 7.3895, 7.3893, 7.3891, 7.389, 7.3888, 7.3884, 7.3882, 7.3878, 7.3874, 7.3871, 7.3867, 7.3864, 7.386, 7.3856, 7.3852, 7.3848, 7.3846, 7.3846, 7.3842, 7.3838, 7.3834, 7.3831, 7.3829, 7.3826, 7.3822, 7.3818, 7.3816, 7.3823, 7.3819, 7.3815, 7.3811, 7.3818, 7.3815, 7.3813, 7.381, 7.3806, 7.3805, 7.3804, 7.3812, 7.3808, 7.3804, 7.3791, 7.3788, 7.3784, 7.3783, 7.3779, 7.3788, 7.3775, 7.3775, 7.3781, 7.3778, 7.3774, 7.3772, 7.3771, 7.3778, 7.3774, 7.3771, 7.3778, 7.3777, 7.3775, 7.3782, 7.3778, 7.3774, 7.3781, 7.3788, 7.3786, 7.3785, 7.3782, 7.3769, 7.3776, 7.3793, 7.3791, 7.3787, 7.3783, 7.3789, 7.3792, 7.3788, 7.3784, 7.378, 7.3776, 7.3773, 7.3769, 7.3776, 7.3774, 7.3771, 7.377, 7.3768, 7.3765, 7.3763, 7.375, 7.3746, 7.3755, 7.3763, 7.376, 7.3756, 7.3769, 7.3765, 7.3761, 7.3768, 7.3765, 7.3761, 7.3759, 7.3759, 7.3755, 7.3752, 7.3751, 7.3749, 7.3745, 7.3743, 7.375, 7.3746, 7.3742, 7.3738, 7.3735, 7.3731, 7.3727, 7.3781, 7.3789, 7.3786, 7.3783, 7.3779, 7.3786, 7.3793, 7.38, 7.3806, 7.3804, 7.3812, 7.3801, 7.3797, 7.3793, 7.3789, 7.3796, 7.3798, 7.3805, 7.3794, 7.3794, 7.379, 7.3786, 7.3782, 7.378, 7.3787, 7.3783, 7.3779, 7.3775, 7.3773, 7.378, 7.3787, 7.3783, 7.3779, 7.3777, 7.3784, 7.3781, 7.3788, 7.3795, 7.3796, 7.3795, 7.3814, 7.3813, 7.3832, 7.384, 7.3841, 7.383, 7.3836, 7.3842, 7.3838, 7.3834, 7.3821, 7.3831, 7.3827, 7.3823, 7.382, 7.3828, 7.3837, 7.3834, 7.3833, 7.383, 7.3827, 7.3825, 7.3822, 7.3829, 7.3826, 7.3823, 7.383, 7.3826, 7.3822, 7.383, 7.3826, 7.3822, 7.3821, 7.3829, 7.3827, 7.3815, 7.3812, 7.3818, 7.3814, 7.382, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3788, 7.3776, 7.3773, 7.378, 7.3777, 7.3774, 7.378, 7.3776, 7.3772, 7.377, 7.3781, 7.3781, 7.3778, 7.3774, 7.377, 7.3803, 7.3799, 7.3795, 7.3791, 7.3788, 7.3784, 7.378, 7.3776, 7.3775, 7.3771, 7.3777, 7.3774, 7.3771, 7.3761, 7.3758, 7.3755, 7.3752, 7.375, 7.3746, 7.3743, 7.3739, 7.3735, 7.3778, 7.3775, 7.3772, 7.3771, 7.3768, 7.3766, 7.3768, 7.3766, 7.3762, 7.3758, 7.3754, 7.375, 7.3767, 7.3763, 7.376, 7.3757, 7.3753, 7.3749, 7.3745, 7.3746, 7.3742, 7.3738, 7.3737, 7.3736, 7.3742, 7.3738, 7.3726, 7.3722, 7.3729, 7.3738, 7.3736, 7.3733, 7.373, 7.3726, 7.3722, 7.3729, 7.3729, 7.3735, 7.3722, 7.3718, 7.3723, 7.372, 7.3718, 7.3714, 7.371, 7.3698, 7.3694, 7.369, 7.3686, 7.3683, 7.368, 7.3678, 7.3675, 7.3671, 7.3669, 7.3677, 7.3675, 7.3682, 7.3678, 7.3684, 7.369, 7.3697, 7.3693, 7.3689, 7.3688, 7.3686, 7.3694, 7.3691, 7.3689, 7.3686, 7.3693, 7.3699, 7.3695, 7.3701, 7.3697, 7.3704, 7.371, 7.3717, 7.3723, 7.3719, 7.3726, 7.3722, 7.3718, 7.3714, 7.3713, 7.3711, 7.3707, 7.3703, 7.371, 7.3717, 7.3724, 7.373, 7.3736, 7.3734, 7.373, 7.3728, 7.3726, 7.3733, 7.373, 7.3727, 7.3723, 7.3721, 7.3717, 7.3715, 7.3711, 7.3717, 7.3715, 7.3711, 7.3709, 7.3715, 7.3722, 7.3728, 7.3756, 7.3752, 7.3749, 7.3746, 7.3742, 7.3732, 7.3728, 7.3724, 7.373, 7.3727, 7.3734, 7.3732, 7.3739, 7.3745, 7.3742, 7.3742, 7.374, 7.3746, 7.3744, 7.3751, 7.3759, 7.3756, 7.3753, 7.375, 7.3747, 7.3753, 7.3749, 7.3755, 7.376, 7.3758, 7.3754, 7.3752, 7.375, 7.3746, 7.3752, 7.3748, 7.3745, 7.3743, 7.3749, 7.3737, 7.3734, 7.373, 7.3736, 7.3742, 7.3739, 7.3737, 7.3754, 7.3752, 7.375, 7.3753, 7.3751, 7.3748, 7.3744, 7.3746, 7.3743, 7.374, 7.3736, 7.3743, 7.375, 7.3747, 7.3745, 7.3741, 7.374, 7.3736, 7.3738, 7.3735, 7.3732, 7.3731, 7.3727, 7.3728, 7.3724, 7.3723, 7.374, 7.3737, 7.3727, 7.3727, 7.3742, 7.3749, 7.3745, 7.3741, 7.3738, 7.3736, 7.3734, 7.3731, 7.3739, 7.3748, 7.3756, 7.3753, 7.3761, 7.3758, 7.3755, 7.3752, 7.376, 7.3759, 7.3755, 7.3762, 7.3759, 7.3766, 7.3762, 7.3759, 7.3757, 7.3763, 7.3759, 7.3757, 7.3755, 7.3751, 7.3749, 7.3756, 7.3753, 7.3749, 7.3745, 7.3752, 7.3749, 7.3755, 7.3752, 7.3748, 7.3755, 7.3761, 7.3767, 7.3764, 7.3761, 7.3791, 7.3787, 7.3786, 7.3792, 7.3788, 7.3784, 7.378, 7.3776, 7.3772, 7.3768, 7.3775, 7.3773, 7.3779, 7.38, 7.3806, 7.3812, 7.381, 7.3808, 7.3807, 7.3814, 7.3811, 7.3809, 7.3805, 7.3801, 7.3807, 7.3803, 7.3799, 7.3795, 7.3801, 7.3811, 7.3807, 7.3803, 7.3801, 7.3807, 7.3815, 7.3806, 7.3812, 7.3808, 7.3806, 7.3802, 7.3798, 7.3794, 7.3791, 7.3788, 7.3788, 7.3794, 7.3796, 7.3797, 7.3794, 7.3792, 7.3799, 7.3795, 7.3791, 7.3798, 7.3796, 7.3792, 7.3788, 7.3787, 7.3786, 7.3785, 7.3782, 7.3779, 7.3775, 7.3771, 7.3768, 7.3765, 7.3761, 7.3768, 7.3765, 7.3762, 7.3758, 7.3756, 7.3754, 7.3792, 7.3815, 7.3812, 7.3809, 7.3805, 7.3803, 7.3792, 7.3788, 7.3788, 7.3784, 7.3783, 7.3781, 7.3779, 7.3775, 7.3784, 7.3792, 7.3798, 7.3797, 7.3785, 7.3801, 7.3799, 7.3806, 7.3803, 7.3809, 7.3815, 7.3821, 7.3817, 7.3813, 7.3819, 7.3825, 7.3821, 7.3817, 7.3813, 7.3812, 7.3808, 7.3804, 7.38, 7.3796, 7.3794, 7.379, 7.3786, 7.3802, 7.3829, 7.3826, 7.3824, 7.382, 7.3816, 7.3822, 7.382, 7.3818, 7.3817, 7.3815, 7.3812, 7.3809, 7.3816, 7.3812, 7.382, 7.3816, 7.3815, 7.3814, 7.3822, 7.3829, 7.3826, 7.3834, 7.3832, 7.3828, 7.3837, 7.3833, 7.383, 7.3827, 7.3823, 7.3811, 7.3799, 7.3806, 7.3794, 7.3792, 7.3799, 7.3796, 7.3793, 7.3789, 7.3786, 7.3786, 7.3784, 7.3783, 7.3781, 7.3779, 7.3776, 7.3774, 7.3772, 7.3768, 7.3765, 7.3763, 7.376, 7.3748, 7.3745, 7.3742, 7.3741, 7.3738, 7.3736, 7.3734, 7.373, 7.3737, 7.3734, 7.3732, 7.3729, 7.3718, 7.3714, 7.3721, 7.3718, 7.3715, 7.3713, 7.3709, 7.3705, 7.3715, 7.3712, 7.3709, 7.3714, 7.3713, 7.3711, 7.3708, 7.3704, 7.3701, 7.3699, 7.3706, 7.3713, 7.372, 7.3717, 7.3723, 7.372, 7.3717, 7.3716, 7.3722, 7.3722, 7.3721, 7.3744, 7.3741, 7.3741, 7.3739, 7.3737, 7.3734, 7.3731, 7.3719, 7.3717, 7.3715, 7.3722, 7.3728, 7.3726, 7.3722, 7.3718, 7.3732, 7.3729, 7.3735, 7.3733, 7.3729, 7.3735, 7.3731, 7.3728, 7.3724, 7.372, 7.3717, 7.3714, 7.3711, 7.3707, 7.3705, 7.3721, 7.3718, 7.3715, 7.3713, 7.3711, 7.3708, 7.3705, 7.3706, 7.3712, 7.3701, 7.3698, 7.3694, 7.3701, 7.3698, 7.3695, 7.3701, 7.3698, 7.3694, 7.3691, 7.3689, 7.3686, 7.3683, 7.368, 7.3679, 7.3676, 7.3693, 7.3689, 7.3687, 7.3693, 7.3691, 7.3688, 7.3716, 7.3725, 7.3722, 7.3719, 7.3726, 7.3723, 7.372, 7.3736, 7.3733, 7.373, 7.3727, 7.3725, 7.3722, 7.3718, 7.3714, 7.3711, 7.3708, 7.3705, 7.3711, 7.3708, 7.3704, 7.3702, 7.3698, 7.3695, 7.3693, 7.3699, 7.3705, 7.3702, 7.3708, 7.3707, 7.3703, 7.3709, 7.3715, 7.3711, 7.3707, 7.3704, 7.3702, 7.37, 7.3708, 7.3713, 7.3713, 7.3715, 7.3721, 7.3718, 7.3718, 7.3716, 7.3713, 7.3719, 7.3715, 7.3731, 7.3731, 7.3728, 7.3726, 7.3723, 7.373, 7.3726, 7.3722, 7.3719, 7.3716, 7.3715, 7.3712, 7.3708, 7.3706, 7.3702, 7.37, 7.3697, 7.3693, 7.3699, 7.3695, 7.3693, 7.37, 7.3698, 7.3698, 7.3694, 7.3691, 7.3687, 7.3693, 7.3699, 7.3705, 7.3714, 7.3711, 7.3699, 7.3696, 7.3693, 7.369, 7.3698, 7.3702, 7.3705, 7.3708, 7.3707, 7.3704, 7.3702, 7.3699, 7.3695, 7.3691, 7.3688, 7.3695, 7.3692, 7.3689, 7.3695, 7.3692, 7.3689, 7.3687, 7.3684, 7.3691, 7.3689, 7.3685, 7.3684, 7.369, 7.3687, 7.3683, 7.368, 7.3676, 7.3672, 7.3669, 7.3666, 7.3662, 7.3662, 7.3659, 7.3656, 7.3653, 7.3651, 7.3649, 7.3646, 7.3643, 7.3641, 7.3638, 7.3636, 7.3634, 7.3631, 7.3629, 7.3625, 7.3625, 7.3623, 7.3619, 7.3617, 7.3614, 7.3613, 7.361, 7.3616, 7.3614, 7.361, 7.3607, 7.365, 7.3648, 7.3652, 7.3651, 7.3648, 7.3637, 7.3643, 7.3639, 7.3639, 7.3637, 7.3643, 7.364, 7.364, 7.3646, 7.3642, 7.3639, 7.3636, 7.3632, 7.3629, 7.3626, 7.3623, 7.362, 7.3617, 7.3616, 7.3613, 7.361, 7.3607, 7.3604, 7.3638, 7.3627, 7.3652, 7.3648, 7.3645, 7.3643, 7.364, 7.3646, 7.3642, 7.3639, 7.3645, 7.3654, 7.3652, 7.3667, 7.3665, 7.3662, 7.3658, 7.366, 7.3659, 7.3665, 7.3663, 7.3659, 7.3665, 7.3662, 7.3658, 7.3655, 7.3653, 7.3659, 7.3657, 7.3655, 7.3684, 7.3681, 7.3678, 7.369, 7.3687, 7.3685, 7.3682, 7.3679, 7.3676, 7.3718, 7.3725, 7.3722, 7.3721, 7.3727, 7.3728, 7.373, 7.3726, 7.3732, 7.3737, 7.3733, 7.3729, 7.3725, 7.3743, 7.3749, 7.3746, 7.3744, 7.3741, 7.3747, 7.3744, 7.374, 7.3746, 7.3743, 7.374, 7.3738, 7.3738, 7.3735, 7.374, 7.3737, 7.3734, 7.374, 7.3746, 7.3752, 7.3758, 7.3755, 7.3761, 7.3767, 7.3764, 7.3753, 7.3759, 7.3756, 7.3762, 7.3768, 7.3773, 7.377, 7.3767, 7.3765, 7.377, 7.3776, 7.3773, 7.3777, 7.3805, 7.3817, 7.3816, 7.3813, 7.3802, 7.3799, 7.3829, 7.3825, 7.3831, 7.3834, 7.3832, 7.3829, 7.3826, 7.3822, 7.3819, 7.3816, 7.3805, 7.3802, 7.38, 7.3797, 7.3794, 7.3791, 7.3806, 7.3812, 7.3818, 7.3816, 7.3822, 7.3819, 7.3825, 7.3822, 7.382, 7.3818, 7.3815, 7.3821, 7.3817, 7.3808, 7.3806, 7.3824, 7.3815, 7.3811, 7.3808, 7.3814, 7.3813, 7.381, 7.3812, 7.3818, 7.3815, 7.3829, 7.3835, 7.3834, 7.3831, 7.3828, 7.3834, 7.3831, 7.383, 7.3827, 7.3824, 7.383, 7.3827, 7.3825, 7.3823, 7.3829, 7.3829, 7.3836, 7.3842, 7.384, 7.3837, 7.3834, 7.384, 7.3839, 7.3837, 7.3843, 7.3886, 7.3884, 7.3882, 7.388, 7.3886, 7.3883, 7.388, 7.3877, 7.3875, 7.3873, 7.387, 7.3867, 7.3865, 7.3854, 7.3853, 7.385, 7.3857, 7.3854, 7.3851, 7.3847, 7.3843, 7.3841, 7.3856, 7.3855, 7.3852, 7.3855, 7.3852, 7.3858, 7.3855, 7.386, 7.3858, 7.3859, 7.3864, 7.386, 7.3867, 7.3864, 7.3869, 7.3875, 7.3873, 7.387, 7.3879, 7.3876, 7.3873, 7.3871, 7.3871, 7.3868, 7.3868, 7.3876, 7.3883, 7.389, 7.3888, 7.3889, 7.3886, 7.3887, 7.3884, 7.3882, 7.3881, 7.3881, 7.3887, 7.3885, 7.3882, 7.3879, 7.3876, 7.3882, 7.3879, 7.3877, 7.3883, 7.3899, 7.3888, 7.3903, 7.3901, 7.3902, 7.3899, 7.3895, 7.3901, 7.3898, 7.3896, 7.3904, 7.3902, 7.39, 7.3897, 7.3903, 7.3892, 7.3897, 7.3893, 7.389, 7.3941, 7.3938, 7.3934, 7.3932, 7.3922, 7.392, 7.3917, 7.3915, 7.3914, 7.3931, 7.3924, 7.3925, 7.3933, 7.3935, 7.3933, 7.3931, 7.3937, 7.3943, 7.3972, 7.3969, 7.3967, 7.3964, 7.3961, 7.3959, 7.3965, 7.3954, 7.3952, 7.3968, 7.3965, 7.3963, 7.3961, 7.3958, 7.3954, 7.3952, 7.3951, 7.3949, 7.3945, 7.3948, 7.3945, 7.3942, 7.3941, 7.3947, 7.3953, 7.395, 7.3947, 7.3944, 7.395, 7.3955, 7.3961, 7.3958, 7.3955, 7.3953, 7.3958, 7.3955, 7.3952, 7.396, 7.3957, 7.3963, 7.3961, 7.3966, 7.3963, 7.3962, 7.3968, 7.3965, 7.3962, 7.3959, 7.3956, 7.3967, 7.3966, 7.3963, 7.3961, 7.3958, 7.3955, 7.3952, 7.3949, 7.3951, 7.395, 7.3947, 7.3946, 7.3944, 7.3949, 7.3948, 7.3946, 7.3943, 7.3941, 7.394, 7.3937, 7.3934, 7.3933, 7.393, 7.393, 7.3927, 7.3924, 7.3921, 7.3918, 7.3915, 7.3921, 7.3921, 7.3919, 7.3917, 7.3923, 7.3929, 7.3926, 7.3924, 7.3921, 7.3918, 7.3916, 7.3915, 7.3915, 7.3921, 7.392, 7.3919, 7.3917, 7.3924, 7.3921, 7.3918, 7.3924, 7.3921, 7.3918, 7.3915, 7.3912, 7.391, 7.3916, 7.3914, 7.3911, 7.3908, 7.3913, 7.391, 7.3907, 7.3904, 7.3902, 7.3899, 7.3888, 7.3884, 7.3882, 7.3879, 7.3876, 7.3873, 7.387], '192.168.122.119': [5.4803, 5.3959, 5.6119, 5.8081, 5.7172, 5.6548, 5.6897, 5.6831, 5.6415, 5.6804, 5.6804, 5.6532, 5.755, 6.1236, 6.1351, 6.2696, 6.2219, 6.1756, 6.1473, 6.1197, 6.1019, 6.3312, 6.5377, 6.5217, 6.4741, 6.6463, 6.4207, 6.3825, 6.351, 6.3347, 6.4758, 6.4584, 6.4267, 6.3997, 6.3698, 6.3428, 6.3945, 6.3991, 6.3798, 6.355, 6.3316, 6.3097, 6.2888, 6.3921, 6.3674, 6.3637, 6.3454, 6.3277, 6.3306, 6.4365, 6.414, 6.3993, 6.3941, 6.7084, 6.7868, 6.7619, 6.7746, 6.8437, 6.8199, 6.718, 6.6957, 6.6075, 6.5891, 6.5819, 6.6538, 6.6319, 6.614, 6.595, 6.656, 6.6393, 6.6204, 6.6791, 6.6633, 6.6528, 6.6407, 6.5622, 6.5484, 6.5363, 6.5234, 6.5741, 6.5627, 6.6179, 6.7417, 6.8636, 6.846, 6.8921, 6.8929, 6.8803, 6.9311, 6.9224, 6.9116, 6.8982, 6.9427, 6.947, 7.0471, 7.0342, 7.026, 7.0131, 7.0569, 7.0411, 7.0239, 7.0128, 7.0015, 7.0404, 7.1169, 7.1058, 7.0889, 7.1088, 7.0921, 7.0412, 7.0497, 7.0501, 7.0429, 7.0333, 7.0637, 7.1402, 7.131, 7.1229, 7.1175, 7.1066, 7.1042, 7.0909, 7.1644, 7.1129, 7.0995, 7.1758, 7.1608, 7.151, 7.1366, 7.1438, 7.171, 7.1212, 7.1279, 7.1206, 7.1123, 7.2156, 7.2416, 7.2704, 7.275, 7.2691, 7.2705, 7.2569, 7.2509, 7.2443, 7.3481, 7.3347, 7.3366, 7.3248, 7.3966, 7.3829, 7.4001, 7.3878, 7.3769, 7.3644, 7.3866, 7.408, 7.4311, 7.4226, 7.4419, 7.4343, 7.4218, 7.4099, 7.4303, 7.419, 7.439, 7.4335, 7.4243, 7.445, 7.4359, 7.4277, 7.4228, 7.4479, 7.4392, 7.4612, 7.4513, 7.4402, 7.433, 7.4222, 7.4116, 7.4273, 7.4171, 7.4109, 7.4003, 7.4177, 7.4387, 7.4345, 7.4229, 7.4134, 7.4315, 7.4375, 7.4273, 7.4166, 7.405, 7.4203, 7.4389, 7.4285, 7.4461, 7.4359, 7.4559, 7.473, 7.4627, 7.4535, 7.4435, 7.4327, 7.4233, 7.438, 7.4529, 7.4423, 7.4332, 7.423, 7.4133, 7.3817, 7.3734, 7.3897, 7.3804, 7.373, 7.3692, 7.3615, 7.3543, 7.3449, 7.3382, 7.3319, 7.3272, 7.3205, 7.3369, 7.3346, 7.3254, 7.3415, 7.3332, 7.3731, 7.364, 7.3548, 7.3709, 7.362, 7.3545, 7.3462, 7.3384, 7.3994, 7.4139, 7.4152, 7.4296, 7.4439, 7.4361, 7.4288, 7.4556, 7.4893, 7.4809, 7.4935, 7.4859, 7.4772, 7.4715, 7.4857, 7.4833, 7.4834, 7.477, 7.4706, 7.463, 7.4604, 7.4718, 7.4641, 7.4779, 7.4704, 7.4669, 7.4609, 7.4536, 7.4472, 7.4599, 7.4564, 7.4494, 7.4632, 7.4772, 7.4842, 7.5011, 7.4941, 7.4868, 7.4817, 7.4781, 7.471, 7.4633, 7.4765, 7.5289, 7.5242, 7.5231, 7.5622, 7.5904, 7.5853, 7.579, 7.5711, 7.5666, 7.5426, 7.5633, 7.5585, 7.5596, 7.5586, 7.5393, 7.5321, 7.5267, 7.5261, 7.5228, 7.5162, 7.5102, 7.5032, 7.5143, 7.5255, 7.5195, 7.5141, 7.5086, 7.5028, 7.5337, 7.546, 7.5399, 7.5341, 7.5285, 7.5522, 7.545, 7.5421, 7.5353, 7.5291, 7.5231, 7.5173, 7.5135, 7.5077, 7.5036, 7.4993, 7.4934, 7.4881, 7.5088, 7.5179, 7.5276, 7.5219, 7.5315, 7.5274, 7.5233, 7.5177, 7.5275, 7.5397, 7.5489, 7.543, 7.5431, 7.5387, 7.5345, 7.5295, 7.5233, 7.519, 7.5157, 7.5451, 7.5408, 7.535, 7.5285, 7.5388, 7.5323, 7.5261, 7.5222, 7.5161, 7.5112, 7.5057, 7.5013, 7.4955, 7.4898, 7.4704, 7.4648, 7.4604, 7.4964, 7.4903, 7.4846, 7.4657, 7.46, 7.454, 7.4631, 7.4581, 7.453, 7.4477, 7.4417, 7.4373, 7.4329, 7.4297, 7.4243, 7.4334, 7.428, 7.4371, 7.4319, 7.4265, 7.4215, 7.4165, 7.4126, 7.4076, 7.4039, 7.3985, 7.3934, 7.3882, 7.3852, 7.3939, 7.4027, 7.4256, 7.4206, 7.4243, 7.4192, 7.4201, 7.4292, 7.4264, 7.4226, 7.4207, 7.4162, 7.4111, 7.4057, 7.4413, 7.4372, 7.4337, 7.4422, 7.4376, 7.4328, 7.428, 7.4237, 7.4222, 7.4177, 7.4127, 7.4578, 7.4547, 7.4496, 7.4339, 7.4417, 7.4379, 7.4353, 7.4303, 7.4266, 7.4345, 7.4423, 7.4373, 7.4326, 7.4276, 7.4232, 7.4319, 7.428, 7.4243, 7.4267, 7.4345, 7.4419, 7.4373, 7.4327, 7.4283, 7.431, 7.4263, 7.4226, 7.4176, 7.4247, 7.4202, 7.416, 7.4115, 7.407, 7.4022, 7.4105, 7.4183, 7.4029, 7.3997, 7.3962, 7.4055, 7.4016, 7.397, 7.3943, 7.391, 7.3869, 7.3829, 7.3781, 7.3737, 7.3693, 7.3768, 7.3729, 7.3695, 7.3674, 7.3631, 7.3664, 7.429, 7.4362, 7.432, 7.4391, 7.4466, 7.4437, 7.4394, 7.435, 7.4328, 7.4304, 7.4261, 7.4219, 7.4196, 7.4277, 7.4253, 7.4223, 7.4183, 7.4254, 7.4213, 7.4285, 7.4255, 7.4217, 7.4179, 7.425, 7.422, 7.4184, 7.4254, 7.4324, 7.4391, 7.4459, 7.4528, 7.4711, 7.4886, 7.4855, 7.4816, 7.4884, 7.4845, 7.4911, 7.4975, 7.5041, 7.5075, 7.5041, 7.5213, 7.5078, 7.5174, 7.5143, 7.5322, 7.5282, 7.5275, 7.524, 7.5205, 7.5174, 7.516, 7.5317, 7.5311, 7.5278, 7.5263, 7.5367, 7.5379, 7.5347, 7.5348, 7.5417, 7.5409, 7.5374, 7.5243, 7.5204, 7.5163, 7.5135, 7.52, 7.5176, 7.5496, 7.5462, 7.5423, 7.5488, 7.5467, 7.5428, 7.5407, 7.539, 7.5451, 7.5525, 7.5502, 7.5474, 7.5435, 7.5407, 7.5465, 7.544, 7.5402, 7.5278, 7.5339, 7.5407, 7.5472, 7.5432, 7.5399, 7.5455, 7.5513, 7.5686, 7.5742, 7.5701, 7.5663, 7.5627, 7.56, 7.5568, 7.5544, 7.5515, 7.5494, 7.5465, 7.5523, 7.5489, 7.5466, 7.5431, 7.5486, 7.5459, 7.543, 7.5395, 7.5279, 7.5243, 7.5204, 7.5177, 7.5153, 7.5121, 7.5185, 7.5147, 7.5114, 7.5173, 7.514, 7.5206, 7.5171, 7.5162, 7.5125, 7.5092, 7.4978, 7.4971, 7.4938, 7.4997, 7.4965, 7.5017, 7.5075, 7.5039, 7.5094, 7.5069, 7.5032, 7.4998, 7.5109, 7.5081, 7.5047, 7.503, 7.5134, 7.5187, 7.5276, 7.5275, 7.524, 7.5296, 7.5354, 7.5499, 7.5557, 7.5609, 7.5574, 7.5548, 7.5537, 7.5589, 7.5556, 7.5607, 7.5514, 7.5561, 7.5537, 7.5647, 7.5704, 7.5669, 7.5638, 7.5615, 7.5681, 7.5652, 7.5618, 7.566, 7.5629, 7.5677, 7.565, 7.5622, 7.5587, 7.5632, 7.5607, 7.5573, 7.5538, 7.5526, 7.55, 7.5553, 7.5534, 7.5505, 7.5479, 7.5533, 7.5498, 7.5466, 7.5432, 7.5475, 7.5524, 7.549, 7.5519, 7.5486, 7.554, 7.5593, 7.5563, 7.5614, 7.5579, 7.5475, 7.5524, 7.5577, 7.5555, 7.5608, 7.5579, 7.555, 7.5523, 7.5499, 7.5479, 7.545, 7.5418, 7.5388, 7.5368, 7.5418, 7.5468, 7.5445, 7.5498, 7.5465, 7.551, 7.5571, 7.5555, 7.561, 7.5739, 7.581, 7.5777, 7.583, 7.5798, 7.5767, 7.579, 7.5786, 7.5761, 7.5729, 7.5697, 7.5674, 7.5644, 7.5654, 7.5971, 7.6011, 7.598, 7.5957, 7.6002, 7.6043, 7.6018, 7.5985, 7.5961, 7.601, 7.5978, 7.5957, 7.6003, 7.6051, 7.6024, 7.5996, 7.5974, 7.6097, 7.6069, 7.6051, 7.6023, 7.6071, 7.6048, 7.6028, 7.6001, 7.5977, 7.5952, 7.5934, 7.5909, 7.5877, 7.5846, 7.5815, 7.5785, 7.5698, 7.5667, 7.5706, 7.5752, 7.5756, 7.5795, 7.584, 7.5808, 7.5779, 7.5751, 7.572, 7.569, 7.5663, 7.5644, 7.5646, 7.5685, 7.5728, 7.5717, 7.5687, 7.5734, 7.5704, 7.569, 7.5661, 7.5631, 7.5602, 7.5578, 7.5554, 7.5526, 7.5568, 7.554, 7.5512, 7.5483, 7.5461, 7.5441, 7.5486, 7.5469, 7.5452, 7.5492, 7.5533, 7.5505, 7.5475, 7.546, 7.5434, 7.5475, 7.5448, 7.5747, 7.5719, 7.5693, 7.5667, 7.5641, 7.5683, 7.5726, 7.5703, 7.5748, 7.5795, 7.5771, 7.5754, 7.5737, 7.5715, 7.577, 7.5751, 7.5791, 7.5769, 7.575, 7.5729, 7.5731, 7.571, 7.5691, 7.5733, 7.565, 7.563, 7.5602, 7.558, 7.5631, 7.5675, 7.5718, 7.5834, 7.5818, 7.5796, 7.5768, 7.5743, 7.5785, 7.5827, 7.5741, 7.5779, 7.5849, 7.582, 7.6081, 7.6054, 7.6034, 7.6007, 7.5997, 7.5977, 7.5955, 7.5928, 7.5902, 7.5883, 7.5864, 7.5839, 7.5814, 7.5793, 7.5771, 7.5806, 7.5781, 7.602, 7.6004, 7.5983, 7.6027, 7.6005, 7.6042, 7.602, 7.5995, 7.6142, 7.6165, 7.6143, 7.6122, 7.6106, 7.608, 7.6117, 7.6126, 7.6105, 7.6082, 7.6119, 7.6093, 7.6073, 7.6053, 7.6026, 7.6003, 7.5982, 7.5958, 7.595, 7.5926, 7.5902, 7.5875, 7.5917, 7.5891, 7.587, 7.5922, 7.5964, 7.5944, 7.5983, 7.5968, 7.6006, 7.598, 7.5955, 7.5929, 7.5964, 7.5938, 7.5971, 7.59, 7.5874, 7.5849, 7.5825, 7.58, 7.5775, 7.5754, 7.573, 7.5706, 7.574, 7.5763, 7.5742, 7.5723, 7.5703, 7.5683, 7.5665, 7.5645, 7.5624, 7.5598, 7.5575, 7.5556, 7.5533, 7.5517, 7.5502, 7.5485, 7.5578, 7.5562, 7.5543, 7.5599, 7.5575, 7.561, 7.5592, 7.5573, 7.5548, 7.5595, 7.5572, 7.5549, 7.5586, 7.5563, 7.5595, 7.5641, 7.5621, 7.5597, 7.563, 7.5607, 7.5639, 7.5675, 7.5659, 7.5636, 7.5614, 7.5602, 7.5579, 7.5563, 7.5538, 7.5518, 7.5501, 7.5482, 7.5462, 7.5495, 7.5474, 7.5459, 7.5437, 7.5475, 7.5454, 7.5433, 7.547, 7.5507, 7.555, 7.553, 7.5508, 7.5484, 7.5462, 7.5439, 7.542, 7.5397, 7.5376, 7.5359, 7.5337, 7.5315, 7.5349, 7.5326, 7.5313, 7.5295, 7.5334, 7.5315, 7.5294, 7.5329, 7.5362, 7.5342, 7.5321, 7.5355, 7.5334, 7.5317, 7.5296, 7.5295, 7.5275, 7.5263, 7.5242, 7.5276, 7.5257, 7.5238, 7.5219, 7.5307, 7.5286, 7.5266, 7.525, 7.528, 7.5258, 7.5291, 7.5324, 7.5306, 7.5338, 7.5316, 7.5294, 7.5272, 7.5256, 7.5262, 7.524, 7.5281, 7.5213, 7.5193, 7.519, 7.5221, 7.5214, 7.5192, 7.5198, 7.5184, 7.5181, 7.5435, 7.5475, 7.5468, 7.5452, 7.5431, 7.5414, 7.5402, 7.5435, 7.5412, 7.5391, 7.5382, 7.5362, 7.5341, 7.5323, 7.5303, 7.5288, 7.5266, 7.5251, 7.523, 7.5212, 7.5241, 7.5221, 7.52, 7.5181, 7.5113, 7.5147, 7.5178, 7.5222, 7.5259, 7.5247, 7.5282, 7.5315, 7.5296, 7.5332, 7.5367, 7.5346, 7.5328, 7.5358, 7.5337, 7.5316, 7.5339, 7.5322, 7.5311, 7.529, 7.5318, 7.5302, 7.5331, 7.5285, 7.5265, 7.53, 7.533, 7.5309, 7.5293, 7.5276, 7.5256, 7.5287, 7.5274, 7.5302, 7.5285, 7.5313, 7.5293, 7.5272, 7.5252, 7.5232, 7.5213, 7.5217, 7.5197, 7.5176, 7.5156, 7.5139, 7.5119, 7.5106, 7.5138, 7.5118, 7.51, 7.5084, 7.5119, 7.5103, 7.5093, 7.5072, 7.5052, 7.5033, 7.5013, 7.5109, 7.5136, 7.5116, 7.5096, 7.5037, 7.5017, 7.5045, 7.503, 7.5013, 7.4997, 7.5032, 7.5019, 7.5001, 7.5032, 7.5016, 7.5005, 7.4987, 7.5018, 7.5, 7.4983, 7.5014, 7.5002, 7.5035, 7.5025, 7.5021, 7.501, 7.5045, 7.5073, 7.5105, 7.5087, 7.5118, 7.5101, 7.5084, 7.5067, 7.5051, 7.4992, 7.4975, 7.4969, 7.5004, 7.4988, 7.5019, 7.496, 7.4992, 7.4977, 7.5006, 7.5036, 7.5067, 7.5064, 7.5066, 7.5051, 7.5077, 7.5063, 7.5047, 7.5032, 7.5015, 7.4999, 7.4985, 7.4972, 7.5056, 7.5044, 7.5219, 7.5251, 7.5237, 7.5224, 7.5209, 7.5341, 7.5424, 7.5457, 7.5443, 7.5423, 7.5407, 7.539, 7.5374, 7.5359, 7.5345, 7.5334, 7.5317, 7.5303, 7.5284, 7.5274, 7.5257, 7.5238, 7.5219, 7.5204, 7.523, 7.5216, 7.5242, 7.5226, 7.5215, 7.5197, 7.5223, 7.5209, 7.5189, 7.517, 7.5154, 7.514, 7.5131, 7.5119, 7.5103, 7.5088, 7.5076, 7.5104, 7.5132, 7.5294, 7.5278, 7.5305, 7.5288, 7.5315, 7.5259, 7.5438, 7.5483, 7.5469, 7.5468, 7.5456, 7.5489, 7.5471, 7.5457, 7.5443, 7.547, 7.548, 7.5463, 7.5449, 7.5479, 7.5461, 7.5488, 7.5475, 7.5462, 7.5449, 7.5475, 7.5456, 7.548, 7.5466, 7.5452, 7.5478, 7.5463, 7.549, 7.5473, 7.5588, 7.5576, 7.5563, 7.555, 7.5493, 7.5482, 7.547, 7.5461, 7.5443, 7.5487, 7.5518, 7.5509, 7.5494, 7.5522, 7.5518, 7.5603, 7.5585, 7.5584, 7.563, 7.5615, 7.5602, 7.5586, 7.5613, 7.5595, 7.5662, 7.5648, 7.5675, 7.5701, 7.5728, 7.571, 7.5699, 7.5685, 7.5677, 7.5659, 7.5642, 7.5627, 7.5614, 7.5602, 7.5588, 7.5575, 7.56, 7.5583, 7.5611, 7.5598, 7.5585, 7.5571, 7.5598, 7.5623, 7.5607, 7.5591, 7.5575, 7.5599, 7.5626, 7.5609, 7.5596, 7.558, 7.5649, 7.5637, 7.5627, 7.561, 7.5593, 7.5576, 7.556, 7.5551, 7.5534, 7.5573, 7.574, 7.5723, 7.5707, 7.5695, 7.5678, 7.5706, 7.5691, 7.5638, 7.5626, 7.5723, 7.5726, 7.5913, 7.5905, 7.5893, 7.5845, 7.583, 7.5817, 7.5854, 7.5879, 7.5826, 7.5809, 7.5796, 7.5784, 7.5767, 7.5752, 7.5737, 7.5723, 7.5706, 7.5654, 7.5644, 7.5628, 7.5611, 7.5599, 7.5586, 7.5569, 7.5553, 7.5578, 7.5563, 7.5551, 7.5576, 7.5598, 7.5586, 7.5572, 7.556, 7.559, 7.5578, 7.5564, 7.5589, 7.5572, 7.566, 7.5646, 7.5633, 7.566, 7.5683, 7.567, 7.5701, 7.5723, 7.5708, 7.5692, 7.5676, 7.566, 7.5644, 7.5667, 7.5658, 7.5689, 7.5675, 7.5661, 7.5647, 7.5632, 7.5616, 7.5639, 7.5622, 7.561, 7.5595, 7.5581, 7.5566, 7.5554, 7.554, 7.5524, 7.551, 7.5534, 7.5522, 7.5506, 7.5494, 7.5483, 7.5468, 7.5453, 7.5438, 7.5423, 7.5414, 7.5401, 7.5389, 7.5376, 7.5398, 7.5422, 7.5408, 7.5362, 7.5315, 7.5302, 7.5328, 7.5315, 7.534, 7.5328, 7.5353, 7.5337, 7.5326, 7.5323, 7.5344, 7.5332, 7.5316, 7.5304, 7.5288, 7.5279, 7.5265, 7.5249, 7.5236, 7.522, 7.5205, 7.523, 7.5216, 7.524, 7.5226, 7.5219, 7.5204, 7.5192, 7.5178, 7.5166, 7.5173, 7.5158, 7.5143, 7.5185, 7.517, 7.5155, 7.5198, 7.5205, 7.5194, 7.522, 7.5204, 7.5214, 7.52, 7.5262, 7.5289, 7.5273, 7.53, 7.5322, 7.5307, 7.5294, 7.5316, 7.5307, 7.533, 7.5316, 7.5304, 7.5325, 7.531, 7.5294, 7.529, 7.5275, 7.5299, 7.5398, 7.5384, 7.5374, 7.5362, 7.5348, 7.5334, 7.5326, 7.5314, 7.5299, 7.5287, 7.5311, 7.5334, 7.5358, 7.5345, 7.5368, 7.5391, 7.5467, 7.5455, 7.5478, 7.5463, 7.5491, 7.5479, 7.5535, 7.5519, 7.5505, 7.553, 7.552, 7.5511, 7.5496, 7.5521, 7.5541, 7.5561, 7.555, 7.5542, 7.5531, 7.5567, 7.5588, 7.5574, 7.5559, 7.5581, 7.5567, 7.5553, 7.554, 7.5495, 7.5449, 7.5435, 7.5434, 7.5455, 7.5448, 7.5469, 7.549, 7.5476, 7.5463, 7.5449, 7.5471, 7.5457, 7.5442, 7.5428, 7.5419, 7.5376, 7.5399, 7.5386, 7.5407, 7.5393, 7.5414, 7.5401, 7.5395, 7.5382, 7.5368, 7.5354, 7.5375, 7.5364, 7.5349, 7.5335, 7.5325, 7.531, 7.5332, 7.5354, 7.5373, 7.54, 7.5386, 7.5412, 7.5437, 7.5461, 7.5447, 7.5437, 7.5427, 7.5449, 7.5436, 7.5421, 7.5413, 7.5401, 7.5391, 7.538, 7.5403, 7.5404, 7.54, 7.5389, 7.5376, 7.5399, 7.5388, 7.5378, 7.5366, 7.5352, 7.534, 7.5327, 7.535, 7.5338, 7.5361, 7.5347, 7.5333, 7.5321, 7.535, 7.534, 7.5327, 7.5321, 7.5315, 7.5304, 7.5294, 7.5286, 7.5271, 7.526, 7.5281, 7.5283, 7.5272, 7.5262, 7.5266, 7.5256, 7.525, 7.5239, 7.5298, 7.5287, 7.5276, 7.5267, 7.5257, 7.5245, 7.5233, 7.5225, 7.5213, 7.5214, 7.5204, 7.5191, 7.5179, 7.517, 7.5162, 7.5156, 7.515, 7.517, 7.5156, 7.5153, 7.5143, 7.5132, 7.5118, 7.5105, 7.5096, 7.5083, 7.5074, 7.5066, 7.5069, 7.5055, 7.5047, 7.5036, 7.5026, 7.5045, 7.5031, 7.5018, 7.5037, 7.5034, 7.5022, 7.5009, 7.4996, 7.4983, 7.4971, 7.4958, 7.4973, 7.4961, 7.4984, 7.5003, 7.4997, 7.4984, 7.4971, 7.4992, 7.4979, 7.4966, 7.4956, 7.4946, 7.4934, 7.4921, 7.4908, 7.49, 7.489, 7.4911, 7.4913, 7.49, 7.489, 7.4891, 7.4877, 7.4866, 7.4858, 7.4846, 7.4835, 7.4821, 7.4839, 7.486, 7.488, 7.4867, 7.4853, 7.484, 7.4828, 7.4847, 7.4837, 7.4869, 7.4858, 7.4845, 7.4869, 7.4888, 7.4878, 7.4865, 7.4885, 7.4873, 7.4862, 7.4849, 7.4842, 7.483, 7.494, 7.4961, 7.4949, 7.4954, 7.4942, 7.493, 7.4888, 7.4876, 7.4866, 7.4859, 7.4849, 7.484, 7.4828, 7.4819, 7.4842, 7.4832, 7.4821, 7.4808, 7.4799, 7.4797, 7.4785, 7.4777, 7.4765, 7.4756, 7.4744, 7.4735, 7.4754, 7.4745, 7.4735, 7.4756, 7.4774, 7.4767, 7.4785, 7.4777, 7.4765, 7.4728, 7.4717, 7.4739, 7.4728, 7.4717, 7.4709, 7.4705, 7.4693, 7.4714, 7.4703, 7.4699, 7.4687, 7.4675, 7.4692, 7.468, 7.4701, 7.4721, 7.4743, 7.4798, 7.4815, 7.4835, 7.4852, 7.4811, 7.48, 7.4803, 7.4865, 7.4887, 7.4892, 7.4938, 7.4928, 7.498, 7.4972, 7.4961, 7.4951, 7.4942, 7.493, 7.4919, 7.4907, 7.4925, 7.4916, 7.4935, 7.4954, 7.4943, 7.4962, 7.495, 7.4939, 7.4927, 7.4915, 7.4933, 7.4921, 7.4921, 7.4911, 7.4988, 7.5009, 7.5001, 7.5023, 7.5076, 7.5064, 7.5084, 7.509, 7.5108, 7.5106, 7.5128, 7.5147, 7.5135, 7.5123, 7.5113, 7.5101, 7.5096, 7.5063, 7.5057, 7.5045, 7.5038, 7.5026, 7.5017, 7.5005, 7.4994, 7.4986, 7.4979, 7.4969, 7.4959, 7.4947, 7.4935, 7.4925, 7.4917, 7.4907, 7.4906, 7.4936, 7.493, 7.4918, 7.4962, 7.495, 7.4943, 7.4931, 7.492, 7.4939, 7.4927, 7.4921, 7.4958, 7.4975, 7.497, 7.4962, 7.4979, 7.4968, 7.4959, 7.4978, 7.4995, 7.4988, 7.4976, 7.4965, 7.4928, 7.4917, 7.4906, 7.4894, 7.4883, 7.4899, 7.489, 7.4879, 7.4867, 7.4886, 7.4878, 7.4896, 7.4941, 7.4929, 7.4917, 7.4906, 7.4896, 7.4914, 7.4903, 7.4892, 7.4881, 7.4901, 7.4892, 7.4911, 7.4931, 7.4922, 7.4938, 7.4932, 7.495, 7.4942, 7.4934, 7.4923, 7.4943, 7.4931, 7.4949, 7.4938, 7.493, 7.4902, 7.4921, 7.491, 7.4898, 7.4887, 7.4875, 7.4864, 7.4853, 7.4872, 7.489, 7.4909, 7.4901, 7.4892, 7.4884, 7.4879, 7.4869, 7.4858, 7.4846, 7.4844, 7.4834, 7.4823, 7.4847, 7.4865, 7.4854, 7.4877, 7.484, 7.4846, 7.4888, 7.4906, 7.4923, 7.4941, 7.493, 7.4946, 7.4935, 7.4924, 7.4912, 7.4902, 7.4893, 7.4882, 7.4877, 7.4866, 7.4855, 7.4845, 7.4833, 7.4852, 7.4842, 7.4831, 7.482, 7.4865, 7.4882, 7.487, 7.4859, 7.4851, 7.484, 7.483, 7.482, 7.4812, 7.4803, 7.4793, 7.4785, 7.4773, 7.4763, 7.4778, 7.477, 7.4762, 7.4751, 7.4741, 7.4736, 7.4755, 7.4747, 7.4738, 7.4756, 7.475, 7.4742, 7.4733, 7.4724, 7.4743, 7.4736, 7.473, 7.4695, 7.471, 7.4728, 7.4775, 7.4769, 7.4759, 7.475, 7.4741, 7.4732, 7.4747, 7.4766, 7.4755, 7.4773, 7.4763, 7.478, 7.4769, 7.4758, 7.4749, 7.4739, 7.4756, 7.4747, 7.4763, 7.4779, 7.4768, 7.4759, 7.475, 7.475, 7.4741, 7.4733, 7.4724, 7.4717, 7.4764, 7.4782, 7.4801, 7.4791, 7.4783, 7.4773, 7.4765, 7.4783, 7.4802, 7.4801, 7.4799, 7.4791, 7.4782, 7.4776, 7.4766, 7.4783, 7.4781, 7.4773, 7.4789, 7.4807, 7.4797, 7.4787, 7.4779, 7.4794, 7.481, 7.4799, 7.4815, 7.4808, 7.4798, 7.4764, 7.473, 7.4723, 7.4715, 7.4736, 7.473, 7.4721, 7.4712, 7.4709, 7.4701, 7.469, 7.4685, 7.4677, 7.4672, 7.4689, 7.468, 7.4672, 7.4665, 7.4661, 7.4653, 7.4647, 7.4637, 7.463, 7.4622, 7.4617, 7.4611, 7.467, 7.466, 7.4651, 7.4641, 7.4634, 7.4627, 7.4618, 7.4639, 7.4631, 7.4625, 7.4614, 7.4606, 7.4625, 7.4644, 7.4673, 7.4663, 7.4682, 7.4673, 7.4666, 7.4661, 7.4652, 7.4643, 7.4642, 7.4632, 7.4625, 7.4644, 7.4634, 7.4625, 7.4615, 7.4608, 7.4602, 7.4597, 7.4592, 7.4608, 7.4575, 7.4565, 7.4555, 7.4582, 7.4573, 7.4565, 7.4573, 7.4573, 7.4567, 7.4583, 7.4573, 7.4589, 7.4579, 7.4572, 7.4563, 7.4558, 7.4548, 7.4563, 7.4558, 7.455, 7.4542, 7.4539, 7.4529, 7.4519, 7.4512, 7.4502, 7.4519, 7.4518, 7.4535, 7.4528, 7.4518, 7.451, 7.4504, 7.4472, 7.4487, 7.4479, 7.447, 7.446, 7.4476, 7.4467, 7.446, 7.4453, 7.4443, 7.4434, 7.4427, 7.4419, 7.4411, 7.4401, 7.4418, 7.4409, 7.4438, 7.4438, 7.4416, 7.4407, 7.4401, 7.4392, 7.4383, 7.4375, 7.4368, 7.4361, 7.4351, 7.4341, 7.4332, 7.4348, 7.4341, 7.4356, 7.4346, 7.4387, 7.4381, 7.4399, 7.4417, 7.441, 7.4426, 7.4426, 7.4418, 7.4413, 7.4403, 7.4378, 7.4392, 7.4406, 7.4399, 7.4389, 7.4379, 7.4371, 7.4387, 7.4377, 7.4372, 7.4365, 7.4355, 7.4345, 7.4335, 7.4327, 7.4319, 7.4313, 7.4332, 7.4322, 7.4373, 7.4389, 7.4381, 7.4478, 7.4469, 7.4483, 7.4477, 7.4471, 7.4462, 7.4453, 7.4449, 7.4439, 7.4432, 7.4433, 7.4426, 7.4417, 7.4408, 7.4442, 7.4434, 7.4424, 7.444, 7.4435, 7.4449, 7.444, 7.4456, 7.4447, 7.4438, 7.4408, 7.4424, 7.4417, 7.4411, 7.4427, 7.4442, 7.4435, 7.4452, 7.4444, 7.4459, 7.4452, 7.4468, 7.4461, 7.4453, 7.4445, 7.444, 7.4437, 7.4455, 7.4472, 7.4467, 7.4459, 7.4453, 7.4445, 7.4437, 7.4428, 7.442, 7.4436, 7.4427, 7.4419, 7.4409, 7.4399, 7.439, 7.4404, 7.4394, 7.4384, 7.4375, 7.4415, 7.4407, 7.4399, 7.4392, 7.4382, 7.456, 7.4566, 7.4557, 7.455, 7.452, 7.449, 7.4481, 7.4472, 7.4465, 7.4608, 7.4599, 7.4591, 7.4585, 7.4576, 7.4592, 7.4582, 7.4575, 7.4566, 7.4582, 7.4598, 7.4647, 7.4638, 7.4632, 7.4624, 7.4639, 7.4632, 7.4647, 7.4639, 7.4635, 7.4626, 7.4617, 7.4607, 7.4598, 7.4589, 7.458, 7.4606, 7.4576, 7.4567, 7.4559, 7.4552, 7.4546, 7.4537, 7.453, 7.4545, 7.4559, 7.4552, 7.4543, 7.4538, 7.453, 7.4523, 7.4538, 7.4529, 7.452, 7.4518, 7.4515, 7.4509, 7.4501, 7.4494, 7.4486, 7.4477, 7.4468, 7.4459, 7.4455, 7.4446, 7.4493, 7.4488, 7.4512, 7.4487, 7.4502, 7.4507, 7.4528, 7.4551, 7.4542, 7.4535, 7.4526, 7.4518, 7.451, 7.4501, 7.4492, 7.4509, 7.45, 7.4515, 7.4505, 7.452, 7.4491, 7.4484, 7.4499, 7.449, 7.4484, 7.4499, 7.449, 7.4482, 7.4475, 7.4467, 7.4483, 7.4479, 7.4493, 7.4486, 7.4501, 7.4515, 7.4506, 7.4497, 7.4488, 7.4495, 7.449, 7.4481, 7.4495, 7.4512, 7.4525, 7.4539, 7.4532, 7.4523, 7.4515, 7.4574, 7.4568, 7.4559, 7.4554, 7.4548, 7.454, 7.4534, 7.4525, 7.4517, 7.4508, 7.4523, 7.4538, 7.4531, 7.4525, 7.4516, 7.4507, 7.4502, 7.4493, 7.4485, 7.4476, 7.4469, 7.4483, 7.4475, 7.4466, 7.4457, 7.4449, 7.444, 7.4456, 7.447, 7.4485, 7.4499, 7.449, 7.4483, 7.4474, 7.4468, 7.4481, 7.4472, 7.4463, 7.4479, 7.4492, 7.4486, 7.4477, 7.4468, 7.4508, 7.4521, 7.4513, 7.4507, 7.4523, 7.4514, 7.4508, 7.4523, 7.4515, 7.4507, 7.4498, 7.4491, 7.4483, 7.4474, 7.4469, 7.4461, 7.4474, 7.4467, 7.4464, 7.4458, 7.4452, 7.4444, 7.4437, 7.445, 7.4443, 7.4434, 7.4446, 7.446, 7.449, 7.4482, 7.4473, 7.4489, 7.4481, 7.4473, 7.4465, 7.4481, 7.4475, 7.4467, 7.4459, 7.445, 7.4464, 7.4463, 7.4456, 7.4451, 7.4423, 7.4416, 7.443, 7.4424, 7.4416, 7.4408, 7.44, 7.4391, 7.4383, 7.4375, 7.4389, 7.4383, 7.4397, 7.441, 7.4401, 7.4394, 7.4409, 7.4423, 7.4421, 7.4413, 7.4428, 7.4421, 7.4413, 7.4407, 7.4421, 7.4415, 7.441, 7.4403, 7.4417, 7.4411, 7.4404, 7.4398, 7.4391, 7.4383, 7.4375, 7.4388, 7.4382, 7.4374, 7.437, 7.4384, 7.4399, 7.4397, 7.439, 7.4383, 7.4376, 7.4391, 7.4406, 7.4399, 7.4394, 7.4386, 7.438, 7.4372, 7.4363, 7.4355, 7.4348, 7.4342, 7.435, 7.4343, 7.4335, 7.4327, 7.434, 7.4338, 7.433, 7.4322, 7.4335, 7.4328, 7.432, 7.4312, 7.4304, 7.4298, 7.4292, 7.4286, 7.43, 7.4292, 7.4337, 7.4331, 7.4348, 7.434, 7.4354, 7.4346, 7.4361, 7.4375, 7.4389, 7.4381, 7.4375, 7.4369, 7.4364, 7.4378, 7.4392, 7.4383, 7.4374, 7.4366, 7.4359, 7.4375, 7.4372, 7.4385, 7.4376, 7.4368, 7.436, 7.4354, 7.435, 7.4345, 7.4357, 7.4369, 7.4362, 7.4335, 7.4328, 7.4322, 7.432, 7.4293, 7.4285, 7.428, 7.4273, 7.4267, 7.4456, 7.4467, 7.4461, 7.4468, 7.446, 7.4452, 7.4466, 7.4476, 7.445, 7.4442, 7.4437, 7.4431, 7.4424, 7.4417, 7.4409, 7.4403, 7.4416, 7.4431, 7.4423, 7.4415, 7.4407, 7.4399, 7.4391, 7.4404, 7.4396, 7.441, 7.4423, 7.4415, 7.4407, 7.4401, 7.4394, 7.4387, 7.4382, 7.4376, 7.437, 7.4363, 7.4356, 7.4348, 7.4344, 7.4337, 7.4329, 7.4321, 7.4333, 7.4347, 7.4339, 7.4333, 7.4326, 7.4339, 7.4354, 7.4346, 7.4341, 7.4334, 7.4329, 7.439, 7.4403, 7.4399, 7.4373, 7.4385, 7.4377, 7.439, 7.4403, 7.4397, 7.4389, 7.4385, 7.4399, 7.4392, 7.4385, 7.4398, 7.4372, 7.4375, 7.4367, 7.4363, 7.4357, 7.4351, 7.4343, 7.4355, 7.4369, 7.4363, 7.4356, 7.435, 7.4381, 7.4373, 7.4365, 7.4357, 7.4371, 7.4363, 7.4377, 7.437, 7.4364, 7.4356, 7.4348, 7.434, 7.4354, 7.4372, 7.4389, 7.4414, 7.4467, 7.4445, 7.4438, 7.4412, 7.4386, 7.438, 7.4372, 7.4375, 7.4367, 7.4359, 7.4351, 7.4344, 7.4387, 7.44, 7.4392, 7.4389, 7.4381, 7.4393, 7.4387, 7.44, 7.4413, 7.4406, 7.4424, 7.4417, 7.4409, 7.4422, 7.4417, 7.441, 7.4402, 7.4394, 7.4389, 7.4381, 7.4377, 7.437, 7.4362, 7.4354, 7.4368, 7.4361, 7.4373, 7.4365, 7.4361, 7.4355, 7.4348, 7.4341, 7.4335, 7.4329, 7.4323, 7.4316, 7.4309, 7.4305, 7.4319, 7.4313, 7.4306, 7.43, 7.4293, 7.4286, 7.4279, 7.4276, 7.4269, 7.4263, 7.4255, 7.4266, 7.426, 7.4255, 7.425, 7.4243, 7.4235, 7.4228, 7.422, 7.4214, 7.4227, 7.4219, 7.4212, 7.4204, 7.42, 7.4213, 7.4303, 7.4297, 7.4289, 7.4281, 7.4274, 7.4287, 7.4301, 7.4295, 7.429, 7.4283, 7.4276, 7.4289, 7.4302, 7.4295, 7.4288, 7.4301, 7.4315, 7.4326, 7.4339, 7.4332, 7.4326, 7.4378, 7.437, 7.4362, 7.4355, 7.4351, 7.4344, 7.4356, 7.4352, 7.4364, 7.4376, 7.4372, 7.4365, 7.4357, 7.4351, 7.4345, 7.4341, 7.4335, 7.4352, 7.4345, 7.437, 7.4362, 7.4356, 7.4368, 7.4362, 7.4356, 7.4349, 7.4342, 7.4337, 7.4332, 7.4325, 7.4319, 7.4312, 7.4305, 7.432, 7.4317, 7.4312, 7.4287, 7.43, 7.4315, 7.4307, 7.4282, 7.4294, 7.4288, 7.4283, 7.4276, 7.4269, 7.4262, 7.4257, 7.427, 7.4264, 7.4256, 7.427, 7.4262, 7.4259, 7.4252, 7.4264, 7.4275, 7.4267, 7.4279, 7.4274, 7.4287, 7.4299, 7.4286, 7.4281, 7.4292, 7.4285, 7.4298, 7.429, 7.4284, 7.4278, 7.4291, 7.429, 7.4284, 7.4279, 7.4298, 7.4292, 7.4286, 7.4278, 7.427, 7.4264, 7.4256, 7.4248, 7.4241, 7.4234, 7.4256, 7.4268, 7.426, 7.4254, 7.4248, 7.4261, 7.4254, 7.4263, 7.4285, 7.4297, 7.4291, 7.4286, 7.4289, 7.4282, 7.4275, 7.4267, 7.4268, 7.426, 7.4271, 7.4264, 7.4275, 7.4268, 7.4263, 7.4259, 7.4252, 7.4246, 7.4257, 7.4249, 7.4241, 7.4252, 7.4245, 7.4257, 7.4251, 7.4263, 7.4256, 7.4252, 7.4246, 7.4241, 7.4236, 7.4251, 7.4263, 7.4275, 7.4268, 7.4261, 7.4254, 7.425, 7.4242, 7.4235, 7.4232, 7.4227, 7.4249, 7.4261, 7.4254, 7.4266, 7.4258, 7.4251, 7.4263, 7.4256, 7.4268, 7.4264, 7.4258, 7.4251, 7.4244, 7.422, 7.4213, 7.4208, 7.4201, 7.4213, 7.4189, 7.4184, 7.4196, 7.4208, 7.4202, 7.4197, 7.4194, 7.4189, 7.4184, 7.4177, 7.4172, 7.4166, 7.4159, 7.4172, 7.4186, 7.4219, 7.4225, 7.4237, 7.4233, 7.4255, 7.4251, 7.4247, 7.4243, 7.4238, 7.425, 7.4245, 7.4239, 7.4232, 7.4243, 7.4236, 7.4229, 7.4224, 7.4217, 7.4211, 7.4205, 7.4201, 7.4194, 7.4205, 7.4198, 7.4191, 7.4184, 7.4179, 7.4173, 7.4169, 7.4165, 7.4159, 7.4154, 7.4149, 7.4144, 7.4156, 7.4149, 7.4142, 7.4136, 7.4133, 7.4126, 7.4119, 7.4114, 7.411, 7.4117, 7.4111, 7.4104, 7.4098, 7.4091, 7.4084, 7.4079, 7.4073, 7.4067, 7.406, 7.4053, 7.405, 7.4043, 7.4055, 7.4054, 7.4048, 7.4078, 7.4074, 7.4068, 7.4062, 7.4057, 7.4053, 7.4064, 7.4042, 7.4054, 7.4048, 7.4042, 7.4042, 7.4039, 7.4032, 7.4027, 7.402, 7.4035, 7.4046, 7.4039, 7.4034, 7.4055, 7.4051, 7.4046, 7.4064, 7.4057, 7.4055, 7.405, 7.4043, 7.4038, 7.4049, 7.4044, 7.4057, 7.4053, 7.405, 7.4043, 7.406, 7.4053, 7.4047, 7.4045, 7.404, 7.4033, 7.4028, 7.4026, 7.4019, 7.4012, 7.4024, 7.402, 7.4033, 7.4027, 7.402, 7.4013, 7.4026, 7.4022, 7.4015, 7.4027, 7.4023, 7.4017, 7.4014, 7.4026, 7.4038, 7.405, 7.4043, 7.4072, 7.4065, 7.4058, 7.4051, 7.4045, 7.4056, 7.405, 7.4046, 7.4039, 7.4032, 7.4025, 7.402, 7.4013, 7.4006, 7.3999, 7.4009, 7.402, 7.4031, 7.4042, 7.4035, 7.4028, 7.4023, 7.4017, 7.4011, 7.4004, 7.3997, 7.4008, 7.4001, 7.3996, 7.3993, 7.4004, 7.3997, 7.4008, 7.4001, 7.3996, 7.3991, 7.3986, 7.3979, 7.3983, 7.3997, 7.3975, 7.4005, 7.4, 7.4021, 7.4016, 7.4014, 7.4011, 7.4023, 7.4042, 7.4035, 7.4031, 7.4042, 7.4039, 7.4033, 7.4028, 7.4021, 7.4015, 7.4008, 7.4021, 7.4015, 7.4009, 7.4002, 7.3995, 7.3989, 7.3987, 7.3983, 7.3977, 7.397, 7.3964, 7.3975, 7.3991, 7.3985, 7.3979, 7.3973, 7.3969, 7.3963, 7.3958, 7.3969, 7.3965, 7.3968, 7.3962, 7.3972, 7.3965, 7.3975, 7.3969, 7.3965, 7.3959, 7.3971, 7.3965, 7.3959, 7.3953, 7.3947, 7.3941, 7.3935, 7.3928, 7.3921, 7.3918, 7.3911, 7.3907, 7.3901, 7.3897, 7.3891, 7.3902, 7.3897, 7.3891, 7.3886, 7.3898, 7.3894, 7.3904, 7.3898, 7.3891, 7.3886, 7.3881, 7.3908, 7.3921, 7.3931, 7.3927, 7.3923, 7.3916, 7.3912, 7.3941, 7.397, 7.3963, 7.3958, 7.3952, 7.3963, 7.3958, 7.3952, 7.3947, 7.3957, 7.395, 7.396, 7.3956, 7.3953, 7.3951, 7.3963, 7.3958, 7.3953, 7.3948, 7.3951, 7.3946, 7.394, 7.3934, 7.393, 7.3908, 7.3903, 7.3896, 7.3892, 7.3887, 7.3883, 7.3894, 7.3904, 7.3898, 7.3943, 7.3954, 7.3954, 7.3933, 7.3927, 7.392, 7.3917, 7.3911, 7.3906, 7.3902, 7.3913, 7.3907, 7.3903, 7.39, 7.3895, 7.3889, 7.3882, 7.3877, 7.3922, 7.3935, 7.3932, 7.3967, 7.3979, 7.3982, 7.3977, 7.3971, 7.3964, 7.396, 7.3953, 7.3947, 7.3943, 7.3938, 7.3949, 7.3942, 7.3953, 7.3947, 7.394, 7.3934, 7.3928, 7.3926, 7.3935, 7.3946, 7.3957, 7.3951, 7.3944, 7.3955, 7.3949, 7.3943, 7.3938, 7.3949, 7.396, 7.3954, 7.3948, 7.3927, 7.3931, 7.3925, 7.3938, 7.3932, 7.3928, 7.3923, 7.3919, 7.3929, 7.3923, 7.3917, 7.3911, 7.3921, 7.3915, 7.3921, 7.3933, 7.3926, 7.392, 7.3914, 7.3911, 7.3905, 7.3899, 7.392, 7.3915, 7.391, 7.3904, 7.3898, 7.3891, 7.3901, 7.3895, 7.3889, 7.3884, 7.388, 7.386, 7.3857, 7.3858, 7.3838, 7.3832, 7.3835, 7.3833, 7.3845, 7.3856, 7.3867, 7.387700000000001, 7.3871, 7.3865, 7.3859, 7.3868, 7.3848, 7.3857, 7.3856, 7.385, 7.3832, 7.3826, 7.3826, 7.3839, 7.3906, 7.3907, 7.3918, 7.3912, 7.3907, 7.391, 7.3923, 7.3917, 7.3932, 7.3926, 7.3936, 7.3929, 7.3925, 7.3919, 7.4002, 7.3997, 7.3993, 7.3989, 7.3985, 7.3979, 7.3974, 7.397, 7.3964, 7.3959, 7.3952, 7.3962, 7.3958, 7.3952, 7.3948, 7.3942, 7.3953, 7.3948, 7.3959, 7.3954, 7.3951, 7.3953, 7.397, 7.3965, 7.396, 7.3971, 7.397, 7.3964, 7.3991, 7.3985, 7.3979, 7.3974, 7.3969, 7.3949, 7.396, 7.397, 7.3966, 7.3963, 7.3957, 7.3951, 7.3965, 7.3961, 7.3971, 7.3966, 7.3995, 7.3975, 7.3969, 7.3963, 7.3958, 7.3954, 7.3948, 7.3942, 7.3936, 7.393, 7.3925, 7.3921, 7.3915, 7.3909, 7.3919, 7.3915, 7.3911, 7.3906, 7.3916, 7.3947, 7.3967, 7.3961, 7.3955, 7.3949, 7.3962, 7.3974, 7.3953, 7.4016, 7.4029, 7.4024, 7.4034, 7.4045, 7.4068, 7.4062, 7.4072, 7.4067, 7.4061, 7.4056, 7.4066, 7.4061, 7.4061, 7.4071, 7.4081, 7.4078, 7.4074, 7.4083, 7.4078, 7.4073, 7.4067, 7.4062, 7.4073, 7.4053, 7.4049, 7.4044, 7.4039, 7.405, 7.4045, 7.4039, 7.4051, 7.4046, 7.4057, 7.4068, 7.4064, 7.4058, 7.4053, 7.4048, 7.4028, 7.4023, 7.4017, 7.4028, 7.4022, 7.4035, 7.4048, 7.4063, 7.4058, 7.4052, 7.4048, 7.4042, 7.4036, 7.4018, 7.4012, 7.4008, 7.4004, 7.3998, 7.4009, 7.4018, 7.4012, 7.4006, 7.4, 7.3996, 7.3991, 7.3986, 7.3981, 7.3977, 7.3972, 7.3967, 7.3961, 7.3958, 7.3953, 7.3964, 7.3973, 7.3984, 7.3979, 7.3974, 7.3985, 7.3997, 7.4007, 7.4001, 7.3995, 7.3989, 7.3983, 7.3977, 7.3973, 7.3984, 7.3979, 7.3992, 7.3987, 7.3996, 7.3991, 7.4, 7.3998, 7.398, 7.3986, 7.3967, 7.3976, 7.3973, 7.3967, 7.3963, 7.3957, 7.3956, 7.3951, 7.3947, 7.3945, 7.3941, 7.3935, 7.3934, 7.3928, 7.3938, 7.3933, 7.3949, 7.3959, 7.3956, 7.3951, 7.3945, 7.3955, 7.3951, 7.3949, 7.3959, 7.3953, 7.3947, 7.3959, 7.3968, 7.3962, 7.3956, 7.3952, 7.3948, 7.3945, 7.3942, 7.3937, 7.3931, 7.3926, 7.392, 7.3914, 7.3927, 7.3923, 7.3917, 7.3913, 7.3909, 7.3903, 7.3914, 7.392, 7.3914, 7.3923, 7.3917, 7.3912, 7.3908, 7.3904, 7.3899, 7.3893, 7.3888, 7.3882, 7.3892, 7.3901, 7.391, 7.3907, 7.3904, 7.3913, 7.3908, 7.3903, 7.3912, 7.3906, 7.3901, 7.3959, 7.3954, 7.3948, 7.3942, 7.3938, 7.3948, 7.3944, 7.3939, 7.3941, 7.3936, 7.3918, 7.3928, 7.3922, 7.3931, 7.3925, 7.392, 7.3914, 7.3924, 7.3922, 7.3918, 7.39, 7.3896, 7.3891, 7.3885, 7.3879, 7.3873, 7.3868, 7.388, 7.3889, 7.3884, 7.3894, 7.3903, 7.3899, 7.3908, 7.3903, 7.3898, 7.3893, 7.3887, 7.3884, 7.388, 7.3874, 7.3869, 7.3886, 7.3881, 7.3877, 7.3875, 7.3885, 7.3881, 7.3877, 7.3889, 7.3885, 7.3895, 7.3916, 7.3897, 7.3893, 7.3889, 7.3892, 7.3901, 7.3897, 7.3892, 7.3887, 7.3896, 7.3891, 7.3885, 7.3895, 7.3892, 7.3887, 7.3883, 7.3878, 7.3873, 7.3867, 7.3862, 7.3865, 7.3874, 7.386, 7.3841, 7.385, 7.3845, 7.384, 7.3834, 7.3829, 7.3825, 7.3822, 7.3817, 7.3812, 7.3821, 7.3815, 7.381, 7.3806, 7.3801, 7.3798, 7.3794, 7.3788, 7.3783, 7.3779, 7.3774, 7.3769, 7.3763, 7.3758, 7.3754, 7.3753, 7.3762, 7.3758, 7.3758, 7.3753, 7.3748, 7.3759, 7.3753, 7.376, 7.3755, 7.3765, 7.376, 7.3755, 7.3765, 7.376, 7.376, 7.3756, 7.3765, 7.376, 7.3769, 7.3764, 7.3761, 7.3757, 7.3753, 7.3762, 7.3762, 7.3771, 7.378, 7.379, 7.38, 7.3797, 7.3794, 7.3789, 7.3798, 7.3794, 7.3789, 7.3785, 7.378, 7.3775, 7.377, 7.3765, 7.3778, 7.3773, 7.3768, 7.3769, 7.3766, 7.3776, 7.3771, 7.3782, 7.3805, 7.3799, 7.3796, 7.3806, 7.3801, 7.381, 7.3806, 7.3801, 7.3797, 7.3793, 7.3775, 7.3784, 7.3779, 7.3775, 7.377, 7.3766, 7.3775, 7.377, 7.3766, 7.376, 7.3757, 7.3753, 7.3749, 7.3743, 7.3738, 7.3733, 7.3728, 7.3723, 7.372, 7.3731, 7.374, 7.3737, 7.3733, 7.3729, 7.3725, 7.3725, 7.3745, 7.374, 7.3735, 7.3732, 7.3726, 7.3723, 7.3732, 7.3727, 7.3722, 7.3716, 7.3712, 7.3708, 7.3703, 7.3699, 7.3694, 7.369, 7.3685, 7.3682, 7.3677, 7.3673, 7.3668, 7.3664, 7.366, 7.366, 7.3657, 7.3652, 7.3661, 7.3657, 7.3666, 7.3661, 7.3656, 7.3667, 7.3676, 7.367, 7.3679, 7.3687, 7.3682, 7.3682, 7.3682, 7.3676, 7.3676, 7.3672, 7.3668, 7.3664, 7.366, 7.3656, 7.3651, 7.3651, 7.3647, 7.3645, 7.3629, 7.3638, 7.3634, 7.3629, 7.3639, 7.3635, 7.3631, 7.3626, 7.3636, 7.3634, 7.3645, 7.3642, 7.3638, 7.3633, 7.3629, 7.3623, 7.3632, 7.3627, 7.3636, 7.3637, 7.3639, 7.3634, 7.3631, 7.3626, 7.3626, 7.3622, 7.3633, 7.3629, 7.3628, 7.3637, 7.3632, 7.3628, 7.3624, 7.3619, 7.3614, 7.3611, 7.3606, 7.3616, 7.3612, 7.3607, 7.3615, 7.3612, 7.3607, 7.3603, 7.3597, 7.3609, 7.3604, 7.3601, 7.361, 7.3606, 7.3601, 7.3596, 7.3592, 7.3591, 7.36, 7.3597, 7.3606, 7.3606, 7.36, 7.3609, 7.3605, 7.3664, 7.3673, 7.3669, 7.3664, 7.3674, 7.3669, 7.3665, 7.3661, 7.3656, 7.3642, 7.3652, 7.3646, 7.3657, 7.3652, 7.3649, 7.3644, 7.3641, 7.3637, 7.3639, 7.3648, 7.3657, 7.3652, 7.3664, 7.3687, 7.3682, 7.3682, 7.3678, 7.3673, 7.3683, 7.368, 7.3675, 7.367, 7.3693, 7.3689, 7.3685, 7.3681, 7.369, 7.3686, 7.3697, 7.3707, 7.3702, 7.3699, 7.3709, 7.3704, 7.37, 7.3695, 7.369, 7.3686, 7.3681, 7.3694, 7.3689, 7.3685, 7.368, 7.3675, 7.3671, 7.3666, 7.3661, 7.3671, 7.3704, 7.3699, 7.3708, 7.3703, 7.3699, 7.3697, 7.3706, 7.3702, 7.3699, 7.3708, 7.3703, 7.3699, 7.3694, 7.369, 7.3685, 7.368, 7.369000000000001, 7.370000000000001, 7.3708, 7.3703, 7.3712, 7.3707, 7.369, 7.3699, 7.3695, 7.3705, 7.3715, 7.371, 7.3722, 7.3718, 7.3714, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.3691, 7.3686, 7.3681, 7.3676, 7.3671, 7.3666, 7.3662, 7.3671, 7.3669, 7.3664, 7.3672, 7.3667, 7.3662, 7.3657, 7.364, 7.3635, 7.363, 7.3625, 7.362, 7.3618, 7.3613, 7.3611, 7.3607, 7.3602, 7.3598, 7.3596, 7.3594, 7.3603, 7.3613, 7.361, 7.3605, 7.3602, 7.3611, 7.3621, 7.3631, 7.364, 7.3637, 7.3633, 7.3629, 7.3628, 7.3611, 7.362, 7.3615, 7.3611, 7.3607, 7.3602, 7.3597, 7.3593, 7.3588, 7.3585, 7.358, 7.3575, 7.3572, 7.358, 7.3576, 7.3573, 7.3568, 7.3567, 7.36, 7.3595, 7.3593, 7.3588, 7.3585, 7.3582, 7.3578, 7.3613, 7.3609, 7.3631, 7.3626, 7.3644, 7.3669, 7.3677, 7.3672, 7.3667, 7.3663, 7.3659, 7.3656, 7.3639, 7.3647, 7.3643, 7.3652, 7.3654, 7.3638, 7.3634, 7.3632, 7.364, 7.3635, 7.3631, 7.3639, 7.3635, 7.363, 7.3625, 7.3633, 7.3628, 7.3624, 7.3633, 7.3629, 7.3625, 7.3621, 7.3617, 7.364, 7.3636, 7.3631, 7.3626, 7.3622, 7.362, 7.3616, 7.3633, 7.3633, 7.3629, 7.3639, 7.3647, 7.3642, 7.3638, 7.3634, 7.363, 7.3629, 7.3638, 7.3633, 7.3629, 7.3626, 7.3622, 7.3618, 7.3616, 7.3614, 7.3629, 7.3641, 7.365, 7.3646, 7.3641, 7.3663, 7.3658, 7.3661, 7.3657, 7.3653, 7.3649, 7.3657, 7.3665, 7.3675, 7.3658, 7.3653, 7.3649, 7.3657, 7.3652, 7.3648, 7.3657, 7.3653, 7.3648, 7.3657, 7.3653, 7.3648, 7.3644, 7.364, 7.3637, 7.3632, 7.364, 7.3649, 7.3657, 7.3652, 7.3648, 7.3645, 7.3642, 7.3638, 7.3636, 7.3631, 7.3627, 7.3623, 7.3619, 7.362, 7.3628, 7.3636, 7.3631, 7.364, 7.3635, 7.3642, 7.3642, 7.3637, 7.3632, 7.363, 7.3626, 7.3622, 7.3618, 7.3627, 7.3627, 7.3624, 7.3621, 7.3616, 7.3624, 7.365, 7.3645, 7.3641, 7.3636, 7.3644, 7.3653, 7.365, 7.3659, 7.3654, 7.3649, 7.3646, 7.3644, 7.3641, 7.3638, 7.3647, 7.3646, 7.3642, 7.3639, 7.3636, 7.3644, 7.3639, 7.3635, 7.3618, 7.3627, 7.3635, 7.3631, 7.364, 7.3661, 7.3656, 7.3643, 7.3638, 7.3635, 7.3632, 7.3642, 7.3639, 7.3635, 7.3631, 7.3627, 7.3636, 7.3631, 7.3628, 7.3624, 7.362, 7.3619, 7.3616, 7.3623, 7.3619, 7.3616, 7.3612, 7.3607, 7.3604, 7.3603, 7.3599, 7.3606, 7.3603, 7.3599, 7.3595, 7.359, 7.3599, 7.3626, 7.3655, 7.3651, 7.3647, 7.3661, 7.3658, 7.3654, 7.3649, 7.3645, 7.3641, 7.3636, 7.3632, 7.3627, 7.3622, 7.3618, 7.3617, 7.3626, 7.3634, 7.3635, 7.3631, 7.3626, 7.3621, 7.3605, 7.36, 7.3595, 7.3596, 7.3593, 7.3589, 7.3586, 7.3582, 7.3578, 7.3578, 7.3574, 7.357, 7.3566, 7.3563, 7.356, 7.3569, 7.3564, 7.356, 7.3556, 7.3552, 7.3561, 7.3557, 7.3552, 7.3561, 7.3556, 7.3563, 7.3559, 7.3554, 7.3549, 7.3557, 7.3552, 7.3548, 7.3543, 7.3551, 7.3572, 7.3593, 7.3589, 7.3586, 7.3581, 7.3576, 7.3572, 7.358, 7.3575, 7.3572, 7.3582, 7.3578, 7.3574, 7.3557, 7.3554, 7.3563, 7.3561, 7.3556, 7.3551, 7.3549, 7.3544, 7.3539, 7.3536, 7.3531, 7.3539, 7.3536, 7.3549, 7.3557, 7.3553, 7.3549, 7.3544, 7.3552, 7.3549, 7.3546, 7.3554, 7.3562, 7.3559, 7.3554, 7.3549, 7.355, 7.3538, 7.3533, 7.3542, 7.3539, 7.3547, 7.3543, 7.3544, 7.3541, 7.3549, 7.3556, 7.3545, 7.3542, 7.3538, 7.3534, 7.3529, 7.3525, 7.3522, 7.3518, 7.3513, 7.3522, 7.352, 7.3516, 7.3513, 7.3509, 7.3517, 7.3501, 7.3496, 7.3505, 7.3516, 7.3512, 7.3497, 7.3494, 7.349, 7.3485, 7.3492, 7.3489, 7.3485, 7.348, 7.348, 7.3475, 7.3471, 7.3479, 7.3475, 7.3482, 7.3503, 7.3512, 7.352, 7.3516, 7.3525, 7.3533, 7.3529, 7.3526, 7.3537, 7.3533, 7.3529, 7.3536, 7.3544, 7.3552, 7.3547, 7.3556, 7.3565, 7.3573, 7.3568, 7.3565, 7.3573, 7.3581, 7.3577, 7.3573, 7.358, 7.359, 7.3599, 7.3594, 7.3591, 7.3587, 7.3582, 7.3579, 7.3587, 7.3583, 7.3579, 7.3575, 7.3582, 7.3591, 7.36, 7.3596, 7.3593, 7.3601, 7.3598, 7.3593, 7.359, 7.3585, 7.3581, 7.3576, 7.3571, 7.3567, 7.3552, 7.3561, 7.3557, 7.3557, 7.3553, 7.3551, 7.3546, 7.3542, 7.3538, 7.3534, 7.3543, 7.354, 7.3548, 7.3546, 7.3542, 7.3538, 7.3552, 7.3548, 7.3544, 7.3542, 7.3538, 7.3533, 7.3529, 7.355, 7.3558, 7.3554, 7.3549, 7.3544, 7.3542, 7.3538, 7.3546, 7.3542, 7.3537, 7.3545, 7.354, 7.3536, 7.3532, 7.354, 7.3536, 7.3533, 7.3528, 7.3535, 7.3532, 7.3527, 7.3523, 7.3519, 7.3519, 7.3515, 7.3512, 7.3508, 7.3504, 7.3514, 7.3509, 7.3505, 7.3502, 7.3497, 7.3494, 7.3491, 7.3488, 7.3484, 7.3479, 7.3487, 7.3483, 7.3479, 7.3487, 7.3484, 7.348, 7.3476, 7.3471, 7.3479, 7.3464, 7.346, 7.3457, 7.3453, 7.3448, 7.3456, 7.3454, 7.345, 7.3445, 7.3441, 7.3438, 7.3447, 7.3445, 7.3442, 7.3438, 7.3434, 7.343, 7.3445, 7.3442, 7.3438, 7.3445, 7.3441, 7.3438, 7.3435, 7.3433, 7.3428, 7.3426, 7.3433, 7.3418, 7.3413, 7.3408, 7.3406, 7.3402, 7.3398, 7.3406, 7.3404, 7.3401, 7.3396, 7.3392, 7.3399, 7.3396, 7.3404, 7.3412, 7.342, 7.3417, 7.3413, 7.3409, 7.3405, 7.34, 7.3407, 7.3403, 7.3399, 7.3407, 7.3427, 7.3425, 7.3421, 7.3429, 7.3436, 7.3444, 7.3429, 7.3426, 7.3423, 7.3408, 7.3418, 7.3415, 7.3412, 7.3408, 7.3405, 7.3401, 7.3411, 7.3407, 7.3404, 7.34, 7.3396, 7.3391, 7.3387, 7.3385, 7.3382, 7.3378, 7.3387, 7.3383, 7.3378, 7.3374, 7.3372, 7.3367, 7.3374, 7.337, 7.3379, 7.3386, 7.3382, 7.3379, 7.3375, 7.3371, 7.3367, 7.3364, 7.336, 7.3356, 7.3364, 7.3372, 7.3368, 7.3364, 7.3364, 7.336, 7.3355, 7.335, 7.3357, 7.3353, 7.3361, 7.3356, 7.3364, 7.336, 7.3357, 7.3352, 7.3349, 7.3346, 7.3343, 7.3339, 7.3337, 7.3335, 7.3335, 7.3331, 7.3339, 7.3335, 7.3331, 7.3328, 7.3325, 7.3332, 7.334, 7.3349, 7.3348, 7.3355, 7.3363, 7.337, 7.3365, 7.3361, 7.3358, 7.3354, 7.3353, 7.336, 7.3356, 7.3353, 7.336, 7.3368, 7.3366, 7.3351, 7.3347, 7.3343, 7.3341, 7.3337, 7.3333, 7.3344, 7.334, 7.3348, 7.3361, 7.3347, 7.3343, 7.3339, 7.3336, 7.3332, 7.334, 7.3337, 7.3333, 7.3329, 7.3324, 7.332, 7.3316, 7.3312, 7.3308, 7.3304, 7.3312, 7.3309, 7.3304, 7.3301, 7.3297, 7.3294, 7.3291, 7.3298, 7.3306, 7.3303, 7.3306, 7.3316, 7.3311, 7.3308, 7.3315, 7.3311, 7.3308, 7.3306, 7.3302, 7.33, 7.3307, 7.3303, 7.3299, 7.3297, 7.3306, 7.3304, 7.3318, 7.3326, 7.3323, 7.3321, 7.3331, 7.3356, 7.3364, 7.336, 7.3368, 7.3376, 7.3386, 7.3382, 7.3378, 7.3375, 7.3383, 7.3368, 7.3365, 7.3361, 7.3357, 7.3353, 7.3353, 7.3352, 7.3359, 7.3355, 7.3351, 7.3347, 7.3344, 7.334, 7.3336, 7.3333, 7.3329, 7.3325, 7.3332, 7.333, 7.3326, 7.3325, 7.3332, 7.3328, 7.3325, 7.3311, 7.3307, 7.3307, 7.3304, 7.33, 7.3296, 7.3292, 7.3289, 7.3297, 7.3298, 7.3305, 7.3301, 7.3298, 7.3294, 7.329, 7.3286, 7.3282, 7.3278, 7.3264, 7.326, 7.3257, 7.3254, 7.325, 7.3258, 7.3257, 7.3254, 7.324, 7.3226, 7.3234, 7.3277, 7.3274, 7.327, 7.3267, 7.3263, 7.326, 7.3258, 7.3255, 7.3253, 7.325, 7.3246, 7.3254, 7.325, 7.3257, 7.3254, 7.325, 7.3246, 7.3243, 7.324, 7.3236, 7.3232, 7.3228, 7.3224, 7.3231, 7.3232, 7.3218, 7.3225, 7.3221, 7.3217, 7.3213, 7.322, 7.3227, 7.3223, 7.3219, 7.3215, 7.3212, 7.3261, 7.3258, 7.3265, 7.3272, 7.328, 7.3277, 7.3284, 7.3281, 7.3277, 7.3273, 7.327, 7.328, 7.3276, 7.3273, 7.327, 7.3267, 7.3263, 7.3259, 7.3255, 7.3256, 7.3263, 7.326, 7.3255, 7.3253, 7.325, 7.3247, 7.3254, 7.325, 7.3246, 7.3235, 7.3231, 7.3229, 7.3225, 7.3221, 7.3228, 7.3224, 7.322, 7.3217, 7.3213, 7.322, 7.3216, 7.3212, 7.3222000000000005, 7.323, 7.3226, 7.3222, 7.3231, 7.3241000000000005, 7.325100000000001, 7.326100000000001, 7.3258, 7.3277, 7.3266, 7.3262, 7.3269, 7.3265, 7.3261, 7.3268, 7.3275, 7.3282, 7.329, 7.3286, 7.3294, 7.329, 7.3308, 7.3304, 7.3323, 7.332, 7.3316, 7.3323, 7.332, 7.3318, 7.3315, 7.3311, 7.3318, 7.332800000000001, 7.3326, 7.3323, 7.332, 7.3319, 7.3316, 7.3323, 7.332, 7.3316, 7.3321, 7.332, 7.3316, 7.3313, 7.331, 7.3318, 7.3314, 7.3312, 7.3325, 7.3321, 7.332, 7.3325, 7.3321, 7.333, 7.3338, 7.3336, 7.3343, 7.3339, 7.3337, 7.3333, 7.3329, 7.3325, 7.3321, 7.3318, 7.3315, 7.3322, 7.3319, 7.3327, 7.3324, 7.3322, 7.333200000000001, 7.334200000000001, 7.334, 7.3336, 7.3332, 7.3328, 7.3335, 7.3331, 7.3318, 7.3364, 7.336, 7.3356, 7.3358, 7.3365, 7.3361, 7.3369, 7.3366, 7.3377, 7.3374, 7.3374, 7.3374, 7.3375, 7.3371, 7.3368, 7.3364, 7.336, 7.3356, 7.3352, 7.3359, 7.3355, 7.3351, 7.3348, 7.3344, 7.334, 7.3347, 7.3354, 7.3353, 7.3349, 7.3345, 7.3341, 7.3337, 7.3334, 7.3332, 7.3339, 7.3336, 7.3333, 7.3329, 7.3336, 7.3332, 7.3339, 7.3335, 7.3331, 7.3328, 7.3326, 7.3322, 7.3318, 7.3314, 7.331, 7.3307, 7.3303, 7.33, 7.3307, 7.3303, 7.3299, 7.3296, 7.3303, 7.33, 7.3297, 7.3304, 7.33, 7.3296, 7.3325, 7.3321, 7.3318, 7.3337, 7.3367, 7.3366, 7.3363, 7.3359, 7.3356, 7.3352, 7.3348, 7.3344, 7.3341, 7.3338, 7.3337, 7.3335, 7.3332, 7.3341, 7.3338, 7.3336, 7.3344, 7.3341, 7.3338, 7.3335, 7.3331, 7.3328, 7.3335, 7.3331, 7.3338, 7.3334, 7.3331, 7.3332, 7.3329, 7.3328, 7.3335, 7.3332, 7.3328, 7.3324, 7.3321, 7.3339, 7.3335, 7.3333, 7.334, 7.3336, 7.3345, 7.3353, 7.335, 7.3357, 7.3354, 7.3361, 7.3357, 7.3364, 7.3361, 7.3358, 7.3354, 7.335, 7.3364, 7.3361, 7.3367, 7.3364, 7.337, 7.3367, 7.3375, 7.3373, 7.3371, 7.3367, 7.3354, 7.3352, 7.3349, 7.3346, 7.3343, 7.334, 7.3336, 7.3333, 7.333, 7.3327, 7.3324, 7.3322, 7.3319, 7.3315, 7.3323, 7.3321, 7.3318, 7.3327, 7.3324, 7.332, 7.3306, 7.3303, 7.3299, 7.3296, 7.3293, 7.3289, 7.3297, 7.3294, 7.329, 7.3299, 7.3306, 7.3303, 7.3301, 7.3297, 7.3294, 7.33, 7.3307, 7.3314, 7.3311, 7.3307, 7.3303, 7.329, 7.3287, 7.3283, 7.3279, 7.3292, 7.33, 7.3296, 7.3293, 7.3301, 7.3307, 7.3313, 7.331, 7.3306, 7.3318, 7.3325, 7.3321, 7.3329, 7.3336, 7.3332, 7.3328, 7.3325, 7.3331, 7.3339, 7.3347, 7.3344, 7.334, 7.3336, 7.3332, 7.3328, 7.3334, 7.3331, 7.3327, 7.3334, 7.3341, 7.3337, 7.3344, 7.334, 7.3337, 7.3335, 7.3342, 7.3342, 7.3338, 7.3335, 7.3331, 7.3327, 7.3356, 7.3384, 7.3391, 7.3387, 7.3394, 7.3392, 7.3399, 7.3395, 7.3406, 7.3402, 7.3409, 7.3417, 7.3422, 7.3429, 7.3428, 7.3425, 7.3421, 7.3427, 7.3424, 7.342, 7.3417, 7.3414, 7.3412, 7.3419, 7.3415, 7.3412, 7.3409, 7.3405, 7.3403, 7.34, 7.3401, 7.3448, 7.3445, 7.3443, 7.3449, 7.3448, 7.3445, 7.3442, 7.3461, 7.3459, 7.3466, 7.3473, 7.3471, 7.3468, 7.3475, 7.3472, 7.3469, 7.3477, 7.3474, 7.3462, 7.3458, 7.3454, 7.345, 7.3437, 7.3438, 7.3435, 7.3436, 7.3441, 7.3442, 7.344, 7.3437, 7.3438, 7.3441, 7.3437, 7.3493, 7.35, 7.3497, 7.3496, 7.3494, 7.349, 7.3487, 7.3484, 7.348, 7.3477, 7.3475, 7.3472, 7.3468, 7.3464, 7.347, 7.3457, 7.3463, 7.3479, 7.3475, 7.3482, 7.3479, 7.3484, 7.348, 7.3476, 7.3476, 7.3472, 7.3468, 7.3465, 7.3462, 7.3459, 7.3455, 7.3451, 7.3448, 7.3445, 7.3441, 7.3448, 7.3444, 7.3441, 7.3448, 7.3455, 7.3451, 7.3447, 7.3443, 7.3439, 7.3436, 7.3433, 7.343, 7.3437, 7.3447000000000005, 7.3453, 7.345, 7.3454, 7.3451, 7.3449, 7.3456, 7.3452, 7.3449, 7.3445, 7.3442, 7.344, 7.3436, 7.3432, 7.3431, 7.343, 7.3436, 7.3432, 7.343, 7.3427, 7.3426, 7.3422, 7.3419, 7.3416, 7.3422, 7.3442, 7.344, 7.3437, 7.3444, 7.3441, 7.3438, 7.3434, 7.343, 7.3426, 7.3422, 7.3418, 7.3425, 7.3432, 7.3429, 7.3439000000000005, 7.3487, 7.3497, 7.3494, 7.349, 7.3488, 7.3485, 7.3484, 7.3491, 7.3487, 7.3484, 7.3485, 7.3483, 7.3481, 7.3478, 7.3475, 7.3482, 7.3488, 7.3485, 7.3482, 7.3488, 7.3485, 7.3484, 7.348, 7.3478, 7.3474, 7.347, 7.3467, 7.3464, 7.346, 7.3457, 7.3454, 7.3461, 7.3457, 7.3465, 7.3462, 7.3458, 7.3455, 7.3452, 7.345, 7.3449, 7.3446, 7.3442, 7.3448, 7.3444, 7.344, 7.345, 7.3457, 7.3454, 7.3451, 7.3448, 7.3444, 7.3441, 7.3448, 7.3447, 7.3455, 7.3452, 7.3448, 7.3444, 7.3441, 7.3448, 7.3448, 7.3455, 7.3442, 7.3439, 7.3436, 7.3447, 7.3443, 7.344, 7.3447, 7.3444, 7.3441, 7.3437, 7.3435, 7.3431, 7.3428, 7.3436, 7.3434, 7.3445, 7.3452, 7.3469, 7.3467, 7.3464, 7.3461, 7.3461, 7.3458, 7.3455, 7.3452, 7.3448, 7.3435, 7.3433, 7.3429, 7.3425, 7.3421, 7.3418, 7.3425, 7.3422, 7.3425, 7.3436, 7.3443, 7.345, 7.3446, 7.3452, 7.3449, 7.3456, 7.3453, 7.345, 7.3447, 7.3444, 7.3443, 7.3439, 7.3445, 7.3451, 7.345, 7.3449, 7.3445, 7.3433, 7.3431, 7.3432, 7.3429, 7.3427, 7.3424, 7.3421, 7.3417, 7.3414, 7.3414, 7.3411, 7.3408, 7.3415, 7.3411, 7.3408, 7.3405, 7.3401, 7.3399, 7.3397, 7.3394, 7.339, 7.3387, 7.339, 7.3397, 7.3403, 7.34, 7.3399, 7.3396, 7.3392, 7.3389, 7.3386, 7.3404, 7.341, 7.3406, 7.3403, 7.34, 7.3407, 7.3406, 7.3403, 7.3413, 7.341, 7.3420000000000005, 7.343000000000001, 7.3427, 7.3423, 7.342, 7.3417, 7.3426, 7.3424, 7.3432, 7.3429, 7.3436, 7.3443, 7.344, 7.3437, 7.3445, 7.3443, 7.344, 7.3437, 7.3434, 7.3431, 7.3438, 7.3436, 7.3425, 7.3422, 7.3418, 7.3415, 7.3422, 7.3418, 7.3425, 7.3413, 7.341, 7.3406, 7.3402, 7.3398, 7.3394, 7.3392, 7.3389, 7.3396, 7.3393, 7.3399, 7.3388, 7.3395, 7.3392, 7.3389, 7.343, 7.3437, 7.3443, 7.344, 7.3448, 7.3445, 7.3453, 7.3463, 7.346, 7.347, 7.3466, 7.3454, 7.345, 7.3447, 7.3444, 7.3443, 7.3449, 7.3446, 7.3453, 7.3452, 7.3458, 7.3455, 7.3453, 7.345, 7.3448, 7.3445, 7.3442, 7.3439, 7.3448, 7.3446, 7.3443, 7.3441, 7.3438, 7.3438, 7.3434, 7.3431, 7.3429, 7.3427, 7.3436, 7.3434, 7.3432, 7.3429, 7.3437, 7.3434, 7.3442, 7.345, 7.3458, 7.3455, 7.3461, 7.3459, 7.3457, 7.3454, 7.346, 7.3466, 7.3476, 7.3483, 7.348, 7.3477, 7.3474, 7.347, 7.3468, 7.3465, 7.3463, 7.346, 7.3466, 7.3462, 7.3458, 7.3457, 7.3454, 7.3453, 7.3459, 7.3456, 7.3452, 7.3458, 7.3454, 7.3451, 7.3457, 7.3445, 7.3453, 7.3463, 7.3451, 7.3449, 7.3446, 7.3444, 7.3451, 7.3448, 7.3444, 7.3441, 7.3438, 7.3435, 7.3432, 7.343, 7.3421, 7.3418, 7.3414, 7.3412, 7.3409, 7.3405, 7.3402, 7.3399, 7.3396, 7.3393, 7.339, 7.3387, 7.3384, 7.3381, 7.3378, 7.3375, 7.3363, 7.336, 7.3366, 7.3362, 7.3359, 7.3356, 7.3353, 7.3359, 7.3355, 7.3352, 7.335, 7.3356, 7.3355, 7.3351, 7.3339, 7.3336, 7.3333, 7.3331, 7.3329, 7.334, 7.3346, 7.3342, 7.3349, 7.3346, 7.3342, 7.3338, 7.3344, 7.3341, 7.3338, 7.3343, 7.334, 7.3346, 7.3352, 7.3348, 7.3344, 7.3341, 7.3338, 7.3326, 7.3366, 7.3372, 7.3368, 7.3365, 7.3362, 7.3358, 7.3355, 7.3351, 7.3348, 7.3346, 7.3344, 7.334, 7.3337, 7.3333, 7.3321, 7.3337, 7.3334, 7.3331, 7.3332, 7.3329, 7.3327, 7.3325, 7.3322, 7.332, 7.3317, 7.3313, 7.3311, 7.3308, 7.3305, 7.3311, 7.3307, 7.3306, 7.3302, 7.33, 7.3299, 7.3296, 7.3304, 7.3302, 7.3299, 7.3296, 7.3313, 7.3321, 7.3318, 7.3324, 7.3321, 7.3318, 7.3315, 7.3321, 7.3318, 7.3315, 7.3316, 7.3314, 7.3321, 7.3318, 7.3323, 7.3319, 7.332, 7.3317, 7.3314, 7.331, 7.3317, 7.3314, 7.331, 7.3307, 7.3304, 7.33, 7.3306, 7.3303, 7.3299, 7.3295, 7.333, 7.3327, 7.3332, 7.3328, 7.3316, 7.3304, 7.3301, 7.33, 7.3306, 7.3303, 7.3309, 7.3316, 7.3322, 7.3319, 7.3316, 7.3322, 7.3319, 7.3318, 7.3315, 7.3313, 7.3311, 7.3308, 7.3297, 7.3294, 7.3291, 7.329, 7.3287, 7.3284, 7.33, 7.3306, 7.3304, 7.3302, 7.3299, 7.3295, 7.3301, 7.3298, 7.3295, 7.3292, 7.329, 7.3288, 7.3287, 7.3293, 7.3299, 7.3296, 7.3293, 7.3289, 7.3287, 7.3285, 7.3282, 7.331, 7.3316, 7.3313, 7.331, 7.3307, 7.3304, 7.3302, 7.3308, 7.3314, 7.3311, 7.3317, 7.3314, 7.331, 7.3318, 7.3314, 7.332, 7.3317, 7.3313, 7.331, 7.3308, 7.3304, 7.3314, 7.3311, 7.3307, 7.3313, 7.3311, 7.3308, 7.3306, 7.3305, 7.3302, 7.3299, 7.3296, 7.3295, 7.3292, 7.3299, 7.3296, 7.3293, 7.329, 7.3296, 7.3302, 7.3298, 7.3302, 7.3312, 7.3309, 7.3306, 7.3303, 7.3328, 7.3325, 7.3324, 7.3321, 7.3328, 7.3338, 7.3326, 7.3332, 7.3329, 7.3326, 7.3314, 7.3315, 7.3313, 7.3312, 7.331, 7.3307, 7.3304, 7.332, 7.3358, 7.3355, 7.337, 7.3367, 7.3378, 7.3403, 7.34, 7.3416, 7.3407, 7.3403, 7.34, 7.3399, 7.3396, 7.3401, 7.3398, 7.3395, 7.3393, 7.339, 7.3388, 7.3386, 7.3384, 7.339, 7.3388, 7.3394, 7.339, 7.3387, 7.3393, 7.339, 7.3386, 7.3384, 7.3391, 7.3397, 7.3402, 7.3398, 7.3404, 7.3401, 7.3398, 7.3386, 7.3382, 7.338, 7.3378, 7.3376, 7.3373, 7.3371, 7.3369, 7.3366, 7.3355, 7.3352, 7.3352, 7.3359, 7.3356, 7.3354, 7.3361, 7.3371, 7.338100000000001, 7.339100000000001, 7.3387, 7.3396, 7.3419, 7.3418, 7.3444, 7.3441, 7.3438, 7.3436, 7.346, 7.3457, 7.3455, 7.3453, 7.3451, 7.3458, 7.3464, 7.3463, 7.3452, 7.3449, 7.3447, 7.3444, 7.3441, 7.3438, 7.3443, 7.344, 7.3437, 7.3443, 7.3449, 7.3454, 7.345, 7.3447, 7.3445, 7.3451, 7.3457, 7.3455, 7.3461, 7.346, 7.3456, 7.3453, 7.3451, 7.3449, 7.3455, 7.3451, 7.3448, 7.3453, 7.3459, 7.3465, 7.3462, 7.3459, 7.3464, 7.346, 7.3457, 7.3454, 7.3451, 7.344, 7.3438, 7.3434, 7.344, 7.3437, 7.3445, 7.3443, 7.3444, 7.345, 7.3456, 7.3453, 7.3456, 7.3462, 7.3468, 7.3474, 7.3485, 7.349, 7.349, 7.3487, 7.3485, 7.3482, 7.3487, 7.3484, 7.3482, 7.3479, 7.3476, 7.3483, 7.3481, 7.348, 7.3476, 7.3473, 7.347, 7.3467, 7.3465, 7.3462, 7.3469, 7.3468, 7.3465, 7.3471, 7.3467, 7.3472, 7.3486, 7.3493, 7.349, 7.3489, 7.3486, 7.3483, 7.3481, 7.3478, 7.3476, 7.3475, 7.3472, 7.3469, 7.3467, 7.347700000000001, 7.3474, 7.3472, 7.3479, 7.3476, 7.3474, 7.348400000000001, 7.3481, 7.3478, 7.3476, 7.3474, 7.3471, 7.3462, 7.3468, 7.3465, 7.3462, 7.346, 7.3457, 7.3466, 7.3476, 7.3474, 7.3471, 7.3468, 7.3475, 7.3473, 7.347, 7.3476, 7.3474, 7.3471, 7.3491, 7.3488, 7.3494, 7.3505, 7.3502, 7.3508, 7.3513, 7.3518, 7.3516, 7.3513, 7.351, 7.3507, 7.3512, 7.3509, 7.3506, 7.3504, 7.3502, 7.3499, 7.3501, 7.35, 7.3506, 7.3502, 7.3508, 7.3514, 7.3511, 7.351, 7.3516, 7.3515, 7.3512, 7.3518, 7.3516, 7.3522, 7.3521, 7.3518, 7.3524, 7.3521, 7.3518, 7.3516, 7.3522, 7.3519, 7.3525, 7.3522, 7.3528, 7.3525, 7.3522, 7.3528, 7.3525, 7.3534, 7.3531, 7.3538, 7.3538, 7.3534, 7.354, 7.3546, 7.3537, 7.3526, 7.3536, 7.3533, 7.353, 7.3527, 7.3524, 7.353, 7.3527, 7.3523, 7.352, 7.3517, 7.3514, 7.3511, 7.3509, 7.3506, 7.3506, 7.3504, 7.351, 7.3507, 7.3505, 7.3503, 7.35, 7.3497, 7.3496, 7.3493, 7.3499, 7.3496, 7.3548, 7.3554, 7.356, 7.3558, 7.3556, 7.3553, 7.356, 7.3557, 7.3554, 7.3561, 7.3558, 7.3555, 7.3553, 7.3559, 7.3556, 7.3562, 7.3563, 7.356, 7.3557, 7.3554, 7.356, 7.3557, 7.3563, 7.3561, 7.355, 7.3547, 7.3544, 7.3541, 7.3538, 7.3544, 7.3541, 7.354, 7.3538, 7.3536, 7.3533, 7.353, 7.3528, 7.3525, 7.3522, 7.3532, 7.3538, 7.3544, 7.3541, 7.3542, 7.3548, 7.3546, 7.3548, 7.3545, 7.3542, 7.354, 7.3537, 7.3534, 7.3539, 7.3538, 7.3536, 7.3534, 7.3531, 7.3537, 7.3534, 7.3531, 7.3528, 7.353, 7.3527, 7.3524, 7.3513, 7.3521, 7.3554, 7.3551, 7.3549, 7.3547, 7.3544, 7.3549, 7.3546, 7.3543, 7.354, 7.3549, 7.3546, 7.3552, 7.3549, 7.3555, 7.356, 7.3557, 7.3555, 7.3552, 7.355, 7.3547, 7.3559, 7.3558, 7.3565, 7.359, 7.3588, 7.3585, 7.3582, 7.3589, 7.3578, 7.3575, 7.3572, 7.3577, 7.3582, 7.3579, 7.3576, 7.3573, 7.3582, 7.358, 7.3586, 7.3592, 7.3589, 7.3586, 7.3584, 7.3591, 7.3589, 7.3587, 7.3576, 7.3586, 7.3583, 7.3589, 7.3586, 7.3583, 7.358, 7.358, 7.3577, 7.3583, 7.3588, 7.3587, 7.3584, 7.3581, 7.3578, 7.3575, 7.3572, 7.3571, 7.3568, 7.3565, 7.3571, 7.356, 7.3571, 7.3577, 7.3584, 7.3581, 7.3578, 7.3584, 7.359, 7.3588, 7.3593, 7.3599, 7.3596, 7.3594, 7.3591, 7.3588, 7.3585, 7.3574, 7.358, 7.3586, 7.3583, 7.358, 7.3577, 7.3574, 7.3571, 7.3568, 7.3568, 7.3568, 7.3567, 7.3574, 7.358, 7.3586, 7.3592, 7.3589, 7.3586, 7.3584, 7.3581, 7.3589, 7.3597, 7.3595, 7.3593, 7.3591, 7.3588, 7.3587, 7.3585, 7.3583, 7.3589, 7.3586, 7.3583, 7.358, 7.3577, 7.3575, 7.3573, 7.3597, 7.3629, 7.3635, 7.3717, 7.3716, 7.3722, 7.3711, 7.3708, 7.3705, 7.3702, 7.3707, 7.3705, 7.3738, 7.3736, 7.3742, 7.374, 7.3747, 7.3744, 7.375, 7.3747, 7.3745, 7.3765, 7.3763, 7.3763, 7.377, 7.3776, 7.3773, 7.3788, 7.3786, 7.3792, 7.3789, 7.3787, 7.3788, 7.3785, 7.3809, 7.3806, 7.3803, 7.3808, 7.3813, 7.3819, 7.3825, 7.3823, 7.382, 7.3818, 7.3815, 7.3813, 7.3818, 7.3823, 7.382, 7.3825, 7.3831, 7.3828, 7.3825, 7.3822, 7.3819, 7.3816, 7.3822, 7.3819, 7.3825, 7.3822, 7.3819, 7.3825, 7.3822, 7.3819, 7.3816, 7.3821, 7.3818, 7.3815, 7.3812, 7.3809, 7.3814, 7.3811, 7.3808, 7.3805, 7.3802, 7.3799, 7.3804, 7.3801, 7.3799, 7.3796, 7.3802, 7.3799, 7.3797, 7.3787, 7.3776, 7.3773, 7.377, 7.3767, 7.3772, 7.377, 7.3768, 7.3785, 7.3784, 7.3781, 7.3781, 7.3779, 7.3776, 7.3773, 7.377, 7.3768, 7.3765, 7.3763, 7.376, 7.3757, 7.3754, 7.3752, 7.3749, 7.3746, 7.3743, 7.374, 7.3737, 7.3734, 7.3731, 7.3729, 7.3726, 7.3731, 7.3736, 7.3733, 7.373, 7.3727, 7.3724, 7.3721, 7.3725, 7.3722, 7.3719, 7.3708, 7.3722, 7.3719, 7.3716, 7.3714, 7.3711, 7.3708, 7.3705, 7.371, 7.3707, 7.3704, 7.3701, 7.3699, 7.3697, 7.3695, 7.3692, 7.3689, 7.3686, 7.3683, 7.3681, 7.3679, 7.3676, 7.3689, 7.3686, 7.3684, 7.3689, 7.3686, 7.3686, 7.3691, 7.3689, 7.3686, 7.3691, 7.3689, 7.3686, 7.3683, 7.3683, 7.3681, 7.3687, 7.3684, 7.3681, 7.3678, 7.3684, 7.3681, 7.3679, 7.3677, 7.3675, 7.3681, 7.3679, 7.3669, 7.3666, 7.3663, 7.366, 7.3657, 7.3654, 7.3651, 7.3648, 7.3646, 7.3643, 7.364, 7.3637, 7.3634, 7.3633, 7.3631, 7.3637, 7.3635, 7.364, 7.3646, 7.3652, 7.365, 7.3656, 7.3655, 7.3655, 7.3653, 7.365, 7.3647, 7.3648, 7.3646, 7.3644, 7.3641, 7.3639, 7.3637, 7.3643, 7.364, 7.3637, 7.3634, 7.3639, 7.3636, 7.3634, 7.3631, 7.3632, 7.363, 7.3627, 7.3624, 7.3645, 7.365, 7.3647, 7.3644, 7.3641, 7.3639, 7.3646, 7.3646, 7.3643, 7.3648, 7.3646, 7.3651, 7.3648, 7.3646, 7.3643, 7.3649, 7.3654, 7.3651, 7.3656, 7.3653, 7.365, 7.3649, 7.3647, 7.3644, 7.3642, 7.3647, 7.3644, 7.3656, 7.3661, 7.3658, 7.3655, 7.3649, 7.3639, 7.3652, 7.3657, 7.3663, 7.3661, 7.3658, 7.3664, 7.3661, 7.3667, 7.3664, 7.3669, 7.3674, 7.3681, 7.3686, 7.3692, 7.3689, 7.3686, 7.3683, 7.368, 7.3677, 7.3683, 7.3688, 7.3686, 7.3699, 7.3704, 7.3701, 7.3701, 7.3715, 7.3737, 7.3734, 7.3739, 7.3729, 7.3726, 7.3731, 7.3728, 7.3725, 7.3723, 7.3721, 7.3743, 7.374, 7.3737, 7.3784, 7.3789, 7.3794, 7.3791, 7.3796, 7.3793, 7.3791, 7.3781, 7.3778, 7.3775, 7.378, 7.3777, 7.3782, 7.3779, 7.3785, 7.3782, 7.378, 7.3777, 7.3774, 7.3771, 7.3771, 7.377, 7.3767, 7.3758, 7.3763, 7.3774, 7.3772, 7.3769, 7.3766, 7.3772, 7.3777, 7.3774, 7.3771, 7.3777, 7.3782, 7.3787, 7.3784, 7.3781, 7.3782, 7.3779, 7.3776, 7.3773, 7.3778, 7.3779, 7.3784, 7.3789, 7.3795, 7.3792, 7.3797, 7.3802, 7.3791, 7.3796, 7.3793, 7.379, 7.3795, 7.3784, 7.3774, 7.3788, 7.3785, 7.3782, 7.378, 7.3785, 7.3782, 7.3787, 7.3793, 7.3798, 7.3803, 7.38, 7.3797, 7.3802, 7.3799, 7.3789, 7.3794, 7.3791, 7.3788, 7.3794, 7.3792, 7.3789, 7.3787, 7.3792, 7.3789, 7.3786, 7.3783, 7.3788, 7.3793, 7.379, 7.3787, 7.3784, 7.3781, 7.3779, 7.3776, 7.3773, 7.377, 7.3767, 7.3764, 7.3762, 7.3767, 7.3764, 7.3769, 7.3767, 7.3764, 7.3761, 7.3759, 7.3756, 7.3753, 7.3751, 7.3749, 7.3754, 7.3759, 7.3756, 7.3753, 7.375, 7.3748, 7.3745, 7.3742, 7.3739, 7.3737, 7.3734, 7.3731, 7.3729, 7.3735, 7.3732, 7.3738, 7.3736, 7.3733, 7.3738, 7.3744, 7.3741, 7.3738, 7.3736, 7.3734, 7.3731, 7.3736, 7.3733, 7.3733, 7.3731, 7.3729, 7.3726, 7.3726, 7.3726, 7.3724, 7.373, 7.3739, 7.3745, 7.3743, 7.3742, 7.374, 7.3738, 7.3743, 7.3744, 7.3748, 7.3754, 7.3752, 7.3751, 7.3758, 7.3763, 7.3761, 7.3758, 7.3756, 7.3765, 7.3762, 7.3759, 7.3756, 7.3755, 7.3752, 7.375, 7.3772, 7.377, 7.3767, 7.3765, 7.3762, 7.3767, 7.3759, 7.3757, 7.3755, 7.3753, 7.3754, 7.3774, 7.3772, 7.3769, 7.3766, 7.3771, 7.3768, 7.3773, 7.3771, 7.3784, 7.3806, 7.3803, 7.3808, 7.3821, 7.3818, 7.3815, 7.3813, 7.3803, 7.38, 7.3797, 7.3794, 7.38, 7.3797, 7.3794, 7.3801, 7.3806, 7.3803, 7.3816, 7.3821, 7.3828, 7.3833, 7.3863, 7.3868, 7.3866, 7.3864, 7.3876, 7.3874, 7.3879, 7.3876, 7.3868, 7.3866, 7.3863, 7.386, 7.3868, 7.3873, 7.3902, 7.39, 7.3904, 7.3909, 7.3914, 7.3912, 7.391, 7.3915, 7.3913, 7.3911, 7.3908, 7.3905, 7.3902, 7.3899, 7.3896, 7.3902, 7.3907, 7.3904, 7.3901, 7.39, 7.3897, 7.3903, 7.3908, 7.3905, 7.3902, 7.394, 7.393, 7.3927, 7.3925, 7.393, 7.3943, 7.394, 7.3937, 7.3934, 7.3934, 7.3931, 7.3944, 7.3952, 7.3957, 7.3954, 7.3952, 7.3958, 7.395, 7.3947, 7.3947, 7.396, 7.3965, 7.3962, 7.3959, 7.3956, 7.3961, 7.3959, 7.3956, 7.3954, 7.3951, 7.3949, 7.3947, 7.3969, 7.3969, 7.3982, 7.3979, 7.3983, 7.3981, 7.3978, 7.397, 7.3967, 7.3964, 7.3961, 7.3959, 7.3956, 7.3954, 7.3959, 7.3956, 7.3953, 7.395, 7.3947, 7.3945, 7.3942, 7.3947, 7.3952, 7.3957, 7.3962, 7.396, 7.395, 7.3948, 7.3948, 7.3945, 7.3942, 7.3947, 7.3937, 7.3934, 7.3939, 7.3936, 7.3934, 7.3939, 7.3936, 7.3933, 7.3939, 7.3936, 7.3934, 7.3935, 7.3935, 7.3932, 7.3932, 7.3929, 7.3927, 7.3932, 7.3931, 7.3928, 7.3933, 7.3931, 7.3937, 7.3934, 7.3932, 7.393, 7.3928, 7.3925, 7.393, 7.3935, 7.394, 7.3938, 7.3943, 7.3942, 7.394, 7.3954, 7.3959, 7.3957, 7.3981, 7.3979, 7.3976, 7.3975, 7.3972, 7.397, 7.3975, 7.3988, 7.3986, 7.3983, 7.3981, 7.3979, 7.3976, 7.3975, 7.3973, 7.397, 7.3968, 7.3965, 7.397, 7.3967, 7.3972, 7.397, 7.3968, 7.3965, 7.3963, 7.396, 7.3958, 7.3955, 7.3954, 7.3952, 7.3957, 7.3962, 7.396, 7.3958, 7.3956, 7.3954, 7.3951, 7.3948, 7.3945, 7.395, 7.3948, 7.3945], '192.168.122.118': [5.2519, 5.612, 5.6834, 5.6276, 6.6697, 6.4454, 6.2746, 6.1606, 6.0736, 6.1624, 6.12, 6.063, 6.0678, 6.0353, 6.0231, 6.3542, 6.3076, 6.2717, 6.249, 6.5253, 6.4792, 6.4559, 6.4237, 6.4406, 6.4303, 6.3877, 6.3792, 6.3985, 6.3845, 6.3496, 6.3267, 6.2985, 6.2734, 6.2513, 6.2283, 6.3593, 6.3308, 6.3062, 6.2801, 6.258, 6.1425, 6.2555, 6.2447, 6.2489, 6.3518, 6.4483, 6.4219, 6.5144, 6.4942, 6.4707, 6.4548, 6.4341, 6.4147, 6.3962, 6.4831, 6.376, 6.4554, 6.4353, 6.418, 6.4051, 6.3902, 6.3724, 6.3656, 6.3685, 6.3706, 6.361, 6.3509, 6.3456, 6.3314, 6.4278, 6.4126, 6.4724, 6.4698, 6.4662, 6.4591, 6.4516, 6.4377, 6.4317, 6.4296, 6.5267, 6.5368, 6.6626, 6.6862, 6.6832, 6.6707, 6.6587, 6.6659, 6.6545, 6.6425, 6.6354, 6.631, 6.6812, 6.6778, 6.6669, 6.6066, 6.6515, 6.5925, 6.5818, 6.5732, 6.5609, 6.557, 6.5507, 6.542, 6.7504, 6.7424, 6.7364, 6.7227, 6.7206, 6.7133, 6.7003, 6.6936, 6.6865, 6.674, 6.6677, 6.7048, 6.6955, 6.6845, 6.6739, 6.621, 6.6843, 6.698, 6.6877, 6.6772, 6.6669, 6.6723, 6.7066, 6.7017, 6.7077, 6.6997, 6.6925, 6.7321, 6.7244, 6.7157, 6.7875, 6.7763, 6.7662, 6.7574, 6.7675, 6.7676, 6.825, 6.8198, 6.8135, 6.884, 6.8755, 6.8651, 6.8545, 6.8917, 6.9184, 6.9194, 6.9127, 6.8717, 6.8695, 6.8615, 6.8542, 6.8586, 6.8527, 6.8772, 6.8782000000000005, 6.8703, 6.871300000000001, 6.8701, 6.8638, 6.8549, 6.8477, 6.8395, 6.8352, 6.8262, 6.8209, 6.7843, 6.7769, 6.7697, 6.7657, 6.7599, 6.7542, 6.7532, 6.751, 6.7765, 6.772, 6.769, 6.7619, 6.758, 6.7505, 6.7732, 6.7685, 6.7608, 6.7866, 6.7805, 6.7725, 6.7939, 6.8152, 6.8102, 6.8312, 6.8526, 6.8453, 6.8384, 6.8394, 6.8328, 6.8253, 6.832, 6.833, 6.8265, 6.8477, 6.8452, 6.8388, 6.8339, 6.8536, 6.8476, 6.8683, 6.8664, 6.8638, 6.8611, 6.862100000000001, 6.8875, 6.9074, 6.9006, 6.8969, 6.9185, 6.9119, 6.905, 6.8777, 6.871, 6.8661, 6.8631, 6.8584, 6.8594, 6.8567, 6.8501, 6.8448, 6.8177, 6.8141, 6.8086, 6.8515, 6.8449, 6.8835, 6.8794, 6.8734, 6.891, 6.9414, 6.9858, 7.0232, 7.0199, 7.0135, 7.007, 6.9804, 6.9944, 7.0102, 7.0037, 7.0176, 7.0333, 7.0265, 7.0253, 7.0189, 7.0249, 7.0211, 6.9963, 6.9912, 6.9852, 6.9813, 6.9965, 7.0739, 7.0723, 7.0659, 7.0634, 7.0578, 7.0926, 7.088, 7.0966, 7.0911, 7.1074, 7.1028, 7.0999, 7.0944, 7.0752, 7.0731, 7.0876, 7.103, 7.0973, 7.0933, 7.1089, 7.1032, 7.0978, 7.0924, 7.1253, 7.1196, 7.1144, 7.1094, 7.1219, 7.1202, 7.1152, 7.1109, 7.1047, 7.1007, 7.113, 7.1299, 7.1313, 7.1255, 7.1411, 7.1349, 7.1312, 7.1263, 7.1637, 7.1589, 7.1546, 7.1494, 7.1636, 7.1588, 7.1529, 7.1318, 7.1257, 7.1385, 7.134, 7.1302, 7.1255, 7.1209, 7.1342, 7.1302, 7.1433, 7.1553, 7.1498, 7.1451, 7.1404, 7.136, 7.1316, 7.1428, 7.1383, 7.1347, 7.1507, 7.151, 7.1637, 7.1756, 7.1712, 7.2009, 7.198, 7.1927, 7.1808, 7.1927, 7.1952, 7.2059, 7.2169, 7.2123, 7.2093, 7.2044, 7.2147, 7.2103, 7.2052, 7.2159, 7.2113, 7.2843, 7.2809, 7.3501, 7.3607, 7.3567, 7.3517, 7.3466, 7.3571, 7.3518, 7.3622, 7.3722, 7.3666, 7.3635, 7.36, 7.3541, 7.3488, 7.3459, 7.3406, 7.3358, 7.3343, 7.3325, 7.3291, 7.3264, 7.3212, 7.3203, 7.3152, 7.3119, 7.3067, 7.3042, 7.2992, 7.309, 7.3057, 7.4002, 7.4091, 7.407, 7.4019, 7.3969, 7.4344, 7.4451, 7.454, 7.4644, 7.4735, 7.4687, 7.4663, 7.4667, 7.4888, 7.5101, 7.506, 7.5006, 7.497, 7.4921, 7.4868, 7.4829, 7.4777, 7.473, 7.4679, 7.4686, 7.4633, 7.459, 7.4544, 7.4528, 7.4474, 7.4436, 7.4389, 7.4418, 7.4498, 7.4478, 7.4452, 7.4461, 7.4763, 7.4721, 7.4808, 7.488, 7.4723, 7.4946, 7.4895, 7.4854, 7.4814, 7.4763, 7.4843, 7.4932, 7.4883, 7.4957, 7.4918, 7.4873, 7.4824, 7.4775, 7.4728, 7.4805, 7.4879, 7.4844, 7.4911, 7.4998, 7.5435, 7.5386, 7.546, 7.5412, 7.5363, 7.5313, 7.5264, 7.522, 7.5169, 7.5121, 7.5193, 7.5152, 7.5103, 7.4949, 7.4905, 7.4942, 7.4906, 7.486, 7.4812, 7.4791, 7.4767, 7.4719, 7.4684, 7.4644, 7.4646, 7.4604, 7.456, 7.4628, 7.4585, 7.4574, 7.4541, 7.4531, 7.4504, 7.4518, 7.4471, 7.4462, 7.4663, 7.4643, 7.4599, 7.4483, 7.4447, 7.4639, 7.4637, 7.4596, 7.4566, 7.4522, 7.4489, 7.437, 7.4411, 7.4365, 7.4325, 7.4282, 7.4236, 7.4206, 7.4163, 7.4234, 7.4196, 7.4168, 7.4128, 7.4238, 7.4209, 7.4218, 7.4184, 7.4141, 7.411, 7.4076, 7.4043, 7.4002, 7.407, 7.4031, 7.399, 7.3948, 7.3921, 7.3984, 7.3953, 7.4305, 7.4271, 7.4343, 7.4307, 7.4268, 7.4241, 7.4212, 7.4178, 7.4048, 7.4044, 7.402, 7.4002, 7.4061, 7.4034, 7.4015, 7.3986, 7.3973, 7.3952, 7.3927, 7.3888, 7.395, 7.4076, 7.4041, 7.3915, 7.3973, 7.3942, 7.3923, 7.4662, 7.4624, 7.4827, 7.4799, 7.4762, 7.4823, 7.4795, 7.4862, 7.4834, 7.4897, 7.4952, 7.4929, 7.4891, 7.487, 7.4841, 7.4905, 7.4962, 7.5111, 7.4986, 7.5002, 7.5297, 7.5314, 7.519, 7.5156, 7.5233, 7.5372, 7.5353, 7.5317, 7.528, 7.5258, 7.5226, 7.5204, 7.5261, 7.5322, 7.5282, 7.5341, 7.5307, 7.5268, 7.5331, 7.532, 7.5287, 7.5261, 7.5325, 7.5746, 7.58, 7.5851, 7.5816, 7.5957, 7.5837, 7.5741, 7.5891, 7.5862, 7.592, 7.5888, 7.5948, 7.5997, 7.598, 7.6076, 7.6126, 7.6281, 7.6252, 7.6227, 7.6501, 7.6467, 7.6432, 7.6415, 7.6379, 7.6346, 7.6314, 7.6374, 7.6432, 7.6406, 7.6459, 7.6421, 7.6392, 7.6356, 7.6242, 7.6214, 7.6264, 7.6323, 7.6296, 7.6349, 7.6312, 7.6321, 7.6378, 7.6348, 7.6328, 7.6295, 7.6262, 7.6314, 7.6279, 7.6329, 7.6381, 7.6344, 7.6394, 7.6445, 7.6408, 7.647, 7.6436, 7.6405, 7.6374, 7.6347, 7.6315, 7.6285, 7.6261, 7.6234, 7.6297, 7.6273, 7.6247, 7.6294, 7.626, 7.631, 7.6275, 7.6256, 7.6223, 7.6197, 7.6243, 7.6288, 7.6334, 7.6319, 7.6284, 7.6249, 7.6227, 7.6195, 7.6199, 7.6164, 7.6141, 7.6108, 7.6003, 7.5977, 7.5952, 7.6006, 7.6005, 7.6055, 7.603, 7.5996, 7.6057, 7.6039, 7.61, 7.607, 7.6042, 7.6009, 7.5988, 7.5982, 7.5954, 7.6009, 7.5983, 7.6035, 7.6006, 7.5997, 7.5971, 7.6026, 7.6006, 7.5978, 7.5945, 7.5916, 7.5882, 7.5858, 7.5827, 7.5795, 7.5793, 7.5839, 7.5807, 7.5778, 7.5746, 7.5652, 7.562, 7.5591, 7.556, 7.5604, 7.5648, 7.5624, 7.5593, 7.568, 7.5728, 7.5636, 7.5609, 7.5585, 7.5562, 7.5536, 7.5512, 7.5539, 7.5513, 7.5486, 7.5496, 7.547, 7.5473, 7.5445, 7.5416, 7.5391, 7.5365, 7.5351, 7.5332, 7.53, 7.5274, 7.5249, 7.5237, 7.5206, 7.5201, 7.5171, 7.5146, 7.5116, 7.5087, 7.5057, 7.5032, 7.5008, 7.4978, 7.4963, 7.4933, 7.4904, 7.4879, 7.485, 7.4907, 7.4911, 7.4883, 7.4863, 7.4772, 7.4749, 7.4727, 7.4704, 7.4748, 7.4727, 7.4713, 7.4685, 7.4662, 7.4634, 7.4678, 7.4653, 7.4637, 7.461, 7.4653, 7.4626, 7.46, 7.4599, 7.4643, 7.4681, 7.4724, 7.4763, 7.4738, 7.4917, 7.489, 7.4804, 7.4778, 7.4763, 7.4743, 7.4719, 7.4693, 7.4671, 7.4645, 7.4691, 7.4668, 7.4707, 7.4685, 7.4727, 7.4708, 7.4759, 7.4734, 7.474, 7.4721, 7.4694, 7.4667, 7.465, 7.4624, 7.4613, 7.4587, 7.4567, 7.4546, 7.4625, 7.46, 7.4588, 7.4564, 7.4545, 7.4604, 7.4656, 7.4589, 7.4596, 7.4572, 7.4553, 7.4531, 7.4509, 7.4484, 7.453, 7.4507, 7.4553, 7.4529, 7.4514, 7.4557, 7.4536, 7.4515, 7.4489, 7.4464, 7.4439, 7.4413, 7.4389, 7.4369, 7.4346, 7.4329, 7.4304, 7.4281, 7.4256, 7.4299, 7.4275, 7.4197, 7.4178, 7.4161, 7.4137, 7.4111, 7.409, 7.4067, 7.4046, 7.4027, 7.4069, 7.3989, 7.3965, 7.4005, 7.3989, 7.3972, 7.3949, 7.3924, 7.3908, 7.39, 7.3878, 7.3854, 7.3837, 7.3879, 7.3856, 7.3895, 7.3871, 7.3854, 7.3842, 7.3818, 7.3858, 7.3845, 7.3822, 7.3809, 7.3786, 7.3849, 7.3827, 7.3886, 7.3869, 7.387, 7.3862, 7.3841, 7.3823, 7.3805, 7.3793, 7.3771, 7.3759, 7.3737, 7.3733, 7.372, 7.3699, 7.3676, 7.3664, 7.3649, 7.3686, 7.3668, 7.3646, 7.3626, 7.3608, 7.359, 7.3572, 7.3609, 7.365, 7.3628, 7.361, 7.3592, 7.3637, 7.3689, 7.3671, 7.371, 7.3688, 7.3669, 7.3702, 7.3737, 7.3716, 7.3754, 7.3737, 7.3774, 7.3813, 7.3794, 7.3776, 7.3811, 7.3849, 7.3833, 7.3813, 7.3888, 7.3923, 7.3903, 7.3882, 7.3995, 7.3974, 7.3953, 7.3934, 7.4203, 7.4182, 7.4215, 7.4201, 7.4237, 7.4273, 7.4257, 7.4293, 7.4276, 7.4313, 7.4346, 7.4382, 7.4367, 7.4344, 7.4322, 7.4253, 7.4237, 7.4277, 7.4316, 7.4354, 7.4389, 7.4376, 7.4364, 7.4414, 7.4396, 7.4376, 7.4354, 7.4335, 7.4319, 7.4296, 7.4333, 7.4367, 7.44, 7.4377, 7.4361, 7.434, 7.4326, 7.4364, 7.4343, 7.432, 7.4303, 7.4289, 7.4322, 7.4251, 7.4286, 7.4216, 7.4195, 7.4174, 7.4155, 7.4189, 7.4169, 7.4205, 7.4184, 7.4216, 7.4252, 7.4289, 7.4324, 7.4304, 7.4337, 7.4318, 7.4353, 7.4333, 7.4313, 7.4349, 7.4501, 7.4481, 7.4464, 7.4498, 7.4482, 7.4517, 7.4495, 7.4536, 7.4518, 7.4497, 7.4476, 7.4455, 7.4434, 7.4421, 7.4399, 7.438, 7.4368, 7.4347, 7.4336, 7.4368, 7.4405, 7.4393, 7.4425, 7.4407, 7.4389, 7.4369, 7.4308, 7.4296, 7.4278, 7.4312, 7.4292, 7.4325, 7.432, 7.4349, 7.4335, 7.4368, 7.4358, 7.4346, 7.4328, 7.4309, 7.4293, 7.4274, 7.4305, 7.4337, 7.4322, 7.431, 7.4291, 7.4319, 7.4298, 7.4331, 7.4435, 7.4511, 7.4545, 7.453, 7.4561, 7.4544, 7.4735, 7.4717, 7.4696, 7.4682, 7.472, 7.4757, 7.4742, 7.4774, 7.4856, 7.4847, 7.4829, 7.4828, 7.482, 7.4805, 7.4785, 7.4764, 7.4794, 7.4741, 7.4776, 7.4806, 7.4836, 7.4815, 7.4794, 7.4823, 7.4803, 7.4782, 7.4762, 7.4741, 7.4726, 7.4706, 7.47, 7.4685, 7.467, 7.4657, 7.4642, 7.4626, 7.461, 7.459, 7.4575, 7.4556, 7.4538, 7.4518, 7.4499, 7.448, 7.442, 7.4402, 7.4384, 7.4411, 7.444, 7.4469, 7.4453, 7.4433, 7.4414, 7.4398, 7.4384, 7.438, 7.4361, 7.4455, 7.444, 7.4476, 7.4463, 7.445, 7.4482, 7.4621, 7.4605, 7.4639, 7.4668, 7.4655, 7.4651, 7.464, 7.4624, 7.4654, 7.4635, 7.4624, 7.4606, 7.4589, 7.4572, 7.4603, 7.4587, 7.462, 7.4652, 7.4633, 7.4663, 7.4646, 7.4585, 7.4574, 7.4604, 7.4587, 7.4571, 7.4564, 7.4549, 7.4577, 7.4608, 7.4589, 7.4581, 7.4564, 7.4682, 7.4699, 7.4699, 7.4743, 7.4745, 7.4744, 7.4727, 7.4759, 7.4744, 7.473, 7.4813, 7.4798, 7.4829, 7.4861, 7.489, 7.4876, 7.4861, 7.4893, 7.4874, 7.486, 7.4841, 7.4865, 7.4897, 7.4882, 7.4867, 7.4853, 7.4839, 7.4825, 7.4854, 7.4845, 7.4831, 7.4817, 7.4804, 7.4833, 7.4905, 7.4935, 7.492, 7.4906, 7.5113, 7.5139, 7.5125, 7.5115, 7.514, 7.5121, 7.5112, 7.5093, 7.5118, 7.5149, 7.5133, 7.5119, 7.5105, 7.5091, 7.5078, 7.5062, 7.5091, 7.5116, 7.51, 7.5086, 7.5114, 7.5141, 7.5124, 7.5111, 7.5138, 7.512, 7.5104, 7.5103, 7.5085, 7.5113, 7.5115, 7.5097, 7.5083, 7.5074, 7.5056, 7.5045, 7.5056, 7.5041, 7.5069, 7.5058, 7.5089, 7.5076, 7.5059, 7.5137, 7.5119, 7.5102, 7.5087, 7.511, 7.5104, 7.5092, 7.508, 7.5068, 7.5053, 7.5036, 7.5126, 7.5153, 7.5137, 7.5191, 7.5223, 7.5222, 7.5249, 7.5279, 7.5272, 7.5254, 7.5238, 7.5265, 7.5296, 7.5279, 7.5302, 7.5286, 7.5273, 7.526, 7.5247, 7.5233, 7.5224, 7.5247, 7.5236, 7.5345, 7.5405, 7.5349, 7.535, 7.5366, 7.5373, 7.5359, 7.5355, 7.5345, 7.5331, 7.5313, 7.5295, 7.5279, 7.5283, 7.5269, 7.5215, 7.5241, 7.5227, 7.5214, 7.5198, 7.518, 7.5247, 7.5231, 7.5257, 7.5241, 7.5226, 7.5254, 7.5237, 7.5306, 7.5335, 7.532, 7.5269, 7.5254, 7.5242, 7.5228, 7.5211, 7.5239, 7.5222, 7.5207, 7.5201, 7.5227, 7.5219, 7.5203, 7.5229, 7.5252, 7.5235, 7.5218, 7.5243, 7.5265, 7.5253, 7.5241, 7.5271, 7.5265, 7.5249, 7.5256, 7.5242, 7.531, 7.5296, 7.528, 7.5303, 7.526, 7.5263, 7.5293, 7.5324, 7.5307, 7.5303, 7.5288, 7.5272, 7.5259, 7.5248, 7.5204, 7.5187, 7.5179, 7.5166, 7.5154, 7.5142, 7.5125, 7.5108, 7.5099, 7.5131, 7.5158, 7.5142, 7.5138, 7.5168, 7.5151, 7.5173, 7.5199, 7.5187, 7.5176, 7.5161, 7.5148, 7.5178, 7.5167, 7.519, 7.5176, 7.5201, 7.5249, 7.5234, 7.5223, 7.5207, 7.5259, 7.5248, 7.5201, 7.5226, 7.5217, 7.5204, 7.5187, 7.517, 7.5158, 7.5142, 7.5132, 7.5125, 7.5112, 7.5063, 7.5048, 7.5034, 7.5018, 7.5003, 7.4989, 7.4978, 7.4969, 7.4954, 7.494, 7.4929, 7.4913, 7.4898, 7.4886, 7.487, 7.4855, 7.4886, 7.4872, 7.4897, 7.4917, 7.4903, 7.4927, 7.4949, 7.4933, 7.4921, 7.4906, 7.493, 7.4951, 7.4935, 7.4925, 7.4951, 7.4935, 7.4924, 7.4915, 7.4902, 7.4901, 7.4885, 7.4875, 7.4861, 7.4846, 7.4834, 7.4818, 7.4803, 7.4788, 7.4773, 7.476, 7.4747, 7.4734, 7.4723, 7.4748, 7.4699, 7.4719, 7.4704, 7.4695, 7.4682, 7.4668, 7.4657, 7.4682, 7.4704, 7.4691, 7.4715, 7.4702, 7.4728, 7.4714, 7.47, 7.4653, 7.4673, 7.4676, 7.4674, 7.4663, 7.465, 7.4641, 7.4708, 7.4728, 7.4752, 7.4775, 7.4765, 7.4753, 7.474, 7.4831, 7.4784, 7.4769, 7.4757, 7.4744, 7.473, 7.4717, 7.4703, 7.4688, 7.4675, 7.4662, 7.4686, 7.4674, 7.466, 7.4684, 7.4712, 7.4737, 7.4724, 7.4711, 7.4697, 7.4684, 7.467, 7.4659, 7.4621, 7.4645, 7.4633, 7.4621, 7.465, 7.4639, 7.4625, 7.465, 7.464, 7.4635, 7.4655, 7.4644, 7.463, 7.4659, 7.4648, 7.467, 7.4663, 7.4651, 7.4638, 7.466, 7.472, 7.471, 7.4696, 7.4681, 7.4666, 7.4658, 7.4652, 7.4642, 7.4629, 7.4621, 7.4607, 7.4597, 7.4585, 7.4571, 7.4558, 7.4579, 7.4565, 7.4552, 7.4542, 7.4551, 7.4538, 7.4523, 7.451, 7.4507, 7.4499, 7.4453, 7.4444, 7.4431, 7.4418, 7.4404, 7.4425, 7.4411, 7.444, 7.4463, 7.4487, 7.4509, 7.45, 7.4455, 7.4442, 7.4429, 7.4418, 7.4404, 7.4393, 7.4387, 7.4374, 7.436, 7.4346, 7.437, 7.4356, 7.4348, 7.4387, 7.4376, 7.4367, 7.4372, 7.4336, 7.4328, 7.4319, 7.4307, 7.433, 7.4354, 7.4373, 7.4361, 7.4418, 7.4405, 7.4395, 7.4387, 7.4374, 7.4362, 7.4385, 7.4475, 7.4462, 7.4453, 7.4443, 7.4432, 7.4441, 7.4428, 7.4416, 7.4404, 7.4394, 7.4418, 7.4408, 7.4434, 7.4423, 7.4445, 7.4432, 7.4426, 7.4446, 7.4542, 7.4566, 7.4554, 7.4574, 7.4595, 7.465, 7.467, 7.4659, 7.4654, 7.4644, 7.4634, 7.463, 7.4653, 7.4642, 7.4628, 7.4618, 7.4645, 7.4631, 7.4654, 7.4679, 7.4674, 7.4681, 7.467, 7.4657, 7.4648, 7.464, 7.4627, 7.465, 7.4636, 7.4622, 7.461, 7.4599, 7.4588, 7.464, 7.4633, 7.4658, 7.4648, 7.464, 7.463, 7.4621, 7.4612, 7.4634, 7.4656, 7.4647, 7.4668, 7.4734, 7.476, 7.4748, 7.4716, 7.4705, 7.4693, 7.4693, 7.4681, 7.4744, 7.4736, 7.4724, 7.4746, 7.4739, 7.4728, 7.4686, 7.4711, 7.4699, 7.4657, 7.4646, 7.4636, 7.4675, 7.4694, 7.4776, 7.4768, 7.4788, 7.4776, 7.4764, 7.4751, 7.4742, 7.473, 7.4752, 7.474, 7.4732, 7.4724, 7.4714, 7.4701, 7.4703, 7.4693, 7.4686, 7.4674, 7.4694, 7.475, 7.4737, 7.4756, 7.4747, 7.477, 7.4757, 7.4745, 7.4733, 7.4725, 7.4717, 7.4704, 7.4695, 7.4716, 7.4736, 7.4725, 7.4716, 7.4707, 7.4698, 7.4689, 7.4736, 7.4723, 7.4711, 7.47, 7.4687, 7.4676, 7.4668, 7.4688, 7.4678, 7.4665, 7.4657, 7.468, 7.4702, 7.4691, 7.4713, 7.4736, 7.4727, 7.4717, 7.4705, 7.4694, 7.4686, 7.4705, 7.4693, 7.4683, 7.4671, 7.4691, 7.4711, 7.4731, 7.4751, 7.474, 7.4728, 7.4719, 7.477, 7.4761, 7.4723, 7.4713, 7.4735, 7.4724, 7.4748, 7.4737, 7.4726, 7.4747, 7.4739, 7.4728, 7.4796, 7.4784, 7.4805, 7.4824, 7.4813, 7.4805, 7.4795, 7.4789, 7.4779, 7.4807, 7.486, 7.4908, 7.4895, 7.4915, 7.4932, 7.4921, 7.4912, 7.4932, 7.4921, 7.4953, 7.4941, 7.493, 7.4986, 7.4976, 7.4965, 7.4957, 7.4949, 7.4937, 7.4925, 7.4918, 7.4907, 7.4896, 7.4884, 7.4875, 7.4869, 7.4857, 7.4846, 7.4835, 7.4825, 7.4812, 7.4801, 7.4789, 7.4777, 7.4738, 7.4758, 7.4746, 7.4765, 7.4814, 7.4834, 7.4824, 7.4813, 7.4804, 7.4793, 7.4781, 7.48, 7.4819, 7.4836, 7.4826, 7.4814, 7.4832, 7.4853, 7.4843, 7.487, 7.4859, 7.4849, 7.4838, 7.4829, 7.4848, 7.4867, 7.4858, 7.4856, 7.4846, 7.4925, 7.4916, 7.4909, 7.4899, 7.4861, 7.4853, 7.4845, 7.4834, 7.4855, 7.4874, 7.489, 7.488, 7.487, 7.4887, 7.4882, 7.4872, 7.486, 7.488, 7.4872, 7.486, 7.4878, 7.4873, 7.4864, 7.4882, 7.4871, 7.486, 7.4849, 7.4841, 7.4833, 7.4822, 7.4816, 7.4805, 7.4794, 7.4787, 7.4784, 7.4773, 7.4773, 7.4761, 7.4752, 7.4778, 7.4818, 7.4814, 7.483, 7.4825, 7.4816, 7.4835, 7.4824, 7.4842, 7.483, 7.4826, 7.4842, 7.4831, 7.4851, 7.4842, 7.4861, 7.485, 7.4841, 7.4829, 7.4818, 7.4834, 7.4853, 7.4843, 7.4835, 7.4852, 7.4841, 7.4839, 7.4802, 7.479, 7.4783, 7.4771, 7.4759, 7.4755, 7.4772, 7.479, 7.4784, 7.4774, 7.4764, 7.4789, 7.4778, 7.4767, 7.4756, 7.4745, 7.476, 7.4749, 7.4743, 7.4732, 7.4721, 7.471, 7.47, 7.4692, 7.4686, 7.4675, 7.4664, 7.4629, 7.4647, 7.4636, 7.4624, 7.4617, 7.4606, 7.4598, 7.4586, 7.4574, 7.4565, 7.4558, 7.4558, 7.4529, 7.4519, 7.4508, 7.451, 7.45, 7.4497, 7.4486, 7.448, 7.4455, 7.4486, 7.4479, 7.4472, 7.4473, 7.4465, 7.4457, 7.4504, 7.4493, 7.4509, 7.4498, 7.4514, 7.4506, 7.4494, 7.4485, 7.4478, 7.447, 7.4462, 7.4483, 7.4475, 7.449, 7.4479, 7.447, 7.446, 7.443, 7.442, 7.4412, 7.443, 7.4421, 7.4443, 7.4436, 7.4455, 7.4479, 7.447, 7.4489, 7.4479, 7.4498, 7.4517, 7.452, 7.4511, 7.45, 7.4519, 7.451, 7.4502, 7.4496, 7.4511, 7.45, 7.4491, 7.4508, 7.4502, 7.4523, 7.4517, 7.4506, 7.4502, 7.4493, 7.4465, 7.4461, 7.4451, 7.4442, 7.4432, 7.4426, 7.442, 7.4411, 7.4403, 7.4394, 7.4384, 7.4374, 7.4365, 7.4359, 7.4324, 7.4339, 7.4331, 7.4325, 7.4319, 7.4311, 7.4301, 7.4324, 7.4341, 7.4335, 7.4325, 7.4314, 7.4329, 7.4319, 7.4308, 7.4298, 7.429, 7.4279, 7.4269, 7.4259, 7.4249, 7.4242, 7.4232, 7.4222, 7.4213, 7.4233, 7.4225, 7.422, 7.4215, 7.4209, 7.4227, 7.4219, 7.4211, 7.4227, 7.4276, 7.427, 7.4289, 7.4282, 7.4274, 7.4268, 7.4286, 7.4277, 7.4269, 7.4261, 7.428, 7.4269, 7.4258, 7.425, 7.4263, 7.4255, 7.4246, 7.4235, 7.4253, 7.4271, 7.4289, 7.429, 7.4309, 7.4298, 7.429, 7.4283, 7.4273, 7.4264, 7.4256, 7.4246, 7.4239, 7.4257, 7.4249, 7.4242, 7.4232, 7.4224, 7.424, 7.423, 7.4245, 7.4237, 7.4253, 7.4246, 7.4239, 7.4255, 7.4245, 7.4237, 7.4254, 7.4247, 7.4237, 7.4231, 7.4221, 7.4239, 7.4233, 7.4227, 7.4217, 7.4209, 7.4224, 7.4217, 7.4208, 7.4199, 7.4188, 7.4179, 7.4195, 7.4162, 7.4152, 7.412, 7.4114, 7.4107, 7.4124, 7.4114, 7.4107, 7.4097, 7.4089, 7.408, 7.4071, 7.4039, 7.4032, 7.4022, 7.4038, 7.4029, 7.4021, 7.4014, 7.4005, 7.3997, 7.3987, 7.3956, 7.3973, 7.3963, 7.3956, 7.3949, 7.394, 7.3955, 7.3957, 7.3972, 7.3967, 7.3963, 7.3954, 7.3947, 7.3939, 7.3931, 7.3921, 7.3914, 7.3904, 7.3895, 7.3886, 7.3876, 7.3867, 7.3861, 7.3878, 7.3869, 7.3862, 7.3853, 7.387, 7.3839, 7.3836, 7.3827, 7.3868, 7.3886, 7.3878, 7.3871, 7.3914, 7.3905, 7.3898, 7.3939, 7.3933, 7.3923, 7.3939, 7.3931, 7.3922, 7.3936, 7.395, 7.3941, 7.3945, 7.3938, 7.3952, 7.3966, 7.3982, 7.3974, 7.3978, 7.3996, 7.4014, 7.4004, 7.3996, 7.3986, 7.3978, 7.3978, 7.3972, 7.3962, 7.3953, 7.3943, 7.3963, 7.3979, 7.397, 7.3963, 7.3954, 7.3945, 7.3935, 7.395, 7.3966, 7.3957, 7.3928, 7.3921, 7.4039, 7.4036, 7.4027, 7.4043, 7.4035, 7.4026, 7.4017, 7.4016, 7.4007, 7.3997, 7.3988, 7.3958, 7.3949, 7.394, 7.393, 7.392, 7.3937, 7.3927, 7.3942, 7.3958, 7.3959, 7.3952, 7.3944, 7.3936, 7.395, 7.3948, 7.3938, 7.3933, 7.3925, 7.3918, 7.3909, 7.39, 7.3893, 7.3884, 7.3899, 7.3916, 7.3908, 7.3899, 7.3891, 7.3908, 7.3904, 7.3917, 7.3935, 7.3928, 7.3919, 7.3915, 7.3906, 7.3922, 7.3913, 7.3904, 7.3966, 7.4055, 7.4055, 7.4048, 7.4041, 7.401, 7.4002, 7.3972, 7.397, 7.3969, 7.3983, 7.4001, 7.3993, 7.4016, 7.4007, 7.4, 7.3975, 7.3968, 7.4015, 7.4017, 7.401, 7.4002, 7.4018, 7.4009, 7.4024, 7.3994, 7.3987, 7.3987, 7.3979, 7.3996, 7.3992, 7.3985, 7.3978, 7.3993, 7.3986, 7.3977, 7.397, 7.3964, 7.3966, 7.3963, 7.3958, 7.3973, 7.3971, 7.3986, 7.3957, 7.3948, 7.3963, 7.3955, 7.3947, 7.3934, 7.3929, 7.3922, 7.3915, 7.392, 7.3913, 7.3929, 7.3944, 7.3958, 7.3952, 7.3967, 7.3958, 7.3949, 7.3964, 7.3962, 7.3955, 7.395, 7.3941, 7.3937, 7.3932, 7.3925, 7.3916, 7.3907, 7.3898, 7.3912, 7.3905, 7.39, 7.3894, 7.3885, 7.3878, 7.3869, 7.3861, 7.3875, 7.3866, 7.3859, 7.3873, 7.3864, 7.3855, 7.3859, 7.3851, 7.3865, 7.3856, 7.3848, 7.3844, 7.3859, 7.3852, 7.3843, 7.3836, 7.3833, 7.388, 7.3897, 7.3898, 7.3915, 7.3909, 7.3903, 7.3898, 7.3908000000000005, 7.3902, 7.3895, 7.3886, 7.3899, 7.3892, 7.3907, 7.3899, 7.3892, 7.3884, 7.3875, 7.3866, 7.3861, 7.3876, 7.389, 7.3881, 7.3895, 7.3909, 7.39, 7.3891, 7.3882, 7.3898, 7.3908000000000005, 7.388, 7.3883, 7.3913, 7.3911, 7.3909, 7.3908, 7.3902, 7.3898, 7.389, 7.3905, 7.3879, 7.3905, 7.3899, 7.3893, 7.3886, 7.3863, 7.3859, 7.3852, 7.3846, 7.3839, 7.3833, 7.3824, 7.3838, 7.3831, 7.3823, 7.3814, 7.3831, 7.3844, 7.3859, 7.3855, 7.3847, 7.3882, 7.3874, 7.3888, 7.3928, 7.3921, 7.3918, 7.3913, 7.3904, 7.3895, 7.3887, 7.3908, 7.3921, 7.3912, 7.3926, 7.3919, 7.391, 7.3925, 7.3941, 7.3938, 7.3933, 7.3946, 7.3938, 7.3931, 7.3923, 7.3901, 7.3894, 7.3866, 7.3843, 7.3858, 7.385, 7.3874, 7.3857, 7.3874, 7.3865, 7.3857, 7.3851, 7.3823, 7.3815, 7.3813, 7.3786, 7.3777, 7.3792, 7.3787, 7.3759, 7.3753, 7.3769, 7.3761, 7.3753, 7.3744, 7.3737, 7.3731, 7.3746, 7.376, 7.3754, 7.3768, 7.378, 7.3778, 7.375, 7.3764, 7.3792, 7.3784, 7.3933, 7.3925, 7.3924, 7.3918, 7.3914, 7.3909, 7.3902, 7.3914, 7.3906, 7.3902, 7.3895, 7.3887, 7.3879, 7.3893, 7.3907, 7.3902, 7.3894, 7.3887, 7.3903, 7.3918, 7.3911, 7.3943, 7.3981, 7.4022, 7.4103, 7.4096, 7.411, 7.4102, 7.4116, 7.4109, 7.4102, 7.4117, 7.411, 7.4124, 7.4137, 7.4129, 7.4121, 7.4135, 7.4131, 7.4122, 7.4114, 7.4105, 7.4097, 7.4111, 7.4105, 7.4078, 7.4075, 7.4066, 7.406, 7.4052, 7.4066, 7.4061, 7.4057, 7.4049, 7.4063, 7.4057, 7.405, 7.4042, 7.4034, 7.4026, 7.4022, 7.4015, 7.4027, 7.4019, 7.4011, 7.4024, 7.4022, 7.4038, 7.4032, 7.4023, 7.4016, 7.4009, 7.4025, 7.4039, 7.4031, 7.4043, 7.4056, 7.4049, 7.4027, 7.4019, 7.4011, 7.4019, 7.401, 7.4003, 7.3995, 7.4031, 7.4023, 7.4017, 7.4011, 7.4004, 7.4, 7.3998, 7.3989, 7.3963, 7.4015, 7.4013, 7.4011, 7.4003, 7.3999, 7.3991, 7.4004, 7.3999, 7.3991, 7.3985, 7.3985, 7.3998, 7.3993, 7.3985, 7.3977, 7.3973, 7.3989, 7.3981, 7.3975, 7.399, 7.3982, 7.3993, 7.3985, 7.399500000000001, 7.3987, 7.3979, 7.3971, 7.3964, 7.3958, 7.397, 7.3982, 7.3975, 7.397, 7.3984, 7.3997, 7.4012, 7.4032, 7.4026, 7.4038, 7.4031, 7.4023, 7.4016, 7.4009, 7.4001, 7.4013, 7.4061, 7.4075, 7.4103, 7.4105, 7.4107, 7.4107, 7.4099, 7.4093, 7.4084, 7.4077, 7.4087000000000005, 7.409700000000001, 7.411, 7.4124, 7.4137, 7.4129, 7.4142, 7.4155, 7.4168, 7.416, 7.4173, 7.4168, 7.4161, 7.4155, 7.4149, 7.4123, 7.4115, 7.4111, 7.4103, 7.4097, 7.411, 7.4102, 7.4094, 7.4086, 7.4078, 7.4091, 7.4083, 7.4077, 7.4071, 7.4063, 7.4055, 7.406, 7.4062, 7.4054, 7.4049, 7.4041, 7.4046, 7.408, 7.4073, 7.4066, 7.406, 7.4097, 7.411, 7.4102, 7.4095, 7.4087, 7.4082, 7.4074, 7.407, 7.4062, 7.4056, 7.4052, 7.4046, 7.4061, 7.4055, 7.4049, 7.4062, 7.4057, 7.4049, 7.4042, 7.4055, 7.4071, 7.4084, 7.4078, 7.4076, 7.4075, 7.4075, 7.4089, 7.4081, 7.4074, 7.409, 7.4102, 7.4099, 7.4116, 7.4113, 7.4106, 7.41, 7.4094, 7.4091, 7.4107, 7.4122, 7.4115, 7.4109, 7.4123, 7.4117, 7.4153, 7.4253, 7.4328, 7.4342, 7.4338, 7.4331, 7.4326, 7.4323, 7.4298, 7.4305, 7.4321, 7.4333, 7.4346, 7.436, 7.4353, 7.4348, 7.4353, 7.4381, 7.4394, 7.4386, 7.4382, 7.4375, 7.435, 7.4363, 7.4355, 7.4351, 7.4347, 7.4346, 7.4339, 7.4351, 7.4345, 7.4338, 7.4408, 7.44, 7.4412, 7.4404, 7.4396, 7.4388, 7.4399, 7.4393, 7.4406, 7.4402, 7.4395, 7.4389, 7.4401, 7.4396, 7.4388, 7.438, 7.4374, 7.4387, 7.4382, 7.4385, 7.4377, 7.4353, 7.4354, 7.4347, 7.436, 7.4352, 7.4376, 7.4368, 7.4362, 7.4355, 7.4352, 7.4344, 7.4338, 7.4333, 7.4326, 7.4319, 7.4314, 7.4325, 7.4337, 7.4349, 7.44, 7.4412, 7.4404, 7.4416, 7.4409, 7.4421, 7.4414, 7.4406, 7.4398, 7.4393, 7.4386, 7.4381, 7.4392, 7.4386, 7.4397, 7.4373, 7.4366, 7.4358, 7.435, 7.4362, 7.4377, 7.4389, 7.4401, 7.4412, 7.4404, 7.4398, 7.4425, 7.4417, 7.441, 7.4404, 7.4408, 7.4401, 7.4406, 7.442, 7.4432, 7.4425, 7.4437, 7.4413, 7.4424, 7.4435, 7.4428, 7.4422, 7.4414, 7.4406, 7.4398, 7.4392, 7.4385, 7.438, 7.4391, 7.4402, 7.4394, 7.4405, 7.44, 7.4409, 7.4407, 7.4402, 7.4394, 7.4405, 7.4397, 7.4409, 7.4401, 7.4413, 7.4405, 7.4418, 7.4427, 7.4419, 7.4412, 7.4406, 7.4398, 7.4392, 7.4403, 7.4415, 7.4433, 7.4427, 7.4422, 7.4433, 7.4425, 7.4419, 7.4412, 7.4412, 7.4406, 7.4418, 7.4411, 7.4404, 7.4399, 7.4487, 7.4482, 7.4475, 7.4468, 7.4461, 7.4456, 7.4451, 7.4445, 7.4464, 7.448, 7.4475, 7.4469, 7.4461, 7.4474, 7.4467, 7.4459, 7.4451, 7.4427, 7.4421, 7.4459, 7.4452, 7.4464, 7.4476, 7.447, 7.4462, 7.4458, 7.447, 7.4481, 7.4491, 7.4484, 7.4495, 7.4487, 7.4499, 7.4493, 7.4505, 7.4501, 7.4479, 7.4475, 7.447, 7.4481, 7.4476, 7.4489, 7.4485, 7.4486, 7.4499, 7.4476, 7.4508, 7.4501, 7.4497, 7.4491, 7.4488, 7.4464, 7.4459, 7.447, 7.4483, 7.448, 7.4473, 7.4597, 7.4598, 7.4591, 7.4592, 7.4585, 7.458, 7.4575, 7.4588, 7.4571, 7.4585, 7.4596, 7.4607, 7.46, 7.4593, 7.4605, 7.4598, 7.4593, 7.4588, 7.4581, 7.4596, 7.4592, 7.4586, 7.4579, 7.4572, 7.4565, 7.4561, 7.4554, 7.4565, 7.4558, 7.4551, 7.4543, 7.4536, 7.4529, 7.4524, 7.4517, 7.451, 7.4486, 7.4479, 7.4473, 7.4466, 7.446, 7.4453, 7.4446, 7.4459, 7.4455, 7.4448, 7.4441, 7.4441, 7.4418, 7.4429, 7.4441, 7.4434, 7.4428, 7.4422, 7.4415, 7.441, 7.4403, 7.4396, 7.4389, 7.4383, 7.4379, 7.4395, 7.4387, 7.438, 7.4373, 7.4384, 7.438, 7.4391, 7.4384, 7.438, 7.4375, 7.437, 7.4384, 7.4379, 7.4374, 7.4388, 7.4399, 7.441, 7.4405, 7.4417, 7.4411, 7.4406, 7.4401, 7.4396, 7.4408, 7.442, 7.4415, 7.4408, 7.4402, 7.4414, 7.4409, 7.4402, 7.4396, 7.439, 7.4383, 7.4383, 7.4376, 7.4353, 7.4367, 7.436, 7.437, 7.4364, 7.4358, 7.4371, 7.4365, 7.4358, 7.4352, 7.4348, 7.4341, 7.4338, 7.4332, 7.4326, 7.432, 7.4313, 7.4325, 7.432, 7.4314, 7.4309, 7.4303, 7.4315, 7.4327, 7.4321, 7.4314, 7.4308, 7.4301, 7.4312, 7.431, 7.4303, 7.434, 7.4351, 7.4362, 7.4373, 7.4368, 7.4382, 7.4379, 7.4372, 7.4383, 7.4394, 7.4389, 7.4382, 7.4375, 7.4371, 7.4365, 7.436, 7.4354, 7.4365, 7.4359, 7.4353, 7.4359, 7.4356, 7.4334, 7.4327, 7.4339, 7.4335, 7.4351, 7.4361, 7.4356, 7.4352, 7.4345, 7.4338, 7.4348, 7.4354, 7.4348, 7.4341, 7.4336, 7.433, 7.4325, 7.4319, 7.4312, 7.4325, 7.4321, 7.4315, 7.4309, 7.4321, 7.4317, 7.4311, 7.4304, 7.43, 7.4311, 7.4321, 7.4332, 7.4326, 7.4319, 7.4312, 7.4307, 7.4302, 7.4329, 7.4323, 7.4317, 7.4311, 7.4309, 7.4302, 7.4295, 7.4307, 7.4301, 7.4297, 7.4294, 7.4287, 7.4282, 7.4292, 7.4285, 7.4282, 7.4275, 7.4269, 7.4262, 7.4255, 7.4249, 7.4244, 7.4283, 7.4278, 7.4272, 7.4266, 7.426, 7.4255, 7.4233, 7.4226, 7.422, 7.4214, 7.4208, 7.4202, 7.4196, 7.4191, 7.4184, 7.4206, 7.4201, 7.4212, 7.4206, 7.4199, 7.4192, 7.4186, 7.42, 7.4194, 7.419, 7.4185, 7.4181, 7.4191, 7.4184, 7.418, 7.4159, 7.4153, 7.4148, 7.4145, 7.4138, 7.4131, 7.4124, 7.4136, 7.4146, 7.4142, 7.4137, 7.4135, 7.4128, 7.4106, 7.4101, 7.4112, 7.4106, 7.4106, 7.4099, 7.4093, 7.4121, 7.4114, 7.4111, 7.4105, 7.4098, 7.4093, 7.4104, 7.4099, 7.4112, 7.4105, 7.4084, 7.4084, 7.4083, 7.4094, 7.409, 7.4117, 7.4113, 7.4123, 7.4134, 7.4145, 7.4139, 7.4132, 7.4126, 7.4121, 7.4117, 7.4111, 7.4105, 7.4115, 7.4109, 7.4119, 7.4113, 7.4109, 7.4104, 7.4097, 7.409, 7.4086, 7.408, 7.4074, 7.4069, 7.4082, 7.4097, 7.4092, 7.4086, 7.4082, 7.4081, 7.4091, 7.4086, 7.408, 7.4074, 7.4068, 7.4062, 7.4077, 7.4088, 7.4099, 7.4092, 7.4104, 7.4098, 7.4092, 7.4102, 7.4098, 7.4109, 7.4105, 7.4099, 7.4109, 7.4103, 7.4113, 7.4124, 7.4124, 7.4118, 7.4129, 7.4109, 7.4199, 7.4193, 7.4188, 7.4182, 7.4193, 7.4187, 7.4181, 7.4176, 7.4169, 7.4166, 7.416, 7.4154, 7.415, 7.4145, 7.4173, 7.4168, 7.4162, 7.4156, 7.4135, 7.4129, 7.4126, 7.4137, 7.4131, 7.413, 7.4113, 7.4148, 7.4143, 7.4154, 7.4148, 7.4159, 7.4153, 7.4136, 7.413, 7.414, 7.4135, 7.4145, 7.4139, 7.4213, 7.4217, 7.421, 7.4204, 7.4198, 7.4192, 7.4189, 7.42, 7.4211, 7.4204, 7.4201, 7.4197, 7.4192, 7.4187, 7.4227, 7.4222, 7.4216, 7.421, 7.4205, 7.4267, 7.4261, 7.4254, 7.4264, 7.4275, 7.427, 7.4263, 7.4256, 7.4249, 7.4244, 7.425, 7.4246, 7.4241, 7.4235, 7.4229, 7.4225, 7.4219, 7.42, 7.4196, 7.4191, 7.4187, 7.4181, 7.4191, 7.42, 7.4211, 7.4205, 7.4199, 7.4194, 7.4188, 7.4182, 7.4176, 7.417, 7.4181, 7.4175, 7.4169, 7.4149, 7.4144, 7.4163, 7.4184, 7.42, 7.4216, 7.4227, 7.4221, 7.4231, 7.4242, 7.4251, 7.4262, 7.4257, 7.4252, 7.4263, 7.4258, 7.4252, 7.4262, 7.4258, 7.4253, 7.4269, 7.427, 7.4264, 7.426, 7.4239, 7.4232, 7.4226, 7.4236, 7.4231, 7.4225, 7.4221, 7.4219, 7.4229, 7.4238, 7.4232, 7.4227, 7.4237, 7.4231, 7.4227, 7.4222, 7.4216, 7.4212, 7.4207, 7.4201, 7.4195, 7.4192, 7.4188, 7.4182, 7.4191, 7.4188, 7.4184, 7.4178, 7.4188, 7.4198, 7.4208, 7.4203, 7.4212, 7.4221, 7.4215, 7.4257, 7.4252, 7.4248, 7.4242, 7.4239, 7.4235, 7.4262, 7.4256, 7.4265, 7.4278, 7.4288, 7.4284, 7.4281, 7.4291, 7.4272, 7.4296, 7.43, 7.4296, 7.4313, 7.4324, 7.4308, 7.429, 7.4302, 7.4296, 7.429, 7.4301, 7.4311, 7.4305, 7.4299, 7.431, 7.429, 7.4301, 7.4295, 7.4291, 7.4286, 7.4281, 7.4276, 7.4273, 7.4269, 7.4263, 7.4257, 7.4253, 7.4247, 7.4241, 7.4235, 7.4245, 7.4255, 7.425, 7.4255, 7.4236, 7.4232, 7.4226, 7.4223, 7.4219, 7.4213, 7.4223, 7.4221, 7.4217, 7.4211, 7.4208, 7.4204, 7.4199, 7.4194, 7.4203, 7.4198, 7.4209, 7.4204, 7.4214, 7.4209, 7.4206, 7.4203, 7.4197, 7.4193, 7.4203, 7.4197, 7.4177, 7.4171, 7.418, 7.4189, 7.4185, 7.4179, 7.4204, 7.4199, 7.4179, 7.4173, 7.4168, 7.4163, 7.4194, 7.4188, 7.4197, 7.4192, 7.4213, 7.4223, 7.4235, 7.4262, 7.4256, 7.4266, 7.4275, 7.4272, 7.4297, 7.4277, 7.4271, 7.4265, 7.4259, 7.4269, 7.4263, 7.4258, 7.4253, 7.4263, 7.4273, 7.4267, 7.4262, 7.4256, 7.4252, 7.4233, 7.4229, 7.424, 7.4235, 7.423, 7.4224, 7.4218, 7.4222, 7.4216, 7.4226, 7.422, 7.4229, 7.4225, 7.422, 7.4214, 7.4224, 7.4234, 7.4237, 7.4247, 7.4242, 7.4236, 7.4246, 7.424, 7.4234, 7.423, 7.4226, 7.422, 7.4214, 7.4209, 7.4203, 7.4202, 7.4212, 7.4237, 7.4232, 7.4228, 7.4223, 7.4233, 7.4228, 7.4228, 7.4222, 7.4233, 7.4227, 7.4237, 7.4231, 7.4225, 7.4221, 7.4217, 7.4213, 7.4209, 7.4203, 7.4212, 7.4206, 7.4203, 7.4197, 7.4191, 7.4186, 7.4181, 7.4175, 7.416, 7.4169, 7.4178, 7.4173, 7.4168, 7.4168, 7.4153, 7.4148, 7.4158, 7.4152, 7.4162, 7.4157, 7.4188, 7.4182, 7.4177, 7.4172, 7.4167, 7.4162, 7.4157, 7.4169, 7.4167, 7.4177, 7.4173, 7.4171, 7.4167, 7.4162, 7.4172, 7.4183, 7.4194, 7.4189, 7.4198, 7.4194, 7.4206, 7.4231, 7.4239, 7.4234, 7.4233, 7.423, 7.4224, 7.4234, 7.4228, 7.4209, 7.4205, 7.4199, 7.4193, 7.4189, 7.4185, 7.4183, 7.418, 7.4179, 7.4175, 7.4169, 7.4164, 7.4175, 7.4171, 7.4166, 7.4176, 7.4189, 7.417, 7.4168, 7.4163, 7.416, 7.4155, 7.4165, 7.416, 7.417, 7.4179, 7.4174, 7.4169, 7.4164, 7.416, 7.4157, 7.4163, 7.4158, 7.4154, 7.4148, 7.4159, 7.4153, 7.4147, 7.4143, 7.4137, 7.4133, 7.4127, 7.4122, 7.4119, 7.4113, 7.4108, 7.4104, 7.4098, 7.4092, 7.4087, 7.4083, 7.4068, 7.405, 7.4044, 7.4039, 7.4034, 7.4044, 7.4039, 7.4034, 7.403, 7.4024, 7.4019, 7.4014, 7.4008, 7.4004, 7.3987, 7.4005, 7.4002, 7.4014, 7.401, 7.4007, 7.4005, 7.4003, 7.4004, 7.4, 7.4016, 7.4013, 7.4008, 7.4005, 7.4002, 7.3998, 7.3994, 7.3989, 7.3984, 7.3993, 7.3988, 7.3983, 7.398, 7.3974, 7.397, 7.3966, 7.3961, 7.3958, 7.3954, 7.395, 7.3948, 7.3943, 7.3937, 7.3934, 7.393, 7.3939, 7.3942, 7.3951, 7.3947, 7.3943, 7.394, 7.3935, 7.3932, 7.3932, 7.3927, 7.3923, 7.392, 7.3916, 7.3911, 7.3905, 7.3901, 7.391, 7.3905, 7.3903, 7.3898, 7.3896, 7.3892, 7.3889, 7.3884, 7.3878, 7.3873, 7.3883, 7.3878, 7.3873, 7.3868, 7.3866, 7.3861, 7.3858, 7.3853, 7.3849, 7.3846, 7.3855, 7.3851, 7.3845, 7.3839, 7.3833, 7.383, 7.3825, 7.3821, 7.383, 7.3826, 7.3823, 7.3818, 7.3813, 7.3809, 7.3805, 7.3801, 7.3811, 7.3806, 7.3815, 7.381, 7.3805, 7.38, 7.3809, 7.3804, 7.3799, 7.3807, 7.3826, 7.382, 7.3829, 7.3825, 7.3823, 7.3817, 7.3827, 7.3823, 7.3832, 7.3827, 7.3822, 7.3889, 7.3883, 7.3878, 7.3872, 7.3867, 7.3849, 7.3847, 7.3856, 7.3851, 7.3862, 7.3872, 7.3867, 7.3876, 7.3872, 7.3883, 7.3881, 7.3878, 7.3928, 7.3939, 7.3933, 7.3931, 7.3929, 7.3926, 7.3921, 7.3916, 7.3912, 7.3906, 7.3901, 7.391, 7.3919, 7.3928, 7.3924, 7.3919, 7.3915, 7.3915, 7.3912, 7.3911, 7.3907, 7.3903, 7.39, 7.3896, 7.3891, 7.3886, 7.3882, 7.3877, 7.3872, 7.3867, 7.3864, 7.3862, 7.3857, 7.3866, 7.3875, 7.3885, 7.3879, 7.3878, 7.3873, 7.3897, 7.3891, 7.3873, 7.3871, 7.3867, 7.3862, 7.3857, 7.3852, 7.3847, 7.386, 7.387, 7.3866, 7.3862, 7.3858, 7.3852, 7.3847, 7.3842, 7.385, 7.3845, 7.3853, 7.3851, 7.3845, 7.3854, 7.3863, 7.3858, 7.3854, 7.385, 7.3847, 7.3842, 7.3839, 7.3834, 7.3831, 7.3826, 7.3824, 7.3819, 7.3814, 7.3797, 7.3806, 7.3801, 7.3809, 7.3832, 7.3827, 7.3823, 7.3832, 7.383, 7.3854, 7.3863, 7.386, 7.3855, 7.3857, 7.3855, 7.385, 7.3846, 7.3841, 7.3841, 7.3836, 7.3833, 7.3828, 7.3826, 7.3822, 7.3817, 7.3812, 7.3807, 7.3811, 7.3807, 7.3803, 7.38, 7.3797, 7.3793, 7.3788, 7.3783, 7.3778, 7.3787, 7.3795, 7.3804, 7.3813, 7.3808, 7.3804, 7.3801, 7.3796, 7.3793, 7.3789, 7.3788, 7.3797, 7.3792, 7.3801, 7.3796, 7.3796, 7.3791, 7.3802, 7.3799, 7.3796, 7.3791, 7.3806, 7.3801, 7.3797, 7.3783, 7.3781, 7.3776, 7.3774, 7.3783, 7.3778, 7.3786, 7.3769, 7.3766, 7.3761, 7.3756, 7.3766, 7.3763, 7.3772, 7.3767, 7.3762, 7.3759, 7.3754, 7.375, 7.3746, 7.3743, 7.3738, 7.3733, 7.3741, 7.3737, 7.3733, 7.373, 7.3739, 7.3735, 7.3746, 7.3742, 7.3737, 7.3734, 7.3729, 7.3738, 7.3734, 7.373, 7.3725, 7.3737, 7.3747, 7.3755, 7.3751, 7.3746, 7.3743, 7.3739, 7.3734, 7.3731, 7.3727, 7.3725, 7.3723, 7.3728, 7.3723, 7.372, 7.3716, 7.3699, 7.3694, 7.369, 7.37, 7.3696, 7.368, 7.3676, 7.3659, 7.3654, 7.3649, 7.3646, 7.3672, 7.3669, 7.3664, 7.3659, 7.3656, 7.3651, 7.3659, 7.3667, 7.3676, 7.3671, 7.3666, 7.3675, 7.367, 7.3665, 7.3662, 7.3658, 7.3653, 7.3661, 7.3658, 7.3656, 7.3652, 7.3648, 7.3644, 7.3653, 7.3661, 7.3657, 7.3652, 7.366, 7.3643, 7.3652, 7.3647, 7.3655, 7.365, 7.3659, 7.3656, 7.3665, 7.3661, 7.3669, 7.3665, 7.366, 7.3663, 7.3725, 7.3721, 7.373, 7.3726, 7.3735, 7.3743, 7.3744, 7.3739, 7.3734, 7.3743, 7.3738, 7.3735, 7.3743, 7.3739, 7.3736, 7.3746, 7.3755, 7.375, 7.3745, 7.3793, 7.3789, 7.3785, 7.3797, 7.3795, 7.379, 7.3786, 7.3795, 7.3791, 7.3788, 7.3797, 7.3792, 7.3789, 7.3798, 7.3793, 7.3788, 7.3773, 7.3768, 7.3771, 7.3766, 7.3776, 7.3771, 7.3767, 7.3765, 7.376, 7.3756, 7.3751, 7.3747, 7.3742, 7.3737, 7.3733, 7.373, 7.3726, 7.3723, 7.3733, 7.3729, 7.3741, 7.374, 7.3747, 7.3731, 7.3728, 7.3728, 7.3724, 7.3744, 7.3742, 7.3739, 7.3748, 7.3735, 7.3756, 7.3752, 7.3748, 7.3744, 7.3754, 7.3738, 7.3734, 7.3731, 7.3726, 7.3724, 7.3733, 7.3728, 7.3724, 7.3733, 7.3729, 7.3725, 7.3733, 7.3742, 7.3738, 7.3749, 7.3756, 7.3753, 7.375, 7.3758, 7.3755, 7.3764, 7.3759, 7.3754, 7.3749, 7.3746, 7.3743, 7.3739, 7.3736, 7.3732, 7.3742, 7.374, 7.3736, 7.3732, 7.3742, 7.3737, 7.372, 7.3715, 7.3724, 7.3733, 7.374, 7.3742, 7.3737, 7.3734, 7.3743, 7.3752, 7.3748, 7.3746, 7.3755, 7.3752, 7.3748, 7.3743, 7.3738, 7.3734, 7.373, 7.3726, 7.3722, 7.3718, 7.3714, 7.3711, 7.3709, 7.3705, 7.37, 7.3698, 7.3682, 7.3678, 7.3675, 7.3684, 7.368, 7.3677, 7.3673, 7.3668, 7.3668, 7.3676, 7.3672, 7.3669, 7.3669, 7.3664, 7.3673, 7.3657, 7.3653, 7.3662, 7.3659, 7.3654, 7.3666, 7.3663, 7.3646, 7.3641, 7.3637, 7.3635, 7.363, 7.3615, 7.3611, 7.3608, 7.3617, 7.3613, 7.3632, 7.3628, 7.3625, 7.3634, 7.3657, 7.3667, 7.3664, 7.3662, 7.3658, 7.3653, 7.3662, 7.366, 7.3655, 7.3663, 7.3658, 7.3667, 7.3663, 7.3672, 7.3667, 7.3675, 7.3683, 7.3682, 7.368, 7.3688, 7.3684, 7.367, 7.368, 7.3688, 7.3685, 7.3693, 7.3697, 7.3705, 7.3703, 7.3711, 7.3706, 7.3701, 7.3696, 7.3692, 7.3687, 7.3682, 7.369, 7.3685, 7.3682, 7.3666, 7.3661, 7.3669, 7.3668, 7.3676, 7.3672, 7.3693, 7.3701, 7.3698, 7.3693, 7.3716, 7.3713, 7.3709, 7.3717, 7.3712, 7.3719, 7.3726, 7.3722, 7.3717, 7.3717, 7.3712, 7.3708, 7.3704, 7.3713, 7.3721, 7.3716, 7.3711, 7.3708, 7.3703, 7.3699, 7.37, 7.3696, 7.3698, 7.3706, 7.3703, 7.37, 7.3696, 7.368, 7.3677, 7.3685, 7.3684, 7.3682, 7.3704, 7.37, 7.3695, 7.3733, 7.3733, 7.3729, 7.3721, 7.3718, 7.3726, 7.3724, 7.372, 7.3716, 7.3701, 7.3697, 7.3681, 7.3676, 7.3672, 7.3697, 7.3693, 7.3689, 7.3686, 7.3687, 7.3684, 7.368, 7.3683, 7.3678, 7.3711, 7.3733, 7.373, 7.3727, 7.3723, 7.3722, 7.373, 7.3737, 7.3733, 7.373, 7.3727, 7.3736, 7.3731, 7.3715, 7.3722, 7.3718, 7.3714, 7.3712, 7.3707, 7.3703, 7.3698, 7.3693, 7.369, 7.3686, 7.3683, 7.368, 7.3676, 7.3672, 7.3668, 7.3665, 7.3661, 7.3669, 7.3664, 7.3661, 7.3656, 7.3654, 7.365, 7.3635, 7.3633, 7.3629, 7.3637, 7.3633, 7.364, 7.3636, 7.3631, 7.3639, 7.3634, 7.3629, 7.3625, 7.3633, 7.363, 7.3625, 7.3633, 7.3641, 7.3636, 7.3631, 7.3627, 7.3634, 7.3643, 7.3651, 7.3648, 7.3632, 7.3639, 7.3635, 7.3643, 7.364, 7.3636, 7.3631, 7.3629, 7.3625, 7.3633, 7.3628, 7.3624, 7.362, 7.3631, 7.3626, 7.3634, 7.3629, 7.3637, 7.3635, 7.3643, 7.3639, 7.3647, 7.3667, 7.3682, 7.369, 7.3686, 7.3681, 7.3678, 7.3686, 7.3681, 7.3679, 7.3674, 7.3683, 7.3679, 7.3688, 7.3684, 7.3727, 7.3722, 7.3731, 7.3739, 7.3761, 7.3756, 7.3763, 7.3759, 7.3767, 7.3763, 7.376, 7.3757, 7.3754, 7.375, 7.3745, 7.3753, 7.375, 7.3759, 7.3755, 7.3751, 7.3747, 7.3742, 7.3727, 7.3722, 7.3717, 7.3714, 7.3709, 7.3704, 7.37, 7.3709, 7.3716, 7.3712, 7.3707, 7.3704, 7.3712, 7.3709, 7.3708, 7.3704, 7.37, 7.3696, 7.3692, 7.3687, 7.3683, 7.3681, 7.3676, 7.3683, 7.368, 7.369, 7.3686, 7.3682, 7.3689, 7.3685, 7.367, 7.3679, 7.3674, 7.3694, 7.3702, 7.3687, 7.3684, 7.368, 7.3675, 7.3672, 7.3668, 7.3667, 7.3664, 7.3673, 7.3668, 7.3675, 7.367, 7.3678, 7.3686, 7.3683, 7.369, 7.3687, 7.3683, 7.3679, 7.3675, 7.3671, 7.3669, 7.3677, 7.3673, 7.3682, 7.368, 7.3677, 7.3674, 7.3688, 7.3685, 7.3681, 7.369, 7.3699, 7.3695, 7.3702, 7.3699, 7.3695, 7.3703, 7.3699, 7.3684, 7.368, 7.3676, 7.3672, 7.3684, 7.3679, 7.3687, 7.3684, 7.3691, 7.369, 7.3686, 7.3682, 7.3689, 7.3686, 7.3681, 7.3677, 7.3674, 7.3681, 7.3676, 7.3672, 7.3667, 7.3662, 7.3657, 7.367, 7.3665, 7.366, 7.3657, 7.3652, 7.3647, 7.3643, 7.3639, 7.3647, 7.3642, 7.365, 7.3649, 7.3645, 7.3652, 7.3651, 7.3647, 7.3643, 7.3639, 7.364, 7.3637, 7.3645, 7.3643, 7.365, 7.3647, 7.3643, 7.3641, 7.3649, 7.3657, 7.3653, 7.3651, 7.367, 7.3667, 7.3663, 7.3664, 7.366, 7.3656, 7.3655, 7.3651, 7.3647, 7.3642, 7.3638, 7.3646, 7.3643, 7.3651, 7.3647, 7.3643, 7.3638, 7.3624, 7.3621, 7.3628, 7.3624, 7.3632, 7.3628, 7.3636, 7.3632, 7.3628, 7.3625, 7.3622, 7.3619, 7.3615, 7.36, 7.3608, 7.3605, 7.3601, 7.3598, 7.3606, 7.3602, 7.3597, 7.3592, 7.3588, 7.3596, 7.3591, 7.3589, 7.3587, 7.3585, 7.3598, 7.3595, 7.3593, 7.3589, 7.3591, 7.3601, 7.3616, 7.366, 7.3656, 7.3663, 7.3659, 7.3656, 7.3653, 7.3661, 7.3657, 7.3653, 7.365, 7.3645, 7.3641, 7.3637, 7.3633, 7.3629, 7.3625, 7.3622, 7.3618, 7.3615, 7.3623, 7.362, 7.3651, 7.3649, 7.3645, 7.3641, 7.3637, 7.3645, 7.3653, 7.365, 7.3646, 7.3653, 7.366, 7.3656, 7.3663, 7.3661, 7.3657, 7.3653, 7.3649, 7.3646, 7.3643, 7.364, 7.3636, 7.3645, 7.3641, 7.3636, 7.3632, 7.364, 7.3647, 7.3644, 7.364, 7.3648, 7.3644, 7.364, 7.3626, 7.3622, 7.3619, 7.3617, 7.3613, 7.3609, 7.3607, 7.3605, 7.3613, 7.3621, 7.3628, 7.3635, 7.364, 7.3637, 7.3632, 7.3628, 7.3624, 7.3625, 7.3611, 7.3619, 7.3616, 7.3612, 7.361, 7.3617, 7.3624, 7.3632, 7.3628, 7.3624, 7.3621, 7.3617, 7.3619, 7.3616, 7.3613, 7.3609, 7.3605, 7.3612, 7.3608, 7.3605, 7.3603, 7.36, 7.3597, 7.3595, 7.3592, 7.3589, 7.36, 7.3612, 7.3608, 7.3593, 7.3591, 7.3588, 7.3607, 7.3603, 7.3599, 7.3606, 7.3604, 7.359, 7.3586, 7.3582, 7.3568, 7.3576, 7.3573, 7.3569, 7.3577, 7.3573, 7.3568, 7.3575, 7.3582, 7.3589, 7.3585, 7.3596, 7.3592, 7.3632, 7.3629, 7.3625, 7.3633, 7.3641, 7.3649, 7.3657, 7.3653, 7.3649, 7.3647, 7.3655, 7.3652, 7.3648, 7.3644, 7.364, 7.3638, 7.3634, 7.3641, 7.3639, 7.3636, 7.3632, 7.3629, 7.3616, 7.3613, 7.3609, 7.3605, 7.3601, 7.3598, 7.3594, 7.3604, 7.3623, 7.3622, 7.3618, 7.3625, 7.3621, 7.3617, 7.3633, 7.3641, 7.3637, 7.3659, 7.3666, 7.3676, 7.3674, 7.3681, 7.3688, 7.3684, 7.3691, 7.3687, 7.3684, 7.368, 7.3677, 7.3673, 7.3682, 7.3689, 7.3686, 7.3682, 7.3678, 7.3675, 7.3671, 7.3679, 7.3678, 7.3674, 7.367, 7.3666, 7.3674, 7.3681, 7.3677, 7.3673, 7.3669, 7.3675, 7.3671, 7.3657, 7.3664, 7.366, 7.3657, 7.3654, 7.365, 7.3647, 7.3643, 7.364, 7.3637, 7.3634, 7.3632, 7.3628, 7.3624, 7.3645, 7.3642, 7.364, 7.3636, 7.3632, 7.3628, 7.3625, 7.3625, 7.3621, 7.3629, 7.3625, 7.3633, 7.3629, 7.3627, 7.3637, 7.3633, 7.3631, 7.3629, 7.3625, 7.3621, 7.3617, 7.3613, 7.3609, 7.3614, 7.361, 7.3606, 7.3602, 7.3598, 7.3594, 7.3601, 7.3597, 7.3604, 7.3601, 7.3597, 7.3605, 7.3613, 7.362, 7.3624, 7.3623, 7.3625, 7.3633, 7.3674, 7.367, 7.3677, 7.3684, 7.3691, 7.3687, 7.3684, 7.3692, 7.3688, 7.3685, 7.3682, 7.3678, 7.3674, 7.367, 7.3666, 7.3664, 7.3671, 7.3667, 7.3663, 7.3659, 7.3655, 7.3662, 7.3658, 7.3654, 7.3661, 7.3657, 7.3654, 7.365, 7.3646, 7.3642, 7.364, 7.3648, 7.3645, 7.3641, 7.3637, 7.3633, 7.364, 7.3636, 7.3644, 7.3651, 7.3647, 7.3657, 7.3654, 7.3661, 7.3669, 7.3665, 7.3678, 7.3674, 7.367, 7.3668, 7.3665, 7.3672, 7.3671, 7.3678, 7.3664, 7.3682, 7.3711, 7.3707, 7.3703, 7.3725, 7.3722, 7.3718, 7.3706, 7.3703, 7.3702, 7.3706, 7.3708, 7.3704, 7.3701, 7.3698, 7.3696, 7.3693, 7.369, 7.3687, 7.3684, 7.3681, 7.3678, 7.3675, 7.3674, 7.367, 7.3682, 7.3679, 7.3677, 7.3674, 7.3671, 7.3669, 7.3667, 7.3665, 7.3662, 7.3661, 7.3657, 7.3653, 7.3651, 7.3647, 7.3655, 7.3662, 7.3658, 7.3673, 7.3669, 7.3666, 7.3663, 7.3659, 7.3655, 7.3662, 7.3702, 7.3709, 7.3706, 7.3703, 7.3701, 7.3697, 7.3693, 7.3689, 7.3696, 7.3693, 7.369, 7.3687, 7.3683, 7.3691, 7.3688, 7.3685, 7.3691, 7.3699, 7.3696, 7.3697, 7.3693, 7.369, 7.369, 7.3696, 7.3694, 7.369, 7.3687, 7.3683, 7.369, 7.3688, 7.3685, 7.3693, 7.369, 7.3687, 7.3713, 7.3721, 7.3728, 7.3725, 7.3722, 7.3718, 7.3714, 7.3711, 7.3707, 7.3703, 7.3699, 7.3695, 7.3696, 7.3703, 7.3699, 7.3695, 7.3691, 7.3688, 7.3707, 7.3703, 7.3699, 7.3696, 7.3692, 7.369, 7.3686, 7.3684, 7.3699, 7.3695, 7.3682, 7.3721, 7.3718, 7.3717, 7.3713, 7.3721, 7.3717, 7.3714, 7.371, 7.3717, 7.3714, 7.3711, 7.3718, 7.3714, 7.371, 7.3717, 7.3713, 7.3743, 7.374, 7.3739, 7.3735, 7.3742, 7.3749, 7.3745, 7.3742, 7.3738, 7.3745, 7.3768, 7.3774, 7.3771, 7.3767, 7.3763, 7.3759, 7.3755, 7.3751, 7.3747, 7.3754, 7.3762, 7.3758, 7.3765, 7.377, 7.3767, 7.3763, 7.376, 7.3767, 7.3763, 7.376, 7.3758, 7.3754, 7.3751, 7.3747, 7.3744, 7.3742, 7.3739, 7.3735, 7.3731, 7.3728, 7.3724, 7.372, 7.3717, 7.3716, 7.3724, 7.3725, 7.3741, 7.3738, 7.3745, 7.3752, 7.376, 7.3758, 7.3762, 7.3758, 7.3754, 7.3752, 7.3749, 7.3747, 7.3743, 7.3778, 7.3774, 7.3761, 7.3769, 7.3765, 7.3762, 7.376, 7.3748, 7.3754, 7.375, 7.3757, 7.3754, 7.3762, 7.3759, 7.3762, 7.377, 7.3768, 7.3765, 7.3761, 7.3767, 7.3775, 7.3773, 7.377, 7.3766, 7.3753, 7.3749, 7.3745, 7.3742, 7.374, 7.3737, 7.3744, 7.374, 7.3747, 7.3745, 7.3741, 7.3738, 7.3734, 7.373, 7.3744, 7.374, 7.3747, 7.3743, 7.375, 7.3757, 7.3753, 7.375, 7.3746, 7.3742, 7.3739, 7.3735, 7.3731, 7.3729, 7.3726, 7.3732, 7.3729, 7.3736, 7.3732, 7.3741, 7.3737, 7.3744, 7.3741, 7.3737, 7.3733, 7.373, 7.3727, 7.3744, 7.3741, 7.3737, 7.3734, 7.374, 7.3746, 7.3743, 7.374, 7.3736, 7.3732, 7.3734, 7.373, 7.3736, 7.3742, 7.3738, 7.3734, 7.3731, 7.3737, 7.3734, 7.374, 7.3736, 7.3743, 7.3739, 7.3735, 7.3732, 7.3739, 7.3737, 7.3734, 7.373, 7.3727, 7.3734, 7.373, 7.3727, 7.3735, 7.3755, 7.3772, 7.377, 7.3769, 7.3767, 7.3774, 7.3771, 7.3768, 7.3765, 7.3761, 7.3764, 7.3766, 7.3774, 7.3771, 7.3768, 7.3775, 7.3772, 7.378, 7.38, 7.3807, 7.3805, 7.3802, 7.3798, 7.3796, 7.3792, 7.3789, 7.3796, 7.3794, 7.379, 7.3797, 7.3793, 7.3789, 7.3787, 7.3783, 7.3779, 7.3777, 7.3783, 7.3792, 7.3788, 7.3794, 7.3791, 7.3788, 7.3784, 7.378, 7.3778, 7.3775, 7.3772, 7.3779, 7.3775, 7.3771, 7.3778, 7.3774, 7.377, 7.3767, 7.3773, 7.376, 7.3756, 7.3753, 7.3749, 7.3746, 7.3733, 7.373, 7.3726, 7.3723, 7.3719, 7.3726, 7.3723, 7.372, 7.3717, 7.3713, 7.371, 7.3717, 7.3715, 7.3711, 7.3708, 7.3714, 7.3711, 7.3719, 7.3726, 7.3723, 7.3719, 7.3717, 7.3713, 7.3711, 7.3708, 7.3705, 7.3701, 7.3697, 7.3704, 7.37, 7.3696, 7.3692, 7.3679, 7.3676, 7.3673, 7.3679, 7.3675, 7.3672, 7.3679, 7.3684, 7.368, 7.3676, 7.3673, 7.366, 7.3658, 7.3655, 7.3652, 7.3659, 7.3666, 7.3662, 7.367, 7.367, 7.3667, 7.3657, 7.3654, 7.3662, 7.3679, 7.3679, 7.3681, 7.3678, 7.3674, 7.3676, 7.3695, 7.3693, 7.3689, 7.3686, 7.3684, 7.368, 7.3676, 7.3673, 7.3671, 7.3669, 7.3665, 7.3662, 7.3659, 7.3656, 7.3654, 7.3651, 7.3689, 7.3718, 7.3716, 7.3714, 7.372, 7.3756, 7.3762, 7.3759, 7.3766, 7.3763, 7.3759, 7.3755, 7.3752, 7.3748, 7.3755, 7.3762, 7.3768, 7.3774, 7.3771, 7.3768, 7.3765, 7.3761, 7.3759, 7.3756, 7.3752, 7.376, 7.3756, 7.3753, 7.375, 7.3756, 7.3753, 7.3752, 7.375, 7.3747, 7.3745, 7.3742, 7.3739, 7.3746, 7.3742, 7.3739, 7.3736, 7.3734, 7.3731, 7.3729, 7.3726, 7.3733, 7.3729, 7.3725, 7.3723, 7.3729, 7.3725, 7.3722, 7.3729, 7.3755, 7.3753, 7.3769, 7.3765, 7.3762, 7.3759, 7.3756, 7.3753, 7.375, 7.3746, 7.3753, 7.375, 7.3747, 7.3745, 7.3741, 7.3737, 7.3734, 7.373, 7.3726, 7.3723, 7.3729, 7.3736, 7.3734, 7.373, 7.3726, 7.3742, 7.3738, 7.3744, 7.374, 7.3746, 7.3742, 7.3738, 7.3745, 7.3742, 7.3738, 7.3735, 7.3742, 7.3739, 7.3746, 7.3745, 7.3751, 7.3759, 7.3765, 7.3762, 7.375, 7.3747, 7.3744, 7.3742, 7.374, 7.3738, 7.3735, 7.3734, 7.3741, 7.3739, 7.3736, 7.3744, 7.3741, 7.3738, 7.3746, 7.3744, 7.3741, 7.3738, 7.3738, 7.3745, 7.3742, 7.3738, 7.3735, 7.3731, 7.3737, 7.3734, 7.3731, 7.3729, 7.3726, 7.3732, 7.3738, 7.3734, 7.374, 7.3737, 7.3743, 7.3741, 7.3742, 7.3748, 7.3746, 7.3742, 7.3748, 7.3745, 7.3741, 7.3747, 7.3756, 7.3753, 7.375, 7.3746, 7.3752, 7.3749, 7.3747, 7.3746, 7.3743, 7.3739, 7.3745, 7.3742, 7.3748, 7.3766, 7.3763, 7.3761, 7.3757, 7.3753, 7.376, 7.3757, 7.3754, 7.3751, 7.3748, 7.3754, 7.3751, 7.3771, 7.3768, 7.3776, 7.3787, 7.3843, 7.3842, 7.3838, 7.3851, 7.3867, 7.3873, 7.3869, 7.3899, 7.3896, 7.3892, 7.3899, 7.3887, 7.3883, 7.3879, 7.3885, 7.3881, 7.3879, 7.3876, 7.3872, 7.3868, 7.3864, 7.387, 7.3858, 7.3854, 7.3867, 7.3865, 7.3871, 7.3871, 7.3877, 7.3876, 7.3872, 7.3869, 7.3865, 7.3862, 7.3859, 7.3858, 7.3866, 7.3864, 7.387, 7.3876, 7.3872, 7.3869, 7.3865, 7.3864, 7.3861, 7.3857, 7.3853, 7.3859, 7.3861, 7.3867, 7.3873, 7.387, 7.3867, 7.3865, 7.3862, 7.386, 7.3856, 7.3853, 7.386, 7.3859, 7.3847, 7.3846, 7.3852, 7.3851, 7.3857, 7.3863, 7.3862, 7.3868, 7.3864, 7.3862, 7.386, 7.3856, 7.3853, 7.385, 7.3848, 7.3845, 7.3843, 7.3846, 7.3844, 7.3851, 7.3857, 7.3855, 7.3852, 7.3848, 7.3856, 7.3853, 7.385, 7.3856, 7.3855, 7.3852, 7.3848, 7.3836, 7.3824, 7.3823, 7.382, 7.3817, 7.3814, 7.3821, 7.3828, 7.3825, 7.3822, 7.3822, 7.3818, 7.3814, 7.382, 7.3827, 7.3824, 7.3829, 7.3826, 7.3814, 7.3802, 7.379, 7.3787, 7.3784, 7.3773, 7.377, 7.3767, 7.3755, 7.3752, 7.3749, 7.3746, 7.3743, 7.3749, 7.3755, 7.3753, 7.3749, 7.3746, 7.3742, 7.3738, 7.3734, 7.373, 7.373, 7.3735, 7.3731, 7.3729, 7.3725, 7.3722, 7.3728, 7.3725, 7.3722, 7.3728, 7.3724, 7.3722, 7.3722, 7.372, 7.3717, 7.3713, 7.3719, 7.3717, 7.3714, 7.371, 7.3716, 7.3716, 7.3713, 7.3711, 7.37, 7.3698, 7.3704, 7.3702, 7.3699, 7.3696, 7.3693, 7.3699, 7.3695, 7.3704, 7.3702, 7.3708, 7.3714, 7.371, 7.3706, 7.3695, 7.3702, 7.3703, 7.3699, 7.3697, 7.3693, 7.3689, 7.3695, 7.3691, 7.3688, 7.3701, 7.3689, 7.3686, 7.3694, 7.3701, 7.3708, 7.3705, 7.3703, 7.3709, 7.3716, 7.3712, 7.3708, 7.3704, 7.3703, 7.37, 7.3706, 7.3702, 7.3699, 7.3697, 7.3695, 7.3691, 7.3687, 7.3683, 7.3689, 7.3695, 7.3708, 7.3696, 7.3693, 7.3699, 7.3705, 7.3712, 7.3708, 7.3708, 7.3705, 7.3711, 7.3707, 7.3704, 7.371, 7.3716, 7.3713, 7.371, 7.3707, 7.3706, 7.3714, 7.371, 7.3707, 7.3703, 7.3709, 7.3706, 7.3694, 7.3693, 7.369, 7.3696, 7.3693, 7.3706, 7.3712, 7.37, 7.3697, 7.3693, 7.3689, 7.3695, 7.3693, 7.3689, 7.3695, 7.3691, 7.3688, 7.3685, 7.3682, 7.3679, 7.3676, 7.3673, 7.3672, 7.3669, 7.3668, 7.3674, 7.3672, 7.367, 7.3667, 7.3664, 7.367, 7.3677, 7.3683, 7.369, 7.3688, 7.3685, 7.3682, 7.3688, 7.3685, 7.3683, 7.368, 7.3678, 7.3675, 7.3681, 7.3678, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3661, 7.3658, 7.3656, 7.3663, 7.366, 7.3657, 7.3653, 7.3649, 7.3656, 7.3654, 7.3651, 7.3648, 7.3645, 7.367, 7.3677, 7.3676, 7.3672, 7.3669, 7.3675, 7.3672, 7.3677, 7.3673, 7.3679, 7.3677, 7.3683, 7.368, 7.3677, 7.3683, 7.3691, 7.3697, 7.3694, 7.3691, 7.3697, 7.3694, 7.3691, 7.3689, 7.3686, 7.3692, 7.3689, 7.3686, 7.3691, 7.3688, 7.3684, 7.3683, 7.368, 7.3676, 7.3674, 7.3678, 7.3684, 7.3681, 7.3687, 7.3693, 7.369, 7.3688, 7.3686, 7.3683, 7.3689, 7.3695, 7.3683, 7.3689, 7.3695, 7.3692, 7.3689, 7.3695, 7.3692, 7.368, 7.3685, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3686, 7.3683, 7.3688, 7.3685, 7.3697, 7.3703, 7.3701, 7.3701, 7.3699, 7.3697, 7.3698, 7.3696, 7.3695, 7.3692, 7.3689, 7.3686, 7.3684, 7.3681, 7.3687, 7.3685, 7.3691, 7.3681, 7.3678, 7.3684, 7.3681, 7.3678, 7.3675, 7.3672, 7.3679, 7.3676, 7.3673, 7.3671, 7.3668, 7.3675, 7.368, 7.3676, 7.3673, 7.367, 7.3668, 7.3665, 7.3662, 7.3659, 7.3656, 7.3652, 7.3649, 7.3647, 7.3652, 7.3649, 7.3645, 7.3665, 7.3665, 7.368, 7.3677, 7.3683, 7.3672, 7.3669, 7.3666, 7.3671, 7.3677, 7.3674, 7.3679, 7.3676, 7.3673, 7.3679, 7.3676, 7.3681, 7.3678, 7.3675, 7.3672, 7.3669, 7.3666, 7.3663, 7.366, 7.3658, 7.3664, 7.3662, 7.3668, 7.3665, 7.3661, 7.365, 7.3648, 7.3645, 7.3651, 7.3647, 7.3652, 7.3658, 7.3663, 7.3668, 7.3665, 7.3661, 7.3658, 7.3665, 7.3662, 7.3668, 7.3674, 7.3672, 7.3668, 7.3674, 7.3672, 7.3669, 7.3667, 7.3664, 7.3661, 7.3657, 7.3654, 7.3651, 7.3647, 7.3644, 7.3641, 7.3638, 7.3637, 7.3634, 7.3624, 7.3621, 7.3619, 7.3616, 7.3631, 7.3672, 7.367, 7.3659, 7.3666, 7.3664, 7.366, 7.3657, 7.3673, 7.3662, 7.3659, 7.3656, 7.3662, 7.3659, 7.3668, 7.3665, 7.3682, 7.3693, 7.369, 7.3687, 7.3684, 7.3681, 7.3683, 7.3681, 7.3687, 7.3684, 7.3689, 7.3686, 7.3675, 7.3673, 7.367, 7.3668, 7.3673, 7.3671, 7.3668, 7.3666, 7.3655, 7.3652, 7.3677, 7.3683, 7.3689, 7.3686, 7.3683, 7.3681, 7.3679, 7.3694, 7.3699, 7.3695, 7.3692, 7.3689, 7.369, 7.3687, 7.3684, 7.3681, 7.3687, 7.3684, 7.3681, 7.3679, 7.3668, 7.3667, 7.3673, 7.3679, 7.3685, 7.3683, 7.368, 7.3678, 7.3667, 7.3664, 7.3662, 7.3668, 7.3665, 7.3671, 7.3671, 7.3668, 7.3665, 7.3662, 7.3668, 7.3665, 7.3671, 7.3668, 7.3665, 7.3662, 7.3696, 7.3693, 7.3699, 7.3696, 7.3695, 7.3692, 7.3689, 7.3695, 7.3693, 7.369, 7.369, 7.3687, 7.3687, 7.3676, 7.3665, 7.3672, 7.3671, 7.3676, 7.3683, 7.369, 7.3688, 7.3686, 7.3691, 7.3689, 7.3686, 7.3684, 7.3683, 7.368, 7.3685, 7.3682, 7.3681, 7.3678, 7.3687, 7.3693, 7.369, 7.3688, 7.3685, 7.3682, 7.3688, 7.3694, 7.3693, 7.3691, 7.3697, 7.3708, 7.3705, 7.3711, 7.3709, 7.3709, 7.3706, 7.3712, 7.3709, 7.3715, 7.3719, 7.3718, 7.3715, 7.3713, 7.371, 7.3707, 7.3713, 7.3711, 7.371, 7.3708, 7.3705, 7.3711, 7.3709, 7.3715, 7.3715, 7.3721, 7.3719, 7.3719, 7.3717, 7.3715, 7.3712, 7.3703, 7.3701, 7.3715, 7.3712, 7.3737, 7.3735, 7.3732, 7.3725, 7.3722, 7.372, 7.3737, 7.3755, 7.3752, 7.3762, 7.3768, 7.3788, 7.3786, 7.3784, 7.379, 7.3787, 7.3784, 7.3808, 7.3805, 7.3803, 7.3792, 7.3807, 7.3805, 7.3811, 7.3809, 7.3815, 7.3812, 7.3819, 7.3816, 7.3813, 7.3863, 7.3869, 7.3866, 7.3871, 7.3877, 7.3874, 7.3871, 7.387, 7.3877, 7.3875, 7.3872, 7.3869, 7.3866, 7.3872, 7.3869, 7.3866, 7.3864, 7.3882, 7.3879, 7.3877, 7.3883, 7.388, 7.3877, 7.3877, 7.3875, 7.3872, 7.3869, 7.3875, 7.3873, 7.3878, 7.3875, 7.3881, 7.3887, 7.3885, 7.3891, 7.3889, 7.3887, 7.3885, 7.3902, 7.3899, 7.3888, 7.3886, 7.3883, 7.3881, 7.3879, 7.3876, 7.3881, 7.3878, 7.3884, 7.3891, 7.3888, 7.3885, 7.3882, 7.3879, 7.3884, 7.3882, 7.3887, 7.3884, 7.3882, 7.3879, 7.3876, 7.3882, 7.3888, 7.3885, 7.3891, 7.3888, 7.3877, 7.3874, 7.3871, 7.3868, 7.3857, 7.3846, 7.3844, 7.3841, 7.3838, 7.3836, 7.3833, 7.383, 7.3835, 7.3833, 7.3832, 7.383, 7.3828, 7.3825, 7.3831, 7.3838, 7.3837, 7.3835, 7.3844, 7.3846, 7.3843, 7.3841, 7.3839, 7.3839, 7.3845, 7.3842, 7.384, 7.3837, 7.3843, 7.3848, 7.3845, 7.3851, 7.3848, 7.3847, 7.3844, 7.3843, 7.384, 7.3837, 7.3835, 7.385, 7.3856, 7.3862, 7.3851, 7.3849, 7.3855, 7.3844, 7.3841, 7.3839, 7.3836, 7.3841, 7.3843, 7.3835, 7.384, 7.3837, 7.3834, 7.3831, 7.3837, 7.3836, 7.3833, 7.383, 7.3828, 7.3825, 7.3824, 7.3829, 7.3826, 7.3823, 7.3821, 7.3818, 7.3815, 7.3813, 7.3811, 7.3808, 7.3806, 7.3812, 7.3809, 7.3814, 7.3812, 7.3817, 7.3816, 7.3813, 7.3819, 7.3816, 7.3822, 7.3828, 7.3835, 7.3832, 7.383, 7.3836, 7.3833, 7.3831, 7.3829, 7.3827, 7.3824, 7.3829, 7.3826, 7.3823, 7.3821, 7.3819, 7.3817, 7.3814, 7.382, 7.3817, 7.3814, 7.3817, 7.3815, 7.3813, 7.3818, 7.3815, 7.3804, 7.3801, 7.3798, 7.3795, 7.38, 7.3799, 7.3804, 7.3803, 7.3801, 7.379, 7.3795, 7.3792, 7.3789, 7.3787, 7.3784, 7.3781, 7.378, 7.3786, 7.3784, 7.3781, 7.3779, 7.3777, 7.3774, 7.3779, 7.3776, 7.3774, 7.378, 7.3769, 7.3775, 7.3772, 7.3769, 7.3766, 7.378, 7.3784, 7.3781, 7.3786, 7.3783, 7.3788, 7.3785, 7.379, 7.3808, 7.3805, 7.3805, 7.3811, 7.3808, 7.3805, 7.3822, 7.3819, 7.3817, 7.3822, 7.3821, 7.3818, 7.3818, 7.3815, 7.3816, 7.3815, 7.3813, 7.381, 7.3824, 7.3846, 7.3846, 7.3844, 7.3842, 7.3847, 7.3848, 7.3845, 7.3845, 7.3843, 7.385, 7.3859, 7.3857, 7.3854, 7.3851, 7.3882, 7.3879, 7.3884, 7.3881, 7.3878, 7.3875, 7.3873, 7.3878, 7.3875, 7.3873, 7.3878, 7.3883, 7.3896, 7.3893, 7.389, 7.3888, 7.3893, 7.3906, 7.3911, 7.3909, 7.3907, 7.3904, 7.3901, 7.3898, 7.3895, 7.3893, 7.389, 7.3895, 7.39, 7.3905, 7.3902, 7.3899, 7.39, 7.3906, 7.3912, 7.3918, 7.3916, 7.3921, 7.3919, 7.3932, 7.3929, 7.3927, 7.3924, 7.3914, 7.3911, 7.3916, 7.3926, 7.3923, 7.392, 7.3917, 7.3923, 7.392, 7.3926, 7.3924, 7.3922, 7.3927, 7.3925, 7.3931, 7.3944, 7.395, 7.3947, 7.3952, 7.3954, 7.3959, 7.3964, 7.3961, 7.3958, 7.3955, 7.3952, 7.3949, 7.3954, 7.3959, 7.3964, 7.3962, 7.3959, 7.3948, 7.3938, 7.3943, 7.3948, 7.3945, 7.395, 7.3955, 7.3976, 7.399, 7.3987, 7.4, 7.3997, 7.4004, 7.4002, 7.4, 7.4007, 7.4013, 7.4018, 7.4015, 7.4012, 7.4034, 7.4031, 7.4029, 7.4034, 7.4047, 7.4046, 7.4051, 7.4056, 7.4053, 7.4051, 7.4057, 7.4054, 7.4059, 7.4057, 7.4054, 7.4059, 7.4056, 7.4061, 7.4066, 7.4071, 7.4068, 7.4065, 7.4062, 7.4067, 7.4064, 7.4062, 7.4059, 7.4056, 7.4061, 7.4066, 7.4071, 7.4068, 7.4065, 7.407, 7.4075, 7.408, 7.4086, 7.4083, 7.4088, 7.4109, 7.4114, 7.4112, 7.4109, 7.4106, 7.4103, 7.41, 7.4097, 7.4098, 7.4103, 7.4133, 7.4138, 7.4136, 7.415, 7.4147, 7.4145, 7.4158, 7.4188, 7.4202, 7.4199, 7.4204, 7.4209, 7.4214, 7.4227, 7.4233, 7.4238, 7.4243, 7.424, 7.4239, 7.4237, 7.4235, 7.4232, 7.4233, 7.4225, 7.4261, 7.4272, 7.4283, 7.4347, 7.4345, 7.4393, 7.439, 7.4388, 7.4394, 7.4393, 7.439, 7.4387, 7.4384, 7.439, 7.4396, 7.4393, 7.4391, 7.4389, 7.4387, 7.4377, 7.4382, 7.4387, 7.4385, 7.4382, 7.4371, 7.4377, 7.4383, 7.4388, 7.4385, 7.4382, 7.438, 7.4385, 7.4399, 7.4404, 7.4409, 7.4414, 7.4411, 7.4416, 7.4421, 7.4418, 7.4415, 7.4412, 7.4425, 7.4422, 7.4419, 7.4424, 7.4413, 7.441, 7.4407, 7.4404, 7.4401, 7.4406, 7.4403, 7.4408, 7.4407, 7.4412, 7.441, 7.4415, 7.4414, 7.4412, 7.4402, 7.44, 7.4397, 7.4394, 7.4398, 7.4395, 7.4392, 7.4397, 7.4395, 7.44, 7.4397, 7.4402, 7.4399, 7.4397, 7.4396, 7.4394, 7.4392, 7.4389, 7.4386, 7.4383, 7.4389, 7.4394, 7.4391, 7.4389, 7.4412, 7.441, 7.4424, 7.4423, 7.4428, 7.4425, 7.443, 7.4452, 7.4449, 7.4446, 7.446, 7.4457, 7.4454, 7.4451, 7.4448, 7.4445, 7.445, 7.4447, 7.4452, 7.445, 7.4455, 7.4453, 7.445, 7.4447, 7.4444, 7.4441, 7.4438, 7.4435, 7.4432, 7.4429, 7.4426, 7.4424, 7.4421, 7.4426, 7.4431, 7.4429, 7.4426, 7.4423, 7.442, 7.4417, 7.4414, 7.4412, 7.4402, 7.4407, 7.4404, 7.4401, 7.4398, 7.4395, 7.4393, 7.4391, 7.4396, 7.4394, 7.4391, 7.4396, 7.4394, 7.4392, 7.4389, 7.4387, 7.4384, 7.4389, 7.4387, 7.4392, 7.4389, 7.4386, 7.4383, 7.438, 7.4377, 7.4374, 7.4371, 7.4368, 7.4365, 7.4362, 7.4383, 7.438, 7.4394, 7.4391, 7.4404, 7.4401, 7.4398, 7.4388, 7.4385, 7.4387, 7.4387, 7.4392, 7.4397, 7.4394, 7.4391, 7.4388, 7.4386, 7.4383, 7.4381, 7.4378, 7.4375, 7.4365, 7.4363, 7.4361, 7.4366, 7.437, 7.4374, 7.4371, 7.4369, 7.4367, 7.4365, 7.4362, 7.4366, 7.4363, 7.4367, 7.4365, 7.437, 7.4375, 7.4381, 7.4386, 7.4383, 7.438, 7.4377, 7.4374, 7.4371, 7.4368, 7.4366, 7.4363, 7.436, 7.4357, 7.4354, 7.4351, 7.4348, 7.4345, 7.4342, 7.4339, 7.4337, 7.4334, 7.4331, 7.4328, 7.4325, 7.4322, 7.4327, 7.4324, 7.4329, 7.4326, 7.4324, 7.4321, 7.4326, 7.4316, 7.4321, 7.4319, 7.4317, 7.4314, 7.4328, 7.4325, 7.4324, 7.4322, 7.432, 7.4318, 7.4316, 7.4313, 7.431, 7.4308, 7.4306, 7.4303, 7.4309], '192.168.122.120': [5.3036, 5.3753, 5.3718, 5.3877, 5.3696, 5.3818, 5.5055, 5.4997, 5.4846, 5.4799, 5.4741, 5.9277, 5.9078, 5.8731, 5.8461, 5.8487, 5.8232, 5.7978, 5.7799, 5.8003, 5.7756, 5.763, 5.7592, 5.7407, 5.7259, 5.7155, 6.1667, 6.3308, 6.3473, 6.5264, 6.5005, 6.476, 6.5951, 6.5743, 6.5396, 6.5103, 6.495, 6.6023, 6.569, 6.5375, 6.6425, 6.6113, 6.5847, 6.5553, 6.5418, 6.5157, 6.4921, 6.4709, 6.445, 6.4211, 6.4017, 6.3818, 6.3677, 6.3506, 6.3436, 6.4253, 6.4977, 6.5734, 6.5673, 6.548, 6.5284, 6.5957, 6.5758, 6.5659, 6.5477, 6.532, 6.5164, 6.501, 6.4908, 6.8243, 6.8088, 6.8648, 6.9136, 6.8998, 6.9663, 6.9627, 6.9467, 6.9306, 6.9131, 6.9178, 6.9011, 6.8858, 6.8701, 6.8552, 6.8403, 6.7657, 6.7584, 6.7438, 6.7505, 6.8573, 6.9021, 7.0158, 7.0528, 7.034, 7.023, 7.0073, 6.9955, 7.0375, 7.0392, 7.0231, 7.0087, 6.996, 6.9805, 6.9647, 6.9567, 6.9936, 6.9882, 6.9741, 6.96, 6.9485, 6.9342, 6.9694, 6.9856, 7.0637, 7.0574, 7.0504, 7.0353, 7.0667, 7.099, 7.0851, 7.0838, 7.0724, 7.1037, 7.1085, 7.0974, 7.0877, 7.0781, 7.0652, 7.0656, 7.0539, 7.0485, 7.0345, 7.024, 7.0234, 7.0236, 7.0155, 7.0047, 6.992, 6.981, 6.972, 6.968, 6.9595, 6.9167, 6.9124, 6.911, 6.9009, 6.8924, 6.9188, 6.9562, 6.9465, 6.9379, 6.9297, 6.9232, 6.9256, 6.9171, 6.9088, 6.9064, 6.8987, 6.8928, 6.8861, 6.8786, 6.8738, 6.8701, 6.864, 6.9466, 6.9429, 6.934, 6.9263, 6.9217, 6.9474, 6.939, 6.9294, 6.92, 6.9121, 6.904, 6.8989, 6.8907, 6.8879, 6.8816, 6.875, 6.8684, 6.8606, 6.883, 6.8745, 6.8658, 6.8607, 6.8815, 6.9028, 6.9254, 6.9179, 6.9387, 6.9591, 6.9508, 6.9441, 6.9364, 6.9311, 6.9308, 6.9255, 6.9192, 6.9386, 6.9311, 6.9036, 6.923, 6.9425, 6.9352, 6.9348, 6.9049, 6.8981, 6.9031, 6.9072, 7.0105, 7.0039, 7.0253, 7.0529, 7.0442, 7.0602, 7.0761, 7.0469, 7.0401, 7.0332, 7.0305, 7.0239, 7.0434, 7.0592, 7.0524, 7.0471, 7.0398, 7.0338, 7.0322, 7.0254, 7.02, 7.0131, 6.988, 6.9816, 6.9986, 6.9921, 6.986, 6.9597, 6.9762, 6.9706, 6.9643, 6.9876, 6.9812, 6.975, 6.97, 6.9645, 6.9806, 6.9734, 6.9725, 6.9662, 6.9813, 6.9753, 6.9711, 6.969, 6.945, 6.9555, 6.9503, 6.9454, 6.9405, 6.9375, 6.9385, 6.9337, 6.929, 6.9246, 6.9388, 6.9339, 6.9306, 6.9253, 6.9229, 6.9187, 6.9341, 6.9491, 6.9441, 6.9842, 6.9787, 6.9949, 7.0172, 7.0126, 7.0091, 7.005, 6.9993, 7.0136, 6.9909, 6.9912, 6.9883, 6.9963, 7.002, 6.9986, 7.0148, 7.0134, 7.0144, 7.0305, 7.0272, 7.0254, 7.024, 7.0217, 7.0201, 7.0179, 7.0147, 7.0295, 7.0253, 7.0234, 7.0378, 7.0352, 7.031, 7.0277, 7.0409, 7.0365, 7.0319, 7.0457, 7.0413, 7.0388, 7.0349, 7.0309, 7.0447, 7.056, 7.0514, 7.0471, 7.0446, 7.0444, 7.0244, 7.0213, 7.0391, 7.0195, 7.0316, 7.0443, 7.0401, 7.0373, 7.0336, 7.0294, 7.0419, 7.0531, 7.0986, 7.1523, 7.1475, 7.1424, 7.137, 7.1489, 7.1434, 7.141, 7.1364, 7.1327, 7.1288, 7.1402, 7.1356, 7.132, 7.1268, 7.1123, 7.107, 7.1024, 7.0993, 7.1101, 7.121, 7.1316, 7.1293, 7.1135, 7.1083, 7.1044, 7.0861, 7.081, 7.0766, 7.0867, 7.0847, 7.0796, 7.0751, 7.0699, 7.0653, 7.0754, 7.071, 7.0678, 7.0648, 7.0744, 7.07, 7.0802, 7.0769, 7.072, 7.0677, 7.0631, 7.0586, 7.0561, 7.0515, 7.0612, 7.0443, 7.0542, 7.0508, 7.0494, 7.0587, 7.0684, 7.0809, 7.0805, 7.078, 7.0746, 7.0832, 7.0866, 7.0876, 7.0886000000000005, 7.089600000000001, 7.0875, 7.0836, 7.0918, 7.0879, 7.0842, 7.0797, 7.0778, 7.0767, 7.0732, 7.0695, 7.0669, 7.0631, 7.0476, 7.0469, 7.0445, 7.0455000000000005, 7.046500000000001, 7.0426, 7.0528, 7.0511, 7.0521, 7.0479, 7.0578, 7.0536, 7.0495, 7.059, 7.0556, 7.0519, 7.0639, 7.0625, 7.0583, 7.0666, 7.0633, 7.0603, 7.0565, 7.0525, 7.0499, 7.0643, 7.0606, 7.0616, 7.0591, 7.055, 7.0517, 7.048, 7.0447, 7.0405, 7.0373, 7.0456, 7.043, 7.0393, 7.0353, 7.0318, 7.0282, 7.0372, 7.0332, 7.0299, 7.0267, 7.0229, 7.0457, 7.0417, 7.0493, 7.0568, 7.0532, 7.0624, 7.0515, 7.0503, 7.0475, 7.0442, 7.0668, 7.0749, 7.0715, 7.1015, 7.0984, 7.106, 7.1174, 7.1138, 7.1102, 7.1178, 7.1142, 7.1107, 7.1069, 7.1152, 7.1116, 7.1089, 7.1051, 7.1028, 7.1, 7.1184, 7.1211, 7.1182, 7.1154, 7.112, 7.13, 7.1265, 7.1232, 7.12, 7.1274, 7.1347, 7.1311, 7.1288, 7.1471, 7.1546, 7.1627, 7.1701, 7.1664, 7.1631, 7.1671, 7.1644, 7.1617, 7.1581, 7.1546, 7.1512, 7.1484, 7.145, 7.1447, 7.1413, 7.1381, 7.1345, 7.1218, 7.1186, 7.1209, 7.1184, 7.1266, 7.149, 7.1635, 7.1804, 7.1973, 7.2062, 7.2029, 7.211, 7.208, 7.2058, 7.2022, 7.1992, 7.1967, 7.2032, 7.2001, 7.2076, 7.2147, 7.2219, 7.2383, 7.2453, 7.2614, 7.2681, 7.2647, 7.2623, 7.269, 7.2848, 7.2839, 7.2806, 7.2774, 7.2844, 7.291, 7.2875, 7.2939, 7.2964, 7.3124, 7.3189, 7.3248, 7.3125, 7.3088, 7.3101, 7.3071, 7.3129, 7.3467, 7.3529, 7.3587, 7.3554, 7.3522, 7.3503, 7.3488, 7.3474, 7.3444, 7.3503, 7.3562, 7.3533, 7.3613, 7.368, 7.3667, 7.3722, 7.3692, 7.3661, 7.3728, 7.3693, 7.366, 7.3722, 7.361, 7.3494, 7.3464, 7.3438, 7.35, 7.3566, 7.3634, 7.3604, 7.366, 7.3631, 7.3696, 7.3666, 7.3679, 7.3646, 7.3617, 7.3585, 7.3552, 7.361, 7.3671, 7.3647, 7.3611, 7.3622, 7.3624, 7.3592, 7.3559, 7.3524, 7.3493, 7.3549, 7.3517, 7.3485, 7.3541, 7.3545, 7.3696, 7.3663, 7.3809, 7.3783, 7.375, 7.372, 7.3777, 7.3743, 7.3883, 7.4019, 7.3986, 7.3953, 7.3933, 7.3909, 7.4048, 7.4016, 7.3993, 7.3987, 7.4155, 7.4209, 7.4181, 7.4166, 7.4136, 7.4105, 7.4086, 7.4152, 7.4121, 7.409, 7.4069, 7.4117, 7.4085, 7.4063, 7.4036, 7.3931, 7.3902, 7.388, 7.385, 7.3826, 7.3793, 7.3839, 7.389, 7.3858, 7.3826, 7.3873, 7.3921, 7.3898, 7.3884, 7.3931, 7.399, 7.3959, 7.3929, 7.3982, 7.3951, 7.3927, 7.3907, 7.3962, 7.393, 7.3914, 7.3884, 7.3853, 7.3825, 7.383500000000001, 7.3803, 7.3776, 7.3753, 7.3728, 7.37, 7.3674, 7.3645, 7.3621, 7.3592, 7.3673, 7.3656, 7.3637, 7.368, 7.3735, 7.3711, 7.3768, 7.3814, 7.3795, 7.3775, 7.3745, 7.3723, 7.3707, 7.3623, 7.3599, 7.3572, 7.355, 7.3526, 7.3577, 7.3556, 7.3529, 7.3502, 7.349, 7.3463, 7.345, 7.343, 7.3405, 7.3376, 7.3493, 7.3474, 7.3448, 7.3421, 7.3402, 7.3374, 7.3502, 7.3482, 7.3543, 7.3517, 7.3492, 7.3482, 7.3458, 7.3429, 7.3404, 7.3387, 7.3364, 7.3351, 7.3397, 7.3377, 7.335, 7.3324, 7.3301, 7.3273, 7.325, 7.323, 7.321, 7.3194, 7.3243, 7.3216, 7.3203, 7.3178, 7.3152, 7.3194, 7.324, 7.3286, 7.3264, 7.3306, 7.3291, 7.3333, 7.3311, 7.3299, 7.3279, 7.334, 7.335, 7.3404, 7.3379, 7.3428, 7.3467, 7.3442, 7.3417, 7.3463, 7.3437, 7.3482, 7.3458, 7.3431, 7.3458, 7.343, 7.3405, 7.3449, 7.3437, 7.3669, 7.3649, 7.3627, 7.3685, 7.3668, 7.3644, 7.3621, 7.3594, 7.357, 7.3549, 7.3525, 7.3501, 7.3475, 7.3451, 7.3427, 7.3424, 7.3469, 7.3445, 7.3422, 7.3405, 7.3331, 7.3319, 7.3301, 7.328, 7.3266, 7.3249, 7.3235, 7.3217, 7.3206, 7.3183, 7.3167, 7.315, 7.3128, 7.3347, 7.3321, 7.3375, 7.3357, 7.334, 7.3315, 7.3331, 7.3312, 7.3294, 7.3342, 7.3322, 7.3302, 7.3294, 7.3337, 7.3381, 7.3356, 7.3338, 7.3322, 7.3297, 7.3273, 7.325, 7.3225, 7.3203, 7.3247, 7.3222, 7.3199, 7.3176, 7.3221, 7.3261, 7.3301, 7.3278, 7.3281, 7.3322, 7.3304, 7.3286, 7.3335, 7.3313, 7.3295, 7.3272, 7.3251, 7.323, 7.3279, 7.3258, 7.3533, 7.3513, 7.3548, 7.3529, 7.3505, 7.3505, 7.349, 7.3473, 7.3397, 7.3375, 7.3416, 7.3394, 7.3371, 7.3349, 7.3394, 7.337, 7.3348, 7.3329, 7.3307, 7.3347, 7.3325, 7.3305, 7.3281, 7.3268, 7.3309, 7.3286, 7.3327, 7.3308, 7.329, 7.3336, 7.338, 7.3361, 7.334, 7.335, 7.3336, 7.3313, 7.3355, 7.3332, 7.3315, 7.3297, 7.334, 7.3317, 7.3301, 7.3279, 7.3375, 7.3353, 7.3334, 7.3315, 7.3294, 7.3276, 7.3325, 7.3312, 7.3289, 7.3276, 7.3313, 7.3301, 7.3283, 7.3269, 7.3307, 7.3288, 7.3271, 7.3316, 7.3326, 7.3311, 7.3321000000000005, 7.333100000000001, 7.3309, 7.3292, 7.3332, 7.3377, 7.3416, 7.345, 7.3545, 7.3534, 7.3522, 7.3503, 7.3485, 7.3486, 7.3466, 7.3506, 7.3497, 7.3534, 7.357, 7.355, 7.3529, 7.3509, 7.3492, 7.3532, 7.3511, 7.3549, 7.3529, 7.3508, 7.3545, 7.3555, 7.3538, 7.3518, 7.3551, 7.3588, 7.3568, 7.355, 7.3535, 7.3521, 7.3507, 7.349, 7.3469, 7.3452, 7.3493, 7.3473, 7.3517, 7.3523, 7.3509, 7.3496, 7.3528, 7.378, 7.3813, 7.3798, 7.3781, 7.376, 7.3741, 7.3721, 7.3701, 7.3894, 7.3881, 7.3861, 7.3844, 7.3879, 7.3913, 7.3892, 7.3894, 7.3904, 7.3885, 7.3818, 7.3803, 7.3783, 7.3767, 7.3748, 7.3692, 7.3681, 7.366, 7.3641, 7.3677, 7.3722, 7.3707, 7.3687, 7.3679, 7.3714, 7.3694, 7.3736, 7.3774, 7.3759, 7.3744, 7.3779, 7.376, 7.3749, 7.3734, 7.3721, 7.3656, 7.3637, 7.362, 7.3601, 7.3615, 7.3595, 7.3574, 7.3587, 7.3567, 7.3547, 7.3585, 7.3618, 7.3602, 7.3589, 7.3575, 7.3556, 7.3589, 7.362, 7.3601, 7.3582, 7.3618, 7.3628, 7.3629, 7.3612, 7.3782, 7.3807, 7.3789, 7.3798, 7.3835, 7.3874, 7.3906, 7.3939, 7.392, 7.3902, 7.3935, 7.4099, 7.4085, 7.4119, 7.4153, 7.4139, 7.4128, 7.411, 7.4089, 7.4118, 7.4107, 7.4087, 7.407, 7.4058, 7.4091, 7.4133, 7.4228, 7.4217, 7.4199, 7.4184, 7.4219, 7.4257, 7.4241, 7.4275, 7.4304, 7.4439, 7.4429, 7.4411, 7.4449, 7.4433, 7.4414, 7.4401, 7.4336, 7.4421, 7.4424, 7.4404, 7.4385, 7.4368, 7.4352, 7.4337, 7.4324, 7.4309, 7.4289, 7.4275, 7.4307, 7.4292, 7.4272, 7.4252, 7.4232, 7.4287, 7.4268, 7.4249, 7.423, 7.422, 7.4201, 7.4185, 7.4167, 7.415, 7.4182, 7.4163, 7.4147, 7.4128, 7.411, 7.4096, 7.4081, 7.4071, 7.4075, 7.4103, 7.4093, 7.4078, 7.4107, 7.4088, 7.4069, 7.4057, 7.406700000000001, 7.407700000000001, 7.4057, 7.4038, 7.4019, 7.3964, 7.3902, 7.3885, 7.3868, 7.3855, 7.3839, 7.3824, 7.381, 7.3842, 7.3826, 7.3809, 7.3795, 7.3778, 7.3764, 7.3796, 7.3779, 7.3813, 7.3845, 7.3877, 7.3871, 7.3855, 7.3846, 7.3836, 7.398, 7.3966, 7.3967, 7.395, 7.3939, 7.3925, 7.3981, 7.4134, 7.412, 7.4153, 7.4139, 7.4077, 7.4062, 7.409, 7.4075, 7.4059, 7.4045, 7.4079, 7.4063, 7.4049, 7.4045, 7.4035, 7.402, 7.4006, 7.3996, 7.4024, 7.3968, 7.395, 7.3983, 7.3968, 7.3954, 7.3988, 7.3974, 7.396, 7.397, 7.3954, 7.396400000000001, 7.3947, 7.3983, 7.3979, 7.3962, 7.3947, 7.3929, 7.392, 7.3906, 7.3889, 7.3875, 7.3861, 7.3847, 7.3831, 7.3865, 7.3848, 7.3877, 7.3907, 7.3937, 7.3964, 7.3949, 7.3959, 7.3941, 7.3947, 7.3932, 7.3959, 7.3989, 7.3976, 7.4039, 7.4049000000000005, 7.4032, 7.4195, 7.4219, 7.4336, 7.4324, 7.4342, 7.4328, 7.4344, 7.4372, 7.4356, 7.4346, 7.433, 7.4461, 7.4443, 7.4439, 7.4423, 7.4406, 7.439, 7.4418, 7.4405, 7.439, 7.4374, 7.4318, 7.439, 7.4422, 7.4404, 7.4388, 7.4562, 7.4548, 7.4534, 7.4517, 7.4504, 7.4531, 7.4514, 7.4501, 7.4503, 7.4489, 7.4521, 7.4547, 7.4536, 7.4563, 7.4552, 7.4579, 7.4566, 7.455, 7.4536, 7.4563, 7.4554, 7.4539, 7.4525, 7.4508, 7.4536, 7.4526, 7.4514, 7.4498, 7.4558, 7.4545, 7.4538, 7.457, 7.4556, 7.4543, 7.4579, 7.4562, 7.4594, 7.4578, 7.4564, 7.4551, 7.4534, 7.4534, 7.452, 7.4545, 7.4537, 7.4527, 7.4551, 7.4541, 7.4529, 7.4625, 7.4653, 7.4643, 7.4631, 7.4615, 7.4602, 7.4588, 7.4576, 7.4561, 7.455, 7.454, 7.4524, 7.4508, 7.4497, 7.4528, 7.4556, 7.4541, 7.4524, 7.4514, 7.4501, 7.4452, 7.4437, 7.4424, 7.4411, 7.4404, 7.4391, 7.4417, 7.4401, 7.4386, 7.4371, 7.4398, 7.4383, 7.4338, 7.4337, 7.4364, 7.439, 7.4374, 7.4366, 7.4351, 7.4337, 7.4323, 7.4315, 7.4299, 7.4247, 7.424, 7.4225, 7.4211, 7.4197, 7.4182, 7.4208, 7.4196, 7.4181, 7.4168, 7.4155, 7.422, 7.4245, 7.4232, 7.4216, 7.4213, 7.4196, 7.4228, 7.4212, 7.42, 7.4226, 7.421, 7.4232, 7.4259, 7.4244, 7.4305, 7.4294, 7.435, 7.4336, 7.4334, 7.436, 7.4352, 7.434, 7.4327, 7.4439, 7.4447, 7.4457, 7.4445, 7.4455, 7.4448, 7.4436, 7.446, 7.4445, 7.4433, 7.4421, 7.4448, 7.4438, 7.4422, 7.4416, 7.4405, 7.4427, 7.445, 7.4476, 7.4465, 7.445, 7.4435, 7.446, 7.4445, 7.4406, 7.4416, 7.4426000000000005, 7.443600000000001, 7.4459, 7.4444, 7.4511, 7.45, 7.4489, 7.4474, 7.4477, 7.4429, 7.4414, 7.4438, 7.4429, 7.4464, 7.4449, 7.4437, 7.4465, 7.4489, 7.4475, 7.4491, 7.4476, 7.4464, 7.4452, 7.444, 7.443, 7.4415, 7.4436, 7.4425, 7.4411, 7.4433, 7.4455, 7.4448, 7.4433, 7.442, 7.4405, 7.439, 7.4379, 7.4364, 7.4391, 7.4413, 7.4434, 7.4422, 7.451, 7.4536, 7.4523, 7.4513, 7.4499, 7.4484, 7.4437, 7.4422, 7.4447, 7.4473, 7.4459, 7.4445, 7.447, 7.4457, 7.4442, 7.4427, 7.4417, 7.4404, 7.4391, 7.438, 7.4439, 7.4425, 7.445, 7.4439, 7.4467, 7.4477, 7.4465, 7.4493, 7.4481, 7.4468, 7.4495, 7.4516, 7.4505, 7.4492, 7.448, 7.4467, 7.449, 7.4479, 7.447, 7.4495, 7.4481, 7.4468, 7.4461, 7.4486, 7.451, 7.4498, 7.4483, 7.4472, 7.4459, 7.445, 7.4472, 7.4459, 7.4446, 7.4433, 7.442, 7.4444, 7.4434, 7.4457, 7.4478, 7.4465, 7.445, 7.4435, 7.4457, 7.4445, 7.4472, 7.4464, 7.4454, 7.4443, 7.4396, 7.4384, 7.4405, 7.4392, 7.438, 7.437, 7.436, 7.4347, 7.4345, 7.4333, 7.4326, 7.4318, 7.4307, 7.4296, 7.4287, 7.4274, 7.4345, 7.4333, 7.4373, 7.4428, 7.4384, 7.4371, 7.4336, 7.43, 7.4288, 7.4332, 7.4289, 7.4276, 7.4302, 7.4327, 7.4415, 7.4412, 7.4399, 7.4386, 7.4485, 7.4472, 7.4471, 7.4493, 7.4483, 7.447, 7.4457, 7.4444, 7.4435, 7.4422, 7.441, 7.4396, 7.4416, 7.4402, 7.4423, 7.4409, 7.4399, 7.4388, 7.4411, 7.4397, 7.4416, 7.4405, 7.4427, 7.4414, 7.4403, 7.4391, 7.4379, 7.4378, 7.4401, 7.4393, 7.435, 7.4338, 7.4329, 7.4317, 7.4307, 7.4293, 7.4279, 7.4267, 7.4255, 7.4278, 7.4268, 7.4255, 7.4278, 7.4272, 7.4283, 7.4303, 7.4332, 7.4352, 7.4341, 7.4363, 7.4326, 7.4314, 7.4301, 7.429, 7.4277, 7.4269, 7.4259, 7.4246, 7.427, 7.4289, 7.4277, 7.4264, 7.4252, 7.4282, 7.4342, 7.4419, 7.4409, 7.4401, 7.4395, 7.4381, 7.4372, 7.4365, 7.4355, 7.4347, 7.4337, 7.4327, 7.4314, 7.4303, 7.4428, 7.4415, 7.4435, 7.4424, 7.4445, 7.4435, 7.4426, 7.4412, 7.4399, 7.4423, 7.4414, 7.4401, 7.4388, 7.4381, 7.4368, 7.4368, 7.4392, 7.4411, 7.4398, 7.4387, 7.4406, 7.4393, 7.4383, 7.437, 7.4357, 7.4346, 7.4346, 7.4334, 7.4327, 7.4314, 7.43, 7.4292, 7.428, 7.4269, 7.4259, 7.425, 7.4237, 7.4257, 7.4247, 7.4265, 7.4286, 7.4305, 7.4327, 7.4314, 7.4304, 7.4292, 7.4311, 7.4331, 7.4353, 7.4342, 7.4331, 7.4321, 7.431, 7.432, 7.4345, 7.4336, 7.4358, 7.4346, 7.4333, 7.4324, 7.4312, 7.4333, 7.4321, 7.4309, 7.433, 7.432, 7.4312, 7.43, 7.4288, 7.4355, 7.4343, 7.4333, 7.432, 7.4307, 7.4299, 7.4322, 7.4343, 7.4333, 7.432, 7.4309, 7.4302, 7.429, 7.4277, 7.4265, 7.4254, 7.4241, 7.4228, 7.4217, 7.4242, 7.4234, 7.4254, 7.4217, 7.4204, 7.4227, 7.4238, 7.4264, 7.426, 7.4259, 7.4247, 7.4268, 7.4264, 7.4254, 7.4242, 7.4232, 7.4224, 7.4219, 7.4239, 7.4231, 7.4225, 7.4213, 7.4203, 7.4195, 7.4182, 7.4172, 7.4159, 7.4213, 7.4207, 7.4248, 7.4269, 7.4229, 7.4219, 7.4209, 7.4198, 7.4218, 7.4206, 7.4225, 7.4242, 7.4263, 7.4282, 7.4272, 7.4341, 7.433, 7.4353, 7.4342, 7.4331, 7.4333, 7.4325, 7.4318, 7.4306, 7.4302, 7.4293, 7.4282, 7.4283, 7.4272, 7.4292, 7.428, 7.4272, 7.426, 7.4251, 7.4268, 7.429, 7.4278, 7.4267, 7.426, 7.4249, 7.4238, 7.4226, 7.4216, 7.4206, 7.4195, 7.4194, 7.4189, 7.4179, 7.4167, 7.4185, 7.4173, 7.4164, 7.419, 7.4179, 7.4198, 7.4188, 7.4208, 7.4196, 7.4189, 7.4178, 7.4167, 7.4159, 7.4148, 7.4136, 7.4125, 7.4144, 7.4163, 7.4155, 7.4174, 7.4164, 7.4153, 7.4143, 7.4166, 7.4155, 7.4144, 7.4136, 7.4124, 7.4112, 7.4131, 7.412, 7.411, 7.4133, 7.4122, 7.4112, 7.4104, 7.4099, 7.4152, 7.4141, 7.4131, 7.4095, 7.4085, 7.4074, 7.4062, 7.4055, 7.4078, 7.4066, 7.406, 7.4051, 7.4071, 7.406, 7.4049, 7.4096, 7.4086, 7.4105, 7.4155, 7.4145, 7.4134, 7.4137, 7.4125, 7.4131, 7.4121, 7.4113, 7.4134, 7.4135, 7.4125, 7.4193, 7.4196, 7.419, 7.4226, 7.4216, 7.4276, 7.4264, 7.4254, 7.4242, 7.4237, 7.4226, 7.4215, 7.4234, 7.4226, 7.4216, 7.4205, 7.4222, 7.4255, 7.4218, 7.4207, 7.4198, 7.4188, 7.4177, 7.4167, 7.4186, 7.4178, 7.4218, 7.421, 7.4203, 7.4191, 7.421, 7.42, 7.4193, 7.421, 7.42, 7.4189, 7.4206, 7.4196, 7.4206, 7.4196, 7.4185, 7.4174, 7.4164, 7.4154, 7.4146, 7.4137, 7.4128, 7.4117, 7.4134, 7.4125, 7.4114, 7.4104, 7.4121, 7.411, 7.4099, 7.4117, 7.4109, 7.4098, 7.4087, 7.4078, 7.4095, 7.4113, 7.4102, 7.407, 7.4063, 7.4059, 7.4023, 7.3988, 7.4006, 7.3995, 7.3985, 7.3978, 7.3969, 7.3959, 7.3985, 7.3975, 7.3965, 7.3954, 7.3971, 7.3962, 7.3954, 7.3946, 7.3936, 7.3928, 7.3921, 7.391, 7.3899, 7.3895, 7.3884, 7.3877, 7.3907, 7.3961, 7.3984, 7.3979, 7.3969, 7.3962, 7.3981, 7.3972, 7.3964, 7.3954, 7.3945, 7.3935, 7.3952, 7.3941, 7.3962, 7.3955, 7.3946, 7.3938, 7.3933, 7.3984, 7.3977, 7.3971, 7.3973, 7.3995, 7.3987, 7.3993, 7.402, 7.4013, 7.4013, 7.4044, 7.4044, 7.4017, 7.4008, 7.3999, 7.3993, 7.3987, 7.3977, 7.3995, 7.4066, 7.4057, 7.4077, 7.4096, 7.407, 7.4059, 7.4052, 7.4069, 7.4121, 7.411, 7.4099, 7.4117, 7.4107, 7.4097, 7.4115, 7.4106, 7.4099, 7.4092, 7.4082, 7.4076, 7.4068, 7.4233, 7.4252, 7.4323, 7.4313, 7.4305, 7.4295, 7.4261, 7.4251, 7.4241, 7.4291, 7.4282, 7.4272, 7.4262, 7.4252, 7.4241, 7.4257, 7.4268, 7.4261, 7.4256, 7.4248, 7.4238, 7.426, 7.4252, 7.4242, 7.4232, 7.4227, 7.4217, 7.4207, 7.4217, 7.4209, 7.4202, 7.4219, 7.421, 7.42, 7.4194, 7.4185, 7.4175, 7.4167, 7.416, 7.4161, 7.4156, 7.4181, 7.4173, 7.4164, 7.4156, 7.4149, 7.4139, 7.4135, 7.4127, 7.4117, 7.4109, 7.4107, 7.4103, 7.4126, 7.4119, 7.4086, 7.4152, 7.4141, 7.413, 7.4152, 7.4141, 7.4159, 7.415, 7.4166, 7.4185, 7.4177, 7.4207, 7.4226, 7.4216, 7.422, 7.4218, 7.421, 7.4205, 7.4196, 7.4191, 7.4184, 7.4176, 7.4166, 7.4156, 7.4146, 7.4161, 7.4153, 7.4143, 7.4133, 7.4125, 7.4115, 7.4106, 7.4096, 7.4086, 7.4081, 7.4073, 7.409, 7.4082, 7.4072, 7.4062, 7.4054, 7.4045, 7.4064, 7.4058, 7.4049, 7.4044, 7.406, 7.405, 7.404, 7.4008, 7.4001, 7.3991, 7.4012, 7.4007, 7.4025, 7.4018, 7.4011, 7.4001, 7.3992, 7.4008, 7.3998, 7.3989, 7.4023, 7.4018, 7.4013, 7.4003, 7.3993, 7.3961, 7.3976, 7.3992, 7.3986, 7.3976, 7.3966, 7.3957, 7.3947, 7.3947, 7.3962, 7.3952, 7.3944, 7.3961, 7.3953, 7.3944, 7.3935, 7.3928, 7.3921, 7.3915, 7.3932, 7.3947, 7.3963, 7.398, 7.3971, 7.3962, 7.398, 7.3971, 7.3962, 7.3954, 7.3944, 7.3934, 7.3949, 7.3965, 7.398, 7.3972, 7.3963, 7.3953, 7.3969, 7.3963, 7.3953, 7.3946, 7.3938, 7.393, 7.392, 7.391, 7.39, 7.3893, 7.390300000000001, 7.3896, 7.3916, 7.3908, 7.3923, 7.3917, 7.3933, 7.3949, 7.3941, 7.3955, 7.395, 7.3942, 7.3937, 7.3953, 7.3968, 7.396, 7.3951, 7.3945, 7.3936, 7.393, 7.3922, 7.3938, 7.3948, 7.3942, 7.3933, 7.3924, 7.3919, 7.396, 7.395, 7.3941, 7.3955, 7.3972, 7.3968, 7.3958, 7.3949, 7.3985, 7.4025, 7.4041, 7.4082, 7.4072, 7.4065, 7.4058, 7.4049, 7.404, 7.4031, 7.4024, 7.4016, 7.401, 7.4, 7.3991, 7.3982, 7.3973, 7.3991, 7.3988, 7.398, 7.3973, 7.3965, 7.398, 7.3972, 7.3964, 7.3981, 7.3973, 7.3964, 7.3958, 7.395, 7.3965, 7.3957, 7.3974, 7.3973, 7.3967, 7.3961, 7.3958, 7.3952, 7.3952, 7.3969, 7.397, 7.3963, 7.3954, 7.3945, 7.3936, 7.3953, 7.3971, 7.3962, 7.3955, 7.3946, 7.397, 7.3961, 7.3954, 7.3968, 7.3964, 7.3962, 7.3953, 7.3945, 7.3915, 7.3908, 7.39, 7.3893, 7.391, 7.3904, 7.3899, 7.3914, 7.3907, 7.3898, 7.3914, 7.3934, 7.395, 7.3942, 7.3935, 7.395, 7.3944, 7.394, 7.3955, 7.3965000000000005, 7.3957, 7.3948, 7.394, 7.3931, 7.3926, 7.3919, 7.3913, 7.3928, 7.3919, 7.3911, 7.3906, 7.3904, 7.3895, 7.3909, 7.3902, 7.3949, 7.3989, 7.3982, 7.3996, 7.3988, 7.4026, 7.4018, 7.401, 7.4006, 7.3997, 7.399, 7.3965, 7.3958, 7.3934, 7.3957, 7.3948, 7.394, 7.3931, 7.3947, 7.3941, 7.4001, 7.402, 7.4035, 7.4005, 7.3999, 7.4015, 7.4008, 7.4002, 7.4002, 7.3993, 7.4007, 7.3998, 7.399, 7.3983, 7.3998, 7.3991, 7.3982, 7.3972, 7.3963, 7.3956, 7.3954, 7.3947, 7.401, 7.4001, 7.4016, 7.401, 7.4003, 7.3994, 7.3987, 7.4003, 7.3995, 7.3987, 7.4003, 7.3994, 7.3987, 7.4003, 7.3995, 7.3987, 7.398, 7.3995, 7.3966, 7.3967, 7.3958, 7.3976, 7.397, 7.3966, 7.3958, 7.3952, 7.3944, 7.3935, 7.3926, 7.3941, 7.3934, 7.3951, 7.3951, 7.3943, 7.3935, 7.3927, 7.3919, 7.3933, 7.3927, 7.3965, 7.3982, 7.3973, 7.3966, 7.3979, 7.397, 7.3964, 7.3958, 7.3952, 7.3944, 7.3917, 7.3909, 7.3901, 7.3915, 7.3911, 7.3905, 7.3898, 7.3912, 7.3906, 7.392, 7.3911, 7.3884, 7.3879, 7.387, 7.3864, 7.3855, 7.3869, 7.3868, 7.3862, 7.3876, 7.3867, 7.3839, 7.3834, 7.3829, 7.3821, 7.3812, 7.3804, 7.3817, 7.3811, 7.3802, 7.3793, 7.3808, 7.3801, 7.3814, 7.3827, 7.3819, 7.381, 7.3824, 7.3817, 7.381, 7.3803, 7.3819, 7.3811, 7.3825, 7.3818, 7.381, 7.3803, 7.3813, 7.3829, 7.3823, 7.3815, 7.3808, 7.3822, 7.3816, 7.3809, 7.3801, 7.3792, 7.3785, 7.3779, 7.3772, 7.3765, 7.3778, 7.379, 7.3803, 7.3775, 7.3789, 7.3781, 7.3775, 7.3789, 7.3781, 7.3775, 7.3766, 7.3781, 7.3773, 7.3765, 7.3757, 7.3749, 7.374, 7.3753, 7.3772, 7.3786, 7.3784, 7.3776, 7.379, 7.3782, 7.3774, 7.3768, 7.376, 7.3752, 7.3767, 7.376, 7.3796, 7.3788, 7.3786, 7.3778, 7.377, 7.3764, 7.3759, 7.3751, 7.3747, 7.3741, 7.3735, 7.3729, 7.3723, 7.3715, 7.3708, 7.3703, 7.3698, 7.3671, 7.3716, 7.3693, 7.3689, 7.3705, 7.3721, 7.3731, 7.3704, 7.3696, 7.369, 7.3682, 7.3716, 7.373, 7.3722, 7.3714, 7.3728, 7.372, 7.3712, 7.3726, 7.3717, 7.3745, 7.3738, 7.373, 7.3740000000000006, 7.3734, 7.3726, 7.3721, 7.3736, 7.375, 7.3764, 7.3759, 7.3772, 7.3786, 7.3779, 7.3773, 7.3767, 7.3762, 7.382, 7.382, 7.3834, 7.3826, 7.3818, 7.381, 7.3802, 7.3816, 7.3814, 7.3828, 7.382, 7.3812, 7.3804, 7.3797, 7.3789, 7.3815, 7.3965, 7.3942, 7.3958, 7.397, 7.3965, 7.402, 7.4034, 7.4026, 7.4041, 7.4118, 7.4113, 7.4105, 7.4098, 7.4092, 7.4087, 7.4083, 7.4075, 7.407, 7.4044, 7.404, 7.4033, 7.4051, 7.4159, 7.4151, 7.4165, 7.4157, 7.4169, 7.4161, 7.4157, 7.417, 7.4164, 7.4156, 7.4148, 7.414, 7.4134, 7.4127, 7.4119, 7.4111, 7.4124, 7.4138, 7.413, 7.4103, 7.4096, 7.4089, 7.4085, 7.4078, 7.407, 7.4064, 7.4056, 7.4051, 7.4046, 7.4039, 7.4031, 7.4025, 7.4019, 7.4015, 7.4009, 7.4031, 7.4033, 7.4045, 7.4037, 7.405, 7.4044, 7.4049, 7.4042, 7.4034, 7.4048, 7.4043, 7.4042, 7.4047, 7.4099, 7.4093, 7.4085, 7.408, 7.4093, 7.4106, 7.4119, 7.4113, 7.4105, 7.4115, 7.4125000000000005, 7.4117, 7.4131, 7.4124, 7.4137, 7.4151, 7.417, 7.4144, 7.4136, 7.4149, 7.4144, 7.4138, 7.413, 7.4124, 7.4116, 7.4108, 7.4103, 7.4095, 7.4089, 7.4081, 7.4095, 7.4088, 7.4063, 7.4055, 7.405, 7.4044, 7.4086, 7.4079, 7.409, 7.4083, 7.4078, 7.4119, 7.4112, 7.4104, 7.4126, 7.421, 7.4207, 7.4181, 7.4156, 7.413, 7.4143, 7.4136, 7.4133, 7.4155, 7.4149, 7.4161, 7.4174, 7.4168, 7.4161, 7.416, 7.4173, 7.4166, 7.4159, 7.4172, 7.4168, 7.4164, 7.4156, 7.417, 7.4162, 7.4158, 7.4152, 7.4164, 7.4157, 7.4149, 7.4141, 7.4153, 7.4147, 7.416, 7.4176, 7.4173, 7.4166, 7.4162, 7.416, 7.4154, 7.4151, 7.4144, 7.4164, 7.4148, 7.4147, 7.4142, 7.4135, 7.4132, 7.4126, 7.4137, 7.415, 7.4164, 7.4138, 7.4162, 7.4176, 7.417, 7.4164, 7.4158, 7.4153, 7.4166, 7.4158, 7.4151, 7.4144, 7.4137, 7.413, 7.4124, 7.4118, 7.411, 7.4109, 7.4106, 7.4119, 7.4113, 7.4137, 7.4131, 7.4131, 7.4169, 7.4164, 7.4157, 7.415, 7.4143, 7.4137, 7.413, 7.4123, 7.4116, 7.4128, 7.4128, 7.412, 7.4112, 7.4127, 7.412, 7.4158, 7.4152, 7.4146, 7.414, 7.4134, 7.411, 7.4105, 7.4098, 7.4099, 7.4144, 7.4136, 7.413, 7.4142, 7.4135, 7.4128, 7.4124, 7.4136, 7.4148, 7.414, 7.4153, 7.4185, 7.4178, 7.4183, 7.4199, 7.4179, 7.4173, 7.4166, 7.416, 7.4155, 7.4162, 7.4174, 7.4167, 7.4178, 7.4191, 7.4184, 7.4176, 7.4168, 7.4162, 7.4174, 7.4169, 7.4182, 7.4214, 7.4211, 7.4206, 7.4201, 7.4223, 7.4217, 7.421, 7.4203, 7.4195, 7.4171, 7.4164, 7.4176, 7.4173, 7.4165, 7.4158, 7.4151, 7.4144, 7.4143, 7.4185, 7.4197, 7.4191, 7.4184, 7.4179, 7.4172, 7.4183, 7.4176, 7.4169, 7.42, 7.4211, 7.4262, 7.4238, 7.4249, 7.4262, 7.4256, 7.4267, 7.4278, 7.4289, 7.4281, 7.4274, 7.4287, 7.4284, 7.4276, 7.4268, 7.426, 7.4273, 7.4267, 7.4261, 7.4257, 7.4233, 7.4209, 7.422, 7.4212, 7.4223, 7.4221, 7.4199, 7.4193, 7.419, 7.4188, 7.4182, 7.4175, 7.4172, 7.4183, 7.4176, 7.4171, 7.4166, 7.4162, 7.4161, 7.4173, 7.4166, 7.416, 7.4171, 7.4182, 7.4177, 7.4172, 7.4165, 7.4158, 7.4153, 7.4147, 7.4141, 7.4134, 7.4127, 7.412, 7.4113, 7.4106, 7.4098, 7.4091, 7.4085, 7.4097, 7.409, 7.4102, 7.4094, 7.4114, 7.4108, 7.4102, 7.4104, 7.4099, 7.4092, 7.4086, 7.4098, 7.414, 7.4152, 7.415, 7.4145, 7.4158, 7.4152, 7.4146, 7.4139, 7.4136, 7.4128, 7.4139, 7.4135, 7.4148, 7.4143, 7.4155, 7.4148, 7.4159, 7.4171, 7.4163, 7.4156, 7.4149, 7.417, 7.4165, 7.416, 7.4153, 7.4147, 7.4124, 7.4135, 7.4147, 7.4141, 7.4155, 7.4149, 7.4181, 7.4175, 7.417, 7.4185, 7.4178, 7.419, 7.4203, 7.4196, 7.4189, 7.4182, 7.4175, 7.4187, 7.4199, 7.4195, 7.4233, 7.4226, 7.4219, 7.4196, 7.4207, 7.4219, 7.4212, 7.4225, 7.4218, 7.4212, 7.4205, 7.4198, 7.4209, 7.4204, 7.4197, 7.419, 7.4183, 7.4179, 7.4191, 7.4184, 7.4177, 7.4174, 7.4167, 7.4161, 7.4156, 7.4167, 7.4162, 7.4157, 7.4162, 7.4157, 7.4151, 7.4162, 7.4143, 7.4137, 7.4131, 7.413, 7.4131, 7.4127, 7.4139, 7.4135, 7.4129, 7.4122, 7.4116, 7.4112, 7.4107, 7.41, 7.4093, 7.4089, 7.4082, 7.4059, 7.4052, 7.405, 7.4043, 7.4037, 7.4031, 7.4024, 7.4018, 7.4012, 7.4023, 7.4034, 7.4027, 7.4022, 7.4076, 7.4071, 7.4083, 7.4094, 7.4093, 7.4114, 7.4108, 7.4156, 7.415, 7.4145, 7.414, 7.4153, 7.4149, 7.4159, 7.4208, 7.4201, 7.4195, 7.4211, 7.4205, 7.4199, 7.4194, 7.4205, 7.4198, 7.4195, 7.4193, 7.4188, 7.4187, 7.4181, 7.4175, 7.4188, 7.4182, 7.4176, 7.4189, 7.4182, 7.4193, 7.4187, 7.418, 7.4185, 7.418, 7.4173, 7.417, 7.4166, 7.416, 7.4155, 7.415, 7.4143, 7.4174, 7.4168, 7.4169, 7.4162, 7.4156, 7.4167, 7.4178, 7.4171, 7.4164, 7.4176, 7.417, 7.4165, 7.4143, 7.4157, 7.4152, 7.4145, 7.414, 7.4135, 7.4146, 7.4139, 7.4149, 7.4143, 7.4138, 7.4132, 7.4127, 7.4138, 7.4132, 7.4125, 7.4118, 7.4112, 7.4127, 7.4121, 7.4118, 7.4128, 7.4123, 7.4133, 7.4144, 7.415, 7.416, 7.4156, 7.4167, 7.4162, 7.4172, 7.4166, 7.4168, 7.4162, 7.4155, 7.4148, 7.4159, 7.4152, 7.4145, 7.4138, 7.4149, 7.4128, 7.4122, 7.4133, 7.4128, 7.4121, 7.4115, 7.4126, 7.4123, 7.4121, 7.4117, 7.4111, 7.4139, 7.4132, 7.4185, 7.4179, 7.4175, 7.4168, 7.4163, 7.4173, 7.4167, 7.4161, 7.4157, 7.415, 7.4144, 7.4138, 7.4133, 7.4127, 7.4122, 7.4117, 7.4114, 7.4112, 7.4107, 7.41, 7.4097, 7.4092, 7.4086, 7.408, 7.409, 7.41, 7.4096, 7.4091, 7.4086, 7.4084, 7.4078, 7.4135, 7.4132, 7.4125, 7.4119, 7.4114, 7.411, 7.4103, 7.4115, 7.4108, 7.4103, 7.4098, 7.4092, 7.4088, 7.4082, 7.4076, 7.407, 7.408, 7.409, 7.4084, 7.4078, 7.4072, 7.4083, 7.4077, 7.4071, 7.4065, 7.4059, 7.4053, 7.4047, 7.4044, 7.404, 7.4033, 7.4035, 7.4133, 7.4126, 7.4121, 7.4116, 7.4127, 7.4121, 7.4131, 7.4128, 7.4123, 7.4116, 7.4109, 7.4102, 7.4096, 7.4092, 7.4085, 7.408, 7.4078, 7.4088, 7.4098, 7.4077, 7.4104, 7.4097, 7.4107, 7.411, 7.412, 7.4113, 7.4124, 7.4118, 7.4112, 7.4105, 7.4115, 7.4126, 7.412, 7.413, 7.4123, 7.4117, 7.411, 7.4106, 7.4099, 7.41, 7.4094, 7.4106, 7.4101, 7.408, 7.409, 7.4084, 7.4077, 7.4073, 7.4068, 7.4063, 7.4073, 7.4084, 7.4078, 7.4072, 7.4082, 7.4093, 7.4086, 7.4083, 7.4093, 7.4088, 7.4082, 7.4091, 7.4086, 7.4081, 7.4077, 7.4073, 7.4066, 7.4077, 7.4077, 7.4072, 7.4092, 7.4088, 7.4084, 7.4078, 7.4089, 7.4083, 7.4077, 7.4074, 7.4085, 7.4096, 7.4106, 7.4085, 7.4096, 7.409, 7.41, 7.4111, 7.4106, 7.4101, 7.4095, 7.4105, 7.4101, 7.4095, 7.4088, 7.4083, 7.4095, 7.4089, 7.4083, 7.4093, 7.4088, 7.4081, 7.4076, 7.4071, 7.4068, 7.4062, 7.4056, 7.4052, 7.4047, 7.404, 7.4035, 7.403, 7.4041, 7.4036, 7.403, 7.4025, 7.402, 7.4015, 7.4015, 7.401, 7.4021, 7.4034, 7.4041, 7.4042, 7.4169, 7.418, 7.4174, 7.4158, 7.4153, 7.4147, 7.4142, 7.4138, 7.4131, 7.4159, 7.4156, 7.4149, 7.4146, 7.4142, 7.4136, 7.4131, 7.4125, 7.4135, 7.413, 7.4124, 7.4154, 7.4166, 7.416, 7.4154, 7.4149, 7.416, 7.4155, 7.4153, 7.4148, 7.4157, 7.4152, 7.4146, 7.414, 7.42, 7.4197, 7.4223, 7.4219, 7.4216, 7.4213, 7.4207, 7.4202, 7.4197, 7.4208, 7.4203, 7.423, 7.4226, 7.4207, 7.4205, 7.4215, 7.4209, 7.4204, 7.4232, 7.4227, 7.424, 7.4236, 7.4231, 7.4225, 7.4237, 7.4232, 7.4211, 7.4206, 7.4186, 7.4181, 7.4176, 7.417, 7.4165, 7.4159, 7.4157, 7.4154, 7.4164, 7.4159, 7.4206, 7.4186, 7.418, 7.4196, 7.4191, 7.4174, 7.4186, 7.4181, 7.4209, 7.4205, 7.4201, 7.4222, 7.4221, 7.4278, 7.4274, 7.427, 7.4264, 7.4259, 7.427, 7.4264, 7.4259, 7.4253, 7.4263, 7.4258, 7.4265, 7.4323, 7.4304, 7.4313, 7.4346, 7.434, 7.435, 7.4344, 7.4338, 7.4334, 7.4344, 7.4338, 7.4332, 7.4326, 7.4321, 7.4334, 7.4357, 7.4351, 7.4361, 7.4359, 7.4354, 7.4349, 7.4344, 7.4353, 7.4349, 7.4358, 7.4369, 7.4363, 7.4344, 7.4337, 7.4347, 7.4341, 7.4351, 7.4345, 7.434, 7.4338, 7.4332, 7.4339, 7.4349, 7.4343, 7.4337, 7.4333, 7.4328, 7.4323, 7.4319, 7.4315, 7.4326, 7.432, 7.4314, 7.4309, 7.4303, 7.4297, 7.4293, 7.4302, 7.4296, 7.429, 7.4284, 7.4294, 7.4288, 7.4269, 7.4269, 7.4263, 7.4257, 7.4268, 7.4278, 7.4262, 7.4258, 7.4253, 7.4248, 7.4243, 7.4237, 7.4232, 7.4227, 7.4236, 7.4248, 7.4242, 7.4259, 7.4279, 7.4274, 7.4271, 7.4266, 7.4262, 7.4257, 7.4253, 7.4248, 7.4243, 7.4237, 7.4231, 7.4225, 7.422, 7.4214, 7.421, 7.4205, 7.4215, 7.4211, 7.4206, 7.4201, 7.4195, 7.419, 7.4186, 7.4181, 7.4176, 7.4172, 7.4166, 7.4176, 7.4171, 7.4182, 7.4177, 7.4171, 7.4165, 7.4174, 7.417, 7.4166, 7.416, 7.4155, 7.4171, 7.4197, 7.4223, 7.4217, 7.4227, 7.4221, 7.4205, 7.4199, 7.4195, 7.4189, 7.4198, 7.4192, 7.4192, 7.4202, 7.4203, 7.4197, 7.4193, 7.4191, 7.4187, 7.4228, 7.4222, 7.4216, 7.421, 7.4204, 7.4198, 7.4194, 7.4204, 7.4201, 7.4211, 7.4205, 7.4201, 7.4196, 7.4191, 7.4202, 7.4196, 7.4193, 7.4187, 7.4182, 7.4177, 7.4178, 7.4172, 7.4168, 7.4162, 7.4156, 7.4153, 7.4164, 7.4158, 7.4152, 7.4146, 7.4156, 7.4151, 7.4146, 7.4142, 7.4162, 7.4172, 7.4168, 7.4165, 7.4159, 7.4154, 7.415, 7.4144, 7.4142, 7.4137, 7.4147, 7.4144, 7.4139, 7.4148, 7.4144, 7.4139, 7.4133, 7.4115, 7.411, 7.4105, 7.4099, 7.4093, 7.4103, 7.4112, 7.4106, 7.4101, 7.4125, 7.4122, 7.4123, 7.4163, 7.4158, 7.4159, 7.4169, 7.4164, 7.4174, 7.4169, 7.4179, 7.4174, 7.4183, 7.4179, 7.4177, 7.4172, 7.4168, 7.4182, 7.4179, 7.4191, 7.4203, 7.4199, 7.4194, 7.4189, 7.4185, 7.4179, 7.4173, 7.4182, 7.4177, 7.4172, 7.4168, 7.4163, 7.4157, 7.4152, 7.4148, 7.4142, 7.4136, 7.4133, 7.4129, 7.4123, 7.4119, 7.4115, 7.4111, 7.4121, 7.4116, 7.4097, 7.4106, 7.4101, 7.4097, 7.4092, 7.4087, 7.4084, 7.408, 7.4075, 7.4056, 7.4072, 7.4082, 7.4092, 7.4087, 7.4081, 7.4076, 7.4085, 7.408, 7.4094, 7.4089, 7.4085, 7.408, 7.4075, 7.4069, 7.4063, 7.4058, 7.4053, 7.4077, 7.4072, 7.4067, 7.4068, 7.4062, 7.4072, 7.4068, 7.4063, 7.4059, 7.4053, 7.4076, 7.4071, 7.4067, 7.4061, 7.406, 7.4054, 7.4064, 7.4073, 7.4067, 7.4076, 7.4073, 7.4067, 7.4108, 7.4104, 7.41, 7.4096, 7.4091, 7.4099, 7.4097, 7.4091, 7.41, 7.4096, 7.409, 7.4086, 7.4094, 7.4088, 7.4069, 7.4064, 7.406, 7.4054, 7.4063, 7.4057, 7.4067, 7.4063, 7.4058, 7.4053, 7.4064, 7.4059, 7.4054, 7.4062, 7.4056, 7.4053, 7.4049, 7.4043, 7.4038, 7.4048, 7.4043, 7.4038, 7.4033, 7.4028, 7.4023, 7.4018, 7.4012, 7.4009, 7.4006, 7.4001, 7.3996, 7.3993, 7.4002, 7.4011, 7.4007, 7.4016, 7.4012, 7.4007, 7.4003, 7.3997, 7.4007, 7.4016, 7.4011, 7.4007, 7.4002, 7.4011, 7.402, 7.4017, 7.4026, 7.4021, 7.4016, 7.401, 7.4019, 7.4028, 7.4023, 7.4018, 7.4032, 7.403, 7.4026, 7.4021, 7.4021, 7.4016, 7.4012, 7.4007, 7.4006, 7.4001, 7.4013, 7.4008, 7.402, 7.4017, 7.4028, 7.4023, 7.4018, 7.4014, 7.401, 7.4005, 7.4, 7.3997, 7.3992, 7.3986, 7.3981, 7.4004, 7.4043, 7.4038, 7.402, 7.4016, 7.4032, 7.4027, 7.4065, 7.406, 7.4057, 7.4052, 7.4047, 7.4042, 7.4052, 7.4047, 7.408, 7.4076, 7.407, 7.4066, 7.4061, 7.4056, 7.4051, 7.4046, 7.4041, 7.4036, 7.4057, 7.404, 7.4034, 7.4042, 7.4024, 7.402, 7.4016, 7.4026, 7.4021, 7.4016, 7.401, 7.402, 7.4031, 7.4027, 7.4036, 7.4032, 7.4046, 7.4028, 7.4037, 7.4031, 7.4027, 7.4022, 7.402, 7.4034, 7.4028, 7.4022, 7.4017, 7.4013, 7.4009, 7.4003, 7.3998, 7.4008, 7.4004, 7.4004, 7.4001, 7.3997, 7.4007, 7.4001, 7.3997, 7.3995, 7.3992, 7.4001, 7.3997, 7.3994, 7.3988, 7.3983, 7.3966, 7.3961, 7.3957, 7.3954, 7.3949, 7.3965, 7.3975, 7.3987, 7.3982, 7.3977, 7.3987, 7.3983, 7.3983, 7.3978, 7.3976, 7.3971, 7.3967, 7.3963, 7.3958, 7.3968, 7.3963, 7.3957, 7.3939, 7.3934, 7.3929, 7.3924, 7.3923, 7.3931, 7.3926, 7.3952, 7.3951, 7.3946, 7.3942, 7.395, 7.3945, 7.3954, 7.3963, 7.3958, 7.3968, 7.3965, 7.3973, 7.3983, 7.3978, 7.3973, 7.3971, 7.3967, 7.3977, 7.3994, 7.4003, 7.4018, 7.4013, 7.3995, 7.3994, 7.399, 7.3991, 7.3987, 7.397, 7.3953, 7.3949, 7.3945, 7.3955, 7.3951, 7.3953, 7.3953, 7.3961, 7.3956, 7.3951, 7.3946, 7.3941, 7.395, 7.3946, 7.3942, 7.3937, 7.3933, 7.3929, 7.3924, 7.3919, 7.3929, 7.3925, 7.392, 7.3915, 7.391, 7.3919, 7.3915, 7.3911, 7.3906, 7.3903, 7.3898, 7.3896, 7.3928, 7.3927, 7.391, 7.3921, 7.3917, 7.3913, 7.3908, 7.3903, 7.39, 7.3895, 7.3891, 7.3888, 7.3883, 7.3881, 7.3864, 7.3859, 7.3857, 7.3852, 7.3847, 7.383, 7.3825, 7.3833, 7.383, 7.3825, 7.3821, 7.3829, 7.3824, 7.3832, 7.3827, 7.3824, 7.382, 7.3815, 7.381, 7.3818, 7.3814, 7.3821, 7.3816, 7.3811, 7.3794, 7.3802, 7.3799, 7.3794, 7.379, 7.3785, 7.3781, 7.3776, 7.3829, 7.3825, 7.3824, 7.3819, 7.3848, 7.3844, 7.3841, 7.3837, 7.3846, 7.3857, 7.384, 7.3836, 7.3832, 7.3828, 7.3824, 7.3821, 7.3831, 7.3828, 7.3824, 7.3819, 7.3816, 7.3811, 7.3807, 7.3806, 7.3802, 7.3812, 7.3807, 7.3802, 7.3799, 7.3794, 7.3803, 7.38, 7.3796, 7.3806, 7.3801, 7.381, 7.3807, 7.3817, 7.3812, 7.382, 7.3828, 7.3823, 7.3821, 7.3816, 7.3811, 7.3827, 7.3822, 7.383, 7.3825, 7.382, 7.383, 7.3825, 7.382, 7.3816, 7.3811, 7.3819, 7.3828, 7.3825, 7.3834, 7.383, 7.3839, 7.3834, 7.3843, 7.3839, 7.3834, 7.383, 7.3825, 7.3834, 7.3842, 7.3837, 7.3832, 7.3829, 7.3825, 7.382, 7.3815, 7.381, 7.382, 7.383, 7.3826, 7.3833, 7.383, 7.3852, 7.386, 7.3868, 7.3888, 7.3884, 7.388, 7.3876, 7.3884, 7.3879, 7.3886, 7.3894, 7.3917, 7.3925, 7.3921, 7.3917, 7.3917, 7.3952, 7.3966, 7.3962, 7.4009, 7.4005, 7.4001, 7.3998, 7.3994, 7.399, 7.3985, 7.3981, 7.3996, 7.4005, 7.4031, 7.4047, 7.4043, 7.4026, 7.404, 7.4035, 7.4036, 7.4046, 7.4042, 7.4037, 7.4034, 7.4032, 7.4027, 7.4022, 7.4031, 7.404, 7.4049, 7.4046, 7.4041, 7.4037, 7.4032, 7.4054, 7.4049, 7.4045, 7.404, 7.4036, 7.4084, 7.4079, 7.4074, 7.4057, 7.4053, 7.4065, 7.4062, 7.4057, 7.4054, 7.405, 7.4058, 7.4053, 7.4062, 7.4046, 7.4041, 7.4048, 7.4043, 7.4039, 7.4048, 7.4044, 7.4052, 7.4047, 7.4043, 7.4039, 7.4047, 7.4042, 7.4039, 7.4034, 7.4043, 7.4039, 7.4035, 7.4043, 7.4078, 7.4075, 7.4072, 7.4068, 7.4065, 7.4088, 7.41, 7.4097, 7.4093, 7.409, 7.4086, 7.4096, 7.4107, 7.4115, 7.4111, 7.4134, 7.4144, 7.414, 7.4155, 7.415, 7.4146, 7.4143, 7.4139, 7.4135, 7.4132, 7.4128, 7.4123, 7.4119, 7.4115, 7.4111, 7.4107, 7.4123, 7.412, 7.4116, 7.4125, 7.4121, 7.4118, 7.4127, 7.4123, 7.4121, 7.4127, 7.4136, 7.4132, 7.4129, 7.4136, 7.412, 7.4117, 7.4116, 7.4102, 7.4097, 7.4094, 7.409, 7.4086, 7.4082, 7.409, 7.4085, 7.408, 7.4103, 7.41, 7.4108, 7.4129, 7.4125, 7.4121, 7.4117, 7.4105, 7.4126, 7.4123, 7.4146, 7.4141, 7.4137, 7.4158, 7.4154, 7.4163, 7.4172, 7.42, 7.4199, 7.4207, 7.4204, 7.4188, 7.4183, 7.4179, 7.4177, 7.4175, 7.4185, 7.4181, 7.4176, 7.4185, 7.4181, 7.4177, 7.4187, 7.4196, 7.4192, 7.4201, 7.4198, 7.4194, 7.4178, 7.4187, 7.4183, 7.4178, 7.4173, 7.4168, 7.4164, 7.4159, 7.4167, 7.4175, 7.4195, 7.4179, 7.4164, 7.4159, 7.4166, 7.4162, 7.4157, 7.4154, 7.4149, 7.4146, 7.4142, 7.415, 7.4146, 7.4141, 7.4136, 7.4143, 7.415, 7.4145, 7.4155, 7.4151, 7.4147, 7.4131, 7.4128, 7.4155, 7.4167, 7.4162, 7.4158, 7.4183, 7.4178, 7.4175, 7.4171, 7.4166, 7.4173, 7.417, 7.4165, 7.416, 7.4155, 7.4152, 7.4148, 7.4143, 7.4138, 7.4133, 7.4129, 7.4137, 7.4133, 7.4129, 7.4127, 7.4124, 7.4132, 7.4138, 7.4136, 7.4136, 7.4131, 7.4127, 7.4124, 7.412, 7.4117, 7.4153, 7.4149, 7.4176, 7.4172, 7.4168, 7.4164, 7.4181, 7.4189, 7.4185, 7.4181, 7.419, 7.4186, 7.4182, 7.4204, 7.4201, 7.4198, 7.4194, 7.4209, 7.4225, 7.421, 7.4218, 7.4202, 7.4199, 7.4195, 7.419, 7.4185, 7.418, 7.4183, 7.4179, 7.4174, 7.4169, 7.4177, 7.4172, 7.4167, 7.4162, 7.4157, 7.4152, 7.4147, 7.4142, 7.4138, 7.4133, 7.4128, 7.4148, 7.4156, 7.4155, 7.414, 7.4137, 7.4144, 7.4153, 7.4138, 7.4144, 7.4139, 7.4147, 7.4144, 7.4141, 7.4136, 7.4133, 7.4132, 7.4128, 7.4123, 7.412, 7.4117, 7.4115, 7.411, 7.4106, 7.4102, 7.4098, 7.4095, 7.409, 7.4098, 7.4093, 7.4078, 7.4073, 7.408, 7.4075, 7.407, 7.4066, 7.4062, 7.4058, 7.4055, 7.4053, 7.4049, 7.4044, 7.4052, 7.406, 7.4058, 7.4078, 7.4075, 7.4071, 7.4068, 7.4063, 7.4071, 7.4066, 7.4075, 7.4083, 7.4091, 7.4087, 7.4083, 7.4103, 7.41, 7.4096, 7.4108, 7.4105, 7.4113, 7.411, 7.4105, 7.4101, 7.4097, 7.4095, 7.4102, 7.4098, 7.4108, 7.4113, 7.411, 7.4118, 7.4116, 7.4101, 7.4098, 7.4093, 7.4089, 7.4096, 7.4132, 7.4133, 7.414, 7.4137, 7.4151, 7.4151, 7.4176, 7.4171, 7.4166, 7.4163, 7.4161, 7.4156, 7.4152, 7.4147, 7.4133, 7.4142, 7.4151, 7.4147, 7.4159, 7.4158, 7.4153, 7.415, 7.4147, 7.4142, 7.415, 7.4154, 7.415, 7.4146, 7.4179, 7.4202, 7.4223, 7.4218, 7.4232, 7.4227, 7.4236, 7.4233, 7.4241, 7.4237, 7.4234, 7.423, 7.424, 7.4247, 7.4254, 7.4269, 7.4264, 7.426, 7.4267, 7.4274, 7.427, 7.4266, 7.4274, 7.4272, 7.4279, 7.4288, 7.4284, 7.428, 7.4276, 7.4272, 7.4269, 7.4274, 7.4283, 7.4279, 7.4277, 7.4273, 7.4271, 7.4268, 7.4264, 7.426, 7.4256, 7.4273, 7.4269, 7.4266, 7.4261, 7.4257, 7.4264, 7.4271, 7.4267, 7.4262, 7.4257, 7.4253, 7.4238, 7.4234, 7.4232, 7.424, 7.4236, 7.4231, 7.4238, 7.4233, 7.423, 7.4227, 7.4222, 7.4207, 7.4204, 7.4199, 7.4198, 7.4195, 7.4191, 7.4199, 7.4199, 7.4195, 7.4204, 7.42, 7.4196, 7.4192, 7.4188, 7.4185, 7.4182, 7.4178, 7.4176, 7.4173, 7.418, 7.4188, 7.4185, 7.4193, 7.4202, 7.4197, 7.4193, 7.4188, 7.4195, 7.4191, 7.4186, 7.4187, 7.4182, 7.4177, 7.4172, 7.4172, 7.4168, 7.4163, 7.416, 7.4155, 7.4151, 7.4146, 7.4154, 7.4158, 7.4153, 7.4164, 7.4161, 7.4157, 7.4154, 7.415, 7.4159, 7.4155, 7.4151, 7.4194, 7.4201, 7.4196, 7.4203, 7.4199, 7.4209, 7.4216, 7.4223, 7.422, 7.4217, 7.4215, 7.4211, 7.4215, 7.4222, 7.4221, 7.4217, 7.4213, 7.422, 7.4218, 7.4216, 7.4223, 7.4219, 7.4214, 7.4211, 7.4207, 7.4203, 7.4199, 7.4196, 7.4193, 7.419, 7.4186, 7.4193, 7.4189, 7.4197, 7.4193, 7.4193, 7.419, 7.4186, 7.4182, 7.4191, 7.4199, 7.4207, 7.4215, 7.4211, 7.4207, 7.4202, 7.4209, 7.4205, 7.4213, 7.421, 7.4206, 7.4201, 7.4198, 7.4206, 7.4202, 7.421, 7.4207, 7.4205, 7.4202, 7.4198, 7.4195, 7.4192, 7.4189, 7.4186, 7.4183, 7.418, 7.4177, 7.4173, 7.4181, 7.4183, 7.4179, 7.4176, 7.4183, 7.4181, 7.4177, 7.4173, 7.418, 7.4179, 7.4198, 7.4194, 7.419, 7.4186, 7.4171, 7.4167, 7.4163, 7.417, 7.4187, 7.4184, 7.4181, 7.4177, 7.4193, 7.419, 7.4186, 7.4182, 7.4189, 7.4185, 7.4182, 7.4189, 7.4201, 7.4197, 7.4192, 7.4188, 7.4183, 7.419, 7.4186, 7.4183, 7.4179, 7.4174, 7.4171, 7.417, 7.4165, 7.4161, 7.4158, 7.4154, 7.4151, 7.4174, 7.416, 7.4156, 7.4152, 7.4149, 7.4144, 7.414, 7.4144, 7.4153, 7.4149, 7.4156, 7.4153, 7.4149, 7.4145, 7.4142, 7.4138, 7.4134, 7.413, 7.4126, 7.4112, 7.4098, 7.4086, 7.4082, 7.4079, 7.4075, 7.4082, 7.407, 7.4066, 7.4062, 7.4062, 7.4058, 7.4065, 7.4072, 7.4068, 7.4063, 7.4059, 7.4055, 7.4051, 7.4048, 7.4055, 7.4054, 7.4051, 7.4049, 7.4062, 7.4058, 7.4053, 7.4049, 7.4055, 7.4062, 7.4058, 7.4055, 7.4052, 7.4049, 7.4046, 7.4044, 7.404, 7.4037, 7.4035, 7.4031, 7.4027, 7.4036, 7.4033, 7.4031, 7.4028, 7.4025, 7.4021, 7.4018, 7.4015, 7.4011, 7.4007, 7.4003, 7.4002, 7.3988, 7.3984, 7.397, 7.3978, 7.3986, 7.3982, 7.3979, 7.3976, 7.3972, 7.398, 7.3976, 7.3975, 7.3982, 7.3978, 7.3975, 7.3971, 7.3957, 7.3954, 7.3955, 7.3951, 7.3947, 7.3943, 7.394, 7.3936, 7.3922, 7.3918, 7.3914, 7.3911, 7.3919, 7.394, 7.3936, 7.3932, 7.3928, 7.3925, 7.3932, 7.3929, 7.3926, 7.3944, 7.3951, 7.3947, 7.3944, 7.394, 7.3947, 7.3954, 7.395, 7.3947, 7.3944, 7.394, 7.3938, 7.3945, 7.3941, 7.3937, 7.3933, 7.3929, 7.3925, 7.3923, 7.392, 7.3917, 7.3926, 7.3923, 7.3953, 7.3949, 7.399, 7.3987, 7.3986, 7.3983, 7.4003, 7.3999, 7.3995, 7.3992, 7.3988, 7.4, 7.4011, 7.4, 7.3996, 7.4003, 7.4004, 7.4, 7.3996, 7.3994, 7.3991, 7.402, 7.4027, 7.4034, 7.4031, 7.405, 7.4047, 7.4043, 7.4039, 7.4047, 7.4043, 7.404, 7.4039, 7.4035, 7.4031, 7.4027, 7.4035, 7.4031, 7.4027, 7.4024, 7.402, 7.4016, 7.4013, 7.401, 7.4017, 7.4014, 7.4022, 7.4029, 7.4025, 7.4021, 7.402, 7.4024, 7.4032, 7.4039, 7.4036, 7.4034, 7.4032, 7.4029, 7.4026, 7.4022, 7.4018, 7.4025, 7.4033, 7.4029, 7.4016, 7.4012, 7.4008, 7.4004, 7.4, 7.3996, 7.3993, 7.4011, 7.4007, 7.4004, 7.4, 7.3996, 7.3992, 7.3999, 7.4011, 7.4018, 7.4015, 7.4013, 7.401, 7.4008, 7.4006, 7.4014, 7.4022, 7.4031, 7.4029, 7.4026, 7.4023, 7.402, 7.4017, 7.4037, 7.4044, 7.404, 7.4036, 7.4033, 7.4039, 7.4047, 7.4055, 7.4051, 7.4047, 7.4054, 7.4061, 7.4068, 7.4067, 7.4064, 7.4071, 7.4077, 7.4073, 7.4069, 7.4076, 7.4072, 7.4068, 7.4064, 7.4097, 7.4104, 7.41, 7.4096, 7.4095, 7.4091, 7.4087, 7.4083, 7.4079, 7.4085, 7.4091, 7.4098, 7.4095, 7.4091, 7.4088, 7.4084, 7.408, 7.4076, 7.4073, 7.4069, 7.4076, 7.4072, 7.4068, 7.4065, 7.4062, 7.4048, 7.4045, 7.4041, 7.4039, 7.4035, 7.4032, 7.4028, 7.4024, 7.403, 7.403, 7.4026, 7.4024, 7.4022, 7.4019, 7.4015, 7.4011, 7.4007, 7.4003, 7.3999, 7.3995, 7.3991, 7.3988, 7.3998, 7.3995, 7.3991, 7.3998, 7.3994, 7.4004, 7.4003, 7.4, 7.3997, 7.3995, 7.3991, 7.3998, 7.3994, 7.399, 7.3998, 7.3995, 7.3991, 7.3987, 7.3985, 7.3981, 7.3977, 7.3974, 7.3973, 7.3969, 7.3967, 7.3964, 7.3961, 7.397, 7.3977, 7.3987, 7.3985, 7.3982, 7.3992, 7.3988, 7.3998, 7.3999, 7.3996, 7.4026, 7.4023, 7.402, 7.4027, 7.4024, 7.4023, 7.402, 7.4017, 7.4058, 7.4054, 7.4051, 7.4047, 7.4044, 7.4045, 7.4041, 7.4037, 7.4035, 7.4031, 7.4027, 7.4024, 7.402, 7.4017, 7.4013, 7.4009, 7.4015, 7.4012, 7.4008, 7.4004, 7.4001, 7.3997, 7.3993, 7.398, 7.3981, 7.3977, 7.3973, 7.3969, 7.3965, 7.3962, 7.3958, 7.3955, 7.3951, 7.394, 7.3948, 7.3944, 7.394, 7.3949, 7.3957, 7.3964, 7.396, 7.3966, 7.3962, 7.3958, 7.3956, 7.3952, 7.3951, 7.3951, 7.3948, 7.3946, 7.3943, 7.395, 7.3946, 7.3994, 7.399, 7.3987, 7.3983, 7.398, 7.3977, 7.3974, 7.3971, 7.398, 7.3978, 7.3986, 7.3993, 7.3989, 7.3986, 7.3998, 7.3995, 7.3991, 7.3993, 7.4027, 7.4023, 7.4019, 7.4027, 7.4023, 7.4019, 7.4022, 7.4019, 7.404, 7.4036, 7.4032, 7.403, 7.4036, 7.4034, 7.4031, 7.4038, 7.4035, 7.4042, 7.4038, 7.4034, 7.404, 7.4037, 7.4033, 7.4029, 7.4038, 7.4034, 7.403, 7.4026, 7.4032, 7.4028, 7.4025, 7.4012, 7.401, 7.4007, 7.4003, 7.3999, 7.3996, 7.3994, 7.399, 7.3987, 7.3996, 7.3992, 7.4, 7.3997, 7.3994, 7.3994, 7.3991, 7.3998, 7.4041, 7.4038, 7.4035, 7.4035, 7.4032, 7.4046, 7.4043, 7.4052, 7.4048, 7.4045, 7.4052, 7.4049, 7.4045, 7.4042, 7.4049, 7.4053, 7.4049, 7.4046, 7.4042, 7.4039, 7.4035, 7.4032, 7.4028, 7.4024, 7.4023, 7.403, 7.4026, 7.4023, 7.403, 7.4027, 7.4024, 7.4022, 7.4018, 7.4014, 7.4003, 7.4021, 7.4017, 7.4013, 7.4022, 7.4018, 7.4024, 7.4021, 7.4018, 7.4014, 7.4012, 7.4009, 7.4005, 7.4002, 7.3998, 7.4004, 7.3993, 7.399, 7.3987, 7.3984, 7.398, 7.3986, 7.3982, 7.3978, 7.3984, 7.398, 7.3977, 7.3975, 7.3982, 7.3978, 7.3974, 7.3972, 7.3971, 7.3968, 7.3965, 7.3962, 7.3958, 7.3955, 7.3951, 7.3958, 7.3954, 7.395, 7.3946, 7.3944, 7.3941, 7.3938, 7.3945, 7.3941, 7.3937, 7.3934, 7.3972, 7.3979, 7.3996, 7.3993, 7.3999, 7.4005, 7.4011, 7.4018, 7.4025, 7.4022, 7.401, 7.4017, 7.4023, 7.4029, 7.4036, 7.4032, 7.403, 7.4036, 7.4034, 7.403, 7.4027, 7.4025, 7.4023, 7.4019, 7.4015, 7.4011, 7.4017, 7.4013, 7.4009, 7.4006, 7.4012, 7.4008, 7.4015, 7.4011, 7.4009, 7.4016, 7.4012, 7.4, 7.3997, 7.3984, 7.398, 7.3977, 7.3974, 7.3971, 7.3967, 7.3963, 7.3959, 7.3956, 7.3962, 7.3964, 7.396, 7.3967, 7.3964, 7.3971, 7.3978, 7.3975, 7.3971, 7.3978, 7.3975, 7.3974, 7.3984, 7.3981, 7.3982, 7.3979, 7.3975, 7.3982, 7.3989, 7.3985, 7.3981, 7.3989, 7.3985, 7.3983, 7.3981, 7.3977, 7.3975, 7.3972, 7.3972, 7.3972, 7.3978, 7.3975, 7.3972, 7.3969, 7.3975, 7.3971, 7.3969, 7.3966, 7.3962, 7.3969, 7.3965, 7.3961, 7.3957, 7.3964, 7.397, 7.3967, 7.3964, 7.396, 7.3967, 7.3964, 7.396, 7.3957, 7.3953, 7.3949, 7.395, 7.3946, 7.3942, 7.394, 7.3939, 7.3986, 7.4003, 7.4019, 7.4016, 7.4022, 7.4029, 7.4046, 7.4044, 7.4041, 7.4039, 7.4046, 7.4042, 7.406, 7.4056, 7.4053, 7.4049, 7.4046, 7.4043, 7.4083, 7.408, 7.4076, 7.4082, 7.4089, 7.4097, 7.4094, 7.4091, 7.4089, 7.4085, 7.4081, 7.4088, 7.4094, 7.4091, 7.4087, 7.4084, 7.4071, 7.4068, 7.4065, 7.4072, 7.4059, 7.4055, 7.4051, 7.4047, 7.4053, 7.4049, 7.4046, 7.4065, 7.4062, 7.4058, 7.4054, 7.4042, 7.4038, 7.4034, 7.4036, 7.4033, 7.4039, 7.4036, 7.4033, 7.4031, 7.4028, 7.4024, 7.4021, 7.4018, 7.4015, 7.4011, 7.4008, 7.4015, 7.4012, 7.4, 7.3997, 7.3993, 7.3999, 7.4005, 7.4001, 7.4007, 7.4003, 7.4001, 7.3999, 7.3995, 7.3992, 7.3998, 7.4004, 7.4001, 7.4008, 7.4006, 7.4003, 7.4009, 7.4009, 7.4015, 7.4012, 7.4018, 7.4016, 7.4013, 7.4053, 7.4049, 7.4057, 7.4063, 7.406, 7.4066, 7.4063, 7.406, 7.4056, 7.4044, 7.407, 7.4066, 7.4064, 7.4061, 7.4059, 7.4056, 7.4063, 7.4051, 7.4048, 7.4044, 7.4042, 7.4039, 7.4046, 7.4042, 7.406, 7.4057, 7.4061, 7.4058, 7.4046, 7.4077, 7.4074, 7.4072, 7.4062, 7.4059, 7.4057, 7.4054, 7.4052, 7.405, 7.4047, 7.4044, 7.4041, 7.4038, 7.4035, 7.4024, 7.4031, 7.4028, 7.4025, 7.4022, 7.4018, 7.4024, 7.4021, 7.4022, 7.4028, 7.4035, 7.4032, 7.4039, 7.4035, 7.4027, 7.4025, 7.4022, 7.4018, 7.4014, 7.4011, 7.4008, 7.4014, 7.4011, 7.4008, 7.4005, 7.4002, 7.4007, 7.4004, 7.4, 7.401, 7.4007, 7.3995, 7.3992, 7.3988, 7.3986, 7.3994, 7.399, 7.4005, 7.4012, 7.4009, 7.4015, 7.4021, 7.4028, 7.4026, 7.4032, 7.4038, 7.4036, 7.404, 7.4038, 7.4035, 7.4039, 7.4046, 7.4043, 7.4041, 7.4037, 7.4034, 7.4031, 7.4028, 7.4025, 7.4031, 7.4028, 7.4025, 7.4022, 7.4029, 7.4026, 7.4036, 7.4026, 7.4023, 7.4024, 7.403, 7.4028, 7.4034, 7.403, 7.404, 7.4037, 7.4038, 7.4063, 7.4059, 7.4057, 7.4053, 7.4049, 7.4045, 7.4051, 7.4049, 7.4047, 7.4045, 7.4041, 7.4037, 7.4035, 7.4041, 7.4047, 7.4044, 7.4041, 7.4037, 7.4034, 7.4022, 7.4033, 7.403, 7.4027, 7.4024, 7.4023, 7.402, 7.4016, 7.4012, 7.4008, 7.4005, 7.4001, 7.3997, 7.3994, 7.4, 7.3998, 7.3994, 7.4, 7.3997, 7.4004, 7.4, 7.3997, 7.3994, 7.4001, 7.3998, 7.3995, 7.3983, 7.399, 7.3986, 7.3982, 7.3979, 7.3986, 7.3983, 7.3981, 7.3979, 7.3977, 7.3974, 7.3991, 7.3988, 7.3996, 7.3993, 7.4011, 7.4019, 7.4016, 7.4013, 7.401, 7.4017, 7.4014, 7.4022, 7.4019, 7.4016, 7.4012, 7.4009, 7.4015, 7.4027, 7.4024, 7.4021, 7.4009, 7.4016, 7.4024, 7.4035, 7.4036, 7.4042, 7.4041, 7.4038, 7.4036, 7.4044, 7.405, 7.4051, 7.4048, 7.4046, 7.4062, 7.4059, 7.4057, 7.4045, 7.4033, 7.403, 7.4027, 7.4024, 7.402, 7.4026, 7.4024, 7.4021, 7.4018, 7.4024, 7.4035, 7.4032, 7.4029, 7.4035, 7.4031, 7.4027, 7.4023, 7.4021, 7.4019, 7.4016, 7.4022, 7.4018, 7.4015, 7.4013, 7.401, 7.4007, 7.4005, 7.4002, 7.4008, 7.4005, 7.4009, 7.4007, 7.4016, 7.4014, 7.4014, 7.4012, 7.4021, 7.4017, 7.4013, 7.4011, 7.402, 7.4017, 7.4014, 7.4011, 7.4008, 7.4005, 7.402, 7.4038, 7.4035, 7.4036, 7.4034, 7.4031, 7.4028, 7.4025, 7.4021, 7.4018, 7.4015, 7.4022, 7.4018, 7.4025, 7.4021, 7.4018, 7.4015, 7.4012, 7.4018, 7.4015, 7.4013, 7.401, 7.4016, 7.4013, 7.4002, 7.3999, 7.4007, 7.4004, 7.4003, 7.4001, 7.3997, 7.4003, 7.4, 7.4006, 7.4003, 7.4001, 7.3998, 7.3996, 7.3993, 7.399, 7.3986, 7.3983, 7.3971, 7.3968, 7.3987, 7.4002, 7.399, 7.3996, 7.4002, 7.4009, 7.4015, 7.4013, 7.4009, 7.4006, 7.4023, 7.4012, 7.4019, 7.4017, 7.4014, 7.4012, 7.4018, 7.4058, 7.4064, 7.4061, 7.4066, 7.4062, 7.4059, 7.4056, 7.4054, 7.4051, 7.406, 7.4058, 7.4055, 7.4054, 7.405, 7.4047, 7.4043, 7.404, 7.4036, 7.4032, 7.4038, 7.4035, 7.4031, 7.4028, 7.4024, 7.403, 7.4036, 7.4042, 7.4039, 7.4036, 7.4033, 7.403, 7.4036, 7.4034, 7.4032, 7.403, 7.4027, 7.4024, 7.4014, 7.4029, 7.4026, 7.4025, 7.4024, 7.4021, 7.4018, 7.4044, 7.4034, 7.4031, 7.4029, 7.4026, 7.4023, 7.402, 7.4017, 7.4023, 7.402, 7.4025, 7.4022, 7.4018, 7.4024, 7.402, 7.4028, 7.4025, 7.4022, 7.402, 7.4026, 7.4023, 7.403, 7.4036, 7.4042, 7.4038, 7.4035, 7.4032, 7.4038, 7.4043, 7.404, 7.4037, 7.4034, 7.4039, 7.4028, 7.4027, 7.4023, 7.4019, 7.4015, 7.4012, 7.4018, 7.4015, 7.4012, 7.4017, 7.4016, 7.4012, 7.401, 7.4008, 7.401, 7.4008, 7.4005, 7.4002, 7.3999, 7.4004, 7.401, 7.4007, 7.4012, 7.4009, 7.4006, 7.4003, 7.401, 7.4019, 7.4016, 7.4013, 7.4011, 7.4018, 7.4015, 7.4012, 7.4009, 7.4052, 7.4049, 7.4045, 7.4042, 7.4039, 7.4035, 7.4036, 7.4033, 7.4029, 7.4038, 7.4035, 7.404, 7.4046, 7.4042, 7.404, 7.4036, 7.4032, 7.4029, 7.4026, 7.4023, 7.4029, 7.4034, 7.4049, 7.4046, 7.4043, 7.4041, 7.4046, 7.4043, 7.4052, 7.4058, 7.4056, 7.4055, 7.4054, 7.4051, 7.4048, 7.4055, 7.4052, 7.4058, 7.4064, 7.4062, 7.4061, 7.4067, 7.4064, 7.406, 7.4058, 7.4055, 7.4052, 7.4059, 7.4067, 7.4064, 7.407, 7.4076, 7.4081, 7.4078, 7.4075, 7.4072, 7.407, 7.4068, 7.4065, 7.4062, 7.4058, 7.4057, 7.4055, 7.4062, 7.4068, 7.4075, 7.4081, 7.4079, 7.4096, 7.4093, 7.41, 7.4097, 7.4097, 7.4094, 7.41, 7.4106, 7.4103, 7.411, 7.4107, 7.4104, 7.4102, 7.4099, 7.4096, 7.4092, 7.4088, 7.4086, 7.4083, 7.4079, 7.4076, 7.4073, 7.407, 7.4066, 7.4063, 7.4069, 7.4067, 7.4064, 7.4063, 7.4069, 7.4067, 7.4073, 7.4072, 7.4078, 7.4084, 7.4081, 7.4078, 7.4076, 7.4073, 7.4062, 7.4059, 7.4057, 7.4054, 7.4052, 7.4051, 7.4048, 7.4045, 7.4043, 7.4039, 7.4036, 7.4035, 7.4031, 7.4028, 7.4026, 7.4022, 7.4019, 7.4016, 7.4014, 7.4011, 7.4008, 7.4004, 7.4002, 7.4, 7.3996, 7.3993, 7.399, 7.3995, 7.3992, 7.3998, 7.3995, 7.3992, 7.3999, 7.3996, 7.3995, 7.3992, 7.3989, 7.3986, 7.3983, 7.398, 7.3977, 7.3975, 7.3972, 7.3969, 7.3968, 7.3964, 7.398, 7.3978, 7.3977, 7.3974, 7.3971, 7.3968, 7.3969, 7.3967, 7.3964, 7.3962, 7.3967, 7.3964, 7.3969, 7.3966, 7.3966, 7.3963, 7.396, 7.3966, 7.3963, 7.396, 7.3966, 7.3962, 7.3959, 7.3956, 7.3953, 7.3959, 7.3964, 7.3962, 7.3959, 7.3956, 7.3956, 7.3953, 7.3961, 7.3958, 7.3956, 7.3953, 7.395, 7.3947, 7.3943, 7.3949, 7.3949, 7.3946, 7.3944, 7.395, 7.3955, 7.3952, 7.395, 7.3947, 7.3953, 7.3952, 7.3949, 7.3955, 7.3952, 7.3949, 7.3946, 7.3944, 7.3941, 7.3938, 7.3935, 7.3932, 7.393, 7.3927, 7.3924, 7.3931, 7.3928, 7.3917, 7.3914, 7.3921, 7.3918, 7.3917, 7.3914, 7.3911, 7.3913, 7.3902, 7.3891, 7.3897, 7.3894, 7.3892, 7.3888, 7.3885, 7.3883, 7.3888, 7.3885, 7.3892, 7.3893, 7.3891, 7.3898, 7.3905, 7.3903, 7.39, 7.3897, 7.3896, 7.3902, 7.39, 7.3897, 7.3894, 7.3891, 7.3888, 7.3885, 7.3882, 7.3879, 7.3869, 7.3867, 7.3873, 7.3873, 7.3871, 7.3869, 7.3876, 7.3874, 7.3872, 7.3878, 7.3868, 7.3866, 7.3863, 7.3868, 7.3865, 7.3865, 7.3862, 7.3859, 7.3858, 7.3855, 7.3863, 7.386, 7.3857, 7.3854, 7.386, 7.3858, 7.3855, 7.3862, 7.3871, 7.3869, 7.3868, 7.3874, 7.3872, 7.387, 7.3867, 7.3873, 7.3871, 7.3877, 7.3875, 7.3873, 7.3879, 7.3878, 7.3884, 7.3881, 7.388, 7.3886, 7.3884, 7.3882, 7.3881, 7.3878, 7.3883, 7.3882, 7.3888, 7.3894, 7.3893, 7.389, 7.3887, 7.3884, 7.3881, 7.3878, 7.3897, 7.3896, 7.3893, 7.389, 7.3896, 7.3893, 7.3891, 7.3888, 7.3894, 7.3892, 7.389, 7.3888, 7.3894, 7.3892, 7.3889, 7.3886, 7.3883, 7.388, 7.3879, 7.3876, 7.3873, 7.387, 7.3876, 7.3872, 7.3871, 7.3868, 7.3866, 7.3871, 7.3869, 7.3866, 7.3866, 7.3872, 7.3869, 7.3867, 7.3866, 7.3873, 7.3878, 7.3875, 7.3872, 7.3879, 7.3876, 7.3873, 7.387, 7.3867, 7.3865, 7.3862, 7.3867, 7.3867, 7.3865, 7.3854, 7.3852, 7.3861, 7.3858, 7.3859, 7.3856, 7.3853, 7.3858, 7.3856, 7.3854, 7.3851, 7.3849, 7.3846, 7.3851, 7.3848, 7.3846, 7.3844, 7.3842, 7.3839, 7.3842, 7.3839, 7.3836, 7.3833, 7.3839, 7.3844, 7.3841, 7.3838, 7.3835, 7.3833, 7.3831, 7.3828, 7.3825, 7.3822, 7.3811, 7.3801, 7.3798, 7.3796, 7.3793, 7.3809, 7.382, 7.3819, 7.3825, 7.3822, 7.3821, 7.3841, 7.3838, 7.3835, 7.3858, 7.3865, 7.3864, 7.3862, 7.3861, 7.3859, 7.3857, 7.3863, 7.3861, 7.3858, 7.3856, 7.3862, 7.3859, 7.3848, 7.3853, 7.385, 7.385, 7.3847, 7.3845, 7.3843, 7.384, 7.3838, 7.3843, 7.384, 7.3837, 7.3834, 7.3832, 7.3836, 7.3838, 7.3843, 7.384, 7.3838, 7.3836, 7.3833, 7.383, 7.3827, 7.3828, 7.3834, 7.3834, 7.3831, 7.3829, 7.3826, 7.3832, 7.3829, 7.3826, 7.3823, 7.382, 7.3817, 7.3816, 7.3814, 7.3813, 7.3811, 7.3817, 7.3815, 7.3812, 7.381, 7.3809, 7.3807, 7.3804, 7.3801, 7.3807, 7.3804, 7.3828, 7.3826, 7.3815, 7.3812, 7.381, 7.3807, 7.3804, 7.3809, 7.3799, 7.3796, 7.3802, 7.3808, 7.3814, 7.3819, 7.3808, 7.3816, 7.3813, 7.381, 7.3816, 7.3813, 7.3819, 7.3817, 7.3814, 7.382, 7.3827, 7.3824, 7.383, 7.3835, 7.3841, 7.3838, 7.3835, 7.3832, 7.3829, 7.3826, 7.3823, 7.382, 7.3817, 7.3834, 7.3831, 7.3839, 7.3836, 7.3833, 7.383, 7.3835, 7.3832, 7.3829, 7.3835, 7.3832, 7.3837, 7.3834, 7.3831, 7.3828, 7.3826, 7.3831, 7.3837, 7.3842, 7.3839, 7.3836, 7.3841, 7.3847, 7.3852, 7.3858, 7.3855, 7.3852, 7.3857, 7.3854, 7.3851, 7.3849, 7.3848, 7.3845, 7.3843, 7.3849, 7.3847, 7.3844, 7.385, 7.3855, 7.3853, 7.3858, 7.3847, 7.3852, 7.3849, 7.3846, 7.3843, 7.3848, 7.3845, 7.3843, 7.3848, 7.3853, 7.385, 7.3848, 7.3845, 7.3865, 7.3863, 7.3861, 7.3866, 7.3863, 7.386, 7.3857, 7.3856, 7.3861, 7.3858, 7.3855, 7.3852, 7.3857, 7.3854, 7.3851, 7.3848, 7.3846, 7.3844, 7.3849, 7.3846, 7.3843, 7.3841, 7.383, 7.3835, 7.3832, 7.383, 7.3835, 7.384, 7.3837, 7.3834, 7.3831, 7.3836, 7.3833, 7.3838, 7.3843, 7.3856, 7.3853, 7.3858, 7.3856, 7.3861, 7.3859, 7.3856, 7.3854, 7.386, 7.3857, 7.3855, 7.3861, 7.3858, 7.3855, 7.3859, 7.3857, 7.3864, 7.3869, 7.3874, 7.3864, 7.3877, 7.3874, 7.3882, 7.3879, 7.3884, 7.3881, 7.3878, 7.3875, 7.3872, 7.3878, 7.3883, 7.3888, 7.3893, 7.389, 7.3887, 7.3892, 7.3889, 7.3887, 7.3884, 7.389, 7.3879, 7.3876, 7.3873, 7.3878, 7.3884, 7.3889, 7.3894, 7.3899, 7.3889, 7.3894, 7.39, 7.3905, 7.3902, 7.3892, 7.3882, 7.388, 7.3878, 7.3875, 7.3872, 7.3869, 7.3867, 7.388, 7.3893, 7.389, 7.3895, 7.3908, 7.3905, 7.391, 7.3915, 7.3905, 7.3911, 7.3908, 7.3906, 7.3903, 7.3908, 7.3913, 7.3918, 7.3915, 7.392, 7.3912, 7.3909, 7.3906, 7.3903, 7.39, 7.3898, 7.3895, 7.3893, 7.389, 7.3887, 7.3902, 7.3916, 7.3915, 7.3912, 7.3912, 7.3929, 7.3934, 7.3934, 7.3932, 7.3958, 7.3959, 7.3957, 7.3981, 7.4003, 7.4001, 7.3999, 7.3996, 7.3994, 7.3991, 7.3988, 7.3986, 7.4008, 7.4014, 7.4011, 7.4008, 7.4013, 7.4011, 7.4008, 7.4009, 7.4006, 7.4003, 7.4008, 7.4006, 7.4016, 7.4024, 7.4021, 7.4026, 7.4026, 7.4025, 7.4046, 7.4051, 7.4059, 7.4076, 7.4073, 7.407, 7.4076, 7.4073, 7.4071, 7.4061, 7.4058, 7.4055, 7.4052, 7.4049, 7.4055, 7.4061, 7.4067, 7.4064, 7.4054, 7.4059, 7.4056, 7.4076, 7.4073, 7.4079, 7.4076, 7.4073, 7.407, 7.4067, 7.4081, 7.4079, 7.4077, 7.4082, 7.408, 7.4086, 7.4083, 7.408, 7.4078, 7.4068, 7.4065, 7.4062, 7.4059, 7.4056, 7.4062, 7.4059, 7.4056, 7.4054, 7.4051, 7.4048, 7.4045, 7.4042, 7.4047, 7.4053, 7.4052, 7.4049, 7.4057, 7.4065, 7.4087, 7.4084, 7.4089, 7.4086, 7.4091, 7.4091, 7.41, 7.4098, 7.4103, 7.4108, 7.4106, 7.4111, 7.4109, 7.4114, 7.4119, 7.4117, 7.4122, 7.4127, 7.4134, 7.4132, 7.414, 7.4145, 7.4143, 7.414, 7.4145, 7.415, 7.4147, 7.4144, 7.4141, 7.4138, 7.4136, 7.4142, 7.4147, 7.4144, 7.4149, 7.4146, 7.4136, 7.4133, 7.4131, 7.4136, 7.4133, 7.413, 7.4136, 7.4142, 7.414, 7.4138, 7.4143, 7.4148, 7.4145, 7.4142, 7.4146, 7.4152, 7.4167, 7.4165, 7.4171, 7.4176, 7.4181, 7.4178, 7.4183, 7.4181, 7.4179, 7.4185, 7.4182, 7.4179, 7.4176, 7.4181, 7.4186, 7.4191, 7.4188, 7.4185, 7.4183, 7.4188, 7.4193, 7.419, 7.4195, 7.42, 7.4205, 7.421, 7.4215, 7.4212, 7.4217, 7.4214, 7.4211, 7.4208, 7.4205, 7.421, 7.42, 7.4198, 7.4195, 7.4193, 7.4199, 7.4197, 7.4194, 7.4192, 7.4198, 7.4196, 7.4193, 7.4191, 7.4188, 7.4193, 7.4191, 7.4188, 7.4185, 7.4182, 7.4187, 7.4185, 7.419, 7.4188, 7.4193, 7.419, 7.4188, 7.4186, 7.4183, 7.4188, 7.4185, 7.4182, 7.418, 7.4177, 7.4182, 7.418, 7.4177, 7.4175, 7.4173, 7.4171, 7.4176, 7.4183, 7.418, 7.4177, 7.4175, 7.4175, 7.418, 7.4177, 7.4174, 7.4173, 7.4179, 7.4184, 7.4189, 7.4187, 7.4184, 7.4181, 7.4178, 7.4176, 7.4182, 7.4187, 7.4185, 7.4183, 7.418, 7.4178, 7.4176, 7.4174, 7.4172, 7.4169, 7.4167, 7.4165, 7.4171, 7.4178, 7.4184, 7.4182, 7.418, 7.4178, 7.4176, 7.4181, 7.4179, 7.4184, 7.4183, 7.4188, 7.4193, 7.4192, 7.4189, 7.4194, 7.4199, 7.4196, 7.4194, 7.4191, 7.419, 7.4187, 7.4185, 7.4182, 7.4179, 7.4176, 7.4173, 7.4165, 7.4163, 7.4161, 7.4158, 7.4156, 7.4154, 7.4146, 7.4167, 7.4164, 7.4194, 7.4191, 7.4189, 7.4187, 7.4184, 7.4182, 7.4181, 7.4179, 7.4177, 7.4175, 7.4172, 7.417, 7.4169, 7.4167], '192.168.122.116': [10.7665, 18.4503, 14.1081, 10.77, 10.2365, 10.311, 9.6211, 9.1089, 8.7164, 8.4489, 8.1902, 8.4737, 8.669, 8.5698, 8.3771, 8.2565, 8.0859, 7.9812, 7.8426, 7.4983, 7.4118, 7.3184, 7.2351, 7.1615, 7.0909, 7.5962, 7.7197, 7.6359, 7.5553, 7.4809, 7.4375, 7.376, 7.3292, 7.2956, 7.2405, 7.204, 7.1799, 7.1388, 7.0963, 7.2004, 7.1599, 7.1428, 7.1109, 7.0731, 7.0326, 7.0017, 6.8683, 6.8794, 7.0232, 6.9925, 6.9726, 6.9481, 6.9185, 6.8269, 6.9013, 6.8836, 7.0113, 7.4543, 7.4174, 7.4772, 7.3647, 7.3356, 7.3057, 7.2769, 7.2528, 7.3153, 7.2916, 7.2644, 7.2551, 7.2357, 7.2225, 7.1965, 7.2598, 7.6099, 7.6587, 7.7046, 7.6729, 7.6512, 7.6209, 7.5957, 7.5691, 7.4827, 7.4591, 7.4332, 7.4209, 7.3991, 7.385, 7.632, 7.6086, 7.6982, 7.733, 7.7126, 7.6883, 7.7833, 7.7677, 7.8018, 7.8899, 7.8803, 7.8773, 7.9025, 7.9356, 7.9645, 7.947, 7.9219, 7.8982, 7.834, 7.8594, 7.8403, 7.8171, 7.7938, 7.7724, 7.7498, 7.7278, 7.7146, 7.6962, 7.7214, 7.7026, 7.6822, 7.6786, 7.7011, 7.7241, 7.7092, 7.7615, 7.7562, 7.9785, 8.0682, 8.0883, 8.1198, 8.1139, 8.1916, 8.1903, 8.1695, 8.1522, 8.1334, 8.1459, 8.1827, 8.1745, 8.1582, 8.1417, 8.1222, 8.1048, 8.1222, 8.1428, 8.1402, 8.1465, 8.13, 8.1129, 8.096, 8.0818, 8.0319, 8.0505, 8.0327, 8.0234, 8.0116, 8.0323, 8.0234, 8.0094, 8.0094, 7.9921, 8.0094, 7.9993, 8.0148, 8.0001, 7.9899, 7.9773, 7.9801, 7.9694, 7.9859, 7.9717, 7.9622, 7.947, 7.9368, 7.924, 7.9117, 7.9371, 7.9546, 7.9449, 7.9303, 7.952, 7.9406, 7.9561, 7.9719, 7.9578, 7.9737, 7.9616, 7.9473, 7.9619, 7.9775, 7.9909, 8.0044, 7.9909, 7.9771, 7.9636, 7.9787, 7.9927, 8.0089, 7.9968, 7.9963, 7.9858, 7.9768, 7.9637, 7.9523, 7.9419, 7.9302, 7.9177, 7.9616, 7.9497, 7.9616, 7.9503, 7.9377, 7.9464, 7.9583, 7.9478, 7.9615, 7.9751, 7.9634, 7.9514, 7.9885, 7.9899, 7.9793, 7.9926, 8.0302, 8.0185, 8.0093, 8.0295, 8.0181, 8.0069, 7.997, 8.0093, 7.9995, 7.9946, 7.9867, 7.9748, 7.9634, 7.9751, 7.9648, 7.9539, 7.9429, 7.9331, 7.9226, 7.9123, 7.9233, 7.9581, 7.9708, 7.9617, 7.9954, 7.989, 7.9956, 7.9924, 7.9948, 8.0061, 7.9953, 7.9856, 7.9987, 8.0096, 8.002, 8.1387, 8.2318, 8.2638, 8.2577, 8.2475, 8.271, 8.265, 8.2663, 8.2566, 8.2512, 8.2476, 8.2383, 8.2318, 8.2219, 8.232, 8.204, 8.1944, 8.1837, 8.1765, 8.1693, 8.1605, 8.1517, 8.1449, 8.1369, 8.128, 8.1189, 8.129, 8.1233, 8.2286, 8.2184, 8.2292, 8.2379, 8.2297, 8.2377, 8.2484, 8.2387, 8.2476, 8.2456, 8.2391, 8.2301, 8.2206, 8.2124, 8.242, 8.3278, 8.3195, 8.3343, 8.3256, 8.3202, 8.3296, 8.3904, 8.382, 8.3739, 8.3647, 8.3743, 8.4044, 8.3952, 8.3879, 8.3803, 8.4315, 8.4244, 8.4152, 8.4412, 8.4705, 8.4622, 8.4526, 8.4509, 8.4426, 8.4497, 8.4402, 8.4319, 8.4391, 8.4474, 8.4406, 8.4336, 8.4248, 8.4322, 8.423, 8.4143, 8.4557, 8.4465, 8.4373, 8.4286, 8.4199, 8.4106, 8.3873, 8.3956, 8.3871, 8.3795, 8.3723, 8.3643, 8.3571, 8.3629, 8.3541, 8.3458, 8.3531, 8.3448, 8.3227, 8.3147, 8.3215, 8.3163, 8.3085, 8.3051, 8.2972, 8.2903, 8.2824, 8.2777, 8.2848, 8.2769, 8.2688, 8.2624, 8.2695, 8.262, 8.2691, 8.2483, 8.241, 8.2353, 8.2285, 8.2218, 8.2157, 8.2083, 8.2025, 8.1969, 8.1907, 8.1842, 8.1939, 8.1882, 8.2077, 8.2017, 8.196, 8.1897, 8.1833, 8.1772, 8.1695, 8.1638, 8.1706, 8.1645, 8.157, 8.1653, 8.1588, 8.1538, 8.147, 8.1399, 8.121, 8.1464, 8.1417, 8.135, 8.1288, 8.1221, 8.1283, 8.1216, 8.1147, 8.1209, 8.1155, 8.122, 8.1235, 8.1169, 8.1103, 8.1169, 8.1235, 8.1168, 8.1221, 8.1369, 8.1308, 8.1241, 8.1454, 8.152, 8.1584, 8.1897, 8.1831, 8.1767, 8.17, 8.1635, 8.1743, 8.1678, 8.1613, 8.1764, 8.1706, 8.1649, 8.1713, 8.1659, 8.1719, 8.1652, 8.1599, 8.1657, 8.1593, 8.1531, 8.1506, 8.1447, 8.1399, 8.1226, 8.1192, 8.1139, 8.12, 8.1161, 8.1101, 8.1089, 8.1028, 8.0968, 8.0917, 8.0978, 8.0925, 8.0983, 8.1102, 8.1044, 8.1093, 8.1147, 8.1087, 8.1028, 8.1009, 8.0951, 8.0893, 8.0841, 8.08, 8.0787, 8.0733, 8.0791, 8.1119, 8.1069, 8.1044, 8.1001, 8.0947, 8.0903, 8.0848, 8.0812, 8.0754, 8.071, 8.0653, 8.0601, 8.0549, 8.0498, 8.0442, 8.0407, 8.0373, 8.0319, 8.0264, 8.0208, 8.0182, 8.0137, 8.0084, 8.003, 7.998, 8.0061, 8.0138, 8.0226, 8.0308, 8.0267, 8.0228, 8.0193, 8.0246, 8.0298, 8.026, 8.0214, 8.0277, 8.023, 8.0178, 8.0298, 8.025, 8.0198, 8.0158, 8.0113, 8.0164, 8.0114, 8.0066, 8.0021, 7.9972, 7.9921, 7.9873, 7.983, 7.9778, 7.9662, 7.9621, 7.9571, 7.9523, 7.9583, 7.9536, 7.9488, 7.944, 7.9393, 7.9347, 7.9399, 7.9499, 7.9364, 7.9614, 7.9565, 7.9519, 7.9609, 7.9566, 7.9542, 7.9513, 7.9584, 7.9558, 7.9513, 7.9465, 7.9426, 7.9491, 7.9554, 7.9515, 7.9474, 7.9526, 7.9483, 7.9448, 7.9412, 7.9465, 7.9525, 7.9572, 7.9542, 7.9412, 7.9371, 7.9331, 7.9201, 7.916, 7.9223, 7.9175, 7.9224, 7.9187, 7.9145, 7.9104, 7.9069, 7.912, 7.909, 7.9046, 7.9101, 7.9061, 7.9107, 7.9094, 7.9065, 7.9028, 7.899, 7.8949, 7.9, 7.8957, 7.8913, 7.8871, 7.8836, 7.8794, 7.8752, 7.8721, 7.8955, 7.8913, 7.8891, 7.8959, 7.8917, 7.8881, 7.8938, 7.8898, 7.8945, 7.8932, 7.8981, 7.9028, 7.8989, 7.9057, 7.9017, 7.8983, 7.8942, 7.8913, 7.8877, 7.8935, 7.8894, 7.8948, 7.8973, 7.8948, 7.9009, 7.8988, 7.8955, 7.8933, 7.8977, 7.8939, 7.8898, 7.8783, 7.8827, 7.8787, 7.8837, 7.8805, 7.8773, 7.874, 7.871, 7.867, 7.8636, 7.8607, 7.8573, 7.8542, 7.8503, 7.8556, 7.8569, 7.8545, 7.8512, 7.8512, 7.8472, 7.844, 7.8405, 7.8374, 7.8424, 7.8393, 7.8359, 7.8414, 7.8379, 7.8349, 7.8315, 7.8278, 7.8244, 7.8211, 7.8174, 7.822, 7.8113, 7.8104, 7.8077, 7.8045, 7.801, 7.8067, 7.8114, 7.8089, 7.8131, 7.8184, 7.8231, 7.8193, 7.8176, 7.8148, 7.811, 7.8153, 7.8207, 7.8184, 7.815, 7.8113, 7.8075, 7.8049, 7.8014, 7.8025, 7.8009, 7.7973, 7.8015, 7.8059, 7.8103, 7.8066, 7.8035, 7.8001, 7.7984, 7.812, 7.8162, 7.8133, 7.8175, 7.8143, 7.8136, 7.8112, 7.8088, 7.8056, 7.8052, 7.8019, 7.7988, 7.8036, 7.8022, 7.8103, 7.8149, 7.8119, 7.8131, 7.8123, 7.8093, 7.8139, 7.8136, 7.8106, 7.8073, 7.8042, 7.8025, 7.7948, 7.7913, 7.7829, 7.7875, 7.7914, 7.7892, 7.793, 7.7931, 7.7903, 7.7954, 7.7925, 7.7962, 7.7938, 7.791, 7.7888, 7.7854, 7.7827, 7.7804, 7.7796, 7.7773, 7.7746, 7.7714, 7.768, 7.7657, 7.7698, 7.7673, 7.7641, 7.7609, 7.7593, 7.7648, 7.7617, 7.7656, 7.7625, 7.7597, 7.7638, 7.7607, 7.7596, 7.7573, 7.7615, 7.7585, 7.7626, 7.7667, 7.7664, 7.7632, 7.763, 7.7602, 7.7572, 7.7614, 7.7595, 7.7629, 7.7605, 7.7576, 7.7546, 7.752, 7.7501, 7.7469, 7.7509, 7.7477, 7.7446, 7.7414, 7.7455, 7.7512, 7.7487, 7.746, 7.7502, 7.7544, 7.7518, 7.7488, 7.7458, 7.743, 7.7401, 7.7375, 7.7348, 7.7319, 7.7387, 7.7438, 7.7417, 7.7468, 7.7441, 7.7413, 7.7385, 7.742, 7.7465, 7.7442, 7.7492, 7.7487, 7.7457, 7.7425, 7.7396, 7.7377, 7.7347, 7.7323, 7.7308, 7.7287, 7.7266, 7.7301, 7.7274, 7.7244, 7.7286, 7.7256, 7.723, 7.7246, 7.7274, 7.7253, 7.7247, 7.7226, 7.7209, 7.7191, 7.7186, 7.7156, 7.7127, 7.7098, 7.7136, 7.7173, 7.7213, 7.7186, 7.7164, 7.7137, 7.7109, 7.7103, 7.7075, 7.7048, 7.7083, 7.7063, 7.7097, 7.7069, 7.7042, 7.7018, 7.6997, 7.6969, 7.6941, 7.6919, 7.6894, 7.6872, 7.6844, 7.6827, 7.6861, 7.6835, 7.681, 7.6849, 7.6826, 7.686, 7.6833, 7.6868, 7.6845, 7.6821, 7.6855, 7.6892, 7.687, 7.6907, 7.6905, 7.6883, 7.6917, 7.6951, 7.6992, 7.6967, 7.694, 7.6916, 7.6952, 7.6924, 7.6901, 7.6932, 7.6906, 7.7001, 7.6977, 7.6955, 7.6929, 7.6906, 7.6888, 7.6868, 7.684, 7.6818, 7.6796, 7.6773, 7.6752, 7.6727, 7.6706, 7.6683, 7.6659, 7.6637, 7.6672, 7.6705, 7.674, 7.6715, 7.6688, 7.6663, 7.6639, 7.6619, 7.6654, 7.6629, 7.6665, 7.664, 7.6616, 7.6602, 7.6577, 7.6619, 7.6599, 7.659, 7.6568, 7.6607, 7.6584, 7.6559, 7.6546, 7.6583, 7.6585, 7.6587, 7.657, 7.6493, 7.6479, 7.6453, 7.6434, 7.6422, 7.6404, 7.638, 7.6362, 7.6338, 7.6315, 7.6292, 7.631, 7.6287, 7.6281, 7.6331, 7.6354, 7.6336, 7.6263, 7.6237, 7.6212, 7.6251, 7.6232, 7.6213, 7.6189, 7.6119, 7.6149, 7.6183, 7.616, 7.6145, 7.6122, 7.6155, 7.6131, 7.6108, 7.6088, 7.6098, 7.608, 7.6057, 7.6091, 7.6071, 7.6105, 7.6088, 7.6073, 7.6056, 7.5996, 7.6045, 7.6089, 7.6068, 7.6053, 7.6107, 7.6096, 7.6148, 7.6126, 7.6114, 7.61, 7.6144, 7.613, 7.6112, 7.6053, 7.6032, 7.6017, 7.6061, 7.6067, 7.6119, 7.6101, 7.6077, 7.6054, 7.6241, 7.622, 7.6202, 7.6234, 7.621, 7.6197, 7.6175, 7.6161, 7.6192, 7.617, 7.6147, 7.6126, 7.6158, 7.6139, 7.6118, 7.6101, 7.6078, 7.608, 7.6067, 7.6045, 7.6029, 7.6061, 7.6044, 7.6034, 7.6019, 7.6017, 7.6001, 7.5985, 7.5962, 7.5943, 7.6036, 7.6099, 7.6081, 7.6108, 7.6158, 7.614, 7.6179, 7.6201, 7.6185, 7.6165, 7.6146, 7.6146, 7.6091, 7.61, 7.608, 7.6088, 7.6069, 7.6054, 7.6049, 7.6037, 7.6033, 7.6037, 7.6064, 7.6095, 7.6087, 7.6197, 7.6183, 7.6214, 7.6206, 7.6243, 7.6225, 7.6206, 7.6186, 7.6169, 7.6227, 7.6213, 7.62, 7.6187, 7.6196, 7.6234, 7.6218, 7.6196, 7.6181, 7.62, 7.6233, 7.622, 7.6197, 7.6181, 7.627, 7.6251, 7.6278, 7.6306, 7.629, 7.6272, 7.6258, 7.6237, 7.6268, 7.6251, 7.6278, 7.6257, 7.6197, 7.6177, 7.6215, 7.6243, 7.6224, 7.626, 7.6241, 7.6227, 7.6257, 7.6237, 7.6277, 7.6257, 7.6236, 7.6219, 7.6205, 7.6233, 7.6264, 7.6245, 7.6226, 7.6207, 7.6237, 7.6218, 7.6199, 7.6186, 7.6216, 7.6202, 7.6184, 7.6214, 7.6194, 7.6174, 7.6302, 7.6333, 7.6475, 7.6507, 7.6492, 7.6475, 7.6481, 7.6514, 7.6503, 7.6482, 7.6461, 7.6443, 7.6471, 7.6453, 7.6433, 7.6463, 7.6443, 7.655, 7.6533, 7.6516, 7.6499, 7.6538, 7.652, 7.6513, 7.6496, 7.6482, 7.651, 7.6603, 7.6584, 7.6662, 7.6693, 7.6677, 7.6656, 7.6685, 7.6669, 7.6649, 7.6633, 7.6664, 7.6647, 7.6686, 7.6712, 7.6737, 7.6718, 7.6698, 7.6677, 7.6798, 7.6854, 7.6834, 7.6823, 7.6808, 7.6796, 7.6781, 7.6764, 7.6715, 7.67, 7.664, 7.6629, 7.662, 7.6649, 7.6632, 7.6611, 7.6592, 7.6573, 7.6557, 7.6539, 7.6568, 7.6549, 7.6535, 7.6515, 7.6502, 7.6482, 7.6463, 7.6448, 7.6433, 7.646, 7.6441, 7.6428, 7.6408, 7.6435, 7.6417, 7.6398, 7.6424, 7.6405, 7.6432, 7.6418, 7.6407, 7.6398, 7.6397, 7.6383, 7.6365, 7.6349, 7.6335, 7.6359, 7.6339, 7.6342, 7.6323, 7.635, 7.6331, 7.6313, 7.6339, 7.6329, 7.6311, 7.6299, 7.6326, 7.6314, 7.6298, 7.6321, 7.6302, 7.6377, 7.6366, 7.6353, 7.6342, 7.6326, 7.6399, 7.6426, 7.6408, 7.6392, 7.6375, 7.6443, 7.6388, 7.6434, 7.642, 7.6445, 7.643, 7.6412, 7.6396, 7.6382, 7.6417, 7.6448, 7.6436, 7.6467, 7.6497, 7.648, 7.6465, 7.6453, 7.6444, 7.6432, 7.6424, 7.641, 7.6396, 7.6382, 7.6439, 7.6423, 7.6409, 7.6416, 7.6405, 7.6401, 7.6388, 7.6371, 7.6353, 7.6385, 7.638, 7.6363, 7.639, 7.6374, 7.6406, 7.6398, 7.642, 7.6442, 7.6426, 7.6419, 7.6402, 7.6383, 7.6367, 7.6351, 7.6332, 7.6316, 7.6299, 7.6293, 7.6282, 7.6306, 7.6289, 7.6314, 7.63, 7.6327, 7.6313, 7.6354, 7.6347, 7.633, 7.6316, 7.6298, 7.628, 7.6269, 7.6291, 7.6283, 7.6308, 7.6291, 7.6275, 7.626, 7.6207, 7.6238, 7.6264, 7.6247, 7.6269, 7.6251, 7.6237, 7.6219, 7.6201, 7.619, 7.6216, 7.6207, 7.6194, 7.6181, 7.6236, 7.6218, 7.6353, 7.6339, 7.6326, 7.6311, 7.6295, 7.6278, 7.6265, 7.6248, 7.6235, 7.6222, 7.622, 7.6246, 7.6266, 7.6292, 7.6319, 7.6304, 7.6291, 7.6312, 7.6295, 7.6283, 7.6269, 7.6294, 7.6318, 7.6301, 7.6291, 7.6282, 7.6264, 7.6249, 7.6231, 7.6255, 7.6278, 7.6261, 7.6243, 7.6264, 7.6246, 7.6194, 7.6223, 7.6206, 7.619, 7.6177, 7.6167, 7.6154, 7.6221, 7.6204, 7.6228, 7.625, 7.6234, 7.6217, 7.6202, 7.6225, 7.6213, 7.6197, 7.6192, 7.6178, 7.6161, 7.6153, 7.6136, 7.6119, 7.6141, 7.6126, 7.616, 7.6182, 7.6165, 7.6148, 7.6133, 7.6117, 7.6103, 7.6089, 7.6076, 7.606, 7.6049, 7.6071, 7.6133, 7.6256, 7.6239, 7.6222, 7.6206, 7.6192, 7.6213, 7.6198, 7.6181, 7.6164, 7.6152, 7.6199, 7.6182, 7.6167, 7.615, 7.6134, 7.6118, 7.6107, 7.6091, 7.608, 7.6066, 7.605, 7.6072, 7.6057, 7.6118, 7.6114, 7.61, 7.6052, 7.6037, 7.6024, 7.6015, 7.6001, 7.5988, 7.5975, 7.5962, 7.5912, 7.5934, 7.5957, 7.6026, 7.6051, 7.6036, 7.6021, 7.6025, 7.6012, 7.6, 7.5985, 7.5971, 7.5968, 7.5955, 7.5941, 7.5932, 7.5921, 7.5952, 7.6015, 7.608, 7.6065, 7.6054, 7.6076, 7.6068, 7.6064, 7.6051, 7.6073, 7.6062, 7.6054, 7.6046, 7.6033, 7.6022, 7.6006, 7.596, 7.5948, 7.5942, 7.5926, 7.591, 7.5929, 7.5949, 7.5934, 7.5954, 7.5975, 7.5964, 7.5953, 7.5938, 7.5923, 7.5917, 7.5961, 7.5986, 7.5971, 7.5961, 7.5946, 7.5934, 7.5944, 7.5967, 7.5954, 7.5938, 7.596, 7.5947, 7.5932, 7.5954, 7.5976, 7.5963, 7.5987, 7.5972, 7.5957, 7.5943, 7.593, 7.5951, 7.5973, 7.5996, 7.5982, 7.6005, 7.6026, 7.6013, 7.603, 7.6019, 7.6041, 7.6028, 7.5982, 7.597, 7.5955, 7.5941, 7.5926, 7.5914, 7.5907, 7.5897, 7.5919, 7.594, 7.5926, 7.5916, 7.5948, 7.5933, 7.592, 7.5906, 7.5928, 7.5915, 7.5938, 7.5925, 7.592, 7.5924, 7.591, 7.5949, 7.5936, 7.5932, 7.5921, 7.591, 7.5896, 7.5917, 7.5908, 7.5893, 7.5916, 7.5935, 7.5924, 7.591, 7.5898, 7.5885, 7.5881, 7.59, 7.5886, 7.5873, 7.5864, 7.5853, 7.5875, 7.5862, 7.5851, 7.6056, 7.6041, 7.6031, 7.6019, 7.6009, 7.5996, 7.6014, 7.5969, 7.5925, 7.5951, 7.5973, 7.5962, 7.595, 7.5938, 7.5923, 7.5911, 7.5933, 7.5936, 7.5973, 7.5962, 7.5953, 7.5943, 7.5966, 7.5954, 7.5973, 7.5967, 7.5952, 7.5971, 7.6067, 7.6062, 7.6084, 7.6073, 7.6058, 7.6046, 7.6032, 7.6021, 7.6007, 7.6027, 7.6012, 7.5968, 7.5954, 7.5939, 7.5969, 7.5955, 7.5944, 7.593, 7.5918, 7.5936, 7.5923, 7.5941, 7.5962, 7.595, 7.5941, 7.5926, 7.5912, 7.5898, 7.5885, 7.5873, 7.5896, 7.592, 7.591, 7.5895, 7.5883, 7.5872, 7.5881, 7.5868, 7.5826, 7.5847, 7.5871, 7.586, 7.5846, 7.5962, 7.5948, 7.5935, 7.5925, 7.5944, 7.5987, 7.5973, 7.596, 7.595, 7.5939, 7.5981, 7.597, 7.5956, 7.5976, 7.5962, 7.595, 7.5969, 7.6021, 7.6008, 7.5995, 7.5984, 7.6003, 7.6023, 7.6015, 7.6001, 7.5988, 7.5975, 7.5962, 7.5981, 7.6, 7.5987, 7.5979, 7.5968, 7.5956, 7.5974, 7.5961, 7.5951, 7.5939, 7.5925, 7.5945, 7.5934, 7.5921, 7.5911, 7.5898, 7.5885, 7.5879, 7.5866, 7.5853, 7.5843, 7.5865, 7.5853, 7.5875, 7.5867, 7.5856, 7.5843, 7.5835, 7.591, 7.59, 7.5922, 7.5912, 7.5905, 7.5895, 7.5882, 7.5872, 7.5865, 7.5854, 7.5841, 7.5829, 7.582, 7.5808, 7.5801, 7.5822, 7.5812, 7.5798, 7.5792, 7.578, 7.5768, 7.5756, 7.5748, 7.574, 7.5734, 7.5722, 7.571, 7.573, 7.5718, 7.5734, 7.5722, 7.574, 7.5759, 7.5757, 7.5746, 7.5765, 7.5754, 7.5773, 7.5791, 7.578, 7.5829, 7.5848, 7.5836, 7.5822, 7.5811, 7.5801, 7.5819, 7.5807, 7.5827, 7.5848, 7.5835, 7.5822, 7.5808, 7.5797, 7.5785, 7.5773, 7.576, 7.5747, 7.574, 7.5759, 7.5745, 7.5733, 7.5721, 7.5739, 7.5757, 7.5754, 7.5742, 7.576, 7.5747, 7.5735, 7.5722, 7.571, 7.573, 7.5749, 7.5736, 7.5724, 7.5712, 7.57, 7.5689, 7.5681, 7.5668, 7.5656, 7.5663, 7.5625, 7.5612, 7.56, 7.5587, 7.5636, 7.5624, 7.5615, 7.5603, 7.5595, 7.5589, 7.5579, 7.5567, 7.5556, 7.5545, 7.5537, 7.5564, 7.5582, 7.5602, 7.5618, 7.5618, 7.5637, 7.578, 7.577, 7.5759, 7.5777, 7.5765, 7.5783, 7.5743, 7.5791, 7.5779, 7.5797, 7.5784, 7.5777, 7.5794, 7.5815, 7.5832, 7.5822, 7.5809, 7.5796, 7.5815, 7.5805, 7.5793, 7.5786, 7.5776, 7.5794, 7.5785, 7.5776, 7.5764, 7.5757, 7.5744, 7.5733, 7.572, 7.5733, 7.5695, 7.5683, 7.5672, 7.5689, 7.5718, 7.571, 7.5676, 7.57, 7.569, 7.5678, 7.5671, 7.5662, 7.5656, 7.5648, 7.5641, 7.5628, 7.5616, 7.5604, 7.5595, 7.5589, 7.5578, 7.557, 7.5564, 7.5553, 7.5541, 7.5535, 7.5527, 7.5515, 7.5504, 7.5588, 7.5577, 7.5593, 7.5582, 7.5581, 7.5569, 7.5557, 7.5549, 7.554, 7.5528, 7.5519, 7.551, 7.5502, 7.5495, 7.5484, 7.5475, 7.5469, 7.5458, 7.5446, 7.5434, 7.5452, 7.5441, 7.5431, 7.5448, 7.5469, 7.5468, 7.546, 7.5425, 7.5414, 7.541, 7.5399, 7.5417, 7.5406, 7.5427, 7.5419, 7.5436, 7.5424, 7.5442, 7.5439, 7.5428, 7.5421, 7.5409, 7.5402, 7.539, 7.5442, 7.5434, 7.5422, 7.5414, 7.543, 7.5447, 7.5463, 7.5452, 7.5444, 7.5432, 7.542, 7.5409, 7.5538, 7.5555, 7.5548, 7.5537, 7.5528, 7.5494, 7.5483, 7.5543, 7.559, 7.5617, 7.5611, 7.5604, 7.5574, 7.5567, 7.5557, 7.555, 7.5542, 7.5544, 7.5538, 7.5556, 7.5547, 7.5545, 7.5541, 7.5532, 7.5549, 7.5541, 7.559, 7.5631, 7.5625, 7.5617, 7.5607, 7.5599, 7.5589, 7.5579, 7.5569, 7.5559, 7.5577, 7.5575, 7.5564, 7.5661, 7.565, 7.5667, 7.5656, 7.5673, 7.5664, 7.5652, 7.5641, 7.5629, 7.562, 7.561, 7.5625, 7.5616, 7.5604, 7.5597, 7.5586, 7.5604, 7.562, 7.5637, 7.5629, 7.5625, 7.5644, 7.5636, 7.563, 7.5647, 7.5635, 7.5651, 7.564, 7.5628, 7.5617, 7.5609, 7.5598, 7.5587, 7.5603, 7.5599, 7.5617, 7.5633, 7.565, 7.5639, 7.5633, 7.5626, 7.5617, 7.5611, 7.5601, 7.5593, 7.5587, 7.5584, 7.5602, 7.5593, 7.5611, 7.563, 7.5646, 7.5637, 7.5628, 7.5621, 7.5613, 7.5633, 7.5622, 7.5614, 7.5605, 7.5597, 7.5587, 7.558, 7.5597, 7.5588, 7.5631, 7.5655, 7.5647, 7.5639, 7.5654, 7.5669, 7.5661, 7.5679, 7.5671, 7.5659, 7.565, 7.564, 7.5631, 7.5649, 7.5641, 7.5636, 7.5627, 7.5657, 7.5646, 7.5635, 7.565, 7.5639, 7.563, 7.562, 7.5609, 7.5607, 7.5598, 7.5587, 7.5602, 7.5594, 7.5582, 7.5572, 7.5563, 7.5551, 7.5546, 7.5538, 7.5527, 7.5516, 7.5506, 7.552, 7.5511, 7.5503, 7.5495, 7.5509, 7.5498, 7.5495, 7.5484, 7.5473, 7.5463, 7.5454, 7.5472, 7.5488, 7.5479, 7.5471, 7.547, 7.5461, 7.5484, 7.5474, 7.5518, 7.5508, 7.5526, 7.5516, 7.5534, 7.5556, 7.5545, 7.5534, 7.5525, 7.5514, 7.5506, 7.55, 7.549, 7.548, 7.5504, 7.5518, 7.5509, 7.5498, 7.5488, 7.5455, 7.5445, 7.5435, 7.5428, 7.5423, 7.5442, 7.546, 7.5427, 7.5441, 7.5457, 7.5449, 7.5439, 7.5429, 7.5419, 7.5419, 7.5435, 7.5424, 7.542, 7.541, 7.54, 7.539, 7.538, 7.5369, 7.5359, 7.5349, 7.5339, 7.536, 7.5351, 7.5343, 7.5408, 7.5399, 7.5389, 7.5378, 7.5367, 7.5357, 7.5349, 7.5341, 7.533, 7.5319, 7.531, 7.5333, 7.5353, 7.5344, 7.5358, 7.5349, 7.5367, 7.5382, 7.5371, 7.5386, 7.5376, 7.5392, 7.5383, 7.5374, 7.5367, 7.5357, 7.5351, 7.5341, 7.533, 7.5344, 7.5336, 7.5331, 7.5321, 7.5316, 7.5316, 7.5306, 7.5296, 7.5312, 7.536, 7.5349, 7.5365, 7.5357, 7.5347, 7.5361, 7.5351, 7.537, 7.536, 7.5355, 7.5345, 7.5335, 7.5303, 7.5318, 7.5309, 7.53, 7.5291, 7.5307, 7.5296, 7.5286, 7.5278, 7.5268, 7.5284, 7.5276, 7.5268, 7.5261, 7.5254, 7.5245, 7.5236, 7.5252, 7.5243, 7.5238, 7.5233, 7.5226, 7.5217, 7.5211, 7.5202, 7.5196, 7.5187, 7.5177, 7.5193, 7.5185, 7.5176, 7.5167, 7.5158, 7.5148, 7.514, 7.5153, 7.5143, 7.5133, 7.5147, 7.5162, 7.5153, 7.5168, 7.5161, 7.5151, 7.5166, 7.5156, 7.5171, 7.5166, 7.5156, 7.5146, 7.5137, 7.5153, 7.5147, 7.5137, 7.5152, 7.5121, 7.5114, 7.5108, 7.5123, 7.5116, 7.5111, 7.5101, 7.5091, 7.5281, 7.5273, 7.5264, 7.5255, 7.5246, 7.5236, 7.5253, 7.5268, 7.5259, 7.5273, 7.5264, 7.528, 7.527, 7.526, 7.5275, 7.5266, 7.5258, 7.5249, 7.5264, 7.5267, 7.5257, 7.525, 7.5243, 7.5258, 7.5248, 7.5263, 7.5266, 7.5256, 7.5246, 7.5261, 7.5251, 7.5247, 7.5216, 7.5206, 7.5197, 7.5189, 7.5179, 7.5171, 7.5184, 7.5175, 7.5166, 7.5158, 7.5173, 7.5165, 7.5178, 7.5193, 7.5184, 7.5177, 7.5192, 7.5183, 7.5174, 7.5191, 7.5207, 7.5199, 7.5192, 7.5183, 7.5174, 7.5166, 7.5159, 7.5151, 7.5146, 7.5136, 7.5128, 7.5119, 7.509, 7.5082, 7.5075, 7.5097, 7.5118, 7.5111, 7.5085, 7.5078, 7.5069, 7.5059, 7.5075, 7.5138, 7.5129, 7.5119, 7.5109, 7.5103, 7.5098, 7.5112, 7.5105, 7.5096, 7.5088, 7.5079, 7.5123, 7.5116, 7.5111, 7.5128, 7.5119, 7.511, 7.5125, 7.5115, 7.5108, 7.5099, 7.5069, 7.5067, 7.506, 7.5051, 7.5042, 7.5034, 7.5029, 7.5022, 7.5037, 7.503, 7.5021, 7.5012, 7.5003, 7.5018, 7.501, 7.5001, 7.4992, 7.5006, 7.5024, 7.5015, 7.5009, 7.5001, 7.4991, 7.4985, 7.4978, 7.4994, 7.4989, 7.5004, 7.4996, 7.4991, 7.4986, 7.4978, 7.4972, 7.4963, 7.4954, 7.4945, 7.4959, 7.495, 7.4943, 7.4953, 7.4947, 7.4961, 7.4952, 7.4967, 7.4957, 7.495, 7.4943, 7.4959, 7.4972, 7.4947, 7.4938, 7.4931, 7.4924, 7.4938, 7.4953, 7.4944, 7.4936, 7.4929, 7.4941, 7.4933, 7.4986, 7.4978, 7.4991, 7.4982, 7.4994, 7.4985, 7.4998, 7.499, 7.5003, 7.5031, 7.5005, 7.502, 7.5012, 7.5004, 7.5006, 7.4998, 7.5038, 7.5051, 7.5048, 7.5043, 7.5038, 7.5052, 7.5047, 7.5039, 7.503, 7.5021, 7.5016, 7.5008, 7.5001, 7.5015, 7.4986, 7.5001, 7.4992, 7.5007, 7.5003, 7.4994, 7.4985, 7.498, 7.4972, 7.4964, 7.4943, 7.4937, 7.4931, 7.4924, 7.4919, 7.4958, 7.495, 7.4964, 7.4956, 7.4947, 7.4942, 7.4938, 7.493, 7.4923, 7.4914, 7.4911, 7.4936, 7.4955, 7.4949, 7.4942, 7.4937, 7.4928, 7.4919, 7.491, 7.4934, 7.4948, 7.492, 7.4934, 7.4927, 7.4942, 7.4937, 7.4931, 7.4923, 7.4938, 7.493, 7.4923, 7.4916, 7.4911, 7.4907, 7.4919, 7.4913, 7.489, 7.4903, 7.4904, 7.4896, 7.4911, 7.491, 7.4924, 7.496, 7.4954, 7.4945, 7.4936, 7.4928, 7.4922, 7.4935, 7.4948, 7.4976, 7.4968, 7.4959, 7.4951, 7.4942, 7.4957, 7.4949, 7.4944, 7.4936, 7.4927, 7.4941, 7.4933, 7.4926, 7.4919, 7.4911, 7.4904, 7.4896, 7.4888, 7.4883, 7.4876, 7.489, 7.4885, 7.488, 7.4873, 7.4886, 7.4881, 7.4874, 7.4869, 7.4876, 7.4869, 7.4863, 7.4855, 7.4848, 7.4841, 7.4834, 7.4847, 7.4838, 7.483, 7.4821, 7.4812, 7.4858, 7.483, 7.4821, 7.4833, 7.4845, 7.4837, 7.4838, 7.485, 7.4841, 7.4832, 7.4831, 7.4844, 7.4857, 7.4853, 7.4826, 7.4818, 7.481, 7.4802, 7.4794, 7.4806, 7.4819, 7.4813, 7.4825, 7.4818, 7.4809, 7.48, 7.4812, 7.4805, 7.4818, 7.4813, 7.4828, 7.4823, 7.4836, 7.4829, 7.4825, 7.4817, 7.4791, 7.4794, 7.4807, 7.4799, 7.4792, 7.4785, 7.4777, 7.4783, 7.4791, 7.4784, 7.4777, 7.477, 7.4764, 7.4756, 7.4748, 7.4723, 7.4718, 7.4731, 7.4743, 7.4737, 7.4751, 7.4746, 7.4739, 7.4731, 7.4723, 7.4756, 7.4768, 7.4781, 7.4794, 7.4767, 7.4777, 7.4773, 7.4765, 7.4758, 7.477, 7.4783, 7.4776, 7.4752, 7.4746, 7.4738, 7.475, 7.4762, 7.4754, 7.4746, 7.4725, 7.4728, 7.4741, 7.4753, 7.4746, 7.4739, 7.4751, 7.4749, 7.4742, 7.4736, 7.4727, 7.4719, 7.4711, 7.4706, 7.4697, 7.4689, 7.468, 7.4672, 7.4666, 7.466, 7.4684, 7.4676, 7.471, 7.4723, 7.4827, 7.4819, 7.4812, 7.4828, 7.4823, 7.4815, 7.481, 7.4803, 7.4816, 7.4829, 7.485, 7.4843, 7.4837, 7.4812, 7.4804, 7.4816, 7.4813, 7.4806, 7.4804, 7.4819, 7.4811, 7.4884, 7.4878, 7.4934, 7.4928, 7.4923, 7.4921, 7.4913, 7.4907, 7.49, 7.4892, 7.4887, 7.4867, 7.486, 7.4852, 7.4851, 7.4843, 7.4835, 7.485, 7.4842, 7.4834, 7.4827, 7.4822, 7.4816, 7.4808, 7.4806, 7.4798, 7.4791, 7.4785, 7.4777, 7.4789, 7.4783, 7.4794, 7.4806, 7.4798, 7.4811, 7.4803, 7.4816, 7.4812, 7.4806, 7.48, 7.4792, 7.4786, 7.4799, 7.4791, 7.4787, 7.4799, 7.4811, 7.4824, 7.4817, 7.4809, 7.4801, 7.4793, 7.4794, 7.4789, 7.4781, 7.4793, 7.4786, 7.478, 7.4774, 7.4788, 7.4782, 7.4775, 7.4777, 7.4769, 7.4763, 7.4755, 7.4788, 7.4799, 7.4791, 7.4803, 7.4797, 7.4809, 7.4811, 7.4812, 7.4808, 7.4803, 7.4796, 7.4789, 7.4783, 7.4776, 7.4793, 7.4786, 7.4779, 7.4771, 7.4764, 7.4756, 7.4782, 7.4775, 7.4787, 7.4779, 7.4801, 7.4794, 7.4806, 7.4799, 7.4797, 7.4789, 7.4781, 7.4773, 7.4793, 7.4785, 7.4777, 7.4769, 7.4762, 7.4759, 7.4756, 7.4768, 7.4761, 7.4753, 7.4746, 7.4742, 7.4735, 7.4728, 7.4721, 7.4714, 7.4725, 7.472, 7.4714, 7.4728, 7.4721, 7.4734, 7.4759, 7.4751, 7.4743, 7.4735, 7.4729, 7.4721, 7.4717, 7.4731, 7.4731, 7.4708, 7.4723, 7.4717, 7.4709, 7.4703, 7.4715, 7.4728, 7.4724, 7.474, 7.4738, 7.475, 7.4761, 7.4757, 7.4752, 7.4764, 7.4833, 7.481, 7.4802, 7.4794, 7.4787, 7.4779, 7.478, 7.4774, 7.4785, 7.4779, 7.479, 7.4783, 7.4777, 7.4771, 7.4763, 7.4762, 7.4755, 7.4748, 7.4741, 7.4737, 7.4748, 7.4741, 7.4733, 7.4725, 7.4718, 7.471, 7.4703, 7.4698, 7.469, 7.4702, 7.4696, 7.471, 7.4705, 7.4699, 7.4695, 7.4706, 7.4701, 7.4694, 7.4686, 7.4682, 7.4695, 7.4707, 7.4705, 7.4697, 7.4709, 7.4705, 7.4699, 7.4692, 7.4685, 7.4679, 7.4672, 7.4665, 7.4658, 7.4652, 7.4645, 7.4657, 7.4669, 7.4681, 7.4675, 7.4687, 7.473, 7.4723, 7.4718, 7.4711, 7.473, 7.4725, 7.4717, 7.4711, 7.4729, 7.4722, 7.4733, 7.4725, 7.4717, 7.473, 7.4723, 7.4717, 7.4711, 7.4704, 7.4697, 7.473, 7.4742, 7.4737, 7.4729, 7.4741, 7.4753, 7.4745, 7.4741, 7.4756, 7.4751, 7.4745, 7.474, 7.4734, 7.4728, 7.474, 7.4833, 7.4845, 7.4838, 7.4869, 7.4862, 7.4855, 7.4848, 7.4871, 7.4892, 7.4892, 7.4892, 7.4885, 7.4879, 7.4874, 7.4868, 7.4861, 7.4856, 7.4848, 7.4842, 7.4835, 7.4828, 7.4822, 7.4815, 7.4809, 7.4804, 7.4817, 7.481, 7.4804, 7.4799, 7.4792, 7.4803, 7.4798, 7.4791, 7.4803, 7.4798, 7.479, 7.4789, 7.4861, 7.4854, 7.4848, 7.4841, 7.4841, 7.4853, 7.4847, 7.4839, 7.4832, 7.4827, 7.4823, 7.4818, 7.4811, 7.4805, 7.4798, 7.4903, 7.4896, 7.4878, 7.4913, 7.4906, 7.4899, 7.4916, 7.4944, 7.4966, 7.4958, 7.4968, 7.497, 7.4964, 7.4978, 7.4991, 7.4986, 7.4981, 7.4977, 7.4988, 7.4984, 7.4977, 7.4969, 7.4965, 7.5032, 7.5025, 7.502, 7.5015, 7.5027, 7.506, 7.5052, 7.5062, 7.5054, 7.5049, 7.5042, 7.5057, 7.5052, 7.5044, 7.5042, 7.5055, 7.5048, 7.5043, 7.5037, 7.5032, 7.5014, 7.5009, 7.5004, 7.5001, 7.5, 7.4996, 7.4989, 7.5, 7.5005, 7.4999, 7.5022, 7.5, 7.4995, 7.4988, 7.4981, 7.5067, 7.508, 7.5094, 7.5088, 7.5081, 7.5074, 7.5088, 7.5126, 7.5119, 7.5116, 7.5111, 7.5104, 7.5098, 7.5109, 7.5103, 7.5097, 7.5092, 7.5088, 7.5101, 7.5112, 7.5108, 7.5085, 7.508, 7.5077, 7.507, 7.5064, 7.5061, 7.5054, 7.5047, 7.504, 7.5033, 7.5044, 7.5089, 7.5082, 7.5075, 7.5085, 7.508, 7.5073, 7.5071, 7.5064, 7.5075, 7.5087, 7.508, 7.5073, 7.5066, 7.5059, 7.5053, 7.5064, 7.5094, 7.5087, 7.5098, 7.5091, 7.5085, 7.5096, 7.5093, 7.5103, 7.5097, 7.5092, 7.509, 7.5103, 7.5085, 7.5096, 7.5089, 7.5085, 7.5081, 7.5062, 7.5057, 7.5091, 7.5084, 7.5078, 7.5071, 7.5083, 7.5077, 7.5075, 7.5087, 7.5101, 7.5112, 7.5105, 7.5116, 7.5126, 7.5124, 7.5136, 7.5129, 7.5122, 7.5116, 7.511, 7.5106, 7.5117, 7.5095, 7.509, 7.5084, 7.5095, 7.5088, 7.5081, 7.5076, 7.5087, 7.508, 7.509, 7.5102, 7.5096, 7.5108, 7.512, 7.5131, 7.5125, 7.512, 7.5113, 7.5106, 7.5099, 7.5109, 7.5102, 7.5115, 7.511, 7.5103, 7.5096, 7.509, 7.5084, 7.5093, 7.5086, 7.5081, 7.5077, 7.5087, 7.508, 7.5078, 7.5076, 7.5069, 7.5062, 7.5055, 7.5065, 7.5075, 7.5069, 7.5063, 7.5057, 7.5053, 7.5049, 7.506, 7.5055, 7.5034, 7.5029, 7.5024, 7.5032, 7.5043, 7.5037, 7.5047, 7.5041, 7.5051, 7.5044, 7.5054, 7.5047, 7.5043, 7.5037, 7.5033, 7.5029, 7.5039, 7.5032, 7.5042, 7.5038, 7.5031, 7.5044, 7.5046, 7.5043, 7.5054, 7.5048, 7.5043, 7.5044, 7.5039, 7.5052, 7.5049, 7.5044, 7.5038, 7.505, 7.5078, 7.5073, 7.5084, 7.5078, 7.5088, 7.5099, 7.5116, 7.5109, 7.5102, 7.5112, 7.5107, 7.5117, 7.5146, 7.514, 7.5137, 7.5139, 7.5175, 7.5172, 7.515, 7.5143, 7.5136, 7.5147, 7.514, 7.5147, 7.5141, 7.5134, 7.5127, 7.5121, 7.5136, 7.513, 7.5141, 7.5134, 7.5127, 7.5137, 7.513, 7.5154, 7.5165, 7.516, 7.5155, 7.5149, 7.5143, 7.5138, 7.5131, 7.5125, 7.5119, 7.5112, 7.5122, 7.5115, 7.511, 7.5122, 7.5116, 7.5127, 7.5123, 7.5118, 7.5121, 7.5114, 7.5126, 7.5136, 7.5147, 7.5141, 7.514, 7.515, 7.516, 7.518, 7.5179, 7.518, 7.5175, 7.5168, 7.5162, 7.5156, 7.515, 7.5144, 7.5137, 7.513, 7.514, 7.515, 7.5143, 7.5136, 7.5131, 7.5147, 7.5142, 7.5152, 7.5176, 7.517, 7.5164, 7.5159, 7.5153, 7.5146, 7.5155, 7.5165, 7.5176, 7.5169, 7.5163, 7.5158, 7.5153, 7.5163, 7.5157, 7.5152, 7.5147, 7.5157, 7.515, 7.5144, 7.5155, 7.5149, 7.5144, 7.514, 7.5134, 7.5145, 7.5155, 7.5154, 7.5165, 7.5163, 7.5157, 7.5153, 7.5147, 7.5156, 7.5165, 7.5159, 7.5152, 7.5148, 7.5159, 7.517, 7.5163, 7.5156, 7.5165, 7.516, 7.5171, 7.518, 7.5176, 7.517, 7.5164, 7.5158, 7.5167, 7.5161, 7.5172, 7.5166, 7.5145, 7.514, 7.5136, 7.513, 7.5124, 7.512, 7.5114, 7.5125, 7.5119, 7.5114, 7.5108, 7.5103, 7.5112, 7.5106, 7.5103, 7.5097, 7.5091, 7.5086, 7.5097, 7.509, 7.5084, 7.5082, 7.5094, 7.5089, 7.51, 7.5094, 7.5088, 7.5083, 7.508, 7.5073, 7.5067, 7.5062, 7.5055, 7.508, 7.5074, 7.5099, 7.5092, 7.5086, 7.5096, 7.5095, 7.5089, 7.5084, 7.5077, 7.507, 7.5067, 7.5062, 7.5058, 7.5052, 7.5063, 7.5057, 7.5051, 7.506, 7.507, 7.5068, 7.5072, 7.5069, 7.5066, 7.5062, 7.5056, 7.5049, 7.5043, 7.5054, 7.5047, 7.5041, 7.5035, 7.5029, 7.5023, 7.5017, 7.5027, 7.5024, 7.5034, 7.5028, 7.5024, 7.502, 7.5015, 7.5013, 7.5007, 7.5002, 7.4997, 7.501, 7.5019, 7.5015, 7.501, 7.5087, 7.5098, 7.5093, 7.5088, 7.5085, 7.5081, 7.5077, 7.5088, 7.5082, 7.5093, 7.5098, 7.5093, 7.5087, 7.5081, 7.5076, 7.507, 7.508, 7.5074, 7.5068, 7.5078, 7.5072, 7.5078, 7.5074, 7.5068, 7.5083, 7.5077, 7.5071, 7.5067, 7.5078, 7.5089, 7.5084, 7.5078, 7.5074, 7.5084, 7.5064, 7.5058, 7.5052, 7.5047, 7.5027, 7.5038, 7.5033, 7.5029, 7.5024, 7.5019, 7.5017, 7.5028, 7.5022, 7.5017, 7.5011, 7.5005, 7.4999, 7.5009, 7.5003, 7.4997, 7.4992, 7.4986, 7.4996, 7.5005, 7.5, 7.5009, 7.5019, 7.5013, 7.5022, 7.5016, 7.5063, 7.5044, 7.5025, 7.5019, 7.5029, 7.5024, 7.502, 7.5014, 7.5008, 7.5002, 7.5012, 7.5006, 7.5002, 7.5044, 7.5041, 7.5051, 7.5047, 7.5041, 7.5052, 7.5046, 7.504, 7.5036, 7.503, 7.504, 7.5051, 7.5045, 7.5026, 7.5021, 7.5014, 7.5008, 7.5002, 7.4998, 7.4994, 7.4988, 7.4982, 7.4976, 7.4974, 7.4969, 7.4964, 7.4958, 7.4952, 7.4946, 7.494, 7.4934, 7.4932, 7.4926, 7.4921, 7.4915, 7.4909, 7.4903, 7.4897, 7.4892, 7.4886, 7.488, 7.4874, 7.4868, 7.4862, 7.4872, 7.4881, 7.4875, 7.4885, 7.491, 7.492, 7.4914, 7.4909, 7.4919, 7.4914, 7.4923, 7.4917, 7.4913, 7.4907, 7.4918, 7.4913, 7.4907, 7.4903, 7.4897, 7.4892, 7.4901, 7.4897, 7.4893, 7.4887, 7.4882, 7.4878, 7.4872, 7.4867, 7.4862, 7.4856, 7.485, 7.4846, 7.4841, 7.4838, 7.4832, 7.4833, 7.4859, 7.487, 7.4864, 7.4863, 7.4872, 7.4868, 7.4862, 7.486, 7.4857, 7.4852, 7.4846, 7.484, 7.4834, 7.483, 7.4824, 7.4835, 7.483, 7.4812, 7.4808, 7.4804, 7.48, 7.4811, 7.4845, 7.4845, 7.4841, 7.4836, 7.4832, 7.4826, 7.482, 7.483, 7.4824, 7.482, 7.4815, 7.481, 7.4806, 7.4802, 7.4798, 7.4793, 7.4805, 7.4817, 7.4865, 7.4874, 7.4869, 7.4864, 7.4858, 7.4852, 7.4862, 7.4871, 7.4883, 7.4877, 7.489, 7.4885, 7.4879, 7.488, 7.4874, 7.4869, 7.4864, 7.486, 7.4854, 7.4868, 7.4877, 7.4886, 7.4896, 7.489, 7.4899, 7.4907, 7.4901, 7.4922, 7.4916, 7.4911, 7.4908, 7.4918, 7.4913, 7.4924, 7.4918, 7.4927, 7.4921, 7.4916, 7.491, 7.4907, 7.4901, 7.4909, 7.4905, 7.49, 7.4894, 7.4888, 7.4884, 7.488, 7.4862, 7.4871, 7.488, 7.4888, 7.4883, 7.4893, 7.4887, 7.4882, 7.4897, 7.4891, 7.4886, 7.488, 7.489, 7.4884, 7.4878, 7.4948, 7.4945, 7.494, 7.495, 7.4944, 7.4938, 7.4948, 7.4957, 7.4953, 7.4947, 7.4942, 7.4937, 7.4962, 7.4988, 7.4982, 7.4978, 7.4978, 7.4974, 7.4968, 7.4963, 7.4957, 7.4954, 7.4948, 7.4944, 7.4939, 7.4935, 7.4944, 7.4939, 7.4935, 7.493, 7.4939, 7.4948, 7.4956, 7.4965, 7.4947, 7.4943, 7.494, 7.4922, 7.4931, 7.4928, 7.4922, 7.4918, 7.4912, 7.4894, 7.4889, 7.4902, 7.4902, 7.4911, 7.4905, 7.4914, 7.4908, 7.4917, 7.4911, 7.4907, 7.4901, 7.4895, 7.489, 7.4899, 7.4908, 7.4902, 7.4909, 7.4921, 7.4929, 7.4924, 7.4905, 7.49, 7.4908, 7.4904, 7.49, 7.4896, 7.4907, 7.4915, 7.4911, 7.4905, 7.4901, 7.4896, 7.4891, 7.4885, 7.4881, 7.4876, 7.4885, 7.488, 7.4901, 7.4897, 7.4892, 7.4888, 7.4884, 7.4893, 7.4888, 7.4896, 7.4891, 7.4889, 7.4884, 7.488, 7.4878, 7.4872, 7.4882, 7.4879, 7.4884, 7.4869, 7.4865, 7.4861, 7.4856, 7.4851, 7.4847, 7.4856, 7.485, 7.4844, 7.4839, 7.4835, 7.4829, 7.4825, 7.482, 7.4814, 7.4809, 7.4805, 7.4801, 7.4802, 7.4797, 7.4792, 7.4788, 7.4782, 7.4777, 7.4783, 7.478, 7.4776, 7.4788, 7.4799, 7.4793, 7.4787, 7.4797, 7.4792, 7.4814, 7.4809, 7.4804, 7.4801, 7.4797, 7.4793, 7.4787, 7.4783, 7.4792, 7.48, 7.4796, 7.4805, 7.4801, 7.4796, 7.4791, 7.4787, 7.4796, 7.4804, 7.4827, 7.4822, 7.4817, 7.4815, 7.48, 7.4809, 7.4804, 7.48, 7.4797, 7.4805, 7.48, 7.4796, 7.4791, 7.4787, 7.4782, 7.4777, 7.4773, 7.4768, 7.4753, 7.4748, 7.4742, 7.4737, 7.4733, 7.4728, 7.4722, 7.4717, 7.4727, 7.4722, 7.4708, 7.4707, 7.4706, 7.4703, 7.4699, 7.4709, 7.4705, 7.4713, 7.4709, 7.4717, 7.4713, 7.4723, 7.4718, 7.4712, 7.4708, 7.4704, 7.4698, 7.4695, 7.4691, 7.4687, 7.4683, 7.4677, 7.4659, 7.4669, 7.4665, 7.466, 7.4669, 7.4666, 7.4675, 7.4671, 7.468, 7.4679, 7.4674, 7.469, 7.47, 7.4697, 7.4694, 7.4691, 7.4686, 7.4708, 7.4703, 7.4698, 7.4694, 7.4703, 7.4698, 7.4693, 7.4688, 7.4685, 7.4695, 7.4692, 7.4675, 7.4659, 7.4644, 7.4684, 7.4701, 7.4697, 7.4752, 7.4748, 7.4742, 7.4738, 7.4734, 7.4743, 7.4739, 7.4737, 7.4734, 7.4733, 7.4741, 7.4737, 7.4759, 7.4755, 7.4749, 7.4744, 7.4739, 7.4734, 7.4732, 7.474, 7.4735, 7.4717, 7.4711, 7.4693, 7.4689, 7.4684, 7.4694, 7.4704, 7.4712, 7.4707, 7.4704, 7.4698, 7.4693, 7.4688, 7.4696, 7.4707, 7.4716, 7.4725, 7.4736, 7.473, 7.4725, 7.4725, 7.472, 7.4715, 7.4711, 7.4707, 7.4703, 7.4699, 7.4694, 7.4689, 7.4683, 7.4691, 7.4699, 7.4681, 7.4677, 7.4672, 7.4667, 7.4664, 7.4659, 7.4669, 7.4664, 7.4672, 7.4654, 7.4649, 7.4643, 7.4625, 7.462, 7.4629, 7.4638, 7.4661, 7.4657, 7.4652, 7.4647, 7.4643, 7.4638, 7.4637, 7.4663, 7.4673, 7.4684, 7.4694, 7.469, 7.4686, 7.4695, 7.4691, 7.4673, 7.467, 7.4678, 7.4674, 7.4657, 7.4666, 7.4674, 7.4683, 7.4679, 7.4674, 7.4671, 7.4667, 7.4662, 7.4673, 7.4668, 7.4664, 7.466, 7.4658, 7.4653, 7.4648, 7.4646, 7.4656, 7.4653, 7.4662, 7.4645, 7.4629, 7.4624, 7.4619, 7.4617, 7.4612, 7.4621, 7.4629, 7.4625, 7.462, 7.4628, 7.4626, 7.4634, 7.4629, 7.4624, 7.4619, 7.4615, 7.4611, 7.4607, 7.4602, 7.4597, 7.4592, 7.4591, 7.4599, 7.4607, 7.4601, 7.4609, 7.4604, 7.4612, 7.4608, 7.4603, 7.4598, 7.46, 7.4596, 7.4591, 7.4599, 7.4608, 7.4603, 7.4598, 7.4606, 7.4602, 7.461, 7.4617, 7.4625, 7.4621, 7.4619, 7.4614, 7.4678, 7.4675, 7.467, 7.4666, 7.4661, 7.4669, 7.4677, 7.4673, 7.4669, 7.4664, 7.4662, 7.4657, 7.4652, 7.4648, 7.4645, 7.4641, 7.4636, 7.4633, 7.4641, 7.4636, 7.4631, 7.4639, 7.4634, 7.4631, 7.463, 7.4626, 7.4635, 7.4644, 7.4639, 7.4624, 7.462, 7.4616, 7.4611, 7.4606, 7.4602, 7.4599, 7.4582, 7.4578, 7.4573, 7.4569, 7.4564, 7.4573, 7.4582, 7.4577, 7.4573, 7.4582, 7.4577, 7.4572, 7.4568, 7.4576, 7.4573, 7.4568, 7.4563, 7.4559, 7.4572, 7.4606, 7.4602, 7.4623, 7.4639, 7.4637, 7.4646, 7.464, 7.4649, 7.4657, 7.4652, 7.4647, 7.4644, 7.464, 7.4624, 7.462, 7.4616, 7.4623, 7.463, 7.4626, 7.4636, 7.4631, 7.4628, 7.4624, 7.462, 7.4615, 7.4619, 7.4614, 7.461, 7.4605, 7.46, 7.4608, 7.4603, 7.4611, 7.4606, 7.4614, 7.461, 7.4605, 7.46, 7.4608, 7.4605, 7.4601, 7.4609, 7.4604, 7.46, 7.4596, 7.4591, 7.4598, 7.4594, 7.4589, 7.4598, 7.4593, 7.4589, 7.4585, 7.4593, 7.4589, 7.4584, 7.4579, 7.4575, 7.457, 7.4578, 7.4574, 7.4569, 7.4565, 7.456, 7.4556, 7.457, 7.4579, 7.4578, 7.4575, 7.4572, 7.457, 7.4566, 7.4561, 7.4556, 7.4552, 7.4547, 7.4543, 7.4543, 7.4576, 7.4572, 7.4595, 7.4605, 7.4601, 7.4597, 7.4592, 7.4578, 7.4586, 7.4582, 7.4578, 7.4587, 7.4591, 7.4603, 7.4624, 7.4619, 7.4614, 7.4611, 7.4595, 7.4591, 7.46, 7.4584, 7.4581, 7.4589, 7.4596, 7.4607, 7.4604, 7.4601, 7.4584, 7.4568, 7.4563, 7.4559, 7.4567, 7.4574, 7.4571, 7.4579, 7.4575, 7.4583, 7.458, 7.4576, 7.4571, 7.4566, 7.4575, 7.4574, 7.4584, 7.458, 7.459, 7.4587, 7.4597, 7.4593, 7.4588, 7.4595, 7.459, 7.4599, 7.4597, 7.4592, 7.4587, 7.4582, 7.4581, 7.4578, 7.4574, 7.4569, 7.4564, 7.4571, 7.4566, 7.4549, 7.4534, 7.453, 7.4526, 7.4523, 7.4518, 7.4526, 7.4521, 7.4517, 7.4512, 7.452, 7.4515, 7.4513, 7.4521, 7.4529, 7.4524, 7.4519, 7.4528, 7.4523, 7.4531, 7.4515, 7.451, 7.4517, 7.4513, 7.4509, 7.4504, 7.4503, 7.4499, 7.4494, 7.4489, 7.4497, 7.4506, 7.4501, 7.4496, 7.4491, 7.4487, 7.4482, 7.4489, 7.4486, 7.4482, 7.449, 7.4487, 7.4483, 7.4479, 7.4474, 7.4472, 7.4457, 7.4465, 7.4473, 7.4481, 7.4478, 7.4474, 7.447, 7.4467, 7.4474, 7.4482, 7.4489, 7.4474, 7.447, 7.4466, 7.4468, 7.4477, 7.4484, 7.4479, 7.4479, 7.4488, 7.4483, 7.4478, 7.4486, 7.4482, 7.4478, 7.4474, 7.4482, 7.4477, 7.4474, 7.4469, 7.4468, 7.4464, 7.445, 7.4447, 7.4444, 7.444, 7.4436, 7.4433, 7.4428, 7.4423, 7.4419, 7.4416, 7.4413, 7.4409, 7.4405, 7.44, 7.4395, 7.439, 7.4398, 7.4397, 7.4394, 7.4391, 7.4404, 7.4399, 7.4383, 7.438, 7.4379, 7.4374, 7.4358, 7.4355, 7.4351, 7.4347, 7.4342, 7.435, 7.4346, 7.4343, 7.4338, 7.4335, 7.4343, 7.4339, 7.4335, 7.4331, 7.4328, 7.4324, 7.4309, 7.4305, 7.4302, 7.4309, 7.4305, 7.4302, 7.4298, 7.4293, 7.4289, 7.4296, 7.4293, 7.4289, 7.4286, 7.4282, 7.4278, 7.4287, 7.4282, 7.4278, 7.4286, 7.4284, 7.4292, 7.4287, 7.4291, 7.4287, 7.4284, 7.4292, 7.4287, 7.4282, 7.4278, 7.4287, 7.4283, 7.4279, 7.4274, 7.428, 7.4277, 7.4273, 7.428, 7.4276, 7.4272, 7.4257, 7.4252, 7.4247, 7.4242, 7.4249, 7.4244, 7.4261, 7.4257, 7.4264, 7.4271, 7.4266, 7.4261, 7.4256, 7.4251, 7.4258, 7.4253, 7.4248, 7.4244, 7.4239, 7.4236, 7.4233, 7.4243, 7.424, 7.4236, 7.4231, 7.4242, 7.4239, 7.4238, 7.4289, 7.4286, 7.4296, 7.4294, 7.4291, 7.4287, 7.4296, 7.4293, 7.4289, 7.4286, 7.4284, 7.4292, 7.4292, 7.429, 7.4302, 7.4313, 7.4309, 7.4313, 7.4309, 7.4305, 7.43, 7.4321, 7.4329, 7.4337, 7.4333, 7.4329, 7.4325, 7.4333, 7.4333, 7.433, 7.4325, 7.4337, 7.4333, 7.4341, 7.4336, 7.4332, 7.4339, 7.4334, 7.4338, 7.4333, 7.4329, 7.4324, 7.4332, 7.4339, 7.4346, 7.4353, 7.4361, 7.4368, 7.4364, 7.4359, 7.4354, 7.4351, 7.4346, 7.4331, 7.4327, 7.4312, 7.4308, 7.4304, 7.43, 7.43, 7.43, 7.4308, 7.4317, 7.4313, 7.4309, 7.4304, 7.4311, 7.4319, 7.4319, 7.4315, 7.431, 7.4295, 7.4302, 7.4302, 7.4298, 7.4294, 7.4298, 7.4293, 7.434, 7.4349, 7.4361, 7.4369, 7.4376, 7.4371, 7.4366, 7.4361, 7.4357, 7.4362, 7.436, 7.4369, 7.4376, 7.4373, 7.4369, 7.4365, 7.4361, 7.4357, 7.4353, 7.4361, 7.4364, 7.4349, 7.4346, 7.4355, 7.4352, 7.436, 7.4355, 7.435, 7.4346, 7.4354, 7.4362, 7.4359, 7.4356, 7.4353, 7.4348, 7.4345, 7.434, 7.4336, 7.4344, 7.4341, 7.436, 7.4355, 7.4352, 7.4361, 7.4356, 7.4363, 7.4359, 7.4368, 7.4365, 7.4362, 7.4369, 7.4364, 7.436, 7.4356, 7.4351, 7.4346, 7.4341, 7.4348, 7.4343, 7.4351, 7.4347, 7.4342, 7.435, 7.4345, 7.4341, 7.4337, 7.4334, 7.4341, 7.4337, 7.4334, 7.433, 7.4338, 7.4345, 7.4343, 7.4339, 7.4335, 7.4331, 7.4327, 7.4323, 7.432, 7.4317, 7.4312, 7.4308, 7.4315, 7.4313, 7.4308, 7.4303, 7.43, 7.4296, 7.4293, 7.429, 7.4287, 7.4284, 7.428, 7.4275, 7.4271, 7.4257, 7.4281, 7.4277, 7.4274, 7.427, 7.4266, 7.4262, 7.4259, 7.4267, 7.4263, 7.4271, 7.4256, 7.4252, 7.4237, 7.4233, 7.4228, 7.4235, 7.4231, 7.423, 7.4227, 7.4236, 7.4245, 7.4241, 7.4237, 7.4234, 7.4269, 7.4265, 7.426, 7.4267, 7.4264, 7.4261, 7.4258, 7.4256, 7.4251, 7.4248, 7.4243, 7.4238, 7.4234, 7.423, 7.4227, 7.4223, 7.4231, 7.4227, 7.4234, 7.423, 7.4228, 7.4224, 7.4219, 7.4226, 7.4233, 7.4231, 7.4227, 7.4224, 7.4219, 7.4215, 7.4222, 7.4229, 7.425, 7.4247, 7.4244, 7.424, 7.4238, 7.4246, 7.4241, 7.4241, 7.4237, 7.4232, 7.4228, 7.4223, 7.4219, 7.4215, 7.4211, 7.4207, 7.4203, 7.421, 7.4215, 7.4211, 7.4218, 7.4226, 7.4234, 7.4242, 7.4237, 7.4232, 7.4228, 7.4225, 7.4221, 7.4218, 7.4215, 7.4212, 7.4197, 7.4182, 7.419, 7.4189, 7.4185, 7.4181, 7.4177, 7.4173, 7.4169, 7.4164, 7.416, 7.4156, 7.4152, 7.4159, 7.4167, 7.4163, 7.4159, 7.4154, 7.4143, 7.4128, 7.4114, 7.4121, 7.4119, 7.4126, 7.4123, 7.4119, 7.4119, 7.4115, 7.4101, 7.4101, 7.4087, 7.4083, 7.4079, 7.4077, 7.4073, 7.4068, 7.4075, 7.4082, 7.4078, 7.4073, 7.4069, 7.4076, 7.4071, 7.4067, 7.4063, 7.4059, 7.4055, 7.4062, 7.4059, 7.4055, 7.4051, 7.4049, 7.4046, 7.4042, 7.4037, 7.4044, 7.4041, 7.4037, 7.4035, 7.4036, 7.4043, 7.4038, 7.4034, 7.4031, 7.4027, 7.4023, 7.4019, 7.4026, 7.4052, 7.4048, 7.4045, 7.4041, 7.4038, 7.4035, 7.4032, 7.4028, 7.4035, 7.4031, 7.4032, 7.403, 7.4026, 7.4022, 7.4018, 7.4014, 7.401, 7.4018, 7.4014, 7.4009, 7.4005, 7.4001, 7.3998, 7.3995, 7.3991, 7.3986, 7.3983, 7.398, 7.3976, 7.3973, 7.3959, 7.3955, 7.3962, 7.396, 7.3967, 7.3974, 7.397, 7.3977, 7.3972, 7.3968, 7.3977, 7.3973, 7.3975, 7.3972, 7.3969, 7.3975, 7.3971, 7.3967, 7.3963, 7.3961, 7.3958, 7.3954, 7.395, 7.3937, 7.3936, 7.396, 7.3967, 7.3988, 7.3995, 7.4009, 7.4005, 7.4001, 7.3997, 7.3994, 7.3994, 7.3991, 7.3977, 7.3986, 7.3995, 7.3992, 7.399, 7.3988, 7.3985, 7.3981, 7.3978, 7.3976, 7.3984, 7.398, 7.3976, 7.3984, 7.3981, 7.3979, 7.3975, 7.3971, 7.3968, 7.397, 7.3965, 7.3972, 7.3968, 7.3964, 7.396, 7.3957, 7.3955, 7.3951, 7.3947, 7.3943, 7.394, 7.3961, 7.3958, 7.3955, 7.3953, 7.395, 7.3946, 7.3943, 7.394, 7.3936, 7.3943, 7.3953, 7.3949, 7.3957, 7.3953, 7.396, 7.3968, 7.3976, 7.3972, 7.3968, 7.3966, 7.3963, 7.3959, 7.3957, 7.3955, 7.3951, 7.3959, 7.3967, 7.3963, 7.3959, 7.3955, 7.3962, 7.3958, 7.3955, 7.3962, 7.3969, 7.3965, 7.3961, 7.3957, 7.3964, 7.3971, 7.3969, 7.3965, 7.3973, 7.3969, 7.3998, 7.4006, 7.4002, 7.4, 7.4006, 7.4013, 7.4011, 7.4008, 7.4004, 7.4, 7.4007, 7.4003, 7.3999, 7.3995, 7.4002, 7.4047, 7.4043, 7.404, 7.4036, 7.4043, 7.4039, 7.4046, 7.4044, 7.404, 7.4039, 7.4036, 7.4032, 7.4028, 7.4024, 7.4031, 7.4027, 7.4035, 7.4033, 7.4033, 7.404, 7.4036, 7.4058, 7.4054, 7.4053, 7.405, 7.4057, 7.4053, 7.4071, 7.4068, 7.4075, 7.4082, 7.408, 7.4076, 7.4072, 7.407, 7.4066, 7.4063, 7.407, 7.4068, 7.4069, 7.4065, 7.4061, 7.4057, 7.4053, 7.4051, 7.4048, 7.4056, 7.4052, 7.4049, 7.4049, 7.4045, 7.4041, 7.4049, 7.4045, 7.4041, 7.4038, 7.4034, 7.4031, 7.4028, 7.4034, 7.4031, 7.4028, 7.4035, 7.4032, 7.4028, 7.4034, 7.403, 7.4027, 7.4024, 7.402, 7.4017, 7.4013, 7.402, 7.4027, 7.4023, 7.403, 7.4027, 7.4025, 7.4021, 7.4017, 7.4014, 7.401, 7.4006, 7.4003, 7.3999, 7.3997, 7.4004, 7.4002, 7.3998, 7.3994, 7.3991, 7.3997, 7.4004, 7.4, 7.4008, 7.4005, 7.4001, 7.4007, 7.3994, 7.4001, 7.3997, 7.3993, 7.3989, 7.3997, 7.3994, 7.3991, 7.3987, 7.3984, 7.398, 7.3986, 7.3983, 7.4016, 7.4012, 7.4009, 7.4006, 7.4002, 7.3998, 7.4005, 7.4017, 7.4014, 7.401, 7.4018, 7.4014, 7.402, 7.4017, 7.4014, 7.4011, 7.401, 7.4016, 7.4014, 7.4021, 7.4028, 7.4036, 7.4043, 7.4039, 7.4035, 7.4031, 7.4038, 7.4035, 7.4031, 7.403, 7.4026, 7.4032, 7.4028, 7.4025, 7.4022, 7.4018, 7.4014, 7.401, 7.4006, 7.4002, 7.3999, 7.3996, 7.3992, 7.399, 7.3998, 7.3994, 7.3991, 7.3994, 7.399, 7.3987, 7.3974, 7.397, 7.3968, 7.3976, 7.3978, 7.3985, 7.3981, 7.3977, 7.3976, 7.3974, 7.3981, 7.3967, 7.3964, 7.3977, 7.3973, 7.397, 7.3966, 7.3973, 7.3981, 7.3977, 7.3973, 7.3985, 7.3981, 7.4, 7.3996, 7.3992, 7.3981, 7.3978, 7.3989, 7.3985, 7.4005, 7.4001, 7.4002, 7.3999, 7.4002, 7.401, 7.4019, 7.4015, 7.4061, 7.4058, 7.406, 7.4071, 7.4093, 7.41, 7.4096, 7.4102, 7.4099, 7.4095, 7.4092, 7.4089, 7.4086, 7.4082, 7.4078, 7.4074, 7.407, 7.4066, 7.4063, 7.4059, 7.4055, 7.4051, 7.4048, 7.4044, 7.405, 7.4046, 7.4054, 7.4051, 7.4047, 7.4053, 7.4049, 7.4046, 7.4033, 7.403, 7.4028, 7.4034, 7.4053, 7.405, 7.4046, 7.4042, 7.404, 7.4037, 7.4033, 7.4039, 7.4046, 7.4055, 7.4052, 7.4048, 7.4055, 7.4052, 7.4048, 7.4044, 7.4041, 7.4047, 7.4044, 7.4051, 7.4058, 7.4054, 7.4064, 7.4061, 7.4057, 7.4064, 7.406, 7.4066, 7.4062, 7.406, 7.4056, 7.4052, 7.4048, 7.4045, 7.4041, 7.4047, 7.4045, 7.4059, 7.4055, 7.4052, 7.4048, 7.4044, 7.404, 7.4036, 7.4034, 7.403, 7.4026, 7.4023, 7.4021, 7.4019, 7.4016, 7.4012, 7.4018, 7.4014, 7.401, 7.4006, 7.4002, 7.4009, 7.4016, 7.4023, 7.402, 7.4008, 7.4014, 7.4011, 7.4007, 7.4004, 7.4001, 7.401, 7.4017, 7.4016, 7.4012, 7.4019, 7.4019, 7.4025, 7.4022, 7.4018, 7.4024, 7.403, 7.4026, 7.4033, 7.4029, 7.4036, 7.4023, 7.402, 7.4016, 7.4012, 7.4018, 7.4024, 7.4031, 7.4027, 7.4023, 7.402, 7.4016, 7.4012, 7.4009, 7.4017, 7.4024, 7.4021, 7.403, 7.4049, 7.4047, 7.4046, 7.4054, 7.4061, 7.406, 7.4058, 7.4067, 7.4064, 7.4071, 7.4069, 7.4075, 7.4062, 7.4058, 7.4074, 7.407, 7.4067, 7.4073, 7.4069, 7.4066, 7.4064, 7.4061, 7.4069, 7.4056, 7.4064, 7.4061, 7.4057, 7.4065, 7.4062, 7.407, 7.4076, 7.4074, 7.407, 7.4091, 7.4087, 7.4084, 7.408, 7.4077, 7.4073, 7.4069, 7.4077, 7.4073, 7.4069, 7.4066, 7.4063, 7.406, 7.406, 7.4067, 7.4064, 7.406, 7.4057, 7.4054, 7.4051, 7.4047, 7.4045, 7.4043, 7.404, 7.4036, 7.4033, 7.4029, 7.4035, 7.404, 7.4046, 7.4042, 7.404, 7.4036, 7.4032, 7.4029, 7.4026, 7.4024, 7.403, 7.4028, 7.4035, 7.4031, 7.4027, 7.4023, 7.402, 7.4016, 7.4014, 7.4026, 7.4033, 7.403, 7.4028, 7.4025, 7.4021, 7.4008, 7.4015, 7.4012, 7.4019, 7.4026, 7.4025, 7.4021, 7.4019, 7.4015, 7.4023, 7.4023, 7.402, 7.4017, 7.4013, 7.4001, 7.3999, 7.4006, 7.4016, 7.4022, 7.4033, 7.4029, 7.4025, 7.4022, 7.4029, 7.4035, 7.4031, 7.4029, 7.4025, 7.4031, 7.4038, 7.4035, 7.4032, 7.4029, 7.4046, 7.4043, 7.404, 7.4037, 7.4033, 7.403, 7.4029, 7.4025, 7.4041, 7.4047, 7.4044, 7.4041, 7.4038, 7.4036, 7.4034, 7.403, 7.4026, 7.4023, 7.402, 7.4027, 7.4025, 7.4034, 7.4031, 7.4027, 7.4024, 7.4022, 7.4019, 7.4016, 7.4013, 7.4011, 7.4008, 7.4016, 7.4022, 7.4019, 7.4016, 7.4014, 7.401, 7.4006, 7.4003, 7.4009, 7.4005, 7.4001, 7.4006, 7.4012, 7.401, 7.4007, 7.4013, 7.401, 7.4016, 7.4013, 7.401, 7.4007, 7.4003, 7.4, 7.4006, 7.4002, 7.3999, 7.3995, 7.3992, 7.3988, 7.3985, 7.3981, 7.3988, 7.3985, 7.3984, 7.3981, 7.3978, 7.3985, 7.3983, 7.398, 7.3977, 7.3984, 7.3986, 7.3983, 7.398, 7.3977, 7.3983, 7.3979, 7.3975, 7.3981, 7.3979, 7.3975, 7.3973, 7.397, 7.3969, 7.3966, 7.3963, 7.3959, 7.3955, 7.3952, 7.395, 7.3946, 7.3943, 7.3939, 7.3937, 7.3934, 7.393, 7.3929, 7.3926, 7.3922, 7.3919, 7.3925, 7.3922, 7.3928, 7.3934, 7.393, 7.3927, 7.3923, 7.3919, 7.3916, 7.3912, 7.3918, 7.3915, 7.3921, 7.3917, 7.3914, 7.3912, 7.391, 7.3926, 7.3923, 7.3931, 7.394, 7.3938, 7.3936, 7.3942, 7.3948, 7.3945, 7.3942, 7.395, 7.3946, 7.3953, 7.3951, 7.3948, 7.395, 7.3946, 7.3952, 7.3949, 7.3946, 7.3965, 7.3963, 7.3962, 7.3959, 7.3956, 7.3962, 7.3959, 7.3956, 7.3944, 7.394, 7.3937, 7.3934, 7.394, 7.3939, 7.3945, 7.3943, 7.3939, 7.3935, 7.3932, 7.393, 7.3927, 7.3924, 7.3921, 7.3918, 7.3916, 7.3912, 7.3909, 7.3906, 7.3903, 7.3901, 7.3899, 7.3895, 7.3894, 7.389, 7.3887, 7.3883, 7.3879, 7.3876, 7.3872, 7.3869, 7.3867, 7.3863, 7.3861, 7.3859, 7.3856, 7.3854, 7.3842, 7.3839, 7.3835, 7.3832, 7.3829, 7.3836, 7.3844, 7.3887, 7.3884, 7.3881, 7.3879, 7.3886, 7.3882, 7.3882, 7.3878, 7.3875, 7.3871, 7.3867, 7.3865, 7.3862, 7.3859, 7.3857, 7.3845, 7.3841, 7.3837, 7.3843, 7.3849, 7.3847, 7.3844, 7.3884, 7.388, 7.3893, 7.3909, 7.3906, 7.3904, 7.3901, 7.3898, 7.3894, 7.3901, 7.3897, 7.3893, 7.3889, 7.3887, 7.3902, 7.3899, 7.3902, 7.3898, 7.3899, 7.3898, 7.3888, 7.3886, 7.3892, 7.3891, 7.3889, 7.3879, 7.3876, 7.3873, 7.3869, 7.3867, 7.3864, 7.386, 7.3858, 7.3846, 7.3853, 7.3849, 7.3846, 7.3843, 7.3841, 7.384, 7.3846, 7.3862, 7.3869, 7.3865, 7.3861, 7.3857, 7.3854, 7.3851, 7.3849, 7.3855, 7.3852, 7.385, 7.3847, 7.3843, 7.384, 7.3846, 7.3853, 7.387, 7.3868, 7.3864, 7.3861, 7.3859, 7.3856, 7.3862, 7.3868, 7.3864, 7.387, 7.3881, 7.3878, 7.3875, 7.3872, 7.3869, 7.3866, 7.3866, 7.3862, 7.3859, 7.3855, 7.3852, 7.3849, 7.3857, 7.3854, 7.385, 7.3855, 7.3862, 7.3858, 7.3854, 7.3851, 7.3848, 7.3846, 7.3843, 7.384, 7.3846, 7.3843, 7.384, 7.3838, 7.3836, 7.3832, 7.3831, 7.3837, 7.3839, 7.3846, 7.3843, 7.384, 7.3836, 7.3824, 7.3813, 7.3801, 7.3798, 7.3795, 7.3792, 7.3801, 7.3797, 7.3794, 7.3799, 7.3799, 7.3797, 7.3803, 7.3809, 7.3816, 7.3812, 7.3809, 7.3806, 7.3812, 7.3809, 7.3806, 7.3794, 7.3792, 7.3789, 7.3785, 7.3783, 7.378, 7.3776, 7.3782, 7.378, 7.3777, 7.3773, 7.3774, 7.3771, 7.377, 7.3767, 7.3776, 7.3774, 7.3772, 7.3769, 7.3767, 7.3773, 7.3769, 7.3775, 7.3781, 7.3778, 7.3784, 7.3792, 7.3789, 7.3786, 7.3782, 7.3779, 7.3775, 7.3783, 7.3781, 7.3777, 7.3773, 7.3771, 7.3768, 7.3767, 7.3765, 7.3771, 7.3768, 7.3766, 7.3762, 7.3758, 7.3755, 7.3751, 7.3756, 7.3753, 7.375, 7.3747, 7.3753, 7.375, 7.3746, 7.3735, 7.3732, 7.372, 7.3717, 7.3715, 7.3717, 7.3714, 7.3711, 7.3708, 7.3704, 7.371, 7.3709, 7.3705, 7.3703, 7.3709, 7.3715, 7.374, 7.3737, 7.3735, 7.3732, 7.3729, 7.3726, 7.3722, 7.372, 7.3726, 7.3732, 7.3738, 7.3744, 7.3742, 7.3739, 7.3736, 7.3742, 7.3739, 7.3736, 7.3733, 7.373, 7.3726, 7.3723, 7.3729, 7.3736, 7.3733, 7.373, 7.3727, 7.3724, 7.3721, 7.3717, 7.3724, 7.373, 7.3735, 7.3731, 7.3729, 7.3727, 7.3733, 7.373, 7.3735, 7.3732, 7.373, 7.3736, 7.3733, 7.3739, 7.3736, 7.3732, 7.3738, 7.3744, 7.3742, 7.3739, 7.3736, 7.3733, 7.3739, 7.3745, 7.3751, 7.3747, 7.3744, 7.3749, 7.3746, 7.3742, 7.3739, 7.3736, 7.3732, 7.3729, 7.3726, 7.3723, 7.3726, 7.3723, 7.373, 7.3735, 7.3741, 7.3738, 7.3735, 7.3732, 7.373, 7.3726, 7.3732, 7.3738, 7.3735, 7.3732, 7.3738, 7.3735, 7.3733, 7.3739, 7.3735, 7.3741, 7.3738, 7.3749, 7.3746, 7.3743, 7.374, 7.3745, 7.3743, 7.3739, 7.3738, 7.3737, 7.3743, 7.374, 7.3737, 7.3734, 7.3731, 7.3728, 7.3725, 7.3721, 7.3718, 7.3715, 7.3715, 7.372, 7.3717, 7.3723, 7.3719, 7.3717, 7.3713, 7.371, 7.3706, 7.3702, 7.37, 7.3697, 7.3696, 7.3693, 7.3689, 7.3695, 7.3693, 7.3699, 7.3705, 7.3701, 7.3697, 7.3693, 7.3689, 7.3686, 7.3683, 7.3681, 7.3687, 7.3684, 7.3681, 7.3678, 7.3677, 7.3674, 7.3673, 7.367, 7.3666, 7.3663, 7.366, 7.3657, 7.3655, 7.3655, 7.3652, 7.3649, 7.3647, 7.3653, 7.365, 7.3647, 7.3645, 7.3642, 7.3651, 7.3642, 7.3639, 7.3636, 7.3633, 7.3633, 7.363, 7.3627, 7.3633, 7.3624, 7.3651, 7.3648, 7.3646, 7.3643, 7.364, 7.3638, 7.3645, 7.3657, 7.3655, 7.366, 7.3657, 7.3654, 7.3651, 7.3648, 7.3646, 7.3643, 7.3641, 7.3665, 7.3665, 7.3662, 7.3659, 7.3656, 7.3654, 7.3651, 7.3648, 7.3654, 7.3653, 7.3651, 7.365, 7.3646, 7.3644, 7.3641, 7.3638, 7.3635, 7.3634, 7.3632, 7.3638, 7.3635, 7.3633, 7.3631, 7.3639, 7.3636, 7.3633, 7.363, 7.3635, 7.3642, 7.3639, 7.3636, 7.3633, 7.363, 7.3627, 7.3637, 7.3634, 7.364, 7.3645, 7.3651, 7.3647, 7.3653, 7.3655, 7.3652, 7.3649, 7.3646, 7.3643, 7.3641, 7.3638, 7.3627, 7.3625, 7.3622, 7.362, 7.3618, 7.3624, 7.363, 7.3644, 7.3641, 7.3638, 7.3644, 7.3641, 7.3638, 7.3636, 7.3634, 7.3631, 7.3628, 7.3634, 7.364, 7.3646, 7.3643, 7.3642, 7.364, 7.3639, 7.3637, 7.3634, 7.3639, 7.3645, 7.3651, 7.3649, 7.3655, 7.3652, 7.3649, 7.3646, 7.3643, 7.364, 7.3638, 7.3636, 7.3634, 7.364, 7.3637, 7.3634, 7.3631, 7.363, 7.3628, 7.3634, 7.3632, 7.3637, 7.3634, 7.3631, 7.3629, 7.3628, 7.3625, 7.3631, 7.3628, 7.3626, 7.3624, 7.3621, 7.3619, 7.3618, 7.3624, 7.3622, 7.362, 7.3617, 7.3614, 7.3603, 7.36, 7.3598, 7.3588, 7.3594, 7.3591, 7.3588, 7.3586, 7.3583, 7.358, 7.3589, 7.3597, 7.3594, 7.3591, 7.3588, 7.3604, 7.3593, 7.359, 7.3595, 7.3618, 7.3633, 7.363, 7.3627, 7.3624, 7.3613, 7.3604, 7.3614, 7.3612, 7.3612, 7.362, 7.3617, 7.363, 7.3636, 7.3634, 7.3653, 7.365, 7.3647, 7.3671, 7.3672, 7.3669, 7.3671, 7.3676, 7.3673, 7.3679, 7.3676, 7.3672, 7.3677, 7.3676, 7.3682, 7.3679, 7.3677, 7.3683, 7.368, 7.3686, 7.3683, 7.3688, 7.3677, 7.3674, 7.3671, 7.3668, 7.3676, 7.3674, 7.3671, 7.3668, 7.3665, 7.3668, 7.3667, 7.3695, 7.3692, 7.3698, 7.3695, 7.3692, 7.3689, 7.3689, 7.3707, 7.3704, 7.3701, 7.37, 7.3706, 7.3705, 7.3702, 7.37, 7.3707, 7.3704, 7.3703, 7.3701, 7.369, 7.3679, 7.3677, 7.3679, 7.3676, 7.3673, 7.367, 7.3668, 7.3665, 7.3671, 7.3668, 7.3668, 7.3665, 7.3682, 7.3688, 7.3685, 7.3692, 7.3698, 7.3695, 7.3693, 7.369, 7.3697, 7.3694, 7.3701, 7.3698, 7.3695, 7.3693, 7.369, 7.3689, 7.3686, 7.3684, 7.3682, 7.3679, 7.3676, 7.3682, 7.3686, 7.3695, 7.3701, 7.3699, 7.3696, 7.3693, 7.3691, 7.3695, 7.3692, 7.3691, 7.369, 7.3696, 7.3693, 7.369, 7.3679, 7.3684, 7.3681, 7.3678, 7.3676, 7.3673, 7.367, 7.3667, 7.3673, 7.367, 7.3686, 7.3722, 7.372, 7.3726, 7.3731, 7.3737, 7.3734, 7.3731, 7.3728, 7.3734, 7.3732, 7.3729, 7.3726, 7.3724, 7.3722, 7.3719, 7.3716, 7.3714, 7.3722, 7.372, 7.3718, 7.3725, 7.3731, 7.3728, 7.3727, 7.3724, 7.3721, 7.3718, 7.3724, 7.373, 7.3728, 7.3742, 7.374, 7.3738, 7.3736, 7.3733, 7.3735, 7.3732, 7.3729, 7.3726, 7.3732, 7.3729, 7.3734, 7.3734, 7.3732, 7.3747, 7.3753, 7.3777, 7.3775, 7.3781, 7.3779, 7.3794, 7.3792, 7.3792, 7.379, 7.3787, 7.381, 7.3808, 7.3823, 7.382, 7.3817, 7.3814, 7.3824, 7.3821, 7.3819, 7.3816, 7.3813, 7.3811, 7.3808, 7.3806, 7.3803, 7.3794, 7.38, 7.3798, 7.3795, 7.3802, 7.3799, 7.3796, 7.3793, 7.3791, 7.3788, 7.3779, 7.377, 7.3767, 7.3765, 7.3762, 7.3751, 7.3758, 7.3756, 7.3754, 7.376, 7.3757, 7.3755, 7.3752, 7.3749, 7.3754, 7.3751, 7.3749, 7.375, 7.3747, 7.3744, 7.3742, 7.3748, 7.3753, 7.375, 7.3756, 7.3762, 7.3765, 7.377, 7.3768, 7.3766, 7.3763, 7.376, 7.3765, 7.3772, 7.3761, 7.3759, 7.3758, 7.3756, 7.3762, 7.3776, 7.3782, 7.378, 7.3778, 7.3775, 7.3773, 7.377, 7.3767, 7.3757, 7.377, 7.3767, 7.3764, 7.3761, 7.3759, 7.3756, 7.3753, 7.375, 7.3748, 7.3754, 7.3752, 7.3749, 7.3747, 7.3744, 7.3733, 7.373, 7.3728, 7.3725, 7.3723, 7.3728, 7.3725, 7.3722, 7.3719, 7.3741, 7.3747, 7.3753, 7.375, 7.3747, 7.3752, 7.3749, 7.3738, 7.3735, 7.3732, 7.3721, 7.3718, 7.3715, 7.3712, 7.3709, 7.3706, 7.3703, 7.3708, 7.3705, 7.3702, 7.3699, 7.3696, 7.3693, 7.3691, 7.3689, 7.3687, 7.3684, 7.3681, 7.3678, 7.3675, 7.3672, 7.3669, 7.3674, 7.3671, 7.3685, 7.3683, 7.368, 7.3678, 7.3675, 7.3672, 7.367, 7.3668, 7.3665, 7.367, 7.3667, 7.3665, 7.3662, 7.3685, 7.3682, 7.3688, 7.3703, 7.3701, 7.3699, 7.3689, 7.3687, 7.3684, 7.369, 7.3687, 7.3692, 7.369, 7.3688, 7.3686, 7.3683, 7.3688, 7.3686, 7.3683, 7.3689, 7.3686, 7.3684, 7.3673, 7.367, 7.3694, 7.3708, 7.3706, 7.3704, 7.3718, 7.3715, 7.3712, 7.3718, 7.3715, 7.3771, 7.3785, 7.379, 7.379, 7.3804, 7.3809, 7.3806, 7.3804, 7.3802, 7.3799, 7.3796, 7.3794, 7.3791, 7.3788, 7.3785, 7.3783, 7.378, 7.3777, 7.3782, 7.3779, 7.3776, 7.3773, 7.377, 7.3801, 7.3848, 7.3854, 7.386, 7.3908, 7.3905, 7.3902, 7.3907, 7.3912, 7.3917, 7.3914, 7.3927, 7.3932, 7.3929, 7.3934, 7.3939, 7.3944, 7.3941, 7.3948, 7.3954, 7.3952, 7.3949, 7.3946, 7.3951, 7.3957, 7.3947, 7.3936, 7.3942, 7.3956, 7.3978, 7.3975, 7.3973, 7.3971, 7.3968, 7.3966, 7.3964, 7.3969, 7.3966, 7.3963, 7.3961, 7.3958, 7.3963, 7.3968, 7.3965, 7.3962, 7.3987, 7.3985, 7.399, 7.3996, 7.4027, 7.4024, 7.4021, 7.4026, 7.4041, 7.4039, 7.4029, 7.4034, 7.4023, 7.4028, 7.4025, 7.4024, 7.4021, 7.4018, 7.4023, 7.4028, 7.4025, 7.403, 7.4035, 7.404, 7.4038, 7.4051, 7.4048, 7.4045, 7.4042, 7.4031, 7.4028, 7.4033, 7.403, 7.4027, 7.4032, 7.403, 7.4035, 7.404, 7.4037, 7.4034, 7.4037, 7.4034, 7.4032, 7.4029, 7.4027, 7.4024, 7.4022, 7.4027, 7.4024, 7.4038, 7.4028, 7.4025, 7.4022, 7.4041, 7.4054, 7.4056, 7.4054, 7.4078, 7.4089, 7.4086, 7.4083, 7.408, 7.4092, 7.4097, 7.4094, 7.4091, 7.4089, 7.4086, 7.4083, 7.408, 7.4078, 7.4075, 7.4065, 7.4071, 7.4076, 7.4074, 7.4072, 7.4069, 7.4074, 7.4071, 7.4078, 7.4076, 7.4073, 7.4078, 7.4075, 7.4073, 7.4078, 7.4079, 7.4076, 7.4073, 7.407, 7.4067, 7.4064, 7.4078, 7.4087, 7.4084, 7.4089, 7.4086, 7.4084, 7.4089, 7.4081, 7.409, 7.4095, 7.4092, 7.4122, 7.4119, 7.4116, 7.4113, 7.4118, 7.4123, 7.412, 7.4126, 7.4139, 7.4136, 7.4133, 7.4123, 7.4136, 7.4134, 7.4132, 7.4129, 7.4134, 7.4139, 7.4144, 7.4141, 7.4146, 7.4151, 7.4148, 7.4153, 7.415, 7.4148, 7.4145, 7.4143, 7.4141, 7.4138, 7.4135, 7.414, 7.4137, 7.4142, 7.4147, 7.4152, 7.4149, 7.4162, 7.4168, 7.4165, 7.4178, 7.4176, 7.4181, 7.4187, 7.4192, 7.4189, 7.4194, 7.4191, 7.4188, 7.4185, 7.4182, 7.4187, 7.4192, 7.419, 7.4187, 7.4192, 7.4205, 7.4202, 7.42, 7.4198, 7.4195, 7.4201, 7.4199, 7.4197, 7.4203, 7.4201, 7.4191, 7.4195, 7.42, 7.4205, 7.4223, 7.4228, 7.4225, 7.423, 7.4237, 7.4282, 7.4279, 7.4276, 7.4288, 7.4285, 7.4299, 7.4296, 7.43, 7.4309, 7.4306, 7.4304, 7.4309, 7.4314, 7.4311, 7.4308, 7.4313, 7.4318, 7.4318, 7.4318, 7.4316, 7.4314, 7.4311, 7.4308, 7.4314, 7.4319, 7.4324, 7.4321, 7.4318, 7.4315, 7.4312, 7.431, 7.4315, 7.432, 7.4317, 7.4314, 7.4325, 7.4322, 7.4327, 7.4324, 7.4329, 7.4329, 7.4334, 7.4332, 7.4337, 7.4342, 7.4347, 7.4344, 7.4349, 7.4346, 7.4344, 7.4349, 7.4346, 7.4351, 7.4348, 7.4345, 7.4342, 7.434, 7.4345, 7.4343, 7.4348, 7.4345, 7.435, 7.4347, 7.4344, 7.4365, 7.4355, 7.4352, 7.4357, 7.4362, 7.4359, 7.4364, 7.4362, 7.436, 7.4365, 7.437, 7.436, 7.4357, 7.4354], '192.168.122.114': [5.3391, 5.7538, 5.5996, 5.6837, 5.8445, 6.6737, 7.281, 7.0472, 7.464, 7.3572, 7.1819, 7.0992, 7.0021, 6.9575, 6.913, 6.8256, 6.4589, 6.4168, 6.3648, 6.3172, 6.2977, 6.2596, 6.225, 6.2197, 6.1861, 6.1709, 6.1642, 6.1543, 6.1296, 6.6233, 6.5972, 6.5587, 6.6836, 6.5038, 6.4666, 6.297, 6.4174, 6.394, 6.5132, 6.4849, 6.4772, 6.4592, 6.4411, 6.4179, 6.3047, 6.2842, 6.2649, 6.2584, 6.2535, 6.2342, 6.219, 6.2069, 6.3019, 6.3935, 6.4785, 6.4794, 6.4679, 6.4579, 6.4445, 6.4404, 6.4345, 6.4219, 6.4096, 6.408, 6.4886, 6.4711, 6.5394, 6.6071, 6.6724, 6.5826, 6.5755, 6.5694, 6.5581, 6.6111, 6.5964, 6.5813, 6.5716, 6.5569, 6.7488, 6.747, 6.7336, 6.7261, 6.7096, 6.7077, 7.2932, 7.2701, 7.2514, 7.236, 7.2148, 7.1957, 7.176, 7.2219, 7.201, 7.1847, 7.1645, 7.1444, 7.1252, 7.2912, 7.2245, 7.2077, 7.264, 7.2515, 7.2397, 7.2725, 7.2613, 7.3629, 7.3442, 7.3752, 7.3607, 7.3468, 7.3766, 7.365, 7.3464, 7.337, 7.3201, 7.3518, 7.339, 7.3237, 7.3536, 7.3371, 7.3215, 7.3481, 7.3325, 7.3165, 7.3441, 7.2898, 7.2822, 7.2709, 7.295, 7.2805, 7.2704, 7.2565, 7.2423, 7.2416, 7.2279, 7.2135, 7.2011, 7.1913, 7.179, 7.2061, 7.2357, 7.2256, 7.2302, 7.2214, 7.1764, 7.1671, 7.1604, 7.148, 7.1374, 7.1277, 7.1181, 7.1112, 7.1055, 7.1341, 7.1611, 7.1554, 7.1473, 7.1669, 7.1597, 7.1514, 7.1424, 7.1352, 7.1572, 7.1799, 7.2117, 7.2037, 7.2233, 7.2796, 7.2982, 7.287, 7.3075, 7.2989, 7.2936, 7.2847, 7.3032, 7.2947, 7.3455, 7.3871, 7.3761, 7.395, 7.4106, 7.4979, 7.4945, 7.5138, 7.5054, 7.5212, 7.5401, 7.5284, 7.5205, 7.5244, 7.5135, 7.5571, 7.5494, 7.5381, 7.5272, 7.5428, 7.5367, 7.5616, 7.5549, 7.5443, 7.5866, 7.5752, 7.5654, 7.5902, 7.5807, 7.573, 7.57, 7.5605, 7.5763, 7.5664, 7.5563, 7.5719, 7.5876, 7.5799, 7.5701, 7.5622, 7.5773, 7.5683, 7.5834, 7.6003, 7.6011, 7.5904, 7.5803, 7.5958, 7.586, 7.6251, 7.6393, 7.6538, 7.6439, 7.6364, 7.627, 7.6177, 7.6087, 7.5986, 7.6126, 7.6254, 7.6161, 7.6081, 7.6202, 7.6144, 7.6066, 7.6009, 7.617, 7.6084, 7.6016, 7.5935, 7.5994, 7.5915, 7.6993, 7.6962, 7.7509, 7.7436, 7.7621, 7.7542, 7.7778, 7.7747, 7.7859, 7.7996, 7.7916, 7.7818, 7.7963, 7.7893, 7.7835, 7.7747, 7.7666, 7.7795, 7.7729, 7.7678, 7.7612, 7.7518, 7.774, 7.7676, 7.7591, 7.7512, 7.744, 7.7364, 7.7307, 7.7238, 7.7193, 7.7135, 7.7083, 7.7208, 7.7154, 7.7082, 7.7179, 7.7101, 7.7248, 7.7195, 7.7272, 7.7384, 7.7302, 7.7231, 7.7352, 7.7376, 7.7329, 7.7432, 7.7359, 7.7452, 7.7393, 7.7322, 7.7253, 7.7376, 7.7301, 7.7267, 7.7073, 7.704, 7.7152, 7.7114, 7.7051, 7.6991, 7.6944, 7.7097, 7.7028, 7.6962, 7.696, 7.6897, 7.6834, 7.6781, 7.672, 7.684, 7.677, 7.6859, 7.6791, 7.6717, 7.6655, 7.6587, 7.6519, 7.6452, 7.6556, 7.6497, 7.643, 7.6367, 7.6298, 7.6269, 7.6231, 7.6168, 7.6275, 7.6263, 7.643, 7.6365, 7.635, 7.6308, 7.6399, 7.6366, 7.657, 7.6518, 7.6455, 7.64, 7.65, 7.6451, 7.6407, 7.6356, 7.6288, 7.6224, 7.616, 7.6098, 7.6035, 7.5985, 7.5939, 7.5897, 7.5844, 7.5785, 7.5872, 7.581, 7.5901, 7.5854, 7.5794, 7.5956, 7.5897, 7.5869, 7.5835, 7.5776, 7.5718, 7.5686, 7.5629, 7.5585, 7.5529, 7.5611, 7.5551, 7.5649, 7.5605, 7.5549, 7.5492, 7.5451, 7.5391, 7.5466, 7.5291, 7.5506, 7.5478, 7.5427, 7.5512, 7.5598, 7.5558, 7.5382, 7.5337, 7.5279, 7.5233, 7.5181, 7.5138, 7.5213, 7.5295, 7.5249, 7.5214, 7.5157, 7.5155, 7.5226, 7.5178, 7.5257, 7.5212, 7.5187, 7.5135, 7.5091, 7.5067, 7.5027, 7.4995, 7.4954, 7.5296, 7.527, 7.5224, 7.519, 7.514, 7.5113, 7.51, 7.4939, 7.4774, 7.4727, 7.4687, 7.4662, 7.4732, 7.468, 7.4639, 7.4592, 7.4539, 7.4616, 7.4568, 7.4759, 7.4718, 7.4678, 7.4629, 7.4705, 7.4784, 7.4744, 7.4699, 7.4655, 7.4608, 7.4561, 7.4513, 7.4469, 7.4424, 7.4376, 7.4452, 7.4522, 7.4597, 7.4564, 7.4534, 7.4488, 7.444, 7.4413, 7.4388, 7.4657, 7.462, 7.4586, 7.4666, 7.4623, 7.4698, 7.4673, 7.4741, 7.471, 7.4665, 7.4637, 7.4613, 7.4806, 7.4762, 7.483, 7.479, 7.4763, 7.4879, 7.4834, 7.4835, 7.472, 7.4689, 7.4648, 7.4722, 7.468, 7.4748, 7.4712, 7.4669, 7.4743, 7.471, 7.4669, 7.4626, 7.4696, 7.4687, 7.4769, 7.4731, 7.4809, 7.4766, 7.4741, 7.4706, 7.4663, 7.4733, 7.4689, 7.4681, 7.4549, 7.4629, 7.4595, 7.4782, 7.4746, 7.5041, 7.5, 7.4979, 7.4947, 7.5194, 7.5168, 7.5532, 7.5487, 7.5464, 7.542, 7.5379, 7.535, 7.5519, 7.5586, 7.5645, 7.561, 7.5573, 7.5664, 7.5634, 7.5643, 7.5604, 7.576, 7.5926, 7.5793, 7.5753, 7.5814, 7.5774, 7.5827, 7.5784, 7.5744, 7.5806, 7.5871, 7.583, 7.5796, 7.5816, 7.5787, 7.5749, 7.573, 7.5688, 7.5648, 7.5717, 7.5683, 7.5647, 7.5712, 7.5699, 7.5659, 7.5628, 7.5593, 7.5556, 7.5517, 7.548, 7.5363, 7.5241, 7.5236, 7.5294, 7.5266, 7.5231, 7.5305, 7.5266, 7.5234, 7.5203, 7.5104, 7.5161, 7.5128, 7.5088, 7.5062, 7.5066, 7.5131, 7.5185, 7.5156, 7.5212, 7.5175, 7.5139, 7.51, 7.5067, 7.5035, 7.5008, 7.4979, 7.4945, 7.4911, 7.4876, 7.4933, 7.4985, 7.4949, 7.4834, 7.4815, 7.4785, 7.478, 7.4744, 7.4802, 7.486, 7.4826, 7.4793, 7.4759, 7.4724, 7.478, 7.4762, 7.4734, 7.4708, 7.4678, 7.4664, 7.472, 7.4771, 7.4827, 7.4799, 7.4773, 7.4828, 7.4794, 7.4759, 7.5017, 7.4983, 7.5035, 7.5, 7.5054, 7.5138, 7.5103, 7.5081, 7.5056, 7.5022, 7.4996, 7.496, 7.5019, 7.5155, 7.5119, 7.5093, 7.5093, 7.5174, 7.5146, 7.5124, 7.5098, 7.5069, 7.5246, 7.5338, 7.5385, 7.544, 7.5415, 7.5558, 7.5616, 7.5595, 7.5562, 7.5532, 7.5509, 7.5479, 7.5446, 7.5496, 7.5468, 7.5439, 7.541, 7.5379, 7.5353, 7.5412, 7.5467, 7.5436, 7.5439, 7.542, 7.5483, 7.5452, 7.5626, 7.5598, 7.5577, 7.5482, 7.5456, 7.5482, 7.5458, 7.5512, 7.5487, 7.5484, 7.5453, 7.5504, 7.5484, 7.5454, 7.5503, 7.5556, 7.5531, 7.5499, 7.5472, 7.5518, 7.5487, 7.5464, 7.5431, 7.5479, 7.5449, 7.5418, 7.5391, 7.552, 7.5492, 7.5464, 7.5436, 7.5484, 7.5607, 7.5587, 7.5555, 7.554, 7.551, 7.5478, 7.545, 7.5421, 7.5398, 7.5447, 7.5493, 7.5539, 7.5509, 7.5488, 7.5456, 7.5435, 7.5409, 7.5407, 7.5381, 7.5349, 7.5322, 7.5367, 7.5336, 7.5311, 7.529, 7.5265, 7.5315, 7.5367, 7.534, 7.532, 7.5366, 7.5339, 7.5384, 7.5359, 7.5479, 7.546, 7.5506, 7.5476, 7.5518, 7.5501, 7.5481, 7.5456, 7.5427, 7.5405, 7.5373, 7.5415, 7.5396, 7.5369, 7.5341, 7.5319, 7.5349, 7.54, 7.5376, 7.5345, 7.5324, 7.5295, 7.5268, 7.5313, 7.5284, 7.5265, 7.5236, 7.5207, 7.5181, 7.516, 7.5138, 7.5112, 7.5085, 7.507, 7.5049, 7.5091, 7.5064, 7.5035, 7.5083, 7.5054, 7.5098, 7.5071, 7.5047, 7.5024, 7.5052, 7.5114, 7.5104, 7.5083, 7.5057, 7.5101, 7.5137, 7.5113, 7.5155, 7.5207, 7.5242, 7.5231, 7.5143, 7.5267, 7.5247, 7.5219, 7.5263, 7.5307, 7.528, 7.5256, 7.523, 7.5276, 7.5261, 7.5307, 7.5349, 7.533, 7.5303, 7.5277, 7.5249, 7.5233, 7.5211, 7.5184, 7.5165, 7.5138, 7.5115, 7.5088, 7.5067, 7.5109, 7.5092, 7.5075, 7.505, 7.5026, 7.5012, 7.4993, 7.4974, 7.4951, 7.4928, 7.4965, 7.5005, 7.5051, 7.5091, 7.5073, 7.5046, 7.5083, 7.5124, 7.5167, 7.5148, 7.5133, 7.5109, 7.5092, 7.5135, 7.5114, 7.5114, 7.5092, 7.5133, 7.5114, 7.5089, 7.5065, 7.5039, 7.5021, 7.4997, 7.4971, 7.5007, 7.4983, 7.4958, 7.4998, 7.4918, 7.4899, 7.4876, 7.4854, 7.4829, 7.4809, 7.4947, 7.4988, 7.4998, 7.4976, 7.5048, 7.5101, 7.5176, 7.5161, 7.5145, 7.512, 7.5101, 7.5157, 7.5137, 7.5294, 7.5271, 7.5251, 7.5225, 7.5199, 7.5182, 7.5177, 7.5153, 7.5143, 7.5123, 7.5107, 7.5089, 7.5066, 7.505, 7.5076, 7.5059, 7.5039, 7.5077, 7.5069, 7.5043, 7.5022, 7.506, 7.5169, 7.515, 7.5136, 7.5171, 7.5165, 7.5141, 7.5178, 7.5188, 7.5165, 7.5202, 7.5186, 7.5163, 7.5167, 7.5143, 7.512, 7.5099, 7.5136, 7.5172, 7.5149, 7.5186, 7.5223, 7.526, 7.5237, 7.5213, 7.5191, 7.5175, 7.5154, 7.5141, 7.5124, 7.5162, 7.514, 7.5119, 7.5099, 7.5133, 7.5168, 7.5155, 7.5141, 7.5125, 7.5103, 7.5138, 7.5116, 7.5152, 7.5129, 7.5202, 7.5179, 7.5158, 7.5139, 7.5119, 7.5098, 7.5135, 7.5062, 7.505, 7.5026, 7.5004, 7.4981, 7.4962, 7.494, 7.4865, 7.4853, 7.4831, 7.481, 7.4806, 7.4783, 7.4786, 7.4769, 7.4751, 7.4751, 7.474, 7.4779, 7.4817, 7.4796, 7.4728, 7.4762, 7.4693, 7.4672, 7.4653, 7.4633, 7.4669, 7.4647, 7.4626, 7.461, 7.4706, 7.4688, 7.4667, 7.4667, 7.4646, 7.4579, 7.4559, 7.4544, 7.4532, 7.451, 7.4549, 7.4527, 7.451, 7.4542, 7.4521, 7.4557, 7.4535, 7.4521, 7.4508, 7.4488, 7.4483, 7.4466, 7.4447, 7.4481, 7.4553, 7.4532, 7.4518, 7.4607, 7.459, 7.457, 7.455, 7.4537, 7.4574, 7.456, 7.4594, 7.4578, 7.4612, 7.4593, 7.4573, 7.4569, 7.4549, 7.4533, 7.4517, 7.4502, 7.4482, 7.4471, 7.4477, 7.4466, 7.4449, 7.4551, 7.4584, 7.4616, 7.4599, 7.4582, 7.4571, 7.4552, 7.4535, 7.454, 7.4577, 7.4558, 7.4544, 7.4614, 7.4592, 7.4582, 7.4575, 7.4558, 7.4549, 7.4535, 7.4564, 7.4544, 7.4524, 7.4464, 7.4499, 7.4479, 7.4415, 7.4394, 7.4422, 7.4406, 7.4406, 7.4438, 7.4445, 7.4433, 7.4462, 7.4552, 7.4541, 7.4528, 7.4556, 7.4536, 7.4566, 7.4552, 7.4584, 7.4575, 7.4562, 7.4591, 7.4577, 7.4557, 7.4588, 7.4573, 7.4554, 7.4697, 7.4677, 7.471, 7.4738, 7.4721, 7.4757, 7.4747, 7.473, 7.4757, 7.4751, 7.4732, 7.4819, 7.4803, 7.4792, 7.4828, 7.4813, 7.4796, 7.4831, 7.4819, 7.4801, 7.4782, 7.4771, 7.4799, 7.479, 7.4779, 7.4768, 7.475, 7.4737, 7.474, 7.4772, 7.4767, 7.4754, 7.4785, 7.477, 7.4753, 7.4735, 7.4764, 7.4702, 7.4702, 7.4689, 7.4674, 7.4658, 7.464, 7.4622, 7.4603, 7.4584, 7.4521, 7.4549, 7.4578, 7.4562, 7.4595, 7.4583, 7.4567, 7.4549, 7.4533, 7.4516, 7.45, 7.4483, 7.4467, 7.4454, 7.4438, 7.4505, 7.4489, 7.4477, 7.4606, 7.4596, 7.4635, 7.4617, 7.465, 7.4635, 7.4622, 7.4623, 7.4607, 7.4653, 7.4758, 7.4739, 7.4772, 7.4758, 7.4744, 7.4725, 7.4706, 7.4687, 7.4668, 7.4649, 7.4641, 7.4667, 7.4672, 7.4658, 7.464, 7.4667, 7.4648, 7.4675, 7.4715, 7.47, 7.4725, 7.4706, 7.4689, 7.4671, 7.4654, 7.4639, 7.4627, 7.4611, 7.4644, 7.4633, 7.4618, 7.4647, 7.4676, 7.4704, 7.4687, 7.4674, 7.4662, 7.4605, 7.4638, 7.4626, 7.4702, 7.4688, 7.4669, 7.4651, 7.4679, 7.4661, 7.4758, 7.4818, 7.4804, 7.4791, 7.4819, 7.4802, 7.4783, 7.4772, 7.48, 7.4792, 7.4773, 7.4755, 7.4743, 7.4769, 7.4805, 7.4791, 7.478, 7.4812, 7.4795, 7.4777, 7.4765, 7.4794, 7.4781, 7.4808, 7.4792, 7.4781, 7.4769, 7.4796, 7.4781, 7.4767, 7.4758, 7.4743, 7.4724, 7.471, 7.4697, 7.4683, 7.4674, 7.4659, 7.4665, 7.465, 7.4679, 7.4666, 7.4694, 7.4681, 7.4668, 7.4665, 7.4652, 7.4636, 7.462, 7.4602, 7.4626, 7.4628, 7.4646, 7.4628, 7.4612, 7.4601, 7.4589, 7.4533, 7.456, 7.4585, 7.4614, 7.46, 7.4585, 7.4573, 7.4556, 7.4781, 7.4766, 7.4794, 7.4795, 7.4865, 7.4852, 7.4841, 7.4868, 7.4861, 7.486, 7.4844, 7.479, 7.4773, 7.4759, 7.4741, 7.4724, 7.4714, 7.477, 7.4754, 7.4738, 7.4727, 7.4717, 7.4701, 7.4741, 7.4768, 7.4756, 7.4739, 7.4767, 7.4753, 7.4744, 7.4797, 7.4785, 7.4769, 7.4752, 7.4779, 7.4762, 7.4745, 7.4729, 7.4717, 7.4703, 7.4687, 7.4712, 7.47, 7.4728, 7.4712, 7.4714, 7.4728, 7.4711, 7.4697, 7.4725, 7.4708, 7.4704, 7.469, 7.4713, 7.4701, 7.4661, 7.4814, 7.485, 7.4878, 7.4862, 7.4849, 7.4845, 7.4831, 7.4856, 7.4845, 7.4832, 7.483, 7.4817, 7.49, 7.4883, 7.487, 7.4858, 7.4884, 7.4872, 7.499, 7.4974, 7.4962, 7.4985, 7.501, 7.4996, 7.502, 7.5011, 7.5035, 7.5018, 7.5002, 7.4985, 7.4971, 7.4954, 7.4938, 7.4965, 7.4988, 7.5012, 7.4996, 7.4981, 7.5005, 7.5028, 7.5013, 7.4997, 7.4985, 7.4973, 7.4957, 7.4945, 7.4931, 7.4922, 7.4912, 7.4907, 7.4891, 7.4878, 7.4863, 7.4902, 7.492, 7.5027, 7.5017, 7.5009, 7.5001, 7.5012, 7.5, 7.4984, 7.501, 7.4994, 7.4979, 7.497, 7.4956, 7.4948, 7.497, 7.496, 7.4945, 7.494, 7.4924, 7.4913, 7.4906, 7.4893, 7.4915, 7.4899, 7.4886, 7.4873, 7.4898, 7.4883, 7.487, 7.4854, 7.484, 7.4863, 7.4849, 7.4838, 7.4825, 7.4812, 7.4799, 7.4822, 7.4775, 7.4761, 7.4747, 7.4733, 7.4722, 7.4729, 7.4715, 7.4666, 7.4692, 7.4679, 7.4669, 7.4656, 7.4761, 7.4785, 7.4981, 7.4932, 7.4919, 7.4907, 7.4927, 7.495, 7.4938, 7.4926, 7.4911, 7.4901, 7.4889, 7.4878, 7.4862, 7.485, 7.4871, 7.4858, 7.4843, 7.4838, 7.4831, 7.4854, 7.4842, 7.4829, 7.4819, 7.484, 7.4826, 7.4814, 7.4804, 7.479, 7.4813, 7.4799, 7.4784, 7.4774, 7.4777, 7.4776, 7.4774, 7.4869, 7.4855, 7.4915, 7.4904, 7.4892, 7.4921, 7.4908, 7.4896, 7.4928, 7.4916, 7.4905, 7.4893, 7.4954, 7.4979, 7.5071, 7.5064, 7.5148, 7.5136, 7.5138, 7.5127, 7.5114, 7.5103, 7.5088, 7.5079, 7.5071, 7.5057, 7.5042, 7.5028, 7.5017, 7.5003, 7.4989, 7.4978, 7.5004, 7.4989, 7.498, 7.4965, 7.5097, 7.5119, 7.5109, 7.5099, 7.5129, 7.5118, 7.5071, 7.5058, 7.508, 7.5117, 7.5079, 7.5067, 7.5102, 7.509, 7.5077, 7.5063, 7.5051, 7.5038, 7.5024, 7.501, 7.4996, 7.4981, 7.4967, 7.499, 7.5012, 7.4997, 7.4982, 7.4971, 7.4956, 7.4978, 7.4964, 7.4949, 7.4935, 7.4921, 7.4907, 7.4897, 7.4884, 7.487, 7.4865, 7.4855, 7.5007, 7.5105, 7.5096, 7.5083, 7.507, 7.5068, 7.5058, 7.5045, 7.5036, 7.5059, 7.5046, 7.5067, 7.5067, 7.5073, 7.5061, 7.5085, 7.5104, 7.5131, 7.5118, 7.5108, 7.5101, 7.5087, 7.5073, 7.5059, 7.5048, 7.5035, 7.5022, 7.5008, 7.5003, 7.4989, 7.4975, 7.4997, 7.5023, 7.5013, 7.5, 7.4989, 7.4977, 7.4963, 7.4954, 7.4944, 7.4934, 7.4923, 7.4913, 7.4903, 7.4889, 7.4877, 7.496, 7.4992, 7.5015, 7.5003, 7.503, 7.5021, 7.5022, 7.5045, 7.5036, 7.5023, 7.5064, 7.505, 7.5036, 7.5025, 7.5011, 7.5033, 7.5019, 7.5005, 7.4991, 7.4985, 7.4972, 7.4959, 7.4945, 7.4936, 7.4922, 7.4943, 7.493, 7.4953, 7.4974, 7.496, 7.4949, 7.4909, 7.4933, 7.4923, 7.4915, 7.4937, 7.4926, 7.4948, 7.4945, 7.4968, 7.4955, 7.4946, 7.4988, 7.4981, 7.4968, 7.4991, 7.4979, 7.4974, 7.4994, 7.5014, 7.5, 7.4989, 7.498, 7.4938, 7.4926, 7.4947, 7.4965, 7.4953, 7.4974, 7.5049, 7.507, 7.506, 7.5047, 7.5036, 7.5023, 7.5009, 7.4995, 7.4982, 7.4968, 7.4989, 7.5009, 7.503, 7.5016, 7.5003, 7.4991, 7.4983, 7.4973, 7.4965, 7.4955, 7.4942, 7.4962, 7.4949, 7.4937, 7.4925, 7.4912, 7.4903, 7.4891, 7.4879, 7.4867, 7.4888, 7.4875, 7.4896, 7.4917, 7.4905, 7.4893, 7.4913, 7.4932, 7.4951, 7.4938, 7.4958, 7.4946, 7.4938, 7.4927, 7.4948, 7.4934, 7.4957, 7.4948, 7.4936, 7.4954, 7.501, 7.5032, 7.5034, 7.4993, 7.4985, 7.4975, 7.4996, 7.5015, 7.5006, 7.5027, 7.5016, 7.5006, 7.5028, 7.5016, 7.5011, 7.5, 7.4994, 7.5011, 7.5007, 7.5031, 7.5019, 7.5009, 7.5, 7.4989, 7.4976, 7.4987, 7.5007, 7.4998, 7.4987, 7.4982, 7.4976, 7.4964, 7.4967, 7.4957, 7.4947, 7.4979, 7.494, 7.4929, 7.4947, 7.4943, 7.4933, 7.4952, 7.4975, 7.4963, 7.4955, 7.4981, 7.4968, 7.4989, 7.4981, 7.4969, 7.4956, 7.4973, 7.4966, 7.4985, 7.5004, 7.4992, 7.4984, 7.4972, 7.497, 7.499, 7.4977, 7.497, 7.4934, 7.4897, 7.4914, 7.4905, 7.4942, 7.4962, 7.4949, 7.4967, 7.4957, 7.495, 7.4937, 7.4925, 7.4914, 7.491, 7.4898, 7.4886, 7.4875, 7.4865, 7.4885, 7.4874, 7.4923, 7.4911, 7.493, 7.4955, 7.4943, 7.4933, 7.4923, 7.4942, 7.4961, 7.4953, 7.4942, 7.4934, 7.4925, 7.4956, 7.4921, 7.4942, 7.4903, 7.4895, 7.4914, 7.4936, 7.4926, 7.4946, 7.4934, 7.4925, 7.4913, 7.4901, 7.489, 7.4883, 7.4875, 7.4893, 7.4881, 7.4869, 7.4863, 7.4882, 7.4873, 7.4835, 7.4829, 7.485, 7.4839, 7.4829, 7.4818, 7.4807, 7.4826, 7.4814, 7.4803, 7.4799, 7.4787, 7.4776, 7.4765, 7.4755, 7.4748, 7.4736, 7.4725, 7.4717, 7.4725, 7.4717, 7.4706, 7.4714, 7.4703, 7.4691, 7.4679, 7.4696, 7.4684, 7.4672, 7.4662, 7.4656, 7.4675, 7.4666, 7.4708, 7.4697, 7.4687, 7.4678, 7.4668, 7.4657, 7.4678, 7.4641, 7.463, 7.465, 7.4658, 7.4683, 7.4671, 7.4689, 7.4678, 7.4666, 7.4666, 7.4655, 7.4644, 7.4637, 7.4632, 7.4621, 7.4611, 7.463, 7.4623, 7.4618, 7.4611, 7.4601, 7.4595, 7.4586, 7.4605, 7.4597, 7.4587, 7.4605, 7.4594, 7.4585, 7.4605, 7.4596, 7.4585, 7.4575, 7.4582, 7.46, 7.4589, 7.4578, 7.4597, 7.4614, 7.4603, 7.4593, 7.4582, 7.4573, 7.4563, 7.4554, 7.4544, 7.4546, 7.4537, 7.4529, 7.4519, 7.4508, 7.45, 7.4489, 7.4481, 7.447, 7.4459, 7.4449, 7.4466, 7.4455, 7.4472, 7.4489, 7.4506, 7.4551, 7.4543, 7.4588, 7.4579, 7.455, 7.4514, 7.4532, 7.4522, 7.4514, 7.455, 7.4568, 7.4559, 7.455, 7.4571, 7.456, 7.4555, 7.4602, 7.4621, 7.4613, 7.4624, 7.4615, 7.461, 7.4628, 7.4621, 7.462, 7.4667, 7.4656, 7.4646, 7.4691, 7.4693, 7.471, 7.4699, 7.469, 7.4679, 7.4667, 7.4656, 7.4647, 7.4636, 7.4629, 7.462, 7.4611, 7.4629, 7.4621, 7.4617, 7.4635, 7.465, 7.4667, 7.4656, 7.4644, 7.4662, 7.4652, 7.467, 7.466, 7.465, 7.4668, 7.4657, 7.4646, 7.4637, 7.4627, 7.4617, 7.4636, 7.4629, 7.462, 7.4639, 7.4662, 7.4654, 7.4646, 7.4637, 7.4627, 7.462, 7.4615, 7.464, 7.4659, 7.4648, 7.4667, 7.4657, 7.4647, 7.4664, 7.4655, 7.4655, 7.4644, 7.4664, 7.4683, 7.4674, 7.4665, 7.466, 7.468, 7.4672, 7.4664, 7.4656, 7.4648, 7.4637, 7.4658, 7.4679, 7.4674, 7.4666, 7.4655, 7.4645, 7.4634, 7.4626, 7.4677, 7.4695, 7.471, 7.4702, 7.4767, 7.4786, 7.4775, 7.4767, 7.4756, 7.4774, 7.4792, 7.4788, 7.4777, 7.4775, 7.4767, 7.4786, 7.4775, 7.4794, 7.4785, 7.4775, 7.477, 7.476, 7.4751, 7.4742, 7.4761, 7.478, 7.483, 7.4822, 7.4811, 7.4803, 7.4821, 7.4811, 7.4801, 7.4793, 7.4784, 7.4776, 7.4766, 7.4756, 7.4745, 7.4744, 7.476, 7.475, 7.4741, 7.4731, 7.4729, 7.472, 7.4735, 7.4724, 7.4717, 7.4712, 7.4702, 7.4695, 7.4739, 7.4729, 7.4747, 7.4739, 7.4728, 7.4718, 7.4708, 7.4698, 7.4688, 7.4681, 7.4673, 7.4665, 7.4655, 7.4646, 7.4653, 7.4644, 7.464, 7.4631, 7.4621, 7.4589, 7.458, 7.4569, 7.4537, 7.4554, 7.4551, 7.4544, 7.4569, 7.4584, 7.4578, 7.4568, 7.4558, 7.4552, 7.4544, 7.4534, 7.4553, 7.4545, 7.454, 7.4557, 7.4547, 7.4537, 7.4532, 7.4522, 7.4512, 7.4501, 7.4491, 7.4505, 7.4495, 7.4512, 7.4528, 7.4518, 7.4535, 7.4551, 7.4559, 7.4548, 7.4543, 7.4534, 7.4553, 7.4544, 7.4535, 7.4535, 7.453, 7.453, 7.4521, 7.4513, 7.4503, 7.4493, 7.4486, 7.4478, 7.4468, 7.446, 7.4451, 7.4443, 7.4435, 7.4426, 7.4416, 7.4406, 7.4398, 7.4389, 7.4383, 7.4399, 7.4417, 7.4408, 7.44, 7.4415, 7.4409, 7.4403, 7.4393, 7.4408, 7.4401, 7.4395, 7.4363, 7.4354, 7.4345, 7.4338, 7.4356, 7.4371, 7.4362, 7.4353, 7.4343, 7.4335, 7.4327, 7.4321, 7.4337, 7.4332, 7.4323, 7.4339, 7.4329, 7.4319, 7.4309, 7.43, 7.4315, 7.4285, 7.4303, 7.4294, 7.4285, 7.4279, 7.427, 7.4263, 7.4233, 7.4229, 7.4222, 7.4215, 7.4207, 7.42, 7.4192, 7.4184, 7.4176, 7.4168, 7.4163, 7.4154, 7.4172, 7.4163, 7.4204, 7.4196, 7.4187, 7.4182, 7.4199, 7.4191, 7.4208, 7.4199, 7.4193, 7.4188, 7.4178, 7.4172, 7.4163, 7.4154, 7.4148, 7.4142, 7.4135, 7.4128, 7.4119, 7.411, 7.4101, 7.4094, 7.4084, 7.4075, 7.4067, 7.4035, 7.4025, 7.4018, 7.4082, 7.411, 7.4128, 7.4119, 7.411, 7.41, 7.4116, 7.411, 7.41, 7.409, 7.4081, 7.4072, 7.4135, 7.4152, 7.4167, 7.4183, 7.4174, 7.4184, 7.4177, 7.4193, 7.4186, 7.4179, 7.417, 7.4161, 7.4158, 7.4152, 7.4146, 7.4138, 7.4154, 7.4146, 7.4137, 7.4128, 7.4142, 7.4135, 7.4127, 7.412, 7.4135, 7.4134, 7.4125, 7.4117, 7.4134, 7.4125, 7.414, 7.4155, 7.4148, 7.4139, 7.4154, 7.4164, 7.4158, 7.4174, 7.4168, 7.4183, 7.4174, 7.4167, 7.4158, 7.4153, 7.4146, 7.4137, 7.4128, 7.4119, 7.4133, 7.4126, 7.4141, 7.4159, 7.415, 7.414, 7.4111, 7.4102, 7.4126, 7.4122, 7.4115, 7.4109, 7.4079, 7.4071, 7.4084, 7.4098, 7.4088, 7.4079, 7.407, 7.4124, 7.412, 7.4194, 7.4186, 7.4177, 7.4172, 7.4166, 7.4156, 7.4148, 7.4163, 7.4155, 7.4147, 7.4171, 7.4164, 7.4156, 7.4169, 7.4161, 7.4154, 7.4169, 7.4161, 7.4153, 7.4145, 7.4139, 7.4136, 7.4127, 7.4119, 7.4114, 7.4129, 7.412, 7.4113, 7.4128, 7.412, 7.4113, 7.4106, 7.4097, 7.4097, 7.4112, 7.4084, 7.408, 7.4095, 7.4109, 7.4102, 7.4096, 7.4088, 7.4082, 7.4075, 7.409, 7.4082, 7.4076, 7.4092, 7.4109, 7.4104, 7.4098, 7.4094, 7.4088, 7.4083, 7.4075, 7.4091, 7.4085, 7.4079, 7.4071, 7.4042, 7.4035, 7.4033, 7.4047, 7.404, 7.4053, 7.4067, 7.4058, 7.4052, 7.4043, 7.4035, 7.4051, 7.4043, 7.4036, 7.4052, 7.4044, 7.4036, 7.4027, 7.4063, 7.4054, 7.4047, 7.4042, 7.4035, 7.4028, 7.4019, 7.4015, 7.401, 7.4023, 7.4018, 7.4009, 7.4023, 7.4015, 7.4008, 7.4022, 7.3993, 7.3986, 7.3979, 7.3993, 7.3985, 7.3984, 7.3976, 7.3972, 7.3965, 7.3957, 7.397, 7.3942, 7.3937, 7.394, 7.3932, 7.3924, 7.3917, 7.3911, 7.3906, 7.3878, 7.387, 7.3863, 7.3857, 7.3832, 7.3824, 7.3815, 7.381, 7.3824, 7.3815, 7.3829, 7.3843, 7.3858, 7.3852, 7.3869, 7.3884, 7.3876, 7.3868, 7.386, 7.3852, 7.3846, 7.384, 7.3854, 7.3846, 7.386, 7.3857, 7.3849, 7.3841, 7.3833, 7.3847, 7.3862, 7.3876, 7.3888, 7.3884, 7.3878, 7.3869, 7.3861, 7.3853, 7.3868, 7.3861, 7.39, 7.3894, 7.3909, 7.3902, 7.3896, 7.4089, 7.4082, 7.4097, 7.409, 7.4084, 7.4076, 7.4068, 7.4062, 7.4055, 7.4048, 7.4047, 7.4039, 7.4032, 7.4045, 7.4037, 7.4073, 7.4064, 7.4079, 7.4073, 7.4065, 7.408, 7.4096, 7.4088, 7.408, 7.4087, 7.4079, 7.4051, 7.4046, 7.4061, 7.4053, 7.4052, 7.4089, 7.4083, 7.4075, 7.4067, 7.4062, 7.4057, 7.4067, 7.4061, 7.4074, 7.4066, 7.4078, 7.4069, 7.4125, 7.4133, 7.4126, 7.4141, 7.4134, 7.4199, 7.4211, 7.4206, 7.4203, 7.4195, 7.4195, 7.4212, 7.4203, 7.4196, 7.4211, 7.4205, 7.4179, 7.4175, 7.4172, 7.4194, 7.417, 7.4164, 7.416, 7.4249, 7.4241, 7.4233, 7.4242, 7.4296, 7.4291, 7.4303, 7.4295, 7.429, 7.4282, 7.4275, 7.4277, 7.425, 7.4244, 7.4236, 7.4242, 7.4237, 7.4253, 7.4245, 7.4237, 7.4233, 7.4247, 7.424, 7.4213, 7.4226, 7.4217, 7.422, 7.4212, 7.4204, 7.4198, 7.4195, 7.4213, 7.4205, 7.4199, 7.4192, 7.4184, 7.418, 7.4174, 7.4167, 7.4161, 7.4135, 7.4131, 7.4131, 7.4124, 7.4118, 7.4118, 7.4119, 7.4111, 7.4104, 7.4138, 7.4151, 7.4162, 7.4154, 7.4146, 7.4138, 7.413, 7.4144, 7.4159, 7.4151, 7.4145, 7.4137, 7.4129, 7.4121, 7.4135, 7.4128, 7.4121, 7.4114, 7.4108, 7.4082, 7.4095, 7.4089, 7.4085, 7.4077, 7.4071, 7.4065, 7.4058, 7.4032, 7.4046, 7.4038, 7.403, 7.4035, 7.4027, 7.4046, 7.4042, 7.4038, 7.403, 7.4027, 7.4022, 7.4018, 7.4011, 7.4007, 7.3999, 7.3991, 7.4003, 7.3995, 7.3988, 7.3984, 7.3976, 7.395, 7.3924, 7.3898, 7.389, 7.3883, 7.3896, 7.3907, 7.3917, 7.3927000000000005, 7.394, 7.3935, 7.3928, 7.3921, 7.3913, 7.3906, 7.392, 7.3894, 7.389, 7.3903, 7.3897, 7.3893, 7.3887, 7.388, 7.3897, 7.390700000000001, 7.394, 7.3952, 7.3946, 7.3959, 7.3954, 7.3953, 7.3967, 7.3961, 7.3953, 7.3967, 7.3961, 7.3978, 7.397, 7.4007, 7.4019, 7.4035, 7.408, 7.4074, 7.407, 7.4063, 7.4058, 7.4093, 7.4088, 7.4081, 7.4101, 7.4094, 7.4116, 7.4109, 7.4101, 7.41, 7.4103, 7.4098, 7.4092, 7.4084, 7.4077, 7.4073, 7.4086, 7.4079, 7.4073, 7.4066, 7.4059, 7.4055, 7.4071, 7.4064, 7.4059, 7.4071, 7.4064, 7.4066, 7.4087, 7.408, 7.4073, 7.4086, 7.408, 7.4072, 7.4065, 7.4076, 7.4069, 7.4064, 7.4058, 7.4071, 7.4064, 7.4079, 7.4077, 7.407, 7.4065, 7.4063, 7.4058, 7.407, 7.4083, 7.4077, 7.4087000000000005, 7.4082, 7.4081, 7.4092, 7.4086, 7.408, 7.4072, 7.4066, 7.406, 7.4053, 7.4046, 7.4041, 7.4034, 7.4026, 7.4037, 7.4052, 7.4066, 7.408, 7.4093, 7.4087, 7.4104, 7.4097, 7.409, 7.4085, 7.4079, 7.4072, 7.4065, 7.4058, 7.4051, 7.4064, 7.4057, 7.4049, 7.4043, 7.4038, 7.405, 7.4063, 7.4056, 7.4068, 7.4081, 7.4093, 7.4086, 7.4079, 7.4054, 7.4067, 7.406, 7.4072, 7.4066, 7.4079, 7.4092, 7.4105, 7.4098, 7.409, 7.4066, 7.406, 7.4072, 7.4122, 7.4115, 7.4108, 7.4119, 7.4115, 7.4127, 7.412, 7.4114, 7.4106, 7.4118, 7.4111, 7.4103, 7.4117, 7.4131, 7.4123, 7.4136, 7.4136, 7.4147, 7.4158, 7.4169, 7.4164, 7.416, 7.4153, 7.4164, 7.4156, 7.415, 7.4143, 7.4136, 7.4132, 7.4126, 7.4102, 7.4094, 7.4088, 7.4082, 7.4093, 7.4104, 7.4097, 7.4091, 7.4102, 7.4095, 7.4089, 7.4083, 7.4082, 7.4074, 7.4066, 7.4061, 7.4054, 7.4048, 7.4041, 7.4034, 7.4049, 7.4062, 7.4054, 7.4048, 7.4044, 7.4037, 7.4033, 7.4045, 7.4059, 7.4106, 7.4118, 7.4131, 7.4125, 7.4118, 7.4204, 7.4217, 7.4198, 7.4192, 7.4186, 7.418, 7.4173, 7.4185, 7.4178, 7.4188, 7.42, 7.4205, 7.4199, 7.4175, 7.4198, 7.4191, 7.4186, 7.4198, 7.421, 7.4222, 7.4215, 7.4208, 7.4219, 7.4212, 7.4205, 7.4198, 7.4193, 7.4206, 7.4236, 7.4247, 7.424, 7.4236, 7.4247, 7.4239, 7.425, 7.4243, 7.4236, 7.423, 7.4222, 7.4215, 7.4209, 7.4202, 7.4199, 7.4203, 7.4179, 7.4191, 7.4187, 7.4201, 7.4215, 7.4208, 7.4222, 7.4216, 7.421, 7.4203, 7.4196, 7.4208, 7.4201, 7.4231, 7.4224, 7.4217, 7.423, 7.4223, 7.423, 7.4207, 7.42, 7.4211, 7.4204, 7.4215, 7.4208, 7.4203, 7.4215, 7.4208, 7.4203, 7.4196, 7.4189, 7.4265, 7.426, 7.4253, 7.4247, 7.424, 7.4235, 7.4228, 7.4221, 7.4216, 7.4211, 7.4223, 7.4216, 7.4211, 7.4205, 7.4198, 7.4191, 7.4184, 7.4177, 7.4172, 7.4152, 7.4145, 7.4138, 7.4133, 7.4126, 7.412, 7.4115, 7.4109, 7.4125, 7.4118, 7.4112, 7.4122, 7.4134, 7.4127, 7.412, 7.4131, 7.4124, 7.4118, 7.4111, 7.4105, 7.4099, 7.4097, 7.4092, 7.409, 7.4085, 7.4099, 7.4092, 7.4092, 7.4086, 7.408, 7.4094, 7.4089, 7.4082, 7.408, 7.4074, 7.4089, 7.4082, 7.4077, 7.4071, 7.4085, 7.4079, 7.4072, 7.4066, 7.4079, 7.4072, 7.4049, 7.4045, 7.4052, 7.4047, 7.4058, 7.4052, 7.4047, 7.4058, 7.4115, 7.4108, 7.4101, 7.4111, 7.4107, 7.4103, 7.4098, 7.4111, 7.4122, 7.4116, 7.4109, 7.412, 7.4131, 7.4125, 7.4119, 7.4131, 7.4128, 7.4123, 7.4126, 7.4121, 7.4136, 7.4131, 7.413, 7.4125, 7.4119, 7.4113, 7.4108, 7.4102, 7.4113, 7.4107, 7.4118, 7.4129, 7.414, 7.4134, 7.4144, 7.4155, 7.4148, 7.4144, 7.4137, 7.4132, 7.4125, 7.4118, 7.4129, 7.4126, 7.4121, 7.4133, 7.4126, 7.4119, 7.413, 7.4124, 7.4123, 7.4117, 7.411, 7.4103, 7.4114, 7.4109, 7.4103, 7.4098, 7.4092, 7.4085, 7.4114, 7.4107, 7.4101, 7.4097, 7.4092, 7.4126, 7.4137, 7.4131, 7.4141, 7.4137, 7.413, 7.4143, 7.4138, 7.4132, 7.4145, 7.4156, 7.4151, 7.4163, 7.4195, 7.419, 7.4184, 7.4183, 7.4182, 7.4177, 7.4176, 7.4169, 7.4162, 7.4173, 7.4166, 7.416, 7.4153, 7.4147, 7.4141, 7.4152, 7.4164, 7.4158, 7.4153, 7.4147, 7.414, 7.4134, 7.4129, 7.4122, 7.4117, 7.4111, 7.4105, 7.4116, 7.4127, 7.4104, 7.4098, 7.4198, 7.4193, 7.4203, 7.4181, 7.4177, 7.4172, 7.4166, 7.4177, 7.4192, 7.4185, 7.4179, 7.4173, 7.4167, 7.4162, 7.4184, 7.4196, 7.4191, 7.4185, 7.4196, 7.4191, 7.4202, 7.4195, 7.4189, 7.4201, 7.4197, 7.4191, 7.4185, 7.418, 7.4174, 7.4169, 7.4179, 7.4174, 7.4169, 7.4163, 7.4143, 7.4142, 7.4145, 7.4127, 7.412, 7.4115, 7.4125, 7.4119, 7.4112, 7.4116, 7.4111, 7.4105, 7.41, 7.411, 7.412, 7.4116, 7.4112, 7.4107, 7.4102, 7.4095, 7.409, 7.4085, 7.4078, 7.4102, 7.4112, 7.4107, 7.4154, 7.4208, 7.422, 7.4219, 7.4216, 7.4212, 7.4206, 7.4199, 7.4217, 7.4219, 7.4215, 7.4194, 7.4173, 7.4168, 7.4164, 7.4142, 7.4152, 7.4145, 7.4156, 7.415, 7.4144, 7.4139, 7.4117, 7.4111, 7.4106, 7.4119, 7.4112, 7.4107, 7.4102, 7.4096, 7.4108, 7.4103, 7.4148, 7.4142, 7.4137, 7.4132, 7.4128, 7.4122, 7.4115, 7.4109, 7.4105, 7.41, 7.4097, 7.4092, 7.4085, 7.408, 7.4092, 7.4102, 7.4097, 7.4091, 7.4115, 7.4144, 7.4155, 7.4165, 7.4159, 7.4156, 7.4167, 7.4167, 7.416, 7.4154, 7.4148, 7.4142, 7.4137, 7.4147, 7.4141, 7.4135, 7.413, 7.4127, 7.4121, 7.4115, 7.4109, 7.4119, 7.4114, 7.4108, 7.4103, 7.4099, 7.4094, 7.4089, 7.4083, 7.4077, 7.4071, 7.4082, 7.4091, 7.4102, 7.4113, 7.4107, 7.4103, 7.4113, 7.4108, 7.4104, 7.4098, 7.4113, 7.4107, 7.4101, 7.4098, 7.4093, 7.4104, 7.4115, 7.4126, 7.4136, 7.413, 7.4124, 7.4183, 7.418, 7.4175, 7.4186, 7.418, 7.4174, 7.4168, 7.4162, 7.4162, 7.4157, 7.4152, 7.4147, 7.4141, 7.4175, 7.4193, 7.4187, 7.4187, 7.4183, 7.4178, 7.4173, 7.4183, 7.4176, 7.4169, 7.4179, 7.4176, 7.417, 7.4164, 7.4159, 7.4171, 7.4174, 7.4185, 7.418, 7.4173, 7.4177, 7.4188, 7.4199, 7.4208, 7.4204, 7.4204, 7.42, 7.4193, 7.4202, 7.4195, 7.4193, 7.4191, 7.4185, 7.4197, 7.4191, 7.4185, 7.418, 7.4174, 7.4168, 7.4163, 7.4159, 7.4185, 7.418, 7.4175, 7.417, 7.4165, 7.4159, 7.4152, 7.4147, 7.416, 7.4155, 7.4166, 7.4162, 7.4156, 7.4152, 7.4147, 7.4141, 7.4135, 7.4129, 7.4123, 7.4118, 7.413, 7.411, 7.4106, 7.41, 7.4095, 7.4089, 7.4084, 7.4078, 7.4088, 7.4083, 7.408, 7.409, 7.41, 7.4096, 7.4106, 7.4102, 7.4098, 7.4092, 7.4103, 7.4097, 7.4137, 7.4147, 7.4156, 7.4153, 7.4147, 7.4141, 7.4139, 7.415, 7.416, 7.4169, 7.4163, 7.4156, 7.415, 7.4144, 7.4171, 7.4168, 7.4148, 7.4142, 7.4152, 7.4179, 7.4189, 7.4183, 7.4177, 7.4171, 7.4165, 7.4159, 7.4169, 7.4163, 7.4159, 7.417, 7.4165, 7.4145, 7.414, 7.4134, 7.413, 7.4126, 7.4121, 7.4115, 7.4109, 7.4103, 7.4097, 7.4108, 7.4128, 7.4122, 7.4116, 7.4119, 7.4114, 7.4123, 7.4117, 7.4128, 7.4124, 7.4104, 7.4098, 7.4078, 7.4072, 7.4067, 7.4062, 7.4056, 7.4052, 7.4047, 7.4042, 7.4038, 7.4018, 7.4059, 7.4071, 7.4081, 7.4076, 7.407, 7.4064, 7.4062, 7.4058, 7.4062, 7.4059, 7.4054, 7.4053, 7.4064, 7.4059, 7.4068, 7.4079, 7.4074, 7.4068, 7.4063, 7.4043, 7.4037, 7.4032, 7.4028, 7.4022, 7.4029, 7.4023, 7.4018, 7.4012, 7.4009, 7.4004, 7.4, 7.4015, 7.4042, 7.404, 7.405, 7.4044, 7.4039, 7.4033, 7.4028, 7.4008, 7.4004, 7.3999, 7.3993, 7.3989, 7.3983, 7.3977, 7.3971, 7.3981, 7.3991, 7.3989, 7.3984, 7.3979, 7.3973, 7.3957, 7.3951, 7.3946, 7.3957, 7.3968, 7.3964, 7.3959, 7.3961, 7.3966, 7.3976, 7.3973, 7.3968, 7.3979, 7.3977, 7.3972, 7.3968, 7.3966, 7.396, 7.3955, 7.395, 7.3944, 7.3939, 7.3933, 7.3927, 7.3921, 7.3915, 7.391, 7.3935, 7.3934, 7.3949, 7.3945, 7.3939, 7.3949, 7.3943, 7.3953, 7.3949, 7.3943, 7.3952, 7.3947, 7.3941, 7.3935, 7.3929, 7.3949, 7.3946, 7.3942, 7.3938, 7.3934, 7.3928, 7.3927, 7.3937, 7.3931, 7.3926, 7.3937, 7.3932, 7.3928, 7.3942, 7.3938, 7.3934, 7.3944, 7.394, 7.395, 7.3959, 7.3953, 7.3963, 7.3961, 7.397, 7.3983, 7.3978, 7.3974, 7.3968, 7.3963, 7.3973, 7.3985, 7.3979, 7.3976, 7.3986, 7.3981, 7.3976, 7.3986, 7.3982, 7.3978, 7.3972, 7.3968, 7.3962, 7.3956, 7.3966, 7.3974, 7.3969, 7.3979, 7.3975, 7.397, 7.3966, 7.396, 7.3955, 7.3967, 7.3963, 7.3959, 7.3955, 7.3967, 7.3962, 7.3973, 7.3969, 7.3965, 7.3961, 7.3956, 7.3951, 7.3945, 7.394, 7.3936, 7.3931, 7.3927, 7.3922, 7.3916, 7.3926, 7.3921, 7.3916, 7.3912, 7.3906, 7.3902, 7.3896, 7.389, 7.3899, 7.391, 7.3904, 7.3898, 7.3893, 7.3888, 7.3897, 7.3893, 7.3888, 7.3899, 7.3894, 7.3888, 7.3883, 7.3878, 7.3888, 7.3882, 7.3877, 7.3873, 7.3869, 7.3913, 7.3908, 7.3906, 7.3915, 7.391, 7.3904, 7.3899, 7.3908, 7.3903, 7.3897, 7.3906, 7.3903, 7.3898, 7.3892, 7.3889, 7.3884, 7.3924, 7.3918, 7.3959, 7.3969, 7.3963, 7.3959, 7.3953, 7.3949, 7.4043, 7.4052, 7.4048, 7.4042, 7.4052, 7.4047, 7.4043, 7.4038, 7.4047, 7.4042, 7.4037, 7.4035, 7.4029, 7.4025, 7.4021, 7.4018, 7.4012, 7.4009, 7.4004, 7.3999, 7.3995, 7.3991, 7.3988, 7.3992, 7.3986, 7.4003, 7.4006, 7.4008, 7.4024, 7.4034, 7.403, 7.4045, 7.4042, 7.4038, 7.4034, 7.4031, 7.4027, 7.4023, 7.4018, 7.4, 7.3997, 7.4006, 7.3988, 7.3983, 7.3978, 7.3988, 7.3982, 7.3978, 7.3975, 7.3969, 7.3951, 7.396, 7.3966, 7.3975, 7.3971, 7.398, 7.3977, 7.3972, 7.3967, 7.3963, 7.3958, 7.3953, 7.3961, 7.3946, 7.3962, 7.3962, 7.3958, 7.3968, 7.3964, 7.3959, 7.3955, 7.3952, 7.4007, 7.4002, 7.4001, 7.3996, 7.3991, 7.3985, 7.3981, 7.3976, 7.3972, 7.3967, 7.3963, 7.3958, 7.3953, 7.3948, 7.3944, 7.3939, 7.3936, 7.3931, 7.3927, 7.3922, 7.3931, 7.3928, 7.3937, 7.3932, 7.3927, 7.3923, 7.3918, 7.3914, 7.391, 7.3904, 7.39, 7.3897, 7.3893, 7.3888, 7.3886, 7.3881, 7.3912, 7.3908, 7.3904, 7.3917, 7.3912, 7.3921, 7.3915, 7.391, 7.3904, 7.39, 7.3894, 7.3903, 7.3913, 7.3908, 7.3902, 7.3897, 7.3892, 7.3874, 7.3869, 7.3864, 7.386, 7.3855, 7.3852, 7.3861, 7.3871, 7.3866, 7.3862, 7.3871, 7.3866, 7.3861, 7.3857, 7.3853, 7.3848, 7.3844, 7.3838, 7.3849, 7.3845, 7.384, 7.3834, 7.3828, 7.3828, 7.3825, 7.3848, 7.3844, 7.3839, 7.3834, 7.3858, 7.3853, 7.3848, 7.3844, 7.3859, 7.386, 7.3871, 7.3867, 7.3865, 7.386, 7.3856, 7.3851, 7.3846, 7.3828, 7.3837, 7.3851, 7.3846, 7.3842, 7.384, 7.3836, 7.3846, 7.3841, 7.3836, 7.3831, 7.3826, 7.3822, 7.3817, 7.3812, 7.3806, 7.3791, 7.3801, 7.3797, 7.3793, 7.3801, 7.3809, 7.3838, 7.3834, 7.3829, 7.3826, 7.3827, 7.3822, 7.3817, 7.3813, 7.3809, 7.3821, 7.3818, 7.3812, 7.3821, 7.3816, 7.3825, 7.3819, 7.3815, 7.381, 7.3805, 7.38, 7.381, 7.3805, 7.38, 7.3796, 7.3791, 7.3814, 7.3811, 7.3806, 7.3802, 7.3812, 7.3808, 7.3791, 7.3786, 7.3782, 7.3778, 7.3787, 7.3788, 7.377, 7.3766, 7.3776, 7.3771, 7.3781, 7.3776, 7.3773, 7.3768, 7.3764, 7.3761, 7.377, 7.3773, 7.3768, 7.3765, 7.376, 7.3808, 7.3803, 7.3798, 7.3793, 7.3787, 7.3782, 7.378, 7.3788, 7.3782, 7.3791, 7.38, 7.3795, 7.3805, 7.38, 7.3795, 7.3805, 7.3805, 7.3816, 7.3812, 7.3807, 7.3802, 7.3799, 7.3795, 7.3803, 7.3798, 7.3825, 7.3823, 7.382, 7.3815, 7.381, 7.3807, 7.3803, 7.3799, 7.3796, 7.3806, 7.3802, 7.3811, 7.3807, 7.3815, 7.3825, 7.382, 7.3818, 7.3815, 7.3811, 7.3797, 7.3793, 7.3789, 7.3786, 7.3781, 7.3776, 7.3771, 7.3807, 7.3803, 7.3801, 7.3797, 7.3807, 7.3805, 7.3801, 7.3797, 7.3806, 7.3801, 7.3796, 7.3806, 7.3816, 7.3811, 7.3807, 7.3816, 7.3811, 7.3821, 7.383, 7.3826, 7.3822, 7.3818, 7.3817, 7.3813, 7.3812, 7.3808, 7.3805, 7.3801, 7.3809, 7.3804, 7.38, 7.3797, 7.3806, 7.3803, 7.3798, 7.3806, 7.3801, 7.3797, 7.3807, 7.3817, 7.3812, 7.3808, 7.3803, 7.38, 7.3796, 7.3806, 7.3802, 7.3797, 7.3792, 7.3801, 7.3796, 7.3791, 7.3787, 7.3784, 7.3793, 7.3789, 7.3786, 7.3782, 7.3777, 7.3772, 7.3768, 7.3765, 7.3774, 7.3769, 7.3766, 7.3774, 7.377, 7.3765, 7.3761, 7.3756, 7.3739, 7.3734, 7.3731, 7.3726, 7.3722, 7.3717, 7.3712, 7.3708, 7.3704, 7.37, 7.3696, 7.3691, 7.3686, 7.3681, 7.3691, 7.3686, 7.3696, 7.3705, 7.3714, 7.371, 7.3707, 7.3703, 7.3713, 7.3697, 7.3692, 7.3698, 7.3694, 7.3703, 7.3699, 7.3696, 7.3692, 7.3728, 7.3736, 7.3759, 7.3793, 7.3788, 7.3783, 7.3779, 7.3776, 7.3771, 7.3766, 7.375, 7.3759, 7.3821, 7.3829, 7.3826, 7.3822, 7.3817, 7.3813, 7.3809, 7.3818, 7.3814, 7.3797, 7.3792, 7.3788, 7.3784, 7.3779, 7.3818, 7.3816, 7.3825, 7.3821, 7.3816, 7.3813, 7.3809, 7.3819, 7.3815, 7.381, 7.3819, 7.3816, 7.3811, 7.3808, 7.3816, 7.3812, 7.3809, 7.3806, 7.3801, 7.3797, 7.3806, 7.3804, 7.38, 7.3796, 7.3838, 7.3834, 7.3829, 7.3825, 7.3834, 7.383, 7.3827, 7.3822, 7.383, 7.3826, 7.3822, 7.3817, 7.3826, 7.3821, 7.383, 7.3839, 7.3834, 7.383, 7.3826, 7.3823, 7.3819, 7.3828, 7.3824, 7.3823, 7.3818, 7.3814, 7.3823, 7.3842, 7.3837, 7.3834, 7.3842, 7.3838, 7.3838, 7.3834, 7.3842, 7.384, 7.3836, 7.3834, 7.3822, 7.3817, 7.3813, 7.381, 7.3793, 7.3815, 7.381, 7.3818, 7.3854, 7.385, 7.3848, 7.3843, 7.3842, 7.3858, 7.3854, 7.3863, 7.3886, 7.3916, 7.3901, 7.3897, 7.3893, 7.3902, 7.3898, 7.3894, 7.389, 7.3886, 7.3883, 7.388, 7.3875, 7.387, 7.3868, 7.3864, 7.3865, 7.3848, 7.3844, 7.3853, 7.3862, 7.3858, 7.3854, 7.3852, 7.3847, 7.3844, 7.3852, 7.3847, 7.3844, 7.3839, 7.3836, 7.3849, 7.3844, 7.384, 7.3848, 7.3845, 7.3854, 7.3849, 7.3845, 7.3882, 7.3883, 7.3883, 7.3879, 7.3887, 7.3895, 7.3906, 7.389, 7.3886, 7.3881, 7.3876, 7.3872, 7.3881, 7.3877, 7.3873, 7.3883, 7.3879, 7.3875, 7.387, 7.3866, 7.3862, 7.3859, 7.3867, 7.3862, 7.3857, 7.3869, 7.3865, 7.3864, 7.3859, 7.3867, 7.3862, 7.3857, 7.3853, 7.3861, 7.3844, 7.384, 7.3835, 7.3858, 7.3854, 7.385, 7.3846, 7.3856, 7.3843, 7.3853, 7.385, 7.3846, 7.3842, 7.3838, 7.3834, 7.3829, 7.3825, 7.382, 7.3844, 7.3839, 7.3836, 7.3832, 7.3828, 7.3825, 7.3833, 7.3831, 7.3827, 7.3823, 7.3838, 7.3834, 7.3831, 7.3828, 7.3835, 7.383, 7.3827, 7.3835, 7.3832, 7.3827, 7.3824, 7.382, 7.3818, 7.3831, 7.3827, 7.3823, 7.3808, 7.3804, 7.3826, 7.3822, 7.383, 7.3825, 7.3822, 7.383, 7.3826, 7.3822, 7.3819, 7.3803, 7.3811, 7.3806, 7.3814, 7.3811, 7.3806, 7.3814, 7.3823, 7.3821, 7.3865, 7.3875, 7.3872, 7.388, 7.3888, 7.3884, 7.388, 7.3875, 7.3859, 7.3855, 7.3839, 7.3848, 7.3845, 7.3842, 7.3838, 7.3833, 7.3828, 7.3848, 7.3893, 7.3889, 7.3884, 7.3881, 7.3941, 7.3936, 7.3933, 7.3929, 7.3926, 7.3922, 7.3918, 7.3926, 7.3922, 7.392, 7.3916, 7.3919, 7.3947, 7.3943, 7.394, 7.3936, 7.392, 7.3916, 7.3911, 7.3908, 7.3905, 7.3901, 7.3898, 7.3893, 7.3889, 7.3884, 7.3894, 7.3891, 7.3899, 7.3895, 7.3891, 7.39, 7.3896, 7.3905, 7.3902, 7.3898, 7.3894, 7.3891, 7.3888, 7.3884, 7.388, 7.3879, 7.3876, 7.3884, 7.3892, 7.39, 7.3898, 7.3893, 7.3888, 7.3883, 7.3878, 7.3873, 7.387, 7.3877, 7.3873, 7.3881, 7.3879, 7.3887, 7.3883, 7.3881, 7.387, 7.386, 7.3871, 7.387, 7.3892, 7.3888, 7.3884, 7.3879, 7.3874, 7.3869, 7.3877, 7.3873, 7.3882, 7.3877, 7.3891, 7.3887, 7.3883, 7.3879, 7.3875, 7.3859, 7.3892, 7.3888, 7.3888, 7.3896, 7.3892, 7.3937, 7.3933, 7.3928, 7.3912, 7.3907, 7.3906, 7.3901, 7.3897, 7.3894, 7.3902, 7.3898, 7.3894, 7.3894, 7.391, 7.3906, 7.389, 7.3899, 7.3895, 7.389, 7.3886, 7.3893, 7.3926, 7.3934, 7.3929, 7.3949, 7.3958, 7.3955, 7.395, 7.3957, 7.3954, 7.3974, 7.397, 7.3978, 7.3973, 7.3968, 7.3976, 7.4052, 7.4059, 7.4054, 7.4049, 7.4044, 7.404, 7.4025, 7.402, 7.4016, 7.4012, 7.4008, 7.4004, 7.3999, 7.4006, 7.4014, 7.401, 7.4017, 7.4026, 7.4021, 7.4043, 7.4028, 7.4024, 7.4021, 7.4034, 7.4031, 7.4026, 7.4021, 7.4017, 7.4012, 7.4021, 7.4019, 7.4015, 7.4014, 7.4009, 7.4049, 7.4044, 7.4041, 7.4036, 7.4032, 7.4028, 7.4036, 7.4033, 7.4029, 7.4025, 7.4022, 7.4019, 7.4015, 7.4012, 7.4007, 7.4014, 7.4011, 7.4007, 7.4002, 7.401, 7.4008, 7.4004, 7.4012, 7.4008, 7.4005, 7.399, 7.3986, 7.3971, 7.3971, 7.3972, 7.398, 7.3977, 7.3974, 7.3971, 7.3979, 7.3987, 7.3983, 7.3979, 7.3974, 7.397, 7.3966, 7.3962, 7.3957, 7.3966, 7.3961, 7.3957, 7.3953, 7.3952, 7.3948, 7.3944, 7.3941, 7.3939, 7.3946, 7.3943, 7.3938, 7.3934, 7.3942, 7.3937, 7.3944, 7.3939, 7.3924, 7.3921, 7.3917, 7.3913, 7.3911, 7.3921, 7.3916, 7.3911, 7.3906, 7.3901, 7.3898, 7.3906, 7.3904, 7.39, 7.3895, 7.3892, 7.3887, 7.3895, 7.3903, 7.3911, 7.3907, 7.3904, 7.39, 7.3914, 7.391, 7.3907, 7.3914, 7.3911, 7.3909, 7.3905, 7.3912, 7.3909, 7.3916, 7.3911, 7.3907, 7.3903, 7.3899, 7.3894, 7.3893, 7.3889, 7.3896, 7.3904, 7.3925, 7.3922, 7.3918, 7.3913, 7.391, 7.3906, 7.3902, 7.3898, 7.3894, 7.3901, 7.3909, 7.3905, 7.3903, 7.3899, 7.3907, 7.3904, 7.3911, 7.3907, 7.3903, 7.3901, 7.3897, 7.3893, 7.3892, 7.3888, 7.3884, 7.388, 7.3913, 7.3919, 7.3939, 7.3937, 7.3933, 7.399, 7.3987, 7.3985, 7.3981, 7.3977, 7.3974, 7.3974, 7.3969, 7.3966, 7.3962, 7.3959, 7.3956, 7.3951, 7.3947, 7.3944, 7.394, 7.3935, 7.393, 7.3938, 7.3947, 7.3955, 7.395, 7.3968, 7.3966, 7.3973, 7.397, 7.3971, 7.3983, 7.398, 7.3978, 7.3985, 7.3997, 7.3994, 7.4012, 7.4008, 7.4008, 7.4005, 7.4026, 7.4023, 7.4018, 7.4026, 7.4022, 7.4019, 7.4015, 7.4023, 7.4019, 7.4004, 7.4012, 7.4007, 7.4003, 7.3999, 7.4007, 7.4003, 7.3998, 7.4007, 7.4004, 7.4, 7.3996, 7.3992, 7.3989, 7.3986, 7.3982, 7.3979, 7.3976, 7.3984, 7.3981, 7.3979, 7.3986, 7.3994, 7.3982, 7.3967, 7.3966, 7.3962, 7.3959, 7.3955, 7.3951, 7.3947, 7.3943, 7.3938, 7.3924, 7.3923, 7.392, 7.3916, 7.3912, 7.3908, 7.3904, 7.3902, 7.3898, 7.3887, 7.3888, 7.3884, 7.3891, 7.3887, 7.3883, 7.389, 7.3895, 7.389, 7.3886, 7.3894, 7.3892, 7.3891, 7.3889, 7.3903, 7.3899, 7.3894, 7.3889, 7.3885, 7.3881, 7.3879, 7.3886, 7.3882, 7.3879, 7.3875, 7.3883, 7.3879, 7.3886, 7.3886, 7.3893, 7.3891, 7.3891, 7.3887, 7.3887, 7.3883, 7.3879, 7.3875, 7.3871, 7.3857, 7.3864, 7.386, 7.3856, 7.3852, 7.3859, 7.3855, 7.385, 7.3846, 7.3842, 7.3839, 7.3904, 7.39, 7.3907, 7.3904, 7.393, 7.3931, 7.3927, 7.3923, 7.3965, 7.3961, 7.397, 7.3966, 7.3962, 7.3959, 7.3954, 7.395, 7.3946, 7.3953, 7.3951, 7.3947, 7.3943, 7.3939, 7.3935, 7.3942, 7.394, 7.3937, 7.3933, 7.3929, 7.3926, 7.3933, 7.394, 7.3936, 7.3943, 7.395, 7.3957, 7.3954, 7.3952, 7.3947, 7.3943, 7.395, 7.3958, 7.3954, 7.3951, 7.3967, 7.3998, 7.4006, 7.4013, 7.4009, 7.4016, 7.4013, 7.4011, 7.4007, 7.4014, 7.401, 7.4006, 7.4013, 7.4009, 7.4028, 7.4024, 7.402, 7.4027, 7.4023, 7.4019, 7.4016, 7.4013, 7.401, 7.4008, 7.4016, 7.4012, 7.4008, 7.4015, 7.4011, 7.4008, 7.4007, 7.4016, 7.4012, 7.4009, 7.4005, 7.4002, 7.3998, 7.3995, 7.3991, 7.3987, 7.3983, 7.3979, 7.3975, 7.3972, 7.3968, 7.3976, 7.3972, 7.3978, 7.3974, 7.3983, 7.3979, 7.3976, 7.3974, 7.3982, 7.4041, 7.4037, 7.4045, 7.4053, 7.4049, 7.4045, 7.4041, 7.4049, 7.4046, 7.4043, 7.4041, 7.4048, 7.4046, 7.4054, 7.405, 7.4046, 7.4043, 7.404, 7.4036, 7.4035, 7.4031, 7.4028, 7.4024, 7.4032, 7.4039, 7.4035, 7.4042, 7.4049, 7.4045, 7.4052, 7.4048, 7.4046, 7.4052, 7.4048, 7.4045, 7.4041, 7.4038, 7.4034, 7.403, 7.4027, 7.4023, 7.4031, 7.4038, 7.4034, 7.4031, 7.4028, 7.4014, 7.401, 7.4006, 7.4003, 7.3999, 7.3995, 7.3992, 7.3999, 7.3995, 7.3991, 7.3977, 7.3973, 7.398, 7.3977, 7.3984, 7.398, 7.3987, 7.3994, 7.4001, 7.3997, 7.3993, 7.399, 7.3986, 7.3984, 7.398, 7.3987, 7.3983, 7.3979, 7.3975, 7.3982, 7.3979, 7.3976, 7.3973, 7.3969, 7.3965, 7.3961, 7.3958, 7.3979, 7.3979, 7.3976, 7.3974, 7.398, 7.3979, 7.3975, 7.3971, 7.3957, 7.3964, 7.3971, 7.3988, 7.3986, 7.3973, 7.397, 7.3967, 7.3968, 7.3957, 7.3955, 7.3952, 7.3959, 7.3956, 7.3953, 7.395, 7.3946, 7.3943, 7.394, 7.3939, 7.3935, 7.3932, 7.3929, 7.3925, 7.3921, 7.3917, 7.3913, 7.391, 7.3907, 7.3914, 7.3911, 7.3908, 7.3894, 7.389, 7.3886, 7.3883, 7.3891, 7.3898, 7.3895, 7.3891, 7.3888, 7.3895, 7.3891, 7.3888, 7.3897, 7.3893, 7.389, 7.3898, 7.3908, 7.3904, 7.39, 7.3897, 7.3893, 7.3899, 7.3907, 7.3903, 7.391, 7.3907, 7.3894, 7.3935, 7.3954, 7.3951, 7.3957, 7.3953, 7.396, 7.3957, 7.3953, 7.3951, 7.3947, 7.3944, 7.3941, 7.3938, 7.3924, 7.3921, 7.3918, 7.3915, 7.3911, 7.3919, 7.3916, 7.3912, 7.392, 7.3918, 7.3915, 7.3912, 7.3908, 7.3905, 7.3902, 7.3909, 7.3916, 7.3916, 7.3924, 7.3921, 7.3917, 7.396, 7.3956, 7.3963, 7.397, 7.3977, 7.3973, 7.3969, 7.3976, 7.3972, 7.3968, 7.3975, 7.3971, 7.3967, 7.3973, 7.3969, 7.3966, 7.3973, 7.3969, 7.3965, 7.3972, 7.3979, 7.3976, 7.3982, 7.398, 7.3987, 7.3984, 7.3992, 7.3988, 7.3994, 7.4008, 7.4006, 7.4035, 7.4042, 7.4038, 7.4035, 7.4031, 7.4028, 7.4025, 7.4032, 7.4029, 7.4025, 7.4031, 7.4038, 7.4035, 7.4042, 7.405, 7.4048, 7.4054, 7.4051, 7.4047, 7.4043, 7.405, 7.4056, 7.4053, 7.4049, 7.4047, 7.4044, 7.404, 7.4037, 7.4034, 7.408, 7.4078, 7.4074, 7.4071, 7.4067, 7.4064, 7.4075, 7.4072, 7.409, 7.4087, 7.4084, 7.4123, 7.413, 7.4126, 7.4123, 7.413, 7.4127, 7.4124, 7.4131, 7.4127, 7.4134, 7.413, 7.4126, 7.4133, 7.4129, 7.4138, 7.4134, 7.4142, 7.4149, 7.4156, 7.4153, 7.416, 7.4157, 7.4153, 7.415, 7.4157, 7.4154, 7.415, 7.4147, 7.4144, 7.414, 7.4136, 7.4133, 7.4131, 7.4128, 7.4124, 7.412, 7.4129, 7.4125, 7.4121, 7.4108, 7.4137, 7.4133, 7.4129, 7.4139, 7.4136, 7.4142, 7.4139, 7.4148, 7.4145, 7.4141, 7.4148, 7.4144, 7.415, 7.4146, 7.4152, 7.4149, 7.4145, 7.4141, 7.4149, 7.4145, 7.4152, 7.417, 7.4166, 7.4185, 7.4191, 7.419, 7.4187, 7.4184, 7.4181, 7.4182, 7.4179, 7.4175, 7.4186, 7.4192, 7.4188, 7.4195, 7.4201, 7.42, 7.4198, 7.4194, 7.4195, 7.4192, 7.4188, 7.4185, 7.4181, 7.4187, 7.419, 7.4177, 7.4173, 7.4169, 7.4156, 7.4153, 7.4149, 7.4197, 7.4195, 7.4183, 7.4179, 7.4187, 7.4183, 7.418, 7.4176, 7.4172, 7.418, 7.4177, 7.4184, 7.4201, 7.4198, 7.4194, 7.419, 7.4187, 7.4185, 7.4182, 7.4178, 7.4185, 7.4182, 7.4179, 7.4177, 7.4174, 7.4171, 7.4168, 7.4165, 7.4162, 7.4161, 7.4166, 7.4165, 7.4161, 7.4158, 7.4155, 7.4161, 7.4167, 7.4165, 7.4164, 7.4181, 7.4178, 7.4176, 7.4184, 7.418, 7.4177, 7.4175, 7.4172, 7.4168, 7.4164, 7.4161, 7.4162, 7.4158, 7.4155, 7.4151, 7.4148, 7.4144, 7.414, 7.4127, 7.413, 7.4127, 7.4114, 7.4121, 7.4119, 7.4115, 7.4112, 7.4108, 7.4114, 7.4111, 7.4101, 7.4097, 7.4098, 7.4094, 7.409, 7.4086, 7.4082, 7.4079, 7.4085, 7.4082, 7.4079, 7.4076, 7.4082, 7.4079, 7.4076, 7.4074, 7.408, 7.4077, 7.4074, 7.4081, 7.4077, 7.4074, 7.407, 7.4068, 7.4064, 7.4061, 7.4057, 7.4053, 7.4051, 7.4047, 7.4043, 7.403, 7.4026, 7.4024, 7.4022, 7.4028, 7.4025, 7.4028, 7.4034, 7.4045, 7.4041, 7.4041, 7.4028, 7.4024, 7.4021, 7.4019, 7.4015, 7.4003, 7.3999, 7.3996, 7.3993, 7.3994, 7.399, 7.3987, 7.3983, 7.398, 7.3987, 7.3983, 7.398, 7.3986, 7.3982, 7.3978, 7.3984, 7.398, 7.3986, 7.3985, 7.3983, 7.3981, 7.3987, 7.3993, 7.4003, 7.4038, 7.4034, 7.4033, 7.4034, 7.4032, 7.4028, 7.4024, 7.402, 7.4016, 7.4013, 7.404, 7.4036, 7.4032, 7.4038, 7.4034, 7.4032, 7.4038, 7.4034, 7.403, 7.4026, 7.4043, 7.404, 7.4037, 7.4044, 7.404, 7.4095, 7.4091, 7.4088, 7.4086, 7.4083, 7.408, 7.4079, 7.4075, 7.4071, 7.4067, 7.4064, 7.406, 7.406, 7.4066, 7.4074, 7.4071, 7.4068, 7.4066, 7.4073, 7.4079, 7.4077, 7.4073, 7.407, 7.4066, 7.4063, 7.4062, 7.4059, 7.4056, 7.4082, 7.4078, 7.4065, 7.4061, 7.4058, 7.4064, 7.4061, 7.406, 7.4057, 7.4054, 7.405, 7.4046, 7.4043, 7.4039, 7.4037, 7.4035, 7.4032, 7.403, 7.4027, 7.4034, 7.4032, 7.404, 7.4038, 7.4035, 7.4042, 7.4039, 7.4035, 7.4041, 7.4039, 7.4036, 7.4034, 7.4032, 7.4039, 7.4036, 7.4033, 7.403, 7.4027, 7.4023, 7.4019, 7.4017, 7.4014, 7.4002, 7.3998, 7.3994, 7.399, 7.3986, 7.3995, 7.4003, 7.3999, 7.3996, 7.3994, 7.399, 7.3986, 7.3983, 7.399, 7.3986, 7.3992, 7.3988, 7.3975, 7.3981, 7.3978, 7.3984, 7.3991, 7.3998, 7.4004, 7.4, 7.3996, 7.4002, 7.3998, 7.3994, 7.3991, 7.3989, 7.3986, 7.3974, 7.397, 7.3969, 7.3975, 7.3981, 7.3977, 7.3974, 7.397, 7.3979, 7.3977, 7.3974, 7.3971, 7.3971, 7.3968, 7.3955, 7.3953, 7.3941, 7.3939, 7.3935, 7.3932, 7.3928, 7.3926, 7.3935, 7.3933, 7.3931, 7.3928, 7.3925, 7.3924, 7.3941, 7.3938, 7.3946, 7.3943, 7.394, 7.3937, 7.3933, 7.393, 7.3926, 7.3923, 7.392, 7.3916, 7.3913, 7.3909, 7.3906, 7.3912, 7.3909, 7.3905, 7.3912, 7.3918, 7.3915, 7.3903, 7.3901, 7.3898, 7.3895, 7.3891, 7.3897, 7.3894, 7.3892, 7.3889, 7.3888, 7.3934, 7.3931, 7.3927, 7.3923, 7.392, 7.3917, 7.3914, 7.391, 7.3907, 7.3904, 7.3902, 7.39, 7.3897, 7.3903, 7.3909, 7.3916, 7.3913, 7.392, 7.3919, 7.3926, 7.3933, 7.3949, 7.3956, 7.3954, 7.3951, 7.3948, 7.3946, 7.3981, 7.3977, 7.3983, 7.398, 7.3986, 7.3982, 7.3978, 7.3985, 7.3973, 7.3969, 7.3977, 7.3983, 7.398, 7.3976, 7.3983, 7.3979, 7.3976, 7.3972, 7.3978, 7.3976, 7.3973, 7.3979, 7.3977, 7.3983, 7.399, 7.3988, 7.3995, 7.3991, 7.3991, 7.3987, 7.3984, 7.3982, 7.3981, 7.3979, 7.3985, 7.3987, 7.3983, 7.3983, 7.3981, 7.3979, 7.3977, 7.3965, 7.3961, 7.3973, 7.397, 7.3967, 7.3954, 7.395, 7.3957, 7.3953, 7.3949, 7.3946, 7.3942, 7.3948, 7.3965, 7.3971, 7.3977, 7.3974, 7.3974, 7.397, 7.3968, 7.3966, 7.3962, 7.3968, 7.3978, 7.3975, 7.3976, 7.3964, 7.3961, 7.3957, 7.3945, 7.3942, 7.3938, 7.3952, 7.3963, 7.3959, 7.3955, 7.3952, 7.3949, 7.3947, 7.3954, 7.396, 7.3958, 7.3946, 7.3943, 7.3951, 7.3948, 7.3955, 7.3947, 7.3944, 7.394, 7.3937, 7.3934, 7.3932, 7.3929, 7.3926, 7.3923, 7.3919, 7.3916, 7.3914, 7.3911, 7.3908, 7.3904, 7.3901, 7.3897, 7.3894, 7.3891, 7.3893, 7.39, 7.3906, 7.3913, 7.3901, 7.3905, 7.3904, 7.3911, 7.3908, 7.3904, 7.3922, 7.3919, 7.3918, 7.3906, 7.3894, 7.3882, 7.3878, 7.3885, 7.3882, 7.387, 7.3866, 7.3862, 7.3874, 7.3871, 7.3867, 7.3865, 7.3861, 7.3858, 7.3855, 7.3852, 7.3848, 7.3845, 7.3841, 7.3837, 7.3843, 7.3849, 7.3846, 7.3843, 7.3848, 7.3854, 7.3851, 7.3848, 7.3863, 7.386, 7.3867, 7.3873, 7.3881, 7.3888, 7.3885, 7.3903, 7.3902, 7.3898, 7.3904, 7.391, 7.3908, 7.3914, 7.3912, 7.3908, 7.3905, 7.3902, 7.39, 7.3907, 7.3904, 7.3912, 7.3909, 7.3908, 7.3905, 7.3901, 7.3898, 7.3905, 7.3901, 7.39, 7.3898, 7.3896, 7.3901, 7.3898, 7.3896, 7.3884, 7.3881, 7.3884, 7.388, 7.3876, 7.3872, 7.3869, 7.3866, 7.3863, 7.3859, 7.3856, 7.3844, 7.3841, 7.3838, 7.3846, 7.3843, 7.3842, 7.3839, 7.3844, 7.3859, 7.3855, 7.3851, 7.3847, 7.3844, 7.3841, 7.3837, 7.3834, 7.3831, 7.3828, 7.3824, 7.3866, 7.3862, 7.3858, 7.3855, 7.3861, 7.3859, 7.3847, 7.3844, 7.3841, 7.3838, 7.3835, 7.3832, 7.3833, 7.383, 7.383, 7.3826, 7.3822, 7.3819, 7.3816, 7.3813, 7.3809, 7.3805, 7.3802, 7.38, 7.3803, 7.38, 7.3788, 7.3785, 7.3782, 7.3779, 7.3785, 7.3783, 7.378, 7.3776, 7.3774, 7.3771, 7.3768, 7.3767, 7.3763, 7.3764, 7.3753, 7.3759, 7.3756, 7.3766, 7.3763, 7.376, 7.3759, 7.3768, 7.3765, 7.3762, 7.3768, 7.3764, 7.3761, 7.3758, 7.3754, 7.375, 7.3746, 7.3752, 7.3749, 7.3747, 7.3743, 7.3748, 7.3755, 7.3761, 7.3758, 7.3756, 7.3753, 7.3759, 7.3757, 7.3754, 7.375, 7.3747, 7.3744, 7.375, 7.3747, 7.3744, 7.3741, 7.3738, 7.3728, 7.3735, 7.3733, 7.3732, 7.3739, 7.3744, 7.3751, 7.3748, 7.3745, 7.3743, 7.3742, 7.3741, 7.3737, 7.3734, 7.3731, 7.3729, 7.3727, 7.3733, 7.373, 7.3733, 7.373, 7.3726, 7.3723, 7.3721, 7.3719, 7.3715, 7.3711, 7.3709, 7.3715, 7.3733, 7.373, 7.3735, 7.3732, 7.373, 7.3729, 7.3735, 7.3733, 7.373, 7.3735, 7.3732, 7.3739, 7.3736, 7.3744, 7.3745, 7.3743, 7.374, 7.3738, 7.3727, 7.3733, 7.373, 7.3736, 7.3737, 7.3734, 7.374, 7.3746, 7.3745, 7.3744, 7.374, 7.3738, 7.3726, 7.3723, 7.3719, 7.3716, 7.3713, 7.3718, 7.3714, 7.3711, 7.3708, 7.3726, 7.3723, 7.372, 7.3709, 7.3705, 7.3701, 7.3698, 7.3704, 7.371, 7.3707, 7.3715, 7.372, 7.3717, 7.3715, 7.3713, 7.371, 7.3707, 7.3696, 7.3701, 7.3708, 7.3705, 7.3703, 7.37, 7.3698, 7.3705, 7.3712, 7.3708, 7.3715, 7.3712, 7.3709, 7.3706, 7.3712, 7.3709, 7.3708, 7.3714, 7.3711, 7.3708, 7.3706, 7.3703, 7.3709, 7.3709, 7.3707, 7.3704, 7.3702, 7.3708, 7.3706, 7.3703, 7.3709, 7.3716, 7.3713, 7.371, 7.3707, 7.3712, 7.3709, 7.3706, 7.3704, 7.3703, 7.37, 7.3699, 7.3695, 7.3701, 7.3728, 7.3759, 7.3756, 7.3753, 7.375, 7.3793, 7.379, 7.3787, 7.3784, 7.3786, 7.3783, 7.3781, 7.3779, 7.3776, 7.3773, 7.377, 7.3767, 7.3764, 7.3761, 7.3767, 7.3763, 7.376, 7.3757, 7.3763, 7.376, 7.3757, 7.3762, 7.3766, 7.3763, 7.3766, 7.3764, 7.3763, 7.376, 7.3758, 7.3756, 7.3753, 7.377, 7.3767, 7.3767, 7.3764, 7.3768, 7.3803, 7.3801, 7.3798, 7.3804, 7.3801, 7.3798, 7.38, 7.3798, 7.3795, 7.3802, 7.3799, 7.3796, 7.3801, 7.3807, 7.3804, 7.3801, 7.3807, 7.3804, 7.3801, 7.3798, 7.3816, 7.3814, 7.3813, 7.382, 7.3817, 7.3814, 7.3812, 7.3804, 7.3803, 7.3799, 7.3796, 7.3802, 7.3808, 7.3805, 7.3802, 7.3799, 7.3796, 7.3793, 7.379, 7.3788, 7.3785, 7.3782, 7.3779, 7.3776, 7.3773, 7.377, 7.3768, 7.3765, 7.379, 7.3797, 7.3795, 7.3792, 7.3789, 7.3787, 7.3792, 7.3798, 7.3795, 7.3783, 7.3781, 7.378, 7.3798, 7.3795, 7.3792, 7.3789, 7.3786, 7.3783, 7.3782, 7.3783, 7.378, 7.379, 7.3787, 7.3784, 7.3774, 7.378, 7.3777, 7.3783, 7.3781, 7.3781, 7.3787, 7.3793, 7.379, 7.3786, 7.3782, 7.3787, 7.3785, 7.3782, 7.3779, 7.3784, 7.3781, 7.3778, 7.3775, 7.3772, 7.3769, 7.3775, 7.3781, 7.3778, 7.3775, 7.3773, 7.3762, 7.3759, 7.3755, 7.3752, 7.3758, 7.3756, 7.3753, 7.3752, 7.3749, 7.3755, 7.3753, 7.3759, 7.3765, 7.3762, 7.3759, 7.3755, 7.3761, 7.3767, 7.3764, 7.3771, 7.3778, 7.3776, 7.3783, 7.378, 7.3787, 7.3796, 7.3787, 7.3784, 7.379, 7.3781, 7.3771, 7.3761, 7.3766, 7.3763, 7.376, 7.3776, 7.3775, 7.3773, 7.377, 7.3776, 7.3778, 7.3776, 7.3783, 7.3788, 7.3798, 7.3795, 7.3792, 7.3789, 7.3798, 7.3795, 7.3814, 7.3811, 7.3808, 7.3815, 7.3812, 7.3809, 7.3807, 7.3807, 7.3805, 7.3802, 7.3809, 7.3807, 7.3805, 7.3804, 7.381, 7.3807, 7.3796, 7.3803, 7.3792, 7.3789, 7.3786, 7.3784, 7.3781, 7.3786, 7.3783, 7.379, 7.3796, 7.3794, 7.3791, 7.3797, 7.3794, 7.3791, 7.3789, 7.3786, 7.3792, 7.379, 7.3788, 7.3786, 7.3783, 7.378, 7.3777, 7.3775, 7.3782, 7.3781, 7.3778, 7.3775, 7.3782, 7.3779, 7.3777, 7.3775, 7.3772, 7.3769, 7.3766, 7.3763, 7.3769, 7.3774, 7.3771, 7.3769, 7.3766, 7.3764, 7.3761, 7.3758, 7.3755, 7.3752, 7.3749, 7.3747, 7.3753, 7.375, 7.3747, 7.3753, 7.3752, 7.3758, 7.3756, 7.3761, 7.3758, 7.3756, 7.3753, 7.3759, 7.3756, 7.3764, 7.3762, 7.3759, 7.3758, 7.3763, 7.3769, 7.3768, 7.377, 7.3777, 7.3775, 7.3772, 7.3768, 7.3765, 7.3763, 7.3753, 7.375, 7.3747, 7.3744, 7.3751, 7.3749, 7.3746, 7.3751, 7.3748, 7.3746, 7.3744, 7.375, 7.3747, 7.3736, 7.3742, 7.3739, 7.3745, 7.3742, 7.3739, 7.3736, 7.3733, 7.3738, 7.3736, 7.3733, 7.3731, 7.3728, 7.3726, 7.3732, 7.3738, 7.3735, 7.3749, 7.3746, 7.3751, 7.3748, 7.3753, 7.3758, 7.3755, 7.3752, 7.3749, 7.3755, 7.376, 7.3758, 7.3755, 7.3753, 7.375, 7.3747, 7.3744, 7.3749, 7.3746, 7.3743, 7.374, 7.3737, 7.3734, 7.3739, 7.3738, 7.3735, 7.3732, 7.3729, 7.3726, 7.3724, 7.3713, 7.3702, 7.3699, 7.3696, 7.3693, 7.369, 7.3701, 7.3706, 7.3703, 7.3701, 7.3698, 7.3708, 7.3705, 7.3703, 7.3704, 7.3702, 7.3708, 7.3705, 7.3702, 7.3699, 7.3696, 7.3693, 7.369, 7.3696, 7.3694, 7.3691, 7.3688, 7.3693, 7.3691, 7.3688, 7.3685, 7.3683, 7.368, 7.3678, 7.3675, 7.3673, 7.3671, 7.3661, 7.3667, 7.3672, 7.3685, 7.3683, 7.368, 7.3677, 7.3674, 7.3672, 7.3678, 7.3675, 7.3673, 7.3678, 7.3675, 7.3673, 7.367, 7.3668, 7.3659, 7.3661, 7.3658, 7.3656, 7.3654, 7.366, 7.3659, 7.3657, 7.3675, 7.3673, 7.3674, 7.3674, 7.3672, 7.367, 7.3667, 7.3664, 7.3662, 7.3659, 7.3656, 7.3653, 7.3658, 7.3655, 7.3652, 7.3649, 7.365, 7.3656, 7.3654, 7.3659, 7.3656, 7.3654, 7.3651, 7.3666, 7.3679, 7.3676, 7.3681, 7.3687, 7.3677, 7.3683, 7.368, 7.3686, 7.3683, 7.368, 7.3698, 7.3695, 7.3693, 7.3691, 7.3689, 7.3695, 7.3692, 7.3698, 7.3695, 7.3692, 7.3698, 7.3696, 7.3702, 7.3699, 7.3704, 7.3709, 7.3715, 7.3713, 7.371, 7.3715, 7.372, 7.3717, 7.3714, 7.3719, 7.3717, 7.3714, 7.3712, 7.3718, 7.3724, 7.3722, 7.3727, 7.3725, 7.373, 7.3727, 7.3731, 7.3742, 7.374, 7.3746, 7.3743, 7.3746, 7.3752, 7.3749, 7.3746, 7.3743, 7.3749, 7.3746, 7.3743, 7.374, 7.3738, 7.3735, 7.3732, 7.3729, 7.3726, 7.3732, 7.3729, 7.3735, 7.3741, 7.3738, 7.3735, 7.3748, 7.3745, 7.3742, 7.3756, 7.3769, 7.3774, 7.3772, 7.3777, 7.3783, 7.3789, 7.3786, 7.3784, 7.379, 7.3811, 7.3808, 7.3806, 7.3803, 7.3807, 7.3805, 7.3811, 7.3808, 7.3822, 7.3819, 7.3816, 7.3822, 7.3819, 7.3816, 7.3813, 7.3819, 7.3817, 7.3823, 7.382, 7.3817, 7.3831, 7.3828, 7.3825, 7.3824, 7.3821, 7.3821, 7.3812, 7.3826, 7.3835, 7.3832, 7.3837, 7.3834, 7.3839, 7.3839, 7.3837, 7.3835, 7.3838, 7.3838, 7.3835, 7.384, 7.3837, 7.3851, 7.3848, 7.3854, 7.3859, 7.3857, 7.3846, 7.3843, 7.3841, 7.3855, 7.386, 7.3857, 7.3855, 7.3853, 7.3851, 7.3848, 7.3857, 7.3855, 7.3853, 7.385, 7.3864, 7.387, 7.388, 7.3885, 7.389, 7.3895, 7.3892, 7.3897, 7.3902, 7.3899, 7.3913, 7.3918, 7.3915, 7.3912, 7.3911, 7.3925, 7.3922, 7.3919, 7.3916, 7.3923, 7.3921, 7.3918, 7.3941, 7.3947, 7.3944, 7.3941, 7.3946, 7.3943, 7.3948, 7.3937, 7.3934, 7.3931, 7.3936, 7.3941, 7.393, 7.3919, 7.3916, 7.3913, 7.3911, 7.3908, 7.3906, 7.3911, 7.3916, 7.3914, 7.3919, 7.3924, 7.3921, 7.3919, 7.3917, 7.3922, 7.3919, 7.3916, 7.3914, 7.3911, 7.3916, 7.3913, 7.3918, 7.3939, 7.3944, 7.3949, 7.3955, 7.3953, 7.3962, 7.3959, 7.3956, 7.3953, 7.395, 7.3947, 7.3944, 7.3949, 7.3946, 7.3943, 7.3933, 7.3938, 7.3935, 7.3933, 7.3938, 7.3935, 7.3932, 7.3922, 7.3919, 7.3924, 7.3931, 7.3928, 7.3933, 7.393, 7.3935, 7.3932, 7.3929, 7.3927, 7.3932, 7.3937, 7.3959, 7.3956, 7.3961, 7.3958, 7.3955, 7.396, 7.3958, 7.3964, 7.3978, 7.3983, 7.398, 7.3977, 7.4001, 7.4001, 7.3999, 7.3996, 7.3993, 7.3998, 7.4003, 7.4, 7.3997, 7.4002, 7.4016, 7.4013, 7.4026, 7.4023, 7.4013, 7.4025, 7.4022, 7.402, 7.4035, 7.4033, 7.4031, 7.4036, 7.4042, 7.4047, 7.406, 7.4057, 7.4064, 7.4063, 7.4062, 7.4059, 7.4064, 7.4088, 7.4094, 7.4084, 7.4074, 7.4079, 7.4077, 7.4074, 7.4072, 7.407, 7.4067, 7.4065, 7.4054, 7.4057, 7.4062, 7.4067, 7.4068, 7.4058, 7.4055, 7.4068, 7.4065, 7.4062, 7.4063, 7.406, 7.4065, 7.4062, 7.4075, 7.408, 7.4077, 7.4082, 7.4072, 7.408, 7.4077, 7.4082, 7.408, 7.4077, 7.4082, 7.408, 7.4089, 7.4122, 7.4122, 7.412, 7.4126, 7.4123, 7.4126, 7.4124, 7.4122, 7.4127, 7.4125, 7.4122, 7.4159, 7.4156, 7.4154, 7.4151, 7.4164, 7.4167, 7.4172, 7.4169, 7.4174, 7.418, 7.4182, 7.4182, 7.4179, 7.4177, 7.4182, 7.4195, 7.4193, 7.419, 7.4187, 7.4192, 7.4204, 7.4209, 7.4207, 7.4204, 7.4209, 7.4206, 7.4204, 7.4209, 7.4206, 7.4203, 7.4224, 7.4229, 7.4233, 7.4238, 7.4251, 7.4248, 7.4253, 7.425, 7.4247, 7.4244, 7.4244, 7.4241, 7.4255, 7.426, 7.4257, 7.4254, 7.4252, 7.4257, 7.4255, 7.4252, 7.4249, 7.4246, 7.4245, 7.4258, 7.4255, 7.4253, 7.4258, 7.4255, 7.4253, 7.4251, 7.4249, 7.4247, 7.4237, 7.4258, 7.4271, 7.4276, 7.4273, 7.427, 7.4267, 7.4272, 7.4269, 7.4267, 7.4265, 7.4262, 7.4267, 7.4281, 7.4278, 7.4282, 7.4279, 7.4276, 7.4273, 7.427, 7.4267, 7.4264, 7.4261, 7.4258, 7.4255, 7.426, 7.4257, 7.4255, 7.426, 7.4265, 7.4262, 7.4266, 7.4288, 7.4298, 7.4295, 7.43, 7.4298, 7.4296, 7.4295, 7.4292, 7.4282, 7.4279, 7.4284, 7.4281, 7.4271, 7.4276, 7.4281, 7.4278, 7.4275, 7.4272, 7.427, 7.4267, 7.4264, 7.4261, 7.4282, 7.4279, 7.4276, 7.4282, 7.4281, 7.428, 7.4277, 7.4275, 7.4272, 7.427, 7.4267, 7.4265, 7.4263, 7.4276, 7.4273, 7.4272, 7.427, 7.4277, 7.4275, 7.4273, 7.4278, 7.4283, 7.428, 7.4285, 7.429, 7.4287, 7.4292, 7.4297, 7.4295, 7.4292, 7.4289, 7.4286, 7.43, 7.4301, 7.4314, 7.4312, 7.431, 7.4302, 7.4309, 7.4306, 7.4303, 7.4304, 7.4302, 7.43, 7.4307, 7.4305, 7.4317, 7.4314, 7.4312, 7.4316, 7.4321, 7.4318, 7.4315, 7.4313, 7.4311, 7.4309, 7.4307, 7.4304, 7.4301, 7.43, 7.43, 7.4297, 7.4295, 7.4292, 7.4289, 7.4287, 7.4284, 7.4282, 7.4288, 7.4286], '192.168.122.112': [5.4202, 6.2515, 6.1023, 5.8725, 5.8261, 10.7058, 10.0803, 10.1693, 9.6466, 9.2161, 8.8563, 9.5172, 9.207, 8.9316, 8.7104, 8.5289, 8.3957, 8.2358, 8.0847, 8.2776, 8.1721, 8.0545, 7.9396, 7.6274, 7.5317, 7.5248, 7.448, 7.3754, 7.31, 7.4324, 7.4697, 7.4219, 7.3881, 7.3282, 7.4518, 7.5423, 7.4863, 7.7203, 7.675, 7.6369, 7.5901, 7.5441, 7.3829, 7.2276, 7.316, 7.2793, 7.2512, 7.2142, 7.4183, 7.376, 7.3878, 7.4389, 7.5141, 7.4855, 7.5549, 7.5252, 7.6843, 7.647, 7.6155, 7.5832, 7.5569, 7.6124, 7.5822, 7.5473, 7.675, 7.7249, 7.6942, 7.6614, 7.7218, 7.8317, 7.7964, 7.764, 7.7766, 7.7445, 7.7317, 7.8189, 7.7427, 7.7413, 7.7812, 7.7615, 7.731, 7.701, 7.7385, 7.7181, 7.7545, 7.7446, 7.7781, 7.7514, 7.8014, 7.7753, 7.7598, 7.7352, 7.8038, 7.7836, 7.8159, 7.8456, 7.8577, 7.8891, 7.8654, 7.8938, 7.8692, 7.8437, 7.8204, 7.7966, 7.7757, 7.7527, 7.7365, 7.7145, 7.7064, 7.6888, 7.6693, 7.6559, 7.6376, 7.6747, 7.6634, 7.6432, 7.6253, 7.6094, 7.7492, 7.7455, 7.8577, 7.8419, 7.829, 7.8083, 7.7937, 7.7762, 7.7624, 7.7458, 7.7333, 7.7883, 7.7711, 7.7904, 7.816, 7.8016, 7.7834, 7.8032, 7.789, 7.7719, 7.7936, 7.7814, 7.771, 7.7555, 7.7639, 7.7541, 7.7397, 7.7276, 7.7113, 7.6948, 7.679, 7.6655, 7.6866, 7.6702, 7.691, 7.6777, 7.6622, 7.6831, 7.6797, 7.6705, 7.6575, 7.7125, 7.7984, 7.7827, 7.7719, 7.7592, 7.7777, 7.8141, 7.8027, 7.7899, 7.7748, 7.7834, 7.8015, 7.7884, 7.7737, 7.7599, 7.7203, 7.7092, 7.7267, 7.7159, 7.7094, 7.6689, 7.6571, 7.6451, 7.6322, 7.6218, 7.6091, 7.5989, 7.5887, 7.5768, 7.565, 7.5857, 7.6308, 7.6216, 7.6903, 7.7834, 7.7738, 7.7644, 7.7843, 7.7979, 7.789, 7.7775, 7.7659, 7.7932, 7.8081, 7.8106, 7.799, 7.7877, 7.7765, 7.7422, 7.7325, 7.7235, 7.737, 7.944, 7.9858, 7.973, 8.0313, 8.021, 7.9916, 8.0552, 8.0441, 8.0354, 8.0249, 8.013, 8.0256, 8.0377, 8.0252, 8.0158, 8.0079, 8.0034, 7.9925, 7.9822, 7.9723, 7.9626, 7.9521, 7.9411, 7.9301, 7.9445, 7.9551, 7.9515, 7.945, 7.9361, 7.9252, 7.9401, 7.9317, 7.9449, 7.9374, 7.9315, 7.9222, 7.9118, 7.9024, 7.8933, 7.9046, 7.8965, 7.8898, 7.9011, 7.9133, 7.9062, 7.9222, 7.9364, 7.9289, 7.9397, 7.9316, 7.9237, 7.9173, 7.9122, 7.9046, 7.8996, 7.8913, 7.8837, 7.8752, 7.8688, 7.8632, 7.8558, 7.8474, 7.8388, 7.8323, 7.8244, 7.8406, 7.8528, 7.8463, 7.8442, 7.835, 7.8459, 7.8413, 7.8337, 7.8457, 7.8581, 7.8705, 7.8635, 7.8559, 7.8667, 7.8591, 7.8546, 7.8471, 7.8397, 7.8511, 7.8426, 7.8529, 7.8493, 7.8436, 7.8386, 7.8468, 7.8382, 7.831, 7.8416, 7.8341, 7.827, 7.8359, 7.8457, 7.8374, 7.8469, 7.8388, 7.8308, 7.8237, 7.8184, 7.8107, 7.803, 7.7955, 7.7906, 7.8001, 7.7928, 7.785, 7.7778, 7.7873, 7.7797, 7.7738, 7.7524, 7.7452, 7.7387, 7.7329, 7.7258, 7.7184, 7.7257, 7.752, 7.7464, 7.7731, 7.7851, 7.7796, 7.7644, 7.7471, 7.7412, 7.7344, 7.7278, 7.7222, 7.7167, 7.7102, 7.7039, 7.7357, 7.7303, 7.7476, 7.7419, 7.7448, 7.7403, 7.7496, 7.7431, 7.7382, 7.7316, 7.7282, 7.7216, 7.7182, 7.7115, 7.7453, 7.7391, 7.7327, 7.7418, 7.7354, 7.7295, 7.7229, 7.7315, 7.7268, 7.7352, 7.7311, 7.7411, 7.7344, 7.7282, 7.7219, 7.717, 7.716, 7.7109, 7.7049, 7.7199, 7.7161, 7.7098, 7.7198, 7.7422, 7.7374, 7.7192, 7.7142, 7.708, 7.7221, 7.7171, 7.7113, 7.713, 7.7205, 7.7144, 7.7085, 7.7152, 7.7232, 7.7174, 7.7114, 7.7062, 7.7005, 7.6963, 7.6902, 7.6723, 7.6664, 7.6606, 7.6558, 7.6635, 7.6706, 7.6653, 7.6605, 7.655, 7.6507, 7.6474, 7.6418, 7.6485, 7.6439, 7.6396, 7.6369, 7.6311, 7.6257, 7.6201, 7.6149, 7.6106, 7.6075, 7.6022, 7.5978, 7.5928, 7.5888, 7.5832, 7.5808, 7.5772, 7.5722, 7.5799, 7.5746, 7.5695, 7.566, 7.561, 7.5792, 7.5787, 7.5741, 7.5688, 7.5637, 7.5713, 7.5676, 7.5628, 7.5697, 7.5768, 7.5951, 7.5904, 7.5756, 7.5704, 7.5664, 7.5793, 7.5865, 7.5836, 7.594, 7.5901, 7.5862, 7.5824, 7.5789, 7.5853, 7.5926, 7.5882, 7.5834, 7.5796, 7.5751, 7.5816, 7.5817, 7.5886, 7.5852, 7.5816, 7.5886, 7.5848, 7.5917, 7.5872, 7.5823, 7.5778, 7.5847, 7.5918, 7.5874, 7.5839, 7.5906, 7.586, 7.6047, 7.6, 7.5953, 7.5916, 7.598, 7.6156, 7.6107, 7.6071, 7.6132, 7.6192, 7.6255, 7.6752, 7.6828, 7.6788, 7.6856, 7.6883, 7.6838, 7.6798, 7.6752, 7.6608, 7.6673, 7.6759, 7.6719, 7.6694, 7.675, 7.6711, 7.6668, 7.6622, 7.651, 7.6568, 7.6525, 7.6487, 7.6466, 7.6434, 7.6391, 7.6453, 7.6506, 7.6472, 7.6531, 7.6503, 7.6476, 7.6452, 7.6319, 7.6189, 7.6159, 7.6124, 7.6084, 7.6139, 7.6098, 7.6055, 7.6023, 7.5988, 7.5952, 7.5923, 7.5948, 7.5904, 7.5861, 7.5827, 7.5801, 7.5979, 7.5953, 7.5928, 7.6029, 7.592, 7.5901, 7.5867, 7.6036, 7.6102, 7.5974, 7.5933, 7.6, 7.5964, 7.5958, 7.5942, 7.5903, 7.6062, 7.6319, 7.6369, 7.6333, 7.6394, 7.6351, 7.631, 7.6277, 7.6329, 7.6288, 7.6251, 7.6227, 7.6285, 7.6245, 7.6295, 7.6254, 7.6215, 7.6269, 7.6325, 7.6284, 7.6334, 7.6299, 7.6354, 7.6324, 7.6308, 7.6364, 7.6418, 7.638, 7.634, 7.6395, 7.6635, 7.6594, 7.6558, 7.6519, 7.6402, 7.6464, 7.6433, 7.6394, 7.6358, 7.6497, 7.6467, 7.6722, 7.6685, 7.6666, 7.6725, 7.6685, 7.6654, 7.6894, 7.6857, 7.6831, 7.6794, 7.6763, 7.6725, 7.6685, 7.6653, 7.6615, 7.6651, 7.6698, 7.666, 7.6622, 7.6588, 7.6561, 7.6523, 7.6485, 7.6453, 7.6414, 7.6461, 7.6424, 7.6477, 7.644, 7.6403, 7.6291, 7.6255, 7.6302, 7.6273, 7.6237, 7.6204, 7.6211, 7.6181, 7.6234, 7.6395, 7.6372, 7.6446, 7.6416, 7.6381, 7.6347, 7.631, 7.6357, 7.6322, 7.6292, 7.6342, 7.631, 7.6279, 7.6251, 7.6217, 7.6196, 7.6167, 7.6215, 7.6184, 7.6232, 7.6287, 7.6254, 7.6226, 7.6285, 7.6262, 7.6247, 7.6217, 7.6183, 7.6158, 7.6126, 7.6094, 7.607, 7.6034, 7.618, 7.6239, 7.6213, 7.6189, 7.6163, 7.6134, 7.61, 7.6069, 7.6039, 7.6005, 7.5973, 7.5944, 7.5918, 7.5964, 7.5933, 7.5938, 7.591, 7.5877, 7.5937, 7.5906, 7.5877, 7.5848, 7.5818, 7.5791, 7.5768, 7.5742, 7.5717, 7.5686, 7.5657, 7.5639, 7.5691, 7.5663, 7.563, 7.568, 7.5722, 7.5704, 7.575, 7.5651, 7.5619, 7.5592, 7.556, 7.5537, 7.5506, 7.5548, 7.5516, 7.5484, 7.5455, 7.5431, 7.5418, 7.5407, 7.5382, 7.5422, 7.5413, 7.5455, 7.5423, 7.5395, 7.5299, 7.5272, 7.5389, 7.5657, 7.5629, 7.5603, 7.5571, 7.554, 7.5511, 7.5592, 7.5562, 7.5536, 7.5508, 7.5484, 7.5459, 7.5512, 7.5486, 7.5507, 7.5484, 7.5459, 7.5441, 7.5425, 7.547, 7.5442, 7.5425, 7.5476, 7.546, 7.5432, 7.5428, 7.5398, 7.5377, 7.5349, 7.5391, 7.5435, 7.5481, 7.5525, 7.5498, 7.5469, 7.5464, 7.5443, 7.5488, 7.5468, 7.5533, 7.5578, 7.5551, 7.5595, 7.5571, 7.555, 7.5639, 7.5684, 7.5593, 7.5572, 7.5549, 7.5463, 7.551, 7.5486, 7.5531, 7.5515, 7.5489, 7.5536, 7.5585, 7.5577, 7.555, 7.5526, 7.5568, 7.5608, 7.5581, 7.5556, 7.5529, 7.5503, 7.5475, 7.5514, 7.5487, 7.5527, 7.5564, 7.5607, 7.558, 7.5553, 7.5527, 7.5507, 7.5482, 7.5527, 7.5508, 7.5488, 7.5463, 7.5437, 7.5473, 7.5457, 7.5436, 7.5409, 7.5393, 7.5373, 7.5346, 7.5325, 7.5297, 7.5325, 7.5305, 7.5287, 7.5262, 7.5237, 7.5213, 7.5187, 7.5237, 7.5217, 7.5195, 7.5177, 7.5214, 7.5193, 7.5199, 7.5174, 7.5168, 7.5144, 7.5118, 7.5094, 7.5126, 7.5115, 7.5154, 7.5131, 7.5175, 7.5149, 7.5184, 7.517, 7.5206, 7.5182, 7.5156, 7.5191, 7.5176, 7.5155, 7.5191, 7.5165, 7.5139, 7.5175, 7.5149, 7.5129, 7.5103, 7.5085, 7.5063, 7.5037, 7.5012, 7.4988, 7.4973, 7.4973, 7.4953, 7.4926, 7.4964, 7.4952, 7.4932, 7.4924, 7.4901, 7.4878, 7.4857, 7.4836, 7.4882, 7.4992, 7.498, 7.496, 7.4959, 7.4944, 7.5043, 7.5047, 7.5022, 7.5059, 7.5035, 7.501, 7.4987, 7.5023, 7.506, 7.5039, 7.507, 7.5106, 7.5141, 7.5118, 7.5098, 7.5075, 7.5051, 7.5027, 7.5062, 7.5043, 7.5023, 7.5, 7.4977, 7.496, 7.4937, 7.4913, 7.4899, 7.4875, 7.4853, 7.4831, 7.4813, 7.4803, 7.4793, 7.4844, 7.482, 7.4796, 7.4778, 7.4762, 7.4739, 7.4792, 7.4777, 7.4894, 7.4873, 7.4858, 7.4959, 7.4963, 7.494, 7.4931, 7.491, 7.4892, 7.4878, 7.4856, 7.4859, 7.4849, 7.4833, 7.4869, 7.4906, 7.4942, 7.4979, 7.4961, 7.494, 7.4925, 7.4965, 7.4943, 7.4922, 7.485, 7.4829, 7.4865, 7.4957, 7.505, 7.5083, 7.5065, 7.5042, 7.5025, 7.4952, 7.4929, 7.4872, 7.4856, 7.4836, 7.4819, 7.4797, 7.4728, 7.4763, 7.4742, 7.4727, 7.474, 7.4726, 7.4729, 7.4707, 7.4688, 7.472, 7.4703, 7.4681, 7.4665, 7.4651, 7.4632, 7.464, 7.4618, 7.4611, 7.4589, 7.4568, 7.4551, 7.4533, 7.4565, 7.4551, 7.4531, 7.4562, 7.4563, 7.4542, 7.4523, 7.4538, 7.452, 7.4516, 7.4495, 7.4474, 7.4454, 7.451, 7.4445, 7.439, 7.442, 7.4455, 7.4435, 7.4467, 7.4445, 7.4429, 7.4473, 7.4452, 7.4436, 7.4475, 7.4509, 7.4489, 7.4477, 7.446, 7.4444, 7.443, 7.4409, 7.4343, 7.4396, 7.4377, 7.4363, 7.4402, 7.4441, 7.442, 7.44, 7.4386, 7.4371, 7.436, 7.4294, 7.4282, 7.4314, 7.4298, 7.4327, 7.4356, 7.434, 7.4321, 7.4309, 7.4289, 7.4323, 7.4415, 7.4445, 7.4475, 7.4458, 7.4499, 7.4492, 7.4521, 7.4509, 7.452, 7.4533, 7.4512, 7.4493, 7.4473, 7.4453, 7.444, 7.4428, 7.4417, 7.4403, 7.4392, 7.4377, 7.4368, 7.435, 7.4332, 7.4362, 7.4392, 7.4412, 7.4399, 7.4379, 7.4362, 7.4342, 7.428, 7.4314, 7.4364, 7.4349, 7.4353, 7.4386, 7.4382, 7.4379, 7.4361, 7.4343, 7.4324, 7.4262, 7.4249, 7.4239, 7.427, 7.4301, 7.4289, 7.4329, 7.431, 7.4298, 7.4286, 7.4267, 7.425, 7.4236, 7.4219, 7.42, 7.4183, 7.4164, 7.4149, 7.4138, 7.4124, 7.4152, 7.4134, 7.4121, 7.4104, 7.4086, 7.4122, 7.4107, 7.409, 7.4079, 7.4062, 7.4042, 7.4031, 7.4066, 7.4056, 7.4041, 7.4025, 7.4059, 7.4094, 7.4083, 7.4069, 7.4056, 7.404, 7.4076, 7.4061, 7.4094, 7.4079, 7.4071, 7.4056, 7.4089, 7.4079, 7.4107, 7.4089, 7.412, 7.4111, 7.4097, 7.4079, 7.4065, 7.4051, 7.4038, 7.4048, 7.4031, 7.4015, 7.407, 7.4056, 7.4047, 7.4034, 7.4072, 7.4059, 7.4046, 7.4073, 7.4063, 7.4047, 7.4075, 7.407, 7.4104, 7.4087, 7.4071, 7.4102, 7.4087, 7.4073, 7.406, 7.4043, 7.4073, 7.4055, 7.4043, 7.4026, 7.4009, 7.4035, 7.4023, 7.4102, 7.4087, 7.4072, 7.4056, 7.4039, 7.4021, 7.4003, 7.404, 7.4039, 7.403, 7.4017, 7.3999, 7.3983, 7.3973, 7.398300000000001, 7.3975, 7.396, 7.3991, 7.3978, 7.3972, 7.3959, 7.3991, 7.4022, 7.4006, 7.4034, 7.406, 7.4052, 7.4039, 7.4071, 7.4081, 7.4064, 7.4047, 7.4031, 7.4013, 7.3997, 7.3984, 7.3975, 7.3957, 7.4029, 7.4011, 7.404, 7.4022, 7.4181, 7.4167, 7.4163, 7.4188, 7.417, 7.4199, 7.4182, 7.4206, 7.4234, 7.4264, 7.4288, 7.427, 7.4333, 7.4363, 7.439, 7.438, 7.4363, 7.439, 7.4373, 7.44, 7.4386, 7.4415, 7.4399, 7.4458, 7.444, 7.4435, 7.4463, 7.449, 7.4476, 7.4462, 7.4452, 7.448, 7.4462, 7.4445, 7.443, 7.4418, 7.4446, 7.4391, 7.4457, 7.4458, 7.4466, 7.445, 7.4433, 7.4504, 7.4488, 7.4473, 7.4498, 7.4484, 7.4507, 7.449, 7.4474, 7.4459, 7.4486, 7.4469, 7.4496, 7.448, 7.4477, 7.4462, 7.4489, 7.4473, 7.4459, 7.4446, 7.4462, 7.4446, 7.4442, 7.439, 7.4417, 7.449, 7.4517, 7.4507, 7.4494, 7.45, 7.4528, 7.4555, 7.4551, 7.4539, 7.4565, 7.4512, 7.4498, 7.4497, 7.4541, 7.4563, 7.4549, 7.4575, 7.4562, 7.4554, 7.4582, 7.4636, 7.4624, 7.4611, 7.4598, 7.4585, 7.4571, 7.4598, 7.459, 7.4546, 7.4569, 7.4557, 7.4582, 7.4566, 7.4558, 7.4543, 7.4569, 7.4553, 7.4591, 7.4577, 7.4682, 7.4749, 7.4734, 7.4692, 7.4683, 7.4667, 7.465, 7.4634, 7.4618, 7.4605, 7.4595, 7.4622, 7.4611, 7.4757, 7.4781, 7.4768, 7.4753, 7.4741, 7.4765, 7.4752, 7.4776, 7.4761, 7.4798, 7.4829, 7.4821, 7.4808, 7.4757, 7.4741, 7.4727, 7.4715, 7.4699, 7.4685, 7.4675, 7.4662, 7.4646, 7.4635, 7.4623, 7.461, 7.4594, 7.4619, 7.4607, 7.4556, 7.454, 7.4525, 7.451, 7.4499, 7.4484, 7.4468, 7.4651, 7.4642, 7.4668, 7.4655, 7.4658, 7.4646, 7.4629, 7.4618, 7.4603, 7.459, 7.4578, 7.4578, 7.4562, 7.4551, 7.4539, 7.4527, 7.4553, 7.4544, 7.4565, 7.4589, 7.4642, 7.4664, 7.4705, 7.4689, 7.4715, 7.4699, 7.4685, 7.4673, 7.4662, 7.4649, 7.4634, 7.462, 7.4605, 7.4595, 7.4619, 7.4608, 7.4593, 7.4618, 7.4605, 7.4559, 7.4584, 7.4651, 7.4639, 7.4623, 7.4647, 7.4634, 7.4662, 7.4614, 7.4638, 7.4629, 7.4695, 7.4712, 7.4699, 7.4685, 7.4702, 7.4689, 7.468, 7.4631, 7.4616, 7.4649, 7.4635, 7.4658, 7.4644, 7.4632, 7.4617, 7.4642, 7.463, 7.4654, 7.4639, 7.4627, 7.4687, 7.4713, 7.4734, 7.4722, 7.4745, 7.4733, 7.4719, 7.4746, 7.4737, 7.4727, 7.4716, 7.4778, 7.4766, 7.4791, 7.4816, 7.4801, 7.4822, 7.4846, 7.4906, 7.4901, 7.4891, 7.4987, 7.4976, 7.4962, 7.4951, 7.4937, 7.4988, 7.4993, 7.5014, 7.5146, 7.5135, 7.5124, 7.5195, 7.5179, 7.5183, 7.517, 7.5193, 7.5185, 7.5173, 7.5256, 7.5246, 7.5268, 7.5257, 7.5243, 7.5264, 7.5253, 7.5238, 7.5192, 7.5178, 7.5167, 7.5153, 7.5139, 7.5124, 7.5114, 7.5136, 7.5125, 7.5111, 7.5132, 7.5118, 7.5103, 7.5092, 7.5078, 7.5101, 7.5122, 7.5076, 7.5064, 7.5049, 7.5037, 7.5026, 7.5011, 7.4998, 7.4991, 7.5014, 7.5004, 7.4993, 7.498, 7.497, 7.4957, 7.4947, 7.4934, 7.4957, 7.4911, 7.4902, 7.4925, 7.4912, 7.4937, 7.496, 7.4947, 7.4938, 7.4962, 7.499, 7.4982, 7.4968, 7.4956, 7.4944, 7.4967, 7.4956, 7.4956, 7.4942, 7.4964, 7.4986, 7.4972, 7.4962, 7.4985, 7.4941, 7.4952, 7.4942, 7.4928, 7.4916, 7.494, 7.493, 7.4919, 7.491, 7.4904, 7.4896, 7.4886, 7.4914, 7.4903, 7.4926, 7.4915, 7.4909, 7.4932, 7.4922, 7.4909, 7.4933, 7.4955, 7.5011, 7.5035, 7.5024, 7.5044, 7.5031, 7.5025, 7.5054, 7.5043, 7.5029, 7.5017, 7.5003, 7.4995, 7.5014, 7.4999, 7.4988, 7.4974, 7.4978, 7.4997, 7.4986, 7.4973, 7.4931, 7.4955, 7.4944, 7.4932, 7.4919, 7.491, 7.4902, 7.4923, 7.491, 7.4931, 7.492, 7.4924, 7.4915, 7.4904, 7.4964, 7.4957, 7.5075, 7.5094, 7.5082, 7.5074, 7.5095, 7.5114, 7.5103, 7.5091, 7.5084, 7.5074, 7.5068, 7.5055, 7.5042, 7.503, 7.5018, 7.5014, 7.5016, 7.5009, 7.4998, 7.4985, 7.4974, 7.4969, 7.4961, 7.4981, 7.5, 7.4986, 7.5008, 7.503, 7.505, 7.5037, 7.5062, 7.5049, 7.5038, 7.4997, 7.4989, 7.4982, 7.497, 7.4991, 7.4982, 7.4969, 7.4956, 7.4946, 7.4935, 7.4922, 7.4912, 7.4904, 7.4925, 7.4947, 7.4939, 7.4928, 7.4915, 7.4932, 7.4926, 7.4913, 7.4933, 7.4924, 7.4914, 7.4914, 7.4901, 7.4889, 7.4875, 7.4863, 7.4849, 7.4837, 7.4824, 7.4813, 7.4834, 7.4823, 7.4816, 7.4852, 7.4817, 7.4808, 7.4799, 7.4792, 7.4812, 7.4839, 7.4863, 7.4921, 7.4911, 7.4931, 7.4921, 7.4909, 7.4902, 7.489, 7.4879, 7.4869, 7.4916, 7.497, 7.4985, 7.5005, 7.5026, 7.5064, 7.5085, 7.5072, 7.5091, 7.5081, 7.5107, 7.5128, 7.5149, 7.5136, 7.5124, 7.5115, 7.5114, 7.5108, 7.5096, 7.5086, 7.5076, 7.5095, 7.5085, 7.5102, 7.5246, 7.5263, 7.5281, 7.5269, 7.5289, 7.5277, 7.5264, 7.5252, 7.5239, 7.5228, 7.5216, 7.5212, 7.5236, 7.5252, 7.5242, 7.5231, 7.5249, 7.5238, 7.5226, 7.5214, 7.5201, 7.5221, 7.5209, 7.5171, 7.519, 7.5251, 7.5269, 7.5257, 7.528, 7.5309, 7.5297, 7.5297, 7.529, 7.5309, 7.53, 7.5289, 7.5277, 7.5265, 7.5254, 7.5245, 7.5263, 7.525, 7.5238, 7.5225, 7.5244, 7.5232, 7.5221, 7.5208, 7.5227, 7.5218, 7.5225, 7.5213, 7.5201, 7.519, 7.5179, 7.5168, 7.5163, 7.5153, 7.5142, 7.5105, 7.5119, 7.5108, 7.5097, 7.5088, 7.5078, 7.5071, 7.506, 7.5048, 7.5036, 7.5055, 7.5073, 7.5107, 7.5095, 7.5085, 7.5075, 7.5063, 7.5054, 7.5045, 7.5039, 7.5028, 7.5022, 7.5009, 7.4998, 7.4988, 7.4979, 7.4997, 7.5026, 7.5015, 7.5003, 7.4992, 7.4987, 7.4976, 7.4966, 7.4955, 7.4945, 7.4965, 7.4972, 7.5, 7.5062, 7.5064, 7.5113, 7.5106, 7.5097, 7.5059, 7.5078, 7.5066, 7.5054, 7.5016, 7.4978, 7.4973, 7.4993, 7.4954, 7.4942, 7.493, 7.4919, 7.4907, 7.4896, 7.4887, 7.4876, 7.4896, 7.4916, 7.4935, 7.4925, 7.4948, 7.4937, 7.4936, 7.4924, 7.4916, 7.4904, 7.4893, 7.4912, 7.4902, 7.4919, 7.4908, 7.4947, 7.494, 7.4929, 7.4918, 7.4908, 7.4901, 7.4891, 7.491, 7.4898, 7.4916, 7.4906, 7.4895, 7.4886, 7.4881, 7.487, 7.4861, 7.4853, 7.4847, 7.4836, 7.48, 7.4795, 7.4789, 7.4807, 7.4825, 7.4846, 7.4835, 7.4853, 7.4817, 7.4807, 7.4797, 7.4813, 7.4802, 7.4792, 7.4783, 7.4773, 7.4765, 7.4754, 7.4742, 7.4763, 7.4753, 7.4755, 7.4772, 7.4818, 7.4844, 7.4845, 7.4868, 7.4871, 7.4878, 7.4867, 7.4858, 7.4876, 7.4894, 7.4885, 7.4959, 7.4943, 7.4989, 7.5007, 7.5022, 7.501, 7.5025, 7.5016, 7.5009, 7.5003, 7.4994, 7.5016, 7.5034, 7.5132, 7.5233, 7.5225, 7.5217, 7.5208, 7.5199, 7.5165, 7.5156, 7.5184, 7.5183, 7.52, 7.5193, 7.5182, 7.5284, 7.533, 7.532, 7.5309, 7.5351, 7.5344, 7.5337, 7.5325, 7.5318, 7.5335, 7.5352, 7.5342, 7.5359, 7.5324, 7.5339, 7.5357, 7.5345, 7.5362, 7.5353, 7.5343, 7.5358, 7.5348, 7.5337, 7.5354, 7.5345, 7.5362, 7.5382, 7.5371, 7.5489, 7.5481, 7.5471, 7.546, 7.5461, 7.5452, 7.5441, 7.543, 7.5447, 7.5437, 7.5426, 7.5443, 7.5432, 7.5398, 7.539, 7.538, 7.5396, 7.5411, 7.5428, 7.5417, 7.5406, 7.5398, 7.5389, 7.5378, 7.5369, 7.5386, 7.5402, 7.5393, 7.5385, 7.5374, 7.5367, 7.5362, 7.5384, 7.5402, 7.5393, 7.5385, 7.5376, 7.5364, 7.5355, 7.5346, 7.5335, 7.5327, 7.5317, 7.5309, 7.5328, 7.5345, 7.5333, 7.5323, 7.5312, 7.5301, 7.532, 7.531, 7.5327, 7.5348, 7.5366, 7.5358, 7.535, 7.534, 7.533, 7.532, 7.5314, 7.5308, 7.5298, 7.5292, 7.5311, 7.5303, 7.5274, 7.5265, 7.5258, 7.5249, 7.5268, 7.5263, 7.5254, 7.5243, 7.5259, 7.5274, 7.5263, 7.5252, 7.5241, 7.5231, 7.522, 7.521, 7.5226, 7.5218, 7.5209, 7.5199, 7.5166, 7.52, 7.5228, 7.5243, 7.5258, 7.5249, 7.5241, 7.524, 7.5231, 7.522, 7.5236, 7.5251, 7.5242, 7.5232, 7.5222, 7.5211, 7.5203, 7.5218, 7.5211, 7.5201, 7.5204, 7.5218, 7.5209, 7.5201, 7.5194, 7.5191, 7.5181, 7.5174, 7.5169, 7.5185, 7.5206, 7.5202, 7.5191, 7.518, 7.5172, 7.5162, 7.5152, 7.5167, 7.5159, 7.5149, 7.5144, 7.5135, 7.5124, 7.5139, 7.5135, 7.5153, 7.5147, 7.5162, 7.5155, 7.5148, 7.5155, 7.5144, 7.5134, 7.5126, 7.5117, 7.5106, 7.5074, 7.5064, 7.5084, 7.5073, 7.5089, 7.5079, 7.5095, 7.511, 7.5103, 7.5095, 7.5061, 7.5075, 7.5064, 7.5056, 7.5049, 7.5041, 7.5056, 7.5057, 7.505, 7.5069, 7.5085, 7.5101, 7.5095, 7.5114, 7.5104, 7.5094, 7.5085, 7.5076, 7.5076, 7.5093, 7.5095, 7.5068, 7.506, 7.5049, 7.5043, 7.5035, 7.5026, 7.5017, 7.5011, 7.5029, 7.5026, 7.5016, 7.5007, 7.4999, 7.5014, 7.5003, 7.5019, 7.5009, 7.5001, 7.5016, 7.5032, 7.5024, 7.5016, 7.503, 7.5052, 7.5059, 7.5049, 7.5042, 7.5046, 7.5036, 7.5028, 7.5022, 7.5037, 7.5027, 7.4995, 7.4995, 7.4987, 7.4977, 7.4952, 7.4943, 7.4935, 7.4926, 7.4925, 7.4916, 7.4907, 7.4899, 7.4901, 7.4892, 7.4884, 7.4875, 7.4866, 7.4884, 7.4875, 7.4892, 7.4888, 7.4904, 7.4896, 7.4887, 7.4902, 7.4918, 7.4908, 7.4901, 7.4891, 7.4883, 7.4876, 7.4891, 7.4881, 7.4872, 7.4862, 7.4911, 7.4902, 7.4893, 7.4884, 7.4877, 7.487, 7.4865, 7.4856, 7.4847, 7.4839, 7.4831, 7.4846, 7.4815, 7.481, 7.4828, 7.4843, 7.4858, 7.4849, 7.4866, 7.4837, 7.4858, 7.4873, 7.4865, 7.4859, 7.4855, 7.4846, 7.4836, 7.4828, 7.4798, 7.4789, 7.4782, 7.4795, 7.4785, 7.4781, 7.4771, 7.4816, 7.4816, 7.4845, 7.4848, 7.4839, 7.4831, 7.4845, 7.4839, 7.4855, 7.4848, 7.4841, 7.4881, 7.4905, 7.496, 7.4955, 7.4946, 7.4961, 7.4952, 7.4967, 7.4982, 7.4995, 7.4986, 7.4978, 7.4969, 7.4959, 7.495, 7.4943, 7.4958, 7.4971, 7.4963, 7.4958, 7.4951, 7.4968, 7.4965, 7.4979, 7.497, 7.496, 7.4956, 7.4946, 7.4938, 7.4908, 7.4899, 7.4914, 7.4907, 7.4909, 7.4927, 7.4918, 7.4909, 7.49, 7.4894, 7.4864, 7.4855, 7.4845, 7.4836, 7.4827, 7.4819, 7.4833, 7.4847, 7.4867, 7.4857, 7.4848, 7.4839, 7.4836, 7.4872, 7.4863, 7.4855, 7.4846, 7.4842, 7.4834, 7.4848, 7.484, 7.4857, 7.4848, 7.4839, 7.483, 7.482, 7.4833, 7.4825, 7.4816, 7.4807, 7.4798, 7.4789, 7.479, 7.478, 7.4795, 7.4786, 7.4781, 7.4776, 7.4814, 7.4829, 7.4821, 7.4835, 7.4827, 7.4821, 7.4837, 7.4828, 7.4821, 7.4837, 7.4833, 7.4847, 7.4838, 7.4832, 7.4846, 7.4837, 7.4851, 7.4842, 7.4834, 7.4829, 7.4821, 7.4812, 7.4803, 7.4794, 7.4808, 7.4799, 7.479, 7.4784, 7.4799, 7.4792, 7.4783, 7.4799, 7.4815, 7.4787, 7.4778, 7.477, 7.4785, 7.48, 7.4813, 7.4826, 7.4797, 7.481, 7.4803, 7.4794, 7.4787, 7.478, 7.4772, 7.4763, 7.4782, 7.4774, 7.4788, 7.4804, 7.4818, 7.481, 7.4804, 7.4819, 7.4833, 7.4825, 7.4818, 7.4855, 7.489, 7.4882, 7.4873, 7.4865, 7.4907, 7.4922, 7.4913, 7.4927, 7.4918, 7.491, 7.4923, 7.4915, 7.4906, 7.4897, 7.4868, 7.4859, 7.4873, 7.4865, 7.4864, 7.4855, 7.4834, 7.4825, 7.4839, 7.4832, 7.4826, 7.4818, 7.4809, 7.48, 7.4859, 7.485, 7.4863, 7.4854, 7.4851, 7.4842, 7.4834, 7.4825, 7.4817, 7.4831, 7.4823, 7.484, 7.4832, 7.4823, 7.4817, 7.4808, 7.48, 7.4814, 7.4806, 7.4798, 7.479, 7.4804, 7.4796, 7.4809, 7.4823, 7.4818, 7.4811, 7.483, 7.4822, 7.4813, 7.4805, 7.482, 7.4835, 7.4831, 7.4845, 7.4838, 7.4852, 7.4845, 7.4882, 7.4874, 7.4888, 7.4881, 7.4872, 7.4864, 7.4872, 7.4863, 7.4876, 7.4868, 7.4845, 7.4837, 7.4829, 7.487, 7.4883, 7.4874, 7.4867, 7.486, 7.4854, 7.4846, 7.486, 7.4856, 7.485, 7.4842, 7.4835, 7.4831, 7.4823, 7.4815, 7.4809, 7.48, 7.4792, 7.4808, 7.4821, 7.4817, 7.4847, 7.4838, 7.4829, 7.4844, 7.4836, 7.4828, 7.482, 7.4813, 7.4808, 7.48, 7.4791, 7.4782, 7.4776, 7.4788, 7.4783, 7.4777, 7.477, 7.4763, 7.4759, 7.4751, 7.4742, 7.4735, 7.4727, 7.4757, 7.4793, 7.479, 7.4784, 7.4757, 7.4749, 7.474, 7.4754, 7.4745, 7.4743, 7.4736, 7.4728, 7.4721, 7.4695, 7.4687, 7.4679, 7.4674, 7.4665, 7.4678, 7.4671, 7.4683, 7.4674, 7.4669, 7.4662, 7.4675, 7.4673, 7.4664, 7.4657, 7.463, 7.4643, 7.4635, 7.4627, 7.4619, 7.4611, 7.4602, 7.4595, 7.4588, 7.4606, 7.4598, 7.4612, 7.4585, 7.4579, 7.457, 7.4564, 7.4557, 7.4556, 7.4551, 7.4545, 7.4539, 7.4531, 7.4523, 7.4518, 7.4512, 7.4485, 7.448, 7.4474, 7.4466, 7.4461, 7.4436, 7.4427, 7.4465, 7.4457, 7.4469, 7.4463, 7.4474, 7.4467, 7.448, 7.4474, 7.4487, 7.4501, 7.4494, 7.4487, 7.4489, 7.4463, 7.4455, 7.4447, 7.4448, 7.446, 7.4473, 7.4467, 7.4479, 7.4471, 7.4462, 7.4475, 7.4488, 7.4482, 7.4497, 7.4497, 7.4489, 7.4481, 7.4494, 7.4487, 7.448, 7.4472, 7.4484, 7.4478, 7.4473, 7.4466, 7.4458, 7.4453, 7.4447, 7.4443, 7.4457, 7.4449, 7.4441, 7.4415, 7.443, 7.4404, 7.4398, 7.439, 7.4411, 7.4415, 7.4428, 7.4421, 7.4415, 7.4415, 7.4415, 7.441, 7.4403, 7.4415, 7.4427, 7.442, 7.4433, 7.4446, 7.444, 7.4432, 7.4425, 7.442, 7.4432, 7.4445, 7.4437, 7.4432, 7.4424, 7.4421, 7.4414, 7.4406, 7.4418, 7.4431, 7.4425, 7.4422, 7.4415, 7.4408, 7.4402, 7.4417, 7.4413, 7.4406, 7.442, 7.4413, 7.4406, 7.4399, 7.4414, 7.4406, 7.4399, 7.4391, 7.4384, 7.4398, 7.4393, 7.4385, 7.438, 7.4373, 7.4386, 7.438, 7.4392, 7.4384, 7.4376, 7.4369, 7.4361, 7.4355, 7.4347, 7.4341, 7.4334, 7.4331, 7.4323, 7.4336, 7.4331, 7.4326, 7.4339, 7.4332, 7.4328, 7.4324, 7.4319, 7.4311, 7.4323, 7.4336, 7.4328, 7.434, 7.4336, 7.4328, 7.432, 7.4312, 7.4307, 7.43, 7.4332, 7.4328, 7.432, 7.4314, 7.4309, 7.4302, 7.4295, 7.4289, 7.4301, 7.4293, 7.4285, 7.4277, 7.4289, 7.4284, 7.4279, 7.4292, 7.4285, 7.4277, 7.4289, 7.4301, 7.4296, 7.4288, 7.4281, 7.4275, 7.4269, 7.4277, 7.4271, 7.4267, 7.426, 7.4255, 7.4248, 7.4245, 7.4237, 7.425, 7.4243, 7.4235, 7.4232, 7.4245, 7.4237, 7.425, 7.4261, 7.4256, 7.4248, 7.426, 7.4253, 7.425, 7.4263, 7.4255, 7.4286, 7.4298, 7.4292, 7.4285, 7.4278, 7.427, 7.4264, 7.4276, 7.4268, 7.4266, 7.4271, 7.4265, 7.4266, 7.4337, 7.4333, 7.4329, 7.4326, 7.432, 7.4312, 7.4304, 7.4316, 7.4309, 7.4303, 7.4299, 7.4294, 7.4288, 7.428, 7.4273, 7.4267, 7.4263, 7.4255, 7.4249, 7.4242, 7.4237, 7.4231, 7.4223, 7.4215, 7.4207, 7.422, 7.4214, 7.4208, 7.42, 7.4196, 7.4211, 7.4224, 7.4217, 7.4229, 7.4223, 7.4215, 7.4207, 7.4204, 7.4198, 7.4191, 7.4214, 7.4206, 7.4218, 7.4211, 7.4206, 7.4199, 7.421, 7.4222, 7.4234, 7.4228, 7.4221, 7.4214, 7.4209, 7.4203, 7.4199, 7.4192, 7.4187, 7.418, 7.4172, 7.4165, 7.4158, 7.4151, 7.4143, 7.4137, 7.413, 7.4124, 7.4135, 7.4128, 7.4121, 7.4288, 7.4281, 7.4273, 7.4267, 7.426, 7.4256, 7.432, 7.4332, 7.4324, 7.4336, 7.4375, 7.4372, 7.4366, 7.4378, 7.4371, 7.4364, 7.4358, 7.4352, 7.4365, 7.436, 7.4358, 7.4351, 7.4365, 7.434, 7.4351, 7.4363, 7.4355, 7.4349, 7.4345, 7.4337, 7.4331, 7.4324, 7.4318, 7.4317, 7.431, 7.4323, 7.4335, 7.4329, 7.4324, 7.4319, 7.4312, 7.4309, 7.4284, 7.4278, 7.4293, 7.4292, 7.4285, 7.4278, 7.4274, 7.427, 7.4263, 7.4256, 7.4268, 7.4279, 7.4291, 7.4289, 7.4284, 7.433, 7.4342, 7.4336, 7.4349, 7.4342, 7.4341, 7.4334, 7.4329, 7.4325, 7.4337, 7.4329, 7.4322, 7.4314, 7.4307, 7.4376, 7.4369, 7.4395, 7.4388, 7.4381, 7.4376, 7.4382, 7.4376, 7.4371, 7.4364, 7.4357, 7.4352, 7.4345, 7.4338, 7.4333, 7.4327, 7.4322, 7.4335, 7.433, 7.4312, 7.4305, 7.4316, 7.4297, 7.4314, 7.4353, 7.4347, 7.4339, 7.4335, 7.4348, 7.4341, 7.4338, 7.4333, 7.4326, 7.4302, 7.4295, 7.4288, 7.4285, 7.4281, 7.4274, 7.4268, 7.4263, 7.4256, 7.4252, 7.4247, 7.4258, 7.4252, 7.4246, 7.4239, 7.425, 7.4304, 7.4298, 7.4328, 7.4321, 7.4315, 7.431, 7.4287, 7.4299, 7.4294, 7.4289, 7.4283, 7.4278, 7.4288, 7.4282, 7.4277, 7.4271, 7.4284, 7.4278, 7.4271, 7.4264, 7.4258, 7.4251, 7.4244, 7.4238, 7.4233, 7.4275, 7.4288, 7.4284, 7.4278, 7.4279, 7.4273, 7.4267, 7.4261, 7.4257, 7.4254, 7.4266, 7.426, 7.4254, 7.4253, 7.4246, 7.4239, 7.4258, 7.4252, 7.4267, 7.4283, 7.4278, 7.4273, 7.4267, 7.426, 7.4267, 7.426, 7.4255, 7.4249, 7.4244, 7.4237, 7.4249, 7.4244, 7.4238, 7.4249, 7.4242, 7.4235, 7.4228, 7.4239, 7.425, 7.4244, 7.4238, 7.4231, 7.4225, 7.4218, 7.4212, 7.4224, 7.4235, 7.423, 7.4207, 7.4201, 7.42, 7.4194, 7.4187, 7.418, 7.4174, 7.4167, 7.4178, 7.4174, 7.4169, 7.4181, 7.4192, 7.4206, 7.4201, 7.4196, 7.4231, 7.4225, 7.422, 7.4214, 7.4258, 7.4261, 7.4256, 7.4267, 7.4278, 7.4271, 7.4284, 7.4277, 7.4282, 7.4276, 7.4272, 7.4265, 7.4259, 7.4254, 7.425, 7.4243, 7.4237, 7.4231, 7.4225, 7.4206, 7.4199, 7.4193, 7.4186, 7.4198, 7.4194, 7.4188, 7.4185, 7.4181, 7.4177, 7.4174, 7.419, 7.4202, 7.4214, 7.4227, 7.4281, 7.4259, 7.4253, 7.4267, 7.4323, 7.4319, 7.4312, 7.4327, 7.4338, 7.4317, 7.4311, 7.4304, 7.4298, 7.4292, 7.4287, 7.4281, 7.4276, 7.4271, 7.4264, 7.4258, 7.4251, 7.4245, 7.4238, 7.4231, 7.4236, 7.4247, 7.4276, 7.4288, 7.4283, 7.4277, 7.4273, 7.4266, 7.4278, 7.4273, 7.4266, 7.4278, 7.4277, 7.4287, 7.428, 7.4273, 7.4267, 7.4277, 7.427, 7.4266, 7.4272, 7.4267, 7.4261, 7.4257, 7.4267, 7.4266, 7.4259, 7.427, 7.4263, 7.4256, 7.425, 7.4243, 7.4241, 7.4252, 7.4248, 7.4258, 7.4251, 7.4246, 7.424, 7.4237, 7.4231, 7.4224, 7.4219, 7.4213, 7.421, 7.4189, 7.4216, 7.4209, 7.4236, 7.4247, 7.4241, 7.4251, 7.4245, 7.4238, 7.4232, 7.421, 7.422, 7.4248, 7.4259, 7.4253, 7.4246, 7.4258, 7.4252, 7.4279, 7.4306, 7.4301, 7.4296, 7.4291, 7.4302, 7.428, 7.4296, 7.4289, 7.4284, 7.4278, 7.4271, 7.4292, 7.4312, 7.4308, 7.4302, 7.4296, 7.4308, 7.4302, 7.4296, 7.4289, 7.4285, 7.4281, 7.4275, 7.4269, 7.4266, 7.4261, 7.427, 7.4264, 7.4258, 7.4253, 7.4247, 7.4243, 7.4255, 7.4249, 7.4251, 7.426, 7.4271, 7.4266, 7.4261, 7.4254, 7.4248, 7.4243, 7.4236, 7.423, 7.4226, 7.422, 7.4213, 7.4223, 7.4218, 7.4211, 7.4209, 7.4202, 7.4197, 7.4191, 7.4186, 7.4179, 7.4173, 7.4173, 7.4167, 7.4178, 7.4172, 7.4166, 7.4164, 7.4176, 7.4176, 7.4195, 7.4206, 7.4233, 7.4244, 7.4255, 7.4249, 7.4244, 7.4238, 7.4234, 7.4229, 7.4224, 7.4218, 7.4215, 7.4212, 7.4205, 7.4199, 7.4194, 7.4188, 7.4182, 7.4196, 7.419, 7.42, 7.4211, 7.4207, 7.4202, 7.4196, 7.4176, 7.417, 7.4166, 7.4159, 7.4153, 7.4147, 7.4141, 7.4135, 7.4129, 7.4124, 7.4119, 7.4113, 7.4111, 7.4104, 7.4084, 7.4081, 7.4077, 7.4073, 7.4069, 7.4064, 7.4057, 7.4052, 7.4062, 7.4056, 7.4053, 7.4062, 7.4057, 7.4051, 7.4047, 7.4041, 7.4035, 7.4029, 7.4023, 7.4018, 7.4012, 7.4006, 7.4, 7.401, 7.4007, 7.4018, 7.4029, 7.4024, 7.4035, 7.4029, 7.4026, 7.4028, 7.4039, 7.4033, 7.4032, 7.4026, 7.4056, 7.405, 7.4044, 7.4039, 7.4034, 7.4029, 7.4025, 7.402, 7.4014, 7.401, 7.4006, 7.4, 7.3994, 7.3988, 7.3981, 7.3975, 7.3973, 7.3953, 7.3949, 7.3943, 7.3939, 7.3948, 7.3943, 7.3939, 7.3934, 7.3928, 7.3921, 7.3916, 7.3911, 7.3905, 7.3899, 7.3894, 7.3888, 7.3882, 7.3876, 7.387, 7.3865, 7.3876, 7.3878, 7.3875, 7.3869, 7.3863, 7.3857, 7.3867, 7.3877, 7.3892, 7.3902, 7.3912, 7.3923, 7.3933, 7.396, 7.4002, 7.3996, 7.3994, 7.4037, 7.4033, 7.4043, 7.4037, 7.4031, 7.4026, 7.4021, 7.4015, 7.4009, 7.402, 7.4014, 7.4008, 7.4002, 7.3997, 7.3992, 7.3987, 7.3981, 7.3976, 7.3972, 7.3966, 7.3962, 7.3957, 7.395, 7.3945, 7.3939, 7.3933, 7.3927, 7.3939, 7.3934, 7.393, 7.3928, 7.3908, 7.3904, 7.3899, 7.3895, 7.3889, 7.3882, 7.3893, 7.3887, 7.3881, 7.3875, 7.3869, 7.3882, 7.3877, 7.3887, 7.3881, 7.3875, 7.3869, 7.3867, 7.3877, 7.3888, 7.3898, 7.3894, 7.3901, 7.3912, 7.3907, 7.3903, 7.3884, 7.3894, 7.389, 7.3887, 7.3897, 7.3892, 7.3887, 7.3888, 7.3882, 7.3877, 7.3872, 7.3883, 7.3878, 7.3872, 7.3868, 7.3879, 7.3894, 7.3889, 7.3902, 7.3912, 7.3906, 7.3916, 7.3936, 7.3946, 7.3942, 7.3942, 7.3939, 7.3923, 7.3924, 7.3918, 7.3912, 7.3909, 7.3903, 7.3897, 7.3892, 7.3903, 7.3906, 7.39, 7.3896, 7.389, 7.39, 7.391, 7.3929, 7.3923, 7.3919, 7.3913, 7.391, 7.3921, 7.3918, 7.3912, 7.3906, 7.3917, 7.3912, 7.3906, 7.3901, 7.3895, 7.389, 7.3901, 7.3897, 7.3908, 7.3918, 7.3928, 7.3923, 7.3918, 7.3917, 7.3914, 7.3914, 7.3928, 7.3926, 7.3921, 7.3915, 7.394, 7.3937, 7.3931, 7.3925, 7.3921, 7.3915, 7.3909, 7.3919, 7.3913, 7.3911, 7.3927, 7.3928, 7.3927, 7.3923, 7.3919, 7.3919, 7.3913, 7.3908, 7.3904, 7.39, 7.3897, 7.3892, 7.3889, 7.39, 7.3895, 7.3906, 7.3901, 7.3896, 7.3891, 7.3887, 7.3883, 7.3894, 7.3889, 7.3884, 7.3881, 7.389, 7.3902, 7.3896, 7.3906, 7.39, 7.3909, 7.3905, 7.39, 7.3896, 7.3896, 7.39, 7.3894, 7.3889, 7.3885, 7.388, 7.389, 7.3885, 7.388, 7.3874, 7.3871, 7.3865, 7.3874, 7.3869, 7.3863, 7.3859, 7.387, 7.3865, 7.3859, 7.3869, 7.3864, 7.3858, 7.3857, 7.3884, 7.3895, 7.3892, 7.3894, 7.3891, 7.391, 7.3906, 7.3916, 7.3911, 7.3906, 7.3916, 7.3958, 7.3954, 7.395, 7.3946, 7.3941, 7.3945, 7.3941, 7.3922, 7.3931, 7.3925, 7.3934, 7.393, 7.3946, 7.3964, 7.3958, 7.3952, 7.3947, 7.3942, 7.3951, 7.3946, 7.394, 7.3935, 7.3931, 7.3926, 7.392, 7.3915, 7.391, 7.3919, 7.3915, 7.3925, 7.392, 7.3916, 7.3913, 7.3908, 7.3909, 7.3904, 7.39, 7.3895, 7.3921, 7.3962, 7.3975, 7.3971, 7.3967, 7.3965, 7.3964, 7.3959, 7.3953, 7.3962, 7.3962, 7.3959, 7.3955, 7.3984, 7.3979, 7.3995, 7.3991, 7.3985, 7.398, 7.3974, 7.3971, 7.398, 7.3989, 7.3983, 7.3978, 7.3987, 7.3981, 7.3976, 7.3985, 7.398, 7.3975, 7.397, 7.3965, 7.396, 7.3956, 7.3966, 7.3961, 7.3961, 7.397, 7.3964, 7.3974, 7.3984, 7.3979, 7.3974, 7.3968, 7.3963, 7.3974, 7.3972, 7.3966, 7.3961, 7.3972, 7.3967, 7.3963, 7.3958, 7.3971, 7.3967, 7.3961, 7.3957, 7.3951, 7.3945, 7.394, 7.3921, 7.3917, 7.3912, 7.3893, 7.3888, 7.3882, 7.3877, 7.3876, 7.3872, 7.3926, 7.392, 7.3915, 7.3924, 7.3919, 7.3913, 7.3908, 7.3918, 7.3916, 7.391, 7.3905, 7.39, 7.3896, 7.3892, 7.3886, 7.3883, 7.3878, 7.3873, 7.3869, 7.3878, 7.3872, 7.3868, 7.3868, 7.3863, 7.3861, 7.3886, 7.3888, 7.3885, 7.388, 7.389, 7.3886, 7.3881, 7.3875, 7.3871, 7.3866, 7.3861, 7.3856, 7.3852, 7.3847, 7.3842, 7.3837, 7.3834, 7.3829, 7.3838, 7.3847, 7.3857, 7.3866, 7.3861, 7.3859, 7.3854, 7.3849, 7.3845, 7.3841, 7.3836, 7.3831, 7.384, 7.3834, 7.3829, 7.3823, 7.3847, 7.3842, 7.3866, 7.386, 7.3855, 7.3837, 7.3859, 7.3855, 7.3852, 7.3862, 7.3871, 7.3867, 7.3862, 7.3857, 7.3852, 7.3847, 7.3856, 7.3852, 7.3834, 7.3833, 7.3873, 7.3873, 7.387, 7.3865, 7.386, 7.3869, 7.3878, 7.3873, 7.3868, 7.3864, 7.3859, 7.3875, 7.3869, 7.3851, 7.3848, 7.3848, 7.3856, 7.3851, 7.386, 7.3857, 7.3855, 7.3863, 7.3858, 7.3866, 7.3867, 7.3862, 7.3857, 7.3852, 7.3848, 7.3844, 7.384, 7.3836, 7.3834, 7.3828, 7.3825, 7.382, 7.3816, 7.3798, 7.3793, 7.3788, 7.3784, 7.3793, 7.3788, 7.3785, 7.378, 7.3777, 7.3786, 7.3783, 7.3791, 7.3801, 7.3798, 7.3793, 7.379, 7.3799, 7.3794, 7.3803, 7.3812, 7.3808, 7.3804, 7.3799, 7.3793, 7.3804, 7.3813, 7.3812, 7.3807, 7.3802, 7.3797, 7.3791, 7.3786, 7.3793, 7.3789, 7.3784, 7.3766, 7.3775, 7.3771, 7.3766, 7.3763, 7.3773, 7.3768, 7.379, 7.379, 7.3821, 7.3816, 7.3811, 7.3806, 7.3801, 7.3797, 7.3792, 7.3788, 7.3789, 7.3798, 7.3808, 7.3805, 7.38, 7.3797, 7.3794, 7.3792, 7.3788, 7.3798, 7.3793, 7.3788, 7.3791, 7.3787, 7.3784, 7.378, 7.3775, 7.3785, 7.3785, 7.3782, 7.3779, 7.3776, 7.3777, 7.3772, 7.3767, 7.3776, 7.3773, 7.3771, 7.3766, 7.376, 7.3757, 7.3752, 7.3747, 7.3742, 7.375, 7.3745, 7.3754, 7.3751, 7.3768, 7.3758, 7.3753, 7.3749, 7.3744, 7.3752, 7.376, 7.3768, 7.3763, 7.3758, 7.3754, 7.375, 7.3763, 7.3773, 7.3769, 7.3765, 7.3761, 7.3744, 7.374, 7.3736, 7.3745, 7.3753, 7.3748, 7.3789, 7.3784, 7.3779, 7.3775, 7.3778, 7.3787, 7.3784, 7.3779, 7.3775, 7.3771, 7.3779, 7.3774, 7.377, 7.3769, 7.3783, 7.3784, 7.3779, 7.3776, 7.3771, 7.3767, 7.3762, 7.3772, 7.378, 7.3778, 7.3775, 7.3787, 7.3782, 7.3793, 7.3801, 7.3798, 7.3808, 7.3805, 7.3802, 7.3798, 7.3794, 7.3789, 7.3784, 7.3793, 7.3801, 7.3797, 7.3797, 7.3794, 7.3789, 7.3797, 7.3792, 7.3802, 7.3798, 7.3793, 7.3803, 7.38, 7.3805, 7.3801, 7.3797, 7.3793, 7.3788, 7.3784, 7.3779, 7.3778, 7.3773, 7.3768, 7.3778, 7.3775, 7.3771, 7.3779, 7.3775, 7.3784, 7.3793, 7.3801, 7.3796, 7.3791, 7.379, 7.3798, 7.3793, 7.3802, 7.3811, 7.3806, 7.3801, 7.3796, 7.3779, 7.3798, 7.3794, 7.3805, 7.3813, 7.3808, 7.3817, 7.3826, 7.3823, 7.3818, 7.3815, 7.3812, 7.3821, 7.3816, 7.3812, 7.3807, 7.3804, 7.3799, 7.3798, 7.3793, 7.3788, 7.3784, 7.378, 7.3776, 7.3773, 7.377, 7.378, 7.3776, 7.3772, 7.3769, 7.3765, 7.3761, 7.3762, 7.3772, 7.3783, 7.3778, 7.3788, 7.3783, 7.3778, 7.3773, 7.3768, 7.3776, 7.3787, 7.3791, 7.3799, 7.3795, 7.379, 7.3799, 7.3794, 7.3802, 7.3839, 7.3836, 7.3844, 7.3839, 7.3834, 7.3829, 7.3824, 7.3823, 7.3806, 7.3813, 7.3821, 7.3843, 7.3852, 7.3862, 7.3857, 7.3879, 7.3875, 7.3889, 7.3913, 7.3922, 7.3917, 7.3926, 7.3922, 7.3918, 7.3901, 7.3897, 7.3893, 7.3888, 7.3897, 7.3893, 7.3902, 7.3904, 7.3899, 7.3895, 7.3891, 7.3886, 7.389, 7.3887, 7.3882, 7.3878, 7.3877, 7.3874, 7.3869, 7.3864, 7.3861, 7.386, 7.3856, 7.3852, 7.3848, 7.3843, 7.3839, 7.3836, 7.3832, 7.3827, 7.3849, 7.3845, 7.3842, 7.3829, 7.3831, 7.3827, 7.384, 7.3853, 7.3848, 7.3845, 7.384, 7.3847, 7.3846, 7.3854, 7.3849, 7.3846, 7.3842, 7.3825, 7.3822, 7.3818, 7.3813, 7.3808, 7.3804, 7.38, 7.3796, 7.3792, 7.3775, 7.378, 7.3775, 7.3784, 7.3786, 7.3782, 7.379, 7.3786, 7.3782, 7.3791, 7.3787, 7.3796, 7.3793, 7.3789, 7.3785, 7.3782, 7.3778, 7.3774, 7.3781, 7.3777, 7.3786, 7.3782, 7.3777, 7.3773, 7.3782, 7.3794, 7.3803, 7.3798, 7.3782, 7.3777, 7.3773, 7.377, 7.3767, 7.3764, 7.3759, 7.3755, 7.3762, 7.3771, 7.378, 7.3775, 7.3772, 7.3769, 7.3764, 7.3748, 7.3744, 7.3764, 7.3795, 7.3803, 7.3811, 7.3806, 7.3801, 7.3809, 7.3804, 7.3813, 7.3827, 7.3836, 7.3833, 7.383, 7.3826, 7.3822, 7.3818, 7.3814, 7.3809, 7.3804, 7.3813, 7.3809, 7.3806, 7.3815, 7.381, 7.3806, 7.3816, 7.3826, 7.3834, 7.383, 7.385, 7.3845, 7.3841, 7.3837, 7.3832, 7.3841, 7.3838, 7.3858, 7.3853, 7.3848, 7.3858, 7.3866, 7.3874, 7.3883, 7.3887, 7.3896, 7.3892, 7.39, 7.3895, 7.3903, 7.3899, 7.3895, 7.389, 7.3888, 7.3883, 7.3879, 7.3874, 7.387, 7.3866, 7.3862, 7.3858, 7.3854, 7.3838, 7.3835, 7.3843, 7.3839, 7.3835, 7.3843, 7.3851, 7.3859, 7.3859, 7.3893, 7.3897, 7.3892, 7.39, 7.3895, 7.389, 7.3885, 7.3893, 7.3891, 7.389, 7.3888, 7.3896, 7.3894, 7.389, 7.3887, 7.3882, 7.3868, 7.3864, 7.3874, 7.387, 7.3866, 7.3876, 7.3874, 7.3882, 7.3879, 7.3874, 7.387, 7.3854, 7.385, 7.3847, 7.3854, 7.3862, 7.3858, 7.3866, 7.3862, 7.3846, 7.3844, 7.384, 7.3836, 7.3833, 7.3817, 7.3812, 7.382, 7.3816, 7.3824, 7.3808, 7.3817, 7.3801, 7.3787, 7.3782, 7.3778, 7.3792, 7.3787, 7.3782, 7.3777, 7.3772, 7.3768, 7.3776, 7.3773, 7.3768, 7.3776, 7.376, 7.3757, 7.3752, 7.3748, 7.3744, 7.3741, 7.3737, 7.3732, 7.3728, 7.3743, 7.3738, 7.3734, 7.3729, 7.3724, 7.372, 7.3715, 7.371, 7.3705, 7.37, 7.3708, 7.3703, 7.3699, 7.3695, 7.369, 7.3698, 7.3708, 7.3704, 7.3712, 7.3721, 7.3717, 7.3727, 7.3722, 7.3718, 7.3713, 7.3698, 7.3694, 7.3691, 7.3687, 7.3695, 7.3691, 7.37, 7.3708, 7.3716, 7.3711, 7.3706, 7.3701, 7.3699, 7.3701, 7.3698, 7.3706, 7.3701, 7.3696, 7.3694, 7.3691, 7.3676, 7.3672, 7.3708, 7.3704, 7.3691, 7.3699, 7.3695, 7.3692, 7.369, 7.3686, 7.37, 7.3708, 7.3707, 7.3702, 7.3699, 7.3695, 7.3691, 7.3699, 7.3696, 7.3697, 7.3694, 7.3689, 7.3685, 7.3693, 7.3688, 7.3683, 7.3687, 7.3683, 7.3683, 7.3687, 7.3708, 7.3704, 7.3728, 7.3724, 7.372, 7.3742, 7.3738, 7.3785, 7.3781, 7.3777, 7.3773, 7.377, 7.3781, 7.3777, 7.3775, 7.3772, 7.3767, 7.3762, 7.3757, 7.3755, 7.3751, 7.3759, 7.3757, 7.3754, 7.3749, 7.3746, 7.3742, 7.3738, 7.3723, 7.3719, 7.3704, 7.3699, 7.3707, 7.3704, 7.3691, 7.3688, 7.3697, 7.3693, 7.369, 7.3688, 7.3686, 7.3694, 7.369, 7.3685, 7.368, 7.3748, 7.3744, 7.3743, 7.3739, 7.3734, 7.373, 7.3726, 7.3722, 7.3719, 7.3715, 7.3713, 7.3708, 7.3704, 7.37, 7.3696, 7.3681, 7.3676, 7.3672, 7.3669, 7.3666, 7.3662, 7.3657, 7.3652, 7.3647, 7.3643, 7.3652, 7.365, 7.3647, 7.3643, 7.3641, 7.3636, 7.3632, 7.3628, 7.3624, 7.362, 7.3615, 7.3613, 7.3608, 7.3593, 7.3589, 7.3586, 7.3581, 7.3577, 7.3573, 7.361, 7.3611, 7.3608, 7.3605, 7.3613, 7.361, 7.3618, 7.3618, 7.3614, 7.361, 7.3605, 7.3601, 7.3597, 7.3597, 7.3593, 7.3601, 7.3597, 7.3594, 7.3589, 7.3585, 7.3582, 7.3579, 7.3575, 7.3571, 7.3568, 7.3563, 7.3558, 7.3555, 7.3551, 7.3558, 7.3566, 7.3562, 7.3558, 7.3566, 7.3552, 7.3551, 7.3547, 7.3543, 7.3539, 7.3537, 7.3544, 7.3539, 7.3535, 7.353, 7.3527, 7.3523, 7.3519, 7.3515, 7.3534, 7.3531, 7.3527, 7.3537, 7.3547, 7.3561, 7.3557, 7.3566, 7.3589, 7.3597, 7.3595, 7.3592, 7.3589, 7.3584, 7.3592, 7.36, 7.3608, 7.3606, 7.3602, 7.3587, 7.3584, 7.3581, 7.3588, 7.3583, 7.359, 7.3598, 7.3595, 7.3592, 7.3588, 7.3584, 7.3588, 7.3584, 7.3592, 7.3625, 7.3633, 7.3641, 7.3637, 7.3644, 7.3641, 7.3659, 7.3667, 7.3663, 7.366, 7.3672, 7.3669, 7.3676, 7.3684, 7.368, 7.3678, 7.3674, 7.3682, 7.3679, 7.3675, 7.367, 7.3677, 7.3674, 7.3677, 7.3673, 7.3676, 7.3757, 7.3755, 7.3751, 7.3748, 7.3749, 7.3745, 7.3743, 7.3739, 7.3736, 7.3733, 7.373, 7.3726, 7.3722, 7.3719, 7.374, 7.3747, 7.3765, 7.3761, 7.3757, 7.3765, 7.3761, 7.3768, 7.3764, 7.3796, 7.3792, 7.3788, 7.3795, 7.3814, 7.3822, 7.3817, 7.3836, 7.3835, 7.3831, 7.3827, 7.3823, 7.382, 7.3829, 7.3836, 7.3832, 7.3835, 7.3843, 7.3828, 7.3837, 7.3834, 7.3853, 7.3849, 7.3845, 7.3843, 7.384, 7.3838, 7.3846, 7.3854, 7.385, 7.3847, 7.3843, 7.3838, 7.3836, 7.3833, 7.383, 7.3827, 7.3823, 7.3821, 7.3828, 7.3825, 7.3821, 7.3806, 7.3814, 7.3811, 7.382, 7.3817, 7.3813, 7.3811, 7.3807, 7.3803, 7.3826, 7.3833, 7.3841, 7.3848, 7.3854, 7.3854, 7.385, 7.3847, 7.3833, 7.3824, 7.382, 7.3823, 7.3831, 7.3827, 7.3823, 7.382, 7.3816, 7.3813, 7.3809, 7.3804, 7.3812, 7.3807, 7.3802, 7.3798, 7.3794, 7.379, 7.3797, 7.3804, 7.3811, 7.3807, 7.3804, 7.38, 7.3796, 7.3803, 7.3803, 7.38, 7.3796, 7.3793, 7.3789, 7.3785, 7.3781, 7.3777, 7.3774, 7.377, 7.3767, 7.3782, 7.3779, 7.3775, 7.3782, 7.3778, 7.3785, 7.3789, 7.3808, 7.3804, 7.38, 7.3806, 7.3813, 7.3809, 7.3805, 7.3801, 7.3808, 7.3803, 7.3798, 7.3794, 7.379, 7.3789, 7.3785, 7.3781, 7.3788, 7.3785, 7.3781, 7.3778, 7.3776, 7.3772, 7.3768, 7.3764, 7.3761, 7.3757, 7.3755, 7.3752, 7.3755, 7.3751, 7.3747, 7.3743, 7.3764, 7.376, 7.3767, 7.3753, 7.3749, 7.3747, 7.3744, 7.374, 7.3736, 7.3744, 7.374, 7.3736, 7.3732, 7.3729, 7.3736, 7.3732, 7.3729, 7.3725, 7.3732, 7.3729, 7.3725, 7.3744, 7.374, 7.3737, 7.3744, 7.374, 7.3738, 7.3736, 7.3739, 7.3735, 7.3743, 7.3739, 7.3737, 7.3734, 7.3731, 7.3727, 7.3724, 7.372, 7.3716, 7.3712, 7.3718, 7.3715, 7.3713, 7.3709, 7.3705, 7.3712, 7.3709, 7.3705, 7.3701, 7.3697, 7.3704, 7.37, 7.3718, 7.3716, 7.3717, 7.3713, 7.3709, 7.3723, 7.3719, 7.3716, 7.3725, 7.3722, 7.3718, 7.3715, 7.3712, 7.3709, 7.3705, 7.3701, 7.3716, 7.3712, 7.3708, 7.3704, 7.37, 7.3708, 7.3705, 7.3691, 7.3699, 7.3695, 7.3691, 7.3687, 7.3683, 7.368, 7.3676, 7.3673, 7.3671, 7.3667, 7.3664, 7.365, 7.3646, 7.3642, 7.3649, 7.3646, 7.3642, 7.3638, 7.3634, 7.3641, 7.3637, 7.3635, 7.3631, 7.3627, 7.3624, 7.362, 7.3618, 7.3616, 7.3612, 7.3608, 7.3604, 7.3601, 7.3598, 7.3599, 7.3595, 7.3583, 7.3579, 7.3598, 7.3594, 7.3591, 7.3598, 7.3629, 7.3625, 7.3622, 7.3618, 7.3616, 7.3624, 7.3631, 7.3628, 7.3626, 7.3623, 7.3624, 7.362, 7.3642, 7.364, 7.3641, 7.3648, 7.3673, 7.367, 7.3679, 7.3677, 7.3674, 7.3682, 7.37, 7.3696, 7.3693, 7.369, 7.3687, 7.3695, 7.373, 7.3726, 7.3734, 7.373, 7.3727, 7.3724, 7.3721, 7.3718, 7.3725, 7.3743, 7.375, 7.3758, 7.3754, 7.375, 7.3747, 7.3743, 7.375, 7.3746, 7.3747, 7.3746, 7.3743, 7.3739, 7.3737, 7.3735, 7.3735, 7.3732, 7.3729, 7.3737, 7.3733, 7.374, 7.3748, 7.3756, 7.3756, 7.3762, 7.3758, 7.3755, 7.3761, 7.3758, 7.3755, 7.3751, 7.3748, 7.3745, 7.3743, 7.375, 7.3747, 7.3744, 7.3752, 7.375, 7.3758, 7.3754, 7.3761, 7.3748, 7.3744, 7.374, 7.3736, 7.3733, 7.372, 7.3716, 7.3723, 7.3719, 7.3716, 7.3713, 7.3709, 7.3709, 7.3717, 7.3713, 7.372, 7.3716, 7.3715, 7.3712, 7.371, 7.3707, 7.3694, 7.3691, 7.3688, 7.3684, 7.368, 7.3677, 7.3674, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3667, 7.3664, 7.3664, 7.3662, 7.3658, 7.3654, 7.3661, 7.3667, 7.3665, 7.3672, 7.3669, 7.3678, 7.3674, 7.3672, 7.3679, 7.3676, 7.3683, 7.3679, 7.3675, 7.3683, 7.3679, 7.3675, 7.3672, 7.3679, 7.3675, 7.3672, 7.3668, 7.3675, 7.3671, 7.3667, 7.3663, 7.3662, 7.367, 7.3668, 7.3675, 7.3671, 7.3679, 7.3686, 7.3672, 7.3668, 7.3719, 7.3715, 7.3702, 7.3709, 7.3707, 7.3715, 7.3712, 7.3708, 7.3705, 7.3702, 7.3698, 7.3704, 7.3711, 7.3707, 7.3709, 7.3706, 7.3702, 7.3698, 7.3695, 7.3692, 7.3699, 7.3717, 7.3726, 7.3723, 7.3747, 7.3745, 7.3743, 7.3729, 7.3725, 7.3721, 7.3728, 7.3725, 7.3735, 7.3742, 7.3738, 7.3736, 7.3744, 7.3742, 7.3728, 7.3725, 7.3732, 7.3732, 7.3731, 7.3718, 7.3715, 7.3711, 7.3707, 7.371, 7.3707, 7.3716, 7.3712, 7.3719, 7.3716, 7.3712, 7.3708, 7.3715, 7.3722, 7.372, 7.3716, 7.3716, 7.3723, 7.373, 7.3726, 7.3722, 7.3718, 7.3714, 7.3721, 7.3728, 7.3738, 7.3734, 7.3731, 7.3727, 7.3723, 7.373, 7.3729, 7.3726, 7.3726, 7.3724, 7.3732, 7.3728, 7.3724, 7.3731, 7.3718, 7.3715, 7.3722, 7.372, 7.3717, 7.3714, 7.3722, 7.3721, 7.3717, 7.3713, 7.371, 7.3717, 7.3723, 7.3722, 7.372, 7.3716, 7.3712, 7.3719, 7.3716, 7.3723, 7.372, 7.3716, 7.3714, 7.371, 7.3706, 7.3714, 7.3711, 7.3707, 7.3747, 7.3743, 7.373, 7.3736, 7.3732, 7.3739, 7.3735, 7.3742, 7.3739, 7.3735, 7.3742, 7.3738, 7.3734, 7.373, 7.3726, 7.3722, 7.3719, 7.3715, 7.3711, 7.3718, 7.3725, 7.3721, 7.3717, 7.3725, 7.3732, 7.3732, 7.3728, 7.3735, 7.3742, 7.3739, 7.3747, 7.3754, 7.3761, 7.3758, 7.3754, 7.375, 7.3747, 7.3734, 7.374, 7.3736, 7.3739, 7.3736, 7.3732, 7.3729, 7.3726, 7.3723, 7.3711, 7.3708, 7.3704, 7.3691, 7.3698, 7.3694, 7.3692, 7.3689, 7.3695, 7.3702, 7.3699, 7.3695, 7.3692, 7.3693, 7.369, 7.3697, 7.3693, 7.3691, 7.3678, 7.3685, 7.3681, 7.3688, 7.3695, 7.3691, 7.3698, 7.3726, 7.3722, 7.3722, 7.3718, 7.3715, 7.3722, 7.373, 7.3727, 7.3724, 7.373, 7.3727, 7.3723, 7.373, 7.3728, 7.3734, 7.3732, 7.3729, 7.3737, 7.3745, 7.3752, 7.3748, 7.3746, 7.3753, 7.376, 7.3757, 7.3753, 7.3749, 7.3746, 7.3769, 7.3766, 7.3778, 7.3774, 7.3771, 7.3768, 7.3756, 7.3762, 7.376, 7.3758, 7.3754, 7.3751, 7.3757, 7.3758, 7.3771, 7.3768, 7.3768, 7.3767, 7.3763, 7.3759, 7.3756, 7.3752, 7.3749, 7.3745, 7.3743, 7.3739, 7.3735, 7.3731, 7.3727, 7.3734, 7.373, 7.3726, 7.3733, 7.3752, 7.3753, 7.3751, 7.3747, 7.3743, 7.3739, 7.3745, 7.3741, 7.3737, 7.3733, 7.3731, 7.3727, 7.3723, 7.3719, 7.3716, 7.3712, 7.3699, 7.3706, 7.3702, 7.3719, 7.3718, 7.3715, 7.3702, 7.3699, 7.3695, 7.3692, 7.3716, 7.3723, 7.372, 7.3716, 7.3713, 7.371, 7.3706, 7.3704, 7.3701, 7.3697, 7.3704, 7.37, 7.3698, 7.3704, 7.37, 7.3706, 7.3704, 7.3711, 7.3709, 7.3708, 7.3705, 7.3701, 7.3709, 7.3707, 7.3715, 7.3712, 7.3719, 7.3715, 7.3722, 7.3742, 7.3738, 7.3735, 7.3742, 7.3738, 7.3744, 7.3742, 7.3739, 7.3745, 7.3742, 7.3739, 7.3735, 7.3738, 7.3736, 7.3753, 7.3754, 7.3751, 7.3749, 7.3746, 7.3743, 7.3749, 7.375, 7.374, 7.3737, 7.3749, 7.3745, 7.3752, 7.3801, 7.3797, 7.3793, 7.3789, 7.3785, 7.3781, 7.3777, 7.3774, 7.378, 7.3777, 7.3784, 7.3816, 7.3819, 7.3819, 7.3816, 7.3812, 7.3809, 7.3816, 7.3833, 7.3831, 7.3839, 7.3837, 7.3834, 7.3843, 7.3841, 7.3848, 7.3875, 7.3871, 7.3868, 7.3874, 7.3871, 7.3868, 7.3864, 7.3853, 7.3849, 7.3856, 7.3862, 7.3858, 7.3854, 7.3851, 7.3848, 7.3845, 7.3841, 7.3839, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.3807, 7.3806, 7.3813, 7.382, 7.3827, 7.3823, 7.383, 7.3837, 7.3833, 7.3829, 7.3825, 7.3841, 7.3838, 7.3834, 7.3831, 7.3827, 7.3823, 7.382, 7.3829, 7.3827, 7.3834, 7.383, 7.3839, 7.3836, 7.3849, 7.3849, 7.3847, 7.3855, 7.3853, 7.3862, 7.386, 7.3859, 7.3855, 7.3856, 7.3852, 7.385, 7.3847, 7.3844, 7.384, 7.3837, 7.3834, 7.3831, 7.3828, 7.3825, 7.3823, 7.3822, 7.3819, 7.3806, 7.3802, 7.3799, 7.3817, 7.3824, 7.3821, 7.3817, 7.3808, 7.3806, 7.3802, 7.3799, 7.3796, 7.3793, 7.379, 7.3787, 7.3793, 7.379, 7.3786, 7.3774, 7.3771, 7.3777, 7.3783, 7.3789, 7.3795, 7.3791, 7.3788, 7.3794, 7.3791, 7.3787, 7.3783, 7.3793, 7.3799, 7.3796, 7.3792, 7.3801, 7.3799, 7.3797, 7.3794, 7.3792, 7.3799, 7.3795, 7.3802, 7.3809, 7.3807, 7.3814, 7.3821, 7.3828, 7.3824, 7.3831, 7.3829, 7.3825, 7.3821, 7.3817, 7.3823, 7.3819, 7.3816, 7.3813, 7.3809, 7.3805, 7.3804, 7.38, 7.381, 7.3834, 7.3833, 7.3841, 7.3838, 7.3834, 7.383, 7.3828, 7.3824, 7.3822, 7.3819, 7.3818, 7.3824, 7.3821, 7.3827, 7.3824, 7.382, 7.3817, 7.3824, 7.382, 7.3817, 7.3815, 7.3821, 7.3827, 7.3824, 7.382, 7.3826, 7.3823, 7.3821, 7.3818, 7.3835, 7.3832, 7.3838, 7.3835, 7.3833, 7.383, 7.3827, 7.3823, 7.3819, 7.3844, 7.3841, 7.3844, 7.385, 7.3848, 7.3854, 7.385, 7.3846, 7.3865, 7.3861, 7.3858, 7.3854, 7.385, 7.3847, 7.3845, 7.3842, 7.383, 7.3827, 7.3833, 7.383, 7.3828, 7.3826, 7.3824, 7.3831, 7.3828, 7.3837, 7.3833, 7.3829, 7.3828, 7.3825, 7.3823, 7.382, 7.3827, 7.3825, 7.3826, 7.3824, 7.3821, 7.3818, 7.3815, 7.3812, 7.3811, 7.3809, 7.3806, 7.3803, 7.381, 7.3808, 7.3815, 7.3812, 7.381, 7.3816, 7.3812, 7.3809, 7.3806, 7.3804, 7.38, 7.3796, 7.3794, 7.3791, 7.3802, 7.3807, 7.3813, 7.381, 7.3798, 7.3786, 7.3783, 7.379, 7.3786, 7.3783, 7.3789, 7.3787, 7.3783, 7.378, 7.3789, 7.3789, 7.3786, 7.3783, 7.3795, 7.3792, 7.3788, 7.3786, 7.3792, 7.3789, 7.3785, 7.3782, 7.3808, 7.3837, 7.3833, 7.3839, 7.3836, 7.3833, 7.383, 7.3837, 7.3827, 7.3817, 7.3814, 7.3821, 7.3818, 7.3816, 7.3814, 7.382, 7.3816, 7.3814, 7.381, 7.3808, 7.3805, 7.3803, 7.3801, 7.3798, 7.3795, 7.3794, 7.3791, 7.3798, 7.3795, 7.3791, 7.3788, 7.3786, 7.3782, 7.3779, 7.3775, 7.3781, 7.3783, 7.3779, 7.3787, 7.3783, 7.378, 7.3776, 7.3773, 7.377, 7.3767, 7.3773, 7.3772, 7.3802, 7.38, 7.3807, 7.3795, 7.3802, 7.3799, 7.3798, 7.3795, 7.3793, 7.379, 7.3787, 7.3784, 7.378, 7.3776, 7.3772, 7.3769, 7.3766, 7.3763, 7.376, 7.3756, 7.3762, 7.3759, 7.3763, 7.3759, 7.3756, 7.3753, 7.3759, 7.3756, 7.3752, 7.3759, 7.3758, 7.3755, 7.3754, 7.3752, 7.3749, 7.3746, 7.3743, 7.374, 7.3737, 7.3733, 7.3739, 7.3736, 7.3733, 7.374, 7.3746, 7.3742, 7.3739, 7.3736, 7.3742, 7.3739, 7.3745, 7.3741, 7.3738, 7.3744, 7.374, 7.3738, 7.3735, 7.3732, 7.3728, 7.3734, 7.3741, 7.3739, 7.3736, 7.3735, 7.3741, 7.3738, 7.3735, 7.3732, 7.3729, 7.3717, 7.3714, 7.372, 7.3717, 7.3715, 7.3712, 7.3718, 7.3715, 7.3712, 7.3718, 7.3715, 7.3712, 7.371, 7.3707, 7.3733, 7.373, 7.3727, 7.3724, 7.3721, 7.3718, 7.3716, 7.3721, 7.3717, 7.3714, 7.372, 7.3716, 7.3713, 7.371, 7.3708, 7.3705, 7.3702, 7.3718, 7.3717, 7.373, 7.3731, 7.3719, 7.3716, 7.3714, 7.3711, 7.3708, 7.3714, 7.3721, 7.3719, 7.3717, 7.3722, 7.3722, 7.3719, 7.3725, 7.3723, 7.3729, 7.3725, 7.3721, 7.3718, 7.3707, 7.3704, 7.3705, 7.3702, 7.3708, 7.3708, 7.3715, 7.3713, 7.3719, 7.3716, 7.3713, 7.371, 7.3707, 7.3713, 7.3709, 7.3715, 7.3713, 7.3711, 7.3707, 7.3704, 7.3701, 7.3707, 7.3713, 7.371, 7.3706, 7.3703, 7.37, 7.3696, 7.3693, 7.3689, 7.3686, 7.3683, 7.3688, 7.3685, 7.3682, 7.3679, 7.3676, 7.3673, 7.3669, 7.3666, 7.3681, 7.3687, 7.3684, 7.368, 7.3677, 7.3684, 7.369, 7.3696, 7.3686, 7.3684, 7.3689, 7.3695, 7.3693, 7.3689, 7.3686, 7.3692, 7.3689, 7.3686, 7.3683, 7.368, 7.3678, 7.3674, 7.3672, 7.368, 7.3678, 7.3676, 7.3673, 7.3676, 7.3682, 7.3679, 7.3676, 7.3673, 7.368, 7.3687, 7.3701, 7.3708, 7.3706, 7.3703, 7.37, 7.3697, 7.3703, 7.37, 7.3697, 7.3703, 7.3701, 7.3698, 7.3695, 7.3701, 7.3708, 7.3705, 7.3701, 7.3698, 7.3705, 7.3702, 7.3699, 7.3705, 7.3777, 7.3788, 7.3788, 7.3785, 7.38, 7.3797, 7.3794, 7.3791, 7.3813, 7.3811, 7.3812, 7.381, 7.3816, 7.3813, 7.3819, 7.3816, 7.3822, 7.3819, 7.3816, 7.3813, 7.381, 7.3808, 7.3806, 7.3803, 7.38, 7.3806, 7.3812, 7.3809, 7.3808, 7.3805, 7.3811, 7.3808, 7.3805, 7.3811, 7.3816, 7.3822, 7.3828, 7.3833, 7.383, 7.3829, 7.3826, 7.3839, 7.3844, 7.3841, 7.3847, 7.3843, 7.3843, 7.3855, 7.3853, 7.385, 7.3847, 7.3844, 7.3841, 7.3838, 7.3835, 7.3833, 7.383, 7.3827, 7.3825, 7.3823, 7.383, 7.3827, 7.3824, 7.3821, 7.3819, 7.3816, 7.3813, 7.381, 7.3815, 7.3821, 7.3828, 7.3825, 7.3823, 7.3831, 7.3837, 7.3834, 7.384, 7.3846, 7.3843, 7.384, 7.3837, 7.3843, 7.3841, 7.3847, 7.3853, 7.3851, 7.3848, 7.3854, 7.3851, 7.3847, 7.3853, 7.385, 7.3856, 7.3852, 7.3849, 7.3854, 7.385, 7.3839, 7.3836, 7.3834, 7.384, 7.3848, 7.3846, 7.3843, 7.3849, 7.3854, 7.3852, 7.3841, 7.3837, 7.3834, 7.384, 7.3837, 7.3846, 7.3853, 7.3851, 7.3849, 7.3855, 7.3853, 7.385, 7.3848, 7.3845, 7.3842, 7.3839, 7.3836, 7.3833, 7.3838, 7.3834, 7.3833, 7.3839, 7.3836, 7.3833, 7.383, 7.3836, 7.3832, 7.3838, 7.3845, 7.3841, 7.3837, 7.3826, 7.3832, 7.3829, 7.3835, 7.3832, 7.3831, 7.3828, 7.3827, 7.3824, 7.3829, 7.3826, 7.3823, 7.3821, 7.3834, 7.3882, 7.3879, 7.3876, 7.3873, 7.3871, 7.3868, 7.3874, 7.3871, 7.3892, 7.3889, 7.3886, 7.3884, 7.3881, 7.3878, 7.3867, 7.3856, 7.3862, 7.385, 7.3847, 7.3844, 7.3842, 7.3851, 7.3856, 7.3853, 7.385, 7.3847, 7.3854, 7.3852, 7.3849, 7.3846, 7.3843, 7.3857, 7.3846, 7.3843, 7.3841, 7.3838, 7.3836, 7.3833, 7.3831, 7.3828, 7.3838, 7.3835, 7.3833, 7.3829, 7.3827, 7.3824, 7.3822, 7.382, 7.3818, 7.3816, 7.3814, 7.3803, 7.3795, 7.3792, 7.379, 7.3787, 7.3794, 7.3791, 7.3789, 7.3786, 7.3783, 7.378, 7.3778, 7.3775, 7.3772, 7.3777, 7.3773, 7.377, 7.3767, 7.3764, 7.377, 7.3767, 7.3764, 7.3761, 7.3758, 7.3755, 7.376, 7.378, 7.3786, 7.3785, 7.3792, 7.3792, 7.3789, 7.3787, 7.3793, 7.379, 7.3788, 7.3786, 7.3783, 7.3789, 7.3787, 7.3784, 7.3792, 7.3798, 7.3796, 7.3807, 7.3796, 7.3793, 7.3784, 7.3784, 7.3789, 7.3786, 7.3783, 7.3772, 7.3776, 7.3775, 7.3773, 7.377, 7.3768, 7.3766, 7.3797, 7.3797, 7.3795, 7.3792, 7.3789, 7.3795, 7.3792, 7.3789, 7.3795, 7.3792, 7.3791, 7.379, 7.3787, 7.3784, 7.3789, 7.3786, 7.3783, 7.3781, 7.3779, 7.3776, 7.3774, 7.3763, 7.376, 7.3758, 7.3765, 7.3762, 7.376, 7.3757, 7.3754, 7.3752, 7.376, 7.3757, 7.3754, 7.3751, 7.3749, 7.3746, 7.3743, 7.3742, 7.3739, 7.3736, 7.3734, 7.3731, 7.3737, 7.3735, 7.374, 7.3738, 7.3735, 7.3732, 7.3729, 7.3726, 7.3723, 7.3727, 7.3725, 7.3722, 7.372, 7.3718, 7.3718, 7.3716, 7.3722, 7.3719, 7.3726, 7.3723, 7.372, 7.3717, 7.3714, 7.3712, 7.3701, 7.369, 7.3687, 7.3685, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3673, 7.3662, 7.3684, 7.3689, 7.3686, 7.3683, 7.368, 7.3677, 7.3674, 7.3672, 7.3677, 7.3683, 7.368, 7.3677, 7.3674, 7.3671, 7.3677, 7.3682, 7.3679, 7.3676, 7.3673, 7.3678, 7.3684, 7.3681, 7.3687, 7.3693, 7.369, 7.3696, 7.3693, 7.3696, 7.3693, 7.3691, 7.3697, 7.3703, 7.3701, 7.3699, 7.3713, 7.371, 7.3699, 7.3721, 7.3744, 7.3741, 7.3738, 7.3735, 7.3724, 7.3721, 7.3718, 7.3715, 7.3712, 7.3709, 7.3707, 7.3712, 7.371, 7.3707, 7.3704, 7.371, 7.3716, 7.3715, 7.372, 7.3717, 7.3714, 7.3711, 7.3708, 7.3706, 7.3703, 7.37, 7.3697, 7.3694, 7.3691, 7.3696, 7.3702, 7.3699, 7.3705, 7.3702, 7.37, 7.3706, 7.3695, 7.3701, 7.3707, 7.3705, 7.3703, 7.37, 7.3697, 7.3695, 7.3692, 7.3697, 7.3694, 7.3691, 7.3697, 7.3702, 7.3699, 7.3696, 7.3693, 7.3691, 7.3696, 7.3694, 7.3691, 7.3689, 7.3687, 7.3684, 7.3681, 7.3678, 7.3675, 7.3673, 7.367, 7.3675, 7.3672, 7.3669, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3659, 7.3656, 7.3653, 7.365, 7.3647, 7.3645, 7.3653, 7.3651, 7.3648, 7.3654, 7.3651, 7.3648, 7.3645, 7.3645, 7.3651, 7.3649, 7.3646, 7.3643, 7.364, 7.3645, 7.3642, 7.3639, 7.3636, 7.3633, 7.3639, 7.3645, 7.3642, 7.3631, 7.3629, 7.3635, 7.3641, 7.3638, 7.3635, 7.3632, 7.3629, 7.3635, 7.3632, 7.3629, 7.3626, 7.3623, 7.3628, 7.3633, 7.3639, 7.3637, 7.3634, 7.364, 7.3646, 7.3643, 7.3649, 7.3655, 7.3661, 7.3666, 7.3672, 7.3677, 7.3691, 7.3697, 7.3694, 7.3691, 7.3697, 7.3703, 7.3701, 7.3707, 7.3704, 7.3703, 7.3701, 7.3703, 7.37, 7.3697, 7.3703, 7.37, 7.3697, 7.3694, 7.3683, 7.3682, 7.3679, 7.3693, 7.369, 7.3687, 7.3684, 7.3682, 7.3687, 7.3684, 7.3681, 7.3686, 7.3683, 7.3732, 7.3729, 7.3726, 7.3723, 7.3729, 7.3735, 7.3732, 7.3729, 7.3726, 7.3724, 7.3721, 7.3718, 7.3715, 7.3712, 7.3717, 7.3714, 7.3711, 7.3716, 7.3713, 7.3719, 7.3724, 7.3722, 7.3711, 7.3708, 7.3705, 7.3702, 7.3708, 7.3708, 7.3705, 7.3702, 7.3699, 7.3705, 7.371, 7.3707, 7.3713, 7.371, 7.3715, 7.3712, 7.371, 7.3707, 7.3712, 7.3716, 7.3713, 7.371, 7.3715, 7.3729, 7.3727, 7.3725, 7.3733, 7.3747, 7.3753, 7.3752, 7.3751, 7.3757, 7.3747, 7.3746, 7.3744, 7.3749, 7.3746, 7.3751, 7.3748, 7.3746, 7.3745, 7.3742, 7.3747, 7.3745, 7.3742, 7.3748, 7.3762, 7.3772, 7.377, 7.3767, 7.3773, 7.3778, 7.3768, 7.3766, 7.3764, 7.3762, 7.3759, 7.3773, 7.377, 7.3768, 7.3781, 7.3778, 7.3792, 7.3789, 7.3794, 7.3791, 7.3796, 7.3818, 7.3815, 7.3812, 7.3811, 7.3808, 7.3805, 7.3802, 7.3808, 7.3806, 7.3812, 7.3809, 7.3806, 7.3803, 7.38, 7.3814, 7.3819, 7.3824, 7.3821, 7.3818, 7.3815, 7.3826, 7.3823, 7.3828, 7.3833, 7.383, 7.3827, 7.3826, 7.3824, 7.3821, 7.3818, 7.3823, 7.3836, 7.3836, 7.3833, 7.3838, 7.3835, 7.3833, 7.3834, 7.3865, 7.387, 7.3875, 7.3881, 7.3886, 7.3883, 7.388, 7.3878, 7.3875, 7.3873, 7.3871, 7.3874, 7.388, 7.3877, 7.3874, 7.3871, 7.3878, 7.3875, 7.3872, 7.3878, 7.3867, 7.3864, 7.3862, 7.3867, 7.3872, 7.3877, 7.3882, 7.3879, 7.3884, 7.3881, 7.3878, 7.3883, 7.3889, 7.3886, 7.3891, 7.3881, 7.3894, 7.3891, 7.3891, 7.3889, 7.3898, 7.3896, 7.3901, 7.3899, 7.3896, 7.3893, 7.3899, 7.3904, 7.3902, 7.3891, 7.3889, 7.3886, 7.3892, 7.3897, 7.3895, 7.3892, 7.3897, 7.3903, 7.39, 7.3897, 7.3902, 7.3907, 7.3912, 7.3909, 7.3907, 7.3912, 7.3909, 7.3906, 7.3903, 7.3901, 7.3906, 7.3904, 7.3901, 7.3898, 7.3903, 7.39, 7.3897, 7.3903, 7.39, 7.3912, 7.391, 7.3908, 7.3925, 7.3935, 7.3933, 7.393, 7.3935, 7.3934, 7.3932, 7.393, 7.3928, 7.3925, 7.393, 7.3935, 7.3925, 7.3923, 7.3943, 7.3948, 7.3953, 7.395, 7.3947, 7.3944, 7.3941, 7.3946, 7.3943, 7.3948, 7.3954, 7.3944, 7.3941, 7.3946, 7.3943, 7.3948, 7.3945, 7.395, 7.3947, 7.3944, 7.3942, 7.3972, 7.3969, 7.3974, 7.3971, 7.3976, 7.3973, 7.3978, 7.3983, 7.4004, 7.4024, 7.4029, 7.4034, 7.4056, 7.407, 7.4068, 7.4073, 7.407, 7.4076, 7.4081, 7.4094, 7.4084, 7.4081, 7.4079, 7.4101, 7.4098, 7.4103, 7.41, 7.4098, 7.4095, 7.4093, 7.4098, 7.4096, 7.4102, 7.4107, 7.4105, 7.411, 7.4115, 7.4112, 7.4109, 7.4106, 7.4104, 7.4101, 7.4099, 7.4097, 7.4086, 7.4084, 7.4081, 7.4086, 7.4099, 7.4104, 7.4102, 7.4099, 7.4096, 7.4093, 7.4106, 7.4103, 7.41, 7.4098, 7.4103, 7.4101, 7.4099, 7.4104, 7.4109, 7.4115, 7.412, 7.4125, 7.4115, 7.412, 7.4125, 7.4122, 7.4127, 7.4124, 7.4121, 7.4118, 7.4116, 7.4113, 7.4118, 7.4115, 7.4112, 7.411, 7.4107, 7.4105, 7.4102, 7.4107, 7.4105, 7.4111, 7.4108, 7.41, 7.4097, 7.4095, 7.4095, 7.4093, 7.409, 7.4088, 7.4086, 7.4084, 7.4082, 7.4079, 7.4076, 7.4081, 7.4071, 7.4076, 7.4081, 7.4078, 7.4083, 7.4081, 7.4094, 7.4091, 7.4088, 7.4085, 7.4082, 7.4087, 7.41, 7.4098, 7.4095, 7.4094, 7.4091, 7.4089, 7.4086, 7.4091, 7.4096, 7.4101, 7.4106, 7.4103], '192.168.122.111': [5.3339, 5.4059, 5.393, 6.5203, 7.4765, 7.1212, 6.8821, 6.7422, 6.712, 6.5917, 6.5117, 6.8683, 6.7552, 6.7003, 6.6449, 6.5723, 6.4972, 6.4645, 6.4447, 6.4346, 6.1566, 6.1149, 5.8725, 5.8481, 6.1813, 6.1599, 6.1344, 6.1259, 6.2881, 6.2733, 6.2701, 6.2507, 6.3853, 6.3679, 6.3551, 6.3459, 6.4649, 6.4514, 6.6178, 6.8606, 6.8429, 6.8121, 7.0325, 7.0313, 7.004, 7.0881, 7.234, 7.1995, 7.16, 7.1307, 7.098, 7.0656, 7.034, 7.0075, 7.1754, 7.2371, 7.228, 7.2009, 7.1702, 7.1381, 7.1085, 7.097, 7.0713, 7.0466, 7.0408, 7.0332, 7.011, 6.9864, 7.0427, 7.0348, 7.0272, 7.0052, 7.0905, 7.0736, 7.1236, 7.2431, 7.2849, 7.202, 7.199, 7.3111, 7.2891, 7.3334, 7.3101, 7.2858, 7.3399, 7.3251, 7.3284, 7.372, 7.4177, 7.4336, 7.4102, 7.4151, 7.4012, 7.5045, 7.6467, 7.633, 7.6114, 7.6012, 7.6311, 7.6141, 7.594, 7.5726, 7.5627, 7.5483, 7.6255, 7.6176, 7.6461, 7.631, 7.6191, 7.7034, 7.6851, 7.6685, 7.7074, 7.688, 7.6679, 7.6101, 7.6006, 7.6079, 7.5897, 7.6217, 7.6497, 7.6309, 7.6205, 7.6016, 7.5895, 7.5773, 7.5278, 7.5146, 7.4997, 7.4826, 7.4759, 7.541, 7.5358, 7.5201, 7.5471, 7.5433, 7.5293, 7.5166, 7.5034, 7.4886, 7.4843, 7.5058, 7.5273, 7.5123, 7.4997, 7.4871, 7.5068, 7.5301, 7.5433, 7.5331, 7.5334, 7.5533, 7.5737, 7.5603, 7.546, 7.5325, 7.5206, 7.5416, 7.5313, 7.5186, 7.507, 7.4987, 7.4852, 7.5396, 7.6801, 7.6695, 7.6631, 7.6536, 7.6429, 7.6059, 7.6244, 7.612, 7.5988, 7.586, 7.5768, 7.5686, 7.5596, 7.5509, 7.5384, 7.5561, 7.5454, 7.5347, 7.5255, 7.5562, 7.5439, 7.5337, 7.5227, 7.5122, 7.5014, 7.4899, 7.4851, 7.4749, 7.4926, 7.4973, 7.4865, 7.476, 7.4931, 7.4857, 7.4755, 7.467, 7.4837, 7.4993, 7.4894, 7.4788, 7.468, 7.4586, 7.4511, 7.441, 7.4314, 7.4215, 7.4357, 7.4279, 7.3969, 7.3965, 7.3885, 7.3833, 7.4214, 7.4348, 7.4473, 7.4219, 7.449, 7.439, 7.4322, 7.4234, 7.393, 7.3857, 7.3784, 7.3737, 7.3965, 7.3927, 7.3834, 7.3781, 7.3965, 7.3884, 7.3812, 7.3745, 7.3895, 7.3823, 7.3965, 7.3892, 7.3846, 7.3768, 7.3702, 7.3619, 7.3537, 7.3469, 7.3393, 7.3322, 7.3272, 7.343, 7.3347, 7.328, 7.3429, 7.3345, 7.329, 7.3212, 7.3186, 7.3126, 7.3063, 7.3189, 7.3139, 7.3275, 7.3438, 7.3588, 7.3524, 7.3458, 7.3607, 7.3537, 7.3496, 7.346, 7.3397, 7.3328, 7.3263, 7.3209, 7.3147, 7.311, 7.3046, 7.3183, 7.3129, 7.3119, 7.3124, 7.3064, 7.3604, 7.3565, 7.333, 7.3266, 7.3192, 7.3126, 7.3268, 7.3212, 7.3526, 7.3821, 7.381, 7.394, 7.3887, 7.3829, 7.3778, 7.3715, 7.3657, 7.3861, 7.4159, 7.4089, 7.4018, 7.4116, 7.4043, 7.3976, 7.3926, 7.3862, 7.3683, 7.3628, 7.3562, 7.3532, 7.3469, 7.3414, 7.336, 7.3297, 7.323, 7.3172, 7.3282, 7.3077, 7.3033, 7.298, 7.2922, 7.2713, 7.2663, 7.2768, 7.2712, 7.2654, 7.2597, 7.2538, 7.2481, 7.2426, 7.237, 7.2487, 7.2295, 7.2238, 7.218, 7.2127, 7.2079, 7.2029, 7.1977, 7.2081, 7.203, 7.1976, 7.1926, 7.1884, 7.1875, 7.1982, 7.2094, 7.2203, 7.215, 7.2499, 7.2497, 7.2471, 7.2416, 7.2365, 7.2313, 7.2409, 7.2358, 7.2309, 7.2408, 7.2368, 7.2468, 7.2421, 7.2372, 7.232, 7.2279, 7.2236, 7.2194, 7.2151, 7.212, 7.2067, 7.2309, 7.2273, 7.2253, 7.2077, 7.2165, 7.199, 7.1941, 7.1893, 7.213, 7.2232, 7.218, 7.2274, 7.2366, 7.2319, 7.2272, 7.2225, 7.218, 7.2157, 7.2116, 7.207, 7.2031, 7.1985, 7.1948, 7.1898, 7.1731, 7.1684, 7.164, 7.1597, 7.169, 7.166, 7.1624, 7.1581, 7.1538, 7.1494, 7.1581, 7.1669, 7.1623, 7.1587, 7.1673, 7.163, 7.1587, 7.1562, 7.165, 7.1616, 7.1596, 7.1682, 7.1642, 7.1491, 7.1447, 7.1414, 7.1371, 7.1327, 7.1174, 7.1151, 7.1238, 7.1202, 7.1158, 7.1117, 7.1151, 7.1111, 7.1199, 7.1171, 7.1257, 7.1332, 7.1416, 7.1376, 7.1338, 7.1325, 7.1288, 7.1259, 7.1222, 7.1186, 7.1147, 7.1226, 7.1544, 7.1956, 7.1919, 7.1889, 7.1962, 7.2043, 7.2002, 7.1962, 7.198, 7.2268, 7.2352, 7.255, 7.2509, 7.2471, 7.2428, 7.2389, 7.2348, 7.2309, 7.227, 7.2226, 7.2187, 7.2149, 7.2114, 7.2077, 7.2037, 7.2, 7.1988, 7.1952, 7.2028, 7.2104, 7.2073, 7.2035, 7.2048, 7.2019, 7.2023, 7.1885, 7.2074, 7.2039, 7.2008, 7.1991, 7.1961, 7.2034, 7.1994, 7.1956, 7.2027, 7.2096, 7.2118, 7.2078, 7.2045, 7.2125, 7.2103, 7.2074, 7.2042, 7.211, 7.219, 7.2269, 7.2343, 7.2413, 7.2393, 7.2364, 7.233, 7.2295, 7.2265, 7.2342, 7.2307, 7.2273, 7.2246, 7.238, 7.2466, 7.2433, 7.2503, 7.2466, 7.243, 7.2501, 7.2466, 7.2528, 7.2508, 7.2577, 7.2639, 7.2703, 7.2682, 7.2751, 7.282, 7.2885, 7.2954, 7.2933, 7.3019, 7.3031, 7.2995, 7.296, 7.2943, 7.2923, 7.2898, 7.2862, 7.2925, 7.2901, 7.3079, 7.3142, 7.3211, 7.328, 7.3249, 7.3221, 7.3419, 7.3387, 7.3457, 7.3426, 7.3394, 7.3463, 7.3432, 7.3396, 7.3377, 7.3435, 7.3405, 7.3462, 7.3525, 7.3581, 7.3547, 7.3514, 7.3621, 7.3585, 7.3552, 7.3517, 7.3659, 7.3724, 7.3787, 7.3764, 7.3825, 7.3791, 7.376, 7.3727, 7.3693, 7.3657, 7.3627, 7.3602, 7.3569, 7.3543, 7.3597, 7.3655, 7.363, 7.37, 7.3768, 7.3735, 7.3703, 7.3676, 7.3734, 7.3878, 7.3783, 7.3788, 7.3873, 7.384, 7.3806, 7.3778, 7.3749, 7.3752, 7.4074, 7.4042, 7.3947, 7.4014, 7.3984, 7.3992, 7.3929, 7.3914, 7.388, 7.3847, 7.3815, 7.3781, 7.3756, 7.373, 7.3783, 7.3749, 7.3729, 7.3697, 7.3668, 7.3745, 7.3799, 7.3766, 7.3731, 7.3781, 7.3832, 7.3813, 7.3785, 7.3836, 7.3887, 7.3856, 7.3832, 7.3801, 7.3953, 7.408, 7.4096, 7.4156, 7.4128, 7.4096, 7.4068, 7.4121, 7.4182, 7.417, 7.416, 7.4129, 7.4102, 7.4067, 7.4052, 7.4111, 7.4085, 7.4066, 7.4039, 7.4019, 7.3992, 7.3968, 7.3938, 7.3911, 7.3884, 7.3893, 7.3878, 7.3854, 7.3822, 7.3875, 7.3845, 7.3813, 7.3789, 7.3767, 7.3754, 7.3729, 7.3789, 7.376, 7.3738, 7.38, 7.3853, 7.3839, 7.389, 7.3861, 7.383, 7.3842, 7.3813, 7.3783, 7.3755, 7.373, 7.3712, 7.3686, 7.3586, 7.349, 7.3462, 7.3431, 7.3406, 7.3377, 7.3368, 7.3346, 7.3321, 7.3296, 7.3271, 7.3326, 7.33, 7.328, 7.3191, 7.3163, 7.3147, 7.3118, 7.309, 7.3061, 7.3066, 7.307600000000001, 7.3063, 7.307300000000001, 7.3057, 7.3038, 7.2956, 7.2937, 7.2988, 7.296, 7.2953, 7.3305, 7.3388, 7.3432, 7.3483, 7.3833, 7.381, 7.3715, 7.3695, 7.3684, 7.3733, 7.3707, 7.3679, 7.3651, 7.3699, 7.368, 7.3725, 7.3705, 7.3677, 7.3652, 7.3624, 7.3614, 7.359, 7.3564, 7.3536, 7.3512, 7.3484, 7.3465, 7.3439, 7.3412, 7.3387, 7.339700000000001, 7.340700000000001, 7.3381, 7.3434, 7.3408, 7.3382, 7.3361, 7.3334, 7.3381, 7.3428, 7.3401, 7.3449, 7.3491, 7.3465, 7.3511, 7.3769, 7.3753, 7.3739, 7.3784, 7.3829, 7.3802, 7.3786, 7.377, 7.3784, 7.3771, 7.3813, 7.3795, 7.3767, 7.3741, 7.3837, 7.3822, 7.3802, 7.3777, 7.3844, 7.3824, 7.3802, 7.3715, 7.3688, 7.3744, 7.3721, 7.3698, 7.3746, 7.3724, 7.3699, 7.3675, 7.372, 7.3697, 7.3682, 7.373, 7.3846, 7.3841, 7.3882, 7.3862, 7.3835, 7.381, 7.3785, 7.3759, 7.374, 7.378, 7.3911, 7.3893, 7.3868, 7.3909, 7.3885, 7.3876, 7.3853, 7.383, 7.3806, 7.3791, 7.3771, 7.3747, 7.3891, 7.3936, 7.3855, 7.3829, 7.3816, 7.3802, 7.3778, 7.3753, 7.3736, 7.3714, 7.3689, 7.3665, 7.364, 7.3618, 7.3659, 7.3635, 7.3612, 7.3607, 7.3583, 7.3624, 7.3607, 7.3583, 7.3625, 7.3601, 7.3587, 7.3568, 7.3544, 7.3525, 7.3565, 7.3612, 7.3592, 7.3571, 7.3554, 7.3534, 7.3571, 7.3552, 7.3534, 7.3577, 7.3553, 7.3535, 7.3579, 7.3555, 7.3591, 7.3567, 7.3543, 7.3533, 7.3517, 7.3555, 7.3592, 7.3567, 7.3575, 7.3557, 7.3753, 7.373, 7.3721, 7.376, 7.3743, 7.3724, 7.3704, 7.369, 7.3732, 7.3771, 7.3747, 7.3725, 7.3707, 7.3699, 7.3676, 7.3664, 7.3649, 7.3687, 7.3725, 7.3706, 7.3683, 7.379, 7.3773, 7.375, 7.373, 7.3719, 7.3705, 7.3683, 7.3609, 7.3645, 7.3624, 7.3603, 7.3581, 7.3564, 7.3543, 7.3581, 7.3618, 7.3671, 7.3649, 7.3634, 7.3612, 7.365, 7.3628, 7.3623, 7.3611, 7.359, 7.3578, 7.3566, 7.3506, 7.3608, 7.3597, 7.3663, 7.3649, 7.3687, 7.3667, 7.365, 7.3628, 7.3682, 7.3661, 7.3644, 7.3624, 7.3606, 7.3592, 7.3575, 7.3563, 7.3543, 7.3522, 7.3504, 7.3483, 7.3517, 7.3497, 7.3647, 7.3743, 7.3727, 7.371, 7.3698, 7.3677, 7.3656, 7.3693, 7.3731, 7.371, 7.3689, 7.3667, 7.3706, 7.3685, 7.378, 7.376, 7.3793, 7.3778, 7.3763, 7.375, 7.373, 7.3740000000000006, 7.3778, 7.3777, 7.3763, 7.3709, 7.3873, 7.3854, 7.391, 7.4003, 7.4042, 7.4029, 7.401, 7.405, 7.3979, 7.3958, 7.3994, 7.398, 7.3967, 7.3953, 7.4006, 7.4044, 7.4023, 7.4012, 7.3998, 7.3978, 7.3964, 7.4062, 7.4049, 7.4082, 7.4062, 7.4057, 7.4044, 7.4022, 7.4007, 7.3987, 7.3974, 7.3963, 7.4001, 7.4096, 7.4127, 7.4198, 7.4138, 7.4118, 7.4152, 7.4149, 7.4136, 7.4117, 7.4313, 7.4312, 7.4293, 7.4275, 7.4309, 7.4344, 7.4437, 7.4427, 7.4476, 7.4466, 7.4501, 7.4484, 7.453, 7.4523, 7.4509, 7.4497, 7.4578, 7.461, 7.4589, 7.4583, 7.4569, 7.4564, 7.4602, 7.4639, 7.4631, 7.4661, 7.4694, 7.4717, 7.4697, 7.4676, 7.4708, 7.4691, 7.4757, 7.4738, 7.4717, 7.4703, 7.4684, 7.4713, 7.4694, 7.4727, 7.4757, 7.4736, 7.4714, 7.4693, 7.4673, 7.4653, 7.4633, 7.4613, 7.4604, 7.4586, 7.4571, 7.455, 7.4559, 7.4552, 7.4536, 7.4534, 7.4519, 7.4698, 7.4727, 7.4706, 7.4688, 7.4746, 7.4727, 7.4731, 7.4783, 7.4763, 7.4792, 7.4775, 7.4754, 7.4734, 7.4763, 7.4743, 7.478, 7.4764, 7.4747, 7.4781, 7.4763, 7.4742, 7.4772, 7.4806, 7.4755, 7.476, 7.4741, 7.473, 7.4716, 7.4707, 7.4689, 7.4722, 7.4704, 7.4654, 7.4642, 7.463, 7.462, 7.4666, 7.4731, 7.4726, 7.4708, 7.474, 7.4773, 7.4804, 7.4833, 7.4817, 7.4849, 7.4788, 7.4779, 7.481, 7.4795, 7.4779, 7.4774, 7.4808, 7.4791, 7.4737, 7.4765, 7.4749, 7.4733, 7.4713, 7.4743, 7.4723, 7.4706, 7.469, 7.4723, 7.4706, 7.4749, 7.4778, 7.49, 7.4982, 7.4964, 7.4992, 7.4975, 7.4956, 7.4938, 7.4968, 7.4957, 7.4988, 7.4975, 7.5006, 7.5084, 7.5065, 7.5049, 7.5034, 7.5061, 7.5046, 7.5035, 7.5062, 7.5089, 7.507, 7.5052, 7.5037, 7.5018, 7.4999, 7.4985, 7.5021, 7.5002, 7.5028, 7.5057, 7.5047, 7.5037, 7.5068, 7.5058, 7.5042, 7.5024, 7.5006, 7.4992, 7.5081, 7.5065, 7.5006, 7.4989, 7.502, 7.5001, 7.4986, 7.4969, 7.4952, 7.4933, 7.4934, 7.4959, 7.4949, 7.4931, 7.4915, 7.49, 7.4886, 7.4872, 7.4899, 7.4892, 7.4919, 7.4906, 7.4894, 7.4877, 7.4903, 7.4886, 7.4868, 7.4911, 7.4903, 7.4889, 7.4878, 7.4864, 7.4851, 7.4839, 7.4822, 7.4848, 7.4833, 7.4991, 7.4983, 7.5051, 7.5127, 7.5207, 7.5189, 7.5172, 7.5162, 7.5147, 7.5133, 7.5119, 7.5102, 7.5129, 7.5112, 7.514, 7.5129, 7.5115, 7.51, 7.5085, 7.5073, 7.5058, 7.5041, 7.507, 7.5059, 7.5044, 7.5032, 7.5058, 7.5044, 7.5087, 7.5072, 7.5117, 7.5186, 7.5255, 7.5241, 7.5224, 7.5215, 7.5317, 7.5271, 7.5348, 7.545, 7.5446, 7.5471, 7.5456, 7.5516, 7.5555, 7.5758, 7.5784, 7.5812, 7.5852, 7.588, 7.5862, 7.5848, 7.583, 7.5855, 7.584, 7.5825, 7.5807, 7.5789, 7.5777, 7.5801, 7.5787, 7.5776, 7.5761, 7.5748, 7.5731, 7.5713, 7.5743, 7.5768, 7.5752, 7.578, 7.5765, 7.579, 7.5784, 7.5768, 7.5715, 7.574, 7.5723, 7.5748, 7.5746, 7.5728, 7.5752, 7.5854, 7.5838, 7.5863, 7.5847, 7.583, 7.5818, 7.5809, 7.5794, 7.5777, 7.5766, 7.5793, 7.5775, 7.5757, 7.5741, 7.5724, 7.5711, 7.5699, 7.5686, 7.567, 7.5656, 7.5666, 7.5681, 7.5664, 7.5691, 7.5683, 7.5669, 7.5839, 7.5825, 7.5851, 7.5838, 7.5835, 7.5818, 7.5804, 7.579, 7.5804, 7.5791, 7.5816, 7.5805, 7.5792, 7.5776, 7.576, 7.5759, 7.5783, 7.5767, 7.575, 7.5737, 7.5725, 7.5746, 7.5769, 7.5794, 7.5817, 7.5801, 7.5825, 7.5809, 7.5802, 7.5829, 7.5813, 7.5798, 7.5826, 7.5847, 7.5877, 7.5861, 7.5845, 7.5861, 7.5845, 7.5868, 7.5854, 7.5878, 7.5862, 7.5845, 7.5845, 7.583, 7.5861, 7.5863, 7.5851, 7.584, 7.5945, 7.5976, 7.5965, 7.5948, 7.5935, 7.5966, 7.5953, 7.5938, 7.5965, 7.5952, 7.5944, 7.5934, 7.5957, 7.5945, 7.5932, 7.5918, 7.5906, 7.589, 7.5875, 7.586, 7.5847, 7.5839, 7.5825, 7.5814, 7.58, 7.5825, 7.5812, 7.5797, 7.5786, 7.5771, 7.576, 7.5785, 7.5788, 7.5812, 7.5799, 7.5752, 7.5738, 7.5722, 7.5743, 7.5768, 7.5775, 7.5726, 7.5713, 7.5699, 7.5687, 7.5672, 7.5659, 7.5647, 7.5634, 7.5619, 7.5646, 7.5631, 7.5654, 7.5678, 7.5702, 7.569, 7.5674, 7.5698, 7.5723, 7.5718, 7.5743, 7.5732, 7.5716, 7.5702, 7.5688, 7.5708, 7.5696, 7.5684, 7.567, 7.5659, 7.5645, 7.5634, 7.5622, 7.5614, 7.5566, 7.5567, 7.556, 7.5572, 7.5557, 7.5546, 7.5598, 7.5629, 7.5614, 7.5634, 7.5586, 7.557, 7.5688, 7.5642, 7.5633, 7.5625, 7.5663, 7.5648, 7.5632, 7.5655, 7.564, 7.5628, 7.5617, 7.5602, 7.5595, 7.558, 7.5566, 7.5551, 7.5538, 7.5528, 7.5482, 7.5469, 7.549, 7.5514, 7.5539, 7.556, 7.5619, 7.564, 7.5656, 7.5677, 7.5666, 7.5653, 7.5644, 7.563, 7.5618, 7.5603, 7.5589, 7.5611, 7.5596, 7.558, 7.5603, 7.5589, 7.5575, 7.5599, 7.5597, 7.5582, 7.5569, 7.5556, 7.5546, 7.5532, 7.552, 7.5514, 7.5503, 7.5496, 7.5484, 7.5473, 7.5462, 7.5484, 7.5471, 7.5496, 7.5521, 7.5508, 7.5493, 7.5479, 7.5465, 7.5456, 7.5462, 7.5448, 7.5433, 7.5419, 7.5407, 7.5363, 7.5386, 7.5377, 7.5363, 7.5351, 7.5339, 7.5364, 7.5351, 7.5345, 7.5368, 7.5353, 7.5376, 7.5365, 7.5358, 7.5346, 7.5304, 7.5291, 7.5316, 7.5303, 7.5297, 7.5324, 7.5351, 7.5343, 7.5331, 7.5317, 7.5309, 7.5329, 7.5349, 7.5369, 7.5391, 7.538, 7.537, 7.5362, 7.5388, 7.5379, 7.54, 7.5389, 7.5376, 7.54, 7.5389, 7.5381, 7.5403, 7.5391, 7.5378, 7.5364, 7.5385, 7.5372, 7.5363, 7.5352, 7.5378, 7.54, 7.5385, 7.5371, 7.5361, 7.535, 7.5336, 7.5321, 7.5339, 7.5325, 7.5315, 7.5309, 7.5295, 7.5314, 7.5303, 7.5289, 7.5308, 7.53, 7.5286, 7.5274, 7.5261, 7.5249, 7.5206, 7.5227, 7.5214, 7.5206, 7.5198, 7.522, 7.5216, 7.5203, 7.5191, 7.5214, 7.5228, 7.5216, 7.5204, 7.5196, 7.5186, 7.5174, 7.5161, 7.5147, 7.5148, 7.5105, 7.5092, 7.5163, 7.5153, 7.514, 7.5139, 7.5125, 7.5152, 7.5139, 7.5126, 7.5113, 7.5137, 7.5158, 7.5148, 7.519, 7.5211, 7.517, 7.5164, 7.5151, 7.5171, 7.5158, 7.5145, 7.5133, 7.512, 7.5137, 7.516, 7.5149, 7.5172, 7.5164, 7.5249, 7.5235, 7.5222, 7.521, 7.52, 7.5189, 7.5176, 7.5174, 7.516, 7.5151, 7.5142, 7.5129, 7.5282, 7.5272, 7.5266, 7.5259, 7.5246, 7.5265, 7.5256, 7.5244, 7.5264, 7.5224, 7.5243, 7.5233, 7.5253, 7.5245, 7.5233, 7.5219, 7.5206, 7.5196, 7.5187, 7.5178, 7.5205, 7.5193, 7.518, 7.5139, 7.5161, 7.515, 7.514, 7.5126, 7.5115, 7.5102, 7.509, 7.5081, 7.5102, 7.5092, 7.5058, 7.5047, 7.5047, 7.5039, 7.5027, 7.5016, 7.5035, 7.5023, 7.5077, 7.5064, 7.5059, 7.5051, 7.505, 7.5071, 7.5091, 7.5082, 7.5071, 7.5067, 7.5056, 7.5047, 7.5035, 7.5027, 7.5017, 7.5037, 7.4996, 7.5061, 7.5049, 7.5069, 7.5119, 7.5139, 7.5133, 7.5121, 7.514, 7.5128, 7.5148, 7.5165, 7.5153, 7.514, 7.516, 7.5148, 7.5136, 7.5126, 7.5117, 7.5105, 7.5092, 7.5109, 7.5128, 7.5115, 7.5102, 7.5092, 7.508, 7.5069, 7.5057, 7.5049, 7.5042, 7.5061, 7.5051, 7.5039, 7.5058, 7.5048, 7.5036, 7.5054, 7.5045, 7.5041, 7.503, 7.5018, 7.5006, 7.4994, 7.4981, 7.4974, 7.5077, 7.5072, 7.5061, 7.5078, 7.5066, 7.5075, 7.5063, 7.5051, 7.5042, 7.503, 7.5051, 7.5072, 7.5062, 7.5054, 7.5044, 7.5031, 7.5053, 7.5041, 7.5028, 7.5016, 7.5006, 7.4999, 7.499, 7.4978, 7.4995, 7.5014, 7.5002, 7.4993, 7.4981, 7.4972, 7.4938, 7.4927, 7.4924, 7.4946, 7.4936, 7.4925, 7.4916, 7.4936, 7.4925, 7.4916, 7.4904, 7.492, 7.4912, 7.4955, 7.4918, 7.4907, 7.4934, 7.4925, 7.4913, 7.4903, 7.4892, 7.4882, 7.4871, 7.489, 7.4878, 7.4916, 7.4936, 7.4931, 7.4919, 7.491, 7.4928, 7.4917, 7.4914, 7.4904, 7.4898, 7.4892, 7.4884, 7.4884, 7.4874, 7.4864, 7.4882, 7.4881, 7.4945, 7.4937, 7.4928, 7.4927, 7.4947, 7.4937, 7.4928, 7.4958, 7.4979, 7.4968, 7.4957, 7.4948, 7.494, 7.4909, 7.4901, 7.487, 7.486, 7.4878, 7.4867, 7.4836, 7.4825, 7.4876, 7.4955, 7.4946, 7.4965, 7.4956, 7.4945, 7.4939, 7.4929, 7.4925, 7.4938, 7.4928, 7.4924, 7.4952, 7.4944, 7.4933, 7.4954, 7.4959, 7.5028, 7.5112, 7.5101, 7.5093, 7.5095, 7.509, 7.508, 7.5139, 7.5128, 7.5145, 7.5144, 7.5169, 7.5157, 7.5177, 7.5193, 7.5185, 7.5233, 7.531, 7.5301, 7.5291, 7.5293, 7.5338, 7.5326, 7.5316, 7.5332, 7.5368, 7.5384, 7.54, 7.5391, 7.5435, 7.5461, 7.5462, 7.5489, 7.548, 7.5458, 7.5446, 7.5435, 7.5431, 7.5422, 7.5437, 7.5427, 7.5418, 7.5407, 7.549, 7.5481, 7.5474, 7.5496, 7.5487, 7.5503, 7.5522, 7.5513, 7.5533, 7.5551, 7.5544, 7.5559, 7.5548, 7.5564, 7.5564, 7.5554, 7.557, 7.5616, 7.5604, 7.562, 7.5664, 7.5679, 7.5671, 7.5715, 7.5736, 7.5724, 7.5718, 7.5708, 7.5738, 7.5817, 7.5808, 7.5797, 7.5786, 7.5774, 7.5738, 7.5726, 7.5736, 7.5752, 7.5716, 7.5705, 7.5722, 7.5711, 7.57, 7.5689, 7.5681, 7.5679, 7.5696, 7.5697, 7.5726, 7.5719, 7.5708, 7.5698, 7.5713, 7.5702, 7.5693, 7.571, 7.5727, 7.5745, 7.5739, 7.5728, 7.5717, 7.5735, 7.5753, 7.5743, 7.5749, 7.5738, 7.5728, 7.5719, 7.571, 7.5701, 7.569, 7.5716, 7.5706, 7.5696, 7.5687, 7.5745, 7.5794, 7.5783, 7.5755, 7.5868, 7.5981, 7.5972, 7.5965, 7.5964, 7.5955, 7.5947, 7.6023, 7.6087, 7.6115, 7.6107, 7.6127, 7.6122, 7.6143, 7.616, 7.6148, 7.614, 7.6115, 7.6116, 7.6146, 7.6205, 7.6199, 7.6191, 7.6181, 7.617, 7.616, 7.615, 7.614, 7.613, 7.6121, 7.6112, 7.6104, 7.6095, 7.6114, 7.6104, 7.6121, 7.611, 7.6129, 7.6118, 7.6107, 7.6101, 7.6089, 7.6079, 7.6068, 7.6063, 7.6078, 7.6066, 7.6055, 7.6043, 7.6034, 7.606, 7.6026, 7.6042, 7.6032, 7.605, 7.6039, 7.6029, 7.6029, 7.602, 7.6014, 7.6029, 7.6019, 7.6008, 7.5998, 7.597, 7.597, 7.5999, 7.6014, 7.6003, 7.6019, 7.6008, 7.5997, 7.6032, 7.6049, 7.6039, 7.6055, 7.6069, 7.6061, 7.6052, 7.6067, 7.6056, 7.6071, 7.606, 7.6051, 7.6045, 7.6035, 7.6051, 7.6043, 7.6034, 7.6049, 7.6038, 7.608, 7.6069, 7.606, 7.6074, 7.6067, 7.6056, 7.6045, 7.6038, 7.6027, 7.6019, 7.6011, 7.6001, 7.5994, 7.601, 7.6001, 7.5991, 7.5986, 7.5977, 7.5972, 7.5962, 7.5954, 7.5946, 7.5936, 7.5926, 7.5916, 7.5906, 7.5896, 7.5886, 7.5875, 7.5866, 7.5857, 7.5846, 7.5835, 7.5824, 7.5813, 7.5805, 7.5794, 7.5811, 7.5825, 7.584, 7.5831, 7.5847, 7.5839, 7.5828, 7.5843, 7.5832, 7.5846, 7.5864, 7.5853, 7.5845, 7.5859, 7.5872, 7.5863, 7.5881, 7.5896, 7.589, 7.5907, 7.5877, 7.587, 7.586, 7.5853, 7.5844, 7.5835, 7.5825, 7.5817, 7.5857, 7.5846, 7.5862, 7.5852, 7.5847, 7.5845, 7.5869, 7.5863, 7.5853, 7.5843, 7.5834, 7.5825, 7.5815, 7.5829, 7.5824, 7.5814, 7.5804, 7.5771, 7.5761, 7.5753, 7.5743, 7.5711, 7.5702, 7.5692, 7.5685, 7.5674, 7.5689, 7.5681, 7.5675, 7.5712, 7.5704, 7.5696, 7.5686, 7.5704, 7.5696, 7.5689, 7.568, 7.5697, 7.5688, 7.5705, 7.5696, 7.5686, 7.5677, 7.5671, 7.5661, 7.5651, 7.5642, 7.5634, 7.5625, 7.5617, 7.5632, 7.5628, 7.5618, 7.5633, 7.5646, 7.5636, 7.5651, 7.5644, 7.5634, 7.5623, 7.5613, 7.5604, 7.5596, 7.5586, 7.5602, 7.5595, 7.5586, 7.5555, 7.5545, 7.556, 7.5577, 7.5574, 7.5564, 7.5556, 7.557, 7.5576, 7.5566, 7.5557, 7.555, 7.5541, 7.5532, 7.555, 7.5541, 7.5533, 7.5526, 7.5518, 7.5511, 7.5528, 7.5519, 7.5513, 7.5526, 7.5516, 7.5506, 7.5498, 7.55, 7.5491, 7.546, 7.5452, 7.5422, 7.5413, 7.5408, 7.5409, 7.5423, 7.5417, 7.541, 7.54, 7.5394, 7.5385, 7.5377, 7.5393, 7.5387, 7.5378, 7.5368, 7.5383, 7.5374, 7.5367, 7.5358, 7.5349, 7.5364, 7.5355, 7.5346, 7.5337, 7.5334, 7.5324, 7.5317, 7.531, 7.53, 7.5294, 7.5308, 7.5323, 7.5318, 7.5308, 7.53, 7.5291, 7.5285, 7.5276, 7.5268, 7.5282, 7.5277, 7.5267, 7.5281, 7.5275, 7.5302, 7.5362, 7.5352, 7.5347, 7.5339, 7.5335, 7.5349, 7.5394, 7.5387, 7.538, 7.5371, 7.54, 7.5392, 7.5416, 7.543, 7.5445, 7.5485, 7.5499, 7.5491, 7.5483, 7.5477, 7.547, 7.5462, 7.5456, 7.5449, 7.544, 7.5432, 7.5423, 7.5417, 7.541, 7.5403, 7.5417, 7.5407, 7.5398, 7.539, 7.5381, 7.5373, 7.5364, 7.5358, 7.5372, 7.5386, 7.54, 7.5413, 7.5427, 7.5418, 7.5409, 7.54, 7.5391, 7.5381, 7.5374, 7.5365, 7.5355, 7.5351, 7.5346, 7.5358, 7.5349, 7.5342, 7.5356, 7.5347, 7.5338, 7.5329, 7.5322, 7.5313, 7.5327, 7.5323, 7.5314, 7.5305, 7.5296, 7.5288, 7.5302, 7.5296, 7.5287, 7.5281, 7.5275, 7.527, 7.5264, 7.5256, 7.525, 7.5265, 7.5263, 7.5301, 7.5291, 7.5281, 7.5274, 7.5266, 7.5281, 7.5253, 7.5243, 7.5234, 7.5248, 7.5238, 7.5252, 7.5266, 7.5258, 7.5271, 7.5285, 7.5256, 7.5248, 7.524, 7.5232, 7.5222, 7.5214, 7.5206, 7.5199, 7.5192, 7.5163, 7.5177, 7.5171, 7.5164, 7.5155, 7.5145, 7.5139, 7.513, 7.5121, 7.5114, 7.5119, 7.5137, 7.5152, 7.5145, 7.5158, 7.5149, 7.5146, 7.514, 7.5134, 7.5147, 7.5139, 7.513, 7.5121, 7.5112, 7.5109, 7.5139, 7.513, 7.5121, 7.5112, 7.5103, 7.5094, 7.5088, 7.5085, 7.5078, 7.5069, 7.5061, 7.5052, 7.5043, 7.5035, 7.5049, 7.5043, 7.5037, 7.505, 7.5042, 7.5033, 7.5025, 7.5038, 7.5063, 7.5056, 7.5049, 7.5045, 7.5037, 7.5029, 7.5049, 7.5042, 7.5057, 7.505, 7.5041, 7.5077, 7.5069, 7.5061, 7.5052, 7.5065, 7.5056, 7.5048, 7.5039, 7.5035, 7.5074, 7.5074, 7.5066, 7.5057, 7.5048, 7.5045, 7.5039, 7.5081, 7.5073, 7.5067, 7.5061, 7.5052, 7.5043, 7.5039, 7.5049, 7.504, 7.5121, 7.5144, 7.5141, 7.5133, 7.5128, 7.512, 7.5133, 7.5125, 7.5119, 7.5113, 7.5105, 7.5099, 7.5093, 7.5085, 7.508, 7.5092, 7.5105, 7.5143, 7.5135, 7.5127, 7.512, 7.5112, 7.5105, 7.5122, 7.5113, 7.5087, 7.5099, 7.509, 7.5104, 7.5095, 7.5109, 7.5182, 7.5174, 7.5169, 7.5144, 7.5147, 7.5139, 7.5152, 7.5156, 7.5151, 7.5143, 7.5136, 7.5141, 7.5132, 7.5124, 7.5118, 7.5109, 7.5122, 7.5121, 7.5115, 7.5107, 7.51, 7.5095, 7.5068, 7.5063, 7.506, 7.5053, 7.5052, 7.5043, 7.5034, 7.5026, 7.504, 7.5053, 7.5027, 7.5021, 7.5014, 7.5006, 7.5021, 7.5016, 7.5008, 7.5002, 7.4997, 7.499, 7.4983, 7.4978, 7.4971, 7.4985, 7.4977, 7.4971, 7.4962, 7.4955, 7.4947, 7.4939, 7.4951, 7.4944, 7.4956, 7.4948, 7.4941, 7.4933, 7.4947, 7.4939, 7.4955, 7.501, 7.5003, 7.4997, 7.499, 7.4982, 7.4973, 7.4986, 7.4982, 7.4995, 7.4991, 7.5003, 7.4995, 7.5008, 7.5039, 7.5054, 7.5093, 7.5131, 7.5123, 7.5118, 7.511, 7.5101, 7.5093, 7.5088, 7.508, 7.5088, 7.5066, 7.5061, 7.5056, 7.5068, 7.5062, 7.5054, 7.5053, 7.5044, 7.5036, 7.5029, 7.5041, 7.5036, 7.5028, 7.5019, 7.5031, 7.5023, 7.5035, 7.5047, 7.506, 7.5053, 7.5047, 7.5022, 7.5016, 7.5008, 7.502, 7.5012, 7.5024, 7.5016, 7.501, 7.5002, 7.4993, 7.4989, 7.5003, 7.4995, 7.4991, 7.4985, 7.4979, 7.4972, 7.4984, 7.498, 7.4977, 7.4969, 7.4966, 7.4958, 7.4953, 7.4945, 7.4957, 7.4975, 7.497, 7.4964, 7.4958, 7.4952, 7.4946, 7.4959, 7.4973, 7.4967, 7.4987, 7.5004, 7.4978, 7.4993, 7.4989, 7.4981, 7.4956, 7.4949, 7.4944, 7.4958, 7.495, 7.4944, 7.4957, 7.495, 7.5043, 7.5054, 7.5046, 7.5041, 7.5035, 7.5028, 7.5021, 7.5014, 7.5049, 7.5043, 7.506, 7.5056, 7.5069, 7.5063, 7.5057, 7.5052, 7.5047, 7.5066, 7.508, 7.5098, 7.5131, 7.5124, 7.5117, 7.5114, 7.515, 7.5142, 7.5134, 7.5188, 7.5182, 7.5215, 7.5209, 7.526, 7.5252, 7.5263, 7.5258, 7.5309, 7.5301, 7.5354, 7.5346, 7.5339, 7.5333, 7.5325, 7.5319, 7.5331, 7.5325, 7.5321, 7.5298, 7.529, 7.5264, 7.5296, 7.529, 7.5322, 7.5315, 7.5327, 7.5326, 7.53, 7.5293, 7.5285, 7.5299, 7.5292, 7.5285, 7.5278, 7.5292, 7.5284, 7.5276, 7.5268, 7.526, 7.5253, 7.5264, 7.5257, 7.5269, 7.5263, 7.5255, 7.5247, 7.524, 7.5251, 7.5243, 7.5235, 7.5227, 7.5219, 7.5211, 7.5208, 7.5201, 7.5198, 7.519, 7.5202, 7.5214, 7.5191, 7.5186, 7.5178, 7.517, 7.5165, 7.5159, 7.5172, 7.5166, 7.518, 7.5179, 7.5174, 7.519, 7.5165, 7.5157, 7.5149, 7.5146, 7.5159, 7.517, 7.5201, 7.5232, 7.5284, 7.528, 7.5273, 7.5265, 7.5259, 7.5271, 7.5284, 7.5279, 7.5272, 7.5267, 7.5261, 7.5236, 7.5247, 7.5257, 7.5268, 7.526, 7.5271, 7.5265, 7.5275, 7.5267, 7.5259, 7.5251, 7.5248, 7.5241, 7.5235, 7.5247, 7.5239, 7.5234, 7.5226, 7.5239, 7.5257, 7.5255, 7.5249, 7.5241, 7.5253, 7.5247, 7.5266, 7.5279, 7.5271, 7.5263, 7.5255, 7.5249, 7.5241, 7.5233, 7.5225, 7.522, 7.5231, 7.525, 7.5242, 7.5234, 7.5226, 7.5312, 7.5304, 7.5296, 7.529, 7.5285, 7.5296, 7.5289, 7.5282, 7.5275, 7.5251, 7.5245, 7.5242, 7.5235, 7.5265, 7.5257, 7.5281, 7.5295, 7.5287, 7.5279, 7.5285, 7.534, 7.5352, 7.5364, 7.5358, 7.5351, 7.5344, 7.5336, 7.5333, 7.5326, 7.5338, 7.535, 7.5345, 7.5337, 7.5349, 7.5343, 7.5335, 7.5329, 7.5321, 7.5314, 7.5308, 7.53, 7.5294, 7.5288, 7.5282, 7.5295, 7.5323, 7.5316, 7.5329, 7.5397, 7.5408, 7.54, 7.5394, 7.5387, 7.5379, 7.5455, 7.5449, 7.546, 7.5454, 7.5447, 7.5441, 7.5436, 7.5468, 7.5479, 7.5471, 7.5474, 7.5505, 7.5499, 7.5476, 7.5468, 7.5444, 7.5456, 7.5449, 7.5443, 7.544, 7.5433, 7.5443, 7.5437, 7.5431, 7.5443, 7.5454, 7.5447, 7.544, 7.5433, 7.5426, 7.5419, 7.5431, 7.5442, 7.5435, 7.5427, 7.5428, 7.542, 7.5416, 7.5412, 7.5407, 7.5402, 7.5414, 7.5427, 7.5421, 7.5414, 7.5407, 7.54, 7.5393, 7.5388, 7.5381, 7.5376, 7.537, 7.5363, 7.5358, 7.5354, 7.5347, 7.5339, 7.5333, 7.5344, 7.5341, 7.5354, 7.5352, 7.5344, 7.5322, 7.5323, 7.5334, 7.5327, 7.5338, 7.5334, 7.5328, 7.534, 7.5332, 7.5326, 7.532, 7.5314, 7.5306, 7.5299, 7.5312, 7.5326, 7.5338, 7.5349, 7.5362, 7.5372, 7.5367, 7.5363, 7.5357, 7.5355, 7.5366, 7.536, 7.5354, 7.5349, 7.5362, 7.5356, 7.5351, 7.5343, 7.5339, 7.5331, 7.5323, 7.5335, 7.5328, 7.5325, 7.5337, 7.5332, 7.5325, 7.5319, 7.5312, 7.5308, 7.5304, 7.5299, 7.5293, 7.5287, 7.5299, 7.5311, 7.5305, 7.5299, 7.5293, 7.5305, 7.5299, 7.5294, 7.5286, 7.5281, 7.5293, 7.5287, 7.5282, 7.5294, 7.5304, 7.5297, 7.5294, 7.5288, 7.5284, 7.5277, 7.5255, 7.5248, 7.5242, 7.5237, 7.523, 7.5241, 7.5234, 7.5227, 7.522, 7.5213, 7.5206, 7.5199, 7.5192, 7.5186, 7.5179, 7.5192, 7.5185, 7.5162, 7.5173, 7.5184, 7.5177, 7.5172, 7.519, 7.5201, 7.5212, 7.5206, 7.5201, 7.5194, 7.519, 7.52, 7.5194, 7.5187, 7.518, 7.5175, 7.5168, 7.5161, 7.5156, 7.5151, 7.5145, 7.5192, 7.5221, 7.5215, 7.5192, 7.5248, 7.5247, 7.5279, 7.5297, 7.529, 7.5286, 7.528, 7.5273, 7.5266, 7.5276, 7.535, 7.5343, 7.5355, 7.5348, 7.5341, 7.5352, 7.5345, 7.5356, 7.5348, 7.5343, 7.5337, 7.5334, 7.5345, 7.5338, 7.5331, 7.5325, 7.5321, 7.5332, 7.5325, 7.5369, 7.5362, 7.5356, 7.5349, 7.5343, 7.5338, 7.5332, 7.5327, 7.5323, 7.5377, 7.537, 7.5365, 7.5359, 7.5352, 7.5348, 7.5357, 7.5368, 7.5362, 7.5355, 7.5348, 7.534, 7.5334, 7.5327, 7.5323, 7.5333, 7.5328, 7.5322, 7.5333, 7.5326, 7.5321, 7.5316, 7.531, 7.5303, 7.5296, 7.5307, 7.5301, 7.5294, 7.5287, 7.5281, 7.5276, 7.527, 7.5282, 7.5278, 7.5271, 7.5264, 7.526, 7.5259, 7.5271, 7.5267, 7.5277, 7.5275, 7.5288, 7.532, 7.5314, 7.5324, 7.5319, 7.5329, 7.5325, 7.5318, 7.5313, 7.5324, 7.5329, 7.5344, 7.5355, 7.5349, 7.5346, 7.5341, 7.5334, 7.5329, 7.5324, 7.5317, 7.5333, 7.5328, 7.5338, 7.5333, 7.5329, 7.5322, 7.5332, 7.5359, 7.5369, 7.5426, 7.5404, 7.5399, 7.5409, 7.5419, 7.543, 7.544, 7.5433, 7.5426, 7.542, 7.5415, 7.541, 7.543, 7.5424, 7.5436, 7.5446, 7.5439, 7.5434, 7.543, 7.5423, 7.5416, 7.5409, 7.5469, 7.5462, 7.5456, 7.5469, 7.5485, 7.5481, 7.5474, 7.5467, 7.5464, 7.5457, 7.545, 7.5472, 7.5465, 7.5461, 7.5456, 7.5449, 7.5442, 7.5453, 7.5446, 7.5441, 7.5436, 7.5429, 7.5423, 7.5417, 7.5412, 7.5405, 7.5398, 7.5391, 7.5402, 7.5395, 7.5389, 7.5384, 7.5382, 7.5375, 7.5387, 7.5398, 7.5394, 7.5387, 7.5381, 7.5375, 7.537, 7.5381, 7.5374, 7.5369, 7.5362, 7.5355, 7.5366, 7.536, 7.5353, 7.5356, 7.535, 7.5353, 7.5347, 7.5345, 7.5338, 7.5332, 7.5327, 7.5323, 7.5352, 7.5347, 7.5344, 7.5337, 7.533, 7.5325, 7.5336, 7.5331, 7.5324, 7.5327, 7.5321, 7.5331, 7.5325, 7.5305, 7.5306, 7.5316, 7.5326, 7.5336, 7.5329, 7.5324, 7.5319, 7.5313, 7.5292, 7.5286, 7.5303, 7.5297, 7.5293, 7.5289, 7.5286, 7.528, 7.529, 7.5299, 7.5309, 7.5303, 7.5297, 7.5293, 7.5291, 7.5294, 7.5289, 7.5282, 7.5277, 7.527, 7.5263, 7.5256, 7.5249, 7.5259, 7.5253, 7.5246, 7.5255, 7.525, 7.5243, 7.5241, 7.5237, 7.5246, 7.524, 7.5235, 7.5231, 7.5224, 7.5234, 7.5244, 7.5237, 7.5247, 7.5243, 7.5237, 7.5231, 7.5241, 7.5236, 7.5232, 7.5226, 7.5244, 7.5239, 7.5233, 7.5227, 7.5221, 7.5215, 7.5211, 7.5205, 7.5215, 7.521, 7.5204, 7.5198, 7.5192, 7.5188, 7.5198, 7.5229, 7.5222, 7.5218, 7.5227, 7.5229, 7.5225, 7.5218, 7.5211, 7.5205, 7.5199, 7.5209, 7.5203, 7.5214, 7.5223, 7.5217, 7.521, 7.522, 7.5214, 7.5207, 7.5205, 7.5188, 7.52, 7.5195, 7.5215, 7.5215, 7.5231, 7.5261, 7.5255, 7.525, 7.5281, 7.5341, 7.5335, 7.5376, 7.5386, 7.5414, 7.5407, 7.5401, 7.5396, 7.5405, 7.5401, 7.5395, 7.5405, 7.5415, 7.5409, 7.5423, 7.5416, 7.5417, 7.541, 7.5405, 7.5398, 7.5392, 7.5385, 7.5389, 7.539, 7.5387, 7.5396, 7.5405, 7.5401, 7.5396, 7.5407, 7.5404, 7.5398, 7.5393, 7.5404, 7.5398, 7.5392, 7.5388, 7.5399, 7.5393, 7.5402, 7.5396, 7.539, 7.54, 7.5395, 7.5404, 7.54, 7.5395, 7.5388, 7.5397, 7.5391, 7.5385, 7.5379, 7.5374, 7.5368, 7.5378, 7.5388, 7.5385, 7.5394, 7.5374, 7.5372, 7.5369, 7.5366, 7.5376, 7.5369, 7.5365, 7.5361, 7.5356, 7.5351, 7.5346, 7.5341, 7.5336, 7.534, 7.5337, 7.5331, 7.5342, 7.5336, 7.5317, 7.5313, 7.5309, 7.532, 7.5315, 7.5319, 7.5314, 7.5313, 7.5308, 7.5318, 7.5318, 7.5329, 7.5324, 7.5321, 7.5316, 7.5341, 7.535, 7.536, 7.5369, 7.5394, 7.5388, 7.5388, 7.5384, 7.5385, 7.538, 7.5376, 7.537, 7.5382, 7.5377, 7.5373, 7.5366, 7.5375, 7.54, 7.5409, 7.5463, 7.5459, 7.5457, 7.5456, 7.5468, 7.5463, 7.5457, 7.5466, 7.5461, 7.5454, 7.5449, 7.5442, 7.5436, 7.5431, 7.5427, 7.5422, 7.5416, 7.54, 7.5395, 7.5391, 7.5385, 7.5379, 7.5388, 7.5398, 7.5392, 7.5387, 7.5367, 7.5362, 7.5387, 7.5383, 7.5379, 7.5374, 7.5368, 7.5363, 7.5357, 7.5352, 7.5345, 7.5339, 7.5334, 7.5328, 7.5337, 7.5331, 7.5327, 7.5337, 7.5345, 7.5339, 7.5334, 7.5328, 7.5335, 7.5331, 7.5362, 7.5372, 7.5367, 7.5362, 7.5372, 7.5381, 7.5392, 7.5403, 7.5402, 7.5412, 7.5408, 7.5403, 7.5398, 7.5393, 7.5416, 7.5426, 7.5434, 7.5444, 7.5453, 7.5448, 7.5456, 7.5451, 7.5446, 7.5456, 7.5468, 7.5461, 7.5455, 7.5463, 7.5457, 7.5452, 7.5446, 7.5456, 7.5451, 7.5461, 7.5456, 7.5452, 7.5447, 7.5445, 7.544, 7.545, 7.5459, 7.5468, 7.5477, 7.5471, 7.5467, 7.5462, 7.5456, 7.5452, 7.5461, 7.5455, 7.545, 7.5447, 7.5442, 7.5437, 7.5447, 7.5443, 7.5437, 7.5432, 7.5427, 7.5424, 7.5419, 7.5413, 7.5408, 7.5402, 7.5397, 7.5391, 7.5385, 7.5382, 7.5392, 7.5387, 7.5381, 7.5375, 7.5384, 7.538, 7.5374, 7.5369, 7.5363, 7.5358, 7.5353, 7.5362, 7.5356, 7.5351, 7.5346, 7.5355, 7.5365, 7.5359, 7.5405, 7.5401, 7.5395, 7.5405, 7.54, 7.5394, 7.5404, 7.5399, 7.5395, 7.5391, 7.5386, 7.5385, 7.5379, 7.5389, 7.5384, 7.5378, 7.5373, 7.5367, 7.5361, 7.5371, 7.5365, 7.536, 7.5354, 7.5335, 7.5344, 7.5353, 7.5362, 7.5356, 7.535, 7.5344, 7.5339, 7.5334, 7.5333, 7.5328, 7.5323, 7.5324, 7.5321, 7.5315, 7.5329, 7.5338, 7.5357, 7.5358, 7.5358, 7.5352, 7.5347, 7.5355, 7.5378, 7.5372, 7.5369, 7.5377, 7.5373, 7.5368, 7.5363, 7.5358, 7.5352, 7.5346, 7.5341, 7.5337, 7.5331, 7.5325, 7.5319, 7.5301, 7.5296, 7.5319, 7.5313, 7.5308, 7.5303, 7.5297, 7.5308, 7.5302, 7.5312, 7.5293, 7.5275, 7.5269, 7.5263, 7.526, 7.5269, 7.5265, 7.5247, 7.5228, 7.5223, 7.5218, 7.5212, 7.5241, 7.525, 7.5244, 7.524, 7.5249, 7.5244, 7.524, 7.5234, 7.5231, 7.524, 7.5234, 7.5232, 7.5226, 7.5221, 7.5229, 7.5237, 7.5218, 7.5212, 7.5195, 7.519, 7.5184, 7.5179, 7.5176, 7.5174, 7.5169, 7.5195, 7.5189, 7.5185, 7.5181, 7.5177, 7.5171, 7.5165, 7.516, 7.5169, 7.5164, 7.516, 7.5155, 7.5149, 7.5157, 7.5151, 7.5145, 7.5139, 7.5134, 7.5128, 7.5122, 7.5116, 7.5112, 7.5106, 7.5115, 7.5123, 7.5132, 7.5126, 7.512, 7.5128, 7.5122, 7.5132, 7.5128, 7.5137, 7.5132, 7.5126, 7.5148, 7.5157, 7.5165, 7.5232, 7.5226, 7.5231, 7.5227, 7.5221, 7.5215, 7.5253, 7.5249, 7.5244, 7.524, 7.5236, 7.525, 7.5244, 7.5274, 7.5283, 7.5278, 7.5272, 7.5267, 7.5263, 7.5272, 7.5275, 7.5269, 7.5278, 7.5273, 7.5268, 7.5264, 7.5249, 7.5257, 7.5252, 7.5261, 7.5304, 7.5298, 7.5347, 7.5349, 7.5344, 7.5339, 7.5347, 7.5342, 7.5349, 7.5345, 7.5351, 7.5359, 7.5355, 7.5351, 7.5348, 7.5342, 7.5336, 7.5333, 7.5328, 7.5337, 7.5332, 7.5326, 7.532, 7.5315, 7.531, 7.5316, 7.5344, 7.5339, 7.5334, 7.5328, 7.5325, 7.5333, 7.5386, 7.5384, 7.5393, 7.5437, 7.5432, 7.5454, 7.5452, 7.5447, 7.5442, 7.5451, 7.5461, 7.547, 7.5464, 7.546, 7.5455, 7.5449, 7.5444, 7.5438, 7.5446, 7.544, 7.5434, 7.5428, 7.5422, 7.5431, 7.5428, 7.5436, 7.5431, 7.5425, 7.542, 7.5416, 7.5411, 7.5408, 7.5403, 7.5397, 7.5392, 7.5387, 7.5384, 7.5394, 7.5389, 7.5384, 7.5379, 7.5412, 7.5407, 7.5406, 7.54, 7.5408, 7.5403, 7.5413, 7.5407, 7.5417, 7.5456, 7.5466, 7.5456, 7.5451, 7.5451, 7.5445, 7.5441, 7.5439, 7.5436, 7.5434, 7.5428, 7.5422, 7.5418, 7.5413, 7.5409, 7.5405, 7.5387, 7.5387, 7.5381, 7.5376, 7.5371, 7.5366, 7.5375, 7.537, 7.5365, 7.536, 7.5354, 7.5349, 7.5343, 7.5341, 7.5325, 7.5322, 7.5317, 7.5312, 7.532, 7.5316, 7.5324, 7.5318, 7.5312, 7.5308, 7.5302, 7.5298, 7.5294, 7.5288, 7.5283, 7.5278, 7.5273, 7.5269, 7.5265, 7.5259, 7.5254, 7.5267, 7.5263, 7.5258, 7.5253, 7.5247, 7.5255, 7.5265, 7.5259, 7.5255, 7.5263, 7.5273, 7.5267, 7.5275, 7.5271, 7.5267, 7.5261, 7.5269, 7.5326, 7.5321, 7.5315, 7.5309, 7.5305, 7.5306, 7.5314, 7.5311, 7.5307, 7.5305, 7.53, 7.5296, 7.5304, 7.5299, 7.5294, 7.5289, 7.5285, 7.5293, 7.5289, 7.5297, 7.5291, 7.5287, 7.5283, 7.5278, 7.5273, 7.5267, 7.5251, 7.5259, 7.5254, 7.5249, 7.5231, 7.5238, 7.5246, 7.5255, 7.5251, 7.5246, 7.5241, 7.5236, 7.5231, 7.524, 7.5236, 7.5232, 7.5227, 7.5241, 7.5236, 7.5245, 7.5228, 7.5226, 7.5221, 7.5217, 7.5213, 7.5222, 7.5219, 7.5234, 7.5256, 7.5257, 7.5292, 7.5286, 7.5309, 7.5317, 7.5325, 7.5333, 7.5329, 7.5338, 7.5347, 7.5341, 7.5336, 7.5333, 7.5328, 7.5323, 7.5329, 7.5337, 7.5331, 7.5325, 7.5321, 7.5316, 7.531, 7.5318, 7.5326, 7.5322, 7.5316, 7.5323, 7.533, 7.5339, 7.5333, 7.5341, 7.5349, 7.5344, 7.5339, 7.5334, 7.5329, 7.5324, 7.532, 7.5328, 7.5351, 7.5347, 7.5354, 7.5349, 7.5344, 7.5341, 7.5337, 7.5345, 7.5339, 7.5335, 7.5346, 7.5355, 7.535, 7.5346, 7.5342, 7.5343, 7.5353, 7.5349, 7.5345, 7.534, 7.5371, 7.5358, 7.5366, 7.5362, 7.5352, 7.5361, 7.5356, 7.5368, 7.5364, 7.536, 7.5346, 7.5341, 7.5336, 7.5332, 7.5327, 7.5324, 7.5319, 7.5315, 7.531, 7.5306, 7.5302, 7.5297, 7.5306, 7.5303, 7.5298, 7.5294, 7.5289, 7.5284, 7.5279, 7.5275, 7.5273, 7.527, 7.5279, 7.5275, 7.5271, 7.5265, 7.5261, 7.5257, 7.5254, 7.525, 7.5245, 7.5241, 7.5236, 7.523, 7.5238, 7.5247, 7.5243, 7.5253, 7.5247, 7.5242, 7.5239, 7.5235, 7.523, 7.5239, 7.5234, 7.5231, 7.5225, 7.5221, 7.5229, 7.5228, 7.5223, 7.5218, 7.5222, 7.522, 7.5217, 7.5213, 7.521, 7.5206, 7.5236, 7.5246, 7.5242, 7.5238, 7.5236, 7.525, 7.5245, 7.5241, 7.525, 7.5245, 7.5253, 7.5251, 7.5246, 7.5243, 7.524, 7.5223, 7.5219, 7.5217, 7.5201, 7.5209, 7.5218, 7.5225, 7.5232, 7.5241, 7.5238, 7.5234, 7.5229, 7.5223, 7.5219, 7.523, 7.5226, 7.5224, 7.5219, 7.5215, 7.5211, 7.5219, 7.5215, 7.5209, 7.5205, 7.5216, 7.5224, 7.5219, 7.5214, 7.5209, 7.5211, 7.5206, 7.5206, 7.5202, 7.5211, 7.5207, 7.5218, 7.5214, 7.5216, 7.5212, 7.5208, 7.5203, 7.52, 7.5195, 7.519, 7.5212, 7.5196, 7.5194, 7.5202, 7.5186, 7.5184, 7.5193, 7.5191, 7.5185, 7.52, 7.5197, 7.5192, 7.5188, 7.5196, 7.5193, 7.5189, 7.5198, 7.5195, 7.5191, 7.5199, 7.5194, 7.5191, 7.5186, 7.5194, 7.519, 7.5185, 7.5232, 7.5227, 7.5248, 7.5256, 7.5251, 7.5247, 7.5255, 7.525, 7.526, 7.5257, 7.5265, 7.5273, 7.527, 7.5266, 7.5261, 7.5256, 7.524, 7.5235, 7.5231, 7.5226, 7.5221, 7.5217, 7.5213, 7.5208, 7.5216, 7.5215, 7.5222, 7.5218, 7.5214, 7.5214, 7.5222, 7.5217, 7.5212, 7.5222, 7.5229, 7.5224, 7.522, 7.5215, 7.5211, 7.5207, 7.5215, 7.5211, 7.5206, 7.5201, 7.5211, 7.5206, 7.5201, 7.5209, 7.5204, 7.5202, 7.5199, 7.5194, 7.5189, 7.5185, 7.5181, 7.5176, 7.5184, 7.5179, 7.5209, 7.5218, 7.5214, 7.5211, 7.5208, 7.5203, 7.52, 7.5197, 7.5213, 7.5211, 7.5212, 7.5207, 7.5202, 7.5197, 7.5192, 7.5187, 7.5194, 7.5201, 7.5185, 7.5193, 7.5177, 7.5187, 7.5196, 7.5192, 7.5188, 7.5186, 7.5181, 7.5177, 7.5174, 7.517, 7.5178, 7.5174, 7.5173, 7.5176, 7.5184, 7.5179, 7.5166, 7.5163, 7.5195, 7.5263, 7.5261, 7.5258, 7.5256, 7.5251, 7.5235, 7.523, 7.5226, 7.5221, 7.5216, 7.5224, 7.5219, 7.5214, 7.5209, 7.5204, 7.52, 7.5208, 7.5203, 7.5211, 7.5207, 7.5229, 7.5225, 7.522, 7.5229, 7.5225, 7.5233, 7.5241, 7.5246, 7.5241, 7.5248, 7.5257, 7.5265, 7.526, 7.5255, 7.525, 7.5247, 7.5242, 7.5238, 7.5233, 7.5229, 7.5224, 7.5231, 7.5229, 7.5237, 7.5233, 7.5241, 7.5236, 7.5231, 7.5231, 7.5226, 7.5232, 7.5227, 7.5235, 7.523, 7.525, 7.5257, 7.5253, 7.526, 7.5268, 7.5264, 7.526, 7.5257, 7.5252, 7.5248, 7.5255, 7.5263, 7.5271, 7.5294, 7.5314, 7.5309, 7.5293, 7.5289, 7.5359, 7.538, 7.5389, 7.5389, 7.5373, 7.5368, 7.5389, 7.5386, 7.5419, 7.5415, 7.5423, 7.5431, 7.5428, 7.5435, 7.5431, 7.544, 7.5436, 7.5431, 7.5427, 7.5411, 7.5407, 7.5402, 7.5399, 7.5406, 7.5403, 7.54, 7.5396, 7.5393, 7.539, 7.5397, 7.5394, 7.5392, 7.5407, 7.5403, 7.5423, 7.5418, 7.5413, 7.5409, 7.5426, 7.5435, 7.543, 7.5437, 7.5433, 7.5429, 7.5425, 7.5422, 7.5418, 7.5414, 7.5421, 7.5434, 7.543, 7.5426, 7.5422, 7.5417, 7.5414, 7.5401, 7.5397, 7.5382, 7.5378, 7.5374, 7.5371, 7.5378, 7.5386, 7.5403, 7.5412, 7.5419, 7.5414, 7.541, 7.5406, 7.5401, 7.5397, 7.5393, 7.5389, 7.5403, 7.5388, 7.5394, 7.539, 7.5385, 7.538, 7.5376, 7.5383, 7.538, 7.5387, 7.5383, 7.5378, 7.5374, 7.5372, 7.5367, 7.5363, 7.5371, 7.5378, 7.5406, 7.5401, 7.542, 7.5415, 7.541, 7.5405, 7.5401, 7.5385, 7.538, 7.5376, 7.5373, 7.537, 7.5367, 7.5376, 7.5375, 7.5371, 7.538, 7.5388, 7.5383, 7.538, 7.5387, 7.5382, 7.5377, 7.5374, 7.5393, 7.5388, 7.5395, 7.539, 7.5386, 7.5393, 7.539, 7.5386, 7.5393, 7.54, 7.5396, 7.5391, 7.5389, 7.5384, 7.538, 7.5381, 7.5378, 7.5397, 7.5398, 7.5393, 7.5393, 7.5425, 7.5432, 7.5428, 7.5423, 7.543, 7.5436, 7.5432, 7.5427, 7.5434, 7.5429, 7.5436, 7.5432, 7.5431, 7.5428, 7.5425, 7.5421, 7.5418, 7.5425, 7.542, 7.5428, 7.5423, 7.5418, 7.5413, 7.5409, 7.5404, 7.5428, 7.5423, 7.542, 7.5417, 7.5413, 7.542, 7.5415, 7.5411, 7.5418, 7.5425, 7.5432, 7.5427, 7.5425, 7.542, 7.5419, 7.5414, 7.5425, 7.5433, 7.543, 7.5426, 7.5414, 7.5411, 7.5396, 7.5392, 7.5389, 7.5384, 7.5381, 7.5376, 7.5371, 7.538, 7.5376, 7.5372, 7.5368, 7.5375, 7.5383, 7.5379, 7.5374, 7.5382, 7.5377, 7.5372, 7.5367, 7.5363, 7.5359, 7.5355, 7.535, 7.5346, 7.5343, 7.5338, 7.5333, 7.533, 7.5327, 7.5323, 7.532, 7.5316, 7.5314, 7.531, 7.5306, 7.5313, 7.531, 7.5317, 7.5313, 7.5299, 7.5294, 7.529, 7.5296, 7.5281, 7.5279, 7.5275, 7.5272, 7.5268, 7.5264, 7.5259, 7.5254, 7.525, 7.5235, 7.523, 7.5226, 7.5245, 7.5253, 7.5249, 7.5245, 7.5253, 7.5248, 7.5244, 7.5241, 7.5226, 7.5221, 7.5216, 7.5213, 7.522, 7.5221, 7.5217, 7.5213, 7.521, 7.5205, 7.5201, 7.5187, 7.5184, 7.5181, 7.5178, 7.5175, 7.517, 7.5165, 7.5162, 7.5157, 7.5152, 7.5149, 7.5157, 7.5142, 7.5137, 7.5133, 7.5129, 7.5125, 7.5133, 7.514, 7.5135, 7.513, 7.5125, 7.5123, 7.5133, 7.5141, 7.5137, 7.5125, 7.5121, 7.5128, 7.5113, 7.512, 7.5115, 7.5122, 7.5118, 7.5114, 7.5127, 7.5124, 7.512, 7.5133, 7.5129, 7.5135, 7.5131, 7.5126, 7.5122, 7.5117, 7.5113, 7.512, 7.5115, 7.511, 7.5117, 7.5146, 7.5142, 7.5137, 7.5133, 7.5128, 7.5124, 7.5131, 7.5127, 7.5139, 7.5135, 7.513, 7.5126, 7.5123, 7.5119, 7.5116, 7.5111, 7.5107, 7.5114, 7.511, 7.5107, 7.5104, 7.5111, 7.5124, 7.5121, 7.5116, 7.5111, 7.5106, 7.5113, 7.5109, 7.5107, 7.5106, 7.5113, 7.512, 7.5117, 7.5129, 7.5137, 7.514, 7.5147, 7.5154, 7.515, 7.5156, 7.5165, 7.516, 7.5155, 7.5152, 7.5148, 7.5164, 7.517, 7.5166, 7.5163, 7.5159, 7.5155, 7.5162, 7.5158, 7.5154, 7.515, 7.5146, 7.5141, 7.5148, 7.5156, 7.5153, 7.5149, 7.5145, 7.5143, 7.5151, 7.5149, 7.5145, 7.5153, 7.516, 7.5157, 7.5165, 7.5183, 7.5228, 7.5235, 7.5231, 7.5243, 7.525, 7.5245, 7.524, 7.5236, 7.5231, 7.5238, 7.5233, 7.524, 7.5236, 7.5231, 7.5227, 7.5234, 7.5241, 7.5236, 7.5234, 7.5231, 7.524, 7.5237, 7.5234, 7.5219, 7.5215, 7.5211, 7.5208, 7.5215, 7.5211, 7.5218, 7.5214, 7.5212, 7.5208, 7.5204, 7.5211, 7.5207, 7.5216, 7.5212, 7.5234, 7.523, 7.5248, 7.5252, 7.5249, 7.5244, 7.5239, 7.5235, 7.5231, 7.5238, 7.5234, 7.5244, 7.524, 7.5236, 7.5244, 7.5267, 7.5264, 7.5272, 7.528, 7.5276, 7.5274, 7.5272, 7.527, 7.5288, 7.5283, 7.529, 7.5297, 7.5326, 7.5348, 7.5344, 7.5341, 7.5337, 7.5333, 7.5329, 7.5324, 7.5331, 7.5327, 7.5322, 7.5328, 7.5324, 7.5331, 7.5338, 7.5334, 7.5329, 7.5325, 7.5332, 7.5339, 7.5335, 7.5331, 7.5328, 7.5336, 7.5343, 7.5339, 7.5346, 7.5353, 7.5348, 7.5334, 7.5341, 7.5348, 7.5345, 7.5355, 7.5352, 7.5349, 7.5344, 7.5344, 7.5351, 7.5348, 7.5343, 7.534, 7.5348, 7.5345, 7.5352, 7.5348, 7.5345, 7.5331, 7.5337, 7.5342, 7.5337, 7.5333, 7.5342, 7.535, 7.5347, 7.5344, 7.534, 7.5335, 7.5332, 7.5328, 7.5324, 7.5353, 7.5348, 7.5354, 7.5372, 7.5367, 7.5363, 7.538, 7.5377, 7.5374, 7.537, 7.5366, 7.5362, 7.5358, 7.5419, 7.5415, 7.5422, 7.5419, 7.5415, 7.5421, 7.5439, 7.5436, 7.5432, 7.544, 7.5447, 7.5443, 7.5451, 7.5459, 7.5458, 7.5455, 7.5451, 7.5448, 7.5456, 7.5453, 7.5449, 7.5446, 7.5454, 7.546, 7.5456, 7.5452, 7.5448, 7.5444, 7.5442, 7.5438, 7.5434, 7.5445, 7.5431, 7.5428, 7.5436, 7.5426, 7.5422, 7.5419, 7.5415, 7.5411, 7.5407, 7.5403, 7.54, 7.5406, 7.5403, 7.541, 7.5413, 7.5409, 7.5406, 7.5402, 7.5399, 7.5395, 7.5391, 7.5387, 7.5384, 7.538, 7.5376, 7.5372, 7.5368, 7.5363, 7.5371, 7.5367, 7.5374, 7.5372, 7.5368, 7.5365, 7.5374, 7.5382, 7.5391, 7.54, 7.5408, 7.5405, 7.5402, 7.5398, 7.5395, 7.5392, 7.5387, 7.5387, 7.5383, 7.5379, 7.5365, 7.5362, 7.537, 7.5366, 7.5373, 7.538, 7.5376, 7.5373, 7.5381, 7.5377, 7.5377, 7.5373, 7.5369, 7.5364, 7.536, 7.5357, 7.5353, 7.5359, 7.5356, 7.5352, 7.5348, 7.5344, 7.534, 7.5338, 7.5345, 7.5357, 7.5353, 7.5349, 7.5345, 7.5343, 7.5339, 7.5345, 7.534, 7.5336, 7.5334, 7.534, 7.5336, 7.5332, 7.5328, 7.5324, 7.5328, 7.5324, 7.532, 7.5316, 7.5344, 7.5342, 7.5359, 7.5355, 7.5351, 7.5346, 7.5343, 7.5339, 7.5362, 7.5359, 7.5376, 7.5372, 7.54, 7.5449, 7.5444, 7.545, 7.5446, 7.5463, 7.547, 7.5466, 7.5484, 7.548, 7.5477, 7.5483, 7.548, 7.5479, 7.5507, 7.5504, 7.5499, 7.5496, 7.5513, 7.551, 7.5516, 7.5512, 7.5508, 7.5512, 7.5498, 7.5493, 7.5499, 7.5495, 7.5492, 7.5488, 7.5495, 7.5491, 7.5487, 7.5483, 7.5523, 7.553, 7.5536, 7.5542, 7.5539, 7.5546, 7.5542, 7.5538, 7.5534, 7.554, 7.5537, 7.5533, 7.5539, 7.5537, 7.5527, 7.5533, 7.553, 7.5526, 7.5585, 7.558, 7.5576, 7.5572, 7.5569, 7.5565, 7.5562, 7.5559, 7.5546, 7.5553, 7.5549, 7.5546, 7.5541, 7.5537, 7.5544, 7.5551, 7.5557, 7.5564, 7.5581, 7.5577, 7.5578, 7.5573, 7.557, 7.5566, 7.5572, 7.5568, 7.5574, 7.557, 7.5566, 7.5564, 7.5561, 7.5568, 7.5564, 7.556, 7.5569, 7.5566, 7.5561, 7.5558, 7.5554, 7.555, 7.5556, 7.5552, 7.5548, 7.5544, 7.554, 7.5536, 7.5532, 7.5528, 7.5546, 7.5544, 7.5541, 7.5543, 7.555, 7.5546, 7.5542, 7.5548, 7.5554, 7.555, 7.5546, 7.5552, 7.5548, 7.5544, 7.555, 7.5546, 7.5551, 7.5548, 7.5543, 7.5542, 7.5538, 7.5544, 7.554, 7.5536, 7.5534, 7.5529, 7.5535, 7.5531, 7.5527, 7.5523, 7.5518, 7.5515, 7.5511, 7.5517, 7.5513, 7.5519, 7.5515, 7.551, 7.5507, 7.5503, 7.55, 7.5496, 7.5503, 7.55, 7.5496, 7.5483, 7.549, 7.5488, 7.5484, 7.549, 7.5486, 7.5482, 7.5479, 7.5476, 7.5472, 7.5479, 7.5485, 7.5481, 7.5477, 7.5473, 7.547, 7.5476, 7.5473, 7.547, 7.5466, 7.5464, 7.5472, 7.5478, 7.5476, 7.5472, 7.5467, 7.5464, 7.547, 7.5466, 7.5462, 7.5458, 7.5455, 7.5451, 7.5449, 7.5445, 7.5452, 7.546, 7.5456, 7.5453, 7.5452, 7.5448, 7.5444, 7.5452, 7.5458, 7.5455, 7.5451, 7.5458, 7.5455, 7.5451, 7.5457, 7.5464, 7.5461, 7.5457, 7.5453, 7.5449, 7.5446, 7.5445, 7.5451, 7.5449, 7.5446, 7.5442, 7.5438, 7.5434, 7.543, 7.5427, 7.5423, 7.5419, 7.5415, 7.5412, 7.5418, 7.5414, 7.541, 7.5455, 7.5454, 7.545, 7.5437, 7.5433, 7.5439, 7.5438, 7.5446, 7.5453, 7.5449, 7.5445, 7.5451, 7.5447, 7.5443, 7.5439, 7.5435, 7.5441, 7.5438, 7.5434, 7.5432, 7.5428, 7.5426, 7.5422, 7.5418, 7.5414, 7.5416, 7.5404, 7.54, 7.5396, 7.5393, 7.5389, 7.5395, 7.5391, 7.5387, 7.5383, 7.538, 7.5376, 7.5372, 7.5379, 7.5376, 7.5372, 7.5378, 7.5375, 7.5381, 7.5393, 7.5389, 7.5385, 7.5381, 7.5377, 7.5373, 7.5371, 7.5367, 7.5375, 7.5371, 7.5367, 7.5417, 7.5413, 7.5409, 7.5416, 7.5412, 7.5419, 7.5415, 7.5414, 7.541, 7.5406, 7.5402, 7.5408, 7.5414, 7.541, 7.5407, 7.5404, 7.5401, 7.5397, 7.5394, 7.539, 7.5386, 7.5384, 7.538, 7.5376, 7.5372, 7.5369, 7.5375, 7.538, 7.5376, 7.5372, 7.5368, 7.5374, 7.5417, 7.5423, 7.5419, 7.5425, 7.5421, 7.5419, 7.5418, 7.5414, 7.542, 7.5416, 7.5422, 7.5418, 7.5414, 7.541, 7.5406, 7.5403, 7.5401, 7.5397, 7.5395, 7.5391, 7.5387, 7.5383, 7.538, 7.5387, 7.5383, 7.5379, 7.5375, 7.5371, 7.5368, 7.5374, 7.537, 7.5366, 7.5362, 7.536, 7.5347, 7.5343, 7.534, 7.5347, 7.5343, 7.5339, 7.5337, 7.5334, 7.533, 7.5327, 7.5323, 7.531, 7.5307, 7.5303, 7.5299, 7.5296, 7.5302, 7.5309, 7.5305, 7.5312, 7.5317, 7.5323, 7.532, 7.5337, 7.5343, 7.5339, 7.5335, 7.5341, 7.5337, 7.5333, 7.533, 7.533, 7.5336, 7.5333, 7.5331, 7.5327, 7.5326, 7.5323, 7.5321, 7.5318, 7.5315, 7.5328, 7.5326, 7.5333, 7.533, 7.5327, 7.5324, 7.5321, 7.5319, 7.5316, 7.5313, 7.5321, 7.5317, 7.5314, 7.5311, 7.5319, 7.5316, 7.5313, 7.5311, 7.531, 7.5308, 7.5305, 7.5302, 7.5309, 7.5315, 7.5312, 7.5309, 7.5306, 7.5312, 7.5309, 7.5315, 7.5312, 7.5308, 7.5305, 7.5312, 7.5308, 7.5305, 7.5301, 7.5307, 7.5303, 7.5299, 7.5296, 7.5292, 7.5298, 7.5294, 7.5301, 7.5307, 7.5304, 7.531, 7.5307, 7.5315, 7.5323, 7.5329, 7.5335, 7.5341, 7.5356, 7.5352, 7.5349, 7.5356, 7.5362, 7.5361, 7.5358, 7.5363, 7.5369, 7.5366, 7.5363, 7.536, 7.5356, 7.5352, 7.5348, 7.5345, 7.5352, 7.5349, 7.5346, 7.5343, 7.535, 7.5346, 7.5343, 7.5351, 7.5348, 7.5355, 7.5343, 7.5339, 7.5346, 7.5346, 7.5344, 7.5341, 7.5347, 7.5346, 7.5342, 7.534, 7.5336, 7.5342, 7.5358, 7.5355, 7.5342, 7.5349, 7.5345, 7.5341, 7.5338, 7.5363, 7.5361, 7.5367, 7.5363, 7.536, 7.5356, 7.5353, 7.5349, 7.5345, 7.5341, 7.5347, 7.5343, 7.5339, 7.5335, 7.5331, 7.5327, 7.5323, 7.5319, 7.5324, 7.533, 7.5326, 7.5322, 7.5319, 7.5315, 7.5311, 7.5307, 7.5303, 7.53, 7.5297, 7.5293, 7.529, 7.5288, 7.5294, 7.5301, 7.5308, 7.5305, 7.5302, 7.5308, 7.5305, 7.5301, 7.5297, 7.5293, 7.5289, 7.5286, 7.5282, 7.5278, 7.5275, 7.5272, 7.5269, 7.5265, 7.5262, 7.5259, 7.5262, 7.5259, 7.5256, 7.5263, 7.526, 7.5267, 7.5264, 7.526, 7.5256, 7.5262, 7.5267, 7.5263, 7.5259, 7.5256, 7.5262, 7.5272, 7.5268, 7.5274, 7.527, 7.5266, 7.5273, 7.5279, 7.5286, 7.5287, 7.5284, 7.5281, 7.5269, 7.5284, 7.5281, 7.5278, 7.5266, 7.5255, 7.5251, 7.5258, 7.5264, 7.5252, 7.5257, 7.5253, 7.5259, 7.5256, 7.5252, 7.5248, 7.5244, 7.525, 7.5246, 7.5243, 7.5239, 7.5227, 7.5223, 7.5219, 7.5215, 7.5215, 7.5212, 7.5209, 7.5205, 7.5201, 7.5197, 7.5193, 7.5191, 7.5188, 7.5184, 7.518, 7.5176, 7.5172, 7.517, 7.5169, 7.5165, 7.517, 7.5176, 7.5182, 7.5188, 7.5184, 7.519, 7.519, 7.5196, 7.5193, 7.519, 7.5195, 7.5201, 7.52, 7.5206, 7.5206, 7.5203, 7.52, 7.5197, 7.5198, 7.5197, 7.5194, 7.5191, 7.5182, 7.5188, 7.5196, 7.5204, 7.5202, 7.5208, 7.5214, 7.522, 7.5216, 7.5212, 7.521, 7.5216, 7.5204, 7.52, 7.5206, 7.5202, 7.5201, 7.5198, 7.5207, 7.5203, 7.5209, 7.5205, 7.5211, 7.5207, 7.5203, 7.52, 7.5197, 7.5194, 7.52, 7.5197, 7.5198, 7.5195, 7.5192, 7.518, 7.5205, 7.5193, 7.5199, 7.5206, 7.5208, 7.5206, 7.5197, 7.5194, 7.519, 7.5186, 7.5183, 7.5182, 7.5188, 7.5185, 7.5183, 7.518, 7.5178, 7.5175, 7.5171, 7.5168, 7.5164, 7.5171, 7.5167, 7.5165, 7.517, 7.5166, 7.5163, 7.5159, 7.5155, 7.5153, 7.5158, 7.5163, 7.516, 7.5161, 7.5157, 7.5146, 7.5143, 7.5139, 7.5135, 7.5131, 7.5127, 7.5115, 7.5112, 7.5109, 7.5105, 7.5101, 7.5098, 7.5095, 7.5092, 7.5088, 7.5085, 7.5091, 7.5087, 7.5084, 7.5081, 7.5079, 7.5067, 7.5064, 7.5079, 7.5086, 7.5092, 7.5088, 7.5085, 7.5101, 7.5107, 7.5103, 7.511, 7.5107, 7.5095, 7.5092, 7.5089, 7.5085, 7.5082, 7.5087, 7.5092, 7.51, 7.5102, 7.5117, 7.5123, 7.512, 7.5117, 7.5113, 7.511, 7.5108, 7.5105, 7.5101, 7.5107, 7.5105, 7.5102, 7.5099, 7.5105, 7.5102, 7.5099, 7.5105, 7.5102, 7.5099, 7.5096, 7.5093, 7.5091, 7.508, 7.5088, 7.5084, 7.5081, 7.5077, 7.5073, 7.507, 7.5075, 7.5072, 7.5094, 7.509, 7.5087, 7.5101, 7.51, 7.5107, 7.5103, 7.511, 7.5109, 7.5107, 7.5104, 7.5109, 7.5106, 7.5103, 7.5099, 7.5096, 7.5092, 7.5089, 7.5086, 7.5082, 7.509, 7.509, 7.5105, 7.5103, 7.5101, 7.5097, 7.5103, 7.5106, 7.5111, 7.5107, 7.5103, 7.5109, 7.5105, 7.5101, 7.5106, 7.5102, 7.5099, 7.5097, 7.5085, 7.5081, 7.5078, 7.5074, 7.508, 7.5086, 7.5092, 7.5097, 7.5102, 7.5098, 7.5095, 7.5091, 7.5087, 7.5086, 7.5084, 7.5081, 7.5088, 7.5084, 7.5081, 7.5088, 7.5085, 7.5083, 7.508, 7.5087, 7.5093, 7.5099, 7.5087, 7.5092, 7.5098, 7.5096, 7.5092, 7.5089, 7.5087, 7.5084, 7.5081, 7.5078, 7.5075, 7.5072, 7.507, 7.5067, 7.5064, 7.5066, 7.5062, 7.5068, 7.5065, 7.5063, 7.5067, 7.5055, 7.5061, 7.5058, 7.5056, 7.5054, 7.5051, 7.5056, 7.5052, 7.5048, 7.5045, 7.5042, 7.5058, 7.5054, 7.5051, 7.5047, 7.5053, 7.505, 7.5047, 7.5043, 7.5039, 7.5036, 7.5041, 7.5037, 7.5034, 7.5031, 7.5028, 7.5025, 7.5022, 7.5018, 7.5009, 7.5007, 7.5003, 7.5012, 7.5008, 7.5014, 7.5005, 7.5003, 7.5, 7.4997, 7.5003, 7.5, 7.5006, 7.5003, 7.5, 7.4997, 7.4994, 7.4991, 7.4988, 7.4985, 7.4982, 7.4987, 7.4993, 7.499, 7.4989, 7.4987, 7.4994, 7.4991, 7.4988, 7.4985, 7.4982, 7.4987, 7.4985, 7.4982, 7.4988, 7.4994, 7.4991, 7.4989, 7.4987, 7.4992, 7.4998, 7.4995, 7.4992, 7.4988, 7.4985, 7.4982, 7.498, 7.4978, 7.4975, 7.4981, 7.4977, 7.4975, 7.4975, 7.4976, 7.4974, 7.4971, 7.497, 7.4976, 7.4973, 7.4969, 7.4958, 7.4955, 7.4951, 7.4951, 7.4947, 7.4943, 7.4939, 7.4936, 7.4942, 7.4939, 7.4937, 7.4943, 7.494, 7.4955, 7.4952, 7.4948, 7.4953, 7.495, 7.4947, 7.4944, 7.495, 7.4942, 7.4939, 7.4936, 7.4933, 7.4929, 7.4934, 7.4933, 7.4929, 7.4936, 7.4933, 7.493, 7.4927, 7.4932, 7.4937, 7.4933, 7.4929, 7.4925, 7.493, 7.4926, 7.4923, 7.492, 7.4917, 7.4914, 7.4919, 7.4915, 7.4912, 7.4908, 7.4905, 7.4902, 7.49, 7.4889, 7.4885, 7.4883, 7.488, 7.4878, 7.4874, 7.4879, 7.4884, 7.4889, 7.4886, 7.4883, 7.491, 7.4916, 7.4913, 7.491, 7.4907, 7.4904, 7.491, 7.4937, 7.4934, 7.4932, 7.4929, 7.4927, 7.4934, 7.4931, 7.4928, 7.493, 7.4927, 7.4923, 7.4911, 7.49, 7.4905, 7.4902, 7.4898, 7.4894, 7.4899, 7.4896, 7.4893, 7.4891, 7.4897, 7.4894, 7.489, 7.4897, 7.4893, 7.4899, 7.4896, 7.4903, 7.491, 7.4925, 7.4923, 7.492, 7.492, 7.4918, 7.4914, 7.4912, 7.4909, 7.4908, 7.4906, 7.4911, 7.4908, 7.4905, 7.4901, 7.4899, 7.4897, 7.4896, 7.4893, 7.4881, 7.4914, 7.491, 7.4916, 7.4934, 7.4932, 7.4928, 7.4924, 7.4921, 7.4918, 7.4907, 7.4903, 7.49, 7.4906, 7.4911, 7.4908, 7.4897, 7.4894, 7.4891, 7.4897, 7.4903, 7.49, 7.4896, 7.4902, 7.4899, 7.4896, 7.4893, 7.489, 7.4888, 7.4886, 7.4892, 7.489, 7.4888, 7.4886, 7.4884, 7.4882, 7.488, 7.4888, 7.4886, 7.4884, 7.4891, 7.4888, 7.4885, 7.4882, 7.4879, 7.4878, 7.4876, 7.4875, 7.4881, 7.4878, 7.4875, 7.4873, 7.4869, 7.4875, 7.4882, 7.4879, 7.4876, 7.4884, 7.4881, 7.4877, 7.4874, 7.487, 7.4867, 7.4865, 7.4862, 7.4885, 7.4881, 7.4878, 7.4876, 7.4873, 7.487, 7.4875, 7.4872, 7.4869, 7.4867, 7.4878, 7.4885, 7.4882, 7.4879, 7.4876, 7.4874, 7.4871, 7.4872, 7.4869, 7.4858, 7.4855, 7.4852, 7.4857, 7.4854, 7.485, 7.4848, 7.4845, 7.4842, 7.4848, 7.4845, 7.4851, 7.4848, 7.4853, 7.485, 7.4856, 7.4852, 7.4849, 7.4854, 7.4851, 7.4848, 7.4845, 7.4841, 7.4838, 7.4844, 7.4842, 7.4839, 7.4844, 7.484, 7.4838, 7.4836, 7.4842, 7.4839, 7.4836, 7.4833, 7.483, 7.4828, 7.4825, 7.4824, 7.482, 7.4817, 7.4815, 7.4812, 7.4809, 7.4806, 7.4803, 7.48, 7.4789, 7.4778, 7.4783, 7.479, 7.4786, 7.4784, 7.4781, 7.4778, 7.4778, 7.4775, 7.4773, 7.477, 7.4767, 7.4764, 7.4753, 7.475, 7.4748, 7.4746, 7.4751, 7.4749, 7.4746, 7.4751, 7.4748, 7.4745, 7.4742, 7.4739, 7.4736, 7.4734, 7.4731, 7.4728, 7.4725, 7.4723, 7.472, 7.4725, 7.4731, 7.4736, 7.4734, 7.4732, 7.4729, 7.4727, 7.4724, 7.4722, 7.472, 7.4718, 7.4725, 7.473, 7.4727, 7.4732, 7.4729, 7.4735, 7.474, 7.4737, 7.4734, 7.4731, 7.4728, 7.4725, 7.4721, 7.4718, 7.4715, 7.4713, 7.4718, 7.4715, 7.4712, 7.4709, 7.4708, 7.4707, 7.4712, 7.4709, 7.4707, 7.4704, 7.4701, 7.4698, 7.4705, 7.4702, 7.4699, 7.4704, 7.4702, 7.4707, 7.4721, 7.4723, 7.472, 7.4726, 7.4723, 7.4723, 7.472, 7.4721, 7.4727, 7.4724, 7.4729, 7.4719, 7.4716, 7.4713, 7.4703, 7.4701, 7.4698, 7.4695, 7.4692, 7.4698, 7.4705, 7.4702, 7.4708, 7.4705, 7.4713, 7.4719, 7.472, 7.4718, 7.4735, 7.4733, 7.4736, 7.4734, 7.4731, 7.4745, 7.4742, 7.4739, 7.473, 7.4731, 7.4732, 7.473, 7.4727, 7.4724, 7.4727, 7.4733, 7.4756, 7.4753, 7.475, 7.4756, 7.477, 7.4767, 7.4757, 7.4763, 7.4755, 7.4746, 7.4751, 7.4748, 7.4744, 7.475, 7.4749, 7.4746, 7.4769, 7.4783, 7.4783, 7.4774, 7.4779, 7.4776, 7.4781, 7.4778, 7.4783, 7.4788, 7.4793, 7.4798, 7.4795, 7.4809, 7.4806, 7.4812, 7.4809, 7.4807, 7.4804, 7.4801, 7.4798, 7.4795, 7.48, 7.4805, 7.481, 7.4815, 7.4812, 7.4801, 7.4806, 7.4803, 7.4808, 7.4805, 7.4802, 7.4799, 7.4796, 7.4801, 7.4806, 7.4812, 7.4809, 7.4814, 7.4811, 7.4816, 7.4813, 7.4819, 7.4833, 7.483, 7.4835, 7.4843, 7.4839, 7.4844, 7.4833, 7.4838, 7.4843, 7.4848, 7.4853, 7.485, 7.4863, 7.4872, 7.4868, 7.4881, 7.4878, 7.4876, 7.4901, 7.4892, 7.489, 7.4912, 7.4909, 7.4898, 7.4899, 7.4912, 7.4909, 7.4906, 7.4912, 7.492, 7.4917, 7.4906, 7.4912, 7.4901, 7.4898, 7.4895, 7.49, 7.4898, 7.4903, 7.4909, 7.4905, 7.4902, 7.4899, 7.4914, 7.4903, 7.49, 7.4905, 7.4902, 7.4907, 7.4912, 7.4909, 7.4906, 7.4903, 7.4908, 7.4906, 7.4906, 7.4911, 7.4908, 7.4905, 7.4902, 7.4899, 7.4893, 7.49, 7.4905, 7.4902, 7.49, 7.4905, 7.4902, 7.4902, 7.4902, 7.4907, 7.4904, 7.4909, 7.4922, 7.4919, 7.4917, 7.4914, 7.4911, 7.4908, 7.4905, 7.4902, 7.4907, 7.4912, 7.4909, 7.4908, 7.4913, 7.491, 7.4934, 7.4931, 7.4936, 7.4941, 7.4939, 7.4936, 7.4936, 7.4933, 7.4938, 7.4944, 7.4941, 7.4954, 7.4959, 7.4957, 7.4954, 7.4951, 7.4956, 7.4953, 7.495, 7.4955, 7.4952, 7.4957, 7.4947, 7.4944, 7.4941, 7.4946, 7.4951, 7.4956, 7.4961, 7.4958, 7.4955, 7.4977, 7.4974, 7.4979, 7.4976, 7.4981, 7.4978, 7.4975, 7.4972, 7.4977, 7.4982, 7.4979, 7.4976, 7.4974, 7.4971, 7.4976, 7.4973, 7.497, 7.4987, 7.4992, 7.4989, 7.4986, 7.4983, 7.4981, 7.4978, 7.4975, 7.4972, 7.4969, 7.4978, 7.4975, 7.4988, 7.4985, 7.4982, 7.4987, 7.4984, 7.4989, 7.4986, 7.4983, 7.498, 7.4976, 7.4981, 7.4979, 7.4994, 7.4992, 7.499, 7.4987, 7.4993, 7.4998, 7.4996, 7.4993, 7.4997, 7.4994, 7.4991, 7.4988, 7.4985, 7.4982, 7.4979, 7.4976, 7.4974, 7.4971, 7.4968, 7.4966, 7.4973, 7.4978, 7.4975, 7.4972, 7.4969, 7.4974, 7.4971, 7.4969, 7.4966, 7.4955, 7.4952, 7.4949, 7.4963, 7.4961, 7.4959, 7.4967, 7.4964, 7.497, 7.497, 7.4969, 7.4974, 7.4973, 7.4978, 7.4976, 7.4974, 7.4979, 7.4976, 7.4974, 7.4972, 7.4969, 7.4975, 7.4973, 7.497, 7.4975, 7.4973, 7.497, 7.4975, 7.498, 7.4977, 7.4982, 7.4987, 7.4992, 7.4989, 7.4994, 7.4999, 7.5003, 7.5, 7.4997, 7.4994, 7.4991, 7.4988, 7.4985, 7.499, 7.498, 7.4977, 7.4974, 7.4971, 7.4968, 7.4967, 7.4956, 7.4953, 7.4958, 7.4956, 7.4953, 7.4951, 7.4948, 7.4962, 7.4968, 7.4965, 7.4963, 7.496, 7.4957, 7.4954, 7.4951, 7.4956, 7.4954, 7.4952, 7.4973, 7.497, 7.4969, 7.4966, 7.4971, 7.4993, 7.4999, 7.5004, 7.5009, 7.5007, 7.5004, 7.5001, 7.5006, 7.5011, 7.502, 7.5033, 7.503, 7.5035, 7.504, 7.5037, 7.5041, 7.5051, 7.5057, 7.5054, 7.5051, 7.5049, 7.5059, 7.5056, 7.5053, 7.5051, 7.5048, 7.5053, 7.505, 7.5055, 7.5052, 7.5049, 7.5046, 7.5043, 7.5041, 7.5049, 7.5046, 7.5043, 7.5043, 7.5042, 7.5047, 7.5044, 7.5049, 7.5047, 7.5044, 7.5042, 7.5039, 7.5038, 7.5036, 7.5042, 7.5042, 7.5044, 7.5042, 7.5039, 7.5044, 7.5057, 7.5055, 7.5069, 7.5075, 7.5085, 7.5085, 7.5082, 7.5083, 7.508, 7.5077, 7.5082, 7.5074, 7.5064, 7.5069, 7.5066, 7.5063, 7.5061, 7.5058, 7.5066, 7.5063, 7.506, 7.5057, 7.5054, 7.5059, 7.5056, 7.5079, 7.5069, 7.5066, 7.5078, 7.5076, 7.5089, 7.5086, 7.509, 7.5088, 7.5085, 7.509, 7.5088, 7.5086, 7.5083, 7.5088, 7.5086, 7.5091, 7.5096, 7.5093, 7.5091, 7.5088, 7.5085, 7.5105, 7.5114, 7.5111, 7.5109, 7.5106, 7.5112, 7.5122, 7.5119, 7.5116, 7.5121, 7.5119, 7.5116, 7.5113, 7.511, 7.5108, 7.5114, 7.5112, 7.5117, 7.5122, 7.5119, 7.5116, 7.5113, 7.511, 7.5115, 7.5112, 7.5109, 7.5107, 7.5106, 7.5103, 7.5108, 7.5106, 7.5103, 7.5102, 7.5099, 7.5105, 7.5111, 7.5109, 7.5115, 7.5114, 7.5112, 7.5109, 7.5107, 7.5106, 7.5111, 7.5109, 7.5106], '192.168.122.115': [5.8181, 5.7882, 7.3882, 6.8684, 6.5512, 7.2699, 7.0023, 6.7761, 6.6212, 7.0648, 7.4594, 7.2981, 6.7804, 6.6817, 6.6433, 6.5587, 6.5343, 6.4713, 6.4249, 6.6336, 6.5792, 6.5611, 6.5309, 6.7922, 6.7563, 6.7131, 6.6628, 6.6265, 6.8163, 6.7764, 6.9178, 7.0457, 6.9962, 6.9706, 7.0856, 7.1745, 7.1377, 7.0974, 7.0512, 7.0092, 7.5081, 7.4683, 7.434, 7.2861, 7.3392, 7.4144, 7.3829, 7.372, 7.3458, 7.4478, 7.4165, 7.3879, 7.3661, 7.4307, 7.4084, 7.4695, 7.5301, 7.409, 7.3852, 7.3597, 7.3342, 7.4812, 7.4859, 7.4737, 7.5086, 7.5019, 7.5672, 7.4737, 7.5232, 7.5008, 7.4728, 7.4454, 7.4165, 7.4044, 7.4303, 7.4075, 7.6704, 7.6547, 7.6308, 7.6054, 7.5306, 7.5089, 7.548, 7.5219, 7.4966, 7.4836, 7.4653, 7.4816, 7.4804, 7.4568, 7.4335, 7.4109, 7.388, 7.3666, 7.3498, 7.3312, 7.3148, 7.4637, 7.4966, 7.533, 7.5112, 7.5486, 7.5325, 7.4659, 7.4576, 7.4612, 7.4415, 7.424, 7.5053, 7.4916, 7.4791, 7.5148, 7.5005, 7.4827, 7.4652, 7.4948, 7.4795, 7.4681, 7.4524, 7.4836, 7.494, 7.4776, 7.5081, 7.4931, 7.4834, 7.5089, 7.4917, 7.516, 7.5006, 7.4869, 7.4715, 7.4583, 7.4466, 7.4308, 7.4198, 7.4071, 7.4315, 7.417, 7.4115, 7.439, 7.4663, 7.4534, 7.4751, 7.4988, 7.4842, 7.5074, 7.4918, 7.5143, 7.4999, 7.486, 7.5073, 7.5293, 7.5186, 7.4739, 7.4965, 7.486, 7.4416, 7.4511, 7.4382, 7.4261, 7.4243, 7.4457, 7.433, 7.4219, 7.3803, 7.3704, 7.3585, 7.3512, 7.3391, 7.342, 7.3329, 7.3507, 7.3384, 7.359, 7.3497, 7.3394, 7.3572, 7.3456, 7.3831, 7.4042, 7.4454, 7.4347, 7.3986, 7.4175, 7.4117, 7.428, 7.449, 7.4401, 7.4303, 7.4891, 7.4786, 7.4967, 7.4885, 7.4779, 7.4726, 7.4616, 7.4516, 7.4686, 7.4605, 7.4805, 7.4751, 7.4659, 7.4576, 7.4514, 7.4443, 7.4366, 7.4379, 7.4305, 7.4394, 7.4308, 7.4225, 7.4195, 7.4378, 7.4534, 7.4438, 7.4862, 7.5028, 7.4948, 7.5434, 7.5342, 7.5274, 7.5445, 7.5355, 7.5279, 7.5195, 7.536, 7.5524, 7.5687, 7.5607, 7.5517, 7.5689, 7.5875, 7.5808, 7.5744, 7.5647, 7.5551, 7.5465, 7.5405, 7.534, 7.5284, 7.5447, 7.5594, 7.5761, 7.5806, 7.5716, 7.5852, 7.5764, 7.5683, 7.5823, 7.5954, 7.5923, 7.5849, 7.6013, 7.5958, 7.5901, 7.5822, 7.5766, 7.568, 7.5602, 7.5747, 7.5719, 7.5701, 7.5838, 7.5946, 7.6078, 7.6003, 7.5917, 7.6266, 7.6407, 7.6543, 7.6507, 7.6453, 7.6797, 7.6535, 7.6853, 7.7189, 7.7115, 7.7036, 7.696, 7.6877, 7.7184, 7.7295, 7.7216, 7.713, 7.7044, 7.6976, 7.6905, 7.7031, 7.7155, 7.7071, 7.699, 7.6918, 7.7365, 7.7286, 7.7231, 7.7149, 7.7258, 7.7549, 7.8339, 7.8658, 7.8578, 7.8335, 7.8437, 7.8359, 7.8307, 7.8252, 7.8173, 7.8272, 7.8188, 7.8131, 7.823, 7.8325, 7.8459, 7.8549, 7.8477, 7.8576, 7.8671, 7.8615, 7.8544, 7.8667, 7.8604, 7.856, 7.8517, 7.8604, 7.8693, 7.8626, 7.8547, 7.8326, 7.8299, 7.8254, 7.8204, 7.8155, 7.8103, 7.8212, 7.8245, 7.8232, 7.8157, 7.8258, 7.8237, 7.8021, 7.8108, 7.8039, 7.7982, 7.7981, 7.7917, 7.7893, 7.7824, 7.7954, 7.7883, 7.7997, 7.8081, 7.8164, 7.8114, 7.8055, 7.7986, 7.7939, 7.7889, 7.7821, 7.7618, 7.7698, 7.7557, 7.7489, 7.7421, 7.7802, 7.7882, 7.8165, 7.8243, 7.8174, 7.8257, 7.8187, 7.8133, 7.8095, 7.8027, 7.8306, 7.8389, 7.8327, 7.8272, 7.8247, 7.8197, 7.814, 7.8209, 7.8286, 7.8251, 7.8329, 7.8267, 7.8203, 7.814, 7.8077, 7.8016, 7.7832, 7.7656, 7.7622, 7.7776, 7.7719, 7.7658, 7.7595, 7.7534, 7.7478, 7.7438, 7.7398, 7.7337, 7.7276, 7.7221, 7.7168, 7.7117, 7.7057, 7.7008, 7.6975, 7.7046, 7.6989, 7.6949, 7.6912, 7.6997, 7.6942, 7.7021, 7.6976, 7.6943, 7.6889, 7.6838, 7.678, 7.6727, 7.6673, 7.6631, 7.6577, 7.653, 7.6486, 7.6437, 7.6409, 7.636, 7.6315, 7.6271, 7.622, 7.6165, 7.6244, 7.6192, 7.6157, 7.628, 7.6229, 7.6191, 7.6267, 7.6341, 7.6302, 7.6316, 7.6277, 7.6228, 7.6176, 7.6137, 7.6089, 7.6043, 7.5997, 7.5964, 7.5832, 7.5783, 7.5793, 7.5896, 7.5849, 7.5853, 7.5803, 7.579, 7.5864, 7.5822, 7.5777, 7.5741, 7.572, 7.5683, 7.5646, 7.5726, 7.5718, 7.5685, 7.5769, 7.5736, 7.6181, 7.6134, 7.6096, 7.595, 7.592, 7.5878, 7.5832, 7.591, 7.6194, 7.6149, 7.6139, 7.6093, 7.6068, 7.6036, 7.5995, 7.5866, 7.5822, 7.5777, 7.574, 7.5708, 7.5669, 7.5957, 7.6033, 7.6109, 7.6077, 7.6038, 7.6107, 7.6354, 7.6215, 7.6284, 7.6246, 7.6202, 7.6162, 7.6127, 7.609, 7.6145, 7.6102, 7.6083, 7.6038, 7.5997, 7.5962, 7.5935, 7.5893, 7.5875, 7.5853, 7.5824, 7.5784, 7.5743, 7.5763, 7.5725, 7.5686, 7.5674, 7.5632, 7.5499, 7.5475, 7.5536, 7.5599, 7.5617, 7.5793, 7.5753, 7.5722, 7.5702, 7.5695, 7.5752, 7.5715, 7.5688, 7.575, 7.5725, 7.5692, 7.5652, 7.5621, 7.5591, 7.5655, 7.5637, 7.5607, 7.567, 7.5639, 7.5698, 7.5656, 7.5715, 7.5674, 7.5637, 7.5622, 7.5681, 7.5739, 7.5701, 7.5663, 7.5541, 7.5605, 7.5615, 7.5577, 7.554, 7.5509, 7.5403, 7.5366, 7.5326, 7.5289, 7.5348, 7.5312, 7.5284, 7.5346, 7.5383, 7.535, 7.5318, 7.53, 7.5361, 7.5335, 7.5306, 7.5277, 7.5476, 7.5438, 7.5419, 7.5418, 7.539, 7.5373, 7.5335, 7.5306, 7.527, 7.5234, 7.5197, 7.5167, 7.5182, 7.5144, 7.5128, 7.5097, 7.5164, 7.5233, 7.5308, 7.5277, 7.5243, 7.5206, 7.5177, 7.5144, 7.5108, 7.5083, 7.5142, 7.5156, 7.5124, 7.5029, 7.4997, 7.4975, 7.4943, 7.4911, 7.5037, 7.5016, 7.5075, 7.5138, 7.511, 7.5077, 7.5137, 7.5108, 7.5078, 7.5041, 7.5101, 7.516, 7.5132, 7.5101, 7.5074, 7.512, 7.5166, 7.5218, 7.5214, 7.5189, 7.5156, 7.5127, 7.5179, 7.5232, 7.52, 7.5181, 7.5318, 7.5347, 7.5315, 7.5289, 7.5269, 7.5252, 7.5218, 7.5192, 7.5165, 7.5211, 7.5185, 7.5234, 7.5205, 7.5183, 7.5158, 7.5204, 7.5257, 7.5312, 7.5291, 7.5261, 7.5253, 7.5226, 7.5214, 7.5269, 7.5326, 7.5295, 7.5269, 7.5236, 7.5216, 7.5207, 7.5251, 7.5217, 7.5189, 7.5155, 7.5136, 7.5111, 7.5156, 7.5203, 7.5172, 7.5145, 7.5053, 7.5104, 7.5081, 7.5127, 7.5176, 7.5158, 7.5214, 7.5258, 7.5238, 7.5212, 7.5181, 7.5229, 7.5204, 7.5268, 7.524, 7.5207, 7.5174, 7.5148, 7.5129, 7.5109, 7.5079, 7.5054, 7.5024, 7.5068, 7.497, 7.4947, 7.4922, 7.4893, 7.4873, 7.4844, 7.4815, 7.4864, 7.4839, 7.5034, 7.5006, 7.4981, 7.4963, 7.5007, 7.5054, 7.5025, 7.5003, 7.5009, 7.498, 7.4951, 7.4997, 7.5047, 7.5022, 7.4993, 7.4965, 7.4944, 7.4915, 7.4884, 7.4869, 7.4841, 7.4813, 7.4784, 7.476, 7.4746, 7.4799, 7.4789, 7.4766, 7.4745, 7.4732, 7.4713, 7.4699, 7.4745, 7.4722, 7.4764, 7.4815, 7.4817, 7.4791, 7.4767, 7.4742, 7.4721, 7.4851, 7.4833, 7.4806, 7.4778, 7.4823, 7.4803, 7.4775, 7.4687, 7.4666, 7.4638, 7.4609, 7.4582, 7.4556, 7.453, 7.4648, 7.4628, 7.468, 7.4653, 7.4692, 7.4665, 7.4645, 7.469, 7.4667, 7.4645, 7.4622, 7.4599, 7.4575, 7.4623, 7.4602, 7.4648, 7.463, 7.4606, 7.4586, 7.4571, 7.4566, 7.4609, 7.4581, 7.457, 7.4567, 7.4609, 7.4587, 7.4632, 7.4562, 7.4538, 7.4592, 7.457, 7.4543, 7.4529, 7.4502, 7.4478, 7.4453, 7.4495, 7.4474, 7.4461, 7.4503, 7.4576, 7.4621, 7.4662, 7.4708, 7.4687, 7.4723, 7.4702, 7.4737, 7.4769, 7.4748, 7.4729, 7.4645, 7.4684, 7.4734, 7.4779, 7.4769, 7.4765, 7.4742, 7.4715, 7.4697, 7.4671, 7.4651, 7.4631, 7.4671, 7.4647, 7.4623, 7.466, 7.4639, 7.468, 7.4667, 7.4708, 7.4683, 7.4666, 7.4707, 7.4685, 7.4679, 7.4657, 7.4697, 7.4734, 7.4774, 7.4753, 7.473, 7.477, 7.4872, 7.4792, 7.4771, 7.4749, 7.4793, 7.4776, 7.4752, 7.4795, 7.4834, 7.4779, 7.4755, 7.4733, 7.4715, 7.469, 7.4665, 7.4642, 7.4617, 7.4595, 7.4573, 7.455, 7.4655, 7.4632, 7.4612, 7.459, 7.4588, 7.4573, 7.456, 7.4547, 7.453, 7.4565, 7.4546, 7.4528, 7.4565, 7.4541, 7.4518, 7.4496, 7.4488, 7.4466, 7.4445, 7.4483, 7.446, 7.4436, 7.4475, 7.4527, 7.4504, 7.4479, 7.4456, 7.4433, 7.441, 7.4386, 7.4363, 7.434, 7.4379, 7.4457, 7.4437, 7.4418, 7.4463, 7.4448, 7.4427, 7.4461, 7.4495, 7.4535, 7.4514, 7.4497, 7.4474, 7.4511, 7.4546, 7.4525, 7.4501, 7.454, 7.4637, 7.4627, 7.462, 7.4644, 7.4622, 7.4659, 7.4715, 7.4693, 7.4672, 7.4648, 7.4635, 7.4613, 7.4597, 7.4577, 7.4563, 7.4539, 7.4524, 7.4512, 7.4548, 7.4581, 7.4616, 7.4596, 7.4576, 7.4557, 7.4587, 7.4622, 7.4602, 7.4581, 7.4558, 7.4536, 7.4569, 7.4553, 7.4588, 7.4576, 7.4555, 7.4543, 7.4521, 7.453, 7.4509, 7.4544, 7.4521, 7.4503, 7.4481, 7.4551, 7.4528, 7.4553, 7.4538, 7.4519, 7.4504, 7.4493, 7.4481, 7.4516, 7.4498, 7.4477, 7.4457, 7.4439, 7.4418, 7.4403, 7.4388, 7.4369, 7.435, 7.4396, 7.4392, 7.4431, 7.4416, 7.4417, 7.4404, 7.4573, 7.456, 7.454, 7.4523, 7.4507, 7.4539, 7.4683, 7.4719, 7.4702, 7.4843, 7.4875, 7.4909, 7.4892, 7.4927, 7.4911, 7.4942, 7.4922, 7.4958, 7.4956, 7.4992, 7.5065, 7.5053, 7.5041, 7.5018, 7.4997, 7.4975, 7.4955, 7.4932, 7.4916, 7.4897, 7.4901, 7.4879, 7.4862, 7.4853, 7.4839, 7.4872, 7.4853, 7.4842, 7.4822, 7.4804, 7.4787, 7.4765, 7.4748, 7.4925, 7.491, 7.4888, 7.4867, 7.4848, 7.4837, 7.4817, 7.48, 7.4814, 7.4842, 7.4826, 7.4805, 7.4789, 7.4771, 7.4705, 7.4758, 7.4791, 7.4724, 7.4704, 7.4703, 7.4691, 7.4677, 7.4711, 7.4691, 7.4672, 7.4705, 7.4695, 7.4682, 7.4696, 7.4678, 7.4661, 7.4596, 7.4629, 7.4872, 7.5062, 7.5144, 7.5131, 7.5112, 7.5094, 7.5075, 7.5134, 7.5118, 7.5103, 7.5099, 7.5088, 7.507, 7.5101, 7.5137, 7.5171, 7.516, 7.515, 7.5131, 7.5166, 7.5151, 7.5134, 7.5113, 7.51, 7.5095, 7.5132, 7.5116, 7.5157, 7.5095, 7.5128, 7.5111, 7.5095, 7.5088, 7.5071, 7.5099, 7.5089, 7.5072, 7.5058, 7.5098, 7.5127, 7.5126, 7.5207, 7.5187, 7.5172, 7.5163, 7.5191, 7.5176, 7.5161, 7.5284, 7.5264, 7.5246, 7.5274, 7.5302, 7.5333, 7.5319, 7.5304, 7.5288, 7.5276, 7.5256, 7.5239, 7.5222, 7.5211, 7.5427, 7.5412, 7.5394, 7.5374, 7.5454, 7.5436, 7.5422, 7.5412, 7.5392, 7.5423, 7.5406, 7.5387, 7.5439, 7.5431, 7.5457, 7.5485, 7.5517, 7.5545, 7.5533, 7.5513, 7.5497, 7.548, 7.5461, 7.5447, 7.5427, 7.5426, 7.5407, 7.5392, 7.5376, 7.5405, 7.5436, 7.5418, 7.5406, 7.5394, 7.5375, 7.5406, 7.5386, 7.5383, 7.5368, 7.5351, 7.5332, 7.5313, 7.5297, 7.5325, 7.5309, 7.5302, 7.5302, 7.5286, 7.5315, 7.5299, 7.5287, 7.5273, 7.5254, 7.5236, 7.5225, 7.5255, 7.5275, 7.5258, 7.5264, 7.5288, 7.5269, 7.5212, 7.5375, 7.54, 7.5426, 7.5407, 7.5436, 7.5417, 7.5445, 7.5428, 7.5411, 7.5396, 7.5381, 7.5438, 7.5495, 7.5477, 7.5497, 7.548, 7.5543, 7.5573, 7.5687, 7.5677, 7.5662, 7.569, 7.5672, 7.5703, 7.5731, 7.5717, 7.5698, 7.57, 7.5684, 7.5821, 7.5871, 7.586, 7.5842, 7.5881, 7.5923, 7.5904, 7.5946, 7.5933, 7.592, 7.5948, 7.5933, 7.5915, 7.5903, 7.5928, 7.5913, 7.5895, 7.5878, 7.5867, 7.5848, 7.5829, 7.5819, 7.5771, 7.5753, 7.5736, 7.5728, 7.5754, 7.5738, 7.5721, 7.5703, 7.5686, 7.5674, 7.5707, 7.5732, 7.5759, 7.5749, 7.5733, 7.572, 7.571, 7.5695, 7.5678, 7.5667, 7.5656, 7.5684, 7.567, 7.5656, 7.5648, 7.563, 7.5611, 7.5599, 7.5626, 7.5612, 7.5593, 7.5619, 7.5604, 7.5668, 7.5654, 7.5613, 7.5676, 7.5662, 7.565, 7.5636, 7.5618, 7.5601, 7.5585, 7.5572, 7.5555, 7.5539, 7.5523, 7.551, 7.5535, 7.5561, 7.5544, 7.5568, 7.555, 7.5533, 7.552, 7.5506, 7.553, 7.5514, 7.5498, 7.5482, 7.5473, 7.5456, 7.5443, 7.5426, 7.5453, 7.5436, 7.5419, 7.5402, 7.5427, 7.5411, 7.5435, 7.5421, 7.5411, 7.5394, 7.5379, 7.5364, 7.5362, 7.5355, 7.5345, 7.5331, 7.5346, 7.533, 7.5317, 7.5306, 7.529, 7.5277, 7.5229, 7.5217, 7.5243, 7.527, 7.5253, 7.5238, 7.5227, 7.5211, 7.5195, 7.5178, 7.5201, 7.5188, 7.5171, 7.5155, 7.5139, 7.5148, 7.5132, 7.512, 7.5104, 7.5089, 7.5077, 7.506, 7.5044, 7.5068, 7.5139, 7.5162, 7.5199, 7.5232, 7.5234, 7.5228, 7.5226, 7.5255, 7.5281, 7.5285, 7.527, 7.5254, 7.5241, 7.5229, 7.5214, 7.5236, 7.5222, 7.5206, 7.519, 7.5176, 7.5163, 7.515, 7.5137, 7.5124, 7.5111, 7.5098, 7.5121, 7.5113, 7.5099, 7.509, 7.5078, 7.5064, 7.5088, 7.5073, 7.5097, 7.5119, 7.5105, 7.5131, 7.5152, 7.5181, 7.5166, 7.5152, 7.5177, 7.5173, 7.5198, 7.5184, 7.5209, 7.5234, 7.5222, 7.5208, 7.5201, 7.5187, 7.5177, 7.5203, 7.5189, 7.521, 7.523, 7.5214, 7.5208, 7.5193, 7.5181, 7.5174, 7.516, 7.515, 7.5134, 7.5162, 7.5183, 7.5177, 7.5201, 7.5222, 7.5211, 7.5195, 7.5179, 7.5189, 7.5175, 7.5198, 7.5183, 7.5206, 7.5194, 7.5219, 7.5208, 7.5195, 7.5182, 7.5191, 7.5182, 7.5173, 7.5158, 7.5148, 7.517, 7.5192, 7.5217, 7.5277, 7.5298, 7.5293, 7.528, 7.5306, 7.5328, 7.5349, 7.5337, 7.5335, 7.5321, 7.5306, 7.5292, 7.5313, 7.5305, 7.5257, 7.5245, 7.5237, 7.5264, 7.5249, 7.5235, 7.523, 7.5228, 7.525, 7.5234, 7.5258, 7.5244, 7.5231, 7.5215, 7.5212, 7.5218, 7.524, 7.5225, 7.521, 7.5232, 7.5222, 7.5207, 7.5196, 7.5183, 7.5206, 7.5191, 7.5146, 7.5134, 7.5142, 7.5129, 7.5149, 7.5103, 7.5127, 7.5114, 7.5104, 7.5128, 7.5114, 7.5134, 7.5121, 7.5108, 7.5096, 7.5082, 7.5039, 7.5028, 7.509, 7.5083, 7.5071, 7.5064, 7.5087, 7.5073, 7.5102, 7.5057, 7.5078, 7.5099, 7.5084, 7.507, 7.5059, 7.5045, 7.5035, 7.5022, 7.5011, 7.4999, 7.4991, 7.4979, 7.5002, 7.5029, 7.502, 7.5006, 7.5031, 7.502, 7.5044, 7.5069, 7.5058, 7.5088, 7.5108, 7.5093, 7.5085, 7.5071, 7.5061, 7.5081, 7.5074, 7.5064, 7.5053, 7.5044, 7.5033, 7.5021, 7.5014, 7.5033, 7.5022, 7.5011, 7.5002, 7.499, 7.5017, 7.5002, 7.499, 7.5015, 7.5002, 7.4988, 7.4977, 7.4964, 7.495, 7.4975, 7.5004, 7.4991, 7.498, 7.4968, 7.4964, 7.495, 7.4938, 7.4958, 7.4946, 7.4959, 7.4949, 7.4936, 7.4924, 7.4915, 7.4903, 7.4923, 7.4915, 7.4902, 7.493, 7.4916, 7.4906, 7.4901, 7.4895, 7.4883, 7.4877, 7.4864, 7.485, 7.4836, 7.4836, 7.4823, 7.4812, 7.4799, 7.482, 7.4807, 7.4793, 7.478, 7.4875, 7.49, 7.4957, 7.4943, 7.4939, 7.4928, 7.4949, 7.4941, 7.4929, 7.4916, 7.4937, 7.4923, 7.4911, 7.4901, 7.4889, 7.4875, 7.4864, 7.4864, 7.4851, 7.4841, 7.4828, 7.4819, 7.4839, 7.483, 7.4851, 7.4869, 7.489, 7.4909, 7.4897, 7.4884, 7.4872, 7.486, 7.4847, 7.4836, 7.4823, 7.4813, 7.48, 7.4796, 7.4848, 7.4839, 7.4828, 7.4815, 7.4802, 7.4789, 7.4779, 7.4804, 7.4794, 7.4819, 7.484, 7.4862, 7.4885, 7.4872, 7.4894, 7.4885, 7.4874, 7.4862, 7.4883, 7.4871, 7.4858, 7.488, 7.4868, 7.4889, 7.4876, 7.4869, 7.4936, 7.4923, 7.4943, 7.4966, 7.4957, 7.4951, 7.4951, 7.4939, 7.4959, 7.4917, 7.4906, 7.4894, 7.4857, 7.4847, 7.4833, 7.482, 7.4807, 7.4794, 7.4781, 7.4775, 7.4795, 7.4783, 7.477, 7.476, 7.4766, 7.4755, 7.4775, 7.4796, 7.4816, 7.4804, 7.4824, 7.4815, 7.4803, 7.4791, 7.4782, 7.4835, 7.4826, 7.4824, 7.4785, 7.4806, 7.4798, 7.4788, 7.4775, 7.4795, 7.4856, 7.4878, 7.4865, 7.4862, 7.4851, 7.4871, 7.4858, 7.4877, 7.4896, 7.4885, 7.4904, 7.4893, 7.491, 7.493, 7.4947, 7.4907, 7.4925, 7.4945, 7.4934, 7.4955, 7.4946, 7.4967, 7.4989, 7.5009, 7.4999, 7.5022, 7.5015, 7.5041, 7.5028, 7.5048, 7.5035, 7.5027, 7.5019, 7.5009, 7.4996, 7.4984, 7.5018, 7.5008, 7.5002, 7.5021, 7.5049, 7.5037, 7.5028, 7.5019, 7.5037, 7.5028, 7.4995, 7.4984, 7.5004, 7.4992, 7.498, 7.4968, 7.496, 7.4948, 7.5035, 7.5055, 7.5043, 7.506, 7.5051, 7.507, 7.5069, 7.5127, 7.5132, 7.512, 7.514, 7.5159, 7.5178, 7.5165, 7.5187, 7.5178, 7.5168, 7.5156, 7.5175, 7.5194, 7.5213, 7.5201, 7.519, 7.5184, 7.5175, 7.5193, 7.5182, 7.5169, 7.5157, 7.516, 7.5155, 7.5152, 7.5172, 7.5161, 7.5154, 7.518, 7.5168, 7.5155, 7.5176, 7.5195, 7.5184, 7.5177, 7.5197, 7.5186, 7.5175, 7.5162, 7.5151, 7.514, 7.5161, 7.5181, 7.5143, 7.5132, 7.515, 7.514, 7.5129, 7.5119, 7.5112, 7.5102, 7.5095, 7.5084, 7.5073, 7.5069, 7.5061, 7.5079, 7.5067, 7.5031, 7.511, 7.511, 7.51, 7.5069, 7.5057, 7.5058, 7.508, 7.5068, 7.5057, 7.5047, 7.5036, 7.5026, 7.5018, 7.5034, 7.5022, 7.5011, 7.5003, 7.4994, 7.4982, 7.4944, 7.4934, 7.4951, 7.4944, 7.4933, 7.495, 7.5056, 7.5048, 7.5055, 7.5045, 7.5062, 7.5053, 7.5131, 7.5124, 7.5112, 7.51, 7.5088, 7.5079, 7.5072, 7.5063, 7.5055, 7.5045, 7.5041, 7.5029, 7.5022, 7.5039, 7.5058, 7.5046, 7.5036, 7.5053, 7.5042, 7.5031, 7.505, 7.504, 7.5059, 7.5049, 7.5042, 7.5061, 7.5065, 7.5058, 7.5052, 7.504, 7.5029, 7.5022, 7.5011, 7.5032, 7.5023, 7.5011, 7.5001, 7.5019, 7.5015, 7.5033, 7.5022, 7.5012, 7.5064, 7.5085, 7.5073, 7.5061, 7.5079, 7.5073, 7.5065, 7.5056, 7.5049, 7.5067, 7.5085, 7.5074, 7.5066, 7.5057, 7.5049, 7.508, 7.507, 7.5058, 7.5054, 7.5043, 7.506, 7.5052, 7.5041, 7.5029, 7.5018, 7.5009, 7.5001, 7.4996, 7.5013, 7.503, 7.5021, 7.5013, 7.5003, 7.4991, 7.4985, 7.4982, 7.4972, 7.4992, 7.4986, 7.4975, 7.4964, 7.4954, 7.4944, 7.4933, 7.4921, 7.4912, 7.4903, 7.4897, 7.4896, 7.4891, 7.4889, 7.491, 7.49, 7.4895, 7.4887, 7.4878, 7.4897, 7.4891, 7.4906, 7.4898, 7.4887, 7.4862, 7.4852, 7.4842, 7.4831, 7.485, 7.4843, 7.4833, 7.4853, 7.4863, 7.4852, 7.4842, 7.4831, 7.4851, 7.487, 7.4858, 7.485, 7.4841, 7.4832, 7.4824, 7.4815, 7.4806, 7.4796, 7.4797, 7.4786, 7.4801, 7.479, 7.4779, 7.4781, 7.4775, 7.4793, 7.4783, 7.4798, 7.4814, 7.4832, 7.4848, 7.4838, 7.4832, 7.4825, 7.4816, 7.4807, 7.4796, 7.4791, 7.481, 7.48, 7.4817, 7.4806, 7.4797, 7.4786, 7.4814, 7.4923, 7.4914, 7.4932, 7.4973, 7.4988, 7.4979, 7.4969, 7.4958, 7.4948, 7.4963, 7.4952, 7.4941, 7.4958, 7.4948, 7.4965, 7.4956, 7.4946, 7.4962, 7.4953, 7.4945, 7.4964, 7.4955, 7.4945, 7.4936, 7.4926, 7.4915, 7.4905, 7.4897, 7.489, 7.4882, 7.4873, 7.4862, 7.4856, 7.4847, 7.4837, 7.4827, 7.4818, 7.4857, 7.4847, 7.4864, 7.4859, 7.4849, 7.4842, 7.4832, 7.4825, 7.4842, 7.4857, 7.4847, 7.4862, 7.4852, 7.4843, 7.4839, 7.483, 7.4821, 7.4837, 7.4831, 7.4827, 7.4841, 7.4856, 7.4845, 7.4842, 7.486, 7.4852, 7.4842, 7.4835, 7.4825, 7.4841, 7.483, 7.4822, 7.4812, 7.4806, 7.4797, 7.4813, 7.4805, 7.4799, 7.4789, 7.4804, 7.4823, 7.4815, 7.4833, 7.4823, 7.4813, 7.4804, 7.4804, 7.4821, 7.4837, 7.4831, 7.4823, 7.4815, 7.4806, 7.4801, 7.4791, 7.4781, 7.4797, 7.4787, 7.4777, 7.4766, 7.4756, 7.4748, 7.4781, 7.477, 7.476, 7.475, 7.4772, 7.4762, 7.4756, 7.4748, 7.4738, 7.4733, 7.4728, 7.472, 7.4757, 7.4798, 7.479, 7.4785, 7.4778, 7.4768, 7.4759, 7.475, 7.4741, 7.4732, 7.4723, 7.4715, 7.4706, 7.4701, 7.4692, 7.4697, 7.4687, 7.4677, 7.4715, 7.4755, 7.477, 7.4811, 7.4803, 7.4796, 7.4789, 7.4805, 7.4795, 7.4791, 7.4781, 7.4774, 7.4768, 7.4759, 7.4749, 7.4739, 7.473, 7.472, 7.4713, 7.4705, 7.4724, 7.4717, 7.4709, 7.47, 7.467, 7.4698, 7.4691, 7.4681, 7.4672, 7.4688, 7.4687, 7.4683, 7.4676, 7.4644, 7.4661, 7.4676, 7.4667, 7.4661, 7.4653, 7.4647, 7.4663, 7.4653, 7.4647, 7.4663, 7.4657, 7.4648, 7.4638, 7.4632, 7.4648, 7.4639, 7.4629, 7.4621, 7.4639, 7.4655, 7.4645, 7.4636, 7.4627, 7.4642, 7.4659, 7.465, 7.4665, 7.4681, 7.4706, 7.4697, 7.4688, 7.4726, 7.4717, 7.473, 7.4721, 7.4737, 7.4779, 7.477, 7.4786, 7.4824, 7.4865, 7.4856, 7.4851, 7.4843, 7.4834, 7.4808, 7.4804, 7.482, 7.4813, 7.4803, 7.4794, 7.48, 7.479, 7.4781, 7.4772, 7.4786, 7.4777, 7.4792, 7.4787, 7.4777, 7.4792, 7.4808, 7.4801, 7.4792, 7.4826, 7.4819, 7.4788, 7.4781, 7.4771, 7.4786, 7.4782, 7.4775, 7.4788, 7.478, 7.4772, 7.4832, 7.4824, 7.4816, 7.4807, 7.4798, 7.4812, 7.4804, 7.4795, 7.4797, 7.4791, 7.4792, 7.4784, 7.4799, 7.4792, 7.4783, 7.4776, 7.4771, 7.4786, 7.4777, 7.4793, 7.4784, 7.4779, 7.4794, 7.4785, 7.4778, 7.4769, 7.476, 7.475, 7.4742, 7.4734, 7.4728, 7.4719, 7.4735, 7.4728, 7.4721, 7.4736, 7.4749, 7.474, 7.477, 7.4761, 7.4757, 7.4754, 7.4769, 7.4759, 7.4773, 7.4787, 7.4803, 7.4794, 7.4785, 7.4801, 7.4792, 7.4786, 7.4778, 7.4771, 7.4761, 7.4759, 7.475, 7.4744, 7.4735, 7.4726, 7.4721, 7.4736, 7.4728, 7.4745, 7.4735, 7.4726, 7.472, 7.4711, 7.4726, 7.4717, 7.4712, 7.4702, 7.4696, 7.469, 7.4682, 7.4673, 7.4667, 7.4642, 7.4635, 7.4626, 7.4618, 7.4612, 7.4606, 7.4576, 7.4615, 7.4631, 7.4623, 7.4624, 7.464, 7.4632, 7.4623, 7.4639, 7.4631, 7.4622, 7.4594, 7.4589, 7.4584, 7.4579, 7.4594, 7.4592, 7.4586, 7.4577, 7.4592, 7.4584, 7.4598, 7.4589, 7.456, 7.4551, 7.4543, 7.4557, 7.4528, 7.452, 7.4535, 7.4526, 7.4517, 7.4508, 7.4522, 7.4537, 7.4553, 7.4568, 7.4561, 7.4553, 7.4622, 7.4637, 7.4632, 7.4632, 7.4624, 7.4615, 7.4625, 7.4618, 7.461, 7.4624, 7.4616, 7.4629, 7.4643, 7.4634, 7.4626, 7.464, 7.4632, 7.4626, 7.4618, 7.461, 7.4605, 7.4598, 7.4589, 7.4581, 7.4574, 7.4566, 7.4558, 7.4549, 7.4563, 7.4555, 7.4546, 7.4542, 7.4534, 7.4529, 7.4521, 7.4512, 7.4526, 7.4544, 7.4558, 7.4551, 7.4543, 7.4535, 7.4526, 7.454, 7.4532, 7.4526, 7.4519, 7.4541, 7.4533, 7.4525, 7.452, 7.4513, 7.4511, 7.4505, 7.4526, 7.452, 7.4513, 7.4505, 7.4476, 7.447, 7.4462, 7.4496, 7.4514, 7.4506, 7.4497, 7.4488, 7.448, 7.4494, 7.4486, 7.4478, 7.447, 7.4463, 7.4457, 7.4455, 7.4449, 7.444, 7.4454, 7.4447, 7.4439, 7.4435, 7.443, 7.4422, 7.4413, 7.4406, 7.442, 7.4411, 7.4402, 7.4399, 7.4413, 7.4387, 7.4378, 7.4372, 7.4366, 7.4367, 7.4359, 7.4351, 7.4347, 7.4339, 7.4331, 7.4324, 7.4316, 7.4309, 7.4301, 7.4292, 7.4284, 7.4364, 7.4357, 7.4393, 7.4386, 7.4377, 7.4372, 7.4385, 7.4379, 7.4373, 7.4365, 7.4357, 7.435, 7.4342, 7.4355, 7.4347, 7.436, 7.4354, 7.4346, 7.4338, 7.4351, 7.4343, 7.4336, 7.4328, 7.4322, 7.4319, 7.4311, 7.4325, 7.4317, 7.4332, 7.4325, 7.4317, 7.4311, 7.4325, 7.4319, 7.431, 7.4302, 7.4294, 7.433, 7.4321, 7.4313, 7.4326, 7.4298, 7.4293, 7.4286, 7.4299, 7.4292, 7.4285, 7.4282, 7.4274, 7.4267, 7.4259, 7.4254, 7.4248, 7.4242, 7.4234, 7.4248, 7.424, 7.4218, 7.4213, 7.4206, 7.4202, 7.4177, 7.4169, 7.4182, 7.4195, 7.4207, 7.4201, 7.4197, 7.419, 7.4205, 7.4218, 7.421, 7.4202, 7.4197, 7.4189, 7.4187, 7.4201, 7.4193, 7.4172, 7.4164, 7.4177, 7.4174, 7.4166, 7.4158, 7.4153, 7.4144, 7.4136, 7.4129, 7.4122, 7.4117, 7.4109, 7.4082, 7.4074, 7.4095, 7.4087, 7.4079, 7.4148, 7.4161, 7.4134, 7.4147, 7.414, 7.4113, 7.4125, 7.412, 7.4133, 7.4128, 7.4121, 7.4131, 7.4124, 7.4158, 7.4159, 7.4172, 7.4166, 7.4162, 7.4156, 7.4169, 7.4161, 7.4175, 7.4168, 7.4166, 7.416, 7.4154, 7.4155, 7.4148, 7.414, 7.4132, 7.4125, 7.4117, 7.411, 7.4103, 7.4096, 7.4089, 7.4086, 7.4098, 7.4093, 7.4086, 7.4101, 7.4096, 7.4107, 7.4102, 7.4096, 7.4089, 7.4081, 7.4074, 7.4068, 7.4078, 7.4091, 7.4065, 7.4058, 7.4052, 7.4044, 7.4037, 7.4029, 7.4025, 7.4018, 7.4012, 7.4022, 7.4014, 7.4006, 7.4002, 7.4014, 7.4024, 7.4031, 7.4039, 7.4031, 7.4026, 7.4019, 7.4011, 7.4024, 7.4016, 7.4051, 7.4045, 7.4049, 7.4041, 7.4035, 7.4048, 7.4045, 7.4039, 7.4049000000000005, 7.405900000000001, 7.4055, 7.4088, 7.408, 7.4093, 7.4086, 7.4096, 7.4089, 7.4084, 7.4078, 7.407, 7.4068, 7.4062, 7.406, 7.4054, 7.4048, 7.404, 7.4034, 7.4027, 7.4021, 7.4017, 7.4031, 7.4025, 7.4039, 7.4032, 7.4025, 7.4038, 7.4031, 7.4025, 7.4038, 7.4052, 7.4044, 7.4059, 7.4072, 7.4066, 7.4058, 7.405, 7.4025, 7.4019, 7.4011, 7.4003, 7.3995, 7.4008, 7.4, 7.3995, 7.4005, 7.4025, 7.4018, 7.4013, 7.4008, 7.4, 7.3995, 7.3988, 7.4001, 7.4012, 7.4031, 7.4023, 7.4015, 7.4027, 7.4019, 7.4031, 7.4043, 7.4055, 7.4047, 7.4045, 7.4038, 7.4033, 7.4026, 7.402, 7.4013, 7.3989, 7.3982, 7.3979, 7.3982, 7.3992, 7.399, 7.3984, 7.3977, 7.397, 7.3981, 7.3993, 7.3986, 7.3998, 7.401, 7.4023, 7.4015, 7.4008, 7.4003, 7.3995, 7.3988, 7.398, 7.3991, 7.3991, 7.3989, 7.3983, 7.3996, 7.3988, 7.398, 7.3975, 7.3968, 7.396, 7.3972, 7.3965, 7.3959, 7.3953, 7.3947, 7.3959, 7.3951, 7.3927, 7.3938, 7.3931, 7.3923, 7.3916, 7.3911, 7.3923, 7.3917, 7.391, 7.3905, 7.3917, 7.3924, 7.3936, 7.3932, 7.3926, 7.3919, 7.3912, 7.3905, 7.39, 7.3913, 7.3907, 7.392, 7.3946, 7.3959, 7.3952, 7.3948, 7.3961, 7.3974, 7.3968, 7.3961, 7.3954, 7.3947, 7.3941, 7.3936, 7.3929, 7.393, 7.391, 7.3913, 7.3909, 7.3903, 7.3879, 7.3913, 7.3908, 7.3901, 7.3902, 7.3878, 7.3893, 7.3908, 7.3926, 7.3918, 7.393, 7.3924, 7.3916, 7.3911, 7.3906, 7.39, 7.3914, 7.3907, 7.3902, 7.3895, 7.3888, 7.3893, 7.3906, 7.3908, 7.3918, 7.3928, 7.3938, 7.3966, 7.3981, 7.3975, 7.3968, 7.3961, 7.3954, 7.3948, 7.3944, 7.394, 7.3932, 7.3945, 7.3942, 7.3936, 7.3932, 7.3926, 7.392, 7.3988, 7.3999, 7.3992, 7.3986, 7.3996, 7.3989, 7.3965, 7.3961, 7.3955, 7.3948, 7.3941, 7.3934, 7.3928, 7.3927, 7.3939, 7.3933, 7.3947, 7.394, 7.3952, 7.3963, 7.3957, 7.3949, 7.3943, 7.3955, 7.3968, 7.398, 7.3991, 7.3984, 7.3978, 7.399, 7.3984, 7.3977, 7.397, 7.3963, 7.3956, 7.3949, 7.3961, 7.3971, 7.3964, 7.3957, 7.395, 7.3944, 7.3937, 7.3931, 7.3943, 7.3954, 7.3947, 7.3959, 7.3954, 7.3949, 7.3961, 7.3954, 7.395, 7.3944, 7.3937, 7.3932, 7.3946, 7.3945, 7.3957, 7.3953, 7.3955, 7.395, 7.3949, 7.3943, 7.396, 7.3954, 7.3956, 7.3949, 7.3977, 7.3972, 7.3967, 7.3961, 7.3976, 7.3989, 7.3983, 7.3976, 7.3991, 7.4004, 7.3999, 7.4012, 7.4008, 7.4019, 7.4013, 7.4026, 7.402, 7.4015, 7.4008, 7.4003, 7.3998, 7.3991, 7.3986, 7.3979, 7.3992, 7.399, 7.3985, 7.3981, 7.3977, 7.3973, 7.3967, 7.3977, 7.3989, 7.3967, 7.3961, 7.3982, 7.3979, 7.3989, 7.3984, 7.3978, 7.3975, 7.3969, 7.3962, 7.3956, 7.3968, 7.3979, 7.3974, 7.3974, 7.3967, 7.3961, 7.3955, 7.3948, 7.3942, 7.3936, 7.3947, 7.394, 7.3934, 7.3946, 7.3944, 7.3937, 7.3933, 7.3944, 7.3937, 7.3948, 7.3941, 7.3934, 7.3911, 7.3906, 7.3899, 7.3894, 7.389, 7.3884, 7.3882, 7.3876, 7.3871, 7.3883, 7.3878, 7.3871, 7.3869, 7.3881, 7.3879, 7.3873, 7.3884, 7.3877, 7.3888, 7.3866, 7.386, 7.3854, 7.3847, 7.3842, 7.3835, 7.3828, 7.3823, 7.3823, 7.3844, 7.3837, 7.383, 7.3842, 7.3854, 7.3866, 7.3862, 7.3855, 7.3873, 7.3868, 7.3862, 7.3856, 7.3849, 7.386, 7.3856, 7.385, 7.3844, 7.3838, 7.3832, 7.3829, 7.3822, 7.3816, 7.3814, 7.381, 7.3822, 7.3816, 7.381, 7.3805, 7.3816, 7.3809, 7.3803, 7.3815, 7.3809, 7.3821, 7.3816, 7.3811, 7.3805, 7.3818, 7.3812, 7.3805, 7.3816, 7.3811, 7.3805, 7.3818, 7.3811, 7.3805, 7.3815, 7.381, 7.3805, 7.3816, 7.3816, 7.3809, 7.3821, 7.3816, 7.3811, 7.3806, 7.38, 7.3801, 7.3798, 7.381, 7.3823, 7.3817, 7.3828, 7.3821, 7.3814, 7.3819, 7.3812, 7.3832, 7.3843, 7.3836, 7.3832, 7.3826, 7.3821, 7.3835, 7.3831, 7.3843, 7.3838, 7.3848, 7.3842, 7.3853, 7.3849, 7.3844, 7.3839, 7.3835, 7.3828, 7.3824, 7.3819, 7.3815, 7.381, 7.3804, 7.3814, 7.3824, 7.3817, 7.3812, 7.3834, 7.383, 7.3841, 7.3852, 7.3846, 7.3839, 7.385, 7.3843, 7.3838, 7.3832, 7.3827, 7.3838, 7.3849, 7.3843, 7.3844, 7.385400000000001, 7.386400000000001, 7.387400000000001, 7.3869, 7.3866, 7.3876, 7.3886, 7.388, 7.3874, 7.3867, 7.3862, 7.3879, 7.3882, 7.3882, 7.3861, 7.3861, 7.386, 7.3862, 7.3857, 7.3839, 7.3836, 7.3863, 7.3857, 7.3852, 7.3862, 7.3859, 7.3869, 7.3847, 7.3858, 7.3852, 7.3864, 7.3875, 7.3872, 7.3883, 7.3876, 7.3869, 7.3864, 7.386, 7.3857, 7.3867, 7.3862, 7.3855, 7.3865, 7.3876, 7.3871, 7.3865, 7.3875, 7.3871, 7.3864, 7.3858, 7.3852, 7.3846, 7.3824, 7.3821, 7.3816, 7.3809, 7.3805, 7.3799, 7.3794, 7.3789, 7.3784, 7.3778, 7.3789, 7.3783, 7.3778, 7.3771, 7.3766, 7.376, 7.3754, 7.375, 7.3744, 7.3738, 7.3749, 7.3743, 7.3737, 7.3732, 7.3738, 7.3756, 7.3767, 7.3761, 7.3771, 7.3766, 7.3777, 7.3772, 7.3767, 7.3761, 7.3755, 7.3749, 7.3744, 7.3755, 7.3839, 7.3835, 7.3829, 7.3823, 7.3869, 7.3864, 7.3878, 7.3888, 7.3882, 7.3877, 7.3924, 7.3917, 7.3912, 7.3905, 7.3899, 7.391, 7.3904, 7.3897, 7.3892, 7.3886, 7.388, 7.3875, 7.3868, 7.3853, 7.388, 7.3874, 7.387, 7.3866, 7.3877, 7.3873, 7.3911, 7.3891, 7.3902, 7.3898, 7.3894, 7.3887, 7.3897, 7.3923, 7.3935, 7.3928, 7.3922, 7.3916, 7.3929, 7.3924, 7.3934, 7.393, 7.394, 7.3935, 7.3929, 7.3923, 7.3935, 7.3946, 7.3942, 7.3936, 7.3916, 7.3911, 7.3908, 7.392, 7.3914, 7.3933, 7.3931, 7.3911, 7.3905, 7.3899, 7.3893, 7.3909, 7.3903, 7.3914, 7.3911, 7.3906, 7.39, 7.391, 7.3967, 7.3978, 7.3988, 7.3982, 7.3976, 7.3971, 7.3966, 7.3976, 7.397, 7.3981, 7.399, 7.3985, 7.398, 7.3974, 7.3968, 7.3963, 7.3959, 7.3953, 7.395, 7.3945, 7.3955, 7.3949, 7.3943, 7.3952, 7.3946, 7.394, 7.3953, 7.3948, 7.3943, 7.3938, 7.3949, 7.3959, 7.3953, 7.395, 7.3944, 7.394, 7.3935, 7.3929, 7.3939, 7.3948, 7.3945, 7.3955, 7.3965, 7.396, 7.3971, 7.3982, 7.3977, 7.3989, 7.3983, 7.3979, 7.3988, 7.3984, 7.3978, 7.3988, 7.3982, 7.3976, 7.3969, 7.3962, 7.3971, 7.3968, 7.3961, 7.3955, 7.3968, 7.3969, 7.3963, 7.3974, 7.3968, 7.3963, 7.3974, 7.3968, 7.3965, 7.3959, 7.3955, 7.3949, 7.3943, 7.3954, 7.3949, 7.3943, 7.3936, 7.3947, 7.3943, 7.3954, 7.3948, 7.3958, 7.3957, 7.3952, 7.3964, 7.3982, 7.3976, 7.397, 7.3966, 7.3969, 7.3966, 7.396, 7.3956, 7.3952, 7.3945, 7.3925, 7.3925, 7.3921, 7.3916, 7.3928, 7.3925, 7.3962, 7.3957, 7.3955, 7.395, 7.3945, 7.3955, 7.3967, 7.3961, 7.3971, 7.3981, 7.3975, 7.3969, 7.3979, 7.3994, 7.3991, 7.4017, 7.4011, 7.4005, 7.403, 7.4026, 7.402, 7.4016, 7.4017, 7.4011, 7.4005, 7.3999, 7.3993, 7.3989, 7.3983, 7.3981, 7.3975, 7.3955, 7.395, 7.3944, 7.394, 7.392, 7.3914, 7.3908, 7.3904, 7.3898, 7.3892, 7.3888, 7.3882, 7.3892, 7.3887, 7.3894, 7.3875, 7.3885, 7.3896, 7.3893, 7.3888, 7.3921, 7.3931000000000004, 7.3925, 7.3921, 7.3902, 7.3897, 7.3892, 7.3888, 7.3882, 7.3876, 7.3871, 7.3865, 7.3859, 7.3886, 7.3882, 7.3876, 7.3886, 7.3881, 7.3862, 7.3859, 7.3869, 7.388, 7.3874, 7.3871, 7.3866, 7.3861, 7.3856, 7.3866, 7.386, 7.3854, 7.3864, 7.3871, 7.3881, 7.3877, 7.3871, 7.3882, 7.3881, 7.3876, 7.3873, 7.387, 7.3883, 7.3878, 7.3873, 7.3868, 7.3865, 7.3875, 7.387, 7.3865, 7.3865, 7.3859, 7.3853, 7.3848, 7.3843, 7.3839, 7.3836, 7.3832, 7.3841, 7.3835, 7.3829, 7.3838, 7.3833, 7.3848, 7.3858, 7.3853, 7.3847, 7.3841, 7.385, 7.3847, 7.3842, 7.3851, 7.3846, 7.3841, 7.3838, 7.3857, 7.3851, 7.386100000000001, 7.3855, 7.3849, 7.3843, 7.3837, 7.3833, 7.3827, 7.3822, 7.3817, 7.3829, 7.3826, 7.3836, 7.3833, 7.3827, 7.3821, 7.3817, 7.3813, 7.3809, 7.3818, 7.3828, 7.3841, 7.3837, 7.3833, 7.3828, 7.3838, 7.3834, 7.3829, 7.3825, 7.3819, 7.3831, 7.3833, 7.3829, 7.3823, 7.384, 7.3834, 7.3828, 7.3837, 7.3837, 7.3832, 7.3827, 7.3822, 7.3817, 7.3812, 7.3807, 7.3806, 7.3815, 7.3809, 7.3804, 7.3799, 7.3794, 7.3804, 7.3798, 7.3794, 7.379, 7.3786, 7.3781, 7.3777, 7.3805, 7.38, 7.3809, 7.3803, 7.3829, 7.3825, 7.3819, 7.3814, 7.3815, 7.3814, 7.3811, 7.3806, 7.3801, 7.3798, 7.3794, 7.3802, 7.3796, 7.3803, 7.3797, 7.3792, 7.3786, 7.3781, 7.3777, 7.3786, 7.3781, 7.3775, 7.3771, 7.3766, 7.3776, 7.3773, 7.3767, 7.3762, 7.3757, 7.3752, 7.3747, 7.3743, 7.3738, 7.3748, 7.3742, 7.3736, 7.373, 7.3724, 7.372, 7.3715, 7.3711, 7.3709, 7.3704, 7.3714, 7.3708, 7.3705, 7.37, 7.3694, 7.369, 7.3686, 7.3697, 7.3691, 7.3686, 7.3681, 7.3676, 7.3678, 7.3673, 7.3669, 7.3663, 7.3682, 7.3691, 7.3688, 7.3683, 7.3678, 7.3674, 7.367, 7.368, 7.3674, 7.367, 7.3665, 7.3663, 7.3658, 7.3653, 7.3648, 7.3673, 7.3683, 7.368, 7.3675, 7.3684, 7.3681, 7.3677, 7.3672, 7.3682, 7.3677, 7.3687, 7.3681, 7.3678, 7.3675, 7.3685, 7.368, 7.3705, 7.37, 7.3695, 7.3705, 7.37, 7.3695, 7.370500000000001, 7.3702, 7.3712, 7.3722, 7.3749, 7.3745, 7.3741, 7.3751, 7.376, 7.377, 7.3765, 7.3761, 7.3756, 7.375, 7.3745, 7.3741, 7.3737, 7.3733, 7.3727, 7.3737, 7.3719, 7.3728, 7.3737, 7.3733, 7.3729, 7.3724, 7.3718, 7.3715, 7.3712, 7.3724, 7.3719, 7.3714, 7.371, 7.3713, 7.371, 7.3705, 7.3714, 7.3723, 7.3719, 7.3713, 7.3713, 7.3722, 7.3732, 7.3727, 7.3724, 7.3719, 7.3715, 7.3712, 7.3706, 7.3701, 7.3699, 7.3695, 7.3689, 7.3698, 7.3695, 7.3704, 7.3713, 7.3709, 7.3706, 7.3701, 7.3697, 7.3692, 7.369, 7.3698, 7.3707, 7.3702, 7.3713, 7.3709, 7.3704, 7.3714, 7.3709, 7.3704, 7.3708, 7.3704, 7.3699, 7.3696, 7.3691, 7.3691, 7.3691, 7.3686, 7.3681, 7.3676, 7.3672, 7.368, 7.3674, 7.3672, 7.3669, 7.3678, 7.3673, 7.3669, 7.3664, 7.3659, 7.3656, 7.3653, 7.3648, 7.3648, 7.3643, 7.3652, 7.3648, 7.3656, 7.3651, 7.366, 7.3669, 7.3664, 7.3674, 7.367, 7.3681, 7.3679, 7.3676, 7.367, 7.3665, 7.3659, 7.3654, 7.3664, 7.3662, 7.3715, 7.3725, 7.3719, 7.3727, 7.3725, 7.3721, 7.3717, 7.3711, 7.3707, 7.3702, 7.3696, 7.3691, 7.3687, 7.3682, 7.3678, 7.3673, 7.3682, 7.3678, 7.3687, 7.3696, 7.3691, 7.3687, 7.373, 7.3727, 7.3723, 7.3721, 7.3716, 7.3711, 7.3707, 7.3702, 7.3697, 7.3695, 7.369, 7.3686, 7.3682, 7.3679, 7.3688, 7.3712, 7.3707, 7.3715, 7.3697, 7.3692, 7.3701, 7.3696, 7.3691, 7.3688, 7.3683, 7.3693, 7.3691, 7.37, 7.3698, 7.3693, 7.3689, 7.3688, 7.3684, 7.3679, 7.3674, 7.3683, 7.3693, 7.3702, 7.3711, 7.3708, 7.372, 7.3715, 7.3709, 7.3718, 7.3727, 7.3722, 7.3718, 7.3713, 7.3709, 7.3704, 7.3712, 7.3721, 7.3729, 7.3724, 7.372, 7.3715, 7.3711, 7.3736, 7.3736, 7.3745, 7.3742, 7.3739, 7.3749, 7.3744, 7.3752, 7.3748, 7.3745, 7.3755, 7.375, 7.375, 7.3745, 7.3743, 7.3738, 7.3733, 7.3742, 7.3737, 7.3733, 7.3728, 7.3722, 7.3726, 7.3724, 7.3724, 7.3719, 7.3717, 7.3712, 7.372, 7.3715, 7.371, 7.3705, 7.3729, 7.3725, 7.3721, 7.3731, 7.3727, 7.3722, 7.3718, 7.3713, 7.3722, 7.3732, 7.3741, 7.3751, 7.3747, 7.3756, 7.3752, 7.3761, 7.3759, 7.3755, 7.3763, 7.3759, 7.3755, 7.375, 7.3745, 7.3741, 7.3738, 7.3735, 7.373, 7.3725, 7.3722, 7.3717, 7.3712, 7.3708, 7.3705, 7.37, 7.3696, 7.3706, 7.3689, 7.3685, 7.3667, 7.3663, 7.3659, 7.3668, 7.365, 7.3645, 7.364, 7.3635, 7.3632, 7.3643, 7.3639, 7.3635, 7.363, 7.3626, 7.3621, 7.3618, 7.3613, 7.3608, 7.362, 7.3615, 7.3611, 7.3607, 7.3602, 7.3597, 7.3593, 7.3589, 7.3612, 7.3608, 7.3605, 7.3616, 7.3611, 7.3606, 7.3616, 7.3611, 7.3606, 7.3615, 7.3612, 7.3621, 7.363, 7.3627, 7.3626, 7.3621, 7.3616, 7.3611, 7.3606, 7.3603, 7.3602, 7.3611, 7.3607, 7.3602, 7.3598, 7.3595, 7.359, 7.3586, 7.3582, 7.3581, 7.3589, 7.3586, 7.3584, 7.358, 7.3575, 7.3558, 7.3553, 7.3562, 7.3557, 7.3565, 7.3549, 7.3545, 7.354, 7.3535, 7.353, 7.3527, 7.3513, 7.3511, 7.3508, 7.3503, 7.3511, 7.3519, 7.353, 7.3513, 7.3521, 7.3518, 7.3514, 7.3509, 7.3506, 7.3502, 7.3512, 7.352, 7.353, 7.3538, 7.3557, 7.3553, 7.3563, 7.3558, 7.3553, 7.3549, 7.3546, 7.3541, 7.3537, 7.3535, 7.3544, 7.3554, 7.356400000000001, 7.3572, 7.3568, 7.3577, 7.3573, 7.3568, 7.3577, 7.3572, 7.3568, 7.3572, 7.3568, 7.3564, 7.3559, 7.3554, 7.3549, 7.3558, 7.3555, 7.3539, 7.3547, 7.3556, 7.3552, 7.358, 7.3589, 7.3587, 7.3583, 7.3579, 7.3578, 7.3587, 7.3583, 7.3581, 7.3576, 7.3571, 7.3566, 7.3561, 7.3569, 7.3565, 7.356, 7.3557, 7.3554, 7.355, 7.3563, 7.356, 7.3564, 7.3547, 7.3545, 7.3541, 7.3536, 7.3532, 7.3547, 7.3547, 7.3556, 7.354, 7.3535, 7.3545, 7.3541, 7.3549, 7.3545, 7.3549, 7.3546, 7.3553, 7.3562, 7.356, 7.3557, 7.3553, 7.3562, 7.3557, 7.3552, 7.3548, 7.3544, 7.3542, 7.354, 7.3549, 7.3548, 7.3556, 7.3552, 7.3547, 7.3542, 7.3549, 7.3544, 7.3528, 7.3536, 7.3532, 7.3528, 7.3524, 7.3519, 7.3528, 7.3538, 7.3533, 7.3555, 7.3551, 7.3546, 7.3541, 7.3537, 7.3532, 7.3527, 7.3573, 7.3568, 7.3565, 7.3562, 7.3558, 7.3553, 7.3548, 7.3545, 7.3541, 7.3538, 7.3533, 7.3541, 7.3536, 7.3531, 7.3515, 7.3512, 7.3508, 7.3493, 7.348, 7.3476, 7.3472, 7.3468, 7.3507, 7.3505, 7.3501, 7.3503, 7.3513, 7.3523, 7.3519, 7.3533, 7.3528, 7.3526, 7.3547, 7.3543, 7.3552, 7.3549, 7.3544, 7.3539, 7.3536, 7.3531, 7.3515, 7.3546, 7.3542, 7.3552, 7.356, 7.3544, 7.3542, 7.3551, 7.3567, 7.3582, 7.3578, 7.3573, 7.3581, 7.3576, 7.3585, 7.358, 7.3575, 7.3583, 7.3567, 7.3578, 7.3561, 7.3556, 7.3552, 7.357, 7.3565, 7.356, 7.3556, 7.3551, 7.3547, 7.3555, 7.3563, 7.3558, 7.3553, 7.3548, 7.3555, 7.355, 7.3558, 7.3553, 7.3548, 7.3556, 7.3565, 7.3574, 7.3569, 7.3591, 7.3586, 7.357, 7.3579, 7.3586, 7.3594, 7.3603, 7.361, 7.3606, 7.3614, 7.3621, 7.3617, 7.3613, 7.3597, 7.3592, 7.3598, 7.3606, 7.3603, 7.3599, 7.3595, 7.3603, 7.3599, 7.3607, 7.3603, 7.3599, 7.3594, 7.359, 7.3595, 7.3604, 7.3601, 7.3609, 7.3607, 7.3605, 7.359, 7.3599, 7.3596, 7.3591, 7.3588, 7.3572, 7.3568, 7.3576, 7.3574, 7.3569, 7.3577, 7.3585, 7.358, 7.3576, 7.3571, 7.3578, 7.3585, 7.358, 7.3588, 7.3583, 7.358, 7.3576, 7.3572, 7.3567, 7.3564, 7.3559, 7.3556, 7.3552, 7.3547, 7.3544, 7.3552, 7.3547, 7.3543, 7.354, 7.3535, 7.353, 7.3527, 7.3535, 7.3543, 7.3553, 7.355, 7.3546, 7.353, 7.3526, 7.3522, 7.3519, 7.3515, 7.3524, 7.3521, 7.3518, 7.3514, 7.351, 7.3508, 7.3517, 7.3513, 7.3509, 7.3518, 7.3513, 7.3521, 7.3516, 7.3512, 7.352, 7.3527, 7.3524, 7.3521, 7.3517, 7.3513, 7.3511, 7.3532, 7.3539, 7.3534, 7.3542, 7.3562, 7.3559, 7.3555, 7.3551, 7.3547, 7.3544, 7.3546, 7.3541, 7.3536, 7.3531, 7.3528, 7.3524, 7.3532, 7.3542000000000005, 7.3539, 7.3534, 7.3544, 7.3539, 7.3536, 7.3533, 7.353, 7.3539, 7.3558, 7.3554, 7.3549, 7.3574, 7.357, 7.3566, 7.355, 7.3546, 7.3542, 7.3538, 7.3547, 7.3556, 7.3564, 7.3573, 7.3569, 7.3565, 7.3562, 7.3557, 7.3554, 7.3562, 7.3558, 7.3566, 7.3562, 7.3549, 7.3547, 7.3544, 7.3545, 7.354, 7.3536, 7.3536, 7.3533, 7.3529, 7.3537, 7.3535, 7.3544, 7.3552, 7.356, 7.3555, 7.3554, 7.3562, 7.3571, 7.3579, 7.3576, 7.3584, 7.358, 7.3576, 7.3583, 7.3591, 7.3586, 7.3583, 7.3592, 7.36, 7.3608, 7.3605, 7.36, 7.3643, 7.365, 7.3659, 7.3654, 7.365, 7.3658, 7.3665, 7.3673, 7.3681, 7.3678, 7.3674, 7.3671, 7.367, 7.3666, 7.3662, 7.3658, 7.3666, 7.3674, 7.367, 7.3666, 7.3662, 7.3658, 7.3665, 7.3663, 7.3671, 7.3668, 7.3663, 7.3658, 7.3654, 7.3662, 7.3657, 7.3653, 7.3661, 7.367, 7.3666, 7.3662, 7.3672, 7.368, 7.3676, 7.3672, 7.3659, 7.3656, 7.3653, 7.3648, 7.3645, 7.3654, 7.365, 7.3646, 7.3643, 7.3638, 7.3634, 7.3642, 7.364, 7.3636, 7.3631, 7.3627, 7.3623, 7.362, 7.3615, 7.3611, 7.3634, 7.3631, 7.3656, 7.3651, 7.3647, 7.3642, 7.3637, 7.3635, 7.3643, 7.3638, 7.3636, 7.3643, 7.3641, 7.3637, 7.3633, 7.3628, 7.3626, 7.3634, 7.3629, 7.3626, 7.3634, 7.3631, 7.3626, 7.3621, 7.3606, 7.3604, 7.3608, 7.3605, 7.3601, 7.3597, 7.3596, 7.3593, 7.359, 7.3587, 7.3584, 7.3592, 7.36, 7.3596, 7.3594, 7.3591, 7.3586, 7.3583, 7.3568, 7.3565, 7.3562, 7.3601, 7.3596, 7.3592, 7.3589, 7.3596, 7.3604, 7.3602, 7.3597, 7.3582, 7.3578, 7.3574, 7.3569, 7.3555, 7.3562, 7.3558, 7.3554, 7.3562, 7.3558, 7.3554, 7.355, 7.3546, 7.3554, 7.3551, 7.355, 7.3557, 7.3554, 7.355, 7.3545, 7.3541, 7.3538, 7.3535, 7.3532, 7.3556, 7.3552, 7.3548, 7.3533, 7.3542, 7.355, 7.3547, 7.3545, 7.3541, 7.3549, 7.3545, 7.3542, 7.3538, 7.3547, 7.3544, 7.3541, 7.3538, 7.3546, 7.3541, 7.3537, 7.3533, 7.353, 7.3526, 7.3511, 7.3507, 7.3503, 7.3511, 7.3508, 7.3504, 7.35, 7.3497, 7.3492, 7.3499, 7.3508, 7.3504, 7.35, 7.3497, 7.3495, 7.3491, 7.3501, 7.3497, 7.3493, 7.35, 7.3496, 7.3494, 7.3502, 7.3498, 7.3518, 7.3523, 7.3519, 7.3529, 7.3541, 7.3548, 7.3544, 7.3541, 7.3537, 7.3533, 7.3529, 7.3525, 7.3525, 7.352, 7.3527, 7.3523, 7.3519, 7.3515, 7.3511, 7.3517, 7.3526, 7.3522, 7.353, 7.3526, 7.3523, 7.3518, 7.3514, 7.351, 7.3506, 7.3502, 7.3509, 7.3507, 7.3525, 7.3511, 7.3507, 7.3505, 7.3502, 7.351, 7.3517, 7.3515, 7.3511, 7.3508, 7.3504, 7.35, 7.3496, 7.3503, 7.3511, 7.3519, 7.3515, 7.3529, 7.3539, 7.3524, 7.3531, 7.3538, 7.3535, 7.3532, 7.3533, 7.3529, 7.3525, 7.3556, 7.3553, 7.3549, 7.3545, 7.3542, 7.3554, 7.355, 7.3547, 7.3554, 7.355, 7.3546, 7.3543, 7.355, 7.3546, 7.3546, 7.3569, 7.3566, 7.3562, 7.356, 7.3556, 7.3552, 7.3549, 7.3545, 7.3552, 7.356, 7.3568, 7.3564, 7.356, 7.3567, 7.3564, 7.356, 7.3557, 7.3553, 7.3549, 7.3545, 7.3552, 7.3561, 7.3557, 7.3565, 7.3562, 7.3559, 7.3577, 7.3586, 7.3593, 7.3603, 7.3599, 7.3595, 7.3581, 7.3577, 7.3574, 7.357, 7.358, 7.3578, 7.3587, 7.3584, 7.358, 7.3576, 7.3572, 7.358, 7.3576, 7.3572, 7.3578, 7.3574, 7.3559, 7.3557, 7.3564, 7.356, 7.3556, 7.3563, 7.3571, 7.3578, 7.3574, 7.3581, 7.3576, 7.3572, 7.3568, 7.3564, 7.3561, 7.3557, 7.3553, 7.3549, 7.3556, 7.3563, 7.357, 7.3577, 7.3573, 7.357, 7.3577, 7.3573, 7.3583, 7.3589, 7.3596, 7.3592, 7.3589, 7.3585, 7.3581, 7.3577, 7.3584, 7.3591, 7.359, 7.3599, 7.3606, 7.3602, 7.3599, 7.3596, 7.3614, 7.3609, 7.3606, 7.3602, 7.3603, 7.36, 7.3607, 7.3604, 7.36, 7.3608, 7.3604, 7.36, 7.3597, 7.3594, 7.3596, 7.3592, 7.3589, 7.3585, 7.3594, 7.3601, 7.3607, 7.3603, 7.3599, 7.3606, 7.3603, 7.3611, 7.3608, 7.3613, 7.361, 7.3607, 7.3603, 7.361, 7.3631, 7.3627, 7.3635, 7.3631, 7.3627, 7.3624, 7.362, 7.3616, 7.3624, 7.3621, 7.3618, 7.3617, 7.3613, 7.3621, 7.364, 7.366, 7.3646, 7.3643, 7.364, 7.3637, 7.3633, 7.363, 7.3627, 7.3628, 7.3624, 7.3621, 7.3628, 7.3653, 7.3649, 7.3645, 7.3652, 7.3648, 7.3644, 7.363, 7.3626, 7.3623, 7.362, 7.3616, 7.3612, 7.3608, 7.3604, 7.36, 7.3596, 7.3603, 7.3605, 7.3601, 7.3597, 7.3604, 7.3612, 7.3619, 7.3617, 7.3613, 7.3611, 7.3618, 7.3644, 7.363, 7.3626, 7.3633, 7.3629, 7.3625, 7.3623, 7.362, 7.3616, 7.3623, 7.362, 7.3627, 7.3623, 7.3619, 7.3618, 7.3614, 7.361, 7.3606, 7.3613, 7.362, 7.3628, 7.3626, 7.3622, 7.3629, 7.3626, 7.3622, 7.3621, 7.3617, 7.3613, 7.361, 7.3618, 7.3625, 7.3631, 7.3638, 7.3652, 7.3648, 7.3646, 7.3653, 7.365, 7.3646, 7.3653, 7.3649, 7.3645, 7.3642, 7.3638, 7.3635, 7.3635, 7.3632, 7.3629, 7.3625, 7.365, 7.3648, 7.3663, 7.3649, 7.3651, 7.3661, 7.3667, 7.3675, 7.3671, 7.3667, 7.3663, 7.3671, 7.3667, 7.3663, 7.3669, 7.3667, 7.3663, 7.3659, 7.3655, 7.3652, 7.3649, 7.3646, 7.3644, 7.3642, 7.3638, 7.3645, 7.3644, 7.3645, 7.3642, 7.3638, 7.3635, 7.3632, 7.3628, 7.3625, 7.363, 7.3626, 7.3622, 7.3619, 7.3615, 7.3613, 7.362, 7.3638, 7.3668, 7.3685, 7.3672, 7.368, 7.3677, 7.3674, 7.3671, 7.3667, 7.3663, 7.3661, 7.3658, 7.3654, 7.3651, 7.3648, 7.3646, 7.3644, 7.3641, 7.3638, 7.3645, 7.3644, 7.364, 7.3639, 7.3635, 7.3633, 7.3629, 7.3628, 7.3626, 7.3624, 7.3622, 7.3618, 7.3615, 7.3622, 7.3608, 7.3604, 7.3601, 7.3608, 7.3605, 7.3601, 7.3598, 7.3606, 7.3603, 7.36, 7.3597, 7.3605, 7.3602, 7.361, 7.3606, 7.3603, 7.3601, 7.3598, 7.3594, 7.359, 7.3587, 7.3594, 7.359, 7.3586, 7.3593, 7.3589, 7.3585, 7.3581, 7.3578, 7.3574, 7.3571, 7.3569, 7.3565, 7.3572, 7.3568, 7.3576, 7.3573, 7.357, 7.3577, 7.3573, 7.3569, 7.3569, 7.3576, 7.3572, 7.3559, 7.3555, 7.3562, 7.3569, 7.3577, 7.3584, 7.358, 7.3576, 7.3583, 7.358, 7.3576, 7.3572, 7.3568, 7.3565, 7.3572, 7.3568, 7.3564, 7.3571, 7.3568, 7.3613, 7.3609, 7.3605, 7.3649, 7.3645, 7.3652, 7.3649, 7.3684, 7.368, 7.3676, 7.3673, 7.368, 7.3701, 7.3698, 7.3694, 7.369, 7.3697, 7.3704, 7.3701, 7.3712, 7.3719, 7.3715, 7.3711, 7.3707, 7.3714, 7.371, 7.3707, 7.3703, 7.3699, 7.3716, 7.3712, 7.3711, 7.3707, 7.3704, 7.37, 7.3697, 7.3694, 7.369, 7.3697, 7.3705, 7.3702, 7.3709, 7.3705, 7.3701, 7.3708, 7.3704, 7.3701, 7.3698, 7.3694, 7.369, 7.3687, 7.3684, 7.369, 7.3687, 7.3685, 7.3671, 7.3668, 7.3683, 7.368, 7.3676, 7.3673, 7.3683, 7.368, 7.3678, 7.3674, 7.3681, 7.3677, 7.3679, 7.3675, 7.3671, 7.3667, 7.3663, 7.3693, 7.3701, 7.3698, 7.3706, 7.3702, 7.3698, 7.3695, 7.3692, 7.3688, 7.3684, 7.368, 7.3677, 7.3673, 7.367, 7.3668, 7.3687, 7.369, 7.3691, 7.3688, 7.3692, 7.3689, 7.3716, 7.3712, 7.3709, 7.3706, 7.3703, 7.3707, 7.371, 7.3707, 7.3707, 7.372, 7.3726, 7.3723, 7.3729, 7.3725, 7.3712, 7.373, 7.3742, 7.3748, 7.3744, 7.374, 7.3736, 7.3732, 7.3728, 7.3724, 7.3721, 7.3717, 7.3713, 7.3721, 7.3717, 7.3714, 7.3711, 7.3707, 7.3703, 7.37, 7.3699, 7.3696, 7.3692, 7.3689, 7.3688, 7.3696, 7.3693, 7.3689, 7.3685, 7.3681, 7.3687, 7.3684, 7.368, 7.3677, 7.3675, 7.3672, 7.3668, 7.3665, 7.3673, 7.3672, 7.3668, 7.3664, 7.3661, 7.3658, 7.3665, 7.3663, 7.3659, 7.3657, 7.3664, 7.3671, 7.3668, 7.3676, 7.3683, 7.3691, 7.3689, 7.3685, 7.3682, 7.3678, 7.3685, 7.3692, 7.3689, 7.3685, 7.3682, 7.3679, 7.3675, 7.3671, 7.3668, 7.3665, 7.3662, 7.3662, 7.3659, 7.3656, 7.3653, 7.3661, 7.3658, 7.3654, 7.365, 7.3647, 7.3653, 7.365, 7.3646, 7.3642, 7.3639, 7.3635, 7.3631, 7.3628, 7.3624, 7.3621, 7.3618, 7.3626, 7.3632, 7.3621, 7.3618, 7.3615, 7.3613, 7.361, 7.3608, 7.3605, 7.3621, 7.3617, 7.3613, 7.3609, 7.3627, 7.3625, 7.3621, 7.3627, 7.3624, 7.3622, 7.364, 7.3637, 7.3634, 7.3641, 7.3637, 7.3652, 7.365, 7.3647, 7.3643, 7.3639, 7.3645, 7.3642, 7.3638, 7.3635, 7.3644, 7.3641, 7.3637, 7.3643, 7.3639, 7.3635, 7.3631, 7.3627, 7.3624, 7.3624, 7.3621, 7.3618, 7.3635, 7.3631, 7.366, 7.3657, 7.3653, 7.3669, 7.3665, 7.3672, 7.3669, 7.368, 7.3677, 7.3694, 7.3691, 7.3687, 7.3707, 7.3713, 7.3709, 7.3709, 7.3707, 7.3714, 7.371, 7.371, 7.371, 7.3706, 7.3702, 7.3698, 7.3696, 7.3684, 7.3682, 7.3678, 7.3674, 7.367, 7.3666, 7.3662, 7.365, 7.3647, 7.3654, 7.3651, 7.3668, 7.3665, 7.3661, 7.3674, 7.3671, 7.3698, 7.3685, 7.3691, 7.3698, 7.3694, 7.3701, 7.3707, 7.3694, 7.3692, 7.3692, 7.37, 7.3707, 7.3704, 7.3711, 7.3707, 7.3713, 7.3709, 7.3716, 7.3732, 7.3739, 7.3737, 7.3734, 7.3732, 7.3729, 7.3727, 7.3744, 7.3741, 7.3739, 7.3735, 7.3732, 7.3729, 7.3735, 7.3742, 7.374, 7.3736, 7.3733, 7.3729, 7.3726, 7.3732, 7.3729, 7.3727, 7.3723, 7.3711, 7.3722, 7.3718, 7.3714, 7.3712, 7.3711, 7.3709, 7.3705, 7.3701, 7.3699, 7.3686, 7.3682, 7.3678, 7.3676, 7.3703, 7.37, 7.3697, 7.3695, 7.3702, 7.3709, 7.3706, 7.3703, 7.3699, 7.3696, 7.3696, 7.3697, 7.3697, 7.3707, 7.3703, 7.3699, 7.3695, 7.3692, 7.3689, 7.3696, 7.3694, 7.3691, 7.3689, 7.3685, 7.3682, 7.3679, 7.3675, 7.3688, 7.3684, 7.368, 7.3678, 7.3674, 7.3671, 7.3668, 7.3658, 7.3668, 7.3665, 7.3692, 7.3709, 7.3705, 7.3701, 7.3697, 7.3695, 7.3701, 7.3689, 7.3698, 7.3705, 7.3694, 7.3692, 7.3777, 7.3794, 7.38, 7.3798, 7.3796, 7.3813, 7.381, 7.3818, 7.3816, 7.3815, 7.3812, 7.3819, 7.3817, 7.3813, 7.3809, 7.3807, 7.3804, 7.3801, 7.3797, 7.3794, 7.3791, 7.3788, 7.3786, 7.3793, 7.3799, 7.3795, 7.3795, 7.3791, 7.3797, 7.3823, 7.3819, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3798, 7.3794, 7.38, 7.3796, 7.3793, 7.3791, 7.3788, 7.3785, 7.3792, 7.3788, 7.3786, 7.3782, 7.379, 7.3787, 7.3783, 7.378, 7.3786, 7.3783, 7.379, 7.3797, 7.3794, 7.3801, 7.3798, 7.3795, 7.3792, 7.3815, 7.3813, 7.3813, 7.381, 7.3807, 7.3803, 7.38, 7.3797, 7.3793, 7.379, 7.3787, 7.3793, 7.379, 7.3788, 7.3794, 7.379, 7.3787, 7.3784, 7.379, 7.3786, 7.3787, 7.3775, 7.3772, 7.3768, 7.3764, 7.3788, 7.3784, 7.379, 7.3786, 7.3783, 7.3779, 7.3775, 7.3771, 7.3768, 7.3765, 7.3761, 7.3759, 7.3756, 7.3752, 7.3748, 7.3736, 7.3732, 7.3729, 7.3735, 7.3731, 7.3729, 7.3725, 7.3722, 7.3718, 7.3725, 7.3731, 7.3728, 7.3725, 7.3722, 7.3728, 7.3725, 7.3722, 7.371, 7.3716, 7.3712, 7.3718, 7.3714, 7.3721, 7.3718, 7.3724, 7.373, 7.3726, 7.3732, 7.3729, 7.3726, 7.3724, 7.3721, 7.3729, 7.3754, 7.3751, 7.3748, 7.3747, 7.3755, 7.3751, 7.3758, 7.3757, 7.3754, 7.3751, 7.3759, 7.3757, 7.3763, 7.3759, 7.3757, 7.3755, 7.3761, 7.3767, 7.3763, 7.3759, 7.3755, 7.3751, 7.3759, 7.3756, 7.3752, 7.3748, 7.3745, 7.3743, 7.3749, 7.3746, 7.3743, 7.3749, 7.3746, 7.3746, 7.3743, 7.3739, 7.3736, 7.3743, 7.374, 7.3736, 7.3732, 7.3729, 7.3727, 7.3724, 7.3731, 7.3738, 7.3744, 7.3741, 7.3738, 7.3744, 7.3741, 7.3738, 7.3734, 7.3731, 7.3737, 7.3733, 7.373, 7.3736, 7.3736, 7.3724, 7.3712, 7.371, 7.3711, 7.3707, 7.3704, 7.3704, 7.3713, 7.371, 7.3716, 7.3713, 7.371, 7.3706, 7.3703, 7.37, 7.3696, 7.3694, 7.3692, 7.3688, 7.3684, 7.368, 7.3677, 7.3674, 7.3671, 7.3677, 7.3674, 7.367, 7.3667, 7.3664, 7.3662, 7.3668, 7.3664, 7.367, 7.3667, 7.3665, 7.3662, 7.3658, 7.3655, 7.3652, 7.3649, 7.3655, 7.3659, 7.3665, 7.3662, 7.3668, 7.3665, 7.3672, 7.3669, 7.3665, 7.3671, 7.3677, 7.3674, 7.368, 7.3677, 7.3674, 7.3671, 7.3677, 7.3683, 7.3689, 7.3686, 7.3691, 7.3687, 7.371, 7.3698, 7.3695, 7.3701, 7.3707, 7.3704, 7.3701, 7.3698, 7.3719, 7.3725, 7.3731, 7.3737, 7.3725, 7.3721, 7.3718, 7.3726, 7.3724, 7.3729, 7.3726, 7.3732, 7.3729, 7.3725, 7.3722, 7.3719, 7.3707, 7.3703, 7.3699, 7.3695, 7.3693, 7.3689, 7.3686, 7.3683, 7.3681, 7.3679, 7.3667, 7.3665, 7.3661, 7.3659, 7.3656, 7.3662, 7.3659, 7.3666, 7.3685, 7.3682, 7.368, 7.3677, 7.3674, 7.3672, 7.3678, 7.3684, 7.369, 7.3686, 7.3682, 7.3682, 7.3679, 7.3675, 7.368, 7.3686, 7.3692, 7.3698, 7.3694, 7.369, 7.3686, 7.3682, 7.3679, 7.3677, 7.3674, 7.368, 7.3679, 7.3676, 7.3674, 7.3671, 7.3668, 7.3665, 7.3673, 7.367, 7.3667, 7.3665, 7.3662, 7.3678, 7.3674, 7.3671, 7.3667, 7.3665, 7.3662, 7.3668, 7.3674, 7.368, 7.3677, 7.3674, 7.3671, 7.3668, 7.3702, 7.3698, 7.3704, 7.3701, 7.3699, 7.3696, 7.3702, 7.37, 7.3706, 7.3712, 7.371, 7.3708, 7.3707, 7.3734, 7.3731, 7.3728, 7.3725, 7.3734, 7.3731, 7.3738, 7.3744, 7.375, 7.3746, 7.3753, 7.375, 7.3747, 7.3738, 7.3745, 7.3752, 7.3749, 7.3751, 7.3779, 7.3776, 7.3773, 7.377, 7.3782, 7.3779, 7.3776, 7.3773, 7.377, 7.3768, 7.3765, 7.3762, 7.376, 7.3757, 7.3765, 7.3771, 7.3769, 7.3774, 7.3774, 7.378, 7.3787, 7.3784, 7.3781, 7.3779, 7.3776, 7.3781, 7.3787, 7.3783, 7.378, 7.3786, 7.3782, 7.3779, 7.3775, 7.3781, 7.3779, 7.3768, 7.3765, 7.3762, 7.3759, 7.3756, 7.3752, 7.3749, 7.3746, 7.3742, 7.3739, 7.3735, 7.3732, 7.3729, 7.3725, 7.3722, 7.3721, 7.3727, 7.3724, 7.373, 7.3726, 7.3723, 7.372, 7.3717, 7.3706, 7.3703, 7.3701, 7.3699, 7.3695, 7.3691, 7.3697, 7.3704, 7.3701, 7.3699, 7.3709, 7.3708, 7.3706, 7.3703, 7.3701, 7.3699, 7.3695, 7.3703, 7.3711, 7.3709, 7.3706, 7.3712, 7.3708, 7.3712, 7.3713, 7.371, 7.3701, 7.3699, 7.3688, 7.3685, 7.3682, 7.3679, 7.3676, 7.3675, 7.3673, 7.3671, 7.3676, 7.3673, 7.3674, 7.3671, 7.3669, 7.3666, 7.3664, 7.3661, 7.3659, 7.3656, 7.3653, 7.3649, 7.3646, 7.3643, 7.3641, 7.3638, 7.3637, 7.3635, 7.3642, 7.3639, 7.3636, 7.3632, 7.363, 7.3664, 7.3661, 7.3659, 7.3664, 7.368, 7.3677, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3668, 7.3674, 7.3671, 7.3668, 7.3665, 7.3662, 7.3668, 7.3675, 7.3672, 7.3669, 7.3665, 7.3654, 7.3659, 7.3665, 7.3661, 7.3658, 7.3657, 7.3654, 7.3651, 7.3648, 7.3644, 7.3641, 7.3647, 7.3644, 7.3643, 7.364, 7.3637, 7.3634, 7.3679, 7.3676, 7.3665, 7.3671, 7.3669, 7.3666, 7.3665, 7.3671, 7.3677, 7.3665, 7.3671, 7.3668, 7.3674, 7.3672, 7.367, 7.3667, 7.3673, 7.3679, 7.3676, 7.3674, 7.3672, 7.367, 7.3676, 7.3673, 7.367, 7.3676, 7.3674, 7.3671, 7.3669, 7.3667, 7.3664, 7.367, 7.3667, 7.3673, 7.3679, 7.3685, 7.3682, 7.3671, 7.3677, 7.3683, 7.368, 7.3676, 7.3673, 7.367, 7.3676, 7.3674, 7.367, 7.3676, 7.3673, 7.368, 7.3679, 7.3676, 7.3674, 7.3671, 7.3668, 7.3674, 7.3672, 7.3678, 7.3674, 7.367, 7.3675, 7.3673, 7.3678, 7.3683, 7.3682, 7.367, 7.3677, 7.3674, 7.3671, 7.3668, 7.3674, 7.3699, 7.3696, 7.3694, 7.3694, 7.3691, 7.3688, 7.3686, 7.3684, 7.369, 7.3687, 7.3685, 7.3682, 7.3679, 7.3685, 7.3702, 7.37, 7.3697, 7.3693, 7.3714, 7.3714, 7.3711, 7.3717, 7.3715, 7.3712, 7.3709, 7.3706, 7.3713, 7.3718, 7.3707, 7.3704, 7.3701, 7.3698, 7.3696, 7.3693, 7.3691, 7.3697, 7.3703, 7.37, 7.3698, 7.3695, 7.37, 7.3697, 7.3703, 7.37, 7.3697, 7.3696, 7.3703, 7.3701, 7.3692, 7.3689, 7.3687, 7.3687, 7.3684, 7.3681, 7.3687, 7.3736, 7.3744, 7.3733, 7.3722, 7.3719, 7.3716, 7.3713, 7.371, 7.3715, 7.3712, 7.3709, 7.372, 7.372, 7.3717, 7.3715, 7.3718, 7.3723, 7.372, 7.3718, 7.3731, 7.372, 7.3744, 7.3744, 7.3742, 7.3742, 7.3739, 7.3737, 7.3736, 7.3734, 7.3731, 7.3728, 7.3725, 7.3722, 7.3719, 7.3716, 7.3714, 7.372, 7.3741, 7.3765, 7.3771, 7.3768, 7.3766, 7.3763, 7.3762, 7.3751, 7.3748, 7.3754, 7.3769, 7.3775, 7.3781, 7.377, 7.3767, 7.3765, 7.3762, 7.3768, 7.3765, 7.3766, 7.3772, 7.3769, 7.3766, 7.3763, 7.376, 7.3766, 7.3764, 7.377, 7.3775, 7.3773, 7.377, 7.3767, 7.3774, 7.3772, 7.3769, 7.3766, 7.3763, 7.376, 7.3757, 7.3765, 7.3773, 7.3771, 7.3768, 7.3766, 7.3763, 7.376, 7.3757, 7.3768, 7.3784, 7.3773, 7.3771, 7.3768, 7.3775, 7.3781, 7.3787, 7.3785, 7.3783, 7.378, 7.378, 7.3778, 7.3784, 7.3782, 7.378, 7.3786, 7.382, 7.3817, 7.3814, 7.382, 7.3818, 7.3816, 7.3813, 7.3811, 7.3809, 7.3806, 7.3804, 7.381, 7.3818, 7.3815, 7.3812, 7.3809, 7.3808, 7.3806, 7.3803, 7.3811, 7.381, 7.3816, 7.3813, 7.3813, 7.3819, 7.3816, 7.3813, 7.3804, 7.3801, 7.3798, 7.3795, 7.3801, 7.3797, 7.3803, 7.38, 7.3807, 7.3813, 7.381, 7.3815, 7.382, 7.3817, 7.3814, 7.3819, 7.3816, 7.3813, 7.3819, 7.3824, 7.383, 7.3827, 7.3833, 7.3831, 7.3828, 7.3825, 7.3815, 7.3821, 7.3819, 7.3816, 7.3813, 7.3811, 7.3808, 7.3805, 7.3802, 7.38, 7.3797, 7.3802, 7.3799, 7.3796, 7.3793, 7.379, 7.3787, 7.3784, 7.3789, 7.3786, 7.3783, 7.3772, 7.3762, 7.376, 7.3758, 7.3756, 7.3753, 7.375, 7.3748, 7.3753, 7.375, 7.374, 7.3737, 7.3735, 7.3732, 7.3729, 7.3734, 7.3731, 7.3736, 7.3741, 7.3738, 7.3735, 7.375, 7.3747, 7.3744, 7.375, 7.3757, 7.3755, 7.3752, 7.3749, 7.3746, 7.3735, 7.3733, 7.3735, 7.3742, 7.3765, 7.3763, 7.3761, 7.3766, 7.3771, 7.3769, 7.3774, 7.3771, 7.3769, 7.3766, 7.3764, 7.3762, 7.376, 7.3757, 7.3755, 7.3752, 7.3758, 7.3756, 7.3753, 7.3759, 7.3756, 7.3753, 7.375, 7.3747, 7.375, 7.3752, 7.3749, 7.3746, 7.3744, 7.3742, 7.3748, 7.3753, 7.375, 7.3747, 7.3745, 7.3742, 7.3739, 7.3736, 7.3733, 7.3731, 7.3737, 7.3734, 7.3731, 7.3728, 7.3726, 7.3723, 7.372, 7.3717, 7.3714, 7.3711, 7.3717, 7.3706, 7.3703, 7.3701, 7.3715, 7.3713, 7.372, 7.3717, 7.3714, 7.3711, 7.3734, 7.3758, 7.3756, 7.3753, 7.375, 7.3747, 7.3745, 7.3742, 7.3739, 7.3729, 7.3731, 7.3729, 7.3726, 7.3732, 7.3729, 7.3726, 7.3723, 7.3728, 7.3733, 7.373, 7.3727, 7.3724, 7.3729, 7.3726, 7.3732, 7.3737, 7.3735, 7.3732, 7.3738, 7.3735, 7.3733, 7.373, 7.3727, 7.3724, 7.3725, 7.3724, 7.3729, 7.3726, 7.3723, 7.372, 7.3717, 7.3723, 7.3756, 7.3761, 7.3758, 7.3756, 7.3761, 7.3767, 7.3764, 7.3769, 7.3766, 7.3771, 7.3777, 7.3774, 7.3771, 7.3776, 7.3782, 7.378, 7.3785, 7.379, 7.3796, 7.3802, 7.3799, 7.3805, 7.3802, 7.3808, 7.3813, 7.3818, 7.3823, 7.3828, 7.3833, 7.383, 7.3827, 7.3816, 7.3813, 7.3818, 7.3824, 7.3821, 7.3826, 7.3831, 7.3829, 7.3827, 7.3833, 7.3843, 7.384, 7.3859, 7.3856, 7.3853, 7.385, 7.3858, 7.3864, 7.3878, 7.3875, 7.3872, 7.3877, 7.3874, 7.3872, 7.3877, 7.3874, 7.3879, 7.3869, 7.3866, 7.3863, 7.3861, 7.3877, 7.3874, 7.3888, 7.3886, 7.3883, 7.388, 7.3877, 7.3882, 7.3887, 7.3892, 7.3897, 7.3903, 7.3902, 7.3891, 7.3904, 7.3901, 7.39, 7.3913, 7.3912, 7.3909, 7.3906, 7.3903, 7.3925, 7.393, 7.3927, 7.3924, 7.3921, 7.3918, 7.3915, 7.392, 7.3917, 7.3914, 7.3912, 7.391, 7.3907, 7.3912, 7.3911, 7.3916, 7.3913, 7.391, 7.3915, 7.3936, 7.3941, 7.3939, 7.3936, 7.3933, 7.393, 7.3935, 7.3932, 7.3937, 7.3934, 7.3931, 7.3937, 7.3934, 7.3944, 7.3949, 7.3955, 7.3952, 7.3957, 7.3963, 7.3961, 7.3958, 7.3956, 7.3961, 7.3966, 7.3963, 7.3968, 7.3973, 7.3978, 7.3983, 7.398, 7.3977, 7.3974, 7.3979, 7.3984, 7.3989, 7.3994, 7.3999, 7.4003, 7.4, 7.3997, 7.3986, 7.3983, 7.398, 7.3977, 7.3975, 7.3973, 7.397, 7.3968, 7.3965, 7.397, 7.3967, 7.3964, 7.3969, 7.3974, 7.3979, 7.3976, 7.3973, 7.3978, 7.3983, 7.398, 7.3978, 7.3983, 7.3981, 7.3986, 7.3991, 7.3996, 7.4002, 7.4, 7.4005, 7.4002, 7.4012, 7.4009, 7.4006, 7.4014, 7.4011, 7.402, 7.4028, 7.4026, 7.4023, 7.4033, 7.4046, 7.4043, 7.404, 7.4046, 7.4044, 7.4041, 7.4039, 7.4036, 7.4033, 7.4039, 7.4064, 7.4072, 7.4072, 7.4069, 7.4066, 7.4071, 7.4068, 7.4065, 7.4062, 7.4059, 7.4056, 7.4054, 7.4051, 7.4048, 7.4045, 7.4035, 7.4033, 7.4031, 7.4036, 7.4034, 7.404, 7.4038, 7.4053, 7.4045, 7.4042, 7.404, 7.4037, 7.4034, 7.4031, 7.4028, 7.4025, 7.4031, 7.4037, 7.4042, 7.4063, 7.406, 7.4058, 7.4055, 7.4052, 7.4049, 7.4047, 7.4053, 7.4052, 7.4049, 7.4046, 7.4051, 7.4049, 7.4047, 7.4055, 7.406, 7.4066, 7.4063, 7.4061, 7.4079, 7.4076, 7.4073, 7.4063, 7.406, 7.4057, 7.4054, 7.4068, 7.4065, 7.407, 7.4067, 7.4064, 7.4086, 7.4091, 7.4088, 7.4093, 7.4095, 7.4085, 7.4082, 7.4079, 7.41, 7.4097, 7.4094, 7.4091, 7.4089, 7.4094, 7.4091, 7.4096, 7.4101, 7.4115, 7.4112, 7.4109, 7.411, 7.4107, 7.4112, 7.4109, 7.4114, 7.4111, 7.4108, 7.4105, 7.411, 7.4107, 7.4105, 7.4102, 7.4107, 7.4104, 7.4101, 7.4099, 7.4089, 7.4102, 7.4116, 7.4124, 7.4129, 7.4127, 7.4125, 7.4122, 7.412, 7.4117, 7.4114, 7.4111, 7.4117, 7.4114, 7.4112, 7.4109, 7.4114, 7.4111, 7.4131, 7.4128, 7.4127, 7.4125, 7.4122, 7.4119, 7.4117, 7.4115, 7.4112, 7.411, 7.4119, 7.4124, 7.4129, 7.4134, 7.4144, 7.4142, 7.4139, 7.4145, 7.4146, 7.4144, 7.4136, 7.4133, 7.4142, 7.414, 7.4137, 7.4136, 7.4134, 7.4131, 7.4129, 7.4126, 7.4124, 7.4123, 7.412, 7.4125, 7.4123, 7.412, 7.412, 7.4117, 7.4114, 7.4111, 7.4109, 7.4107, 7.4104, 7.4109, 7.4114, 7.4111, 7.4109, 7.4106, 7.4103, 7.4108, 7.4106, 7.4104, 7.4103, 7.4109, 7.4154, 7.4167, 7.4164, 7.4176, 7.4173, 7.4171, 7.4168, 7.4184, 7.4181, 7.4178, 7.4177, 7.4182, 7.4179, 7.4176, 7.4173, 7.4178, 7.4175, 7.4165, 7.4162, 7.4159, 7.4164, 7.4161, 7.4158, 7.4155, 7.416, 7.4165, 7.417, 7.4175, 7.4172, 7.4169, 7.4166, 7.4164, 7.4162, 7.4159, 7.4187, 7.4184, 7.4182, 7.4179, 7.4176, 7.4181, 7.4186, 7.4184, 7.4182, 7.418, 7.4178, 7.4175, 7.4172, 7.4169, 7.4174, 7.4171, 7.4168, 7.4158, 7.4164, 7.4161, 7.4158, 7.4155, 7.4152, 7.4149, 7.4146, 7.4143, 7.4141, 7.4139, 7.4136, 7.4141, 7.4138, 7.4135, 7.4145, 7.4149, 7.4146, 7.4151, 7.4148, 7.4146, 7.4143, 7.414]} rtt3_3_10 = {'192.168.122.110': [5.4209, 0.6483, 5.4584, 6.8605, 5.487, 1.4672, 6.7289, 5.5358, 5.4204, 6.197, 5.3525, 6.0554, 11.3194, 5.827, 5.3926, 5.2476, 5.5397, 10.8151, 6.2149, 6.7329, 5.7604, 5.5587, 5.4002, 5.4662, 5.4772, 5.249, 11.1785, 5.6431, 6.0661, 5.487, 6.0704, 5.2707, 6.4809, 11.1578, 6.223, 11.2424, 6.5205, 21.1508, 5.9917, 5.712, 5.2714, 5.2955, 15.805, 11.4889, 5.5273, 5.3041, 10.8483, 5.3902, 5.4584, 16.0306, 5.2979, 5.4855, 11.0605, 6.5677, 6.3615, 6.3057, 11.2162, 5.7981, 10.5994, 5.8057, 5.2762, 1.018, 28.46, 11.1165, 5.3163, 10.8268, 5.7175, 10.8769, 16.5319, 11.7371, 5.995, 6.7837, 5.2221, 5.4605, 5.7676, 5.8422, 21.5385, 5.9834, 6.3131, 5.2838, 11.3025, 5.5737, 22.8491, 6.2258, 16.7606, 10.6623, 1.2755, 5.6996, 10.9065, 6.3133, 10.9427, 5.5487, 5.7101, 12.3661, 11.6236, 5.4708, 6.187, 5.5921, 5.5757, 5.6713, 10.968, 7.1368, 5.3554, 5.4176, 5.5909, 6.1677, 5.5287, 5.3437, 5.4708, 6.6888, 10.8523, 5.3897, 5.3151, 6.0697, 6.4812, 11.1153, 6.393, 5.338, 5.8832, 7.1959, 29.7863, 5.9021, 7.3686, 5.3952, 5.8768, 10.9551, 11.1344, 10.8917, 5.6448, 0.6795, 11.1439, 5.3358, 5.676, 10.7408, 5.4283, 5.861, 6.1371, 6.6288, 5.914, 5.4796, 11.2913, 5.7428, 0.9673, 5.2662, 6.706, 6.1364, 6.1371, 11.5788, 5.2252, 5.5268, 5.6965, 5.7003, 5.3642, 5.4934, 10.8364, 5.2211, 11.656, 7.0124, 10.8278, 11.8396, 6.3396, 17.1583, 10.8893, 5.4207, 5.8477, 6.1486, 5.5058, 11.2877, 5.6095, 6.0236, 5.5647, 5.652, 5.6355, 21.9958, 11.1732, 5.5404, 6.4571, 10.6082, 11.5058, 22.3439, 6.1858, 38.0476, 5.2958, 6.1636, 5.2822, 6.604, 5.5747, 2.1122, 0.7503, 21.8365, 5.8279, 5.6264, 10.855, 11.0667, 5.6679, 5.9552, 5.4395, 5.8124, 6.8867, 10.8984, 5.4255, 5.2369, 5.61, 5.2569, 5.343, 6.0148, 5.641, 5.9409, 5.4064, 11.498, 5.4734, 5.6324, 5.4033, 5.4035, 5.4176, 6.0112, 5.3492, 5.9609, 10.771, 16.6683, 5.774, 11.2448, 12.0754, 5.4767, 10.3719, 5.5747, 6.1517, 6.355, 5.4913, 1.3025, 5.7769, 5.7049, 5.2729, 10.9222, 5.5692, 5.543, 10.7257, 5.3709, 5.6968, 5.2192, 5.7313, 16.9024, 5.5633, 14.5841, 5.9147, 5.3749, 5.7437, 10.9899, 5.5168, 16.7778, 0.9093, 6.1884, 6.099, 0.8559, 10.4828, 5.7387, 5.4071, 5.275, 5.7638, 5.4805], '192.168.122.111': [5.41, 6.5017, 10.3495, 5.4452, 5.4908, 0.9472, 5.2984, 12.0294, 5.4457, 11.1046, 11.2844, 17.555, 10.7646, 21.9753, 5.4164, 5.3606, 11.7824, 11.5306, 5.8606, 5.4686, 5.8405, 11.0862, 6.0954, 5.4166, 11.997, 7.5648, 11.2295, 11.2364, 5.4545, 11.1229, 5.4462, 16.1028, 10.8778, 6.2435, 12.3627, 5.5945, 11.3511, 5.476, 5.4748, 6.218, 10.6471, 10.6554, 5.6551, 5.739, 6.0799, 5.2302, 11.0624, 5.4924, 5.2412, 5.6038, 6.3353, 11.1876, 5.4412, 5.3017, 6.6373, 16.9191, 5.5635, 5.4343, 32.9022, 5.4936, 5.7325, 7.3974, 5.8637, 5.4152, 11.8611, 5.9068, 5.2567, 6.038, 5.5845, 6.1567, 6.2335, 7.1223, 10.5026, 6.5784, 5.8014, 6.3665, 10.6547, 5.8217, 6.1591, 5.3186, 5.6548, 10.6006, 10.7136, 0.5879, 10.6895, 5.8661, 7.6663, 6.3419, 5.4276, 5.2371, 10.8654, 10.9472, 5.7681, 10.8712, 5.3346, 5.2698, 5.8236, 5.8277, 11.1856, 10.3621, 10.8066, 11.1556, 23.7005, 5.5788, 6.3069, 5.4934, 10.6912, 10.8402, 6.2094, 10.7098, 5.3713, 5.523, 11.6141, 5.3236, 10.987, 5.6071, 10.767, 5.3425, 10.8984, 11.1709, 25.2409, 5.3256, 5.3797, 10.8633, 6.0618, 5.795, 5.3613, 10.721, 6.346, 1.0831, 16.2027, 5.25, 6.1855, 5.6193, 5.4634, 5.5017, 10.7174, 18.652, 11.3337, 5.5094, 5.5048, 5.8224, 0.8326, 5.2137, 5.9524, 5.399, 5.2967, 11.2059, 5.4338, 10.9327, 5.7755, 5.3086, 11.9212, 5.5611, 10.8984, 16.8626, 5.6748, 6.17, 5.9438, 5.2464, 5.4224, 5.9578, 6.1722, 5.8761, 5.9264, 10.8328, 6.4228, 6.3956, 5.8074, 5.3899, 10.6318, 5.2657, 5.8968, 5.2316, 10.978, 6.6106, 5.3263, 5.3167, 5.9288, 5.6524, 16.1216, 15.7354, 5.4884, 5.7898, 5.9817, 5.5513, 5.5211, 5.9643, 2.1868, 10.8917, 5.7957, 5.5075, 5.6515, 5.4166, 5.9268, 21.9257, 10.8762, 5.3852, 12.0654, 5.8553, 10.7832, 5.2853, 5.7452, 10.6068, 11.1001, 5.4173, 11.3027, 9.9926, 10.8421, 5.8115, 5.8739, 7.0026, 5.3699, 10.9906, 5.4107, 16.7994, 6.4375, 6.5756, 1.4598, 5.5339, 12.6481, 6.0914, 10.849, 5.4834, 5.5749, 5.5747, 17.0801, 11.6727, 5.4696, 6.4185, 5.856, 15.3871, 5.4283, 6.7427, 5.7595, 6.1815, 10.9074, 5.5933, 6.0053, 5.863, 5.8365, 10.8829, 37.0011, 5.6765, 12.1815, 5.3754, 10.7553, 5.697, 5.7724, 6.1131, 5.7833, 6.3353, 11.409, 0.9739, 5.6777, 5.7578, 11.2045, 10.931, 5.3294, 11.8942], '192.168.122.112': [5.3964, 5.97, 6.3298, 10.8397, 21.3864, 1.0958, 10.546, 0.5479, 10.833, 17.2949, 11.4193, 5.7728, 6.5637, 5.5017, 10.8204, 5.4817, 11.5473, 7.8194, 5.4319, 5.3616, 10.6854, 5.9099, 5.5916, 5.5375, 18.4391, 5.7826, 5.4007, 5.5337, 5.475, 5.2731, 5.3592, 5.8646, 5.6021, 5.3885, 5.4603, 11.1508, 5.8792, 16.6235, 10.6118, 5.3573, 5.2385, 10.6626, 5.7487, 5.3256, 5.2521, 5.2402, 0.4368, 11.1501, 5.3494, 5.2488, 5.831, 5.9371, 5.6057, 16.6185, 5.3909, 11.0278, 10.797, 5.466, 5.6195, 5.6999, 5.7311, 10.9665, 5.2667, 27.2431, 5.5583, 5.8637, 5.338, 13.9024, 11.137, 5.4321, 11.0471, 10.8662, 5.795, 11.0726, 10.9007, 5.3346, 5.3563, 5.475, 11.0838, 7.0498, 10.6099, 5.4872, 5.7566, 0.6256, 5.4295, 5.1436, 5.4746, 7.2901, 16.4225, 10.5243, 10.4129, 5.5988, 15.7094, 5.6691, 5.7967, 5.8665, 5.7878, 5.873, 11.3642, 10.8776, 10.9668, 5.6088, 11.4655, 5.5246, 11.3039, 5.5702, 10.8263, 5.9602, 10.8666, 10.7505, 5.5149, 5.4073, 5.1961, 5.8427, 6.9854, 5.5993, 10.7479, 5.5463, 5.5139, 11.7197, 0.638, 5.7187, 5.229, 5.4674, 11.3692, 5.8441, 6.1798, 5.2383, 5.6243, 0.6828, 11.0648, 10.6552, 17.2637, 5.7406, 5.8639, 10.8497, 5.4376, 5.8284, 5.336, 11.225, 5.7847, 17.3349, 0.6161, 5.2989, 5.9087, 5.6736, 5.9206, 11.1129, 5.837, 5.2648, 6.6612, 5.5301, 10.8616, 5.651, 16.6109, 10.7017, 0.5853, 11.0095, 11.1346, 5.296, 5.343, 5.4686, 5.8646, 5.5311, 10.359, 5.3456, 10.8538, 5.4755, 5.4533, 16.4697, 5.5618, 32.6569, 16.2575, 6.0413, 10.8445, 5.7535, 5.4665, 5.2772, 10.9963, 16.814, 5.7154, 13.8104, 10.855, 5.6965, 16.7618, 5.4624, 10.8902, 5.6326, 0.6258, 5.8188, 5.2745, 5.9955, 6.9501, 17.0665, 5.3184, 5.3813, 5.6748, 5.5165, 11.9312, 10.6084, 5.4729, 5.8055, 5.5349, 10.4797, 5.7724, 10.5333, 5.425, 16.8493, 28.6319, 10.813, 5.8761, 11.6341, 10.7875, 5.8508, 11.5218, 6.3117, 5.6684, 7.7603, 0.7777, 16.3848, 11.1623, 22.4452, 11.3492, 10.864, 11.095, 5.2502, 10.7219, 10.7207, 5.4452, 22.2161, 5.4214, 11.2789, 5.877, 5.6479, 5.7051, 0.6576, 5.6846, 5.8398, 5.7878, 5.4736, 11.863, 10.9429, 10.8168, 11.7767, 6.1307, 6.1102, 5.4777, 6.3033, 5.4712, 6.278, 5.5118, 11.4021, 6.5863, 0.6824, 5.5141, 5.5439, 5.4522, 5.3818, 7.7715, 5.9049], '192.168.122.114': [5.7702, 5.5988, 10.716, 10.8476, 5.2245, 0.8307, 6.7375, 0.5207, 16.3388, 5.6, 6.2211, 5.8293, 11.3444, 10.9034, 5.4815, 10.9754, 10.9417, 5.7921, 5.3859, 5.3, 10.829, 6.6509, 11.4183, 5.5418, 6.9494, 5.5289, 5.245, 5.81, 6.4893, 5.7058, 10.8783, 5.7545, 11.3814, 10.8359, 10.8218, 11.126, 5.8076, 10.8161, 11.095, 10.6199, 5.3394, 6.3972, 5.548, 10.9508, 10.9596, 5.4576, 5.9416, 11.308, 5.2378, 10.6924, 5.7454, 11.0321, 5.7511, 5.8706, 15.9378, 10.9887, 10.709, 5.6067, 5.2502, 5.5406, 10.3781, 5.6589, 5.8811, 5.7635, 5.2061, 6.4597, 5.5635, 5.5835, 24.5821, 5.7776, 16.1264, 6.5622, 5.358, 11.2185, 11.6296, 0.6621, 5.4309, 17.483, 5.8498, 5.3289, 10.5102, 5.9803, 5.4452, 0.4945, 5.379, 10.787, 6.4158, 5.7464, 10.7019, 10.9184, 10.9081, 5.4877, 11.0002, 5.4991, 5.475, 5.794, 17.6737, 11.2984, 5.3008, 5.3966, 10.4077, 5.934, 5.9071, 5.513, 5.5645, 5.6305, 5.5771, 5.4579, 5.4443, 5.4383, 10.8047, 5.8429, 5.5623, 10.8776, 5.4352, 5.2605, 5.4004, 5.4471, 10.7219, 5.4214, 0.7136, 5.244, 5.9819, 11.1094, 5.9652, 10.7214, 5.6922, 5.8744, 11.8341, 0.7999, 5.2667, 10.8318, 5.2183, 5.2681, 5.9347, 11.6608, 10.859, 5.507, 5.8265, 11.1728, 5.5923, 5.4395, 1.2226, 10.6173, 10.72, 11.7071, 10.7636, 5.806, 10.4921, 10.5815, 5.8715, 5.4004, 0.5975, 10.8416, 5.2691, 5.2938, 0.8969, 10.7739, 11.1659, 11.0888, 5.3251, 16.3369, 5.3008, 5.5726, 33.4108, 11.4353, 5.7375, 10.812, 16.3527, 10.9847, 5.6901, 10.7186, 32.666, 10.7169, 10.9696, 0.5701, 5.8246, 10.6051, 5.8329, 5.8949, 5.6448, 66.86, 10.7496, 10.4671, 5.2686, 5.507, 5.5895, 5.7404, 0.5927, 5.7867, 6.067, 11.1117, 7.4348, 5.9519, 5.5957, 5.4913, 5.6798, 32.2373, 5.7769, 6.5193, 10.9847, 8.0462, 5.4801, 6.0356, 10.7098, 6.0987, 5.384, 6.1736, 11.8759, 5.5065, 5.7147, 5.8267, 5.3828, 15.6975, 5.7313, 5.7433, 10.8731, 5.9819, 0.7634, 16.2833, 5.621, 11.2433, 10.8876, 10.9148, 11.1535, 10.8161, 10.4511, 5.5416, 5.6834, 5.9383, 10.8147, 6.3615, 5.7216, 5.8892, 6.2919, 0.4587, 6.1007, 6.0036, 6.4259, 5.2688, 5.4634, 10.8328, 5.5709, 5.9943, 6.3679, 5.4028, 11.5609, 5.5671, 10.4105, 6.011, 5.7268, 5.61, 5.6922, 0.6032, 0.8659, 11.0099, 5.3048, 10.8185, 5.8715, 6.2459], '192.168.122.115': [6.5975, 16.2785, 5.347, 5.4405, 10.9038, 11.6479, 6.382, 0.5505, 5.2836, 6.2804, 5.6372, 6.6195, 5.6465, 5.4526, 10.6864, 6.6533, 10.9811, 5.4741, 5.3585, 5.4038, 10.7729, 6.3491, 11.369, 0.484, 16.727, 5.6498, 11.169, 11.1561, 9.1143, 5.316, 6.1896, 5.8513, 0.5362, 10.7727, 6.2263, 5.6839, 5.5909, 6.1975, 5.8494, 5.4135, 5.3215, 5.3277, 5.9264, 5.3799, 5.8255, 5.3203, 5.3849, 10.9251, 10.8504, 10.5722, 10.8259, 10.8218, 5.7507, 5.9054, 11.1904, 5.4049, 10.9925, 6.9931, 6.1033, 22.7666, 5.2443, 11.0292, 5.7445, 6.2697, 6.2249, 10.9432, 5.3821, 5.4362, 11.1969, 11.2915, 5.3806, 5.3937, 5.3499, 5.6572, 5.9719, 0.8709, 5.3744, 5.8572, 11.1761, 5.9462, 5.5408, 5.2567, 11.0881, 0.5794, 16.2091, 6.3193, 10.8697, 11.0655, 10.7913, 5.8022, 11.3962, 11.0078, 5.6918, 5.8055, 6.3972, 11.7366, 6.3148, 6.3396, 6.0129, 11.1637, 6.0112, 10.5398, 5.3151, 5.6605, 5.6734, 6.0825, 5.4007, 6.0425, 10.7276, 5.4462, 5.4157, 5.6279, 5.548, 10.2992, 5.4364, 33.1485, 5.9493, 5.6877, 11.0791, 11.03, 6.6741, 5.4278, 16.1169, 21.8933, 6.2373, 5.4522, 11.5247, 5.3918, 5.6109, 0.8006, 5.5106, 10.7119, 10.5588, 11.0226, 12.6588, 5.3437, 6.0859, 5.7099, 5.2691, 5.5997, 5.5242, 5.5683, 6.1986, 5.619, 16.9392, 16.0837, 10.8287, 10.556, 5.4767, 5.4529, 5.291, 6.1617, 0.4849, 5.9121, 6.1982, 5.5003, 0.7188, 5.5118, 5.8446, 10.8423, 10.9425, 5.5959, 11.6601, 5.3141, 17.7822, 10.8349, 1.4026, 5.4743, 5.8239, 11.1222, 9.0897, 6.2475, 5.4991, 5.4617, 15.9476, 5.3642, 11.065, 5.8396, 12.0602, 5.7392, 5.6362, 16.0594, 10.7718, 10.4635, 5.8284, 10.699, 5.6098, 11.3573, 0.607, 5.1572, 6.0248, 5.5046, 5.7733, 5.3051, 6.2275, 11.4479, 11.1938, 10.8716, 5.3489, 10.9453, 5.327, 9.4099, 5.7795, 5.2717, 5.3701, 5.3971, 5.3861, 23.4523, 10.8893, 5.7786, 5.7614, 10.9963, 10.8385, 5.4784, 5.9204, 5.8455, 5.4741, 5.935, 0.6826, 10.6425, 5.8217, 6.0444, 8.7385, 10.9174, 5.4624, 11.1723, 5.8157, 5.4157, 5.4827, 5.3408, 5.2617, 5.6701, 5.8141, 5.3766, 5.9533, 0.56, 6.2327, 5.4584, 6.4611, 5.4171, 11.7111, 10.9301, 5.908, 5.9221, 23.4549, 5.9447, 5.3518, 13.84, 5.7044, 27.2663, 10.8261, 0.5403, 5.8718, 0.7873, 1.8301, 10.8128, 5.7797, 5.1785, 5.7487, 5.8131], '192.168.122.116': [10.4678, 5.8827, 5.4166, 5.4412, 10.8604, 11.03, 6.5517, 6.057, 0.5777, 5.6679, 5.5549, 11.5809, 5.363, 5.4581, 10.5331, 10.9468, 5.5649, 5.4266, 5.3022, 10.8993, 10.855, 5.9114, 5.4705, 0.7026, 5.6798, 16.644, 11.2879, 5.7588, 5.6684, 5.2431, 5.388, 5.708, 0.6387, 10.8294, 5.8584, 11.4021, 6.1958, 5.9822, 10.5932, 5.2648, 5.8682, 5.1925, 10.8969, 5.5737, 6.237, 5.3904, 5.486, 5.4522, 12.228, 10.5734, 5.8527, 16.5508, 5.8227, 11.1511, 10.4623, 11.1115, 5.3036, 5.8339, 5.6818, 11.5287, 5.7847, 6.1319, 6.5212, 6.0492, 10.818, 5.619, 10.8018, 5.2521, 18.1267, 6.6936, 5.76, 5.7554, 5.3566, 5.6887, 5.7609, 0.4938, 5.8482, 6.0196, 5.8684, 10.7479, 5.3964, 32.3703, 29.793, 0.7293, 5.5051, 5.7266, 5.9667, 11.3225, 5.971, 5.964, 6.1536, 11.0545, 22.2218, 6.3808, 5.4617, 11.214, 24.3092, 5.5602, 5.6005, 5.332, 0.5031, 10.457, 10.5777, 5.4672, 6.1631, 5.5554, 11.4236, 5.4362, 7.3924, 10.5913, 5.506, 5.47, 10.8042, 11.1074, 5.3048, 5.7268, 10.6561, 10.9456, 10.6466, 5.4781, 5.4989, 5.2683, 10.8924, 5.4986, 5.2986, 5.8923, 5.61, 5.511, 5.3165, 2.5442, 5.4708, 10.8993, 10.9837, 10.6785, 11.0202, 6.537, 6.0558, 5.7874, 5.2807, 10.612, 5.5256, 5.5549, 0.5617, 21.863, 5.6083, 5.6608, 5.8906, 5.3008, 5.4102, 5.4164, 5.2736, 16.2663, 0.55, 5.4605, 10.5617, 32.8119, 0.4897, 10.68, 5.8796, 5.8839, 5.3313, 7.4489, 17.2105, 11.5414, 5.8911, 5.4414, 1.2319, 5.3492, 5.4088, 5.2891, 5.6231, 5.3988, 10.8814, 5.393, 5.7592, 5.6946, 5.9299, 27.262, 5.7974, 10.8166, 5.5966, 7.9088, 5.9338, 19.6555, 0.596, 5.8975, 5.4612, 10.9723, 0.6168, 5.8103, 5.218, 11.1787, 6.7778, 25.7425, 6.4685, 10.9406, 9.8057, 5.2991, 5.2021, 6.4988, 10.8032, 10.4721, 5.2862, 5.8713, 10.9076, 10.7124, 5.7173, 11.1196, 5.6188, 10.8874, 16.8009, 6.2568, 11.2588, 5.388, 5.3337, 10.7112, 5.5175, 11.0705, 0.818, 5.3713, 5.594, 5.6758, 5.3198, 6.0077, 5.4381, 5.6674, 10.6206, 5.7769, 5.2378, 10.8578, 10.4601, 11.4231, 5.4445, 11.2753, 5.2719, 0.6082, 11.4269, 5.4641, 5.919, 5.3151, 5.7769, 5.4202, 5.4574, 11.5516, 6.2339, 5.4798, 6.5641, 5.532, 5.6987, 5.6009, 10.8564, 5.6567, 11.5268, 0.8478, 0.6626, 11.4219, 5.2834, 5.3751, 18.5983, 5.502], '192.168.122.120': [16.2494, 5.3508, 5.408, 5.4295, 5.6312, 5.5263, 6.3365, 10.793, 0.5949, 5.6274, 5.7166, 5.4798, 22.3501, 10.8397, 6.0353, 6.1646, 27.0329, 5.3189, 6.3307, 5.7611, 10.7062, 5.548, 16.8288, 6.1741, 11.3933, 5.7867, 11.1964, 5.5096, 5.4762, 5.4219, 5.3825, 0.7761, 0.6459, 6.3288, 5.3732, 0.5429, 5.6105, 32.625, 21.6846, 5.2621, 5.635, 16.5937, 5.7812, 16.3317, 5.444, 5.3968, 0.6099, 6.0716, 5.3463, 5.5077, 5.672, 5.7383, 5.2283, 10.6421, 5.3372, 10.8652, 16.3085, 5.477, 22.4354, 5.2507, 5.2433, 10.9835, 11.0781, 5.4758, 10.8783, 5.2402, 5.8119, 5.4417, 5.5811, 0.7052, 10.3955, 5.2667, 6.8271, 11.1601, 6.5355, 2.789, 5.9721, 11.095, 6.0084, 6.0859, 11.024, 17.8311, 6.1791, 0.5617, 5.3697, 5.6365, 6.32, 5.7306, 11.0257, 11.5767, 5.7013, 5.5549, 5.3334, 5.8925, 17.282, 0.7193, 5.317, 5.7375, 6.1116, 6.3567, 5.863, 5.7037, 5.5003, 5.4154, 6.11, 10.8602, 10.8979, 5.4572, 10.7286, 5.4114, 11.025, 6.4983, 5.6167, 5.6863, 5.3856, 5.5511, 5.4767, 5.5473, 10.886, 5.4762, 16.0022, 5.3196, 5.4743, 11.0352, 5.4219, 5.2626, 22.0625, 5.8286, 15.7831, 0.8736, 10.8449, 11.23, 10.9639, 10.7155, 6.3465, 5.3213, 5.7366, 5.8672, 5.2791, 16.6104, 18.8999, 5.9047, 0.5639, 10.6795, 5.5802, 1.9774, 10.9026, 5.3737, 5.3914, 11.0657, 5.3582, 16.6953, 0.4039, 6.1719, 5.388, 10.5293, 0.4296, 5.4319, 0.4461, 5.5544, 6.0182, 5.4755, 10.4094, 5.2304, 21.5211, 10.6013, 1.5132, 6.3076, 10.7586, 5.6221, 6.1679, 5.2705, 10.7853, 5.9409, 10.4461, 5.2977, 5.3408, 16.7446, 16.839, 21.174, 5.6236, 5.8703, 5.4598, 10.6483, 5.4224, 10.6275, 10.5352, 5.6825, 0.5465, 5.7757, 10.6754, 11.1108, 5.343, 10.8614, 10.8111, 5.4986, 15.6271, 16.4771, 5.7187, 10.7989, 5.4095, 18.508, 6.1455, 15.2459, 16.7036, 6.2299, 5.8384, 5.5385, 11.1091, 5.3358, 21.6935, 16.9313, 5.8715, 5.275, 10.7222, 11.2967, 5.9397, 10.7567, 6.1188, 5.5616, 12.336, 5.6636, 10.7393, 5.3868, 5.5687, 5.4502, 11.1916, 5.5091, 11.4007, 5.8112, 5.7373, 6.3055, 5.4715, 5.2485, 10.9069, 0.4821, 11.3246, 5.379, 6.434, 5.4209, 5.734, 5.9395, 10.9165, 11.8587, 6.0866, 11.2846, 5.7938, 5.3248, 10.7481, 5.7266, 11.2703, 6.1994, 11.5421, 1.3087, 0.4952, 10.8328, 5.6546, 5.4269, 5.5983, 10.9415], '192.168.122.118': [0.8883, 5.8637, 24.5066, 11.1694, 5.7349, 5.5466, 10.6618, 5.3918, 0.6821, 5.8963, 6.2127, 18.223, 5.7852, 6.0012, 5.4049, 6.2156, 10.9868, 5.646, 5.8234, 6.3772, 5.4727, 5.4364, 6.1936, 5.5382, 5.1866, 5.7118, 5.5509, 5.5199, 10.9012, 5.4936, 5.811, 0.9651, 0.4549, 12.3658, 6.3546, 5.7468, 5.3554, 5.5559, 5.1928, 5.9462, 5.2216, 5.614, 10.675, 10.4253, 10.7994, 5.8062, 16.8419, 5.9092, 5.734, 10.7973, 5.3151, 5.9068, 5.9452, 6.3691, 5.7814, 11.2236, 10.792, 5.5709, 5.7325, 5.6031, 5.3315, 16.176, 5.7504, 5.7995, 6.3627, 5.8472, 5.4021, 5.4462, 5.5695, 1.2081, 5.7414, 5.3885, 12.5132, 6.2635, 5.604, 0.7749, 10.6611, 11.7521, 10.5872, 5.9061, 5.3716, 6.4311, 10.8769, 0.5221, 21.3845, 5.4822, 10.8609, 5.794, 5.4243, 6.4862, 11.1811, 5.7807, 16.274, 5.9104, 5.5947, 6.2282, 5.2671, 6.3627, 5.6422, 16.0065, 10.9568, 16.6459, 31.7361, 5.9659, 6.1896, 22.0335, 5.7516, 5.5242, 16.299, 10.958, 11.4124, 5.2607, 16.1412, 11.2367, 10.9236, 11.559, 11.2035, 6.1879, 10.9022, 5.4281, 10.8976, 5.3799, 5.6195, 17.2145, 5.4827, 26.2201, 5.3735, 5.8353, 5.6534, 0.5436, 5.4262, 5.3661, 5.4703, 5.2812, 10.8018, 5.4836, 10.9849, 5.7101, 11.0841, 11.183, 11.08, 10.7088, 0.4983, 10.7017, 10.967, 1.4462, 5.4438, 6.4316, 5.4119, 5.9114, 5.7802, 5.4951, 0.5102, 5.399, 5.2314, 20.236, 0.6454, 6.2122, 0.6404, 0.4857, 5.2516, 11.3964, 5.2445, 5.7151, 11.1024, 11.08, 14.1938, 5.27, 5.4438, 5.594, 5.3096, 5.3935, 10.8273, 5.713, 5.2345, 5.2958, 10.7074, 6.5575, 10.9129, 10.8695, 6.1512, 12.264, 5.5947, 5.4543, 6.1946, 10.6008, 6.4647, 5.6672, 0.4983, 5.6393, 10.5727, 5.5909, 5.5263, 6.0904, 5.4247, 6.0184, 10.814, 5.5246, 5.6214, 21.6556, 17.1442, 6.1769, 10.4604, 5.729, 16.2852, 16.5322, 5.9717, 16.1498, 11.2298, 5.4018, 5.6686, 5.8565, 10.4041, 5.3124, 5.4216, 10.6642, 5.8055, 5.3833, 6.3865, 0.5176, 5.6927, 5.8146, 5.6186, 6.1996, 11.075, 5.5199, 21.4276, 10.6275, 10.669, 9.9385, 10.7737, 6.0024, 5.4314, 5.3639, 5.7409, 0.5398, 11.4653, 6.0744, 16.5238, 5.5118, 5.8351, 5.4617, 10.6211, 29.6493, 24.9352, 10.5817, 5.3499, 5.4932, 5.583, 5.2426, 6.027, 10.4673, 11.5609, 0.8812, 0.6518, 11.0235, 10.6611, 10.8037, 5.7569, 5.3644], '192.168.122.119': [5.5571, 5.5985, 5.512, 11.1458, 0.5698, 10.8128, 5.3864, 10.9293, 0.6924, 11.4341, 6.2234, 10.848, 5.3456, 6.6283, 5.3265, 5.9285, 5.4801, 5.4376, 5.8937, 5.2478, 10.8666, 10.7682, 13.1862, 5.558, 5.3473, 5.4305, 10.9749, 5.6288, 5.4305, 5.2989, 11.385, 0.5591, 0.4299, 5.3623, 5.4657, 11.2405, 5.4078, 6.3965, 11.1489, 10.5629, 10.5593, 6.0194, 10.9124, 10.5324, 10.8047, 11.0412, 1.0657, 5.7776, 11.9076, 14.3328, 5.3937, 5.3289, 5.8064, 6.5067, 27.2694, 8.1546, 5.2438, 5.8761, 5.7693, 12.3644, 5.6515, 10.4749, 5.7411, 5.2025, 5.9109, 5.5447, 5.7492, 5.4216, 5.5509, 0.7064, 5.8687, 5.4431, 5.3144, 5.969, 6.3016, 0.4721, 10.6013, 5.9893, 10.9947, 25.1739, 5.2457, 5.5254, 10.5298, 0.4349, 5.2507, 5.7626, 10.9158, 6.0222, 5.4939, 5.7251, 6.2776, 16.6883, 5.9221, 5.4777, 6.7089, 5.6374, 5.712, 5.6906, 5.5654, 5.4972, 16.1796, 10.7956, 5.9938, 5.3551, 6.0287, 5.4541, 6.119, 0.5524, 11.0805, 5.9514, 11.3883, 5.7828, 5.6932, 5.5408, 10.7453, 5.7294, 10.9935, 11.2896, 10.6478, 5.5273, 5.3761, 6.0871, 10.8435, 6.2799, 8.204, 0.7761, 5.2905, 6.0601, 11.0433, 5.8413, 5.4603, 5.3122, 26.7744, 5.3926, 16.2799, 5.8012, 5.4007, 5.8341, 11.9057, 5.9197, 11.224, 5.3034, 0.546, 5.2817, 5.2993, 9.1453, 5.3089, 5.3802, 5.8854, 5.3396, 5.6252, 11.2987, 0.5291, 10.865, 5.7926, 13.8865, 0.9954, 5.7802, 0.6025, 6.1846, 27.8242, 5.7008, 5.2502, 5.2152, 11.127, 10.8359, 13.344, 6.578, 5.5504, 16.0613, 5.7969, 5.3313, 5.3222, 6.2413, 11.652, 10.6869, 27.1969, 10.9925, 5.8527, 5.7921, 6.4421, 5.2354, 16.8083, 5.3005, 27.2963, 10.7284, 5.6508, 11.2846, 0.4208, 11.0707, 5.4133, 10.6449, 5.6112, 5.9111, 5.4319, 10.9127, 6.2737, 10.4196, 6.166, 10.8905, 10.9367, 6.2099, 5.2259, 11.2038, 16.4409, 21.5218, 10.5217, 5.487, 5.3773, 5.3751, 10.798, 5.4018, 5.7948, 5.9154, 8.2767, 5.676, 5.5313, 5.3275, 5.8627, 5.4574, 5.579, 5.3041, 22.2816, 10.8008, 6.1584, 6.6826, 11.2276, 10.998, 5.7905, 5.3689, 11.5619, 10.7996, 5.4133, 5.3852, 5.5308, 0.464, 5.8055, 10.85, 11.1518, 11.2636, 0.5381, 5.4698, 0.803, 11.9047, 6.1586, 5.271, 5.3847, 28.4936, 11.3554, 5.6939, 5.5892, 5.3251, 11.4403, 0.9768, 4.1966, 11.1651, 10.4938, 5.441, 10.7675, 10.8833]} cpu3_3_10 = [43.7, 28.8, 2.6, 3.2, 0.1, 0.1, 1.1, 1.5, 0.6, 3.1, 0.6, 3.1, 0.7, 0.0, 0.2, 1.8, 3.7, 0.8, 1.2, 0.1, 0.5, 0.5, 0.4, 0.7, 0.1, 0.2, 0.2, 0.6, 0.4, 1.9, 0.7, 1.1, 0.5, 0.7, 0.7, 0.1, 0.1, 0.0, 0.2, 2.9, 1.8, 2.1, 2.6, 1.0, 0.9, 0.4, 0.3, 0.4, 0.9, 0.2, 2.0, 0.3, 1.0, 0.8, 0.9, 1.9, 1.6, 0.0, 0.4, 1.4, 1.6, 1.4, 0.1, 0.8, 0.8, 0.4, 0.3, 0.9, 1.4, 0.3, 3.6, 2.8, 0.3, 0.3, 1.2, 2.1, 2.7, 1.7, 0.7, 0.8, 0.6, 1.8, 1.8, 2.9, 1.8, 1.3, 0.3, 0.7, 0.9, 0.4, 0.1, 0.1, 0.3, 0.1, 0.2, 0.8, 1.3, 2.3, 1.5, 0.2, 0.5, 0.3, 0.8, 0.6, 1.3, 0.1, 0.7, 1.2, 0.9, 0.8, 1.3, 1.5, 0.0, 0.3, 0.1, 0.4, 0.5, 1.6, 1.8, 2.5, 5.2, 5.5, 1.5, 0.8, 0.3, 0.3, 0.6, 0.6, 1.2, 2.5, 1.6, 0.2, 0.6, 0.9, 0.8, 0.6, 0.3, 0.0, 0.5, 0.6, 0.8, 0.9, 0.5, 0.2, 0.6, 0.1, 1.5, 2.2, 0.4, 0.7, 0.3, 0.4, 0.4, 1.1, 0.7, 0.4, 0.6, 1.0, 0.3, 0.2, 0.5, 0.6, 0.1, 0.7, 0.1, 0.5, 1.0, 0.6, 0.5, 0.1, 1.3, 1.7, 0.1, 0.4, 0.0, 0.1, 0.6, 1.3, 1.3, 2.1, 0.3, 1.0, 9.4, 10.8, 0.1, 0.4, 0.6, 8.8, 7.7, 1.0, 0.8, 1.0, 0.7, 0.1, 0.3, 0.9, 0.7, 3.1, 3.0, 0.4, 0.3, 0.6, 1.0, 0.2, 1.1, 0.8, 0.7, 0.9, 0.8, 0.1, 0.6, 0.6, 0.5, 0.3, 0.4, 1.2, 0.9, 1.4, 3.3, 2.3, 0.3, 0.9, 0.1, 0.3, 0.6, 0.9, 1.6, 1.2, 0.5, 1.0, 1.9, 0.7, 0.2, 0.0, 0.4, 0.3, 1.2, 2.1, 0.6, 0.6, 0.4, 1.7, 1.6, 0.4, 0.2, 0.4, 0.2, 1.1, 0.9, 0.4, 1.1, 0.8, 0.3, 0.6, 0.5, 0.5, 0.1, 0.6, 0.9, 0.2] off_mec3_3_10 = 139 off_cloud3_3_10 = 196 inward_mec3_3_10 = 75 loc3_3_10 = 547 deadlock3_3_10 = [6] memory3_3_10 = [0.219, 0.2194, 0.2194, 0.2198, 0.2198, 0.2198, 0.2199, 0.2199, 0.2199, 0.22, 0.2201, 0.2201, 0.2201, 0.2202, 0.2202, 0.2203, 0.2203, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2206, 0.2207, 0.2207, 0.2208, 0.2208, 0.2208, 0.2208, 0.2209, 0.221, 0.221, 0.221, 0.2211, 0.2211, 0.2211, 0.2211, 0.2212, 0.2213, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2214, 0.2214, 0.2214, 0.2215, 0.2215, 0.2216, 0.2218, 0.2218, 0.222, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2227, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2228, 0.2229, 0.2232, 0.2232, 0.2232, 0.2234, 0.2236, 0.2237, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2239, 0.2241, 0.2242, 0.2242, 0.2242, 0.2243, 0.2243, 0.2244, 0.2244, 0.2245, 0.2245, 0.2246, 0.2246, 0.2246, 0.2247, 0.2248, 0.2248, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.225, 0.225, 0.2251, 0.2251, 0.2251, 0.2252, 0.2252, 0.2253, 0.2253, 0.2254, 0.2255, 0.2256, 0.2256, 0.2258, 0.2258, 0.226, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2263, 0.2264, 0.2264, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2269, 0.2269, 0.227, 0.227, 0.2271, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2277, 0.2277, 0.2279, 0.2279, 0.2279, 0.2282, 0.2282, 0.2283, 0.2285, 0.2285, 0.2285, 0.2285, 0.2286, 0.2287, 0.2288, 0.2288, 0.2288, 0.2288, 0.2291, 0.2291, 0.2291, 0.2292, 0.2293, 0.2293, 0.2293, 0.2293, 0.2294, 0.2294, 0.2295, 0.2295, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2296, 0.2297, 0.2298, 0.2298, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2301, 0.2302, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2305, 0.2305, 0.2305, 0.2306, 0.2306, 0.2306, 0.2306, 0.2306, 0.2306, 0.2307, 0.2308, 0.2309, 0.2319, 0.232, 0.232, 0.232, 0.2321, 0.2321, 0.2321, 0.2321, 0.2321, 0.2323, 0.2323, 0.2323, 0.2323, 0.2324, 0.2324, 0.2325, 0.2334] task_received3_3_10 = 882 sent_t3_3_10 = {'125': 333, '124': 305, '126': 243} cooperate3_3_10 = {'mec': 138, 'cloud': 196} task_record3_3_10 = {'t5.113.124.651.274': 'mec'} outward_mec3_3_10 = 8 offload_check3_3_10 = [] timed_out_tasks3_3_10 = 0
def readFiel(path): file = open(path,"r",encoding="utf-8") print(file.read()) file.close() #关闭流 def readFiel02(path): # 使用with ....as的形式可以捕获异常,不用手动添加try except with open(path,"r",encoding="utf-8") as f: print(f.read()) def readFiel03(path): # 使用with ....as的形式可以捕获异常,不用手动添加try except with open(path,"r",encoding="utf-8") as f: print(f.readline()) #读取一行 def readFiel04(path): # 使用with ....as的形式可以捕获异常,不用手动添加try except with open(path,"r",encoding="utf-8") as f: for x in f.readlines(): #读取所有行,返回一个列表 print(x.strip()) # readFiel("file.txt") # readFiel02("file.txt") # readFiel03("file.txt") # readFiel04("file.txt") def writeFile(path): with open(path,"a+",encoding="utf-8") as f: #a+表示追加写入 ss = ''' aaaa1 bbb ccc ''' f.write(ss) #写入文件 # writeFile("write01.txt") def writeFile01(path): with open(path,"a+",encoding="utf-8") as f: ss = ["aaaa1","bbb","ccc"] f.writelines(ss) #一次性写入 # writeFile01("write02.txt") #拷贝图片 def copy(source,target): with open(source,"rb") as f: temp = f.read() with open(target,"wb") as wf: wf.write(temp) wf.flush() # copy("test.jpg","test1.jpg") def copy01(source,target): with open(target, "ab+") as wf: with open(source,"rb+") as f: temp = b'\x00' while temp != b'': temp = f.read(100) wf.write(temp) copy01("test1.jpg","test2.jpg")
COUNTRIES = [ ("Россия", "Россия"), ("Украина", "Украина"), ("Беларусь", "Беларусь"), ("Казахстан", "Казахстан"), ("Абхазия", "Абхазия"), ("Австралия", "Австралия"), ("Австрия", "Австрия"), ("Азербайджан", "Азербайджан"), ("Албания", "Албания"), ("Алжир", "Алжир"), ("Американское Самоа", "Американское Самоа"), ("Ангилья", "Ангилья"), ("Ангола", "Ангола"), ("Андорра", "Андорра"), ("Антарктида", "Антарктида"), ("Антигуа и Барбуда", "Антигуа и Барбуда"), ("Аргентина", "Аргентина"), ("Армения", "Армения"), ("Аруба", "Аруба"), ("Афганистан", "Афганистан"), ("Багамы", "Багамы"), ("Бангладеш", "Бангладеш"), ("Барбадос", "Барбадос"), ("Бахрейн", "Бахрейн"), ("Белиз", "Белиз"), ("Бельгия", "Бельгия"), ("Бенин", "Бенин"), ("Бермуды", "Бермуды"), ("Болгария", "Болгария"), ("Боливия, Многонациональное Государство", "Боливия, Многонациональное Государство"), ("Бонайре, Саба и Синт-Эстатиус", "Бонайре, Саба и Синт-Эстатиус"), ("Босния и Герцеговина", "Босния и Герцеговина"), ("Ботсвана", "Ботсвана"), ("Бразилия", "Бразилия"), ("Британская территория в Индийском океане", "Британская территория в Индийском океане"), ("Бруней-Даруссалам", "Бруней-Даруссалам"), ("Буркина-Фасо", "Буркина-Фасо"), ("Бурунди", "Бурунди"), ("Бутан", "Бутан"), ("Вануату", "Вануату"), ("Венгрия", "Венгрия"), ("Венесуэла Боливарианская Республика", "Венесуэла Боливарианская Республика"), ("Виргинские острова, Британские", "Виргинские острова, Британские"), ("Виргинские острова, США", "Виргинские острова, США"), ("Вьетнам", "Вьетнам"), ("Габон", "Габон"), ("Гаити", "Гаити"), ("Гайана", "Гайана"), ("Гамбия", "Гамбия"), ("Гана", "Гана"), ("Гваделупа", "Гваделупа"), ("Гватемала", "Гватемала"), ("Гвинея", "Гвинея"), ("Гвинея-Бисау", "Гвинея-Бисау"), ("Германия", "Германия"), ("Гернси", "Гернси"), ("Гибралтар", "Гибралтар"), ("Гондурас", "Гондурас"), ("Гонконг", "Гонконг"), ("Гренада", "Гренада"), ("Гренландия", "Гренландия"), ("Греция", "Греция"), ("Грузия", "Грузия"), ("Гуам", "Гуам"), ("Дания", "Дания"), ("Джерси", "Джерси"), ("Джибути", "Джибути"), ("Доминика", "Доминика"), ("Доминиканская Республика", "Доминиканская Республика"), ("Египет", "Египет"), ("Замбия", "Замбия"), ("Западная Сахара", "Западная Сахара"), ("Зимбабве", "Зимбабве"), ("Израиль", "Израиль"), ("Индия", "Индия"), ("Индонезия", "Индонезия"), ("Иордания", "Иордания"), ("Ирак", "Ирак"), ("Иран, Исламская Республика", "Иран, Исламская Республика"), ("Ирландия", "Ирландия"), ("Исландия", "Исландия"), ("Испания", "Испания"), ("Италия", "Италия"), ("Йемен", "Йемен"), ("Кабо-Верде", "Кабо-Верде"), ("Камбоджа", "Камбоджа"), ("Камерун", "Камерун"), ("Канада", "Канада"), ("Катар", "Катар"), ("Кения", "Кения"), ("Кипр", "Кипр"), ("Киргизия", "Киргизия"), ("Кирибати", "Кирибати"), ("Китай", "Китай"), ("Кокосовые (Килинг) острова", "Кокосовые (Килинг) острова"), ("Колумбия", "Колумбия"), ("Коморы", "Коморы"), ("Конго", "Конго"), ("Конго, Демократическая Республика", "Конго, Демократическая Республика"), ("Корея, Народно-Демократическая Республика", "Корея, Народно-Демократическая Республика"), ("Корея, Республика", "Корея, Республика"), ("Коста-Рика", "Коста-Рика"), ("Кот д'Ивуар", "Кот д'Ивуар"), ("Куба", "Куба"), ("Кувейт", "Кувейт"), ("Кюрасао", "Кюрасао"), ("Лаос", "Лаос"), ("Латвия", "Латвия"), ("Лесото", "Лесото"), ("Ливан", "Ливан"), ("Ливийская Арабская Джамахирия", "Ливийская Арабская Джамахирия"), ("Либерия", "Либерия"), ("Лихтенштейн", "Лихтенштейн"), ("Литва", "Литва"), ("Люксембург", "Люксембург"), ("Маврикий", "Маврикий"), ("Мавритания", "Мавритания"), ("Мадагаскар", "Мадагаскар"), ("Майотта", "Майотта"), ("Макао", "Макао"), ("Малави", "Малави"), ("Малайзия", "Малайзия"), ("Мали", "Мали"), ( "Малые Тихоокеанские отдаленные острова Соединенных Штатов", "Малые Тихоокеанские отдаленные острова Соединенных Штатов", ), ("Мальдивы", "Мальдивы"), ("Мальта", "Мальта"), ("Марокко", "Марокко"), ("Мартиника", "Мартиника"), ("Маршалловы острова", "Маршалловы острова"), ("Мексика", "Мексика"), ("Микронезия, Федеративные Штаты", "Микронезия, Федеративные Штаты"), ("Мозамбик", "Мозамбик"), ("Молдова, Республика", "Молдова, Республика"), ("Монако", "Монако"), ("Монголия", "Монголия"), ("Монтсеррат", "Монтсеррат"), ("Мьянма", "Мьянма"), ("Намибия", "Намибия"), ("Науру", "Науру"), ("Непал", "Непал"), ("Нигер", "Нигер"), ("Нигерия", "Нигерия"), ("Нидерланды", "Нидерланды"), ("Никарагуа", "Никарагуа"), ("Ниуэ", "Ниуэ"), ("Новая Зеландия", "Новая Зеландия"), ("Новая Каледония", "Новая Каледония"), ("Норвегия", "Норвегия"), ("Объединенные Арабские Эмираты", "Объединенные Арабские Эмираты"), ("Оман", "Оман"), ("Остров Буве", "Остров Буве"), ("Остров Мэн", "Остров Мэн"), ("Остров Норфолк", "Остров Норфолк"), ("Остров Рождества", "Остров Рождества"), ("Остров Херд и острова Макдональд", "Остров Херд и острова Макдональд"), ("Острова Кайман", "Острова Кайман"), ("Острова Кука", "Острова Кука"), ("Острова Теркс и Кайкос", "Острова Теркс и Кайкос"), ("Пакистан", "Пакистан"), ("Палау", "Палау"), ( "Палестинская территория, оккупированная", "Палестинская территория, оккупированная", ), ("Панама", "Панама"), ( "Папский Престол (Государство &mdash; город Ватикан)", "Папский Престол (Государство &mdash; город Ватикан)", ), ("Папуа-Новая Гвинея", "Папуа-Новая Гвинея"), ("Парагвай", "Парагвай"), ("Перу", "Перу"), ("Питкерн", "Питкерн"), ("Польша", "Польша"), ("Португалия", "Португалия"), ("Пуэрто-Рико", "Пуэрто-Рико"), ("Республика Македония", "Республика Македония"), ("Реюньон", "Реюньон"), ("Руанда", "Руанда"), ("Румыния", "Румыния"), ("Самоа", "Самоа"), ("Сан-Марино", "Сан-Марино"), ("Сан-Томе и Принсипи", "Сан-Томе и Принсипи"), ("Саудовская Аравия", "Саудовская Аравия"), ("Свазиленд", "Свазиленд"), ( "Святая Елена, Остров вознесения, Тристан-да-Кунья", "Святая Елена, Остров вознесения, Тристан-да-Кунья", ), ("Северные Марианские острова", "Северные Марианские острова"), ("Сен-Бартельми", "Сен-Бартельми"), ("Сен-Мартен", "Сен-Мартен"), ("Сенегал", "Сенегал"), ("Сент-Винсент и Гренадины", "Сент-Винсент и Гренадины"), ("Сент-Китс и Невис", "Сент-Китс и Невис"), ("Сент-Люсия", "Сент-Люсия"), ("Сент-Пьер и Микелон", "Сент-Пьер и Микелон"), ("Сербия", "Сербия"), ("Сейшелы", "Сейшелы"), ("Сингапур", "Сингапур"), ("Синт-Мартен", "Синт-Мартен"), ("Сирийская Арабская Республика", "Сирийская Арабская Республика"), ("Словакия", "Словакия"), ("Словения", "Словения"), ("Великобритания", "Великобритания"), ("США", "США"), ("Соломоновы острова", "Соломоновы острова"), ("Сомали", "Сомали"), ("Судан", "Судан"), ("Суринам", "Суринам"), ("Сьерра-Леоне", "Сьерра-Леоне"), ("Таджикистан", "Таджикистан"), ("Таиланд", "Таиланд"), ("Тайвань (Китай)", "Тайвань (Китай)"), ("Танзания, Объединенная Республика", "Танзания, Объединенная Республика"), ("Тимор-Лесте", "Тимор-Лесте"), ("Того", "Того"), ("Токелау", "Токелау"), ("Тонга", "Тонга"), ("Тринидад и Тобаго", "Тринидад и Тобаго"), ("Тувалу", "Тувалу"), ("Тунис", "Тунис"), ("Туркмения", "Туркмения"), ("Турция", "Турция"), ("Уганда", "Уганда"), ("Узбекистан", "Узбекистан"), ("Уоллис и Футуна", "Уоллис и Футуна"), ("Уругвай", "Уругвай"), ("Фарерские острова", "Фарерские острова"), ("Фиджи", "Фиджи"), ("Филиппины", "Филиппины"), ("Финляндия", "Финляндия"), ("Фолклендские острова (Мальвинские)", "Фолклендские острова (Мальвинские)"), ("Франция", "Франция"), ("Французская Гвиана", "Французская Гвиана"), ("Французская Полинезия", "Французская Полинезия"), ("Французские Южные территории", "Французские Южные территории"), ("Хорватия", "Хорватия"), ("Центрально-Африканская Республика", "Центрально-Африканская Республика"), ("Чад", "Чад"), ("Черногория", "Черногория"), ("Чехия", "Чехия"), ("Чили", "Чили"), ("Швейцария", "Швейцария"), ("Швеция", "Швеция"), ("Шпицберген и Ян Майен", "Шпицберген и Ян Майен"), ("Шри-Ланка", "Шри-Ланка"), ("Эквадор", "Эквадор"), ("Экваториальная Гвинея", "Экваториальная Гвинея"), ("Эландские острова", "Эландские острова"), ("Эль-Сальвадор", "Эль-Сальвадор"), ("Эритрея", "Эритрея"), ("Эстония", "Эстония"), ("Эфиопия", "Эфиопия"), ("Южная Африка", "Южная Африка"), ("Южная Джорджия и Южные Сандвичевы острова", "Южная Джорджия и Южные Сандвичевы острова"), ("Южная Осетия", "Южная Осетия"), ("Южный Судан", "Южный Судан"), ("Ямайка", "Ямайка"), ("Япония", "Япония"), ]
""" ==CHANGELOG== * support UTF8 ==CHANGELOG== """ sqdgfhsqgfksqfkjgsqfkqsgdkfsqkgfqsdf sqgjdfjsqdhfqgskdgfkqgsdjfsqdfggdsqjf sqdgfhsqgfksqfkjgsqfkqsgdkfsqkgfqsdf sqgjdfjsqdhfqgskdgfkqgsdjfsqdfggdsqjf sqdgfhsqgfksqfkjgsqfkqsgdkfsqkgfqsdf sqgjdfjsqdhfqgskdgfkqgsdjfsqdfggdsqjf sqdgfhsqgfksqfkjgsqfkqsgdkfsqkgfqsdf sqgjdfjsqdhfqgskdgfkqgsdjfsqdfggdsqjf
names = ['David','Herry','Army'] message1 = "hello " + names[0] print(message1) message1 = "hello " + names[1] print(message1) message1 = "hello " + names[2] print(message1)
hu = "haha" age = 22 name = "Cat"
def calculateStats(numbers): val = len(numbers) result = {"max": float('NaN'), "min": float('NaN'), "avg": float('NaN')} if val == 0: return result else: result["max"] = max(numbers) result["min"] = min(numbers) result["avg"] = sum(numbers) / val return result class EmailAlert(object): pass class LEDAlert(object): pass class StatsAlerter(object): def __init__(self, maxThreshold, alert): self.maxThreshold = maxThreshold self.alert = alert self.alert[0].emailSent = True self.alert[1].ledGlows = False def checkAndAlert(self, numbers): result = calculateStats(numbers) if result["max"] > self.maxThreshold: self.alert[0].emailSent = True self.alert[1].ledGlows = True # print(calculateStats([]))
lst = [ ["https://bit.ly/DataStructC", "9:00", "9:58"], ["https://bit.ly/AeroStructures", "11:10", "12:08"], ["https://zoom.us/j/8143311495?pwd=e-space", "12:10", "13:00"] ["https://bit.ly/engMaterials", "13:50", "14:50"] ]
host='localhost' user='root' password='wowilosttwosis$' db='fin_man_db' charset='utf8mb4'
cx, cy, cd = input().split() cx = float(cx); cy = float(cy); cd = float(cd); r = cd; n = int(input()); coef = input().split(); z = float(input()); for i in range(n+1): coef[i] = float(coef[i]) def f_eval(x): ans = 0 for i in range(0, n+1): ans += coef[i]*(x**(n-i)) return ans lo = cx - r - 10 hi = cx + r + 10 me = (lo+hi)/2 M = 1e6 for i in range(10, 14): D = hi - lo step = D/(1<<i) j = lo while j < hi: X = j; Y = f_eval(X); error = r*r - (X-cx)*(X-cx) - (Y-cy)*(Y-cy) if abs(error) < M: M = abs(error) me = X j += step lo = me - step/2 hi = me + step/2 print(me)
"""Load dependencies needed to depend on the remote-apis-sdks repo.""" load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository") def _maybe(repo_rule, name, **kwargs): if name not in native.existing_rules(): repo_rule(name = name, **kwargs) def remote_apis_sdks_go_deps(): """Load dependencies needed to depend on the Go Remote Execution SDK.""" _maybe( go_repository, name = "com_github_pkg_errors", importpath = "github.com/pkg/errors", tag = "v0.8.1", ) _maybe( go_repository, name = "com_github_golang_protobuf", importpath = "github.com/golang/protobuf", tag = "v1.4.2", ) _maybe( go_repository, name = "com_github_google_go_cmp", tag = "v0.5.1", importpath = "github.com/google/go-cmp", ) _maybe( go_repository, name = "org_golang_google_grpc", build_file_proto_mode = "disable", importpath = "google.golang.org/grpc", tag = "v1.31.0", ) _maybe( go_repository, name = "com_github_golang_glog", commit = "23def4e6c14b4da8ac2ed8007337bc5eb5007998", importpath = "github.com/golang/glog", ) _maybe( go_repository, name = "com_github_google_uuid", build_file_generation = "on", importpath = "github.com/google/uuid", tag = "v1.1.1", ) _maybe( go_repository, name = "org_golang_x_net", importpath = "golang.org/x/net", commit = "62affa334b73ec65ed44a326519ac12c421905e3", ) _maybe( go_repository, name = "org_golang_x_oauth2", commit = "bf48bf16ab8d622ce64ec6ce98d2c98f916b6303", importpath = "golang.org/x/oauth2", ) _maybe( go_repository, name = "org_golang_x_sync", commit = "6e8e738ad208923de99951fe0b48239bfd864f28", importpath = "golang.org/x/sync", ) _maybe( go_repository, name = "org_golang_x_sys", importpath = "golang.org/x/sys", commit = "be1d3432aa8f4fd677757447c4c9e7ff9bf25f73", ) _maybe( go_repository, name = "com_github_pborman_uuid", importpath = "github.com/pborman/uuid", tag = "v1.2.0", ) _maybe( go_repository, name = "com_github_bazelbuild_remote_apis", importpath = "github.com/bazelbuild/remote-apis", commit = "0943dc4e70e1414735a85a3167557392c177ff45", # 2021-03-09, ) _maybe( go_repository, name = "com_google_cloud_go", commit = "09ad026a62f0561b7f7e276569eda11a6afc9773", tag = "v0.65.0", importpath = "cloud.google.com/go", ) _maybe( go_repository, name = "com_github_klauspost_compress", importpath = "github.com/klauspost/compress", tag = "v1.11.6", ) _maybe( go_repository, name = "com_github_mostynb_zstdpool_syncpool", importpath = "github.com/mostynb/zstdpool-syncpool", tag = "v0.0.3", )
# Copyright 2016 The Closure Rules Authors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Utilities for compiling Closure Templates to Java. """ load("@rules_java//java:defs.bzl", "java_library") _SOY_COMPILER_BIN = "@com_google_template_soy//:SoyParseInfoGenerator" _SOY_LIBRARY = "@com_google_template_soy//:com_google_template_soy" # Generates a java_library with the SoyFileInfo and SoyTemplateInfo # for all templates. # # For each Soy input called abc_def.soy, a Java class AbcDefSoyInfo will be # generated. For a template in that file called foo.barBaz, you can reference # its info as AbcDefSoyInfo.BAR_BAZ. # # srcs: an explicit file list of soy files to scan. # java_package: the package for the Java files that are generated. If not # given, defaults to the package from which this function was invoked. # deps: Soy files that these templates depend on, in order for # templates to include the parameters of templates they call. # filegroup_name: will create a filegroup suitable for use as a # dependency by another soy_java_wrappers rule # extra_srcs: any build rule that provides Soy files that should be used # as additional sources. For these, an extra_outs must be provided for each # Java file expected. Useful for generating Java wrappers for Soy files not # in the Java tree. # extra_outs: extra output files from the dependencies that are requested; # useful if for generating wrappers for files that are not in the Java tree # allow_external_calls: Whether to allow external soy calls (i.e. calls to # undefined templates). This parameter is passed to SoyParseInfoGenerator and # it defaults to true. # soycompilerbin: Optional Soy to ParseInfo compiler target. def closure_java_template_library( name, java_package = None, srcs = [], deps = [], filegroup_name = None, extra_srcs = [], extra_outs = [], allow_external_calls = 1, soycompilerbin = str(Label(_SOY_COMPILER_BIN)), **kwargs): # Strip off the .soy suffix from the file name and camel-case it, preserving # the case of directory names, if any. outs = [ (_soy__dirname(fn) + _soy__camel(_soy__filename(fn)[:-4]) + "SoyInfo.java") for fn in srcs ] java_package = java_package or _soy__GetJavaPackageForCurrentDirectory() # TODO(gboyer): Stop generating the info for all the dependencies. # First, generate the actual AbcSoyInfo.java files. _gen_soy_java_wrappers( name = name + "_files", java_package = java_package, srcs = srcs + extra_srcs, deps = deps, outs = outs + extra_outs, allow_external_calls = allow_external_calls, soycompilerbin = soycompilerbin, **kwargs ) # Now, wrap them in a Java library, and expose the Soy files as resources. java_srcs = outs + extra_outs java_library( name = name, srcs = java_srcs or None, exports = [str(Label(_SOY_LIBRARY))], deps = [ "@com_google_guava", "@javax_annotation_jsr250_api", str(Label(_SOY_LIBRARY)), ] if java_srcs else None, # b/13630760 resources = srcs + extra_srcs, **kwargs ) if filegroup_name != None: # Create a filegroup with all the dependencies. native.filegroup( name = filegroup_name, srcs = srcs + extra_srcs + deps, **kwargs ) # Generates SoyFileInfo and SoyTemplateInfo sources for Soy templates. # # - name: the name of a genrule which will contain Java sources # - java_package: name of the java package, e.g. com.google.foo.template # - srcs: all Soy file sources # - deps: Soy files to parse but not to generate outputs for # - outs: desired output files. for abc_def.soy, expect AbcDefSoyInfo.java # - allow_external_calls: Whether to allow external calls, defaults to true. # - soycompilerbin Optional Soy to ParseInfo compiler target. def _gen_soy_java_wrappers( name, java_package, srcs, deps, outs, allow_external_calls = 1, soycompilerbin = str(Label(_SOY_COMPILER_BIN)), compatible_with = None, **kwargs): additional_flags = "" srcs_flag_file_name = name + "__srcs" deps_flag_file_name = name + "__deps" _soy__gen_file_list_arg_as_file( out_name = srcs_flag_file_name, targets = srcs, flag = "--srcs", compatible_with = compatible_with, ) _soy__gen_file_list_arg_as_file( out_name = deps_flag_file_name, targets = deps, flag = "--deps", compatible_with = compatible_with, ) native.genrule( name = name, tools = [soycompilerbin], srcs = [srcs_flag_file_name, deps_flag_file_name] + srcs + deps, message = "Generating SOY v2 Java files", outs = outs, cmd = "$(location %s)" % soycompilerbin + " --outputDirectory=$(@D)" + " --javaPackage=" + java_package + " --javaClassNameSource=filename" + additional_flags + # Include the sources and deps files as command line flags. " $$(cat $(location " + srcs_flag_file_name + "))" + " $$(cat $(location " + deps_flag_file_name + "))", compatible_with = compatible_with, **kwargs ) # The output file for abc_def.soy is AbcDefSoyInfo.java. Handle camelcasing # for both underscores and digits: css3foo_bar is Css3FooBarSoyInfo.java. def _soy__camel(str): last = "_" result = "" for index in range(len(str)): ch = str[index] if ch != "_": if (last >= "a" and last <= "z") or (last >= "A" and last <= "Z"): result += ch else: result += ch.upper() last = ch return result def _soy__dirname(file): return file[:file.rfind("/") + 1] def _soy__filename(file): return file[file.rfind("/") + 1:] def _soy__gen_file_list_arg_as_file( out_name, targets, flag, compatible_with = None): native.genrule( name = out_name + "_gen", srcs = targets, outs = [out_name], cmd = (("if [ -n \"$(SRCS)\" ] ; " + "then echo -n '%s='$$(echo \"$(SRCS)\" | sed -e 's/ /,/g') > $@ ; " + "fi ; " + "touch $@") % flag), # touch the file, in case empty compatible_with = compatible_with, visibility = ["//visibility:private"], ) def _soy__GetJavaPackageForCurrentDirectory(): """Returns the java package corresponding to the current directory.""" directory = native.package_name() for prefix in ("java/", "javatests/"): if directory.startswith(prefix): return ".".join(directory[len(prefix):].split("/")) i = directory.find("/" + prefix) if i != -1: return ".".join(directory[i + len(prefix) + 1:].split("/")) fail("Unable to infer java package from directory: " + directory)
class Process: def __init__(self, id, arrvl_time, exec_time): self.id = id self.arrvl_time = arrvl_time self.exec_time = exec_time self.compl_time = 0 self.timeLeft = exec_time def execute(self, quantum): #self.timeLeft = self.timeLeft - quantum if self.timeLeft > quantum else 0 if self.timeLeft > quantum: self.timeLeft = self.timeLeft - quantum return False else: self.timeLeft = 0 return True
# DATABASE db_username = 'root' db_password = 'toor' db_name = 'fscaffold' db_hostname = 'localhost' DEBUG = True PORT = 5000 HOST = "0.0.0.0" SQLALCHEMY_ECHO = False SECRET_KEY = "SOME SECRET" # PostgreSQL # SQLALCHEMY_DATABASE_URI = "postgresql://{DB_USER}:{DB_PASS}@{DB_ADDR}/{DB_NAME}".format( # DB_USER=db_username, # DB_PASS=db_password, # DB_ADDR=db_hostname, # DB_NAME=db_name) # MySQL SQLALCHEMY_DATABASE_URI = "mysql+pymysql://{DB_USER}:{DB_PASS}@{DB_ADDR}/{DB_NAME}".format( DB_USER=db_username, DB_PASS=db_password, DB_ADDR=db_hostname, DB_NAME=db_name) # Email Server Configuration MAIL_DEFAULT_SENDER = "leo@localhost" PASSWORD_RESET_EMAIL =""" Hi, Please click on the link below to reset your password <a href="/forgotpassword/{token}> Click here </a>"""
# Time: O(n) ~ O(n^2) # Space: O(n) class Solution(object): def canCross(self, stones): """ :type stones: List[int] :rtype: bool """ if stones[1] != 1: return False last_jump_units = {s: set() for s in stones} last_jump_units[1].add(1) for s in stones[:-1]: for j in last_jump_units[s]: for k in (j-1, j, j+1): if k > 0 and s+k in last_jump_units: last_jump_units[s+k].add(k) return bool(last_jump_units[stones[-1]])
""" * Assignment: Loop Dict Reverse * Required: no * Complexity: easy * Lines of code: 9 lines * Time: 13 min English: 1. Define: a. `features: list[tuple]` - measurements b. `labels: list[int]` - species c. `label_encoder: dict[int, str]` dictionary with encoded (as numbers) species names 2. Separate header from data 3. To encode and decode `labels` (species) we need: a. Define `label_encoder: dict[int, str]` b. key - id (incremented integer value) c. value - species name 4. `label_encoder` must be generated from `DATA` 5. For each row append to `features`, `labels` and `label_encoder` 6. Run doctests - all must succeed Polish: 1. Zdefiniuj: a. `features: list[tuple]` - pomiary b. `labels: list[int]` - gatunki c. `label_encoder: dict[int, str]` słownik zakodowanych (jako cyfry) nazw gatunków 2. Odseparuj nagłówek od danych 3. Aby móc zakodować i odkodować `labels` (gatunki) potrzebujesz: a. Zdefiniuj `label_encoder: dict[int, str]`: b. key - identyfikator (kolejna liczba rzeczywista) c. value - nazwa gatunku 4. `label_encoder` musi być wygenerowany z `DATA` 5. Dla każdego wiersza dodawaj do `feature`, `labels` i `label_encoder` 6. Uruchom doctesty - wszystkie muszą się powieść Hints: * Reversed lookup dict Tests: >>> import sys; sys.tracebacklimit = 0 >>> assert type(features) is list >>> assert type(labels) is list >>> assert type(label_encoder) is dict >>> assert all(type(x) is tuple for x in features) >>> assert all(type(x) is int for x in labels) >>> assert all(type(x) is int for x in label_encoder.keys()) >>> assert all(type(x) is str for x in label_encoder.values()) >>> features # doctest: +NORMALIZE_WHITESPACE [(5.8, 2.7, 5.1, 1.9), (5.1, 3.5, 1.4, 0.2), (5.7, 2.8, 4.1, 1.3), (6.3, 2.9, 5.6, 1.8), (6.4, 3.2, 4.5, 1.5), (4.7, 3.2, 1.3, 0.2)] >>> labels [0, 1, 2, 0, 2, 1] >>> label_encoder # doctest: +NORMALIZE_WHITESPACE {0: 'virginica', 1: 'setosa', 2: 'versicolor'} """ DATA = [ ('Sepal length', 'Sepal width', 'Petal length', 'Petal width', 'Species'), (5.8, 2.7, 5.1, 1.9, 'virginica'), (5.1, 3.5, 1.4, 0.2, 'setosa'), (5.7, 2.8, 4.1, 1.3, 'versicolor'), (6.3, 2.9, 5.6, 1.8, 'virginica'), (6.4, 3.2, 4.5, 1.5, 'versicolor'), (4.7, 3.2, 1.3, 0.2, 'setosa'), ] # list[tuple]: values from column 0-3 from DATA without header features = [] # list[str]: species name from column 4 from DATA without header labels = [] # dict[int,str]: lookup dict generated from species names label_encoder = {} for line in DATA[1:]: *feat, lab = line features.append(tuple(feat)) labels.append(lab) label_encoder = {x for x in labels} label_encoder = {k: v for k, v in enumerate(label_encoder)} labels = [k for label in labels for k, v in label_encoder.items() if label == v]
words = "Life is short" upper_word_list = ["LIFE", "IS", "SHORT", "USE", "PYTHON"] word_generator = ( lower_w for w in upper_word_list if (lower_w := w.lower()) in words.lower() ) for w in word_generator: print(w, end=" ") # word_generator is StopIteration now
# overall function that recursively splits an input array in half, and # uses the helper function "merge" to compare items in each half against each # other to sort them def mergeSort(list): # Determine whether the list is broken into # individual pieces. if len(list) < 2: return list # Find the middle of the list. middle = len(list) // 2 # Break the list into two pieces. left = mergeSort(list[:middle]) right = mergeSort(list[middle:]) # Merge the two sorted pieces into a larger piece. print("Left side: ", left) print("Right side: ", right) merged = merge(left, right) print("Merged ", merged) return merged # helper function that checks split pieces of "parent" array against one another def merge(left, right): # When the left side or the right side is empty, # it means that this is an individual item and is # already sorted. if not len(left): return left if not len(right): return right # Define variables used to merge the two pieces. result = [] leftIndex = 0 rightIndex = 0 totalLen = len(left) + len(right) # Keep working until all of the items are merged. while len(result) < totalLen: # Perform the required comparisons and merge # the pieces according to value. if left[leftIndex] < right[rightIndex]: result.append(left[leftIndex]) leftIndex += 1 else: result.append(right[rightIndex]) rightIndex += 1 # When the left side or the right side is longer, # add the remaining elements to the result. if leftIndex == len(left) or rightIndex == len(right): result.extend(left[leftIndex:] or right[rightIndex:]) break return result
class DockerComposeEntity: def __init__(self): self.sinks = list() def build_state(self): result = dict() services = dict() sink_count = 0 for sink in self.sinks: services[f"sink_{sink_count}"] = sink.__dict__ sink_count += 1 result["version"] = "3" result["services"] = services result["networks"] = { "owlvey-net": { "external": False } } return result
a = input() if len(a) == 1 and 'a' in a: ans = -1 else: ans = 'a' print(ans)
LocalValueDim = 18446744073709551613 dataTypes = { -1: 'unknown', 0: 'byte', 1: 'short', 2: 'integer', 4: 'long', 50: 'unsigned_byte', 51: 'unsigned_short', 52: 'unsigned_integer', 54: 'unsigned_long', 5: 'real', 6: 'double', 7: 'long_double', 9: 'string', 10: 'complex', 11: 'double_complex', 12: 'string_array', 55: 'char' } dataTypeSize = { -1: 0, 0: 1, 1: 2, 2: 4, 4: 8, 50: 1, 51: 2, 52: 4, 54: 8, 5: 4, 6: 8, 7: 16, 9: 0, 10: 8, 11: 16, 12: 0, 55: 1 } def GetTypeName(typeID): name = dataTypes.get(typeID) if name is None: name = "unknown type" return name def GetTypeSize(typeID): size = dataTypeSize.get(typeID) if size is None: size = 0 return size CharacteristicNames = { 0: 'value', 1: 'min', 2: 'max', 3: 'offset', 4: 'dimensions', 5: 'var_id', 6: 'payload_offset', 7: 'file_index', 8: 'time_index', 9: 'bitmap', 10: 'stat', 11: 'transform_type', 12: 'minmax' } def GetCharacteristicName(cID): name = CharacteristicNames.get(cID) if name is None: name = "unknown characteristic" return name def GetCharacteristicDataLength(cID, typeID): name = CharacteristicNames.get(cID) if (name == 'value' or name == 'min' or name == 'max' or name == 'minmax'): return dataTypeSize[typeID] elif (name == 'offset' or name == 'payload_offset'): return 8 elif (name == 'file_index' or name == 'time_index'): return 4 else: return 0 # Read Header info 64 bytes # fileType: Data, Metadata, Index Table def ReadHeader(f, fileSize, fileType): status = True if fileSize < 64: print("ERROR: Invalid " + fileType + ". File is smaller " "than the header (64 bytes)") return False header = f.read(64) hStr = header.decode('ascii') versionStr = hStr[0:32].replace('\0', ' ') major = hStr[32] minor = hStr[33] micro = hStr[34] # unused = hStr[35] endianValue = header[36] if endianValue == 0: endian = 'yes' elif endianValue == 1: endian = ' no' else: print("ERROR: byte 28 must be 0 or 1 to indicate endianness of " "the data. It is however {0} in this file".format( endianValue)) status = False bpversion = int(header[37]) active = int(header[38]) if active == 0: activeStr = ' no' else: activeStr = 'yes' # unused = hStr[39] WriterCount = int(header[40]) aggregatorcount = int(header[44]) iscolumnmajor = header[49] # 45..63 unused print("-----------------------------------------------------------" "-----------------------------------------------------------") print("| Version string | Major | Minor | Patch " "| unused | Endian | BP version | Active | WriterCount | AggCount" + " | ColumnMajor | unused |") print("| 32 bytes | 1B | 1B | 1B " "| 1B | 1B | 1B | 1B | 4b | 4b " + "| 1b | 16B |") print("+----------------------------------------------------------" "----------------------------------------------------------+") print("| {0} | {1} | {2} | {3} | | {4} " "| {5} | {6} | {7:d} | {8:d} | " + "{9} | |".format( versionStr, major, minor, micro, endian, bpversion, activeStr, WriterCount, aggregatorcount, iscolumnmajor)) print("-----------------------------------------------------------" "-----------------------------------------------------------") return [status, WriterCount] if __name__ == "__main__": print("ERROR: Utility main program is bp5dbg.py")
list1 = [3, 4, 51, 90.1, False, 'Amresh', 7] # index = 0 # for i in list1: # print (f'index: {index}, Value: {i}') # index += 1 for index, item in enumerate(list1): print (f'index: {index}, Value: {item}')
class Params(object): def __init__(self , data_path='faces/dataset/' , artifacts_path='faces/artifacts/' , models_path='/User/mlrun/demos/faces/notebooks/functions/models.py' , frames_url='framesd:8081' , token='set_token' , encodings_path='faces/encodings/' , container='users' ): self.data_path = data_path self.artifacts_path = artifacts_path self.models_path = models_path self.frames_url = frames_url self.token = token self.encodings_path = encodings_path self.container = container def set_params_from_context(self, context): context.logger.info("setting context params") attrs = vars(self) for attr in attrs: if attr in context.parameters: setattr(self, attr, context.parameters[attr]) attrs = vars(self) context.logger.info(attrs)
''' Created on 15.02.2017 @author: emillokal ''' measure0=0 measure1=0
# Link to the problem: https://www.codechef.com/MARCH18B/problems/MIXCOLOR def main(): T = int(input()) while T: T -= 1 _ = int(input()) occr = {} colors = list(map(int, input().split())) for i in colors: occr[i] = 0 for val in colors: occr[val] += 1 ans = 0 for _, v in occr.items(): ans += (v - 1) print(ans) if __name__ == "__main__": main()
# File where I wrote functions that helped parse and make changes to multiple lines of code def read_source_file(name: str)->str: f = open(name) s = f.read() f.close() return s def save_as_new(text: str): f = open('./new.py', mode='w') f.write(text) f.close() def find_brace_close_position(text: str, brace_start: int)->int: scope_level = 1 position = brace_start + 1 while scope_level > 0: char = text[position] if char == ')': scope_level -= 1 if scope_level == 0: return position elif char == '(': scope_level += 1 position += 1 return position test_fstring_convert = 'self.API_url + \'/webhooks/\' + str(webhook_id) + \'/\' + str(webhook_token)' def replace_string_cat_to_fstring(source_code: str): code_fragments = [] current_pos = 0 for i, j in find_url_calls(source_code): code_fragments.append(source_code[current_pos:i+1]) code_fragments.append(string_cat_to_fstring(source_code[i+1:j])) current_pos = j code_fragments.append(source_code[current_pos:]) new_source = '' for s in code_fragments: new_source += s return new_source def find_url_calls(original_text: str): start_pos = 0 end_pos = 0 while True: start_pos = original_text.find('return self.', end_pos) if start_pos < 0: break if original_text[start_pos+12] == '_': end_pos = start_pos + 1 continue start_pos = original_text.find('(', start_pos) closing_brace = find_brace_close_position(original_text, start_pos) next_comma = original_text.find(',', start_pos) if next_comma < 0 or closing_brace < next_comma: end_pos = closing_brace else: end_pos = next_comma yield start_pos, end_pos def string_cat_to_fstring(original_str: str)->str: tokens = original_str.split('+') new_string = 'f\'' for t in tokens: if '\'' in t: # string new_string += t.strip().strip('\'') else: # value new_t = str(t).strip() if 'str(' in t: new_string += '{' + f'{new_t[4:-1]}' + '}' else: new_string += '{' + f'{new_t}' + '}' return new_string + '\'' def discordrest_to_discordbot_translate(discordrest_source_code: str): function_declarations = (x for x in fetch_function_declaration_and_args(discordrest_source_code)) new_functions = [] for f in function_declarations: new_string = f + '->dict:\n' new_string += 'response = self.discord_session(' + function_get_arguments_string(f) + ')\n' new_string += 'response.raise_for_status()\n' new_string += 'return response.json()' new_functions.append(new_string) new_source = '' for i in new_functions: new_source += i + '\n' return new_source def function_get_arguments_string(function_declaration: str)->str: comma_split = function_declaration.split(',')[1:] new_string = '' for s in comma_split: double_dot_pos = s.find(':') new_string += s[:double_dot_pos].strip() + ', ' return new_string def fetch_function_declaration_and_args(original_str: str): start_pos = 0 end_pos = 0 while True: start_pos = original_str.find(' def ', end_pos) if start_pos <= 0: break openning_brace = original_str.find('(', start_pos) closing_brace = find_brace_close_position(original_str, openning_brace) end_pos = closing_brace yield original_str[start_pos:closing_brace+1]
# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. def check_c_count(expected_count): test.assertEqual(expected_count, len(reality.resources_by_logical_name('C'))) example_template = Template({ 'A': RsrcDef({'a': 'initial'}, []), 'B': RsrcDef({}, []), 'C': RsrcDef({'!a': GetAtt('A', 'a')}, ['B']), 'D': RsrcDef({'c': GetRes('C')}, []), 'E': RsrcDef({'ca': GetAtt('C', '!a')}, []), }) engine.create_stack('foo', example_template) engine.noop(5) engine.call(verify, example_template) example_template_shrunk = Template({ 'A': RsrcDef({'a': 'updated'}, []), 'B': RsrcDef({}, []), 'C': RsrcDef({'!a': GetAtt('A', 'a')}, ['B']), 'D': RsrcDef({'c': GetRes('C')}, []), 'E': RsrcDef({'ca': GetAtt('C', '!a')}, []), }) engine.update_stack('foo', example_template_shrunk) engine.noop(7) example_template_long = Template({ 'A': RsrcDef({'a': 'updated'}, []), 'B': RsrcDef({}, []), 'C': RsrcDef({'!a': GetAtt('A', 'a')}, ['B']), 'D': RsrcDef({'c': GetRes('C')}, []), 'E': RsrcDef({'ca': GetAtt('C', '!a')}, []), 'F': RsrcDef({}, ['D', 'E']), }) engine.update_stack('foo', example_template_long) engine.call(check_c_count, 2) engine.noop(11) engine.call(verify, example_template_long) engine.delete_stack('foo') engine.noop(12) engine.call(verify, Template({}))
class Immutable(type): def __new__(msc, name, bases, nmspc): new_class = type(name, bases, nmspc) original_initialization = new_class.__init__ def set_attribute(self, key, value): raise AttributeError("Attributes are immutable") def wrapper(self, *args, **kwargs): new_class.__setattr__ = object.__setattr__ original_initialization(self, *args, **kwargs) new_class.__setattr__ = set_attribute new_class.__init__ = wrapper return new_class def create_cached_factory(factory, id_builder): cache = {} def create(point): _id = id_builder(point) try: return cache[_id] except KeyError: return cache.setdefault(_id, factory(point)) return create
""" Map Com map, fazemos mapeamento de valores para função. import math def area(r): # Calcula a área de um círculo com raio 'r'. return math.pi * (r ** 2) print(area(2)) print(area(5.3)) raios = [2, 5, 7.1, 0.3, 10, 44] # Forma comum areas = [] for r in raios: areas.append(area(r)) print(areas) # Forma 2 - Map # Map é uma função que recebe dois parâmetros: O primeiro a função, o segundo um iterável. Retorna um Map Object areas = map(area, raios) print(areas) print(type(areas)) print(list(areas)) # Forma 3 - Map com Lambda print(list(map(lambda r: math.pi * (r ** 2), raios))) # OBS: Após utilizar a função map() depois da primeira utilização do resultado, ele zera. # Para fixar - Map # Temos dados iteráveis # dados: a1, a2, ..., an # Temos uma função: # Função: f(x) # Utilizamos a função map(f, dados) onde map irá 'mapear' cada elemento dos dados e aplicar a função. # O Map Object: f(a1), f(a2), f(...), f(an) """ # Mais um exemplo cidades = [ ('Berlim', 29), ('Cairo', 36), ('Buenos Aires', 19), ('Los Angeles', 26), ('Tokio', 27), ('Nova York', 28), ('Londres', 22) ] print(cidades) # f = 9/5 * c + 32 # Lambda c_para_f = lambda dado: (dado[0], (9/5) * dado[1] + 32) print(list(map(c_para_f, cidades)))
MAX_MEMBER_REPR_LENGTH = 1000 class Repr: """Convencience class to automatically add standard ``__repr__()`` and ``__str__()`` functions to class. Uses ``__dict__`` property. """ def __repr__(self): members = ', '.join(f'{k}={str(v)[:MAX_MEMBER_REPR_LENGTH]}' for k, v in self.__dict__.items()) return f"{self.__class__.__name__}({members})" def __str__(self): return self.__repr__()
class CleanPhoneNumber(object): def __init__(self, phone_number): self.phone_number = phone_number def sanitize_phone_number(self): phone_number = self.phone_number phone = list(phone_number) prefix = phone[0] length = len(phone_number) if prefix == '+' and length == 13: phone[0] = '' return "".join(phone) if prefix == '0' and length == 10: phone[0] = '254' return "".join(phone) elif prefix == '2' and length == 12: return str(phone_number) elif length < 10: return '' else: return ''
""" Some convenience methods to manipulate sequence objects (ex: list, range, set, string) """ def chunks(l, n): """ Yield successive n-sized chunks from list l. Example: l = [1,2,3,4,5,6,7,8,9,10] c = list(chunks(l, 3)) # c will be equal "[ [1,2,3], [4,5,6], [7,8,9], [10]] """ for i in range(0, len(l), n): yield l[i:i + n]
# List of guide files to search guides = ['analytics_guide.md','angular_guide.md','api_guide.md','authentication_guide.md','cache_guide.md','hub_guide.md','i18n_guide.md','interactions_guide.md','logger_guide.md','pub_sub_guide.md','push_notifications_setup.md','service_workers_guide.md','storage_guide.md'] # Start of file path - CHANGE FOR GITHUB filestart = '../docs/media/' # Opens snippet file snippets = open('snippets/auto.code-snippets','w') # Opens documentation file docs = open('auto_snippet_documentation.md','w') # Starts writing files docs.write('# Automatically Generated Snippet Documentation\n') snippets.write('{\n') # Loops through all guide pages for guide in guides: snippet_index = 1 # counts number of snippets in each section for snippet naming _guide_index = guide.find('_guide') title = guide[:_guide_index] # gets doc title for snippet naming # Read doc file and separate into lines f = open(filestart + guide,'r') lines = f.readlines() f.close() line_index = 0 # index for which line is being used while line_index < len(lines): # Finds most recent header heading = title.title() if lines[line_index][0] == '#': snippet_index = 1 line = lines[line_index] for char_index in range(len(line)): if line[char_index].isalpha(): header = line[char_index:len(line)-1].title() break # Finds start of javascript codeblock languages = ['js', 'typescript', 'json'] for language in languages: if lines[line_index].strip() == '```' + language: # Adds beginning snippet formatting to doc file and snippet file snippet_number = '' if snippet_index == 1 else (' ' + str(snippet_index)) docs.write('##### prefix: ```Amplify ' + header + snippet_number + '```\n```' + language + '\n') snippets.write(' "Amplify ' + title.title() + ' ' + header + snippet_number + '": {\n') snippets.write(' "prefix": "Amplify ' + header + snippet_number + '",\n') if language == 'js': snippets.write(' "scope": "javascript,javascriptreact",\n') else: snippets.write(' "scope": "' + language + '",\n') snippets.write(' "body": [\n') line_index += 1 # increment line index # Adds lines to snippet while lines[line_index].strip() != '```': # executes until end of code block docs.write(lines[line_index]) # writes line directly to doc line_str = ' "' # Adds \t's to snippet space_count = 0 for char in lines[line_index]: if char == ' ': space_count += 1 else: line_str += '\\t'*int(space_count/4) lines[line_index] = lines[line_index][space_count:] break # Checks for special characters and adds line to snippet for char in lines[line_index]: if char == '"': line_str += '\\"' elif char == "$": line_str += '\\\$' elif char == '\n': pass else: line_str += char line_str += '",' snippets.write(line_str + '\n') line_index += 1 # increment line index # Close snippet and doc line docs.write('```\n') snippets.write(' ]\n') snippets.write(' },\n') snippet_index += 1 line_index += 1 # increment line index # Close snippet file and doc file snippets.write('}') snippets.close() docs.close()
x = 9 y = 3 # Arithmetic Operators print(x+y) #Addition print(x-y) #Subtraction print(x*y) #Multiplication print(x/y) #Division print(x%y) #Modulus print(x**y) #Exponantiation x = 9.191823 print(x//y) #Floor Division #Assignment Operators x = 9 # set x = 9 x += 3 # x = x + 3 print(x) x = 9 x -= 3 # x = x - 3 print(x) x *= 3 # x = x * 3 print(x) x /= 3 # x = x / 3 print(x) x **=3 # x = x ** 3 print(x) # Comparison Operators x = 9 y = 3 print(x==y) # True if x equals y, False otherwise print(x!=y) # True if x does not equal y, False otherwise print(x>y) # True if x is greater than y, False otherwise print(x<y) # True if x is less than y, False otherwise print(x>=y) # True if x greater than/equal to y, False othewrise print(x<=y) # True if x is less than/equal to y, False otherwise
#!/usr/bin/env python # -*- coding: utf-8 -*- # # File Name: Problem_3.py # Project Name: WebLearn # Author: Benjamin Zhang # Created Time: 2019-01-12 21:45 # Version: 0.0.1.20190112 # # Copyright (c) Benjamin Zhang 2019 # All rights reserved. # name = ["Adam", "Seth", "Enosh", "Kenan", "Mahalalel", "Jared", "Enoch", "Methuselah", "Lamech", "Noah", "Shem", "Ham", "Japheth" ] age = [930, 912, 905, 910, 895, 962, 365, 969, 777, 0, 0, 0, 0] def find_seniority(string): for i in range(0, len(age)): if name[i] == string: return 10 if i > 9 else i return -1 def is_ancestor(str1, str2): if find_seniority(str1) != -1 and find_seniority(str2) != -1: return 1 if find_seniority(str1) < find_seniority(str2) else 2 else: return 0 def compare_age(str1, str2): index1 = find_seniority(str1) index2 = find_seniority(str2) if age[index1] != 0 and age[index2] != 0: return 1 if age[index1] > age[index2] else 2 else: return 0 if __name__ == '__main__': while True: try: input_str = input() name1 = input_str.split(' ')[0] name2 = input_str.split(' ')[1] x = is_ancestor(name1, name2) if x == 0: print("No enough information") elif x == 1: print("Yes") elif x == 2: print("No") else: print("ERROR") x = compare_age(name1, name2) if x == 0: print("No enough information") elif x == 1: print("Yes") elif x == 2: print("No") else: print("ERROR") except: break
infile = open("./local_models/time-all.normalized","r") outfile = open("./clustering/initial.dat","w") listoflists = [] for line in infile: listoflists.append(line.strip().split()) numtopics = len(listoflists[0])-1 numwords = len(listoflists) for topic in range(1,numtopics+1): #fancy indexing because words are still there outfile.write(str(topic)+' ') for word in range(numwords): outfile.write(listoflists[word][topic]+' ') outfile.write('\n') infile.close() outfile.close()
#!/usr/bin/env python # coding: utf-8 # author: binux([email protected]) # https://github.com/binux/binux-tools/blob/master/python/chinese_digit.py dict ={u'零':0, u'一':1, u'二':2, u'三':3, u'四':4, u'五':5, u'六':6, u'七':7, u'八':8, u'九':9, u'十':10, u'百':100, u'千':1000, u'万':10000, u'0':0, u'1':1, u'2':2, u'3':3, u'4':4, u'5':5, u'6':6, u'7':7, u'8':8, u'9':9, u'壹':1, u'贰':2, u'叁':3, u'肆':4, u'伍':5, u'陆':6, u'柒':7, u'捌':8, u'玖':9, u'拾':10, u'佰':100, u'仟':1000, u'萬':10000, u'亿':100000000} def getResultForDigit(a, encoding="utf-8"): if isinstance(a, str): a = a.decode(encoding) count = 0 result = 0 tmp = 0 Billion = 0 while count < len(a): tmpChr = a[count] #print tmpChr tmpNum = dict.get(tmpChr, None) #如果等于1亿 if tmpNum == 100000000: result = result + tmp result = result * tmpNum #获得亿以上的数量,将其保存在中间变量Billion中并清空result Billion = Billion * 100000000 + result result = 0 tmp = 0 #如果等于1万 elif tmpNum == 10000: result = result + tmp result = result * tmpNum tmp = 0 #如果等于十或者百,千 elif tmpNum >= 10: if tmp == 0: tmp = 1 result = result + tmpNum * tmp tmp = 0 #如果是个位数 elif tmpNum is not None: tmp = tmp * 10 + tmpNum count += 1 result = result + tmp result = result + Billion return result
print('-'*12, 'DESCONTO DE PRODUTOS', '-'*12) preco = float(input('Qual o preço do produto: ')) desc = preco - (preco * 5 / 100) print('O produto que custava R${:.2f}, na promoção com desconto de 5% vai custar R${:.2f}'.format(preco, desc))
class Pessoa: olhos = 2 def __init__(self, *filhos, nome=None, idade=43): self.idade = idade self.nome = nome self.filhos = list(filhos) def cumprimentar(self): return f'Olá' # >>> julio.nome # 'Julio' # >>> julio.idade # 43 # >>> for filho in julio.filhos: # ... print(filho.nome) # ... # Andre # >>> from oo.pessoa import Pessoa # >>> andre = Pessoa(nome='Andre') # >>> julio = Pessoa(andre, nome='Julio') # >>> julio.sobrenome = 'Felipe' # >>> print(julio.__dict__) # {'idade': 43, 'nome': 'Julio', 'filhos': [<oo.pessoa.Pessoa object at 0x000001BD4A73D340>], 'sobrenome': 'Felipe'} # >>> del julio.filhos # >>> print(julio.__dict__) # {'idade': 43, 'nome': 'Julio', 'sobrenome': 'Felipe'} # >>> from oo.pessoa import Pessoa # >>> Pessoa.olhos # 2 # >>> julio = Pessoa(None, nome='Julio') # >>> julio.__dict__ # {'idade': 43, 'nome': 'Julio', 'filhos': [None]} # >>> julio.olhos # 2 # >>> julio.olhos = 1 # >>> julio.__dict__ # {'idade': 43, 'nome': 'Julio', 'filhos': [None], 'olhos': 1} # >>> del julio.olhos # >>> julio.__dict__ # {'idade': 43, 'nome': 'Julio', 'filhos': [None]} # >>>
def spam(): global eggs eggs = 'spam' def bacon(): eggs = 'bacon' def ham(): print(eggs) eggs = 12 spam() print(eggs) """ spam """
def check_ip_byte(string, i, chars_left, ip, dot='exist'): index, result = i + 1, 'fail' if len(string) - i >= chars_left: n = string[i] if n.isdigit(): i += 1 while n.isdigit(): if i < len(string): if string[i].isdigit(): n += string[i] i += 1 else: i -= 1 break else: i -= 1 break index = i + 1 if int(n) > 255: return result, index, ip elif len(n) > 3: return result, index, ip elif dot == 'skip': ip += n return 'ok', index, ip elif index < len(string): if string[index] == '.': ip += n + '.' index += 1 return 'ok', index, ip return result, index, ip def ip_lookup(string): if len(string) > 6: i = 0 while i < len(string): ip = '' for c in [7, 5, 3]: result, i, ip = check_ip_byte(string, i, c, ip) if result != 'ok': break if result == 'ok': result, i, ip = check_ip_byte(string, i, 1, ip, dot='skip') if result == 'ok': ip = ip.split('.') for i in range(len(ip)): while len(ip[i]) > 1: if ip[i].startswith('0'): ip[i] = ip[i][1:] else: break return 'ip found: {}.{}.{}.{}'.format(ip[0], ip[1], ip[2], ip[3]) return 'ip not found' else: return 'ip not found' if '__main__' == __name__: # test the function print(ip_lookup('ffff 00.30.1.4441 and stay home')) print(ip_lookup('ffff 0000.30.1.41 and stay home')) print(ip_lookup('ffff 300.30.1.44 and stay home')) print(ip_lookup('0000.300.0001.4441 and stay home')) print(ip_lookup('080.30.1.4441')) print(ip_lookup('00.3y0.1.1')) print(ip_lookup('00.30.1.44d41')) print(ip_lookup('00.30.1.4441')) print(ip_lookup('00.30.1.')) print(ip_lookup('00630616441')) print(ip_lookup('0.0.0.0')) print(ip_lookup('67.78.11.24/30')) print(ip_lookup('192.168.0.1'))
class Solution: def findJudge(self, N: int, trust) -> int: helper = [set() for i in range(N)] for i, n in enumerate(trust): helper[n[0] - 1].add(n[1]) for i in range(N): if len(helper[i]) != 0: continue is_major = True for j, n in enumerate(helper): if j == i: continue else: if i + 1 not in n: is_major = False if is_major: return i + 1 return -1 slu = Solution() print(slu.findJudge(1, []))
# Copyright (c) Facebook, Inc. and its affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. load("//antlir/bzl:oss_shim.bzl", "buck_genrule") def _get_build_info(): return struct( package_name = native.read_config("build_info", "package_name"), package_version = native.read_config("build_info", "package_version"), revision = native.read_config("build_info", "revision"), ) def initrd_release(name): info = _get_build_info() version = info.package_version or "local" build_id = "{}:{}".format(info.package_name, info.package_version) or "local" rev = info.revision or "local" buck_genrule( name = name, cmd = """ echo "NAME='MetalOS'" > $OUT echo "ID='metalos'" >> $OUT echo "VERSION='{version}'" >> $OUT echo "PRETTY_NAME='MetalOS Initrd ({version})'" >> $OUT echo "BUILD_ID='{build_id}'" >> $OUT echo "VARIANT='Initrd'" >> $OUT echo "VARIANT_ID='initrd'" >> $OUT echo "ANSI_COLOR='0;34'" >> $OUT echo "METALOS_VCS_REV={rev}" >> $OUT """.format( version = version, build_id = build_id, rev = rev, ), )
i = 0 for i in range(0, 100): if i % 2 == 0: print(i) i+= i
"""\ Front-to-back rapid web development =================================== TurboGears brings together four major pieces to create an easy to install, easy to use web mega-framework. It covers everything from front end (MochiKit JavaScript for the browser, Genshi / Kid / Mako / Cheetah for templates in Python) to the controllers (CherryPy) to the back end (SQLAlchemy or SQLObject). The TurboGears project is focused on providing documentation and integration with these tools without losing touch with the communities that already exist around those tools. TurboGears is easy to use for a wide range of web applications. The latest development version is available in the `TurboGears subversion repository`_. Our `mailing list`_ is lively and helpful, don't hesitate to send your questions there, we will try to help you find out a solution to your problem. .. _mailing list: http://groups.google.com/group/turbogears .. _TurboGears subversion repository: http://svn.turbogears.org/trunk#egg=turbogears-dev """ version = "1.0.11.8" description = "Front-to-back, open-source, rapid web development framework" long_description = __doc__ author = "Kevin Dangoor" email = "[email protected]" maintainer = "TurboGears Release Team" maintainer_email = "[email protected]" url = "http://www.turbogears.org/" download_url = "http://www.turbogears.org/%s/downloads/%s/index" % ( '.'.join(version.split('.', 2)[:2]), version) dependency_links = [download_url] copyright = "Copyright 2005 - 2011 Kevin Dangoor and contributors" license = "MIT"
input = """jmp +336 jmp +593 jmp +121 acc -8 nop +459 jmp +451 acc -6 acc +23 acc +23 acc -2 jmp +113 acc -11 acc +25 jmp +529 acc +0 jmp +1 jmp +313 acc +30 nop +235 jmp +45 nop +195 acc -11 jmp +491 acc +6 nop +425 nop +68 acc +9 jmp -25 jmp +507 jmp +456 acc -1 acc +49 acc +5 jmp +31 acc +30 nop +513 jmp +499 nop +533 acc +18 acc +28 acc -2 jmp +170 acc -5 jmp +180 nop +179 acc +15 acc +33 nop +27 jmp +424 acc +30 acc +33 acc +50 jmp +348 jmp +435 acc +21 acc +14 acc +13 jmp +1 jmp +98 jmp +39 acc +11 acc +23 acc +44 jmp +494 acc +17 acc -4 acc +24 acc +5 jmp +204 nop +454 acc +45 acc -10 acc -3 jmp +78 acc +47 acc +49 nop +99 acc +29 jmp -76 acc -9 acc +43 jmp +279 jmp +460 jmp +246 jmp -78 acc -8 acc -3 jmp +415 acc -3 acc -12 jmp +117 acc +32 jmp +206 acc +6 acc +19 jmp +291 acc +8 jmp +175 acc +2 jmp -6 acc +11 acc +28 acc -19 acc +1 jmp +194 acc +29 nop +387 acc +21 jmp +507 jmp +304 acc +22 acc -14 acc -6 acc +45 jmp +101 acc +12 jmp +91 acc +47 jmp +171 acc -4 acc +24 acc +3 jmp +29 nop +311 acc -12 jmp +179 jmp +1 acc -3 acc +6 acc +22 jmp +214 nop -101 jmp -118 acc +23 acc +15 jmp -42 acc +22 nop +391 jmp +27 acc -9 jmp +449 jmp +453 jmp +208 jmp +480 jmp +335 acc +23 jmp +1 acc +3 acc +45 jmp -18 jmp +335 jmp +165 acc +26 acc +8 acc -3 jmp -57 jmp -112 acc +14 acc +20 acc +21 acc +13 jmp -20 acc +35 jmp -81 jmp +406 acc -16 acc +30 acc -18 jmp +79 jmp +103 jmp -96 acc +43 acc +36 acc +31 jmp +423 nop +13 acc -11 acc +46 nop +208 jmp +398 acc +50 jmp +326 acc +31 jmp +45 acc +50 acc +13 acc +38 jmp +60 nop -37 nop -79 jmp +213 acc -19 acc -16 jmp +30 jmp +1 acc +27 acc -4 acc +46 jmp -81 jmp +29 nop +23 nop +388 acc +40 acc +46 jmp +19 acc +17 jmp +287 jmp +265 acc +17 acc +49 jmp +353 acc -4 acc +39 jmp +397 jmp +84 jmp -156 jmp -41 acc +2 acc +7 acc +45 acc +26 jmp +376 jmp +143 jmp -195 acc +1 acc -16 acc +47 jmp -225 acc -11 acc -7 nop -166 jmp +297 acc +12 acc +14 acc -17 jmp +9 acc +49 acc -9 nop -31 acc +17 jmp -130 acc +3 acc +41 jmp +112 acc -11 jmp +21 jmp +125 acc +2 acc +37 jmp -165 acc +9 acc +21 jmp -35 nop +9 nop +303 acc -6 acc +12 jmp +177 acc +36 acc +15 nop -207 jmp +224 jmp -106 acc +18 nop -166 jmp +39 jmp +175 acc -11 acc -13 acc +23 acc -6 jmp -269 acc +8 nop +212 jmp -123 jmp +188 acc +35 acc +43 acc +33 jmp -91 acc +39 acc +8 acc -1 acc +15 jmp +29 acc +44 nop +18 jmp -250 jmp +83 acc +10 acc +12 acc +18 jmp +1 jmp +170 acc +47 acc -13 acc +4 jmp +32 acc +0 jmp +203 acc -16 acc +11 acc +38 jmp -103 jmp +2 jmp -69 nop -292 jmp -90 nop -97 acc +29 nop +124 acc -12 jmp -238 acc +4 jmp +36 jmp -108 acc +14 acc +21 jmp +82 acc -6 acc +28 jmp -133 acc -4 acc +28 jmp +155 nop +168 acc -2 nop +86 jmp +287 acc +15 acc +46 acc +40 acc -16 jmp -139 acc +39 jmp +36 acc -16 acc +25 nop -215 jmp +146 nop -296 acc -12 acc +40 jmp -299 acc +48 acc +37 nop -205 acc -17 jmp +215 jmp +254 jmp +53 acc +15 acc +34 acc +8 jmp +216 nop +5 acc +23 jmp -195 acc +0 jmp +69 acc +6 jmp +187 acc +14 acc -2 jmp -51 acc -12 acc +43 nop -51 jmp -193 acc -1 jmp -234 acc +20 jmp +1 acc +33 acc +23 jmp -131 acc +38 acc +2 jmp +179 jmp +1 jmp +209 nop -187 acc +41 acc +32 acc +6 jmp +209 nop -230 acc +37 acc +47 acc +32 jmp +82 acc +45 acc +21 jmp -108 acc +13 acc +39 jmp +127 jmp +1 nop +196 jmp -146 acc +19 jmp -125 jmp -149 acc +28 acc -1 acc +35 acc +7 jmp -262 acc -16 acc -3 acc +48 acc +13 jmp +177 jmp -91 acc +26 nop +78 acc +15 jmp +1 jmp +197 acc +12 acc -14 acc +9 jmp -317 acc +41 acc +2 acc -11 acc +6 jmp -284 acc +28 acc -16 jmp -65 acc +31 nop -276 jmp -205 acc +6 acc +33 acc +7 acc -2 jmp -125 acc +34 jmp -193 acc -12 acc +39 jmp +1 jmp -208 acc +3 acc +0 nop +9 jmp -112 jmp +1 jmp -314 acc +34 acc +9 acc +5 acc +20 jmp +139 acc -8 acc +11 acc +18 jmp +1 jmp -66 acc -14 jmp -173 acc -3 acc +31 acc +0 jmp +117 acc +47 acc +24 acc +9 acc +43 jmp -427 acc -11 nop -226 jmp -444 acc +43 acc -6 acc -3 jmp -202 acc +34 jmp -337 acc +36 acc +8 acc +9 jmp -162 jmp +118 acc +18 jmp -481 nop -144 nop -236 jmp -290 acc -14 jmp -448 acc +29 acc -19 acc +21 acc -11 jmp -78 acc +1 acc +30 acc -2 jmp +114 jmp +11 jmp -117 jmp -322 acc +23 jmp -361 jmp -337 acc +40 nop +85 nop -206 acc +12 jmp -199 acc +38 acc +20 acc +19 acc +33 jmp -61 acc +30 nop -234 acc +6 acc +24 jmp -463 acc -10 jmp +79 acc +43 acc +45 jmp -261 acc -13 acc +1 nop -217 nop -82 jmp -153 acc +39 jmp -340 acc +37 acc +17 jmp -182 acc +26 acc +1 acc +23 jmp +16 acc +39 acc +13 jmp -40 acc +37 acc -7 jmp -119 acc +20 acc +44 acc +44 acc +14 jmp -464 acc +6 acc +14 acc +7 jmp +54 acc +10 jmp -538 acc +13 acc -1 acc +22 jmp -397 acc +17 acc -8 acc -5 jmp -230 acc +38 nop -218 jmp -81 acc -19 nop -14 acc +32 jmp -311 nop -32 acc +18 jmp -232 acc +40 nop -242 acc -11 acc +34 jmp -528 jmp -484 jmp -155 acc -2 acc +50 acc -11 acc +50 jmp -116 nop -361 acc +12 jmp -293 acc +39 jmp +17 jmp -37 acc -14 jmp -440 jmp -226 acc +16 acc +25 acc +50 acc +49 jmp -242 acc +47 acc -19 nop -435 acc +41 jmp -523 acc +6 jmp -458 acc +0 acc +37 jmp -528 acc +27 jmp -57 acc +47 acc -9 acc +23 jmp -205 acc +40 nop -207 acc -6 jmp -129 jmp +1 acc +24 acc -14 jmp +1 jmp +1""" instructions = input.splitlines() def loop(instructions): """ Returns tuple of - acc valu when either loop detected or program terminated - set of possible corrupt instruction indexes - boolean, true if loop detected """ current_instruction = 0 acc = 0 corrupt_instruction_candidates = set() visited_instructions = set() while 0 <= current_instruction < len(instructions): if current_instruction in visited_instructions: return (acc, corrupt_instruction_candidates, True) visited_instructions.add(current_instruction) words = instructions[current_instruction].split() if words[0] == "nop": corrupt_instruction_candidates.add(current_instruction) current_instruction += 1 elif words[0] == "acc": acc += int(words[1]) current_instruction += 1 elif words[0] == "jmp": corrupt_instruction_candidates.add(current_instruction) current_instruction += int(words[1]) else: print("wtf") exit(1) return (acc, corrupt_instruction_candidates, False) _, corrupt_candidates, _ = loop(instructions) # these corrupt_candidates are the instructions for which # should check if they are the corrupted one for c in corrupt_candidates: new_instructions = instructions.copy() old_words = new_instructions[c].split() if old_words[0] == "nop": new_instructions[c] = "jmp " + old_words[1] elif old_words[0] == "jmp": new_instructions[c] = "nop " + old_words[1] else: print("wtf2") exit(1) acc, _, is_loop = loop(new_instructions) if is_loop: continue print(acc) break
class componente: def equip(self): pass class CharacterConcreteComponent(componente): def __init__(self, name: str): self.name = name self.p1 = '' def e2(x): def a2(self): return f"{self.name} equipment:"+ x(self) return a2 @e2 def equip(self): return " Empty" e2 = staticmethod(e2) class ArmorConcreteDecorator(): def __init__(self, character): self.character = character self.name = character.name self.a="\nArmor: Yes" @CharacterConcreteComponent.e2 def equip(self): return self.character.a class SwordConcreteDecorator(): def __init__(self, character): self.character = character self.name = character.name self.a="\nSword: Yes" @CharacterConcreteComponent.e2 def equip(self): return self.character.a if __name__ == "__main__": main()