content
stringlengths
7
1.05M
A = [] B = [] for i in range (10): A.append(int(input())) U = int(input()) for j in range (len(A)): if A[j] == U: B.append(j) print(B)
def differentSymbolsNaive(s): diffArray = [] for i in range(len(list(s))): if list(s)[i] not in diffArray: diffArray.append(list(s)[i]) return len(diffArray)
# coding=utf8 # Entrada num = int (input("Informe um número entre 1 e 10 para ver a tabuada: ")) # Processamento while num < 1 or num > 10: num = int (input("Informe um número entre 1 e 10 para ver a tabuada: ")) print("Tabuada de {0}".format(num)) for i in range (0, 11): print("{0} X {1} = {2}".format(num, i, (num * i)))
s = input() s = s.upper() c = 0 for i in ("ABCDEFGHIJKLMNOPQRSTUVWXYZ"): for j in s: if(i!=j): c = 0 else: c = 1 break if(c==0): break if c==1: print("Pangram exists") else: print("Pangram doesn't exists")
string_variable = "Nicolas" int_variable = 24 print(string_variable) print(int_variable)
name = input("Please enter your name: ") print("{0}, Please guess a number between 0 and 10: ".format(name)) guess = int(input()) if guess != 5: if guess < 5 : print("Please guess higher") else: print("Please guess lower") guess = int(input()) if guess == 5: print("Well done, {0}. You guessed it ".format(name)) else: print("Sorry, {0} you have not guessed correctly.".format(name)) else: print("Great job! {0}, you got it first time".format(name)) print("This game has ended. Please try again later")
""" time: c*26 + p space: 26 + 26 (1) """ class Solution: def findAnagrams(self, s: str, p: str) -> List[int]: cntP = collections.Counter(p) cntS = collections.Counter() P = len(p) S = len(s) if P > S: return [] ans = [] for i, c in enumerate(s): cntS[c] += 1 if i >= P: if cntS[s[i-P]] > 1: cntS[s[i-P]] -= 1 else: del cntS[s[i-P]] if cntS == cntP: ans.append(i-(P-1)) return ans
def do_the_thing(): with open("input.txt", "r") as f: nums = list(map(int, f.readlines())) if len(nums) < 3: return 0 count = 0 for i in range(len(nums)-3): if nums[i] < nums[i+3]: count += 1 return count # # window_size = 0 # prev = 0 # count = 0 # for line in f: # num = int(line) # # if window_size < 3: # prev += num # window_size += 1 # # elif # # # if prev and prev < num: # count+=1 # prev = num # # print(count) if __name__ == "__main__": answer = do_the_thing() print(answer)
_base_ = [ '../_base_/models/mask_rcnn_red50_neck_fpn_head.py', '../_base_/datasets/coco_instance.py', '../_base_/schedules/schedule_1x_warmup.py', '../_base_/default_runtime.py' ] optimizer_config = dict(grad_clip(dict(_delete_=True, max_norm=5, norm_type=2)))
def maxSumUsingMid(a, first, last, mid): max_left = -99999 sum1 = 0 for i in range(mid, first - 1, -1): sum1 += a[i] if sum1 > max_left: max_left = sum1 max_right = -99999 sum1 = 0 for i in range(mid + 1, last + 1): sum1 += a[i] if sum1 > max_right: max_right = sum1 return max_left + max_right def maxSubArraySum(a, first, last): if first == last: return a[first] mid = (first + last)//2 return max(maxSubArraySum(a, first, mid), maxSubArraySum(a, mid+1, last), maxSumUsingMid(a, first, last, mid)) arr = [-11, -5, 9, 2, 3, -2, 4, 5, 7] n = len(arr) max_sum = maxSubArraySum(arr, 0, n-1) print("Maximum contiguous sum is ", max_sum)
print ('\n') print ('_-_'*15) print (' '*15 + 'LOJAS DIAS' + ' '*15) print ('_-_'*15) v = float (input ('\nDigite o valor da sua compra RS:\n')) print ('\n [ 1 ] à vista dinheiro/cheque') print (' [ 2 ] à vista no cartão') print (' [ 3 ] 2x no cartão') print (' [ 4 ] 3x ou mais') p = int(input('\nQual será a forma de pagamento?\n')) if p == 1: vp = v -(( 10 / 100) * v) print ('A sua compra de R$:{:.0f} irá sair por R$:{:.0f}'.format(v,vp)) elif p == 2: vp = v - ((5/100)*v) print ('A sua compra de R$:{:.0f} irá sair por R$:{:.0f}'.format(v,vp)) elif p == 3: parcela = v / 2 print ('Sua compra será parcelada em 2x de {:.2f}'.format(parcela)) print ('A sua compra de R$:{:.0f} irá sair por R$:{:.0f}'.format(v,v)) elif p == 4: q = int(input ('Em quantas vezes deseja parcelar?')) vp = ((20/100)*v) + v qp = vp/q print ('Sua compra ficou em {}x de R$:{:.2f}'.format(q,qp)) print ('A sua compra de R$:{:.0f} irá sair por R$:{:.0f}'.format(v,vp)) else: print ('\nOpção Invalida!')
''' This module exists purely to check how to import test cases in the test suite ''' def ex_function(): return True
## Command format COMMAND_SIZE_TOTAL = 14 ## Cammand size total COMMAND_SIZE_HEADER = 4 ## Cammand header size COMMAND_SIZE_CHECKSUM = 4 ## Cammand checksum size COMMAND_SIZE_OVERHEAD = 8 ## COMMAND_SIZE_HEADER + COMMAND_SIZE_CHECKSUM COMMAND_START_MARK = 0xF5 ## Command start marking COMMAND_INDEX_COMMAND = 1 ## Cammand index COMMAND_INDEX_DATA = 2 ## Cammand payload data ## setup commands COMMAND_SET_INTEGRATION_TIME_3D = 0x00 ## Command to set the integration time for 3D operation COMMAND_SET_INTEGRATION_TIME_GRAYSCALE = 0x01 ## Command to set the integration time for grayscale COMMAND_SET_ROI = 0x02 ## Command to set the region of interest COMMAND_SET_BINNING = 0x03 ## Command to set the binning COMMAND_SET_MODE = 0x04 ## Command to set the mode COMMAND_SET_MODULATION_FREQUENCY = 0x05 ## Command to set the modulation frequency COMMAND_SET_DLL_STEP = 0x06 ## Command to set the DLL step COMMAND_SET_FILTER = 0x07 ## Command to set the filter parameters COMMAND_SET_OFFSET = 0x08 ## Command to set the offset COMMAND_SET_MINIMAL_AMPLITUDE = 0x09 ## Command to set th minimal amplitude COMMAND_SET_DCS_FILTER = 0x0A ## Command to set the DCS filter COMMAND_SET_GAUSSIAN_FILTER = 0x0B ## Command to set the Gaussian filter COMMAND_SET_FRAME_RATE = 0x0C ## Command to set/limit the frame rate COMMAND_SET_HDR = 0x0D COMMAND_SET_MODULATION_CHANNEL = 0x0E ## Command to set the modulation channel COMMAND_SET_FILTER_SINGLE_SPOT = 0x0F ## Command to set the temporal filter for the single spot ## acquisition commands COMMAND_GET_DISTANCE = 0x20 ## Command to request distance data COMMAND_GET_AMPLITUDE = 0x21 ## Command to request amplitude data COMMAND_GET_DISTANCE_AMPLITUDE = 0x22 ## Command to request distance and amplitude data COMMAND_GET_DCS_DISTANCE_AMPLITUDE = 0x23 ## Command to request distance, amplitude and DCS data at once COMMAND_GET_GRAYSCALE = 0x24 ## Command to request grayscale data COMMAND_GET_DCS = 0x25 ## Command to request DCS data COMMAND_SET_AUTO_ACQUISITION = 0x26 ## Command to enable/disable the auto acquisition COMMAND_GET_INTEGRATION_TIME_3D = 0x27 ## Command to read the integration time. Important when using automatic mode COMMAND_STOP_STREAM = 0x28 ## Command to stop the stream COMMAND_GET_DISTANCE_GRAYSCALE = 0x29 ## Command to request distance and grayscale COMMAND_GET_IDENTIFICATION = 0x47 ## Command to identification COMMAND_GET_CHIP_INFORMATION = 0x48 ## Command to read the chip information COMMAND_GET_FIRMWARE_RELEASE = 0x49 ## Command to read the firmware release COMMAND_GET_PRODUCTION_INFO = 0x50 ## Command to get the production info ## MODULATION COMMAND_SET_MODULATION_FREQUENCY = 0x05 VALUE_10MHZ = 0 ## Value for 10MHz for command "COMMAND_SET_MODULATION_FREQUENCY" VALUE_20MHZ = 1 ## Value for 20MHz for command "COMMAND_SET_MODULATION_FREQUENCY" ## 635 op mode MODE_BEAM_A = 0 ## Normal operation with illumination beam A MODE_BEAM_B_MANUAL = 1 ## Normal operation with illumination beam B (all settings by user, same as) MODE_BEAM_B_RESULT = 2 ## Beam B with calibrated ROI, only one distance as result MODE_BEAM_B_RESULT_DATA = 3 ## Beam B with calibrated ROI, one distance and the pixels as result MODE_BEAM_AB_RESULT = 4 ## Beam A and B operating with calibrated ROI and only one distance as result MODE_BEAM_AB_AUTO_RESULT = 5 ## Beam A and B with automatic selection MODE_BEAM_AB_INTERLEAVED_DATA = 6 ## Beam A and B interleaved output ## Stream mode SINGLE = 0 ## Single frame mode AUTO_REPEAT = 1 ## Auto repeat frame using same parameters STREAM = 3 ## Stream mode ## HDR HDR_OFF = 0 ## HDR off HDR_SPATIAL = 1 ## Spatial HDR HDR_TEMPORAL = 2 ## Temporal HDR ## IntegrationTime INDEX_INDEX_3D = 2 ## Index of the integration time 3d index INDEX_INTEGRATION_TIME_3D = 3 ## Index of the integration time 3d ## AMPLITUDE INDEX_INDEX_AMPLITUDE = 2 ## Index of the index INDEX_AMPLITUDE = 3 ## Index of the minimal amplitude ## ROI INDEX_ROI_X_MIN = 2 ## Index of ROI X MIN INDEX_ROI_Y_MIN = 4 ## Index of ROI Y MIN INDEX_ROI_X_MAX = 6 ## Index of ROI X MAX INDEX_ROI_Y_MAX = 8 ## Index of ROI Y MAX ## Data format DATA_START_MARK = 0xFA ## Data start marking DATA_INDEX_LENGTH = 2 ## Data length DATA_INDEX_TYPE = 1 ## Data type ## firmware returned data type DATA_ACK = 0x00 ## Acknowledge from sensor to host DATA_NACK = 0x01 ## Not acknowledge from sensor to host DATA_IDENTIFICATION = 0x02 ## Identification to identify the device DATA_DISTANCE = 0x03 ## Distance information DATA_AMPLITUDE = 0x04 ## Amplitude information DATA_DISTANCE_AMPLITUDE = 0x05 ## Distance and amplitude information DATA_GRAYSCALE = 0x06 ## Grayscale information DATA_DCS = 0x07 ## DCS data DATA_DCS_DISTANCE_AMPLITUDE = 0x08 ## DCS, distance and amplitude all together DATA_INTEGRATION_TIME = 0x09 ## Integration time, answer to COMMAND_GET_INTEGRATION_TIME_3D DATA_DISTANCE_GRAYSCALE = 0x0A ## Distance and grayscale data DATA_LENS_CALIBRATION_DATA = 0xF7 ## Lens calibration data DATA_TRACE = 0xF8 ## Trace data DATA_PRODUCTION_INFO = 0xF9 ## Production info DATA_CALIBRATION_DATA = 0xFA ## Calibration data DATA_REGISTER = 0xFB ## Register data DATA_TEMPERATURE = 0xFC ## Temperature data DATA_CHIP_INFORMATION = 0xFD ## Chip information data DATA_FIRMWARE_RELEASE = 0xFE ## Firmware release DATA_ERROR = 0xFF ## Error number ## CHIP MASK_CHIP_TYPE_DEVICE = 0x00FFFF00 ## Chip information mask SHIFT_CHIP_TYPE_DEVICE = 8 ## Chip information shift CHIP_INFORMATION_DATA_SIZE = 4 ## Chip information data size ## IDENTITY DATA_IDENTIFICATION = 0x02 DATA_FIRMWARE_RELEASE = 0xFE IDENTIFICATION_DATA_SIZE = 4 ## Chip information data size INDEX_WAFER_ID = 6 INDEX_CHIP_ID = 4 ## Firmware release FIRMWARE_RELEASE_DATA_SIZE = 4 ## Chip information data size MASK_VERSION = 0x000000FF SHIFT_VERSION = 0 ## TOF 635 image TOF_635_IMAGE_HEADER_SIZE = 80 ## 635 IMAGE HEADER SIZE
class SessionEncryption: """Session Encryption types.""" NONE = 'none' TLS = 'tls'
# Faça um programa que solicite o preço de uma mercadoria e o percentual de desconto # Exiba o valor do desconto e o preço a pagar currentPrice = float(input('\nInforme o preço do produto: R$ ')) discountPercentage = float(input('Digite o percentual de desconto: ')) discount = currentPrice * discountPercentage / 100 newPrice = currentPrice - discount print(f'\nO valor atual do produto é de R$ {currentPrice:.2f}') print(f'Um desconto de {discountPercentage}%, representa um desconto de R$ {discount:.2f}') print(f'Com o desconto, o produto passa a custar R$ {newPrice:.2f}')
def MinNumberInsertionAndDel(a, b, x, y): dp = [[None for _ in range(y + 1)] for _ in range(x + 1)] for i in range(x + 1): for j in range(y + 1): if i == 0 or j == 0: dp[i][j] = 0 elif a[i - 1] == b[j - 1]: dp[i][j] = 1 + dp[i - 1][j - 1] else: dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]) lcs = dp[x][y] return (len(a) - lcs) + (len(b) - lcs) def main(): for _ in range(int(input())): x, y = map(int, input().split()) a, b = map(str, input().split()) print(MinNumberInsertionAndDel(a, b, x, y)) if __name__ == "__main__": main()
def ajuda(c): titulo('Acessando o PyHelp',2) print(help(c)) def titulo(msg,cor=0): # 0=reset,1=preto, 2=vermelho, 3=verde, 4=amarelo, 5=azul, 6=magenta, 7=ciano cores = ['\033[0;0m','\033[1;40m','\033[1;41m','\033[1;42m','\033[1;43m','\033[1;44m','\033[1;45m','\033[1;46m'] print(cores[cor]) print('-'*(len(msg)+4)) print(f' {msg} ') print('-'*(len(msg)+4)) print(cores[0]) while True: titulo('Definição de Biblioteca',7) comando = (str(input('Função ou biblioteca:'))) if comando.upper() == 'FIM': titulo('Até Logo') break ajuda(comando)
""" Fill in the gaps in the initials function so that it returns the initials of the words contained in the phrase received, in upper case. For example: "Universal Serial Bus" should return "USB"; "local area network" should return "LAN” """ def initials(phrase): words = phrase.split(' ') result = "" for word in words: result += word[0] return result.upper() print(initials("Universal Serial Bus")) # Should be: USB print(initials("local area network")) # Should be: LAN print(initials("Operating system")) # Should be: OS
''' WRITTEN BY Ramon Rossi PURPOSE Two strings are anagrams if you can make one from the other by rearranging the letters. The function named is_anagram takes two strings as its parameters, returning True if the strings are anagrams and False otherwise. EXAMPLE The call is_anagram("typhoon", "opython") should return True while the call is_anagram("Alice", "Bob") should return False. ''' def str_to_sorted_list(temp_str): # convert str to list of letters temp_list = list(temp_str) # sort list in alphabetical order temp_list.sort() return temp_list def is_anagram(str1, str2): # print the original strings print('First string: {}'.format(str1)) print('Second string: {}'.format(str2)) # convert each string into a list of letters, then sort the # list alphabetically str1_sorted_list = str_to_sorted_list(str1) str2_sorted_list = str_to_sorted_list(str2) # compare whether the sorted lists of letters are the same if str1_sorted_list == str2_sorted_list: print('They are anagrams') return True else: print('They are not anagrams') return False def run_test(str1,str2,should_anagram_be_true): whether_anagram = is_anagram(str1, str2) if whether_anagram == should_anagram_be_true: print('Test passed\n') else: print('Test failed\n') # test 1 str1 = "typhoon" str2 = "opython" run_test(str1,str2,True) # test 2 str1 = "Alice" str2 = "Bob" run_test(str1,str2,False)
class VSBaseModel: IGNORED_DICT_PROPS = [ 'ignored_dict_props', 'plugin', 'plugins', 'host', 'hosts', 'finding', 'findings', 'service', 'services', 'vulnerability', 'vulnerabilities' ] def __init__(self): self.id = '' self.ignored_dict_props = self.IGNORED_DICT_PROPS.copy() def to_dict(self): return {k: getattr(self, k) for k in dir(self) if not k.startswith('_') and not callable(getattr(self, k))} def to_serializable_dict(self): # res = {} # for k, v in self.to_dict().items(): # if isinstance(v, VSBaseModel): # continue # elif isinstance(v, (list, tuple, set)): # try: # elm = next(iter(v)) # if isinstance(elm, VSBaseModel): # continue # except StopIteration: # pass # res[k] = v # return res return {k: v for k, v in self.to_dict().items() if k.lower() not in self.ignored_dict_props}
program = [] with open("input.txt", "r") as file: for line in file.readlines(): program.append(line.split()) def execute(op, arg, ic, acc): # return ic change, acc change if op == "nop": return ic+1, acc if op == "jmp": return ic+int(arg), acc if op == "acc": return ic+1, acc+int(arg) raise ValueError(f"No operation: {op}") def find_loop(program): ic = 0 acc = 0 executed = set() while ic < len(program): executed.add(ic) op, arg = program[ic] new_ic, new_acc = execute(op, arg, ic, acc) if new_ic in executed: #Found loop return (ic, acc) ic, acc = new_ic, new_acc return (ic, acc) def part2(program): for i in range(len(program)): original = program[i][0] if program[i][0] == "jmp": program[i][0] = "nop" elif program[i][0] == "nop": program[i][0] == "jmp" else: continue ic, acc = find_loop(program) if ic>=len(program): return acc else: program[i][0] = original print(f"Part 1: {find_loop(program)[1]}") print(f"Part 2: {part2(program)}")
""" [Weekly #19] Looking forward into 2015 - Predictions. https://www.reddit.com/r/dailyprogrammer/comments/2rfexe/weekly_19_looking_forward_into_2015_predictions/ As we enter the new year - What are some trends/predictions you see in computer science, software engineering, programming or related fields forth coming or happening for this new year? """ def main(): pass if __name__ == "__main__": main()
# https://leetcode.com/problems/diameter-of-binary-tree/ # Given the root of a binary tree, return the length of the diameter of the tree. # The diameter of a binary tree is the length of the longest path between any two # nodes in a tree. This path may or may not pass through the root. # The length of a path between two nodes is represented by the number of edges # between them. ################################################################################ # longest path must be leaf-to-leaf # -> sum of longest left and right branches # -> divide and conquer # 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 diameterOfBinaryTree(self, root: TreeNode) -> int: self.ans = 0 self.longest_path(root) return self.ans def longest_path(self, node): if not node: return 0 left_longest = self.longest_path(node.left) right_longest = self.longest_path(node.right) self.ans = max(self.ans, left_longest + right_longest) return max(left_longest, right_longest) + 1
class Group: def __init__(self, group_name, group_level, protocols=None): if protocols is None: protocols = {} self.name = group_name self.level = group_level self.protocols = protocols self.group_contains = set() def __contains__(self, protocol): flag = protocol in self.protocols if not flag: for group in self.group_contains: if protocol in group: flag = True break return flag def __getitem__(self, protocol_name): if protocol_name in self.protocols: return self.protocols[protocol_name] for group in self.group_contains: protocol = group[protocol_name] if protocol: return protocol return None def contain_group(self, group): self.group_contains.add(group) def add_protocol(self, name, protocol): self.protocols[name] = protocol
"""Calculate correlation coefficient.""" def find_corr_x_y(x, y): """Calculate the correlation between x and y.""" n = len(x) prod = [] for xi, yi in zip(x, y): prod.append(xi * yi) sum_prod_x_y = sum(prod) sum_x = sum(x) sum_y = sum(y) squared_sum_x = sum_x**2 squared_sum_y = sum_y**2 x_square = [] for xi in x: x_square.append(xi**2) x_square_sum = sum(x_square) y_square = [] for yi in y: y_square.append(yi**2) y_square_sum = sum(y_square) numerator = n * sum_prod_x_y - sum_x * sum_y denominator_term1 = n * x_square_sum - squared_sum_x denominator_term2 = n * y_square_sum - squared_sum_y denominator = (denominator_term1 * denominator_term2)**0.5 correlation = numerator / denominator return correlation
VARS = { 'CLIENT_SECRET_PATH': 'res/client_secret.json', 'SCOPES': 'https://www.googleapis.com/auth/spreadsheets', 'APPLICATION_NAME': 'Google Sheets API Python Quickstart', 'DISCOVERY_URL': 'https://sheets.googleapis.com/$discovery/rest?version=v4' } CONSTANTS = { 'CREDENTIALS_FILENAME': 'sheets.googleapis.com-python-quickstart.json', 'LOCALE': 'it', 'SPREADSHEET_ID': '1UU0fr7jpVrW6d5YQWLOwfYgtim5AN090Tjhfp9lljPs' } SERVER = { 'HOSTNAME': 'localhost', 'PORT': 8080 }
def sanitize_pg_array(pg_array): """ convert a array-string to a python list PG <9.0 used comma-aperated strings as array datatype. this function will convert those to list. if pg_array is not a tring, it will not be modified """ if not type(pg_array) in (str,unicode): return pg_array # only for one-dimesional arrays return map(str.strip, pg_array.strip("{}").split(","))
class Solution(object): def getRow(self, rowIndex): """ :type rowIndex: int :rtype: List[int] """ row = [1] for i in range(1, rowIndex+1): row = list(map(lambda x,y: x+y, [0]+row, row + [0])) return row ''' Say we have the current layer [1, 2, 1]. We then make 2 copies of this layer, add 0 to the start of one copy, and add 0 to the end of one copy; then we have [0, 1, 2, 1] and [1, 2, 1, 0]. Then we can perform the element-wise add operation and we would have [1, 3, 3, 1] ''' #输入6,结果:[1,6,15,20,15,6,1]
def expandX1(m): c = [1] for i in range(m): c.append(c[-1] * -(m-i) / (i+1)) return c[::-1] def isPrime(m): if m < 2: return False c = expandX1(m) c[0] += 1 return not any(mul % m for mul in c[0:-1]) #----DRIVER PROGRAM---- print('\n# [for small primes]AKS TEST GAVE THE FOLLOWING AS PRIMES') print([m for m in range(1000) if isPrime(m)])
class NodeofList(object): def __init__(self, value): self.value = value self.next = None def setElement(self, value): self.value = value def getElement(self): return self.value def setNext(self, next): self.next = next def getNext(self): return self.next class linkedList(object): def __init__(self, head = None): self.head = head self.count = 0 def getCount(self): return self.count def elementInsertion(self, data): newElement = NodeofList(data) newElement.setNext(self.head) self.head = newElement self.count += 1 def searchElement(self, value): element = self.head while(element != None): if element.getElement() == value: return element else: element = element.getNext() return None def deleteElement(self, index): if index > self.count-1: return if index == 0: self.head = self.head.getNext() else: temp = 0 node = self.head while(temp < index-1): node = node.getNext() temp += 1 node.setNext(node.getNext().getNext()) self -=1 def endList(self): temp = self.head while(temp != None): print(temp.getElement()) temp = temp.getNext() #Testing element = linkedList() element.elementInsertion(15) element.elementInsertion(16) element.elementInsertion(17) element.elementInsertion(18) element.elementInsertion(19) print("Total Elements in List = ", element.getCount()) print("Finding Element in the list = ", element.searchElement(16))
# V0 # V1 # https://zhuanlan.zhihu.com/p/50564246 # IDEA : TWO POINTER class Solution: def isLongPressedName(self, name, typed): """ :type name: str :type typed: str :rtype: bool """ # name's index : idx # typed's index : i idx = 0 for i in range(len(typed)): if idx < len(name) and name[idx] == typed[i]: idx += 1 elif i == 0 or typed[i] != typed[i-1]: return False return idx == len(name) # V2 # Time: O(n) # Space: O(1) class Solution(object): def isLongPressedName(self, name, typed): """ :type name: str :type typed: str :rtype: bool """ i = 0 for j in range(len(typed)): if i < len(name) and name[i] == typed[j]: i += 1 elif j == 0 or typed[j] != typed[j-1]: return False return i == len(name)
class writeDataClass(): def writeData(self,dataFiles): fileData=open("plt.dat","w") for f in range(0,len(dataFiles)): fileData.write("%s\n" % dataFiles[f]) fileData.close()
""" Write a function that takes in an array of integers and returns a sorted array of the three largest integers in the input array. Note that the function should return duplicate integers if necessary; for example, it should return [10, 10, 12] for an input array of [10, 5, 9, 10, 12]. Sample input: [141, 1, 17, -7, -17, -27, 18, 541, 8, 7, 7] Sample output: [18, 141, 541] """ def findThreeLargestNumbers(array): # Write your code here. # put the highest three in a array highest_three = [float('-inf'), float('-inf'), float('-inf')] # loop through each num in array for i, num in enumerate(array): # if num is higher then any in highest three, swap it into highest three current_low = min(highest_three) if current_low < num: current_low_i = highest_three.index(current_low) highest_three[current_low_i] = num # return the highest three return sorted(highest_three)
discounts = [1.0, 1.0, 0.95, 0.90, 0.80, 0.75] def add(list, element, index): if len(list) < index + 1: list.append([]) if element not in list[index]: list[index].append(element) else: add(list, element, index + 1) def price(l): a = [] total_price = 0 for book in l: add(a, book, 0) for cart in a: total_price += len(cart) * 8 * discounts[len(cart)] return total_price
# print("Please insert a number") # a = int(input("> ")) # print("Please insert another number") # b = int(input("> ")) # print("Please insert yet another number") # c = int(input("> ")) a = 4 b = 5 c = 10 if a > b: if a > c: print(a) else: print(c) else: if b > c: print(b) else: print(c)
# raider.io api configuration RIO_MAX_PAGE = 5 # need to update in templates/stats_table.html # need to update in templates/compositions.html # need to update in templates/navbar.html RIO_SEASON = "season-sl-2" WCL_SEASON = 2 WCL_PARTITION = 1 # config RAID_NAME = "Sanctum of Domination" # late in the season, set this at 16 # early in the seaseon, set this at 10 MIN_KEY_LEVEL = 16 # to generate a tier list based on heroic week data MAX_RAID_DIFFICULTY = "Mythic"
def cipher(text, shift, encrypt=True): """ 1. Description: The Caesar cipher is one of the simplest and most widely known encryption techniques. In short, each letter is replaced by a letter some fixed number of positions down the alphabet. Apparently, Julius Caesar used it in his private correspondence. 2. Explanation: The first input is a string that you want to decipher The second input is the amount of shift for each letters in that string The output will be the outcome of the orginal string after a certain shifting. 3. Example: If you put "gdkkn" and 1 in the cipher function like this: cipher("gdkkn", 1), you will get "hello" """ alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' new_text = '' for c in text: index = alphabet.find(c) if index == -1: new_text += c else: new_index = index + shift if encrypt == True else index - shift new_index %= len(alphabet) new_text += alphabet[new_index:new_index+1] return new_text
################################################################################ # # # #=============================================================================== class CustomDict( dict ): #--------------------------------------------------------------------------- defaultValue = 'THIS ITEM NOT AVAILABLE' #--------------------------------------------------------------------------- def __getitem__( self, name ): try: return super( CustomDict, self ).__getitem__( name ) except KeyError: return self.defaultValue #--------------------------------------------------------------------------- def __contains__( self, name ): return True #--------------------------------------------------------------------------- def has_key( self, name ): return True ################################################################################ # # # #=============================================================================== class X( object ): #--------------------------------------------------------------------------- def __init__( self ): self._dict = CustomDict( foo = 'bar' ) #--------------------------------------------------------------------------- @property def __dict__( self ): #print 'X.__dict__ ( get() )' return self._dict #--------------------------------------------------------------------------- def __getattr__( self, name ): return self.__dict__[ name ] #--------------------------------------------------------------------------- def __setattr__( self, name, value ): if name == '_dict': return super( X, self ).__setattr__( name, value ) self._dict[ name ] = value ################################################################################ # # # #=============================================================================== if __name__ == '__main__': x = X() print(x.__dict__[ 'foo' ]) print(x.__dict__[ 'bar' ]) print(x.foo) print(x.bar) print(x.__dict__) x.oops = 42 print(x.__dict__) # Output: # bar # THIS ITEM NOT AVAILABLE # bar # THIS ITEM NOT AVAILABLE # {'foo': 'bar'} # {'foo': 'bar', 'oops': 42}
""" Grocery List Create a program that prompts the user to continuously enter items for a grocery list. Stop asking them for items when the user enters 'quit'. Print the grocery list in a numbered format. Ask the user to enter prices for each item in the grocery list in order. Finally, ask the user how many of each item they bought. Based on their input, calculate the total grocery bill and display it. (Bonus points if you can format the money so that it displays 2 decimals.) Demo: https://youtu.be/BmMj16Ox5iA """ item = "" items = [] # stores grocery items # continuously ask user for grocery items # and store them in a list while item != "quit": item = input("Enter a grocery item, or 'quit': ") if item != "quit": items.append(item) # print items in numbered format for i in range(0, len(items)): print(str(i + 1) + ". " + items[i]) print() # ask user to enter prices for # each grocery item prices = [] for i in range(0, len(items)): price = float(input("Enter price for " + items[i] + ": $")) prices.append(price) print() # ask user for quantity of each # item in the grocery list quantities = [] for i in range(0, len(items)): quantity = int(input("Enter quantity bought for " + items[i] + ": ")) quantities.append(quantity) print() # calculate total grocery bill total = 0 for i in range(0, len(items)): total += prices[i] * quantities[i] # print total, formatted to 2 decimals # because it's money print("Total: $%.2f" % total)
MIDDLEWARES = ( 'middlewares.middle_a', 'middlewares.middle_b', 'middlewares.middle_c', 'middlewares.middle_d' )
y=200 deadtime=0 def setup(): global xs xs=[] size(400,400) stroke(0) def draw(): global xs, deadtime, y strokeWeight(5) background(169) if keyPressed and key == " " and deadtime <=0: xs.append(0) deadtime=10 deadtime -= 1 if keyPressed and key== 'w' : y= y+10 if keyPressed and key== 's' : y=y-10 for i in range(len(xs)): x=xs[i] line(x,y,x+20,y) x=x+10 xs[i]=x if len(xs) > 0 and xs[0] > width: xs.pop(0) print(xs)
def checkcolor(): return [255, 240, 255] def newcolor(a, b): return 255
roles = [ { 'name': 'GK', 'description': 'Goalkeeper' }, { 'name': 'LD', 'description': 'Left Defender' }, { 'name': 'CD', 'description': 'Central Defender' }, { 'name': 'RD', 'description': 'Right Defender' }, { 'name': 'LM', 'description': 'Left Midfielder' }, { 'name': 'CM', 'description': 'Central Midfielder' }, { 'name': 'RM', 'description': 'Right Midfielder' }, { 'name': 'LS', 'description': 'Left Striker(Wing)' }, { 'name': 'CS', 'description': 'Central Striker' }, { 'name': 'RS', 'description': 'Right Striker(Wing)' } ]
class A: pass var = object() if isinstance(var, A) and var: pass
count = int(input()) for i in range(1, count + 1): for j in range(1, i + 1): print(j, end="") print() # print("\n", end="") - по умолчанию print() выводит в консоль только '\n'
# cifar10 ##################### ci7 = {'stages': 3, 'depth': 22, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (3, 3, 3), 'blocks': ('D', 'D', 'S'), 'slink': ('A', 'A', 'A'), 'growth': (0, 0, 0), 'classify': (0, 0, 0), 'expand': (1 * 22, 2 * 22), 'dfunc': ('O', 'O'), 'dstyle': 'maxpool', 'fcboost': 'none', 'nclass': 10, 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 32, 'summer': 'split', 'afisok': False, 'version': 2} # 1M 35L 0.22s 88fc # NET Width ao1 = {'stages': 1, 'depth': 64, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2} # 2.06M 0.96G 44L 0.05s 94.57% => ax16@titan but-only-lastfc ao2 = {'stages': 1, 'depth': 56, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2} # 1.57M 0.74G 44L 0.05s ao3 = {'stages': 1, 'depth': 48, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2} # 1.16M 0.54G 44L 0.05s ao4 = {'stages': 1, 'depth': 40, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2} # 0.81M 0.38G 44L 0.04s ao5 = {'stages': 1, 'depth': 36, 'branch': 3, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 10, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 2} # 0.65M 0.30G 44L 0.03s # cifar100 ##################### # NET WIDTH bo1 = {'stages': 1, 'depth': 100, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3} # 3.62M 1.44G 42L 0.22s bo2 = {'stages': 1, 'depth': 90, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3} # 2.93M 1.18G 42L 0.22s bo3 = {'stages': 1, 'depth': 80, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3} # 2.32M 0.93G 42L 0.22s bo4 = {'stages': 1, 'depth': 70, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3} # 1.78M 0.71G 42L 0.17s bo5 = {'stages': 1, 'depth': 60, 'branch': 1, 'rock': 'U', 'kldloss': False, 'layers': (10,), 'blocks': ('D',), 'slink': ('A',), 'growth': (0,), 'classify': (0,), 'expand': (), 'dfunc': (), 'fcboost': 'none', 'nclass': 100, 'summer': 'split', 'last_branch': 1, 'last_down': False, 'last_dfuc': 'D', 'last_expand': 36, 'afisok': False, 'version': 3} # 1.30M 0.52G 42L 0.17s
# -*- coding: utf-8 -*- # XEP-0072: Server Version class Version: """ process and format a version query """ def __init__(self): # init all necessary variables self.software_version = None self.target, self.opt_arg = None, None def format_result(self): # list of all possible opt_arg possible_opt_args = ["version", "os", "name"] name = self.software_version['name'] version = self.software_version['version'] os = self.software_version['os'] # if opt_arg is given member of possible_opt_args list return that element if self.opt_arg in possible_opt_args: text = "%s: %s" % (self.opt_arg, self.software_version[self.opt_arg]) # otherwise return full version string else: text = "%s is running %s version %s on %s" % (self.target, name, version, os) return text def format(self, query, target, opt_arg): self.software_version = query['software_version'] self.target = target self.opt_arg = opt_arg reply = self.format_result() return reply
# https://adventofcode.com/2020/day/9 infile = open('input.txt', 'r') lines = infile.readlines() infile.close() def is_valid(a: list[int], n: int): """ Check if given list has any 2 numbers which add up to the given number :param a: the list of numbers :param n: the number we search for :return: True if the list has any 2 numbers add up to the given number; False otherwise """ for a_i in range(len(a) - 1): for a_j in range(a_i + 1, len(a)): if a[a_i] + a[a_j] == n: return True return False preamble_size = 25 window = [] for i in range(len(lines)): number = int(lines[i]) if i < preamble_size: # fill sliding window window.append(number) continue if not is_valid(window, number): print(number) exit(0) # slide window by 1 window.pop(0) window.append(number) exit(-1)
#!/usr/bin/env python __version__ = '0.0.1' __author__ = 'Fernandes Macedo' __email__ = 'masedos@gmail.com' fruits = ["Apple", "Peach", "Pear"] for fruit in fruits: print(fruit) print(fruit + " Pie") print(fruits)
wt5_3_7 = {'192.168.122.110': [5.7199, 8.4411, 8.0381, 7.3759, 7.1777, 6.9974, 6.816, 6.7848, 6.811, 6.8666, 6.7605, 7.1659, 7.1058, 7.117, 7.4091, 7.3653, 7.602, 7.5046, 7.5051, 7.4195, 7.3659, 7.2974, 7.2932, 7.4615, 7.6061, 7.7395, 7.7409, 7.699, 7.6546, 7.631, 7.5707, 7.562, 7.5218, 7.4742, 7.6148, 7.5669, 7.5131, 7.4565, 7.5446, 7.4987, 7.4847, 7.469, 7.455, 7.4362, 7.3925, 7.3703, 7.3292, 7.2921, 7.2536, 7.2169, 7.2086, 7.1715, 7.1411, 7.2064, 7.1991, 7.1839, 7.2477, 7.2161, 7.1854, 7.2516, 7.2309, 7.2014, 7.1876, 7.1603, 7.1456, 7.1199, 7.1144, 7.1117, 7.0925, 7.1097, 7.0892, 7.0843, 7.0802, 7.0686, 7.0576, 7.1146, 7.0925, 7.1456, 7.1249, 7.1094, 7.1615, 7.1413, 7.1328, 7.1263, 7.1173, 7.0967, 7.0823, 7.0844, 7.0699, 7.0684, 7.0536, 7.0364, 7.0224, 7.0092, 6.9916, 7.0371, 7.022, 7.034, 7.0179, 7.0132, 7.0539, 7.0557, 7.0478, 7.0415, 7.0298, 7.0144, 7.0508, 7.0598, 7.0598, 7.045, 7.0393, 7.025, 7.0613, 7.0544, 7.0981, 7.1295, 7.125, 7.1609, 7.1487, 7.1351, 7.167, 7.1551, 7.144, 7.1356, 7.1228, 7.1115, 7.0986, 7.0956, 7.0849, 7.0873, 7.0759, 7.0657, 7.1389, 7.1669, 7.1615, 7.1502, 7.1496, 7.1461, 7.1349, 7.128, 7.1166, 7.1035, 7.1017, 7.0924, 7.0807, 7.0907, 7.0797, 7.087, 7.1103, 7.1043, 7.0988, 7.0925, 7.081, 7.0861, 7.0744, 7.0664, 7.0682, 7.0653, 7.0572, 7.0468, 7.0369, 7.0261, 7.0227, 7.0141, 7.0102, 7.0079, 7.0045, 6.9978, 6.9899, 7.0137, 7.0415, 7.0339, 7.0542, 7.0484, 7.0391, 7.0322, 7.0252, 7.0232, 7.0215, 7.016, 7.0126, 7.0046, 7.0024, 6.9977, 7.0017, 7.0237, 7.0439, 7.043, 7.0357, 7.0297, 7.0276, 7.0209, 7.0192, 7.0439, 7.0585, 7.0511, 7.0521, 7.0485, 7.0627, 7.0841, 7.0762, 7.073, 7.0723, 7.0649, 7.0661, 7.0579, 7.0799, 7.0756, 7.0681, 7.0889, 7.0812, 7.0805, 7.0731, 7.097, 7.0953, 7.0871, 7.0793, 7.0981, 7.1166, 7.1088, 7.1109, 7.1036, 7.1212, 7.1238, 7.1225, 7.1187, 7.1114, 7.1036, 7.1207, 7.1157, 7.1078, 7.1245, 7.2723, 7.2693, 7.2658, 7.2614, 7.2774, 7.2931, 7.2884, 7.306, 7.3014, 7.3174, 7.3184, 7.3108, 7.3048, 7.3256, 7.3223, 7.3164, 7.3139, 7.3063, 7.3235, 7.3188, 7.3179, 7.3122, 7.3048, 7.3402, 7.3334, 7.3303, 7.3311, 7.3247, 7.3197, 7.3169, 7.2936, 7.2879, 7.2825, 7.2777, 7.2937, 7.288, 7.2812, 7.2752, 7.2701, 7.2635, 7.2567, 7.2705, 7.2667, 7.2604, 7.2672, 7.273, 7.2941, 7.2878, 7.3024, 7.2964, 7.2918, 7.2921, 7.2884, 7.2857, 7.279, 7.2748, 7.276, 7.2702, 7.2686, 7.2699, 7.2631, 7.2622, 7.2556, 7.2507, 7.2461, 7.2448, 7.2402, 7.2419, 7.2393, 7.2401, 7.2347, 7.2302, 7.2238, 7.2192, 7.2329, 7.2451, 7.2404, 7.2369, 7.2335, 7.2277, 7.2389, 7.2514, 7.2469, 7.2435, 7.2425, 7.2537, 7.2487, 7.2428, 7.2561, 7.2518, 7.2497, 7.2623, 7.2577, 7.2559, 7.2547, 7.2536, 7.2501, 7.2609, 7.2551, 7.25, 7.248, 7.2475, 7.2443, 7.2388, 7.2493, 7.244, 7.2414, 7.2411, 7.239, 7.2521, 7.2482, 7.2457, 7.241, 7.2363, 7.2304, 7.2279, 7.24, 7.2346, 7.2347, 7.2166, 7.2594, 7.2537, 7.265, 7.2599, 7.2696, 7.265, 7.2602, 7.3208, 7.3167, 7.3302, 7.3272, 7.3426, 7.3436, 7.344, 7.3382, 7.3369, 7.3351, 7.3347, 7.3451, 7.3408, 7.3361, 7.3313, 7.3259, 7.3236, 7.3188, 7.3147, 7.3093, 7.3193, 7.3285, 7.3266, 7.3256, 7.32, 7.3177, 7.3186, 7.3151, 7.3611, 7.384, 7.3812, 7.3776, 7.3861, 7.3819, 7.3767, 7.3749, 7.37, 7.3675, 7.3627, 7.3702, 7.3789, 7.3743, 7.369, 7.3679, 7.3628, 7.3604, 7.3591, 7.355, 7.3576, 7.3549, 7.3505, 7.3458, 7.3414, 7.3412, 7.3515, 7.3474, 7.3432, 7.3388, 7.3485, 7.3441, 7.3433, 7.3385, 7.3376, 7.3466, 7.342, 7.3406, 7.3357, 7.331, 7.3267, 7.3239, 7.3323, 7.3301, 7.3283, 7.3264, 7.3361, 7.3462, 7.3419, 7.3421, 7.3394, 7.3387, 7.3348, 7.3328, 7.3283, 7.3287, 7.3246, 7.323, 7.3206, 7.3165, 7.3159, 7.3123, 7.3084, 7.3067, 7.3059, 7.3029, 7.3019, 7.2979, 7.2967, 7.2933, 7.2901, 7.2898, 7.287, 7.284, 7.2832, 7.2921, 7.2898, 7.286, 7.2893, 7.3164, 7.3159, 7.3118, 7.3131, 7.31, 7.318, 7.3136, 7.3098, 7.3082, 7.3054, 7.3019, 7.2981, 7.2956, 7.3034, 7.3124, 7.3211, 7.3173, 7.3135, 7.31, 7.3063, 7.3041, 7.3, 7.2972, 7.3076, 7.3047, 7.3131, 7.3328, 7.3289, 7.3263, 7.3446, 7.3427, 7.3398, 7.3363, 7.3332, 7.3317, 7.3514, 7.3573, 7.3543, 7.3533, 7.3747, 7.3718, 7.3793, 7.3753, 7.3741, 7.3702, 7.3664, 7.3635, 7.3625, 7.359, 7.3558, 7.3571, 7.3559, 7.3543, 7.352, 7.3495, 7.3519, 7.3479, 7.3469, 7.3457, 7.3422, 7.3495, 7.3472, 7.3538, 7.3509, 7.3492, 7.3642, 7.3607, 7.3599, 7.3775, 7.3738, 7.3712, 7.3685, 7.3649, 7.3635, 7.3603, 7.3568, 7.3752, 7.3811, 7.3798, 7.3763, 7.3757, 7.3723, 7.3686, 7.3672, 7.3649, 7.3613, 7.3581, 7.3477, 7.3382, 7.3358, 7.3345, 7.3309, 7.3278, 7.325, 7.3322, 7.3297, 7.3278, 7.3408, 7.3473, 7.3443, 7.3479, 7.3448, 7.3572, 7.3543, 7.3513, 7.3569, 7.3563, 7.3556, 7.357, 7.3637, 7.3617, 7.3584, 7.3549, 7.3518, 7.3495, 7.347, 7.3529, 7.3517, 7.3481, 7.3452, 7.3423, 7.339, 7.3451, 7.3433, 7.3489, 7.3645, 7.3705, 7.3768, 7.3762, 7.3739, 7.3718, 7.3704, 7.3674, 7.3735, 7.3708, 7.3686, 7.3665, 7.3643, 7.3705, 7.3689, 7.3658, 7.372, 7.3688, 7.3675, 7.3641, 7.3641, 7.3633, 7.3687, 7.3749, 7.3717, 7.3685, 7.3651, 7.3642, 7.3747, 7.3803, 7.4141, 7.4136, 7.4115, 7.4097, 7.4067, 7.4161, 7.4131, 7.4051, 7.4029, 7.4005, 7.406, 7.4049, 7.4043, 7.4268, 7.4248, 7.4409, 7.4395, 7.437, 7.4357, 7.4413, 7.448, 7.4488, 7.4459, 7.4448, 7.4522, 7.4578, 7.4553, 7.4519, 7.4568, 7.4552, 7.4528, 7.4497, 7.4465, 7.4518, 7.4488, 7.4467, 7.4516, 7.4811, 7.4782, 7.4835, 7.4905, 7.4884, 7.4877, 7.4897, 7.4949, 7.4924, 7.4973, 7.4942, 7.5004, 7.4977, 7.4955, 7.4929, 7.4895, 7.4869, 7.4849, 7.4823, 7.4797, 7.4769, 7.4826, 7.4797, 7.4812, 7.4797, 7.4777, 7.4749, 7.4727, 7.478, 7.4764, 7.4737, 7.4793, 7.4766, 7.4738, 7.4719, 7.4692, 7.4673, 7.4648, 7.4711, 7.4762, 7.4797, 7.4853, 7.4838, 7.4834, 7.482, 7.4791, 7.4763, 7.4752, 7.473, 7.4786, 7.4765, 7.4751, 7.4726, 7.4708, 7.4688, 7.4667, 7.4637, 7.4624, 7.4598, 7.4589, 7.45, 7.4553, 7.4537, 7.4513, 7.4483, 7.4473, 7.4443, 7.4417, 7.4478, 7.4452, 7.4482, 7.4546, 7.4699, 7.4674, 7.4652, 7.4702, 7.4673, 7.4656, 7.4706, 7.4701, 7.4749, 7.4721, 7.4774, 7.4817, 7.4867, 7.4919, 7.4915, 7.4889, 7.4873, 7.4861, 7.4851, 7.4822, 7.4811, 7.4797, 7.4783, 7.4774, 7.4762, 7.4737, 7.4782, 7.4772, 7.4819, 7.4805, 7.4798, 7.4798, 7.4785, 7.4771, 7.4749, 7.4799, 7.4772, 7.4748, 7.4724, 7.4697, 7.4676, 7.4663, 7.4646, 7.4635, 7.4627, 7.46, 7.458, 7.4554, 7.4529, 7.4534, 7.4522, 7.4509, 7.4499, 7.4541, 7.4539, 7.4511, 7.4491, 7.447, 7.4454, 7.4445, 7.4421, 7.4397, 7.4478, 7.4456, 7.4501, 7.448, 7.4534, 7.4513, 7.4505, 7.456, 7.4564, 7.4548, 7.4521, 7.4496, 7.4538, 7.4581, 7.4562, 7.4555, 7.4601, 7.4577, 7.4624, 7.4611, 7.4589, 7.4635, 7.4615, 7.459, 7.4568, 7.4614, 7.4601, 7.4579, 7.4565, 7.4544, 7.4521, 7.4498, 7.4557, 7.4616, 7.4595, 7.4588, 7.4565, 7.463, 7.4629, 7.4628, 7.467, 7.4669, 7.4647, 7.4623, 7.4667, 7.4661, 7.4643, 7.4635, 7.47, 7.4678, 7.466, 7.4639, 7.4699, 7.4673, 7.4712, 7.4696, 7.4737, 7.4713, 7.4694, 7.4681, 7.467, 7.4655, 7.4694, 7.4671, 7.4648, 7.4624, 7.4599, 7.4584, 7.4574, 7.4562, 7.4599, 7.4648, 7.4625, 7.4607, 7.4604, 7.4586, 7.463, 7.4671, 7.4713, 7.4749, 7.4744, 7.4738, 7.4716, 7.4691, 7.4727, 7.4765, 7.4769, 7.4761, 7.4737, 7.4779, 7.476, 7.4738, 7.4845, 7.4838, 7.4819, 7.48, 7.4835, 7.4813, 7.4808, 7.4787, 7.4826, 7.4803, 7.4782, 7.482, 7.4802, 7.478, 7.4759, 7.474, 7.4717, 7.4701, 7.468, 7.4657, 7.4644, 7.4643, 7.4629, 7.463, 7.4679, 7.4668, 7.4646, 7.4624, 7.4604, 7.4583, 7.4624, 7.4664, 7.4657, 7.47, 7.4687, 7.4681, 7.4665, 7.4649, 7.4626, 7.4663, 7.4645, 7.4624, 7.4603, 7.4586, 7.4577, 7.4611, 7.4595, 7.4573, 7.4551, 7.4591, 7.458, 7.4565, 7.4565, 7.4794, 7.4828, 7.4806, 7.4788, 7.4779, 7.4766, 7.4754, 7.475, 7.4732, 7.4709, 7.4687, 7.4667, 7.465, 7.4643, 7.4651, 7.4656, 7.4643, 7.4629, 7.4662, 7.4655, 7.4637, 7.4623, 7.4621, 7.4605, 7.4585, 7.4567, 7.4556, 7.4536, 7.4515, 7.455, 7.4548, 7.4526, 7.4513, 7.449, 7.4527, 7.4518, 7.45, 7.4486, 7.4489, 7.4468, 7.4505, 7.4484, 7.4462, 7.4499, 7.448, 7.4516, 7.451, 7.4497, 7.4621, 7.4711, 7.4766, 7.4748, 7.4732, 7.4725, 7.4763, 7.4742, 7.4732, 7.4717, 7.4704, 7.4695, 7.4691, 7.4725, 7.4716, 7.4697, 7.4676, 7.4654, 7.4646, 7.4625, 7.4617, 7.4648, 7.4629, 7.4611, 7.4602, 7.46, 7.4581, 7.4568, 7.4546, 7.4583, 7.4562, 7.4547, 7.4538, 7.4543, 7.4523, 7.4505, 7.449, 7.4529, 7.4518, 7.4501, 7.4482, 7.4484, 7.4478, 7.4469, 7.4452, 7.444, 7.4425, 7.4514, 7.4668, 7.4648, 7.4629, 7.461, 7.4595, 7.4576, 7.4559, 7.4543, 7.4531, 7.4522, 7.4506, 7.4545, 7.4534, 7.4514, 7.4511, 7.4496, 7.4526, 7.4557, 7.4539, 7.453, 7.4628, 7.4613, 7.4654, 7.4737, 7.4723, 7.4664, 7.4651, 7.463, 7.4629, 7.4612, 7.4595, 7.4547, 7.4527, 7.4519, 7.455, 7.4542, 7.4522, 7.4503, 7.4508, 7.449, 7.4481, 7.4463, 7.4443, 7.4433, 7.4467, 7.4454, 7.4436, 7.4423, 7.4406, 7.4438, 7.4426, 7.4417, 7.44, 7.443, 7.4411, 7.4446, 7.4452, 7.444, 7.4427, 7.4417, 7.44, 7.4392, 7.4427, 7.4418, 7.4408, 7.4402, 7.4445, 7.4435, 7.4426, 7.4461, 7.445, 7.4495, 7.4495, 7.4534, 7.4515, 7.4552, 7.4537, 7.4531, 7.4525, 7.4515, 7.4497, 7.448, 7.447, 7.4459, 7.4454, 7.4441, 7.4435, 7.4417, 7.4426, 7.4456, 7.4437, 7.4424, 7.4411, 7.44, 7.4389, 7.4373, 7.4369, 7.4404, 7.4387, 7.4369, 7.4363, 7.4357, 7.4344, 7.4338, 7.4322, 7.4309, 7.4344, 7.433, 7.4316, 7.4304, 7.4297, 7.4282, 7.4268, 7.4262, 7.425, 7.4236, 7.4269, 7.4255, 7.4243, 7.4188, 7.4173, 7.4175, 7.4183, 7.4167, 7.4165, 7.4148, 7.4143, 7.4131, 7.4115, 7.415, 7.4132, 7.4123, 7.4107, 7.4089, 7.4072, 7.4057, 7.4087, 7.4074, 7.4057, 7.4044, 7.4026, 7.4009, 7.3992, 7.3975, 7.3969, 7.4006, 7.4012, 7.4009, 7.4042, 7.4025, 7.4009, 7.3997, 7.3995, 7.3978, 7.397, 7.3953, 7.3987, 7.3979, 7.3963, 7.3993, 7.3983, 7.398, 7.4012, 7.4005, 7.4006, 7.4005, 7.3995, 7.3978, 7.3968, 7.3955, 7.3941, 7.3929, 7.3914, 7.3959, 7.3956, 7.3941, 7.3935, 7.3921, 7.3921, 7.3914, 7.3901, 7.3889, 7.3843, 7.3868, 7.39, 7.3884, 7.3868, 7.3851, 7.3834, 7.3824, 7.3853, 7.3836, 7.3866, 7.3868, 7.3852, 7.3836, 7.3838, 7.3872, 7.3876, 7.3885, 7.388, 7.3873, 7.3857, 7.3844, 7.3829, 7.3813, 7.38, 7.3787, 7.3788, 7.3779, 7.3763, 7.3809, 7.3806, 7.3823, 7.3821, 7.385, 7.3836, 7.3825, 7.3809, 7.3836, 7.3827, 7.383, 7.3831, 7.382, 7.3856, 7.3862, 7.3847, 7.3831, 7.382, 7.3826, 7.382, 7.3803, 7.3798, 7.3786, 7.3813, 7.3797, 7.3783, 7.3771, 7.3804, 7.3789, 7.3814, 7.3926, 7.4068, 7.4087, 7.409, 7.4078, 7.4065, 7.4051, 7.4052, 7.4042, 7.4027, 7.4014, 7.4003, 7.3992, 7.3981, 7.3982, 7.3974, 7.3965, 7.3954, 7.3946, 7.3944, 7.3978, 7.4011, 7.3996, 7.3983, 7.3969, 7.3957, 7.3955, 7.3961, 7.3945, 7.3942, 7.3932, 7.3919, 7.3995, 7.3984, 7.398, 7.3971, 7.3963, 7.3947, 7.3936, 7.3921, 7.3907, 7.3897, 7.3886, 7.3873, 7.3872, 7.3899, 7.3975, 7.3961, 7.3955, 7.3942, 7.3971, 7.3967, 7.3968, 7.3955, 7.3948, 7.3934, 7.3928, 7.392, 7.3905, 7.3893, 7.3883, 7.3868, 7.3853, 7.3881, 7.3875, 7.3868, 7.3853, 7.3841, 7.3825, 7.3817, 7.3803, 7.3792, 7.3777, 7.3803, 7.3801, 7.3826, 7.3817, 7.3803, 7.379, 7.3783, 7.3779, 7.3775, 7.376, 7.3749, 7.3746, 7.3734, 7.3731, 7.3721, 7.3767, 7.3807, 7.3793, 7.3779, 7.377, 7.3755, 7.3742, 7.3728, 7.3714, 7.37, 7.3694, 7.3718, 7.3709, 7.3698, 7.3723, 7.371, 7.3736, 7.3737, 7.3723, 7.375, 7.3736, 7.373, 7.3719, 7.3711, 7.3704, 7.3691, 7.3677, 7.3666, 7.3659, 7.3652, 7.3637, 7.3631, 7.3624, 7.3744, 7.3729, 7.3755, 7.3782, 7.3771, 7.3758, 7.3747, 7.3734, 7.3771, 7.3761, 7.3763, 7.3749, 7.3778, 7.3806, 7.3796, 7.3793, 7.3784, 7.3807, 7.3834, 7.3862, 7.3861, 7.3854, 7.3848, 7.3842, 7.3831, 7.386, 7.3848, 7.3835, 7.3822, 7.381, 7.3834, 7.3822, 7.3809, 7.3835, 7.3821, 7.3847, 7.387, 7.3858, 7.3845, 7.3834, 7.3822, 7.3808, 7.3863, 7.3851, 7.3887, 7.3914, 7.3899, 7.3886, 7.3913, 7.3942, 7.3932, 7.3924, 7.3909, 7.39, 7.3886, 7.3881, 7.3874, 7.3895, 7.3883, 7.3908, 7.3897, 7.3883, 7.387, 7.3894, 7.3889, 7.3893, 7.3897, 7.3883, 7.3879, 7.3868, 7.3862, 7.3851, 7.3836, 7.3851, 7.3838, 7.3867, 7.3865, 7.3854, 7.3851, 7.3885, 7.3882, 7.3872, 7.387, 7.3862, 7.3858, 7.3889, 7.3876, 7.3866, 7.3892, 7.3879, 7.391, 7.3901, 7.3893, 7.3879, 7.387, 7.3856, 7.388, 7.391, 7.3896, 7.3946, 7.3986, 7.3981, 7.3976, 7.4008, 7.3998, 7.3986, 7.3989, 7.3979, 7.3986, 7.3982, 7.397, 7.3964, 7.3954, 7.3943, 7.397, 7.3969, 7.3994, 7.3987, 7.3988, 7.4011, 7.4001, 7.3989, 7.3978, 7.3971, 7.3959, 7.3946, 7.3938, 7.3937, 7.3933, 7.3927, 7.3953, 7.3929, 7.3927, 7.3923, 7.3911, 7.3935, 7.3923, 7.3917, 7.3906, 7.3896, 7.3922, 7.3945, 7.3941, 7.3942, 7.3931, 7.3953, 7.3949, 7.3974, 7.3998, 7.3998, 7.3986, 7.3974, 7.396, 7.3951, 7.3943, 7.3938, 7.3927, 7.3926, 7.3921, 7.3911, 7.3902, 7.39, 7.3886, 7.3884, 7.3843, 7.3832, 7.3826, 7.3851, 7.3844, 7.3832, 7.382, 7.3816, 7.3805, 7.3802, 7.3794, 7.3781, 7.377, 7.3761, 7.376, 7.3785, 7.3778, 7.377, 7.3759, 7.3748, 7.3736, 7.3724, 7.3716, 7.3704, 7.3692, 7.3679, 7.367, 7.369, 7.3679, 7.3674, 7.3663, 7.3698, 7.3687, 7.3713, 7.3708, 7.3698, 7.3686, 7.368, 7.3706, 7.3702, 7.3694, 7.3702, 7.3663, 7.3687, 7.3711, 7.3706, 7.3701, 7.369, 7.3715, 7.3707, 7.3711, 7.3704, 7.3694, 7.372, 7.3712, 7.3736, 7.3729, 7.3758, 7.3747, 7.3738, 7.37, 7.3694, 7.3693, 7.3683, 7.3672, 7.367, 7.3661, 7.3653, 7.3642, 7.3638, 7.363, 7.3623, 7.3611, 7.3599, 7.3587, 7.3586, 7.3574, 7.3575, 7.3565, 7.3555, 7.355, 7.3541, 7.3531, 7.3519, 7.3514, 7.3503, 7.3492, 7.3484, 7.3482, 7.3477, 7.3503, 7.3496, 7.3489, 7.3486, 7.3509, 7.3515, 7.3509, 7.3497, 7.3491, 7.3486, 7.3485, 7.3513, 7.3537, 7.3533, 7.3522, 7.3512, 7.351, 7.35, 7.3489, 7.3494, 7.3486, 7.348, 7.3474, 7.3494, 7.3486, 7.3474, 7.3498, 7.3486, 7.3482, 7.3475, 7.3496, 7.3503, 7.3495, 7.3491, 7.3517, 7.3585, 7.3583, 7.3615, 7.3642, 7.3638, 7.3633, 7.3625, 7.3615, 7.361, 7.3604, 7.3594, 7.3589, 7.358, 7.3577, 7.3569, 7.3558, 7.3586, 7.3611, 7.3605, 7.3595, 7.3588, 7.361, 7.3629, 7.3679, 7.3698, 7.3758, 7.3748, 7.3773, 7.3799, 7.3787, 7.3777, 7.3766, 7.3765, 7.3753, 7.375, 7.3773, 7.3762, 7.3751, 7.3742, 7.3737, 7.3727, 7.3753, 7.3741, 7.3761, 7.3758, 7.3777, 7.3767, 7.379, 7.3811, 7.3833, 7.3821, 7.3812, 7.3862, 7.3853, 7.382, 7.3816, 7.3818, 7.3814, 7.3804, 7.3792, 7.378, 7.3772, 7.3764, 7.379, 7.3791, 7.3783, 7.3773, 7.3764, 7.3754, 7.3778, 7.3771, 7.3762, 7.3756, 7.3776, 7.3765, 7.3755, 7.3744, 7.3768, 7.3772, 7.3794, 7.3818, 7.3808, 7.383, 7.3824, 7.3816, 7.3815, 7.3814, 7.3843, 7.3853, 7.3846, 7.3843, 7.3838, 7.3829, 7.3848, 7.3844, 7.3835, 7.3827, 7.3817, 7.3813, 7.3809, 7.38, 7.379, 7.381, 7.38, 7.3796, 7.3792, 7.3785, 7.378, 7.3774, 7.3771, 7.3825, 7.3819, 7.3841, 7.3861, 7.3851, 7.3852, 7.3847, 7.3865, 7.3854, 7.3876, 7.3865, 7.3854, 7.3851, 7.384, 7.3835, 7.3824, 7.382, 7.3809, 7.3802, 7.3823, 7.3815, 7.384, 7.3829, 7.3827, 7.3822, 7.3859, 7.3851, 7.3847, 7.3845, 7.3837, 7.3873, 7.3865, 7.3861, 7.3851, 7.3844, 7.3835, 7.383, 7.3821, 7.381, 7.3833, 7.3827, 7.3847, 7.3864, 7.3853, 7.3842, 7.3831, 7.382, 7.3812, 7.3807, 7.3796, 7.3846, 7.3836, 7.3827, 7.3817, 7.3837, 7.3803, 7.3824, 7.3846, 7.3874, 7.3864, 7.3889, 7.3885, 7.3881, 7.3878, 7.3868, 7.3863, 7.3852, 7.3844, 7.3836, 7.3833, 7.3825, 7.3817, 7.3812, 7.3802, 7.3821, 7.3812, 7.381, 7.3805, 7.38, 7.3801, 7.3818, 7.3786, 7.3753, 7.3753, 7.3771, 7.376, 7.3752, 7.377, 7.376, 7.375, 7.3739, 7.373, 7.3719, 7.3769, 7.3789, 7.3783, 7.3806, 7.3825, 7.3821, 7.3813, 7.3804, 7.382, 7.3811, 7.3811, 7.3806, 7.3795, 7.379, 7.3839, 7.3831, 7.3822, 7.3818, 7.3837, 7.3856, 7.3846, 7.3844, 7.3834, 7.3826, 7.3818, 7.3813, 7.3804, 7.3825, 7.3817, 7.3815, 7.3806, 7.3798, 7.3816, 7.3807, 7.3822, 7.3814, 7.381, 7.3834, 7.3803, 7.38, 7.3798, 7.3793, 7.3791, 7.3781, 7.3776, 7.3778, 7.3773, 7.3771, 7.3766, 7.3761, 7.3755, 7.375, 7.3743, 7.3735, 7.3755, 7.3744, 7.3735, 7.3727, 7.3723, 7.374, 7.3757, 7.3779, 7.3796, 7.3825, 7.3818, 7.3807, 7.3799, 7.3845, 7.3897, 7.3888, 7.3882, 7.3874, 7.4006, 7.4, 7.399, 7.4008, 7.3998, 7.3988, 7.3978, 7.3975, 7.3966, 7.3957, 7.3947, 7.3944, 7.3947, 7.394, 7.3933, 7.3928, 7.3927, 7.3918, 7.3937, 7.3929, 7.392, 7.3917, 7.3911, 7.3903, 7.3894, 7.3914, 7.3904, 7.3902, 7.3892, 7.3911, 7.3901, 7.3919, 7.3909, 7.3901, 7.3895, 7.3887, 7.3887, 7.3883, 7.3881, 7.3871, 7.3893, 7.3884, 7.3874, 7.3895, 7.3899, 7.3895, 7.3889, 7.388, 7.3877, 7.3875, 7.3866, 7.3855, 7.3848, 7.384, 7.3841, 7.3836, 7.3838, 7.3833, 7.3829, 7.3831, 7.3829, 7.3854, 7.3847, 7.3837, 7.3832, 7.3823, 7.382, 7.3819, 7.3811, 7.3804, 7.3795, 7.3787, 7.3805, 7.3796, 7.3786, 7.3776, 7.3768, 7.3764, 7.3761, 7.3754, 7.3752, 7.3747, 7.3746, 7.3764, 7.3754, 7.3747, 7.3766, 7.3762, 7.3757, 7.3752, 7.3746, 7.3741, 7.3758, 7.3748, 7.3738, 7.3759, 7.3751, 7.3744, 7.3737, 7.3731, 7.3722, 7.3713, 7.3703, 7.3722, 7.3715, 7.3707, 7.3701, 7.3695, 7.3714, 7.3732, 7.3727, 7.3723, 7.374, 7.3737, 7.3732, 7.3727, 7.3725, 7.3717, 7.371, 7.371, 7.37, 7.3696, 7.3686, 7.3682, 7.3672, 7.3694, 7.371, 7.3727, 7.3718, 7.3716, 7.3742, 7.3734, 7.3731, 7.3733, 7.3724, 7.3714, 7.373, 7.3747, 7.3747, 7.3742, 7.3733, 7.3728, 7.3726, 7.3716, 7.3712, 7.3704, 7.3724, 7.3721, 7.3712, 7.3708, 7.3698, 7.3715, 7.3712, 7.3706, 7.37, 7.3697, 7.3742, 7.3736, 7.373, 7.3748, 7.3743, 7.376, 7.3763, 7.3781, 7.3775, 7.3767, 7.3834, 7.3852, 7.3869, 7.3867, 7.3862, 7.3873, 7.3864, 7.3856, 7.3865, 7.3837, 7.3819, 7.3867, 7.3883, 7.3898, 7.3893, 7.3894, 7.3891, 7.389, 7.3883, 7.3877, 7.3872, 7.3892, 7.3884, 7.3878, 7.3883, 7.3904, 7.3924, 7.3915, 7.3915, 7.3912, 7.393, 7.3924, 7.3945, 7.3946, 7.3945, 7.3937, 7.3932, 7.3928, 7.3929, 7.3921, 7.3914, 7.3904, 7.3894, 7.391, 7.3904, 7.39, 7.3893, 7.3893, 7.3909, 7.3884, 7.3879, 7.3877, 7.3871, 7.3888, 7.3879, 7.3871, 7.3862, 7.3879, 7.3873, 7.3867, 7.3874, 7.3867, 7.3861, 7.3879, 7.3871, 7.3896, 7.3906, 7.3897, 7.3892, 7.3883, 7.3876, 7.3895, 7.3911, 7.3906, 7.3898, 7.392, 7.3913, 7.3904, 7.3901, 7.3922, 7.3915, 7.3906, 7.3897, 7.3893, 7.3909, 7.3902, 7.3893, 7.3889, 7.3883, 7.3873, 7.3871, 7.3867, 7.3859, 7.3851, 7.3844, 7.3837, 7.3828, 7.382, 7.3817, 7.3815, 7.3831, 7.3806, 7.3797, 7.3813, 7.3834, 7.3832, 7.3823, 7.3824, 7.3816, 7.3808, 7.3824, 7.3822, 7.3838, 7.3828, 7.3825, 7.3823, 7.3819, 7.3845, 7.3842, 7.3843, 7.3862, 7.3855, 7.3852, 7.3847, 7.3839, 7.3831, 7.3823, 7.3843, 7.3839, 7.383, 7.3826, 7.3822, 7.3813, 7.3806, 7.3797, 7.3813, 7.3804, 7.3798, 7.3824, 7.382, 7.3836, 7.3829, 7.3828, 7.3819, 7.3811, 7.3828, 7.3819, 7.3814, 7.3832, 7.3824, 7.3838, 7.3831, 7.3828, 7.382, 7.3819, 7.3848, 7.3846, 7.384, 7.3832, 7.3828, 7.3829, 7.3834, 7.383, 7.3849, 7.3871, 7.3874, 7.3868, 7.3861, 7.3854, 7.385, 7.3842, 7.3839, 7.3854, 7.3847, 7.3844, 7.3836, 7.3831, 7.3836, 7.386, 7.386, 7.3853, 7.3845, 7.3836, 7.3807, 7.3805, 7.3799, 7.379, 7.3806, 7.3797, 7.3811, 7.3803, 7.3796, 7.38, 7.3799, 7.3799, 7.3832, 7.383, 7.3826, 7.3842, 7.384, 7.3856, 7.3848, 7.3846, 7.3839, 7.3832, 7.3823, 7.3841, 7.3832, 7.383, 7.3823, 7.3816, 7.3807, 7.3804, 7.3795, 7.3788, 7.3807, 7.3826, 7.3818, 7.3815, 7.3807, 7.3801, 7.3797, 7.3794, 7.3788, 7.3783, 7.3777, 7.3769, 7.3761, 7.3754, 7.3749, 7.3747, 7.3747, 7.3744, 7.3736, 7.3749, 7.3767, 7.376, 7.3754, 7.3755, 7.3754, 7.3755, 7.375, 7.3767, 7.3764, 7.3756, 7.3749, 7.3765, 7.3784, 7.3776, 7.3772, 7.3765, 7.376, 7.3753, 7.3747, 7.374, 7.3753, 7.3768, 7.3782, 7.3774, 7.3766, 7.376, 7.3754, 7.373, 7.3747, 7.374, 7.3756, 7.3749, 7.3765, 7.3739, 7.376, 7.3755, 7.3748, 7.3742, 7.3738, 7.3736, 7.373, 7.3723, 7.3722, 7.3737, 7.3733, 7.3748, 7.3745, 7.3744, 7.3757, 7.375, 7.3764, 7.378, 7.3794, 7.3809, 7.3802, 7.3798, 7.3791, 7.3783, 7.3775, 7.3767, 7.3783, 7.3777, 7.3771, 7.3769, 7.3768, 7.3761, 7.3753, 7.3745, 7.374, 7.3735, 7.3726, 7.3741, 7.3733, 7.3726, 7.372, 7.3717, 7.3712, 7.3705, 7.3697, 7.3698, 7.3694, 7.371, 7.3704, 7.3685, 7.3678, 7.3702, 7.3716, 7.3714, 7.3717, 7.3709, 7.3725, 7.3721, 7.3713, 7.3706, 7.3721, 7.3714, 7.3706, 7.3703, 7.3722, 7.3715, 7.3709, 7.3704, 7.3699, 7.3696, 7.3691, 7.3686, 7.3688, 7.3706, 7.3721, 7.3717, 7.3709, 7.3704, 7.3697, 7.369, 7.3683, 7.37, 7.3693, 7.3709, 7.3701, 7.3678, 7.3672, 7.3668, 7.3661, 7.3653, 7.3645, 7.3658, 7.365, 7.3643, 7.3636, 7.3629, 7.3626, 7.3629, 7.3643, 7.3641, 7.3656, 7.3663, 7.3656, 7.3649, 7.3725, 7.3738, 7.3731, 7.3726, 7.3724, 7.3734, 7.3726, 7.3699, 7.3692, 7.3691, 7.3684, 7.3681, 7.3678, 7.3671, 7.3666, 7.366, 7.3653, 7.3648, 7.364, 7.3632, 7.3645, 7.3644, 7.3643, 7.3681, 7.3673, 7.367, 7.3686, 7.3679, 7.3676, 7.3669, 7.3683, 7.3677, 7.3674, 7.3666, 7.3681, 7.3693, 7.3686, 7.3699, 7.3712, 7.3704, 7.3701, 7.3714, 7.371, 7.3708, 7.3701, 7.3693, 7.3688, 7.3687, 7.3702, 7.3703, 7.3699, 7.3677, 7.3682, 7.3674, 7.3687, 7.3681, 7.3683, 7.3677, 7.3669, 7.3674, 7.3668, 7.366, 7.3654, 7.3651, 7.3647, 7.3645, 7.3641, 7.3639, 7.365, 7.3648, 7.3663, 7.3664, 7.3657, 7.3652, 7.3667, 7.3663, 7.3659, 7.3659, 7.3652, 7.3648, 7.3642, 7.3643, 7.364, 7.3635, 7.3635, 7.3628, 7.3622, 7.3616, 7.364, 7.3636, 7.3631, 7.3637, 7.3631, 7.3646, 7.364, 7.3637, 7.3633, 7.363, 7.3623, 7.3615, 7.3607, 7.3602, 7.3617, 7.363, 7.3644, 7.3638, 7.3636, 7.3631, 7.3628, 7.3625, 7.3617, 7.3615, 7.3612, 7.3627, 7.3642, 7.3642, 7.3627, 7.3619, 7.3612, 7.3608, 7.3604, 7.3599, 7.3603, 7.3601, 7.3614, 7.3609, 7.3606, 7.3599, 7.3591, 7.3585, 7.3599, 7.3596, 7.3589, 7.3583, 7.3598, 7.3596, 7.3589, 7.3582, 7.3574, 7.357, 7.3567, 7.3563, 7.3557, 7.356, 7.3555, 7.3556, 7.355, 7.3566, 7.3564, 7.3558, 7.3553, 7.3547, 7.3562, 7.3597, 7.3591, 7.359, 7.3591, 7.3584, 7.3582, 7.3576, 7.3586, 7.3579, 7.3573, 7.3568, 7.3561, 7.3554, 7.3549, 7.3545, 7.3557, 7.355, 7.3547, 7.3543, 7.3556, 7.3549, 7.3542, 7.3535, 7.3528, 7.3524, 7.3522, 7.3559, 7.3552, 7.3529, 7.3521, 7.3521, 7.3534, 7.3534, 7.3527, 7.352, 7.3518, 7.3511, 7.3508, 7.3501, 7.3499, 7.3493, 7.3491, 7.3504, 7.3498, 7.3491, 7.3487, 7.3481, 7.3473, 7.3471, 7.3485, 7.3499, 7.3492, 7.3503, 7.3496, 7.3492, 7.3506, 7.35, 7.3516, 7.3531, 7.3546, 7.3544, 7.3542, 7.3542, 7.3536, 7.3528, 7.3528, 7.352, 7.3523, 7.3516, 7.3509, 7.3524, 7.3518, 7.3512, 7.3506, 7.3499, 7.3493, 7.3508, 7.3501, 7.3494, 7.3488, 7.3486, 7.348, 7.3479, 7.3471, 7.3464, 7.3457, 7.3455, 7.3448, 7.3462, 7.3445, 7.3422, 7.3421, 7.3439, 7.3432, 7.3428, 7.3441, 7.3436, 7.3429, 7.3424, 7.3437, 7.3435, 7.3447, 7.3445, 7.3438, 7.3431, 7.3428, 7.3421, 7.3416, 7.3409, 7.3402, 7.3395, 7.3393, 7.339, 7.3383, 7.3376, 7.3372, 7.3407, 7.3402, 7.3398, 7.3391, 7.3424, 7.3417, 7.3411, 7.3409, 7.3407, 7.3421, 7.3416, 7.3414, 7.3411, 7.3407, 7.34, 7.3393, 7.3389, 7.3387, 7.3381, 7.3376, 7.3371, 7.3368, 7.3366, 7.3365, 7.3381, 7.3394, 7.3391, 7.3405, 7.3398, 7.3391, 7.339, 7.3388, 7.3386, 7.3379, 7.3372, 7.3374, 7.3378, 7.339, 7.3383, 7.3395, 7.3407, 7.3406, 7.341, 7.3403, 7.3397, 7.3392, 7.3386, 7.3382, 7.3382, 7.3376, 7.3369, 7.3364, 7.3357, 7.3357, 7.335, 7.3349, 7.3343, 7.3358, 7.3351, 7.3353, 7.335, 7.3351, 7.3347, 7.334, 7.3336, 7.3336, 7.3331, 7.3324, 7.3317, 7.33, 7.3293, 7.3286, 7.3279, 7.3294, 7.3309, 7.3306, 7.33, 7.3297, 7.3291, 7.3285, 7.3282, 7.3276, 7.3304, 7.3301, 7.3298, 7.3292, 7.3288, 7.3283, 7.3298, 7.3312, 7.3312, 7.3307, 7.3301, 7.3295, 7.3295, 7.329, 7.3285, 7.3299, 7.3295, 7.3294, 7.329, 7.3285, 7.3285, 7.3288, 7.3281, 7.3274, 7.327, 7.3264, 7.3273, 7.3319, 7.332, 7.3342, 7.3342, 7.3338, 7.3332, 7.3328, 7.3321, 7.3317, 7.3315, 7.3311, 7.3327, 7.3324, 7.3321, 7.3315, 7.3309, 7.3302, 7.3299, 7.3311, 7.3308, 7.332, 7.3332, 7.3328, 7.3321, 7.3314, 7.3307, 7.3301, 7.3296, 7.329, 7.3284, 7.328, 7.3277, 7.3271, 7.3265, 7.3277, 7.3274, 7.3289, 7.3283, 7.3278, 7.3275, 7.3319, 7.3384, 7.3396, 7.3408, 7.3419, 7.3416, 7.3414, 7.3408, 7.3404, 7.3417, 7.341, 7.3407, 7.3401, 7.3415, 7.3409, 7.3403, 7.3399, 7.3392, 7.339, 7.3384, 7.3378, 7.3373, 7.3386, 7.3398, 7.3392, 7.3389, 7.3382, 7.3376, 7.3389, 7.3388, 7.3382, 7.3377, 7.339, 7.3386, 7.3387, 7.34, 7.3413, 7.3425, 7.3436, 7.3433, 7.3432, 7.3426, 7.3419, 7.3431, 7.3485, 7.3485, 7.3485, 7.3479, 7.3472, 7.3485, 7.3488, 7.3482, 7.3479, 7.3489, 7.3485, 7.3478, 7.3471, 7.345, 7.3453, 7.3465, 7.3461, 7.3457, 7.3451, 7.3463, 7.3477, 7.3475, 7.3469, 7.3464, 7.3476, 7.3474, 7.3469, 7.3464, 7.3476, 7.3469, 7.3465, 7.3466, 7.3481, 7.3537, 7.3532, 7.3538, 7.3534, 7.3529, 7.3541, 7.3536, 7.353, 7.3524, 7.3522, 7.3517, 7.3515, 7.351, 7.3506, 7.35, 7.3495, 7.3489, 7.3488, 7.3501, 7.3497, 7.3496, 7.349, 7.3485, 7.3479, 7.3475, 7.3474, 7.3487, 7.348, 7.3477, 7.3472, 7.3471, 7.3472, 7.3468, 7.3462, 7.3458, 7.3452, 7.3446, 7.3443, 7.3439, 7.3451, 7.3464, 7.3459, 7.3453, 7.3448, 7.3442, 7.3438, 7.3434, 7.343, 7.3426, 7.3436, 7.3431, 7.343, 7.3452, 7.3446, 7.3489, 7.3485, 7.3478, 7.3472, 7.3468, 7.3465, 7.3479, 7.348, 7.3475, 7.3472, 7.3471, 7.3506, 7.3521, 7.3517, 7.3514, 7.3512, 7.3505, 7.3501, 7.3503, 7.3496, 7.3492, 7.3489, 7.3485, 7.3479, 7.3475, 7.3473, 7.3473, 7.3471, 7.3469, 7.3463, 7.3458, 7.3453, 7.3466, 7.346, 7.3454, 7.3449, 7.3444, 7.3442, 7.3441, 7.3436, 7.3434, 7.343, 7.3425, 7.3422, 7.3416, 7.341, 7.3405, 7.34, 7.3397, 7.3393, 7.3388, 7.3382, 7.3394, 7.339, 7.3385, 7.3378, 7.3392, 7.3406, 7.3402, 7.3396, 7.3391, 7.3389, 7.3401, 7.3395, 7.3408, 7.3403, 7.3398, 7.3397, 7.3392, 7.3387, 7.3382, 7.3375, 7.337, 7.3383, 7.3395, 7.3389, 7.3402, 7.3413, 7.3408, 7.3403, 7.3397, 7.3391, 7.3385, 7.3379, 7.3376, 7.337, 7.3364, 7.3361, 7.3361, 7.3359, 7.3358, 7.337, 7.3367, 7.3363, 7.336, 7.3355, 7.3366, 7.336, 7.3356, 7.335, 7.3344, 7.3342, 7.3336, 7.3332, 7.3326, 7.332, 7.3331, 7.3331, 7.3326, 7.3305, 7.3302, 7.3296, 7.3291, 7.3285, 7.3282, 7.328, 7.3291, 7.3285, 7.3279, 7.3273, 7.3271, 7.3266, 7.326, 7.3256, 7.325, 7.3248, 7.326, 7.3254, 7.3251, 7.3262, 7.3256, 7.325, 7.3247, 7.3259, 7.3258, 7.3271, 7.3266, 7.3278, 7.329, 7.3285, 7.328, 7.3279, 7.3277, 7.3271, 7.3266, 7.3265, 7.3261, 7.3296, 7.3294, 7.3293, 7.3305, 7.33, 7.3296, 7.3291, 7.331, 7.3307, 7.3297, 7.3294, 7.3291, 7.3285, 7.3285, 7.3287, 7.3308, 7.3303, 7.3301, 7.3299, 7.3294, 7.329, 7.3286, 7.328, 7.3279, 7.3278, 7.3272, 7.3269, 7.3267, 7.3262, 7.3258, 7.327, 7.3264, 7.3259, 7.3256, 7.3254, 7.3249, 7.3243, 7.3239, 7.3237, 7.3232, 7.323, 7.3227, 7.3225, 7.3221, 7.3233, 7.3231, 7.3226, 7.3222, 7.3219, 7.3213, 7.3226, 7.3222, 7.3218, 7.3212, 7.3209, 7.322, 7.3216, 7.3211, 7.3205, 7.3206, 7.3201, 7.3181, 7.3175, 7.3187, 7.3187, 7.3188, 7.3198, 7.3194, 7.319, 7.3217, 7.3211, 7.3206, 7.3206, 7.3202, 7.3201, 7.3199, 7.3214, 7.3226, 7.324, 7.3235, 7.3229, 7.3239, 7.3251, 7.3245, 7.3239, 7.337, 7.3365, 7.336, 7.3354, 7.3349, 7.3344, 7.3339, 7.3366, 7.3365, 7.3377, 7.3389, 7.3385, 7.3382, 7.338, 7.3374, 7.3369, 7.337, 7.3365, 7.3366, 7.3364, 7.336, 7.3359, 7.3353, 7.3337, 7.3334, 7.3329, 7.3323, 7.3318, 7.3312, 7.3306, 7.3301, 7.3295, 7.3289, 7.3283, 7.3293, 7.329, 7.3284, 7.3284, 7.328, 7.3277, 7.3272, 7.3282, 7.3279, 7.329, 7.3289, 7.3285, 7.3279, 7.3274, 7.3269, 7.3264, 7.3259, 7.3286, 7.3301, 7.3299, 7.331, 7.3321, 7.3316, 7.3328, 7.3322, 7.3336, 7.3331, 7.3343, 7.3338, 7.3336, 7.3347, 7.3342, 7.3339, 7.3335, 7.333, 7.3341, 7.3337, 7.3334, 7.3331, 7.3326, 7.3328, 7.3329, 7.3324, 7.3322, 7.3321, 7.332, 7.3315, 7.331, 7.3307, 7.332, 7.3314, 7.3314, 7.3312, 7.3306, 7.3303, 7.3298, 7.3301, 7.3299, 7.3294, 7.329, 7.3285, 7.3295, 7.3292, 7.329, 7.33, 7.33, 7.3298, 7.3292, 7.3303, 7.3298, 7.3308, 7.3304, 7.33, 7.3311, 7.3306, 7.33, 7.3297, 7.3296, 7.329, 7.33, 7.33, 7.3294, 7.3295, 7.3311, 7.3312, 7.331, 7.3306, 7.3308, 7.3306, 7.3309, 7.3306, 7.3336, 7.3339, 7.3379, 7.338, 7.3375, 7.3369, 7.3364, 7.3359, 7.3359, 7.3354, 7.3366, 7.336, 7.3355, 7.3349, 7.3346, 7.3356, 7.3352, 7.3346, 7.3327, 7.3321, 7.3315, 7.3312, 7.3306, 7.3301, 7.3297, 7.3291, 7.3322, 7.3317, 7.3305, 7.3325, 7.3341, 7.3351, 7.3346, 7.3346, 7.3344, 7.3356, 7.337, 7.3369, 7.3412, 7.3407, 7.3402, 7.3397, 7.3414, 7.3412, 7.3407, 7.342, 7.3402, 7.3398, 7.3393, 7.3389, 7.3388, 7.3414, 7.3425, 7.342, 7.3416, 7.3413, 7.3411, 7.3412, 7.3409, 7.3404, 7.3403, 7.3398, 7.3393, 7.3389, 7.3401, 7.3412, 7.3411, 7.3406, 7.3405, 7.3418, 7.343, 7.3442, 7.3456, 7.3452, 7.345, 7.3446, 7.3441, 7.3435, 7.3429, 7.3459, 7.3457, 7.3452, 7.3447, 7.3446, 7.3444, 7.3444, 7.3441, 7.3442, 7.3441, 7.3439, 7.3437, 7.3432, 7.3428, 7.3426, 7.3421, 7.3416, 7.3416, 7.3411, 7.3406, 7.34, 7.3404, 7.3415, 7.3413, 7.3409, 7.3406, 7.3401, 7.3396, 7.3398, 7.3407, 7.3402, 7.3398, 7.3394, 7.3404, 7.34, 7.3411, 7.3423, 7.3433, 7.3429, 7.3426, 7.3421, 7.3442, 7.344, 7.3436, 7.3434, 7.3431, 7.3426, 7.3421, 7.3421, 7.3437, 7.3435, 7.3446, 7.3441, 7.3436, 7.3434, 7.3429, 7.3426, 7.343, 7.3426, 7.342, 7.3419, 7.3415, 7.3416, 7.341, 7.3409, 7.3406, 7.3401, 7.3412, 7.3422, 7.3417, 7.3412, 7.3409, 7.3404, 7.34, 7.3397, 7.3394, 7.339, 7.3386, 7.3383, 7.338, 7.3378, 7.3375, 7.3372, 7.3367, 7.3364, 7.3359, 7.3357, 7.3353, 7.3354, 7.3349, 7.3344, 7.3354, 7.3354, 7.3353, 7.3348, 7.3358, 7.3355, 7.3354, 7.3409, 7.3406, 7.3404, 7.3403, 7.3398, 7.3408, 7.3404, 7.3399, 7.3394, 7.339, 7.3389, 7.3383, 7.3378, 7.3373, 7.3372, 7.3367, 7.3364, 7.3366, 7.3362, 7.3373, 7.3373, 7.3383, 7.3379, 7.3389, 7.3386, 7.3383, 7.338, 7.3378, 7.3388, 7.3383, 7.3378, 7.3376, 7.3371, 7.3366, 7.3365, 7.3366, 7.3364, 7.3361, 7.3372, 7.3367, 7.3363, 7.3358, 7.3356, 7.3352, 7.3363, 7.3365, 7.3362, 7.336, 7.3355, 7.3384, 7.338, 7.3374, 7.337, 7.337, 7.3366, 7.3362, 7.336, 7.3388, 7.3386, 7.3386, 7.3414, 7.3431, 7.3427, 7.3422, 7.3435, 7.343, 7.3427, 7.3428, 7.3426, 7.3421, 7.3465, 7.346, 7.3471, 7.3467, 7.3466, 7.3462, 7.3461, 7.3456, 7.3453, 7.3448, 7.3444, 7.344, 7.3435, 7.3433, 7.3437, 7.3433, 7.3429, 7.3426, 7.3426, 7.347, 7.3466, 7.3464, 7.3474, 7.3485, 7.3496, 7.3495, 7.3491, 7.3488, 7.3483, 7.3496, 7.3492, 7.3501, 7.3501, 7.3498, 7.3493, 7.3489, 7.3484, 7.3481, 7.3475, 7.3472, 7.347, 7.3468, 7.3468, 7.3464, 7.3476, 7.3487, 7.3483, 7.3479, 7.3475, 7.3475, 7.349, 7.3485, 7.3528, 7.3524, 7.352, 7.3561, 7.3557, 7.3557, 7.3567, 7.3562, 7.356, 7.3557, 7.3552, 7.3548, 7.3543, 7.3539, 7.3534, 7.3531, 7.3541, 7.3536, 7.3531, 7.3541, 7.3552, 7.3562, 7.3558, 7.3556, 7.3554, 7.3552, 7.3563, 7.356, 7.3557, 7.3566, 7.3561, 7.357, 7.358, 7.3589, 7.3585, 7.3585, 7.358, 7.3576, 7.3572, 7.3572, 7.3583, 7.3595, 7.3589, 7.3584, 7.3581, 7.3576, 7.3585, 7.358, 7.3581, 7.3578, 7.3575, 7.357, 7.3566, 7.3561, 7.3557, 7.3554, 7.355, 7.3545, 7.354, 7.3535, 7.3532, 7.3527, 7.3525, 7.3521, 7.3521, 7.3531, 7.3542, 7.3537, 7.3532, 7.353, 7.3525, 7.3521, 7.3516, 7.3539, 7.355, 7.3549, 7.3546, 7.3544, 7.3544, 7.3539, 7.3535, 7.3534, 7.3546, 7.3544, 7.3544, 7.3555, 7.355, 7.3549, 7.3558, 7.3555, 7.3567, 7.3562, 7.3561, 7.3559, 7.3555, 7.355, 7.3548, 7.3557, 7.3552, 7.3549, 7.3552, 7.3575, 7.3572, 7.3568, 7.3568, 7.3563, 7.3565, 7.3563, 7.3558, 7.3558, 7.3556, 7.3554, 7.3549, 7.3546, 7.3546, 7.3549, 7.3544, 7.3556, 7.3552, 7.3548, 7.3547, 7.3544, 7.3546, 7.3542, 7.3554, 7.3552, 7.3548, 7.3542, 7.3543, 7.3542, 7.3537, 7.3534, 7.3531, 7.3526, 7.3522, 7.3531, 7.3528, 7.3539, 7.3537, 7.3535, 7.3532, 7.3528, 7.3525, 7.3524, 7.352, 7.3524, 7.3519, 7.3516, 7.3525, 7.3522, 7.3521, 7.3517, 7.3514, 7.3527, 7.3526, 7.3523, 7.3562, 7.3571, 7.3568, 7.3563, 7.3576, 7.3572, 7.3568, 7.3563, 7.3573, 7.3568, 7.3567, 7.3564, 7.3559, 7.3556, 7.3551, 7.3546, 7.3542, 7.3539, 7.3535, 7.353, 7.3525, 7.3525, 7.3536, 7.3531, 7.3526, 7.3523, 7.3518, 7.3513, 7.3508, 7.3505, 7.3504, 7.351, 7.3508, 7.3517, 7.3515, 7.351, 7.3519, 7.3515, 7.3525, 7.3534, 7.3558, 7.3573, 7.357, 7.3568, 7.3567, 7.3576, 7.3575, 7.3571, 7.357, 7.3579, 7.3574, 7.3583, 7.358, 7.3575, 7.3572, 7.3567, 7.3567, 7.3578, 7.3577, 7.3576, 7.3573, 7.3568, 7.3563, 7.3548, 7.3545, 7.354, 7.3537, 7.3555, 7.3552, 7.3562, 7.3557, 7.3555, 7.3564, 7.356, 7.3556, 7.3551, 7.355, 7.3547, 7.3547, 7.3558, 7.3554, 7.3553, 7.3566, 7.3563, 7.356, 7.3555, 7.3553, 7.3549, 7.3548, 7.3543, 7.3551, 7.3547, 7.3544, 7.3554, 7.3552, 7.355, 7.3546, 7.3542, 7.3538, 7.3537, 7.3533, 7.3533, 7.3546, 7.3542, 7.3537, 7.3532, 7.3528, 7.3539, 7.354, 7.3536, 7.3534, 7.353, 7.3526, 7.3524, 7.3541, 7.3537, 7.3534, 7.3531, 7.3542, 7.3553, 7.3552, 7.356, 7.357, 7.3569, 7.3565, 7.3576, 7.3571, 7.3572, 7.357, 7.3571, 7.3569, 7.3565, 7.3561, 7.3559, 7.3554, 7.3551, 7.3566, 7.3561, 7.357, 7.3569, 7.3568, 7.3563, 7.356, 7.3561, 7.3556, 7.3542, 7.3542, 7.3538, 7.3541, 7.3549, 7.3548, 7.3545, 7.3542, 7.3551, 7.3548, 7.3545, 7.354, 7.3541, 7.3536, 7.3545, 7.354, 7.3538, 7.3537, 7.3546, 7.3546, 7.3541, 7.3542, 7.3537, 7.3536, 7.3545, 7.3544, 7.3542, 7.3552, 7.3549, 7.3558, 7.3554, 7.3551, 7.356, 7.3569, 7.358, 7.3577, 7.3573, 7.357, 7.3567, 7.3568, 7.3573, 7.3569, 7.3571, 7.3569, 7.3577, 7.3574, 7.3571, 7.3568, 7.3564, 7.3563, 7.3558, 7.3553, 7.3548, 7.3546, 7.3555, 7.3551, 7.3561, 7.3556, 7.3551, 7.3547, 7.3556, 7.3552, 7.3548, 7.3547, 7.3545, 7.3541, 7.3537, 7.3535, 7.3546, 7.3542, 7.3538, 7.3536, 7.3531, 7.3542, 7.3553, 7.3549, 7.3545, 7.3543, 7.3539, 7.3542, 7.3601, 7.3598, 7.3594, 7.3595, 7.3595, 7.3592, 7.3592, 7.3588, 7.3598, 7.3595, 7.359, 7.36, 7.3599, 7.3602, 7.364, 7.3625, 7.3611, 7.3597, 7.3593, 7.3589, 7.3588, 7.359, 7.3587, 7.3583, 7.3581, 7.359, 7.3601, 7.3597, 7.3592, 7.3589, 7.3586, 7.3581, 7.3579, 7.3575, 7.3572, 7.3569, 7.3566, 7.355, 7.3545, 7.3541, 7.3539, 7.3534, 7.3544, 7.3542, 7.354, 7.3535, 7.3532, 7.3532, 7.3534, 7.353, 7.354, 7.3541, 7.3542, 7.3542, 7.3541, 7.3544, 7.354, 7.3538, 7.3537, 7.3537, 7.3546, 7.3542, 7.3539, 7.3548, 7.3558, 7.3567, 7.3576, 7.3572, 7.3568, 7.3567, 7.3564, 7.3593, 7.359, 7.3587, 7.3583, 7.3579, 7.3578, 7.3586, 7.3582, 7.3577, 7.3586, 7.3581, 7.3589, 7.3585, 7.3581, 7.3577, 7.3573, 7.3575, 7.3572, 7.3572, 7.3582, 7.3577, 7.3572, 7.3571, 7.3569, 7.3564, 7.3559, 7.3555, 7.3553, 7.3552, 7.355, 7.3546, 7.3533, 7.3542, 7.3538, 7.3536, 7.3531, 7.3527, 7.3527, 7.3537, 7.3524, 7.3524, 7.3521, 7.353, 7.354, 7.3536, 7.3533, 7.3529, 7.3527, 7.3522, 7.3528, 7.3523, 7.3519, 7.3531, 7.3616, 7.3611, 7.361, 7.3606, 7.3601, 7.3599, 7.3596, 7.3592, 7.3587, 7.3584, 7.3579, 7.3574, 7.3581, 7.3592, 7.3587, 7.3598, 7.3595, 7.3591, 7.3589, 7.3587, 7.3583, 7.3578, 7.3575, 7.357, 7.3579, 7.3578, 7.3576, 7.3583, 7.358, 7.3577, 7.3595, 7.3607, 7.3602, 7.3598, 7.3607, 7.3605, 7.3601, 7.3597, 7.3596, 7.3592, 7.3589, 7.3589, 7.3589, 7.3585, 7.3583, 7.358, 7.358, 7.3575, 7.3571, 7.3595, 7.3593, 7.3589, 7.3585, 7.358, 7.3577, 7.3575, 7.357, 7.3566, 7.3561, 7.3569, 7.3566, 7.3563, 7.3574, 7.3572, 7.3567, 7.3563, 7.3562, 7.3558, 7.3554, 7.3566, 7.3564, 7.356, 7.3556, 7.3552, 7.3547, 7.355, 7.3549, 7.3545, 7.3553, 7.355, 7.3536, 7.3559, 7.3556, 7.3564, 7.3561, 7.3557, 7.3555, 7.3566, 7.3576, 7.3575, 7.3571, 7.357, 7.3581, 7.3579, 7.3576, 7.3574, 7.3573, 7.3569, 7.3567, 7.3563, 7.3614, 7.361, 7.3606, 7.3604, 7.3613, 7.3609, 7.3606, 7.3602, 7.3612, 7.3609, 7.3605, 7.3601, 7.3598, 7.3599, 7.3598, 7.3594, 7.3595, 7.3591, 7.3589, 7.3635, 7.3636, 7.3632, 7.363, 7.3628, 7.3625, 7.3624, 7.3646, 7.3645, 7.3644, 7.363, 7.3627, 7.3636, 7.3634, 7.362, 7.3605, 7.3602, 7.3601, 7.3601, 7.3598, 7.3608, 7.3609, 7.3618, 7.3614, 7.3615, 7.3615, 7.3612, 7.3598, 7.3597, 7.3593, 7.359, 7.3587, 7.3575, 7.3572, 7.3568, 7.3565, 7.3561, 7.3559, 7.3556, 7.3565, 7.3561, 7.3559, 7.3556, 7.3551, 7.3562, 7.3559, 7.3573, 7.3569, 7.3555, 7.3554, 7.3549, 7.3546, 7.3541, 7.3543, 7.3541, 7.354, 7.3548, 7.3547, 7.3551, 7.3567, 7.3578, 7.3575, 7.3571, 7.3579, 7.3578, 7.3574, 7.3582, 7.3578, 7.3574, 7.357, 7.3565, 7.355, 7.3545, 7.3545, 7.3543, 7.3543, 7.3552, 7.3548, 7.3544, 7.354, 7.355, 7.3547, 7.3543, 7.3539, 7.3535, 7.3533, 7.3529, 7.3537, 7.3535, 7.3531, 7.3532, 7.3534, 7.353, 7.3527, 7.3536, 7.3533, 7.3533, 7.3531, 7.3527, 7.3523, 7.3519, 7.3515, 7.3513, 7.3512, 7.3508, 7.3507, 7.3515, 7.3512, 7.3499, 7.3498, 7.3537, 7.3534, 7.3533, 7.353, 7.3528, 7.3526, 7.3536, 7.3546, 7.3542, 7.3539, 7.3537, 7.3533, 7.3541, 7.355, 7.3547, 7.3545, 7.354, 7.354, 7.3538, 7.3534, 7.3543, 7.3552, 7.356, 7.3563, 7.3565, 7.3567, 7.357, 7.357, 7.3581, 7.3591, 7.3591, 7.3587, 7.3586, 7.3582, 7.3579, 7.3576, 7.3574, 7.357, 7.3567, 7.3563, 7.3561, 7.356, 7.3569, 7.3565, 7.3563, 7.3559, 7.3555, 7.3554, 7.3552, 7.356, 7.3568, 7.3567, 7.3564, 7.3567, 7.3554, 7.355, 7.3549, 7.3571, 7.3568, 7.3583, 7.3581, 7.358, 7.3577, 7.3564, 7.356, 7.3557, 7.3553, 7.3561, 7.3557, 7.3553, 7.3551, 7.3547, 7.3554, 7.3549, 7.3556, 7.3553, 7.3549, 7.3547, 7.3543, 7.3541, 7.3541, 7.3549, 7.3546, 7.3555, 7.3564, 7.3561, 7.3559, 7.3557, 7.3553, 7.3561, 7.3559, 7.3568, 7.3565, 7.3564, 7.3572, 7.3571, 7.357, 7.3579, 7.3578, 7.3577, 7.3572, 7.3571, 7.3569, 7.3566, 7.3562, 7.3562, 7.3575, 7.3583, 7.3582, 7.3577, 7.3573, 7.3582, 7.359, 7.359, 7.359, 7.3598, 7.3649, 7.3645, 7.3653, 7.3661, 7.366, 7.3658, 7.3667, 7.3663, 7.3662, 7.3661, 7.3658, 7.3655, 7.3653, 7.3652, 7.3652, 7.3651, 7.365, 7.3658, 7.3646, 7.3646, 7.3642, 7.3639, 7.3635, 7.3636, 7.3633, 7.3632, 7.3631, 7.3627, 7.3623, 7.3621, 7.3616, 7.3623, 7.3623, 7.3621, 7.3607, 7.3605, 7.3601, 7.3609, 7.3618, 7.3627, 7.3623, 7.3621, 7.3608, 7.3617, 7.3614, 7.3637, 7.3634, 7.3633, 7.3641, 7.364, 7.3655, 7.3651, 7.3649, 7.3647, 7.3646, 7.3653, 7.3661, 7.3657, 7.3653, 7.3662, 7.3683, 7.3691, 7.3688, 7.3696, 7.3705, 7.3731, 7.373, 7.3728, 7.3725, 7.3729, 7.3726, 7.3725, 7.3733, 7.3732, 7.373, 7.373, 7.3728, 7.3727, 7.3723, 7.3723, 7.3721, 7.3717, 7.3714, 7.3713, 7.3709, 7.3718, 7.3716, 7.3713, 7.371, 7.371, 7.372, 7.3736, 7.3746, 7.3744, 7.374, 7.3737, 7.3735, 7.3731, 7.3728, 7.3726, 7.3723, 7.3718, 7.3726, 7.3723, 7.3731, 7.3726, 7.3726, 7.3726, 7.3733, 7.3728, 7.3724, 7.3723, 7.372, 7.3716, 7.3714, 7.3711, 7.3718, 7.3725, 7.3725, 7.3722, 7.3722, 7.3719, 7.3715, 7.3701, 7.3698, 7.3707, 7.3705, 7.3703, 7.3702, 7.3698, 7.3694, 7.3692, 7.3688, 7.3676, 7.3676, 7.3673, 7.3673, 7.3671, 7.3669, 7.3672, 7.3679, 7.3677, 7.3676, 7.3675, 7.3684, 7.3692, 7.3689, 7.3689, 7.3686, 7.3685, 7.3693, 7.369, 7.3686, 7.3682, 7.3679, 7.3676, 7.3674, 7.3672, 7.367, 7.3667, 7.3676, 7.3675, 7.3673, 7.3683, 7.369, 7.3687, 7.3687, 7.3686, 7.3675, 7.3675, 7.3684, 7.3692, 7.369, 7.3685, 7.3681, 7.3677, 7.3673, 7.367, 7.3678, 7.3686, 7.3685, 7.3681, 7.3677, 7.3676, 7.3672, 7.3668, 7.3664, 7.366, 7.3658, 7.3657, 7.3643, 7.3641, 7.3646, 7.3643, 7.3639, 7.3646, 7.3642, 7.3638, 7.3626, 7.3634, 7.363, 7.3639, 7.3636, 7.3633, 7.3629, 7.364, 7.3636, 7.3632, 7.3629, 7.3638, 7.3636, 7.3624, 7.3623, 7.3621, 7.3628, 7.3623, 7.3619, 7.3615, 7.3613, 7.3601, 7.3609, 7.3605, 7.3601, 7.3608, 7.3607, 7.3616, 7.3612, 7.3608, 7.3604, 7.3614, 7.3612, 7.3614, 7.3613, 7.3609, 7.3609, 7.3607, 7.3604, 7.3604, 7.3602, 7.3599, 7.3595, 7.3593, 7.36, 7.3596, 7.3594, 7.3594, 7.3581, 7.3581, 7.3597, 7.3606, 7.3606, 7.3603, 7.36, 7.3599, 7.3596, 7.3605, 7.3615, 7.3614, 7.3613, 7.3622, 7.3621, 7.3618, 7.3615, 7.3612, 7.3608, 7.3637, 7.3637, 7.3634, 7.3632, 7.3644, 7.364, 7.3637, 7.3636, 7.3633, 7.3631, 7.363, 7.3627, 7.3624, 7.3633, 7.3631, 7.3627, 7.3625, 7.3636, 7.3637, 7.3636, 7.3634, 7.363, 7.3628, 7.3624, 7.3621, 7.3628, 7.3624, 7.3633, 7.363, 7.364, 7.3636, 7.3636, 7.3635, 7.3633, 7.3631, 7.364, 7.3637, 7.3633, 7.3642, 7.3639, 7.3638, 7.3634, 7.3641, 7.3648, 7.3648, 7.3646, 7.3644, 7.3641, 7.363, 7.3659, 7.3668, 7.3681, 7.3679, 7.3675, 7.3673, 7.3669, 7.3665, 7.3662, 7.3658, 7.3658, 7.3659, 7.3656, 7.3653, 7.3652, 7.366, 7.366, 7.3658, 7.3655, 7.3664, 7.3662, 7.366, 7.3666, 7.3662, 7.367, 7.3666, 7.3674, 7.3671, 7.367, 7.3678, 7.3665, 7.3662, 7.3662, 7.366, 7.3656, 7.3699, 7.3717, 7.3713, 7.3709, 7.3705, 7.3703, 7.3701, 7.3699, 7.3697, 7.3684, 7.368, 7.3687, 7.3683, 7.3682, 7.3679, 7.3686, 7.3682, 7.3678, 7.3676, 7.3674, 7.3673, 7.3672, 7.3669, 7.3677, 7.3676, 7.3675, 7.3684, 7.3692, 7.369, 7.3689, 7.3689, 7.3686, 7.3685, 7.3686, 7.3684, 7.3681, 7.3677, 7.3673, 7.3669, 7.3667, 7.3663, 7.3673, 7.367, 7.3666, 7.3664, 7.366, 7.3656, 7.3652, 7.3648, 7.3663, 7.3697, 7.3715, 7.3722, 7.372, 7.3719, 7.3715, 7.3716, 7.3735, 7.3753, 7.376, 7.3757, 7.3747, 7.3743, 7.3751, 7.3759, 7.3769, 7.3765, 7.3815, 7.3823, 7.382, 7.3817, 7.3814, 7.3811, 7.381, 7.3817, 7.3813, 7.382, 7.3818, 7.3817, 7.3814, 7.3822, 7.3821, 7.3828, 7.3826, 7.3822, 7.3819, 7.3818, 7.3828, 7.3845, 7.3842, 7.3849, 7.3846, 7.3843, 7.3841, 7.3837, 7.3833, 7.383, 7.3838, 7.3844, 7.3852, 7.386, 7.3857, 7.3853, 7.3849, 7.3856, 7.3853, 7.3861, 7.3858, 7.3854, 7.3868, 7.3871, 7.3868, 7.3866, 7.3865, 7.3861, 7.3857, 7.3864, 7.3868, 7.3855, 7.3851, 7.3858, 7.3855, 7.3852, 7.3859, 7.3855, 7.3862, 7.3858, 7.3855, 7.3852, 7.385, 7.3847, 7.3847, 7.3847, 7.3836, 7.3832, 7.3841, 7.3839, 7.3843, 7.384, 7.3847, 7.3844, 7.3845, 7.3841, 7.3838, 7.3835, 7.3841, 7.3849, 7.3847, 7.3844, 7.3852, 7.3853, 7.3849, 7.3845, 7.3844, 7.3843, 7.385, 7.3847, 7.3844, 7.3842, 7.3848, 7.3845, 7.3842, 7.384, 7.3851, 7.3847, 7.3844, 7.384, 7.3842, 7.384, 7.3848, 7.3846, 7.3842, 7.3838, 7.3842, 7.3845, 7.3841, 7.3838, 7.3835, 7.3824, 7.3821, 7.3827, 7.3834, 7.383, 7.3829, 7.3838, 7.3836, 7.3843, 7.384, 7.3846, 7.3844, 7.3842, 7.3838, 7.3846, 7.3844, 7.3843, 7.384, 7.3837, 7.3835, 7.3836, 7.3834, 7.383, 7.3829, 7.3831, 7.3838, 7.3839, 7.3835, 7.3843, 7.3851, 7.3847, 7.3846, 7.3844, 7.3843, 7.3841, 7.384, 7.3838, 7.3846, 7.3842, 7.3841, 7.3848, 7.3844, 7.3842, 7.3842, 7.3838, 7.3835, 7.3831, 7.3828, 7.3825, 7.3833, 7.383, 7.3827, 7.3823, 7.3819, 7.3817, 7.3815, 7.3822, 7.3821, 7.3818, 7.3817, 7.3815, 7.3814, 7.3812, 7.3817, 7.3815, 7.3812, 7.381, 7.3809, 7.3818, 7.3815, 7.3812, 7.3809, 7.3817, 7.382, 7.3819, 7.3816, 7.3815, 7.3813, 7.3809, 7.3809, 7.3818, 7.3814, 7.3813, 7.3825, 7.3822, 7.383, 7.3827, 7.3823, 7.3831, 7.3828, 7.3825, 7.3821, 7.3818, 7.3815, 7.3813, 7.381, 7.3809, 7.3827, 7.3824, 7.3814, 7.3824, 7.3821, 7.3822, 7.3823, 7.382, 7.3828, 7.3837, 7.3835, 7.3844, 7.3845, 7.3841, 7.3838, 7.3835, 7.3832, 7.383, 7.3826, 7.3826, 7.3825, 7.3824, 7.3824, 7.3831, 7.3829, 7.3836, 7.3833, 7.3842, 7.3839, 7.3835, 7.3842, 7.384, 7.3837, 7.3834, 7.3831, 7.3828, 7.3828, 7.3835, 7.3832, 7.3829, 7.3826, 7.3825, 7.3823, 7.3819, 7.3826, 7.3824, 7.3822, 7.383, 7.3828, 7.3827, 7.3826, 7.3822, 7.3819, 7.3828, 7.3827, 7.3827, 7.3827, 7.3824, 7.382, 7.3818, 7.3815, 7.3811, 7.3799, 7.3789, 7.3804, 7.3801, 7.3807, 7.3804, 7.3806, 7.3797, 7.3794, 7.3791, 7.3791, 7.3787, 7.3786, 7.3783, 7.3781, 7.3788, 7.3785, 7.3783, 7.3782, 7.3779, 7.3788, 7.3785, 7.3783, 7.378, 7.3777, 7.3774, 7.377, 7.3767, 7.3766, 7.3763, 7.376, 7.3757, 7.3764, 7.3797, 7.3794, 7.3793, 7.3801, 7.3797, 7.3793, 7.3807, 7.3803, 7.3799, 7.3803, 7.38, 7.3797, 7.3804, 7.3801, 7.38, 7.3808, 7.3825, 7.3822, 7.3828, 7.3827, 7.3823, 7.3819, 7.3816, 7.3814, 7.3812, 7.382, 7.3828, 7.3824, 7.3821, 7.382, 7.3827, 7.3815, 7.3821, 7.3818, 7.3819, 7.3825, 7.3824, 7.3822, 7.3821, 7.3817, 7.3814, 7.3821, 7.3822, 7.3819, 7.3817, 7.3814, 7.3811, 7.3808, 7.3805, 7.3804, 7.38, 7.3789, 7.3785, 7.3781, 7.3777, 7.3774, 7.3772, 7.3769, 7.3766, 7.3775, 7.3765, 7.3753, 7.3743, 7.3748, 7.3756, 7.3744, 7.3742, 7.374, 7.3747, 7.3743, 7.3742, 7.3742, 7.3739, 7.3738, 7.3736, 7.3743, 7.3751, 7.375, 7.3748, 7.3744, 7.3742, 7.3758, 7.3758, 7.3754, 7.3752, 7.3749, 7.3747, 7.3753, 7.3786, 7.3782, 7.3778, 7.3776, 7.3773, 7.3771, 7.3768, 7.3767, 7.3764, 7.3761, 7.3761, 7.3759, 7.3765, 7.3761, 7.3758, 7.3755, 7.3751, 7.3748, 7.3755, 7.376, 7.3757, 7.3756, 7.3753, 7.376, 7.3758, 7.3758, 7.3754, 7.3753, 7.375, 7.3756, 7.3752, 7.3759, 7.3805, 7.3806, 7.3805, 7.3802, 7.38, 7.3799, 7.3797, 7.3803, 7.3802, 7.3801, 7.3797, 7.3798, 7.3807, 7.3804, 7.38, 7.3806, 7.3805, 7.3803, 7.38, 7.3796, 7.3793, 7.3799, 7.3796, 7.3803, 7.3801, 7.3801, 7.38, 7.3797, 7.3795, 7.3794, 7.3791, 7.3798, 7.3794, 7.3793, 7.3791, 7.3801, 7.3808, 7.3805, 7.3802, 7.38, 7.3797, 7.3795, 7.3792, 7.3789, 7.3777, 7.3784, 7.379, 7.3787, 7.3785, 7.3801, 7.3791, 7.3789, 7.3786, 7.3784, 7.3782, 7.3772, 7.3779, 7.3786, 7.379, 7.3797, 7.3813, 7.3811, 7.3809, 7.3806, 7.3803, 7.38, 7.3797, 7.3794, 7.3794, 7.3792, 7.3789, 7.3785, 7.3781, 7.3798, 7.3796, 7.3792, 7.3789, 7.3779, 7.3779, 7.3776, 7.3766, 7.3755, 7.3762, 7.3762, 7.3759, 7.3756, 7.3765, 7.3767, 7.3756, 7.3753, 7.3749, 7.3746, 7.3745, 7.3742, 7.3739, 7.3738, 7.3735, 7.3731, 7.3731, 7.3728, 7.3729, 7.3727, 7.3723, 7.3723, 7.372, 7.3717, 7.3724, 7.3721, 7.3718, 7.3716, 7.3713, 7.3713, 7.371, 7.3717, 7.3714, 7.3712, 7.3709, 7.3705, 7.3704, 7.3703, 7.3696, 7.3696, 7.3693, 7.369, 7.3687, 7.3684, 7.369, 7.3687, 7.3694, 7.369, 7.369, 7.3686, 7.3685, 7.3683, 7.3681, 7.369, 7.3686, 7.3692, 7.3695, 7.3692, 7.3689, 7.3685, 7.3694, 7.369, 7.3679, 7.3676, 7.3693, 7.3689, 7.3685, 7.3684, 7.3682, 7.3678, 7.3684, 7.368, 7.368, 7.3676, 7.3683, 7.3689, 7.3687, 7.3684, 7.3683, 7.3682, 7.3683, 7.3691, 7.3681, 7.3671, 7.3669, 7.3671, 7.3668, 7.3665, 7.3662, 7.3661, 7.365, 7.3649, 7.3649, 7.3646, 7.3644, 7.364, 7.3657, 7.3663, 7.3708, 7.3706, 7.3703, 7.3706, 7.3712, 7.3719, 7.3717, 7.3714, 7.3711, 7.3701, 7.3698, 7.3695, 7.3692, 7.369, 7.3693, 7.3692, 7.3688, 7.3686, 7.3684, 7.3681, 7.3677, 7.3685, 7.3683, 7.3682, 7.3679, 7.3676, 7.3673, 7.3674, 7.3671, 7.367, 7.3669, 7.3666, 7.3672, 7.3678, 7.3677, 7.3684, 7.368, 7.3676, 7.3674, 7.368, 7.3686, 7.3682, 7.3679, 7.3676, 7.3683, 7.368, 7.3678, 7.3674, 7.3671, 7.3672, 7.3678, 7.3677, 7.3683, 7.37, 7.3689, 7.3696, 7.3693, 7.3699, 7.37, 7.3699, 7.3698, 7.3696, 7.3695, 7.3702, 7.37, 7.3697, 7.3703, 7.3701, 7.3698, 7.3699, 7.3697, 7.3694, 7.37, 7.3697, 7.3704, 7.37, 7.3699, 7.3696, 7.3703, 7.371, 7.3707, 7.3714, 7.3711, 7.3708, 7.3705, 7.3704, 7.3705, 7.3701, 7.3698, 7.3696, 7.3697, 7.3694, 7.3694, 7.3701, 7.3698, 7.37, 7.3698, 7.3695, 7.3713, 7.3712, 7.3719, 7.3725, 7.3728, 7.3724, 7.3722, 7.3719, 7.3718, 7.3716, 7.3713, 7.3711, 7.3717, 7.3723, 7.3721, 7.3719, 7.3718, 7.3716, 7.3713, 7.3711, 7.3708, 7.3714, 7.3712, 7.3709, 7.3707, 7.3713, 7.371, 7.3708, 7.3707, 7.3704, 7.3711, 7.3708, 7.3704, 7.3702, 7.3708, 7.3706, 7.3703, 7.3699, 7.3705, 7.3702, 7.3717, 7.3727, 7.3725, 7.3733, 7.3739, 7.3744, 7.3743, 7.374, 7.3739, 7.3738, 7.3734, 7.3741, 7.3737, 7.3754, 7.3752, 7.3751, 7.3777, 7.3775, 7.3774, 7.3773, 7.3808, 7.3805, 7.3803, 7.3799, 7.3796, 7.3793, 7.3791, 7.3789, 7.3787, 7.3784, 7.3782, 7.378, 7.3777, 7.3774, 7.378, 7.3778, 7.3777, 7.3774, 7.3771, 7.3768, 7.3764, 7.377, 7.3768, 7.3767, 7.3773, 7.3772, 7.3778, 7.3778, 7.3776, 7.3773, 7.3771, 7.377, 7.3767, 7.3766, 7.3774, 7.3771, 7.377, 7.3777, 7.3784, 7.3783, 7.3789, 7.3791, 7.3788, 7.3795, 7.3793, 7.3791, 7.3788, 7.3785, 7.3784, 7.3781, 7.3778, 7.3794, 7.3803, 7.3821, 7.3831, 7.3831, 7.3827, 7.3824, 7.3831, 7.3829, 7.3834, 7.384, 7.3847, 7.3853, 7.3851, 7.3851, 7.3848, 7.3848, 7.3849, 7.3855, 7.3852, 7.3859, 7.3858, 7.3855, 7.3853, 7.3852, 7.385, 7.3848, 7.3845, 7.386, 7.3858, 7.3865, 7.3862, 7.3862, 7.3859, 7.3866, 7.3865, 7.3862, 7.3868, 7.3865, 7.3862, 7.386, 7.3856, 7.3854, 7.3853, 7.3853, 7.385, 7.3847, 7.3844, 7.3851, 7.3857, 7.3863, 7.386, 7.3861, 7.3868, 7.3867, 7.3866, 7.3863, 7.386, 7.3866, 7.3873, 7.3872, 7.3869, 7.3866, 7.3863, 7.3862, 7.3861, 7.3861, 7.386, 7.3858, 7.3856, 7.3853, 7.3851, 7.385, 7.3848, 7.3846, 7.3842, 7.3838, 7.3843, 7.3839, 7.3836, 7.3834, 7.3839, 7.3835, 7.3832, 7.3847, 7.3846, 7.3843, 7.3851, 7.3859, 7.3856, 7.3854, 7.3851, 7.385, 7.3848, 7.3847, 7.3854, 7.3851, 7.3848, 7.3846, 7.3853, 7.3852, 7.385, 7.3849, 7.3847, 7.3845, 7.3844, 7.3843, 7.3849, 7.3846, 7.3845, 7.3841, 7.3838, 7.3835, 7.3833, 7.3831, 7.383, 7.3827, 7.3833, 7.3829, 7.3826, 7.3832, 7.3829, 7.3834, 7.3831, 7.3828, 7.3824, 7.3824, 7.3821, 7.3821, 7.3819, 7.3829, 7.3826, 7.3836, 7.3836, 7.3843, 7.3849, 7.3855, 7.3853, 7.385, 7.3856, 7.3862, 7.3859, 7.3856, 7.3872, 7.3879, 7.3878, 7.3876, 7.3873, 7.387, 7.387, 7.3869, 7.3866, 7.3863, 7.3872, 7.3871, 7.3871, 7.3877, 7.3877, 7.3875, 7.3873, 7.3871, 7.3868, 7.3867, 7.3864, 7.387, 7.3867, 7.3864, 7.3861, 7.386, 7.3857, 7.3862, 7.3858, 7.3855, 7.3853, 7.385, 7.3849, 7.3849, 7.3852, 7.3849, 7.3847, 7.3844, 7.3851, 7.3851, 7.385, 7.3848, 7.3848, 7.3845, 7.3852, 7.3849, 7.3846, 7.3843, 7.3841, 7.3842, 7.384, 7.3839, 7.3836, 7.3842, 7.384, 7.3838, 7.3837, 7.384, 7.3839, 7.3836, 7.3834, 7.3832, 7.3829, 7.3827, 7.3823, 7.3822, 7.3819, 7.3817, 7.3815, 7.3822, 7.3822, 7.382, 7.3817, 7.3815, 7.3812, 7.3811, 7.3817, 7.3824, 7.3823, 7.3825, 7.3831, 7.3828, 7.3824, 7.3822, 7.382, 7.3854, 7.3851, 7.3848, 7.3847, 7.3846, 7.3843, 7.3849, 7.3846, 7.3843, 7.384, 7.3836, 7.3833, 7.3839, 7.3845, 7.3842, 7.3839, 7.3838, 7.3835, 7.3832, 7.3828, 7.3826, 7.3832, 7.383, 7.3827, 7.3833, 7.3832, 7.383, 7.3829, 7.3826, 7.3823, 7.382, 7.3817, 7.3815, 7.3812, 7.381, 7.3807, 7.3806, 7.3803, 7.38, 7.38, 7.3797, 7.3794, 7.3792, 7.3792, 7.3789, 7.3785, 7.3791, 7.3789, 7.3786, 7.3784, 7.3783, 7.3781, 7.3778, 7.3784, 7.378, 7.378, 7.3787, 7.3793, 7.3799, 7.3796, 7.3793, 7.379, 7.3789, 7.3787, 7.3784, 7.3782, 7.3779, 7.3815, 7.3812, 7.3809, 7.3806, 7.3803, 7.3808, 7.3805, 7.3803, 7.38, 7.3797, 7.3803, 7.3811, 7.3817, 7.3814, 7.3813, 7.3819, 7.3817, 7.3814, 7.3813, 7.3813, 7.3811, 7.381, 7.3819, 7.3838, 7.3836, 7.3834, 7.3841, 7.384, 7.3838, 7.3836, 7.3834, 7.3833, 7.3833, 7.3835, 7.3835, 7.3832, 7.3839, 7.3837, 7.3837, 7.3835, 7.384, 7.3846, 7.3843, 7.385, 7.3846, 7.3845, 7.3842, 7.3839, 7.3845, 7.385, 7.3856, 7.3862, 7.3859, 7.3862], '192.168.122.111': [12.8591, 9.6321, 8.4709, 7.7046, 7.2502, 7.1512, 7.1076, 6.9708, 6.8312, 6.7373, 6.6969, 6.5837, 6.5682, 6.493, 6.8074, 6.7252, 6.6819, 6.6436, 6.6111, 6.5545, 6.5628, 6.5383, 6.5481, 6.4984, 6.4812, 6.4362, 6.599, 6.8248, 6.97, 6.9293, 6.9054, 6.9004, 6.8544, 6.9723, 7.0869, 7.0812, 7.0523, 7.0334, 7.0091, 6.9806, 6.9656, 6.9545, 6.9349, 6.9103, 6.8951, 6.8632, 6.8416, 6.8207, 6.8142, 6.8069, 6.789, 6.7633, 6.8421, 6.8299, 6.8255, 6.803, 6.791, 6.8685, 6.843, 6.8185, 6.7967, 6.796, 6.7823, 6.7835, 6.7681, 6.7627, 6.7439, 6.7292, 6.7175, 6.6975, 6.6787, 6.7396, 6.7224, 6.7193, 6.7063, 6.6936, 6.6828, 6.7344, 6.7191, 6.7138, 6.7083, 6.7693, 6.7571, 6.7644, 6.7512, 6.7514, 6.7396, 6.7289, 6.7183, 6.7119, 6.7025, 6.6876, 6.7355, 6.7202, 6.7055, 6.6964, 6.6816, 6.7248, 6.765, 6.7583, 6.7454, 6.7337, 6.7212, 6.7189, 6.7137, 6.7006, 6.6974, 6.687, 6.6931, 6.8695, 6.86, 6.846, 6.838, 6.8328, 6.8252, 6.9776, 6.9731, 7.0441, 7.0751, 7.0653, 7.0549, 7.0428, 7.0287, 7.0167, 7.0508, 7.0382, 7.0702, 7.0592, 7.0488, 7.0412, 7.0284, 7.0165, 7.004, 6.9969, 6.9894, 6.9831, 6.9446, 6.972, 6.9654, 6.9605, 6.9574, 6.9692, 6.9656, 6.966600000000001, 6.967600000000001, 6.968600000000001, 6.9629, 6.9598, 6.9519, 6.9457, 6.9367, 6.9666, 6.9949, 6.9908, 7.0207, 7.0121, 7.0408, 7.0395, 7.033, 7.0321, 7.0639, 7.0601, 7.0548, 7.0282, 7.034, 7.0275, 7.0828, 7.1131, 7.1113, 7.1364, 7.1281, 7.125, 7.1182, 7.18, 7.2003, 7.2202, 7.215, 7.2129, 7.2094, 7.2324, 7.2277, 7.2201, 7.243, 7.2378, 7.2271, 7.2194, 7.2148, 7.214, 7.2036, 7.1998, 7.1897, 7.182, 7.2023, 7.1951, 7.1958, 7.1874, 7.1827, 7.1797, 7.1732, 7.1657, 7.1866, 7.1834, 7.2028, 7.2211, 7.2132, 7.2076, 7.2022, 7.2243, 7.216, 7.2357, 7.2285, 7.2239, 7.2229, 7.216, 7.2335, 7.2504, 7.2674, 7.2847, 7.3012, 7.2966, 7.2883, 7.2818, 7.3249, 7.317, 7.3314, 7.3478, 7.3426, 7.3576, 7.3581, 7.3741, 7.3653, 7.4306, 7.4545, 7.4911, 7.5058, 7.4964, 7.4883, 7.5028, 7.5202, 7.4958, 7.4907, 7.4866, 7.5022, 7.4938, 7.4899, 7.5018, 7.4948, 7.49, 7.5033, 7.497, 7.4919, 7.4879, 7.483, 7.4783, 7.4738, 7.469, 7.482, 7.4758, 7.4719, 7.4639, 7.4802, 7.4747, 7.4906, 7.5064, 7.5019, 7.5171, 7.5136, 7.5103, 7.5074, 7.501, 7.4947, 7.5068, 7.5013, 7.5173, 7.5333, 7.5269, 7.5194, 7.5116, 7.5254, 7.5194, 7.5132, 7.526, 7.5257, 7.5178, 7.5164, 7.5106, 7.5047, 7.4984, 7.492, 7.4842, 7.4787, 7.4751, 7.4693, 7.4684, 7.4629, 7.4589, 7.456, 7.4903, 7.4845, 7.4774, 7.471, 7.4642, 7.4575, 7.4504, 7.4441, 7.4391, 7.4341, 7.4274, 7.4229, 7.4364, 7.4349, 7.4302, 7.4254, 7.4203, 7.4135, 7.4254, 7.4206, 7.4337, 7.4316, 7.429, 7.4405, 7.4517, 7.4636, 7.4573, 7.4528, 7.465, 7.4617, 7.4606, 7.4714, 7.465, 7.4622, 7.4722, 7.4679, 7.466, 7.4604, 7.4546, 7.4493, 7.4434, 7.4496, 7.4449, 7.4574, 7.4517, 7.4473, 7.4296, 7.4408, 7.4349, 7.4298, 7.4256, 7.4343, 7.429, 7.4231, 7.4175, 7.4121, 7.4062, 7.4024, 7.3968, 7.393, 7.3909, 7.3886, 7.3863, 7.3974, 7.3939, 7.3901, 7.3876, 7.3835, 7.3819, 7.379, 7.3776, 7.3733, 7.3709, 7.367, 7.3825, 7.393, 7.3879, 7.3978, 7.3973, 7.3942, 7.392, 7.3872, 7.3826, 7.384, 7.3823, 7.392, 7.389, 7.3889, 7.3989, 7.3952, 7.3912, 7.3857, 7.3807, 7.3755, 7.3863, 7.381, 7.3797, 7.3765, 7.3717, 7.3833, 7.3801, 7.3888, 7.3852, 7.3799, 7.3774, 7.3725, 7.3677, 7.3629, 7.3604, 7.3562, 7.3538, 7.3505, 7.3528, 7.3481, 7.3449, 7.3405, 7.3494, 7.3455, 7.3431, 7.3757, 7.3716, 7.3684, 7.3682, 7.378, 7.3735, 7.3718, 7.3674, 7.3633, 7.3588, 7.3661, 7.363, 7.3582, 7.3671, 7.3766, 7.3757, 7.3716, 7.3809, 7.3776, 7.373, 7.3715, 7.3675, 7.365, 7.3623, 7.3604, 7.3571, 7.3528, 7.3608, 7.3577, 7.3533, 7.349, 7.345, 7.3408, 7.3377, 7.3402, 7.3382, 7.3365, 7.3325, 7.3291, 7.3368, 7.3445, 7.3405, 7.3367, 7.3335, 7.3289, 7.3247, 7.3324, 7.3516, 7.3484, 7.3456, 7.3415, 7.3506, 7.3531, 7.3726, 7.3695, 7.3675, 7.3641, 7.3622, 7.3579, 7.3549, 7.3743, 7.3715, 7.3797, 7.3761, 7.3829, 7.3786, 7.3865, 7.3845, 7.3812, 7.3794, 7.3754, 7.3741, 7.3812, 7.3769, 7.3734, 7.3727, 7.3693, 7.3763, 7.3738, 7.3727, 7.3704, 7.3675, 7.366, 7.3648, 7.3725, 7.3808, 7.377, 7.385, 7.382, 7.3792, 7.3762, 7.3754, 7.3727, 7.3694, 7.3672, 7.3764, 7.3856, 7.383, 7.38, 7.3876, 7.386, 7.385, 7.3815, 7.3824, 7.3896, 7.3882, 7.3854, 7.3818, 7.3891, 7.3869, 7.383, 7.379, 7.3801, 7.377, 7.3741, 7.3808, 7.3779, 7.3754, 7.374, 7.3737, 7.3745, 7.3708, 7.3672, 7.3653, 7.3618, 7.3682, 7.3656, 7.3625, 7.3588, 7.3553, 7.3539, 7.3506, 7.348, 7.3457, 7.3533, 7.3497, 7.3485, 7.3455, 7.3425, 7.3495, 7.3462, 7.3428, 7.3392, 7.3381, 7.335, 7.3602, 7.3569, 7.3551, 7.361, 7.3587, 7.3551, 7.379, 7.3768, 7.3732, 7.3705, 7.3759, 7.3742, 7.3727, 7.3746, 7.3727, 7.3702, 7.3681, 7.3659, 7.3726, 7.3706, 7.3682, 7.3741, 7.3707, 7.3695, 7.3752, 7.3722, 7.3703, 7.3681, 7.3644, 7.3616, 7.3595, 7.3576, 7.3546, 7.3525, 7.3498, 7.3469, 7.3435, 7.3516, 7.3487, 7.346, 7.3525, 7.3587, 7.3651, 7.3632, 7.3606, 7.3576, 7.3576, 7.3549, 7.3963, 7.3942, 7.3911, 7.3888, 7.3857, 7.3834, 7.38, 7.3853, 7.3825, 7.4156, 7.4207, 7.4183, 7.4149, 7.4198, 7.4176, 7.4226, 7.4135, 7.4042, 7.4021, 7.3991, 7.396, 7.3934, 7.3916, 7.3887, 7.3862, 7.384, 7.3812, 7.3784, 7.384, 7.3806, 7.3783, 7.3753, 7.3732, 7.3703, 7.3674, 7.3651, 7.3635, 7.3608, 7.3662, 7.3647, 7.3632, 7.3687, 7.3738, 7.3721, 7.3704, 7.3676, 7.3661, 7.3645, 7.3619, 7.3671, 7.3645, 7.3629, 7.36, 7.3653, 7.3628, 7.3859, 7.3833, 7.3736, 7.3829, 7.3766, 7.3764, 7.3737, 7.3717, 7.3691, 7.3667, 7.3641, 7.3613, 7.3584, 7.3577, 7.3633, 7.3628, 7.368, 7.3658, 7.3714, 7.3701, 7.3687, 7.3672, 7.3642, 7.3627, 7.3615, 7.3622, 7.3596, 7.3568, 7.3551, 7.355, 7.353, 7.3503, 7.3502, 7.3483, 7.3546, 7.3538, 7.3514, 7.357, 7.3555, 7.3534, 7.3507, 7.3562, 7.3565, 7.3619, 7.3595, 7.3575, 7.3623, 7.3614, 7.3617, 7.3601, 7.3654, 7.3713, 7.3721, 7.3745, 7.3733, 7.3707, 7.3684, 7.366, 7.3638, 7.3616, 7.359, 7.3564, 7.3546, 7.3536, 7.3583, 7.3567, 7.355, 7.3534, 7.351, 7.3492, 7.3533, 7.3531, 7.3509, 7.3429, 7.3403, 7.3457, 7.3443, 7.3353, 7.3401, 7.3383, 7.3361, 7.335, 7.333, 7.3309, 7.3361, 7.3347, 7.3408, 7.3387, 7.3369, 7.3354, 7.3332, 7.3313, 7.3293, 7.3274, 7.3339, 7.3318, 7.33, 7.3351, 7.3394, 7.3372, 7.3345, 7.3401, 7.3378, 7.3378, 7.3362, 7.3346, 7.3323, 7.3444, 7.3497, 7.3582, 7.3562, 7.3485, 7.354, 7.3529, 7.351, 7.3485, 7.3528, 7.3575, 7.3626, 7.3609, 7.3586, 7.3564, 7.3609, 7.3547, 7.353, 7.3512, 7.3489, 7.3483, 7.3474, 7.3453, 7.343, 7.3426, 7.3366, 7.3353, 7.3348, 7.3389, 7.3368, 7.3357, 7.3336, 7.3381, 7.3363, 7.3346, 7.3324, 7.3299, 7.3277, 7.3258, 7.3256, 7.3236, 7.3281, 7.3259, 7.3239, 7.3215, 7.3203, 7.318, 7.3156, 7.3085, 7.3063, 7.3041, 7.3021, 7.3067, 7.3044, 7.3027, 7.3004, 7.2983, 7.3029, 7.3017, 7.3009, 7.2994, 7.2992, 7.297, 7.2953, 7.2997, 7.2978, 7.2957, 7.2935, 7.2914, 7.2894, 7.288, 7.2925, 7.2904, 7.2948, 7.2934, 7.2919, 7.2902, 7.2893, 7.2881, 7.2925, 7.2919, 7.2898, 7.2945, 7.2926, 7.2907, 7.2888, 7.2934, 7.2918, 7.2899, 7.2882, 7.2861, 7.2841, 7.2828, 7.2815, 7.28, 7.2782, 7.2765, 7.2747, 7.2792, 7.2787, 7.2775, 7.2766, 7.2759, 7.2753, 7.2746, 7.2731, 7.2712, 7.2691, 7.2672, 7.2657, 7.2637, 7.2563, 7.2548, 7.2535, 7.2518, 7.2503, 7.2483, 7.2471, 7.2452, 7.2431, 7.2416, 7.2401, 7.2442, 7.2423, 7.2411, 7.2394, 7.2378, 7.2368, 7.2349, 7.2394, 7.2377, 7.236, 7.2366, 7.2407, 7.2395, 7.2378, 7.236, 7.2349, 7.2334, 7.2315, 7.2299, 7.2344, 7.2347, 7.2358, 7.2345, 7.2329, 7.232, 7.2365, 7.2354, 7.2367, 7.2408, 7.2459, 7.2444, 7.2425, 7.2414, 7.2406, 7.2399, 7.2389, 7.2368, 7.2363, 7.2346, 7.2331, 7.2331, 7.2321, 7.2308, 7.2289, 7.227, 7.226, 7.2302, 7.2286, 7.2275, 7.2257, 7.2242, 7.2224, 7.2214, 7.2199, 7.2234, 7.2283, 7.2273, 7.226, 7.2249, 7.2246, 7.224, 7.2226, 7.2271, 7.2257, 7.2244, 7.2294, 7.2278, 7.2329, 7.2318, 7.2307, 7.2399, 7.2386, 7.2384, 7.237, 7.2352, 7.234, 7.2387, 7.2369, 7.2354, 7.2342, 7.2384, 7.2421, 7.2405, 7.2623, 7.2604, 7.2585, 7.257, 7.255, 7.2544, 7.2526, 7.2514, 7.2498, 7.2487, 7.2499, 7.2483, 7.2607, 7.2594, 7.2587, 7.2594, 7.2588, 7.2582, 7.2581, 7.2573, 7.2563, 7.2564, 7.2553, 7.2594, 7.2578, 7.2563, 7.2557, 7.2544, 7.2526, 7.2507, 7.2491, 7.2479, 7.2518, 7.2501, 7.2541, 7.2524, 7.2508, 7.2495, 7.2493, 7.2486, 7.2529, 7.2511, 7.2502, 7.2483, 7.2473, 7.2418, 7.2462, 7.2452, 7.2436, 7.2417, 7.24, 7.2382, 7.2366, 7.235, 7.2388, 7.2375, 7.2359, 7.2344, 7.2333, 7.2322, 7.2307, 7.2289, 7.2282, 7.2269, 7.2259, 7.2296, 7.2278, 7.2319, 7.2303, 7.2337, 7.2328, 7.2363, 7.2401, 7.2387, 7.237, 7.2371, 7.2359, 7.2451, 7.2439, 7.2422, 7.2408, 7.2392, 7.2378, 7.236, 7.2347, 7.233, 7.2312, 7.2334, 7.2327, 7.2314, 7.23, 7.2341, 7.2379, 7.2419, 7.2456, 7.2447, 7.244, 7.2439, 7.2425, 7.2411, 7.2394, 7.2386, 7.2371, 7.2366, 7.2358, 7.2345, 7.2382, 7.2417, 7.2405, 7.2387, 7.2381, 7.2365, 7.2348, 7.2334, 7.2369, 7.2406, 7.2391, 7.239, 7.2391, 7.2377, 7.241, 7.2392, 7.2387, 7.2373, 7.2358, 7.235, 7.2333, 7.2365, 7.2349, 7.2336, 7.2319, 7.2302, 7.2251, 7.2239, 7.2227, 7.2211, 7.2196, 7.2184, 7.2216, 7.2199, 7.2184, 7.2168, 7.2151, 7.2134, 7.2168, 7.2198, 7.2181, 7.225, 7.2282, 7.227, 7.2256, 7.2332, 7.2324, 7.236, 7.2353, 7.2386, 7.2369, 7.2356, 7.2387, 7.2374, 7.2416, 7.2503, 7.2536, 7.248, 7.247, 7.2454, 7.2438, 7.2422, 7.2408, 7.244, 7.2423, 7.2407, 7.2441, 7.2426, 7.2419, 7.241, 7.2398, 7.2386, 7.2374, 7.2362, 7.2348, 7.2334, 7.233, 7.2371, 7.236, 7.2353, 7.2339, 7.2326, 7.2309, 7.2341, 7.2374, 7.2361, 7.2355, 7.2391, 7.2393, 7.2426, 7.241, 7.2459, 7.2443, 7.2521, 7.251, 7.2542, 7.2531, 7.252, 7.2503, 7.2488, 7.2478, 7.251, 7.2543, 7.2528, 7.2511, 7.25, 7.249, 7.2479, 7.2605, 7.2595, 7.2583, 7.2614, 7.2603, 7.2586, 7.2615, 7.26, 7.2591, 7.2574, 7.2558, 7.2546, 7.253, 7.2514, 7.2501, 7.2491, 7.252, 7.2504, 7.2492, 7.2485, 7.2472, 7.2467, 7.2454, 7.2444, 7.2433, 7.2423, 7.2412, 7.2444, 7.2473, 7.2505, 7.2488, 7.248, 7.2465, 7.245, 7.245, 7.2483, 7.2477, 7.2471, 7.246, 7.2444, 7.2472, 7.2458, 7.2445, 7.2437, 7.2428, 7.2506, 7.2496, 7.248, 7.2473, 7.2459, 7.245, 7.248, 7.2467, 7.2452, 7.2444, 7.2448, 7.2432, 7.2436, 7.2424, 7.2413, 7.2405, 7.2403, 7.2399, 7.2383, 7.2368, 7.2357, 7.2349, 7.2337, 7.2336, 7.2365, 7.2395, 7.2344, 7.2333, 7.2329, 7.2324, 7.231, 7.2344, 7.2342, 7.2328, 7.2331, 7.2329, 7.2318, 7.2321, 7.2317, 7.2305, 7.2297, 7.2284, 7.227, 7.2261, 7.2295, 7.2287, 7.2275, 7.2261, 7.2254, 7.224, 7.2274, 7.2265, 7.2253, 7.2281, 7.2267, 7.2296, 7.2284, 7.2271, 7.2267, 7.2252, 7.2238, 7.2231, 7.2223, 7.2254, 7.228, 7.2271, 7.2297, 7.2324, 7.2318, 7.2308, 7.234, 7.2331, 7.2331, 7.2316, 7.2348, 7.2337, 7.2326, 7.2313, 7.2303, 7.2289, 7.2278, 7.231, 7.2345, 7.2332, 7.2336, 7.2371, 7.2331, 7.2317, 7.2309, 7.2342, 7.2331, 7.2373, 7.2371, 7.2366, 7.2363, 7.2351, 7.2347, 7.2333, 7.2321, 7.2307, 7.2295, 7.2285, 7.2277, 7.2308, 7.2296, 7.2315, 7.2303, 7.2289, 7.2275, 7.2307, 7.2335, 7.2324, 7.2313, 7.2303, 7.2292, 7.2319, 7.2311, 7.2338, 7.2324, 7.2319, 7.2313, 7.234, 7.233, 7.2316, 7.2303, 7.2292, 7.2253, 7.224, 7.2227, 7.2226, 7.2221, 7.2247, 7.2235, 7.2226, 7.2217, 7.221, 7.2236, 7.2224, 7.2217, 7.2204, 7.2193, 7.2182, 7.2173, 7.2169, 7.2178, 7.2213, 7.2202, 7.2191, 7.2183, 7.2171, 7.216, 7.2146, 7.2132, 7.2118, 7.2104, 7.209, 7.2079, 7.2107, 7.2133, 7.2166, 7.2161, 7.2148, 7.2139, 7.2129, 7.2127, 7.2123, 7.2111, 7.2106, 7.213, 7.2137, 7.2133, 7.214300000000001, 7.215300000000001, 7.2178, 7.2215, 7.2241, 7.2268, 7.2295, 7.2282, 7.2273, 7.226, 7.227, 7.2265, 7.2252, 7.2241, 7.2267, 7.2254, 7.2247, 7.2236, 7.2265, 7.2265, 7.2294, 7.2281, 7.227, 7.2261, 7.2259, 7.2247, 7.2241, 7.2233, 7.2223, 7.2212, 7.2206, 7.2198, 7.2189, 7.2176, 7.2204, 7.223, 7.2263, 7.225, 7.2238, 7.2228, 7.2253, 7.2248, 7.2277, 7.2307, 7.23, 7.2289, 7.2315, 7.2306, 7.2299, 7.2327, 7.2321, 7.2309, 7.2297, 7.2294, 7.2283, 7.2312, 7.2301, 7.2288, 7.2279, 7.2237, 7.223, 7.2219, 7.2225, 7.2213, 7.2171, 7.2163, 7.219, 7.2182, 7.2211, 7.2203, 7.2227, 7.2215, 7.2207, 7.2198, 7.2188, 7.2182, 7.218, 7.2172, 7.2167, 7.216, 7.2154, 7.2182, 7.2172, 7.2166, 7.216, 7.2153, 7.2141, 7.2137, 7.213, 7.2125, 7.213500000000001, 7.2128, 7.2122, 7.2113, 7.2106, 7.2095, 7.2119, 7.2112, 7.2108, 7.2135, 7.2129, 7.2117, 7.2108, 7.2096, 7.2119, 7.2107, 7.2127, 7.2156, 7.2143, 7.2134, 7.2125, 7.2117, 7.212700000000001, 7.213700000000001, 7.2147000000000014, 7.2134, 7.2128, 7.2152, 7.2141, 7.2165, 7.2153, 7.2144, 7.2143, 7.2136, 7.2161, 7.2186, 7.2182, 7.2169, 7.2192, 7.218, 7.2175, 7.2162, 7.2153, 7.2144, 7.2138, 7.2133, 7.2167, 7.217700000000001, 7.2169, 7.2161, 7.2153, 7.2143, 7.2134, 7.2121, 7.2126, 7.215, 7.2146, 7.2135, 7.216, 7.2151, 7.2176, 7.2166, 7.2154, 7.2142, 7.2132, 7.213, 7.2121, 7.2111, 7.2101, 7.2126, 7.2126, 7.2117, 7.2112, 7.2101, 7.2091, 7.2079, 7.2073, 7.2099, 7.2094, 7.2119, 7.2108, 7.21, 7.2088, 7.2079, 7.2104, 7.2095, 7.2096, 7.2092, 7.2091, 7.2097, 7.2089, 7.2085, 7.2109, 7.2102, 7.2092, 7.2116, 7.2106, 7.2094, 7.2085, 7.2154, 7.2143, 7.2133, 7.2129, 7.213900000000001, 7.2162, 7.2157, 7.2152, 7.2174, 7.2297, 7.2286, 7.2274, 7.2266, 7.2255, 7.225, 7.2246, 7.2235, 7.2226, 7.2217, 7.2208, 7.2198, 7.2193, 7.2191, 7.218, 7.2179, 7.2168, 7.2161, 7.2149, 7.217, 7.218, 7.2204, 7.2193, 7.2185, 7.2178, 7.2201, 7.2161, 7.2171, 7.216, 7.2153, 7.2148, 7.2136, 7.2137, 7.213, 7.2124, 7.2114, 7.2137, 7.2128, 7.2124, 7.2113, 7.2108, 7.2111, 7.2101, 7.2105, 7.2099, 7.2124, 7.2113, 7.2104, 7.2094, 7.2085, 7.2077, 7.2067, 7.2058, 7.2049, 7.204, 7.2065, 7.2061, 7.212, 7.2111, 7.2169, 7.2194, 7.2215, 7.2212, 7.2236, 7.2226, 7.2249, 7.2238, 7.2262, 7.2252, 7.2242, 7.2234, 7.2226, 7.2246, 7.2267, 7.2262, 7.2256, 7.225, 7.2272, 7.2264, 7.2285, 7.2274, 7.2265, 7.2285, 7.2308, 7.23, 7.2291, 7.2281, 7.2276, 7.2265, 7.2256, 7.2248, 7.2237, 7.2226, 7.2235, 7.2262, 7.2251, 7.2245, 7.2267, 7.226, 7.225, 7.2243, 7.2273, 7.227, 7.2262, 7.2255, 7.225, 7.2245, 7.2271, 7.2262, 7.2255, 7.2246, 7.2235, 7.2229, 7.2218, 7.221, 7.2198, 7.2198, 7.2194, 7.220400000000001, 7.221400000000001, 7.2238, 7.2267, 7.2263, 7.2257, 7.2253, 7.2249, 7.2242, 7.2236, 7.224600000000001, 7.2271, 7.2262, 7.2251, 7.2245, 7.2246, 7.2238, 7.2233, 7.2262, 7.2257, 7.2261, 7.2253, 7.2245, 7.2267, 7.226, 7.2257, 7.2248, 7.2247, 7.2247, 7.2267, 7.229, 7.2281, 7.2306, 7.2296, 7.2288, 7.2312, 7.2308, 7.2297, 7.232, 7.2318, 7.2338, 7.2361, 7.2358, 7.2347, 7.2339, 7.2357, 7.235, 7.2342, 7.2339, 7.2333, 7.2323, 7.2312, 7.2301, 7.2323, 7.2314, 7.2305, 7.2297, 7.2318, 7.2308, 7.2297, 7.2291, 7.2282, 7.2274, 7.2268, 7.2266, 7.226, 7.2251, 7.2249, 7.2238, 7.223, 7.2225, 7.2218, 7.2209, 7.2202, 7.2226, 7.2217, 7.2208, 7.2201, 7.221100000000001, 7.2203, 7.2224, 7.2251, 7.2245, 7.2239, 7.223, 7.2221, 7.2212, 7.2235, 7.2257, 7.225, 7.225, 7.2269, 7.2263, 7.2255, 7.2254, 7.2246, 7.2239, 7.2329, 7.2382, 7.2375, 7.2367, 7.2358, 7.2348, 7.2339, 7.2329, 7.2352, 7.2343, 7.2367, 7.236, 7.2352, 7.2371, 7.2389, 7.2378, 7.2401, 7.2393, 7.2386, 7.2351, 7.2347, 7.2339, 7.2329, 7.2323, 7.2374, 7.2365, 7.2372, 7.2367, 7.2357, 7.2354, 7.2344, 7.2335, 7.2326, 7.2316, 7.2313, 7.2309, 7.2299, 7.2323, 7.2345, 7.2337, 7.2334, 7.2331, 7.2326, 7.2317, 7.2308, 7.2307, 7.2297, 7.2294, 7.2313, 7.2331, 7.2322, 7.2316, 7.2309, 7.23, 7.2292, 7.2283, 7.2278, 7.2268, 7.226, 7.2251, 7.2217, 7.2214, 7.2208, 7.22, 7.2192, 7.2214, 7.2209, 7.2211, 7.2233, 7.2229, 7.2223, 7.2216, 7.2238, 7.223, 7.2223, 7.2215, 7.2206, 7.2201, 7.2191, 7.2183, 7.2174, 7.2167, 7.2166, 7.2156, 7.2151, 7.214, 7.2129, 7.2122, 7.2113, 7.2163, 7.2152, 7.2145, 7.2155000000000005, 7.2177, 7.2142, 7.2133, 7.2214, 7.2263, 7.2268, 7.229, 7.2282, 7.2276, 7.227, 7.2261, 7.2282, 7.228, 7.2305, 7.2299, 7.2295, 7.2289, 7.2287, 7.2287, 7.2279, 7.2274, 7.2265, 7.2286, 7.2306, 7.2297, 7.2296, 7.2263, 7.2286, 7.2279, 7.2276, 7.227, 7.2269, 7.2261, 7.2252, 7.2242, 7.2262, 7.2283, 7.2303, 7.2301, 7.2295, 7.2289, 7.2307, 7.2298, 7.2293, 7.231, 7.2305, 7.2298, 7.2292, 7.2282, 7.2273, 7.2266, 7.2257, 7.2275, 7.2269, 7.2259, 7.2253, 7.2244, 7.2235, 7.2233, 7.2233, 7.2232, 7.2254, 7.2273, 7.2273, 7.2295, 7.2288, 7.2376, 7.2412, 7.2439, 7.2432, 7.2422, 7.2414, 7.244, 7.2438, 7.2432, 7.2449, 7.2443, 7.2438, 7.2436, 7.2431, 7.2422, 7.2414, 7.2438, 7.2434, 7.2427, 7.2454, 7.245, 7.2441, 7.2431, 7.2451, 7.2443, 7.2463, 7.2458, 7.2453, 7.2445, 7.2462, 7.2481, 7.2476, 7.247, 7.2461, 7.2456, 7.2449, 7.2455, 7.2447, 7.2447, 7.2438, 7.2433, 7.2455, 7.2446, 7.2441, 7.2437, 7.2429, 7.2446, 7.2442, 7.2463, 7.2483, 7.2505, 7.2496, 7.2488, 7.251, 7.2505, 7.2499, 7.2496, 7.2492, 7.2486, 7.2481, 7.2471, 7.2462, 7.2466, 7.2489, 7.2488, 7.2485, 7.2481, 7.2476, 7.2496, 7.2471, 7.2466, 7.2458, 7.2476, 7.2468, 7.246, 7.2457, 7.2478, 7.2476, 7.2471, 7.2466, 7.2459, 7.2478, 7.2471, 7.2467, 7.2458, 7.2478, 7.247, 7.2468, 7.2459, 7.2451, 7.2443, 7.2436, 7.2453, 7.2445, 7.2437, 7.243, 7.2422, 7.2414, 7.2411, 7.2404, 7.2397, 7.2389, 7.2383, 7.2375, 7.2368, 7.2361, 7.2358, 7.2353, 7.2345, 7.2338, 7.2331, 7.2324, 7.2317, 7.2309, 7.2325, 7.2342, 7.2336, 7.2331, 7.2325, 7.232, 7.2318, 7.2311, 7.2303, 7.2297, 7.2291, 7.2308, 7.2325, 7.2316, 7.2308, 7.235, 7.2341, 7.2336, 7.2417, 7.2408, 7.2425, 7.2418, 7.2409, 7.2403, 7.242, 7.2414, 7.2407, 7.2423, 7.2419, 7.2413, 7.2422, 7.2417, 7.2446, 7.2446, 7.2439, 7.2432, 7.245, 7.2469, 7.2488, 7.2514, 7.2513, 7.2505, 7.2498, 7.2491, 7.2487, 7.2509, 7.2506, 7.2504, 7.2495, 7.2487, 7.2478, 7.2474, 7.2493, 7.2486, 7.2482, 7.2474, 7.2465, 7.2459, 7.2503, 7.2548, 7.2548, 7.2543, 7.2541, 7.2533, 7.2531, 7.2527, 7.2518, 7.2536, 7.2552, 7.2545, 7.2589, 7.2583, 7.2601, 7.2594, 7.2611, 7.2604, 7.2621, 7.2617, 7.2634, 7.265, 7.2641, 7.2657, 7.2652, 7.2645, 7.2662, 7.2654, 7.2648, 7.2644, 7.2638, 7.2631, 7.2624, 7.2615, 7.2612, 7.2605, 7.2601, 7.2593, 7.2584, 7.26, 7.2591, 7.2582, 7.2576, 7.2606, 7.2606, 7.2598, 7.2592, 7.2588, 7.2583, 7.2577, 7.2569, 7.2566, 7.256, 7.2551, 7.2542, 7.2534, 7.2526, 7.2522, 7.2537, 7.2553, 7.2554, 7.258, 7.2573, 7.2566, 7.2559, 7.2552, 7.2572, 7.2568, 7.2586, 7.2581, 7.258, 7.2573, 7.2564, 7.2558, 7.2574, 7.2593, 7.2588, 7.258, 7.2594, 7.2608, 7.2604, 7.2604, 7.2597, 7.2593, 7.2596, 7.2591, 7.2584, 7.2575, 7.2571, 7.2564, 7.256, 7.2575, 7.2569, 7.2564, 7.2583, 7.2577, 7.2574, 7.2566, 7.2608, 7.26, 7.2593, 7.2586, 7.2558, 7.2551, 7.2543, 7.2542, 7.2534, 7.2533, 7.2527, 7.2525, 7.2526, 7.2523, 7.2515, 7.2508, 7.2502, 7.2498, 7.2492, 7.2507, 7.25, 7.2494, 7.249, 7.2482, 7.2475, 7.2467, 7.2459, 7.2477, 7.2469, 7.2464, 7.2458, 7.245, 7.2446, 7.2487, 7.2481, 7.2472, 7.2464, 7.2456, 7.2473, 7.2489, 7.2514, 7.2508, 7.2502, 7.2494, 7.2487, 7.2483, 7.2506, 7.2499, 7.2497, 7.2489, 7.2481, 7.2473, 7.2465, 7.2459, 7.2452, 7.2445, 7.2437, 7.243, 7.2425, 7.2442, 7.2434, 7.2451, 7.2444, 7.2437, 7.2431, 7.2426, 7.2419, 7.2436, 7.2456, 7.2449, 7.2464, 7.246, 7.2476, 7.2468, 7.2462, 7.2456, 7.2448, 7.2447, 7.2461, 7.2452, 7.2443, 7.2435, 7.2453, 7.2447, 7.244, 7.2436, 7.2428, 7.2424, 7.2424, 7.2421, 7.2415, 7.2434, 7.2434, 7.2426, 7.242, 7.2414, 7.2408, 7.2426, 7.242, 7.2412, 7.2404, 7.2405, 7.2423, 7.2417, 7.241, 7.2426, 7.2442, 7.2458, 7.2473, 7.2465, 7.246, 7.2452, 7.2447, 7.2509, 7.2504, 7.2496, 7.2491, 7.2482, 7.2476, 7.2492, 7.2514, 7.2506, 7.2503, 7.2495, 7.2494, 7.2488, 7.2482, 7.2475, 7.2496, 7.2489, 7.2482, 7.2499, 7.2492, 7.2487, 7.2503, 7.2499, 7.2495, 7.251, 7.2507, 7.2502, 7.2495, 7.2489, 7.2482, 7.2476, 7.2492, 7.2486, 7.2478, 7.247, 7.2485, 7.2477, 7.2493, 7.2485, 7.2479, 7.2473, 7.2468, 7.2461, 7.2456, 7.2448, 7.2445, 7.244, 7.2435, 7.2453, 7.2495, 7.249, 7.2495, 7.2514, 7.251, 7.2503, 7.2502, 7.2497, 7.249, 7.2482, 7.2497, 7.2492, 7.2486, 7.2479, 7.2473, 7.2468, 7.247, 7.247, 7.2465, 7.246, 7.2452, 7.2444, 7.246, 7.2456, 7.2451, 7.2456, 7.2455, 7.247, 7.2465, 7.2461, 7.2476, 7.2468, 7.2461, 7.2475, 7.247, 7.2486, 7.2486, 7.2483, 7.2478, 7.2472, 7.2464, 7.2458, 7.2472, 7.2489, 7.2481, 7.2497, 7.2489, 7.2504, 7.2499, 7.2491, 7.2484, 7.2479, 7.2494, 7.2488, 7.248, 7.2494, 7.2487, 7.2479, 7.2471, 7.2465, 7.2462, 7.2456, 7.2456, 7.2452, 7.2446, 7.2441, 7.2436, 7.2432, 7.2425, 7.2423, 7.2416, 7.2412, 7.2405, 7.2399, 7.2395, 7.2372, 7.2366, 7.238, 7.2372, 7.2386, 7.2378, 7.2371, 7.2366, 7.2382, 7.2356, 7.2352, 7.2428, 7.2421, 7.2465, 7.2464, 7.246, 7.2453, 7.2471, 7.2464, 7.248, 7.2494, 7.2487, 7.2483, 7.2476, 7.247, 7.2468, 7.2462, 7.2477, 7.2475, 7.2469, 7.2463, 7.2456, 7.2452, 7.2448, 7.2441, 7.2439, 7.2438, 7.2435, 7.2428, 7.2427, 7.244, 7.2433, 7.2435, 7.245, 7.2467, 7.2463, 7.2459, 7.2471, 7.2468, 7.2486, 7.248, 7.2474, 7.2468, 7.2462, 7.246, 7.2455, 7.2451, 7.2444, 7.25, 7.2494, 7.2486, 7.2535, 7.2555, 7.255, 7.2543, 7.2536, 7.2533, 7.253, 7.2544, 7.2537, 7.2532, 7.2573, 7.2588, 7.2581, 7.2578, 7.2577, 7.2582, 7.2575, 7.2568, 7.2564, 7.2559, 7.2561, 7.2576, 7.2576, 7.257, 7.2564, 7.2557, 7.2532, 7.2526, 7.2521, 7.2519, 7.2513, 7.2528, 7.2522, 7.2515, 7.2511, 7.2509, 7.2506, 7.2506, 7.2502, 7.2497, 7.2495, 7.2489, 7.2483, 7.2477, 7.247, 7.2464, 7.248, 7.2474, 7.2466, 7.2459, 7.2453, 7.2447, 7.2444, 7.2458, 7.2434, 7.2428, 7.2445, 7.2438, 7.2431, 7.2427, 7.2422, 7.2419, 7.2413, 7.2407, 7.24, 7.2393, 7.2389, 7.2385, 7.2398, 7.2395, 7.2409, 7.2425, 7.2417, 7.241, 7.2403, 7.2396, 7.2391, 7.2385, 7.2399, 7.2393, 7.2388, 7.2382, 7.2375, 7.2369, 7.2364, 7.2358, 7.2352, 7.2348, 7.2361, 7.2374, 7.2367, 7.2363, 7.2356, 7.2349, 7.2348, 7.2344, 7.2361, 7.2355, 7.2349, 7.2345, 7.2339, 7.2333, 7.2334, 7.2329, 7.2324, 7.2321, 7.2317, 7.2311, 7.2304, 7.2326, 7.2323, 7.2325, 7.2319, 7.2314, 7.2308, 7.2304, 7.2298, 7.2293, 7.2292, 7.229, 7.2284, 7.228, 7.2276, 7.2272, 7.2285, 7.2298, 7.2291, 7.2287, 7.2282, 7.2276, 7.2269, 7.2284, 7.228, 7.2273, 7.2267, 7.2261, 7.2277, 7.227, 7.2264, 7.2258, 7.2254, 7.2248, 7.2263, 7.2259, 7.2253, 7.2268, 7.2265, 7.226, 7.2253, 7.2247, 7.2242, 7.2238, 7.2254, 7.2247, 7.2241, 7.2237, 7.223, 7.2225, 7.224, 7.2233, 7.2229, 7.2222, 7.2216, 7.2212, 7.2207, 7.2201, 7.221100000000001, 7.2223, 7.2218, 7.2213, 7.2206, 7.22, 7.2195, 7.219, 7.2188, 7.2185, 7.2183, 7.2199, 7.2196, 7.2191, 7.2206, 7.2205, 7.2213, 7.2226, 7.222, 7.2215, 7.2208, 7.2208, 7.2204, 7.2201, 7.2198, 7.221, 7.2203, 7.2199, 7.2214, 7.2234, 7.2229, 7.2228, 7.2223, 7.2219, 7.2234, 7.2231, 7.2228, 7.2223, 7.2218, 7.2213, 7.2229, 7.2241, 7.2236, 7.2231, 7.2248, 7.2263, 7.2276, 7.2271, 7.2264, 7.2266, 7.2261, 7.2256, 7.2249, 7.2264, 7.2261, 7.2273, 7.227, 7.2266, 7.2265, 7.2259, 7.2276, 7.227, 7.2283, 7.2278, 7.2273, 7.2268, 7.2263, 7.2262, 7.2256, 7.2255, 7.225, 7.2243, 7.2241, 7.224, 7.2236, 7.224600000000001, 7.2244, 7.2241, 7.2236, 7.2232, 7.2244, 7.2239, 7.2236, 7.2231, 7.2246, 7.2244, 7.2237, 7.2231, 7.2227, 7.2241, 7.2236, 7.2232, 7.221, 7.2223, 7.2216, 7.2213, 7.2207, 7.2203, 7.2197, 7.2195, 7.2191, 7.2192, 7.2187, 7.2182, 7.2179, 7.2176, 7.2173, 7.2166, 7.216, 7.2156, 7.215, 7.2146, 7.2143, 7.2159, 7.2173, 7.2169, 7.2179, 7.2189000000000005, 7.2184, 7.2178, 7.2172, 7.2182, 7.2179, 7.2173, 7.2167, 7.2161, 7.2156, 7.217, 7.2164, 7.2162, 7.2158, 7.2171, 7.2168, 7.2164, 7.2158, 7.2153, 7.2167, 7.2163, 7.2157, 7.2152, 7.2149, 7.2143, 7.2167, 7.218, 7.2176, 7.217, 7.2163, 7.2157, 7.2171, 7.2166, 7.2159, 7.216900000000001, 7.2181, 7.2176, 7.219, 7.2183, 7.2195, 7.2207, 7.2201, 7.2196, 7.2192, 7.2206, 7.2201, 7.2197, 7.2193, 7.2187, 7.2188, 7.2205, 7.22, 7.2279, 7.2273, 7.227, 7.2264, 7.2258, 7.2252, 7.2266, 7.226, 7.2257, 7.2252, 7.2247, 7.224, 7.2235, 7.2248, 7.226, 7.2256, 7.225, 7.2247, 7.2241, 7.2236, 7.2231, 7.2225, 7.2222, 7.2216, 7.2229, 7.2225, 7.2219, 7.2229, 7.2246, 7.2242, 7.2238, 7.2234, 7.223, 7.2246, 7.2262, 7.2258, 7.2254, 7.2251, 7.2265, 7.2277, 7.2271, 7.2265, 7.226, 7.2254, 7.2249, 7.2246, 7.224, 7.2235, 7.2236, 7.2231, 7.2233, 7.2228, 7.2222, 7.2216, 7.2211, 7.2209, 7.2207, 7.2205, 7.2201, 7.2213, 7.2228, 7.2225, 7.222, 7.2214, 7.2208, 7.2219, 7.2213, 7.2217, 7.2211, 7.2241, 7.2254, 7.2249, 7.225, 7.225, 7.226, 7.2273, 7.2267, 7.2267, 7.2263, 7.2257, 7.2255, 7.2269, 7.2264, 7.2277, 7.2291, 7.2285, 7.2298, 7.2294, 7.2291, 7.2303, 7.23, 7.2298, 7.2291, 7.2286, 7.228, 7.2274, 7.2273, 7.2267, 7.2281, 7.228, 7.2292, 7.2288, 7.2285, 7.2283, 7.2277, 7.2272, 7.2287, 7.2299, 7.2294, 7.2288, 7.2285, 7.2279, 7.2274, 7.2268, 7.2265, 7.226, 7.2257, 7.2254, 7.2248, 7.2246, 7.2259, 7.2274, 7.2268, 7.2266, 7.2263, 7.226, 7.2254, 7.2267, 7.2263, 7.226, 7.226, 7.2255, 7.2251, 7.2246, 7.2294, 7.2289, 7.2283, 7.2294, 7.2289, 7.2283, 7.2296, 7.2292, 7.2289, 7.2285, 7.2279, 7.2276, 7.227, 7.2265, 7.2261, 7.226, 7.2258, 7.2253, 7.225, 7.2245, 7.2239, 7.2251, 7.2246, 7.224, 7.2236, 7.2233, 7.2228, 7.224, 7.2254, 7.2252, 7.2264, 7.2276, 7.2272, 7.2273, 7.2267, 7.2263, 7.2259, 7.2273, 7.2267, 7.2262, 7.226, 7.2258, 7.2253, 7.2247, 7.2244, 7.2241, 7.2237, 7.2234, 7.2228, 7.2224, 7.2219, 7.2216, 7.221, 7.2205, 7.22, 7.2199, 7.2194, 7.219, 7.2203, 7.2216, 7.221, 7.2204, 7.2215, 7.2209, 7.2203, 7.2198, 7.221, 7.2208, 7.2202, 7.2198, 7.2192, 7.2187, 7.2181, 7.2186, 7.2185, 7.2182, 7.2177, 7.2175, 7.2177, 7.2176, 7.2173, 7.2167, 7.2165, 7.2163, 7.2158, 7.2153, 7.2156, 7.2151, 7.2167, 7.218, 7.2192, 7.2205, 7.2203, 7.2198, 7.2194, 7.2189, 7.2183, 7.2177, 7.2172, 7.2169, 7.2165, 7.2159, 7.2155, 7.2168, 7.2167, 7.218, 7.2177, 7.2172, 7.2167, 7.218, 7.2192, 7.2189, 7.2184, 7.2181, 7.2178, 7.2172, 7.2167, 7.2164, 7.2159, 7.2172, 7.2169, 7.2165, 7.216, 7.2156, 7.2151, 7.2161, 7.2156, 7.2159, 7.2155, 7.2149, 7.2144, 7.2158, 7.2154, 7.2167, 7.2178, 7.2177, 7.2174, 7.2169, 7.2163, 7.216, 7.2157, 7.2152, 7.2165, 7.2162, 7.2157, 7.2153, 7.2148, 7.2143, 7.213, 7.2127, 7.2125, 7.2121, 7.2117, 7.2111, 7.2107, 7.2103, 7.2115, 7.211, 7.2108, 7.2104, 7.2099, 7.2095, 7.209, 7.2088, 7.2082, 7.2097, 7.2077, 7.2089, 7.2101, 7.2114, 7.2108, 7.2103, 7.2115, 7.2111, 7.2114, 7.212400000000001, 7.213400000000001, 7.2131, 7.2127, 7.2138, 7.2141, 7.2138, 7.2154, 7.2153, 7.2148, 7.2142, 7.2136, 7.2131, 7.2126, 7.2158, 7.2155, 7.2166, 7.2161, 7.2171, 7.215, 7.2162, 7.2158, 7.2153, 7.2165, 7.2161, 7.2172, 7.2169, 7.2181, 7.2193, 7.2203, 7.2198, 7.2195, 7.219, 7.2187, 7.2185, 7.2181, 7.218, 7.2176, 7.2171, 7.2167, 7.2163, 7.2159, 7.2154, 7.215, 7.215, 7.2145, 7.2139, 7.2149, 7.2159, 7.216900000000001, 7.218, 7.2175, 7.2186, 7.2182, 7.2184, 7.2179, 7.2175, 7.2169, 7.2181, 7.2177, 7.2188, 7.2198, 7.2181, 7.2175, 7.2171, 7.2165, 7.2159, 7.216900000000001, 7.2165, 7.2176, 7.217, 7.2181, 7.2179, 7.2173, 7.217, 7.2166, 7.2177, 7.2171, 7.2165, 7.2161, 7.2172, 7.2166, 7.2178, 7.2175, 7.2169, 7.2163, 7.2175, 7.217, 7.217, 7.2165, 7.2162, 7.2158, 7.2154, 7.2149, 7.2144, 7.2138, 7.2149, 7.2144, 7.2138, 7.2134, 7.2129, 7.2123, 7.2117, 7.2113, 7.2109, 7.2103, 7.2098, 7.2113, 7.2132, 7.215, 7.2138, 7.2148, 7.2144, 7.2139, 7.2136, 7.2135, 7.2132, 7.2127, 7.2122, 7.212, 7.213, 7.2125, 7.2122, 7.212, 7.2116, 7.2113, 7.2107, 7.2104, 7.2102, 7.2101, 7.2099, 7.2097, 7.2109, 7.2108, 7.2121, 7.2116, 7.2112, 7.2123, 7.2118, 7.2115, 7.2113, 7.211, 7.2108, 7.212, 7.2133, 7.2129, 7.2124, 7.212, 7.2116, 7.2113, 7.2123, 7.2117, 7.2111, 7.2122, 7.2117, 7.2112, 7.2107, 7.2105, 7.2103, 7.2098, 7.211, 7.2106, 7.2101, 7.2113, 7.2109, 7.2119, 7.2115, 7.2109, 7.2104, 7.2114, 7.211, 7.2105, 7.2117, 7.2112, 7.2123, 7.2118, 7.2113, 7.2109, 7.2104, 7.21, 7.2114, 7.2108, 7.2121, 7.2117, 7.2128, 7.2124, 7.2151, 7.2148, 7.2142, 7.2155, 7.2152, 7.2163, 7.216, 7.2154, 7.215, 7.2146, 7.2143, 7.2155, 7.2165, 7.216, 7.2155, 7.215, 7.2162, 7.2174, 7.2172, 7.2187, 7.2184, 7.2195, 7.2191, 7.2186, 7.2183, 7.2181, 7.2178, 7.2173, 7.217, 7.2197, 7.2193, 7.2215, 7.2227, 7.2223, 7.2232, 7.2231, 7.23, 7.2296, 7.2293, 7.2288, 7.2283, 7.2278, 7.229, 7.2287, 7.2302, 7.2298, 7.2311, 7.2307, 7.2302, 7.2297, 7.2293, 7.2289, 7.2286, 7.2296, 7.2307, 7.2302, 7.2301, 7.2298, 7.2293, 7.2295, 7.2292, 7.2288, 7.2284, 7.2283, 7.2282, 7.2293, 7.2288, 7.2284, 7.2281, 7.2292, 7.2288, 7.2299, 7.2297, 7.2293, 7.2289, 7.2285, 7.2282, 7.2293, 7.2306, 7.2319, 7.2315, 7.2311, 7.2306, 7.2315, 7.2311, 7.2305, 7.2316, 7.2312, 7.2308, 7.2292, 7.2287, 7.2282, 7.2281, 7.2291, 7.2288, 7.2283, 7.2278, 7.2275, 7.2271, 7.2266, 7.2263, 7.2258, 7.2253, 7.225, 7.2249, 7.2248, 7.2259, 7.2256, 7.2253, 7.2248, 7.2251, 7.225, 7.2247, 7.2242, 7.2254, 7.2251, 7.2253, 7.2253, 7.2248, 7.226, 7.2256, 7.2253, 7.2249, 7.2245, 7.2242, 7.2239, 7.2234, 7.2245, 7.2257, 7.2256, 7.2251, 7.2246, 7.2243, 7.2254, 7.2249, 7.2246, 7.2274, 7.2287, 7.2284, 7.2283, 7.2278, 7.229, 7.2286, 7.2282, 7.2276, 7.2274, 7.227, 7.2268, 7.2265, 7.2265, 7.226, 7.2255, 7.2252, 7.2247, 7.2243, 7.2239, 7.2237, 7.2233, 7.223, 7.2226, 7.2238, 7.2233, 7.223, 7.2242, 7.2237, 7.2235, 7.2247, 7.2244, 7.2241, 7.2237, 7.2239, 7.2235, 7.223, 7.2225, 7.2221, 7.2221, 7.2217, 7.223, 7.2226, 7.2224, 7.222, 7.2217, 7.2213, 7.2213, 7.2208, 7.2203, 7.2198, 7.2196, 7.2194, 7.2205, 7.2203, 7.2199, 7.2194, 7.220400000000001, 7.22, 7.2199, 7.2196, 7.22, 7.2198, 7.2209, 7.2208, 7.2207, 7.2203, 7.2201, 7.2185, 7.2198, 7.2208, 7.2204, 7.22, 7.2199, 7.2202, 7.2201, 7.2213, 7.2208, 7.2208, 7.2205, 7.2203, 7.2198, 7.2194, 7.2189, 7.2184, 7.2185, 7.2181, 7.2177, 7.2172, 7.2169, 7.2166, 7.2163, 7.2158, 7.2154, 7.215, 7.2148, 7.2159, 7.2155, 7.2154, 7.2149, 7.2159, 7.2201, 7.2196, 7.2208, 7.2204, 7.2199, 7.2211, 7.2208, 7.2218, 7.2229, 7.2224, 7.2221, 7.2219, 7.223, 7.2226, 7.2208, 7.2218, 7.2214, 7.221, 7.222, 7.2219, 7.2216, 7.2211, 7.2223, 7.2218, 7.2215, 7.2211, 7.2211, 7.2208, 7.2219, 7.2215, 7.2212, 7.2209, 7.2204, 7.22, 7.2196, 7.2192, 7.219, 7.2185, 7.2183, 7.2189, 7.2185, 7.22, 7.2196, 7.2192, 7.2188, 7.2188, 7.2184, 7.2181, 7.2176, 7.2172, 7.2167, 7.2162, 7.2158, 7.2154, 7.215, 7.2173, 7.2169, 7.2167, 7.2178, 7.2175, 7.2216, 7.2213, 7.221, 7.2205, 7.2203, 7.2214, 7.2239, 7.225, 7.2259, 7.2256, 7.2271, 7.2267, 7.2262, 7.2245, 7.2242, 7.224, 7.2237, 7.2232, 7.2232, 7.2216, 7.2211, 7.2207, 7.2218, 7.2214, 7.2225, 7.2221, 7.222, 7.2215, 7.2212, 7.2222, 7.2218, 7.2214, 7.2225, 7.222, 7.2216, 7.2214, 7.2209, 7.2212, 7.2208, 7.2204, 7.2202, 7.2198, 7.2196, 7.2194, 7.2192, 7.2192, 7.2187, 7.2199, 7.2195, 7.2205, 7.2201, 7.2198, 7.2196, 7.2192, 7.2188, 7.2198, 7.2197, 7.2192, 7.219, 7.2187, 7.2198, 7.2207, 7.2203, 7.2201, 7.2196, 7.2191, 7.219, 7.2185, 7.2168, 7.2178, 7.2173, 7.2169, 7.2165, 7.216, 7.2162, 7.2158, 7.2169, 7.2165, 7.216, 7.2169, 7.2167, 7.2163, 7.2173, 7.2171, 7.2168, 7.2165, 7.2163, 7.2159, 7.2156, 7.2151, 7.2146, 7.2142, 7.2151, 7.2152, 7.2167, 7.2177, 7.2172, 7.2168, 7.2166, 7.2176, 7.2171, 7.2168, 7.2163, 7.2173, 7.217, 7.2166, 7.2161, 7.2157, 7.2168, 7.2178, 7.2176, 7.2173, 7.2168, 7.2178, 7.2178, 7.2174, 7.217, 7.218, 7.219, 7.2186, 7.2183, 7.2179, 7.2192, 7.2188, 7.2186, 7.2181, 7.2178, 7.2176, 7.2172, 7.2182, 7.2178, 7.2177, 7.2173, 7.2169, 7.2169, 7.2168, 7.2164, 7.2175, 7.2171, 7.2182, 7.218, 7.2178, 7.2174, 7.2169, 7.2166, 7.2162, 7.2158, 7.2155, 7.215, 7.2161, 7.2157, 7.2156, 7.2153, 7.2163, 7.217300000000001, 7.2169, 7.2164, 7.2159, 7.216900000000001, 7.2166, 7.2167, 7.2165, 7.2162, 7.2157, 7.2152, 7.216200000000001, 7.2172, 7.217, 7.217, 7.2168, 7.2165, 7.2162, 7.2159, 7.2155, 7.2165, 7.2162, 7.2163, 7.2158, 7.216, 7.2173, 7.2169, 7.2225, 7.2221, 7.223, 7.2226, 7.2222, 7.2219, 7.2217, 7.2229, 7.224, 7.2239, 7.2235, 7.2244, 7.2253, 7.2278, 7.2295, 7.2291, 7.2293, 7.2291, 7.2288, 7.2283, 7.2279, 7.2276, 7.2272, 7.227, 7.2267, 7.2276, 7.2272, 7.2269, 7.2278, 7.2273, 7.227, 7.2265, 7.226, 7.2257, 7.2267, 7.2269, 7.2266, 7.2262, 7.2257, 7.2253, 7.225, 7.2246, 7.2256, 7.2253, 7.2249, 7.2246, 7.2241, 7.2236, 7.2232, 7.2243, 7.2253, 7.2249, 7.226, 7.227, 7.2266, 7.2264, 7.226, 7.2256, 7.2252, 7.2247, 7.2244, 7.224, 7.2237, 7.2246, 7.2243, 7.2242, 7.2238, 7.2235, 7.223, 7.2228, 7.2236, 7.2233, 7.223, 7.2239, 7.2248, 7.2245, 7.2241, 7.2236, 7.2259, 7.2269, 7.2264, 7.2259, 7.2269, 7.2269, 7.2264, 7.2261, 7.2258, 7.2254, 7.225, 7.2261, 7.2256, 7.2251, 7.225, 7.2247, 7.2244, 7.224, 7.2236, 7.2235, 7.2235, 7.2219, 7.2214, 7.2212, 7.2209, 7.2204, 7.2203, 7.2199, 7.2208, 7.2205, 7.22, 7.2196, 7.2205, 7.2201, 7.2186, 7.2182, 7.2178, 7.2176, 7.2172, 7.2183, 7.218, 7.2178, 7.2178, 7.2175, 7.2171, 7.2169, 7.2165, 7.216, 7.2159, 7.2158, 7.2155, 7.2153, 7.2149, 7.2158, 7.2154, 7.2149, 7.2146, 7.2155, 7.2152, 7.2147, 7.2144, 7.2141, 7.2137, 7.2137, 7.2134, 7.2135, 7.2132, 7.2127, 7.2127, 7.2136, 7.2136, 7.2146, 7.2143, 7.2148, 7.2145, 7.214, 7.2136, 7.2146, 7.2156, 7.2152, 7.2149, 7.2145, 7.2142, 7.2141, 7.2137, 7.2132, 7.2142, 7.2137, 7.2134, 7.2131, 7.2128, 7.2126, 7.2125, 7.2122, 7.2117, 7.2114, 7.2125, 7.2122, 7.2118, 7.2114, 7.211, 7.2119, 7.2129, 7.2153, 7.2139, 7.2136, 7.2133, 7.2131, 7.2141, 7.2151, 7.2147, 7.2143, 7.214, 7.2136, 7.2145, 7.2154, 7.2149, 7.2148, 7.2143, 7.2154, 7.2149, 7.2159, 7.2168, 7.2178, 7.2189, 7.2201, 7.2198, 7.2198, 7.2194, 7.2193, 7.2191, 7.2186, 7.2173, 7.216, 7.2184, 7.2182, 7.2178, 7.2175, 7.2173, 7.2171, 7.2169, 7.2164, 7.2159, 7.2154, 7.2154, 7.2162, 7.2173, 7.2172, 7.2158, 7.2156, 7.2165, 7.2164, 7.216, 7.2155, 7.2165, 7.2162, 7.2159, 7.2168, 7.2164, 7.216, 7.2156, 7.2152, 7.2148, 7.2147, 7.2144, 7.2142, 7.214, 7.2135, 7.2132, 7.2128, 7.2127, 7.2137, 7.2146, 7.2143, 7.2139, 7.2149, 7.2159, 7.2154, 7.2151, 7.2154, 7.2163, 7.216, 7.2156, 7.2152, 7.2149, 7.2147, 7.2157, 7.2167, 7.2175, 7.2185, 7.2181, 7.2178, 7.2174, 7.2169, 7.217, 7.2165, 7.2161, 7.217, 7.2169, 7.2165, 7.2166, 7.2163, 7.2161, 7.2157, 7.2153, 7.2151, 7.2148, 7.2143, 7.2139, 7.2138, 7.2135, 7.2121, 7.2106, 7.2093, 7.2102, 7.2098, 7.2107, 7.2104, 7.2099, 7.2095, 7.2091, 7.2088, 7.2085, 7.2069, 7.2065, 7.2061, 7.2047, 7.2056, 7.2053, 7.2063, 7.2061, 7.2058, 7.2045, 7.2047, 7.2044, 7.2041, 7.2047, 7.2033, 7.2019, 7.2016, 7.2013, 7.2022, 7.2007, 7.1992, 7.199, 7.1989, 7.1986, 7.1985, 7.1995, 7.1992, 7.2001, 7.2011, 7.2022, 7.202, 7.2016, 7.2012, 7.2011, 7.2008, 7.2007, 7.2017, 7.2014, 7.201, 7.2008, 7.2018, 7.2014, 7.2012, 7.2021, 7.2019, 7.2015, 7.2012, 7.2008, 7.2006, 7.2006, 7.2003, 7.2002, 7.2012, 7.2011, 7.2021, 7.203, 7.2025, 7.2023, 7.2022, 7.2019, 7.2017, 7.2013, 7.2023, 7.2021, 7.203, 7.2027, 7.2026, 7.2025, 7.2027, 7.2035, 7.2046, 7.2056, 7.2052, 7.2049, 7.2058, 7.2043, 7.204, 7.204, 7.2038, 7.2036, 7.2034, 7.2069, 7.2066, 7.2061, 7.2069, 7.2067, 7.2065, 7.2061, 7.2058, 7.2057, 7.2055, 7.2051, 7.2046, 7.2043, 7.2052, 7.2061, 7.207, 7.2068, 7.2079, 7.2076, 7.2086, 7.2083, 7.2095, 7.2094, 7.2091, 7.2088, 7.2086, 7.2083, 7.2093, 7.2092, 7.2102, 7.2098, 7.210800000000001, 7.2105, 7.2103, 7.2124, 7.2142, 7.2151, 7.2149, 7.2146, 7.2147, 7.2155, 7.2151, 7.2148, 7.2145, 7.2144, 7.2144, 7.214, 7.2136, 7.2157, 7.2153, 7.2162, 7.216, 7.2156, 7.2152, 7.2149, 7.2148, 7.2144, 7.2153, 7.2151, 7.216, 7.2147, 7.2144, 7.214, 7.2137, 7.2133, 7.2129, 7.2126, 7.2135, 7.2132, 7.213, 7.2126, 7.2123, 7.2121, 7.2118, 7.2116, 7.2113, 7.2099, 7.2097, 7.2094, 7.209, 7.2086, 7.2085, 7.2094, 7.209, 7.2076, 7.2074, 7.2072, 7.2068, 7.2066, 7.2075, 7.2071, 7.2067, 7.2063, 7.2071, 7.2067, 7.2063, 7.2059, 7.2056, 7.2052, 7.2048, 7.2044, 7.2041, 7.2037, 7.2034, 7.202, 7.2017, 7.2013, 7.2011, 7.2019, 7.2028, 7.2028, 7.2025, 7.2021, 7.2019, 7.2018, 7.2015, 7.2014, 7.2012, 7.201, 7.2008, 7.2004, 7.2001, 7.1999, 7.1995, 7.1991, 7.1988, 7.1986, 7.1985, 7.1981, 7.1979, 7.1989, 7.1986, 7.1981, 7.1977, 7.1986, 7.1983, 7.1981, 7.1978, 7.1974, 7.197, 7.1967, 7.1975, 7.1971, 7.1967, 7.1977, 7.1973, 7.1973, 7.197, 7.1966, 7.1962, 7.1951, 7.1948, 7.1945, 7.1944, 7.1941, 7.1951, 7.1947, 7.1946, 7.1943, 7.194, 7.1952, 7.195, 7.1947, 7.1958, 7.1968, 7.1967, 7.1965, 7.197500000000001, 7.198500000000001, 7.1988, 7.1987, 7.1983, 7.198, 7.1977, 7.1976, 7.198600000000001, 7.1986, 7.1983, 7.1993, 7.2003, 7.2, 7.2029, 7.2026, 7.2017, 7.2002, 7.2, 7.1998, 7.2008, 7.2004, 7.2014, 7.2022, 7.203200000000001, 7.2029, 7.2038, 7.2074, 7.2084, 7.2105, 7.2122, 7.212, 7.2119, 7.2117, 7.2114, 7.2113, 7.2111, 7.211, 7.2132, 7.212, 7.212, 7.2118, 7.2126, 7.2135, 7.2133, 7.2129, 7.2129, 7.2151, 7.2162, 7.2159, 7.2156, 7.2153, 7.2162, 7.2158, 7.2156, 7.2164, 7.2163, 7.2161, 7.2157, 7.2153, 7.2152, 7.2161, 7.2157, 7.2153, 7.2149, 7.2147, 7.2143, 7.2152, 7.2148, 7.2157, 7.2156, 7.2152, 7.216, 7.2156, 7.2152, 7.215, 7.2148, 7.2145, 7.2153, 7.215, 7.2148, 7.2144, 7.2143, 7.2139, 7.2136, 7.2132, 7.2129, 7.2127, 7.2124, 7.2133, 7.2129, 7.2126, 7.2122, 7.2118, 7.2115, 7.2111, 7.212, 7.2122, 7.2118, 7.2126, 7.2123, 7.2119, 7.2115, 7.2115, 7.2115, 7.2123, 7.212, 7.2116, 7.2113, 7.2118, 7.2115, 7.2114, 7.2112, 7.2108, 7.2108, 7.2105, 7.2103, 7.2101, 7.2125, 7.2122, 7.2122, 7.2123, 7.2125, 7.2135, 7.2144, 7.2141, 7.2151, 7.2161, 7.2162, 7.2158, 7.2167, 7.2178, 7.2174, 7.2171, 7.2167, 7.2166, 7.2165, 7.2162, 7.2158, 7.2157, 7.2154, 7.2151, 7.215, 7.2147, 7.2145, 7.2141, 7.2161, 7.2157, 7.2153, 7.2142, 7.2145, 7.2142, 7.2138, 7.2136, 7.2122, 7.2146, 7.2145, 7.2154, 7.2153, 7.215, 7.2138, 7.2137, 7.2136, 7.2124, 7.2135, 7.2131, 7.2128, 7.2129, 7.2127, 7.2115, 7.2111, 7.2119, 7.2117, 7.2125, 7.2123, 7.212, 7.2128, 7.2137, 7.2135, 7.2143, 7.2139, 7.2135, 7.2135, 7.2143, 7.2141, 7.214, 7.2138, 7.2136, 7.2134, 7.213, 7.2138, 7.2136, 7.2132, 7.213, 7.2138, 7.2136, 7.2133, 7.2129, 7.2125, 7.2122, 7.2121, 7.2119, 7.2118, 7.2117, 7.2118, 7.2131, 7.2128, 7.2137, 7.2134, 7.2133, 7.2129, 7.2126, 7.2123, 7.2121, 7.2129, 7.2126, 7.2134, 7.2132, 7.2128, 7.2124, 7.2133, 7.213, 7.2128, 7.2125, 7.2149, 7.2146, 7.2142, 7.2138, 7.2135, 7.2131, 7.214, 7.2137, 7.2135, 7.2131, 7.2129, 7.2128, 7.2124, 7.2122, 7.2118, 7.2116, 7.2123, 7.2119, 7.2117, 7.2113, 7.2111, 7.2134, 7.2142, 7.2139, 7.2147, 7.2145, 7.2143, 7.2139, 7.2136, 7.2132, 7.214, 7.2137, 7.2133, 7.213, 7.2138, 7.2135, 7.2133, 7.2129, 7.2127, 7.2136, 7.2132, 7.2131, 7.2128, 7.2125, 7.2126, 7.2123, 7.213, 7.2126, 7.2113, 7.211, 7.2107, 7.2104, 7.2102, 7.2112, 7.2109, 7.2116, 7.2115, 7.2101, 7.2087, 7.2074, 7.207, 7.2068, 7.2066, 7.2075, 7.2072, 7.2073, 7.2083, 7.2079, 7.2075, 7.2083, 7.2081, 7.2077, 7.2073, 7.2071, 7.2067, 7.2065, 7.2063, 7.2059, 7.2058, 7.2056, 7.2052, 7.205, 7.2049, 7.2048, 7.2048, 7.2037, 7.2034, 7.2032, 7.2041, 7.2037, 7.2034, 7.2032, 7.2031, 7.2027, 7.2025, 7.2021, 7.2029, 7.2026, 7.2023, 7.2032, 7.202, 7.2018, 7.2017, 7.2014, 7.2013, 7.2009, 7.2005, 7.2001, 7.1998, 7.1995, 7.1991, 7.2, 7.1997, 7.1993, 7.1993, 7.2006, 7.2007, 7.2004, 7.199, 7.1987, 7.2011, 7.2007, 7.2053, 7.2065, 7.2062, 7.207, 7.2079, 7.2086, 7.2084, 7.2083, 7.2079, 7.2076, 7.2073, 7.2081, 7.209, 7.2088, 7.2085, 7.2084, 7.2083, 7.2091, 7.2079, 7.2076, 7.2073, 7.2062, 7.2058, 7.2054, 7.2064, 7.2072, 7.2069, 7.2066, 7.2063, 7.2061, 7.2059, 7.2055, 7.2063, 7.2071, 7.2067, 7.2064, 7.2063, 7.205, 7.2037, 7.2036, 7.2034, 7.2031, 7.2027, 7.2014, 7.201, 7.2008, 7.2018, 7.2014, 7.2012, 7.201, 7.2007, 7.2019, 7.2017, 7.2015, 7.2035, 7.2032, 7.2046, 7.2042, 7.2049, 7.2047, 7.2055, 7.2065, 7.2064, 7.2063, 7.2059, 7.2057, 7.2057, 7.2065, 7.2053, 7.2062, 7.2058, 7.2066, 7.2074, 7.2071, 7.207, 7.2067, 7.2064, 7.2073, 7.2071, 7.2067, 7.2076, 7.2075, 7.2072, 7.208, 7.2077, 7.2073, 7.2081, 7.2078, 7.2074, 7.2073, 7.207, 7.2069, 7.2067, 7.2065, 7.2062, 7.2069, 7.2076, 7.2074, 7.2073, 7.207, 7.2068, 7.2065, 7.2061, 7.2058, 7.2055, 7.2063, 7.2071, 7.208, 7.2089, 7.2087, 7.2083, 7.209, 7.2088, 7.2085, 7.2084, 7.2081, 7.2078, 7.2075, 7.2071, 7.2071, 7.2069, 7.2067, 7.2067, 7.2074, 7.2072, 7.2069, 7.2068, 7.2067, 7.2067, 7.2075, 7.2074, 7.2082, 7.2082, 7.2079, 7.2078, 7.2075, 7.2073, 7.2071, 7.2068, 7.2065, 7.2062, 7.2082, 7.2089, 7.2086, 7.2084, 7.2081, 7.2078, 7.2074, 7.2071, 7.2067, 7.2064, 7.2083, 7.208, 7.2077, 7.2076, 7.2072, 7.2079, 7.2076, 7.2072, 7.2071, 7.2068, 7.2065, 7.2061, 7.2059, 7.2067, 7.2063, 7.206, 7.2067, 7.2074, 7.2071, 7.207, 7.2068, 7.2064, 7.2061, 7.2067, 7.2063, 7.2076, 7.2073, 7.208, 7.2077, 7.2077, 7.2075, 7.2079, 7.2076, 7.2075, 7.2072, 7.2072, 7.2079, 7.2076, 7.2073, 7.2078, 7.2074, 7.2071, 7.2068, 7.2068, 7.2076, 7.2076, 7.2073, 7.2104, 7.2101, 7.2109, 7.2107, 7.2114, 7.2123, 7.212, 7.2118, 7.2114, 7.2111, 7.2108, 7.2105, 7.2105, 7.2103, 7.2101, 7.2098, 7.2096, 7.2083, 7.208, 7.209, 7.2086, 7.2093, 7.2091, 7.209, 7.2077, 7.2073, 7.207, 7.2069, 7.2068, 7.2064, 7.206, 7.2058, 7.2057, 7.2065, 7.2063, 7.2061, 7.2059, 7.2057, 7.2055, 7.2054, 7.2052, 7.205, 7.2046, 7.2045, 7.2043, 7.2041, 7.2029, 7.2026, 7.2024, 7.2022, 7.202, 7.2018, 7.2027, 7.2024, 7.2022, 7.2019, 7.2015, 7.2024, 7.2021, 7.202, 7.2029, 7.2026, 7.2023, 7.202, 7.204, 7.204, 7.2036, 7.2044, 7.204, 7.2037, 7.2035, 7.2031, 7.2038, 7.2036, 7.2033, 7.203, 7.2018, 7.2016, 7.2013, 7.2011, 7.1998, 7.1995, 7.1993, 7.1981, 7.1969, 7.1972, 7.196, 7.1957, 7.196700000000001, 7.1965, 7.1973, 7.197, 7.1967, 7.1966, 7.1975, 7.1973, 7.197, 7.1968, 7.1966, 7.1964, 7.1962, 7.196, 7.196, 7.1958, 7.1956, 7.1953, 7.195, 7.1947, 7.1943, 7.1984, 7.1982, 7.198, 7.1978, 7.1974, 7.1971, 7.1969, 7.1966, 7.1974, 7.1971, 7.1968, 7.1965, 7.1973, 7.197, 7.1977, 7.1976, 7.1983, 7.1981, 7.1978, 7.1978, 7.1975, 7.1963, 7.1952, 7.1941, 7.193, 7.1922, 7.1918, 7.1925, 7.1924, 7.1921, 7.1918, 7.1915, 7.1914, 7.1911, 7.1909, 7.1906, 7.1895, 7.1892, 7.1891, 7.1888, 7.1887, 7.1895, 7.1893, 7.1892, 7.1902, 7.1899, 7.1897, 7.1895, 7.1894, 7.1892, 7.1902, 7.1902, 7.1901, 7.19, 7.1897, 7.1895, 7.1904, 7.1892, 7.1888, 7.1886, 7.1895, 7.1893, 7.19, 7.1898, 7.1896, 7.1896, 7.1896, 7.1892, 7.189, 7.1897, 7.1894, 7.1893, 7.1891, 7.1901, 7.1898, 7.1896, 7.1894, 7.1891, 7.1888, 7.1886, 7.1884, 7.1892, 7.1889, 7.1886, 7.1883, 7.1882, 7.188, 7.1882, 7.1892000000000005, 7.189, 7.1888, 7.1896, 7.1894, 7.1892, 7.1901, 7.1899, 7.1896, 7.1894, 7.192, 7.1918, 7.1907, 7.1895, 7.1893, 7.190300000000001, 7.1901, 7.1944, 7.1945, 7.1945, 7.1942, 7.1939, 7.1928, 7.1924, 7.1932, 7.1941, 7.1949, 7.1947, 7.1944, 7.1952, 7.1949, 7.1957, 7.1954, 7.1952, 7.196, 7.1959, 7.1958, 7.1978, 7.1975, 7.1974, 7.197, 7.197, 7.1967, 7.1964, 7.1963, 7.1963, 7.1971, 7.1968, 7.1967, 7.1963, 7.196, 7.1956, 7.1954, 7.1952, 7.195, 7.1948, 7.1947, 7.1947, 7.1948, 7.1937, 7.1934, 7.1931, 7.1928, 7.1926, 7.1933, 7.194, 7.1937, 7.1935, 7.1942, 7.1939, 7.1928, 7.1927, 7.1924, 7.1921, 7.1929, 7.1928, 7.1925, 7.1923, 7.1921, 7.1919, 7.1916, 7.1913, 7.191, 7.1908, 7.1904, 7.1913, 7.1911, 7.1907, 7.1905, 7.1901, 7.1901, 7.1908, 7.1907, 7.1914, 7.1921, 7.1928, 7.1925, 7.1934, 7.1932, 7.1939, 7.1937, 7.1935, 7.1934, 7.1931, 7.1939, 7.1936, 7.1932, 7.1929, 7.1926, 7.1925, 7.1922, 7.192, 7.1917, 7.1915, 7.1915, 7.1912, 7.1909, 7.1918, 7.1915, 7.1923, 7.1931, 7.1927, 7.1925, 7.1933, 7.193, 7.1929, 7.1933, 7.1931, 7.1938, 7.1935, 7.1933, 7.1929, 7.1926, 7.1925, 7.1931, 7.1919, 7.1916, 7.1921, 7.1921, 7.1918, 7.1916, 7.1913, 7.1911, 7.1907, 7.1915, 7.1923, 7.192, 7.1918, 7.1914, 7.1904, 7.1902, 7.1899, 7.1897, 7.1896, 7.1893, 7.19, 7.1897, 7.1894, 7.1892, 7.1889, 7.1886, 7.1883, 7.189, 7.1897, 7.1905, 7.1902, 7.1901, 7.1898, 7.1905, 7.1924, 7.1922, 7.192, 7.1918, 7.1917, 7.1925, 7.1935, 7.1932, 7.1939, 7.1937, 7.1935, 7.1933, 7.1932, 7.193, 7.1939, 7.1939, 7.194, 7.1939, 7.1936, 7.1946, 7.1944, 7.1942, 7.1939, 7.1938, 7.1936, 7.1935, 7.1932, 7.193, 7.1928, 7.1925, 7.1921, 7.1918, 7.1917, 7.1924, 7.1922, 7.1929, 7.1928, 7.1916, 7.1913, 7.191, 7.1907, 7.1907, 7.1905, 7.1903, 7.1902, 7.189, 7.1887, 7.1885, 7.1882, 7.1879, 7.1889, 7.189900000000001, 7.1898, 7.1895, 7.1893, 7.1891, 7.1889, 7.1886, 7.1874, 7.1872, 7.1869, 7.1867, 7.1874, 7.1882, 7.188, 7.1877, 7.1875, 7.1873, 7.187, 7.1867, 7.1875, 7.1872, 7.1881, 7.1878, 7.1875, 7.1873, 7.1861, 7.1859, 7.1856, 7.1854, 7.1853, 7.185, 7.1846, 7.1843, 7.184, 7.1837, 7.1837, 7.1844, 7.1844, 7.1841, 7.1838, 7.1836, 7.1834, 7.1831, 7.1829, 7.1826, 7.1826, 7.1827, 7.1827, 7.1824, 7.1822, 7.1829, 7.1827, 7.1823, 7.182, 7.1827, 7.1833, 7.183, 7.1829, 7.1827, 7.1825, 7.1823, 7.1812, 7.1809, 7.1807, 7.1816, 7.1813, 7.1811, 7.1809, 7.1807, 7.1795, 7.1794, 7.1792, 7.179, 7.1797, 7.1794, 7.1791, 7.178, 7.178, 7.1777, 7.1774, 7.1772, 7.177, 7.1768, 7.1766, 7.1769, 7.1767, 7.1765, 7.1763, 7.177, 7.1768, 7.1765, 7.1763, 7.1752, 7.1749, 7.1748, 7.1745, 7.1743, 7.174, 7.1737, 7.1747000000000005, 7.1745, 7.1752, 7.1751, 7.175, 7.1748, 7.1745, 7.1752, 7.1749, 7.1738, 7.1736, 7.1743, 7.1742, 7.1741, 7.1739, 7.1746, 7.1748, 7.1745, 7.1744, 7.1751, 7.1749, 7.1747, 7.1747, 7.1744, 7.175, 7.1749, 7.1747, 7.1747, 7.1744, 7.1743, 7.1742, 7.174, 7.1755, 7.1761, 7.1769, 7.1766, 7.1774, 7.1772, 7.177, 7.1771, 7.178100000000001, 7.179100000000001, 7.1799, 7.1798, 7.1796, 7.1795, 7.1793, 7.1791, 7.1791, 7.1789, 7.1788, 7.1785, 7.1783, 7.1782, 7.1779, 7.1779, 7.1776, 7.1775, 7.1774, 7.1771, 7.1779, 7.1776, 7.1775, 7.1772, 7.1771, 7.177, 7.1777, 7.1775, 7.1773, 7.1781, 7.1791, 7.1811, 7.1808, 7.1818, 7.1827, 7.1837, 7.1847, 7.1854, 7.1852, 7.1849, 7.1848, 7.1845, 7.1857, 7.1857, 7.1857, 7.1863, 7.1869, 7.1867, 7.1864, 7.1872, 7.187, 7.1869, 7.1866, 7.1864, 7.1863, 7.1861, 7.1859, 7.1857, 7.1856, 7.1856, 7.1854, 7.1854, 7.1862, 7.1859, 7.1858, 7.1865, 7.1862, 7.1859, 7.1856, 7.1873, 7.1879, 7.1876, 7.1893, 7.1894, 7.1891, 7.1888, 7.1885, 7.1882, 7.1881, 7.1881, 7.187, 7.1868, 7.1865, 7.1862, 7.1869, 7.187, 7.1868, 7.1876, 7.1874, 7.1881, 7.1888, 7.1885, 7.1892, 7.1889, 7.1887, 7.1876, 7.1886, 7.1884, 7.1881, 7.1879, 7.1877, 7.1914, 7.1911, 7.191, 7.1908, 7.1916, 7.1916, 7.1914, 7.1912, 7.1909, 7.1899, 7.1896, 7.1903, 7.19, 7.1898, 7.1895, 7.1893, 7.189, 7.1887, 7.1885, 7.1882, 7.188, 7.1887, 7.1886, 7.1884, 7.1892, 7.1889, 7.1886, 7.1886, 7.1883, 7.1883, 7.188, 7.1877, 7.1883, 7.188, 7.1879, 7.1879, 7.1877, 7.1884, 7.1884, 7.1881, 7.1879, 7.1876, 7.1899, 7.1899, 7.19, 7.1897, 7.1904, 7.1902, 7.19, 7.1897, 7.1887, 7.1885, 7.1882, 7.188, 7.1886, 7.1892, 7.189, 7.1888, 7.1885, 7.1883, 7.188, 7.1878, 7.1885, 7.1883, 7.1891, 7.1888, 7.1886, 7.1883, 7.189, 7.1887, 7.1885, 7.1882, 7.1879, 7.1878, 7.1875, 7.1872, 7.1869, 7.1866, 7.1873, 7.187, 7.1867, 7.1866, 7.1874, 7.1874, 7.1871, 7.1869, 7.1867, 7.1865, 7.1864, 7.1861, 7.1858, 7.1855, 7.1862, 7.186, 7.1858, 7.1855, 7.1862, 7.1869, 7.1868, 7.1865, 7.1863, 7.1862, 7.1859, 7.1869000000000005, 7.1867, 7.1866, 7.1864, 7.1871, 7.1869, 7.1875, 7.1872, 7.1872, 7.1878, 7.1876, 7.1873, 7.1872, 7.1869, 7.1867, 7.1873, 7.187, 7.1868, 7.1865, 7.1864, 7.1861, 7.1858, 7.1925, 7.1924, 7.1923, 7.193, 7.193, 7.1929, 7.1926, 7.1924, 7.1921, 7.192, 7.1930000000000005, 7.1927, 7.1933, 7.1931, 7.1928, 7.1935, 7.1932, 7.1931, 7.1937, 7.1934, 7.1943, 7.1941, 7.194, 7.1939, 7.1938, 7.1944, 7.1943, 7.1953000000000005, 7.195, 7.196000000000001, 7.1957, 7.1966, 7.1966, 7.1964, 7.1961, 7.1967, 7.1966, 7.1973, 7.197, 7.1959, 7.1966, 7.1965, 7.1964, 7.1962, 7.196, 7.196, 7.1961, 7.196, 7.1968, 7.1986, 7.1984, 7.1981, 7.199, 7.1987, 7.1993, 7.1999, 7.2007, 7.2004, 7.2001, 7.1998, 7.1997, 7.1994, 7.1992, 7.2001, 7.2007, 7.2006, 7.2003, 7.2001, 7.1999, 7.1996, 7.1993, 7.1991, 7.1989, 7.1986, 7.1986, 7.1993, 7.1992, 7.1989, 7.1986, 7.1983, 7.199, 7.1987, 7.1994, 7.2, 7.1999, 7.1996, 7.1993, 7.1983, 7.1982, 7.2004, 7.2004, 7.2011, 7.2027, 7.2025, 7.2023, 7.203, 7.2027, 7.2029, 7.2037, 7.2028, 7.2035, 7.2035, 7.2032, 7.2033, 7.203, 7.2027, 7.2025, 7.2022, 7.202, 7.2018, 7.2046, 7.2056, 7.2053, 7.2069, 7.2076, 7.2103, 7.21, 7.2097, 7.2103, 7.21, 7.2097, 7.2103, 7.2102, 7.21, 7.2097, 7.2094, 7.2101, 7.211, 7.2117, 7.2116, 7.2113, 7.2115, 7.2112, 7.2137, 7.2138, 7.2139, 7.215, 7.2148, 7.2155, 7.2154, 7.216, 7.2158, 7.2156, 7.2155, 7.2153, 7.215, 7.215, 7.2148, 7.2145, 7.2152, 7.2159, 7.2158, 7.2156, 7.2156, 7.2156, 7.2153, 7.2151, 7.2158, 7.2155, 7.2154, 7.2151, 7.215, 7.2147, 7.2145, 7.2143, 7.2141, 7.2139, 7.2137, 7.2135, 7.2133, 7.2131, 7.2139, 7.2136, 7.2135, 7.2134, 7.2132, 7.2142, 7.214, 7.2139, 7.2136, 7.2133, 7.2132, 7.213, 7.2137, 7.2136, 7.2133, 7.2139, 7.2136, 7.2135, 7.2134, 7.2133, 7.2131, 7.2129, 7.2128, 7.2126, 7.2124, 7.2124, 7.2121, 7.2146, 7.2144, 7.2143, 7.2142, 7.2142, 7.214, 7.2138, 7.2135, 7.2143, 7.215, 7.2149, 7.2147, 7.2144, 7.2144, 7.2143, 7.2141, 7.2138, 7.2144, 7.2143, 7.215, 7.2148, 7.2147, 7.2145, 7.2151, 7.2148, 7.2155, 7.2154, 7.2153, 7.2151, 7.2149, 7.2146, 7.2153, 7.2151, 7.2158, 7.2165, 7.2162, 7.2159, 7.2166, 7.2166, 7.2173, 7.2171, 7.217, 7.2168, 7.2175, 7.2174, 7.2181, 7.2178, 7.2176, 7.2174, 7.2181, 7.2178, 7.2176, 7.2174, 7.2172, 7.2179, 7.218, 7.2177, 7.2175, 7.2165, 7.2166, 7.2166, 7.2163, 7.216, 7.2157, 7.2155, 7.2162, 7.216, 7.2157, 7.2155, 7.2153, 7.2155, 7.2153, 7.2143, 7.2132, 7.2121, 7.2128, 7.2127, 7.2124, 7.2122, 7.2119, 7.2117, 7.2116, 7.2114, 7.2112, 7.211, 7.2107, 7.2107, 7.2108, 7.2097, 7.2094, 7.2093, 7.2092, 7.2099, 7.2098, 7.2105, 7.2102, 7.2108, 7.2106, 7.2104, 7.2103, 7.2102, 7.2099, 7.2097, 7.2107, 7.2105, 7.2131, 7.2132, 7.2129, 7.2127, 7.2127, 7.2129, 7.2146, 7.2144, 7.2141, 7.2147, 7.2146, 7.2145, 7.2143, 7.214, 7.2138, 7.2136, 7.2143, 7.214, 7.2145, 7.2143, 7.2143, 7.2143, 7.2142, 7.2142, 7.214, 7.2137, 7.2134, 7.2132, 7.2129, 7.2126, 7.2124, 7.2121, 7.2119, 7.2116, 7.2122, 7.2119, 7.2117, 7.2114, 7.2104, 7.2104, 7.2101, 7.21, 7.2097, 7.2094, 7.2092, 7.2089, 7.2087, 7.2093, 7.2091, 7.2089, 7.2096, 7.2093, 7.21, 7.2099, 7.2096, 7.2093, 7.209, 7.2088, 7.2095, 7.2086, 7.2084, 7.2082, 7.208, 7.2077, 7.2074, 7.2071, 7.207, 7.2061, 7.205, 7.2041, 7.2032, 7.2024, 7.2021, 7.2019, 7.201, 7.2016, 7.2015, 7.2012, 7.2012, 7.2009, 7.2008, 7.2014, 7.2011, 7.2012, 7.2036, 7.2042, 7.2039, 7.2036, 7.2033, 7.203, 7.2029, 7.2026, 7.2033, 7.2031, 7.2028, 7.2026, 7.2023, 7.2023, 7.2021, 7.202, 7.2017, 7.2015, 7.2014, 7.2012, 7.201, 7.2007, 7.2007, 7.2006, 7.2005, 7.2003, 7.2011, 7.2026, 7.2016, 7.2013, 7.2011, 7.2009, 7.2007, 7.2005, 7.2003, 7.2001, 7.1999, 7.1996, 7.1993, 7.1992, 7.1989, 7.199, 7.1995, 7.1993, 7.1993, 7.199, 7.1988, 7.1985, 7.1984, 7.1985, 7.1993, 7.1984, 7.199, 7.1989, 7.1986, 7.1985, 7.1984, 7.1991, 7.1997, 7.1995, 7.1992, 7.1993, 7.1992, 7.1991, 7.199, 7.1988, 7.1986, 7.1985, 7.1983, 7.1991, 7.1989, 7.1986, 7.1984, 7.1982, 7.198, 7.199000000000001, 7.1988, 7.1986, 7.1987, 7.1985, 7.1983, 7.1982, 7.199, 7.1997, 7.1999, 7.2, 7.2006, 7.2013, 7.2019, 7.2035, 7.2032, 7.2029, 7.2039, 7.2036, 7.2035, 7.2043, 7.204, 7.2038, 7.2036, 7.2035, 7.2034, 7.2024, 7.2021, 7.2019, 7.2016, 7.2014, 7.2011, 7.2001, 7.1998, 7.1996, 7.1993, 7.1992, 7.2009, 7.2026, 7.2024, 7.2023, 7.2044, 7.2042, 7.204, 7.2037, 7.2034, 7.2031, 7.2029, 7.2028, 7.2025, 7.2022, 7.2019, 7.2016, 7.2015, 7.2012, 7.2018, 7.2016, 7.2014, 7.2012, 7.2018, 7.2015, 7.2004, 7.1994, 7.1992, 7.1998, 7.1997, 7.1996, 7.2002, 7.1997, 7.1988, 7.1979, 7.1969, 7.1967, 7.1966, 7.1965, 7.1972, 7.1969, 7.1968, 7.1975, 7.1982, 7.1979, 7.1986, 7.1986, 7.1984, 7.199, 7.1988, 7.1994, 7.1991, 7.1988, 7.1986, 7.1992, 7.1998, 7.2005, 7.2002, 7.2002, 7.2, 7.1999, 7.1999, 7.1998, 7.1995, 7.1994, 7.1991, 7.1988, 7.1988, 7.1978, 7.1975, 7.1972, 7.1969, 7.197900000000001, 7.1976, 7.1967, 7.1972, 7.197, 7.1967, 7.1958, 7.1955, 7.1952, 7.1959, 7.1956, 7.1953, 7.1952, 7.1951, 7.1958, 7.1966, 7.1964, 7.1962, 7.196, 7.1957, 7.1957, 7.1963, 7.1961, 7.1959, 7.1956, 7.1963, 7.1962, 7.196, 7.1966, 7.1966, 7.1966, 7.1964, 7.1962, 7.196, 7.1957, 7.1955, 7.1952, 7.1951, 7.1949, 7.1947, 7.1953, 7.195, 7.1949, 7.1947, 7.1954, 7.1961, 7.1951, 7.1949, 7.1947, 7.1945, 7.1937, 7.1927, 7.1925, 7.1922, 7.192, 7.1918, 7.1916, 7.1915, 7.1905, 7.1912, 7.1909, 7.1906, 7.1898, 7.1904, 7.1901, 7.1899, 7.1906, 7.1904, 7.1902, 7.1902, 7.19, 7.1898, 7.1895, 7.1894, 7.1891, 7.1895, 7.1893, 7.189, 7.1887, 7.1884, 7.1883, 7.1882, 7.188, 7.189, 7.1888, 7.1898, 7.1908, 7.1907, 7.1905, 7.1911, 7.1923, 7.1925, 7.1924, 7.1922, 7.1933, 7.1943, 7.1942, 7.1941, 7.1939, 7.1963, 7.197, 7.1986, 7.1983, 7.1989, 7.1987, 7.1992, 7.1989, 7.1987, 7.1984, 7.1981, 7.1981, 7.198, 7.1978, 7.1976, 7.1975, 7.1973, 7.1974, 7.198, 7.1978, 7.1985, 7.1982, 7.198, 7.1986, 7.1986, 7.1976, 7.1982, 7.1982, 7.1979, 7.1977, 7.1983, 7.198, 7.1977, 7.1975, 7.1973, 7.1979, 7.1977, 7.1975, 7.1974, 7.198, 7.1979, 7.1977, 7.1975, 7.1981, 7.1978, 7.1976, 7.1973, 7.197, 7.1967, 7.1965, 7.1962, 7.196, 7.1966, 7.1964, 7.1969, 7.1968, 7.1967, 7.1973, 7.1971, 7.1977, 7.1976, 7.1976, 7.1974, 7.198, 7.1979, 7.1977, 7.1983, 7.1983, 7.1981, 7.1979, 7.1977, 7.1974, 7.1972, 7.197, 7.1976, 7.1974, 7.1973, 7.197, 7.1969, 7.1967, 7.1972, 7.197, 7.1976, 7.1973, 7.197, 7.1976, 7.1974, 7.1971, 7.197, 7.1967, 7.1965, 7.1972, 7.1978, 7.1984, 7.1982, 7.1979, 7.1978, 7.1978, 7.1977, 7.1975, 7.1981, 7.1979, 7.1976, 7.1973, 7.1971, 7.1969, 7.1968, 7.1966, 7.1971, 7.1968, 7.1967, 7.1964, 7.1969, 7.1966, 7.1963, 7.1969, 7.1966, 7.1965, 7.1962, 7.196, 7.1966, 7.1965, 7.1962, 7.1959, 7.1965, 7.1962, 7.1968, 7.1965, 7.1963, 7.196, 7.1957, 7.1963, 7.1961, 7.1958, 7.1956, 7.1954, 7.1951, 7.1965, 7.1962, 7.196, 7.1958, 7.1956, 7.1955, 7.1953, 7.195, 7.1947, 7.1946, 7.1944, 7.1942, 7.1948, 7.1945, 7.1943, 7.194, 7.1937, 7.1934, 7.1933, 7.1931, 7.1953, 7.1952, 7.195, 7.1951, 7.1977, 7.1978, 7.1981, 7.1982, 7.1992, 7.1997, 7.1995, 7.1996, 7.1993, 7.1991, 7.1989, 7.2003, 7.2001, 7.2, 7.1998, 7.1997, 7.2011, 7.2018, 7.2016, 7.2013, 7.2011, 7.2017, 7.2016, 7.2014, 7.2021, 7.2028, 7.2027, 7.2025, 7.2031, 7.2032, 7.2031, 7.2037, 7.2052, 7.2049, 7.2047, 7.2055, 7.2061, 7.2059, 7.2074, 7.2073, 7.2065, 7.2064, 7.2063, 7.2061, 7.2067, 7.2066, 7.2065, 7.211, 7.2145, 7.2143, 7.2142, 7.2148, 7.2154, 7.2152, 7.2149, 7.2146, 7.2152, 7.2149, 7.2155, 7.2153, 7.2151, 7.2149, 7.2155, 7.2153, 7.215, 7.2149, 7.2156, 7.2153, 7.215, 7.2147, 7.2153, 7.2159, 7.2158, 7.2157, 7.2156, 7.2166, 7.2181, 7.2179, 7.2176, 7.2182, 7.2189, 7.2189, 7.2188, 7.2186, 7.2184, 7.2181, 7.218, 7.2186, 7.2184, 7.2181, 7.2187, 7.2184, 7.2181, 7.2179, 7.2184, 7.2183, 7.2181, 7.2179, 7.2176, 7.2173, 7.2171, 7.2169, 7.2174, 7.218, 7.2177, 7.2177, 7.2174, 7.2173, 7.2171, 7.2171, 7.2168, 7.2165, 7.2171, 7.2169, 7.2175, 7.2173, 7.217, 7.2167, 7.2165, 7.2163, 7.2161, 7.2167, 7.2164, 7.2163, 7.2161, 7.2158, 7.2155, 7.2161, 7.2159, 7.2157, 7.2163, 7.2185, 7.2182, 7.2188, 7.2186, 7.22, 7.2197, 7.2196, 7.2194, 7.2199, 7.2217, 7.2214, 7.2213, 7.221, 7.2207, 7.2228, 7.2226, 7.2224, 7.223, 7.2228, 7.2233, 7.2246, 7.2245, 7.2243, 7.2242, 7.224, 7.2239, 7.2244, 7.2241, 7.2246, 7.2251, 7.2257, 7.2256, 7.2261, 7.2275, 7.2272, 7.2271, 7.2269, 7.2268, 7.2266, 7.2264, 7.2264, 7.2262, 7.2269, 7.2267, 7.2265, 7.2271, 7.227, 7.2276, 7.2275, 7.2272, 7.2278, 7.2276, 7.2274, 7.2272, 7.2272, 7.2278, 7.2284, 7.2289, 7.2287, 7.2287, 7.2284, 7.2282, 7.2319, 7.2316, 7.2316, 7.2307, 7.2308, 7.2306, 7.2304, 7.231, 7.2311, 7.2308, 7.2306, 7.2305, 7.2303, 7.2301, 7.2314, 7.2328, 7.2333, 7.2331, 7.2337, 7.2335, 7.2332, 7.233, 7.2327, 7.2325, 7.2323, 7.2322, 7.2319, 7.2317, 7.2315, 7.2313, 7.2319, 7.2317, 7.2315, 7.2313, 7.2323, 7.2322, 7.2329, 7.2328, 7.2327, 7.2325, 7.2348, 7.2346, 7.2346, 7.2345, 7.2337, 7.2339, 7.2337, 7.2329, 7.2335, 7.2333, 7.2333, 7.234, 7.2356, 7.2353, 7.2351, 7.2356, 7.2353, 7.2351, 7.2348, 7.2357, 7.2355, 7.236, 7.2357, 7.2356, 7.2353, 7.2352, 7.235, 7.235, 7.2347, 7.2344, 7.2341, 7.2338, 7.2335, 7.2332, 7.2329, 7.2334, 7.2331, 7.233, 7.2331, 7.2336, 7.2334, 7.2331, 7.2329, 7.2335, 7.2333, 7.2349, 7.2346, 7.2343, 7.2341, 7.2346, 7.2343, 7.234, 7.2338, 7.2335, 7.2333, 7.2341, 7.2349, 7.2347, 7.2348, 7.2346, 7.2343, 7.2341, 7.2365, 7.237, 7.2367, 7.2366, 7.2365, 7.2362, 7.236, 7.2357, 7.2362, 7.2367, 7.2367, 7.2372, 7.2377, 7.2375, 7.2373, 7.2371, 7.2368, 7.2365, 7.2362, 7.2367, 7.2364, 7.2361, 7.2359, 7.2357, 7.2363, 7.2361, 7.2361, 7.236, 7.2359, 7.2358, 7.2356, 7.2353, 7.235, 7.2348, 7.2347, 7.2345, 7.2343, 7.2349, 7.2355, 7.2353, 7.2352, 7.235, 7.2348, 7.2346, 7.2345, 7.2344, 7.2341, 7.2338, 7.2336, 7.2334, 7.2332, 7.233, 7.2328, 7.2325, 7.2325, 7.2323, 7.2322, 7.2319, 7.2324, 7.2322, 7.2319, 7.2316, 7.2314, 7.2319, 7.2325, 7.2323, 7.2331, 7.2328, 7.2334, 7.2333, 7.2341, 7.2341, 7.2339, 7.2337, 7.2343, 7.2341, 7.2339, 7.2337, 7.2335, 7.2333, 7.2331, 7.2328, 7.2334, 7.2332, 7.2338, 7.2336, 7.2342], '192.168.122.112': [10.3512, 10.5099, 8.9685, 8.5216, 8.0372, 7.649, 7.3723, 7.8898, 7.6171, 7.5333, 7.4328, 7.2926, 7.2379, 7.1381, 7.0644, 6.989, 6.9769, 6.9304, 6.915, 6.8952, 6.8467, 6.7972, 6.7457, 6.8056, 6.7979, 6.779, 6.7527, 6.7013, 6.724, 6.6991, 7.0212, 7.0223, 6.9715, 6.9457, 7.0555, 7.0345, 6.9879, 7.2579, 7.3748, 7.3362, 7.2881, 7.3705, 7.3243, 7.2945, 7.324, 7.3237, 7.3204, 7.3101, 7.2778, 7.2932, 7.3019, 7.3976, 7.379, 7.3692, 7.4266, 7.4062, 7.3703, 7.3378, 7.3056, 7.2225, 7.3745, 7.473, 7.4399, 7.4145, 7.4021, 7.3914, 7.3614, 7.3356, 7.3913, 7.3642, 7.3743, 7.3574, 7.3385, 7.3162, 7.3083, 7.2887, 7.3356, 7.3228, 7.3015, 7.2803, 7.2607, 7.247, 7.2266, 7.2069, 7.1854, 7.1648, 7.1433, 7.1227, 7.1628, 7.1468, 7.1304, 7.1167, 7.1002, 7.086, 7.0729, 7.0625, 7.0516, 7.0343, 7.0215, 7.068, 7.0629, 7.0569, 6.9989, 6.9844, 6.9708, 6.9697, 6.9641, 6.9584, 6.9482, 6.9404, 6.935, 6.9241, 6.9106, 6.9445, 6.9298, 6.9224, 6.9095, 6.9062, 6.9034, 6.9335, 6.9214, 6.9141, 7.1295, 7.1166, 7.1464, 7.1343, 7.1233, 7.1083, 7.0959, 7.1222, 7.1145, 7.101, 7.0994, 7.1316, 7.1213, 7.1146, 7.1018, 7.0901, 7.0802, 7.0706, 7.0595, 7.0555, 7.0845, 7.075, 7.0668, 7.0554, 7.0811, 7.1066, 7.0969, 7.0882, 7.0804, 7.0745, 7.0706, 7.0633, 7.0585, 7.0822, 7.1057, 7.1273, 7.1211, 7.1116, 7.1016, 7.1289, 7.1207, 7.1119, 7.109, 7.1324, 7.1212, 7.1435, 7.1695, 7.1585, 7.1475, 7.1395, 7.1317, 7.1251, 7.1456, 7.1671, 7.163, 7.1564, 7.152, 7.1443, 7.1754, 7.1672, 7.1628, 7.1866, 7.2084, 7.2292, 7.2214, 7.2125, 7.2036, 7.1993, 7.1985, 7.1894, 7.1844, 7.1782, 7.1727, 7.1653, 7.2097, 7.2279, 7.2273, 7.2199, 7.2454, 7.2362, 7.2278, 7.275, 7.2692, 7.2675, 7.2619, 7.3453, 7.3392, 7.3361, 7.3267, 7.3476, 7.3763, 7.3708, 7.3658, 7.359, 7.3505, 7.3454, 7.3431, 7.3357, 7.352, 7.3459, 7.3378, 7.3292, 7.3462, 7.3394, 7.3575, 7.3497, 7.3815, 7.3755, 7.3679, 7.3592, 7.3512, 7.3437, 7.3418, 7.3355, 7.3126, 7.3064, 7.3003, 7.3071, 7.3038, 7.3286, 7.3273, 7.3206, 7.3155, 7.3077, 7.2855, 7.2787, 7.2746, 7.27, 7.2682, 7.2866, 7.2793, 7.2728, 7.2698, 7.2622, 7.2581, 7.2607, 7.2561, 7.2727, 7.2671, 7.2837, 7.2772, 7.2912, 7.2846, 7.2796, 7.297, 7.2978, 7.2943, 7.2948, 7.2897, 7.3048, 7.3002, 7.3153, 7.3093, 7.3038, 7.298, 7.3135, 7.3119, 7.3048, 7.2995, 7.2939, 7.2887, 7.2837, 7.2782, 7.2731, 7.2694, 7.2821, 7.2969, 7.2918, 7.2863, 7.2812, 7.2759, 7.271, 7.2678, 7.2651, 7.2624, 7.2572, 7.2542, 7.2668, 7.2816, 7.2762, 7.2729, 7.2841, 7.2794, 7.2774, 7.2755, 7.2708, 7.2649, 7.2604, 7.2689, 7.2647, 7.261, 7.2783, 7.2718, 7.2832, 7.2785, 7.2721, 7.2674, 7.2632, 7.2602, 7.2714, 7.2653, 7.2634, 7.3262, 7.3375, 7.3321, 7.3289, 7.3243, 7.3362, 7.3466, 7.3404, 7.3368, 7.3312, 7.327, 7.3395, 7.3356, 7.348, 7.3423, 7.337, 7.3315, 7.3279, 7.3226, 7.3201, 7.3179, 7.3123, 7.3084, 7.3186, 7.3127, 7.3087, 7.3195, 7.3153, 7.3098, 7.3044, 7.2987, 7.2808, 7.2906, 7.287, 7.2817, 7.292, 7.3025, 7.3014, 7.297, 7.2956, 7.3069, 7.3032, 7.3, 7.2963, 7.2915, 7.2881, 7.2875, 7.2824, 7.278, 7.2743, 7.2734, 7.2751, 7.2721, 7.2682, 7.2641, 7.2635, 7.274, 7.2723, 7.2813, 7.3044, 7.3042, 7.3025, 7.3112, 7.3213, 7.3452, 7.3398, 7.3238, 7.3213, 7.3183, 7.328, 7.3256, 7.3341, 7.3293, 7.3399, 7.3349, 7.3444, 7.3419, 7.3372, 7.3457, 7.3863, 7.3827, 7.3788, 7.3741, 7.3737, 7.3717, 7.3677, 7.3654, 7.3742, 7.3702, 7.3667, 7.365, 7.3603, 7.3697, 7.3786, 7.3757, 7.3841, 7.3799, 7.3753, 7.3723, 7.3697, 7.3653, 7.3607, 7.3578, 7.3553, 7.3536, 7.3619, 7.36, 7.3601, 7.3579, 7.3542, 7.3503, 7.3716, 7.3809, 7.376, 7.3857, 7.3839, 7.3802, 7.3766, 7.3843, 7.3806, 7.3769, 7.374, 7.3831, 7.3783, 7.3757, 7.3834, 7.3801, 7.3784, 7.3742, 7.3826, 7.3819, 7.3803, 7.3796, 7.3753, 7.3713, 7.399, 7.3959, 7.4033, 7.4103, 7.406, 7.4167, 7.4244, 7.4213, 7.4168, 7.4133, 7.41, 7.4075, 7.4143, 7.4129, 7.4207, 7.4549, 7.4508, 7.4465, 7.4449, 7.4523, 7.4479, 7.4553, 7.4563, 7.4527, 7.4525, 7.4502, 7.4503, 7.4481, 7.4448, 7.4522, 7.4532, 7.4613, 7.4521, 7.4482, 7.4681, 7.469, 7.476, 7.4734, 7.4767, 7.4736, 7.4695, 7.4699, 7.5003, 7.5079, 7.504, 7.5116, 7.5081, 7.5184, 7.5172, 7.5154, 7.5115, 7.5104, 7.5075, 7.5211, 7.5182, 7.5154, 7.5112, 7.5073, 7.516, 7.5147, 7.5124, 7.5092, 7.5059, 7.5068, 7.5071, 7.5061, 7.5027, 7.5003, 7.4973, 7.494, 7.4904, 7.5001, 7.4975, 7.4942, 7.4912, 7.4874, 7.4834, 7.4904, 7.4864, 7.4932, 7.4902, 7.4879, 7.4856, 7.4816, 7.4893, 7.4958, 7.4925, 7.489, 7.4886, 7.485, 7.4826, 7.4787, 7.4844, 7.4902, 7.4975, 7.4942, 7.5014, 7.5083, 7.507, 7.5033, 7.4995, 7.4962, 7.4925, 7.4888, 7.4861, 7.4933, 7.4907, 7.487, 7.4847, 7.491, 7.4878, 7.4848, 7.4814, 7.4821, 7.4791, 7.4758, 7.4721, 7.4787, 7.4752, 7.4715, 7.4706, 7.4669, 7.4633, 7.4697, 7.4672, 7.4637, 7.4608, 7.4574, 7.4542, 7.4511, 7.4474, 7.4453, 7.4435, 7.4416, 7.4399, 7.4371, 7.4339, 7.4312, 7.4366, 7.4336, 7.4481, 7.4464, 7.4436, 7.4417, 7.4391, 7.437, 7.4339, 7.4325, 7.431, 7.4288, 7.426, 7.4315, 7.428, 7.4339, 7.4307, 7.4294, 7.4354, 7.434, 7.4307, 7.4279, 7.4255, 7.4228, 7.428, 7.426, 7.4226, 7.4191, 7.4165, 7.4215, 7.412, 7.4026, 7.3995, 7.3972, 7.3943, 7.3916, 7.3898, 7.3889, 7.4041, 7.4014, 7.3986, 7.404, 7.4013, 7.3983, 7.4224, 7.4305, 7.4287, 7.4256, 7.4224, 7.4197, 7.4253, 7.4231, 7.4201, 7.417, 7.4228, 7.4219, 7.4203, 7.4191, 7.4182, 7.4155, 7.4258, 7.4243, 7.4295, 7.4264, 7.4235, 7.4218, 7.4272, 7.4255, 7.4241, 7.4294, 7.4264, 7.4239, 7.4284, 7.4262, 7.4318, 7.4295, 7.4272, 7.4359, 7.434, 7.4387, 7.4362, 7.434, 7.4315, 7.4306, 7.4277, 7.4248, 7.4223, 7.4276, 7.4331, 7.4384, 7.4375, 7.435, 7.4318, 7.429, 7.4284, 7.4336, 7.4333, 7.4304, 7.4288, 7.4341, 7.4392, 7.4559, 7.453, 7.4508, 7.4491, 7.4665, 7.4712, 7.4689, 7.4684, 7.4661, 7.4642, 7.4614, 7.4598, 7.4646, 7.4619, 7.4677, 7.4659, 7.4639, 7.4616, 7.4596, 7.4642, 7.4953, 7.4938, 7.4923, 7.4911, 7.4888, 7.4865, 7.4777, 7.4758, 7.4807, 7.4849, 7.4985, 7.496, 7.4943, 7.4917, 7.4894, 7.4871, 7.4853, 7.4825, 7.48, 7.4784, 7.476, 7.4734, 7.4779, 7.4754, 7.4731, 7.4703, 7.4751, 7.4723, 7.4773, 7.4751, 7.4724, 7.4719, 7.4711, 7.4693, 7.4672, 7.4664, 7.4644, 7.4623, 7.46, 7.4663, 7.4667, 7.4647, 7.4627, 7.4787, 7.4764, 7.4737, 7.4711, 7.4696, 7.4669, 7.4661, 7.4635, 7.4621, 7.4629, 7.4612, 7.4589, 7.4565, 7.4612, 7.4597, 7.4575, 7.4697, 7.4685, 7.4673, 7.4654, 7.4786, 7.4717, 7.4698, 7.4888, 7.5005, 7.4978, 7.4953, 7.4936, 7.4986, 7.5031, 7.5009, 7.5007, 7.5055, 7.5038, 7.503, 7.5072, 7.5064, 7.5036, 7.5015, 7.4988, 7.4962, 7.4934, 7.4973, 7.4952, 7.4995, 7.497, 7.4943, 7.4939, 7.4912, 7.4884, 7.4863, 7.4838, 7.4878, 7.4919, 7.4902, 7.4878, 7.4865, 7.4846, 7.4823, 7.4804, 7.4846, 7.4824, 7.4863, 7.4898, 7.4873, 7.4858, 7.485, 7.4833, 7.4808, 7.479, 7.478, 7.4771, 7.4762, 7.4742, 7.4722, 7.4722, 7.4707, 7.463, 7.4614, 7.4596, 7.4573, 7.4557, 7.4539, 7.4587, 7.4626, 7.4609, 7.4654, 7.4697, 7.4676, 7.4667, 7.4651, 7.4692, 7.468, 7.4666, 7.4657, 7.4634, 7.4613, 7.4606, 7.4649, 7.4695, 7.467, 7.4645, 7.4626, 7.4613, 7.4649, 7.4628, 7.4607, 7.4585, 7.4562, 7.4537, 7.4578, 7.4566, 7.4556, 7.4545, 7.4589, 7.4571, 7.4617, 7.4653, 7.4639, 7.4686, 7.4662, 7.4637, 7.4625, 7.4604, 7.4592, 7.457, 7.4548, 7.4587, 7.4636, 7.467, 7.4651, 7.4626, 7.4613, 7.4629, 7.4571, 7.4553, 7.4541, 7.4577, 7.4614, 7.4656, 7.4646, 7.4695, 7.4679, 7.4669, 7.4645, 7.4626, 7.4619, 7.4613, 7.4596, 7.4655, 7.4634, 7.4628, 7.462, 7.4601, 7.4644, 7.4685, 7.4677, 7.4656, 7.4643, 7.4622, 7.46, 7.4638, 7.4618, 7.4607, 7.4592, 7.4585, 7.4625, 7.4612, 7.4592, 7.4572, 7.4552, 7.4537, 7.4516, 7.4495, 7.4537, 7.4524, 7.4503, 7.449, 7.4475, 7.4455, 7.4445, 7.4483, 7.4463, 7.4441, 7.444, 7.4428, 7.4409, 7.439, 7.4373, 7.4361, 7.4342, 7.4327, 7.4374, 7.4364, 7.4412, 7.4399, 7.4384, 7.4432, 7.4416, 7.4399, 7.4383, 7.4366, 7.4354, 7.4337, 7.432, 7.4298, 7.4285, 7.428, 7.4266, 7.4309, 7.4297, 7.4286, 7.4272, 7.4262, 7.4249, 7.4235, 7.4276, 7.4258, 7.4301, 7.4286, 7.4279, 7.4271, 7.4264, 7.4243, 7.4226, 7.4264, 7.4258, 7.4237, 7.4224, 7.421, 7.4195, 7.4192, 7.4186, 7.4166, 7.4254, 7.4248, 7.424, 7.4224, 7.4209, 7.419, 7.417, 7.4154, 7.4197, 7.4182, 7.4174, 7.4158, 7.4137, 7.4127, 7.4114, 7.4153, 7.4142, 7.4129, 7.4167, 7.4155, 7.4199, 7.4188, 7.4172, 7.421, 7.4189, 7.4173, 7.4224, 7.4263, 7.4294, 7.4335, 7.4325, 7.4313, 7.4349, 7.4329, 7.431, 7.4292, 7.4279, 7.4315, 7.4296, 7.4329, 7.4313, 7.4293, 7.4283, 7.4277, 7.4259, 7.4239, 7.4219, 7.4205, 7.4198, 7.4183, 7.4178, 7.4211, 7.4193, 7.4177, 7.417, 7.416, 7.42, 7.418, 7.4162, 7.4145, 7.4129, 7.4113, 7.4098, 7.4084, 7.4067, 7.406, 7.4042, 7.4028, 7.4076, 7.4063, 7.4044, 7.4026, 7.4006, 7.4039, 7.4033, 7.4067, 7.4099, 7.4083, 7.4064, 7.4062, 7.4049, 7.4044, 7.4025, 7.4061, 7.4063, 7.405, 7.4042, 7.4028, 7.4013, 7.3996, 7.3986, 7.3973, 7.3964, 7.3947, 7.3934, 7.3915, 7.3951, 7.3937, 7.392, 7.391, 7.3945, 7.3926, 7.3911, 7.3913, 7.3903, 7.3895, 7.388, 7.3863, 7.3848, 7.3829, 7.3834, 7.3816, 7.3797, 7.3796, 7.378, 7.3763, 7.3748, 7.3735, 7.3826, 7.3814, 7.3801, 7.3787, 7.377, 7.3756, 7.3741, 7.3771, 7.3758, 7.3753, 7.3736, 7.3879, 7.3865, 7.3847, 7.383, 7.3822, 7.3805, 7.3837, 7.3821, 7.3854, 7.3836, 7.3821, 7.4004, 7.3988, 7.4017, 7.4002, 7.3984, 7.3926, 7.3911, 7.3892, 7.3922, 7.3953, 7.3946, 7.3929, 7.3911, 7.3905, 7.39, 7.389, 7.3881, 7.3868, 7.386, 7.3892, 7.3875, 7.3906, 7.3895, 7.388, 7.3865, 7.3851, 7.3834, 7.3822, 7.3808, 7.3792, 7.3779, 7.3764, 7.3746, 7.3735, 7.3719, 7.3747, 7.3734, 7.3718, 7.3709, 7.3738, 7.3721, 7.3703, 7.3695, 7.3686, 7.367, 7.3656, 7.3687, 7.367, 7.3661, 7.3688, 7.3717, 7.3701, 7.3702, 7.3689, 7.3676, 7.3662, 7.3648, 7.3641, 7.3628, 7.3625, 7.3615, 7.3599, 7.3595, 7.3588, 7.3575, 7.3564, 7.3644, 7.3587, 7.358, 7.3609, 7.3601, 7.3595, 7.3587, 7.3569, 7.3606, 7.3594, 7.3581, 7.3568, 7.3559, 7.3547, 7.3534, 7.3579, 7.3567, 7.3552, 7.3537, 7.3524, 7.3552, 7.359, 7.358, 7.3563, 7.3592, 7.3618, 7.3601, 7.3587, 7.3578, 7.3611, 7.3602, 7.359, 7.3575, 7.3564, 7.3551, 7.3534, 7.3524, 7.3519, 7.3506, 7.3493, 7.3525, 7.3512, 7.3497, 7.3484, 7.3471, 7.3456, 7.3448, 7.3439, 7.3429, 7.3418, 7.3408, 7.3395, 7.3385, 7.3375, 7.339, 7.3488, 7.3565, 7.355, 7.3581, 7.3575, 7.3565, 7.3577, 7.3614, 7.3603, 7.3611, 7.3655, 7.3655, 7.3651, 7.3644, 7.3632, 7.3624, 7.3612, 7.3595, 7.3585, 7.358, 7.3564, 7.3555, 7.354, 7.3526, 7.3511, 7.35, 7.3491, 7.3484, 7.3521, 7.3512, 7.3539, 7.3536, 7.3483, 7.3474, 7.3465, 7.3461, 7.3451, 7.3442, 7.3469, 7.3496, 7.3487, 7.3481, 7.347, 7.3457, 7.3443, 7.3432, 7.3424, 7.3421, 7.3449, 7.3435, 7.3467, 7.3456, 7.3453, 7.3482, 7.3467, 7.3459, 7.3445, 7.3436, 7.3464, 7.3458, 7.3448, 7.3437, 7.3424, 7.3415, 7.3411, 7.34, 7.3385, 7.3373, 7.3399, 7.339, 7.3375, 7.3363, 7.3351, 7.3337, 7.3328, 7.3314, 7.3304, 7.33, 7.3289, 7.3281, 7.327, 7.3302, 7.3295, 7.3287, 7.3316, 7.3341, 7.3368, 7.3353, 7.3341, 7.3334, 7.332, 7.3347, 7.3341, 7.3334, 7.3322, 7.3309, 7.3333, 7.3325, 7.3317, 7.3313, 7.3339, 7.3325, 7.3311, 7.3297, 7.3331, 7.332, 7.3306, 7.3333, 7.332, 7.3308, 7.3301, 7.3286, 7.3286, 7.3271, 7.3257, 7.3243, 7.3233, 7.3226, 7.3218, 7.3204, 7.3195, 7.3192, 7.3216, 7.3209, 7.3234, 7.3259, 7.3258, 7.3252, 7.3237, 7.3229, 7.3214, 7.321, 7.3236, 7.3221, 7.3206, 7.3194, 7.318, 7.3166, 7.3164, 7.3155, 7.318, 7.3166, 7.3152, 7.3145, 7.3136, 7.3124, 7.3146, 7.3139, 7.3125, 7.3111, 7.31, 7.3087, 7.3073, 7.314, 7.3126, 7.3129, 7.3124, 7.3192, 7.3182, 7.3168, 7.3156, 7.3143, 7.317, 7.3166, 7.3197, 7.3203, 7.3213, 7.3257, 7.3286, 7.3278, 7.3267, 7.3333, 7.3334, 7.3325, 7.3312, 7.3336, 7.3334, 7.333, 7.3319, 7.3321, 7.331, 7.3297, 7.3323, 7.3314, 7.3342, 7.3336, 7.3322, 7.3308, 7.3303, 7.3295, 7.3284, 7.3314, 7.3304, 7.3332, 7.3324, 7.3316, 7.3435, 7.3434, 7.3421, 7.3413, 7.3403, 7.3392, 7.3381, 7.3373, 7.3361, 7.3385, 7.3381, 7.346, 7.3525, 7.3518, 7.3505, 7.3507, 7.3531, 7.3555, 7.3548, 7.3538, 7.3533, 7.356, 7.3549, 7.3538, 7.3532, 7.3529, 7.3522, 7.351, 7.3503, 7.3531, 7.3519, 7.3505, 7.3496, 7.3484, 7.3475, 7.3464, 7.3459, 7.3453, 7.3478, 7.3467, 7.3462, 7.3449, 7.3437, 7.3433, 7.3497, 7.349, 7.3494, 7.3482, 7.3474, 7.3476, 7.3463, 7.3456, 7.3442, 7.3436, 7.3427, 7.3419, 7.3409, 7.3405, 7.3395, 7.342, 7.3413, 7.3436, 7.3423, 7.342, 7.3437, 7.3428, 7.3415, 7.3405, 7.3394, 7.3385, 7.3374, 7.3368, 7.336, 7.3348, 7.3371, 7.3394, 7.3381, 7.3368, 7.3361, 7.3387, 7.3375, 7.3362, 7.3349, 7.3371, 7.3358, 7.3346, 7.3332, 7.3352, 7.3349, 7.3373, 7.3361, 7.3348, 7.3337, 7.3331, 7.3325, 7.3315, 7.3308, 7.3295, 7.3283, 7.3281, 7.3276, 7.3274, 7.3265, 7.3287, 7.3282, 7.3276, 7.3269, 7.3261, 7.3249, 7.3243, 7.3231, 7.3225, 7.3213, 7.3203, 7.3191, 7.3185, 7.3208, 7.3202, 7.3189, 7.3183, 7.3172, 7.3163, 7.3152, 7.3139, 7.3129, 7.3167, 7.3244, 7.327, 7.3295, 7.332, 7.3309, 7.3296, 7.3312, 7.3302, 7.3301, 7.3292, 7.328, 7.3267, 7.3262, 7.3249, 7.3269, 7.3258, 7.325, 7.3273, 7.3262, 7.3284, 7.3276, 7.3297, 7.3285, 7.3281, 7.3286, 7.3274, 7.3264, 7.3255, 7.3244, 7.3232, 7.3219, 7.321, 7.3202, 7.3195, 7.3219, 7.3218, 7.3206, 7.3197, 7.3189, 7.3183, 7.3242, 7.3238, 7.323, 7.3226, 7.3214, 7.3207, 7.3201, 7.3191, 7.3194, 7.3188, 7.3184, 7.3174, 7.3165, 7.3193, 7.3184, 7.3173, 7.3167, 7.3193, 7.316, 7.3151, 7.3175, 7.3165, 7.316, 7.3154, 7.3147, 7.3139, 7.3139, 7.3129, 7.312, 7.3116, 7.314, 7.3128, 7.3159, 7.3146, 7.3167, 7.3158, 7.3183, 7.3177, 7.3198, 7.319, 7.3178, 7.3173, 7.3161, 7.3183, 7.3171, 7.3167, 7.3155, 7.3146, 7.3167, 7.3157, 7.3145, 7.3133, 7.312, 7.3107, 7.3102, 7.309, 7.3084, 7.3078, 7.3065, 7.3081, 7.307, 7.3061, 7.3048, 7.304, 7.3017, 7.3037, 7.3107, 7.3107, 7.3097, 7.3097, 7.3088, 7.3108, 7.3102, 7.3096, 7.3084, 7.3077, 7.3069, 7.3087, 7.3111, 7.3102, 7.3092, 7.3085, 7.3104, 7.3092, 7.3081, 7.3069, 7.3061, 7.3054, 7.3042, 7.3033, 7.3025, 7.3017, 7.301, 7.3005, 7.2996, 7.2986, 7.3013, 7.304, 7.3032, 7.3058, 7.305, 7.3046, 7.3038, 7.303, 7.3052, 7.3042, 7.3031, 7.3019, 7.3011, 7.3001, 7.2991, 7.298, 7.2973, 7.2966, 7.2956, 7.2944, 7.297, 7.2962, 7.2983, 7.2973, 7.2963, 7.2954, 7.2943, 7.2962, 7.2952, 7.2976, 7.2968, 7.2959, 7.2948, 7.2939, 7.2931, 7.292, 7.291, 7.2929, 7.2949, 7.2971, 7.296, 7.2982, 7.2971, 7.2961, 7.2949, 7.294, 7.2935, 7.2928, 7.2923, 7.2915, 7.2933, 7.2954, 7.2966, 7.296, 7.2952, 7.2943, 7.2933, 7.2951, 7.2951, 7.2943, 7.2964, 7.2955, 7.2946, 7.2938, 7.2932, 7.2925, 7.2925, 7.2919, 7.2908, 7.2906, 7.2898, 7.2891, 7.2881, 7.2875, 7.2866, 7.2866, 7.2887, 7.2881, 7.2872, 7.2893, 7.2882, 7.2873, 7.2867, 7.2889, 7.2908, 7.2899, 7.289, 7.2879, 7.287, 7.2861, 7.2884, 7.2873, 7.2867, 7.2862, 7.2853, 7.2843, 7.2833, 7.2823, 7.2814, 7.2803, 7.2828, 7.2847, 7.2845, 7.2838, 7.2829, 7.2851, 7.2842, 7.2836, 7.2827, 7.2823, 7.2823, 7.2812, 7.2803, 7.2793, 7.2787, 7.2779, 7.2771, 7.2763, 7.2757, 7.2755, 7.275, 7.2745, 7.2735, 7.2758, 7.2754, 7.2743, 7.2733, 7.2725, 7.2718, 7.2715, 7.2706, 7.2698, 7.275, 7.2747, 7.2738, 7.273, 7.2723, 7.2722, 7.2717, 7.2742, 7.2764, 7.2757, 7.2747, 7.2739, 7.273, 7.2721, 7.2714, 7.2703, 7.2698, 7.2689, 7.268, 7.2671, 7.2669, 7.2665, 7.2656, 7.2651, 7.2644, 7.2635, 7.2638, 7.2659, 7.2652, 7.2645, 7.2635, 7.2631, 7.2628, 7.2646, 7.2643, 7.2636, 7.2655, 7.2651, 7.2646, 7.2636, 7.2628, 7.2618, 7.2608, 7.2599, 7.2592, 7.2615, 7.2605, 7.2625, 7.2617, 7.2608, 7.2598, 7.2591, 7.2585, 7.2608, 7.26, 7.2594, 7.2585, 7.261, 7.2632, 7.2627, 7.2618, 7.2612, 7.2632, 7.2624, 7.2622, 7.2614, 7.2607, 7.2598, 7.2591, 7.2584, 7.2582, 7.2573, 7.2567, 7.2568, 7.2561, 7.2553, 7.2548, 7.2543, 7.2537, 7.2533, 7.2523, 7.2514, 7.2533, 7.2559, 7.2549, 7.2541, 7.2534, 7.2525, 7.2516, 7.2506, 7.2529, 7.2523, 7.2516, 7.2535, 7.2526, 7.2547, 7.2513, 7.2506, 7.2497, 7.2489, 7.2482, 7.2488, 7.2479, 7.247, 7.2462, 7.2461, 7.2458, 7.2453, 7.2449, 7.2441, 7.2437, 7.2432, 7.2424, 7.2444, 7.2436, 7.2429, 7.2422, 7.2415, 7.2414, 7.2405, 7.2398, 7.239, 7.2381, 7.2373, 7.2371, 7.2373, 7.2364, 7.2383, 7.2389, 7.2383, 7.2378, 7.2377, 7.2371, 7.2365, 7.2359, 7.2355, 7.2348, 7.2367, 7.2358, 7.235, 7.236000000000001, 7.2387, 7.2407, 7.2399, 7.239, 7.2407, 7.2402, 7.2393, 7.2387, 7.2379, 7.2373, 7.2364, 7.2354, 7.2352, 7.2344, 7.2392, 7.2386, 7.2378, 7.2374, 7.2432, 7.2497, 7.2493, 7.2513, 7.2504, 7.2497, 7.2492, 7.2486, 7.2479, 7.2476, 7.2471, 7.2464, 7.2457, 7.2453, 7.2473, 7.2469, 7.2464, 7.2461, 7.2471000000000005, 7.248100000000001, 7.2541, 7.254, 7.2585, 7.2579, 7.2571, 7.2592, 7.2584, 7.2575, 7.2566, 7.2585, 7.2577, 7.2597, 7.2589, 7.2584, 7.2575, 7.2566, 7.2557, 7.255, 7.2542, 7.2536, 7.2531, 7.2525, 7.2518, 7.2511, 7.2482, 7.2604, 7.2602, 7.2595, 7.2587, 7.2603, 7.2594, 7.2586, 7.2581, 7.2573, 7.2564, 7.2558, 7.2549, 7.254, 7.2536, 7.2529, 7.2522, 7.2513, 7.2506, 7.2526, 7.2519, 7.251, 7.2529, 7.2522, 7.2519, 7.2514, 7.251, 7.2503, 7.2494, 7.2486, 7.2484, 7.2478, 7.2452, 7.2447, 7.2438, 7.2433, 7.2429, 7.2421, 7.2427, 7.2422, 7.2417, 7.241, 7.2401, 7.2421, 7.2417, 7.2409, 7.2404, 7.2396, 7.2392, 7.2384, 7.2376, 7.2371, 7.2365, 7.2356, 7.2354, 7.235, 7.2346, 7.2338, 7.2329, 7.2324, 7.2315, 7.2306, 7.2308, 7.2302, 7.2295, 7.2312, 7.2309, 7.2329, 7.2349, 7.2346, 7.2339, 7.2336, 7.2329, 7.2323, 7.2343, 7.2401, 7.2394, 7.2387, 7.2385, 7.2381, 7.2401, 7.2393, 7.2385, 7.2379, 7.2373, 7.2347, 7.2341, 7.2353, 7.2372, 7.237, 7.2387, 7.2404, 7.2397, 7.2391, 7.2383, 7.24, 7.2396, 7.239, 7.2381, 7.2372, 7.239, 7.2382, 7.2375, 7.2367, 7.2361, 7.2377, 7.2394, 7.2386, 7.2386, 7.238, 7.2373, 7.2364, 7.2355, 7.2348, 7.2341, 7.2335, 7.2332, 7.2334, 7.2327, 7.2324, 7.2341, 7.2333, 7.2325, 7.2324, 7.2317, 7.2333, 7.2332, 7.2328, 7.2327, 7.2319, 7.2313, 7.2328, 7.2319, 7.2313, 7.2312, 7.232200000000001, 7.2315, 7.2309, 7.2342, 7.2336, 7.2329, 7.2322, 7.2314, 7.2405, 7.2413, 7.2414, 7.2406, 7.2401, 7.2397, 7.2413, 7.2429, 7.2422, 7.2441, 7.246, 7.2457, 7.2453, 7.2446, 7.2442, 7.2437, 7.2429, 7.2445, 7.2436, 7.2427, 7.2421, 7.2412, 7.2413, 7.2408, 7.2402, 7.2394, 7.2387, 7.2383, 7.2386, 7.2379, 7.2372, 7.237, 7.2367, 7.2362, 7.2356, 7.2363, 7.2358, 7.2351, 7.2327, 7.2338, 7.2332, 7.2312, 7.2305, 7.23, 7.2315, 7.2311, 7.2304, 7.2297, 7.2364, 7.2383, 7.2375, 7.2372, 7.2364, 7.2358, 7.2353, 7.2351, 7.2344, 7.234, 7.2339, 7.2335, 7.2329, 7.2332, 7.2323, 7.2317, 7.2314, 7.231, 7.2325, 7.2317, 7.2314, 7.2332, 7.2327, 7.2326, 7.2323, 7.2316, 7.2309, 7.2329, 7.2321, 7.2313, 7.2328, 7.23, 7.2292, 7.2284, 7.2301, 7.2295, 7.2305, 7.2297, 7.2293, 7.2309, 7.2326, 7.2322, 7.2318, 7.2333, 7.2328, 7.2333, 7.2325, 7.2366, 7.2384, 7.2385, 7.238, 7.2376, 7.2373, 7.2366, 7.2363, 7.2391, 7.2385, 7.2378, 7.2417, 7.241, 7.2404, 7.242, 7.2436, 7.2428, 7.2423, 7.2415, 7.2409, 7.2406, 7.2398, 7.2415, 7.2406, 7.2401, 7.2394, 7.2434, 7.2427, 7.242, 7.2411, 7.2408, 7.2409, 7.241, 7.2457, 7.2449, 7.2443, 7.2445, 7.2441, 7.2433, 7.2429, 7.2422, 7.2397, 7.2389, 7.2408, 7.2402, 7.2394, 7.239, 7.2385, 7.2376, 7.237, 7.2367, 7.2381, 7.2374, 7.2388, 7.2385, 7.2381, 7.2376, 7.2373, 7.2389, 7.2385, 7.2382, 7.2379, 7.2371, 7.2388, 7.2382, 7.2374, 7.2392, 7.2391, 7.2383, 7.2402, 7.2432, 7.2427, 7.2419, 7.242, 7.2467, 7.2465, 7.2481, 7.2481, 7.2479, 7.2473, 7.249, 7.2506, 7.2502, 7.2527, 7.2524, 7.2516, 7.2535, 7.2539, 7.2535, 7.2528, 7.2522, 7.2541, 7.2538, 7.2517, 7.2509, 7.2504, 7.2497, 7.2512, 7.2504, 7.2499, 7.2492, 7.2487, 7.2479, 7.2472, 7.2467, 7.2459, 7.2477, 7.2471, 7.2486, 7.2484, 7.2479, 7.2471, 7.2463, 7.2455, 7.2449, 7.2443, 7.2507, 7.2501, 7.2499, 7.2493, 7.2488, 7.2483, 7.2481, 7.2473, 7.2469, 7.2468, 7.2463, 7.2459, 7.2451, 7.2449, 7.2446, 7.2448, 7.2464, 7.2462, 7.2457, 7.2449, 7.2443, 7.2437, 7.2431, 7.2425, 7.242, 7.2412, 7.2405, 7.2399, 7.2393, 7.2393, 7.2386, 7.238, 7.2397, 7.239, 7.2404, 7.24, 7.2392, 7.2388, 7.238, 7.2379, 7.2393, 7.2386, 7.24, 7.2395, 7.2389, 7.2382, 7.2377, 7.2377, 7.237, 7.2365, 7.2364, 7.236, 7.2354, 7.2355, 7.2373, 7.2367, 7.2362, 7.2354, 7.2369, 7.2365, 7.2359, 7.2351, 7.2345, 7.2319, 7.232900000000001, 7.2327, 7.2341, 7.235, 7.2347, 7.2362, 7.2355, 7.2347, 7.2346, 7.2342, 7.2338, 7.2332, 7.233, 7.2322, 7.2318, 7.2314, 7.2311, 7.2305, 7.2308, 7.2304, 7.2297, 7.2292, 7.2285, 7.2279, 7.2272, 7.2268, 7.2261, 7.2275, 7.2273, 7.2265, 7.2258, 7.2254, 7.2247, 7.2242, 7.2236, 7.2255, 7.2248, 7.2241, 7.2238, 7.2231, 7.2227, 7.2222, 7.2218, 7.2213, 7.2211, 7.2206, 7.2203, 7.2201, 7.2228, 7.2223, 7.2219, 7.2213, 7.2206, 7.22, 7.2195, 7.2211, 7.2204, 7.2201, 7.2196, 7.2192, 7.2186, 7.2181, 7.2196, 7.2191, 7.2186, 7.218, 7.2172, 7.2167, 7.2161, 7.2156, 7.2172, 7.2165, 7.2157, 7.215, 7.2146, 7.2144, 7.2141, 7.2166, 7.2159, 7.2157, 7.2151, 7.2167, 7.2162, 7.2158, 7.2152, 7.2167, 7.2161, 7.2177, 7.2171, 7.218100000000001, 7.2173, 7.2187, 7.218, 7.2175, 7.2171, 7.2165, 7.2163, 7.2157, 7.215, 7.2145, 7.214, 7.214, 7.2138, 7.2135, 7.2138, 7.2133, 7.2151, 7.2147, 7.2139, 7.2133, 7.2127, 7.212, 7.2116, 7.2112, 7.2111, 7.2126, 7.214, 7.2156, 7.2152, 7.2145, 7.2141, 7.2135, 7.2129, 7.2124, 7.2117, 7.2111, 7.2107, 7.212, 7.2116, 7.2113, 7.2128, 7.2124, 7.2119, 7.2133, 7.2131, 7.2145, 7.216, 7.2154, 7.2149, 7.2146, 7.2145, 7.214, 7.2134, 7.2148, 7.2189, 7.2204, 7.2216, 7.221, 7.2207, 7.2203, 7.22, 7.2194, 7.2208, 7.2203, 7.2217, 7.2213, 7.2208, 7.2201, 7.2195, 7.2191, 7.2185, 7.2201, 7.2195, 7.2213, 7.222300000000001, 7.2221, 7.2218, 7.2233, 7.2228, 7.2246, 7.2256, 7.2272, 7.2269, 7.2279, 7.2294, 7.2296, 7.229, 7.2283, 7.2276, 7.2276, 7.2271, 7.2284, 7.2297, 7.2292, 7.2307, 7.2301, 7.2313, 7.2308, 7.2307, 7.2301, 7.2294, 7.2289, 7.2283, 7.2297, 7.2315, 7.2309, 7.2303, 7.2297, 7.2313, 7.2308, 7.2302, 7.2299, 7.2293, 7.2308, 7.2303, 7.2296, 7.229, 7.2305, 7.2321, 7.2316, 7.2312, 7.2328, 7.2323, 7.232, 7.234, 7.2335, 7.235, 7.2368, 7.2364, 7.2361, 7.2355, 7.2348, 7.2364, 7.2377, 7.2393, 7.2387, 7.2384, 7.2383, 7.2379, 7.2373, 7.2366, 7.2365, 7.2359, 7.2357, 7.2373, 7.2373, 7.2371, 7.2366, 7.2362, 7.2377, 7.2373, 7.2369, 7.2364, 7.2377, 7.2371, 7.2371, 7.2364, 7.2361, 7.2373, 7.237, 7.2384, 7.2379, 7.2376, 7.2372, 7.2367, 7.2372, 7.2389, 7.2384, 7.2426, 7.2419, 7.2416, 7.2463, 7.2459, 7.2455, 7.2454, 7.2453, 7.2448, 7.2442, 7.2439, 7.2434, 7.2435, 7.2432, 7.2428, 7.2423, 7.242, 7.2414, 7.2414, 7.2407, 7.2402, 7.2399, 7.2394, 7.2391, 7.2406, 7.242, 7.2417, 7.2431, 7.2425, 7.242, 7.2413, 7.2415, 7.2452, 7.2448, 7.2443, 7.2459, 7.2473, 7.2469, 7.2486, 7.2482, 7.2476, 7.2472, 7.2468, 7.2461, 7.2475, 7.2469, 7.2462, 7.2441, 7.2435, 7.2428, 7.2422, 7.2417, 7.2411, 7.241, 7.2404, 7.2417, 7.241, 7.2404, 7.2399, 7.2395, 7.2389, 7.2388, 7.2401, 7.2396, 7.2412, 7.2407, 7.2404, 7.2405, 7.2399, 7.2392, 7.2389, 7.2386, 7.2381, 7.2374, 7.2371, 7.2366, 7.2362, 7.236, 7.2354, 7.2367, 7.2365, 7.2378, 7.2371, 7.2365, 7.236, 7.2354, 7.2366, 7.2381, 7.2377, 7.2374, 7.2369, 7.2364, 7.2357, 7.2352, 7.2348, 7.2342, 7.2336, 7.2329, 7.2322, 7.2328, 7.2334, 7.2328, 7.2323, 7.2336, 7.2332, 7.2329, 7.2326, 7.2324, 7.2324, 7.2318, 7.2312, 7.231, 7.2307, 7.2301, 7.2298, 7.2293, 7.2288, 7.2285, 7.2299, 7.2293, 7.2291, 7.2304, 7.2298, 7.2295, 7.229, 7.2284, 7.2278, 7.2271, 7.2269, 7.2263, 7.2259, 7.2255, 7.2249, 7.2247, 7.2243, 7.2238, 7.2275, 7.2288, 7.2291, 7.2291, 7.2285, 7.2282, 7.2262, 7.2257, 7.2252, 7.2247, 7.2242, 7.2235, 7.2249, 7.225, 7.2245, 7.2243, 7.2237, 7.2235, 7.2249, 7.2263, 7.2257, 7.2269, 7.2265, 7.2258, 7.2253, 7.225, 7.2247, 7.2241, 7.2236, 7.2229, 7.2228, 7.223800000000001, 7.2237, 7.2273, 7.2288, 7.2287, 7.2283, 7.2277, 7.2274, 7.2271, 7.2285, 7.2279, 7.2275, 7.2273, 7.2267, 7.2262, 7.226, 7.2254, 7.2249, 7.2247, 7.2246, 7.2241, 7.2237, 7.2232, 7.2243, 7.2239, 7.2234, 7.2229, 7.2231, 7.2232, 7.223, 7.2244, 7.2239, 7.2238, 7.2233, 7.2228, 7.2221, 7.2216, 7.2209, 7.2203, 7.2198, 7.2208000000000006, 7.2221, 7.2234, 7.2231, 7.2245, 7.224, 7.2252, 7.2249, 7.2243, 7.2256, 7.2269, 7.2264, 7.2257, 7.2252, 7.2248, 7.2245, 7.2257, 7.2263, 7.2258, 7.2255, 7.2272, 7.2277, 7.2271, 7.2265, 7.2262, 7.2259, 7.2253, 7.2248, 7.2241, 7.2253, 7.2251, 7.2246, 7.224, 7.2253, 7.2249, 7.2247, 7.2244, 7.224, 7.2235, 7.223, 7.2228, 7.2224, 7.223400000000001, 7.2248, 7.2242, 7.2238, 7.2233, 7.2227, 7.2222, 7.2219, 7.2215, 7.2208, 7.2203, 7.2213, 7.2226, 7.2223, 7.222, 7.2233, 7.2227, 7.2223, 7.2219, 7.2232, 7.224200000000001, 7.2239, 7.2234, 7.2229, 7.2224, 7.2246, 7.2251, 7.2264, 7.2277, 7.2272, 7.2269, 7.2268, 7.2262, 7.2256, 7.2271, 7.2265, 7.226, 7.2255, 7.2267, 7.2264, 7.2277, 7.229, 7.229, 7.2284, 7.2281, 7.2293, 7.2293, 7.2288, 7.2286, 7.2299, 7.2297, 7.2309, 7.2306, 7.2302, 7.2315, 7.2295, 7.2294, 7.2288, 7.2284, 7.2278, 7.2273, 7.2267, 7.2265, 7.2277, 7.229, 7.2287, 7.2282, 7.2261, 7.2272, 7.2265, 7.226, 7.2254, 7.225, 7.2244, 7.2242, 7.224, 7.2235, 7.2232, 7.2226, 7.2238, 7.225, 7.2246, 7.2243, 7.2237, 7.2234, 7.2249, 7.2245, 7.2241, 7.2235, 7.2245, 7.224, 7.2235, 7.223, 7.2242, 7.2236, 7.2233, 7.2227, 7.2224, 7.222, 7.2214, 7.2208, 7.2202, 7.22, 7.2213, 7.2207, 7.2203, 7.22, 7.2195, 7.2208, 7.2203, 7.2197, 7.221, 7.2206, 7.2202, 7.2197, 7.2193, 7.219, 7.2185, 7.2197, 7.2209, 7.2203, 7.22, 7.2195, 7.2192, 7.2188, 7.2188, 7.2183, 7.2179, 7.2173, 7.2171, 7.2166, 7.2184, 7.2196, 7.2192, 7.2187, 7.2184, 7.2179, 7.2192, 7.2188, 7.2187, 7.2182, 7.2177, 7.2174, 7.2168, 7.2162, 7.2158, 7.2153, 7.217, 7.217, 7.2183, 7.2182, 7.2179, 7.2175, 7.2171, 7.2167, 7.2181, 7.2181, 7.2193, 7.2187, 7.2183, 7.2182, 7.218, 7.2177, 7.2177, 7.2172, 7.2168, 7.2166, 7.2161, 7.2182, 7.2195, 7.2175, 7.2169, 7.2163, 7.2177, 7.2172, 7.2166, 7.2163, 7.2191, 7.227, 7.2273, 7.2286, 7.2285, 7.2347, 7.2342, 7.237, 7.2382, 7.2394, 7.2376, 7.2358, 7.234, 7.2338, 7.2385, 7.2379, 7.2406, 7.2418, 7.2432, 7.2428, 7.2422, 7.2419, 7.2413, 7.2409, 7.2404, 7.2402, 7.2396, 7.2393, 7.2388, 7.2393, 7.2422, 7.2416, 7.2412, 7.2408, 7.2404, 7.2401, 7.2397, 7.2393, 7.239, 7.2404, 7.2398, 7.2393, 7.2407, 7.2419, 7.2416, 7.2416, 7.2419, 7.2431, 7.2426, 7.2437, 7.2448, 7.2449, 7.2446, 7.2444, 7.2457, 7.2453, 7.2449, 7.2446, 7.2441, 7.2437, 7.2431, 7.2431, 7.2426, 7.2406, 7.2401, 7.2398, 7.2409, 7.2404, 7.2399, 7.2409, 7.2438, 7.2436, 7.2433, 7.2427, 7.2422, 7.2417, 7.2412, 7.2424, 7.2419, 7.2413, 7.2425, 7.2419, 7.2414, 7.2425, 7.2421, 7.2418, 7.2415, 7.2409, 7.2419, 7.2416, 7.2427, 7.2424, 7.2439, 7.2435, 7.2432, 7.2433, 7.243, 7.2427, 7.2425, 7.2423, 7.2421, 7.2415, 7.2409, 7.2404, 7.2398, 7.2394, 7.239, 7.2384, 7.2395, 7.2389, 7.2385, 7.2381, 7.2378, 7.239, 7.2386, 7.2381, 7.2376, 7.2376, 7.237, 7.2365, 7.2359, 7.2359, 7.2357, 7.2352, 7.2346, 7.2342, 7.2338, 7.2335, 7.2348, 7.2346, 7.2342, 7.2339, 7.2335, 7.2333, 7.2346, 7.2342, 7.234, 7.234, 7.2335, 7.2348, 7.2356, 7.2367, 7.2362, 7.2373, 7.2367, 7.2373, 7.237, 7.2366, 7.2377, 7.2388, 7.2383, 7.2395, 7.2408, 7.2421, 7.2416, 7.2413, 7.2412, 7.2408, 7.2405, 7.2401, 7.2413, 7.2441, 7.2435, 7.2432, 7.243, 7.2426, 7.2424, 7.2421, 7.2426, 7.2421, 7.242, 7.243, 7.2425, 7.2422, 7.2417, 7.2413, 7.2425, 7.2421, 7.2418, 7.2414, 7.2411, 7.2406, 7.24, 7.2394, 7.2389, 7.2401, 7.2399, 7.2394, 7.2391, 7.2386, 7.2384, 7.238, 7.2375, 7.2371, 7.2368, 7.2366, 7.2362, 7.2359, 7.2354, 7.2353, 7.2349, 7.2344, 7.2355, 7.2354, 7.2352, 7.2363, 7.236, 7.2359, 7.2356, 7.2352, 7.2347, 7.2356, 7.2353, 7.2348, 7.2343, 7.2339, 7.2334, 7.2344, 7.2357, 7.2351, 7.2346, 7.2342, 7.2338, 7.2335, 7.2333, 7.2344, 7.2342, 7.2353, 7.2365, 7.2362, 7.2359, 7.2373, 7.2399, 7.2395, 7.2392, 7.2387, 7.2382, 7.2377, 7.2372, 7.2366, 7.2361, 7.2371, 7.2367, 7.2363, 7.2359, 7.2353, 7.2348, 7.2342, 7.234, 7.2338, 7.2365, 7.2376, 7.2372, 7.2414, 7.241, 7.2408, 7.2402, 7.2397, 7.2392, 7.2389, 7.2384, 7.2393, 7.2394, 7.2391, 7.239, 7.2393, 7.2391, 7.2416, 7.2415, 7.2427, 7.2457, 7.2472, 7.2467, 7.2481, 7.2477, 7.2473, 7.2468, 7.2463, 7.2459, 7.2444, 7.2448, 7.2443, 7.2439, 7.2435, 7.2448, 7.2447, 7.2447, 7.2447, 7.2459, 7.2456, 7.2457, 7.2452, 7.2447, 7.2442, 7.2454, 7.2453, 7.2448, 7.2446, 7.2443, 7.2443, 7.2455, 7.2452, 7.2448, 7.2459, 7.2456, 7.2453, 7.2454, 7.245, 7.2446, 7.2458, 7.2454, 7.2466, 7.2464, 7.2445, 7.244, 7.2435, 7.2431, 7.2426, 7.2426, 7.2423, 7.2433, 7.2429, 7.2439, 7.2434, 7.2431, 7.2428, 7.2424, 7.2419, 7.2414, 7.2409, 7.242, 7.2431, 7.2428, 7.244, 7.2442, 7.2437, 7.2435, 7.2433, 7.2429, 7.2482, 7.2479, 7.2476, 7.2472, 7.2483, 7.248, 7.2478, 7.2474, 7.2469, 7.2469, 7.2465, 7.2479, 7.2477, 7.2472, 7.2484, 7.2496, 7.2508, 7.2518, 7.2515, 7.251, 7.2505, 7.25, 7.2495, 7.2491, 7.2488, 7.2486, 7.2485, 7.2481, 7.2477, 7.2474, 7.2474, 7.247, 7.2466, 7.246, 7.2458, 7.2453, 7.245, 7.2447, 7.2444, 7.2442, 7.2455, 7.245, 7.2446, 7.2442, 7.2454, 7.245, 7.2461, 7.2456, 7.2452, 7.2447, 7.2443, 7.2441, 7.2441, 7.2438, 7.2437, 7.2433, 7.2431, 7.2428, 7.2426, 7.2439, 7.2455, 7.2455, 7.2485, 7.2516, 7.2512, 7.2511, 7.2506, 7.2504, 7.2514, 7.251, 7.2508, 7.2504, 7.25, 7.2494, 7.249, 7.2487, 7.2482, 7.2493, 7.2491, 7.2485, 7.248, 7.2491, 7.2502, 7.2498, 7.2493, 7.2489, 7.2499, 7.2495, 7.249, 7.2488, 7.2482, 7.248, 7.2476, 7.2503, 7.2514, 7.2509, 7.2584, 7.2579, 7.2589, 7.259, 7.2592, 7.2589, 7.2599, 7.2593, 7.2589, 7.26, 7.2613, 7.2623, 7.2633, 7.263, 7.2641, 7.2639, 7.2636, 7.2631, 7.2626, 7.2622, 7.2618, 7.2616, 7.2627, 7.2624, 7.262, 7.2618, 7.2617, 7.2646, 7.2643, 7.264, 7.2635, 7.2631, 7.2626, 7.2636, 7.2631, 7.2626, 7.2621, 7.2616, 7.2611, 7.2608, 7.2619, 7.2616, 7.2611, 7.2606, 7.2602, 7.2599, 7.2594, 7.2592, 7.2587, 7.2582, 7.2578, 7.2588, 7.2597, 7.2594, 7.2591, 7.2587, 7.2598, 7.2608, 7.2617, 7.2612, 7.2608, 7.2603, 7.2609, 7.2606, 7.2617, 7.2612, 7.2622, 7.2618, 7.2627, 7.2624, 7.262, 7.267, 7.2665, 7.266, 7.2655, 7.2666, 7.2664, 7.2661, 7.2672, 7.2668, 7.2665, 7.266, 7.2656, 7.2667, 7.2662, 7.2672, 7.2667, 7.2663, 7.2674, 7.2685, 7.2711, 7.2722, 7.272, 7.2715, 7.2713, 7.2709, 7.2707, 7.2703, 7.27, 7.2714, 7.2725, 7.2721, 7.2733, 7.2745, 7.2741, 7.2739, 7.2735, 7.2731, 7.2743, 7.274, 7.275, 7.2746, 7.2743, 7.2744, 7.2742, 7.2739, 7.2736, 7.2731, 7.2729, 7.273, 7.2726, 7.2724, 7.2719, 7.2715, 7.2725, 7.2721, 7.2717, 7.2712, 7.2709, 7.2719, 7.2714, 7.274, 7.2749, 7.2744, 7.274, 7.2735, 7.274, 7.2741, 7.2738, 7.2737, 7.2732, 7.2733, 7.2731, 7.2727, 7.2737, 7.2732, 7.2742, 7.2738, 7.2749, 7.2745, 7.274, 7.2736, 7.2734, 7.2744, 7.2739, 7.2734, 7.2729, 7.2725, 7.272, 7.2715, 7.2712, 7.2708, 7.2704, 7.2703, 7.2699, 7.2695, 7.269, 7.2687, 7.274, 7.2735, 7.2733, 7.2729, 7.2727, 7.2725, 7.2721, 7.2732, 7.2727, 7.2725, 7.2721, 7.2731, 7.2728, 7.2725, 7.2735, 7.2731, 7.2715, 7.2712, 7.2707, 7.2705, 7.2701, 7.2696, 7.2693, 7.2691, 7.2689, 7.2687, 7.2682, 7.2678, 7.2675, 7.269, 7.2688, 7.2685, 7.2686, 7.2684, 7.268, 7.2675, 7.2674, 7.2672, 7.2669, 7.2666, 7.2664, 7.2664, 7.2662, 7.2661, 7.2658, 7.2653, 7.2666, 7.2679, 7.2675, 7.2685, 7.2682, 7.2682, 7.2682, 7.268, 7.2677, 7.2676, 7.2676, 7.2673, 7.2669, 7.2665, 7.2663, 7.2674, 7.2686, 7.2684, 7.2693, 7.2689, 7.2728, 7.2772, 7.2768, 7.2764, 7.2775, 7.2773, 7.2769, 7.2783, 7.2784, 7.2795, 7.279, 7.2788, 7.2787, 7.2788, 7.2785, 7.278, 7.279, 7.2789, 7.2784, 7.2782, 7.2795, 7.2792, 7.2788, 7.2788, 7.2786, 7.2771, 7.2766, 7.2765, 7.2763, 7.2759, 7.2755, 7.2751, 7.2746, 7.2742, 7.2751, 7.2761, 7.277, 7.2765, 7.2775, 7.277, 7.2765, 7.276, 7.2769, 7.2766, 7.2761, 7.2756, 7.2752, 7.2763, 7.2759, 7.2755, 7.275, 7.2746, 7.2741, 7.2737, 7.2752, 7.2747, 7.2771, 7.2767, 7.2763, 7.2772, 7.2767, 7.2766, 7.2761, 7.2776, 7.2761, 7.2759, 7.2757, 7.2756, 7.2753, 7.2762, 7.276, 7.2755, 7.2752, 7.275, 7.2746, 7.2741, 7.2752, 7.2747, 7.2742, 7.2739, 7.2734, 7.2729, 7.2725, 7.2721, 7.2736, 7.2734, 7.2731, 7.2728, 7.2725, 7.272, 7.2715, 7.2724, 7.2732, 7.2727, 7.2725, 7.2734, 7.2729, 7.2725, 7.272, 7.2717, 7.2726, 7.2723, 7.272, 7.2716, 7.27, 7.2696, 7.2707, 7.2703, 7.2701, 7.271, 7.2707, 7.2702, 7.2698, 7.2695, 7.2692, 7.2703, 7.2698, 7.2698, 7.2696, 7.2693, 7.2703, 7.2714, 7.271, 7.2706, 7.2704, 7.2702, 7.2698, 7.2693, 7.2688, 7.2698, 7.2695, 7.2691, 7.2686, 7.2681, 7.2678, 7.2676, 7.2674, 7.2673, 7.2669, 7.2706, 7.2705, 7.2701, 7.2711, 7.2707, 7.2707, 7.2704, 7.2701, 7.2698, 7.2706, 7.2703, 7.2702, 7.2697, 7.2693, 7.269, 7.2686, 7.2683, 7.268, 7.2704, 7.27, 7.2695, 7.2692, 7.2688, 7.2683, 7.2669, 7.2666, 7.2663, 7.2658, 7.2666, 7.2662, 7.2659, 7.2656, 7.2651, 7.266, 7.2656, 7.266, 7.2657, 7.2655, 7.2669, 7.2679, 7.2675, 7.267, 7.2666, 7.2661, 7.2658, 7.2654, 7.2649, 7.2644, 7.2641, 7.2638, 7.264, 7.265, 7.2646, 7.2641, 7.265, 7.2645, 7.2644, 7.2644, 7.2643, 7.2653, 7.2649, 7.2645, 7.2668, 7.2679, 7.2691, 7.269, 7.2676, 7.2662, 7.2671, 7.2667, 7.2664, 7.2662, 7.2657, 7.2653, 7.269, 7.2686, 7.2684, 7.2683, 7.269, 7.2685, 7.2681, 7.2711, 7.2711, 7.2707, 7.2707, 7.2702, 7.2714, 7.2711, 7.272, 7.2715, 7.271, 7.2705, 7.27, 7.2697, 7.2693, 7.2702, 7.2699, 7.2695, 7.2691, 7.2689, 7.2685, 7.268, 7.2678, 7.2676, 7.2672, 7.2658, 7.2655, 7.2651, 7.2651, 7.2647, 7.2658, 7.2653, 7.2664, 7.2661, 7.2659, 7.2655, 7.2652, 7.2647, 7.2642, 7.2652, 7.2648, 7.2657, 7.2655, 7.265, 7.2647, 7.2643, 7.2639, 7.2635, 7.263, 7.2626, 7.2621, 7.2619, 7.2617, 7.2614, 7.2622, 7.262, 7.2618, 7.2615, 7.2612, 7.261, 7.2607, 7.2592, 7.2585, 7.2581, 7.2576, 7.2573, 7.2588, 7.2585, 7.2581, 7.2576, 7.2584, 7.2582, 7.2578, 7.2575, 7.2572, 7.2558, 7.2554, 7.2552, 7.2548, 7.255, 7.255, 7.2572, 7.2568, 7.2566, 7.2562, 7.2558, 7.2555, 7.2541, 7.2528, 7.2526, 7.2522, 7.2518, 7.2502, 7.2489, 7.25, 7.2497, 7.2496, 7.2493, 7.2502, 7.2497, 7.2493, 7.2489, 7.2486, 7.2486, 7.2489, 7.25, 7.2509, 7.2507, 7.2505, 7.2501, 7.2498, 7.2494, 7.2505, 7.2503, 7.2526, 7.2524, 7.2521, 7.2519, 7.2517, 7.2513, 7.2509, 7.2519, 7.2515, 7.2513, 7.2509, 7.2518, 7.2505, 7.2516, 7.2514, 7.2513, 7.2509, 7.2504, 7.2515, 7.254, 7.2548, 7.2547, 7.255, 7.257, 7.2578, 7.2575, 7.2574, 7.2572, 7.2577, 7.2585, 7.2581, 7.2566, 7.2561, 7.2573, 7.2569, 7.2565, 7.2573, 7.2568, 7.2564, 7.2559, 7.2556, 7.2565, 7.2586, 7.2595, 7.2591, 7.2589, 7.2587, 7.2597, 7.2592, 7.2589, 7.2588, 7.2585, 7.2596, 7.2593, 7.259, 7.2587, 7.2585, 7.2582, 7.2582, 7.2578, 7.2576, 7.2572, 7.2581, 7.2577, 7.2586, 7.2585, 7.2582, 7.2581, 7.259, 7.2586, 7.2582, 7.2584, 7.258, 7.2577, 7.2586, 7.2584, 7.2579, 7.2575, 7.2575, 7.2573, 7.2583, 7.2582, 7.2592, 7.2588, 7.2575, 7.2562, 7.2559, 7.2557, 7.2553, 7.2551, 7.2549, 7.2545, 7.2533, 7.2532, 7.2529, 7.2525, 7.2534, 7.253, 7.2527, 7.2524, 7.2524, 7.2519, 7.2516, 7.2525, 7.2521, 7.2519, 7.2516, 7.2511, 7.2507, 7.2502, 7.2511, 7.2508, 7.2505, 7.2501, 7.2497, 7.2494, 7.249, 7.2486, 7.2482, 7.248, 7.2489, 7.2486, 7.2482, 7.2478, 7.2475, 7.2474, 7.247, 7.2467, 7.2463, 7.2462, 7.2459, 7.2458, 7.2455, 7.2452, 7.2439, 7.2435, 7.2434, 7.2442, 7.2439, 7.2435, 7.2431, 7.2427, 7.2424, 7.242, 7.2417, 7.2413, 7.2421, 7.2419, 7.2416, 7.2414, 7.2412, 7.2408, 7.2406, 7.2402, 7.2398, 7.2395, 7.2391, 7.2388, 7.2384, 7.2393, 7.2389, 7.2386, 7.2382, 7.2379, 7.2388, 7.2424, 7.242, 7.2416, 7.2413, 7.2409, 7.2407, 7.2403, 7.2399, 7.2399, 7.2395, 7.2394, 7.239, 7.2388, 7.2385, 7.2383, 7.2392, 7.2391, 7.2389, 7.2387, 7.2383, 7.2379, 7.2388, 7.2373, 7.2383, 7.2393, 7.239, 7.2389, 7.2386, 7.2415, 7.2411, 7.2411, 7.2408, 7.2405, 7.2402, 7.2399, 7.2395, 7.2392, 7.239, 7.2402, 7.2399, 7.2399, 7.2395, 7.2393, 7.2389, 7.2387, 7.2384, 7.2381, 7.2391, 7.2387, 7.2398, 7.2394, 7.2391, 7.2388, 7.2385, 7.2422, 7.242, 7.2421, 7.2418, 7.2427, 7.2423, 7.2452, 7.2451, 7.2449, 7.2446, 7.2444, 7.2447, 7.2445, 7.2454, 7.245, 7.2446, 7.2443, 7.2439, 7.2437, 7.2433, 7.2442, 7.2438, 7.2438, 7.2437, 7.2433, 7.243, 7.2429, 7.2427, 7.2423, 7.2421, 7.2417, 7.2416, 7.2425, 7.2445, 7.2441, 7.245, 7.2446, 7.2444, 7.2441, 7.2437, 7.2445, 7.2441, 7.2438, 7.2425, 7.2434, 7.2434, 7.2433, 7.2429, 7.2429, 7.2426, 7.2423, 7.2419, 7.2417, 7.2413, 7.2402, 7.24, 7.2397, 7.2395, 7.2403, 7.2402, 7.2398, 7.2398, 7.2397, 7.2394, 7.2394, 7.2402, 7.2411, 7.2407, 7.2404, 7.2402, 7.2399, 7.2408, 7.2404, 7.2403, 7.2399, 7.241, 7.2407, 7.2405, 7.2402, 7.24, 7.2398, 7.2396, 7.2392, 7.2389, 7.2386, 7.2383, 7.2381, 7.239, 7.2398, 7.2398, 7.2407, 7.2404, 7.2402, 7.241, 7.2408, 7.2404, 7.2413, 7.241, 7.2419, 7.2418, 7.2414, 7.2423, 7.242, 7.2421, 7.2419, 7.2415, 7.2412, 7.2422, 7.2421, 7.2418, 7.2432, 7.2449, 7.2446, 7.2456, 7.2452, 7.245, 7.245, 7.247, 7.2481, 7.2478, 7.2483, 7.2481, 7.2489, 7.2486, 7.2482, 7.2481, 7.248, 7.2479, 7.2477, 7.2487, 7.2495, 7.2505, 7.2505, 7.2502, 7.2488, 7.2485, 7.2495, 7.2502, 7.2498, 7.2507, 7.2494, 7.2492, 7.2491, 7.2487, 7.2485, 7.2481, 7.2477, 7.2477, 7.2475, 7.2484, 7.2482, 7.2493, 7.2489, 7.2476, 7.2487, 7.2483, 7.2479, 7.2475, 7.2471, 7.2479, 7.2501, 7.2497, 7.2508, 7.2506, 7.2514, 7.251, 7.2518, 7.2516, 7.2514, 7.2512, 7.2508, 7.2519, 7.2538, 7.2536, 7.2524, 7.2521, 7.2519, 7.2518, 7.2514, 7.2511, 7.2508, 7.2504, 7.2501, 7.2498, 7.2495, 7.2495, 7.2492, 7.2492, 7.249, 7.2499, 7.2509, 7.2508, 7.2505, 7.2512, 7.2508, 7.2504, 7.2501, 7.2498, 7.2505, 7.2501, 7.2499, 7.2507, 7.2504, 7.25, 7.2498, 7.2506, 7.2504, 7.25, 7.2497, 7.2493, 7.2501, 7.2498, 7.2494, 7.2494, 7.2492, 7.249, 7.2487, 7.2484, 7.248, 7.2489, 7.2497, 7.2494, 7.2492, 7.2488, 7.2489, 7.2486, 7.2484, 7.2505, 7.2502, 7.2499, 7.2496, 7.2494, 7.2494, 7.2504, 7.2502, 7.2499, 7.2509, 7.2505, 7.2514, 7.2528, 7.2527, 7.2527, 7.2524, 7.2521, 7.2518, 7.2515, 7.2524, 7.2523, 7.252, 7.2517, 7.2514, 7.25, 7.2486, 7.2473, 7.2469, 7.2468, 7.2478, 7.2476, 7.2484, 7.248, 7.2476, 7.2474, 7.247, 7.2468, 7.2466, 7.2464, 7.2462, 7.2459, 7.2457, 7.2453, 7.2462, 7.2459, 7.2457, 7.2465, 7.2462, 7.246, 7.2456, 7.2442, 7.2451, 7.2448, 7.2434, 7.2431, 7.2428, 7.2426, 7.2435, 7.2432, 7.2429, 7.2438, 7.2447, 7.2456, 7.2464, 7.2461, 7.2458, 7.2455, 7.2464, 7.2461, 7.2447, 7.2443, 7.245, 7.2457, 7.2458, 7.2456, 7.2453, 7.2461, 7.246, 7.246, 7.2457, 7.2465, 7.2463, 7.2461, 7.2457, 7.2465, 7.2461, 7.2447, 7.2445, 7.2442, 7.244, 7.2437, 7.2434, 7.2431, 7.2427, 7.2425, 7.2422, 7.2419, 7.2427, 7.2434, 7.2454, 7.2452, 7.2449, 7.2459, 7.2456, 7.2452, 7.246, 7.2458, 7.2466, 7.2462, 7.2449, 7.2446, 7.2443, 7.2451, 7.2447, 7.2443, 7.2451, 7.2449, 7.2447, 7.2444, 7.2432, 7.2428, 7.2425, 7.2449, 7.2458, 7.2454, 7.2451, 7.2448, 7.2456, 7.2448, 7.2436, 7.2433, 7.2441, 7.245, 7.2446, 7.2434, 7.243, 7.2438, 7.2446, 7.2454, 7.2462, 7.247, 7.2467, 7.2464, 7.246, 7.2457, 7.2453, 7.2461, 7.2469, 7.2476, 7.2472, 7.2468, 7.2479, 7.2476, 7.2476, 7.2475, 7.2478, 7.2476, 7.2484, 7.2491, 7.2487, 7.2486, 7.2493, 7.249, 7.2488, 7.2485, 7.2482, 7.2513, 7.2511, 7.251, 7.2507, 7.2504, 7.25, 7.2498, 7.2494, 7.2492, 7.2489, 7.2486, 7.2484, 7.2481, 7.2478, 7.2474, 7.2471, 7.2469, 7.2477, 7.2474, 7.2472, 7.2469, 7.2468, 7.2467, 7.2464, 7.2461, 7.2458, 7.2466, 7.2464, 7.2461, 7.246, 7.2469, 7.2465, 7.2473, 7.2482, 7.248, 7.2477, 7.2474, 7.2483, 7.248, 7.2487, 7.2485, 7.2481, 7.2478, 7.2475, 7.2472, 7.2469, 7.2465, 7.2473, 7.2469, 7.2466, 7.2474, 7.2471, 7.2468, 7.2465, 7.2462, 7.2458, 7.2454, 7.2441, 7.2439, 7.2436, 7.2434, 7.243, 7.2427, 7.2437, 7.2436, 7.2436, 7.2433, 7.2429, 7.2426, 7.2434, 7.243, 7.2426, 7.2423, 7.242, 7.2418, 7.2415, 7.2413, 7.2421, 7.2417, 7.2416, 7.2414, 7.2411, 7.2409, 7.2407, 7.2406, 7.2407, 7.2404, 7.2401, 7.2399, 7.2397, 7.2394, 7.239, 7.2398, 7.2406, 7.2404, 7.2413, 7.2422, 7.2419, 7.2416, 7.2413, 7.2414, 7.2421, 7.2418, 7.2417, 7.2425, 7.2438, 7.2445, 7.2442, 7.244, 7.2442, 7.2439, 7.2436, 7.2445, 7.2453, 7.245, 7.2458, 7.2455, 7.2463, 7.2461, 7.2457, 7.2456, 7.2454, 7.2464, 7.2473, 7.2471, 7.247, 7.2467, 7.2466, 7.2474, 7.2471, 7.2467, 7.2464, 7.2461, 7.2459, 7.2459, 7.2455, 7.2452, 7.245, 7.2457, 7.2455, 7.2444, 7.2442, 7.2441, 7.2437, 7.2433, 7.2429, 7.2438, 7.2436, 7.2433, 7.2445, 7.2454, 7.245, 7.2447, 7.2443, 7.2442, 7.244, 7.2436, 7.2423, 7.241, 7.2408, 7.2419, 7.2407, 7.2403, 7.2412, 7.2419, 7.2426, 7.2435, 7.2432, 7.2429, 7.2436, 7.2445, 7.2433, 7.2448, 7.2445, 7.2452, 7.2449, 7.2448, 7.2445, 7.2453, 7.245, 7.2458, 7.2455, 7.2452, 7.2449, 7.2449, 7.2445, 7.2442, 7.2444, 7.2442, 7.2431, 7.2438, 7.2446, 7.2442, 7.243, 7.2446, 7.2443, 7.2442, 7.2439, 7.2437, 7.2433, 7.2421, 7.241, 7.2407, 7.2394, 7.239, 7.239, 7.2387, 7.2388, 7.2386, 7.2382, 7.238, 7.2378, 7.238, 7.2378, 7.2386, 7.2383, 7.2381, 7.2378, 7.2387, 7.2384, 7.2383, 7.2382, 7.2379, 7.2377, 7.2373, 7.238, 7.2392, 7.2401, 7.2398, 7.2395, 7.2393, 7.2389, 7.2387, 7.2383, 7.238, 7.2378, 7.2375, 7.2371, 7.2368, 7.2386, 7.2383, 7.238, 7.238, 7.2377, 7.2373, 7.2373, 7.2376, 7.2364, 7.2352, 7.2341, 7.2328, 7.2325, 7.2322, 7.2319, 7.2317, 7.2314, 7.2318, 7.2315, 7.2315, 7.2312, 7.2309, 7.2317, 7.2314, 7.2311, 7.2308, 7.2304, 7.2302, 7.2302, 7.231, 7.2317, 7.2324, 7.2321, 7.2317, 7.2315, 7.2312, 7.2308, 7.2307, 7.2304, 7.2302, 7.2309, 7.2306, 7.2304, 7.2303, 7.231, 7.2306, 7.2304, 7.2303, 7.2311, 7.231, 7.2306, 7.2303, 7.2299, 7.2295, 7.2302, 7.23, 7.2298, 7.2294, 7.229, 7.2289, 7.2286, 7.2283, 7.2281, 7.2277, 7.2283, 7.2291, 7.2298, 7.2294, 7.2291, 7.2288, 7.2284, 7.2283, 7.2281, 7.2278, 7.2274, 7.2271, 7.2268, 7.2266, 7.2265, 7.2265, 7.2262, 7.2258, 7.2266, 7.2264, 7.2261, 7.225, 7.2238, 7.2226, 7.2234, 7.2241, 7.2238, 7.2235, 7.2232, 7.2229, 7.2226, 7.2225, 7.2213, 7.2211, 7.2219, 7.2221, 7.2219, 7.2229, 7.2238, 7.2238, 7.2235, 7.2234, 7.2231, 7.2235, 7.2234, 7.2242, 7.2239, 7.2247, 7.2243, 7.224, 7.2238, 7.2236, 7.2245, 7.2253, 7.225, 7.2257, 7.2264, 7.2263, 7.2261, 7.2271, 7.2269, 7.2266, 7.2274, 7.2273, 7.2269, 7.2259, 7.2294, 7.2336, 7.2324, 7.2327, 7.2334, 7.2341, 7.2348, 7.2347, 7.2346, 7.2344, 7.2342, 7.233, 7.2327, 7.2324, 7.2321, 7.233, 7.2339, 7.2338, 7.2336, 7.2333, 7.233, 7.2327, 7.2324, 7.2321, 7.2318, 7.2326, 7.2323, 7.232, 7.2319, 7.2326, 7.2325, 7.2322, 7.2321, 7.2319, 7.2317, 7.2315, 7.2312, 7.2309, 7.2306, 7.2314, 7.2312, 7.231, 7.2317, 7.2314, 7.2311, 7.2309, 7.2306, 7.2303, 7.23, 7.2297, 7.2296, 7.2293, 7.2289, 7.2277, 7.2276, 7.2269, 7.2266, 7.2273, 7.2281, 7.2277, 7.2273, 7.228, 7.2277, 7.2274, 7.227, 7.2269, 7.2265, 7.2263, 7.2271, 7.2261, 7.2259, 7.2256, 7.2254, 7.2253, 7.225, 7.2248, 7.2245, 7.2252, 7.224, 7.2237, 7.2234, 7.2231, 7.2228, 7.2225, 7.2222, 7.2218, 7.2216, 7.2213, 7.2219, 7.2219, 7.2216, 7.2203, 7.2199, 7.2195, 7.2192, 7.2189, 7.2187, 7.2183, 7.2182, 7.2181, 7.2179, 7.2176, 7.2173, 7.217, 7.2167, 7.2165, 7.2162, 7.2162, 7.217, 7.2168, 7.2166, 7.2164, 7.2161, 7.217, 7.2169, 7.2166, 7.2174, 7.2172, 7.2168, 7.2165, 7.2166, 7.2162, 7.217, 7.2167, 7.2164, 7.216, 7.2156, 7.2153, 7.2152, 7.216, 7.2157, 7.2156, 7.2154, 7.2151, 7.2159, 7.2157, 7.2155, 7.2164, 7.216, 7.2158, 7.2155, 7.2163, 7.2161, 7.2158, 7.2156, 7.2172, 7.2179, 7.2177, 7.2177, 7.2174, 7.2171, 7.2167, 7.2165, 7.2162, 7.2179, 7.2177, 7.2174, 7.2171, 7.2159, 7.2156, 7.2163, 7.216, 7.2159, 7.2155, 7.2152, 7.2151, 7.2149, 7.2138, 7.2135, 7.2133, 7.213, 7.2127, 7.2125, 7.2123, 7.2121, 7.2119, 7.2116, 7.2114, 7.2122, 7.2119, 7.2116, 7.2114, 7.2111, 7.2109, 7.2117, 7.2105, 7.2103, 7.2101, 7.2109, 7.2106, 7.2104, 7.2101, 7.2098, 7.2096, 7.2094, 7.2091, 7.2089, 7.2079, 7.2093, 7.2089, 7.2088, 7.2087, 7.2084, 7.2081, 7.2071, 7.2059, 7.2056, 7.2063, 7.2061, 7.2063, 7.206, 7.2056, 7.2064, 7.2061, 7.2058, 7.2057, 7.2054, 7.2052, 7.205, 7.2049, 7.2049, 7.2039, 7.2047, 7.2055, 7.2053, 7.2051, 7.2068, 7.2056, 7.2053, 7.2061, 7.2069, 7.2066, 7.2064, 7.2071, 7.206, 7.2059, 7.2067, 7.2064, 7.2061, 7.2059, 7.2057, 7.2066, 7.2063, 7.206, 7.2058, 7.2055, 7.2051, 7.2049, 7.2037, 7.2036, 7.2033, 7.204, 7.2037, 7.2037, 7.2034, 7.2043, 7.2049, 7.2058, 7.2056, 7.2063, 7.2052, 7.205, 7.2047, 7.2054, 7.2062, 7.2058, 7.2056, 7.2054, 7.2051, 7.2048, 7.2038, 7.2037, 7.2035, 7.2042, 7.204, 7.2037, 7.2033, 7.2031, 7.2028, 7.2027, 7.2024, 7.2059, 7.2058, 7.2057, 7.2055, 7.2055, 7.2064, 7.2061, 7.2058, 7.2057, 7.2055, 7.2053, 7.2051, 7.206, 7.2057, 7.2055, 7.2053, 7.2066, 7.2068, 7.2064, 7.2062, 7.206, 7.2058, 7.2055, 7.2063, 7.206, 7.2058, 7.2055, 7.2053, 7.2051, 7.205, 7.2057, 7.2056, 7.2053, 7.2051, 7.2048, 7.2055, 7.2052, 7.2052, 7.2049, 7.2046, 7.2054, 7.2052, 7.2064, 7.2062, 7.2059, 7.2057, 7.2065, 7.2073, 7.2081, 7.2079, 7.2075, 7.2073, 7.2071, 7.2071, 7.2068, 7.2077, 7.2084, 7.2081, 7.2078, 7.2077, 7.208, 7.2079, 7.2078, 7.2076, 7.2083, 7.2081, 7.2079, 7.2077, 7.2085, 7.2082, 7.2081, 7.2081, 7.2089, 7.2086, 7.2083, 7.2084, 7.2082, 7.2079, 7.2077, 7.2084, 7.2083, 7.2079, 7.2076, 7.2074, 7.2073, 7.207, 7.2068, 7.2066, 7.2063, 7.206, 7.2057, 7.2054, 7.2054, 7.2061, 7.2068, 7.2067, 7.2064, 7.2062, 7.2059, 7.2048, 7.2045, 7.2043, 7.2042, 7.2039, 7.2037, 7.2037, 7.2026, 7.2025, 7.2023, 7.202, 7.2017, 7.2025, 7.2033, 7.204, 7.2037, 7.2034, 7.2031, 7.2038, 7.2035, 7.2041, 7.2038, 7.2046, 7.2053, 7.2057, 7.2057, 7.2073, 7.2072, 7.2071, 7.2071, 7.2068, 7.2069, 7.2068, 7.2065, 7.2065, 7.2067, 7.2065, 7.2063, 7.2062, 7.206, 7.2058, 7.2055, 7.2063, 7.206, 7.2057, 7.2066, 7.2073, 7.207, 7.2067, 7.2064, 7.2061, 7.2051, 7.2044, 7.2041, 7.2047, 7.2044, 7.2043, 7.2051, 7.2049, 7.2046, 7.2053, 7.205, 7.2047, 7.2044, 7.2041, 7.2038, 7.2035, 7.2032, 7.2031, 7.2061, 7.2068, 7.2067, 7.2064, 7.207, 7.2068, 7.2065, 7.2062, 7.206, 7.2057, 7.2064, 7.2079, 7.2088, 7.2085, 7.2082, 7.2088, 7.2085, 7.2103, 7.2111, 7.2109, 7.211, 7.2109, 7.2115, 7.2112, 7.2109, 7.2107, 7.2104, 7.2102, 7.2108, 7.2115, 7.2112, 7.2113, 7.2113, 7.2122, 7.212, 7.2117, 7.2114, 7.2125, 7.2123, 7.212, 7.2118, 7.2115, 7.2112, 7.2111, 7.2118, 7.2115, 7.2114, 7.2112, 7.2109, 7.2107, 7.2104, 7.2092, 7.2091, 7.209, 7.2087, 7.2084, 7.2081, 7.208, 7.2086, 7.2086, 7.2083, 7.208, 7.2077, 7.2074, 7.2073, 7.2079, 7.2076, 7.2083, 7.208, 7.2078, 7.2075, 7.2073, 7.207, 7.2068, 7.2074, 7.2071, 7.2069, 7.2066, 7.2063, 7.2061, 7.2077, 7.2074, 7.2071, 7.2068, 7.2067, 7.2057, 7.2055, 7.2053, 7.2051, 7.2048, 7.2047, 7.2055, 7.2054, 7.2052, 7.2051, 7.2058, 7.2056, 7.2074, 7.2086, 7.2092, 7.2091, 7.2089, 7.2087, 7.2085, 7.2085, 7.2091, 7.2097, 7.2094, 7.2091, 7.2088, 7.2086, 7.2082, 7.208, 7.2087, 7.2086, 7.2103, 7.2102, 7.21, 7.2097, 7.2094, 7.2085, 7.2082, 7.2081, 7.2079, 7.2076, 7.2073, 7.207, 7.2067, 7.2064, 7.2061, 7.2068, 7.2057, 7.2046, 7.2053, 7.205, 7.2047, 7.2046, 7.2053, 7.2052, 7.2049, 7.2046, 7.2052, 7.2067, 7.2065, 7.2063, 7.2061, 7.2059, 7.2058, 7.2056, 7.2063, 7.206, 7.2057, 7.2054, 7.2052, 7.2049, 7.2047, 7.2045, 7.2042, 7.2039, 7.2028, 7.2038, 7.2037, 7.204700000000001, 7.2046, 7.2052, 7.205, 7.2048, 7.2047, 7.2046, 7.2043, 7.2041, 7.2038, 7.2035, 7.2033, 7.203, 7.2028, 7.2038, 7.2048000000000005, 7.2046, 7.2043, 7.204, 7.2037, 7.2045, 7.2042, 7.2039, 7.2045, 7.2043, 7.2042, 7.2039, 7.2036, 7.2062, 7.2069, 7.2077, 7.2093, 7.209, 7.2098, 7.2098, 7.2095, 7.2094, 7.2091, 7.2088, 7.2085, 7.2085, 7.2112, 7.211, 7.2107, 7.2104, 7.2111, 7.2109, 7.2107, 7.2108, 7.2126, 7.2126, 7.2123, 7.2122, 7.212, 7.2128, 7.2136, 7.2134, 7.2132, 7.213, 7.2129, 7.2127, 7.2125, 7.2122, 7.2121, 7.2119, 7.2118, 7.2116, 7.2116, 7.2124, 7.2122, 7.2121, 7.2129, 7.2127, 7.2129, 7.2126, 7.2124, 7.2114, 7.2114, 7.2111, 7.211, 7.2108, 7.2106, 7.2104, 7.2101, 7.2099, 7.2097, 7.2095, 7.2095, 7.2094, 7.2092, 7.21, 7.2097, 7.2095, 7.2093, 7.2102, 7.2102, 7.21, 7.2097, 7.2106, 7.2107, 7.2105, 7.2102, 7.2099, 7.2096, 7.2107, 7.2114, 7.2105, 7.2103, 7.21, 7.21, 7.2102, 7.2109, 7.2116, 7.2113, 7.2112, 7.212, 7.2128, 7.2125, 7.2132, 7.2131, 7.2137, 7.2144, 7.2142, 7.214, 7.2138, 7.2144, 7.2152, 7.215, 7.2157, 7.2164, 7.2171, 7.2169, 7.2177, 7.2184, 7.2182, 7.2181, 7.2181, 7.2181, 7.2181, 7.2178, 7.2176, 7.2173, 7.2171, 7.217, 7.2168, 7.2166, 7.2165, 7.2162, 7.2159, 7.2156, 7.2153, 7.2143, 7.2132, 7.2122, 7.212, 7.2118, 7.2116, 7.2114, 7.2114, 7.2111, 7.2112, 7.211, 7.2117, 7.2115, 7.2114, 7.2112, 7.2112, 7.2119, 7.2117, 7.2123, 7.2122, 7.2119, 7.2117, 7.2115, 7.2113, 7.2113, 7.2111, 7.2108, 7.2108, 7.2115, 7.2113, 7.2111, 7.2117, 7.2115, 7.2106, 7.2153, 7.2152, 7.215, 7.2148, 7.2147, 7.2148, 7.2149, 7.2146, 7.2144, 7.2143, 7.214, 7.2138, 7.2137, 7.2134, 7.2131, 7.2128, 7.2125, 7.2123, 7.2121, 7.2119, 7.2117, 7.2114, 7.2113, 7.2111, 7.2109, 7.2108, 7.2105, 7.2102, 7.21, 7.2106, 7.2104, 7.2094, 7.2092, 7.2089, 7.2087, 7.2093, 7.2092, 7.2092, 7.2091, 7.2098, 7.2095, 7.2093, 7.209, 7.2087, 7.2093, 7.2091, 7.208, 7.2077, 7.2076, 7.2082, 7.2079, 7.2081, 7.2079, 7.2077, 7.2075, 7.2073, 7.2071, 7.2069, 7.2059, 7.2048, 7.2038, 7.2027, 7.2017, 7.2014, 7.2012, 7.2018, 7.2015, 7.2012, 7.201, 7.2017, 7.2014, 7.2013, 7.202, 7.2026, 7.2023, 7.2029, 7.2027, 7.2025, 7.2024, 7.2022, 7.2023, 7.202, 7.2017, 7.2016, 7.2013, 7.201, 7.2008, 7.2013, 7.2023, 7.2021, 7.2019, 7.2016, 7.2015, 7.2012, 7.2009, 7.2008, 7.2006, 7.2006, 7.2006, 7.2004, 7.201, 7.2007, 7.2005, 7.2003, 7.2001, 7.1999, 7.1997, 7.1996, 7.1993, 7.201, 7.2007, 7.1998, 7.2004, 7.2002, 7.2, 7.1997, 7.1994, 7.1992, 7.1999, 7.1996, 7.1993, 7.199, 7.1988, 7.1985, 7.1983, 7.1974, 7.1972, 7.1971, 7.197, 7.1969, 7.1977, 7.1975, 7.1973, 7.1972, 7.197, 7.1977, 7.1974, 7.1972, 7.1978, 7.1985, 7.1984, 7.1982, 7.198, 7.1987, 7.1985, 7.1985, 7.1995000000000005, 7.1993, 7.2008, 7.2032, 7.2039, 7.2047, 7.2046, 7.2053, 7.2051, 7.2048, 7.2045, 7.2044, 7.2042, 7.204, 7.2038, 7.2038, 7.2046, 7.2052, 7.2051, 7.2049, 7.2047, 7.2045, 7.2047, 7.2054, 7.2051, 7.2048, 7.2045, 7.2045, 7.2051, 7.2048, 7.2046, 7.2045, 7.2044, 7.2056, 7.2053, 7.206, 7.2059, 7.2065, 7.2071, 7.2068, 7.2066, 7.2063, 7.206, 7.2057, 7.2055, 7.2061, 7.2077, 7.2084, 7.2082, 7.2079, 7.208, 7.2078, 7.2086, 7.2078, 7.2078, 7.2076, 7.2076, 7.2073, 7.208, 7.207, 7.206, 7.2051, 7.2058, 7.2056, 7.2054, 7.2063, 7.2054, 7.2052, 7.2049, 7.2046, 7.2043, 7.205, 7.2047, 7.2044, 7.2044, 7.2042, 7.2049, 7.2048, 7.2045, 7.2051, 7.2049, 7.2046, 7.2046, 7.2061, 7.206, 7.2057, 7.2056, 7.2053, 7.2051, 7.2057, 7.2055, 7.2054, 7.2044, 7.2041, 7.2038, 7.2037, 7.2037, 7.2027, 7.2025, 7.2027, 7.2026, 7.2023, 7.2013, 7.2022, 7.2019, 7.2016, 7.2014, 7.2013, 7.201, 7.2007, 7.2006, 7.2004, 7.2002, 7.2001, 7.1999, 7.1998, 7.1997, 7.1995, 7.1994, 7.1992, 7.1984, 7.1974, 7.1972, 7.1979, 7.1976, 7.1982, 7.1988, 7.1985, 7.1983, 7.1981, 7.1978, 7.1976, 7.1974, 7.1965, 7.1971, 7.1969, 7.1977, 7.1968, 7.1968, 7.1967, 7.1967, 7.1958, 7.1956, 7.1953, 7.1951, 7.1958, 7.1956, 7.1954, 7.1944, 7.1943, 7.194, 7.194, 7.1939, 7.1938, 7.1944, 7.1941, 7.1941, 7.1948, 7.1947, 7.1954, 7.1961, 7.1959, 7.1966, 7.1965, 7.1956, 7.1955, 7.1954, 7.1954, 7.1951, 7.1951, 7.1958, 7.1991, 7.1999, 7.2001, 7.2007, 7.2005, 7.2012, 7.2009, 7.2008, 7.2006, 7.2004, 7.2003, 7.2009, 7.2008, 7.2006, 7.2005, 7.2003, 7.2008, 7.2014, 7.2012, 7.201, 7.2016, 7.2014, 7.202, 7.2018, 7.2024, 7.2023, 7.2029, 7.2026, 7.2033, 7.2031, 7.2029, 7.2026, 7.2032, 7.203, 7.2028, 7.2018, 7.2016, 7.2005, 7.2004, 7.2003, 7.2, 7.1998, 7.1995, 7.1994, 7.1991, 7.1989, 7.1986, 7.1984, 7.1982, 7.1979, 7.1977, 7.1974, 7.1973, 7.197, 7.1968, 7.1967, 7.1965, 7.1962, 7.196, 7.1957, 7.1959, 7.1957, 7.1964, 7.1962, 7.1959, 7.1956, 7.1957, 7.1964, 7.1964, 7.1978, 7.1975, 7.1973, 7.197, 7.1968, 7.1966, 7.1965, 7.1963, 7.1961, 7.1959, 7.1958, 7.1956, 7.1963, 7.1969, 7.1975, 7.1981, 7.1979, 7.1984, 7.1983, 7.198, 7.1977, 7.1974, 7.1973, 7.1972, 7.1969, 7.1967, 7.1965, 7.1962, 7.1959, 7.1957, 7.1954, 7.1951, 7.1948, 7.1946, 7.1945, 7.1944, 7.1942, 7.194, 7.1946, 7.1943, 7.1942, 7.194, 7.1937, 7.194, 7.1938, 7.1938, 7.1936, 7.1942, 7.1948, 7.1946, 7.1944, 7.1942, 7.1942, 7.1941, 7.1939, 7.1947, 7.1944, 7.1942, 7.194, 7.194, 7.1938, 7.1951, 7.1958, 7.1975, 7.1982, 7.1976, 7.1988, 7.1986, 7.1987, 7.1997, 7.2004, 7.201, 7.2007, 7.2004, 7.2002, 7.1999, 7.2005, 7.2005, 7.2002, 7.1999, 7.1998, 7.1997, 7.1997, 7.1994, 7.1992, 7.1989, 7.1986, 7.1984, 7.1982, 7.1979, 7.1978, 7.1976, 7.1975, 7.198, 7.1978, 7.1976, 7.1973, 7.197, 7.1975, 7.1973, 7.1979, 7.1977, 7.1976, 7.1975, 7.1973, 7.197, 7.1967, 7.1965, 7.1971, 7.1968, 7.1965, 7.1963, 7.1961, 7.1967, 7.1964, 7.1965, 7.1962, 7.1963, 7.1962, 7.1959, 7.1957, 7.1955, 7.1954, 7.1961, 7.1967, 7.1965, 7.1972, 7.197, 7.1969, 7.1968, 7.1966, 7.1964, 7.197, 7.1969, 7.1968, 7.1967, 7.1965, 7.1963, 7.197, 7.1969, 7.1967, 7.1967, 7.1964, 7.1961, 7.1959, 7.1957, 7.1954, 7.1952, 7.1949, 7.1955, 7.1953, 7.1952, 7.1949, 7.1948, 7.1946, 7.1944, 7.1943, 7.194, 7.1939, 7.1937, 7.1934, 7.1933, 7.193, 7.1927, 7.1933, 7.1931, 7.1928, 7.1925, 7.1925, 7.1922, 7.1921, 7.1918, 7.1917, 7.1923, 7.192, 7.1918, 7.1915, 7.1921, 7.1927, 7.1934, 7.194, 7.1937, 7.1935, 7.1941, 7.1938, 7.1935, 7.1933, 7.194, 7.1938, 7.1937, 7.1935, 7.1934, 7.1934, 7.1932, 7.1929, 7.1928, 7.1934, 7.1932, 7.1938, 7.1937, 7.1943, 7.1941, 7.1941, 7.1938, 7.1935, 7.1938, 7.1935, 7.1932, 7.1929, 7.1927, 7.1926, 7.1932, 7.1932, 7.193, 7.1928, 7.1927, 7.1925, 7.1926, 7.1926, 7.1925, 7.1923, 7.1921, 7.193, 7.1943, 7.1941, 7.194, 7.1938, 7.1944, 7.1942, 7.1949, 7.1949, 7.1947, 7.1945, 7.1943, 7.1941, 7.1939, 7.1937, 7.1936, 7.1933, 7.1931, 7.1931, 7.1929, 7.1935, 7.1934, 7.1932, 7.1925, 7.1923, 7.1921, 7.1928, 7.1934, 7.1946, 7.1944, 7.1942, 7.194, 7.1946, 7.1943, 7.1942, 7.1951, 7.1949, 7.1955, 7.1958, 7.1956, 7.1962, 7.196, 7.196, 7.1969, 7.1967, 7.1964, 7.197, 7.1967, 7.1964, 7.1987, 7.1984, 7.199, 7.1996, 7.1995, 7.1992, 7.199, 7.1996, 7.2026, 7.2032, 7.2045, 7.2042, 7.204, 7.2037, 7.2042, 7.204, 7.2038, 7.2035, 7.2032, 7.2029, 7.2034, 7.2031, 7.2028, 7.2025, 7.2023, 7.2036, 7.2042, 7.2039, 7.2044, 7.2046, 7.2048, 7.2046, 7.2046, 7.2045, 7.2043, 7.2041, 7.2038, 7.2036, 7.2034, 7.2032, 7.203, 7.2028, 7.2027, 7.2026, 7.2023, 7.202, 7.202, 7.2019, 7.2016, 7.2014, 7.2011, 7.2009, 7.2001, 7.1999, 7.201, 7.2008, 7.2006, 7.2004, 7.2001, 7.2008, 7.2006, 7.2007, 7.2004, 7.1997, 7.2003, 7.2009, 7.2024, 7.2021, 7.2019, 7.2017, 7.2014, 7.2012, 7.201, 7.2007, 7.1997, 7.2003, 7.2, 7.1997, 7.1995, 7.1993, 7.1998, 7.2005, 7.2004, 7.2009, 7.2025, 7.2022, 7.2028, 7.2033, 7.2039, 7.2039, 7.2049, 7.2047, 7.2053, 7.2052, 7.2058, 7.2055, 7.2065, 7.2063, 7.2068, 7.2065, 7.2063, 7.2061, 7.206, 7.2058, 7.2055, 7.2053, 7.2058, 7.2056, 7.2054, 7.2052, 7.2057, 7.2063, 7.2061, 7.2066, 7.2064, 7.2062, 7.2059, 7.2057, 7.2055, 7.206, 7.2065, 7.2056, 7.2053, 7.205, 7.2047, 7.2052, 7.2049, 7.2046, 7.2051, 7.2056, 7.2053, 7.205, 7.2048, 7.2046, 7.2044, 7.2042, 7.2047, 7.2044, 7.2042, 7.204, 7.2045, 7.2043, 7.2049, 7.2048, 7.2045, 7.2043, 7.204, 7.2039, 7.2036, 7.2033, 7.2039, 7.2036, 7.2042, 7.204, 7.2039, 7.2045, 7.2051, 7.2048, 7.2061, 7.2066, 7.2064, 7.207, 7.2075, 7.2073, 7.2071, 7.2069, 7.2066, 7.2064, 7.2062, 7.2092, 7.2089, 7.2095, 7.2097, 7.2094, 7.2092, 7.2114, 7.212, 7.2118, 7.2117, 7.2114, 7.2114, 7.2121, 7.2119, 7.2124, 7.2122, 7.2131, 7.2123, 7.2129, 7.2128, 7.2126, 7.2124, 7.2124, 7.2132, 7.2151, 7.2157, 7.2155, 7.2153, 7.215, 7.2148, 7.2147, 7.2165, 7.2165, 7.217, 7.2168, 7.2166, 7.2164, 7.217, 7.2176, 7.22, 7.2192, 7.2189], '192.168.122.113': [5.6195, 5.4783, 5.5253, 5.5977, 5.5827, 6.5141, 6.4418, 6.4432, 6.9594, 7.4582, 7.3164, 7.1822, 7.1415, 7.3162, 7.2297, 7.1628, 7.0961, 6.9994, 6.9561, 6.9104, 6.8447, 6.7863, 6.7342, 6.7358, 6.7597, 7.158, 7.0944, 7.0366, 7.0083, 6.981, 6.9465, 6.9447, 7.4037, 7.6664, 7.7659, 7.7283, 7.6816, 7.6543, 7.6056, 7.7844, 7.7372, 7.7163, 7.6631, 7.6138, 7.5745, 7.6394, 7.6038, 7.6744, 7.6475, 7.6036, 7.5838, 7.5517, 7.5101, 7.3811, 7.4372, 7.4116, 7.3869, 7.3795, 7.3571, 7.3293, 7.3863, 7.3577, 7.3308, 7.3091, 7.2792, 7.2682, 7.2496, 7.3042, 7.3555, 7.3252, 7.3014, 7.279, 7.3354, 7.3186, 7.3089, 7.308, 7.2245, 7.2109, 7.2028, 7.2589, 7.2418, 7.2208, 7.2104, 7.188, 7.1773, 7.1637, 7.1487, 7.1341, 7.1145, 7.0988, 7.0798, 7.0604, 7.0564, 7.0473, 7.0365, 7.0203, 7.0091, 6.9957, 6.9795, 6.9649, 7.0012, 7.0401, 7.0861, 7.0847, 7.1215, 7.1553, 7.1377, 7.1225, 7.1057, 7.1119, 7.0954, 7.1295, 7.1239, 7.1071, 7.1087, 7.0963, 7.0828, 7.0676, 7.0552, 7.0441, 7.0322, 7.0699, 7.0614, 7.0468, 7.0878, 7.0769, 7.0685, 7.1004, 7.0949, 7.0898, 7.0756, 7.0689, 7.0938, 7.0898, 7.076, 7.0699, 7.0599, 7.0883, 7.0779, 7.0709, 7.0725, 7.0624, 7.0577, 7.0829, 7.0806, 7.0709, 7.0618, 7.0513, 7.0486, 7.0465, 7.0393, 7.0343, 7.0597, 7.0574, 7.061, 7.0516, 7.0403, 7.036, 7.0302, 7.0222, 7.0451, 7.0132, 7.0198, 7.009, 6.9982, 6.9878, 7.0128, 7.0057, 7.0307, 7.0238, 7.014, 7.0376, 7.1053, 7.1262, 7.1158, 7.1061, 7.0962, 7.0922, 7.0846, 7.0785, 7.0793, 7.073, 7.0636, 7.0543, 7.0522, 7.1103, 7.1014, 7.0993, 7.1202, 7.1409, 7.1376, 7.1308, 7.1511, 7.1432, 7.1381, 7.1593, 7.1538, 7.1739, 7.1699, 7.1896, 7.1815, 7.2032, 7.1947, 7.1894, 7.1839, 7.1789, 7.1771, 7.1777, 7.1715, 7.1656, 7.1585, 7.1554, 7.1501, 7.1426, 7.1388, 7.1318, 7.1279, 7.1254, 7.1436, 7.1361, 7.1318, 7.1306, 7.1229, 7.1419, 7.1367, 7.1299, 7.1226, 7.1156, 7.1108, 7.1073, 7.1057, 7.0991, 7.0941, 7.112, 7.113, 7.1264, 7.1239, 7.1162, 7.1122, 7.1484, 7.1406, 7.1387, 7.1361, 7.1514, 7.1459, 7.139, 7.1334, 7.1337, 7.1313, 7.1254, 7.1443, 7.159, 7.1569, 7.1501, 7.1508, 7.1514, 7.1482, 7.1637, 7.1619, 7.1576, 7.1746, 7.1697, 7.187, 7.1818, 7.1829, 7.1801, 7.196, 7.1909, 7.1901, 7.1854, 7.1783, 7.1731, 7.1703, 7.169, 7.1646, 7.161, 7.1585, 7.1537, 7.1488, 7.1465, 7.1438, 7.1214, 7.117, 7.112, 7.1058, 7.1012, 7.0988, 7.0935, 7.0885, 7.0845, 7.0962, 7.0901, 7.0853, 7.0994, 7.0949, 7.1107, 7.1097, 7.1078, 7.1028, 7.0966, 7.0916, 7.089, 7.0834, 7.0808, 7.0782, 7.0757, 7.0748, 7.0752, 7.0877, 7.0856, 7.082, 7.0791, 7.078, 7.0757, 7.0912, 7.0885, 7.0874, 7.0838, 7.0798, 7.0834, 7.098, 7.1006, 7.1186, 7.1337, 7.1471, 7.1419, 7.1373, 7.1343, 7.1304, 7.128, 7.1243, 7.1358, 7.1302, 7.1254, 7.1234, 7.1178, 7.114, 7.1089, 7.1234, 7.1202, 7.1161, 7.1151, 7.1097, 7.1078, 7.12, 7.1172, 7.1166, 7.112, 7.1112, 7.1062, 7.1054, 7.1007, 7.0991, 7.0943, 7.0899, 7.0848, 7.0827, 7.0817, 7.0791, 7.0753, 7.0793, 7.0788, 7.079, 7.0764, 7.0881, 7.0836, 7.0791, 7.0769, 7.0779000000000005, 7.106, 7.1018, 7.0997, 7.098, 7.0933, 7.0883, 7.0849, 7.0834, 7.0809, 7.0674, 7.0631, 7.0609, 7.0574, 7.0529, 7.0483, 7.0456, 7.0432, 7.0448, 7.0411, 7.0424, 7.0801, 7.0761, 7.0721, 7.0698, 7.0674, 7.1485, 7.1442, 7.14, 7.1373, 7.135, 7.1442, 7.1398, 7.1496, 7.1595, 7.1435, 7.141, 7.1371, 7.1389, 7.1393, 7.1354, 7.1318, 7.1316, 7.1294, 7.1248, 7.1349, 7.1324, 7.1285, 7.1257, 7.1245, 7.1206, 7.1186, 7.1148, 7.1116, 7.1223, 7.1198, 7.1217, 7.1188, 7.1155, 7.1164, 7.1302, 7.1393, 7.167, 7.1629, 7.1597, 7.1597, 7.1572, 7.1538, 7.1633, 7.1679, 7.164, 7.1611, 7.1597, 7.1572, 7.1546, 7.1519, 7.1482, 7.1707, 7.1942, 7.1833, 7.183, 7.1788, 7.1757, 7.1846, 7.1939, 7.1906, 7.187, 7.2038, 7.204, 7.2009, 7.1987, 7.1974, 7.1944, 7.1911, 7.187, 7.1836, 7.1806, 7.1776, 7.1784, 7.1752, 7.1715, 7.1692, 7.1673, 7.1753, 7.172, 7.1683, 7.1648, 7.173, 7.1808, 7.1772, 7.1872, 7.2115, 7.2082, 7.2157, 7.213, 7.2114, 7.2091, 7.2058, 7.2024, 7.2009, 7.1988, 7.195, 7.193, 7.19, 7.1867, 7.1828, 7.181, 7.1773, 7.1847, 7.1808, 7.1774, 7.1752, 7.1739, 7.1712, 7.1691, 7.1654, 7.1627, 7.1604, 7.158, 7.1559, 7.1537, 7.1612, 7.159, 7.1589, 7.1571, 7.1544, 7.1522, 7.152, 7.1489, 7.1489, 7.1474, 7.1486, 7.1575, 7.1552, 7.1535, 7.1617, 7.159, 7.1666, 7.166, 7.1631, 7.1607, 7.1584, 7.1653, 7.1654, 7.1621, 7.1586, 7.1587, 7.157, 7.1543, 7.1517, 7.1498, 7.158, 7.1549, 7.1559, 7.1527, 7.1608, 7.1578, 7.1569, 7.1552, 7.1526, 7.1504, 7.1471, 7.1438, 7.1419, 7.1385, 7.1364, 7.1359, 7.1328, 7.1295, 7.1264, 7.1337, 7.1311, 7.129, 7.1259, 7.1361, 7.1432, 7.1429, 7.1398, 7.1391, 7.1465, 7.146, 7.1435, 7.1409, 7.1483, 7.1466, 7.1527, 7.1514, 7.148, 7.1543, 7.1512, 7.1572, 7.1549, 7.1615, 7.1602, 7.1569, 7.1548, 7.1608, 7.1589, 7.1573, 7.1568, 7.1538, 7.16, 7.1578, 7.1549, 7.153, 7.1517, 7.1501, 7.1477, 7.145, 7.1464, 7.1451, 7.1445, 7.1427, 7.1402, 7.1373, 7.1544, 7.1515, 7.1498, 7.1567, 7.1558, 7.1539, 7.1509, 7.1494, 7.1466, 7.1454, 7.1509, 7.1498, 7.1469, 7.1439, 7.1511, 7.1499, 7.1394, 7.1499, 7.147, 7.1459, 7.1429, 7.1345, 7.125, 7.1306, 7.1295, 7.1267, 7.1252, 7.1256, 7.1149, 7.1129, 7.1357, 7.1336, 7.139, 7.145, 7.1428, 7.1398, 7.1456, 7.151, 7.1486, 7.1459, 7.1439, 7.141, 7.1466, 7.1527, 7.1507, 7.1479, 7.1453, 7.1428, 7.1403, 7.1388, 7.144, 7.1414, 7.1392, 7.1446, 7.1422, 7.14, 7.1389, 7.1366, 7.1348, 7.133, 7.1307, 7.1288, 7.1342, 7.1318, 7.1292, 7.1352, 7.1343, 7.1325, 7.1311, 7.1294, 7.1276, 7.1262, 7.1245, 7.122, 7.12, 7.1188, 7.1167, 7.1145, 7.1409, 7.1459, 7.1434, 7.1424, 7.14, 7.1378, 7.1432, 7.1489, 7.1466, 7.1446, 7.1427, 7.1405, 7.1379, 7.1432, 7.1486, 7.1545, 7.1524, 7.1508, 7.1486, 7.1477, 7.1454, 7.1433, 7.1489, 7.1476, 7.1545, 7.1528, 7.1502, 7.1732, 7.1708, 7.1682, 7.1734, 7.1792, 7.1775, 7.1756, 7.1808, 7.1796, 7.1777, 7.1829, 7.1807, 7.1781, 7.1779, 7.1767, 7.1825, 7.1799, 7.1861, 7.1839, 7.1823, 7.1804, 7.1791, 7.177, 7.1758, 7.1777, 7.1764, 7.1925, 7.1918, 7.1897, 7.1825, 7.1811, 7.1861, 7.1881, 7.1873, 7.1946, 7.1922, 7.1904, 7.1884, 7.1864, 7.1841, 7.1891, 7.1869, 7.1858, 7.1847, 7.1894, 7.1875, 7.1854, 7.1837, 7.1817, 7.1794, 7.1776, 7.1756, 7.1811, 7.1796, 7.1848, 7.1839, 7.1816, 7.1805, 7.1882, 7.1862, 7.1849, 7.184, 7.1817, 7.1861, 7.1845, 7.189, 7.1868, 7.1844, 7.1834, 7.1814, 7.1807, 7.1787, 7.1835, 7.1814, 7.1798, 7.1847, 7.1825, 7.187, 7.185, 7.1854, 7.184, 7.1887, 7.1867, 7.1845, 7.1825, 7.1802, 7.1781, 7.1825, 7.1936, 7.1979, 7.197, 7.1951, 7.1931, 7.1975, 7.1966, 7.1949, 7.193, 7.1906, 7.1882, 7.1932, 7.1911, 7.1893, 7.1885, 7.1884, 7.1968, 7.195, 7.1881, 7.1864, 7.191, 7.1888, 7.1866, 7.1843, 7.1826, 7.1803, 7.1848, 7.1872, 7.1915, 7.1905, 7.1889, 7.1874, 7.1864, 7.1848, 7.1831, 7.1815, 7.1811, 7.1809, 7.1792, 7.1771, 7.1762, 7.1741, 7.1793, 7.1788, 7.177, 7.1751, 7.174, 7.1786, 7.1834, 7.1879, 7.1863, 7.1852, 7.183, 7.1809, 7.1799, 7.1847, 7.1843, 7.1825, 7.1804, 7.1797, 7.1778, 7.1829, 7.1821, 7.193, 7.1911, 7.1905, 7.19, 7.1952, 7.1938, 7.1921, 7.1906, 7.1887, 7.1874, 7.1924, 7.197, 7.2017, 7.2058, 7.2039, 7.2091, 7.21, 7.2083, 7.2126, 7.2112, 7.209, 7.2069, 7.2048, 7.2096, 7.2084, 7.2071, 7.2049, 7.2029, 7.2012, 7.1997, 7.1975, 7.1953, 7.1943, 7.1925, 7.1915, 7.1905, 7.1896, 7.1875, 7.1853, 7.1833, 7.183, 7.1811, 7.182, 7.1804, 7.1853, 7.1839, 7.1881, 7.1876, 7.1917, 7.1897, 7.1876, 7.1805, 7.1789, 7.178, 7.1768, 7.1755, 7.1736, 7.1717, 7.1705, 7.1692, 7.1675, 7.1663, 7.1647, 7.1687, 7.1672, 7.166, 7.1644, 7.1646, 7.1695, 7.1798, 7.1797, 7.19, 7.1895, 7.1891, 7.1878, 7.1869, 7.1852, 7.1849, 7.1842, 7.1825, 7.1807, 7.1817, 7.18, 7.1792, 7.1802, 7.1812000000000005, 7.1793, 7.184, 7.1825, 7.1816, 7.1806, 7.1796, 7.1836, 7.182, 7.1802, 7.1792, 7.1776, 7.1762, 7.175, 7.1749, 7.1745, 7.1739, 7.172, 7.1766, 7.1755, 7.1803, 7.1813, 7.18, 7.1787, 7.1833, 7.1819, 7.1859, 7.1844, 7.1838, 7.1828, 7.182, 7.1803, 7.1793, 7.1782, 7.1764, 7.1762, 7.1745, 7.173, 7.1714, 7.1751, 7.1789, 7.1771, 7.1761, 7.1748, 7.1761, 7.1744, 7.1726, 7.1764, 7.1753, 7.1739, 7.1721, 7.173100000000001, 7.1715, 7.1703, 7.1656, 7.1697, 7.1678, 7.1674, 7.1655, 7.1639, 7.162, 7.1653, 7.1647, 7.1637, 7.1627, 7.1613, 7.1596, 7.1586, 7.157, 7.163, 7.1705, 7.1689, 7.1674, 7.1677, 7.1713, 7.1701, 7.1696, 7.1678, 7.1668, 7.1659, 7.1644, 7.1729, 7.173900000000001, 7.1726, 7.1709, 7.1697, 7.176, 7.1796, 7.1782, 7.1763, 7.1752, 7.1691, 7.1675, 7.1713, 7.1697, 7.1682, 7.1667, 7.1657, 7.169, 7.1725, 7.172, 7.1704, 7.1695, 7.1685, 7.1668, 7.1667, 7.1655, 7.1656, 7.1691, 7.1676, 7.1713, 7.1711, 7.1699, 7.169, 7.1729, 7.1716, 7.1754, 7.1797, 7.1834, 7.1827, 7.1812, 7.1852, 7.1836, 7.1822, 7.1853, 7.1849, 7.1847, 7.1834, 7.1819, 7.1858, 7.1893, 7.193, 7.1973, 7.1969, 7.1953, 7.1989, 7.1978, 7.1961, 7.1948, 7.1938, 7.1976, 7.1971, 7.1966, 7.1955, 7.199, 7.1983, 7.1975, 7.1963, 7.1949, 7.1933, 7.1969, 7.1955, 7.1941, 7.1926, 7.1912, 7.1898, 7.1891, 7.1876, 7.1907, 7.2029, 7.2022, 7.2016, 7.21, 7.2085, 7.2075, 7.2059, 7.1999, 7.1983, 7.198, 7.2015, 7.2004, 7.1997, 7.1983, 7.1967, 7.1952, 7.1941, 7.1951, 7.1961, 7.1945, 7.1985, 7.198, 7.1967, 7.1955, 7.1965, 7.1948, 7.1933, 7.1927, 7.1922, 7.191, 7.19, 7.189, 7.1879, 7.1868, 7.1851, 7.1837, 7.1821, 7.1852, 7.1836, 7.1827, 7.186, 7.1846, 7.183, 7.1815, 7.1802, 7.1796, 7.179, 7.180000000000001, 7.1834, 7.1844, 7.1831, 7.1816, 7.181, 7.1795, 7.1779, 7.1809, 7.1841, 7.1836, 7.1832, 7.1828, 7.186, 7.1812, 7.1844, 7.1881, 7.1888, 7.1876, 7.1859, 7.1845, 7.1842, 7.1835, 7.1823, 7.1811, 7.1942, 7.193, 7.1916, 7.1902, 7.1898, 7.1933, 7.1922, 7.1905, 7.189, 7.188, 7.1873, 7.1859, 7.1849, 7.1836, 7.1821, 7.1831000000000005, 7.1817, 7.18, 7.1788, 7.1776, 7.1813, 7.1798, 7.18, 7.1786, 7.178, 7.1769, 7.1755, 7.1742, 7.1727, 7.1728, 7.1715, 7.1725, 7.1721, 7.171, 7.1698, 7.1683, 7.1716, 7.1704, 7.1691, 7.1722, 7.1714, 7.1703, 7.1693, 7.1678, 7.1676, 7.1664, 7.1707, 7.1705, 7.1689, 7.1676, 7.1665, 7.1654, 7.1643, 7.1676, 7.1668, 7.1652, 7.1639, 7.1676, 7.1686, 7.1676, 7.1686000000000005, 7.169600000000001, 7.170600000000001, 7.1702, 7.1739, 7.1727, 7.1711, 7.1701, 7.1739, 7.1725, 7.1711, 7.174, 7.173, 7.1724, 7.1713, 7.1707, 7.1694, 7.168, 7.1711, 7.1702, 7.1692, 7.1721, 7.1712, 7.1708, 7.1694, 7.1726, 7.1755, 7.1742, 7.1774, 7.1767, 7.18, 7.1747, 7.1735, 7.1723, 7.1709, 7.1695, 7.1682, 7.1713, 7.1705, 7.1693, 7.1732, 7.1726, 7.1716, 7.1709, 7.17, 7.1687, 7.1673, 7.1702, 7.1691, 7.1679, 7.1682, 7.1676, 7.1715, 7.17, 7.1692, 7.1681, 7.1667, 7.1657, 7.1646, 7.1635, 7.1621, 7.1627, 7.1617, 7.161, 7.1595, 7.1623, 7.1658, 7.1651, 7.1638, 7.1624, 7.1611, 7.1602, 7.1589, 7.1618, 7.1608, 7.1594, 7.1591, 7.1578, 7.1609, 7.1604, 7.159, 7.1641, 7.1634, 7.1665, 7.1652, 7.1649, 7.164, 7.1628, 7.1662, 7.1656, 7.165, 7.1685, 7.1721, 7.1756, 7.1792, 7.1802, 7.1812000000000005, 7.1804, 7.1791, 7.182, 7.181, 7.1802, 7.1792, 7.1784, 7.1775, 7.1841, 7.1836, 7.187, 7.1858, 7.1888, 7.1919, 7.192900000000001, 7.1918, 7.1916, 7.2054, 7.2042, 7.2072, 7.2062, 7.2059, 7.2052, 7.2091, 7.2083, 7.2091, 7.2088, 7.2119, 7.2115, 7.2164, 7.216, 7.2148, 7.2173, 7.2166, 7.2157, 7.2181, 7.2168, 7.2158, 7.2185, 7.2179, 7.2177, 7.2171, 7.2161, 7.2187, 7.2214, 7.2204, 7.223, 7.2222, 7.2251, 7.2241, 7.2251, 7.226100000000001, 7.2249, 7.2294, 7.2319, 7.2348, 7.2335, 7.2323, 7.2318, 7.2305, 7.2303, 7.237, 7.2359, 7.2347, 7.2345, 7.2332, 7.236, 7.2358, 7.2347, 7.2336, 7.2324, 7.2349, 7.2337, 7.2332, 7.232, 7.24, 7.2427, 7.2414, 7.24, 7.24, 7.2389, 7.2413, 7.2411, 7.2399, 7.239, 7.2384, 7.2381, 7.2407, 7.24, 7.2387, 7.2373, 7.2362, 7.2351, 7.2343, 7.2332, 7.2324, 7.2317, 7.2304, 7.2292, 7.2287, 7.2327, 7.2315, 7.2341, 7.2332, 7.2322, 7.231, 7.2299, 7.2288, 7.2275, 7.2261, 7.2249, 7.2239, 7.2262, 7.2249, 7.2239, 7.2226, 7.2223, 7.2214, 7.2207, 7.2197, 7.2192, 7.2181, 7.2169, 7.2163, 7.2154, 7.2179, 7.2167, 7.2159, 7.216900000000001, 7.2128, 7.2122, 7.2112, 7.2107, 7.2097, 7.2123, 7.2147, 7.2135, 7.2134, 7.2121, 7.2182, 7.2174, 7.2168, 7.2193, 7.2194, 7.2184, 7.2209, 7.2203, 7.2192, 7.2225, 7.2219, 7.2208, 7.2197, 7.2186, 7.2176, 7.2217, 7.2214, 7.2173, 7.2198, 7.2225, 7.2218, 7.221, 7.2212, 7.2237, 7.223, 7.2259, 7.2255, 7.228, 7.2308, 7.2336, 7.2329, 7.2318, 7.2313, 7.2307, 7.2302, 7.2292, 7.2317, 7.2348, 7.2377, 7.2368, 7.2395, 7.2387, 7.2377, 7.2369, 7.2364, 7.2355, 7.2353, 7.2347, 7.2337, 7.2327, 7.2317, 7.231, 7.2338, 7.2335, 7.2323, 7.2356, 7.2349, 7.2349, 7.2336, 7.233, 7.2318, 7.2339, 7.2328, 7.2318, 7.2411, 7.2399, 7.2388, 7.2379, 7.2369, 7.2358, 7.2392, 7.2381, 7.2399, 7.2425, 7.242, 7.2445, 7.2468, 7.2456, 7.2444, 7.2435, 7.2422, 7.241, 7.2409, 7.2399, 7.2387, 7.2383, 7.2372, 7.2359, 7.235, 7.2343, 7.2337, 7.2334, 7.2329, 7.2316, 7.2305, 7.2296, 7.2293, 7.2286, 7.2275, 7.2264, 7.2256, 7.225, 7.2244, 7.2236, 7.2229, 7.2224, 7.2213, 7.2202, 7.2189, 7.2178, 7.2167, 7.2157, 7.215, 7.2138, 7.2162, 7.2151, 7.215, 7.2145, 7.2144, 7.2136, 7.2127, 7.2118, 7.2111, 7.2134, 7.2123, 7.2111, 7.21, 7.2125, 7.2114, 7.2109, 7.211, 7.2101, 7.2092, 7.208, 7.2071, 7.2066, 7.2064, 7.2053, 7.2048, 7.2073, 7.2067, 7.2056, 7.2082, 7.2128, 7.2119, 7.2129, 7.2123, 7.2115, 7.2159, 7.2151, 7.2223, 7.2247, 7.2243, 7.2235, 7.2224, 7.2244, 7.2232, 7.229, 7.2284, 7.2275, 7.2267, 7.2255, 7.2244, 7.2273, 7.23, 7.2293, 7.2282, 7.2271, 7.2264, 7.2318, 7.2307, 7.2296, 7.2291, 7.228, 7.2268, 7.2258, 7.2249, 7.224, 7.2233, 7.2257, 7.2255, 7.2248, 7.2236, 7.2225, 7.2224, 7.222, 7.221, 7.2201, 7.2191, 7.2181, 7.2174, 7.2167, 7.2162, 7.2187, 7.2181, 7.2174, 7.2169, 7.2159, 7.2148, 7.2138, 7.2134, 7.2158, 7.2148, 7.211, 7.21, 7.2141, 7.2201, 7.2189, 7.2179, 7.2179, 7.2172, 7.2167, 7.2252, 7.2244, 7.2239, 7.2298, 7.2287, 7.2289, 7.2285, 7.2282, 7.2275, 7.2265, 7.2255, 7.2244, 7.2241, 7.2255, 7.2246, 7.2247, 7.2241, 7.2239, 7.2263, 7.2253, 7.2272, 7.2296, 7.2287, 7.2276, 7.227, 7.2292, 7.2286, 7.2275, 7.2267, 7.2292, 7.2319, 7.2308, 7.23, 7.2332, 7.2361, 7.2356, 7.2355, 7.2347, 7.2348, 7.2346, 7.2338, 7.2327, 7.2356, 7.2349, 7.2342, 7.2332, 7.2323, 7.2314, 7.2341, 7.2349, 7.2339, 7.2368, 7.2369, 7.2367, 7.236, 7.2352, 7.2344, 7.2338, 7.2361, 7.2358, 7.2353, 7.2346, 7.2344, 7.2339, 7.2365, 7.2356, 7.2346, 7.2343, 7.2334, 7.2356, 7.2377, 7.2366, 7.2363, 7.2352, 7.2348, 7.234, 7.2331, 7.2328, 7.2317, 7.2339, 7.2328, 7.2324, 7.2312, 7.2304, 7.2295, 7.2285, 7.2276, 7.2269, 7.2259, 7.2254, 7.2337, 7.2327, 7.2319, 7.231, 7.2305, 7.2329, 7.2323, 7.232, 7.2316, 7.2307, 7.2296, 7.2317, 7.2309, 7.2301, 7.2311000000000005, 7.232100000000001, 7.2316, 7.2307, 7.2302, 7.2297, 7.232, 7.231, 7.2307, 7.236, 7.2351, 7.2341, 7.2336, 7.2326, 7.2317, 7.2319, 7.2314, 7.2339, 7.2336, 7.2328, 7.232, 7.2312, 7.2306, 7.2298, 7.2292, 7.2283, 7.2273, 7.2296, 7.2288, 7.2285, 7.2305, 7.2298, 7.2321, 7.2314, 7.2307, 7.23, 7.2322, 7.2316, 7.2307, 7.2299, 7.23, 7.2293, 7.2285, 7.2276, 7.2267, 7.2288, 7.2281, 7.2277, 7.2274, 7.2264, 7.2263, 7.2254, 7.2245, 7.2236, 7.2258, 7.225, 7.2247, 7.2246, 7.2247, 7.23, 7.2355, 7.2348, 7.2398, 7.239, 7.2382, 7.238, 7.2371, 7.2419, 7.2408, 7.24, 7.2419, 7.2413, 7.2403, 7.2396, 7.2389, 7.2381, 7.2372, 7.2365, 7.2362, 7.2354, 7.2346, 7.2341, 7.2331, 7.2322, 7.2317, 7.2307, 7.2298, 7.229, 7.2283, 7.2275, 7.2264, 7.2261, 7.2255, 7.2254, 7.2276, 7.2327, 7.2346, 7.2424, 7.2418, 7.2414, 7.2403, 7.2396, 7.2417, 7.2411, 7.241, 7.2406, 7.2396, 7.2396, 7.2389, 7.2385, 7.2377, 7.237, 7.2364, 7.2356, 7.2378, 7.2368, 7.236, 7.2379, 7.2369, 7.2359, 7.2384, 7.2376, 7.237, 7.2364, 7.2361, 7.2357, 7.2389, 7.238, 7.2375, 7.2367, 7.2361, 7.2352, 7.2379, 7.2371, 7.2374, 7.2372, 7.2394, 7.2386, 7.2378, 7.2401, 7.2393, 7.2391, 7.2362, 7.2359, 7.235, 7.2342, 7.2335, 7.2328, 7.232, 7.2319, 7.2298, 7.2293, 7.2299, 7.2293, 7.2287, 7.2277, 7.2275, 7.2321, 7.2319, 7.2314, 7.2304, 7.2302, 7.2349, 7.234, 7.2338, 7.2356, 7.235, 7.2341, 7.2336, 7.2327, 7.2322, 7.232, 7.2314, 7.2312, 7.2311, 7.2308, 7.2304, 7.2299, 7.2293, 7.2287, 7.228, 7.227, 7.2263, 7.2283, 7.2274, 7.2266, 7.226, 7.226, 7.2253, 7.2273, 7.2265, 7.2344, 7.2346, 7.2368, 7.2362, 7.2359, 7.2356, 7.2347, 7.2338, 7.2356, 7.2354, 7.2352, 7.2374, 7.2396, 7.2386, 7.2379, 7.2373, 7.2368, 7.236, 7.2353, 7.2347, 7.2365, 7.2358, 7.2349, 7.2369, 7.2387, 7.2382, 7.2375, 7.2366, 7.2357, 7.235, 7.2347, 7.2396, 7.2415, 7.2407, 7.2399, 7.2393, 7.2388, 7.2408, 7.243, 7.2478, 7.247, 7.2464, 7.2457, 7.2449, 7.2441, 7.2461, 7.2472, 7.2463, 7.2461, 7.2454, 7.2473, 7.2465, 7.2456, 7.2477, 7.2471, 7.2494, 7.2516, 7.2507, 7.2502, 7.2495, 7.2486, 7.2478, 7.2482, 7.2487, 7.2479, 7.2554, 7.2574, 7.2565, 7.2556, 7.2549, 7.2569, 7.2562, 7.2553, 7.2548, 7.2544, 7.2536, 7.2552, 7.2544, 7.2538, 7.253, 7.2522, 7.2513, 7.2531, 7.2522, 7.2515, 7.251, 7.2504, 7.2525, 7.2516, 7.2516, 7.2513, 7.253, 7.2525, 7.2522, 7.2516, 7.2513, 7.2504, 7.2496, 7.249, 7.2482, 7.2478, 7.247, 7.2463, 7.2455, 7.2448, 7.2465, 7.2457, 7.2472, 7.2466, 7.246, 7.2451, 7.2447, 7.2443, 7.246, 7.2454, 7.2449, 7.2441, 7.2432, 7.2423, 7.2415, 7.241, 7.2401, 7.2395, 7.2387, 7.2378, 7.2369, 7.236, 7.2352, 7.2348, 7.2365, 7.2357, 7.2348, 7.2339, 7.2331, 7.2323, 7.2314, 7.2306, 7.2299, 7.229, 7.2282, 7.2276, 7.2286, 7.2284, 7.2276, 7.2273, 7.2268, 7.2262, 7.2253, 7.225, 7.2243, 7.2285, 7.2278, 7.2271, 7.2264, 7.2274, 7.2266, 7.2264, 7.2281, 7.2276, 7.227, 7.229, 7.2284, 7.2305, 7.2326, 7.2317, 7.2315, 7.2309, 7.2303, 7.2299, 7.229, 7.2284, 7.2277, 7.227, 7.2268, 7.2263, 7.2257, 7.2277, 7.2271, 7.2263, 7.2257, 7.2252, 7.2244, 7.2262, 7.2279, 7.2297, 7.2294, 7.231, 7.2281, 7.225, 7.2242, 7.2233, 7.2229, 7.2226, 7.2242, 7.2234, 7.2227, 7.2219, 7.2216, 7.2245, 7.2255, 7.226500000000001, 7.2258, 7.225, 7.225, 7.228, 7.228, 7.2271, 7.2287, 7.2282, 7.2299, 7.2296, 7.2313, 7.2307, 7.2301, 7.2293, 7.230300000000001, 7.2318, 7.2314, 7.2306, 7.2323, 7.2316, 7.2312, 7.2304, 7.2345, 7.234, 7.2336, 7.2328, 7.232, 7.2336, 7.2327, 7.2321, 7.2341, 7.2334, 7.2327, 7.2346, 7.2339, 7.2334, 7.2331, 7.233, 7.2324, 7.232, 7.2323, 7.2315, 7.2306, 7.2298, 7.2314, 7.2307, 7.2301, 7.2299, 7.2296, 7.229, 7.2283, 7.228, 7.2274, 7.2267, 7.2261, 7.2253, 7.2245, 7.226, 7.2254, 7.2247, 7.2264, 7.226, 7.2276, 7.2293, 7.2286, 7.2284, 7.228, 7.2273, 7.2267, 7.2262, 7.2258, 7.2252, 7.2249, 7.2247, 7.2242, 7.2238, 7.2232, 7.2251, 7.2248, 7.224, 7.2237, 7.2233, 7.225, 7.2242, 7.2237, 7.2229, 7.2222, 7.2214, 7.2207, 7.2201, 7.2193, 7.2209, 7.2203, 7.2195, 7.2189, 7.2206, 7.2222, 7.2218, 7.2241, 7.2233, 7.225, 7.2242, 7.2239, 7.2236, 7.2229, 7.2221, 7.2237, 7.2234, 7.2251, 7.2247, 7.2239, 7.2253, 7.225, 7.2244, 7.2259, 7.2274, 7.2265, 7.2277, 7.2271, 7.2263, 7.2312, 7.2315, 7.2322, 7.2315, 7.2311, 7.2304, 7.2299, 7.2315, 7.2311, 7.2327, 7.2319, 7.2311, 7.2306, 7.2299, 7.2293, 7.2287, 7.2282, 7.2276, 7.2267, 7.2259, 7.2258, 7.2253, 7.2248, 7.2243, 7.2235, 7.2234, 7.225, 7.229, 7.23, 7.231000000000001, 7.232000000000001, 7.2317, 7.231, 7.2303, 7.2299, 7.2316, 7.2308, 7.2302, 7.2298, 7.229, 7.2283, 7.2279, 7.2274, 7.2275, 7.2272, 7.2269, 7.2263, 7.2264, 7.2258, 7.2254, 7.225, 7.2245, 7.2242, 7.2237, 7.2229, 7.2247, 7.2242, 7.2234, 7.2227, 7.2222, 7.2215, 7.2235, 7.2253, 7.225, 7.2245, 7.2238, 7.2232, 7.2246, 7.2262, 7.2255, 7.2282, 7.2311, 7.2353, 7.2367, 7.2359, 7.2356, 7.2349, 7.2359, 7.2355, 7.2349, 7.2341, 7.2335, 7.2327, 7.2342, 7.2335, 7.2336, 7.2331, 7.2323, 7.2339, 7.2334, 7.2348, 7.2364, 7.2361, 7.2353, 7.2345, 7.2337, 7.2352, 7.2347, 7.2341, 7.2335, 7.2329, 7.2323, 7.2317, 7.2315, 7.2309, 7.2306, 7.2303, 7.2317, 7.2314, 7.2311, 7.233, 7.2324, 7.2322, 7.2317, 7.2312, 7.2307, 7.2299, 7.2291, 7.234, 7.2335, 7.2333, 7.233, 7.2345, 7.234, 7.2334, 7.2331, 7.2331, 7.2323, 7.2339, 7.2339, 7.2331, 7.2326, 7.2321, 7.2316, 7.231, 7.2302, 7.2319, 7.232900000000001, 7.2346, 7.2341, 7.2345, 7.2339, 7.2334, 7.2328, 7.232, 7.2317, 7.2311, 7.2308, 7.2303, 7.2298, 7.2293, 7.2285, 7.2282, 7.228, 7.2279, 7.2272, 7.2288, 7.2287, 7.2279, 7.2275, 7.2272, 7.2286, 7.2282, 7.2275, 7.2269, 7.2266, 7.2259, 7.2257, 7.2254, 7.2249, 7.2264, 7.2256, 7.2251, 7.2245, 7.2261, 7.2258, 7.2274, 7.229, 7.2285, 7.228, 7.229, 7.23, 7.231000000000001, 7.2303, 7.2295, 7.2289, 7.2281, 7.2273, 7.2272, 7.2289, 7.2305, 7.2299, 7.2291, 7.2306, 7.2301, 7.2317, 7.2312, 7.2326, 7.2336, 7.2346, 7.2339, 7.2331, 7.2323, 7.2336, 7.233, 7.2326, 7.2302, 7.2317, 7.2327, 7.2319, 7.2313, 7.2356, 7.2348, 7.2364, 7.2362, 7.2355, 7.2371, 7.2384, 7.2384, 7.2379, 7.2394, 7.239, 7.2382, 7.2379, 7.2374, 7.2372, 7.2368, 7.2362, 7.2356, 7.235, 7.2343, 7.2336, 7.2329, 7.2324, 7.2318, 7.2314, 7.2311, 7.2306, 7.2305, 7.2304, 7.2297, 7.2292, 7.2287, 7.2323, 7.2316, 7.231, 7.2325, 7.2318, 7.2314, 7.2308, 7.2302, 7.2298, 7.2291, 7.2298, 7.2297, 7.229, 7.2288, 7.2281, 7.2278, 7.2273, 7.2291, 7.2285, 7.2281, 7.2295, 7.229, 7.2285, 7.2281, 7.2276, 7.2272, 7.2272, 7.2265, 7.226, 7.2263, 7.2278, 7.2276, 7.2271, 7.2267, 7.226, 7.2255, 7.225, 7.2244, 7.2292, 7.2272, 7.2266, 7.2267, 7.2262, 7.2256, 7.2251, 7.2245, 7.2238, 7.2253, 7.2249, 7.2242, 7.2239, 7.2233, 7.2247, 7.224, 7.2237, 7.2233, 7.2227, 7.222, 7.2217, 7.2214, 7.2213, 7.2209, 7.2203, 7.2196, 7.2193, 7.219, 7.2185, 7.2179, 7.2174, 7.2193, 7.2189, 7.2183, 7.2177, 7.2187, 7.2183, 7.2176, 7.2173, 7.2185, 7.2224, 7.2217, 7.2213, 7.2213, 7.2206, 7.2199, 7.2192, 7.2185, 7.218, 7.2174, 7.217, 7.2146, 7.216, 7.2154, 7.215, 7.2144, 7.2139, 7.2134, 7.213, 7.2174, 7.2173, 7.2166, 7.224, 7.2253, 7.2247, 7.2241, 7.2235, 7.2228, 7.2223, 7.2217, 7.2213, 7.2208, 7.2204, 7.2197, 7.2196, 7.2192, 7.2186, 7.2182, 7.2178, 7.2171, 7.2228, 7.2227, 7.2224, 7.2223, 7.2217, 7.225, 7.2299, 7.2295, 7.2292, 7.2307, 7.2301, 7.2298, 7.2293, 7.2318, 7.2315, 7.2419, 7.2434, 7.2431, 7.2446, 7.2444, 7.2438, 7.2431, 7.2426, 7.242, 7.2414, 7.2446, 7.2443, 7.242, 7.2454, 7.2472, 7.2468, 7.2466, 7.246, 7.2458, 7.2472, 7.2465, 7.2463, 7.2456, 7.2497, 7.2493, 7.2486, 7.2461, 7.2455, 7.2449, 7.2461, 7.2439, 7.2437, 7.2432, 7.2428, 7.2422, 7.2437, 7.2436, 7.2431, 7.2432, 7.2427, 7.2424, 7.2421, 7.2416, 7.2414, 7.2409, 7.2424, 7.2421, 7.2416, 7.2412, 7.241, 7.2406, 7.24, 7.2397, 7.2395, 7.2389, 7.2383, 7.238, 7.2395, 7.2389, 7.2386, 7.2398, 7.2391, 7.2385, 7.2379, 7.2379, 7.2388, 7.2383, 7.2378, 7.2373, 7.2366, 7.2361, 7.2375, 7.2368, 7.2384, 7.2383, 7.2397, 7.2392, 7.2388, 7.2381, 7.2375, 7.2372, 7.2386, 7.2398, 7.2391, 7.2389, 7.2386, 7.2381, 7.2378, 7.2374, 7.2371, 7.2385, 7.2378, 7.2371, 7.2364, 7.236, 7.236, 7.2353, 7.2353, 7.2347, 7.2342, 7.2339, 7.2334, 7.2331, 7.2343, 7.2342, 7.2341, 7.2337, 7.2332, 7.2328, 7.2327, 7.2325, 7.232, 7.2316, 7.2328, 7.2323, 7.2317, 7.2332, 7.233, 7.2325, 7.2323, 7.232, 7.2313, 7.2307, 7.2302, 7.2298, 7.2295, 7.2308, 7.2304, 7.2301, 7.2295, 7.2292, 7.2308, 7.2302, 7.2296, 7.2291, 7.2288, 7.2303, 7.2298, 7.2291, 7.2288, 7.2299, 7.2293, 7.229, 7.2283, 7.2276, 7.227, 7.2265, 7.2265, 7.2267, 7.2244, 7.2257, 7.2254, 7.2248, 7.2265, 7.2264, 7.226, 7.2257, 7.2252, 7.2265, 7.226, 7.2257, 7.2256, 7.2251, 7.2246, 7.224, 7.2234, 7.2247, 7.2242, 7.2237, 7.2231, 7.225, 7.2248, 7.2262, 7.2259, 7.2254, 7.2248, 7.2242, 7.2239, 7.2252, 7.2248, 7.2241, 7.2254, 7.2267, 7.2265, 7.2278, 7.2271, 7.2267, 7.2263, 7.2277, 7.2256, 7.2269, 7.2267, 7.2281, 7.2275, 7.2268, 7.2283, 7.228, 7.2277, 7.2273, 7.2271, 7.2284, 7.2297, 7.229, 7.2284, 7.2282, 7.2295, 7.229, 7.2287, 7.2282, 7.2277, 7.2278, 7.2273, 7.2267, 7.2283, 7.2295, 7.229, 7.2303, 7.2316, 7.2313, 7.2309, 7.2322, 7.2335, 7.233, 7.2324, 7.2319, 7.2333, 7.2335, 7.2329, 7.2324, 7.2338, 7.2335, 7.233, 7.2324, 7.2322, 7.2336, 7.2334, 7.2347, 7.2328, 7.2326, 7.2324, 7.2319, 7.2313, 7.2308, 7.2306, 7.2327, 7.2323, 7.2319, 7.2332, 7.2326, 7.2319, 7.2333, 7.2345, 7.2339, 7.2333, 7.2328, 7.2324, 7.2318, 7.2316, 7.2312, 7.2307, 7.2306, 7.2303, 7.2299, 7.2311, 7.2326, 7.2324, 7.2323, 7.2317, 7.2314, 7.2312, 7.229, 7.2303, 7.2298, 7.2314, 7.231, 7.2304, 7.2298, 7.2293, 7.2307, 7.2304, 7.2317, 7.2312, 7.2307, 7.2301, 7.2298, 7.2293, 7.2274, 7.2272, 7.2267, 7.2261, 7.2256, 7.225, 7.2245, 7.226, 7.2253, 7.2249, 7.2264, 7.2258, 7.2251, 7.2245, 7.2257, 7.2251, 7.2247, 7.2241, 7.2237, 7.2233, 7.2227, 7.2221, 7.2216, 7.2213, 7.2227, 7.2222, 7.2217, 7.223, 7.2228, 7.2241, 7.2236, 7.2233, 7.2229, 7.2226, 7.222, 7.2214, 7.2208, 7.2204, 7.22, 7.2194, 7.2191, 7.2185, 7.2179, 7.2182, 7.2175, 7.2187, 7.2182, 7.2194, 7.2188, 7.2202, 7.2214, 7.2212, 7.2242, 7.2239, 7.2252, 7.2297, 7.2292, 7.2289, 7.2287, 7.2282, 7.2276, 7.2274, 7.2269, 7.2263, 7.2257, 7.2252, 7.2248, 7.2242, 7.2237, 7.2236, 7.2231, 7.2227, 7.222, 7.223000000000001, 7.224000000000001, 7.2252, 7.2248, 7.2244, 7.2238, 7.2234, 7.2247, 7.2241, 7.2253, 7.2251, 7.2249, 7.2242, 7.2237, 7.2235, 7.2231, 7.2226, 7.2222, 7.2218, 7.2214, 7.2209, 7.2204, 7.22, 7.2197, 7.2192, 7.219, 7.2184, 7.2181, 7.2177, 7.2172, 7.2167, 7.2162, 7.2157, 7.2152, 7.2164, 7.2161, 7.2158, 7.2153, 7.215, 7.2144, 7.2141, 7.2154, 7.2149, 7.2143, 7.2138, 7.2149, 7.2159, 7.2172, 7.2169, 7.2165, 7.2177, 7.2174, 7.2181, 7.2177, 7.2171, 7.2169, 7.2183, 7.2205, 7.2211, 7.2223, 7.2222, 7.2218, 7.2216, 7.2213, 7.2214, 7.2211, 7.2205, 7.2199, 7.2212, 7.2207, 7.2219, 7.2213, 7.2208, 7.2203, 7.2201, 7.2195, 7.2205, 7.221500000000001, 7.2228, 7.2222, 7.2216, 7.2228, 7.2223, 7.2217, 7.2211, 7.2224, 7.2218, 7.2215, 7.2212, 7.2224, 7.2218, 7.2216, 7.2214, 7.2226, 7.2221, 7.2217, 7.2234, 7.2246, 7.2242, 7.2236, 7.223, 7.2225, 7.2237, 7.2248, 7.226, 7.2254, 7.225, 7.2245, 7.2242, 7.2238, 7.2233, 7.2228, 7.2239, 7.2252, 7.2246, 7.2242, 7.2236, 7.223, 7.2253, 7.2252, 7.2247, 7.2242, 7.2237, 7.2249, 7.2262, 7.2256, 7.2263, 7.2258, 7.2253, 7.2251, 7.225, 7.2245, 7.224, 7.2239, 7.2236, 7.2232, 7.2229, 7.2224, 7.2219, 7.2214, 7.2227, 7.2222, 7.2219, 7.2232, 7.2243, 7.2237, 7.2233, 7.2228, 7.2229, 7.223, 7.2252, 7.2248, 7.2245, 7.2257, 7.2269, 7.2282, 7.2276, 7.2289, 7.2347, 7.2359, 7.2354, 7.2351, 7.2348, 7.2345, 7.234, 7.2337, 7.2331, 7.2359, 7.2382, 7.2377, 7.2372, 7.2399, 7.2396, 7.2393, 7.2375, 7.2355, 7.2335, 7.2347, 7.2342, 7.2336, 7.2331, 7.2325, 7.2319, 7.2317, 7.2313, 7.2343, 7.234, 7.2336, 7.2335, 7.2332, 7.2326, 7.2322, 7.2316, 7.231, 7.2322, 7.2316, 7.2328, 7.2327, 7.2339, 7.2333, 7.2328, 7.2323, 7.2319, 7.2315, 7.2353, 7.2351, 7.235, 7.2345, 7.2341, 7.2339, 7.2334, 7.2333, 7.2328, 7.2323, 7.2317, 7.2328, 7.2323, 7.232, 7.23, 7.2298, 7.2292, 7.2287, 7.2285, 7.2283, 7.2281, 7.2278, 7.2274, 7.227, 7.2266, 7.2256, 7.2251, 7.2248, 7.2244, 7.2242, 7.2237, 7.2249, 7.2244, 7.2239, 7.2236, 7.223, 7.2245, 7.2242, 7.2237, 7.2233, 7.2237, 7.2233, 7.2232, 7.2229, 7.2224, 7.2234, 7.2234, 7.223, 7.2225, 7.2221, 7.2215, 7.221, 7.2209, 7.2204, 7.2201, 7.2197, 7.221, 7.2204, 7.2202, 7.2214, 7.2213, 7.2208, 7.2202, 7.2215, 7.221, 7.2204, 7.2216, 7.221, 7.2207, 7.2219, 7.2216, 7.223, 7.2228, 7.2224, 7.2235, 7.2231, 7.2225, 7.2219, 7.2213, 7.2215, 7.2228, 7.2224, 7.2218, 7.2214, 7.2195, 7.2179, 7.2176, 7.2175, 7.2171, 7.2167, 7.2161, 7.2175, 7.2172, 7.217, 7.2166, 7.2163, 7.2159, 7.2156, 7.2152, 7.215, 7.2163, 7.2162, 7.2158, 7.2154, 7.2149, 7.2145, 7.2143, 7.2142, 7.2152, 7.2146, 7.2143, 7.2138, 7.2134, 7.2131, 7.2128, 7.2126, 7.2123, 7.2122, 7.2135, 7.2131, 7.2127, 7.2123, 7.212, 7.2118, 7.2114, 7.211, 7.2109, 7.2106, 7.2101, 7.2101, 7.2107, 7.2105, 7.2103, 7.2098, 7.2112, 7.2115, 7.2126, 7.2122, 7.2117, 7.2112, 7.2108, 7.2103, 7.2113, 7.2107, 7.2103, 7.2113, 7.2108, 7.2103, 7.2098, 7.2108, 7.2117, 7.2112, 7.2123, 7.2118, 7.2114, 7.211, 7.2107, 7.2106, 7.21, 7.2112, 7.2107, 7.2102, 7.2097, 7.2091, 7.2086, 7.208, 7.2076, 7.2073, 7.207, 7.2067, 7.2066, 7.2062, 7.2058, 7.2054, 7.205, 7.2045, 7.2039, 7.2034, 7.2032, 7.204, 7.2035, 7.2045, 7.2041, 7.2039, 7.2037, 7.2034, 7.2029, 7.2025, 7.2036, 7.2031, 7.2043, 7.2055, 7.2053, 7.206300000000001, 7.2059, 7.2071, 7.2131, 7.213, 7.2127, 7.2123, 7.2121, 7.2116, 7.2111, 7.2105, 7.2103, 7.2098, 7.2094, 7.2089, 7.2084, 7.208, 7.2077, 7.2075, 7.2072, 7.2068, 7.2068, 7.2066, 7.2061, 7.207, 7.2067, 7.2068, 7.2067, 7.2067, 7.2066, 7.2076, 7.2073, 7.207, 7.2081, 7.208, 7.2076, 7.208600000000001, 7.2082, 7.2094, 7.2093, 7.2091, 7.2088, 7.2098, 7.2109, 7.2105, 7.2116, 7.2127, 7.2123, 7.2119, 7.2129, 7.2125, 7.2121, 7.213100000000001, 7.214100000000001, 7.215100000000001, 7.2146, 7.2142, 7.2158, 7.2158, 7.2143, 7.2139, 7.2134, 7.2147, 7.2158, 7.2153, 7.2151, 7.2147, 7.2143, 7.2139, 7.2136, 7.2146, 7.2156, 7.2156, 7.2166, 7.2176, 7.2173, 7.2171, 7.2168, 7.2164, 7.2162, 7.2159, 7.217, 7.2166, 7.2187, 7.2215, 7.2227, 7.2223, 7.2221, 7.2217, 7.2215, 7.221, 7.2205, 7.2202, 7.2201, 7.2197, 7.2192, 7.219, 7.2185, 7.2183, 7.2184, 7.218, 7.2183, 7.2178, 7.2181, 7.2177, 7.2172, 7.2168, 7.2162, 7.2173, 7.2173, 7.2168, 7.2179, 7.219, 7.2186, 7.2184, 7.2195, 7.2221, 7.2232, 7.2227, 7.2238, 7.2236, 7.2233, 7.2244, 7.2276, 7.2288, 7.2283, 7.2284, 7.228, 7.2277, 7.2278, 7.229, 7.2285, 7.2283, 7.2284, 7.2279, 7.2277, 7.2289, 7.2301, 7.2297, 7.2291, 7.2285, 7.2281, 7.2277, 7.2272, 7.2267, 7.2268, 7.2264, 7.2259, 7.227, 7.2265, 7.2277, 7.2288, 7.2283, 7.2279, 7.2274, 7.2269, 7.2265, 7.226, 7.2261, 7.2273, 7.2269, 7.2295, 7.2291, 7.2287, 7.2298, 7.2293, 7.2303, 7.2299, 7.2295, 7.2291, 7.2287, 7.2282, 7.2279, 7.2276, 7.2272, 7.2267, 7.2262, 7.2262, 7.2259, 7.2268, 7.2266, 7.2261, 7.226, 7.2257, 7.2251, 7.2246, 7.2243, 7.2241, 7.2236, 7.225, 7.2247, 7.2242, 7.2241, 7.2236, 7.2234, 7.2229, 7.2228, 7.2237, 7.2233, 7.2231, 7.2227, 7.2222, 7.2233, 7.2243, 7.2241, 7.2236, 7.2249, 7.2247, 7.2245, 7.2241, 7.2251, 7.2266, 7.2262, 7.2257, 7.2252, 7.2262, 7.2257, 7.2252, 7.2262, 7.2258, 7.2269, 7.2266, 7.2248, 7.2244, 7.224, 7.2235, 7.223, 7.224, 7.2235, 7.2231, 7.2228, 7.2227, 7.2224, 7.2236, 7.2231, 7.223, 7.224, 7.2235, 7.223, 7.2227, 7.2225, 7.2221, 7.2217, 7.2225, 7.2235, 7.2233, 7.2243, 7.2238, 7.2235, 7.2231, 7.2227, 7.2222, 7.2221, 7.2215, 7.2212, 7.2207, 7.222, 7.2217, 7.2212, 7.2209, 7.2204, 7.2199, 7.2194, 7.2191, 7.2188, 7.2184, 7.2181, 7.2191, 7.219, 7.2186, 7.2182, 7.2177, 7.2173, 7.2183, 7.2194, 7.2189, 7.2184, 7.2196, 7.2198, 7.2196, 7.2206, 7.2202, 7.2198, 7.2194, 7.2189, 7.2199, 7.2195, 7.2207, 7.2204, 7.2201, 7.2197, 7.2208, 7.2206, 7.2206, 7.2202, 7.2212000000000005, 7.2223, 7.2233, 7.2243, 7.2252, 7.2247, 7.2246, 7.2248, 7.2246, 7.2241, 7.2237, 7.2235, 7.2231, 7.223, 7.2226, 7.2223, 7.2219, 7.2218, 7.2227, 7.2222, 7.2218, 7.2218, 7.2215, 7.2211, 7.2222, 7.2218, 7.2213, 7.2209, 7.2206, 7.2204, 7.2201, 7.2197, 7.2207, 7.2203, 7.2198, 7.2209, 7.2208, 7.2219, 7.2228, 7.2239, 7.2249, 7.2244, 7.2242, 7.2237, 7.2232, 7.2243, 7.2241, 7.2252, 7.2248, 7.225, 7.2245, 7.2242, 7.2238, 7.2233, 7.223, 7.2225, 7.2238, 7.225, 7.2246, 7.2242, 7.2237, 7.2233, 7.223, 7.2227, 7.2236, 7.2246, 7.2244, 7.224, 7.2236, 7.2233, 7.2228, 7.2225, 7.2222, 7.2234, 7.2229, 7.2226, 7.2222, 7.222, 7.2215, 7.2215, 7.2212, 7.2208, 7.2203, 7.2187, 7.2185, 7.218, 7.2176, 7.2172, 7.2196, 7.2192, 7.2205, 7.2205, 7.2201, 7.2198, 7.2194, 7.2194, 7.2204, 7.2203, 7.2214, 7.221, 7.2206, 7.2202, 7.2197, 7.221, 7.2207, 7.2205, 7.2202, 7.2198, 7.2193, 7.2192, 7.2187, 7.2184, 7.2195, 7.2208, 7.2205, 7.2204, 7.22, 7.2225, 7.2223, 7.2221, 7.2218, 7.2215, 7.221, 7.2206, 7.2204, 7.22, 7.2199, 7.2194, 7.219, 7.2187, 7.2184, 7.2181, 7.2192, 7.2189, 7.2187, 7.2185, 7.218, 7.2179, 7.2175, 7.2171, 7.2167, 7.2163, 7.2161, 7.2157, 7.2166, 7.2162, 7.2157, 7.2153, 7.2163, 7.2159, 7.2155, 7.2166, 7.2176, 7.2187, 7.2184, 7.2195, 7.2217, 7.2215, 7.2211, 7.2206, 7.2203, 7.2201, 7.2197, 7.2193, 7.2193, 7.2207, 7.2203, 7.2201, 7.2197, 7.2192, 7.2187, 7.2183, 7.2169, 7.2165, 7.2162, 7.2157, 7.2154, 7.2152, 7.2148, 7.2156, 7.2151, 7.2147, 7.2145, 7.2142, 7.2151, 7.2161, 7.2158, 7.2169, 7.2166, 7.2162, 7.2173, 7.2159, 7.2154, 7.2152, 7.2161, 7.2156, 7.2166, 7.2162, 7.2157, 7.2153, 7.215, 7.2146, 7.2143, 7.2153, 7.2149, 7.2148, 7.2144, 7.2155, 7.215, 7.2146, 7.2156, 7.2167, 7.2164, 7.2203, 7.2199, 7.2209, 7.2205, 7.2201, 7.221, 7.2237, 7.2235, 7.2231, 7.2227, 7.2222, 7.2219, 7.2218, 7.2229, 7.2227, 7.2225, 7.222, 7.2215, 7.2211, 7.2206, 7.2201, 7.2197, 7.2206, 7.2189, 7.2185, 7.218, 7.2175, 7.2171, 7.2166, 7.2189, 7.2185, 7.2196, 7.2209, 7.2207, 7.2203, 7.22, 7.2195, 7.2191, 7.2187, 7.2184, 7.2181, 7.2177, 7.2187, 7.2196, 7.2181, 7.2179, 7.2175, 7.2187, 7.2184, 7.2168, 7.2166, 7.2164, 7.2161, 7.2157, 7.2167, 7.2178, 7.2173, 7.2158, 7.2168, 7.2166, 7.2175, 7.2172, 7.2183, 7.2181, 7.2178, 7.2175, 7.2186, 7.2183, 7.218, 7.2177, 7.2174, 7.2172, 7.217, 7.2166, 7.2163, 7.216, 7.2156, 7.2167, 7.2167, 7.2166, 7.2175, 7.217, 7.2168, 7.2166, 7.2175, 7.2173, 7.2175, 7.2171, 7.2182, 7.22, 7.2196, 7.2207, 7.2203, 7.2201, 7.2197, 7.2193, 7.2191, 7.2188, 7.2184, 7.2181, 7.2205, 7.2203, 7.2199, 7.2209, 7.2207, 7.2217, 7.2215, 7.2214, 7.2211, 7.2209, 7.2204, 7.22, 7.2196, 7.2192, 7.2215, 7.2211, 7.2208, 7.2204, 7.2199, 7.2196, 7.2192, 7.2188, 7.2187, 7.2183, 7.2182, 7.2177, 7.2174, 7.2172, 7.218, 7.2176, 7.2172, 7.217, 7.2167, 7.2162, 7.217, 7.2166, 7.2163, 7.2161, 7.216, 7.2158, 7.2153, 7.2153, 7.2163, 7.2174, 7.2172, 7.2168, 7.2165, 7.2162, 7.2158, 7.2156, 7.2154, 7.2152, 7.2136, 7.2123, 7.214, 7.215000000000001, 7.2149, 7.2158, 7.2157, 7.2154, 7.215, 7.2146, 7.2143, 7.2152, 7.2151, 7.2151, 7.2147, 7.2143, 7.214, 7.2136, 7.2134, 7.2169, 7.2167, 7.2163, 7.2162, 7.2174, 7.2173, 7.2182, 7.2193, 7.2204, 7.22, 7.2195, 7.2191, 7.2189, 7.2187, 7.2198, 7.2196, 7.2192, 7.2188, 7.2197, 7.2192, 7.2178, 7.2176, 7.2174, 7.2173, 7.2169, 7.2168, 7.2165, 7.2161, 7.2172, 7.2169, 7.2171, 7.2167, 7.2167, 7.2164, 7.2162, 7.2159, 7.2155, 7.2151, 7.216, 7.2158, 7.2167, 7.217700000000001, 7.2174, 7.2172, 7.2181, 7.2191, 7.22, 7.2196, 7.2192, 7.219, 7.2187, 7.2184, 7.2181, 7.2191, 7.2188, 7.2184, 7.2183, 7.2168, 7.2154, 7.2141, 7.2138, 7.2135, 7.2132, 7.2129, 7.214, 7.2144, 7.2141, 7.2138, 7.2177, 7.2174, 7.2174, 7.2175, 7.216, 7.2156, 7.2152, 7.215, 7.2146, 7.2146, 7.2154, 7.2152, 7.2162, 7.2158, 7.2154, 7.215, 7.2137, 7.2136, 7.2145, 7.2155, 7.2154, 7.2139, 7.2126, 7.2123, 7.2121, 7.2122, 7.2119, 7.2117, 7.2113, 7.2122, 7.2118, 7.2116, 7.2112, 7.211, 7.2119, 7.2119, 7.2118, 7.2114, 7.2111, 7.2107, 7.2117, 7.2113, 7.2111, 7.2108, 7.2104, 7.2102, 7.2098, 7.2094, 7.2092, 7.2088, 7.2099, 7.2095, 7.2107, 7.2104, 7.2101, 7.2099, 7.2099, 7.2096, 7.2093, 7.2089, 7.2087, 7.2085, 7.2083, 7.2093, 7.2091, 7.2093, 7.2107, 7.2103, 7.2099, 7.2096, 7.2082, 7.2081, 7.2079, 7.2087, 7.2085, 7.2081, 7.2088, 7.2085, 7.2094, 7.209, 7.2087, 7.2083, 7.2079, 7.2075, 7.2072, 7.2069, 7.2066, 7.2063, 7.206, 7.2059, 7.2056, 7.2065, 7.2062, 7.206, 7.2057, 7.2123, 7.212, 7.2116, 7.2113, 7.2111, 7.2112, 7.2108, 7.2106, 7.2104, 7.2112, 7.2109, 7.2105, 7.2102, 7.2098, 7.2128, 7.2126, 7.2121, 7.2131, 7.2128, 7.2125, 7.2122, 7.212, 7.2117, 7.2114, 7.2112, 7.2109, 7.2106, 7.2115, 7.2111, 7.2107, 7.2103, 7.2099, 7.2109, 7.2106, 7.211600000000001, 7.2114, 7.2113, 7.2109, 7.2117, 7.2113, 7.2109, 7.2095, 7.2083, 7.2079, 7.2077, 7.2073, 7.2069, 7.2065, 7.2061, 7.206, 7.2069, 7.2068, 7.2064, 7.2061, 7.2059, 7.2058, 7.2055, 7.2052, 7.2061, 7.2058, 7.2059, 7.2056, 7.2066, 7.2063, 7.2059, 7.2046, 7.2045, 7.2054, 7.2064, 7.2074, 7.2086, 7.2085, 7.2083, 7.2079, 7.2077, 7.2075, 7.2073, 7.2069, 7.2078, 7.2074, 7.207, 7.2079, 7.2075, 7.2061, 7.206, 7.2059, 7.2069, 7.2065, 7.2062, 7.206, 7.2079, 7.2077, 7.2085, 7.2082, 7.208, 7.2089, 7.2085, 7.2082, 7.208, 7.2077, 7.2073, 7.2069, 7.2065, 7.2062, 7.2058, 7.2054, 7.2051, 7.2059, 7.2055, 7.2054, 7.2051, 7.2048, 7.2057, 7.2055, 7.2053, 7.2051, 7.2049, 7.2072, 7.2068, 7.2065, 7.2063, 7.2059, 7.2055, 7.2055, 7.2051, 7.2049, 7.2048, 7.2048, 7.2048, 7.2045, 7.2042, 7.2079, 7.2089, 7.2086, 7.2083, 7.2079, 7.2082, 7.2081, 7.2078, 7.2075, 7.2072, 7.2082, 7.2081, 7.2083, 7.208, 7.2077, 7.2086, 7.2095, 7.2094, 7.2091, 7.2101, 7.21, 7.2097, 7.2094, 7.2091, 7.2088, 7.2085, 7.2082, 7.2081, 7.2077, 7.2074, 7.2061, 7.2058, 7.2068, 7.2065, 7.2076, 7.2074, 7.2072, 7.2081, 7.2079, 7.2076, 7.208600000000001, 7.2072, 7.2092, 7.2089, 7.2086, 7.2094, 7.2103, 7.2113000000000005, 7.211, 7.2107, 7.2104, 7.21, 7.2096, 7.2093, 7.209, 7.2099, 7.2098, 7.2095, 7.2093, 7.2101, 7.211, 7.2107, 7.2103, 7.2103, 7.2099, 7.2097, 7.2093, 7.209, 7.2087, 7.209700000000001, 7.210700000000001, 7.2103, 7.2102, 7.2099, 7.2095, 7.2092, 7.2093, 7.2089, 7.2099, 7.2108, 7.2104, 7.2103, 7.2099, 7.2096, 7.2093, 7.2089, 7.2085, 7.2094, 7.2083, 7.208, 7.2077, 7.2074, 7.2071, 7.2081, 7.2091, 7.210100000000001, 7.211100000000001, 7.2109, 7.2105, 7.2105, 7.2103, 7.21, 7.2109, 7.2107, 7.2103, 7.2099, 7.2107, 7.2103, 7.2099, 7.2096, 7.2104, 7.2102, 7.211, 7.2107, 7.2103, 7.2099, 7.2095, 7.2093, 7.2091, 7.2088, 7.2086, 7.2083, 7.2079, 7.2076, 7.2074, 7.2082, 7.2078, 7.2076, 7.2074, 7.207, 7.2066, 7.2063, 7.2073, 7.207, 7.2071, 7.2068, 7.2064, 7.2072, 7.2071, 7.2069, 7.2078, 7.2075, 7.2071, 7.208, 7.2077, 7.2074, 7.2071, 7.2069, 7.2068, 7.2067, 7.2075, 7.2072, 7.2069, 7.2066, 7.2064, 7.2073, 7.207, 7.2067, 7.2063, 7.2071, 7.2071, 7.207, 7.207, 7.207, 7.2067, 7.2064, 7.2063, 7.2061, 7.2058, 7.2055, 7.2052, 7.2062, 7.206, 7.2057, 7.2056, 7.2066, 7.2075, 7.2085, 7.2081, 7.2078, 7.2075, 7.2074, 7.2073, 7.207, 7.2066, 7.2062, 7.207, 7.2069, 7.2066, 7.2055, 7.2052, 7.2049, 7.2046, 7.2044, 7.204, 7.2036, 7.2024, 7.2035, 7.2031, 7.2027, 7.2023, 7.2021, 7.202, 7.2016, 7.2014, 7.2013, 7.201, 7.2006, 7.2004, 7.1991, 7.1987, 7.1988, 7.1985, 7.1982, 7.199, 7.1998, 7.1994, 7.1992, 7.200200000000001, 7.2023, 7.2031, 7.2027, 7.2023, 7.2031, 7.2028, 7.2024, 7.2023, 7.2021, 7.2017, 7.2025, 7.2032, 7.2029, 7.2025, 7.2021, 7.2018, 7.2014, 7.201, 7.2008, 7.2005, 7.2001, 7.2, 7.1998, 7.1997, 7.1995, 7.1992, 7.1997, 7.1994, 7.1995, 7.1994, 7.1993, 7.1991, 7.1989, 7.1986, 7.1984, 7.1992, 7.200200000000001, 7.1999, 7.1995, 7.1992, 7.2, 7.2007, 7.2005, 7.2003, 7.1999, 7.1996, 7.1993, 7.1989, 7.1986, 7.1985, 7.1983, 7.1979, 7.1975, 7.1983, 7.198, 7.1978, 7.1974, 7.1971, 7.1968, 7.1966, 7.1964, 7.1961, 7.1957, 7.1953, 7.1949, 7.1946, 7.1943, 7.194, 7.1938, 7.1936, 7.1934, 7.1931, 7.1939, 7.1935, 7.1946, 7.1955, 7.1953, 7.1951, 7.1948, 7.1944, 7.1942, 7.1942, 7.195, 7.1947, 7.1958, 7.1955, 7.1952, 7.1951, 7.1948, 7.1947, 7.1946, 7.1943, 7.1939, 7.1935, 7.1934, 7.1942, 7.1952, 7.1939, 7.1927, 7.1924, 7.1921, 7.193, 7.1927, 7.1935, 7.194500000000001, 7.1944, 7.194, 7.1938, 7.1938, 7.1934, 7.193, 7.1939, 7.1936, 7.1946, 7.195600000000001, 7.1952, 7.1961, 7.1959, 7.1956, 7.1953, 7.1961, 7.197, 7.1979, 7.1978, 7.1977, 7.1975, 7.1974, 7.1972, 7.1971, 7.196, 7.1957, 7.1957, 7.1956, 7.1954, 7.1951, 7.196, 7.1958, 7.1967, 7.1976, 7.1973, 7.197, 7.1979, 7.1976, 7.1976, 7.1963, 7.1961, 7.1958, 7.1955, 7.1952, 7.1953, 7.1949, 7.1959, 7.1969, 7.1979, 7.1976, 7.1974, 7.1971, 7.1979, 7.1986, 7.1982, 7.198, 7.1977, 7.1975, 7.1972, 7.197, 7.1966, 7.1964, 7.1961, 7.1957, 7.1954, 7.1951, 7.1949, 7.1946, 7.195600000000001, 7.1952, 7.1951, 7.1947, 7.1946, 7.1954, 7.1941, 7.1938, 7.1938, 7.1934, 7.1931, 7.1928, 7.1925, 7.1921, 7.192, 7.1917, 7.1905, 7.1902, 7.1899, 7.1895, 7.1892, 7.1902, 7.1898, 7.1896, 7.1894, 7.1891, 7.1889, 7.1889, 7.1885, 7.1881, 7.1877, 7.1875, 7.1884, 7.188, 7.1878, 7.1876, 7.1872, 7.1859, 7.1856, 7.1864, 7.186, 7.1857, 7.1845, 7.1844, 7.184, 7.185, 7.1858, 7.1855, 7.1864, 7.186, 7.1858, 7.1856, 7.1852, 7.1854, 7.1853, 7.1851, 7.1848, 7.1855, 7.1863, 7.1859, 7.1857, 7.1853, 7.185, 7.1847, 7.1845, 7.1843, 7.1839, 7.1835, 7.1831, 7.1829, 7.1825, 7.1822, 7.1819, 7.1817, 7.1814, 7.181, 7.182, 7.183000000000001, 7.184000000000001, 7.1836, 7.1825, 7.1825, 7.1832, 7.183, 7.1827, 7.1824, 7.1823, 7.182, 7.1816, 7.1825, 7.1823, 7.1821, 7.1818, 7.1826, 7.1823, 7.1821, 7.1829, 7.1838, 7.1846, 7.1842, 7.1839, 7.1847, 7.1844, 7.1841, 7.1848, 7.1846, 7.1853, 7.1861, 7.1857, 7.1856, 7.1853, 7.186, 7.1867, 7.1874, 7.1871, 7.1868, 7.1865, 7.1864, 7.1862, 7.1859, 7.1856, 7.1852, 7.1849, 7.1846, 7.1843, 7.1841, 7.1838, 7.1848, 7.1858, 7.1854, 7.1853, 7.185, 7.1846, 7.1854, 7.1852, 7.1849, 7.1846, 7.1843, 7.184, 7.1838, 7.1834, 7.1831, 7.1828, 7.1836, 7.1834, 7.1834, 7.1831, 7.1839, 7.1836, 7.1843, 7.1841, 7.1839, 7.1836, 7.1832, 7.1828, 7.1827, 7.1837, 7.1847, 7.1843, 7.184, 7.1864, 7.1862, 7.1859, 7.1889, 7.1885, 7.1883, 7.1889, 7.1887, 7.1883, 7.1879, 7.1876, 7.1872, 7.1869, 7.1876, 7.1874, 7.1872, 7.1871, 7.187, 7.1868, 7.1865, 7.1862, 7.1858, 7.1865, 7.1862, 7.187, 7.1868, 7.1866, 7.1874, 7.1871, 7.1869, 7.1866, 7.1863, 7.1888, 7.1886, 7.1895, 7.1892, 7.19, 7.1896, 7.1893, 7.1882, 7.189, 7.1897, 7.1904, 7.1901, 7.1899, 7.1899, 7.1896, 7.1943, 7.194, 7.195, 7.1983, 7.1982, 7.1989, 7.1988, 7.1987, 7.1984, 7.1983, 7.1981, 7.2002, 7.2001, 7.201, 7.2007, 7.2017, 7.2014, 7.2011, 7.2018, 7.2016, 7.2003, 7.2, 7.1997, 7.1995, 7.1995, 7.1992, 7.1989, 7.1987, 7.1976, 7.1976, 7.1985, 7.1982, 7.1978, 7.1977, 7.1966, 7.1964, 7.1954, 7.1954, 7.1954, 7.1952, 7.1948, 7.1946, 7.1942, 7.1939, 7.1938, 7.1939, 7.1927, 7.1923, 7.1921, 7.1917, 7.1904, 7.1902, 7.1902, 7.1902, 7.1898, 7.1895, 7.1892, 7.1892, 7.189, 7.19, 7.1909, 7.1906, 7.1904, 7.1903, 7.1921, 7.1932, 7.1921, 7.1919, 7.192900000000001, 7.193900000000001, 7.1936, 7.1933, 7.1941, 7.1951, 7.195, 7.1948, 7.1948, 7.1944, 7.194, 7.1938, 7.1934, 7.193, 7.1928, 7.1926, 7.1923, 7.1932, 7.194, 7.1937, 7.1934, 7.1944, 7.1954, 7.1962, 7.1963, 7.196, 7.1957, 7.1953, 7.1941, 7.1954, 7.1956, 7.1954, 7.196400000000001, 7.1961, 7.197100000000001, 7.1969, 7.1966, 7.1965, 7.1963, 7.1961, 7.1988, 7.1988, 7.1984, 7.1981, 7.1989, 7.1987, 7.1984, 7.1993, 7.1992, 7.1991, 7.1988, 7.1985, 7.1983, 7.1983, 7.1982, 7.1991, 7.1987, 7.1983, 7.198, 7.1988, 7.1985, 7.1983, 7.1981, 7.1979, 7.1976, 7.1983, 7.199, 7.1987, 7.1986, 7.1983, 7.1994, 7.1991, 7.1988, 7.1985, 7.1993, 7.1991, 7.1999, 7.1998, 7.1997, 7.1985, 7.1973, 7.1961, 7.195, 7.1957, 7.1953, 7.195, 7.1949, 7.1948, 7.1945, 7.1942, 7.1942, 7.1949, 7.1946, 7.1945, 7.1944, 7.1944, 7.1941, 7.1948, 7.1945, 7.1933, 7.193, 7.1937, 7.1934, 7.1933, 7.1932, 7.1929, 7.1927, 7.1924, 7.1931, 7.1929, 7.1926, 7.1924, 7.1925, 7.1922, 7.1929, 7.1926, 7.1933, 7.1931, 7.1929, 7.1937, 7.1935, 7.1932, 7.1931, 7.193, 7.1937, 7.1934, 7.1933, 7.1932, 7.193, 7.1928, 7.1925, 7.1923, 7.1922, 7.1931, 7.1939, 7.1945, 7.1941, 7.1937, 7.1935, 7.1931, 7.193, 7.1927, 7.1934, 7.1934, 7.1932, 7.1939, 7.1935, 7.1933, 7.193, 7.1927, 7.1924, 7.1923, 7.1911, 7.1908, 7.1907, 7.1904, 7.1902, 7.191, 7.1907, 7.1904, 7.1893, 7.1883, 7.1893, 7.189, 7.1887, 7.1884, 7.1884, 7.1894, 7.1902, 7.1903, 7.1892, 7.1889, 7.1888, 7.1887, 7.1896, 7.1898, 7.1897, 7.1907000000000005, 7.191700000000001, 7.1916, 7.1924, 7.1921, 7.1921, 7.192, 7.1917, 7.1915, 7.1912, 7.1909, 7.1908, 7.1905, 7.1903, 7.19, 7.1897, 7.1894, 7.1903, 7.191, 7.1919, 7.1927, 7.1924, 7.1934, 7.1932, 7.193, 7.1929, 7.1936, 7.1944, 7.1943, 7.1941, 7.1937, 7.1944, 7.1932, 7.1929, 7.1926, 7.1933, 7.194, 7.1937, 7.1934, 7.1932, 7.193, 7.1927, 7.1925, 7.1922, 7.192, 7.1909, 7.1906, 7.1903, 7.1901, 7.1899, 7.1897, 7.1904, 7.1904, 7.1901, 7.19, 7.1898, 7.1897, 7.1894, 7.1893, 7.189, 7.1887, 7.1885, 7.1882, 7.188, 7.1878, 7.1876, 7.1873, 7.188, 7.1877, 7.1865, 7.1863, 7.187, 7.1866, 7.1863, 7.1862, 7.1861, 7.1858, 7.186800000000001, 7.187800000000001, 7.1877, 7.1885, 7.1882, 7.1881, 7.189, 7.1891, 7.1889, 7.1891, 7.1889, 7.1902, 7.1902, 7.1898, 7.1904, 7.1902, 7.1899, 7.1896, 7.1894, 7.1892, 7.189, 7.1897, 7.1894, 7.1894, 7.1901, 7.1908, 7.1916, 7.1914, 7.1912, 7.1911, 7.191, 7.1907, 7.1895, 7.1902, 7.1912, 7.1919, 7.1916, 7.1914, 7.1911, 7.1908, 7.1923, 7.1922, 7.1929, 7.1917, 7.1916, 7.1913, 7.1912, 7.191, 7.1907, 7.1904, 7.1902, 7.19, 7.1897, 7.1904, 7.1903, 7.1949, 7.1966, 7.1954, 7.1961, 7.1958, 7.1955, 7.1954, 7.1952, 7.196, 7.1964, 7.1971, 7.197, 7.197, 7.1968, 7.1976, 7.1975, 7.1986, 7.1986, 7.1982, 7.1981, 7.1991, 7.1988, 7.1984, 7.1982, 7.198, 7.1979, 7.1978, 7.1975, 7.2008, 7.2007, 7.2006, 7.201, 7.2009, 7.2016, 7.2013, 7.2011, 7.2018, 7.2017, 7.2014, 7.201, 7.2008, 7.2006, 7.2013, 7.2021, 7.202, 7.2019, 7.2016, 7.2014, 7.2012, 7.2012, 7.2019, 7.2016, 7.2022, 7.202, 7.2026, 7.2024, 7.2032, 7.2029, 7.2036, 7.2043, 7.2053, 7.205, 7.2038, 7.2047, 7.2044, 7.2041, 7.2058, 7.2048, 7.2048, 7.2047, 7.2045, 7.2046, 7.2036, 7.2034, 7.2031, 7.2028, 7.2025, 7.2024, 7.2031, 7.2027, 7.2026, 7.2026, 7.2024, 7.2021, 7.2018, 7.2016, 7.2014, 7.2012, 7.2021, 7.202, 7.2021, 7.202, 7.2017, 7.2015, 7.2013, 7.201, 7.2007, 7.2005, 7.2005, 7.2003, 7.2001, 7.1991, 7.1989, 7.1987, 7.1984, 7.1982, 7.1989, 7.1986, 7.1985, 7.1981, 7.1981, 7.1977, 7.1974, 7.1974, 7.1981, 7.198, 7.1977, 7.1975, 7.1973, 7.1972, 7.1979, 7.1978, 7.1985, 7.1974, 7.1971, 7.1968, 7.1965, 7.1964, 7.1962, 7.1968, 7.1966, 7.1965, 7.1962, 7.1959, 7.1958, 7.1956, 7.1956, 7.1956, 7.1944, 7.1942, 7.1951, 7.195, 7.1948, 7.1947, 7.1945, 7.1946, 7.1934, 7.194, 7.1938, 7.1936, 7.1934, 7.1931, 7.1928, 7.1921, 7.1918, 7.1916, 7.1913, 7.191, 7.1907, 7.1914, 7.1913, 7.1903, 7.1903, 7.1901, 7.1898, 7.1896, 7.1895, 7.1903, 7.1905, 7.1894, 7.1891, 7.1897, 7.1895, 7.1894, 7.189, 7.1896, 7.1893, 7.1891, 7.1889, 7.1889, 7.1896, 7.1893, 7.1891, 7.1888, 7.1878, 7.1885, 7.1882, 7.1881, 7.1878, 7.1877, 7.1885, 7.1882, 7.1879, 7.1894, 7.19, 7.1898, 7.1899, 7.1905, 7.1911, 7.1909, 7.1908, 7.1915, 7.1923, 7.192, 7.1917, 7.1906, 7.1906, 7.1904, 7.1902, 7.1914, 7.1912, 7.1909, 7.193, 7.1928, 7.1926, 7.1926, 7.1925, 7.1923, 7.1921, 7.1919, 7.1917, 7.1924, 7.1922, 7.192, 7.1917, 7.1925, 7.1933, 7.1931, 7.1928, 7.1926, 7.1923, 7.192, 7.1919, 7.1928, 7.1936, 7.1933, 7.1932, 7.1929, 7.1927, 7.1926, 7.1925, 7.1923, 7.192, 7.192, 7.192, 7.1917, 7.1924, 7.1923, 7.1921, 7.1923, 7.192, 7.1919, 7.1917, 7.1919, 7.1927, 7.1934, 7.194, 7.1937, 7.1936, 7.1944, 7.1944, 7.1951, 7.1948, 7.1945, 7.1942, 7.1942, 7.1939, 7.1938, 7.1936, 7.1934, 7.1933, 7.194, 7.1937, 7.1937, 7.1936, 7.1944, 7.1941, 7.1938, 7.1935, 7.1933, 7.1933, 7.1939, 7.1938, 7.1936, 7.1933, 7.1939, 7.1937, 7.1935, 7.1925, 7.1924, 7.1923, 7.193, 7.1927, 7.1924, 7.193, 7.1927, 7.1924, 7.1921, 7.1928, 7.1925, 7.1932, 7.1931, 7.192, 7.1918, 7.1915, 7.1912, 7.192, 7.1918, 7.1958, 7.1955, 7.1959, 7.1956, 7.1963, 7.1952, 7.196, 7.1957, 7.1955, 7.1977, 7.1975, 7.1982, 7.198, 7.198, 7.1977, 7.1976, 7.1982, 7.1988, 7.1985, 7.1982, 7.1979, 7.1978, 7.1976, 7.1973, 7.1962, 7.1962, 7.1959, 7.1956, 7.1954, 7.1961, 7.1959, 7.1956, 7.1953, 7.1951, 7.1957, 7.1957, 7.1957, 7.1957, 7.1954, 7.1962, 7.1963, 7.1971, 7.1978, 7.1986, 7.1984, 7.1991, 7.1989, 7.1986, 7.1984, 7.1973, 7.197, 7.1976, 7.1976, 7.1973, 7.197, 7.1967, 7.1967, 7.1964, 7.1961, 7.1959, 7.1979, 7.1978, 7.1985, 7.1974, 7.1971, 7.1968, 7.1965, 7.1962, 7.1959, 7.1956, 7.1953, 7.1952, 7.1949, 7.1947, 7.1954, 7.1951, 7.1948, 7.1947, 7.1944, 7.1943, 7.1941, 7.1938, 7.1935, 7.1936, 7.1936, 7.1937, 7.1935, 7.1932, 7.1939, 7.1937, 7.1934, 7.1932, 7.1939, 7.1937, 7.1936, 7.1934, 7.1932, 7.1929, 7.1926, 7.1923, 7.192, 7.1917, 7.1916, 7.1924, 7.1931, 7.1929, 7.1928, 7.1926, 7.1924, 7.1922, 7.193, 7.1928, 7.1927, 7.1934, 7.1933, 7.1933, 7.1931, 7.1929, 7.1926, 7.1932, 7.194, 7.1947, 7.1953, 7.1951, 7.1957, 7.1954, 7.1962, 7.1959, 7.1957, 7.1956, 7.1954, 7.1952, 7.1959, 7.1957, 7.1956, 7.1964, 7.1962, 7.1961, 7.1958, 7.1956, 7.1962, 7.1959, 7.1956, 7.1956, 7.1974, 7.1974, 7.1972, 7.1971, 7.1977, 7.1986, 7.1986, 7.1975, 7.1972, 7.1971, 7.1968, 7.1965, 7.1964, 7.2003, 7.2001, 7.199, 7.1987, 7.1994, 7.1992, 7.1989, 7.1995, 7.1992, 7.199, 7.1979, 7.1977, 7.1975, 7.1973, 7.1972, 7.197, 7.1986, 7.1987, 7.1987, 7.1986, 7.1983, 7.199, 7.2, 7.1999, 7.1996, 7.1994, 7.1992, 7.1991, 7.1988, 7.1985, 7.1984, 7.1982, 7.1979, 7.1978, 7.1975, 7.1984, 7.1981, 7.2005, 7.2002, 7.1999, 7.1996, 7.2003, 7.2001, 7.2001, 7.2002, 7.1999, 7.1997, 7.1995, 7.1992, 7.199, 7.1987, 7.1994, 7.2009, 7.2041, 7.2051, 7.2049, 7.2055, 7.2062, 7.2059, 7.2068, 7.2067, 7.2064, 7.2061, 7.206, 7.2059, 7.2056, 7.2053, 7.2051, 7.2058, 7.2056, 7.2054, 7.2051, 7.2049, 7.2046, 7.2043, 7.205, 7.2086, 7.2083, 7.208, 7.2097, 7.2094, 7.2093, 7.209, 7.2087, 7.2087, 7.2084, 7.2084, 7.2081, 7.2078, 7.2075, 7.2072, 7.207, 7.2067, 7.2066, 7.2064, 7.2061, 7.2059, 7.2056, 7.2053, 7.205, 7.205, 7.2047, 7.2047, 7.2047, 7.2056, 7.2054, 7.206, 7.2059, 7.2056, 7.2066, 7.2064, 7.2062, 7.206, 7.2058, 7.2056, 7.2055, 7.2054, 7.2052, 7.2052, 7.2052, 7.2049, 7.2056, 7.2054, 7.2051, 7.2048, 7.2049, 7.2047, 7.2054, 7.2055, 7.2054, 7.2051, 7.2057, 7.2055, 7.2062, 7.2061, 7.2059, 7.2057, 7.2057, 7.2055, 7.2055, 7.2061, 7.2059, 7.2057, 7.2055, 7.2053, 7.2053, 7.2052, 7.2067, 7.2066, 7.2085, 7.2094, 7.2092, 7.2104, 7.2108, 7.2114, 7.2105, 7.2104, 7.2116, 7.2114, 7.2112, 7.211, 7.2109, 7.2106, 7.2105, 7.2103, 7.2111, 7.2109, 7.2117, 7.2114, 7.2112, 7.211, 7.2119, 7.2117, 7.2115, 7.2115, 7.2123, 7.2122, 7.2119, 7.2116, 7.2113, 7.2111, 7.2109, 7.2106, 7.2105, 7.2102, 7.2101, 7.2107, 7.2105, 7.2103, 7.2104, 7.2103, 7.2102, 7.2099, 7.2117, 7.2115, 7.2122, 7.212, 7.2126, 7.2124, 7.2122, 7.212, 7.2126, 7.2124, 7.2122, 7.212, 7.2127, 7.2127, 7.2126, 7.2125, 7.2122, 7.212, 7.2118, 7.2124, 7.2121, 7.212, 7.2117, 7.2116, 7.2115, 7.2112, 7.211, 7.2107, 7.2126, 7.2123, 7.2114, 7.2112, 7.2112, 7.2119, 7.2117, 7.2114, 7.2114, 7.2113, 7.2111, 7.2109, 7.2107, 7.2105, 7.2103, 7.2102, 7.2125, 7.2137, 7.2134, 7.2124, 7.2113, 7.2104, 7.2095, 7.2092, 7.209, 7.209, 7.2087, 7.2086, 7.2083, 7.2094, 7.2092, 7.2111, 7.2119, 7.2123, 7.212, 7.211, 7.2108, 7.2114, 7.2111, 7.2108, 7.2106, 7.2122, 7.212, 7.2126, 7.2123, 7.2131, 7.2128, 7.2127, 7.2132, 7.213, 7.2146, 7.2144, 7.2143, 7.2141, 7.2139, 7.2145, 7.215, 7.2147, 7.2145, 7.2143, 7.2149, 7.2148, 7.2146, 7.2147, 7.2148, 7.2145, 7.2143, 7.215, 7.2147, 7.2145, 7.2147, 7.2147, 7.2144, 7.2142, 7.2155, 7.2152, 7.2149, 7.2156, 7.2155, 7.2161, 7.2158, 7.2156, 7.2154, 7.2152, 7.215, 7.2148, 7.2147, 7.2149, 7.214, 7.2137, 7.2135, 7.2134, 7.2132, 7.2131, 7.2138, 7.2145, 7.2142, 7.2139, 7.2148, 7.2146, 7.2148, 7.2148, 7.2146, 7.2152, 7.2149, 7.2138, 7.2146, 7.2143, 7.2148, 7.2145, 7.2142, 7.214, 7.2138, 7.2143, 7.214, 7.2138, 7.2136, 7.2135, 7.2125, 7.2114, 7.2104, 7.2094, 7.2084, 7.2082, 7.2079, 7.2068, 7.2065, 7.2064, 7.2071, 7.2069, 7.2067, 7.2075, 7.2072, 7.207, 7.2076, 7.2074, 7.2072, 7.2071, 7.2072, 7.207, 7.2062, 7.2059, 7.2056, 7.2063, 7.206, 7.2057, 7.2054, 7.2053, 7.2053, 7.2051, 7.2049, 7.2046, 7.2043, 7.2041, 7.204, 7.2037, 7.2043, 7.2041, 7.2041, 7.2038, 7.2044, 7.2044, 7.2043, 7.2043, 7.2041, 7.2056, 7.2062, 7.206, 7.2094, 7.2093, 7.2092, 7.2092, 7.2089, 7.2087, 7.2086, 7.2093, 7.2099, 7.2098, 7.2095, 7.2093, 7.2091, 7.209, 7.2088, 7.2099, 7.2096, 7.2086, 7.2084, 7.2081, 7.2074, 7.2073, 7.207, 7.2061, 7.2059, 7.2058, 7.2057, 7.2055, 7.2052, 7.2058, 7.2057, 7.2056, 7.2054, 7.2061, 7.206, 7.2057, 7.2063, 7.206, 7.2058, 7.2056, 7.2055, 7.2054, 7.2053, 7.2051, 7.205, 7.2048, 7.2054, 7.2051, 7.2042, 7.2041, 7.2047, 7.2053, 7.206, 7.2058, 7.2056, 7.2056, 7.2053, 7.206, 7.2059, 7.2065, 7.2063, 7.2062, 7.206, 7.2066, 7.2057, 7.2056, 7.2055, 7.2065, 7.208, 7.2079, 7.2069, 7.2087, 7.2084, 7.2102, 7.2101, 7.2107, 7.2104, 7.2094, 7.2091, 7.2098, 7.2095, 7.2094, 7.2091, 7.2089, 7.209, 7.2087, 7.2084, 7.2082, 7.2081, 7.2078, 7.2078, 7.2084, 7.2082, 7.2079, 7.2077, 7.2085, 7.2083, 7.2083, 7.2081, 7.2093, 7.2085, 7.2092, 7.2089, 7.2086, 7.2085, 7.2091, 7.2094, 7.2085, 7.2075, 7.2065, 7.2062, 7.2066, 7.2064, 7.2061, 7.2059, 7.2057, 7.2068, 7.2073, 7.208, 7.2079, 7.2076, 7.2076, 7.2082, 7.2079, 7.2077, 7.2074, 7.208, 7.2078, 7.2068, 7.2065, 7.2065, 7.2071, 7.2077, 7.2074, 7.208, 7.2077, 7.2075, 7.2072, 7.207, 7.207, 7.2068, 7.2074, 7.2073, 7.207, 7.2076, 7.2073, 7.207, 7.206, 7.2058, 7.2057, 7.2055, 7.2054, 7.2051, 7.2057, 7.2055, 7.2061, 7.2059, 7.2065, 7.2062, 7.2061, 7.2058, 7.2055, 7.2053, 7.2051, 7.205, 7.2048, 7.2045, 7.2051, 7.2049, 7.2047, 7.2044, 7.205, 7.2047, 7.2045, 7.2052, 7.2051, 7.2049, 7.2055, 7.2052, 7.205, 7.2047, 7.2044, 7.2049, 7.2046, 7.2053, 7.2051, 7.2048, 7.2046, 7.2045, 7.2035, 7.2032, 7.2022, 7.2021, 7.2028, 7.2026, 7.2017, 7.2008, 7.2006, 7.2004, 7.2002, 7.2008, 7.2006, 7.2005, 7.1996, 7.1993, 7.1999, 7.2006, 7.1998, 7.1995, 7.1993, 7.199, 7.1996, 7.1995, 7.1992, 7.1991, 7.1989, 7.1988, 7.1986, 7.1985, 7.1984, 7.1982, 7.1973, 7.198, 7.198, 7.1986, 7.1984, 7.1982, 7.1981, 7.1979, 7.1977, 7.1975, 7.1974, 7.1972, 7.197, 7.1968, 7.1966, 7.1972, 7.1971, 7.1969, 7.1975, 7.1974, 7.198, 7.1978, 7.1977, 7.1975, 7.1972, 7.197, 7.1968, 7.1969, 7.1967, 7.1965, 7.1964, 7.1962, 7.196, 7.1958, 7.1956, 7.1957, 7.1956, 7.1954, 7.1952, 7.1951, 7.1949, 7.1947, 7.1945, 7.1943, 7.1942, 7.1939, 7.1938, 7.1936, 7.1935, 7.1934, 7.194, 7.194, 7.1945, 7.1945, 7.1942, 7.194, 7.1938, 7.1936, 7.1942, 7.1939, 7.1938, 7.1938, 7.1937, 7.1937, 7.1942, 7.1942, 7.1941, 7.1947, 7.1944, 7.1942, 7.1939, 7.1936, 7.1941, 7.1939, 7.1938, 7.1935, 7.1933, 7.1931, 7.1929, 7.1934, 7.1933, 7.1939, 7.1944, 7.1942, 7.1939, 7.1936, 7.1935, 7.1933, 7.1931, 7.1929, 7.1928, 7.1934, 7.1934, 7.1932, 7.1938, 7.1936, 7.1933, 7.1931, 7.1935, 7.1932, 7.1931, 7.1928, 7.1926, 7.1924, 7.193, 7.1928, 7.1925, 7.1922, 7.192, 7.1918, 7.1917, 7.1917, 7.1916, 7.1914, 7.1913, 7.191, 7.1909, 7.1906, 7.1904, 7.1902, 7.19, 7.1922, 7.192, 7.1917, 7.1917, 7.1915, 7.1921, 7.1927, 7.1925, 7.1922, 7.192, 7.1918, 7.1916, 7.1922, 7.1919, 7.1925, 7.1922, 7.1921, 7.192, 7.192, 7.1918, 7.1916, 7.1914, 7.1911, 7.1917, 7.1914, 7.1912, 7.191, 7.1908, 7.1905, 7.1903, 7.19, 7.1897, 7.1894, 7.1892, 7.1889, 7.1888, 7.1886, 7.1884, 7.1881, 7.1887, 7.1886, 7.1884, 7.1882, 7.1888, 7.1901, 7.1899, 7.1899, 7.1897, 7.1891, 7.1893, 7.1892, 7.1891, 7.1898, 7.1896, 7.1896, 7.19, 7.1899, 7.1904, 7.1909, 7.1906, 7.1905, 7.1911, 7.191, 7.1916, 7.1915, 7.1913, 7.1919, 7.1926, 7.1931, 7.193, 7.193, 7.1929, 7.1928, 7.1927, 7.1925, 7.1924, 7.1924, 7.1931, 7.1929, 7.1936, 7.1933, 7.1931, 7.193, 7.1928, 7.1926, 7.1932, 7.193, 7.1928, 7.1934, 7.1932, 7.1938, 7.1935, 7.1942, 7.1946, 7.1947, 7.1953, 7.1951, 7.1958, 7.1955, 7.1954, 7.1952, 7.1952, 7.195, 7.1947, 7.1946, 7.1944, 7.1942, 7.1939, 7.1938, 7.1935, 7.1941, 7.1939, 7.1936, 7.1934, 7.1932, 7.193, 7.1929, 7.1935, 7.1941, 7.194, 7.1938, 7.1945, 7.1942, 7.1948, 7.1953, 7.1961, 7.196, 7.1959, 7.1957, 7.1955, 7.1953, 7.1953, 7.1958, 7.1956, 7.1961, 7.1975, 7.1968, 7.1974, 7.1972, 7.197, 7.1969, 7.1968, 7.1965, 7.1964, 7.1963, 7.1969, 7.1967, 7.1966, 7.1972, 7.197, 7.1967, 7.1966, 7.1963, 7.1962, 7.196, 7.196, 7.1957, 7.1979, 7.1977, 7.1975, 7.1973, 7.197, 7.1969, 7.1967, 7.1966, 7.1963, 7.1961, 7.1959, 7.1957, 7.1955, 7.1953, 7.195, 7.1956, 7.1986, 7.1986, 7.1992, 7.1998, 7.1996, 7.1994, 7.1993, 7.2, 7.2001, 7.1993, 7.2011, 7.2017, 7.2051, 7.2051, 7.2049, 7.2054, 7.2052, 7.2045, 7.2069, 7.2075, 7.2075, 7.2081, 7.2082, 7.2081, 7.209, 7.2088, 7.2085, 7.2083, 7.2088, 7.2085, 7.209, 7.2087, 7.2085, 7.2083, 7.208, 7.2085, 7.2082, 7.2087, 7.2085, 7.2098, 7.2095, 7.21, 7.2098, 7.2096, 7.2095, 7.2092, 7.2089, 7.2086, 7.2083, 7.208, 7.2077, 7.2075, 7.2072, 7.2069, 7.2066, 7.2072, 7.207, 7.2068, 7.2066, 7.2063, 7.2061, 7.2058, 7.2055, 7.2053, 7.2051, 7.205, 7.2064, 7.2073, 7.2073, 7.2079, 7.2077, 7.2092, 7.2092, 7.2091, 7.2091, 7.21, 7.2114, 7.2133, 7.2131, 7.2136, 7.2149, 7.2147, 7.2152, 7.2165, 7.2164, 7.22, 7.2198, 7.2195, 7.2202, 7.2201, 7.2199, 7.2199, 7.2212, 7.2227, 7.2224, 7.2237, 7.2235, 7.2234, 7.2248, 7.2246, 7.2244, 7.2251, 7.2249, 7.2247, 7.2245, 7.2251, 7.2258, 7.2256, 7.2254, 7.2252, 7.225, 7.2247, 7.2253, 7.2254, 7.226, 7.2265, 7.2262, 7.2262, 7.2261, 7.2264, 7.2266, 7.2281, 7.228, 7.2281, 7.2279, 7.2277, 7.2275, 7.2273, 7.2279, 7.2286, 7.2284, 7.229, 7.2288, 7.2285, 7.2283, 7.2282, 7.2291, 7.2288, 7.2288, 7.2285, 7.2284, 7.2283, 7.2288, 7.2286, 7.2291, 7.2289, 7.2288, 7.2285, 7.2291, 7.2288, 7.2286, 7.2284, 7.2283, 7.228, 7.2277, 7.2275, 7.2274, 7.2271, 7.2269, 7.2267, 7.2266, 7.2264, 7.2261, 7.2259, 7.2258, 7.2264, 7.2264, 7.2262, 7.226, 7.2258, 7.2256, 7.2261, 7.2259, 7.2264, 7.2262, 7.226, 7.2259, 7.2257, 7.2255, 7.2253, 7.2258, 7.2263, 7.226, 7.2259, 7.2257, 7.2255, 7.2253, 7.2258, 7.2257, 7.2255, 7.2252, 7.225, 7.2248, 7.2254, 7.2259, 7.2265, 7.2273, 7.2272, 7.227, 7.227, 7.2286, 7.2278, 7.2276, 7.2289, 7.2303, 7.2301, 7.2306, 7.2304, 7.2303, 7.2309, 7.2308, 7.2306, 7.2319, 7.2316, 7.2313, 7.2318, 7.2323, 7.2321, 7.2319, 7.2316, 7.2315, 7.2313, 7.2323, 7.2321, 7.2318, 7.2316, 7.2322, 7.2319, 7.2317, 7.2315, 7.2313, 7.2311, 7.231, 7.2309, 7.2314, 7.2311, 7.2308, 7.2315, 7.2314, 7.2314, 7.2313, 7.2311, 7.231, 7.2308, 7.2305, 7.2302, 7.2299, 7.2304, 7.2318, 7.2319, 7.2317, 7.2323, 7.2329, 7.2327, 7.2325, 7.2323, 7.2321, 7.232, 7.2318, 7.2316, 7.2314, 7.2313, 7.2312, 7.2312, 7.231, 7.2307, 7.2306, 7.2305, 7.2307, 7.2305, 7.2303], '192.168.122.114': [5.3751, 5.5183, 5.9349, 5.8571, 5.9484, 5.8592, 6.1894, 5.5516, 5.6446, 6.1853, 6.1591, 6.2215, 6.2652, 6.3113, 6.655, 6.6232, 6.6016, 6.567, 6.5267, 6.5279, 6.487, 6.714, 6.6597, 6.6309, 6.7994, 6.7505, 6.7381, 6.719, 6.6713, 6.6567, 6.6306, 6.612, 6.6109, 6.5766, 6.7266, 6.6884, 6.7048, 6.6743, 6.7821, 6.776, 6.8883, 7.0137, 6.9821, 6.9577, 6.9308, 7.0112, 7.0295, 7.0541, 7.0355, 7.0046, 6.9092, 6.8896, 6.9667, 6.9391, 7.0119, 7.0872, 7.0676, 7.0374, 7.0147, 6.9868, 6.9799, 6.957, 7.0192, 7.0076, 6.9886, 6.9656, 6.9533, 6.9344, 6.9105, 6.8902, 6.8128, 6.8047, 6.802, 6.7868, 6.7777, 6.8335, 6.8256, 6.8747, 6.855, 6.8516, 6.8417, 6.8225, 6.8123, 6.8074, 6.7907, 6.7739, 6.7673, 6.7526, 6.7965, 6.7803, 6.7654, 6.7607, 6.8084, 6.8001, 6.8418, 6.8366, 6.8207, 6.8193, 6.8034, 6.7912, 6.7782, 6.7644, 6.7611, 6.7566, 6.7562, 6.7532, 6.74, 6.7345, 6.7249, 6.7154, 6.7324, 6.9672, 7.0783, 7.0792, 7.0688, 7.0611, 7.0533, 7.0537, 7.0414, 7.031, 7.0174, 7.0032, 6.9901, 6.9856, 6.9716, 7.0015, 6.9954, 6.9885, 6.9756, 6.9649, 6.9597, 6.9939, 6.9877, 6.976, 6.9786, 6.9673, 6.9963, 6.9902, 6.9781, 7.0093, 7.0, 6.9937, 7.0229, 7.0239, 7.0146, 7.0042, 7.007, 7.0356, 7.0247, 7.0157, 7.0131, 7.0044, 6.9973, 6.9947, 6.9868, 6.9794, 6.977, 6.9664, 6.9603, 6.9596, 6.96, 6.9857, 6.9835, 6.9805, 7.0116, 7.0057, 6.9994, 6.9937, 6.9925, 7.0147, 7.0119, 7.0041, 6.9993, 6.9955, 6.9895, 6.9905, 6.9849, 6.9764, 6.9685, 6.9695, 6.9652, 6.9574, 6.9493, 6.9419, 6.9646, 6.9569, 6.9499, 6.9431, 6.9387, 6.9368, 6.9331, 6.9297, 6.9226, 6.945, 6.9381, 6.9347, 6.9327, 6.9251, 7.0271, 7.0202, 7.0175, 7.0169, 7.0093, 7.0103, 7.035, 7.0282, 7.0298, 7.0257, 7.0183, 7.0135, 7.0059, 7.0257, 7.0206, 7.0386, 7.034, 7.0266, 7.021, 7.0387, 7.0551, 7.0731, 7.0685, 7.0842, 7.077, 7.0698, 7.0683, 7.0884, 7.065, 7.0589, 7.0373, 7.0597, 7.0943, 7.1108, 7.103, 7.1411, 7.1361, 7.1288, 7.1479, 7.1422, 7.1362, 7.1314, 7.1292, 7.1219, 7.1145, 7.108, 7.1082, 7.1055, 7.1209, 7.1394, 7.1326, 7.1309, 7.1522, 7.1451, 7.1415, 7.1766, 7.1757, 7.1804, 7.1787, 7.1738, 7.1715, 7.1659, 7.1644, 7.1598, 7.1776, 7.1756, 7.1706, 7.1673, 7.1612, 7.1736, 7.1686, 7.1632, 7.1694, 7.1647, 7.1621, 7.1783, 7.1734, 7.1752, 7.1706, 7.167, 7.1616, 7.161, 7.1556, 7.151, 7.1485, 7.1462, 7.1449, 7.1419, 7.1412, 7.1366, 7.1316, 7.1268, 7.1222, 7.1191, 7.1146, 7.1089, 7.124, 7.1181, 7.1317, 7.1267, 7.1396, 7.1525, 7.1483, 7.1469, 7.1448, 7.1645, 7.1605, 7.1607, 7.1603, 7.1592, 7.1529, 7.1487, 7.1452, 7.1438, 7.1575, 7.1735, 7.1672, 7.1651, 7.1591, 7.1547, 7.1497, 7.1466, 7.1473, 7.146, 7.1444, 7.1391, 7.1366, 7.1309, 7.1255, 7.1368, 7.1491, 7.1448, 7.1565, 7.1516, 7.1475, 7.1594, 7.1561, 7.1529, 7.1737, 7.173, 7.186, 7.198, 7.2092, 7.2049, 7.2015, 7.1992, 7.1944, 7.1893, 7.2001, 7.195, 7.193, 7.1917, 7.1872, 7.1837, 7.1796, 7.1931, 7.191, 7.2042, 7.2001, 7.1959, 7.2082, 7.2203, 7.2158, 7.2124, 7.2078, 7.204, 7.2003, 7.199, 7.211, 7.2065, 7.2038, 7.2223, 7.2323, 7.2419, 7.2386, 7.2496, 7.2455, 7.2405, 7.2378, 7.2469, 7.2443, 7.241, 7.2375, 7.2352, 7.2306, 7.2397, 7.237, 7.2354, 7.2466, 7.259, 7.2772, 7.2723, 7.2818, 7.2773, 7.2749, 7.2723, 7.2711, 7.2803, 7.2786, 7.2911, 7.2862, 7.2812, 7.2766, 7.2724, 7.2808, 7.2765, 7.2727, 7.2685, 7.2661, 7.2632, 7.2613, 7.2697, 7.2656, 7.2626, 7.2579, 7.2536, 7.2516, 7.2621, 7.26, 7.2698, 7.2654, 7.2746, 7.2701, 7.2676, 7.2661, 7.2632, 7.26, 7.2714, 7.2681, 7.2774, 7.2738, 7.2713, 7.2685, 7.2654, 7.2662, 7.2626, 7.2719, 7.271, 7.2686, 7.278, 7.2776, 7.2746, 7.2831, 7.2801, 7.288, 7.296, 7.2914, 7.2994, 7.3082, 7.3173, 7.3129, 7.3212, 7.3286, 7.3247, 7.3228, 7.3186, 7.3168, 7.3134, 7.3118, 7.3076, 7.3041, 7.3008, 7.2981, 7.2941, 7.2899, 7.2855, 7.2739, 7.2714, 7.2687, 7.2662, 7.2644, 7.2628, 7.2589, 7.2662, 7.2625, 7.2586, 7.2663, 7.2625, 7.2701, 7.2667, 7.2648, 7.2762, 7.2722, 7.2925, 7.2913, 7.2884, 7.3073, 7.3032, 7.2997, 7.3075, 7.3152, 7.3121, 7.3095, 7.3231, 7.3189, 7.3266, 7.3244, 7.3207, 7.3182, 7.3271, 7.3486, 7.3568, 7.3537, 7.3627, 7.3735, 7.3712, 7.3709, 7.3694, 7.3665, 7.3636, 7.3634, 7.3605, 7.3583, 7.356, 7.3529, 7.3731, 7.3697, 7.3692, 7.3656, 7.3632, 7.36, 7.3565, 7.3562, 7.3534, 7.3694, 7.3706, 7.3682, 7.3649, 7.3628, 7.3701, 7.3667, 7.3631, 7.3595, 7.3581, 7.356, 7.3528, 7.3524, 7.3488, 7.3454, 7.3417, 7.3396, 7.3379, 7.3445, 7.3424, 7.3402, 7.3381, 7.3351, 7.3326, 7.3292, 7.3354, 7.3321, 7.3304, 7.3269, 7.3234, 7.321, 7.3276, 7.3251, 7.3255, 7.3218, 7.3184, 7.3153, 7.3131, 7.3106, 7.3114, 7.3083, 7.305, 7.3016, 7.2982, 7.2966, 7.2938, 7.2914, 7.2878, 7.2855, 7.285, 7.2917, 7.2892, 7.2875, 7.294, 7.3014, 7.2981, 7.3046, 7.3013, 7.3018, 7.2999, 7.2971, 7.2957, 7.3027, 7.3002, 7.297, 7.2958, 7.2967, 7.3035, 7.3018, 7.3001, 7.2974, 7.2956, 7.3019, 7.3003, 7.3156, 7.3399, 7.3392, 7.3363, 7.3437, 7.3419, 7.3392, 7.3485, 7.3672, 7.38, 7.3776, 7.3751, 7.3728, 7.3703, 7.3618, 7.361, 7.3609, 7.3581, 7.356, 7.3528, 7.3505, 7.3832, 7.3836, 7.3811, 7.3881, 7.386, 7.3846, 7.3817, 7.3798, 7.3766, 7.3794, 7.3776, 7.3746, 7.3725, 7.3693, 7.3665, 7.365, 7.3703, 7.3673, 7.3652, 7.3848, 7.3834, 7.3807, 7.3783, 7.3758, 7.3736, 7.379, 7.3776, 7.3749, 7.3718, 7.3781, 7.3753, 7.3721, 7.3691, 7.3663, 7.3716, 7.3685, 7.3671, 7.3652, 7.3635, 7.361, 7.3601, 7.357, 7.3629, 7.3604, 7.3668, 7.3638, 7.3695, 7.3669, 7.364, 7.3613, 7.3595, 7.3578, 7.363, 7.3623, 7.3602, 7.3659, 7.3645, 7.3624, 7.3605, 7.3575, 7.3627, 7.3682, 7.3653, 7.3707, 7.3706, 7.3762, 7.3821, 7.3798, 7.3853, 7.3822, 7.381, 7.3853, 7.3829, 7.3813, 7.3795, 7.377, 7.3749, 7.373, 7.3995, 7.3974, 7.3945, 7.3931, 7.3983, 7.3962, 7.3942, 7.3927, 7.3911, 7.3968, 7.3944, 7.3918, 7.3901, 7.3946, 7.3925, 7.3901, 7.3883, 7.3857, 7.3915, 7.389, 7.3878, 7.4153, 7.4127, 7.4121, 7.4096, 7.4153, 7.414, 7.4114, 7.4089, 7.4073, 7.4053, 7.4048, 7.4025, 7.3996, 7.3982, 7.3955, 7.3935, 7.3921, 7.4076, 7.4053, 7.3963, 7.3948, 7.392, 7.3903, 7.3874, 7.3851, 7.3838, 7.3816, 7.3867, 7.3853, 7.3836, 7.3826, 7.381, 7.3784, 7.3775, 7.3763, 7.375, 7.3737, 7.3715, 7.3693, 7.3675, 7.3668, 7.3666, 7.3642, 7.3618, 7.3592, 7.358, 7.3552, 7.3538, 7.3526, 7.3502, 7.3494, 7.3544, 7.3528, 7.3502, 7.348, 7.3457, 7.3512, 7.349, 7.3466, 7.3444, 7.342, 7.3398, 7.3376, 7.3365, 7.3412, 7.353, 7.3577, 7.3621, 7.3602, 7.3591, 7.3653, 7.3699, 7.3701, 7.3743, 7.3857, 7.3832, 7.3806, 7.3781, 7.3822, 7.3808, 7.3789, 7.3768, 7.3743, 7.3721, 7.3707, 7.3681, 7.3663, 7.3647, 7.3621, 7.36, 7.3576, 7.3552, 7.353, 7.3511, 7.3493, 7.3474, 7.3464, 7.3503, 7.3543, 7.3525, 7.3516, 7.3496, 7.3484, 7.3469, 7.346, 7.3437, 7.3424, 7.3416, 7.3393, 7.3372, 7.3365, 7.3411, 7.3395, 7.3388, 7.3368, 7.3385, 7.3371, 7.3348, 7.3327, 7.3402, 7.338, 7.3366, 7.3409, 7.3387, 7.3366, 7.3344, 7.3327, 7.3306, 7.3294, 7.3284, 7.3284, 7.326, 7.325, 7.3174, 7.3213, 7.3309, 7.3418, 7.3399, 7.3388, 7.3373, 7.3355, 7.3342, 7.3321, 7.3299, 7.3279, 7.3267, 7.3251, 7.3227, 7.3278, 7.3262, 7.3247, 7.3233, 7.3271, 7.3257, 7.3233, 7.3211, 7.3253, 7.3267, 7.3248, 7.3225, 7.3211, 7.3249, 7.3226, 7.3204, 7.318, 7.3218, 7.3255, 7.3232, 7.3217, 7.3255, 7.3254, 7.3238, 7.3215, 7.3257, 7.3243, 7.323, 7.3212, 7.3191, 7.3182, 7.3226, 7.3211, 7.3194, 7.3179, 7.3159, 7.3208, 7.3294, 7.3381, 7.3432, 7.342, 7.3404, 7.3388, 7.343, 7.341, 7.3388, 7.3368, 7.3354, 7.3345, 7.3335, 7.3325, 7.331, 7.3291, 7.3278, 7.3258, 7.3237, 7.3219, 7.3208, 7.3198, 7.3179, 7.3179, 7.3158, 7.3138, 7.3119, 7.3101, 7.3154, 7.3202, 7.3219, 7.3172, 7.316, 7.3143, 7.3125, 7.3128, 7.3129, 7.3113, 7.3095, 7.3084, 7.3065, 7.3137, 7.3131, 7.3177, 7.3163, 7.3242, 7.3229, 7.3222, 7.3211, 7.3193, 7.3179, 7.3162, 7.3147, 7.3194, 7.3176, 7.3242, 7.3223, 7.3219, 7.3213, 7.3197, 7.3182, 7.3165, 7.3144, 7.313, 7.312, 7.3111, 7.3096, 7.3078, 7.3104, 7.3092, 7.3136, 7.3122, 7.316, 7.3153, 7.3189, 7.3169, 7.3155, 7.3139, 7.312, 7.3113, 7.3096, 7.3079, 7.3065, 7.3054, 7.3045, 7.3033, 7.3071, 7.3061, 7.3049, 7.3102, 7.3089, 7.3094, 7.3077, 7.3065, 7.3047, 7.3038, 7.3025, 7.3017, 7.3055, 7.3049, 7.3088, 7.3073, 7.3067, 7.3105, 7.3089, 7.3073, 7.3172, 7.3159, 7.3142, 7.3134, 7.3223, 7.3215, 7.3152, 7.3133, 7.3121, 7.3154, 7.3144, 7.3131, 7.3172, 7.3165, 7.3145, 7.3136, 7.3177, 7.3217, 7.3204, 7.319, 7.323, 7.3213, 7.3201, 7.3186, 7.3172, 7.3162, 7.3198, 7.3191, 7.3179, 7.3285, 7.3276, 7.3277, 7.3264, 7.3262, 7.3243, 7.3229, 7.3213, 7.3195, 7.3179, 7.3167, 7.3149, 7.3135, 7.3125, 7.3107, 7.3141, 7.3172, 7.3158, 7.3191, 7.3177, 7.3178, 7.3173, 7.3158, 7.3151, 7.3185, 7.3177, 7.3159, 7.3197, 7.3179, 7.3188, 7.3177, 7.3167, 7.3148, 7.3133, 7.3119, 7.3106, 7.3088, 7.3036, 7.3077, 7.3065, 7.3049, 7.3041, 7.3076, 7.3066, 7.3051, 7.3138, 7.312, 7.3108, 7.3089, 7.3072, 7.3055, 7.3039, 7.3031, 7.3013, 7.2995, 7.2982, 7.2967, 7.295, 7.2935, 7.2934, 7.299, 7.2976, 7.3046, 7.3132, 7.3122, 7.3107, 7.3095, 7.3081, 7.3063, 7.3058, 7.309, 7.3077, 7.3071, 7.3103, 7.3087, 7.3074, 7.3056, 7.309, 7.3082, 7.3067, 7.31, 7.3095, 7.3089, 7.3081, 7.3065, 7.3062, 7.3047, 7.3076, 7.3063, 7.3049, 7.3045, 7.3176, 7.3177, 7.3161, 7.3201, 7.3233, 7.3268, 7.3302, 7.3299, 7.3283, 7.3322, 7.3346, 7.3378, 7.3373, 7.3362, 7.3348, 7.3337, 7.3341, 7.3329, 7.3283, 7.3276, 7.3271, 7.3258, 7.3247, 7.3229, 7.3217, 7.3204, 7.3195, 7.3183, 7.3166, 7.3158, 7.3151, 7.3138, 7.3136, 7.3119, 7.3103, 7.3099, 7.3085, 7.307, 7.3063, 7.3051, 7.3083, 7.3077, 7.3063, 7.3047, 7.3031, 7.3014, 7.3049, 7.3032, 7.3058, 7.3059, 7.3047, 7.3031, 7.3061, 7.3092, 7.3077, 7.3098, 7.3083, 7.3072, 7.3099, 7.3087, 7.308, 7.3064, 7.3051, 7.304, 7.3029, 7.3013, 7.3001, 7.2988, 7.2973, 7.296, 7.2992, 7.2975, 7.2962, 7.2992, 7.298, 7.297, 7.2958, 7.2944, 7.2893, 7.2983, 7.3015, 7.301, 7.2993, 7.2982, 7.2967, 7.296, 7.2947, 7.294, 7.2969, 7.3002, 7.2991, 7.2975, 7.298, 7.2973, 7.3006, 7.2995, 7.2989, 7.2976, 7.2964, 7.2949, 7.2939, 7.2969, 7.2956, 7.2946, 7.2932, 7.2919, 7.291, 7.2901, 7.2886, 7.287, 7.2856, 7.2898, 7.289, 7.2878, 7.2869, 7.2853, 7.284, 7.2872, 7.2861, 7.2855, 7.2841, 7.2825, 7.2859, 7.2844, 7.2829, 7.2815, 7.2801, 7.2794, 7.2783, 7.2772, 7.2766, 7.2755, 7.2744, 7.2826, 7.2813, 7.2808, 7.2805, 7.2791, 7.2781, 7.2772, 7.2801, 7.2788, 7.2775, 7.2767, 7.2764, 7.2759, 7.2745, 7.2736, 7.2764, 7.2751, 7.2741, 7.2891, 7.293, 7.2928, 7.2925, 7.2916, 7.291, 7.2896, 7.2887, 7.2874, 7.2861, 7.2848, 7.2844, 7.2841, 7.2832, 7.2822, 7.281, 7.28, 7.2787, 7.2774, 7.2805, 7.2799, 7.2789, 7.2823, 7.285, 7.2839, 7.2828, 7.2814, 7.2842, 7.2834, 7.282, 7.2807, 7.2793, 7.2864, 7.2849, 7.2835, 7.2825, 7.282, 7.2813, 7.2801, 7.2829, 7.2817, 7.2848, 7.284, 7.283, 7.282, 7.2813, 7.2801, 7.2789, 7.2776, 7.2774, 7.2803, 7.2837, 7.2827, 7.2851, 7.2877, 7.2905, 7.3015, 7.3007, 7.2992, 7.2984, 7.2971, 7.2998, 7.3025, 7.3012, 7.3005, 7.2991, 7.3018, 7.3053, 7.3039, 7.3025, 7.3011, 7.2998, 7.2985, 7.2975, 7.2968, 7.2954, 7.2943, 7.2969, 7.2998, 7.3023, 7.3009, 7.2995, 7.2982, 7.2967, 7.2953, 7.298, 7.3005, 7.2994, 7.3018, 7.3045, 7.3075, 7.3036, 7.3066, 7.3056, 7.3183, 7.3176, 7.3166, 7.3154, 7.3144, 7.3167, 7.316, 7.3148, 7.3173, 7.316, 7.3148, 7.3134, 7.3133, 7.3131, 7.3122, 7.3116, 7.3103, 7.3137, 7.3128, 7.3156, 7.3147, 7.3138, 7.3127, 7.3116, 7.3103, 7.3089, 7.3124, 7.3111, 7.3144, 7.3134, 7.3159, 7.3149, 7.3135, 7.316, 7.3153, 7.3139, 7.3165, 7.3152, 7.3138, 7.3124, 7.3112, 7.3137, 7.313, 7.312, 7.3109, 7.3137, 7.3125, 7.3116, 7.3074, 7.3067, 7.3093, 7.3082, 7.3107, 7.3132, 7.3123, 7.3116, 7.3143, 7.3167, 7.3153, 7.314, 7.3132, 7.3124, 7.3112, 7.3105, 7.313, 7.3116, 7.3103, 7.3129, 7.316, 7.3184, 7.3171, 7.3209, 7.3199, 7.3226, 7.3212, 7.3204, 7.319, 7.3179, 7.3166, 7.3252, 7.3239, 7.3263, 7.3292, 7.3279, 7.327, 7.3295, 7.3286, 7.3275, 7.3303, 7.3292, 7.3279, 7.3268, 7.3256, 7.3285, 7.3278, 7.3266, 7.3259, 7.3262, 7.3261, 7.3288, 7.3281, 7.3309, 7.3299, 7.3295, 7.3322, 7.3308, 7.3301, 7.3302, 7.3295, 7.3282, 7.3271, 7.3268, 7.3293, 7.3281, 7.327, 7.3296, 7.3287, 7.3274, 7.3272, 7.3261, 7.3283, 7.3309, 7.3312, 7.3317, 7.3306, 7.3296, 7.332, 7.3306, 7.33, 7.3325, 7.3318, 7.3308, 7.3299, 7.3286, 7.3309, 7.3298, 7.3286, 7.3287, 7.3287, 7.3282, 7.328, 7.3274, 7.3272, 7.3263, 7.3253, 7.3247, 7.3235, 7.3222, 7.3212, 7.32, 7.3191, 7.3181, 7.3172, 7.316, 7.3152, 7.3141, 7.3136, 7.3124, 7.3115, 7.3138, 7.3132, 7.3124, 7.3124, 7.312, 7.3108, 7.3095, 7.3085, 7.3075, 7.3068, 7.3059, 7.3048, 7.3042, 7.3066, 7.3053, 7.3042, 7.3069, 7.3067, 7.3112, 7.3134, 7.3129, 7.3117, 7.3111, 7.3142, 7.3291, 7.3365, 7.3359, 7.3351, 7.3379, 7.3373, 7.3361, 7.3348, 7.3373, 7.336, 7.3351, 7.3341, 7.3365, 7.3356, 7.3349, 7.3375, 7.3364, 7.3355, 7.3396, 7.3385, 7.3373, 7.3436, 7.3426, 7.3416, 7.3405, 7.3397, 7.3391, 7.3383, 7.337, 7.3358, 7.3346, 7.334, 7.3364, 7.3355, 7.3346, 7.3335, 7.3336, 7.3358, 7.3345, 7.3333, 7.3323, 7.3348, 7.337, 7.3359, 7.3351, 7.3339, 7.3326, 7.3317, 7.3312, 7.327, 7.3261, 7.3253, 7.3241, 7.3234, 7.3229, 7.3229, 7.3217, 7.3209, 7.3201, 7.319, 7.3185, 7.3175, 7.3171, 7.3162, 7.3158, 7.3181, 7.3171, 7.3161, 7.3152, 7.3141, 7.3129, 7.3124, 7.3114, 7.3103, 7.3095, 7.3099, 7.3087, 7.3114, 7.311, 7.3108, 7.3101, 7.3091, 7.3116, 7.3144, 7.3131, 7.3129, 7.312, 7.3084, 7.3114, 7.3103, 7.3187, 7.3184, 7.3205, 7.3199, 7.3226, 7.3223, 7.3214, 7.3241, 7.3263, 7.3262, 7.3282, 7.327, 7.3258, 7.3246, 7.3237, 7.3228, 7.3223, 7.3215, 7.3208, 7.3196, 7.3192, 7.3183, 7.3172, 7.3168, 7.3158, 7.3148, 7.3141, 7.3137, 7.3134, 7.3165, 7.3157, 7.3176, 7.3164, 7.3157, 7.3176, 7.3167, 7.3155, 7.3143, 7.3135, 7.3153, 7.3144, 7.3132, 7.3123, 7.3116, 7.3111, 7.3102, 7.3125, 7.3117, 7.3109, 7.3101, 7.3098, 7.3096, 7.3089, 7.3112, 7.3105, 7.3133, 7.316, 7.3154, 7.3145, 7.3138, 7.313, 7.3155, 7.3187, 7.3225, 7.3219, 7.3244, 7.3267, 7.3261, 7.3253, 7.3242, 7.3233, 7.3255, 7.3279, 7.3272, 7.3265, 7.326, 7.3254, 7.325, 7.3271, 7.3262, 7.3283, 7.3274, 7.3265, 7.3253, 7.3246, 7.3267, 7.326, 7.3256, 7.3251, 7.3255, 7.3243, 7.3236, 7.3225, 7.3214, 7.321, 7.3207, 7.3206, 7.3198, 7.3193, 7.319, 7.3184, 7.3175, 7.3169, 7.316, 7.3181, 7.3203, 7.3194, 7.3214, 7.3204, 7.3201, 7.3192, 7.3187, 7.3178, 7.3201, 7.3199, 7.3189, 7.3183, 7.3177, 7.3165, 7.3129, 7.3119, 7.3142, 7.3133, 7.3122, 7.3116, 7.311, 7.3106, 7.3095, 7.3115, 7.3109, 7.31, 7.3091, 7.3085, 7.3075, 7.3098, 7.3104, 7.3094, 7.3117, 7.3108, 7.3104, 7.3127, 7.312, 7.3119, 7.3109, 7.3128, 7.3118, 7.3117, 7.3135, 7.3127, 7.3148, 7.3141, 7.3159, 7.3151, 7.3171, 7.3162, 7.3153, 7.3144, 7.3163, 7.3159, 7.3149, 7.3139, 7.3133, 7.3124, 7.3117, 7.3138, 7.3133, 7.3122, 7.3115, 7.3114, 7.3105, 7.3128, 7.3118, 7.3112, 7.3109, 7.31, 7.3094, 7.3108, 7.3109, 7.3103, 7.3097, 7.3087, 7.3079, 7.307, 7.3091, 7.3113, 7.3105, 7.3128, 7.3117, 7.3109, 7.3133, 7.3126, 7.3123, 7.3116, 7.3107, 7.3132, 7.313, 7.3123, 7.3118, 7.3109, 7.3108, 7.3109, 7.3102, 7.3101, 7.3094, 7.3115, 7.3106, 7.3097, 7.3118, 7.3109, 7.3102, 7.3095, 7.3119, 7.3136, 7.3128, 7.3117, 7.3169, 7.3164, 7.3155, 7.3157, 7.3152, 7.3142, 7.3135, 7.3128, 7.3183, 7.3174, 7.3217, 7.3209, 7.32, 7.3223, 7.3217, 7.3212, 7.3207, 7.3229, 7.325, 7.324, 7.3231, 7.3225, 7.3244, 7.3235, 7.3233, 7.3225, 7.3247, 7.3239, 7.3239, 7.326, 7.325, 7.3242, 7.3237, 7.3231, 7.3223, 7.3214, 7.3208, 7.3228, 7.3221, 7.3213, 7.3204, 7.3195, 7.3186, 7.3177, 7.3198, 7.3193, 7.3186, 7.3179, 7.3172, 7.3165, 7.3159, 7.3153, 7.315, 7.3148, 7.3142, 7.3165, 7.3158, 7.3177, 7.3177, 7.3175, 7.3169, 7.3169, 7.3162, 7.3152, 7.3174, 7.3197, 7.3192, 7.3183, 7.3175, 7.3169, 7.3161, 7.313, 7.3148, 7.3139, 7.3134, 7.3127, 7.3122, 7.3145, 7.3135, 7.3132, 7.3153, 7.3149, 7.3152, 7.3144, 7.3133, 7.3126, 7.312, 7.3113, 7.3136, 7.3126, 7.312, 7.3141, 7.3139, 7.3139, 7.313, 7.3122, 7.3118, 7.3113, 7.3111, 7.3103, 7.3101, 7.312, 7.3139, 7.3133, 7.3126, 7.3117, 7.3107, 7.3099, 7.3092, 7.3096, 7.3086, 7.3136, 7.3129, 7.3154, 7.3162, 7.3187, 7.3179, 7.3173, 7.3166, 7.3157, 7.3148, 7.312, 7.3132, 7.3124, 7.3142, 7.3136, 7.3155, 7.3177, 7.3174, 7.3167, 7.3158, 7.3157, 7.3178, 7.3176, 7.3234, 7.3227, 7.3226, 7.3224, 7.3215, 7.3207, 7.3202, 7.3194, 7.3185, 7.3184, 7.3175, 7.3165, 7.3159, 7.3152, 7.3173, 7.317, 7.3165, 7.3157, 7.3149, 7.3143, 7.3134, 7.3132, 7.3122, 7.3113, 7.3131, 7.3151, 7.3142, 7.3134, 7.3128, 7.3118, 7.3136, 7.3154, 7.3122, 7.3116, 7.3108, 7.31, 7.3096, 7.3091, 7.3109, 7.3128, 7.3119, 7.3109, 7.3099, 7.3091, 7.3087, 7.3079, 7.3071, 7.3068, 7.3063, 7.3055, 7.3046, 7.3038, 7.3032, 7.3024, 7.3042, 7.3034, 7.3027, 7.302, 7.3015, 7.3007, 7.2998, 7.299, 7.2982, 7.2972, 7.2963, 7.2953, 7.2944, 7.2935, 7.2929, 7.2947, 7.2938, 7.2928, 7.2928, 7.2947, 7.2939, 7.2931, 7.2923, 7.2914, 7.291, 7.2879, 7.2871, 7.2863, 7.2854, 7.2849, 7.284, 7.2834, 7.2827, 7.2817, 7.2809, 7.28, 7.2793, 7.2785, 7.2775, 7.2772, 7.2792, 7.2788, 7.2783, 7.2775, 7.2767, 7.276, 7.2755, 7.2756, 7.2777, 7.277, 7.2764, 7.2755, 7.2748, 7.2741, 7.2734, 7.2728, 7.2726, 7.2721, 7.2717, 7.2709, 7.2703, 7.2697, 7.2693, 7.2711, 7.2729, 7.2724, 7.2717, 7.2709, 7.2729, 7.2723, 7.2739, 7.2713, 7.271, 7.2706, 7.2699, 7.2692, 7.2683, 7.2675, 7.2693, 7.2688, 7.2707, 7.2699, 7.2691, 7.2708, 7.27, 7.27, 7.2698, 7.2715, 7.2711, 7.2706, 7.2697, 7.2693, 7.2711, 7.2704, 7.2697, 7.2719, 7.2713, 7.273, 7.2746, 7.2744, 7.2739, 7.273, 7.2746, 7.2737, 7.2755, 7.2771, 7.2767, 7.2767, 7.276, 7.2751, 7.2749, 7.2742, 7.2741, 7.2732, 7.2731, 7.2728, 7.2727, 7.2721, 7.2723, 7.2765, 7.2766, 7.285, 7.2849, 7.2841, 7.2835, 7.2852, 7.2871, 7.2889, 7.2879, 7.2872, 7.2868, 7.286, 7.2854, 7.285, 7.2869, 7.2862, 7.2853, 7.2847, 7.2865, 7.2858, 7.2851, 7.2849, 7.2844, 7.2835, 7.2829, 7.2823, 7.282, 7.2847, 7.2866, 7.2858, 7.2849, 7.2865, 7.286, 7.2859, 7.2878, 7.2871, 7.2866, 7.2865, 7.2893, 7.2889, 7.2908, 7.2901, 7.2894, 7.2886, 7.2903, 7.2899, 7.2897, 7.2891, 7.289, 7.2883, 7.2877, 7.287, 7.2864, 7.2859, 7.2851, 7.2843, 7.2842, 7.2834, 7.2832, 7.2846, 7.2861, 7.2857, 7.2851, 7.2844, 7.2863, 7.2855, 7.2852, 7.2844, 7.2837, 7.2831, 7.2827, 7.2842, 7.2839, 7.2835, 7.2833, 7.2829, 7.282, 7.2836, 7.2828, 7.2822, 7.2816, 7.2812, 7.2829, 7.2845, 7.2836, 7.2829, 7.2822, 7.2815, 7.2807, 7.2799, 7.2771, 7.2762, 7.2754, 7.2772, 7.2788, 7.2785, 7.2779, 7.2771, 7.2765, 7.2779, 7.2773, 7.2765, 7.2782, 7.2774, 7.2771, 7.2765, 7.276, 7.2776, 7.277, 7.2786, 7.2778, 7.277, 7.2762, 7.2754, 7.2745, 7.2738, 7.2754, 7.2747, 7.274, 7.2758, 7.2749, 7.2744, 7.2735, 7.2726, 7.2742, 7.2738, 7.2801, 7.282, 7.2838, 7.283, 7.2846, 7.2838, 7.2834, 7.2828, 7.2873, 7.2896, 7.2893, 7.2914, 7.2907, 7.2899, 7.294, 7.2943, 7.2937, 7.2929, 7.2925, 7.2919, 7.2911, 7.2904, 7.29, 7.2895, 7.2891, 7.2885, 7.2877, 7.287, 7.2889, 7.2882, 7.2874, 7.2867, 7.2866, 7.288, 7.288, 7.2878, 7.2921, 7.2936, 7.2934, 7.296, 7.2977, 7.2971, 7.2989, 7.2989, 7.2983, 7.2978, 7.2974, 7.2991, 7.2983, 7.3001, 7.2999, 7.2995, 7.2994, 7.3009, 7.3023, 7.3016, 7.3009, 7.3027, 7.3021, 7.3041, 7.3034, 7.3053, 7.3046, 7.3045, 7.3061, 7.3053, 7.3025, 7.3018, 7.3033, 7.3026, 7.3021, 7.3016, 7.3016, 7.3018, 7.3015, 7.301, 7.3059, 7.3051, 7.3046, 7.3038, 7.3034, 7.3031, 7.3024, 7.3038, 7.3033, 7.3025, 7.3019, 7.3011, 7.3033, 7.3049, 7.3044, 7.3062, 7.3057, 7.305, 7.3021, 7.3013, 7.3007, 7.3001, 7.2994, 7.3008, 7.3005, 7.2998, 7.2992, 7.2988, 7.298, 7.2973, 7.2966, 7.296, 7.2954, 7.2949, 7.2941, 7.2956, 7.2953, 7.2945, 7.2939, 7.2955, 7.2948, 7.2942, 7.2945, 7.2939, 7.2933, 7.293, 7.2924, 7.2926, 7.295, 7.2966, 7.2961, 7.2956, 7.2948, 7.2942, 7.2934, 7.2929, 7.2925, 7.2918, 7.2933, 7.2949, 7.2946, 7.294, 7.2934, 7.295, 7.2966, 7.2962, 7.2955, 7.295, 7.2945, 7.2945, 7.2937, 7.2973, 7.2966, 7.2982, 7.2974, 7.3031, 7.3027, 7.3023, 7.3015, 7.3007, 7.3022, 7.302, 7.3035, 7.3032, 7.3029, 7.3044, 7.3037, 7.3032, 7.3027, 7.3023, 7.3016, 7.3013, 7.3005, 7.3001, 7.3002, 7.2996, 7.2992, 7.2989, 7.2982, 7.2975, 7.2967, 7.2967, 7.296, 7.2953, 7.2948, 7.2948, 7.2941, 7.2934, 7.2957, 7.2956, 7.2976, 7.2998, 7.3014, 7.3033, 7.3025, 7.3018, 7.3057, 7.3055, 7.305, 7.3043, 7.3036, 7.3035, 7.3027, 7.304, 7.3034, 7.3027, 7.3023, 7.3021, 7.3014, 7.3032, 7.3026, 7.3019, 7.3035, 7.3029, 7.3042, 7.3036, 7.3037, 7.303, 7.3023, 7.3018, 7.301, 7.3003, 7.2997, 7.2989, 7.2982, 7.2975, 7.2989, 7.2981, 7.2976, 7.2971, 7.2966, 7.2959, 7.2951, 7.2951, 7.2945, 7.2961, 7.2958, 7.2952, 7.2968, 7.2967, 7.2962, 7.2958, 7.2956, 7.2966, 7.2981, 7.2978, 7.2971, 7.2964, 7.2957, 7.2953, 7.2993, 7.2986, 7.2982, 7.2974, 7.2967, 7.2985, 7.3002, 7.2997, 7.299, 7.2985, 7.2978, 7.2994, 7.3024, 7.302, 7.3037, 7.3031, 7.3027, 7.3027, 7.302, 7.3015, 7.3008, 7.3023, 7.3016, 7.301, 7.3004, 7.2978, 7.2971, 7.2965, 7.2941, 7.2934, 7.2928, 7.2925, 7.2924, 7.2918, 7.2913, 7.2913, 7.2905, 7.2897, 7.2933, 7.2932, 7.2926, 7.2942, 7.2935, 7.2932, 7.2925, 7.2921, 7.2913, 7.2908, 7.2903, 7.2896, 7.2909, 7.2905, 7.2902, 7.2894, 7.2888, 7.2864, 7.2878, 7.2873, 7.2888, 7.2901, 7.2914, 7.2906, 7.2899, 7.2896, 7.2982, 7.2996, 7.2989, 7.3003, 7.2996, 7.2989, 7.2983, 7.2996, 7.2993, 7.3016, 7.3031, 7.3027, 7.3023, 7.3016, 7.3013, 7.3007, 7.3002, 7.2996, 7.2995, 7.299, 7.2985, 7.298, 7.2974, 7.2989, 7.2985, 7.2978, 7.2953, 7.2948, 7.2942, 7.2943, 7.2939, 7.2935, 7.2929, 7.2921, 7.2914, 7.291, 7.2904, 7.29, 7.2898, 7.2892, 7.2868, 7.2881, 7.2883, 7.2876, 7.2869, 7.2848, 7.2841, 7.2849, 7.2844, 7.2838, 7.2853, 7.2853, 7.2848, 7.2842, 7.2839, 7.2838, 7.2835, 7.2829, 7.2847, 7.2842, 7.2858, 7.2875, 7.2872, 7.2866, 7.2863, 7.2856, 7.2981, 7.2978, 7.2972, 7.2964, 7.2959, 7.2951, 7.2944, 7.2936, 7.2929, 7.2924, 7.2942, 7.2935, 7.2932, 7.2928, 7.2921, 7.2916, 7.291, 7.2904, 7.2898, 7.2911, 7.2907, 7.2903, 7.2917, 7.291, 7.2903, 7.2898, 7.2891, 7.2884, 7.2884, 7.2899, 7.2896, 7.2891, 7.2887, 7.288, 7.2875, 7.287, 7.2867, 7.287, 7.2865, 7.2863, 7.2858, 7.2853, 7.2853, 7.2848, 7.2843, 7.2956, 7.297, 7.2965, 7.296, 7.2956, 7.296, 7.2956, 7.2951, 7.2966, 7.296, 7.2955, 7.295, 7.2947, 7.2963, 7.2957, 7.2951, 7.2947, 7.2963, 7.2977, 7.2971, 7.2967, 7.296, 7.2976, 7.2973, 7.2966, 7.2981, 7.2997, 7.2989, 7.2982, 7.2982, 7.2976, 7.297, 7.2966, 7.2963, 7.2956, 7.2969, 7.2963, 7.2956, 7.2951, 7.2945, 7.2923, 7.2917, 7.2911, 7.2948, 7.2962, 7.2957, 7.2972, 7.2968, 7.2961, 7.2955, 7.2949, 7.2943, 7.2937, 7.293, 7.2943, 7.2938, 7.2952, 7.2945, 7.2938, 7.2935, 7.2928, 7.2925, 7.2918, 7.2916, 7.2933, 7.2929, 7.294, 7.2955, 7.295, 7.2946, 7.2939, 7.2933, 7.2926, 7.2919, 7.2915, 7.293, 7.2936, 7.2933, 7.2928, 7.2922, 7.2916, 7.291, 7.2903, 7.29, 7.2914, 7.2908, 7.2903, 7.2896, 7.2889, 7.2886, 7.2882, 7.2896, 7.2889, 7.2887, 7.2882, 7.2877, 7.289, 7.2884, 7.2879, 7.2891, 7.2903, 7.2916, 7.291, 7.2904, 7.2937, 7.2932, 7.2927, 7.2921, 7.2934, 7.2967, 7.2961, 7.2956, 7.295, 7.2944, 7.2957, 7.2952, 7.2945, 7.2939, 7.2938, 7.2936, 7.2951, 7.2963, 7.2961, 7.2975, 7.2976, 7.297, 7.2966, 7.2959, 7.2953, 7.2949, 7.2947, 7.2941, 7.294, 7.2956, 7.295, 7.2946, 7.296, 7.3007, 7.3, 7.2995, 7.299, 7.2983, 7.298, 7.2973, 7.2987, 7.2981, 7.2994, 7.299, 7.2983, 7.2977, 7.2989, 7.3001, 7.2995, 7.2989, 7.2983, 7.2978, 7.2975, 7.2968, 7.2964, 7.2959, 7.2954, 7.2947, 7.294, 7.2934, 7.295, 7.2948, 7.2944, 7.2938, 7.2952, 7.2929, 7.2943, 7.2937, 7.2936, 7.295, 7.2944, 7.2938, 7.2935, 7.293, 7.2926, 7.2922, 7.2918, 7.2911, 7.2906, 7.2901, 7.2906, 7.2909, 7.2904, 7.2897, 7.2896, 7.2889, 7.2902, 7.29, 7.2896, 7.2908, 7.2907, 7.292, 7.2934, 7.2931, 7.2925, 7.2923, 7.2916, 7.2929, 7.2926, 7.2922, 7.2915, 7.291, 7.2923, 7.2918, 7.2914, 7.2908, 7.2903, 7.2897, 7.2891, 7.2918, 7.2913, 7.2911, 7.2905, 7.2898, 7.2893, 7.2887, 7.288, 7.2875, 7.2873, 7.2884, 7.2878, 7.2873, 7.2868, 7.2864, 7.2858, 7.2854, 7.2853, 7.285, 7.2851, 7.2852, 7.2846, 7.2839, 7.2833, 7.2846, 7.2919, 7.295, 7.2945, 7.2949, 7.2943, 7.2923, 7.2939, 7.2951, 7.2947, 7.3009, 7.3016, 7.3011, 7.3008, 7.3003, 7.3033, 7.3016, 7.301, 7.3022, 7.3063, 7.3058, 7.3056, 7.3051, 7.3048, 7.3047, 7.3044, 7.3041, 7.3035, 7.303, 7.3027, 7.3026, 7.3019, 7.3031, 7.3025, 7.3021, 7.3017, 7.3014, 7.3027, 7.302, 7.3033, 7.3027, 7.3027, 7.3021, 7.3035, 7.3033, 7.3027, 7.3021, 7.3021, 7.3015, 7.3012, 7.3009, 7.3005, 7.3003, 7.2998, 7.2992, 7.2993, 7.2987, 7.2982, 7.2976, 7.2988, 7.3, 7.2994, 7.2989, 7.2985, 7.2996, 7.2991, 7.2987, 7.2981, 7.2976, 7.2972, 7.2966, 7.296, 7.2955, 7.2951, 7.2947, 7.2945, 7.2939, 7.2936, 7.2932, 7.2928, 7.2921, 7.2914, 7.2925, 7.2919, 7.2914, 7.2908, 7.2903, 7.2916, 7.2929, 7.293, 7.2927, 7.2924, 7.2937, 7.2933, 7.2945, 7.2938, 7.2931, 7.2928, 7.2923, 7.2916, 7.2927, 7.2926, 7.2925, 7.3007, 7.3006, 7.3001, 7.2999, 7.2996, 7.3009, 7.3005, 7.3003, 7.3, 7.2995, 7.2989, 7.2984, 7.2978, 7.299, 7.2986, 7.2981, 7.2976, 7.297, 7.2966, 7.296, 7.2954, 7.2949, 7.2947, 7.2943, 7.2941, 7.2936, 7.2934, 7.2928, 7.2922, 7.2916, 7.2911, 7.2906, 7.2901, 7.2897, 7.2891, 7.2889, 7.2884, 7.2896, 7.2891, 7.2886, 7.2884, 7.2866, 7.286, 7.2881, 7.2881, 7.2894, 7.289, 7.2903, 7.2915, 7.2912, 7.2907, 7.2903, 7.2901, 7.2895, 7.2894, 7.2928, 7.2924, 7.2918, 7.2928, 7.2922, 7.2916, 7.2911, 7.2922, 7.2918, 7.2922, 7.2919, 7.2898, 7.291, 7.2904, 7.2902, 7.2897, 7.2891, 7.2885, 7.288, 7.2876, 7.2887, 7.2882, 7.2895, 7.289, 7.2884, 7.2878, 7.2874, 7.2871, 7.285, 7.2831, 7.281, 7.2808, 7.2802, 7.2798, 7.281, 7.282, 7.2832, 7.2844, 7.2839, 7.2836, 7.2832, 7.2827, 7.2821, 7.2817, 7.2814, 7.2812, 7.2806, 7.28, 7.2811, 7.2805, 7.2799, 7.2794, 7.279, 7.2785, 7.2781, 7.2775, 7.2769, 7.2764, 7.2758, 7.2755, 7.2751, 7.2745, 7.2743, 7.2755, 7.2751, 7.2746, 7.2744, 7.2739, 7.2734, 7.273, 7.2742, 7.274, 7.2736, 7.2718, 7.2715, 7.2729, 7.2739, 7.2751, 7.2748, 7.2761, 7.2773, 7.277, 7.2768, 7.2762, 7.2774, 7.2775, 7.2771, 7.2768, 7.2766, 7.2763, 7.2761, 7.2758, 7.2754, 7.275, 7.2744, 7.2738, 7.2749, 7.2748, 7.2743, 7.2754, 7.2751, 7.2745, 7.2757, 7.2754, 7.2748, 7.276, 7.2756, 7.2776, 7.2772, 7.2754, 7.2748, 7.2744, 7.2738, 7.2732, 7.2729, 7.2726, 7.2762, 7.2757, 7.2753, 7.2754, 7.275, 7.2745, 7.2742, 7.2738, 7.2734, 7.273, 7.274, 7.2734, 7.2749, 7.2745, 7.2755, 7.2751, 7.2747, 7.2743, 7.274, 7.2735, 7.2731, 7.2727, 7.2723, 7.2705, 7.2701, 7.2695, 7.2696, 7.2692, 7.2687, 7.2682, 7.2695, 7.269, 7.2702, 7.2697, 7.2694, 7.269, 7.2702, 7.2714, 7.271, 7.2705, 7.27, 7.2696, 7.2691, 7.2687, 7.2685, 7.268, 7.2674, 7.2672, 7.2667, 7.2678, 7.2676, 7.2683, 7.268, 7.2675, 7.267, 7.2682, 7.2694, 7.2691, 7.2703, 7.2698, 7.2699, 7.2696, 7.2693, 7.2692, 7.2688, 7.2687, 7.2684, 7.2678, 7.2672, 7.2668, 7.2663, 7.2659, 7.2655, 7.265, 7.2665, 7.2662, 7.2673, 7.2698, 7.2692, 7.2687, 7.2682, 7.2679, 7.269, 7.2685, 7.2694, 7.2691, 7.2685, 7.268, 7.2693, 7.2687, 7.2699, 7.2694, 7.2689, 7.2688, 7.2685, 7.2785, 7.2788, 7.2801, 7.2798, 7.2809, 7.2805, 7.28, 7.2798, 7.2797, 7.2798, 7.2793, 7.2788, 7.2784, 7.2779, 7.2774, 7.2788, 7.2801, 7.2798, 7.2793, 7.2791, 7.2787, 7.2781, 7.2776, 7.2788, 7.2784, 7.2781, 7.2775, 7.2769, 7.2768, 7.2768, 7.2765, 7.2778, 7.2773, 7.2772, 7.2767, 7.2765, 7.2841, 7.2836, 7.2847, 7.2842, 7.2839, 7.2835, 7.2833, 7.2828, 7.2839, 7.2834, 7.2829, 7.2823, 7.2822, 7.2821, 7.2819, 7.2815, 7.2812, 7.2806, 7.2802, 7.2796, 7.2808, 7.2804, 7.2803, 7.2815, 7.281, 7.2823, 7.2819, 7.2831, 7.2841, 7.2837, 7.2832, 7.2827, 7.2822, 7.2819, 7.2814, 7.2828, 7.2826, 7.2824, 7.282, 7.2816, 7.2812, 7.2808, 7.2803, 7.2799, 7.2801, 7.2799, 7.2794, 7.279, 7.2806, 7.2802, 7.2796, 7.2794, 7.279, 7.2786, 7.2784, 7.2798, 7.2795, 7.2806, 7.2808, 7.2803, 7.2798, 7.2796, 7.2792, 7.2787, 7.2786, 7.2782, 7.2811, 7.2807, 7.2804, 7.2805, 7.28, 7.2795, 7.279, 7.2802, 7.2797, 7.2796, 7.2792, 7.2787, 7.2799, 7.2795, 7.2794, 7.2789, 7.2786, 7.278, 7.2776, 7.2772, 7.2783, 7.2795, 7.2792, 7.2787, 7.2799, 7.2794, 7.282, 7.2819, 7.2831, 7.2844, 7.2841, 7.2839, 7.2834, 7.2829, 7.284, 7.2835, 7.2832, 7.2843, 7.284, 7.2834, 7.2831, 7.2826, 7.2821, 7.2818, 7.2813, 7.2811, 7.2806, 7.2801, 7.2802, 7.2797, 7.2793, 7.279, 7.2806, 7.2801, 7.28, 7.2795, 7.2791, 7.279, 7.2787, 7.2783, 7.2781, 7.2775, 7.277, 7.2765, 7.276, 7.2756, 7.2755, 7.2753, 7.2749, 7.2761, 7.2755, 7.2751, 7.2761, 7.2786, 7.2783, 7.2779, 7.2775, 7.2771, 7.2784, 7.2778, 7.2772, 7.2784, 7.2797, 7.2793, 7.2789, 7.2785, 7.2795, 7.2806, 7.2817, 7.2814, 7.2812, 7.2808, 7.2806, 7.2801, 7.2795, 7.2791, 7.2787, 7.2782, 7.2781, 7.2779, 7.2777, 7.276, 7.2742, 7.2753, 7.2752, 7.2749, 7.2745, 7.2741, 7.2752, 7.2748, 7.2761, 7.2755, 7.275, 7.2746, 7.274, 7.275, 7.2761, 7.2755, 7.2751, 7.2747, 7.2757, 7.2753, 7.2749, 7.2745, 7.2743, 7.2738, 7.2733, 7.2728, 7.2724, 7.2721, 7.2733, 7.2745, 7.2743, 7.2741, 7.2737, 7.2732, 7.2734, 7.2731, 7.2726, 7.2721, 7.2717, 7.2712, 7.2707, 7.2701, 7.2711, 7.2706, 7.2716, 7.2711, 7.2693, 7.2688, 7.2686, 7.2681, 7.2693, 7.2689, 7.2687, 7.2683, 7.2678, 7.2674, 7.2672, 7.2667, 7.2677, 7.2675, 7.2674, 7.2687, 7.2683, 7.268, 7.2679, 7.269, 7.2688, 7.2685, 7.268, 7.2675, 7.2671, 7.2666, 7.2663, 7.2662, 7.2659, 7.2669, 7.2664, 7.266, 7.2655, 7.2653, 7.2649, 7.2647, 7.2642, 7.2642, 7.2637, 7.2632, 7.2628, 7.2625, 7.2638, 7.2635, 7.2666, 7.2662, 7.2671, 7.2671, 7.2667, 7.2663, 7.2674, 7.267, 7.2681, 7.2692, 7.2703, 7.2698, 7.2693, 7.2705, 7.2702, 7.2699, 7.2697, 7.2692, 7.2703, 7.2699, 7.2694, 7.269, 7.2699, 7.2716, 7.2712, 7.2707, 7.2737, 7.2733, 7.2728, 7.2725, 7.2725, 7.2722, 7.2733, 7.2729, 7.2727, 7.2727, 7.2728, 7.2739, 7.2737, 7.2732, 7.2727, 7.2725, 7.272, 7.2715, 7.2715, 7.2735, 7.2735, 7.2731, 7.273, 7.2729, 7.2725, 7.2738, 7.2736, 7.2732, 7.2731, 7.273, 7.2726, 7.2724, 7.272, 7.2716, 7.2713, 7.2722, 7.272, 7.2716, 7.2711, 7.272, 7.2715, 7.2711, 7.2707, 7.2788, 7.2786, 7.2781, 7.2776, 7.2772, 7.2768, 7.2764, 7.276, 7.2755, 7.2752, 7.2747, 7.2756, 7.2751, 7.2746, 7.2741, 7.2738, 7.2733, 7.2728, 7.2738, 7.2737, 7.2747, 7.2742, 7.2737, 7.2735, 7.2733, 7.2731, 7.2728, 7.2726, 7.2722, 7.2731, 7.2728, 7.2723, 7.2721, 7.2715, 7.271, 7.2705, 7.2702, 7.2697, 7.2707, 7.2702, 7.2697, 7.2693, 7.2691, 7.2688, 7.2684, 7.268, 7.2676, 7.2671, 7.2668, 7.2664, 7.266, 7.2658, 7.2653, 7.265, 7.2645, 7.2641, 7.2638, 7.2635, 7.2633, 7.263, 7.2614, 7.2611, 7.2622, 7.2617, 7.2612, 7.2609, 7.2605, 7.26, 7.2612, 7.2607, 7.2602, 7.2597, 7.2592, 7.2602, 7.2599, 7.2611, 7.2608, 7.2605, 7.26, 7.2596, 7.2591, 7.2587, 7.2582, 7.2578, 7.2573, 7.2584, 7.2583, 7.2594, 7.2591, 7.2587, 7.2584, 7.2579, 7.259, 7.26, 7.2597, 7.2594, 7.2592, 7.2588, 7.2583, 7.2581, 7.2592, 7.2587, 7.2583, 7.2579, 7.2589, 7.2585, 7.2583, 7.2597, 7.2607, 7.2604, 7.2614, 7.2611, 7.2606, 7.2602, 7.2612, 7.2608, 7.2605, 7.2616, 7.2612, 7.2608, 7.2605, 7.26, 7.2597, 7.2607, 7.2603, 7.2599, 7.2595, 7.2591, 7.2586, 7.2581, 7.2576, 7.2575, 7.2571, 7.2566, 7.2565, 7.2564, 7.2559, 7.2555, 7.255, 7.2547, 7.2544, 7.2541, 7.2543, 7.2538, 7.2536, 7.2532, 7.253, 7.254, 7.2543, 7.254, 7.2549, 7.255, 7.2546, 7.2542, 7.2538, 7.2537, 7.2534, 7.2532, 7.2527, 7.2523, 7.2519, 7.2514, 7.2538, 7.2533, 7.2529, 7.2527, 7.2522, 7.2518, 7.2514, 7.2509, 7.2506, 7.2504, 7.2502, 7.2501, 7.2537, 7.2535, 7.253, 7.2528, 7.2525, 7.2521, 7.2517, 7.2512, 7.2509, 7.252, 7.2517, 7.2526, 7.2535, 7.2531, 7.2527, 7.2524, 7.2533, 7.2531, 7.2526, 7.2521, 7.2518, 7.2513, 7.2509, 7.2506, 7.2502, 7.2501, 7.2499, 7.2495, 7.2492, 7.2501, 7.2497, 7.2496, 7.2495, 7.2491, 7.2489, 7.2484, 7.248, 7.2475, 7.247, 7.2468, 7.2466, 7.2475, 7.2496, 7.2496, 7.2506, 7.2501, 7.2498, 7.2494, 7.2491, 7.2488, 7.2486, 7.2482, 7.2479, 7.249, 7.2499, 7.2521, 7.2517, 7.2528, 7.2525, 7.2522, 7.252, 7.2518, 7.2516, 7.2511, 7.2507, 7.2503, 7.2492, 7.2502, 7.25, 7.2499, 7.251, 7.2507, 7.2517, 7.2514, 7.2524, 7.2522, 7.2517, 7.2526, 7.2521, 7.2546, 7.2543, 7.254, 7.2536, 7.2547, 7.2542, 7.2553, 7.2561, 7.2571, 7.2568, 7.2564, 7.2562, 7.256, 7.2557, 7.2554, 7.2619, 7.2642, 7.2639, 7.2635, 7.2646, 7.2642, 7.2639, 7.2635, 7.263, 7.2629, 7.2633, 7.263, 7.2626, 7.2622, 7.262, 7.2616, 7.2613, 7.2611, 7.2608, 7.2603, 7.26, 7.2596, 7.2607, 7.2604, 7.2599, 7.2595, 7.2605, 7.2601, 7.2596, 7.2607, 7.2617, 7.2612, 7.2607, 7.2603, 7.2598, 7.2597, 7.2596, 7.2591, 7.2589, 7.2584, 7.2579, 7.2574, 7.2569, 7.2569, 7.2566, 7.2563, 7.2561, 7.2557, 7.2553, 7.255, 7.2546, 7.2542, 7.2528, 7.2514, 7.2514, 7.2509, 7.2506, 7.2505, 7.252, 7.2515, 7.2524, 7.2519, 7.2516, 7.2514, 7.251, 7.2532, 7.253, 7.2526, 7.2536, 7.2533, 7.253, 7.2528, 7.2524, 7.2525, 7.2523, 7.2534, 7.2531, 7.2526, 7.2522, 7.2521, 7.2519, 7.2515, 7.2524, 7.2521, 7.2517, 7.2513, 7.251, 7.252, 7.2515, 7.2499, 7.2496, 7.2493, 7.2488, 7.2511, 7.2507, 7.2503, 7.2503, 7.25, 7.2517, 7.2513, 7.2509, 7.2505, 7.2503, 7.2517, 7.2527, 7.2523, 7.2522, 7.2518, 7.2514, 7.2512, 7.2507, 7.2503, 7.2499, 7.2495, 7.2505, 7.2502, 7.2498, 7.2496, 7.2505, 7.2501, 7.251, 7.2508, 7.2504, 7.2503, 7.2512, 7.2512, 7.2496, 7.2485, 7.2481, 7.2477, 7.2473, 7.2468, 7.2464, 7.2473, 7.247, 7.2478, 7.2474, 7.2483, 7.2479, 7.2475, 7.246, 7.2457, 7.2466, 7.2475, 7.2474, 7.247, 7.2468, 7.2464, 7.246, 7.2456, 7.2452, 7.2462, 7.2446, 7.2431, 7.2427, 7.2424, 7.242, 7.242, 7.2406, 7.2391, 7.24, 7.2407, 7.2403, 7.2399, 7.2408, 7.2406, 7.2402, 7.2401, 7.241, 7.2408, 7.2419, 7.242, 7.2417, 7.2413, 7.2422, 7.2433, 7.243, 7.2427, 7.2424, 7.242, 7.243, 7.244, 7.2449, 7.2447, 7.2445, 7.2441, 7.2438, 7.2434, 7.2429, 7.2425, 7.2422, 7.2417, 7.2401, 7.241, 7.2408, 7.2419, 7.2415, 7.2412, 7.2421, 7.242, 7.2416, 7.2426, 7.2435, 7.243, 7.2425, 7.2423, 7.242, 7.2416, 7.2415, 7.2411, 7.2407, 7.2405, 7.239, 7.2386, 7.2381, 7.2368, 7.2364, 7.2361, 7.2356, 7.2352, 7.2348, 7.2346, 7.2343, 7.2338, 7.2336, 7.2332, 7.2329, 7.2337, 7.2348, 7.2346, 7.2345, 7.2354, 7.2419, 7.243, 7.2428, 7.2424, 7.2427, 7.2423, 7.2437, 7.2433, 7.243, 7.2427, 7.2452, 7.2448, 7.2443, 7.244, 7.2436, 7.2433, 7.2431, 7.2427, 7.2436, 7.2432, 7.243, 7.2427, 7.2423, 7.2432, 7.2429, 7.2427, 7.2425, 7.2434, 7.2431, 7.2427, 7.2425, 7.2425, 7.2426, 7.2423, 7.2432, 7.2428, 7.2428, 7.2424, 7.242, 7.2421, 7.2416, 7.2412, 7.242, 7.2417, 7.2405, 7.2404, 7.2401, 7.2397, 7.2393, 7.2389, 7.2385, 7.2383, 7.2382, 7.2405, 7.24, 7.2421, 7.2419, 7.2427, 7.2423, 7.242, 7.2416, 7.2413, 7.2409, 7.2408, 7.2404, 7.2413, 7.2408, 7.2404, 7.2412, 7.2408, 7.2403, 7.2399, 7.2409, 7.2406, 7.2403, 7.2399, 7.2396, 7.2392, 7.24, 7.241, 7.2418, 7.2416, 7.2413, 7.241, 7.2406, 7.2404, 7.2401, 7.241, 7.2397, 7.2393, 7.2392, 7.2389, 7.2397, 7.2395, 7.2391, 7.2386, 7.2384, 7.2383, 7.238, 7.2375, 7.2372, 7.2368, 7.2364, 7.2361, 7.2359, 7.2354, 7.235, 7.2359, 7.2355, 7.2353, 7.2348, 7.2344, 7.2352, 7.235, 7.24, 7.2398, 7.2394, 7.239, 7.24, 7.2396, 7.2392, 7.2388, 7.2384, 7.2392, 7.2388, 7.2389, 7.2385, 7.2383, 7.2383, 7.2382, 7.2378, 7.2376, 7.2372, 7.2371, 7.2372, 7.2382, 7.2432, 7.2443, 7.2454, 7.2451, 7.2448, 7.2445, 7.2441, 7.2438, 7.2435, 7.2432, 7.2428, 7.2424, 7.2421, 7.2417, 7.2416, 7.2414, 7.2411, 7.2418, 7.2415, 7.2413, 7.2411, 7.2421, 7.2418, 7.2414, 7.2411, 7.241, 7.2397, 7.2394, 7.2402, 7.2398, 7.2394, 7.2393, 7.2394, 7.2404, 7.24, 7.241, 7.2395, 7.2391, 7.2388, 7.2385, 7.2382, 7.2379, 7.2376, 7.2373, 7.2382, 7.2391, 7.2399, 7.2408, 7.2405, 7.2403, 7.2399, 7.2387, 7.2397, 7.2385, 7.2381, 7.2398, 7.2395, 7.2393, 7.2396, 7.2398, 7.2408, 7.2407, 7.2404, 7.2403, 7.2399, 7.2397, 7.2393, 7.2402, 7.24, 7.2398, 7.2394, 7.2391, 7.2387, 7.2385, 7.2394, 7.239, 7.2388, 7.2397, 7.2385, 7.2393, 7.239, 7.2399, 7.2408, 7.2405, 7.2401, 7.2398, 7.2394, 7.2391, 7.2387, 7.2383, 7.2392, 7.2401, 7.2399, 7.2408, 7.2407, 7.2405, 7.2403, 7.2399, 7.2398, 7.2398, 7.2383, 7.2379, 7.2387, 7.2395, 7.2391, 7.2387, 7.2386, 7.2382, 7.2389, 7.2386, 7.2384, 7.238, 7.2377, 7.2373, 7.2369, 7.2369, 7.2379, 7.2389, 7.2397, 7.2393, 7.239, 7.2386, 7.2385, 7.2381, 7.239, 7.2386, 7.2383, 7.2379, 7.2375, 7.2374, 7.2372, 7.2371, 7.2369, 7.2378, 7.2389, 7.2389, 7.2385, 7.2393, 7.2389, 7.2386, 7.2383, 7.2381, 7.2381, 7.2392, 7.2389, 7.2386, 7.2383, 7.238, 7.2377, 7.2376, 7.2377, 7.2377, 7.2376, 7.2385, 7.2382, 7.2391, 7.2387, 7.2397, 7.2395, 7.2391, 7.239, 7.2386, 7.2391, 7.2387, 7.2398, 7.2396, 7.2403, 7.2414, 7.2411, 7.2408, 7.2394, 7.2391, 7.2388, 7.2385, 7.2385, 7.2393, 7.239, 7.2377, 7.2365, 7.2364, 7.2362, 7.2358, 7.2372, 7.2369, 7.238, 7.2378, 7.2408, 7.2405, 7.2403, 7.2388, 7.2387, 7.2383, 7.2387, 7.241, 7.2407, 7.2417, 7.2406, 7.2405, 7.2401, 7.24, 7.2397, 7.2406, 7.2414, 7.2412, 7.2408, 7.2404, 7.24, 7.2399, 7.2408, 7.2418, 7.2414, 7.2421, 7.2418, 7.2416, 7.2415, 7.2412, 7.241, 7.2408, 7.2406, 7.2402, 7.24, 7.2398, 7.2407, 7.2404, 7.2402, 7.2398, 7.2395, 7.2391, 7.2377, 7.2373, 7.238, 7.2377, 7.2385, 7.2383, 7.2379, 7.2377, 7.2374, 7.237, 7.2367, 7.2377, 7.2374, 7.237, 7.237, 7.2368, 7.2366, 7.2365, 7.2365, 7.2374, 7.2371, 7.237, 7.2366, 7.2363, 7.236, 7.2357, 7.2353, 7.2351, 7.2362, 7.236, 7.2356, 7.2344, 7.2364, 7.2361, 7.2359, 7.2356, 7.2354, 7.2362, 7.236, 7.2358, 7.2367, 7.2366, 7.2366, 7.2363, 7.236, 7.2356, 7.2365, 7.2373, 7.237, 7.2369, 7.2368, 7.2365, 7.2361, 7.2359, 7.2357, 7.2365, 7.2361, 7.2369, 7.2366, 7.2376, 7.2372, 7.2359, 7.2345, 7.238, 7.2378, 7.2375, 7.2374, 7.2383, 7.2381, 7.2391, 7.24, 7.2398, 7.2406, 7.2404, 7.2402, 7.2398, 7.2394, 7.2392, 7.239, 7.239, 7.2387, 7.2397, 7.2394, 7.2391, 7.2389, 7.2375, 7.2374, 7.2371, 7.2358, 7.2355, 7.2353, 7.2352, 7.235, 7.2348, 7.2346, 7.2345, 7.2344, 7.2341, 7.234, 7.2339, 7.2336, 7.2323, 7.232, 7.2316, 7.2314, 7.2323, 7.2321, 7.2318, 7.2314, 7.2323, 7.233, 7.2326, 7.2323, 7.232, 7.2317, 7.2318, 7.2315, 7.2312, 7.231, 7.2309, 7.2316, 7.2324, 7.231, 7.2307, 7.2303, 7.2311, 7.2308, 7.2307, 7.2303, 7.23, 7.2308, 7.2306, 7.2293, 7.2289, 7.2285, 7.2281, 7.2278, 7.2277, 7.2275, 7.2276, 7.2272, 7.2263, 7.2272, 7.2275, 7.2274, 7.2272, 7.2271, 7.2279, 7.2276, 7.2274, 7.2272, 7.2268, 7.2266, 7.2275, 7.2271, 7.2268, 7.2268, 7.2266, 7.2264, 7.2272, 7.2259, 7.2255, 7.2264, 7.2261, 7.2258, 7.2244, 7.2241, 7.224, 7.2238, 7.225, 7.2248, 7.2246, 7.2243, 7.2242, 7.2239, 7.2237, 7.2234, 7.2242, 7.2239, 7.2229, 7.2249, 7.2257, 7.2255, 7.2263, 7.2271, 7.2269, 7.2267, 7.2264, 7.2265, 7.2264, 7.2262, 7.2258, 7.2266, 7.2274, 7.227, 7.2257, 7.2255, 7.2242, 7.2239, 7.2235, 7.2243, 7.2252, 7.2249, 7.2257, 7.2254, 7.2252, 7.2252, 7.2251, 7.2238, 7.2234, 7.2231, 7.223, 7.2228, 7.2225, 7.2232, 7.2228, 7.2231, 7.2229, 7.2228, 7.2227, 7.2223, 7.2229, 7.2227, 7.2228, 7.2225, 7.2234, 7.2231, 7.2228, 7.2254, 7.2243, 7.2257, 7.2268, 7.2265, 7.2267, 7.2291, 7.2292, 7.2305, 7.2307, 7.2322, 7.2319, 7.2348, 7.2355, 7.2352, 7.2349, 7.2357, 7.2353, 7.235, 7.2359, 7.2356, 7.2354, 7.2351, 7.2359, 7.2355, 7.2342, 7.234, 7.2337, 7.2333, 7.233, 7.2337, 7.2345, 7.2341, 7.2339, 7.2335, 7.2332, 7.2329, 7.2336, 7.2332, 7.233, 7.2327, 7.2323, 7.2321, 7.2318, 7.2315, 7.2313, 7.231, 7.2309, 7.2306, 7.2313, 7.231, 7.2306, 7.2303, 7.2299, 7.2296, 7.2295, 7.2292, 7.229, 7.2299, 7.2296, 7.2293, 7.2306, 7.2327, 7.2324, 7.2355, 7.2353, 7.2352, 7.2349, 7.2348, 7.2344, 7.2333, 7.2333, 7.2332, 7.2329, 7.2326, 7.2322, 7.2331, 7.2328, 7.2326, 7.2323, 7.233, 7.2328, 7.2324, 7.2321, 7.2329, 7.2326, 7.2323, 7.232, 7.2328, 7.2325, 7.2322, 7.2321, 7.2318, 7.2317, 7.2314, 7.2311, 7.231, 7.2311, 7.2309, 7.2306, 7.2303, 7.23, 7.2298, 7.2308, 7.2306, 7.2295, 7.2293, 7.2301, 7.2298, 7.2294, 7.2291, 7.229, 7.2278, 7.2275, 7.2273, 7.2281, 7.2277, 7.2273, 7.2272, 7.2268, 7.2255, 7.2251, 7.225, 7.2247, 7.2254, 7.2251, 7.2251, 7.2259, 7.2255, 7.2253, 7.2241, 7.2248, 7.225, 7.2247, 7.2234, 7.2231, 7.2238, 7.2238, 7.2236, 7.2233, 7.2231, 7.2251, 7.2251, 7.2276, 7.2273, 7.227, 7.2269, 7.2266, 7.2263, 7.226, 7.2257, 7.2256, 7.2253, 7.2252, 7.2248, 7.2244, 7.224, 7.224, 7.2238, 7.2234, 7.2233, 7.2231, 7.2229, 7.2227, 7.2223, 7.2221, 7.222, 7.2217, 7.2214, 7.2211, 7.2208, 7.2205, 7.2201, 7.2198, 7.2186, 7.2184, 7.2191, 7.2191, 7.2188, 7.2196, 7.2193, 7.2191, 7.2191, 7.219, 7.2189, 7.2185, 7.2182, 7.2179, 7.2187, 7.2183, 7.2181, 7.2179, 7.2191, 7.2187, 7.2184, 7.2192, 7.2188, 7.2186, 7.2183, 7.2179, 7.2184, 7.2192, 7.2188, 7.2185, 7.2183, 7.218, 7.2178, 7.2186, 7.2183, 7.2181, 7.2178, 7.2175, 7.2172, 7.2179, 7.2176, 7.2173, 7.217, 7.2168, 7.2175, 7.2172, 7.218, 7.2177, 7.2166, 7.2153, 7.2151, 7.2139, 7.2138, 7.2137, 7.2134, 7.2131, 7.2129, 7.2126, 7.2124, 7.2121, 7.2119, 7.2115, 7.2112, 7.212, 7.2117, 7.2114, 7.2111, 7.2122, 7.213, 7.2127, 7.2124, 7.2121, 7.213, 7.2128, 7.2125, 7.2123, 7.212, 7.2117, 7.2115, 7.2114, 7.2121, 7.2118, 7.2115, 7.2111, 7.2108, 7.2106, 7.2102, 7.2113, 7.211, 7.2109, 7.2107, 7.2104, 7.2102, 7.2102, 7.2099, 7.2096, 7.2094, 7.2102, 7.2103, 7.2101, 7.2099, 7.2097, 7.2093, 7.2091, 7.2088, 7.2086, 7.2082, 7.2078, 7.2085, 7.2083, 7.209, 7.2098, 7.2105, 7.2102, 7.21, 7.2099, 7.2096, 7.2092, 7.2089, 7.2086, 7.2083, 7.208, 7.2079, 7.2077, 7.2075, 7.2063, 7.2051, 7.2039, 7.2036, 7.2033, 7.2091, 7.2099, 7.2097, 7.2106, 7.2102, 7.2099, 7.2105, 7.2093, 7.2092, 7.2089, 7.2096, 7.2093, 7.2093, 7.2091, 7.2099, 7.2097, 7.2107, 7.2105, 7.2103, 7.2101, 7.2108, 7.2105, 7.2104, 7.2101, 7.21, 7.2097, 7.2104, 7.2102, 7.2099, 7.2096, 7.2104, 7.2101, 7.2108, 7.2105, 7.2103, 7.2111, 7.2108, 7.2117, 7.2114, 7.2102, 7.2102, 7.21, 7.2097, 7.2095, 7.2095, 7.2092, 7.2088, 7.2086, 7.2093, 7.209, 7.2087, 7.2075, 7.2072, 7.2079, 7.2087, 7.2083, 7.208, 7.2087, 7.2095, 7.2093, 7.2097, 7.2093, 7.2101, 7.2118, 7.2117, 7.2119, 7.2127, 7.2124, 7.2132, 7.2128, 7.2135, 7.2131, 7.2127, 7.2125, 7.2132, 7.2121, 7.2119, 7.2126, 7.2123, 7.2122, 7.2121, 7.2119, 7.2116, 7.2124, 7.2123, 7.212, 7.2117, 7.2114, 7.2112, 7.2109, 7.2106, 7.2113, 7.2111, 7.2109, 7.211, 7.2155, 7.2142, 7.2139, 7.2146, 7.2144, 7.2142, 7.2139, 7.2136, 7.2142, 7.2186, 7.2241, 7.2237, 7.2235, 7.2232, 7.2232, 7.2229, 7.2226, 7.2224, 7.2222, 7.2219, 7.2226, 7.2224, 7.2221, 7.2219, 7.2218, 7.2215, 7.2212, 7.2209, 7.2207, 7.2203, 7.2201, 7.2197, 7.2202, 7.2199, 7.2196, 7.2203, 7.22, 7.2196, 7.2202, 7.219, 7.2186, 7.2185, 7.2192, 7.2189, 7.2185, 7.2181, 7.2178, 7.2175, 7.2172, 7.217, 7.2167, 7.2174, 7.217, 7.2176, 7.2183, 7.2181, 7.2188, 7.2185, 7.2187, 7.2194, 7.2192, 7.2201, 7.2198, 7.2195, 7.2192, 7.2191, 7.2189, 7.2187, 7.2185, 7.2181, 7.2188, 7.2186, 7.2183, 7.218, 7.2188, 7.2185, 7.2183, 7.2181, 7.2187, 7.2184, 7.2182, 7.218, 7.2179, 7.2186, 7.2184, 7.2182, 7.2181, 7.2179, 7.2185, 7.2184, 7.2192, 7.2189, 7.2187, 7.2184, 7.2192, 7.22, 7.2198, 7.2195, 7.2184, 7.2181, 7.2188, 7.2185, 7.2183, 7.2181, 7.2178, 7.2176, 7.2183, 7.2171, 7.2178, 7.2178, 7.2175, 7.2173, 7.217, 7.2166, 7.2163, 7.217, 7.2167, 7.2167, 7.2156, 7.2153, 7.215, 7.2149, 7.2147, 7.2144, 7.2152, 7.2149, 7.2148, 7.2145, 7.2142, 7.2139, 7.2137, 7.2135, 7.2133, 7.2131, 7.2129, 7.2127, 7.2116, 7.2113, 7.211, 7.2109, 7.2107, 7.2104, 7.2101, 7.21, 7.2097, 7.2095, 7.2093, 7.2095, 7.2094, 7.2092, 7.2089, 7.2097, 7.2094, 7.2101, 7.2098, 7.2111, 7.211, 7.2107, 7.2105, 7.2102, 7.2101, 7.21, 7.2099, 7.2097, 7.2094, 7.2093, 7.209, 7.2088, 7.2086, 7.2082, 7.2089, 7.2095, 7.2092, 7.2101, 7.2099, 7.2096, 7.2104, 7.2102, 7.2099, 7.2087, 7.2104, 7.2102, 7.2099, 7.2104, 7.2115, 7.2112, 7.2114, 7.2122, 7.212, 7.2118, 7.2116, 7.2113, 7.212, 7.2109, 7.2107, 7.2104, 7.2101, 7.2098, 7.2095, 7.2093, 7.2081, 7.209, 7.209, 7.2087, 7.2094, 7.2102, 7.21, 7.2098, 7.2098, 7.2095, 7.2093, 7.2091, 7.2089, 7.2079, 7.2075, 7.2074, 7.2073, 7.2071, 7.2069, 7.2076, 7.2076, 7.2072, 7.2069, 7.2057, 7.2055, 7.2052, 7.2048, 7.2054, 7.2052, 7.2049, 7.2056, 7.2054, 7.205, 7.2079, 7.2076, 7.2074, 7.2073, 7.2061, 7.206, 7.2067, 7.2065, 7.2062, 7.2071, 7.2069, 7.2067, 7.2064, 7.2062, 7.2059, 7.2057, 7.2055, 7.2053, 7.2051, 7.2049, 7.2047, 7.2045, 7.2053, 7.2061, 7.2058, 7.2088, 7.2085, 7.2084, 7.2092, 7.2093, 7.2101, 7.2099, 7.2098, 7.2106, 7.2105, 7.2113, 7.2112, 7.2109, 7.2106, 7.2103, 7.2102, 7.2101, 7.2098, 7.2098, 7.2095, 7.2091, 7.2089, 7.2098, 7.2097, 7.2097, 7.2097, 7.2094, 7.2092, 7.209, 7.2089, 7.2079, 7.2086, 7.2075, 7.2082, 7.208, 7.2077, 7.2074, 7.2071, 7.2069, 7.2066, 7.2064, 7.2062, 7.2059, 7.2057, 7.2055, 7.2054, 7.205, 7.2058, 7.2055, 7.2052, 7.2049, 7.2046, 7.2043, 7.2041, 7.2049, 7.2047, 7.2047, 7.2048, 7.2045, 7.2046, 7.2042, 7.204, 7.2037, 7.2034, 7.2041, 7.2038, 7.2036, 7.2034, 7.2051, 7.2059, 7.2067, 7.2065, 7.2065, 7.2064, 7.2062, 7.206, 7.2057, 7.2055, 7.2063, 7.2063, 7.2061, 7.2069, 7.2066, 7.2065, 7.2063, 7.207, 7.2067, 7.2064, 7.2061, 7.2058, 7.2056, 7.2054, 7.2051, 7.2048, 7.2048, 7.2046, 7.2043, 7.2051, 7.2053, 7.2044, 7.2042, 7.2039, 7.2036, 7.2033, 7.2039, 7.2037, 7.2034, 7.2051, 7.2048, 7.2046, 7.2043, 7.2043, 7.2041, 7.204, 7.2038, 7.2037, 7.2047, 7.2055, 7.2062, 7.207, 7.2069, 7.2066, 7.2072, 7.207, 7.2067, 7.2056, 7.2053, 7.206, 7.2058, 7.2055, 7.2052, 7.2049, 7.2046, 7.2052, 7.2049, 7.2055, 7.2052, 7.205, 7.2046, 7.2062, 7.2061, 7.2068, 7.2066, 7.2073, 7.2071, 7.2078, 7.2077, 7.2074, 7.2071, 7.2067, 7.2066, 7.2073, 7.2071, 7.2069, 7.2076, 7.2075, 7.2074, 7.2071, 7.207, 7.2077, 7.2084, 7.2091, 7.2088, 7.2086, 7.2092, 7.2089, 7.2086, 7.2084, 7.2091, 7.209, 7.2089, 7.2089, 7.2096, 7.2095, 7.2106, 7.2122, 7.2129, 7.2129, 7.2127, 7.2124, 7.2121, 7.2119, 7.2141, 7.2139, 7.2137, 7.2134, 7.2131, 7.2139, 7.2137, 7.2136, 7.2133, 7.213, 7.2137, 7.2136, 7.2134, 7.2132, 7.2121, 7.2119, 7.212, 7.2116, 7.2113, 7.211, 7.2107, 7.2104, 7.2101, 7.2108, 7.2105, 7.2095, 7.2104, 7.2103, 7.2101, 7.21, 7.2097, 7.2094, 7.2093, 7.209, 7.2088, 7.2086, 7.2083, 7.2081, 7.2079, 7.2086, 7.2083, 7.208, 7.2077, 7.2074, 7.2072, 7.2069, 7.2085, 7.2091, 7.2095, 7.2092, 7.209, 7.2087, 7.2077, 7.2075, 7.2073, 7.207, 7.2077, 7.2074, 7.2072, 7.207, 7.2067, 7.2065, 7.2074, 7.2072, 7.207, 7.2078, 7.2076, 7.2074, 7.2101, 7.2099, 7.2097, 7.2095, 7.2093, 7.2119, 7.2117, 7.2124, 7.213, 7.2128, 7.2126, 7.2123, 7.212, 7.2117, 7.2114, 7.216, 7.2157, 7.2154, 7.2155, 7.2152, 7.2149, 7.2149, 7.2146, 7.2152, 7.2158, 7.2155, 7.2152, 7.215, 7.2147, 7.2144, 7.2141, 7.2151, 7.2148, 7.2145, 7.2142, 7.214, 7.214, 7.2174, 7.2202, 7.22, 7.2198, 7.2214, 7.2216, 7.2213, 7.222, 7.2219, 7.222, 7.2219, 7.2217, 7.2224, 7.223, 7.2237, 7.2244, 7.2251, 7.2249, 7.2255, 7.2254, 7.2253, 7.2251, 7.2249, 7.2247, 7.2244, 7.2243, 7.224, 7.2237, 7.2234, 7.2231, 7.2228, 7.2228, 7.2225, 7.2222, 7.2235, 7.2243, 7.224, 7.2237, 7.2237, 7.2244, 7.2241, 7.224, 7.2238, 7.2237, 7.2234, 7.2231, 7.2248, 7.2245, 7.2242, 7.224, 7.2237, 7.2236, 7.2243, 7.224, 7.2248, 7.2246, 7.2246, 7.2253, 7.225, 7.2258, 7.2256, 7.2265, 7.2264, 7.2273, 7.2271, 7.2268, 7.2268, 7.2266, 7.2263, 7.2263, 7.2262, 7.2262, 7.226, 7.2268, 7.2299, 7.2297, 7.2304, 7.2302, 7.23, 7.2298, 7.2296, 7.2293, 7.229, 7.2288, 7.2306, 7.2306, 7.2313, 7.2311, 7.2319, 7.2318, 7.2316, 7.2317, 7.2315, 7.2312, 7.231, 7.2318, 7.2316, 7.2314, 7.2313, 7.2321, 7.2319, 7.2317, 7.2315, 7.2304, 7.2312, 7.231, 7.2308, 7.2307, 7.2337, 7.2336, 7.2343, 7.2351, 7.2359, 7.2357, 7.2358, 7.2355, 7.2352, 7.2359, 7.2367, 7.2366, 7.2363, 7.2393, 7.2392, 7.2391, 7.239, 7.2387, 7.2394, 7.241, 7.2408, 7.2405, 7.2404, 7.2402, 7.2412, 7.2401, 7.2399, 7.2397, 7.2394, 7.2404, 7.2401, 7.2398, 7.2395, 7.2393, 7.2391, 7.239, 7.2397, 7.2394, 7.2391, 7.2389, 7.2387, 7.2386, 7.2384, 7.2381, 7.2378, 7.2385, 7.2384, 7.239, 7.2388, 7.2386, 7.2384, 7.2381, 7.2379, 7.2378, 7.2377, 7.2374, 7.2371, 7.2377, 7.2367, 7.2365, 7.2363, 7.237, 7.2369, 7.2367, 7.2365, 7.2363, 7.236, 7.2359, 7.2366, 7.2364, 7.2361, 7.2358, 7.2348, 7.2339, 7.2329, 7.2327, 7.2325, 7.2323, 7.2322, 7.2319, 7.2316, 7.2322, 7.2321, 7.2328, 7.2326, 7.2326, 7.2323, 7.2313, 7.2312, 7.2309, 7.2325, 7.2336, 7.2338, 7.2336, 7.2333, 7.2331, 7.2358, 7.2357, 7.2356, 7.2358, 7.2358, 7.2357, 7.2367, 7.2365, 7.2371, 7.2369, 7.2366, 7.2372, 7.2372, 7.2369, 7.2366, 7.2372, 7.2378, 7.2376, 7.2438, 7.2435, 7.2433, 7.243, 7.2427, 7.2425, 7.2425, 7.2424, 7.2421, 7.2419, 7.2417, 7.2415, 7.2421, 7.2419, 7.2418, 7.2417, 7.2414, 7.2414, 7.2411, 7.241, 7.2407, 7.2405, 7.2402, 7.2408, 7.2415, 7.2415, 7.2414, 7.2405, 7.2404, 7.2401, 7.2399, 7.2398, 7.2405, 7.2403, 7.241, 7.2408, 7.2407, 7.2404, 7.2411, 7.2409, 7.2398, 7.2405, 7.2402, 7.2399, 7.2396, 7.2405, 7.2404, 7.2401, 7.2407, 7.2407, 7.2427, 7.2424, 7.2422, 7.2419, 7.2416, 7.2414, 7.2413, 7.2403, 7.2392, 7.2382, 7.2372, 7.2362, 7.2361, 7.2362, 7.2356, 7.2353, 7.235, 7.2347, 7.2345, 7.2363, 7.236, 7.236, 7.2358, 7.2355, 7.2361, 7.2359, 7.2362, 7.2361, 7.236, 7.2358, 7.2357, 7.2354, 7.236, 7.2359, 7.2366, 7.2365, 7.2364, 7.2362, 7.237, 7.2368, 7.2367, 7.2364, 7.2362, 7.236, 7.2357, 7.2355, 7.2353, 7.2352, 7.2359, 7.2356, 7.2358, 7.2365, 7.2363, 7.236, 7.2359, 7.2359, 7.2372, 7.2369, 7.2375, 7.2381, 7.238, 7.2384, 7.2383, 7.2381, 7.2397, 7.2398, 7.2395, 7.2393, 7.2393, 7.239, 7.2388, 7.2395, 7.2402, 7.2399, 7.2389, 7.2387, 7.2385, 7.2384, 7.2382, 7.2381, 7.2372, 7.2371, 7.2369, 7.2368, 7.2367, 7.2366, 7.2367, 7.2365, 7.2371, 7.2369, 7.2366, 7.2372, 7.2378, 7.2376, 7.2382, 7.2389, 7.2386, 7.2384, 7.239, 7.2388, 7.2393, 7.2399, 7.2415, 7.2412, 7.2419, 7.2417, 7.2431, 7.243, 7.2436, 7.2443, 7.244, 7.2438, 7.2445, 7.2443, 7.244, 7.2438, 7.2436, 7.2433, 7.2431, 7.2428, 7.2426, 7.2415, 7.2412, 7.2409, 7.2407, 7.2405, 7.2402, 7.2392, 7.2393, 7.2399, 7.2406, 7.2412, 7.241, 7.2408, 7.2397, 7.2394, 7.2391, 7.24, 7.2397, 7.2395, 7.2392, 7.2392, 7.2398, 7.2395, 7.2393, 7.2392, 7.239, 7.2388, 7.2385, 7.2382, 7.2379, 7.2386, 7.2391, 7.2397, 7.2404, 7.2402, 7.2391, 7.2382, 7.2388, 7.2386, 7.2384, 7.2382, 7.2379, 7.2377, 7.2367, 7.2357, 7.2348, 7.2345, 7.2335, 7.2333, 7.2339, 7.2337, 7.2352, 7.2351, 7.2349, 7.2346, 7.2352, 7.2349, 7.2365, 7.2364, 7.2371, 7.2368, 7.2369, 7.2367, 7.2365, 7.2381, 7.2379, 7.2407, 7.2406, 7.2405, 7.2403, 7.24, 7.2416, 7.2424, 7.2432, 7.2439, 7.2436, 7.2433, 7.243, 7.2419, 7.2418, 7.2415, 7.2412, 7.2411, 7.2401, 7.2399, 7.2397, 7.2403, 7.2402, 7.2399, 7.2425, 7.2422, 7.242, 7.2419, 7.2417, 7.2414, 7.2413, 7.241, 7.2408, 7.2405, 7.2403, 7.2402, 7.2409, 7.2406, 7.2403, 7.2408, 7.2405, 7.2402, 7.241, 7.2408, 7.2406, 7.2395, 7.2392, 7.2393, 7.2415, 7.2413, 7.2407, 7.2413, 7.2412, 7.2418, 7.2417, 7.2415, 7.2412, 7.241, 7.2416, 7.2416, 7.2423, 7.2431, 7.2429, 7.2428, 7.2437, 7.2434, 7.2425, 7.2415, 7.2412, 7.2411, 7.241, 7.2407, 7.2405, 7.2403, 7.2393, 7.2391, 7.2389, 7.2388, 7.2381, 7.2387, 7.2384, 7.2383, 7.2389, 7.2396, 7.2396, 7.2395, 7.2392, 7.2391, 7.239, 7.2388, 7.2387, 7.2384, 7.2375, 7.2373, 7.238, 7.2378, 7.2376, 7.2375, 7.2373, 7.2395, 7.2393, 7.239, 7.2388, 7.2386, 7.2384, 7.2382, 7.2381, 7.238, 7.2378, 7.2375, 7.2375, 7.2373, 7.2371, 7.2369, 7.2367, 7.2367, 7.2365, 7.237, 7.2369, 7.2367, 7.2374, 7.2372, 7.237, 7.2367, 7.2365, 7.2362, 7.2359, 7.2356, 7.2355, 7.2352, 7.2351, 7.2348, 7.2346, 7.2345, 7.2344, 7.2342, 7.234, 7.2337, 7.2336, 7.2335, 7.2334, 7.2335, 7.2333, 7.2331, 7.2337, 7.2336, 7.2361, 7.2358, 7.2355, 7.2359, 7.2357, 7.2373, 7.237, 7.2367, 7.2366, 7.2364, 7.2383, 7.238, 7.2389, 7.2391, 7.2391, 7.2388, 7.2385, 7.2384, 7.2391, 7.2393, 7.2391, 7.2389, 7.2388, 7.2396, 7.2394, 7.2394, 7.2401, 7.24, 7.2397, 7.2394, 7.2391, 7.2389, 7.2387, 7.2394, 7.2392, 7.2397, 7.2394, 7.2393, 7.2398, 7.2396, 7.2394, 7.2392, 7.2398, 7.2398, 7.2397, 7.2398, 7.2409, 7.2406, 7.2404, 7.2402, 7.2401, 7.2399, 7.2398, 7.2397, 7.2396, 7.2396, 7.2402, 7.2399, 7.2396, 7.2403, 7.2401, 7.24, 7.2399, 7.2405, 7.2404, 7.2401, 7.24, 7.2398, 7.2397, 7.2394, 7.2392, 7.2389, 7.2388, 7.2385, 7.2382, 7.238, 7.2378, 7.2384, 7.2381, 7.2378, 7.2376, 7.2374, 7.2371, 7.2377, 7.2384, 7.239, 7.2387, 7.2386, 7.2392, 7.2389, 7.2387, 7.2387, 7.2384, 7.2383, 7.2389, 7.2387, 7.2384, 7.2382, 7.2379, 7.2377, 7.2376, 7.2375, 7.2373, 7.2371, 7.237, 7.2376, 7.2374, 7.2371, 7.2368, 7.2366, 7.2363, 7.2361, 7.2368, 7.2366, 7.2364, 7.2371, 7.2369, 7.2368, 7.2367, 7.2372, 7.2377, 7.2375, 7.2381, 7.2379, 7.2376, 7.2373, 7.2372, 7.2378, 7.2375, 7.2372, 7.2369, 7.2367, 7.2364, 7.2361, 7.2359, 7.2356, 7.2353, 7.2351, 7.2348, 7.2347, 7.2345, 7.2345, 7.2343, 7.2341, 7.2339, 7.2345, 7.2342, 7.234, 7.2338, 7.2336, 7.2334, 7.234, 7.2339, 7.2345, 7.2343, 7.2349, 7.2348, 7.2345, 7.2343, 7.2342, 7.2339, 7.2345, 7.2343, 7.235, 7.2349, 7.2347, 7.2344, 7.2343, 7.2349, 7.2355, 7.2352, 7.2358, 7.2356, 7.2362, 7.236, 7.2358, 7.2371, 7.2372, 7.237, 7.2368, 7.2368, 7.2367, 7.2373, 7.237, 7.2368, 7.2367, 7.2365, 7.2363, 7.2361, 7.2367, 7.2365, 7.2372, 7.2369, 7.2395, 7.2396, 7.2411, 7.2413, 7.2414, 7.242, 7.2428, 7.2427, 7.2442, 7.2441, 7.2432, 7.2431, 7.2446, 7.2444, 7.245, 7.2456, 7.2453, 7.2459, 7.2458, 7.2455, 7.2452, 7.2458, 7.2463, 7.2469, 7.2468, 7.2465, 7.2463, 7.246, 7.2457, 7.2457, 7.2455, 7.2452, 7.2449, 7.2446, 7.2444, 7.2442, 7.2441, 7.2447, 7.2446, 7.2443, 7.2441, 7.2439, 7.2437, 7.2442, 7.2447, 7.2445, 7.2443, 7.244, 7.2437, 7.2442, 7.2448, 7.2446, 7.2444, 7.2442, 7.2448, 7.2453, 7.245, 7.2497, 7.2494, 7.2492, 7.249, 7.2489, 7.2494, 7.2494, 7.2492, 7.249, 7.2495, 7.2492, 7.249, 7.2487, 7.2485, 7.2482, 7.248, 7.2479, 7.2484, 7.2483, 7.2488, 7.2487, 7.2493, 7.2507, 7.2505, 7.2511, 7.2508, 7.2506, 7.2503, 7.2501, 7.2501, 7.25, 7.2498, 7.2503, 7.2509, 7.2514, 7.2529, 7.2527, 7.2524, 7.2538, 7.2544, 7.2541, 7.2532, 7.2531, 7.2537, 7.2539, 7.2537, 7.2536, 7.2554, 7.256, 7.2566, 7.2563, 7.2577, 7.2575, 7.259, 7.2582, 7.258, 7.2596, 7.2593, 7.2591, 7.2588, 7.2586, 7.2583, 7.2582, 7.2588, 7.2585, 7.2583, 7.258, 7.2578, 7.2576, 7.2578, 7.2584, 7.2582, 7.2589, 7.2587, 7.2595, 7.2585, 7.2584, 7.2593, 7.2592, 7.2584, 7.2589, 7.2594, 7.26, 7.2597, 7.2589, 7.2598, 7.2604, 7.2601, 7.26, 7.2598, 7.2605, 7.2604, 7.2602, 7.26, 7.2606, 7.2612, 7.2609, 7.2616, 7.2613, 7.2619, 7.2617, 7.2617, 7.2614, 7.2612, 7.2609, 7.2607, 7.2604, 7.261, 7.2608, 7.2631, 7.2629, 7.2628, 7.2635, 7.2634, 7.264, 7.2646, 7.2644, 7.2643, 7.2665, 7.2664, 7.2662, 7.2661, 7.2667, 7.2674, 7.2672, 7.2679, 7.2677, 7.2676, 7.2673, 7.2671, 7.2669, 7.2668, 7.2667, 7.2666, 7.2672, 7.2672, 7.2669, 7.2675, 7.2674, 7.268, 7.2686, 7.2683, 7.2688, 7.2686, 7.2683, 7.2682, 7.2681, 7.2679, 7.2677, 7.2675, 7.2672, 7.267, 7.2676, 7.2673, 7.267, 7.2667, 7.2665, 7.2662, 7.2667, 7.2667, 7.2665, 7.2662, 7.266, 7.2666, 7.2664, 7.2669, 7.2668, 7.2666, 7.2671, 7.2668, 7.2666, 7.2664, 7.2661, 7.266, 7.2666, 7.2664, 7.2662, 7.2668, 7.2673, 7.2671, 7.267, 7.2668, 7.2674, 7.2673, 7.2679, 7.2676, 7.2682, 7.2681, 7.2678, 7.2677, 7.2676, 7.2673, 7.2678, 7.2676, 7.2675, 7.2674, 7.2674, 7.268, 7.2677, 7.2683, 7.2682, 7.2682, 7.268, 7.2679, 7.2684, 7.2682, 7.2687, 7.2684, 7.2682, 7.268, 7.2685, 7.2683, 7.268, 7.2678, 7.2676, 7.2674, 7.2673, 7.2679, 7.2684, 7.2683, 7.2681, 7.2679, 7.2677, 7.2676, 7.2682, 7.2679, 7.2684, 7.2682, 7.2681, 7.2686, 7.2683, 7.268, 7.2685, 7.2684, 7.2681, 7.2679, 7.2687, 7.27, 7.2705, 7.2704, 7.2702, 7.2707, 7.2705, 7.2702, 7.27, 7.2713, 7.2711, 7.2713, 7.2711, 7.272, 7.2725, 7.2723, 7.2723, 7.2721, 7.2719, 7.2716, 7.2715, 7.2714, 7.2715, 7.2717, 7.2715, 7.2721], '192.168.122.116': [11.6343, 9.1549, 8.628, 7.8345, 8.7598, 8.3031, 7.9929, 7.715, 7.4677, 7.8351, 8.1835, 8.4537, 8.6738, 8.5203, 8.3057, 8.1233, 8.3219, 8.1574, 8.0207, 7.9092, 7.8341, 7.7384, 7.8675, 7.7738, 7.7307, 7.8603, 7.7828, 7.7078, 7.8235, 7.9222, 7.8722, 7.808, 7.7361, 7.8237, 7.7695, 7.7173, 7.7975, 7.7536, 7.8511, 7.7899, 7.7703, 7.754, 7.6972, 7.7744, 7.7201, 7.6738, 7.7459, 7.9257, 7.88, 7.8291, 7.7887, 7.7581, 7.7296, 7.7207, 7.6848, 7.6688, 7.6292, 7.5989, 7.5663, 7.5492, 7.5316, 7.4953, 7.4687, 7.4421, 7.3393, 7.3135, 7.2866, 7.2879, 7.2728, 7.2604, 7.1658, 7.2178, 7.2704, 7.2443, 7.2318, 7.2064, 7.1888, 7.1776, 7.1597, 7.0773, 7.1287, 7.1176, 7.1094, 7.0904, 7.0901, 7.0766, 7.1261, 7.1712, 7.1595, 7.1394, 7.1317, 7.1156, 7.1544, 7.1343, 7.1146, 7.1502, 7.136, 7.1178, 7.1183, 7.1011, 7.0961, 7.1055, 7.0913, 7.0746, 7.0617, 7.1011, 7.0933, 7.1291, 7.1148, 7.1089, 7.0974, 7.0912, 7.0783, 7.0753, 7.0736, 7.067, 7.0543, 7.0915, 7.0755, 7.0617, 7.092, 7.0892, 7.0778, 7.0675, 7.0594, 7.0531, 7.0445, 7.0748, 7.0665, 7.0611, 7.049, 7.0415, 7.0311, 7.0256, 7.0157, 7.0032, 7.0316, 7.0299, 7.0203, 7.0117, 7.0046, 6.9977, 6.9892, 6.9766, 6.9774, 6.9772, 7.0054, 6.997, 6.9914, 7.0195, 7.0169, 7.0449, 7.069, 7.0579, 7.0466, 7.0381, 7.031, 7.0202, 7.0144, 7.005, 7.0293, 7.0523, 7.0765, 7.0664, 7.0567, 7.0805, 7.1054, 7.0953, 7.0919, 7.1165, 7.1093, 7.1051, 7.0993, 7.0896, 7.0841, 7.0779, 7.0712, 7.0663, 7.0587, 7.0533, 7.1096, 7.1006, 7.0958, 7.0878, 7.0777, 7.0696, 7.061, 7.0524, 7.0452, 7.0387, 7.0307, 7.0802, 7.0715, 7.0627, 7.0532, 7.0569, 7.0518, 7.0722, 7.0911, 7.0876, 7.089, 7.0812, 7.0734, 7.0643, 7.0583, 7.0549, 7.0742, 7.072, 7.0718, 7.0672, 7.0646, 7.0593, 7.0532, 7.0471, 7.0426, 7.0634, 7.0618, 7.0591, 7.054, 7.0468, 7.0416, 7.0372, 7.0389, 7.0559, 7.0485, 7.0411, 7.0348, 7.0273, 7.0217, 7.0159, 7.034, 7.0307, 7.0279, 7.0445, 7.0455000000000005, 7.0387, 7.0364, 7.0314, 7.0284, 7.0255, 7.0232, 7.0183, 7.0335, 7.03, 7.0257, 7.0237, 7.0182, 7.0132, 7.0082, 6.9882, 7.0041, 7.0029, 6.9988, 6.9978, 6.9934, 6.9927, 6.9909, 6.9885, 7.0303, 7.0238, 7.0428, 7.0439, 7.0559, 7.0597, 7.0558, 7.0535, 7.0491, 7.0448, 7.0446, 7.0425, 7.0377, 7.0515, 7.0496, 7.0671, 7.0639, 7.0604, 7.0786, 7.074, 7.0696, 7.0653, 7.081, 7.0754, 7.0791, 7.080100000000001, 7.0771, 7.0739, 7.0689, 7.0645, 7.0591, 7.0549, 7.0677, 7.063, 7.0581, 7.0574, 7.0726, 7.0841, 7.0803, 7.093, 7.0912, 7.0873, 7.0832, 7.0957, 7.1107, 7.127, 7.1222, 7.1166, 7.1283, 7.1277, 7.122, 7.1194, 7.1177, 7.1309, 7.1419, 7.1365, 7.1325, 7.1302, 7.1428, 7.1391, 7.1342, 7.1301, 7.1266, 7.125, 7.1233, 7.1188, 7.1158, 7.112, 7.1067, 7.1052, 7.1001, 7.0952, 7.0933, 7.092, 7.0872, 7.0941, 7.0913, 7.0757, 7.0936, 7.108, 7.103, 7.0992, 7.0946, 7.0903, 7.0868, 7.09, 7.075, 7.0721, 7.069, 7.0661, 7.0554, 7.051, 7.068, 7.0655, 7.0667, 7.062, 7.0742, 7.0874, 7.0839, 7.0849, 7.0815, 7.0793, 7.0742, 7.0715, 7.0672, 7.0627, 7.0753, 7.074, 7.0694, 7.0648, 7.0624, 7.0576, 7.0676, 7.0757, 7.0712, 7.0678, 7.0644, 7.0623, 7.0589, 7.0693, 7.0661, 7.0757, 7.0856, 7.0809, 7.0787, 7.077, 7.0724, 7.0825, 7.0786, 7.0766, 7.0723, 7.0937, 7.091, 7.0884, 7.0877, 7.0838, 7.0812, 7.0792, 7.0746, 7.0733, 7.0709, 7.0682, 7.078, 7.088, 7.0869, 7.0996, 7.0952, 7.0913, 7.0875, 7.0965, 7.0947, 7.0923, 7.0885, 7.0848, 7.0944, 7.104, 7.1004, 7.11, 7.1139, 7.1113, 7.0977, 7.0942, 7.0911, 7.1071, 7.1038, 7.1141, 7.1108, 7.1338, 7.1295, 7.1397, 7.1358, 7.1317, 7.1275, 7.113, 7.1217, 7.1315, 7.1275, 7.1252, 7.1333, 7.1292, 7.1334, 7.1302, 7.1388, 7.1349, 7.1426, 7.1397, 7.1404, 7.1493, 7.145, 7.1415, 7.1376, 7.1339, 7.1298, 7.1272, 7.123, 7.1196, 7.117, 7.1041, 7.1009, 7.0977, 7.106, 7.1032, 7.1026, 7.111, 7.1093, 7.106, 7.107, 7.1059, 7.1026, 7.1036, 7.1011, 7.0997, 7.0963, 7.0927, 7.0889, 7.0864, 7.0833, 7.084300000000001, 7.0828, 7.0819, 7.0821, 7.0795, 7.0812, 7.0822, 7.0821, 7.0786, 7.0753, 7.0832, 7.0813, 7.0788, 7.0755, 7.0835, 7.0845, 7.0813, 7.0788, 7.0757, 7.0736, 7.0712, 7.0796, 7.0763, 7.0742, 7.0836, 7.093, 7.0947, 7.0943, 7.0912, 7.0912, 7.0881, 7.0856, 7.0823, 7.079, 7.0767, 7.0748, 7.0729, 7.0705, 7.0683, 7.0672, 7.0666, 7.0645, 7.0627, 7.0607, 7.0626, 7.0608, 7.0578, 7.066, 7.0651, 7.0629, 7.0622, 7.0606, 7.0617, 7.0611, 7.0587, 7.0673, 7.0663, 7.0632, 7.0619, 7.0617, 7.0597, 7.0609, 7.061, 7.0582, 7.0665, 7.0737, 7.0716, 7.0689, 7.067, 7.0641, 7.0639, 7.0712, 7.07, 7.0681, 7.0749, 7.0717, 7.07, 7.0677, 7.0653, 7.063, 7.064, 7.0616, 7.0595, 7.067, 7.0791, 7.0873, 7.0855, 7.0823, 7.0848, 7.085800000000001, 7.0837, 7.0806, 7.0783, 7.0761, 7.0767, 7.0751, 7.0744, 7.0755, 7.0725, 7.0723, 7.0719, 7.0689, 7.066, 7.0657, 7.0725, 7.0797, 7.0869, 7.0855, 7.0837, 7.083, 7.0828, 7.0805, 7.0781, 7.0749, 7.0815, 7.0805, 7.0871, 7.086, 7.0829, 7.0811, 7.0782, 7.0861, 7.0832, 7.0815, 7.083, 7.0812, 7.0804, 7.0775, 7.0756, 7.0741, 7.0716, 7.0783, 7.0754, 7.0736, 7.0712, 7.0697, 7.0685, 7.069500000000001, 7.0667, 7.0672, 7.0648, 7.062, 7.0598, 7.0574, 7.0581, 7.0563, 7.0471, 7.0447, 7.0429, 7.0353, 7.0418, 7.0485, 7.0461, 7.0471, 7.0465, 7.0475, 7.0553, 7.0622, 7.0608, 7.0593, 7.0581, 7.0565, 7.0575, 7.0733, 7.0722, 7.0713, 7.0686, 7.0745, 7.0734, 7.0708, 7.0702, 7.0683, 7.0673, 7.0731, 7.0705, 7.0684, 7.0658, 7.0717, 7.0774, 7.0747, 7.0801, 7.078, 7.0754, 7.0772, 7.0764, 7.0738, 7.0719, 7.0698, 7.076, 7.0738, 7.0722, 7.0713, 7.0719, 7.0699, 7.0677, 7.0655, 7.0637, 7.0619, 7.0602, 7.0669, 7.0644, 7.0703, 7.0761, 7.0823, 7.0803, 7.0795, 7.080500000000001, 7.081500000000001, 7.0872, 7.0847, 7.0842, 7.0845, 7.0824, 7.0802, 7.0783, 7.0757, 7.0734, 7.0724, 7.0708, 7.071, 7.0702, 7.0692, 7.0669, 7.0651, 7.064, 7.0618, 7.0855, 7.0907, 7.0892, 7.0944, 7.0938, 7.0937, 7.0934, 7.0952, 7.0927, 7.0905, 7.09, 7.091, 7.0889, 7.088, 7.086, 7.0845, 7.0844, 7.083, 7.0889, 7.087, 7.0923, 7.0974, 7.0965, 7.0947, 7.0927, 7.0979, 7.1122, 7.1103, 7.1083, 7.1071, 7.1046, 7.1023, 7.1005, 7.0987, 7.1063, 7.1157, 7.1138, 7.1272, 7.126, 7.1238, 7.1295, 7.1275, 7.1322, 7.1332, 7.134200000000001, 7.1329, 7.1377, 7.1363, 7.1338, 7.1502, 7.148, 7.1502, 7.1487, 7.1487, 7.1472, 7.1466, 7.145, 7.1477, 7.1459, 7.1467, 7.1446, 7.1431, 7.1414, 7.1465, 7.1515, 7.1503, 7.1492, 7.150200000000001, 7.1482, 7.146, 7.1439, 7.1415, 7.1406, 7.1389, 7.1391, 7.1401, 7.1639, 7.1922, 7.1913, 7.1889, 7.1866, 7.1857, 7.1837, 7.1831, 7.1876, 7.1855, 7.1905, 7.1885, 7.1867, 7.186, 7.1836, 7.1811, 7.1791, 7.184, 7.182, 7.1873, 7.1862, 7.1842, 7.1825, 7.1865, 7.1841, 7.1818, 7.1798, 7.1839, 7.1815, 7.1864, 7.1908, 7.195, 7.1932, 7.1975, 7.1958, 7.2003, 7.2048, 7.2025, 7.2002, 7.198, 7.1967, 7.1959, 7.1937, 7.1932, 7.191, 7.1899, 7.1956, 7.1935, 7.1924, 7.1917, 7.1916, 7.1962, 7.1945, 7.1928, 7.1909, 7.1907, 7.1889, 7.1875, 7.1888, 7.1867, 7.1847, 7.1828, 7.1809, 7.1789, 7.1771, 7.176, 7.1772, 7.1767, 7.1762, 7.1801, 7.1783, 7.1765, 7.1745, 7.1732, 7.1726, 7.1773, 7.1754, 7.1801, 7.1791, 7.1851, 7.1897, 7.1886, 7.1867, 7.1859, 7.1961, 7.1953, 7.1936, 7.1917, 7.1973, 7.1962, 7.2006, 7.1987, 7.2036, 7.2014, 7.1998, 7.1981, 7.1963, 7.1944, 7.1931, 7.1925, 7.1907, 7.1893, 7.1885, 7.1879, 7.1872, 7.1867, 7.1857, 7.1837, 7.1841, 7.1826, 7.1811, 7.1851, 7.1848, 7.1847, 7.1896, 7.1877, 7.1864, 7.1848, 7.1863, 7.1872, 7.1864, 7.1906, 7.1951, 7.1929, 7.1968, 7.1948, 7.1939, 7.1935, 7.1926, 7.1858, 7.1906, 7.1886, 7.188, 7.1867, 7.186, 7.1849, 7.1837, 7.1822, 7.1871, 7.1854, 7.1837, 7.1826, 7.1808, 7.1845, 7.1828, 7.187, 7.185, 7.1894, 7.1881, 7.1871, 7.1856, 7.1848, 7.1838, 7.1884, 7.1871, 7.1858, 7.186, 7.184, 7.1841, 7.1885, 7.1928, 7.1971, 7.1967, 7.195, 7.2001, 7.1995, 7.1989, 7.1987, 7.1977, 7.196, 7.1944, 7.1933, 7.1917, 7.1898, 7.1888, 7.1927, 7.1913, 7.1901, 7.1884, 7.1883, 7.1932, 7.1983, 7.203, 7.2019, 7.2018, 7.2003, 7.1989, 7.1978, 7.1982, 7.1967, 7.2017, 7.2014, 7.2007, 7.205, 7.2093, 7.2078, 7.2077, 7.2061, 7.2105, 7.2145, 7.2127, 7.2115, 7.2111, 7.2103, 7.2092, 7.2082, 7.2118, 7.2099, 7.2099, 7.209, 7.2078, 7.2126, 7.212, 7.2106, 7.209, 7.2298, 7.2286, 7.2332, 7.2317, 7.2309, 7.2293, 7.2279, 7.2263, 7.2301, 7.229, 7.233, 7.2324, 7.231, 7.2301, 7.2284, 7.2266, 7.225, 7.2242, 7.2227, 7.221, 7.2216, 7.2201, 7.2188, 7.2228, 7.2213, 7.2252, 7.2238, 7.2227, 7.2208, 7.2195, 7.2194, 7.2182, 7.2166, 7.215, 7.2142, 7.2123, 7.2111, 7.2152, 7.2146, 7.2148, 7.2153, 7.2138, 7.2133, 7.2131, 7.2116, 7.2112, 7.2118, 7.2106, 7.2091, 7.2131, 7.2122, 7.2105, 7.2095, 7.2133, 7.212, 7.2158, 7.215, 7.2139, 7.2077, 7.2061, 7.2045, 7.2039, 7.203, 7.2014, 7.1998, 7.2038, 7.2083, 7.2117, 7.211, 7.2097, 7.2084, 7.207, 7.2057, 7.2042, 7.2027, 7.2117, 7.2108, 7.2094, 7.2088, 7.2123, 7.2157, 7.219, 7.2173, 7.2168, 7.2155, 7.2192, 7.2174, 7.2157, 7.214, 7.2127, 7.2162, 7.215, 7.2133, 7.2116, 7.2099, 7.2085, 7.2069, 7.2056, 7.204, 7.2033, 7.2022, 7.206, 7.2042, 7.2032, 7.2016, 7.2007, 7.2002, 7.1989, 7.198, 7.1968, 7.2003, 7.2093, 7.2076, 7.2108, 7.2095, 7.2082, 7.2073, 7.2059, 7.2046, 7.2035, 7.207, 7.2055, 7.2039, 7.2072, 7.206, 7.2044, 7.2035, 7.2067, 7.2103, 7.2086, 7.2073, 7.2111, 7.211, 7.2098, 7.2086, 7.207, 7.2057, 7.2051, 7.2042, 7.2078, 7.2066, 7.209, 7.2154, 7.2146, 7.2157, 7.2151, 7.2234, 7.222, 7.2207, 7.2242, 7.2225, 7.2213, 7.2198, 7.2233, 7.2218, 7.2201, 7.2193, 7.2197, 7.229, 7.2275, 7.2263, 7.2256, 7.2242, 7.2234, 7.222, 7.2212, 7.2197, 7.2231, 7.2223, 7.2255, 7.2243, 7.2227, 7.221, 7.2194, 7.2183, 7.2175, 7.2166, 7.215, 7.2136, 7.2131, 7.2122, 7.2107, 7.2138, 7.2124, 7.2115, 7.2103, 7.2094, 7.2108, 7.2188, 7.2264, 7.2253, 7.2261, 7.2246, 7.223, 7.2214, 7.2198, 7.2183, 7.2213, 7.2255, 7.2285, 7.227, 7.2259, 7.2243, 7.2232, 7.2263, 7.2247, 7.2233, 7.2218, 7.2249, 7.2285, 7.2274, 7.2259, 7.2253, 7.2238, 7.2266, 7.2253, 7.2242, 7.2242, 7.2239, 7.2222, 7.2207, 7.2241, 7.2226, 7.2211, 7.2201, 7.2233, 7.2272, 7.2276, 7.2264, 7.2256, 7.229, 7.2275, 7.2265, 7.2271, 7.2299, 7.2283, 7.2267, 7.2253, 7.2249, 7.2284, 7.2317, 7.2303, 7.2298, 7.2284, 7.2272, 7.2262, 7.2257, 7.2292, 7.2282, 7.2276, 7.2284, 7.2271, 7.23, 7.2294, 7.2325, 7.2314, 7.2304, 7.2344, 7.2331, 7.2323, 7.2311, 7.2312, 7.2297, 7.2288, 7.2283, 7.2276, 7.227, 7.2265, 7.2277, 7.2266, 7.2256, 7.2247, 7.2249, 7.2239, 7.227, 7.2256, 7.2252, 7.2239, 7.2224, 7.2214, 7.2243, 7.2232, 7.2221, 7.2206, 7.2234, 7.2226, 7.2212, 7.2203, 7.2195, 7.2191, 7.2281, 7.2272, 7.2295, 7.2343, 7.2333, 7.2318, 7.2311, 7.2302, 7.229, 7.2379, 7.2365, 7.2357, 7.2344, 7.2343, 7.233, 7.2322, 7.2314, 7.2305, 7.2343, 7.2331, 7.2326, 7.2313, 7.2348, 7.2383, 7.2415, 7.2411, 7.2401, 7.2435, 7.243, 7.2465, 7.2492, 7.2481, 7.2473, 7.2462, 7.2456, 7.2446, 7.2434, 7.2421, 7.2414, 7.2409, 7.2482, 7.2552, 7.2546, 7.2574, 7.2604, 7.2591, 7.2582, 7.2577, 7.2567, 7.2559, 7.2585, 7.2584, 7.2612, 7.26, 7.2592, 7.2589, 7.2576, 7.2567, 7.2559, 7.2549, 7.2537, 7.2531, 7.2561, 7.2559, 7.2544, 7.2531, 7.2519, 7.2514, 7.2511, 7.2497, 7.2485, 7.2478, 7.2467, 7.2454, 7.2449, 7.2447, 7.2435, 7.2429, 7.242, 7.2406, 7.2437, 7.2463, 7.2501, 7.2493, 7.2482, 7.2476, 7.2463, 7.2489, 7.2519, 7.2509, 7.2497, 7.2488, 7.2477, 7.2469, 7.246, 7.2485, 7.2477, 7.2467, 7.2455, 7.2447, 7.2434, 7.242, 7.2445, 7.2469, 7.2455, 7.2451, 7.2497, 7.2561, 7.2562, 7.2565, 7.2552, 7.2617, 7.2607, 7.2636, 7.2664, 7.2653, 7.2648, 7.2636, 7.2625, 7.2613, 7.2608, 7.2599, 7.2624, 7.261, 7.2597, 7.2582, 7.2573, 7.256, 7.2557, 7.2547, 7.2576, 7.2604, 7.259, 7.2577, 7.257, 7.2596, 7.2626, 7.2622, 7.261, 7.2601, 7.2626, 7.2613, 7.2605, 7.2603, 7.2601, 7.2558, 7.2552, 7.2543, 7.2533, 7.2529, 7.2523, 7.2513, 7.2503, 7.2496, 7.2486, 7.2475, 7.2462, 7.2455, 7.2441, 7.2439, 7.2429, 7.246, 7.2453, 7.2487, 7.2477, 7.2477, 7.2499, 7.2487, 7.2517, 7.2509, 7.2535, 7.2523, 7.2518, 7.2543, 7.2567, 7.2558, 7.2546, 7.2534, 7.2523, 7.2551, 7.2542, 7.2537, 7.2532, 7.252, 7.2512, 7.2541, 7.253, 7.2524, 7.2551, 7.2542, 7.2542, 7.2534, 7.2529, 7.2518, 7.2514, 7.2504, 7.2493, 7.248, 7.2469, 7.2467, 7.2456, 7.2481, 7.247, 7.2461, 7.245, 7.2443, 7.2434, 7.2434, 7.2466, 7.2496, 7.2484, 7.2508, 7.2532, 7.2519, 7.2513, 7.2536, 7.2524, 7.2513, 7.2502, 7.2492, 7.2481, 7.2472, 7.246, 7.2457, 7.2447, 7.244, 7.2465, 7.2453, 7.2442, 7.2429, 7.242, 7.2408, 7.2434, 7.2425, 7.2419, 7.2409, 7.2438, 7.2462, 7.2457, 7.2479, 7.2608, 7.2596, 7.262, 7.2611, 7.2598, 7.259, 7.2582, 7.2575, 7.2604, 7.2601, 7.2591, 7.2585, 7.2574, 7.2568, 7.2556, 7.2581, 7.2571, 7.2564, 7.2557, 7.2584, 7.2606, 7.2602, 7.2647, 7.2642, 7.2668, 7.2692, 7.2687, 7.2681, 7.2706, 7.2697, 7.2724, 7.2714, 7.2708, 7.2698, 7.2705, 7.2695, 7.2718, 7.2707, 7.2695, 7.2683, 7.2671, 7.2661, 7.2649, 7.264, 7.2628, 7.2617, 7.2605, 7.26, 7.2624, 7.2615, 7.2604, 7.2591, 7.2581, 7.257, 7.2591, 7.2582, 7.264, 7.2631, 7.2619, 7.2609, 7.2602, 7.2591, 7.2579, 7.2567, 7.2559, 7.2547, 7.2536, 7.2559, 7.2549, 7.2538, 7.2561, 7.2555, 7.2548, 7.2547, 7.257, 7.2563, 7.2555, 7.2549, 7.2538, 7.2561, 7.2553, 7.2542, 7.2565, 7.2554, 7.2543, 7.2531, 7.2489, 7.2477, 7.2467, 7.2457, 7.2446, 7.2436, 7.2429, 7.2417, 7.2405, 7.2396, 7.2386, 7.2411, 7.2408, 7.2462, 7.2451, 7.2445, 7.244, 7.243, 7.2391, 7.2454, 7.2449, 7.2442, 7.243, 7.2423, 7.2419, 7.2416, 7.2406, 7.2397, 7.2421, 7.2411, 7.2404, 7.2425, 7.2413, 7.2405, 7.2398, 7.2395, 7.2383, 7.2376, 7.2366, 7.2363, 7.2383, 7.2371, 7.2363, 7.2419, 7.2408, 7.2398, 7.2389, 7.238, 7.2371, 7.2359, 7.2349, 7.2369, 7.236, 7.2354, 7.2347, 7.2341, 7.2337, 7.2329, 7.2318, 7.234, 7.2329, 7.232, 7.2315, 7.2313, 7.2333, 7.2325, 7.2329, 7.2408, 7.2429, 7.2419, 7.2443, 7.2462, 7.2455, 7.2448, 7.2451, 7.2475, 7.2466, 7.2454, 7.2443, 7.2462, 7.2456, 7.2449, 7.2442, 7.2432, 7.2424, 7.245, 7.2443, 7.2436, 7.2429, 7.2421, 7.2412, 7.2411, 7.2408, 7.24, 7.2396, 7.2389, 7.2382, 7.2374, 7.2434, 7.2427, 7.2426, 7.2448, 7.2443, 7.2436, 7.2464, 7.2484, 7.2474, 7.2466, 7.2486, 7.2514, 7.2504, 7.2497, 7.2485, 7.2476, 7.2465, 7.2472, 7.2469, 7.2462, 7.2457, 7.2449, 7.244, 7.2449, 7.2443, 7.2438, 7.2432, 7.2433, 7.2427, 7.2417, 7.2416, 7.2407, 7.2398, 7.2388, 7.2411, 7.2402, 7.2393, 7.2383, 7.2371, 7.2362, 7.2383, 7.2403, 7.2394, 7.2414, 7.2448, 7.2466, 7.2457, 7.2446, 7.2437, 7.2434, 7.2427, 7.2416, 7.2407, 7.2396, 7.2389, 7.241, 7.2508, 7.2505, 7.2496, 7.2498, 7.2492, 7.2482, 7.2472, 7.2493, 7.2484, 7.2504, 7.2494, 7.2485, 7.2482, 7.2473, 7.2454, 7.2444, 7.2433, 7.2424, 7.2413, 7.2404, 7.2398, 7.239, 7.2382, 7.2371, 7.2393, 7.2384, 7.2381, 7.2382, 7.2373, 7.2365, 7.2356, 7.2376, 7.2397, 7.2389, 7.2382, 7.2376, 7.2369, 7.2363, 7.2357, 7.2353, 7.2348, 7.2342, 7.2364, 7.2353, 7.2376, 7.2366, 7.2363, 7.2354, 7.2346, 7.2342, 7.2337, 7.2327, 7.2329, 7.2341, 7.2332, 7.2322, 7.2354, 7.2344, 7.2354, 7.2375, 7.2365, 7.2385, 7.2379, 7.2369, 7.2362, 7.2355, 7.2347, 7.2342, 7.234, 7.2334, 7.2357, 7.2349, 7.2348, 7.234, 7.2342, 7.2362, 7.2352, 7.235, 7.2344, 7.2342, 7.2409, 7.2411, 7.2468, 7.2464, 7.2473, 7.2469, 7.2491, 7.2536, 7.2529, 7.2521, 7.2511, 7.2533, 7.2527, 7.2519, 7.2511, 7.2505, 7.2498, 7.2488, 7.2479, 7.2476, 7.2475, 7.2472, 7.2494, 7.2465, 7.243, 7.2432, 7.2497, 7.2497, 7.2491, 7.2486, 7.2508, 7.2498, 7.2516, 7.2507, 7.25, 7.2494, 7.2496, 7.2489, 7.2481, 7.2485, 7.2477, 7.2469, 7.2467, 7.2457, 7.2449, 7.2443, 7.2433, 7.2455, 7.245, 7.2448, 7.244, 7.2461, 7.246, 7.2454, 7.2454, 7.2446, 7.2441, 7.2432, 7.2426, 7.2427, 7.2417, 7.2409, 7.2454, 7.2449, 7.2443, 7.244, 7.2461, 7.2458, 7.2451, 7.2469, 7.246, 7.245, 7.2441, 7.2438, 7.2428, 7.2422, 7.2416, 7.2438, 7.2457, 7.2451, 7.2473, 7.2472, 7.2465, 7.2455, 7.2476, 7.2493, 7.2513, 7.2509, 7.2527, 7.2521, 7.2539, 7.2532, 7.253, 7.2522, 7.2521, 7.2546, 7.2541, 7.2538, 7.2531, 7.2523, 7.2523, 7.2513, 7.251, 7.2503, 7.2494, 7.2486, 7.248, 7.2484, 7.2481, 7.2504, 7.2498, 7.2489, 7.2479, 7.2469, 7.2468, 7.2466, 7.2457, 7.2505, 7.2498, 7.2492, 7.2483, 7.248, 7.2502, 7.2502, 7.2494, 7.2493, 7.2493, 7.2522, 7.2515, 7.2535, 7.2536, 7.2615, 7.2605, 7.2596, 7.259, 7.2587, 7.258, 7.257, 7.2561, 7.2555, 7.2551, 7.2543, 7.2541, 7.2538, 7.2536, 7.2557, 7.2549, 7.2542, 7.2541, 7.2572, 7.2565, 7.2589, 7.2584, 7.2583, 7.2574, 7.2573, 7.2571, 7.2563, 7.2557, 7.2554, 7.2549, 7.2571, 7.2562, 7.2564, 7.2535, 7.2554, 7.2554, 7.2546, 7.2562, 7.2555, 7.2575, 7.2596, 7.259, 7.2582, 7.2577, 7.2568, 7.2587, 7.2603, 7.2595, 7.259, 7.2584, 7.258, 7.2577, 7.2571, 7.2569, 7.2563, 7.2536, 7.2527, 7.2545, 7.2541, 7.2536, 7.2531, 7.2562, 7.2553, 7.2548, 7.2539, 7.2531, 7.2527, 7.2517, 7.2509, 7.2503, 7.2495, 7.2487, 7.2481, 7.2477, 7.2467, 7.2462, 7.2479, 7.2472, 7.2464, 7.2476, 7.2469, 7.2486, 7.248, 7.25, 7.25, 7.2491, 7.2511, 7.2522, 7.2513, 7.2507, 7.2503, 7.2494, 7.2485, 7.2477, 7.2468, 7.2462, 7.2454, 7.2446, 7.2467, 7.2493, 7.2487, 7.2478, 7.2469, 7.2467, 7.2467, 7.2458, 7.2452, 7.2442, 7.2436, 7.2426, 7.2443, 7.2437, 7.243, 7.2421, 7.2438, 7.2433, 7.2435, 7.2426, 7.2475, 7.2469, 7.2463, 7.2454, 7.2473, 7.2478, 7.2475, 7.247, 7.2468, 7.2461, 7.2453, 7.2447, 7.2465, 7.2455, 7.245, 7.2443, 7.2446, 7.244, 7.2435, 7.2427, 7.2419, 7.2411, 7.2407, 7.2398, 7.239, 7.2384, 7.2376, 7.2394, 7.2412, 7.2456, 7.2456, 7.2448, 7.244, 7.2431, 7.2446, 7.2463, 7.254, 7.2567, 7.2596, 7.2641, 7.2634, 7.263, 7.2628, 7.2621, 7.2614, 7.2606, 7.26, 7.2623, 7.2619, 7.2593, 7.2587, 7.2588, 7.2582, 7.2599, 7.2596, 7.2592, 7.2584, 7.2575, 7.2566, 7.2557, 7.255, 7.2543, 7.2542, 7.2557, 7.2549, 7.2565, 7.2558, 7.2549, 7.2545, 7.2539, 7.2531, 7.2547, 7.2538, 7.2529, 7.2521, 7.2515, 7.2508, 7.2566, 7.2564, 7.256, 7.2553, 7.2549, 7.2541, 7.2532, 7.2528, 7.2525, 7.2517, 7.2509, 7.2502, 7.252, 7.2512, 7.2508, 7.2501, 7.252, 7.2511, 7.2503, 7.2496, 7.249, 7.2488, 7.248, 7.2471, 7.2464, 7.2479, 7.2477, 7.2494, 7.2487, 7.248, 7.2472, 7.2465, 7.2465, 7.2467, 7.2461, 7.2454, 7.2446, 7.2439, 7.2431, 7.2424, 7.242, 7.2413, 7.2408, 7.2448, 7.2445, 7.2442, 7.2436, 7.2435, 7.2453, 7.2451, 7.2467, 7.2459, 7.2453, 7.2446, 7.2437, 7.2436, 7.2432, 7.2446, 7.2441, 7.2433, 7.2451, 7.2468, 7.246, 7.2463, 7.2459, 7.2452, 7.2467, 7.2459, 7.2455, 7.2451, 7.2443, 7.2437, 7.2429, 7.2423, 7.2416, 7.241, 7.2426, 7.2419, 7.2412, 7.2405, 7.2422, 7.2417, 7.2411, 7.2405, 7.243, 7.2427, 7.242, 7.2412, 7.2404, 7.2396, 7.241, 7.2408, 7.24, 7.2416, 7.2407, 7.2401, 7.2392, 7.2387, 7.2379, 7.2373, 7.2367, 7.2362, 7.2358, 7.2389, 7.2383, 7.2375, 7.2369, 7.2365, 7.2361, 7.2353, 7.2345, 7.2337, 7.2338, 7.233, 7.2346, 7.2343, 7.2337, 7.2334, 7.2327, 7.2322, 7.2336, 7.2329, 7.2322, 7.2314, 7.2306, 7.2301, 7.2295, 7.2292, 7.2285, 7.2315, 7.2307, 7.2301, 7.2297, 7.2316, 7.2309, 7.2301, 7.2297, 7.2312, 7.2329, 7.2327, 7.2322, 7.2314, 7.2311, 7.233, 7.2325, 7.2316, 7.2355, 7.2373, 7.2392, 7.2388, 7.2363, 7.236, 7.2353, 7.237, 7.2361, 7.2375, 7.2367, 7.2361, 7.2359, 7.2353, 7.235, 7.2367, 7.236, 7.2355, 7.2353, 7.235, 7.2342, 7.2334, 7.2327, 7.2324, 7.2343, 7.2358, 7.2382, 7.2374, 7.2392, 7.2384, 7.2402, 7.2418, 7.241, 7.2404, 7.2419, 7.2416, 7.2511, 7.2507, 7.25, 7.2495, 7.2488, 7.2496, 7.2543, 7.2539, 7.2534, 7.2526, 7.2552, 7.2545, 7.2586, 7.2649, 7.2644, 7.2639, 7.2655, 7.2647, 7.2643, 7.266, 7.2653, 7.2647, 7.2641, 7.2639, 7.2633, 7.2627, 7.2624, 7.2619, 7.2635, 7.2629, 7.2621, 7.2614, 7.2611, 7.2603, 7.2601, 7.2595, 7.261, 7.2604, 7.2601, 7.2595, 7.26, 7.2597, 7.2596, 7.2595, 7.2623, 7.262, 7.2612, 7.2608, 7.2628, 7.2625, 7.2617, 7.2614, 7.2607, 7.2602, 7.26, 7.2594, 7.2593, 7.261, 7.2604, 7.2602, 7.2594, 7.2587, 7.2579, 7.2572, 7.2567, 7.256, 7.2555, 7.255, 7.2542, 7.2535, 7.253, 7.2523, 7.2516, 7.251, 7.2505, 7.2498, 7.2492, 7.2486, 7.2502, 7.2502, 7.2496, 7.2512, 7.2508, 7.2503, 7.2499, 7.2491, 7.2486, 7.2501, 7.2495, 7.249, 7.2488, 7.2504, 7.25, 7.2494, 7.249, 7.2482, 7.2477, 7.2472, 7.2465, 7.2467, 7.2459, 7.2499, 7.2494, 7.2487, 7.2479, 7.2472, 7.2466, 7.2461, 7.2476, 7.2469, 7.2484, 7.2477, 7.2471, 7.2464, 7.248, 7.2475, 7.2468, 7.2462, 7.2479, 7.2476, 7.2473, 7.2473, 7.2469, 7.2462, 7.2456, 7.2451, 7.2446, 7.2439, 7.2434, 7.2429, 7.2443, 7.2459, 7.2452, 7.2446, 7.2443, 7.2436, 7.2452, 7.2448, 7.2441, 7.2456, 7.245, 7.2443, 7.2436, 7.2454, 7.2447, 7.2441, 7.2438, 7.243, 7.2422, 7.2423, 7.2417, 7.2411, 7.2405, 7.2398, 7.2396, 7.2411, 7.2408, 7.2432, 7.2449, 7.2442, 7.2436, 7.2432, 7.2429, 7.2424, 7.2417, 7.2413, 7.2408, 7.2425, 7.242, 7.2413, 7.2426, 7.2419, 7.2434, 7.2429, 7.2423, 7.2418, 7.2523, 7.2517, 7.2512, 7.2525, 7.2521, 7.2535, 7.2551, 7.2543, 7.2535, 7.2528, 7.2528, 7.2521, 7.2537, 7.2532, 7.2537, 7.2531, 7.2545, 7.254, 7.2533, 7.255, 7.2545, 7.2539, 7.2534, 7.2528, 7.2546, 7.254, 7.2538, 7.2532, 7.2525, 7.253, 7.2565, 7.2561, 7.2554, 7.2547, 7.2564, 7.2558, 7.2552, 7.2548, 7.2545, 7.2541, 7.2535, 7.2528, 7.2525, 7.2521, 7.2539, 7.2536, 7.253, 7.2588, 7.2583, 7.2598, 7.2593, 7.2586, 7.2584, 7.2581, 7.2574, 7.2566, 7.2607, 7.2609, 7.2607, 7.2621, 7.2614, 7.2607, 7.262, 7.2613, 7.2605, 7.2597, 7.259, 7.2584, 7.2576, 7.2572, 7.2565, 7.2559, 7.2554, 7.2569, 7.2561, 7.2568, 7.2566, 7.2572, 7.2587, 7.2581, 7.2577, 7.257, 7.2563, 7.2559, 7.2556, 7.2553, 7.2547, 7.2606, 7.2621, 7.2614, 7.2609, 7.2587, 7.258, 7.2575, 7.2571, 7.2587, 7.2581, 7.2579, 7.2572, 7.2567, 7.2563, 7.2561, 7.2554, 7.2569, 7.2563, 7.2556, 7.2554, 7.2551, 7.2546, 7.256, 7.2558, 7.2553, 7.255, 7.2544, 7.254, 7.2536, 7.2552, 7.2548, 7.2547, 7.2542, 7.254, 7.2534, 7.2529, 7.2542, 7.258, 7.2574, 7.2569, 7.2566, 7.2559, 7.2554, 7.2551, 7.2567, 7.2563, 7.2563, 7.2558, 7.2574, 7.2567, 7.2562, 7.2557, 7.2553, 7.2568, 7.2561, 7.2554, 7.2548, 7.2544, 7.2557, 7.255, 7.2545, 7.2539, 7.2533, 7.2527, 7.254, 7.2541, 7.2536, 7.2529, 7.2523, 7.2517, 7.2532, 7.2528, 7.2521, 7.2534, 7.255, 7.2565, 7.2601, 7.2595, 7.2589, 7.2603, 7.2602, 7.2597, 7.2613, 7.2608, 7.2601, 7.2598, 7.2651, 7.2656, 7.2652, 7.2653, 7.2675, 7.2672, 7.2669, 7.2664, 7.268, 7.2696, 7.2692, 7.2712, 7.2711, 7.2736, 7.2731, 7.2746, 7.2761, 7.2756, 7.2754, 7.275, 7.2746, 7.276, 7.2756, 7.2751, 7.2769, 7.2767, 7.2762, 7.2757, 7.275, 7.2745, 7.2742, 7.2757, 7.2752, 7.2747, 7.2741, 7.2721, 7.2701, 7.2681, 7.2696, 7.2677, 7.2671, 7.2672, 7.2693, 7.2687, 7.2682, 7.2679, 7.2673, 7.2666, 7.2684, 7.2691, 7.2685, 7.2701, 7.2695, 7.2756, 7.2752, 7.2802, 7.2797, 7.279, 7.2788, 7.2783, 7.278, 7.2774, 7.2752, 7.2746, 7.2742, 7.2777, 7.2773, 7.2766, 7.2779, 7.2777, 7.279, 7.2787, 7.2782, 7.278, 7.2774, 7.2772, 7.2766, 7.276, 7.2757, 7.2753, 7.2747, 7.2762, 7.2755, 7.2748, 7.2742, 7.2735, 7.273, 7.2725, 7.2719, 7.2717, 7.2718, 7.2731, 7.2745, 7.2742, 7.2755, 7.2748, 7.2741, 7.2734, 7.2734, 7.2748, 7.2744, 7.2778, 7.2778, 7.2773, 7.2767, 7.2761, 7.2756, 7.2749, 7.2784, 7.2779, 7.2793, 7.2788, 7.2781, 7.2778, 7.2771, 7.2765, 7.2758, 7.2752, 7.2765, 7.2761, 7.2757, 7.277, 7.2763, 7.2757, 7.2751, 7.2747, 7.2743, 7.274, 7.2736, 7.2731, 7.2724, 7.2717, 7.271, 7.2703, 7.2698, 7.2691, 7.2704, 7.2698, 7.2709, 7.2723, 7.2716, 7.2711, 7.2723, 7.2721, 7.2716, 7.2717, 7.2713, 7.2707, 7.2726, 7.2761, 7.2755, 7.2748, 7.2746, 7.274, 7.2734, 7.2746, 7.276, 7.2754, 7.2748, 7.2749, 7.2762, 7.2776, 7.2789, 7.2802, 7.2858, 7.2869, 7.2865, 7.2859, 7.2855, 7.2849, 7.2847, 7.284, 7.2836, 7.2831, 7.2825, 7.2821, 7.2833, 7.2826, 7.2824, 7.2819, 7.2814, 7.281, 7.2806, 7.2821, 7.2833, 7.2828, 7.2823, 7.2819, 7.2813, 7.2808, 7.2803, 7.2798, 7.2813, 7.281, 7.2829, 7.2826, 7.2823, 7.2818, 7.2815, 7.281, 7.2805, 7.2801, 7.2814, 7.2809, 7.2802, 7.2796, 7.2792, 7.2788, 7.2788, 7.2802, 7.2799, 7.2796, 7.2793, 7.2787, 7.2782, 7.2793, 7.2788, 7.2784, 7.2779, 7.2773, 7.277, 7.2763, 7.2775, 7.2771, 7.2767, 7.2762, 7.2767, 7.2765, 7.276, 7.2754, 7.2749, 7.2742, 7.2737, 7.2732, 7.293, 7.2944, 7.2938, 7.2934, 7.2927, 7.292, 7.2914, 7.2911, 7.291, 7.289, 7.2893, 7.289, 7.2885, 7.2882, 7.2876, 7.2886, 7.2879, 7.2892, 7.2886, 7.2898, 7.291, 7.2904, 7.2898, 7.2891, 7.2885, 7.2896, 7.2932, 7.2926, 7.2927, 7.2927, 7.2942, 7.294, 7.2935, 7.295, 7.2947, 7.2943, 7.2938, 7.2932, 7.2925, 7.2927, 7.2927, 7.2928, 7.2964, 7.296, 7.2994, 7.299, 7.2986, 7.2985, 7.2979, 7.2975, 7.2989, 7.2989, 7.2986, 7.299, 7.2988, 7.3016, 7.2999, 7.2998, 7.3014, 7.301, 7.3005, 7.3032, 7.3057, 7.3055, 7.305, 7.3045, 7.3065, 7.3059, 7.3055, 7.3068, 7.3064, 7.306, 7.3056, 7.3052, 7.3048, 7.3048, 7.3029, 7.3031, 7.3025, 7.3026, 7.3019, 7.3013, 7.3007, 7.3002, 7.2996, 7.3009, 7.304, 7.3036, 7.303, 7.3008, 7.3001, 7.2997, 7.3007, 7.3019, 7.3014, 7.3007, 7.3002, 7.3017, 7.3047, 7.3032, 7.3047, 7.3042, 7.3048, 7.3044, 7.3038, 7.3037, 7.3033, 7.3031, 7.3025, 7.3019, 7.3013, 7.3009, 7.3002, 7.2999, 7.3011, 7.3005, 7.3004, 7.2998, 7.2992, 7.2986, 7.298, 7.2979, 7.2975, 7.2973, 7.2971, 7.2965, 7.2962, 7.2957, 7.2969, 7.2963, 7.2963, 7.2957, 7.2987, 7.2987, 7.3022, 7.3035, 7.3046, 7.3042, 7.3054, 7.3051, 7.3045, 7.3041, 7.3038, 7.3032, 7.3029, 7.3041, 7.3036, 7.3036, 7.3032, 7.3028, 7.3024, 7.3037, 7.3031, 7.3026, 7.3022, 7.3016, 7.3012, 7.3006, 7.3, 7.2995, 7.2995, 7.2989, 7.2984, 7.2995, 7.3033, 7.3028, 7.3065, 7.3059, 7.3054, 7.3052, 7.3054, 7.305, 7.3046, 7.3044, 7.3042, 7.3037, 7.3033, 7.3046, 7.3041, 7.304, 7.3034, 7.3028, 7.3038, 7.3034, 7.3028, 7.3039, 7.3036, 7.3031, 7.3029, 7.3024, 7.3019, 7.3017, 7.3011, 7.3018, 7.3013, 7.3009, 7.3005, 7.3005, 7.3006, 7.3004, 7.3017, 7.3029, 7.3023, 7.3019, 7.3013, 7.301, 7.3007, 7.3003, 7.3001, 7.298, 7.2962, 7.2944, 7.2941, 7.2938, 7.2948, 7.2959, 7.2956, 7.295, 7.2945, 7.2947, 7.2945, 7.2941, 7.2938, 7.2935, 7.2932, 7.2929, 7.2923, 7.2956, 7.295, 7.2945, 7.2955, 7.2954, 7.2967, 7.2966, 7.296, 7.2956, 7.2967, 7.2978, 7.2976, 7.297, 7.2968, 7.2962, 7.2956, 7.295, 7.2944, 7.2938, 7.2935, 7.2946, 7.294, 7.2951, 7.2962, 7.2974, 7.2986, 7.2965, 7.296, 7.2953, 7.2947, 7.2943, 7.2942, 7.2953, 7.2949, 7.2946, 7.2943, 7.2937, 7.2934, 7.2928, 7.2923, 7.2922, 7.2918, 7.2912, 7.291, 7.2908, 7.2902, 7.2914, 7.291, 7.2923, 7.2924, 7.292, 7.2915, 7.2909, 7.2922, 7.2916, 7.2913, 7.2907, 7.2903, 7.2913, 7.2908, 7.2918, 7.2913, 7.2911, 7.2905, 7.2899, 7.2893, 7.2905, 7.2915, 7.291, 7.2904, 7.29, 7.2897, 7.2895, 7.2889, 7.2902, 7.2913, 7.2907, 7.2904, 7.2898, 7.2894, 7.2908, 7.2905, 7.2903, 7.2916, 7.2912, 7.2924, 7.2921, 7.2915, 7.2925, 7.2921, 7.2932, 7.2929, 7.2925, 7.2906, 7.2918, 7.2914, 7.291, 7.2907, 7.2902, 7.2899, 7.2898, 7.2893, 7.2905, 7.2901, 7.2899, 7.2895, 7.2908, 7.2906, 7.2901, 7.2897, 7.2891, 7.2889, 7.2885, 7.2896, 7.2891, 7.2887, 7.2882, 7.2876, 7.2872, 7.2869, 7.2865, 7.2861, 7.2859, 7.2854, 7.2865, 7.2862, 7.2857, 7.2869, 7.2866, 7.2862, 7.2859, 7.2854, 7.2848, 7.2843, 7.284, 7.2836, 7.2832, 7.2829, 7.2824, 7.2818, 7.2813, 7.2807, 7.2804, 7.2802, 7.2798, 7.2794, 7.279, 7.2784, 7.2781, 7.2776, 7.2777, 7.2803, 7.2802, 7.2786, 7.2782, 7.2779, 7.2775, 7.2769, 7.2768, 7.2763, 7.2757, 7.2754, 7.2751, 7.2732, 7.2729, 7.2725, 7.2719, 7.2714, 7.2709, 7.2705, 7.2716, 7.2713, 7.2734, 7.2732, 7.2726, 7.2736, 7.2731, 7.2731, 7.2725, 7.2721, 7.2717, 7.2728, 7.2722, 7.2718, 7.2712, 7.2708, 7.2719, 7.272, 7.2717, 7.2716, 7.2711, 7.2706, 7.2701, 7.2696, 7.269, 7.2686, 7.2697, 7.2694, 7.269, 7.2684, 7.268, 7.269, 7.2685, 7.2681, 7.2678, 7.2672, 7.2666, 7.266, 7.2655, 7.2654, 7.265, 7.2647, 7.2658, 7.2658, 7.2654, 7.2651, 7.2646, 7.2643, 7.2654, 7.2649, 7.2644, 7.2639, 7.2639, 7.2634, 7.2629, 7.2625, 7.2634, 7.2692, 7.2673, 7.267, 7.2667, 7.2662, 7.271, 7.2721, 7.2719, 7.2715, 7.271, 7.2723, 7.2719, 7.2714, 7.271, 7.2708, 7.2704, 7.2702, 7.27, 7.2696, 7.269, 7.2718, 7.2714, 7.2758, 7.2756, 7.2758, 7.2754, 7.2752, 7.2747, 7.2743, 7.2738, 7.2752, 7.2758, 7.2753, 7.2749, 7.2744, 7.2739, 7.2739, 7.2749, 7.2761, 7.2756, 7.2755, 7.275, 7.2761, 7.2773, 7.2771, 7.2766, 7.2761, 7.2757, 7.2752, 7.2747, 7.2759, 7.2754, 7.2749, 7.2761, 7.2756, 7.2755, 7.2765, 7.2765, 7.2779, 7.2774, 7.277, 7.2767, 7.2763, 7.2757, 7.2752, 7.2749, 7.2744, 7.2738, 7.2735, 7.2746, 7.2756, 7.2751, 7.2746, 7.2757, 7.2752, 7.2733, 7.2728, 7.2723, 7.2737, 7.2746, 7.274, 7.2737, 7.2732, 7.2729, 7.2724, 7.2719, 7.2729, 7.2725, 7.2722, 7.2717, 7.2713, 7.2709, 7.2707, 7.2721, 7.2715, 7.2711, 7.2705, 7.27, 7.2694, 7.269, 7.2685, 7.2684, 7.2681, 7.2678, 7.2675, 7.2673, 7.2671, 7.2684, 7.268, 7.2675, 7.2672, 7.2666, 7.2665, 7.2661, 7.2673, 7.2669, 7.2665, 7.2659, 7.2656, 7.2654, 7.2652, 7.2648, 7.2646, 7.2657, 7.2656, 7.2651, 7.265, 7.2648, 7.2642, 7.2639, 7.2651, 7.2645, 7.2641, 7.2637, 7.2632, 7.2641, 7.2635, 7.2631, 7.264, 7.2635, 7.2617, 7.2599, 7.2596, 7.2594, 7.2605, 7.2618, 7.2614, 7.2609, 7.2606, 7.2604, 7.26, 7.2594, 7.2591, 7.2587, 7.2585, 7.258, 7.2579, 7.2573, 7.2584, 7.258, 7.2591, 7.2601, 7.2596, 7.259, 7.2585, 7.258, 7.2575, 7.2572, 7.2585, 7.2583, 7.2578, 7.2573, 7.2554, 7.2565, 7.2576, 7.2572, 7.2567, 7.2577, 7.2572, 7.2567, 7.2564, 7.2561, 7.2556, 7.2554, 7.2549, 7.2546, 7.2541, 7.2537, 7.2535, 7.2531, 7.2528, 7.2523, 7.252, 7.253, 7.2526, 7.2523, 7.2518, 7.2513, 7.2508, 7.2504, 7.2514, 7.251, 7.2508, 7.2504, 7.2501, 7.2512, 7.2509, 7.2505, 7.25, 7.2495, 7.249, 7.2485, 7.2482, 7.2477, 7.2473, 7.2468, 7.2464, 7.2461, 7.2457, 7.2453, 7.245, 7.2451, 7.2446, 7.2445, 7.2442, 7.2453, 7.2452, 7.2447, 7.2429, 7.2426, 7.2421, 7.243, 7.2426, 7.2437, 7.2433, 7.2435, 7.2441, 7.2439, 7.2449, 7.2444, 7.244, 7.2449, 7.2444, 7.244, 7.2454, 7.2464, 7.2461, 7.2457, 7.2454, 7.2452, 7.2447, 7.2444, 7.2443, 7.244, 7.2438, 7.244, 7.2437, 7.2433, 7.243, 7.2442, 7.244, 7.2436, 7.2447, 7.2458, 7.2454, 7.2449, 7.2444, 7.2456, 7.2455, 7.2455, 7.2451, 7.2464, 7.2498, 7.2496, 7.2492, 7.2488, 7.2483, 7.2482, 7.2465, 7.2478, 7.2488, 7.25, 7.2498, 7.2494, 7.249, 7.249, 7.2487, 7.2485, 7.2483, 7.2478, 7.2475, 7.247, 7.2465, 7.2474, 7.2486, 7.2481, 7.2476, 7.2472, 7.2467, 7.2466, 7.2463, 7.2466, 7.2448, 7.2444, 7.244, 7.2436, 7.2436, 7.2431, 7.2426, 7.2421, 7.243, 7.2426, 7.2436, 7.2431, 7.2426, 7.2421, 7.2417, 7.2429, 7.2426, 7.2423, 7.242, 7.2415, 7.2415, 7.2413, 7.241, 7.2406, 7.2417, 7.2413, 7.2408, 7.2404, 7.24, 7.2397, 7.2394, 7.2404, 7.2403, 7.2401, 7.2399, 7.2394, 7.239, 7.2388, 7.2384, 7.2383, 7.2379, 7.239, 7.2424, 7.2422, 7.2418, 7.2428, 7.2426, 7.2421, 7.2423, 7.2419, 7.2416, 7.2412, 7.2424, 7.2421, 7.2419, 7.243, 7.2425, 7.2423, 7.2407, 7.2404, 7.2401, 7.2396, 7.2435, 7.2434, 7.2431, 7.2471, 7.2468, 7.2463, 7.2475, 7.2479, 7.2476, 7.2471, 7.2471, 7.2467, 7.2476, 7.2486, 7.2482, 7.2477, 7.2475, 7.2471, 7.2466, 7.2461, 7.2456, 7.2467, 7.2463, 7.2473, 7.2534, 7.2537, 7.2533, 7.2528, 7.2539, 7.2534, 7.2529, 7.2528, 7.2524, 7.2521, 7.2517, 7.2519, 7.2531, 7.2529, 7.2525, 7.2521, 7.2518, 7.2516, 7.2514, 7.2514, 7.2509, 7.2521, 7.2532, 7.253, 7.2541, 7.2552, 7.2548, 7.2545, 7.2541, 7.2536, 7.2532, 7.2532, 7.2527, 7.2523, 7.252, 7.2518, 7.2515, 7.2512, 7.2509, 7.2508, 7.2503, 7.2498, 7.2496, 7.2492, 7.2491, 7.2501, 7.25, 7.2495, 7.2492, 7.2509, 7.2505, 7.2503, 7.2501, 7.2497, 7.2492, 7.249, 7.2489, 7.2498, 7.2497, 7.2495, 7.2492, 7.249, 7.2486, 7.2483, 7.2478, 7.2474, 7.247, 7.2465, 7.2461, 7.2459, 7.2458, 7.2456, 7.2453, 7.2449, 7.2444, 7.2441, 7.2451, 7.2448, 7.2447, 7.2443, 7.244, 7.2441, 7.2437, 7.2432, 7.2434, 7.243, 7.2428, 7.2424, 7.242, 7.2416, 7.2425, 7.2422, 7.2417, 7.244, 7.2451, 7.2449, 7.2446, 7.2441, 7.2443, 7.2439, 7.2449, 7.2459, 7.2455, 7.2452, 7.2448, 7.2443, 7.244, 7.2451, 7.2449, 7.2445, 7.244, 7.2437, 7.2432, 7.2427, 7.2422, 7.2417, 7.2414, 7.2423, 7.2433, 7.2433, 7.243, 7.243, 7.2487, 7.2482, 7.2477, 7.2474, 7.2474, 7.2487, 7.2486, 7.2486, 7.2483, 7.2494, 7.2491, 7.2488, 7.2486, 7.2482, 7.2481, 7.2477, 7.2473, 7.2484, 7.248, 7.2491, 7.2501, 7.2506, 7.2502, 7.2499, 7.2503, 7.2504, 7.25, 7.2498, 7.2493, 7.2489, 7.2485, 7.2495, 7.2492, 7.2488, 7.2486, 7.2483, 7.2481, 7.2497, 7.2493, 7.2488, 7.2483, 7.2481, 7.2478, 7.2481, 7.2477, 7.2475, 7.2473, 7.2469, 7.2465, 7.2462, 7.2473, 7.2471, 7.2467, 7.2468, 7.2464, 7.2462, 7.2458, 7.2455, 7.2466, 7.2491, 7.2515, 7.2526, 7.2538, 7.2539, 7.2536, 7.2536, 7.2533, 7.253, 7.2527, 7.2526, 7.2523, 7.2518, 7.2513, 7.251, 7.252, 7.2515, 7.2511, 7.2508, 7.2503, 7.2514, 7.251, 7.2519, 7.2515, 7.2512, 7.2509, 7.2507, 7.2506, 7.2504, 7.249, 7.2487, 7.2482, 7.2477, 7.2472, 7.2502, 7.2498, 7.2494, 7.2491, 7.2487, 7.2483, 7.2493, 7.2504, 7.2514, 7.2526, 7.2523, 7.2507, 7.2492, 7.2489, 7.2484, 7.2539, 7.2541, 7.2563, 7.2559, 7.2556, 7.2552, 7.2552, 7.2548, 7.2563, 7.256, 7.2564, 7.258, 7.2589, 7.2586, 7.2582, 7.258, 7.2576, 7.2572, 7.2568, 7.2565, 7.2562, 7.256, 7.2556, 7.2556, 7.2552, 7.2563, 7.2588, 7.2585, 7.2595, 7.2591, 7.2601, 7.2598, 7.2611, 7.2619, 7.2616, 7.2612, 7.2622, 7.2619, 7.2615, 7.2627, 7.2623, 7.2619, 7.2628, 7.2624, 7.2623, 7.2619, 7.2629, 7.2626, 7.2635, 7.2631, 7.2627, 7.2623, 7.2621, 7.2617, 7.2615, 7.2613, 7.2609, 7.2604, 7.2601, 7.2597, 7.2593, 7.259, 7.2587, 7.2583, 7.2578, 7.2575, 7.257, 7.2579, 7.2575, 7.2572, 7.2569, 7.2565, 7.2549, 7.2535, 7.253, 7.2527, 7.2522, 7.2518, 7.2516, 7.2515, 7.2511, 7.252, 7.2517, 7.2502, 7.25, 7.2503, 7.2488, 7.2485, 7.2483, 7.2478, 7.2474, 7.2472, 7.2468, 7.2465, 7.2475, 7.2485, 7.2483, 7.2481, 7.2467, 7.2451, 7.2449, 7.2459, 7.2456, 7.2441, 7.2429, 7.2427, 7.2437, 7.2434, 7.2443, 7.244, 7.2449, 7.245, 7.2446, 7.2442, 7.244, 7.2438, 7.2434, 7.2444, 7.2441, 7.2444, 7.244, 7.2436, 7.2432, 7.2456, 7.2466, 7.2476, 7.2472, 7.2471, 7.2467, 7.2463, 7.2461, 7.2458, 7.2458, 7.2468, 7.2465, 7.2478, 7.2475, 7.247, 7.2471, 7.2469, 7.2464, 7.2465, 7.2463, 7.246, 7.2457, 7.2455, 7.2453, 7.245, 7.2458, 7.2453, 7.2449, 7.2458, 7.2453, 7.2457, 7.2453, 7.2437, 7.2433, 7.2442, 7.2431, 7.2427, 7.2423, 7.2419, 7.2417, 7.2426, 7.2424, 7.2433, 7.2443, 7.2438, 7.2436, 7.2433, 7.2432, 7.2443, 7.2444, 7.2441, 7.2438, 7.2436, 7.2433, 7.243, 7.2427, 7.2438, 7.2443, 7.244, 7.245, 7.246, 7.2485, 7.2483, 7.2479, 7.2489, 7.2485, 7.2495, 7.2507, 7.2504, 7.25, 7.2498, 7.2519, 7.2527, 7.255, 7.2563, 7.256, 7.2557, 7.2553, 7.2551, 7.2547, 7.2549, 7.2546, 7.2542, 7.254, 7.2536, 7.2534, 7.2532, 7.2528, 7.2525, 7.2534, 7.2533, 7.2529, 7.253, 7.2529, 7.255, 7.2535, 7.2533, 7.2529, 7.2525, 7.2528, 7.2537, 7.2534, 7.2532, 7.254, 7.2548, 7.2545, 7.2541, 7.2539, 7.2536, 7.2536, 7.2532, 7.253, 7.2526, 7.2525, 7.252, 7.253, 7.2528, 7.2525, 7.2521, 7.2508, 7.2504, 7.2514, 7.2522, 7.2519, 7.2515, 7.2511, 7.251, 7.2506, 7.2503, 7.25, 7.2497, 7.2494, 7.249, 7.2489, 7.2496, 7.2492, 7.2488, 7.2486, 7.2471, 7.2498, 7.2498, 7.2495, 7.2492, 7.2502, 7.2499, 7.2495, 7.2491, 7.2487, 7.2482, 7.2478, 7.2474, 7.247, 7.2466, 7.2465, 7.2461, 7.246, 7.2456, 7.2452, 7.2449, 7.2445, 7.2455, 7.2451, 7.2459, 7.2454, 7.2452, 7.2448, 7.2444, 7.2448, 7.246, 7.2469, 7.2478, 7.2488, 7.2484, 7.248, 7.2479, 7.2488, 7.2486, 7.2482, 7.2477, 7.2473, 7.2471, 7.2469, 7.2469, 7.2471, 7.2482, 7.2478, 7.2489, 7.2489, 7.2488, 7.2484, 7.248, 7.2481, 7.2479, 7.2478, 7.2474, 7.2471, 7.2469, 7.2455, 7.2452, 7.2451, 7.2449, 7.2448, 7.2444, 7.2441, 7.2437, 7.2434, 7.2431, 7.243, 7.2427, 7.2436, 7.2432, 7.2429, 7.2426, 7.2423, 7.2421, 7.2418, 7.2416, 7.2414, 7.241, 7.2406, 7.2403, 7.2413, 7.241, 7.2407, 7.2404, 7.2413, 7.2421, 7.2417, 7.2414, 7.2412, 7.241, 7.2407, 7.2416, 7.2414, 7.2411, 7.2408, 7.2404, 7.2401, 7.2398, 7.2394, 7.2391, 7.2387, 7.2386, 7.2394, 7.239, 7.2386, 7.2395, 7.2391, 7.2391, 7.2387, 7.2383, 7.238, 7.2378, 7.2375, 7.2373, 7.2373, 7.237, 7.2367, 7.2376, 7.2376, 7.2373, 7.2359, 7.2355, 7.2352, 7.2348, 7.2347, 7.2343, 7.2342, 7.2341, 7.2339, 7.2336, 7.2334, 7.2334, 7.233, 7.2339, 7.2352, 7.2348, 7.2357, 7.2354, 7.235, 7.2347, 7.2355, 7.2351, 7.235, 7.2346, 7.2345, 7.2345, 7.2343, 7.2341, 7.2338, 7.2337, 7.2335, 7.2332, 7.234, 7.2349, 7.2346, 7.2345, 7.2346, 7.2343, 7.2339, 7.2335, 7.2333, 7.2329, 7.2326, 7.2324, 7.2321, 7.2318, 7.2315, 7.2323, 7.233, 7.2328, 7.2329, 7.2326, 7.2335, 7.2331, 7.2328, 7.2325, 7.2321, 7.2318, 7.2315, 7.2314, 7.231, 7.2307, 7.2303, 7.23, 7.2296, 7.2293, 7.2293, 7.2289, 7.2287, 7.2284, 7.2322, 7.2321, 7.232, 7.2318, 7.2317, 7.2328, 7.2327, 7.2325, 7.2322, 7.2319, 7.2329, 7.2341, 7.234, 7.2337, 7.2334, 7.2322, 7.2322, 7.2334, 7.2331, 7.2341, 7.2338, 7.2338, 7.2335, 7.2331, 7.2341, 7.2338, 7.2337, 7.2337, 7.2334, 7.2331, 7.2318, 7.2328, 7.2324, 7.2323, 7.2321, 7.2321, 7.2321, 7.233, 7.2327, 7.2323, 7.2333, 7.2343, 7.2339, 7.2325, 7.2322, 7.2318, 7.2315, 7.2311, 7.2307, 7.2303, 7.2301, 7.2302, 7.2325, 7.2358, 7.2355, 7.2353, 7.2349, 7.2359, 7.2359, 7.2369, 7.2368, 7.2364, 7.2362, 7.2358, 7.2353, 7.2349, 7.2347, 7.2355, 7.2351, 7.2363, 7.2361, 7.2358, 7.2355, 7.2356, 7.2352, 7.2349, 7.2345, 7.2344, 7.2353, 7.2351, 7.2347, 7.2345, 7.2353, 7.235, 7.2347, 7.2345, 7.2354, 7.2363, 7.2359, 7.2372, 7.2369, 7.2366, 7.2362, 7.2358, 7.2356, 7.2364, 7.2361, 7.2358, 7.2356, 7.2353, 7.2349, 7.2348, 7.2344, 7.234, 7.2336, 7.2332, 7.2328, 7.2327, 7.2348, 7.2345, 7.2342, 7.234, 7.2348, 7.2344, 7.2343, 7.2341, 7.2338, 7.2341, 7.2338, 7.2335, 7.2344, 7.2345, 7.2341, 7.2339, 7.2337, 7.2333, 7.2342, 7.2339, 7.2338, 7.2339, 7.2343, 7.2351, 7.2349, 7.2345, 7.2342, 7.2338, 7.2347, 7.2345, 7.2366, 7.2364, 7.2374, 7.2396, 7.2393, 7.24, 7.2398, 7.2395, 7.2392, 7.2378, 7.2366, 7.2352, 7.236, 7.2356, 7.2366, 7.2366, 7.2363, 7.2361, 7.2358, 7.2356, 7.2352, 7.2348, 7.2344, 7.234, 7.2339, 7.2346, 7.2357, 7.2366, 7.2362, 7.237, 7.2367, 7.2364, 7.2374, 7.2371, 7.2369, 7.2365, 7.2373, 7.2382, 7.2368, 7.2375, 7.2384, 7.2392, 7.2389, 7.2398, 7.2395, 7.2392, 7.2388, 7.2385, 7.2381, 7.2378, 7.2374, 7.2383, 7.238, 7.2389, 7.2376, 7.2374, 7.2374, 7.237, 7.2368, 7.2365, 7.2362, 7.2358, 7.2355, 7.2363, 7.2361, 7.2359, 7.2367, 7.2364, 7.2372, 7.2368, 7.2365, 7.2363, 7.2361, 7.2357, 7.2366, 7.2362, 7.236, 7.2368, 7.2364, 7.2362, 7.2358, 7.2355, 7.2366, 7.2362, 7.2358, 7.2357, 7.2343, 7.2342, 7.234, 7.2336, 7.2334, 7.2332, 7.233, 7.2326, 7.2334, 7.2332, 7.2321, 7.2317, 7.2314, 7.2345, 7.2343, 7.2342, 7.2351, 7.235, 7.2358, 7.2355, 7.2353, 7.2362, 7.237, 7.2366, 7.2364, 7.2384, 7.238, 7.2377, 7.2366, 7.2354, 7.2351, 7.2359, 7.2359, 7.2367, 7.2365, 7.2353, 7.2349, 7.2345, 7.2341, 7.2337, 7.2345, 7.2353, 7.2349, 7.2345, 7.2341, 7.233, 7.2327, 7.2323, 7.232, 7.2316, 7.2323, 7.232, 7.2316, 7.2312, 7.2308, 7.2304, 7.2304, 7.23, 7.2298, 7.2306, 7.2302, 7.231, 7.2317, 7.2314, 7.231, 7.2306, 7.2303, 7.2311, 7.2308, 7.2305, 7.2292, 7.2288, 7.2286, 7.2283, 7.228, 7.2277, 7.2278, 7.2277, 7.2274, 7.2288, 7.2296, 7.2323, 7.2324, 7.232, 7.2318, 7.2338, 7.2346, 7.2343, 7.2341, 7.2338, 7.2358, 7.2355, 7.2363, 7.236, 7.2358, 7.2354, 7.2352, 7.2349, 7.2345, 7.2342, 7.2372, 7.2369, 7.2378, 7.2375, 7.2384, 7.2384, 7.238, 7.2377, 7.2385, 7.2382, 7.2378, 7.2376, 7.2373, 7.2382, 7.2382, 7.238, 7.2377, 7.2374, 7.2382, 7.2383, 7.2383, 7.238, 7.2377, 7.2378, 7.2377, 7.2375, 7.2408, 7.2404, 7.24, 7.2399, 7.2407, 7.2405, 7.2402, 7.2398, 7.2395, 7.2392, 7.239, 7.2386, 7.2397, 7.2405, 7.2401, 7.2399, 7.2396, 7.2396, 7.2392, 7.2389, 7.2386, 7.24, 7.2424, 7.2423, 7.2421, 7.2434, 7.2421, 7.2419, 7.243, 7.243, 7.2427, 7.2426, 7.2425, 7.2422, 7.2441, 7.2448, 7.2445, 7.2454, 7.2454, 7.2463, 7.246, 7.2457, 7.2457, 7.2456, 7.2453, 7.2451, 7.246, 7.2467, 7.2464, 7.2463, 7.246, 7.2457, 7.2454, 7.2451, 7.2447, 7.2443, 7.244, 7.2436, 7.2432, 7.2429, 7.2426, 7.2433, 7.2441, 7.2438, 7.2439, 7.2448, 7.2445, 7.2442, 7.2439, 7.2436, 7.2434, 7.2448, 7.2459, 7.2488, 7.2488, 7.2487, 7.2473, 7.2471, 7.2474, 7.2471, 7.2468, 7.2465, 7.2463, 7.2472, 7.247, 7.2478, 7.2474, 7.2472, 7.2469, 7.2465, 7.2461, 7.2457, 7.2444, 7.2442, 7.2439, 7.2437, 7.2434, 7.2421, 7.2417, 7.2414, 7.2412, 7.2409, 7.2407, 7.2394, 7.239, 7.2389, 7.2386, 7.2386, 7.2385, 7.2384, 7.2371, 7.2389, 7.2389, 7.2407, 7.2394, 7.2401, 7.2399, 7.2408, 7.2415, 7.2425, 7.2422, 7.242, 7.2418, 7.2416, 7.2415, 7.2414, 7.2412, 7.2412, 7.2409, 7.2406, 7.2404, 7.24, 7.2397, 7.2394, 7.2402, 7.2429, 7.2426, 7.2431, 7.2442, 7.244, 7.2436, 7.2433, 7.2443, 7.2486, 7.2475, 7.2473, 7.2469, 7.2466, 7.2475, 7.2472, 7.247, 7.2467, 7.2464, 7.246, 7.2447, 7.2437, 7.2434, 7.2422, 7.242, 7.2418, 7.2427, 7.2425, 7.2434, 7.2432, 7.244, 7.2452, 7.2449, 7.2447, 7.2465, 7.249, 7.2489, 7.2498, 7.2496, 7.2525, 7.2522, 7.2532, 7.253, 7.2528, 7.2524, 7.2513, 7.2513, 7.251, 7.2509, 7.2521, 7.2519, 7.2522, 7.252, 7.2516, 7.2557, 7.2565, 7.2562, 7.2558, 7.2554, 7.2564, 7.2561, 7.2559, 7.2557, 7.2553, 7.255, 7.2557, 7.2553, 7.2549, 7.2538, 7.2526, 7.2523, 7.2512, 7.251, 7.2507, 7.2506, 7.2503, 7.251, 7.2509, 7.2506, 7.2505, 7.2501, 7.2499, 7.2496, 7.2494, 7.2491, 7.2487, 7.2485, 7.2494, 7.2494, 7.249, 7.2494, 7.249, 7.2498, 7.2506, 7.2505, 7.2512, 7.2509, 7.2521, 7.2517, 7.2513, 7.252, 7.2524, 7.252, 7.2518, 7.2514, 7.2513, 7.2509, 7.2507, 7.2504, 7.2503, 7.25, 7.2498, 7.2496, 7.2496, 7.2516, 7.2517, 7.2515, 7.2524, 7.2526, 7.2522, 7.2519, 7.2517, 7.2525, 7.2533, 7.2541, 7.2539, 7.2536, 7.2534, 7.2531, 7.2528, 7.2525, 7.2521, 7.2528, 7.2524, 7.2523, 7.252, 7.2529, 7.2526, 7.2524, 7.2522, 7.2519, 7.2516, 7.2513, 7.2511, 7.251, 7.2507, 7.2505, 7.2503, 7.249, 7.2479, 7.2467, 7.2463, 7.2479, 7.2466, 7.2464, 7.2462, 7.246, 7.2457, 7.2445, 7.2442, 7.2439, 7.2435, 7.2433, 7.243, 7.2427, 7.2435, 7.2431, 7.2429, 7.2428, 7.2425, 7.2422, 7.2429, 7.2425, 7.2421, 7.2418, 7.2414, 7.2412, 7.241, 7.2406, 7.2402, 7.2399, 7.2395, 7.2394, 7.2402, 7.2399, 7.2398, 7.2394, 7.239, 7.2389, 7.2396, 7.2395, 7.2393, 7.2391, 7.2392, 7.2388, 7.2376, 7.2373, 7.2382, 7.2379, 7.238, 7.2387, 7.2384, 7.2382, 7.2378, 7.2375, 7.2374, 7.2372, 7.2369, 7.2358, 7.2356, 7.2356, 7.2354, 7.2352, 7.2349, 7.2347, 7.2354, 7.2361, 7.2358, 7.2355, 7.2363, 7.2359, 7.2356, 7.2353, 7.2349, 7.2356, 7.2354, 7.2351, 7.2353, 7.235, 7.2349, 7.2356, 7.2355, 7.2353, 7.2341, 7.2338, 7.2334, 7.2331, 7.2328, 7.2335, 7.2332, 7.2328, 7.2336, 7.2333, 7.2329, 7.2325, 7.2321, 7.2317, 7.2314, 7.2311, 7.2308, 7.2305, 7.2301, 7.2299, 7.2308, 7.2295, 7.2304, 7.23, 7.2307, 7.2305, 7.2311, 7.2309, 7.2306, 7.2304, 7.2305, 7.2302, 7.2299, 7.2307, 7.2305, 7.2313, 7.2334, 7.2341, 7.234, 7.233, 7.2343, 7.2341, 7.2339, 7.235, 7.2347, 7.2354, 7.2352, 7.2342, 7.235, 7.235, 7.2357, 7.2354, 7.2352, 7.2353, 7.235, 7.2348, 7.2346, 7.2344, 7.2345, 7.2346, 7.2344, 7.2332, 7.2343, 7.234, 7.2351, 7.2359, 7.236, 7.2367, 7.2365, 7.2363, 7.2361, 7.236, 7.2367, 7.2366, 7.2364, 7.237, 7.2367, 7.2367, 7.2364, 7.2372, 7.237, 7.2367, 7.2365, 7.2372, 7.2371, 7.237, 7.2378, 7.2376, 7.2373, 7.2371, 7.2369, 7.2368, 7.2365, 7.2365, 7.2364, 7.2361, 7.2357, 7.2354, 7.2361, 7.236, 7.2357, 7.2355, 7.2362, 7.2358, 7.2356, 7.2354, 7.235, 7.235, 7.2348, 7.2347, 7.2345, 7.2341, 7.2341, 7.2337, 7.2335, 7.2335, 7.2332, 7.234, 7.2338, 7.2335, 7.2343, 7.2335, 7.2323, 7.2323, 7.232, 7.2317, 7.2316, 7.2322, 7.2318, 7.2314, 7.2322, 7.2311, 7.231, 7.2307, 7.2304, 7.2302, 7.23, 7.2298, 7.2296, 7.2294, 7.2292, 7.2289, 7.2277, 7.2275, 7.2294, 7.2291, 7.2288, 7.2286, 7.2283, 7.228, 7.2279, 7.2278, 7.2275, 7.2272, 7.2279, 7.2286, 7.2283, 7.2281, 7.2279, 7.2276, 7.2265, 7.2254, 7.2262, 7.227, 7.2277, 7.2274, 7.2272, 7.2269, 7.2269, 7.2266, 7.2265, 7.2262, 7.2259, 7.2256, 7.2253, 7.225, 7.2247, 7.2255, 7.2252, 7.225, 7.225, 7.2257, 7.2245, 7.2244, 7.2241, 7.2238, 7.2235, 7.2233, 7.223, 7.2229, 7.2229, 7.2227, 7.2227, 7.2227, 7.2223, 7.2221, 7.2209, 7.2206, 7.2203, 7.2204, 7.2216, 7.2224, 7.2222, 7.2219, 7.2208, 7.2205, 7.2202, 7.22, 7.2198, 7.2196, 7.2199, 7.2221, 7.2228, 7.2228, 7.223, 7.2227, 7.223, 7.2239, 7.2237, 7.2235, 7.2241, 7.2239, 7.2236, 7.2233, 7.2242, 7.2239, 7.2228, 7.2236, 7.2234, 7.2233, 7.223, 7.2227, 7.2225, 7.2225, 7.2232, 7.2229, 7.2227, 7.2234, 7.2233, 7.2221, 7.2219, 7.2217, 7.2205, 7.2211, 7.2208, 7.2216, 7.2213, 7.2211, 7.221, 7.221, 7.2198, 7.2195, 7.2191, 7.2188, 7.2185, 7.2181, 7.2187, 7.2185, 7.2183, 7.2179, 7.2177, 7.2174, 7.217, 7.2168, 7.2156, 7.2145, 7.2142, 7.2148, 7.2145, 7.2143, 7.214, 7.2137, 7.2134, 7.2132, 7.2149, 7.2148, 7.2156, 7.2162, 7.2159, 7.2167, 7.2164, 7.216, 7.2168, 7.2166, 7.2165, 7.2173, 7.2172, 7.2169, 7.2168, 7.2166, 7.2165, 7.2162, 7.2162, 7.2159, 7.2157, 7.2154, 7.2151, 7.2149, 7.2147, 7.2155, 7.2152, 7.215, 7.2146, 7.2154, 7.2151, 7.2148, 7.2156, 7.2155, 7.2153, 7.215, 7.2147, 7.2153, 7.2159, 7.2157, 7.2156, 7.2154, 7.2151, 7.2148, 7.2145, 7.2143, 7.2141, 7.213, 7.2128, 7.2117, 7.2115, 7.2123, 7.212, 7.2119, 7.2107, 7.2107, 7.2104, 7.2111, 7.2108, 7.2107, 7.2106, 7.2116, 7.2115, 7.2112, 7.211, 7.2108, 7.2113, 7.211, 7.2118, 7.2116, 7.2124, 7.2121, 7.2118, 7.2115, 7.2103, 7.21, 7.2099, 7.2097, 7.2095, 7.2093, 7.209, 7.2098, 7.2097, 7.2094, 7.2115, 7.2114, 7.2113, 7.212, 7.2119, 7.2108, 7.2108, 7.2106, 7.2104, 7.2104, 7.2101, 7.2115, 7.2105, 7.2112, 7.2111, 7.211, 7.2099, 7.2097, 7.2095, 7.2092, 7.2103, 7.21, 7.2097, 7.2104, 7.2103, 7.21, 7.2098, 7.2097, 7.2094, 7.2091, 7.2089, 7.2086, 7.2084, 7.2081, 7.208, 7.2068, 7.2067, 7.2064, 7.2062, 7.206, 7.2056, 7.2063, 7.2062, 7.2059, 7.2057, 7.2054, 7.2052, 7.2059, 7.2056, 7.2056, 7.2053, 7.2051, 7.2048, 7.2056, 7.206, 7.2072, 7.2076, 7.2083, 7.2081, 7.2093, 7.2085, 7.2083, 7.2081, 7.2078, 7.2076, 7.2073, 7.2073, 7.207, 7.2068, 7.2065, 7.2075, 7.2073, 7.2071, 7.2068, 7.2067, 7.2064, 7.2062, 7.2059, 7.2056, 7.2052, 7.2071, 7.2069, 7.2066, 7.2063, 7.206, 7.2088, 7.2094, 7.2091, 7.2108, 7.2107, 7.2104, 7.2106, 7.2103, 7.21, 7.2107, 7.2107, 7.2115, 7.2122, 7.2121, 7.2118, 7.2115, 7.2114, 7.2112, 7.2111, 7.2109, 7.2107, 7.2105, 7.2111, 7.2109, 7.2115, 7.2112, 7.2119, 7.2117, 7.2114, 7.212, 7.2118, 7.2116, 7.2115, 7.2122, 7.2119, 7.2116, 7.2113, 7.211, 7.2107, 7.2104, 7.2101, 7.2099, 7.2097, 7.2096, 7.2094, 7.2091, 7.2089, 7.2079, 7.2106, 7.2104, 7.2101, 7.2099, 7.2096, 7.2103, 7.2104, 7.2111, 7.2117, 7.2115, 7.2113, 7.2136, 7.2155, 7.2152, 7.2149, 7.2148, 7.2145, 7.2152, 7.2149, 7.2147, 7.2154, 7.2157, 7.2164, 7.2163, 7.2161, 7.2168, 7.2165, 7.2164, 7.2162, 7.216, 7.2167, 7.2174, 7.2172, 7.2169, 7.2179, 7.2177, 7.2175, 7.2164, 7.2162, 7.2159, 7.2157, 7.2156, 7.2153, 7.2151, 7.2149, 7.2147, 7.2144, 7.2153, 7.2151, 7.2148, 7.2145, 7.2151, 7.2158, 7.2157, 7.2154, 7.216, 7.2159, 7.2156, 7.2155, 7.2157, 7.2164, 7.2161, 7.2159, 7.2157, 7.2154, 7.2151, 7.2148, 7.2145, 7.2143, 7.214, 7.2146, 7.2158, 7.2157, 7.2154, 7.2153, 7.2159, 7.2159, 7.2157, 7.2156, 7.2153, 7.2171, 7.217, 7.2168, 7.2167, 7.2174, 7.218, 7.2178, 7.2175, 7.2182, 7.2181, 7.2179, 7.2179, 7.2177, 7.2184, 7.22, 7.2208, 7.2233, 7.2236, 7.2233, 7.223, 7.2228, 7.2226, 7.2223, 7.2242, 7.224, 7.2238, 7.2246, 7.2243, 7.2243, 7.2241, 7.2238, 7.2244, 7.225, 7.2247, 7.2244, 7.2241, 7.2239, 7.2236, 7.2242, 7.2239, 7.2245, 7.2243, 7.2241, 7.2238, 7.2244, 7.2241, 7.2238, 7.224, 7.224, 7.2238, 7.2237, 7.2234, 7.2233, 7.2231, 7.2229, 7.2228, 7.2235, 7.2232, 7.2249, 7.2247, 7.2246, 7.2243, 7.224, 7.2247, 7.2254, 7.2251, 7.2242, 7.2239, 7.2238, 7.2245, 7.2272, 7.2269, 7.2266, 7.2264, 7.2262, 7.226, 7.2257, 7.2255, 7.2252, 7.2249, 7.2248, 7.2247, 7.2255, 7.2252, 7.225, 7.2248, 7.2246, 7.2254, 7.2261, 7.2268, 7.2265, 7.2263, 7.2261, 7.2262, 7.2262, 7.226, 7.2258, 7.2256, 7.2254, 7.2262, 7.2262, 7.2259, 7.2257, 7.2255, 7.2253, 7.226, 7.2258, 7.2255, 7.2255, 7.2255, 7.2254, 7.2252, 7.2252, 7.2249, 7.2247, 7.2255, 7.2253, 7.2252, 7.225, 7.2257, 7.2256, 7.2254, 7.2251, 7.2251, 7.2249, 7.2257, 7.2255, 7.2252, 7.2251, 7.2259, 7.2267, 7.2265, 7.2273, 7.228, 7.2278, 7.2275, 7.2275, 7.2284, 7.2281, 7.2288, 7.2287, 7.2284, 7.2281, 7.2279, 7.2276, 7.2279, 7.2277, 7.2275, 7.2273, 7.227, 7.2268, 7.2266, 7.2273, 7.2281, 7.2278, 7.2275, 7.2275, 7.2282, 7.2289, 7.2287, 7.2294, 7.2291, 7.2288, 7.2295, 7.2293, 7.2291, 7.229, 7.2297, 7.2294, 7.2291, 7.2307, 7.2333, 7.233, 7.2327, 7.2334, 7.2339, 7.2337, 7.2334, 7.2331, 7.2345, 7.2343, 7.234, 7.2331, 7.2328, 7.2319, 7.2317, 7.2314, 7.2313, 7.2311, 7.2309, 7.2299, 7.2289, 7.228, 7.227, 7.2269, 7.2268, 7.2265, 7.2273, 7.2271, 7.2269, 7.2267, 7.2276, 7.2273, 7.2271, 7.227, 7.2268, 7.2257, 7.2255, 7.2252, 7.2249, 7.2247, 7.2244, 7.2251, 7.225, 7.224, 7.2237, 7.2235, 7.2232, 7.2231, 7.223, 7.2228, 7.2227, 7.2218, 7.2216, 7.2235, 7.2233, 7.2231, 7.2229, 7.2227, 7.2224, 7.2318, 7.2324, 7.2322, 7.2321, 7.2319, 7.2316, 7.2314, 7.2316, 7.2315, 7.2313, 7.2312, 7.2309, 7.2315, 7.2312, 7.2309, 7.2308, 7.2314, 7.2312, 7.231, 7.2308, 7.2307, 7.2308, 7.2306, 7.2305, 7.2305, 7.2321, 7.2318, 7.2315, 7.2313, 7.2303, 7.2302, 7.2301, 7.2298, 7.2296, 7.2293, 7.229, 7.2305, 7.2312, 7.2309, 7.2306, 7.2303, 7.23, 7.229, 7.2297, 7.2305, 7.2313, 7.231, 7.2316, 7.2322, 7.2328, 7.2325, 7.2323, 7.2322, 7.232, 7.2326, 7.2323, 7.2329, 7.2339, 7.2337, 7.2326, 7.2318, 7.2309, 7.2299, 7.2289, 7.2287, 7.2284, 7.2273, 7.2274, 7.2273, 7.227, 7.2267, 7.2264, 7.2261, 7.2259, 7.2265, 7.2264, 7.2263, 7.2262, 7.226, 7.2259, 7.2258, 7.2256, 7.2263, 7.2278, 7.2279, 7.2294, 7.2292, 7.229, 7.2288, 7.2286, 7.2302, 7.23, 7.2306, 7.2304, 7.231, 7.2309, 7.2309, 7.2315, 7.2321, 7.2331, 7.2337, 7.2342, 7.2357, 7.2355, 7.2352, 7.2359, 7.2366, 7.2363, 7.236, 7.2357, 7.2365, 7.2372, 7.2361, 7.236, 7.2367, 7.2365, 7.2362, 7.2359, 7.2358, 7.2356, 7.2356, 7.2364, 7.2372, 7.2369, 7.2367, 7.2367, 7.2375, 7.2371, 7.2368, 7.2357, 7.2355, 7.2353, 7.2344, 7.2341, 7.2339, 7.2337, 7.2335, 7.2332, 7.234, 7.2337, 7.2335, 7.2334, 7.2332, 7.2333, 7.2348, 7.2346, 7.2345, 7.2336, 7.2334, 7.2332, 7.2348, 7.2345, 7.2343, 7.2341, 7.2339, 7.2355, 7.2354, 7.2352, 7.2349, 7.2347, 7.2346, 7.2343, 7.2341, 7.2339, 7.2336, 7.2333, 7.234, 7.2337, 7.2344, 7.2342, 7.2349, 7.2346, 7.2343, 7.235, 7.2357, 7.2364, 7.2362, 7.2359, 7.2356, 7.2353, 7.235, 7.2348, 7.2349, 7.2346, 7.2343, 7.2342, 7.234, 7.234, 7.2347, 7.2353, 7.235, 7.2348, 7.2346, 7.2343, 7.2341, 7.2339, 7.2337, 7.2343, 7.2345, 7.2335, 7.2349, 7.2347, 7.2353, 7.235, 7.2347, 7.2346, 7.2343, 7.234, 7.2339, 7.2328, 7.2317, 7.2323, 7.2321, 7.2319, 7.2316, 7.2322, 7.2328, 7.2319, 7.2309, 7.2306, 7.2304, 7.2302, 7.2299, 7.2297, 7.2295, 7.2293, 7.2291, 7.2289, 7.2288, 7.2287, 7.2285, 7.2291, 7.2288, 7.2285, 7.2284, 7.2281, 7.2279, 7.2278, 7.2285, 7.2282, 7.2281, 7.2288, 7.2286, 7.2293, 7.229, 7.2289, 7.2287, 7.2294, 7.2293, 7.229, 7.2288, 7.2286, 7.2284, 7.229, 7.2287, 7.2284, 7.2274, 7.2272, 7.2269, 7.226, 7.2251, 7.2249, 7.2239, 7.2245, 7.2248, 7.2256, 7.2263, 7.2267, 7.2265, 7.2262, 7.2259, 7.2265, 7.2263, 7.226, 7.2266, 7.2263, 7.226, 7.2257, 7.2263, 7.2269, 7.2267, 7.2266, 7.2264, 7.227, 7.2275, 7.2272, 7.2269, 7.2275, 7.2272, 7.227, 7.2267, 7.2264, 7.2261, 7.2259, 7.2257, 7.2255, 7.2253, 7.225, 7.2248, 7.2247, 7.2245, 7.2242, 7.2241, 7.2239, 7.223, 7.222, 7.222, 7.2219, 7.2218, 7.2226, 7.2224, 7.2222, 7.2212, 7.2209, 7.2214, 7.2211, 7.2202, 7.2208, 7.2206, 7.2204, 7.2202, 7.2199, 7.2197, 7.2203, 7.2209, 7.2206, 7.2204, 7.2202, 7.2201, 7.22, 7.2191, 7.2189, 7.2187, 7.2184, 7.2191, 7.2188, 7.2186, 7.2202, 7.2201, 7.2208, 7.2208, 7.2206, 7.2204, 7.2202, 7.2199, 7.2196, 7.2193, 7.2191, 7.2188, 7.2186, 7.2184, 7.2183, 7.2181, 7.2187, 7.2185, 7.2185, 7.2177, 7.2175, 7.2181, 7.2179, 7.2178, 7.2178, 7.2176, 7.2182, 7.2188, 7.2194, 7.2192, 7.2192, 7.219, 7.2196, 7.2194, 7.2193, 7.2191, 7.2189, 7.2187, 7.2185, 7.2184, 7.219, 7.2187, 7.2185, 7.2191, 7.2197, 7.2194, 7.22, 7.2198, 7.2204, 7.221, 7.2207, 7.2205, 7.2202, 7.2199, 7.2196, 7.2195, 7.2201, 7.2208, 7.2207, 7.2204, 7.2202, 7.22, 7.22, 7.2198, 7.2195, 7.2192, 7.2192, 7.2198, 7.2197, 7.2203, 7.2201, 7.2199, 7.2197, 7.2195, 7.2195, 7.2193, 7.2199, 7.2197, 7.2196, 7.2193, 7.2193, 7.2193, 7.2191, 7.2189, 7.2187, 7.219, 7.2187, 7.2186, 7.2192, 7.2189, 7.2188, 7.2187, 7.2184, 7.2182, 7.2179, 7.2177, 7.2175, 7.2173, 7.2172, 7.2178, 7.2175, 7.2172, 7.217, 7.2167, 7.2173, 7.2173, 7.2179, 7.2176, 7.2181, 7.218, 7.2178, 7.2183, 7.2181, 7.2179, 7.2192, 7.2198, 7.2197, 7.2195, 7.2194, 7.22, 7.2206, 7.2204, 7.2203, 7.2202, 7.2208, 7.2208, 7.2205, 7.2204, 7.221, 7.2216, 7.2215, 7.2222, 7.222, 7.2218, 7.2218, 7.2216, 7.2223, 7.223, 7.2236, 7.2235, 7.2233, 7.223, 7.2228, 7.2233, 7.2231, 7.2228, 7.2234, 7.2231, 7.2228, 7.2225, 7.2223, 7.2221, 7.2219, 7.2216, 7.2214, 7.222, 7.2217, 7.2223, 7.2229, 7.2226, 7.2223, 7.2221, 7.2219, 7.2217, 7.2217, 7.2216, 7.2214, 7.2212, 7.2218, 7.2216, 7.2216, 7.2232, 7.2238, 7.2237, 7.2235, 7.2233, 7.223, 7.2229, 7.2235, 7.2232, 7.2229, 7.2227, 7.2225, 7.2223, 7.2221, 7.2219, 7.2225, 7.2224, 7.2222, 7.2228, 7.2225, 7.2222, 7.222, 7.2217, 7.2215, 7.2221, 7.2219, 7.2217, 7.2215, 7.2214, 7.2212, 7.2209, 7.2206, 7.2205, 7.2203, 7.2209, 7.2206, 7.2221, 7.2227, 7.2233, 7.223, 7.2227, 7.2226, 7.2225, 7.2225, 7.2222, 7.222, 7.2218, 7.2224, 7.2221, 7.222, 7.2218, 7.2216, 7.2213, 7.221, 7.2207, 7.2205, 7.2204, 7.2203, 7.2202, 7.22, 7.2198, 7.2196, 7.2194, 7.2191, 7.2189, 7.2195, 7.2194, 7.22, 7.2206, 7.2204, 7.221, 7.2208, 7.2206, 7.2213, 7.2219, 7.2242, 7.2248, 7.2246, 7.2243, 7.224, 7.224, 7.2238, 7.2236, 7.2233, 7.2239, 7.2236, 7.2242, 7.2241, 7.224, 7.2238, 7.2236, 7.2235, 7.2234, 7.224, 7.2239, 7.2237, 7.2234, 7.224, 7.2239, 7.2238, 7.2244, 7.2243, 7.224, 7.2241, 7.2247, 7.2245, 7.2243, 7.2241, 7.2238, 7.2237, 7.2235, 7.2233, 7.2231, 7.2229, 7.2226, 7.2224, 7.2221, 7.2218, 7.2216, 7.2214, 7.2212, 7.221, 7.2208, 7.2205, 7.2202, 7.22, 7.2198, 7.2204, 7.2201, 7.2215, 7.2221, 7.2218, 7.2216, 7.2213, 7.2219, 7.2225, 7.223, 7.2228, 7.2225, 7.2222, 7.2219, 7.2216, 7.2213, 7.2218, 7.2215, 7.2212, 7.221, 7.222, 7.2225, 7.2223, 7.2222, 7.2219, 7.2225, 7.2233, 7.2231, 7.2237, 7.2243, 7.2241, 7.2238, 7.2252, 7.2258, 7.2263, 7.2261, 7.2259, 7.2256, 7.2254, 7.2259, 7.2265, 7.2262, 7.2276, 7.2281, 7.2279, 7.2276, 7.2273, 7.227, 7.2268, 7.2265, 7.2262, 7.2259, 7.2265, 7.2262, 7.226, 7.2257, 7.2254, 7.2252, 7.2258, 7.2263, 7.2262, 7.226, 7.2251, 7.2248, 7.2253, 7.225, 7.2248, 7.2246, 7.2243, 7.2249, 7.2247, 7.2244, 7.2242, 7.2248, 7.2246, 7.2244, 7.225, 7.2249, 7.2248, 7.2245, 7.2244, 7.2244, 7.2243, 7.2241, 7.2239, 7.2245, 7.2243, 7.2241, 7.2247, 7.2252, 7.2249, 7.2247, 7.2245, 7.2243, 7.2241, 7.2247, 7.2245, 7.2243, 7.224, 7.2238, 7.2236, 7.2233, 7.2238, 7.2237, 7.2243, 7.2249, 7.2246, 7.2252, 7.2258, 7.2257, 7.2255, 7.227, 7.2268, 7.2265, 7.2262, 7.226, 7.2266, 7.2256, 7.2254, 7.2253, 7.2251, 7.2249, 7.2246, 7.2251, 7.228, 7.2286, 7.229, 7.2288, 7.228, 7.2278, 7.2275, 7.2272, 7.2269, 7.2283, 7.2284, 7.2308, 7.2306, 7.2311, 7.2308, 7.2314, 7.2312, 7.2309, 7.2314, 7.2319, 7.2324, 7.2322, 7.2328, 7.2333, 7.2338, 7.2343, 7.2341, 7.2339, 7.2337, 7.2335, 7.2344, 7.2341, 7.2339, 7.2337, 7.2338, 7.233, 7.2327, 7.2326, 7.2324, 7.2321, 7.2319, 7.2324, 7.2321, 7.2319, 7.2316, 7.2314, 7.2312, 7.2309, 7.2307, 7.2305, 7.2303, 7.2301, 7.2302, 7.23, 7.2297, 7.2294, 7.2291, 7.229, 7.2289, 7.2299, 7.2315, 7.2324, 7.233, 7.2328, 7.2325, 7.2322, 7.232, 7.2318, 7.2315, 7.2313, 7.2311, 7.2309, 7.2308, 7.2322, 7.2319, 7.2317, 7.2314, 7.2312, 7.2318, 7.2317, 7.2315, 7.2313, 7.231, 7.2307, 7.2306, 7.2303, 7.2301, 7.2307, 7.2314, 7.232, 7.2327, 7.2325, 7.233, 7.2329, 7.2326, 7.2336, 7.2334, 7.2331, 7.233, 7.2335, 7.234, 7.2339, 7.2337, 7.2336, 7.2333, 7.2333, 7.234, 7.2338, 7.2336, 7.2333, 7.2332, 7.2332, 7.2329, 7.2326, 7.2324, 7.2323, 7.2314, 7.232, 7.2318, 7.2316, 7.2321, 7.2318, 7.2315, 7.2313, 7.2322, 7.233, 7.2329, 7.233, 7.2338, 7.2336, 7.2345, 7.2344, 7.2349, 7.2354, 7.236]} rtt5_3_7 = {'192.168.122.110': [5.7418, 5.5912, 5.7623, 5.8136, 6.8142, 5.9493, 6.7647, 5.6145, 7.7074, 10.9298, 7.6172, 5.9526, 7.2, 6.5827, 5.5602, 5.8513, 5.81, 6.8536, 6.0802, 17.602, 6.7866, 7.7755, 11.2736, 5.4832, 11.8182, 5.9073, 6.7189, 5.3635, 7.2784, 5.379, 5.2912, 11.4913, 11.5299, 10.8726, 5.9435, 5.8331, 5.3208, 5.4748, 11.6992, 6.9065, 5.5239, 5.7344, 11.2438, 18.1613, 5.6195, 12.1634, 6.2578, 22.3002, 5.311, 7.0944, 7.5758, 6.7163, 5.4159, 11.0042, 11.4937, 5.4042, 5.9385, 5.8849, 11.8179, 11.539, 7.1597, 5.379, 7.5817, 5.2736, 16.443, 7.0481, 5.4076, 5.45, 6.8381, 6.7081, 12.0151, 7.3781, 5.9516, 5.8839, 8.1282, 5.4452, 13.047, 5.3794, 5.6658, 12.0046, 7.4153, 6.7677, 6.2497, 10.8204, 5.4839, 6.7205, 5.7104, 5.5275, 5.2724, 5.8911, 5.3215, 6.9821, 8.559, 5.7766, 6.6798, 5.7213, 6.0017, 6.0022, 5.6901, 14.169, 7.2641, 5.5411, 11.831, 6.7291, 5.8498, 6.9916, 5.5454, 11.106, 7.19, 7.1571, 6.2933, 6.6957, 11.1473, 6.0964, 5.8696, 6.9008, 7.736, 5.4917, 11.9805, 5.4231, 5.5256, 5.373, 5.765, 5.7654, 5.4505, 10.8511, 5.6624, 5.4431, 7.2479, 11.4362, 5.4991, 5.6171, 11.3196, 5.8417, 5.393, 6.3946, 11.2491, 5.337, 5.415, 5.2719, 9.2359, 6.1848, 5.9154, 17.5953, 5.4929, 7.4434, 8.6834, 11.2009, 6.5482, 0.9754, 11.9412, 5.7795, 5.7061, 7.1058, 11.807, 12.6138, 5.3539, 5.2118, 5.8668, 8.0407, 5.7375, 5.8603, 12.6426, 6.2943, 7.7164, 10.8011, 11.2612, 11.3089, 5.383, 11.3721, 30.2, 5.708, 6.5193, 5.8839, 5.7106, 6.3088, 5.4991, 5.661, 5.7478, 10.6087, 6.9911, 6.8479, 5.9617, 5.7516, 5.3968, 5.5974, 6.8388, 6.3548, 21.2278, 5.6105, 7.062, 5.8208, 17.2422, 7.6184, 10.9956, 6.9187, 11.4303, 5.8017, 5.2738, 5.6026, 5.6942, 5.5709, 5.7378, 5.8072, 10.5624, 11.3566, 11.1203, 6.2106, 6.8407, 5.3704, 5.4088, 6.5238, 6.489, 8.3065, 7.0024, 1.0071, 10.8268, 5.4884, 5.5254, 8.5967, 11.0495, 11.0748, 5.6016, 5.5714, 5.9211, 5.6129, 6.6261, 6.8102, 6.5825, 17.5495, 5.7769, 5.6877, 11.132, 5.7285, 16.7601, 7.4415, 5.6131, 5.522, 7.7443, 5.5673, 6.1178, 11.0009, 10.5436, 5.7201, 7.4151, 5.5258, 5.5959, 7.2384, 5.6751, 16.2807, 11.4007, 5.3964, 6.4242, 7.3049, 5.4786, 6.6326, 7.1919, 5.5275, 6.1519, 6.6049, 6.0365, 6.0158, 7.045, 5.6663, 1.8182, 7.0906, 7.0586, 5.3859, 11.1737, 5.4119, 5.5752, 6.0337, 5.7766, 5.4593, 30.8173, 6.4254, 7.3693, 5.6705, 0.6154, 7.3366, 10.9227, 7.2227, 6.6149, 16.0146, 11.1823, 11.364, 5.4898, 7.0698, 5.7142, 6.3961, 11.4803, 5.4266, 5.7242, 5.4638, 5.9576, 7.7, 0.8557, 11.0607, 5.6114, 7.1723, 11.4491, 10.8805, 5.8744, 5.2636, 7.0059, 6.7978, 7.0403, 11.5914, 6.3066, 6.6798, 6.6686, 7.2031, 6.8548, 10.7169, 5.5342, 6.0618, 10.8116, 5.5482, 6.6886, 5.5013, 5.9843, 12.1019, 5.7216, 11.1966, 5.4545, 6.2807, 22.9719, 6.4881, 5.6856, 5.5254, 7.175, 5.6057, 8.5371, 5.9128, 5.4801, 11.6374, 6.0608, 1.8256, 5.4958, 12.4965, 5.7228, 5.5664, 10.494, 5.6648, 6.3374, 12.0685, 6.4294, 5.481, 7.0255, 5.7628, 5.5921, 5.5776, 7.1738, 11.4613, 6.0091, 12.0089, 5.4598, 10.2985, 6.8865, 11.5132, 5.981, 7.174, 7.3063, 5.5573, 5.8064, 5.4767, 2.3754, 1.3101, 6.8402, 6.8583, 5.3627, 9.0668], '192.168.122.116': [6.216, 5.6813, 6.1519, 5.6264, 16.3548, 6.8312, 6.9361, 5.4777, 11.0321, 5.7559, 11.9383, 5.8777, 5.5287, 5.2731, 6.753, 6.1119, 7.2286, 7.0581, 16.649, 5.8382, 5.5168, 10.9491, 5.4035, 5.4214, 5.5687, 7.6652, 11.0776, 6.8538, 11.0886, 5.8978, 6.3112, 6.3014, 5.4126, 6.2237, 10.5853, 5.919, 10.3533, 10.9162, 11.7607, 6.0871, 6.8052, 11.5182, 6.104, 5.722, 5.5659, 6.7904, 11.1268, 5.3473, 5.3897, 6.5091, 5.7421, 7.0274, 11.3978, 6.0103, 6.1162, 6.9284, 5.7847, 5.981, 5.4307, 12.2597, 7.1595, 5.5134, 5.9595, 10.488, 10.9036, 10.9611, 5.3332, 7.4203, 6.2861, 5.811, 6.2077, 7.1263, 6.2337, 5.729, 5.9085, 5.4502, 6.1448, 7.0486, 5.5673, 11.4028, 6.4509, 6.2296, 5.6634, 5.4302, 5.5616, 5.4994, 6.3832, 6.0358, 10.761, 5.4619, 10.9484, 5.6589, 11.3826, 11.3394, 6.8953, 5.7318, 5.6829, 5.1816, 5.3425, 5.4991, 6.5563, 6.0608, 5.5804, 5.7199, 10.4501, 10.9031, 5.6281, 6.2897, 6.4485, 6.6605, 5.7552, 5.5416, 5.7631, 40.4885, 5.9803, 6.7978, 6.8071, 22.315, 5.409, 5.9483, 6.8612, 5.9891, 6.7644, 6.783, 6.3529, 6.5448, 5.4414, 5.2922, 11.3931, 5.6753, 6.0577, 5.3864, 10.9446, 5.4319, 6.6347, 5.4369, 5.9743, 5.6903, 5.7526, 5.882, 5.8124, 5.8129, 6.7451, 5.3389, 7.2832, 5.6095, 6.9585, 6.3167, 5.9888, 0.9103, 11.1032, 11.3683, 6.3043, 6.861, 12.0127, 11.9112, 12.0702, 5.9018, 11.3966, 6.2799, 17.1914, 5.666, 21.8124, 11.2901, 5.7576, 5.549, 5.6279, 7.3855, 5.3768, 6.4294, 5.532, 5.9936, 6.3674, 11.2593, 5.5506, 11.112, 6.8645, 6.7275, 6.4547, 5.7244, 11.5461, 5.5125, 17.1847, 5.7936, 5.8708, 11.389, 5.5456, 5.4336, 10.8123, 7.2916, 6.7711, 5.8489, 6.2656, 16.5453, 5.7313, 7.0677, 5.6717, 10.9613, 5.7576, 11.2114, 6.4046, 6.5231, 6.2513, 11.9674, 11.0407, 11.3118, 16.5284, 6.0081, 6.4995, 6.4263, 5.2841, 6.3827, 5.3813, 11.0033, 22.4736, 11.8887, 11.2886, 5.4426, 5.939, 5.4901, 5.8551, 5.6243, 6.3825, 5.6431, 5.4741, 6.6059, 5.7518, 11.3318, 11.1015, 5.7535, 6.0043, 5.8279, 10.7601, 5.4657, 5.975, 5.6672, 5.5754, 6.8443, 5.7919, 5.625, 5.7113, 11.1432, 6.4065, 11.0292, 8.5962, 6.35, 6.273, 11.7998, 6.0387, 5.6286, 11.1685, 5.6834, 6.4235, 6.8674, 6.4013, 5.779, 5.394, 10.9668, 12.3765, 16.8364, 5.3957, 17.5536, 6.0606, 6.0425, 1.0397, 6.6884, 5.5888, 6.6731, 5.5988, 5.5385, 5.3682, 11.4405, 17.4673, 6.5899, 5.5494, 5.343, 6.8753, 5.6157, 16.3419, 5.7576, 6.2788, 6.4104, 6.1543, 5.4126, 5.7204, 11.193, 6.1748, 6.18, 5.7056, 5.9068, 11.5561, 10.8149, 6.3784, 7.0195, 11.873, 6.8901, 6.2952, 5.6469, 6.1886, 11.8244, 6.0999, 5.3852, 6.7391, 6.0637, 6.8183, 7.3712, 5.6927, 6.2187, 10.8292, 11.204, 5.9144, 5.882, 6.1252, 6.0973, 6.0225, 5.4183, 6.0189, 5.3015, 6.4974, 10.9811, 10.8593, 6.299, 7.22, 11.1675, 6.0983, 5.362, 5.2299, 5.9547, 11.8368, 7.472, 5.4321, 19.0353, 5.8923, 5.403, 5.6219, 12.5532, 11.0545, 6.4905, 6.2957, 11.3742, 6.3882, 10.9184, 5.6689, 5.3051, 11.2586, 7.0601, 6.3927, 16.7482, 6.6493, 6.4235, 6.4657, 12.6224, 10.6783, 5.775, 16.8424, 6.0129, 10.9315, 5.4367, 5.9118, 11.7278, 10.8495, 12.0196, 6.1953, 6.1107, 7.3748, 22.7888, 1.6785, 0.5362, 5.3549, 6.4311, 5.5668, 11.9424], '192.168.122.114': [10.9031, 11.5664, 10.9518, 5.6214, 5.8041, 5.5125, 6.0971, 5.4414, 10.8771, 11.4815, 5.2669, 10.6688, 6.3779, 6.7213, 11.7977, 6.6776, 6.1665, 5.6741, 10.9823, 1.5109, 5.5058, 5.6579, 6.9532, 10.9599, 7.6034, 6.9201, 6.6569, 11.5786, 5.5001, 12.6204, 11.0672, 11.4577, 6.7251, 5.9998, 5.6782, 5.5809, 5.3005, 10.8206, 5.2981, 17.0293, 11.1237, 5.7518, 5.6415, 6.2604, 5.6021, 5.4519, 5.5871, 5.6274, 6.6001, 6.8409, 6.969, 5.8279, 11.2758, 11.9972, 6.0947, 5.3663, 5.4011, 11.8561, 5.6002, 5.8088, 10.7033, 17.2269, 5.3499, 5.3923, 5.4638, 5.8937, 5.4607, 17.6828, 5.8377, 11.3044, 5.6679, 11.1251, 10.9928, 26.8269, 6.7902, 5.4581, 6.134, 11.6513, 5.537, 6.2802, 6.3729, 5.8947, 6.2342, 5.8503, 5.7216, 11.2495, 5.7788, 6.4244, 6.4802, 10.7617, 10.8581, 5.2049, 11.2762, 12.8372, 5.4688, 5.8925, 5.9094, 6.3875, 5.78, 5.6815, 7.9737, 6.5231, 8.1785, 6.3789, 5.3246, 5.748, 5.4901, 6.3441, 5.8601, 6.7606, 16.9299, 15.8, 5.3675, 6.767, 11.2867, 7.1023, 5.614, 10.8783, 5.4615, 5.482, 5.7585, 5.2743, 6.1584, 10.932, 10.864, 10.905, 6.1932, 5.3847, 5.5637, 5.8703, 6.0258, 10.7327, 5.5437, 10.9737, 6.2551, 5.5256, 6.8855, 5.9114, 5.9979, 5.6314, 5.5771, 5.3258, 5.8725, 10.6068, 7.4475, 6.7189, 28.0523, 5.2152, 5.7058, 6.5403, 6.006, 5.6176, 5.3415, 6.371, 6.8452, 11.6007, 6.0647, 6.0825, 6.3488, 5.8033, 5.636, 12.0718, 5.5845, 11.3583, 5.6703, 5.6295, 11.1306, 6.1595, 6.3851, 10.9184, 6.0976, 5.6672, 10.4206, 5.3046, 5.4238, 6.3941, 5.4419, 6.1512, 6.3381, 5.7688, 7.8802, 6.0396, 6.4504, 11.5125, 25.9848, 5.9292, 5.9831, 6.2494, 5.852, 7.3745, 11.3456, 11.7784, 6.5598, 17.2217, 5.2783, 5.9762, 10.8957, 10.9987, 10.4444, 5.5993, 11.2004, 5.8062, 6.1073, 7.0877, 10.8173, 11.3819, 17.0045, 11.4543, 11.1463, 6.525, 5.8472, 11.1196, 5.5635, 6.2337, 5.6171, 5.5089, 7.1239, 5.8186, 5.9078, 0.7417, 11.1837, 7.1104, 11.4551, 10.7677, 6.0511, 8.0519, 5.8353, 5.5656, 6.4692, 6.6185, 6.16, 5.2042, 5.8401, 11.0586, 5.626, 6.8784, 6.2971, 5.4672, 6.7306, 7.1175, 5.8334, 11.3616, 5.7595, 6.6719, 6.6531, 11.1542, 6.4104, 6.196, 6.1226, 6.0155, 6.7103, 11.2324, 10.4861, 5.4445, 6.505, 6.4635, 5.8198, 5.6329, 7.0586, 11.8961, 11.5089, 5.9555, 5.7678, 5.5344, 1.435, 6.254, 13.2563, 5.5842, 10.9031, 6.1932, 6.2408, 5.9581, 5.6884, 6.6209, 10.5026, 5.7805, 6.9482, 6.1011, 5.7356, 12.8975, 6.2904, 6.2952, 6.3379, 10.6854, 5.9757, 10.9677, 5.5068, 1.3182, 6.4189, 10.7729, 5.4607, 5.662, 6.4826, 5.7478, 5.7232, 11.9548, 0.8645, 5.8742, 11.3358, 10.989, 6.0308, 5.306, 5.4579, 10.9606, 6.8755, 12.8193, 5.5733, 11.9109, 5.3751, 7.5331, 6.13, 6.5992, 7.288, 5.4162, 5.3718, 6.8867, 5.3906, 6.223, 22.402, 5.2879, 11.1284, 7.3094, 6.0823, 5.2543, 5.7211, 10.9792, 6.3937, 5.4312, 7.1144, 11.6792, 7.2868, 5.842, 11.7245, 5.5041, 5.6791, 6.5742, 5.4877, 11.2717, 6.4096, 10.8447, 0.849, 10.8883, 10.9553, 5.2209, 5.8749, 11.0869, 5.7111, 11.2472, 5.6298, 11.2059, 6.4101, 6.3767, 5.9397, 6.3961, 12.0356, 11.0033, 10.8898, 11.0526, 11.2648, 6.5708, 10.7749, 7.0539, 5.7871, 5.9421, 6.9363, 6.3424, 1.7903, 0.6416, 10.9346, 11.2748, 11.6773, 12.8179], '192.168.122.113': [5.6868, 5.3084, 6.6319, 5.7895, 5.6329, 6.701, 5.584, 5.5737, 11.6305, 10.8993, 7.103, 6.0372, 5.5537, 6.9289, 13.2542, 5.9576, 5.5223, 5.8372, 6.943, 0.9937, 5.6937, 16.5586, 6.429, 5.5013, 5.6498, 5.8146, 6.1452, 6.3822, 10.9558, 5.3992, 11.4341, 11.5414, 5.8701, 6.1724, 6.351, 5.4796, 10.721, 6.9346, 5.4827, 10.7784, 5.8019, 5.8038, 6.3367, 5.4977, 11.2736, 11.0476, 11.2445, 5.5647, 11.0016, 5.8739, 11.4868, 5.5387, 5.5468, 13.4237, 6.2149, 10.9129, 5.8455, 10.4182, 11.797, 5.8455, 5.4331, 5.481, 5.9214, 5.3482, 11.1296, 5.2755, 6.398, 11.5507, 16.0899, 5.2559, 11.1871, 7.2346, 6.7916, 6.0351, 5.3606, 5.9965, 11.5702, 6.2802, 5.5015, 6.3045, 11.4088, 5.7175, 6.2058, 11.7114, 5.2521, 5.7049, 6.3686, 6.4893, 11.447, 11.0378, 7.6435, 6.2275, 11.2469, 11.1513, 11.404, 7.2887, 6.6838, 10.7729, 16.6698, 5.5549, 5.4896, 5.9648, 5.666, 6.9416, 6.3536, 12.9912, 5.5988, 6.5243, 11.4441, 5.4715, 0.6876, 5.6641, 5.8479, 6.8402, 5.7178, 10.8738, 6.1681, 5.4433, 6.2437, 6.2811, 5.9736, 5.6353, 16.372, 11.0989, 11.075, 6.3913, 6.4514, 5.9984, 6.9621, 6.5203, 11.0066, 6.5782, 6.1083, 11.411, 11.8518, 10.8862, 7.4401, 11.4796, 11.8539, 5.764, 10.7622, 11.2331, 6.5286, 5.4734, 6.5496, 5.8289, 6.4566, 6.2551, 6.2928, 5.6288, 6.4704, 16.0139, 17.1504, 6.9683, 6.0194, 16.4127, 22.0706, 17.4413, 5.9767, 6.3486, 5.8875, 5.6212, 5.9614, 5.409, 6.026, 5.59, 11.3883, 11.4307, 17.3185, 6.5196, 6.2647, 6.3815, 5.8782, 5.4135, 5.969, 6.4347, 11.1444, 10.8371, 5.8584, 11.4081, 5.6071, 16.8617, 10.7272, 10.9575, 6.3682, 5.9404, 11.4443, 10.9978, 5.3387, 6.2351, 5.5625, 5.4166, 5.5871, 6.4223, 10.6349, 6.7322, 6.0689, 5.5628, 5.8703, 5.8117, 5.6996, 11.1265, 6.16, 28.5983, 5.8534, 6.3033, 11.4424, 6.0005, 6.2542, 5.2917, 5.8594, 10.5739, 5.5943, 6.4955, 5.8317, 5.7843, 10.9928, 5.403, 7.0593, 0.664, 5.8265, 5.4927, 6.8812, 6.4151, 5.4908, 11.4543, 16.4399, 5.8324, 5.7278, 6.6757, 6.0663, 5.3673, 11.1845, 6.0689, 5.4877, 11.8833, 5.4417, 6.8815, 5.7786, 6.1247, 5.8258, 11.4627, 11.3444, 6.5451, 6.9764, 5.434, 5.4743, 5.8079, 5.5077, 10.7801, 0.8874, 6.4361, 5.296, 6.6998, 5.3372, 10.9968, 6.5618, 6.5463, 6.32, 6.7945, 5.8818, 10.7825, 7.225, 6.1839, 12.1679, 12.4755, 6.6805, 10.9401, 5.9199, 5.7349, 6.592, 12.7192, 5.362, 5.4224, 6.0389, 5.4321, 7.5016, 5.3635, 5.6696, 5.4545, 10.746, 11.5001, 5.3065, 5.3437, 5.2726, 5.9898, 5.4126, 1.1477, 5.3134, 5.4986, 5.841, 11.8852, 5.5194, 10.9091, 5.5075, 18.0783, 0.6781, 5.4424, 5.429, 5.7859, 6.1865, 5.388, 6.8626, 6.3474, 6.9685, 6.3252, 10.7238, 6.4156, 6.0661, 6.6092, 6.8543, 16.5091, 6.2206, 17.3028, 6.1226, 5.4913, 5.517, 5.5153, 6.4008, 5.3706, 6.7642, 6.1557, 11.1396, 5.8224, 6.3164, 5.4116, 5.2605, 10.6194, 5.9302, 7.6964, 7.6387, 11.5385, 5.5261, 6.1085, 6.6998, 11.1411, 5.1959, 13.9742, 10.9434, 11.3432, 7.7698, 6.4168, 6.0475, 5.8963, 6.7217, 5.5571, 11.2929, 15.9118, 11.9593, 6.4049, 11.0693, 6.366, 12.1486, 5.661, 6.2129, 6.2041, 16.2616, 6.259, 6.2733, 6.8326, 11.3366, 6.7275, 11.2216, 11.5855, 6.4054, 11.5452, 1.961, 0.6692, 5.4557, 11.1191, 6.0055, 5.7545], '192.168.122.112': [11.1682, 5.5051, 11.4298, 5.553, 5.3208, 5.7635, 5.3575, 5.6124, 6.5689, 5.6558, 7.1027, 11.0595, 5.4808, 10.8654, 6.777, 6.0601, 5.8117, 11.344, 6.15, 3.5248, 5.4963, 6.6192, 5.796, 10.8788, 5.796, 8.0986, 6.8352, 10.4513, 6.1119, 5.9981, 16.9849, 5.8117, 5.7292, 6.3896, 6.0718, 11.1439, 5.4517, 5.399, 6.0773, 5.8272, 5.9524, 17.5586, 5.7409, 5.5585, 11.3754, 5.5602, 5.3959, 5.5535, 6.3982, 6.0024, 6.0334, 6.2044, 6.2125, 12.2447, 6.8073, 6.9389, 11.2379, 5.8699, 5.8556, 5.3654, 11.1525, 5.3568, 5.3391, 10.3784, 5.9617, 11.0059, 6.5506, 12.4283, 5.7082, 10.8709, 5.4467, 6.9239, 6.4628, 11.965, 6.1052, 6.0277, 10.783, 10.9708, 5.6398, 6.9468, 6.2411, 6.2397, 5.8513, 5.7597, 5.3968, 5.3892, 10.8407, 10.8173, 11.1113, 10.9417, 11.0292, 6.1307, 12.8794, 5.7764, 6.398, 5.7416, 6.4571, 6.3097, 5.2013, 5.4674, 36.0093, 6.3105, 6.7997, 5.5382, 5.8284, 6.4924, 5.4941, 7.2474, 5.6167, 7.2684, 0.6182, 11.3413, 6.0015, 6.825, 6.1238, 6.2609, 1.5457, 11.1399, 5.3256, 6.4855, 23.1094, 10.7505, 10.8647, 11.7874, 6.0277, 5.7476, 5.2068, 10.9172, 5.722, 10.9782, 5.63, 6.7875, 6.6931, 5.7018, 5.358, 6.541, 5.5387, 11.3034, 6.1376, 5.5027, 10.7942, 6.875, 5.81, 10.7367, 5.698, 22.9304, 5.5716, 6.0711, 5.959, 6.1214, 11.2922, 11.6313, 5.6851, 6.5541, 5.7487, 6.9716, 5.6562, 5.4462, 5.8525, 7.1845, 17.0591, 17.4079, 6.0673, 6.5892, 7.0977, 5.7917, 12.567, 5.6858, 5.8799, 5.9283, 16.4685, 6.3598, 11.0219, 5.7397, 5.7948, 5.9712, 10.8855, 10.9458, 6.4845, 5.6837, 6.9287, 10.9091, 5.9965, 10.874, 11.0719, 7.6275, 5.2354, 6.5987, 5.2307, 5.2271, 11.375, 5.3234, 6.5041, 11.0083, 22.3899, 7.1034, 10.4954, 10.9792, 5.378, 11.843, 10.6583, 6.33, 5.6281, 6.011, 5.8382, 5.517, 11.8434, 6.9897, 5.7819, 10.8426, 0.8812, 6.7525, 11.2917, 6.1157, 5.6031, 11.3926, 11.23, 5.6157, 6.9525, 0.7479, 7.2491, 6.8934, 6.1638, 11.3225, 10.9286, 6.2668, 5.6481, 6.0792, 6.3179, 5.5406, 12.126, 6.2068, 11.9627, 11.0567, 11.3211, 5.6007, 6.3689, 6.9034, 7.1576, 5.2335, 5.7237, 6.3963, 11.4725, 16.9244, 10.5932, 11.8115, 5.6899, 5.877, 5.6977, 5.748, 0.8471, 6.4647, 5.271, 5.7914, 7.2386, 5.7261, 10.7887, 5.7318, 6.1831, 11.9271, 5.6839, 6.0198, 5.6956, 6.0451, 6.2463, 6.9788, 6.7651, 5.4085, 7.5438, 16.7279, 5.3241, 5.4219, 5.2664, 5.904, 5.9352, 5.4774, 6.6934, 10.987, 5.7256, 17.5037, 6.1684, 6.4526, 5.9984, 11.0357, 7.3524, 6.3622, 6.726, 2.1064, 5.6715, 5.8606, 5.3957, 23.7916, 5.7654, 5.8727, 5.2168, 5.6908, 0.7579, 11.2338, 6.7272, 10.9372, 6.7909, 5.9395, 6.2962, 10.8454, 5.3694, 5.6026, 5.4162, 6.5119, 11.3738, 5.5714, 5.4266, 5.4798, 6.9532, 5.5587, 6.608, 11.0195, 11.0242, 5.7189, 6.464, 6.7937, 10.8125, 7.7326, 5.9063, 6.8712, 5.5048, 5.6436, 5.9006, 5.3337, 7.8127, 6.8052, 18.2049, 6.9659, 6.1638, 5.4469, 5.6505, 22.2657, 6.0112, 5.5175, 5.7909, 10.6876, 6.4316, 10.9839, 7.4825, 5.9266, 7.0181, 6.8278, 10.7493, 5.4255, 5.9695, 10.8473, 11.0326, 11.3068, 11.9221, 5.7051, 6.4399, 6.3639, 11.1055, 10.8392, 5.3728, 5.7194, 6.7816, 5.8725, 5.6951, 5.5377, 5.6014, 12.5191, 2.1255, 0.6893, 5.3668, 5.8596, 6.175, 6.5114], '192.168.122.111': [6.6345, 6.1345, 6.3729, 7.261, 5.2731, 11.1215, 11.27, 5.594, 11.4608, 27.3635, 6.4099, 5.4297, 6.5155, 6.4731, 5.5912, 6.5651, 5.9199, 18.3983, 6.3841, 2.8131, 11.1773, 5.9786, 16.9294, 11.2877, 6.5246, 11.796, 5.3301, 5.7089, 5.9712, 23.0181, 11.096, 6.3722, 17.1824, 6.4294, 11.0197, 11.1296, 5.3082, 10.4997, 5.2042, 11.1148, 5.3852, 5.9419, 7.3678, 5.363, 11.3537, 5.9631, 5.2211, 5.5039, 6.3953, 5.3444, 12.0678, 6.7139, 6.1913, 5.9469, 5.3763, 10.8764, 11.2388, 6.6051, 6.0954, 16.7813, 5.9476, 5.2891, 6.5145, 10.4053, 5.492, 5.8062, 5.5833, 5.6622, 17.4685, 11.0044, 5.4612, 11.4181, 24.358, 10.9622, 11.3754, 5.6493, 6.15, 5.6856, 6.4421, 5.6918, 11.9996, 5.9552, 5.4173, 5.8146, 5.8181, 6.2189, 17.3972, 10.8864, 11.1234, 7.5855, 6.5067, 5.5256, 6.5122, 6.0201, 5.425, 12.0051, 5.8804, 5.3918, 5.8558, 5.8122, 5.9597, 5.4164, 19.8553, 6.2449, 6.2222, 6.8593, 10.7393, 6.0139, 6.4764, 6.839, 1.1322, 11.308, 6.7642, 11.1268, 6.0582, 10.9072, 6.6335, 6.4712, 12.1634, 5.9755, 5.7786, 21.5223, 5.2485, 6.9849, 6.072, 10.9022, 5.2955, 5.9011, 5.5103, 5.6365, 6.8648, 11.2667, 5.8486, 11.4312, 5.3663, 5.8577, 6.2287, 8.3051, 5.3303, 5.3377, 5.9204, 5.8939, 6.66, 6.1607, 6.443, 11.1046, 5.7039, 11.138, 6.6156, 10.8523, 11.2746, 11.4753, 10.8488, 5.3558, 6.1738, 11.3163, 5.9955, 5.9049, 11.4999, 6.8879, 6.0723, 7.0066, 5.7096, 11.641, 5.5873, 5.7375, 6.7115, 5.6176, 6.8018, 5.585, 5.7802, 5.8568, 10.4933, 5.4286, 16.042, 5.4142, 5.3203, 6.0227, 10.8521, 11.631, 5.631, 5.321, 5.3446, 5.43, 5.9102, 6.8872, 5.5501, 10.9708, 5.4729, 5.4355, 5.1756, 6.1605, 5.8086, 5.7037, 10.8449, 5.9984, 5.2519, 11.0745, 5.918, 5.2462, 5.619, 6.7461, 6.8197, 6.0282, 5.8889, 5.6586, 5.4984, 16.196, 5.8639, 6.4399, 0.7203, 5.8258, 6.4514, 6.0477, 6.566, 5.1823, 11.0316, 17.8201, 5.9121, 0.7136, 11.6415, 11.1032, 5.5616, 10.7911, 5.512, 11.519, 6.2084, 11.3115, 6.5296, 10.2863, 16.0427, 5.2853, 10.9529, 5.8048, 6.1698, 11.4539, 5.4581, 5.3978, 5.9166, 10.735, 5.4994, 6.5103, 11.7834, 10.9813, 10.9751, 6.5234, 11.2023, 11.3914, 11.4379, 5.8112, 0.7119, 5.6162, 6.4113, 5.7056, 10.4713, 6.3665, 11.2405, 5.4541, 11.622, 11.8814, 11.2131, 10.8385, 6.4104, 5.481, 21.9378, 5.6574, 6.8638, 5.4331, 11.2338, 6.3093, 11.2498, 6.4931, 10.7641, 6.3014, 5.2681, 10.7012, 5.6696, 5.9721, 6.1009, 5.6446, 7.2432, 6.4073, 5.4643, 5.2562, 5.765, 6.4545, 12.0897, 1.4639, 5.5518, 5.3215, 5.8801, 5.5707, 7.123, 11.1296, 5.7869, 11.4949, 6.4487, 5.388, 6.8591, 11.8008, 5.7652, 5.2509, 5.4469, 10.9112, 6.0425, 11.2166, 5.4004, 6.2778, 5.7395, 11.5163, 6.9625, 5.594, 6.6011, 6.2408, 6.618, 5.3225, 5.3413, 5.6376, 7.4029, 21.2684, 6.1805, 5.7323, 5.6312, 11.5707, 6.4867, 16.2802, 6.3066, 5.6565, 6.7551, 7.4124, 7.2184, 6.9749, 7.0655, 6.922, 10.9255, 11.4038, 5.3391, 10.7393, 10.8893, 10.8671, 6.8126, 5.7025, 5.3096, 5.2793, 5.6324, 5.3627, 5.4815, 5.769, 12.6433, 6.4793, 5.7907, 7.2279, 5.9752, 5.6522, 11.5063, 6.0449, 6.0046, 5.5757, 5.5163, 5.4588, 5.3062, 7.1051, 11.2276, 11.2698, 11.0755, 5.5482, 1.3607, 0.6292, 5.5237, 5.2774, 5.5358, 5.8711]} cpu5_3_7 = [19.0, 30.3, 0.4, 1.0, 1.1, 0.6, 1.4, 1.6, 1.1, 1.4, 1.0, 0.2, 0.2, 0.7, 1.7, 0.0, 0.4, 1.4, 2.5, 1.6, 1.5, 4.2, 3.1, 0.6, 0.9, 0.5, 0.2, 0.3, 0.6, 0.5, 1.0, 1.8, 0.5, 1.6, 0.3, 0.4, 0.0, 0.0, 0.8, 1.1, 1.9, 3.1, 0.8, 0.8, 1.6, 1.3, 0.2, 0.6, 0.2, 1.2, 0.8, 0.3, 0.4, 0.5, 0.2, 0.4, 0.7, 1.6, 1.2, 0.1, 0.4, 0.1, 0.1, 1.4, 0.1, 0.6, 0.2, 0.8, 2.2, 0.9, 1.2, 0.9, 1.4, 5.6, 5.2, 0.2, 0.6, 0.6, 0.5, 0.4, 0.2, 0.5, 1.6, 1.2, 0.9, 0.9, 0.2, 1.0, 1.2, 0.6, 0.9, 0.3, 1.0, 0.5, 3.6, 4.1, 0.8, 0.5, 0.2, 0.5, 0.1, 0.5, 0.6, 1.0, 0.7, 1.3, 0.6, 0.6, 0.3, 0.1, 0.1, 0.1, 0.8, 0.8, 0.3, 0.6, 1.0, 1.5, 0.2, 0.2, 0.2, 1.2, 1.4, 0.1, 0.4, 0.2, 0.7, 0.5, 2.0, 3.4, 0.6, 0.8, 1.7, 0.3, 0.3, 0.5, 0.6, 0.5, 1.1, 1.1, 1.2, 0.9, 0.2, 0.4, 0.2, 0.6, 0.6, 2.5, 2.5, 0.8, 0.7, 0.1, 1.8, 2.1, 0.4, 1.5, 1.8, 1.8, 1.7, 0.4, 0.8, 0.5, 2.4, 1.1, 1.0, 1.1, 1.2, 2.4, 2.6, 1.2, 1.8, 1.8, 0.1, 0.2, 0.6, 0.3, 0.1, 4.7, 4.7, 0.4, 0.3, 0.7, 0.7, 1.0, 1.0, 0.8, 0.4, 1.4, 1.1, 1.1, 1.7, 1.0, 0.2, 1.2, 0.8, 1.3, 0.1, 1.0, 0.5, 0.8, 0.5, 0.6, 0.8, 1.2, 1.6, 1.1, 0.1, 1.1, 0.8, 0.7, 0.4, 0.5, 1.2, 0.6, 0.4, 0.1, 0.3, 0.8, 0.7, 0.4, 1.3, 1.2, 0.9, 0.5, 0.7, 0.1, 1.1, 0.3, 0.8, 0.4, 1.4, 1.1, 1.5, 0.6, 0.8, 2.1, 1.4, 1.4, 1.6, 1.7, 1.2, 0.4, 0.4, 1.4, 3.2, 3.7, 0.9, 0.0, 0.5, 0.3, 0.6, 0.5, 0.6, 0.1, 0.1, 0.2, 0.4, 0.0, 0.8, 0.1, 0.3, 0.8, 0.3, 0.4, 6.1, 7.2, 0.2, 0.7, 0.1, 0.1, 1.1, 0.0, 1.4, 0.0, 0.2, 5.6, 5.5, 1.9, 1.7, 1.5, 0.8, 2.1, 2.0, 0.8, 0.4, 2.2, 1.9, 0.3, 0.1, 0.6, 0.8, 4.3, 4.3, 1.4, 1.4, 0.1, 0.2, 1.9, 3.3, 0.7, 0.2, 1.1, 0.4, 0.6, 1.4, 1.5, 1.7, 1.2, 0.5, 1.4, 0.8, 1.7, 0.5, 0.2, 0.5, 0.5, 0.3, 0.7, 0.1, 0.9, 1.5, 0.4, 1.4, 0.4, 0.8, 1.3, 0.6, 1.6, 8.4, 6.4, 5.6, 4.9, 0.5, 0.3, 2.1, 2.4, 2.2, 0.3, 1.1, 2.4, 2.4, 2.7, 1.0, 2.3, 0.6, 3.1, 3.2, 1.1, 0.0, 0.2, 1.4, 3.1, 2.1, 0.0, 0.6, 0.3, 5.1, 3.2, 0.5, 1.4, 0.4, 0.2, 0.7, 1.0, 0.6, 0.5, 0.2, 2.0, 0.3, 0.6, 0.5, 1.1] off_mec5_3_7 = 242 off_cloud5_3_7 = 264 inward_mec5_3_7 = 180 loc5_3_7 = 763 deadlock5_3_7 = [6] memory5_3_7 = [0.2175, 0.218, 0.218, 0.2185, 0.2186, 0.2186, 0.2187, 0.2187, 0.2187, 0.2187, 0.2187, 0.2188, 0.2189, 0.2189, 0.2189, 0.219, 0.219, 0.219, 0.219, 0.219, 0.2191, 0.2191, 0.2191, 0.2192, 0.2192, 0.2192, 0.2193, 0.2193, 0.2193, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2196, 0.22, 0.2201, 0.2201, 0.2201, 0.2201, 0.2202, 0.2202, 0.2203, 0.2203, 0.2204, 0.2204, 0.2204, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2206, 0.2206, 0.2206, 0.2206, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2208, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.221, 0.221, 0.221, 0.2211, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2213, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2215, 0.2215, 0.2215, 0.2215, 0.2217, 0.2217, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2219, 0.2219, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2227, 0.2228, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.2229, 0.223, 0.223, 0.223, 0.223, 0.223, 0.223, 0.2231, 0.2231, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2236, 0.2236, 0.2236, 0.2236, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.2241, 0.2242, 0.2243, 0.2243, 0.2243, 0.2245, 0.2245, 0.2245, 0.2245, 0.2247, 0.2247, 0.2248, 0.2248, 0.2248, 0.2249, 0.2249, 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.225, 0.2251, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2254, 0.2255, 0.2255, 0.2255, 0.2255, 0.2255, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2256, 0.2257, 0.2257, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.2262, 0.2263, 0.2263, 0.2263, 0.2263, 0.2263, 0.2263, 0.2263, 0.2264, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2265, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2266, 0.2267, 0.2267, 0.2267, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2268, 0.2269, 0.227, 0.227, 0.2271, 0.2271, 0.2275, 0.2278, 0.2278, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2281, 0.2282, 0.2282, 0.2282, 0.2282, 0.2282, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2285, 0.2285, 0.2285, 0.2285, 0.2286] task_received5_3_7 = 1269 sent_t5_3_7 = {'124': 471, '125': 396, '126': 402} cooperate5_3_7 = {'mec': 242, 'cloud': 264} task_record5_3_7 = {} outward_mec5_3_7 = 39 offload_check5_3_7 = [] timed_out_tasks5_3_7 = 0
insert_sensor_schema = { "$schema": "http://json-schema.org/draft-07/schema#", "title": "insert-sensor-schema", "description": "Schema for inserting new sensor readings", "type": "object", "properties": { "temperature": { "$id": "/properties/temperature", "type": "number", "title": "A temperature reading (in celsius)", "examples": [23.7], }, "humidity": { "$id": "/properties/humidity", "type": "number", "title": "A humidity reading (in percentage)", "examples": [46.79], }, "pressure": { "$id": "/properties/pressure", "type": "number", "title": "A pressure reading (in hPa)", "default": 0, "examples": [1010.6], }, "luminosity": { "$id": "/properties/luminosity", "type": "integer", "title": "A luminosity reading (in lux)", "default": 0, "examples": [200], }, }, "required": ["temperature", "humidity", "pressure", "luminosity"], }
# Copyright (C) 2022 Google Inc. # # 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. """starlark marcors to generate test suites.""" _TEMPLATE = """package {VAR_PACKAGE}; import org.junit.runners.Suite; import org.junit.runner.RunWith; @RunWith(Suite.class) @Suite.SuiteClasses({{{VAR_CLASSES}}}) public class {VAR_NAME} {{}} """ def _impl(ctx): classes = ",".join(sorted(ctx.attr.test_classes)) ctx.actions.write( output = ctx.outputs.out, content = _TEMPLATE.format( VAR_PACKAGE = ctx.attr.package_name, VAR_CLASSES = classes, VAR_NAME = ctx.attr.name, ), ) _gen_suite = rule( attrs = { "test_classes": attr.string_list(), "package_name": attr.string(), }, outputs = {"out": "%{name}.java"}, implementation = _impl, ) def guice_test_suites(name, deps, srcs = None, args = [], suffix = "", sizes = None, jvm_flags = []): """ Generates tests for test file in srcs ending in "Test.java" Args: name: name of the test suite to generate srcs: list of test source files, uses 'glob(["**/*Test.java"])' if not specified deps: list of runtime dependencies requried to run the test args: list of flags to pass to the test jvm_flags: list of JVM flags to pass to the test suffix: suffix to apend to the generated test name sizes: not used, exists only so that the opensource guice_test_suites mirror exactly the internal one """ flags = [] flags.extend(jvm_flags) # transform flags to JVM options used externally for arg in args: if arg.startswith("--"): flags.append(arg.replace("--", "-D")) else: flags.append(arg) package_name = native.package_name() # strip the path prefix from package name so that we get the correct test class name # "core/test/com/google/inject" becomes "com/google/inject" # "extensions/service/test/com/google/inject/service" becomes "com/google/inject/service" if package_name.startswith("core/test/") or package_name.startswith("extensions/"): package_name = package_name.rpartition("/test/")[2] test_files = srcs or native.glob(["**/*Test.java"]) test_classes = [] for src in test_files: test_name = src.replace(".java", "") test_classes.append((package_name + "/" + test_name + ".class").replace("/", ".")) suite_name = name + suffix _gen_suite( name = suite_name, test_classes = test_classes, package_name = package_name.replace("/", "."), ) native.java_test( name = "AllTestsSuite" + suffix, test_class = (package_name + "/" + suite_name).replace("/", "."), jvm_flags = flags, srcs = [":" + suite_name], deps = deps + [ "//third_party/java/junit", ], )
# @time: 2021/12/10 4:00 下午 # Author: pan # @File: ATM.py # @Software: PyCharm # 选做题:编写ATM程序实现下述功能,数据来源于文件db.txt # 1、充值功能:用户输入充值钱数,db.txt中该账号钱数完成修改 # 2、转账功能:用户A向用户B转账1000元,db.txt中完成用户A账号减钱,用户B账号加钱 # 3、提现功能:用户输入提现金额,db.txt中该账号钱数减少 # 4、查询余额功能:输入账号查询余额 db_data = {} def update_db_data(): """更新数据""" with open("db.txt", mode="rt") as f: for line in f: res = line.strip() name, money = res.split(":") # print(name, money) db_data[name] = int(money) print("当前账户的信息:", db_data) def update_local_db_data(): """更新文件中的数据""" with open("db.txt", mode="wt") as f: for key, value in db_data.items(): f.write("{}:{}\n".format(key, value)) def is_avalide_user(name): """判断用户是否存在""" if db_data.get(name): return True else: return False def re_charge(): """充值功能""" while True: inp_name = input("请输入充值账户:").strip() if not is_avalide_user(inp_name): print("充值用户不存在,请重新输入充值用户!") continue inp_money = input("请输入充值金额:").strip() if not inp_money.isdigit(): print("请输入数字金额:") continue # 可以进行充值 db_data[inp_name] += int(inp_money) print(db_data) update_local_db_data() update_db_data() break def tranfer_money(): """转账功能:用户A向用户B转账1000元,db.txt中完成用户A账号减钱,用户B账号加钱""" while True: inp_name_a = input("请输入用户A:").strip() if not is_avalide_user(inp_name_a): print("用户A不存在!") continue inp_name_b = input("请输入用户B:").strip() if not is_avalide_user(inp_name_a): print("用户B不存在!") continue if inp_name_a == inp_name_b: print("不能给自己转账!") continue inp_money = input("请输入转账金额:").strip() if not inp_money.isdigit(): print("请输入数字金额:") continue if db_data[inp_name_a] < int(inp_money): print("转账金额不能大于A账户的余额!") continue # 可以进行转账 db_data[inp_name_a] -= int(inp_money) db_data[inp_name_b] += int(inp_money) print(db_data) update_local_db_data() update_db_data() break def hand_out_money(): """提现功能:用户输入提现金额,db.txt中该账号钱数减少""" while True: inp_name = input("请输入用户名:").strip() if not is_avalide_user(inp_name): print("该用户不存在!") continue inp_money = input("请输入提现金额:").strip() if not inp_money.isdigit(): print("请输入提现数字金额:") continue if db_data[inp_name] < int(inp_money): print("提现金额过大!") continue # 可以提现 db_data[inp_name] -= int(inp_money) print(db_data) update_local_db_data() update_db_data() break def check_user_money(): """查询余额功能:输入账号查询余额""" while True: inp_name = input("请输入用户名:").strip() if not is_avalide_user(inp_name): print("该用户不存在!") continue # 可以查询 user_money = db_data[inp_name] print("用户当前账户余额为:", user_money) break update_db_data() # re_charge() # tranfer_money() # hand_out_money() check_user_money() # 选做题中的选做题:登录功能 # 用户登录成功后,内存中记录下该状态,上述功能以当前登录状态为准,必须先登录才能操作
with open("zad3.txt", "w") as plik: for i in range(0,11,1): plik.write(str(i)+'\n') with open("zad3.txt", "r") as plik: for i in plik: print(i, end="")
''' Problem 019 You are given the following information, but you may prefer to do some research for yourself. 1 Jan 1900 was a Monday. Thirty days has September, April, June and November. All the rest have thirty-one, Saving February alone, Which has twenty-eight, rain or shine. And on leap years, twenty-nine. A leap year occurs on any year evenly divisible by 4, but not on a century unless it is divisible by 400. How many Sundays fell on the first of the month during the twentieth century (1 Jan 1901 to 31 Dec 2000)? Solution: Copyright 2017 Dave Cuthbert, MIT License ''' class year_365(): start_dates = [1, 32, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335] def __init__(self): self.start_dates def get_dates(self): return self.start_dates class year_366(): start_dates = [1, 32, 61, 92, 122, 153, 183, 214, 245, 275, 306, 336] def __init__(self): self.start_dates def get_dates(self): return self.start_dates def is_leap_year(year): if year % 4 == 0: if year % 100 == 0: if year % 400 == 0: return True else: return True return False def get_sundays(first_sunday, is_leap): sundays = [] sunday_count = 0 for day in range(first_sunday, 337, 7): sundays.append(day) if is_leap: first_dates = year_366() else: first_dates = year_365() for day in sundays: if day in first_dates.get_dates(): sunday_count += 1 return sunday_count def solve_problem(): count = 0 sunday_cycle = 6 # First Sunday in 1901 for year in range(1901, 2001): if sunday_cycle == 0: sunday_cycle = 7 if is_leap_year(year): count += get_sundays(sunday_cycle, True) sunday_cycle -= 2 else: count += get_sundays(sunday_cycle, False) sunday_cycle -= 1 return(count) if __name__ == "__main__": print(solve_problem())
a = 2 ** 62 b = 2 ** 63 c = 0 ** 0 d = 0 ** 1 e = 1 ** 999999999 f = 1 ** 999999999999999999999999999 g = 1 ** (-1) h = 0 ** (-1) i = 999999999999999 ** 99999999999999999999999999999 j = 2 ** 10 k = 10 ** 10 l = 13 ** 3 m = (-3) ** 3 n = (-3) ** 4
class State: 'Defined state of cell in grid world' def __init__(self, pos=[0,0], reward= -1, movable=True, absorbing=False, agent_present=False): self.pos = pos self.reward = reward self.movable = movable self.absorbing = absorbing self.v_pi = [] self.v_pi_mean = 0 # q_pi(s,a): action-state values self.q = { 'north': 0.0, 'south': 0.0, 'east': 0.0, 'west': 0.0, } def __str__(self): return f"{self.pos} reward: {self.reward} | movable: {self.movable} | absorbing: {self.absorbing}" def print_cell(self, to_show, agent_present=False): 'pretty print cell according to state attributes' if to_show == 'reward': cell = str(self.reward) elif to_show == 'q': if not self.absorbing: direction = max(self.q, key=lambda k: self.q[k]) # set print signs for readability if direction == 'north': sign = '^' elif direction == 'south': sign = 'v' elif direction == 'east': sign = '>' elif direction == 'west': sign = '<' # cell = str(f"{sign}") cell = str(f"{sign} ({format(self.q[direction], '.2f')})") elif to_show == 'v': cell = str(self.v_pi) # wall if not self.movable: cell = f"|\t|" # terminal state elif self.absorbing: cell = f"[ {self.reward} ]*" # agent is present if agent_present: cell = f"<{cell}>" return cell
############################################################################## # Parte do livro Introdução à Programação com Python # Autor: Nilo Ney Coutinho Menezes # Editora Novatec (c) 2010-2020 # Primeira edição - Novembro/2010 - ISBN 978-85-7522-250-8 # Segunda edição - Junho/2014 - ISBN 978-85-7522-408-3 # Terceira Edição - Janeiro/2019 - ISBN 978-85-7522-718-3 # # Site: https://python.nilo.pro.br/ # # Arquivo: exercicios3\capitulo 05\exercicio-05-27.a.py ############################################################################## # Para resolver este problema, podemos usar strings, apresentadas na seção 3.4 do livro # Veja que estamos lendo o número sem convertê-lo para int ou float, # desta forma o valor de s será uma string s = input("Digite o número a verificar, sem espaços:") i = 0 f = len(s)-1 # posição do último caracter da string while f > i and s[i] == s[f]: f = f - 1 i = i + 1 if s[i] == s[f]: print(f"{s} é palíndromo") else: print(f"{s} não é palíndromo")
# File: minemeld_consts.py # # Copyright (c) 2021 Splunk Inc. # # 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. MINEMELD_SUCCESS_TEST_CONNECTIVITY = "Test Connectivity Passed" MINEMELD_ERR_TEST_CONNECTIVITY = "Test Connectivity Failed" MINEMELD_ERR_INVALID_CONFIG_PARAM = "Check input parameter. For example: Endpoint: https://host:port User: admin Password: ****" MINEMELD_VAULT_ID_NOT_FOUND = "File not found for given vault id" VAULT_ERR_FILE_NOT_FOUND = "Vault file could not be found with supplied Vault ID" VAULT_ERR_VAULT_ID_NOT_VALID = "Vault ID not valid" VAULT_ERR_PATH_NOT_FOUND = "Could not find a path associated with the provided vault ID"
PRIVILEGE_CHOICES = [ ('Users.manageUser', 'Manage Users'), ('Sales.manage', 'Manage Sales'), ('Sales.docs', 'Manage Documents'), ]
__all__ = [ 'q1_words_score', 'q2_default_arguments' ]
# This example shows one of the possibilities of the canvas: # the ability to access all existing objects on it. size(550, 300) fill(1, 0.8) strokewidth(1.5) # First, generate some rectangles all over the canvas, rotated randomly. for i in range(3000): grob = rect(random(WIDTH)-25, random(HEIGHT)-25,50, 50) grob.rotate(random(360)) # Now comes the smart part: # We want to sort the objects on the canvas using a custom sorting # method; in this case, their vertical position. # The bounds property returns the following: ( (x, y), (width, height) ) # The lambda function thus compares the y positions against eachother. sorted_grobs = list(canvas) # sorted_grobs.sort(lambda v1, v2: cmp(v1.bounds[0][1], v2.bounds[0][1])) def compare(a,b): v1 = a.bounds[0][1] v2 = b.bounds[0][1] if v1 > v2: return 1 elif v1 < v2: return -1 return 0 sortlistfunction( sorted_grobs, compare ) # Now that we have all the graphic objects ("grobs") sorted, # traverse them in order and change their properties. # t is a counter going from 0.0 to 1.0 t = 0.0 # d is the delta amount added each step d = 1.0 / len(sorted_grobs) for grob in sorted_grobs: # Grobs will get bigger grob.scale(t) # Grobs's stroke will get darker grob.stroke = (0.6 - t, 0.50) t += d # This is really a hack, but you can replace the internal # grob list of the canvas with your own to change the Z-ordering. # Comment out this line to get a different effect. canvas._grobs = sorted_grobs
#!/usr/bin/python3 # -*- coding: utf-8 -*- # Created by Ross on 19-1-8 def solve(n: int): if n <= 0: return -1 table = [0, 1] if n < 2: return table[n] fib1 = table[0] fib2 = table[1] fib_n = 0 for i in range(2, n + 1): fib_n = fib1 + fib2 fib1 = fib2 fib2 = fib_n return fib_n if __name__ == '__main__': for i in range(2, 10): print(solve(i), end=' ')
numbe = 1125 strnumbe = str(numbe) sumOfDigit = 0 productOfDigit = 1 listdigits = list(map(int, strnumbe)) for elemen in listdigits: sumOfDigit = sumOfDigit+elemen productOfDigit = productOfDigit*elemen if(sumOfDigit == productOfDigit): print('The given number', strnumbe, 'is spy number') else: print('The given number', strnumbe, 'is not spy number')
number = int(input()) if number == 1: print("Monday") elif number == 2: print("Tuesday") elif number == 3: print("Wednesday") elif number == 4: print("Thursday") elif number == 5: print("Friday") elif number == 6: print("Saturday") elif number == 7: print("Sunday") else: print("Error")
#nu = [] #i = n0 = n1 = n2 = n3 = n4 = 0 #for c in range(0, 5): # n = int(input('Digite um valor: ')) # if c == 0: # n0 = n1 = n2 = n3 = n4 = n # i = 0 # elif n < n0: # i = 0 # n0 = n # elif n < n1: # i = 1 # n1 = n # elif n < n2: # i = 2 # n2 = n # elif n < n3: # i = 3 # n3 = n # elif n < n4: # i = 4 # n4 = n # elif n > n4: # i = 4 # n4 = n # if n == n4: # print('Adicionado ao final da lista') # else: # print(f'Adicionado a posição {i} da lista...') # nu.insert(i, n) #print('-' * 30) #print(f'Os valores digitados em formato crescente foi {nu}') num = [] for c in range(0, 5): n = int(input('Digite um valor: ')) if c == 0 or n > num[-1]: num.append(n) print('Adicionado ao final da fila') else: pos = 0 while pos < len(num): if n <= num[pos]: num.insert(pos, n) print(f'Adicionado a posição {pos} da lista...') break pos += 1 print(f'Os valores foram, em ordem crescente: {num}')
def to_role_name(feature_name): return feature_name.replace("-", "_") def to_feature_name(role_name): return role_name.replace("_", "-") def resource_name(prefix, cluster_name, resource_type, component=None): name = '' if (not prefix) or (prefix == 'default'): if component is None: name = '%s-%s' % (cluster_name.lower(), resource_type.lower()) else: name = '%s-%s-%s' % (cluster_name.lower(), component.lower(), resource_type.lower()) else: if component is None: name = '%s-%s-%s' % (prefix.lower(), cluster_name.lower(), resource_type.lower()) else: name = '%s-%s-%s-%s' % (prefix.lower(), cluster_name.lower(), component.lower(), resource_type.lower()) return to_feature_name(name) def cluster_tag(prefix, cluster_name): if (not prefix) or (prefix == 'default'): return cluster_name.lower() else: return '%s-%s' % (prefix.lower(), cluster_name.lower()) def storage_account_name(prefix, cluster_name, storage_use): pre = '' if not ((not prefix) or (prefix == 'default')): if len(prefix) > 8: pre = prefix[:8].lower() else: pre = prefix.lower() sto = '' if len(storage_use) > 5: sto = storage_use[:5].lower() else: sto = storage_use.lower() clu = '' cn = cluster_name.replace('-', '') length = 24 - (len(pre)+len(sto)) if len(cn) > length: clu = cn[:length].lower() else: clu = cn.lower() return f'{pre}{clu}{sto}' def get_os_name_normalized(vm_doc): expected_indicators = { "almalinux": "almalinux", "redhat": "rhel", "rhel": "rhel", "ubuntu": "ubuntu", } if vm_doc.provider == "azure": # Example image offers: # - 0001-com-ubuntu-server-focal # - RHEL # - almalinux for indicator in expected_indicators: if indicator in vm_doc.specification.storage_image_reference.offer.lower(): return expected_indicators[indicator] if vm_doc.provider == "aws": # Example public/official AMI names: # - ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-20220419 # - RHEL-8.5_HVM-20220127-x86_64-3-Hourly2-GP2 # - AlmaLinux OS 8.5.20211116 x86_64 for indicator in expected_indicators: if indicator in vm_doc.specification.os_full_name.lower(): return expected_indicators[indicator] # When name is completely custom return None
""" Faça um programa que leia o nome de uma pessoa e mostre uma mensagem de boas- vindas """ nome = input('Digite seu nome: ') # perguntando ao usuário # usando format: print('É um prazer te conhecer, {}{}{}!'.format('\033[4;34m', nome, '\033[m')) # usando f strings: print(f'É um prazer te conhecer, \033[4;34m{nome}\033[m!') # o nome vai aparecer sublinhado e na cor roxa
number_of_wagons = int(input()) train = [0 for x in range(number_of_wagons)] command = input() while command != 'End': current_task = command.split(' ') task = current_task[0] if task == 'add': num_of_people = int(current_task[1]) train[-1] += num_of_people if task == 'insert': wagon_index = int(current_task[1]) num_of_people = int(current_task[2]) train[wagon_index] += num_of_people if task == 'leave': wagon_index = int(current_task[1]) num_of_people = int(current_task[2]) train[wagon_index] -= num_of_people command = input() print(train)
class Comentarios: def __init__(self, videojuego, usuario, comentario): self.videojuego = videojuego self.usuario = usuario self.comentario = comentario #MÉTODOS GET def getVideojuego(self): return self.videojuego def getUsuario(self): return self.usuario def getComentario(self): return self.comentario #MÉTODOS SET def setVideojuego(self, videojuego): self.videojuego = videojuego def setUsuario(self, usuario): self.usuario = usuario def setComentario(self, comentario): self.comentario = comentario #DUMP def dump(self): return { 'videojuego' : self.videojuego, 'usuario': self.usuario, 'comentario': self.comentario }
class UwsgiconfException(Exception): """Base for exceptions.""" class ConfigurationError(UwsgiconfException): """Configuration related error.""" class RuntimeConfigurationError(ConfigurationError): """Runtime configuration related error."""
#Si existe la posibilidad de que más de una excepción se salte a un apartado "except:", # puedes tener problemas para descubrir lo que realmente sucedió. try: x = int(input("Ingresa un numero: ")) y = 1 / x print("1 /",x,"=",y) except: #El mensaje: "Oh cielos, algo salio mal..." que aparece en la consola no dice nada acerca de la razón, # mientras que hay dos posibles causas de la excepción: #Datos no enteros fueron ingresados por el usuario. #Un valor entero igual a 0 fue asignado a la variable x. print("Oh cielos, algo salio mal...") print("FIN.")
# constants PERCENTAGE_BUILTIN_SLOTS = 0.20 # Time FOUNTAIN_MONTH = 'FOUNTAIN:MONTH' FOUNTAIN_WEEKDAY = 'FOUNTAIN:WEEKDAY' FOUNTAIN_HOLIDAYS = 'FOUNTAIN:HOLIDAYS' FOUNTAIN_MONTH_DAY = 'FOUNTAIN:MONTH_DAY' FOUNTAIN_TIME = 'FOUNTAIN:TIME' FOUNTAIN_NUMBER = 'FOUNTAIN:NUMBER' FOUNTAIN_DATE = 'FOUNTAIN:DATE' # Location FOUNTAIN_CITY = 'FOUNTAIN:CITY' FOUNTAIN_COUNTRY = 'FOUNTAIN:COUNTRY' FOUNTAIN_EDU_ORGANIZATION = 'FOUNTAIN:EDU_ORGANIZATION' FOUNTAIN_ADMIN_ORGANIZATION = 'FOUNTAIN:ADMIN_ORGANIZATION' FOUNTAIN_NONPROFIT_ORGANIZATION = 'FOUNTAIN:NONPROFIT_ORGANIZATION' FOUNTAIN_ROOM = 'FOUNTAIN:ROOM' # Demographics FOUNTAIN_FAMOUSPEOPLE = 'FOUNTAIN:FAMOUSPEOPLE' FOUNTAIN_MALE_FIRSTNAME = 'FOUNTAIN:MALE_FIRSTNAME' FOUNTAIN_FEMALE_FIRSTNAME = 'FOUNTAIN:FEMALE_FIRSTNAME' FOUNTAIN_NAME = 'FOUNTAIN:FEMALE_FIRSTNAME' FOUNTAIN_LANGUAGE = 'FOUNTAIN:LANGUAGE' FOUNTAIN_PROFESSION = 'FOUNTAIN:PROFESSION' # Culture FOUNTAIN_BOOK = 'FOUNTAIN:BOOK' FOUNTAIN_ARTIST = 'FOUNTAIN:ARTIST' FOUNTAIN_AUTHOR = 'FOUNTAIN:AUTHOR' # Media FOUNTAIN_TV_CHANNEL = 'FOUNTAIN:TV_CHANNEL' FOUNTAIN_TV_SHOW = 'FOUNTAIN:TV_SHOW' FOUNTAIN_RADIO_CHANNEL = 'FOUNTAIN:RADIO_CHANNEL' FOUNTAIN_MOVIE = 'FOUNTAIN:MOVIE' FOUNTAIN_MOVIE_SERIE = 'FOUNTAIN:MOVIE_SERIE' FOUNTAIN_MUSIC_ALBUM = 'FOUNTAIN:MUSIC_ALBUM' FOUNTAIN_MUSIC_EVENT = 'FOUNTAIN:MUSIC_EVENT' # Food FOUNTAIN_FRUIT = 'FOUNTAIN:FRUITS' FOUNTAIN_DRINK = 'FOUNTAIN:DRINK' FOUNTAIN_MEAL = 'FOUNTAIN:MEAL' # EVENTS FOUNTAIN_EVENT_TYPE = 'FOUNTAIN:EVENT_TYPE' FOUNTAIN_GENRE = 'FOUNTAIN:GENRE' # Tech FOUNTAIN_MOBILE_APP = 'FOUNTAIN:MOBILE_APP' FOUNTAIN_GAME = 'FOUNTAIN:GAME' FOUNTAIN_SOCIAL_PLATFORM = 'FOUNTAIN:SOCIAL_PLATFORM' # MISC FOUNTAIN_COLOR = 'FOUNTAIN:COLOR' FOUNTAIN_DEVICE = 'FOUNTAIN:DEVICE' FOUNTAIN_SPORT = 'FOUNTAIN:SPORT' FOUNTAIN_BUILTIN = {FOUNTAIN_FEMALE_FIRSTNAME, FOUNTAIN_MALE_FIRSTNAME, FOUNTAIN_FAMOUSPEOPLE, FOUNTAIN_CITY, FOUNTAIN_MONTH, FOUNTAIN_WEEKDAY, FOUNTAIN_HOLIDAYS, FOUNTAIN_MONTH_DAY} RESOURCES = { FOUNTAIN_MONTH: "month.csv", FOUNTAIN_WEEKDAY: "weekday.csv", FOUNTAIN_HOLIDAYS: "holidays.csv", FOUNTAIN_MONTH_DAY: "month_day.csv", FOUNTAIN_CITY: "city.csv", FOUNTAIN_FAMOUSPEOPLE: "famous_people.csv", FOUNTAIN_FEMALE_FIRSTNAME: "female_firstnames.csv", FOUNTAIN_MALE_FIRSTNAME: "male_firstnames.csv" }
""" 给定一个矩阵`A` 返回`A`的转置矩阵 矩阵的转置是指将主对角线翻转,交换矩阵的行索引和列索引。 **test case** >>> matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] >>> transpose(array=matrix) [[1, 4, 7], [2, 5, 8], [3, 6, 9]] >>> matrix = [[1, 2, 3], [4, 5, 6]] >>> transpose(array=matrix) [[1, 4], [2, 5], [3, 6]] # Solution shape 为 R x C 的矩阵A 转置后会得到shape 为 `C x R`的矩阵`answer`, 对此 有`answer[c][r] = A[r][c]` 初始化一个新的矩阵`answer`, 赋值为全`None`, 把转置后的矩阵复制其中。 时间复杂度: $O(R * C)$ 空间复杂度: $O(R * C)$, 由于需要初始化一个新的矩阵`answer` """ def transpose(array): ROW, COL = len(array), len(array[0]) answer = [[None] * ROW for _ in range(COL)] for r, row in enumerate(array): for c, value in enumerate(row): answer[c][r] = value return answer if __name__ == '__main__': matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] print(transpose(array=matrix)) matrix = [[1, 2, 3], [4, 5, 6]] print(transpose(array=matrix))
# 246. Strobogrammatic Number # ttungl@gmail.com # A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down). # Write a function to determine if a number is strobogrammatic. The number is represented as a string. # For example, the numbers "69", "88", and "818" are all strobogrammatic. class Solution(object): def isStrobogrammatic(self, num): """ :type num: str :rtype: bool """ # sol 1: # runtime: 40ms maps = {'0':'0', '1':'1', '6':'9', '8':'8', '9':'6'} l, r = 0, len(num) - 1 if not num: return True while (l <= r): if num[r] not in maps \ or (maps[num[r]] != num[l]): return False l += 1 r -= 1 return True # sol 2 # runtime: 42ms maps = {'0':'0', '1':'1', '6':'9', '8':'8', '9':'6'} if not num: return True n = len(num) for i in range(n//2 + 1): if num[i] not in maps or maps[num[i]] != num[-i-1]: return False return True
# https://leetcode.com/problems/multiply-strings/ # Given two non-negative integers num1 and num2 represented as strings, return the # product of num1 and num2, also represented as a string. # Note: You must not use any built-in BigInteger library or convert the inputs to # integer directly. ################################################################################ # multiply -> (reversely) multi[i+j] = nums[-i-1] * nums[-j-1] # -> handle (multi[i] >= 10) afterwards # int(char) = ord(char) - ord('0') # chr(num) = chr(num + ord('0')) class Solution: def multiply(self, num1: str, num2: str) -> str: if num1 == '0' or num2 == '0': return '0' if num1 == '1': return num2 if num2 == '1': return num1 n1, n2 = len(num1), len(num2) multi = [0] * (n1 + n2) for i in range(n1): for j in range(n2): multi[i+j] += (ord(num1[-i-1]) - ord('0')) * (ord(num2[-j-1]) - ord('0')) # multi is in reverse order # handle ans[i] >= 10 carry = 0 for i in range(n1 + n2): multi[i] += carry carry, multi[i] = divmod(multi[i], 10) # handle leading '0' ans = '' for i in range(n1 + n2 - 1, -1, -1): # travel reversely if multi[i] == 0 and ans == '': continue ans += chr(multi[i] + ord('0')) return ans
# -*- coding: utf-8 -*- """ the common functionalities """ def get_value_from_dict_safe(d, key, default=None): """ get the value from dict args: d: {dict} key: {a hashable key, or a list of hashable key} if key is a list, then it can be assumed the d is a nested dict default: return value if the key is not reachable, default is None return: value """ assert isinstance(d, dict), f"only supports dict input, {type(d)} is given" if isinstance(key, (list, tuple)): for _k in key[:-1]: if _k in d and isinstance(d[_k], dict): d = d[_k] else: return default key = key[-1] return d.get(key, default) def set_value_to_dict_safe(d, key, value, append=False): """ set the value to dict args: d: {dict} key: {a hashable key, or a list of hashable key} if key is a list, then it can be assumed the d is a nested dict value: value to be set append: if the value is appended to the list, default is False return: bool: if the value is succesfully set """ assert isinstance(d, dict), f"only supports dict input, {type(d)} is given" if isinstance(key, (list, tuple)): for _k in key[:-1]: if _k in d: if isinstance(d[_k], dict): d = d[_k] else: return False else: d[_k] = dict() d = d[_k] key = key[-1] if append: if key not in d: d[key] = [value] elif isinstance(d[key], list): d[key].append(value) else: return False else: d[key] = value return True def visualize_dict(d, indent="--", level=0): """ print out the the dict strctures, unwraping list by 1-depth """ prefix = indent * level if prefix: prefix = " |" + prefix if isinstance(d, (list, tuple)): print(prefix, f"[{type(d[0])} * {len(d)}]") return elif not isinstance(d, dict): print(prefix, f"{type(d)}") return for k, v in d.items(): if isinstance(v, (dict, )): print(prefix, k) visualize_dict(v, indent=indent, level=level + 1) elif isinstance(v, (list, tuple)): print(prefix, k) if isinstance(v[0], (dict, )): for i in v: visualize_dict(i, indent=indent, level=level + 1) else: visualize_dict(v, indent=indent, level=level + 1) else: print(prefix, k, v) def recursive_update(default, custom): """ https://github.com/Maples7/dict-recursive-update/blob/master/dict_recursive_update/__init__.py """ if not isinstance(default, dict) or not isinstance(custom, dict): raise TypeError('Params of recursive_update should be dicts') for key in custom: if isinstance(custom[key], dict) and isinstance( default.get(key), dict): default[key] = recursive_update(default[key], custom[key]) else: default[key] = custom[key] return default __all__ = [k for k in globals().keys() if not k.startswith("_")]
# Handling negation: "not good", "not worth it" def hack(rev): for i in range(0, len(rev)): line = rev[i].split() for it in range(0, len(line)): if line[it] == 'no' or line[it] == 'not' or line[it] == 'nope' or line[it] == 'never' or line[it] == "isn't" or line[it] == "don't" or line[it] == "dont" or line[it] == "wasn't": j = it while j < len(line) and j < it + 4: line[j] = "!" + line[j] j += 1 line = ' '.join(line) rev[i] = line
print("Kinjal Raykarmakar\nSec: CSE2H\tRoll: 29\n") num = int(input("Enter a number: ")) if num % 2 == 0: print("{} is an even number".format(num)) else: print("{} is an odd number".format(num))
_input = [int(num) for num in input().split(" ")] river_width = _input[0] max_jump_length = _input[1] stones = [int(stone) for stone in input().split(" ")]
n1 = int(input('Um valor: ')) n2 = int(input('Outro valor:')) s = n1+n2 m = n1*n2 d = n1/n2 di = n1//n2 e = n1 ** n2 print(f'A soma é {s}, o produto é {m} e a divisão é {d}') print(f'Dovosão inteira {di} e potência {e}')
#Compute the max depth of a binary tree class Tree: def __init__(self, val,left = None, right = None): self.val = val self.left = left self.right = right root = Tree(4, left = Tree(3), right=Tree(5, left= Tree(4))) def maxDepth(root): if root is None: return 0 return max(maxDepth(root.left)+1, maxDepth(root.right)+1) print(maxDepth(root))
odpremo = open(r'C:\Users\jureb\OneDrive\Desktop\Euler\names.txt', 'r') string = odpremo.read() odpremo.close string = string[1:-1] sez = string.split('","') sez.sort() #do te točke samo importamo seznam, nič se ne zgodi sample = ' ABCDEFGHIJKLMNOPQRSTUVWXYZ' rezultat = 0 i = 1 for el in sez: score = i vsota = 0 for crka in el: vsota += sample.index(crka) score = score * vsota rezultat += score i += 1 print(rezultat)
lst=list(map(int, input().split())) if sum(lst)==180 and 0 not in lst: print('YES') else: print('NO')
class Solution: def maxSubArray(self, nums: List[int]) -> int: current_max=nums[0] global_max=nums[0] for i in range(1,len(nums)): current_max=max(nums[i],current_max+nums[i]) global_max=max(current_max,global_max) return global_max
''' BITONIC POINT Given an array. The task is to find the bitonic point of the array. The bitonic point in an array is the index before which all the numbers are in increasing order and after which, all are in decreasing order. ''' def bitonic(a, n): l = 1 r = n - 2 while(l <= r): m = (l + r) // 2 if (a[m] > a[m - 1] and a[m + 1] < a[m]): return m if (a[m] < a[m + 1]): l = m + 1 else: r = m - 1 return -1 n = int(input()) a = [int(x) for x in input().split()] point = bitonic(a, n) if (point == -1): print("There is no bitonic point") else: print("The bitonic point is", point) ''' INPUT : n = 6 a = [1 4 8 4 2 1] OUTPUT : The bitonic point is 2 '''
class Solution: def nthUglyNumber(self, n): dp = [0] * n dp[0] = 1 p2 = 0 p3 = 0 p5 = 0 for i in range(1, n): dp[i] = min(2 * dp[p2], 3 * dp[p3], 5 * dp[p5]) if dp[i] >= 2 * dp[p2]: p2 += 1 if dp[i] >= 3 * dp[p3]: p3 += 1 if dp[i] >= 5 * dp[p5]: p5 += 1 return dp[-1] if __name__ == "__main__": solution = Solution() print(solution.nthUglyNumber(10))
""" Check that `yield from`-statement takes an iterable. """ # pylint: disable=missing-docstring def to_ten(): yield from 10 # [not-an-iterable]
class SpatialExtent: def __init__(self): self.bbox = "" class TemporalExtent: def __init__(self): self.interval = ""
ascii_brand = """                                                                   """
#!/usr/bin/python # ============================================================================== # Author: Tao Li (taoli@ucsd.edu) # Date: May 6, 2015 # Question: 001-Two-Sum # Link: https://leetcode.com/problems/two-sum/ # ============================================================================== # Given an array of integers, find two numbers such that they add up to a # specific target number. # # The function twoSum should return indices of the two numbers such that # they add up to the target, where index1 must be less than index2. Please # note that your returned answers (both index1 and index2) are not zero-based. # # You may assume that each input would have exactly one solution. # # Input: numbers={2, 7, 11, 15}, target=9 # Output: index1=1, index2=2 # ============================================================================== # Method: Hash Table # Time Complexity: O(n) # Space Complexity: O(n) # Note: Pay attention to the get() method of a python dictionary. In case # of element i is not a dictionary key OR i's value dic[i] is exact 0, the if # statement would fail. # ============================================================================== class Solution: # @param {integer[]} nums # @param {integer} target # @return {integer[]} def twoSum(self, nums, target): dic = {} for i in nums: dic[i] = target - i for i in nums: if dic.get(dic[i]) is not None: idx1 = nums.index(i) if dic[i] != i: return sorted([idx1+1, nums.index(dic[i])+1]) elif nums.count(i) >= 2: return [idx1 + 1, idx1 + nums[idx1+1:].index(i) + 2]
class Solution: def minMeetingRooms(self, intervals: List[List[int]]) -> int: if not intervals: return 0 result, curr = 0, 0 for i, val in sorted( x for interval in intervals for x in [(interval[0], 1), (interval[1], -1)] ): curr += val result = max(curr, result) return result # import heapq # # # class Solution: # def minMeetingRooms(self, intervals: List[List[int]]) -> int: # if not intervals: return 0 # q = [] # for interval in sorted(intervals, key=lambda x: x[0]): # if not q: # heapq.heappush(q, interval[1]) # else: # if interval[0] >= q[0]: # heapq.heappop(q) # heapq.heappush(q, interval[1]) # return len(q)
dados = list() pessoas = list() pesados = list() leves = list() maior = menor = 0 while True: dados.append(str(input('Nome: '))) dados.append(float(input('Peso: '))) pessoas.append(dados[:]) dados.clear() continuar = ' ' while continuar not in 'SN': continuar = str(input('Deseja continuar? [S/N]: ')).strip().upper()[0] if continuar == 'N': break for p, d in enumerate(pessoas): if p == 0 or d[1] > maior: maior = d[1] if p == 0 or d[1] < menor: menor = d[1] for p, d in enumerate(pessoas): if d[1] == maior: pesados.append(d[0]) if d[1] == menor: leves.append(d[0]) print(f'Foram cadastradas {len(pessoas)} pessoas.') print(f'O maior peso foi {maior}Kg de: {pesados}') print(f'O menor peso foi {menor}Kg de: {leves}')
# Futu Algo: Algorithmic High-Frequency Trading Framework # Copyright (c) billpwchan - All Rights Reserved # Unauthorized copying of this file, via any medium is strictly prohibited # Proprietary and confidential # Written by Bill Chan <billpwchan@hotmail.com>, 2021 class Settings: # APP SETTINGS ENABLE_CUSTOM_TITLE_BAR = True MENU_WIDTH = 240 LEFT_BOX_WIDTH = 240 RIGHT_BOX_WIDTH = 240 TIME_ANIMATION = 500 # BTNS LEFT AND RIGHT BOX COLORS BTN_LEFT_BOX_COLOR = "background-color: rgb(44, 49, 58);" BTN_RIGHT_BOX_COLOR = "background-color: #ff79c6;" # MENU SELECTED STYLESHEET MENU_SELECTED_STYLESHEET = """ border-left: 22px solid qlineargradient(spread:pad, x1:0.034, y1:0, x2:0.216, y2:0, stop:0.499 rgba(255, 121, 198, 255), stop:0.5 rgba(85, 170, 255, 0)); background-color: rgb(40, 44, 52); """ MESSAGEBOX_STYLESHEET = """ QMessageBox { font-family: 'Segoe UI', 'Open Sans', sans-serif; color: hsl(220, 50%, 90%); background: hsl(220, 25%, 10%); border-radius: 5px; padding: 5px; } QMessageBox QLabel { color: rgb(189, 147, 249); font: 10pt "Segoe UI"; margin: 5px; padding: 5px; padding-left: 0px; text-align: center; } QMessageBox QPushButton { width: 60px; border: 2px solid rgb(52, 59, 72); border-radius: 5px; background-color: rgb(52, 59, 72); background: linear-gradient(to right, hsl(210, 30%, 20%), hsl(255, 30%, 25%)); color: rgb(255, 255, 255); } QMessageBox QPushButton:hover { background-color: rgb(57, 65, 80); border: 2px solid rgb(61, 70, 86); } QMessageBox QPushButton:pressed { background-color: rgb(35, 40, 49); border: 2px solid rgb(43, 50, 61); } """
# search for the 1000th prime number and print it # author Zhou Fang Version: 1.0 # Problem 1. # Write a program that computes and prints the 1000th prime number. number_prime = 1 i = 3 while number_prime < 1000: divider = 3 status = 1 while status: if i % divider != 0 and divider < i/2: divider = divider +2 elif divider >= i/2: number_prime = number_prime + 1 prime_num = i print('it is the %d th prime number, which is %d' % (number_prime, i)) status = 0 else: status = 0 i = i + 2 print('the 1000th prime number is',i-2)
""" Basic implementation of a binary tree. Author: Xavier Cucurull Salamero <xavier.cucurull@estudiantat.upc.edu> """ class Node: """ Implementation of a binary tree to use with CART. """ def __init__(self, predicted_class, gini, data_idx=None): self.predicted_class = predicted_class self.gini = gini self.data_idx = data_idx self.split_point = None self.right = None self.left = None def __str__(self): str = [] self._str_aux(self, s=str) return '\n'.join(str) def _str_aux(self, node, depth=0, s=[]): # If not a terminal node if node.left: # If feature is categorical if type(node.split_point) == set: s.append('{}[{} ∈ {}]'.format(depth*' ', node.feature, node.split_point)) # If feature is numerical else: s.append('{}[{} < {:.3f}]'.format(depth*' ', node.feature, node.split_point)) # Explore children self._str_aux(node.left, depth+1, s) self._str_aux(node.right, depth+1, s) # Terminal node (leaf) else: s.append('{}[{}]'.format(depth*' ', node.predicted_class))
class Components(object): """Represents an OpenAPI Components in a service.""" def __init__( self, schemas=None, responses=None, parameters=None, request_bodies=None): self.schemas = schemas and dict(schemas) or {} self.responses = responses and dict(responses) or {} self.parameters = parameters and dict(parameters) or {} self.request_bodies = request_bodies and dict(request_bodies) or {}
class Mixin(object): def _send_neuron(self, *args): return self._send_entity('Neuron', *args) def _send_synapse(self, *args): return self._send_entity('Synapse', *args) def send_synapse(self, source_neuron_id, target_neuron_id, weight): """Send a synapse to the simulator to connect neurons Parameters ---------- source_neuron_id : int The id tag of the source neuron target_neuron_id : int The id tag of the target neuron weight : float The weight value of the synapse Returns ------- int The id tag of the synapse """ self._assert_neuron(source_neuron_id, 'source_neuron_id') self._assert_neuron(target_neuron_id, 'target_neuron_id') return self._send_synapse('Synapse', source_neuron_id, target_neuron_id, weight) def send_bias_neuron(self, value=1.0): """Send a bias neuron to the simulator""" return self._send_neuron('BiasNeuron', value) def send_sensor_neuron(self, sensor_id): """Send a sensor neuron to the simulator Parameters ---------- sensor_id : int The id tag of the sensor to pull values from at each time step. Returns ------- int The id tag of the neuron """ self._assert_sensor(sensor_id, 'sensor_id') return self._send_neuron('SensorNeuron', sensor_id) def send_motor_neuron(self, motor_id, alpha=0.0, tau=1.0, starting_value=0.0): """Send a motor neuron to the simulator The value of the motor neuron at each time step is passed to the specified motor in order to determine how it should actuate. Parameters ---------- motor_id : float The id tag of the motor to send neuron value to alpa : float (optional) A 'learning rate' parameter. (default is 0) tau : float (optional) A 'learning rate' parameter. (default is 1.0) starting_value : float (optional) The starting value the neuron takes. Could be usefully when motor does not start at 0. (default is 0) Returns ------- int The id tag of the neuron """ self._assert_actuator(motor_id, 'motor_id') return self._send_neuron('MotorNeuron', motor_id, alpha, tau, starting_value) def send_user_neuron(self, input_values): """Send a user input neuron to the simulator. A user input neuron takes pre-specified input supplied by the user before simulation. Similar to a bias neuron that changes every time step. This is useful to send Central Pattern Generators and other functions. Parameters ---------- input_values : list The values which the neuron will take every time step. If evaluation time is longer than the length of the list, the values will be repeated Returns ------- int The id tag of the neuron. """ return self._send_neuron('UserNeuron', len(input_values), input_values) def send_hidden_neuron(self, alpha=1.0, tau=1.0, starting_value=0.0): """Send a hidden neuron to the simulator""" return self._send_neuron('HiddenNeuron', alpha, tau, starting_value)
print("welcome to SBI bank ATM") restart=('y') chances = 3 balance = 1000 while chances>0: restart=('y') pin = int(input("please enter your secret number")) if pin == 1234: print('you entered your pin correctly\n') while restart not in ('n','N','no','NO'): print('press 1 for balance enquiry\n') print('press 2 for withdrawl\n') print('press 3 for credit money\n') print('press 4 for cancel the transaction\n') option = int(input("enter your choice\n")) if option == 1: print('your balance is = ',balance) restart = input('would you like to go back?\n') if restart in ('n','N','no','NO'): print("thank you") break elif option == 2: option2 = ('y') withdrawl = float(input("enter the amount for withdrawl = \n")) if withdrawl in [100,200,500,1000,]: balance=balance-withdrawl print("your balance is now Rs",balance) restart=input('would you like to restart\n') if restart in ['n','no','N','NO']: print('thank you') break elif withdrawl != [100,200,500,1000,]: print('invalid amount! please re-try\n') restart = ('y') elif withdrawl == 1: withdrawl=float(input('please enter desired amount\n')) elif option == 3: credit = float(input('enter money which you want to add\n')) balance = balance+credit print('your balance is = ',balance) restart = input('would you like to go back\n') if restart in ['n','no','NO','N']: print('thank you') break elif option == 4: print("your transaction is cancelled") print('thank you for your service') break else: print("please enter a correct number\n") restart = ('y') elif pin != ('1234'): print("incorrect password\n") chances=chances-1 if chances == 0: print('no more try\n') break
# encoding: utf-8 """Basic token types for use by parsers.""" class Token(object): def __lt__(self, other): return self.length < len(other) def __len__(self): return self.length class InlineToken(Token): """Inline token definition.""" __slots__ = ('annotation', 'match') def __init__(self, annotation, match): self.annotation = annotation if isinstance(annotation, set) else ({annotation} if isinstance(annotation, str) else set(annotation)) self.match = match def __call__(self, context, stream, offset): match = self.match length = len(match) if not offset.startswith(match): return def inline_token_generator(): yield slice(offset, offset + length), "meta:invisible" yield slice(offset + length, 0), self return inline_token_generator() class EnclosingToken(Token): """Token definition for tokens which surround other text.""" # NOTE: The prototype differentiated single-character from multi-character markup; check performance. __slots__ = ('annotation', 'prefix', 'suffix', 'length') # Don't construct a new __dict__ for each instance. def __init__(self, annotation, prefix, suffix=None): self.annotation = annotation self.prefix = prefix self.suffix = suffix self.length = len(prefix) def __repr__(self): return "Token({}, {}, {})".format(self.annotation, self.prefix, self.suffix) def __call__(self, context, stream, offset): length = self.length end = stream.find(self.suffix, offset+length) if stream[offset:offset+length] != self.prefix or end < 0: return def enclosing_token_generator(): ol = offset + length yield slice(offset, ol), "meta:invisible" yield slice(ol, end), self yield slice(end, end + len(self.suffix)), "meta:invisible" return enclosing_token_generator() def partition(self, text): for i in range(len(text)): result = list(self(None, text, i)) if result: break pl = i - 1 (pr, pa), (tr, ta), (sr, sa) = result return (text[:pl], text[tr], text[sr.stop:])