text
string
size
int64
token_count
int64
# **************************************************************************** # # # # ::: :::::::: # # logger.py :+: :+: :+: # # +:+ +:+ +:+ # # By: darodrig <darodrig@42madrid.com> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/04/15 22:12:50 by darodrig #+# #+# # # Updated: 2020/04/15 22:12:50 by darodrig ### ########.fr # # # # **************************************************************************** # import time import functools from string import capwords import getpass import datetime def log(func): @functools.wraps(func) def wrapper(*args, **kwargs): start = time.time() ret = func(*args, **kwargs) exectime = time.time() - start if int(exectime) > 0: units = "s" else: exectime = exectime * 1000 units = "ms" f = open("machine.log", "a") f.write("({})Running: {} [ exec-time = {} {} ]\n".format( getpass.getuser(), capwords(func.__name__.replace('_', ' ')), round(exectime, 3), units)) f.close() return ret return wrapper
1,630
480
#!/usr/bin/env python # -*- coding: utf-8 -*- ################################################################### # Author: Mu yanru # Date : 2019.2 # Email : muyanru345@163.com ################################################################### from dayu_widgets.avatar import MAvatar from dayu_widgets.divider import MDivider from dayu_widgets.field_mixin import MFieldMixin from dayu_widgets.label import MLabel from dayu_widgets.push_button import MPushButton from dayu_widgets import dayu_theme from dayu_widgets.qt import QWidget, QVBoxLayout, MPixmap, QFormLayout, Qt, QHBoxLayout class AvatarExample(QWidget, MFieldMixin): def __init__(self, parent=None): super(AvatarExample, self).__init__(parent) self.setWindowTitle('Example for MAvatar') main_lay = QVBoxLayout() main_lay.addWidget(MDivider('different size')) size_list = [('Huge', MAvatar.huge), ('Large', MAvatar.large), ('Medium', MAvatar.medium), ('Small', MAvatar.small), ('Tiny', MAvatar.tiny)] self.pix_map_list = [None, MPixmap('avatar.png'), MPixmap('app-maya.png'), MPixmap('app-nuke.png'), MPixmap('app-houdini.png')] form_lay = QFormLayout() form_lay.setLabelAlignment(Qt.AlignRight) for label, cls in size_list: h_lay = QHBoxLayout() for image in self.pix_map_list: avatar_tmp = cls(image) h_lay.addWidget(avatar_tmp) h_lay.addStretch() form_lay.addRow(MLabel(label), h_lay) main_lay.addLayout(form_lay) self.register_field('image', None) main_lay.addWidget(MDivider('different image')) avatar = MAvatar() self.bind('image', avatar, 'dayu_image') button = MPushButton(text='Change Avatar Image').primary() button.clicked.connect(self.slot_change_image) main_lay.addWidget(avatar) main_lay.addWidget(button) main_lay.addStretch() self.setLayout(main_lay) def slot_change_image(self): """Set the Avatar image random by data bind.""" import random self.set_field('image', random.choice(self.pix_map_list)) if __name__ == '__main__': import sys from dayu_widgets.qt import QApplication app = QApplication(sys.argv) test = AvatarExample() dayu_theme.apply(test) test.show() sys.exit(app.exec_())
2,550
813
#Assignment 9.4 #print('Hello World') fname = input('Enter name: ') if len(fname) < 1 : fname = 'mbox-short.txt' handle = open(fname) di = {} #create an empty dictionary for line in handle: line = line.rstrip() wds = line.split() #the second for-loop to print each word in the list for w in wds : #if the key is not in the dictionar the count starts with 0 ##oldcount = di.get(w,0) ##print(w, 'old', oldcount) ##newcount = oldcount + 1 ##di[w] = newcount ##print(w, 'new', newcount) di[w] = di.get(w, 0) + 1 #print(w, 'new', di[w]) #workflow: retrieve/created/update counter #if w in di: # di[w] = di[w] + 1 #print('*Existing*') #To provide a hint of what the programmes is doing # else: # di[w] = 1 #print('**New**') #To provide a hint of what the programmes is doing #print(di) #print the Most commoncommon word programme. #mulitiple for-loop largest = -1 theword = None for k, v in di.items() : # times looks for the elements in dictionary print(k, v) if v > largest : largest = v theword = k # catch/remember the word that was largest print('Most common', theword,largest)
1,254
426
from bs4 import BeautifulSoup from difflib import SequenceMatcher class _Check: """ Parent check class. All other checks should be a subclass of this class. """ key = "check" name = "Check" description = "Parent check" class _BlindCheck(_Check): """ These checks identify issues in internal systems. The payloads include a host that listens for callbacks from the internal system. These checks do not raise issues directly. The listener server maintains issue information. """ _payloads = [] # attribute should be populated by children's __init___ method example = "Payload example" def payloads(self, url, target, value): """ Returns the check's payloads. Children can override to provide dynamic payloads. :param url: url value :param target: target name :param value: target value :return: list of payloads """ # return return self._payloads def _check_payloads(self, payloads): """ Checks if the payloads are adoptable for this class and modify the payloads to adjust to check function. InvalidFormatException is raised, if a payload is not adoptable. Children can override. :param payloads: list of payloads :return: list of modified payloads """ return payloads def set_payloads(self, payloads): """ Overwrite the check's payloads. :param payloads: list of payloads """ self._payloads = self._check_payloads(payloads) def add_payloads(self, payloads): """ Add payloads to the check's payloads. :param payloads: list of payloads """ self._payloads += self._check_payloads(payloads) class _PassiveCheck(_Check): """ These checks identify sensitive information in responses. The response from the server may be checked for social security numbers, credit card numbers, email addresses, etc. These checks do not have payloads. """ def check(self, response): """Method should be implemented by children""" pass class _ActiveCheck(_Check): """ Parent class for active checks. Subclasses include simple, differential, and timing checks. """ _payloads = [] # attribute should be populated by children's __init___ method example = "Payload example" def payloads(self, url, target, value): """ Returns the check's payloads. Children can override to provide dynamic payloads. :param url: url value :param target: target name :param value: target value :return: list of payloads """ return self._payloads def _check_payloads(self, payloads): """ Checks if the payloads are adoptable for this class and modify the payloads to adjust to check function. InvalidFormatException is raised, if a payload is not adoptable. Children can override. :param payloads: list of payloads :return: list of modified payloads """ return payloads def set_payloads(self, payloads): """ Overwrite the check's payloads. :param payloads: list of payloads """ self._payloads = self._check_payloads(payloads) def add_payloads(self, payloads): """ Add payloads to the check's payloads. :param payloads: list of payloads """ self._payloads += self._check_payloads(payloads) class _ValueCheck(_ActiveCheck): """ These checks perform value analysis to identify issues. For instance, they may analyze text in HTML bodies or values in HTTP headers. These checks audit using a single payload and single response. """ def check(self, response, payload): """Method should be implemented by children""" pass class _DifferentialCheck(_ActiveCheck): """ These checks perform differential analysis between true and false payloads to identify issues. If the difference between the payloads' responses is below a threshold, then an issue is raised. These checks audit using two payloads and two responses. """ _threshold = 0.90 def check(self, responses, payload): """ Checks for issues by looking for the difference between response bodies. HTML script and style tags are removed from HTML responses. :param responses: response objects from server :param payload: payload value :return: true if vulnerable, false otherwise """ # extract true_response = responses['true'] false_response = responses['false'] # check response if not true_response.text or not false_response.text: return False # check status code if true_response.status_code != false_response.status_code: return False # soup true_soup = BeautifulSoup(true_response.text, "html.parser") false_soup = BeautifulSoup(false_response.text, "html.parser") # remove script and style tags excludes = ["script", "style"] true_tags = [tag for tag in true_soup.find_all(text=True) if tag.parent.name not in excludes] false_tags = [tag for tag in false_soup.find_all(text=True) if tag.parent.name not in excludes] # join back true_text = ' '.join(true_tags) false_text = ' '.join(false_tags) # calculate ratio sequence = SequenceMatcher(None, true_text, false_text) ratio = sequence.quick_ratio() # check difference if ratio < _DifferentialCheck._threshold: return True else: return False class _TimingCheck(_ActiveCheck): """ These checks perform timing analysis from delays to identify issues. If the response's elapsed time is above a threshold, then an issue is raised. These checks audit using one payload, the payload's delay, and one response. """ _padding = 0.50 def check(self, responses, payload, delay): """ Checks for issues by measuring the elapsed time of the response. It uses a padding to prevent slow endpoints from producing false positives. :param responses: response objects from server :param payload: payload value :param delay: time as float :return: true if vulnerable, false otherwise """ # extract original_response = responses['original'] timing_response = responses['timing'] # calculate elapsed time original_elapsed = original_response.elapsed.seconds + (original_response.elapsed.microseconds / 1000000) timing_elapsed = timing_response.elapsed.seconds + (timing_response.elapsed.microseconds / 1000000) # calculate padding padding = original_elapsed * _TimingCheck._padding # check time if timing_elapsed > (delay + padding): return True else: return False def _check_payloads(self, payloads): """ Checks if the payloads are adoptable for this class and modify the payloads to adjust to check function. InvalidFormatException is raised, if a payload is not adoptable. Children can override. :param payloads: list of payloads :return: list of modified payloads """ return [(payload, 9) for payload in payloads]
7,467
1,903
from django.contrib import admin from django import forms from .models import Annotation, Clip, Food, Image, Language, Website, UserProfile class AnnotationAdminForm(forms.ModelForm): class Meta: model = Annotation fields = '__all__' class AnnotationAdmin(admin.ModelAdmin): form = AnnotationAdminForm list_display = ['slug', 'created', 'last_updated', 'text', 'annotates_source_language'] readonly_fields = ['slug', 'created', 'last_updated', 'text', 'annotates_source_language'] admin.site.register(Annotation, AnnotationAdmin) class ClipAdminForm(forms.ModelForm): class Meta: model = Clip fields = '__all__' class ClipAdmin(admin.ModelAdmin): form = ClipAdminForm list_display = ['slug', 'created', 'last_updated', 'bounding_box'] readonly_fields = ['slug', 'created', 'last_updated', 'bounding_box'] admin.site.register(Clip, ClipAdmin) class FoodAdminForm(forms.ModelForm): class Meta: model = Food fields = '__all__' class FoodAdmin(admin.ModelAdmin): form = FoodAdminForm list_display = ['name', 'slug', 'created', 'last_updated'] readonly_fields = ['name', 'slug', 'created', 'last_updated'] admin.site.register(Food, FoodAdmin) class ImageAdminForm(forms.ModelForm): class Meta: model = Image fields = '__all__' class ImageAdmin(admin.ModelAdmin): form = ImageAdminForm list_display = ['slug', 'created', 'last_updated', 'cloud_URL', 'filesize', 'longitude', 'latitude', 'width', 'height'] readonly_fields = ['slug', 'created', 'last_updated', 'cloud_URL', 'filesize', 'longitude', 'latitude', 'width', 'height'] admin.site.register(Image, ImageAdmin) class LanguageAdminForm(forms.ModelForm): class Meta: model = Language fields = '__all__' class LanguageAdmin(admin.ModelAdmin): form = LanguageAdminForm list_display = ['name', 'slug', 'created', 'last_updated', 'short_name'] readonly_fields = ['name', 'slug', 'created', 'last_updated', 'short_name'] admin.site.register(Language, LanguageAdmin) class WebsiteAdminForm(forms.ModelForm): class Meta: model = Website fields = '__all__' class WebsiteAdmin(admin.ModelAdmin): form = WebsiteAdminForm list_display = ['slug', 'created', 'last_updated', 'URL', 'cache_path'] readonly_fields = ['slug', 'created', 'last_updated', 'URL', 'cache_path'] admin.site.register(Website, WebsiteAdmin) class UserProfileAdminForm(forms.ModelForm): class Meta: model = UserProfile fields = '__all__' class UserProfileAdmin(admin.ModelAdmin): form = UserProfileAdminForm list_display = ['slug', 'created', 'last_updated', 'category'] readonly_fields = ['slug', 'created', 'last_updated', 'category'] admin.site.register(UserProfile, UserProfileAdmin)
2,863
871
from os.path import abspath, join, dirname from colibris.conf import settings STATIC_PATH = abspath(join(dirname(__file__), 'swagger')) UI_URL = settings.API_DOCS_URL STATIC_URL = '{}/static'.format(UI_URL) APISPEC_URL = '{}/apispec'.format(UI_URL)
252
96
#!/usr/bin/env python from arc import models from arc import methods from arc import black_boxes from arc import others from arc import coverage
145
37
# -*- coding: utf-8 -*- from qcloudsdkcore.request import Request class TerminateTaskInstanceRequest(Request): def __init__(self): super(TerminateTaskInstanceRequest, self).__init__( 'batch', 'qcloudcliV1', 'TerminateTaskInstance', 'batch.api.qcloud.com') def get_JobId(self): return self.get_params().get('JobId') def set_JobId(self, JobId): self.add_param('JobId', JobId) def get_TaskInstanceIndex(self): return self.get_params().get('TaskInstanceIndex') def set_TaskInstanceIndex(self, TaskInstanceIndex): self.add_param('TaskInstanceIndex', TaskInstanceIndex) def get_TaskName(self): return self.get_params().get('TaskName') def set_TaskName(self, TaskName): self.add_param('TaskName', TaskName) def get_Version(self): return self.get_params().get('Version') def set_Version(self, Version): self.add_param('Version', Version)
961
300
""" Step Chart ----------------- This example shows Google's stock price over time. """ import altair as alt from vega_datasets import data source = data.stocks() chart = alt.Chart(source).mark_line(interpolate = 'step-after').encode( x = 'date', y = 'price' ) chart.transform = [{"filter": "datum.symbol==='GOOG'"}]
329
112
# -*- coding: utf-8 -*- """ file: graph_networkx.py Provides a NetworkX compliant Graph class. """ from graphit.graph import GraphBase from graphit.graph_exceptions import GraphitException, GraphitNodeNotFound from graphit.graph_algorithms import degree, size from graphit.graph_utils.graph_utilities import graph_undirectional_to_directional, graph_directional_to_undirectional class NetworkXGraph(GraphBase): def __init__(self, *args, **kwargs): """ Init a NetworkX graph type Differences with regular Graph: - 'auto_nid' is unknown in NetworkX, set to False :param args: arguments to Graph __init__ :param kwargs: keyword arguments to Graph __init__ """ kwargs['auto_nid'] = False super(NetworkXGraph, self).__init__(*args, **kwargs) def __contains__(self, node): return self.has_node(node) def __getitem__(self, key): """ Implement class __getitem__ Return adjacency based on node ID or edge on edge ID. :return: adjacency nodes or an edge :rtype: :py:list """ # Return edge using edge ID if isinstance(key, tuple): return self.edges[key] # Return adjacency nodes # TODO: this should return a view but that is not fully compliant to NetworkX yet else: return dict([(nid, self.nodes[nid]) for nid in self.adjacency[key]]) def __iter__(self): """ Implement class __iter__ Iterate over nodes IDs :return: Node identifier (nid) """ # Always reset node view for nid in self.nodes: yield nid @property def adj(self): return self.adjacency def add_nodes_from(self, nodes, **kwargs): return self.add_nodes(nodes, **kwargs) def add_edges_from(self, edges, **kwargs): return self.add_edges(edges, **kwargs) def add_weighted_edges_from(self, edges, weight='weight', **kwargs): """ Add edges with a numeric weight factor :param edges: edges as iterable of tuples with length 3 containing (node1, node2, weight value) :param weight: edge weight attribute name :type weight: :py:str :param kwargs: additional keyword arguments passed to add_edge :return: list of edge ids for the objects added in the same order as th input iterable. :rtype: :py:list """ return self.add_edges(edges, weight=weight, **kwargs) @property def degree(self): return degree(self, self.nodes.keys()) def get_edge_data(self, n1, n2, default=None): edge = (n1, n2) if edge not in self.edges: return default return self.edges[edge] def has_edge(self, n1, n2): return (n1, n2) in self.edges def has_node(self, node): return node in self.nodes def is_directed(self): """ Return graph directionality A graph with mixed edges (partly directed, partly undirected) is considered a directed graph. :return: directed or undirected graph :rtype: :py:bool """ return self.directed def nbunch_iter(self, nodes=None): if nodes: nodes = [node for node in nodes if node in self.nodes] else: nodes = self.nodes.keys() return self.iternodes(nodes) def neighbors(self, node): if node not in self.nodes: raise GraphitNodeNotFound() return iter(self.adjacency[node]) def number_of_edges(self, first=None, second=None): if first is None: return int(self.size()) if second is not None and second in self.adjacency[first]: return 1 return 0 def order(self): """ Return the number of nodes in the graph similar to __len__ :return: Number of nodes :rtype: :py:int """ return len(self) number_of_nodes = order def remove_nodes_from(self, *args, **kwargs): return self.remove_nodes(*args, **kwargs) def remove_edges_from(self, *args, **kwargs): return self.remove_edges(*args, **kwargs) def size(self, weight=None): return size(self, weight=weight) def subgraph(self, nodes): return self.getnodes(nodes) def edge_subgraph(self, edges): return self.getedges(edges) def to_directed(self): return graph_undirectional_to_directional(self) def to_undirected(self): return graph_directional_to_undirectional(self) def update(self, edges=None, nodes=None): if edges is not None: if nodes is not None: self.add_nodes(nodes) self.add_edges(edges) else: if hasattr(edges, 'nodes') and hasattr(edges, 'edges'): for node, attr in edges.nodes.items(): self.add_node(node, **attr) for edge, attr in edges.edges.items(): self.add_edge(*edge, **attr) else: self.add_edges(edges) elif nodes is not None: self.add_nodes(nodes) else: raise GraphitException("update needs nodes or edges input")
5,429
1,605
import os import random #initiate a list called emails_list emails_list = [] Directory = '/home/azureuser/spam_filter/enron1/emails/' Dir_list = os.listdir(Directory) for file in Dir_list: f = open(Directory + file, 'r') emails_list.append(f.read()) f.close()
260
94
import cv2 as cv import mediapipe as mp class PoseDetector: def __init__(self, mode=False, complexity=1, smooth=False, confidence=0.5, tracking_confidence=0.5) -> None: self.mode = mode self.complexity = complexity self.smooth = smooth self.confidence = confidence self.tracking_confidence = tracking_confidence self.mp_pose = mp.solutions.pose self.pose = self.mp_pose.Pose(self.mode, self.complexity, self.smooth, self.confidence, self.tracking_confidence) self.mp_draw = mp.solutions.drawing_utils def find_pose(self, img, draw=True): imgRGB = cv.cvtColor(img, cv.COLOR_BGR2RGB) self.results = self.pose.process(imgRGB) if(self.results.pose_landmarks): self.mp_draw.draw_landmarks(img, self.results.pose_landmarks, self.mp_pose.POSE_CONNECTIONS) return img if __name__ == "__main__": video = cv.VideoCapture(0) detector = PoseDetector() while True: success, img = video.read() image = detector.find_pose(img) cv.imshow("Image", image) cv.waitKey(1)
1,135
374
r""" This is the base module for all other objects of the package. + `LaTeX` returns a LaTeX string out of an `Irene` object. + `base` is the parent of all `Irene` objects. """ def LaTeX(obj): r""" Returns LaTeX representation of Irene's objects. """ from sympy.core.core import all_classes from Irene import SDPRelaxations, SDRelaxSol, Mom inst = isinstance(obj, SDPRelaxations) or isinstance( obj, SDRelaxSol) or isinstance(obj, Mom) if inst: return obj.__latex__() elif isinstance(obj, tuple(all_classes)): from sympy import latex return latex(obj) class base(object): r""" All the modules in `Irene` extend this class which perform some common tasks such as checking existence of certain softwares. """ def __init__(self): from sys import platform self.os = platform if self.os == 'win32': import os BASE = os.sep.join(os.path.dirname(os.path.realpath(__file__)).split(os.sep)) + os.sep self.Path = dict(csdp=BASE+"csdp.exe", sdpa=BASE+"sdpa.exe") else: self.Path = dict(csdp="csdp", sdpa="sdpa") def which(self, program): r""" Check the availability of the `program` system-wide. Returns the path of the program if exists and returns 'None' otherwise. """ import os def is_exe(fpath): return os.path.isfile(fpath) and os.access(fpath, os.X_OK) fpath, fname = os.path.split(program) if fpath: if is_exe(program): return program else: for path in os.environ["PATH"].split(os.pathsep): path = path.strip('"') exe_file = os.path.join(path, program) if is_exe(exe_file): return exe_file return None def AvailableSDPSolvers(self): r""" find the existing sdp solvers. """ existsing = [] # CVXOPT try: import cvxopt existsing.append('CVXOPT') except ImportError: pass if self.os == 'win32': from os.path import isfile # DSDP if ('dsdp' in self.Path): if isfile(self.Path['dsdp']): existsing.append('DSDP') # SDPA if ('sdpa' in self.Path): if isfile(self.Path['sdpa']): existsing.append('SDPA') if ('csdp' in self.Path): if isfile(self.Path['csdp']): existsing.append('CSDP') else: # DSDP if self.which('dsdp5') is not None: existsing.append('DSDP') # SDPA if self.which('sdpa') is not None: existsing.append('SDPA') # CSDP if self.which('csdp') is not None: existsing.append('CSDP') return existsing
3,012
898
from stanza.server import CoreNLPClient import os # example text print('---') print('input text') print('') # text = "Chris Manning is a nice person. Chris wrote a simple sentence. He also gives oranges to people." text = "PyTables is built on top of the HDF5 library, using the Python language and the NumPy package." print(text) # set up the client print('---') print('starting up Java Stanford CoreNLP Server...') # set up the client # with CoreNLPClient(annotators=['tokenize','ssplit','pos','lemma','ner','parse','depparse','coref'], timeout=60000, memory='4G', be_quiet=True) as client: with CoreNLPClient(annotators=['tokenize','ssplit','pos','parse','depparse'], timeout=60000, memory='4G', be_quiet=True) as client: # submit the request to the server ann = client.annotate(text) # print("ann is ", ann) # os.system("pause") # get the first sentence sentence = ann.sentence[0] print("sentence is ", sentence) os.system("pause") # get the dependency parse of the first sentence # print('---') # print('dependency parse of first sentence') # dependency_parse = sentence.basicDependencies # print(dependency_parse) # os.system("pause") # HDSKG's method print('---') print('enhanced++ dependency parse of first sentence') enhanced_plus_plus_dependency_parse = sentence.enhancedPlusPlusDependencies print(enhanced_plus_plus_dependency_parse) os.system("pause") # get the constituency parse of the first sentence # print('---') # print('constituency parse of first sentence') # constituency_parse = sentence.parseTree # print(constituency_parse) # os.system("pause") # get the first subtree of the constituency parse # print('---') # print('first subtree of constituency parse') # print(constituency_parse.child[0]) # os.system("pause") # get the value of the first subtree # print('---') # print('value of first subtree of constituency parse') # print(constituency_parse.child[0].value) # os.system("pause") # get the first token of the first sentence print('---') print('first token of first sentence') token = sentence.token[0] print(token) os.system("pause") # get the part-of-speech tag print('---') print('part of speech tag of token') token.pos print(token.pos) os.system("pause") # get the named entity tag print('---') print('named entity tag of token') print(token.ner) os.system("pause") # get an entity mention from the first sentence # print('---') # print('first entity mention in sentence') # print(sentence.mentions[0]) # os.system("pause") # access the coref chain # print('---') # print('coref chains for the example') # print(ann.corefChain) # os.system("pause") # Use tokensregex patterns to find who wrote a sentence. # pattern = '([ner: PERSON]+) /wrote/ /an?/ []{0,3} /sentence|article/' pattern = "([tag: NNP]{1,}) ([ tag:/VB.*/ ]) /an?/ ([pos:JJ]{0,3}) /sentence|article/" matches = client.tokensregex(text, pattern) print("tokensregex matches is ", matches) # sentences contains a list with matches for each sentence. assert len(matches["sentences"]) == 3 # length tells you whether or not there are any matches in this assert matches["sentences"][1]["length"] == 1 # You can access matches like most regex groups. # print("sentence is ",["sentences"][1]["0"]["text"]) matches["sentences"][1]["0"]["text"] == "Chris wrote a simple sentence" matches["sentences"][1]["0"]["1"]["text"] == "Chris" # # Use semgrex patterns to directly find who wrote what. # pattern = '{word:wrote} >nsubj {}=subject >dobj {}=object' # matches = client.semgrex(text, pattern) # # print("semgrex matches is", matches) # # sentences contains a list with matches for each sentence. # assert len(matches["sentences"]) == 3 # # length tells you whether or not there are any matches in this # assert matches["sentences"][1]["length"] == 1 # # You can access matches like most regex groups. # matches["sentences"][1]["0"]["text"] == "wrote" # matches["sentences"][1]["0"]["$subject"]["text"] == "Chris" # matches["sentences"][1]["0"]["$object"]["text"] == "sentence"
4,346
1,367
#!/usr/bin/env python # By Jinyuan Sun def fasta2dic(fastafilename): #read a fasta file into a dict fasta_dict = {} with open(fastafilename) as fastafile: for line in fastafile: if line[0] == ">": head = line.strip() fasta_dict[head] = '' else: fasta_dict[head] += line.strip() fastafile.close() return fasta_dict def output_single_fa(fasta_dict): #split a fastadict into fasta file of single seq for key in fasta_dict: filename = key[1:]+".fa" with open(filename, "w+") as outfile: outfile.write(key+"\n"+fasta_dict[key]+"\n") outfile.close() return filename def split_fasta(fastafilename): output_single_fa(fasta2dic(fastafilename)) def read_a3m(): return [] def align_2_seq(raw_seq1,raw_seq2): from Bio import pairwise2 import pickle with open("BLOSUM62.pkl", "rb") as tf: matrix = pickle.load(tf) tf.close() seq1 = raw_seq1 seq2 = raw_seq2 alignments = pairwise2.align.globalds(seq1, seq2, matrix, -10, -0.5) seq1 = alignments[0][0] seq2 = alignments[0][1] resnum = 0 #index = 0 aligned_seq2 = '' for index in range(len(seq1)): if seq1[index] == "-": continue else: aligned_seq2 += seq2[index] resnum += 1 if seq1[index] == seq2[index]: continue #else: #print(seq1[index],resnum,seq2[index]) index += 1 #print(raw_seq1+"\n"+aligned_seq2) return aligned_seq2
1,617
561
import enum from typing import Optional, Dict import httpx from tea import serde from tea_client import errors from tea_client.models import TeaClientModel class AuthorizationMethod(enum.Enum): basic = "Basic" token = "Token" jwt = "JWT" class HttpClient: """Generic requests handler. Handles retries and HTTP errors. """ Authorization = AuthorizationMethod ERRORS = { 401: "Unauthorized", 403: "Forbidden!", 404: "Not found.", 409: "Conflict", 429: "Under pressure! (Too many requests)", 500: "You broke it!!!", 502: "Server not reachable.", 503: "Server under maintenance.", } def __init__( self, url: str, token: str = "", authorization_method: AuthorizationMethod = AuthorizationMethod.jwt, timeout: int = 10, ): """Initialize. Args: url (str): URL to the Traktor server. token (str): Traktor authentication token. authorization_method (AuthorizationMethod): Authorization method. timeout (int): Request timeout time. """ self.url = url self.token = token self.authorization_method = authorization_method self.timeout = timeout # Setup headers self.headers = {"Content-Type": "application/json"} self.response = None def request( self, method: str, url: str, headers: Optional[Dict[str, str]] = None, params: Optional[Dict[str, str]] = None, data: Optional[TeaClientModel] = None, timeout: Optional[float] = None, ): """Request method. Request method handles all the url joining, header merging, logging and error handling. Args: method (str): Method for the request - GET or POST url (str): Partial url of the request. It is added to the base url headers (dict): Dictionary of additional HTTP headers params (dict): Dictionary of query parameters for the request data (BaseModel): A JSON serializable Python object to send in the body of the request. Used only in POST requests. timeout (float): How many seconds to wait for the server to send data before giving up. """ headers = {**self.headers, **(headers or {})} # Set authorization token if self.token.strip() != "": headers[ "Authorization" ] = f"{self.authorization_method.value} {self.token}" timeout = timeout or self.timeout try: with httpx.Client( base_url=self.url, headers=self.headers ) as client: if method.lower() == "get": self.response = client.get( url=url, headers=headers, params=params, timeout=timeout, ) elif method.lower() == "patch": self.response = client.patch( url=url, headers=headers, params=params, data=( None if data is None else serde.json_dumps(data.dict()) ), timeout=timeout, ) elif method.lower() == "post": self.response = client.post( url=url, headers=headers, params=params, data=( None if data is None else serde.json_dumps(data.dict()) ), timeout=timeout, ) elif method.lower() == "delete": self.response = client.delete( url=url, headers=headers, params=params, timeout=timeout, ) else: raise errors.HttpClientError( f"Unsupported method: {method}", status_code=405 ) except httpx.TimeoutException as e: # If request timed out, let upper level handle it they way it sees # fit one place might want to retry another might not. raise errors.HttpClientTimeout() from e except ConnectionError as e: raise errors.HttpClientError("Server not reachable.") from e except Exception as e: raise errors.HttpClientError(f"Unknown error. {e!r}") from e if 200 <= self.response.status_code <= 299: try: return self.response.json() if self.response.text else {} except Exception as e: raise errors.HttpClientError( f"Error while parsing server response: {e!r}", response=self.response, ) from e # Check rate limit limit = self.response.headers.get("X-Ratelimit-Limit", None) if limit is not None: remaining = self.response.headers["X-Ratelimit-Remaining"] reset = self.response.headers["X-Ratelimit-Reset"] retry = self.response.headers["X-Ratelimit-Retry"] if remaining == 0: raise errors.HttpRateLimitExceeded( response=self.response, limit=limit, remaining=remaining, reset=reset, retry=retry, ) # Try known error messages message = self.ERRORS.get(self.response.status_code, None) if message is not None: raise errors.HttpClientError(message, response=self.response) if self.response.status_code == 400: try: message = self.response.json()["error"] except Exception: message = "Bad Request." raise errors.HttpClientError(message, response=self.response) # Generalize unknown messages. try: message = self.response.json()["message"] except Exception: message = "Unknown error." raise errors.HttpClientError(message, response=self.response) def get( self, url: str, headers: Optional[Dict[str, str]] = None, params: Optional[Dict[str, str]] = None, timeout: Optional[float] = None, ): """Perform get request. Args: url (str): Partial url of the request. It is added to the base url headers (dict): Dictionary of additional HTTP headers params (dict): Dictionary of query parameters for the request timeout (float): How many seconds to wait for the server to send data before giving up Returns: dict: Deserialized json response. """ return self.request( method="get", url=url, headers=headers, params=params, timeout=timeout, ) def patch( self, url: str, headers: Optional[Dict[str, str]] = None, params: Optional[Dict[str, str]] = None, data: Optional[TeaClientModel] = None, timeout: Optional[float] = None, ): """Perform patch request. Args: url (str): Partial url of the request. It is added to the base url headers (dict): Dictionary of additional HTTP headers params (dict): Dictionary of query parameters for the request data (dict): A JSON serializable Python object to send in the body of the request. timeout (float): How many seconds to wait for the server to send data before giving up Returns: dict: Deserialized json response. """ return self.request( method="patch", url=url, headers=headers, params=params, data=data, timeout=timeout, ) def post( self, url: str, headers: Optional[Dict[str, str]] = None, params: Optional[Dict[str, str]] = None, data: Optional[TeaClientModel] = None, timeout: Optional[float] = None, ): """Perform post request. Args: url (str): Partial url of the request. It is added to the base url headers (dict): Dictionary of additional HTTP headers params (dict): Dictionary of query parameters for the request data (dict): A JSON serializable Python object to send in the body of the request. timeout (float): How many seconds to wait for the server to send data before giving up Returns: dict: Deserialized json response. """ return self.request( method="post", url=url, headers=headers, params=params, data=data, timeout=timeout, ) def delete( self, url, headers: Optional[Dict[str, str]] = None, params: Optional[Dict[str, str]] = None, timeout: Optional[float] = None, ): """Perform delete request. Args: url (str): Partial url of the request. It is added to the base url headers (dict): Dictionary of additional HTTP headers params (dict): Dictionary of query parameters for the request timeout (float): How many seconds to wait for the server to send data before giving up Returns: dict: Deserialized json response. """ return self.request( method="delete", url=url, headers=headers, params=params, timeout=timeout, )
10,248
2,479
import unittest from typing import List import Connector class PRPConnectorTest(unittest.TestCase): connection: Connector.PRPConnector = Connector.PRPConnector('admin', 'adminTest', 'https://marblch.pythonanywhere.com/') def test_test_message(self): response: dict = PRPConnectorTest.connection.test_message() self.assertEqual({'message': 'success'}, response) def test_login(self): response: int = PRPConnectorTest.connection.get_user() self.assertEqual(1, response) def test_get_index(self): response: List[dict] = PRPConnectorTest.connection.get_all('todo') self.assertEqual(list, type(response)) def test_write_delete(self): write_response = PRPConnectorTest.connection.write_item('todo', 'title=test&description=test description') self.assertEqual({'message': 'Entry added successfully', 'type': 'success'}, write_response) read_response_1: List[dict] = PRPConnectorTest.connection.get_item('todo', 'title', 'test') self.assertEqual('test', read_response_1[0]['title']) self.assertEqual('test description', read_response_1[0]['description']) item_id: int = int(read_response_1[0]['id']) delete_response = PRPConnectorTest.connection.delete_item('todo', item_id) self.assertEqual({'message': 'Entry deleted successfully', 'type': 'success'}, delete_response) read_response_2 = PRPConnectorTest.connection.get_item('todo', 'title', 'test') self.assertEqual([], read_response_2) def test_write_update_delete(self): PRPConnectorTest.connection.write_item('todo', 'title=test&description=test description') read_response_1: List[dict] = PRPConnectorTest.connection.get_item('todo', 'title', 'test') item_id: int = int(read_response_1[0]['id']) update_response: dict = PRPConnectorTest.connection.update_item('todo', 'id={id}&title=update&description=updated description'.format(id=str(item_id))) self.assertEqual('success', update_response['type']) read_response_2: List[dict] = PRPConnectorTest.connection.get_item('todo', 'title', 'test') self.assertEqual([], read_response_2) read_response_3: List[dict] = PRPConnectorTest.connection.get_item('todo', 'title', 'update') self.assertEqual('updated description', read_response_3[0]['description']) self.assertEqual(item_id, read_response_3[0]['id']) PRPConnectorTest.connection.delete_item('todo', item_id) class ToDoConnectorTest(unittest.TestCase): connection: Connector.ToDoConnector = Connector.ToDoConnector('admin', 'adminTest', 'https://marblch.pythonanywhere.com/') def test_get_index(self): response: List[dict] = ToDoConnectorTest.connection.get_all_todo() self.assertEqual(list, type(response)) def test_write_update_delete(self): ToDoConnectorTest.connection.write_item_todo(title='test', description='test description') read_response_1: List[dict] = ToDoConnectorTest.connection.get_item_todo(key='title', value='test') item_id: int = int(read_response_1[0]['id']) update_response: dict = ToDoConnectorTest.connection.update_item_todo(item_id=item_id, title='update', description='updated description') self.assertEqual('success', update_response['type']) read_response_2: List[dict] = ToDoConnectorTest.connection.get_item_todo(key='title', value='test') self.assertEqual([], read_response_2) read_response_3: List[dict] = ToDoConnectorTest.connection.get_item_todo(key='title', value='update') self.assertEqual('updated description', read_response_3[0]['description']) self.assertEqual(item_id, read_response_3[0]['id']) ToDoConnectorTest.connection.delete_item_todo(item_id)
3,809
1,168
import tensorflow as tf from tensorflow import keras class VAE(keras.Model): def __init__(self, encoder, decoder, **kwargs): super(VAE, self).__init__(**kwargs) self.encoder = encoder self.decoder = decoder self.e_count = 0 def train_step(self, data): # if isinstance(data, tuple): # data = data[0] with tf.GradientTape() as tape: z_mean, z_log_var, z = self.encoder(data[0]) reconstruction = self.decoder(z) reconstruction_loss = tf.reduce_mean(tf.math.squared_difference(data[1], reconstruction)) # reconstruction_loss *= 978 kl_loss = 1 + z_log_var - tf.square(z_mean) - tf.exp(z_log_var) kl_loss = tf.reduce_mean(kl_loss) kl_loss *= -0.5 total_loss = reconstruction_loss + 0.0002 * kl_loss grads = tape.gradient(total_loss, self.trainable_weights) self.optimizer.apply_gradients(zip(grads, self.trainable_weights)) return { "loss": total_loss, "reconstruction_loss": reconstruction_loss, "kl_loss": kl_loss, } def call(self, inputs): z_mean, z_log_var, z = self.encoder(inputs) reconstruction = self.decoder(z) return reconstruction
1,302
430
#!/usr/bin/env python # -*- encoding: utf-8 -*- # Copyright 2011-2020, Nigel Small # # 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. from pytest import raises from py2neo import Transaction class FakeTransaction(object): def __init__(self, graph_name, readonly=False): self._graph_name = graph_name self._readonly = readonly @property def readonly(self): return self._readonly class FakeConnector(object): def begin(self, graph_name, readonly=False): return FakeTransaction(graph_name, readonly=readonly) class FakeService(object): @property def connector(self): return FakeConnector() class FakeGraph(object): @property def name(self): return "fake" @property def service(self): return FakeService() def test_should_fail_on_tx_create_object(): tx = Transaction(FakeGraph()) with raises(TypeError): tx.create(object()) def test_should_fail_on_tx_delete_object(): tx = Transaction(FakeGraph()) with raises(TypeError): tx.delete(object()) def test_should_fail_on_tx_merge_object(): tx = Transaction(FakeGraph()) with raises(TypeError): tx.merge(object()) def test_should_fail_on_tx_pull_object(): tx = Transaction(FakeGraph()) with raises(TypeError): tx.pull(object()) def test_should_fail_on_tx_push_object(): tx = Transaction(FakeGraph()) with raises(TypeError): tx.push(object()) def test_should_fail_on_tx_separate_object(): tx = Transaction(FakeGraph()) with raises(TypeError): tx.separate(object())
2,121
680
#from https://github.com/mfurukawa/imu_sensor/tree/master/src/Python # September 03, 2020 # Yuto Nakayachi from __future__ import unicode_literals ,print_function import serial from time import sleep import numpy as np import matplotlib.pyplot as plt import io import csv import time import datetime import struct import tensorflow as tf from tensorflow import keras # Variable to get real value MPU9250A_2g = 0.000061035156 # 0.000061035156 g/LSB MPU9250A_4g = 0.000122070312 # 0.000122070312 g/LSB MPU9250A_8g = 0.000244140625 # 0.000244140625 g/LSB MPU9250A_16g = 0.000488281250 # 0.000488281250 g/LSB MPU9250G_250dps = 0.007633587786 # 0.007633587786 dps/LSB MPU9250G_500dps = 0.015267175572 # 0.015267175572 dps/LSB MPU9250G_1000dps = 0.030487804878 # 0.030487804878 dps/LSB MPU9250G_2000dps = 0.060975609756 # 0.060975609756 dps/LSB MPU9250M_4800uT = 0.6 # 0.6 uT/LSB MPU9250T_85degC = 0.002995177763 # 0.002995177763 degC/LSB Magnetometer_Sensitivity_Scale_Factor = 0.15 # number of axis numVariable = 24 # 4ch * 6acc # Maximum time for measure minuteLength = 25 # sampling rate smplHz = 500 # Variable to count number of sampling smpl_cnt = 0 # Variable to count number of fail fail_cnt_byte = 0 fail_cnt_head = 0 # Array to store data buf = [[0 for i in range(numVariable + 2)] for j in range(smplHz*60*minuteLength)] # Array to store real value buf_f = [[0 for i in range(numVariable + 2)] for j in range(smplHz*60*minuteLength)] # define serial port ser = serial.Serial("COM3",921600,timeout=1) # Check serial connection if ser.is_open: print("Start Serial Connection") else: print("PORT ERROR") ser.close() exit() # Function to create csv file def writeCSV(): global ser global smpl_cnt global buf global buf_f ser.write(b'r') print("Start Create CSV File") head = ["sample_cc","ms","ACC_X1","ACC_Y1","ACC_Z1","GYRO_X1","GYRO_Y1","GYRO_Z1","ACC_X2","ACC_Y2","ACC_Z2","GYRO_X2","GYRO_Y2","GYRO_Z2","ACC_X3","ACC_Y3","ACC_Z3","GYRO_X3","GYRO_Y3","GYRO_Z3","ACC_X4","ACC_Y4","ACC_Z4","GYRO_X4","GYRO_Y4","GYRO_Z4"] dt_now = datetime.datetime.now() year = dt_now.year month = dt_now.month day = dt_now.day hour = dt_now.hour minute = dt_now.minute t = str(year)+str(month)+str(day)+str(hour)+str(minute) title_int = "acc_data"+str(t)+"_int"+".csv" FILE_int = open(title_int,"w",newline="") title_float="acc_data"+str(t)+"_float"+".csv" FILE_float = open(title_float,"w",newline="") wi = csv.writer(FILE_int) wi.writerow(head) wf = csv.writer(FILE_float) wf.writerow(head) for i in range(smpl_cnt): wi.writerow(buf[i]) wf.writerow(buf_f[i]) FILE_int.close() FILE_float.close() print() print(title_int+" "+"created") print(title_float+" "+"created") print() print("Done Create CSV File") # Function to Measure def readByte(): global ser global smpl_cnt global buf global buf_f global xl global yl global fail_cnt_byte global fail_cnt_head ser.write(b"r") time.sleep(0.01) ser.write(b"s") time.sleep(0.01) state = 0 store = [] while(1): res = ser.read() if state == 0 and res == b'\r': res=ser.read() if res == b'\n': state = 1 store = [] else: #print("End byte set error") fail_cnt_byte += 1 #time.sleep(2) elif state == 1: store.append(res) if len(store)==50: # check header if store[0]==b'*': del store[0] else: #print("header error") #time.sleep(2) fail_cnt_head += 1 state = 0 store = [] continue #add time stamp if smpl_cnt==0: #start_time = int.from_bytes(res[-1],"big") start_time = struct.unpack("b",store[-1])[0] #start_time = store[-1] #print(start_time) tmp_time = 0 else: #now_time = int.from_bytes(res[-1],"big") add_time = struct.unpack("b",store[-1])[0] #add_time = store[-1] tmp_time += add_time buf[smpl_cnt][1] = tmp_time buf_f[smpl_cnt][1] = tmp_time buf[smpl_cnt][0] = smpl_cnt buf_f[smpl_cnt][0] = smpl_cnt # store data for i in range(0,48,2): res2 = store[i:i+2] tup = struct.unpack('>h', b''.join(res2)) val = tup[0] num = i%12 ch = i//12 buf[smpl_cnt][6*ch + num//2 + 2]=val if (num//2)>=3: buf_f[smpl_cnt][6*ch + num//2 + 2]=val * MPU9250G_500dps else: buf_f[smpl_cnt][6*ch + num//2 + 2]=val * MPU9250A_4g smpl_cnt += 1 store = [] state = 0 if smpl_cnt>=16000: break # Start print("ready? --> press s key") while(1): ready_s = input() if ready_s == "s": break if ready_s == "r": print("over") ser.close() exit() # Measure the start time p_time = time.time() # Function to measure readByte() # Measure the end time e_time = time.time() # The time it took print("time: ",e_time - p_time) # Function to create csv file writeCSV() # close serial port ser.close() print("number of data: ",smpl_cnt) print("number of byte fail: ",fail_cnt_byte) print("number of header fail: ",fail_cnt_head) print("END")
6,070
2,468
import matplotlib as mpl mpl.use('agg') import glob import argparse from time import time import numpy as np import pylab as plt import rficnn as rfc parser = argparse.ArgumentParser() parser.add_argument('--arch', required=False, help='choose architecture', type=str, default='1') parser.add_argument('--trsh', required=False, help='choose threshold', type=float, default=0.1) args = parser.parse_args() threshold = args.trsh rfc.the_print('Chosen architecture is: '+args.arch+' and threshod is: '+str(threshold),bgc='green') model_add = './models/model_'+args.arch+'_'+str(threshold) conv = ss.ConvolutionalLayers(nx=276,ny=400,n_channel=1,restore=1, model_add=model_add,arch_file_name='arch_'+args.arch) sim_files = glob.glob('../data/hide_sims_test/calib_1year/*.fits')) times = [] for fil in sim_files: fname = fil.split('/')[-1] print fname data,mask = read_chunck_sdfits(fil,label_tag=RFI,threshold=0.1,verbose=0) data = np.clip(np.fabs(data), 0, 200) data -= data.min() data /= data.max() lnx,lny = data.shape s = time() pred = conv.conv_large_image(data.reshape(1,lnx,lny,1),pad=10,lx=276,ly=400) e = time() times.append(e-s) mask = mask[10:-10,:] pred = pred[10:-10,:] fig, (ax1,ax2,ax3) = plt.subplots(3,1,figsize=(18,8)) ax1.imshow(data,aspect='auto') ax2.imshow(mask,aspect='auto') ax3.imshow(pred,aspect='auto') np.save('../comparison/'+fname+'_mask_'+sys.argv[1],mask) np.save('../comparison/'+fname+'_pred_'+sys.argv[1],pred) plt.subplots_adjust(left=0.04, right=0.99, top=0.99, bottom=0.04) plt.savefig('../comparison/'+fname+'_'+sys.argv[1]+'.jpg',dpi=30) plt.close() print np.mean(times)
1,754
719
from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email.mime.image import MIMEImage from email.header import Header from email.mime.base import MIMEBase from email import encoders import os import uuid import smtplib import re class CTEmail(object): def __init__(self, usr, pwd, server='smtp.qq.com', port=25, hide=True): self.user = usr self.password = pwd self.server = server self.port = port self.hide = hide self.pattern_img = r'(<EMAIL_IMG>.+</EMAIL_IMG>)' def attach_image(self, img_dict): """ Attach image to use it in HTML mail body :param img_dict: :return: MIMEImage attachment """ with open(img_dict['path'], 'rb') as file: msg_image = MIMEImage(file.read(), name=os.path.basename(img_dict['path'])) msg_image.add_header('Content-ID', '<{}>'.format(img_dict['cid'])) return msg_image def attach_file(self, filename): """ Attach file to mail letter :param filename: str :return: MIMEBase attachment """ part = MIMEBase('application', 'octet-stream') data = open(filename, 'rb').read() part.set_payload(data) encoders.encode_base64(part) part.add_header('Content-Disposition', 'attachment; filename=%s' % os.path.basename(filename)) return part def prepare_email(self, subject, recipients, content, images): """ Prepare mail body with attachments. Basically this function form message. :param subject: str :param recipients: list :param content: str :param images: list :return: message object """ msg = MIMEMultipart('related') msg['Subject'] = Header(subject, 'utf-8') msg['From'] = self.user if self.hide: msg['bcc'] = 'undisclosed-recipients' else: msg['to'] = ','.join(recipients) msg_alternative = MIMEMultipart('alternative') img_list = [] if images: index = 0 for image in images: image = dict(title='Image {0}'.format(index), path=image, cid=str(uuid.uuid4())) img_html = '<div dir="ltr"><img src="cid:{cid}" ' \ 'alt="Image should appear here...but this did not happened (" ' \ 'style="display: block; color: #666666; ' \ 'font-family: Helvetica, arial, sans-serif; font-size: 16px;" ' \ 'class="img-max"></div>'.format(cid=image['cid']) content = re.sub(self.pattern_img, img_html, content, 1) img_list.append(image) index += 1 msg_html = MIMEText(content, 'html', 'utf-8') msg_alternative.attach(msg_html) msg.attach(msg_alternative) # the sequence of images attachment matters, so need twice check if img_list: for img in img_list: msg.attach(self.attach_image(img)) return msg def send_email(self, subject, content_path, recipients): """ This function send email to the list of recipients. Images are automatically added if content_path is directory (assumed that this directory contains html+images) :param subject: str :param content_path: str :param recipients: list :return: None """ if os.path.exists(content_path): if os.path.isdir(content_path): files = sorted(os.listdir(content_path)) images = [] for file in files: path = os.path.join(content_path, file) if file.endswith('.html'): content = open(path, 'r').read() elif file.endswith('.jpg') or file.endswith('.jpeg') or file.endswith('.png'): images.append(path) elif os.path.isfile(content_path): content = open(content_path, 'r', encoding='utf-8').read() msg = self.prepare_email(subject, recipients, content, images) mailServer = smtplib.SMTP(self.server, self.port) mailServer.ehlo() mailServer.starttls() mailServer.ehlo() mailServer.login(self.user, self.password) mailServer.sendmail(self.user, recipients, msg.as_string()) mailServer.quit()
4,544
1,307
#!/usr/bin/env python # -*- coding: utf-8 -*- import json from alipay.aop.api.constant.ParamConstants import * class RequestExtShopItem(object): def __init__(self): self._brand_code = None self._category_code = None self._description = None self._item_code = None self._kb_shop_id = None self._price = None self._title = None @property def brand_code(self): return self._brand_code @brand_code.setter def brand_code(self, value): self._brand_code = value @property def category_code(self): return self._category_code @category_code.setter def category_code(self, value): self._category_code = value @property def description(self): return self._description @description.setter def description(self, value): self._description = value @property def item_code(self): return self._item_code @item_code.setter def item_code(self, value): self._item_code = value @property def kb_shop_id(self): return self._kb_shop_id @kb_shop_id.setter def kb_shop_id(self, value): self._kb_shop_id = value @property def price(self): return self._price @price.setter def price(self, value): self._price = value @property def title(self): return self._title @title.setter def title(self, value): self._title = value def to_alipay_dict(self): params = dict() if self.brand_code: if hasattr(self.brand_code, 'to_alipay_dict'): params['brand_code'] = self.brand_code.to_alipay_dict() else: params['brand_code'] = self.brand_code if self.category_code: if hasattr(self.category_code, 'to_alipay_dict'): params['category_code'] = self.category_code.to_alipay_dict() else: params['category_code'] = self.category_code if self.description: if hasattr(self.description, 'to_alipay_dict'): params['description'] = self.description.to_alipay_dict() else: params['description'] = self.description if self.item_code: if hasattr(self.item_code, 'to_alipay_dict'): params['item_code'] = self.item_code.to_alipay_dict() else: params['item_code'] = self.item_code if self.kb_shop_id: if hasattr(self.kb_shop_id, 'to_alipay_dict'): params['kb_shop_id'] = self.kb_shop_id.to_alipay_dict() else: params['kb_shop_id'] = self.kb_shop_id if self.price: if hasattr(self.price, 'to_alipay_dict'): params['price'] = self.price.to_alipay_dict() else: params['price'] = self.price if self.title: if hasattr(self.title, 'to_alipay_dict'): params['title'] = self.title.to_alipay_dict() else: params['title'] = self.title return params @staticmethod def from_alipay_dict(d): if not d: return None o = RequestExtShopItem() if 'brand_code' in d: o.brand_code = d['brand_code'] if 'category_code' in d: o.category_code = d['category_code'] if 'description' in d: o.description = d['description'] if 'item_code' in d: o.item_code = d['item_code'] if 'kb_shop_id' in d: o.kb_shop_id = d['kb_shop_id'] if 'price' in d: o.price = d['price'] if 'title' in d: o.title = d['title'] return o
3,782
1,169
#!/usr/bin/env python # # Copyright 2009 Facebook # # 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. """Implementation of an S3-like storage server based on local files. Useful to test features that will eventually run on S3, or if you want to run something locally that was once running on S3. We don't support all the features of S3, but it does work with the standard S3 client for the most basic semantics. To use the standard S3 client with this module: c = S3.AWSAuthConnection("", "", server="localhost", port=8888, is_secure=False) c.create_bucket("mybucket") c.put("mybucket", "mykey", "a value") print c.get("mybucket", "mykey").body """ import bisect import datetime import hashlib import os import os.path import urllib from tornado import escape from tornado import httpserver from tornado import ioloop from tornado import web def start(port, root_directory="/tmp/s3", bucket_depth=0): """Starts the mock S3 server on the given port at the given path.""" application = S3Application(root_directory, bucket_depth) http_server = httpserver.HTTPServer(application) http_server.listen(port) ioloop.IOLoop.instance().start() class S3Application(web.Application): """Implementation of an S3-like storage server based on local files. If bucket depth is given, we break files up into multiple directories to prevent hitting file system limits for number of files in each directories. 1 means one level of directories, 2 means 2, etc. """ def __init__(self, root_directory, bucket_depth=0): web.Application.__init__(self, [ (r"/", RootHandler), (r"/([^/]+)/(.+)", ObjectHandler), (r"/([^/]+)/", BucketHandler), ]) self.directory = os.path.abspath(root_directory) if not os.path.exists(self.directory): os.makedirs(self.directory) self.bucket_depth = bucket_depth class BaseRequestHandler(web.RequestHandler): SUPPORTED_METHODS = ("PUT", "GET", "DELETE") def render_xml(self, value): assert isinstance(value, dict) and len(value) == 1 self.set_header("Content-Type", "application/xml; charset=UTF-8") name = value.keys()[0] parts = [] parts.append('<' + escape.utf8(name) + ' xmlns="http://doc.s3.amazonaws.com/2006-03-01">') self._render_parts(value.values()[0], parts) parts.append('</' + escape.utf8(name) + '>') self.finish('<?xml version="1.0" encoding="UTF-8"?>\n' + ''.join(parts)) def _render_parts(self, value, parts=[]): if isinstance(value, basestring): parts.append(escape.xhtml_escape(value)) elif isinstance(value, int) or isinstance(value, long): parts.append(str(value)) elif isinstance(value, datetime.datetime): parts.append(value.strftime("%Y-%m-%dT%H:%M:%S.000Z")) elif isinstance(value, dict): for name, subvalue in value.iteritems(): if not isinstance(subvalue, list): subvalue = [subvalue] for subsubvalue in subvalue: parts.append('<' + escape.utf8(name) + '>') self._render_parts(subsubvalue, parts) parts.append('</' + escape.utf8(name) + '>') else: raise Exception("Unknown S3 value type %r", value) def _object_path(self, bucket, object_name): if self.application.bucket_depth < 1: return os.path.abspath(os.path.join( self.application.directory, bucket, object_name)) hash = hashlib.md5(object_name).hexdigest() path = os.path.abspath(os.path.join( self.application.directory, bucket)) for i in range(self.application.bucket_depth): path = os.path.join(path, hash[:2 * (i + 1)]) return os.path.join(path, object_name) class RootHandler(BaseRequestHandler): def get(self): names = os.listdir(self.application.directory) buckets = [] for name in names: path = os.path.join(self.application.directory, name) info = os.stat(path) buckets.append({ "Name": name, "CreationDate": datetime.datetime.utcfromtimestamp( info.st_ctime), }) self.render_xml({"ListAllMyBucketsResult": { "Buckets": {"Bucket": buckets}, }}) class BucketHandler(BaseRequestHandler): def get(self, bucket_name): prefix = self.get_argument("prefix", u"") marker = self.get_argument("marker", u"") max_keys = int(self.get_argument("max-keys", 50000)) path = os.path.abspath(os.path.join(self.application.directory, bucket_name)) terse = int(self.get_argument("terse", 0)) if not path.startswith(self.application.directory) or \ not os.path.isdir(path): raise web.HTTPError(404) object_names = [] for root, dirs, files in os.walk(path): for file_name in files: object_names.append(os.path.join(root, file_name)) skip = len(path) + 1 for i in range(self.application.bucket_depth): skip += 2 * (i + 1) + 1 object_names = [n[skip:] for n in object_names] object_names.sort() contents = [] start_pos = 0 if marker: start_pos = bisect.bisect_right(object_names, marker, start_pos) if prefix: start_pos = bisect.bisect_left(object_names, prefix, start_pos) truncated = False for object_name in object_names[start_pos:]: if not object_name.startswith(prefix): break if len(contents) >= max_keys: truncated = True break object_path = self._object_path(bucket_name, object_name) c = {"Key": object_name} if not terse: info = os.stat(object_path) c.update({ "LastModified": datetime.datetime.utcfromtimestamp( info.st_mtime), "Size": info.st_size, }) contents.append(c) marker = object_name self.render_xml({"ListBucketResult": { "Name": bucket_name, "Prefix": prefix, "Marker": marker, "MaxKeys": max_keys, "IsTruncated": truncated, "Contents": contents, }}) def put(self, bucket_name): path = os.path.abspath(os.path.join( self.application.directory, bucket_name)) if not path.startswith(self.application.directory) or \ os.path.exists(path): raise web.HTTPError(403) os.makedirs(path) self.finish() def delete(self, bucket_name): path = os.path.abspath(os.path.join( self.application.directory, bucket_name)) if not path.startswith(self.application.directory) or \ not os.path.isdir(path): raise web.HTTPError(404) if len(os.listdir(path)) > 0: raise web.HTTPError(403) os.rmdir(path) self.set_status(204) self.finish() class ObjectHandler(BaseRequestHandler): def get(self, bucket, object_name): object_name = urllib.unquote(object_name) path = self._object_path(bucket, object_name) if not path.startswith(self.application.directory) or \ not os.path.isfile(path): raise web.HTTPError(404) info = os.stat(path) self.set_header("Content-Type", "application/unknown") self.set_header("Last-Modified", datetime.datetime.utcfromtimestamp( info.st_mtime)) object_file = open(path, "r") try: self.finish(object_file.read()) finally: object_file.close() def put(self, bucket, object_name): object_name = urllib.unquote(object_name) bucket_dir = os.path.abspath(os.path.join( self.application.directory, bucket)) if not bucket_dir.startswith(self.application.directory) or \ not os.path.isdir(bucket_dir): raise web.HTTPError(404) path = self._object_path(bucket, object_name) if not path.startswith(bucket_dir) or os.path.isdir(path): raise web.HTTPError(403) directory = os.path.dirname(path) if not os.path.exists(directory): os.makedirs(directory) object_file = open(path, "w") object_file.write(self.request.body) object_file.close() self.finish() def delete(self, bucket, object_name): object_name = urllib.unquote(object_name) path = self._object_path(bucket, object_name) if not path.startswith(self.application.directory) or \ not os.path.isfile(path): raise web.HTTPError(404) os.unlink(path) self.set_status(204) self.finish()
9,644
2,877
# Copyright 2021 Google LLC # # 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. """Test results APIs.""" import typing # Non-standard docstrings are used to generate the API documentation. import endpoints from protorpc import message_types from protorpc import messages from protorpc import remote from multitest_transport.api import base from multitest_transport.models import messages as mtt_messages from multitest_transport.models import ndb_models from multitest_transport.models import sql_models from multitest_transport.util import tfc_client from multitest_transport.util import xts_result @base.MTT_API.api_class(resource_name='test_result', path='test_results') class TestResultApi(remote.Service): """Test results API handler.""" @base.ApiMethod( endpoints.ResourceContainer( message_types.VoidMessage, attempt_id=messages.StringField(1), test_run_id=messages.StringField(2)), mtt_messages.TestModuleResultList, path='modules', http_method='GET', name='list_modules') def ListTestModuleResults(self, request): """Fetches a page of test module results. Incomplete modules are returned first, and results are then sorted by descending failure count. Parameters: attempt_id: Test run attempt ID test_run_id: Test run ID (used if attempt_id not provided) """ if request.attempt_id: # Use attempt_id directly if provided return mtt_messages.TestModuleResultList( results=self._GetTestModuleResults(request.attempt_id)) if not request.test_run_id: # Invalid request (test_run_id and attempt_id not provided) raise endpoints.BadRequestException('Test run ID or attempt ID required') # Determine attempt_id from test_run_id (latest finished attempt) test_run_id = request.test_run_id test_run = ndb_models.TestRun.get_by_id(test_run_id) if not test_run: raise endpoints.NotFoundException('Test run %s not found' % test_run_id) if not test_run.request_id: return mtt_messages.TestModuleResultList( extra_info='Test run %s not started' % test_run_id) attempts = tfc_client.GetLatestFinishedAttempts(test_run.request_id) result_list = mtt_messages.TestModuleResultList() for attempt in attempts: result_list.results.extend(self._GetTestModuleResults(attempt.attempt_id)) if not result_list.results: # No results found for latest attempt, try fetching legacy results instead return self._GetLegacyTestModuleResults(test_run.request_id) return result_list def _GetTestModuleResults( self, attempt_id: str) -> typing.List[mtt_messages.TestModuleResult]: """Fetch test module results from the DB.""" with sql_models.db.Session() as session: query = session.query(sql_models.TestModuleResult) query = query.order_by(sql_models.TestModuleResult.complete, sql_models.TestModuleResult.failed_tests.desc(), sql_models.TestModuleResult.id) query = query.filter_by(attempt_id=attempt_id) modules = query.all() return mtt_messages.ConvertList(modules, mtt_messages.TestModuleResult) def _GetLegacyTestModuleResults( self, request_id: int) -> mtt_messages.TestModuleResultList: """Fetch legacy test module results from TFC.""" invocation_status = tfc_client.GetRequestInvocationStatus(request_id) test_group_statuses = sorted( invocation_status.test_group_statuses or [], key=lambda s: (s.is_complete, -s.failed_test_count)) results = mtt_messages.ConvertList(test_group_statuses, mtt_messages.TestModuleResult) return mtt_messages.TestModuleResultList( results=results, extra_info='Legacy test results from request %s' % request_id) @base.ApiMethod( endpoints.ResourceContainer( message_types.VoidMessage, module_id=messages.StringField(1, required=True), max_results=messages.IntegerField( 2, default=base.DEFAULT_MAX_RESULTS), page_token=messages.StringField(3), status=messages.EnumField(xts_result.TestStatus, 4, repeated=True), name=messages.StringField(5)), mtt_messages.TestCaseResultList, path='modules/{module_id}/test_cases', http_method='GET', name='list_test_cases') def ListTestCaseResults(self, request): """Fetches a page of test case results. Parameters: module_id: Test module ID max_results: Maximum number of test results to return page_token: Token for pagination status: Set of statuses to include name: Partial name filter (case-insensitive) """ with sql_models.db.Session() as session: # Find parent module module = session.query(sql_models.TestModuleResult).get(request.module_id) if not module: raise endpoints.NotFoundException( 'Module %s not found' % request.module_id) # Initialize query (ordered by insertion order) query = session.query(sql_models.TestCaseResult) query = query.order_by(sql_models.TestCaseResult.id).with_parent(module) # Apply page token (<last id>) if request.page_token: query = query.filter( sql_models.TestCaseResult.id > int(request.page_token)) # Apply filters if request.status: query = query.filter( sql_models.TestCaseResult.status.in_(request.status)) if request.name: query = query.filter( sql_models.TestCaseResult.name.contains(request.name)) # Fetch at most N + 1 results if request.max_results and request.max_results > 0: query = query.limit(request.max_results + 1) test_cases = query.all() # Generate next page token and response next_page_token = None if request.max_results and 0 < request.max_results < len(test_cases): test_cases = test_cases[:-1] next_page_token = str(test_cases[-1].id) results = mtt_messages.ConvertList(test_cases, mtt_messages.TestCaseResult) return mtt_messages.TestCaseResultList( results=results, next_page_token=next_page_token)
6,697
1,947
class TypeRef: '''Represents temporary type references by an integer; to be resolved to actual types later ''' def __init__(self, type_ref: int): self.type_ref = type_ref def __hash__(self): return hash(self.type_ref) def __eq__(self, other): return isinstance(other, TypeRef) and self.type_ref == other.type_ref def __repr__(self): return '{}({})'.format(self.__class__.__name__, self.type_ref)
462
144
import numpy as np loss_arr = np.array(list()) with open("total_loss.txt", "r") as f_loss: cnt = 0 for loss in f_loss.readlines(): cnt += 1 # print(loss) loss_arr = np.append(loss_arr, float(loss)) print(cnt)
260
101
'''Image utils''' from io import BytesIO from PIL import Image import matplotlib.pyplot as plt def save_and_open(save_func): '''Save to in-memory buffer and re-open ''' buf = BytesIO() save_func(buf) buf.seek(0) bytes_ = buf.read() buf_ = BytesIO(bytes_) return buf_ def fig_to_pil(fig: plt.Figure): '''Convert matplot figure to PIL Image''' buf = save_and_open(fig.savefig) return Image.open(buf)
443
161
import hashlib import logging from struct import unpack import sys import time from . import (connector_wire_messages as cwm, AtLeastOnceSourceConnector, ProtocolError, ConnectorError) if sys.version_info.major == 2: from .base_meta2 import BaseMeta, abstractmethod else: from .base_meta3 import BaseMeta, abstractmethod class BaseIter(BaseMeta): """ A base class for creating iterator classes -- e.g. stateful iterators To use it, create your own subclass and implement the `__next__(self)` method. """ def throw(self, type=None, value=None, traceback=None): raise StopIteration def __iter__(self): return self def next(self): return self.__next__() @abstractmethod def __next__(self): raise NotImplementedError class BaseSource(BaseMeta): """ All sources should inherit BaseSource and implement four methods: - `__str__(self)`: a human readable description of the source - `reset(self, pos=0)`: a mechanism to reset the source to a point of reference `pos`. `pos` is a positive integer, and may be transformed further within the method body. - `point_of_ref(self)`: the current position of the source. e.g. for a file source, this could be the position at the end of reading a sequence of bytes. - `__next__(self)`: return a tuple of the next value and the new point of reference. """ @abstractmethod def __str__(self): """ Return a human readable description of the source """ raise NotImplementedError @abstractmethod def reset(self, pos=0): """ Reset the source to position `pos`. `pos` is an integer point of reference. The source may do additional transformations in order to determine what internal position to reset to. """ raise NotImplementedError @abstractmethod def point_of_ref(self): """ Return the current point of reference """ raise NotImplementedError @abstractmethod def __next__(self): """ Return a tuple of the next message from the source and the point of reference after reading it. E.g. for a file source, it could be the bytes read, and the byte position after reading them. """ raise NotImplementedError class FramedFileReader(BaseIter, BaseSource): """ A framed file reader iterator with a resettable position. Usage: `FramedFileReader(filename)`. Data should have U32 length headers followed by data bytes, followed by the next datum's length header and bytes, and so on until the end of the file. """ def __init__(self, filename): self.file = open(filename, mode='rb') self.name = filename.encode() self.key = filename.encode() def __str__(self): return ("FramedFileReader(filename: {}, closed: {}, point_of_ref: {})" .format(self.name, self.file.closed, self.point_of_ref())) def point_of_ref(self): try: return self.file.tell() except: return -1 def reset(self, pos=0): logging.debug("resetting {} from {} to position {}" .format(self.__str__(), self.point_of_ref(), pos)) self.file.seek(pos) def __next__(self): # read header h = self.file.read(4) if not h: raise StopIteration h_bytes = unpack('>I', h)[0] b = self.file.read(h_bytes) if not b: raise StopIteration return (b, self.file.tell()) def close(self): self.file.close() def __del__(self): try: self.close() except: pass class MultiSourceConnector(AtLeastOnceSourceConnector, BaseIter): """ MultiSourceConnector Send data from mutliple sources in a round-robin fashion using the AtLeastOnceSourceConnector protocol and superclass. New sources may be added at any point. An iterator interface is used to read and send the next datum to the Wallaroo source, for use with an external loop, such as ``` client = MultiSourceConnector( "0.0.1", "monster", "celsius at least once", "instance", args=None, required_params=['host', 'port', 'filenames']) # Open a connection with a hello message client.connect() params = client.params filenames = params.filenames.split(',') # Open FramedFileReader for fn in filenames: client.add_source(FramedFileReader(filename = fn)) # Rely on the iterator method of our connector subclass client.join() print("Reached the end of all files. Shutting down.") ``` """ def __init__(self, version, cookie, program_name, instance_name, host, port, delay=0): AtLeastOnceSourceConnector.__init__(self, version, cookie, program_name, instance_name, host, port, delay=delay) self.sources = {} # stream_id: [source instance, acked point of ref] self.closed_sources = {} # stream_id: acked point of ref self.keys = [] self._idx = -1 self.joining = set() self.open = set() self.pending_eos_ack = {} # {stream_id: point_of_ref} self.closed = set() self._added_source = False def add_source(self, source): self._added_source = True # add to self.sources _id = self.get_id(source.name) # check if we already have source... if we do raise error if _id in self.sources: raise ConnectorError("Cannot add Source {}. A source exists" " with that ID: {}".format(source, self.sources[_id])) self.sources[_id] = [source, source.point_of_ref()] self.keys.append(_id) # add to joining set so we can control the starting sequence self.joining.add(_id) # send a notify self.notify(_id, source.name, source.point_of_ref()) def remove_source(self, source): """ Start an asynchronous closing of a source. This can only be completed via the `stream_closed` callback. """ _id = self.get_id(source.name) if _id in self.sources: # Remove it from the open set if _id in self.open: self.open.remove(_id) # Add it to the set of sources pending closing point_of_ref = source.point_of_ref() self.pending_eos_ack[_id] = point_of_ref # send end of stream self.end_of_stream(stream_id = _id, point_of_ref = point_of_ref) def _close_and_delete_source(self, source): key = self.get_id(source.name) if key in self.sources: try: del self.pending_eos_ack[key] except KeyError: raise ConnectorError("Cannot close source {}. It has not been" "properly removed yet. Please use " "`remove_source(source)` first." .format(source)) # close and remove the source _, acked = self.sources.pop(key, (None, None)) try: idx = self.keys.index(key) # value error self.keys.pop(idx) # index error if self._idx >= idx: # to avoid skipping in the round-robin sender self._idx -= 1 except (ValueError, IndexError): # print warning logging.warning("Tried to delete source {} with key {} but " "could not find it in keys collection: {}" .format(source, key, self.keys)) source.close() # add it to closed so we keep track of it self.closed.add(key) self.closed_sources[key] = acked @staticmethod def get_id(bs): """ Repeatable hash from bytes to 64-bit unsigned integer using a truncated SHA256. """ h = hashlib.new('sha256') h.update(bs) return int(h.hexdigest()[:16], 16) # Make this class an iterable: def __next__(self): if len(self.keys) > 0: # get next position self._idx = (self._idx + 1) % len(self.keys) # get key of that position key = self.keys[self._idx] # if stream is not in an open state, return nothing. if not key in self.open: return None try: # get source at key source = self.sources[key][0] # get value from source value, point_of_ref = next(source) if value is None: return None # send it as a message msg = cwm.Message( stream_id = key, flags = cwm.Message.Key, message_id = point_of_ref, key = source.key, message = value) return msg except StopIteration: # if the source threw a StopIteration, remove it source, _ = self.sources.get(key, (None, None)) if source: self.remove_source(source) return None except IndexError: # Index might have overflowed due to manual remove_source # will be corrected in the next iteration return None elif not self._added_source: # In very fast select loops, we might reach the end condition # before we have a chance to add our first source, so keep # spinning return None elif not self.closed: # There's a race when added_source can be set, but keys isn't # populated yet. If closed is empty, we haven't yet closed any # sources, so shouldn't terminate the loop return None else: logging.debug("__next__: raising StopIteration") logging.debug("keys: {}, joining: {}, open: {}, pending_eos_ack: {}, closed: {}, _added_source: {}".format(self.keys, self.joining, self.open, self.pending_eos_ack, self.closed, self._added_source)) raise StopIteration def stream_added(self, stream): logging.debug("MultiSourceConnector added {}".format(stream)) source, acked = self.sources.get(stream.id, (None, None)) if source: if stream.point_of_ref != source.point_of_ref(): source.reset(stream.point_of_ref) # probably got this as part of the _handle_ok logic. Store the ack # and use when a source matching the stream id is added else: self.sources[stream.id] = [None, stream.point_of_ref] def stream_removed(self, stream): logging.debug("MultiSourceConnector removed {}".format(stream)) pass def stream_opened(self, stream): logging.debug("MultiSourceConnector stream_opened {}".format(stream)) source, acked = self.sources.get(stream.id, (None, None)) if source: if stream.id in self.joining: self.joining.remove(stream.id) if stream.point_of_ref != source.point_of_ref(): source.reset(stream.point_of_ref) self.open.add(stream.id) else: raise ConnectorError("Stream {} was opened for unknown source. " "Please use the add_source interface." .format(stream)) def stream_closed(self, stream): logging.debug("MultiSourceConnector closed {}".format(stream)) source, acked = self.sources.get(stream.id, (None, None)) if source: if stream.id in self.open: # source was open so move it back to joining state self.open.remove(stream.id) self.joining.add(stream.id) elif stream.id in self.pending_eos_ack: # source was pending eos ack, but that was interrupted # move it back to joining del self.pending_eos_ack[stream.id] self.joining.add(stream.id) elif stream.id in self.closed: logging.debug("tried to close an already closed source: {}" .format(Source)) else: pass else: pass def stream_acked(self, stream): logging.debug("MultiSourceConnector acked {}".format(stream)) source, acked = self.sources.get(stream.id, (None, None)) if source: # check if there's an eos pending this ack eos_point_of_ref = self.pending_eos_ack.get(stream.id, None) if eos_point_of_ref: logging.debug("Stream {} is awaiting EOS Ack for {}" .format(stream, eos_point_of_ref)) # source was pending eos ack # check ack's point of ref if stream.point_of_ref == eos_point_of_ref: # can finish closing it now self._close_and_delete_source(source) return elif stream.point_of_ref < eos_point_of_ref: pass else: raise ConnectorError("Got ack point of ref that is larger" " than the ended stream's point of ref.\n" "Expected: {}, Received: {}" .format(eos_point_of_ref, stream)) elif isinstance(acked, int): # acked may be 0 & use this clause! # regular ack (incremental ack of a live stream) if stream.point_of_ref < acked: logging.warning("got an ack for older point of reference" " for stream {}".format(stream)) source.reset(stream.point_of_ref) else: # source was added before connect()\handle_ok => reset source.reset(stream.point_of_ref) # update acked point of ref for the source self.sources[stream.id][1] = stream.point_of_ref elif stream.id in self.closed: pass else: raise ConnectorError("Stream {} was opened for unknown source. " "Please use the add_source interface." .format(stream))
15,070
4,012
# Copyright The PyTorch Lightning team. # # 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. """ Device Stats Monitor ==================== Monitors and logs device stats during training. """ from typing import Any, Dict, Optional import pytorch_lightning as pl from pytorch_lightning.callbacks.base import Callback from pytorch_lightning.utilities.exceptions import MisconfigurationException from pytorch_lightning.utilities.types import STEP_OUTPUT class DeviceStatsMonitor(Callback): r""" Automatically monitors and logs device stats during training stage. ``DeviceStatsMonitor`` is a special callback as it requires a ``logger`` to passed as argument to the ``Trainer``. Raises: MisconfigurationException: If ``Trainer`` has no logger. Example: >>> from pytorch_lightning import Trainer >>> from pytorch_lightning.callbacks import DeviceStatsMonitor >>> device_stats = DeviceStatsMonitor() # doctest: +SKIP >>> trainer = Trainer(callbacks=[device_stats]) # doctest: +SKIP """ def setup(self, trainer: "pl.Trainer", pl_module: "pl.LightningModule", stage: Optional[str] = None) -> None: if not trainer.logger: raise MisconfigurationException("Cannot use DeviceStatsMonitor callback with Trainer that has no logger.") def on_train_batch_start( self, trainer: "pl.Trainer", pl_module: "pl.LightningModule", batch: Any, batch_idx: int, unused: Optional[int] = 0, ) -> None: if not trainer.logger_connector.should_update_logs: return device_stats = trainer.accelerator.get_device_stats(pl_module.device) prefixed_device_stats = prefix_metrics_keys(device_stats, "on_train_batch_start") trainer.logger.log_metrics(prefixed_device_stats, step=trainer.global_step) def on_train_batch_end( self, trainer: "pl.Trainer", pl_module: "pl.LightningModule", outputs: STEP_OUTPUT, batch: Any, batch_idx: int, unused: Optional[int] = 0, ) -> None: if not trainer.logger_connector.should_update_logs: return device_stats = trainer.accelerator.get_device_stats(pl_module.device) prefixed_device_stats = prefix_metrics_keys(device_stats, "on_train_batch_end") trainer.logger.log_metrics(prefixed_device_stats, step=trainer.global_step) def prefix_metrics_keys(metrics_dict: Dict[str, float], prefix: str) -> Dict[str, float]: return {prefix + "." + k: v for k, v in metrics_dict.items()}
3,090
933
#!/usr/bin/env python # encoding: utf-8 def run(whatweb, pluginname): whatweb.recog_from_file(pluginname, "doc/page/login.asp", "Hikvision")
147
57
"""In this module we provide a list paths, urls and other usefull settings.""" GITHUB_URL = "https://github.com/MarcSkovMadsen/awesome-panel/" GITHUB_BLOB_MASTER_URL = "https://github.com/MarcSkovMadsen/awesome-panel/blob/master/" GITHUB_RAW_URL = "https://raw.githubusercontent.com/MarcSkovMadsen/awesome-panel/master/" GITHUB_THUMBNAILS_URL = ( "https://github.com/MarcSkovMadsen/awesome-panel/blob/master/assets/images/thumbnails/" ) THUMBNAILS_ROOT = "assets/images/thumbnails/"
495
194
import pickle import pytest import numpy as np from astropy.coordinates import Longitude from astropy import coordinates as coord from astropy.tests.helper import pickle_protocol, check_pickling_recovery # noqa # Can't test distances without scipy due to cosmology deps from astropy.utils.compat.optional_deps import HAS_SCIPY # noqa def test_basic(): lon1 = Longitude(1.23, "radian", wrap_angle='180d') s = pickle.dumps(lon1) lon2 = pickle.loads(s) def test_pickle_longitude_wrap_angle(): a = Longitude(1.23, "radian", wrap_angle='180d') s = pickle.dumps(a) b = pickle.loads(s) assert a.rad == b.rad assert a.wrap_angle == b.wrap_angle _names = [coord.Angle, coord.Distance, coord.DynamicMatrixTransform, coord.ICRS, coord.Latitude, coord.Longitude, coord.StaticMatrixTransform, ] _xfail = [False, not HAS_SCIPY, True, True, False, True, False] _args = [[0.0], [], [lambda *args: np.identity(3), coord.ICRS, coord.ICRS], [0, 0], [0], [0], [np.identity(3), coord.ICRS, coord.ICRS], ] _kwargs = [{'unit': 'radian'}, {'z': 0.23}, {}, {'unit': ['radian', 'radian']}, {'unit': 'radian'}, {'unit': 'radian'}, {}, ] @pytest.mark.parametrize(("name", "args", "kwargs", "xfail"), zip(_names, _args, _kwargs, _xfail)) def test_simple_object(pickle_protocol, name, args, kwargs, xfail): # Tests easily instantiated objects if xfail: pytest.xfail() original = name(*args, **kwargs) check_pickling_recovery(original, pickle_protocol)
1,789
603
#!/usr/bin/env python # # Copyright (C) 2017 ShadowMan # import operator import numpy as np group = np.array([ [1.0, 1.1], [1.0, 1.0], [0.0, 0.0], [0.0, 0.1] ]) labels = ['A', 'A', 'B','B'] def auto_normal(data_set): # 寻找一行/列中的最小值 # axis:表示行(1)或者列(0) min_values = data_set.min(axis = 0) # 寻找一行/列中的最大值 # axis:表示行(1)或者列(0) max_values = data_set.max(axis = 0) # 计算最大值和最小值之间的差值 diff_range = max_values - min_values # 归一化的数组 normal_array = np.zeros(data_set.shape) # 获得所有行的数目 row_count = data_set.shape[0] # 得到减去最小值之后的数据集合 normal_array = data_set - np.tile(min_values, (row_count, 1)) # 得到归一化的数组 # 将 [1, 2, 3, 4, 5] 转化到 0 - 1 范围内 # 首先获取最小值为1,最大值为5,差值为4 # 将每个值减去这个最小值得到: [0, 1, 2, 3, 4] # 最后将每个值除以差值: [0, .25, .5, .75, 1] # 直接除以最大值是不对的,因为最小值应该转化之后为0,最大值转化之后为1 # 所以需要先把最小值变成0,然后再除以最小值变成0后的最大值(就是最大值和最小值的差值) normal_array = normal_array / diff_range # 返回结果 return normal_array, min_values, diff_range def knn_classify(inX, data_set, labels, k): # 将输入数据集进行归一化 data_set, min_values, diff_range = auto_normal(data_set) # 将将要预测值进行归一化 inX = (inX - min_values) / diff_range # shape 或者该 array/matrix 的大小, 结果为 [行数, 列数] data_set_row_size = data_set.shape[0] # >>> 4 # 扩展 array/matrix # 第二个参数如果是 int, 那就在列方向上重复 第一个参数 n 次 # [[1,2],[3,4]] 2 -> [[1,2,1,2],[3,4,3,4]] # 第二个参数是元组,那就在列方向上重复 t[0] 次,在行方向上重复 t[1] 次 # [[1,2],[3,4]] (2, 3) -> [[1,2,1,2],[3,4,3,4],[1,2,1,2],[3,4,3,4],[1,2,1,2],[3,4,3,4]] extra_array = np.tile(inX, (data_set_row_size, 1)) # >>> [[1.0, 0.9], [1.0, 0.9], [1.0, 0.9], [1.0, 0.9]] # 将扩展的输入与每个数据进行对比,计算距离 # 上面已经将输入扩展为和原有数据集相同的行数 # 所以直接将 扩展的数据数组 - 已有数据数组 => 输入数据与原有每条数据对应的差值 # [[1.0, 1.1], [1.0, 1.0], [0.0, 0.0], [0.0, 0.1]] # [[1.0, 0.9], [1.0, 0.9], [1.0, 0.9], [1.0, 0.9]] #-------------------------------------------------- # [[0.0, 0.2], [0.0, 0.1], [-1., -.9], [-1., -.8]] difference_array = extra_array - data_set # >>> [[0.0, 0.2], [0.0, 0.1], [-1., -.9], [-1., -.8]] # 计算差值的平方 square_difference_array = difference_array ** 2 # >>> [[0.0, 0.04], [0.0, 0.01], [1.0, 0.81], [1.0, 0.64]] # 计算差值平方和 # axis = 1 => 同行相加,[[1,2],[3,4]] => [3,7] # axis = 0 -> 同列相加,[[1,2],[3,4]] => [4,6] # 所以这是将每个数据行的差值的平方加起来 square_difference_matrix_sum = square_difference_array.sum(axis=1) # >>> [0.04, 0.01, 1.81, 1.64] # 计算距离:将每个平方和开根号 # 计算距离的公式为:sqrt( sum( ((X1 - X2) ** 2) + ((Y1 - Y2) ** 2) ) ) # 其实就是在坐标轴上计算两点距离,即计算三角形第三条边 distances = square_difference_matrix_sum ** 0.5 # >>> [0.2, 0.1, 1.3453624, 1.28062485] # 根据距离进行排序 # 返回值是一个数组,数组里是根据输入数组的值从小到大排序的索引 # np.array([2, 1, 3]) => [1, 0, 2] # 最小的值的索引是1,其次是0,最后是2 sorted_distances = distances.argsort() # >>> [1, 0, 3, 2] # 用于储存前k个最佳匹配的标签 # label => occurs_count vote_labels = {} for i in range(k): # 获取前 i 个最佳匹配的标签 # sorted_distances[i] => 第 i 个最近距离的标签的索引 label = labels[sorted_distances[i]] # 设置最佳匹配对应的标签的出现次数 vote_labels[label] = vote_labels.get(label, 0) + 1 # 根据标签出现次数进行投票 # operator.itemgetter(1) <===> lambda el: el[1] sorted_vote_labels = sorted(vote_labels.items(), key=operator.itemgetter(1), reverse=True) # 获取最佳的标签 return sorted_vote_labels[0][0] if __name__ == '__main__': print(knn_classify((1.0, 0.5), group, labels, 2)) print(knn_classify((18, 90), np.array([ [3, 104], [2, 100], [1, 81], [101, 10], [99, 5], [98, 2] ]), [ 'M', 'M', 'M', 'A', 'A', 'A'], 5))
3,683
2,256
import os from typing import Tuple, List from controller.invoker.invoker_task_exporting import TaskExportingInvoker from controller import config from controller.label_model.label_studio import LabelStudio from controller.utils.app_logger import logger def prepare_label_dir(working_dir: str, task_id: str) -> Tuple[str, str, str, str, str]: asset_dir = os.path.join(working_dir, f"label_{task_id}", "Images") os.makedirs(asset_dir, exist_ok=True) export_path = os.path.join(working_dir, "label_{task_id}".format(task_id=task_id), "label_studio_output") os.makedirs(export_path, exist_ok=True) # keep same name as other task monitor_file_path = os.path.join(working_dir, "out", "monitor.txt") export_work_dir = os.path.join(working_dir, "export_work_dir") os.makedirs(export_work_dir, exist_ok=True) import_work_dir = os.path.join(working_dir, "import_work_dir") os.makedirs(import_work_dir, exist_ok=True) return asset_dir, export_path, monitor_file_path, export_work_dir, import_work_dir def trigger_ymir_export(repo_root: str, dataset_id: str, asset_dir: str, media_location: str, export_work_dir: str) -> None: # trigger ymir export, so that we can get pictures from ymir TaskExportingInvoker.exporting_cmd( repo_root=repo_root, dataset_id=dataset_id, format="none", asset_dir=asset_dir, annotation_dir=asset_dir, media_location=media_location, work_dir=export_work_dir ) def gen_index_file(asset_dir: str) -> str: # generate index file for mir command, keep same name as other task media_files = [os.path.join(asset_dir, f) for f in os.listdir(asset_dir) if f.endswith(".jpeg")] index_file = os.path.join(asset_dir, "index.txt") with open(index_file, "w") as f: f.write("\n".join(media_files)) return index_file def start_label_task( repo_root: str, working_dir: str, media_location: str, task_id: str, project_name: str, dataset_id: str, keywords: List, collaborators: List, expert_instruction: str, ) -> None: logger.info("start label task!!!") # set your lable tools name if config.LABEL_STUDIO == config.LABEL_TOOL: label_instance = LabelStudio() else: raise ValueError("Error! Please setting your label tools") asset_dir, export_path, monitor_file_path, export_work_dir, import_work_dir = prepare_label_dir( working_dir, task_id ) trigger_ymir_export(repo_root, dataset_id, asset_dir, media_location, export_work_dir) index_file = gen_index_file(asset_dir) label_instance.run( task_id=task_id, project_name=project_name, keywords=keywords, collaborators=collaborators, expert_instruction=expert_instruction, asset_dir=asset_dir, export_path=export_path, monitor_file_path=monitor_file_path, repo_root=repo_root, index_file=index_file, media_location=media_location, import_work_dir=import_work_dir ) logger.info("finish label task!!!")
3,101
1,035
import os from flask import Flask from googleapiclient.discovery import build import json import sys from google.oauth2 import service_account import googleapiclient.discovery app = Flask(__name__) workflow_service = build('workflowexecutions', 'v1') @app.route("/") def hello_world(): parent = "projects/uri-test/locations/us-central1/workflows/CreateMachineImagesInAllZones" body = {"argument": '{"project": "uri-test","zone": "us-east1-b"}'} workflow = workflow_service.projects().locations().workflows( ).executions().create(parent=parent, body=body).execute() return workflow if __name__ == "__main__": app.run(debug=True, host="0.0.0.0", port=int(os.environ.get("PORT", 8080)))
719
244
from math import pi, sin, cos from panda3d.core import * from direct.showbase.ShowBase import ShowBase from direct.task import Task from floorplan import Floorplan import numpy as np import random import copy class Viewer(ShowBase): def __init__(self): ShowBase.__init__(self) #self.scene = self.loader.loadModel("floorplan_1.txt-floor.obj") #self.scene = base.loader.loadModel("floorplan_1.txt-floor.egg") #self.scene = base.loader.loadModel("panda.egg") #self.scene = base.loader.loadModel("environment") base.setBackgroundColor(0, 0, 0) self.angle = 0.0 lens = PerspectiveLens() lens.setFov(60) lens.setNear(0.01) lens.setFar(100000) base.cam.node().setLens(lens) floorplan = Floorplan('test/floorplan_7') #floorplan.setFilename('test/floorplan_2') floorplan.read() self.scene = floorplan.generateEggModel() self.scene.reparentTo(self.render) #self.scene.setScale(0.01, 0.01, 0.01) #self.scene.setTwoSided(True) self.scene.setTwoSided(True) #self.scene.setPos(0, 0, 3) #texture = loader.loadTexture("floorplan_1.png") #self.scene.setTexture(texture) #self.scene.setHpr(0, 0, 0) # angleDegrees = 0 # angleRadians = angleDegrees * (pi / 180.0) # self.camera.setPos(20 * sin(angleRadians), -20 * cos(angleRadians), 3) # self.camera.setHpr(angleDegrees, 0, 0) #self.camera.lookAt(0, 0, 0) self.alight = AmbientLight('alight') self.alight.setColor(VBase4(0.2, 0.2, 0.2, 1)) self.alnp = self.render.attachNewNode(self.alight) self.render.setLight(self.alnp) dlight = DirectionalLight('dlight') dlight.setColor(VBase4(1, 1, 1, 1)) dlnp = self.render.attachNewNode(dlight) #dlnp.setHpr(0, -90, 0) dlnp.setPos(0.5, 0.5, 3) dlnp.lookAt(0.5, 0.5, 2) self.render.setLight(dlnp) for i in xrange(10): plight = PointLight('plight') plight.setAttenuation((1, 0, 1)) color = random.randint(10, 15) plight.setColor(VBase4(color, color, color, 1)) plnp = self.render.attachNewNode(plight) if i == 0: plnp.setPos(0.5, 0.5, 3) else: plnp.setPos(1 * random.random(), 1 * random.random(), 0.3) pass self.render.setLight(plnp) #base.useTrackball() #base.trackball.node().setPos(2.0, 0, 3) #base.trackball.node().setHpr(0, 0, 3) #base.enableMouse() #base.useDrive() base.disableMouse() self.taskMgr.add(self.spinCameraTask, "SpinCameraTask") #self.accept('arrow_up', self.moveForward) #self.accept('arrow_up_-repeat', self.moveForward) self.topDownCameraPos = [0.5, 0.5, 1.5] self.topDownTarget = [0.5, 0.499, 0.5] self.topDownH = 0 self.startCameraPos = floorplan.startCameraPos self.startTarget = floorplan.startTarget self.startH = 0 self.cameraPos = self.topDownCameraPos self.target = self.topDownTarget self.H = self.topDownH self.accept('space', self.openDoor) self.accept('enter', self.startChangingView) self.viewMode = 'T' self.viewChangingProgress = 1.02 ceiling = self.scene.find("**/ceiling") ceiling.hide() return def moveForward(self): self.cameraPos[0] -= 0.1 def openDoor(self): minDistance = 10000 doors = self.scene.find("**/doors") for door in doors.getChildren(): mins, maxs = door.getTightBounds() vec_1 = (mins + maxs) / 2 - Vec3(self.target[0], self.target[1], (mins[2] + maxs[2]) / 2) vec_2 = (mins + maxs) / 2 - Vec3(self.cameraPos[0], self.cameraPos[1], (mins[2] + maxs[2]) / 2) if (vec_1.dot(vec_2) > 0 and vec_1.length() > vec_2.length()) or np.arccos(abs(vec_1.dot(vec_2)) / (vec_1.length() * vec_2.length())) > np.pi / 4: continue distance = pow(pow(self.cameraPos[0] - (mins[0] + maxs[0]) / 2, 2) + pow(self.cameraPos[1] - (mins[1] + maxs[1]) / 2, 2) + pow(self.cameraPos[2] - (mins[2] + maxs[2]) / 2, 2), 0.5) if distance < minDistance: minDistanceDoor = door minDistance = distance pass continue if minDistance > 1: return mins, maxs = minDistanceDoor.getTightBounds() if abs(maxs[0] - mins[0]) > abs(maxs[1] - mins[1]): minsExpected = Vec3(mins[0] - (maxs[1] - mins[1]), mins[1], mins[2]) maxsExpected = Vec3(mins[0], mins[1] + (maxs[0] - mins[0]), maxs[2]) else: minsExpected = Vec3(mins[0] - (maxs[1] - mins[1]) + (maxs[0] - mins[0]), mins[1] - (maxs[0] - mins[0]), mins[2]) maxsExpected = Vec3(mins[0] + (maxs[0] - mins[0]), mins[1] + (maxs[0] - mins[0]) - (maxs[0] - mins[0]), maxs[2]) pass minDistanceDoor.setH(minDistanceDoor, 90) mins, maxs = minDistanceDoor.getTightBounds() minDistanceDoor.setPos(minDistanceDoor, minsExpected[1] - mins[1], -minsExpected[0] + mins[0], 0) #print(scene.findAllMatches('doors')) return def startChangingView(self): self.viewChangingProgress = 0 self.prevCameraPos = copy.deepcopy(self.cameraPos) self.prevTarget = copy.deepcopy(self.target) self.prevH = self.camera.getR() if self.viewMode == 'T': self.newCameraPos = self.startCameraPos self.newTarget = self.startTarget self.newH = self.startH self.viewMode = 'C' else: self.newCameraPos = self.topDownCameraPos self.newTarget = self.topDownTarget self.newH = self.topDownH self.startCameraPos = copy.deepcopy(self.cameraPos) self.startTarget = copy.deepcopy(self.target) self.startH = self.camera.getR() self.viewMode = 'T' pass return def changeView(self): self.cameraPos = [] self.target = [] for c in xrange(3): self.cameraPos.append(self.prevCameraPos[c] + (self.newCameraPos[c] - self.prevCameraPos[c]) * self.viewChangingProgress) self.target.append(self.prevTarget[c] + (self.newTarget[c] - self.prevTarget[c]) * self.viewChangingProgress) continue self.H = self.prevH + (self.newH - self.prevH) * self.viewChangingProgress if self.viewChangingProgress + 0.02 >= 1 and self.viewMode == 'C': ceiling = self.scene.find("**/ceiling") ceiling.show() pass if self.viewChangingProgress <= 0.02 and self.viewMode == 'T': ceiling = self.scene.find("**/ceiling") ceiling.hide() pass return def spinCameraTask(self, task): #print(task.time) #angleDegrees = task.time * 6.0 movementStep = 0.003 if self.viewChangingProgress <= 1.01: self.changeView() self.viewChangingProgress += 0.02 pass if base.mouseWatcherNode.is_button_down('w'): for c in xrange(2): step = movementStep * (self.target[c] - self.cameraPos[c]) self.cameraPos[c] += step self.target[c] += step continue pass if base.mouseWatcherNode.is_button_down('s'): for c in xrange(2): step = movementStep * (self.target[c] - self.cameraPos[c]) self.cameraPos[c] -= step self.target[c] -= step continue pass if base.mouseWatcherNode.is_button_down('a'): step = movementStep * (self.target[0] - self.cameraPos[0]) self.cameraPos[1] += step self.target[1] += step step = movementStep * (self.target[1] - self.cameraPos[1]) self.cameraPos[0] -= step self.target[0] -= step pass if base.mouseWatcherNode.is_button_down('d'): step = movementStep * (self.target[0] - self.cameraPos[0]) self.cameraPos[1] -= step self.target[1] -= step step = movementStep * (self.target[1] - self.cameraPos[1]) self.cameraPos[0] += step self.target[0] += step pass rotationStep = 0.02 if base.mouseWatcherNode.is_button_down('arrow_left'): angle = np.angle(complex(self.target[0] - self.cameraPos[0], self.target[1] - self.cameraPos[1])) angle += rotationStep self.target[0] = self.cameraPos[0] + np.cos(angle) self.target[1] = self.cameraPos[1] + np.sin(angle) pass if base.mouseWatcherNode.is_button_down('arrow_right'): angle = np.angle(complex(self.target[0] - self.cameraPos[0], self.target[1] - self.cameraPos[1])) angle -= rotationStep self.target[0] = self.cameraPos[0] + np.cos(angle) self.target[1] = self.cameraPos[1] + np.sin(angle) pass if base.mouseWatcherNode.is_button_down('arrow_up'): angle = np.arcsin(self.target[2] - self.cameraPos[2]) angle += rotationStep self.target[2] = self.cameraPos[2] + np.sin(angle) pass if base.mouseWatcherNode.is_button_down('arrow_down'): angle = np.arcsin(self.target[2] - self.cameraPos[2]) angle -= rotationStep self.target[2] = self.cameraPos[2] + np.sin(angle) pass angleDegrees = self.angle angleRadians = angleDegrees * (pi / 180.0) #self.camera.setPos(2.0 * sin(angleRadians), -2.0 * cos(angleRadians), 3) self.camera.setPos(self.cameraPos[0], self.cameraPos[1], self.cameraPos[2]) #self.camera.setHpr(angleDegrees, 0, 0) #self.camera.lookAt(0, 0, 0) self.camera.lookAt(self.target[0], self.target[1], self.target[2]) self.camera.setR(self.H) #if base.mouseWatcherNode.hasMouse() return Task.cont app = Viewer() app.run()
9,264
3,609
# # Autogenerated by Thrift Compiler (0.9.1) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # # options string: py # from thrift.Thrift import TType, TMessageType, TException, TApplicationException from ttypes import * from thrift.Thrift import TProcessor from thrift.transport import TTransport from thrift.protocol import TBinaryProtocol, TProtocol try: from thrift.protocol import fastbinary except: fastbinary = None class Iface: def post_create(self, user_id, text): """ Parameters: - user_id - text """ pass def post_get(self, user_id, post_id): """ Parameters: - user_id - post_id """ pass def post_list(self, user_id): """ Parameters: - user_id """ pass def post_delete(self, user_id, post_id): """ Parameters: - user_id - post_id """ pass def post_comment_create(self, user_id, post_id, text): """ Parameters: - user_id - post_id - text """ pass def post_comment_list(self, user_id, post_id): """ Parameters: - user_id - post_id """ pass def post_comment_delete(self, user_id, post_id, comment_id): """ Parameters: - user_id - post_id - comment_id """ pass def friend_ids(self, user_id): """ Parameters: - user_id """ pass def friend_remove(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ pass def friendship_incoming(self, user_id): """ Parameters: - user_id """ pass def friendship_outgoing(self, user_id): """ Parameters: - user_id """ pass def friendship_create(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ pass def friendship_cancel(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ pass def friendship_accept(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ pass def friendship_reject(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ pass def users_get(self, user_id): """ Parameters: - user_id """ pass def users_get_by_username(self, username): """ Parameters: - username """ pass def timeline_home(self, actor_id): """ Parameters: - actor_id """ pass def timeline_user(self, actor_id): """ Parameters: - actor_id """ pass def system_reset_fixtures(self): pass class Client(Iface): def __init__(self, iprot, oprot=None): self._iprot = self._oprot = iprot if oprot is not None: self._oprot = oprot self._seqid = 0 def post_create(self, user_id, text): """ Parameters: - user_id - text """ self.send_post_create(user_id, text) return self.recv_post_create() def send_post_create(self, user_id, text): self._oprot.writeMessageBegin('post_create', TMessageType.CALL, self._seqid) args = post_create_args() args.user_id = user_id args.text = text args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_post_create(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = post_create_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "post_create failed: unknown result"); def post_get(self, user_id, post_id): """ Parameters: - user_id - post_id """ self.send_post_get(user_id, post_id) return self.recv_post_get() def send_post_get(self, user_id, post_id): self._oprot.writeMessageBegin('post_get', TMessageType.CALL, self._seqid) args = post_get_args() args.user_id = user_id args.post_id = post_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_post_get(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = post_get_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "post_get failed: unknown result"); def post_list(self, user_id): """ Parameters: - user_id """ self.send_post_list(user_id) return self.recv_post_list() def send_post_list(self, user_id): self._oprot.writeMessageBegin('post_list', TMessageType.CALL, self._seqid) args = post_list_args() args.user_id = user_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_post_list(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = post_list_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "post_list failed: unknown result"); def post_delete(self, user_id, post_id): """ Parameters: - user_id - post_id """ self.send_post_delete(user_id, post_id) return self.recv_post_delete() def send_post_delete(self, user_id, post_id): self._oprot.writeMessageBegin('post_delete', TMessageType.CALL, self._seqid) args = post_delete_args() args.user_id = user_id args.post_id = post_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_post_delete(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = post_delete_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success if result.not_found_error is not None: raise result.not_found_error raise TApplicationException(TApplicationException.MISSING_RESULT, "post_delete failed: unknown result"); def post_comment_create(self, user_id, post_id, text): """ Parameters: - user_id - post_id - text """ self.send_post_comment_create(user_id, post_id, text) return self.recv_post_comment_create() def send_post_comment_create(self, user_id, post_id, text): self._oprot.writeMessageBegin('post_comment_create', TMessageType.CALL, self._seqid) args = post_comment_create_args() args.user_id = user_id args.post_id = post_id args.text = text args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_post_comment_create(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = post_comment_create_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "post_comment_create failed: unknown result"); def post_comment_list(self, user_id, post_id): """ Parameters: - user_id - post_id """ self.send_post_comment_list(user_id, post_id) return self.recv_post_comment_list() def send_post_comment_list(self, user_id, post_id): self._oprot.writeMessageBegin('post_comment_list', TMessageType.CALL, self._seqid) args = post_comment_list_args() args.user_id = user_id args.post_id = post_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_post_comment_list(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = post_comment_list_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "post_comment_list failed: unknown result"); def post_comment_delete(self, user_id, post_id, comment_id): """ Parameters: - user_id - post_id - comment_id """ self.send_post_comment_delete(user_id, post_id, comment_id) return self.recv_post_comment_delete() def send_post_comment_delete(self, user_id, post_id, comment_id): self._oprot.writeMessageBegin('post_comment_delete', TMessageType.CALL, self._seqid) args = post_comment_delete_args() args.user_id = user_id args.post_id = post_id args.comment_id = comment_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_post_comment_delete(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = post_comment_delete_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "post_comment_delete failed: unknown result"); def friend_ids(self, user_id): """ Parameters: - user_id """ self.send_friend_ids(user_id) return self.recv_friend_ids() def send_friend_ids(self, user_id): self._oprot.writeMessageBegin('friend_ids', TMessageType.CALL, self._seqid) args = friend_ids_args() args.user_id = user_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_friend_ids(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = friend_ids_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "friend_ids failed: unknown result"); def friend_remove(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ self.send_friend_remove(actor_id, target_id) return self.recv_friend_remove() def send_friend_remove(self, actor_id, target_id): self._oprot.writeMessageBegin('friend_remove', TMessageType.CALL, self._seqid) args = friend_remove_args() args.actor_id = actor_id args.target_id = target_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_friend_remove(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = friend_remove_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "friend_remove failed: unknown result"); def friendship_incoming(self, user_id): """ Parameters: - user_id """ self.send_friendship_incoming(user_id) return self.recv_friendship_incoming() def send_friendship_incoming(self, user_id): self._oprot.writeMessageBegin('friendship_incoming', TMessageType.CALL, self._seqid) args = friendship_incoming_args() args.user_id = user_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_friendship_incoming(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = friendship_incoming_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "friendship_incoming failed: unknown result"); def friendship_outgoing(self, user_id): """ Parameters: - user_id """ self.send_friendship_outgoing(user_id) return self.recv_friendship_outgoing() def send_friendship_outgoing(self, user_id): self._oprot.writeMessageBegin('friendship_outgoing', TMessageType.CALL, self._seqid) args = friendship_outgoing_args() args.user_id = user_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_friendship_outgoing(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = friendship_outgoing_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "friendship_outgoing failed: unknown result"); def friendship_create(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ self.send_friendship_create(actor_id, target_id) return self.recv_friendship_create() def send_friendship_create(self, actor_id, target_id): self._oprot.writeMessageBegin('friendship_create', TMessageType.CALL, self._seqid) args = friendship_create_args() args.actor_id = actor_id args.target_id = target_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_friendship_create(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = friendship_create_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success if result.validation_err is not None: raise result.validation_err if result.already_exists_err is not None: raise result.already_exists_err raise TApplicationException(TApplicationException.MISSING_RESULT, "friendship_create failed: unknown result"); def friendship_cancel(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ self.send_friendship_cancel(actor_id, target_id) return self.recv_friendship_cancel() def send_friendship_cancel(self, actor_id, target_id): self._oprot.writeMessageBegin('friendship_cancel', TMessageType.CALL, self._seqid) args = friendship_cancel_args() args.actor_id = actor_id args.target_id = target_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_friendship_cancel(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = friendship_cancel_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success if result.invalid_request is not None: raise result.invalid_request if result.not_found_error is not None: raise result.not_found_error raise TApplicationException(TApplicationException.MISSING_RESULT, "friendship_cancel failed: unknown result"); def friendship_accept(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ self.send_friendship_accept(actor_id, target_id) return self.recv_friendship_accept() def send_friendship_accept(self, actor_id, target_id): self._oprot.writeMessageBegin('friendship_accept', TMessageType.CALL, self._seqid) args = friendship_accept_args() args.actor_id = actor_id args.target_id = target_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_friendship_accept(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = friendship_accept_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success if result.validation_err is not None: raise result.validation_err if result.not_found_error is not None: raise result.not_found_error raise TApplicationException(TApplicationException.MISSING_RESULT, "friendship_accept failed: unknown result"); def friendship_reject(self, actor_id, target_id): """ Parameters: - actor_id - target_id """ self.send_friendship_reject(actor_id, target_id) return self.recv_friendship_reject() def send_friendship_reject(self, actor_id, target_id): self._oprot.writeMessageBegin('friendship_reject', TMessageType.CALL, self._seqid) args = friendship_reject_args() args.actor_id = actor_id args.target_id = target_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_friendship_reject(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = friendship_reject_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success if result.validation_err is not None: raise result.validation_err if result.not_found_error is not None: raise result.not_found_error raise TApplicationException(TApplicationException.MISSING_RESULT, "friendship_reject failed: unknown result"); def users_get(self, user_id): """ Parameters: - user_id """ self.send_users_get(user_id) return self.recv_users_get() def send_users_get(self, user_id): self._oprot.writeMessageBegin('users_get', TMessageType.CALL, self._seqid) args = users_get_args() args.user_id = user_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_users_get(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = users_get_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "users_get failed: unknown result"); def users_get_by_username(self, username): """ Parameters: - username """ self.send_users_get_by_username(username) return self.recv_users_get_by_username() def send_users_get_by_username(self, username): self._oprot.writeMessageBegin('users_get_by_username', TMessageType.CALL, self._seqid) args = users_get_by_username_args() args.username = username args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_users_get_by_username(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = users_get_by_username_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "users_get_by_username failed: unknown result"); def timeline_home(self, actor_id): """ Parameters: - actor_id """ self.send_timeline_home(actor_id) return self.recv_timeline_home() def send_timeline_home(self, actor_id): self._oprot.writeMessageBegin('timeline_home', TMessageType.CALL, self._seqid) args = timeline_home_args() args.actor_id = actor_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_timeline_home(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = timeline_home_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "timeline_home failed: unknown result"); def timeline_user(self, actor_id): """ Parameters: - actor_id """ self.send_timeline_user(actor_id) return self.recv_timeline_user() def send_timeline_user(self, actor_id): self._oprot.writeMessageBegin('timeline_user', TMessageType.CALL, self._seqid) args = timeline_user_args() args.actor_id = actor_id args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_timeline_user(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = timeline_user_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "timeline_user failed: unknown result"); def system_reset_fixtures(self): self.send_system_reset_fixtures() return self.recv_system_reset_fixtures() def send_system_reset_fixtures(self): self._oprot.writeMessageBegin('system_reset_fixtures', TMessageType.CALL, self._seqid) args = system_reset_fixtures_args() args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_system_reset_fixtures(self): (fname, mtype, rseqid) = self._iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(self._iprot) self._iprot.readMessageEnd() raise x result = system_reset_fixtures_result() result.read(self._iprot) self._iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "system_reset_fixtures failed: unknown result"); class Processor(Iface, TProcessor): def __init__(self, handler): self._handler = handler self._processMap = {} self._processMap["post_create"] = Processor.process_post_create self._processMap["post_get"] = Processor.process_post_get self._processMap["post_list"] = Processor.process_post_list self._processMap["post_delete"] = Processor.process_post_delete self._processMap["post_comment_create"] = Processor.process_post_comment_create self._processMap["post_comment_list"] = Processor.process_post_comment_list self._processMap["post_comment_delete"] = Processor.process_post_comment_delete self._processMap["friend_ids"] = Processor.process_friend_ids self._processMap["friend_remove"] = Processor.process_friend_remove self._processMap["friendship_incoming"] = Processor.process_friendship_incoming self._processMap["friendship_outgoing"] = Processor.process_friendship_outgoing self._processMap["friendship_create"] = Processor.process_friendship_create self._processMap["friendship_cancel"] = Processor.process_friendship_cancel self._processMap["friendship_accept"] = Processor.process_friendship_accept self._processMap["friendship_reject"] = Processor.process_friendship_reject self._processMap["users_get"] = Processor.process_users_get self._processMap["users_get_by_username"] = Processor.process_users_get_by_username self._processMap["timeline_home"] = Processor.process_timeline_home self._processMap["timeline_user"] = Processor.process_timeline_user self._processMap["system_reset_fixtures"] = Processor.process_system_reset_fixtures def process(self, iprot, oprot): (name, type, seqid) = iprot.readMessageBegin() if name not in self._processMap: iprot.skip(TType.STRUCT) iprot.readMessageEnd() x = TApplicationException(TApplicationException.UNKNOWN_METHOD, 'Unknown function %s' % (name)) oprot.writeMessageBegin(name, TMessageType.EXCEPTION, seqid) x.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() return else: self._processMap[name](self, seqid, iprot, oprot) return True def process_post_create(self, seqid, iprot, oprot): args = post_create_args() args.read(iprot) iprot.readMessageEnd() result = post_create_result() result.success = self._handler.post_create(args.user_id, args.text) oprot.writeMessageBegin("post_create", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_post_get(self, seqid, iprot, oprot): args = post_get_args() args.read(iprot) iprot.readMessageEnd() result = post_get_result() result.success = self._handler.post_get(args.user_id, args.post_id) oprot.writeMessageBegin("post_get", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_post_list(self, seqid, iprot, oprot): args = post_list_args() args.read(iprot) iprot.readMessageEnd() result = post_list_result() result.success = self._handler.post_list(args.user_id) oprot.writeMessageBegin("post_list", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_post_delete(self, seqid, iprot, oprot): args = post_delete_args() args.read(iprot) iprot.readMessageEnd() result = post_delete_result() try: result.success = self._handler.post_delete(args.user_id, args.post_id) except NotFoundError, not_found_error: result.not_found_error = not_found_error oprot.writeMessageBegin("post_delete", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_post_comment_create(self, seqid, iprot, oprot): args = post_comment_create_args() args.read(iprot) iprot.readMessageEnd() result = post_comment_create_result() result.success = self._handler.post_comment_create(args.user_id, args.post_id, args.text) oprot.writeMessageBegin("post_comment_create", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_post_comment_list(self, seqid, iprot, oprot): args = post_comment_list_args() args.read(iprot) iprot.readMessageEnd() result = post_comment_list_result() result.success = self._handler.post_comment_list(args.user_id, args.post_id) oprot.writeMessageBegin("post_comment_list", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_post_comment_delete(self, seqid, iprot, oprot): args = post_comment_delete_args() args.read(iprot) iprot.readMessageEnd() result = post_comment_delete_result() result.success = self._handler.post_comment_delete(args.user_id, args.post_id, args.comment_id) oprot.writeMessageBegin("post_comment_delete", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_friend_ids(self, seqid, iprot, oprot): args = friend_ids_args() args.read(iprot) iprot.readMessageEnd() result = friend_ids_result() result.success = self._handler.friend_ids(args.user_id) oprot.writeMessageBegin("friend_ids", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_friend_remove(self, seqid, iprot, oprot): args = friend_remove_args() args.read(iprot) iprot.readMessageEnd() result = friend_remove_result() result.success = self._handler.friend_remove(args.actor_id, args.target_id) oprot.writeMessageBegin("friend_remove", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_friendship_incoming(self, seqid, iprot, oprot): args = friendship_incoming_args() args.read(iprot) iprot.readMessageEnd() result = friendship_incoming_result() result.success = self._handler.friendship_incoming(args.user_id) oprot.writeMessageBegin("friendship_incoming", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_friendship_outgoing(self, seqid, iprot, oprot): args = friendship_outgoing_args() args.read(iprot) iprot.readMessageEnd() result = friendship_outgoing_result() result.success = self._handler.friendship_outgoing(args.user_id) oprot.writeMessageBegin("friendship_outgoing", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_friendship_create(self, seqid, iprot, oprot): args = friendship_create_args() args.read(iprot) iprot.readMessageEnd() result = friendship_create_result() try: result.success = self._handler.friendship_create(args.actor_id, args.target_id) except InputValidationError, validation_err: result.validation_err = validation_err except AlreadyExistsError, already_exists_err: result.already_exists_err = already_exists_err oprot.writeMessageBegin("friendship_create", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_friendship_cancel(self, seqid, iprot, oprot): args = friendship_cancel_args() args.read(iprot) iprot.readMessageEnd() result = friendship_cancel_result() try: result.success = self._handler.friendship_cancel(args.actor_id, args.target_id) except InvalidRequest, invalid_request: result.invalid_request = invalid_request except NotFoundError, not_found_error: result.not_found_error = not_found_error oprot.writeMessageBegin("friendship_cancel", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_friendship_accept(self, seqid, iprot, oprot): args = friendship_accept_args() args.read(iprot) iprot.readMessageEnd() result = friendship_accept_result() try: result.success = self._handler.friendship_accept(args.actor_id, args.target_id) except InputValidationError, validation_err: result.validation_err = validation_err except NotFoundError, not_found_error: result.not_found_error = not_found_error oprot.writeMessageBegin("friendship_accept", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_friendship_reject(self, seqid, iprot, oprot): args = friendship_reject_args() args.read(iprot) iprot.readMessageEnd() result = friendship_reject_result() try: result.success = self._handler.friendship_reject(args.actor_id, args.target_id) except InputValidationError, validation_err: result.validation_err = validation_err except NotFoundError, not_found_error: result.not_found_error = not_found_error oprot.writeMessageBegin("friendship_reject", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_users_get(self, seqid, iprot, oprot): args = users_get_args() args.read(iprot) iprot.readMessageEnd() result = users_get_result() result.success = self._handler.users_get(args.user_id) oprot.writeMessageBegin("users_get", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_users_get_by_username(self, seqid, iprot, oprot): args = users_get_by_username_args() args.read(iprot) iprot.readMessageEnd() result = users_get_by_username_result() result.success = self._handler.users_get_by_username(args.username) oprot.writeMessageBegin("users_get_by_username", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_timeline_home(self, seqid, iprot, oprot): args = timeline_home_args() args.read(iprot) iprot.readMessageEnd() result = timeline_home_result() result.success = self._handler.timeline_home(args.actor_id) oprot.writeMessageBegin("timeline_home", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_timeline_user(self, seqid, iprot, oprot): args = timeline_user_args() args.read(iprot) iprot.readMessageEnd() result = timeline_user_result() result.success = self._handler.timeline_user(args.actor_id) oprot.writeMessageBegin("timeline_user", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_system_reset_fixtures(self, seqid, iprot, oprot): args = system_reset_fixtures_args() args.read(iprot) iprot.readMessageEnd() result = system_reset_fixtures_result() result.success = self._handler.system_reset_fixtures() oprot.writeMessageBegin("system_reset_fixtures", TMessageType.REPLY, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() # HELPER FUNCTIONS AND STRUCTURES class post_create_args: """ Attributes: - user_id - text """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 (2, TType.STRING, 'text', None, None, ), # 2 ) def __init__(self, user_id=None, text=None,): self.user_id = user_id self.text = text def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: self.text = iprot.readString(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_create_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() if self.text is not None: oprot.writeFieldBegin('text', TType.STRING, 2) oprot.writeString(self.text) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_create_result: """ Attributes: - success """ thrift_spec = ( (0, TType.I32, 'success', None, None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.I32: self.success = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_create_result') if self.success is not None: oprot.writeFieldBegin('success', TType.I32, 0) oprot.writeI32(self.success) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_get_args: """ Attributes: - user_id - post_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 (2, TType.I32, 'post_id', None, None, ), # 2 ) def __init__(self, user_id=None, post_id=None,): self.user_id = user_id self.post_id = post_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.post_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_get_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() if self.post_id is not None: oprot.writeFieldBegin('post_id', TType.I32, 2) oprot.writeI32(self.post_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_get_result: """ Attributes: - success """ thrift_spec = ( (0, TType.STRUCT, 'success', (Post, Post.thrift_spec), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRUCT: self.success = Post() self.success.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_get_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRUCT, 0) self.success.write(oprot) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_list_args: """ Attributes: - user_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 ) def __init__(self, user_id=None,): self.user_id = user_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_list_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_list_result: """ Attributes: - success """ thrift_spec = ( (0, TType.LIST, 'success', (TType.STRUCT,(Post, Post.thrift_spec)), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.LIST: self.success = [] (_etype3, _size0) = iprot.readListBegin() for _i4 in xrange(_size0): _elem5 = Post() _elem5.read(iprot) self.success.append(_elem5) iprot.readListEnd() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_list_result') if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) for iter6 in self.success: iter6.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_delete_args: """ Attributes: - user_id - post_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 (2, TType.I32, 'post_id', None, None, ), # 2 ) def __init__(self, user_id=None, post_id=None,): self.user_id = user_id self.post_id = post_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.post_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_delete_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() if self.post_id is not None: oprot.writeFieldBegin('post_id', TType.I32, 2) oprot.writeI32(self.post_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_delete_result: """ Attributes: - success - not_found_error """ thrift_spec = ( (0, TType.BOOL, 'success', None, None, ), # 0 (1, TType.STRUCT, 'not_found_error', (NotFoundError, NotFoundError.thrift_spec), None, ), # 1 ) def __init__(self, success=None, not_found_error=None,): self.success = success self.not_found_error = not_found_error def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.BOOL: self.success = iprot.readBool(); else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.not_found_error = NotFoundError() self.not_found_error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_delete_result') if self.success is not None: oprot.writeFieldBegin('success', TType.BOOL, 0) oprot.writeBool(self.success) oprot.writeFieldEnd() if self.not_found_error is not None: oprot.writeFieldBegin('not_found_error', TType.STRUCT, 1) self.not_found_error.write(oprot) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_comment_create_args: """ Attributes: - user_id - post_id - text """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 (2, TType.I32, 'post_id', None, None, ), # 2 (3, TType.STRING, 'text', None, None, ), # 3 ) def __init__(self, user_id=None, post_id=None, text=None,): self.user_id = user_id self.post_id = post_id self.text = text def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.post_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: self.text = iprot.readString(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_comment_create_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() if self.post_id is not None: oprot.writeFieldBegin('post_id', TType.I32, 2) oprot.writeI32(self.post_id) oprot.writeFieldEnd() if self.text is not None: oprot.writeFieldBegin('text', TType.STRING, 3) oprot.writeString(self.text) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_comment_create_result: """ Attributes: - success """ thrift_spec = ( (0, TType.BOOL, 'success', None, None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.BOOL: self.success = iprot.readBool(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_comment_create_result') if self.success is not None: oprot.writeFieldBegin('success', TType.BOOL, 0) oprot.writeBool(self.success) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_comment_list_args: """ Attributes: - user_id - post_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 (2, TType.I32, 'post_id', None, None, ), # 2 ) def __init__(self, user_id=None, post_id=None,): self.user_id = user_id self.post_id = post_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.post_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_comment_list_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() if self.post_id is not None: oprot.writeFieldBegin('post_id', TType.I32, 2) oprot.writeI32(self.post_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_comment_list_result: """ Attributes: - success """ thrift_spec = ( (0, TType.LIST, 'success', (TType.STRUCT,(Comment, Comment.thrift_spec)), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.LIST: self.success = [] (_etype10, _size7) = iprot.readListBegin() for _i11 in xrange(_size7): _elem12 = Comment() _elem12.read(iprot) self.success.append(_elem12) iprot.readListEnd() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_comment_list_result') if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) for iter13 in self.success: iter13.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_comment_delete_args: """ Attributes: - user_id - post_id - comment_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 (2, TType.I32, 'post_id', None, None, ), # 2 (3, TType.I32, 'comment_id', None, None, ), # 3 ) def __init__(self, user_id=None, post_id=None, comment_id=None,): self.user_id = user_id self.post_id = post_id self.comment_id = comment_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.post_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 3: if ftype == TType.I32: self.comment_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_comment_delete_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() if self.post_id is not None: oprot.writeFieldBegin('post_id', TType.I32, 2) oprot.writeI32(self.post_id) oprot.writeFieldEnd() if self.comment_id is not None: oprot.writeFieldBegin('comment_id', TType.I32, 3) oprot.writeI32(self.comment_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class post_comment_delete_result: """ Attributes: - success """ thrift_spec = ( (0, TType.BOOL, 'success', None, None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.BOOL: self.success = iprot.readBool(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('post_comment_delete_result') if self.success is not None: oprot.writeFieldBegin('success', TType.BOOL, 0) oprot.writeBool(self.success) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friend_ids_args: """ Attributes: - user_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 ) def __init__(self, user_id=None,): self.user_id = user_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friend_ids_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friend_ids_result: """ Attributes: - success """ thrift_spec = ( (0, TType.LIST, 'success', (TType.I32,None), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.LIST: self.success = [] (_etype17, _size14) = iprot.readListBegin() for _i18 in xrange(_size14): _elem19 = iprot.readI32(); self.success.append(_elem19) iprot.readListEnd() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friend_ids_result') if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.I32, len(self.success)) for iter20 in self.success: oprot.writeI32(iter20) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friend_remove_args: """ Attributes: - actor_id - target_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'actor_id', None, None, ), # 1 (2, TType.I32, 'target_id', None, None, ), # 2 ) def __init__(self, actor_id=None, target_id=None,): self.actor_id = actor_id self.target_id = target_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.actor_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.target_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friend_remove_args') if self.actor_id is not None: oprot.writeFieldBegin('actor_id', TType.I32, 1) oprot.writeI32(self.actor_id) oprot.writeFieldEnd() if self.target_id is not None: oprot.writeFieldBegin('target_id', TType.I32, 2) oprot.writeI32(self.target_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friend_remove_result: """ Attributes: - success """ thrift_spec = ( (0, TType.BOOL, 'success', None, None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.BOOL: self.success = iprot.readBool(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friend_remove_result') if self.success is not None: oprot.writeFieldBegin('success', TType.BOOL, 0) oprot.writeBool(self.success) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_incoming_args: """ Attributes: - user_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 ) def __init__(self, user_id=None,): self.user_id = user_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_incoming_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_incoming_result: """ Attributes: - success """ thrift_spec = ( (0, TType.LIST, 'success', (TType.I32,None), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.LIST: self.success = [] (_etype24, _size21) = iprot.readListBegin() for _i25 in xrange(_size21): _elem26 = iprot.readI32(); self.success.append(_elem26) iprot.readListEnd() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_incoming_result') if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.I32, len(self.success)) for iter27 in self.success: oprot.writeI32(iter27) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_outgoing_args: """ Attributes: - user_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 ) def __init__(self, user_id=None,): self.user_id = user_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_outgoing_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_outgoing_result: """ Attributes: - success """ thrift_spec = ( (0, TType.LIST, 'success', (TType.I32,None), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.LIST: self.success = [] (_etype31, _size28) = iprot.readListBegin() for _i32 in xrange(_size28): _elem33 = iprot.readI32(); self.success.append(_elem33) iprot.readListEnd() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_outgoing_result') if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.I32, len(self.success)) for iter34 in self.success: oprot.writeI32(iter34) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_create_args: """ Attributes: - actor_id - target_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'actor_id', None, None, ), # 1 (2, TType.I32, 'target_id', None, None, ), # 2 ) def __init__(self, actor_id=None, target_id=None,): self.actor_id = actor_id self.target_id = target_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.actor_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.target_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_create_args') if self.actor_id is not None: oprot.writeFieldBegin('actor_id', TType.I32, 1) oprot.writeI32(self.actor_id) oprot.writeFieldEnd() if self.target_id is not None: oprot.writeFieldBegin('target_id', TType.I32, 2) oprot.writeI32(self.target_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_create_result: """ Attributes: - success - validation_err - already_exists_err """ thrift_spec = ( (0, TType.BOOL, 'success', None, None, ), # 0 (1, TType.STRUCT, 'validation_err', (InputValidationError, InputValidationError.thrift_spec), None, ), # 1 (2, TType.STRUCT, 'already_exists_err', (AlreadyExistsError, AlreadyExistsError.thrift_spec), None, ), # 2 ) def __init__(self, success=None, validation_err=None, already_exists_err=None,): self.success = success self.validation_err = validation_err self.already_exists_err = already_exists_err def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.BOOL: self.success = iprot.readBool(); else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.validation_err = InputValidationError() self.validation_err.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: self.already_exists_err = AlreadyExistsError() self.already_exists_err.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_create_result') if self.success is not None: oprot.writeFieldBegin('success', TType.BOOL, 0) oprot.writeBool(self.success) oprot.writeFieldEnd() if self.validation_err is not None: oprot.writeFieldBegin('validation_err', TType.STRUCT, 1) self.validation_err.write(oprot) oprot.writeFieldEnd() if self.already_exists_err is not None: oprot.writeFieldBegin('already_exists_err', TType.STRUCT, 2) self.already_exists_err.write(oprot) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_cancel_args: """ Attributes: - actor_id - target_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'actor_id', None, None, ), # 1 (2, TType.I32, 'target_id', None, None, ), # 2 ) def __init__(self, actor_id=None, target_id=None,): self.actor_id = actor_id self.target_id = target_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.actor_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.target_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_cancel_args') if self.actor_id is not None: oprot.writeFieldBegin('actor_id', TType.I32, 1) oprot.writeI32(self.actor_id) oprot.writeFieldEnd() if self.target_id is not None: oprot.writeFieldBegin('target_id', TType.I32, 2) oprot.writeI32(self.target_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_cancel_result: """ Attributes: - success - invalid_request - not_found_error """ thrift_spec = ( (0, TType.BOOL, 'success', None, None, ), # 0 (1, TType.STRUCT, 'invalid_request', (InvalidRequest, InvalidRequest.thrift_spec), None, ), # 1 (2, TType.STRUCT, 'not_found_error', (NotFoundError, NotFoundError.thrift_spec), None, ), # 2 ) def __init__(self, success=None, invalid_request=None, not_found_error=None,): self.success = success self.invalid_request = invalid_request self.not_found_error = not_found_error def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.BOOL: self.success = iprot.readBool(); else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.invalid_request = InvalidRequest() self.invalid_request.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: self.not_found_error = NotFoundError() self.not_found_error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_cancel_result') if self.success is not None: oprot.writeFieldBegin('success', TType.BOOL, 0) oprot.writeBool(self.success) oprot.writeFieldEnd() if self.invalid_request is not None: oprot.writeFieldBegin('invalid_request', TType.STRUCT, 1) self.invalid_request.write(oprot) oprot.writeFieldEnd() if self.not_found_error is not None: oprot.writeFieldBegin('not_found_error', TType.STRUCT, 2) self.not_found_error.write(oprot) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_accept_args: """ Attributes: - actor_id - target_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'actor_id', None, None, ), # 1 (2, TType.I32, 'target_id', None, None, ), # 2 ) def __init__(self, actor_id=None, target_id=None,): self.actor_id = actor_id self.target_id = target_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.actor_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.target_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_accept_args') if self.actor_id is not None: oprot.writeFieldBegin('actor_id', TType.I32, 1) oprot.writeI32(self.actor_id) oprot.writeFieldEnd() if self.target_id is not None: oprot.writeFieldBegin('target_id', TType.I32, 2) oprot.writeI32(self.target_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_accept_result: """ Attributes: - success - validation_err - not_found_error """ thrift_spec = ( (0, TType.BOOL, 'success', None, None, ), # 0 (1, TType.STRUCT, 'validation_err', (InputValidationError, InputValidationError.thrift_spec), None, ), # 1 (2, TType.STRUCT, 'not_found_error', (NotFoundError, NotFoundError.thrift_spec), None, ), # 2 ) def __init__(self, success=None, validation_err=None, not_found_error=None,): self.success = success self.validation_err = validation_err self.not_found_error = not_found_error def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.BOOL: self.success = iprot.readBool(); else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.validation_err = InputValidationError() self.validation_err.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: self.not_found_error = NotFoundError() self.not_found_error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_accept_result') if self.success is not None: oprot.writeFieldBegin('success', TType.BOOL, 0) oprot.writeBool(self.success) oprot.writeFieldEnd() if self.validation_err is not None: oprot.writeFieldBegin('validation_err', TType.STRUCT, 1) self.validation_err.write(oprot) oprot.writeFieldEnd() if self.not_found_error is not None: oprot.writeFieldBegin('not_found_error', TType.STRUCT, 2) self.not_found_error.write(oprot) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_reject_args: """ Attributes: - actor_id - target_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'actor_id', None, None, ), # 1 (2, TType.I32, 'target_id', None, None, ), # 2 ) def __init__(self, actor_id=None, target_id=None,): self.actor_id = actor_id self.target_id = target_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.actor_id = iprot.readI32(); else: iprot.skip(ftype) elif fid == 2: if ftype == TType.I32: self.target_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_reject_args') if self.actor_id is not None: oprot.writeFieldBegin('actor_id', TType.I32, 1) oprot.writeI32(self.actor_id) oprot.writeFieldEnd() if self.target_id is not None: oprot.writeFieldBegin('target_id', TType.I32, 2) oprot.writeI32(self.target_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class friendship_reject_result: """ Attributes: - success - validation_err - not_found_error """ thrift_spec = ( (0, TType.BOOL, 'success', None, None, ), # 0 (1, TType.STRUCT, 'validation_err', (InputValidationError, InputValidationError.thrift_spec), None, ), # 1 (2, TType.STRUCT, 'not_found_error', (NotFoundError, NotFoundError.thrift_spec), None, ), # 2 ) def __init__(self, success=None, validation_err=None, not_found_error=None,): self.success = success self.validation_err = validation_err self.not_found_error = not_found_error def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.BOOL: self.success = iprot.readBool(); else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.validation_err = InputValidationError() self.validation_err.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: self.not_found_error = NotFoundError() self.not_found_error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('friendship_reject_result') if self.success is not None: oprot.writeFieldBegin('success', TType.BOOL, 0) oprot.writeBool(self.success) oprot.writeFieldEnd() if self.validation_err is not None: oprot.writeFieldBegin('validation_err', TType.STRUCT, 1) self.validation_err.write(oprot) oprot.writeFieldEnd() if self.not_found_error is not None: oprot.writeFieldBegin('not_found_error', TType.STRUCT, 2) self.not_found_error.write(oprot) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class users_get_args: """ Attributes: - user_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'user_id', None, None, ), # 1 ) def __init__(self, user_id=None,): self.user_id = user_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.user_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('users_get_args') if self.user_id is not None: oprot.writeFieldBegin('user_id', TType.I32, 1) oprot.writeI32(self.user_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class users_get_result: """ Attributes: - success """ thrift_spec = ( (0, TType.STRUCT, 'success', (User, User.thrift_spec), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRUCT: self.success = User() self.success.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('users_get_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRUCT, 0) self.success.write(oprot) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class users_get_by_username_args: """ Attributes: - username """ thrift_spec = ( None, # 0 (1, TType.STRING, 'username', None, None, ), # 1 ) def __init__(self, username=None,): self.username = username def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: self.username = iprot.readString(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('users_get_by_username_args') if self.username is not None: oprot.writeFieldBegin('username', TType.STRING, 1) oprot.writeString(self.username) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class users_get_by_username_result: """ Attributes: - success """ thrift_spec = ( (0, TType.STRUCT, 'success', (User, User.thrift_spec), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRUCT: self.success = User() self.success.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('users_get_by_username_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRUCT, 0) self.success.write(oprot) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class timeline_home_args: """ Attributes: - actor_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'actor_id', None, None, ), # 1 ) def __init__(self, actor_id=None,): self.actor_id = actor_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.actor_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('timeline_home_args') if self.actor_id is not None: oprot.writeFieldBegin('actor_id', TType.I32, 1) oprot.writeI32(self.actor_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class timeline_home_result: """ Attributes: - success """ thrift_spec = ( (0, TType.LIST, 'success', (TType.STRUCT,(Post, Post.thrift_spec)), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.LIST: self.success = [] (_etype38, _size35) = iprot.readListBegin() for _i39 in xrange(_size35): _elem40 = Post() _elem40.read(iprot) self.success.append(_elem40) iprot.readListEnd() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('timeline_home_result') if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) for iter41 in self.success: iter41.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class timeline_user_args: """ Attributes: - actor_id """ thrift_spec = ( None, # 0 (1, TType.I32, 'actor_id', None, None, ), # 1 ) def __init__(self, actor_id=None,): self.actor_id = actor_id def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.I32: self.actor_id = iprot.readI32(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('timeline_user_args') if self.actor_id is not None: oprot.writeFieldBegin('actor_id', TType.I32, 1) oprot.writeI32(self.actor_id) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class timeline_user_result: """ Attributes: - success """ thrift_spec = ( (0, TType.LIST, 'success', (TType.STRUCT,(Post, Post.thrift_spec)), None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.LIST: self.success = [] (_etype45, _size42) = iprot.readListBegin() for _i46 in xrange(_size42): _elem47 = Post() _elem47.read(iprot) self.success.append(_elem47) iprot.readListEnd() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('timeline_user_result') if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) for iter48 in self.success: iter48.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class system_reset_fixtures_args: thrift_spec = ( ) def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('system_reset_fixtures_args') oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other) class system_reset_fixtures_result: """ Attributes: - success """ thrift_spec = ( (0, TType.BOOL, 'success', None, None, ), # 0 ) def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec)) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.BOOL: self.success = iprot.readBool(); else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None: oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('system_reset_fixtures_result') if self.success is not None: oprot.writeFieldBegin('success', TType.BOOL, 0) oprot.writeBool(self.success) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.iteritems()] return '%s(%s)' % (self.__class__.__name__, ', '.join(L)) def __eq__(self, other): return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not (self == other)
118,425
41,683
import numpy as np class KF1D: # this EKF assumes constant covariance matrix, so calculations are much simpler # the Kalman gain also needs to be precomputed using the control module def __init__(self, x0, A, C, K): self.x = x0 self.A = A self.C = C self.K = K self.A_K = self.A - np.dot(self.K, self.C) # K matrix needs to be pre-computed as follow: # import control # (x, l, K) = control.dare(np.transpose(self.A), np.transpose(self.C), Q, R) # self.K = np.transpose(K) def update(self, meas): self.x = np.dot(self.A_K, self.x) + np.dot(self.K, meas) return self.x
626
245
import datetime import logging import os import boto3 from qiskit import IBMQ from qiskit import QuantumCircuit, execute logger = logging.getLogger() logger.setLevel(logging.INFO) backend_candidates = [ "ibmq_athens", "ibmq_santiago", "ibmq_belem", "ibmq_quito", "ibmq_lima", ] def _get_provider(): if IBMQ.active_account() is None: ibmq_token = os.environ["IBMQ_TOKEN"] provider = IBMQ.enable_account(ibmq_token) else: provider = IBMQ.get_provider(hub="ibm-q", group="open", project="main") return provider def execute_circuit(event: dict, context) -> dict: provider = _get_provider() devices = provider.backends( filters=lambda x: x.configuration().n_qubits >= 4 and not x.configuration().simulator and x.status().status_msg == "active" ) logger.info(f"active backend={devices}") backend_name = None for backend_candidate in backend_candidates: for device in devices: if backend_candidate == device.name(): backend_name = device.name() break if backend_name is not None: break if backend_name is None: message = f"active backend is not found in {backend_candidates}. can not execute circuit." logger.error(message) raise Exception(message) else: logger.info(f"use backend={backend_name}") # build quantum circuit circuit = QuantumCircuit(4, 4) circuit.h([0, 1, 2, 3]) circuit.measure([0, 1, 2, 3], [0, 1, 2, 3]) # execute backend = provider.get_backend(backend_name) job = execute(circuit, backend) job_id = job.job_id() response = {"backend_name": backend_name, "job_id": job_id} logger.info(f"response={response}") return response def get_job_status(event: dict, context) -> dict: logger.info(f"event={event}") # get job status provider = _get_provider() job = provider.get_backend(event["backend_name"]).retrieve_job(event["job_id"]) logger.info(f"job={job}") response = { "backend_name": event["backend_name"], "job_id": event["job_id"], "job_status": job.status().name, } logger.info(f"response={response}") return response def store_result(event: dict, context) -> dict: logger.info(f"event={event}") # get job result provider = _get_provider() job = provider.get_backend(event["backend_name"]).retrieve_job(event["job_id"]) counts = job.result().get_counts() result = dict([("num_of_" + key, value) for key, value in counts.items()]) result["id"] = "latest" result["backend_name"] = event["backend_name"] result["job_id"] = event["job_id"] result["creation_date"] = job.creation_date() # store the execution result to DynamoDB dynamodb = boto3.resource("dynamodb") table_name = os.environ["DYNAMODB_TABLE"] table = dynamodb.Table(table_name) # store latest record table.put_item(Item=result) # store history record dt = datetime.datetime.strptime(result["creation_date"], "%Y-%m-%dT%H:%M:%S.%fZ") result["id"] = dt.strftime("%Y%m%d-%H%M%S") # UTC table.put_item(Item=result) logger.info(f"result={result}") return result def invoke_update_horoscope(event: dict, context) -> dict: logger.info(f"event={event}") sfn = boto3.client("stepfunctions") result = None # get the arn of UpdateHoroscope Step Functions state_machine_list = sfn.list_state_machines() for state_machine in state_machine_list["stateMachines"]: name = state_machine["name"] if name == f"UpdateHoroscope-{os.environ['STAGE']}": # execute UpdateHoroscope Step Functions arn = state_machine["stateMachineArn"] sfn.start_execution(stateMachineArn=arn) result = {"name": name, "arn": arn} logger.info(f"sfn.start_execution: result={result}") break return result
3,985
1,303
# -*- coding: utf-8 -*- # SPDX-License-Identifier: GPL-2.0+ # # Copyright 2017 Google, Inc # import contextlib import os import re import shutil import sys import tempfile import unittest import gitutil import patchstream import settings @contextlib.contextmanager def capture(): import sys from cStringIO import StringIO oldout,olderr = sys.stdout, sys.stderr try: out=[StringIO(), StringIO()] sys.stdout,sys.stderr = out yield out finally: sys.stdout,sys.stderr = oldout, olderr out[0] = out[0].getvalue() out[1] = out[1].getvalue() class TestFunctional(unittest.TestCase): def setUp(self): self.tmpdir = tempfile.mkdtemp(prefix='patman.') def tearDown(self): shutil.rmtree(self.tmpdir) @staticmethod def GetPath(fname): return os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), 'test', fname) @classmethod def GetText(self, fname): return open(self.GetPath(fname)).read() @classmethod def GetPatchName(self, subject): fname = re.sub('[ :]', '-', subject) return fname.replace('--', '-') def CreatePatchesForTest(self, series): cover_fname = None fname_list = [] for i, commit in enumerate(series.commits): clean_subject = self.GetPatchName(commit.subject) src_fname = '%04d-%s.patch' % (i + 1, clean_subject[:52]) fname = os.path.join(self.tmpdir, src_fname) shutil.copy(self.GetPath(src_fname), fname) fname_list.append(fname) if series.get('cover'): src_fname = '0000-cover-letter.patch' cover_fname = os.path.join(self.tmpdir, src_fname) fname = os.path.join(self.tmpdir, src_fname) shutil.copy(self.GetPath(src_fname), fname) return cover_fname, fname_list def testBasic(self): """Tests the basic flow of patman This creates a series from some hard-coded patches build from a simple tree with the following metadata in the top commit: Series-to: u-boot Series-prefix: RFC Series-cc: Stefan Brüns <stefan.bruens@rwth-aachen.de> Cover-letter-cc: Lord Mëlchett <clergy@palace.gov> Series-version: 2 Series-changes: 4 - Some changes Cover-letter: test: A test patch series This is a test of how the cover leter works END and this in the first commit: Series-notes: some notes about some things from the first commit END Commit-notes: Some notes about the first commit END with the following commands: git log -n2 --reverse >/path/to/tools/patman/test/test01.txt git format-patch --subject-prefix RFC --cover-letter HEAD~2 mv 00* /path/to/tools/patman/test It checks these aspects: - git log can be processed by patchstream - emailing patches uses the correct command - CC file has information on each commit - cover letter has the expected text and subject - each patch has the correct subject - dry-run information prints out correctly - unicode is handled correctly - Series-to, Series-cc, Series-prefix, Cover-letter - Cover-letter-cc, Series-version, Series-changes, Series-notes - Commit-notes """ process_tags = True ignore_bad_tags = True stefan = u'Stefan Brüns <stefan.bruens@rwth-aachen.de>' rick = 'Richard III <richard@palace.gov>' mel = u'Lord Mëlchett <clergy@palace.gov>' ed = u'Lond Edmund Blackaddër <weasel@blackadder.org' fred = 'Fred Bloggs <f.bloggs@napier.net>' add_maintainers = [stefan, rick] dry_run = True in_reply_to = mel count = 2 settings.alias = { 'fdt': ['simon'], 'u-boot': ['u-boot@lists.denx.de'], 'simon': [ed], 'fred': [fred], } text = self.GetText('test01.txt') series = patchstream.GetMetaDataForTest(text) cover_fname, args = self.CreatePatchesForTest(series) with capture() as out: patchstream.FixPatches(series, args) if cover_fname and series.get('cover'): patchstream.InsertCoverLetter(cover_fname, series, count) series.DoChecks() cc_file = series.MakeCcFile(process_tags, cover_fname, not ignore_bad_tags, add_maintainers, None) cmd = gitutil.EmailPatches(series, cover_fname, args, dry_run, not ignore_bad_tags, cc_file, in_reply_to=in_reply_to, thread=None) series.ShowActions(args, cmd, process_tags) cc_lines = open(cc_file).read().splitlines() os.remove(cc_file) lines = out[0].splitlines() #print '\n'.join(lines) self.assertEqual('Cleaned %s patches' % len(series.commits), lines[0]) self.assertEqual('Change log missing for v2', lines[1]) self.assertEqual('Change log missing for v3', lines[2]) self.assertEqual('Change log for unknown version v4', lines[3]) self.assertEqual("Alias 'pci' not found", lines[4]) self.assertIn('Dry run', lines[5]) self.assertIn('Send a total of %d patches' % count, lines[7]) line = 8 for i, commit in enumerate(series.commits): self.assertEqual(' %s' % args[i], lines[line + 0]) line += 1 while 'Cc:' in lines[line]: line += 1 self.assertEqual('To: u-boot@lists.denx.de', lines[line]) self.assertEqual('Cc: %s' % stefan.encode('utf-8'), lines[line + 1]) self.assertEqual('Version: 3', lines[line + 2]) self.assertEqual('Prefix:\t RFC', lines[line + 3]) self.assertEqual('Cover: 4 lines', lines[line + 4]) line += 5 self.assertEqual(' Cc: %s' % mel.encode('utf-8'), lines[line + 0]) self.assertEqual(' Cc: %s' % rick, lines[line + 1]) self.assertEqual(' Cc: %s' % fred, lines[line + 2]) self.assertEqual(' Cc: %s' % ed.encode('utf-8'), lines[line + 3]) expected = ('Git command: git send-email --annotate ' '--in-reply-to="%s" --to "u-boot@lists.denx.de" ' '--cc "%s" --cc-cmd "%s --cc-cmd %s" %s %s' % (in_reply_to, stefan, sys.argv[0], cc_file, cover_fname, ' '.join(args))).encode('utf-8') line += 4 self.assertEqual(expected, lines[line]) self.assertEqual(('%s %s, %s' % (args[0], rick, stefan)) .encode('utf-8'), cc_lines[0]) self.assertEqual(('%s %s, %s, %s, %s' % (args[1], fred, rick, stefan, ed)).encode('utf-8'), cc_lines[1]) expected = ''' This is a test of how the cover leter works some notes about some things from the first commit Changes in v4: - Some changes Simon Glass (2): pci: Correct cast for sandbox fdt: Correct cast for sandbox in fdtdec_setup_memory_size() cmd/pci.c | 3 ++- fs/fat/fat.c | 1 + lib/efi_loader/efi_memory.c | 1 + lib/fdtdec.c | 3 ++- 4 files changed, 6 insertions(+), 2 deletions(-) --\x20 2.7.4 ''' lines = open(cover_fname).read().splitlines() #print '\n'.join(lines) self.assertEqual( 'Subject: [RFC PATCH v3 0/2] test: A test patch series', lines[3]) self.assertEqual(expected.splitlines(), lines[7:]) for i, fname in enumerate(args): lines = open(fname).read().splitlines() #print '\n'.join(lines) subject = [line for line in lines if line.startswith('Subject')] self.assertEqual('Subject: [RFC %d/%d]' % (i + 1, count), subject[0][:18]) if i == 0: # Check that we got our commit notes self.assertEqual('---', lines[17]) self.assertEqual('Some notes about', lines[18]) self.assertEqual('the first commit', lines[19])
8,558
2,698
from animeblkom import Animeblkom, animeblkom_episode from downloader import blkom from requests import get download_list = [] anime_url = input('Anime Url: ') # ex. https://animeblkom.net/watch/one-piece episodes = Animeblkom.get_anime_episodes(anime_url) print(f'{len(episodes)} episodes found.') episodes = episodes[ int(input('from: '))-1 : int(input('to: ')) ] for episode in episodes: print(episode.num) episode_servers = episode.get_servers() for i in range(len(episode_servers)): curr_server = episode_servers[i] print(f'{i}. {curr_server}') choice = int(input('Choice: ')) download_list.append( episode_servers[choice].split(', ')[1].strip() ) print('\n') for link in download_list: file = blkom.download(link) print(file.info) file.save() print('\n') input('done')
832
339
import logging from fastapi import APIRouter from spaceone.core.locator import Locator _LOGGER = logging.getLogger(__name__) router = APIRouter() @router.get('/check') async def check(): return {'status': 'SERVING'}
225
71
""" @author: mkowalska """ import os import numpy as np from numpy.linalg import LinAlgError import matplotlib.pyplot as plt from figure_properties import * import matplotlib.gridspec as gridspec from kcsd import KCSD1D import targeted_basis as tb __abs_file__ = os.path.abspath(__file__) def _html(r, g, b): return "#{:02X}{:02X}{:02X}".format(r, g, b) def stability_M(n_src, total_ele, ele_pos, pots, R_init=0.23): """ Investigates stability of reconstruction for different number of basis sources Parameters ---------- n_src: int Number of basis sources. total_ele: int Number of electrodes. ele_pos: numpy array Electrodes positions. pots: numpy array Values of potentials at ele_pos. R_init: float Initial value of R parameter - width of basis source Default: 0.23. Returns ------- obj_all: class object eigenvalues: numpy array Eigenvalues of k_pot matrix. eigenvectors: numpy array Eigen vectors of k_pot matrix. """ obj_all = [] eigenvectors = np.zeros((len(n_src), total_ele, total_ele)) eigenvalues = np.zeros((len(n_src), total_ele)) for i, value in enumerate(n_src): pots = pots.reshape((len(ele_pos), 1)) obj = KCSD1D(ele_pos, pots, src_type='gauss', sigma=0.3, h=0.25, gdx=0.01, n_src_init=n_src[i], ext_x=0, xmin=0, xmax=1, R_init=R_init) try: eigenvalue, eigenvector = np.linalg.eigh(obj.k_pot + obj.lambd * np.identity (obj.k_pot.shape[0])) except LinAlgError: raise LinAlgError('EVD is failing - try moving the electrodes' 'slightly') idx = eigenvalue.argsort()[::-1] eigenvalues[i] = eigenvalue[idx] eigenvectors[i] = eigenvector[:, idx] obj_all.append(obj) return obj_all, eigenvalues, eigenvectors def set_axis(ax, x, y, letter=None): """ Formats the plot's caption. Parameters ---------- ax: Axes object. x: float X-position of caption. y: float Y-position of caption. letter: string Caption of the plot. Default: None. Returns ------- ax: modyfied Axes object. """ ax.text( x, y, letter, fontsize=15, weight='bold', transform=ax.transAxes) return ax def generate_figure(csd_profile, R, MU, true_csd_xlims, total_ele, ele_lims, noise=0, R_init=0.23): """ Generates figure for spectral structure decomposition. Parameters ---------- csd_profile: function Function to produce csd profile. R: float Thickness of the groundtruth source. Default: 0.2. MU: float Central position of Gaussian source Default: 0.25. true_csd_xlims: list Boundaries for ground truth space. total_ele: int Number of electrodes. ele_lims: list Electrodes limits. noise: float Determines the level of noise in the data. Default: 0. R_init: float Initial value of R parameter - width of basis source Default: 0.23. Returns ------- None """ csd_at, true_csd, ele_pos, pots, val = tb.simulate_data(csd_profile, true_csd_xlims, R, MU, total_ele, ele_lims, noise=noise) n_src_M = [2, 4, 8, 16, 32, 64, 128, 256, 512] OBJ_M, eigenval_M, eigenvec_M = stability_M(n_src_M, total_ele, ele_pos, pots, R_init=R_init) plt_cord = [(2, 0), (2, 2), (2, 4), (3, 0), (3, 2), (3, 4), (4, 0), (4, 2), (4, 4), (5, 0), (5, 2), (5, 4)] letters = ['C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N'] BLACK = _html(0, 0, 0) ORANGE = _html(230, 159, 0) SKY_BLUE = _html(86, 180, 233) GREEN = _html(0, 158, 115) YELLOW = _html(240, 228, 66) BLUE = _html(0, 114, 178) VERMILION = _html(213, 94, 0) PURPLE = _html(204, 121, 167) colors = [BLUE, ORANGE, GREEN, PURPLE, VERMILION, SKY_BLUE, YELLOW, BLACK] fig = plt.figure(figsize=(18, 16)) # heights = [1, 1, 1, 0.2, 1, 1, 1, 1] heights = [4, 0.3, 1, 1, 1, 1] markers = ['^', '.', '*', 'x', ','] # linestyles = [':', '--', '-.', '-'] linestyles = ['-', '-', '-', '-'] src_idx = [0, 2, 3, 8] gs = gridspec.GridSpec(6, 6, height_ratios=heights, hspace=0.3, wspace=0.6) ax = fig.add_subplot(gs[0, :3]) for indx, i in enumerate(src_idx): ax.plot(np.arange(1, total_ele + 1), eigenval_M[i], linestyle=linestyles[indx], color=colors[indx], marker=markers[indx], label='M='+str(n_src_M[i]), markersize=10) ht, lh = ax.get_legend_handles_labels() set_axis(ax, -0.05, 1.05, letter='A') ax.set_xlabel('Number of components') ax.set_ylabel('Eigenvalues') ax.set_yscale('log') ax.set_ylim([1e-6, 1]) ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) ax = fig.add_subplot(gs[0, 3:]) ax.plot(n_src_M, eigenval_M[:, 0], marker='s', color='k', markersize=5, linestyle=' ') set_axis(ax, -0.05, 1.05, letter='B') ax.set_xlabel('Number of basis sources') ax.set_xscale('log') ax.set_ylabel('Eigenvalues') ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) for i in range(OBJ_M[0].k_interp_cross.shape[1]): ax = fig.add_subplot(gs[plt_cord[i][0], plt_cord[i][1]:plt_cord[i][1]+2]) for idx, j in enumerate(src_idx): ax.plot(np.linspace(0, 1, 100), np.dot(OBJ_M[j].k_interp_cross, eigenvec_M[j, :, i]), linestyle=linestyles[idx], color=colors[idx], label='M='+str(n_src_M[j]), lw=2) ax.text(0.5, 1., r"$\tilde{K}\cdot{v_{{%(i)d}}}$" % {'i': i+1}, horizontalalignment='center', transform=ax.transAxes, fontsize=20) set_axis(ax, -0.10, 1.1, letter=letters[i]) if i < 9: ax.get_xaxis().set_visible(False) ax.spines['bottom'].set_visible(False) else: ax.set_xlabel('Depth ($mm$)') if i % 3 == 0: ax.set_ylabel('CSD ($mA/mm$)') ax.yaxis.set_label_coords(-0.18, 0.5) ax.ticklabel_format(style='sci', axis='y', scilimits=((0.0, 0.0))) ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) fig.legend(ht, lh, loc='lower center', ncol=5, frameon=False) fig.savefig(os.path.join('vectors_' + '_noise_' + str(noise) + 'R0_2' + '.png'), dpi=300) plt.show() if __name__ == '__main__': ELE_LIMS = [0, 1.] TRUE_CSD_XLIMS = [0., 1.] TOTAL_ELE = 12 CSD_PROFILE = tb.csd_profile R = 0.2 MU = 0.25 R_init = 0.2 generate_figure(CSD_PROFILE, R, MU, TRUE_CSD_XLIMS, TOTAL_ELE, ELE_LIMS, noise=None, R_init=R_init)
7,617
2,885
#!/usr/bin/env python # coding=utf-8 from celery import Celery from pprint import pprint import time app = Celery('tasks', backend='redis://localhost:6379/0', broker = 'redis://localhost:6379/0') @app.task def get(message): #=========== #pprint(message) #=========== return {"app":"Get Got"} @app.task def post(message): #print(message) return {"app":"Post Got"}
392
142
import re COMMENT_REGEX = re.compile(r'(checkov:skip=|bridgecrew:skip=) *([A-Z_\d]+)(:[^\n]+)?')
98
48
# Generated by Django 2.1.4 on 2020-04-20 23:20 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('plugins', '0033_pluginparameter_short_flag'), ] operations = [ migrations.AlterField( model_name='computeresource', name='compute_resource_identifier', field=models.CharField(max_length=100, unique=True), ), ]
438
143
''' Created on Dec 21, 2014 @author: Milos ''' ''' Forma za eventualna prosirenja djangovog user-a ''' from django import forms from django.contrib.auth.forms import UserCreationForm from django.contrib.auth.models import User from django.core.urlresolvers import reverse from django.shortcuts import get_object_or_404 from django.views.generic.detail import DetailView from django.views.generic.edit import UpdateView, CreateView from tasks.models import UserExtend class UserExtendForm(forms.ModelForm): class Meta: model = UserExtend fields = ['picture'] class RegistrationForm(UserCreationForm): email = forms.EmailField(required=True) first_name = forms.CharField(required = False) last_name = forms.CharField(required = False) class Meta: model = UserExtend fields = ['first_name','last_name', 'username', 'email', 'password1', 'password2','picture'] def save(self, commit=True): user = super(RegistrationForm, self).save(commit = False) user.email = self.cleaned_data['email'] user.first_name = self.cleaned_data['first_name'] user.last_name = self.cleaned_data['last_name'] user.picture = self.cleaned_data['picture'] if commit: user.save() return user def __init__(self, *args, **kwargs): super(RegistrationForm, self).__init__(*args, **kwargs) self.fields["first_name"].widget.attrs['class']='form-control' self.fields["last_name"].widget.attrs['class']='form-control' self.fields["username"].widget.attrs['class']='form-control' self.fields["email"].widget.attrs['class']='form-control' self.fields["password1"].widget.attrs['class']='form-control' self.fields["password2"].widget.attrs['class']='form-control' self.fields["picture"].widget.attrs['class']='form-control' class UserForm(forms.ModelForm): class Meta: model = UserExtend fields = ['first_name','last_name', 'username', 'email', 'picture'] def __init__(self, *args, **kwargs): super(UserForm, self).__init__(*args, **kwargs) self.fields["first_name"].widget.attrs['class']='form-control' self.fields["last_name"].widget.attrs['class']='form-control' self.fields["username"].widget.attrs['class']='form-control' self.fields["email"].widget.attrs['class']='form-control' self.fields["picture"].widget.attrs['class']='form-control' class UserCreate(CreateView): model = UserExtend template_name = 'tasks/register.html' form_class = RegistrationForm def get_success_url(self): return reverse('home') def get_context_data(self, **kwargs): context = super(UserCreate, self).get_context_data(**kwargs) #KeyError try: context["back"] = self.request.META["HTTP_REFERER"] except(KeyError): context["back"]="/" return context class UserUpdate(UpdateView): model = UserExtend template_name = 'tasks/uupdate.html' form_class = UserForm def get_success_url(self): return reverse('udetail') def get_context_data(self, **kwargs): context = super(UserUpdate, self).get_context_data(**kwargs) #KeyError try: context["back"] = self.request.META["HTTP_REFERER"] except(KeyError): context["back"]="/" return context class DetailUser(DetailView): model = UserExtend template_name = 'tasks/udetail.html' context_object_name='user' def get_object(self): return get_object_or_404(User, pk=self.request.user.pk) def get_context_data(self, **kwargs): context = super(DetailUser, self).get_context_data(**kwargs) #KeyError try: context["back"] = self.request.META["HTTP_REFERER"] except(KeyError): context["back"]="/" #context["user"] = self.request.user return context
4,112
1,235
""" Django settings for mysite project. Generated by 'django-admin startproject' using Django 2.2.4. For more information on this file, see https://docs.djangoproject.com/en/2.2/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/2.2/ref/settings/ """ import os import re # Build paths inside the project like this: os.path.join(BASE_DIR, ...) # __file__ represents this file itself. BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! # this is the hardwired key for non-production SECRET_KEY = '=yztu+7vgkkr%f1uy(fnk%zl=!jx*tg$v6ekzsp40a%2m7_d3!' if "HCAT_SECRET_KEY" in os.environ: SECRET_KEY = os.environ["HCAT_SECRET_KEY"] # this env var only used by production # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = ["hgwdev.gi.ucsc.edu"] # Application definition INSTALLED_APPS = [ 'hcat.apps.HcatConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.sites', 'allauth', 'allauth.account', 'allauth.socialaccount', 'allauth.socialaccount.providers.google', ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] ROOT_URLCONF = 'mysite.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'mysite.wsgi.application' # Database # https://docs.djangoproject.com/en/2.2/ref/settings/#databases #DATABASES = { # 'default': { # 'ENGINE': 'django.db.backends.sqlite3', # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), # } #} DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': os.environ["HCAT_DB"], 'USER': os.environ["HCAT_USER"], 'PASSWORD': os.environ["HCAT_PASSWORD"], 'OPTIONS': { 'init_command': "SET sql_mode='STRICT_TRANS_TABLES'", }, } } # Password validation # https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/2.2/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'America/Los_Angeles' USE_I18N = True USE_L10N = True USE_TZ = True SITE_ID = 1 # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/2.2/howto/static-files/ STATIC_URL = '/static/' # help it find our static files STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static'), # this could have called i.e. assets instead ] # Where wranglers can upload things, whoohoo! MEDIA_ROOT = os.environ["HCAT_MEDIA"] MEDIA_URL = '/media/' LOGIN_REDIRECT_URL = '/' # Hide Sensitive Secret Environment Variables. # We do not want them to leak out if debug=true. # Django should be doing this for us automatically, but it does not. # runserver runs and forks and runs again. We only want to change env var for the main run process. if os.environ.get('RUN_MAIN') == 'true': HIDDEN_SETTINGS = re.compile('API|TOKEN|KEY|SECRET|PASS|SIGNATURE', flags=re.IGNORECASE) CLEANSED_SUBSTITUTE = '********************' for key in os.environ: if key.isupper(): if HIDDEN_SETTINGS.search(key): os.environ[key] = CLEANSED_SUBSTITUTE
4,775
1,660
"""Create the distribution file (pypi).""" import importlib import setuptools from pathlib import Path this_package_name = 'remote_import' version_file = Path(__file__).absolute().parent / this_package_name / "__version__.py" setuptools.setup( name=this_package_name, url="https://github.com/kiranmantri/python-remote_import", author="Kiran Mantripragada (and Lydia.ai team)", author_email="kiran.mantri@gmail.com", description="Enable the Python import subsystem to load libraries from remote (e.g. HTTP, S3, SSH).", version=importlib.import_module("remote_import.version", "__version__").__version__, long_description=open("README.rst").read(), packages=[this_package_name], python_requires=">=3.10", install_requires=[ line for line in open("requirements.txt").read().split("\n") if not line.startswith("#") ], include_package_data=True, setup_requires=["wheel"], )
932
302
from flask import request import pytest import json from app import create_app, create_rest_api from db import get_db @pytest.fixture def client(): local_app = create_app() create_rest_api(local_app) client = local_app.test_client() yield client def test_get_aquarium_invalid_id(client): with create_app().app_context(): light_data = get_db().execute( 'SELECT id, timestamp, default_mode, total_food_quantity' ' FROM aquarium' ' ORDER BY id DESC' ).fetchone() invalid_id = light_data['id'] + 1 request = client.get('/aquariumMode/' + str(invalid_id)) assert request.status_code == 403 def test_set_aquarium_with_invalid_id(client): with create_app().app_context(): light_data = get_db().execute( 'SELECT id' ' FROM aquarium' ' ORDER BY id DESC' ).fetchone() invalid_id = light_data['id'] + 1 valid_type = 'crescatorie'; request = client.put('/aquariumMode/' + str(invalid_id) + '?type=' + valid_type) assert request.status_code == 403 def test_set_aquarium_with_invalid_type(client): with create_app().app_context(): light_data = get_db().execute( 'SELECT id' ' FROM aquarium' ' ORDER BY id DESC' ).fetchone() valid_id = light_data['id'] invalid_type = 'notCrescatorie' request = client.put('/aquariumMode/' + str(valid_id) + '?type=' + invalid_type) assert request.status_code == 403 def test_set_aquarium_with_valid_type(client): local_app = create_app() with local_app.app_context(): light_data = get_db().execute( 'SELECT id' ' FROM aquarium' ' ORDER BY id DESC' ).fetchone() valid_id = light_data['id'] valid_type = 'crescatorie' request = client.put('/aquariumMode/' + str(1) + '?type=' + valid_type) res = json.loads(request.data.decode()) assert request.status_code == 200
1,958
653
import json import os import cv2 import imutils import numpy as np import torch import torchvision.transforms.functional as tvf from PIL import Image from models.rapid import RAPiD from tracker.deep_sort import DeepSort from utils import utils weights_path = "weights/pL1_HBCP608_Apr14_6000.ckpt" model = RAPiD(backbone='dark53') model.load_state_dict(torch.load(weights_path)['model_state_dict']) print(f'Successfully loaded weights: {weights_path}') model.eval() if torch.cuda.is_available(): model = model.cuda() device = "cuda" image_dir = "datasets" file_name = "75-279_LinhDam_HN-1" ds = DeepSort("weights/osnet_x1_0.onnx") vs = cv2.VideoCapture(f"/mnt/sdb1/Data/record/{file_name}.mkv") input_size = 608 conf_thres = 0.3 nms_thres = 0.45 top_k = 100 DEBUG = False frame_num = 0 interval = 10 ann_json = { "annotations": [], "images": [], "categories": [ { "id": 1, "name": "person", "supercategory": "person" }] } while True: image = vs.read()[1] if image is None: continue image = image.copy() pil_img = Image.fromarray(image) # pad to square input_img, _, pad_info = utils.rect_to_square(pil_img, None, input_size, 0) input_ori = tvf.to_tensor(input_img) input_ = input_ori.unsqueeze(0) input_ = input_.to(device=device) with torch.no_grad(): dts = model(input_).cpu() dts = dts.squeeze() # post-processing dts = dts[dts[:,5] >= conf_thres] if len(dts) > top_k: _, idx = torch.topk(dts[:,5], k=top_k) dts = dts[idx, :] dts = utils.nms(dts, is_degree=True, nms_thres=nms_thres, img_size=input_size) dts = utils.detection2original(dts, pad_info.squeeze()) boxes = [] infos= [] for bb in dts: x,y,w,h,a,conf = bb radian = a*np.pi/180 C, S = np.cos(radian), np.sin(radian) R = np.asarray([[-C, -S], [S, -C]]) pts = np.asarray([[-w / 2, -h / 2], [w / 2, -h / 2], [w / 2, h / 2], [-w / 2, h / 2]]) points = np.asarray([((x, y) + pt @ R).astype(int) for pt in pts]) # cv2.circle(image, (int(x), int(y)), 2, (0, 255, 0), 10) # cv2.polylines(image, [points], True, (0, 0, 255), 5) boxes.append(points) infos.append([x,y,w,h,a]) tracked_boxes = ds.update(boxes, infos, image) if frame_num % interval == 0: with open(f'{file_name}.json', 'w') as f: img_id = f"{file_name}_{frame_num}" cv2.imwrite(os.path.join(image_dir, f"{img_id}.jpg"), image) for trk in tracked_boxes: x,y,w,h,a,trk_id = trk obj_ann = { "area": w*h, "bbox": [x,y,w,h,a], "category_id": 1, "image_id": img_id, "iscrowd": 0, "segmentation": [], "person_id": trk_id, } img_info = { "file_name": f"{img_id}.jpg", "id": img_id, "width": image.shape[0], "height": image.shape[1] } ann_json["images"].append(img_info) ann_json["annotations"].append(obj_ann) if DEBUG: a = a*np.pi/180 C, S = np.cos(a), np.sin(a) R = np.asarray([[-C, -S], [S, -C]]) pts = np.asarray([[-w / 2, -h / 2], [w / 2, -h / 2], [w / 2, h / 2], [-w / 2, h / 2]]) points = np.asarray([((x, y) + pt @ R).astype(int) for pt in pts]) cv2.putText(image, str(trk_id), (x, y), cv2.FONT_HERSHEY_SIMPLEX, 2, (0,255,0), 4, cv2.LINE_AA) cv2.polylines(image, [points], True, (0, 0, 255), 5) json.dump(ann_json, f, indent=4) frame_num+=1 if DEBUG: cv2.imshow("image", imutils.resize(image, width=720)) key = cv2.waitKey(1) & 0xff if key == ord('q'): break cv2.destroyAllWindows()
4,172
1,655
import os import sys from loguru import logger from rich.console import Console console_args = {} if "pytest" in sys.modules: console_args["width"] = 120 console = Console(**console_args) cpu_count = None def escape_logging(s): return str(s).replace("<", "\\<").replace("{", "{{").replace("}", "}}") def CPUs(): """ Detects the number of CPUs on a system. Cribbed from pp. """ global cpu_count if cpu_count is None: cpu_count = 1 # default # Linux, Unix and MacOS: if hasattr(os, "sysconf"): if "SC_NPROCESSORS_ONLN" in os.sysconf_names: # Linux & Unix: ncpus = os.sysconf("SC_NPROCESSORS_ONLN") if isinstance(ncpus, int) and ncpus > 0: cpu_count = ncpus else: # OSX: pragma: no cover cpu_count = int( os.popen2("sysctl -n hw.ncpu")[1].read() ) # pragma: no cover # Windows: if "NUMBER_OF_PROCESSORS" in os.environ: # pragma: no cover ncpus = int(os.environ["NUMBER_OF_PROCESSORS"]) if ncpus > 0: cpu_count = ncpus return cpu_count def job_or_filename(job_or_filename, invariant_class=None): """Take a filename, or a job. Return Path(filename), dependency-for-that-file ie. either the job, or a invariant_class (default: FileInvariant)""" from .jobs import Job, FileInvariant from pathlib import Path if invariant_class is None: # pragma: no cover invariant_class = FileInvariant if isinstance(job_or_filename, Job): filename = job_or_filename.files[0] deps = [job_or_filename] elif job_or_filename is not None: filename = Path(job_or_filename) deps = [invariant_class(filename)] else: filename = None deps = [] return filename, deps def assert_uniqueness_of_object( object_with_name_attribute, pipegraph=None, also_check=None ): """Makes certain there is only one object with this class & .name. This is necessary so the pipegraph jobs assign their data only to the objects you're actually working with.""" if pipegraph is None: # pragma: no branch from pypipegraph2 import global_pipegraph pipegraph = global_pipegraph if object_with_name_attribute.name.find("/") != -1: raise ValueError( "Names must not contain /, it confuses the directory calculations" ) if pipegraph is None: # pragma: no cover return if not hasattr(pipegraph, "object_uniquifier"): pipegraph.object_uniquifier = {} typ = object_with_name_attribute.__class__ if typ not in pipegraph.object_uniquifier: pipegraph.object_uniquifier[typ] = {} if object_with_name_attribute.name in pipegraph.object_uniquifier[typ]: raise ValueError( "Doublicate object: %s, %s" % (typ, object_with_name_attribute.name) ) if also_check: if not isinstance(also_check, list): also_check = [also_check] for other_typ in also_check: if ( other_typ in pipegraph.object_uniquifier and object_with_name_attribute.name in pipegraph.object_uniquifier[other_typ] ): raise ValueError( "Doublicate object: %s, %s" % (other_typ, object_with_name_attribute.name) ) object_with_name_attribute.unique_id = len(pipegraph.object_uniquifier[typ]) pipegraph.object_uniquifier[typ][object_with_name_attribute.name] = True def flatten_jobs(j): """Take an arbitrary deeply nested list of lists of jobs and return just the jobs""" from .jobs import Job if isinstance(j, Job): yield j else: for sj in j: yield from flatten_jobs(sj) do_jobtrace_log = False def log_warning(msg): logger.opt(depth=1).warning(msg) def log_error(msg): logger.opt(depth=1).error(msg) def log_info(msg): logger.opt(depth=1).info(msg) def log_debug(msg): logger.opt(depth=1).debug(msg) def log_job_trace(msg): if do_jobtrace_log: logger.opt(depth=1).log("JT", msg) def log_trace(msg): if do_jobtrace_log: # pragma: no cover logger.opt(depth=1).trace(msg) def shorten_job_id(job_id): dotdotcount = job_id.count(":::") if dotdotcount: return job_id[: job_id.find(":::") + 3] + "+" + str(dotdotcount) else: return job_id def pretty_log_errors(func): """capture exceptions (on a function outside of ppg) and format it with our fancy local logging exception logger """ def inner(*args, **kwargs): try: func(*args, **kwargs) except Exception as e: exception_type, exception_value, tb = sys.exc_info() captured_tb = ppg2.ppg_traceback.Trace(exception_type, exception_value, tb) logger.error( captured_tb._format_rich_traceback_fallback( include_locals=True, include_formating=True ) ) raise return inner
5,194
1,653
# -*- coding: utf-8 -*- # 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. import mock from hwk import udev from hwk.tests.unit import base class TestUdev(base.TestCase): @mock.patch('subprocess.check_output') def test_device_properties(self, sp_mock): sp_mock.return_value = """ DEVLINKS=/dev/disk/by-id/wwn-0x600508e000000000f8253aac9a1abd0c ... DEVNAME=/dev/sda DEVPATH=/devices/pci0000:00/0000:00:07.0/... DEVTYPE=disk ID_BUS=scsi ID_MODEL=Logical_Volume ID_MODEL_ENC=Logical\x20Volume\x20\x20 ID_PART_TABLE_TYPE=dos ID_PART_TABLE_UUID=0000ebf3 ID_PATH=pci-0000:04:00.0-scsi-0:1:0:0 ID_PATH_TAG=pci-0000_04_00_0-scsi-0_1_0_0 ID_REVISION=3000 ID_SCSI=1 ID_SERIAL=3600508e000000000f8253aac9a1abd0c ID_SERIAL_SHORT=600508e000000000f8253aac9a1abd0c ID_TYPE=disk ID_VENDOR=LSI ID_VENDOR_ENC=LSI\x20\x20\x20\x20\x20 ID_WWN=0x600508e000000000 ID_WWN_VENDOR_EXTENSION=0xf8253aac9a1abd0c ID_WWN_WITH_EXTENSION=0x600508e000000000f8253aac9a1abd0c MAJOR=8 MINOR=0 SUBSYSTEM=block TAGS=:systemd: USEC_INITIALIZED=10219204 """ props = udev.device_properties("/sys/class/block/sda") self.assertIn('ID_BUS', props) self.assertEqual('scsi', props['ID_BUS']) self.assertIn('ID_MODEL_ENC', props) self.assertEqual('Logical\x20Volume\x20\x20', props['ID_MODEL_ENC'])
1,808
864
from http import HTTPStatus from flask_restful import Resource from ..extensions import cache from ..models.country import Country from ..schemas.continent import ContinentSchema continent_list_schema = ContinentSchema(many=True) class ContinentListResource(Resource): @cache.cached(timeout=60, query_string=True) def get(self): continents = Country.get_continents() if continents is None: return {'message': 'Could not find any continent.'}, HTTPStatus.NOT_FOUND return continent_list_schema.dump([{"name": continent[0]} for continent in continents]), HTTPStatus.OK
618
168
import sublime import sublime_plugin import threading import os.path from pickle import dump, load, UnpicklingError, PicklingError from copy import deepcopy from .common import * from .bookmark import * from .visibilityHandler import * from .ui import * BOOKMARKS = [] UID = None #list of bookmarks that have ben deleted. #This is used to remove bookmarks' buffer highlights. Without this, if a bookmark is removed, #when a file is revisited, the buffer will still be marked. This will keep track of bookmarks #that have been removed. ERASED_BOOKMARKS = [] #whether all bookmarks (even unrelated) should be shown BOOKMARKS_MODE = SHOW_ALL_BOOKMARKS() def removeBookmark(bookmark): global BOOKMARKS global ERASED_BOOKMARKS ERASED_BOOKMARKS.append(deepcopy(bookmark)) BOOKMARKS.remove(bookmark) def addBookmark(bookmark): global BOOKMARKS BOOKMARKS.append(deepcopy(bookmark)) class SublimeBookmarkCommand(sublime_plugin.WindowCommand): def __init__(self, window): self.window = window self.activeGroup = self.window.active_group() self.activeView = self.window.active_view() global BOOKMARKS global UID BOOKMARKS = [] #initialize to 0 UID = 0 #the bookmark to go to if the user cancels self.revertBookmark = None #bookmarks that are being shown in the panel self.displayedBookmarks = None #the index used for goto next / goto previous #not a believer of dynamic typing self.global_bookmark_index = int(-1) currentDir = os.path.dirname(sublime.packages_path()) self.SAVE_PATH = currentDir + '/sublimeBookmarks.pickle' Log(currentDir) self._Load() def run(self, type): global BOOKMARKS_MODE self.activeGroup = self.window.active_group() self.activeView = self.window.active_view() #update bookmark positions. We need to do it anyway... self._UpdateBookmarkPosition() #delete any temp bookmarks that have been since destroyed self._UpdateTemporaryBookmarks() if type == "add": self._addBookmark() elif type == "goto": #on highlighting, goto the current bookmark #on option select, just center the selected item self._createBookmarkPanel(self._HilightDoneCallback, self._AutoMoveToBookmarkCallback) elif type == "remove": #on highlighting, goto the current bookmark #on option select, remove the selected item self._createBookmarkPanel(self._RemoveDoneCallback, self._AutoMoveToBookmarkCallback) elif type == "remove_all": self._removeAllBookmarks() elif type == "toggle_line": self._toggleCurrentLine() elif type == "goto_next": self._quickGoto(True) elif type == "goto_previous": self._quickGoto(False) #BOOKMARK MODES------------------------- elif type == "show_all_bookmarks": BOOKMARKS_MODE = SHOW_ALL_BOOKMARKS() self._Save() #update buffer to show all bookmarks self._updateBufferStatus() elif type == "show_project_bookmarks": BOOKMARKS_MODE = SHOW_ONLY_PROJECT_BOOKMARKS() self._Save() #update buffer to show only project bookmarks self._updateBufferStatus() elif type == "show_file_bookmarks": BOOKMARKS_MODE = SHOW_ONLY_FILE_BOOKMARKS() self._Save() #update buffer to show only project bookmarks self._updateBufferStatus() #ASYNC OPERATIONS--------------------------- elif type == "mark_buffer": self._updateBufferStatus() elif type == "move_bookmarks": self._UpdateBookmarkPosition() elif type == "update_temporary": self._UpdateTemporaryBookmarks() def _createBookmarkPanel(self, onHighlight, onDone): def moveBookmarksToActiveGroup(activeGroup): #move all open bookmark tabs to one group so that group switching does not #occur. for bookmark in BOOKMARKS: moveBookmarkToGroup(self.window, bookmark, self.activeGroup) def createPanel(): bookmarkPanelItems = createBookmarkPanelItems(self.window, self.displayedBookmarks) #create a selection panel and launch it selector = OptionsSelector(self.window, bookmarkPanelItems, onHighlight, onDone) selector.start() return True #load all visible bookmarks self.displayedBookmarks = getVisibleBookmarks(BOOKMARKS, self.window, self.activeView, BOOKMARKS_MODE) #if no bookmarks are acceptable, don't show bookmarks if len(self.displayedBookmarks) == 0: return False #create a revert bookmark to go back if the user cancels self._createRevertBookmark(self.activeView) #move all active bookmarks to the currently active group moveBookmarksToActiveGroup(self.activeGroup) #create the selection panel panelCreated = createPanel() if not panelCreated: MESSAGE_NoBookmarkToGoto() return False #event handlers---------------------------- def _addBookmark(self): Log ("add") window = self.window view = window.active_view() region = getCurrentLineRegion(view) #copy whatever is on the line for the bookmark name initialText = view.substr(region).strip() input = OptionsInput(self.window, "Add Bookmark", initialText, self._AddBookmarkCallback, None) input.start() def _removeAllBookmarks(self): window = self.window view = window.active_view() filePath = view.file_name() global BOOKMARKS global ERASED_BOOKMARKS visibles = getVisibleBookmarks(BOOKMARKS, self.window, self.activeView, BOOKMARKS_MODE) for bookmark in visibles: #store erased bookmarks for delayed removal ERASED_BOOKMARKS.append(deepcopy(bookmark)) #yep. nuke em del BOOKMARKS BOOKMARKS = [] #update the buffer since we deleted a bookmark self._updateBufferStatus() #save to eternal storage self._Save() def _quickGoto(self, forward): # Gather appropriate bookmarks self.displayedBookmarks = getVisibleBookmarks(BOOKMARKS, self.window, self.activeView, BOOKMARKS_MODE) if 0 == len(self.displayedBookmarks): MESSAGE_NoBookmarkToGoto() return # increment or decrement if forward: self.global_bookmark_index = self.global_bookmark_index + 1 else: self.global_bookmark_index = self.global_bookmark_index - 1 # if we're pointing off the end, go to the first one instead if self.global_bookmark_index >= len(self.displayedBookmarks): self.global_bookmark_index = 0 # if we're pointing off the beginning, go to the last one instead if self.global_bookmark_index < 0: self.global_bookmark_index = len(self.displayedBookmarks) - 1 # Go there! bookmark = BOOKMARKS[self.global_bookmark_index] moveBookmarkToGroup(self.window, bookmark, self.activeGroup) self._AutoMoveToBookmarkCallback(self.global_bookmark_index) def _toggleCurrentLine(self): def getLineBookmark(window): currentFilePath = window.active_view().file_name() cursorRegion = getCurrentLineRegion(window.active_view()) for bookmark in BOOKMARKS: if bookmark.getFilePath() == currentFilePath and \ bookmark.getRegion().contains(cursorRegion): return bookmark #no bookmark return None bookmark = getLineBookmark(self.window) if bookmark is not None: global ERASED_BOOKMARKS global BOOKMARKS #add to list of erased bookmarks ERASED_BOOKMARKS.append(deepcopy(bookmark)) BOOKMARKS.remove(bookmark) self._updateBufferStatus() #File IO Here!-------------------- self._Save() else: region = getCurrentLineRegion(self.activeView) #copy whatever is on the line for the bookmark name name = self.activeView.substr(region).strip() self._AddBookmarkCallback(name) #ASYNC OPERATIONS---------------------------------------------- def _updateBufferStatus(self): #marks the given bookmark on the buffer def markBuffer(view, bookmark): uid = bookmark.getUid() region = bookmark.getRegion() view.add_regions(str(uid), [region], "text.plain", "bookmark", sublime.DRAW_NO_FILL | sublime.DRAW_EMPTY_AS_OVERWRITE) #unmarks the given bookmark on the buffer def unmarkBuffer(view, bookmark): uid = bookmark.getUid() view.erase_regions(str(uid)) if self.activeView is None: return filePath = self.activeView.file_name() bufferID = self.activeView.buffer_id() #mark all bookmarks that are visible, and unmark invisible bookmarks for bookmark in BOOKMARKS: #if the bookmark should be shown according to the current bookmark mode shouldShow = shouldShowBookmark(self.window, self.activeView, bookmark, BOOKMARKS_MODE) #only mark if we are in the right view. validContext = bookmark.isMyView(self.window, self.activeView) if validContext and shouldShow: markBuffer(self.activeView, bookmark) else: unmarkBuffer(self.activeView, bookmark) #unmark all erased bookmarks for bookmark in ERASED_BOOKMARKS: validContext = bookmark.isMyView(self.window, self.activeView) if validContext: unmarkBuffer(self.activeView, bookmark) #move bookmarks and update their regions when text is entered into the buffer def _UpdateBookmarkPosition(self): #this bookmark (might) have been changed since it's in the current file #We're on a thread anyway so update it. for bookmark in BOOKMARKS: #if the activeView is the bookmark's view, update r if bookmark.isMyView(self.window, self.activeView): bookmark.updateData(self.window, self.activeView) #the bookmark is empty - it has no data in it. if bookmark.isEmpty(self.activeView): Log("EMPTY BOOKMARK. NAME: " + bookmark.getName()) removeBookmark(bookmark) #we've moved regions around so update the buffer self._updateBufferStatus() #we've moved bookmarks around and may also have deleted them. So, save self._Save() #check if the buffers associated with temporary bookmark are still active or not, and remove #unnecessary bookmarks def _UpdateTemporaryBookmarks(self): for bookmark in BOOKMARKS: #if the bookmark is a temporary bookmark and the bookmark has been deleted, remove the bookmark if bookmark.isTemporary() and shouldRemoveTempBookmark(self.window, bookmark): Log("BOOKMARK IS TEMP AND BUFFER HAS BEEN REMOVED. REMOVING. " + \ "BUFFER: " + \ str(bookmark.getBufferID()) + \ "; NAME: " + str(bookmark.getName())) removeBookmark(bookmark) #helpers------------------------------------------- #creates a bookmark that keeps track of where we were before opening #an options menu. def _createRevertBookmark(self, activeView): #there's no file open. return None 'cause there's no place to return TO if isViewTemporary(activeView): self.revertBookmark = None return uid = -1 name = "" self.revertBookmark = Bookmark(uid, name, self.window, activeView) #goes to the revert bookmark def _gotoRevertBookmark(self): if self.revertBookmark is None: return self.revertBookmark.goto(self.window) self.revertBookmark = None def _restoreFiles(self): views = self.window.views() for bookmark in BOOKMARKS: moveBookmarkToGroup(self.window, bookmark, bookmark.getGroup()) #callbacks--------------------------------------------------- def _AddBookmarkCallback(self, name): global UID assert UID is not None myUID = UID myUID = REGION_BASE_TAG + myUID UID = UID + 1 #get region and line data region = getCurrentLineRegion(self.activeView) lineStr = self.activeView.substr(region) #there's no content if isLineEmpty(lineStr): MESSAGE_BookmarkEmpty() return bookmark = Bookmark(UID, name, self.window, self.activeView) addBookmark(bookmark) self._updateBufferStatus() self._Save() #display highlighted bookmark def _AutoMoveToBookmarkCallback(self, index): assert index < len(self.displayedBookmarks) bookmark = self.displayedBookmarks[index] assert bookmark is not None #goto highlighted bookmark bookmark.goto(self.window) self._updateBufferStatus() #if the user canceled, go back to the original file def _HilightDoneCallback(self, index): #restore all files back to their original places self._restoreFiles() #if the user canceled, then goto the revert bookmark if index == -1: self._gotoRevertBookmark() #otherwise, goto the selected bookmark else: #now open the selected bookmark and scroll to bookmark self._AutoMoveToBookmarkCallback(index) #move the correct bookmark back to the active group - since all fails #including the bookmark have been restored, we have to move the bookmark back #ARRGH! this is __so__ hacky :( bookmark = self.displayedBookmarks[index] moveBookmarkToGroup(self.window, bookmark, self.activeGroup) #IMPORTANT - not doing this will cause bookmark to think it is #still in it's previous group. bookmark.updateData(self.window, self.activeView) self._updateBufferStatus() #remove the selected bookmark or go back if user cancelled def _RemoveDoneCallback(self, index): #restore all files back to their original places self._restoreFiles() #if the user canceled, then goto the revert bookmark if index == -1: self._gotoRevertBookmark() #otherwise, goto the selected bookmark else: assert index < len(self.displayedBookmarks) bookmark = self.displayedBookmarks[index] assert bookmark is not None #goto the removed bookmark bookmark.goto(self.window) removeBookmark(bookmark) #decrement global_bookmark_index so goto_next will not skip anything if index <= self.global_bookmark_index: self.global_bookmark_index = self.global_bookmark_index - 1 self._updateBufferStatus() self._Save() #Save-Load---------------------------------------------------------------- def _Load(self): global BOOKMARKS global BOOKMARKS_MODE global UID Log("LOADING BOOKMARKS") try: savefile = open(self.SAVE_PATH, "rb") saveVersion = load(savefile) if saveVersion != VERSION: raise UnpicklingError("version difference in files") BOOKMARKS_MODE = load(savefile) UID = load(savefile) BOOKMARKS = load(savefile) except (OSError, IOError, UnpicklingError, EOFError, BaseException) as e: print ("\nEXCEPTION:------- ") print (e) print("\nUNABLE TO LOAD BOOKMARKS. NUKING LOAD FILE") #clear the load file :] open(self.SAVE_PATH, "wb").close() #if you can't load, try and save a "default" state self._Save() def _Save(self): global BOOKMARKS global BOOKMARKS_MODE global UID try: savefile = open(self.SAVE_PATH, "wb") dump(VERSION, savefile) dump(BOOKMARKS_MODE, savefile) dump(UID, savefile) dump(BOOKMARKS, savefile) savefile.close() except (OSError, IOError, PicklingError) as e: print (e) print("\nUNABLE TO SAVE BOOKMARKS. PLEASE CONTACT DEV")
14,547
5,318
import logging import random from typing import Dict from xrpc.dsl import rpc, RPCType, regular, signal from xrpc.error import TerminationException from xrpc.runtime import sender, service # todo: the issue is actually that not only the request-reply pattern wouldn't work # todo: but also the fact that an RPC might have circular dependencies from xrpc.transport import Origin # todo: please note that Request-Reply pattern does would not work with a service that tries # todo: to access itself. class ExemplaryRPC: def __init__(self): # todo save the required local state here self.should_exit = False @rpc(RPCType.Signalling) def move_something(self, id: int, *xyzargs: int, pop: str, pip: int = 2, **zzargs: int): #print('call made', 'ms', id, xyzargs, pop, pip, zzargs) # so we pack a call with args and kwargs and let the deserializer guess the contents # how do we write a proper deserializer in such a scenario? pass # todo: we need an ability to save the sender # todo: we need an ability to automatically transform the sender to a relevant object @rpc(RPCType.Repliable) def reply(self, id: int, *xyzargs: int, pop: str, pip: int = 2, **zzargs: int) -> float: # so we pack a call with args and kwargs and let the deserializer guess the contents # how do we write a proper deserializer in such a scenario? return random.random() @regular() def regularly_executable(self, id: int = 1) -> int: return 1 @regular() def regularly_executable_def(self, id: int = 1, b=6, a=5) -> int: return 2 @regular() def regularly_executable_def2(self, id: int = 1, b=6, a=5) -> float: return 3 @rpc(RPCType.Repliable) def exit(self): self.should_exit = True @regular() def exit_checket(self) -> float: if self.should_exit: raise TerminationException() return 1 @signal() def on_exit(self) -> bool: # return True if we'd like to actually exit. # todo: save the relevant local state here. raise TerminationException() class BroadcastClientRPC: def __init__(self, broadcast_addr: Origin): self.broadcast_addr = broadcast_addr self.pings_remaining = 5 @rpc(type=RPCType.Signalling) def ping(self): self.pings_remaining -= 1 logging.getLogger(__name__ + '.' + self.__class__.__name__).info(f'%d', self.pings_remaining) if self.pings_remaining <= 0: raise TerminationException() @regular() def broadcast(self) -> float: while True: s = service(BroadcastRPC, self.broadcast_addr) s.arrived() return 0.05 class BroadcastRPC: def __init__(self): self.origins: Dict[Origin, int] = {} self.origins_met = set() @rpc(type=RPCType.Signalling) def arrived(self): sdr = sender() self.origins[sdr] = 5 if sdr not in self.origins_met: self.origins_met.add(sdr) @regular() def broadcast(self) -> float: for x in self.origins: c = service(BroadcastClientRPC, x) c.ping() for k in list(self.origins.keys()): self.origins[k] -= 1 if self.origins[k] <= 0: del self.origins[k] logging.getLogger(__name__ + '.' + self.__class__.__name__).info( f'%d %s %s', len(self.origins_met), self.origins_met, self.origins) if len(self.origins_met) == 1 and len(self.origins) == 0: raise TerminationException() return 0.05
3,677
1,170
import matplotlib.pyplot as plt import pandas as pd import pytest from ml_matrics import ROOT @pytest.fixture(autouse=True) def run_around_tests(): # Code that runs before each test yield # Code that runs after each test plt.close() y_binary, y_proba, y_clf = pd.read_csv(f"{ROOT}/data/rand_clf.csv").to_numpy().T xs, y_pred, y_true = pd.read_csv(f"{ROOT}/data/rand_regr.csv").to_numpy().T
413
159
# -*- coding: utf-8 -*- #!/usr/bin/env python from __future__ import print_function import community_ext import networkx as nx fn1 = "datasets/polblogs/polblogs.edges" fn2 = fn1.replace(".edges",".clusters") print("DATASET:",fn1) # load graph G = nx.Graph() for line in open(fn1): from_node, to_node = map(int, line.rstrip().split("\t")) if from_node not in G or to_node not in G[from_node]: G.add_edge(from_node,to_node) # load the ground-truth partition groundtruth_partition = dict() for line in open(fn2): node, cluster = map(int, line.rstrip().split("\t")) if node not in G.nodes(): continue groundtruth_partition[node] = cluster # print some general info gt_mu = community_ext.estimate_mu(G,groundtruth_partition) print("ground truth mu\t",gt_mu) print("ground truth clusters\t",len(set(groundtruth_partition.values()))) print("ground truth modularity\t", community_ext.modularity(groundtruth_partition,G)) # now cycle thru the methods and optimize with each one methods = ('ppm','dcppm','ilfrs') for method in methods: print('\nMethod', method) # a starting parameter value depends on the method if method in ('ilfrs',): work_par = 0.5 else: work_par = 1. # now start the iterative process prev_par, it = -1, 0 prev_pars = set() while abs(work_par-prev_par)>1e-5: # stop if the size of improvement too small it += 1 if it>100: break # stop after 100th iteration # update the parameter value prev_par = work_par if prev_par in prev_pars: break # stop if we are in the cycle prev_pars.add(prev_par) # find the optimal partition with the current parameter value if method in ('ilfrs',): partition = community_ext.best_partition(G,model=method,pars={'mu':work_par}) else: partition = community_ext.best_partition(G,model=method,pars={'gamma':work_par}) # calculate optimal parameter value for the current partition if method in ('ilfrs',): work_par = community_ext.estimate_mu(G,partition) else: work_par = community_ext.estimate_gamma(G,partition,model=method) loglike = community_ext.model_log_likelihood(G,partition,model=method,pars={'gamma':work_par,'mu':work_par}) print('current par',work_par,'loglike',loglike) # calculate and print the scores of resulting partition part_scores = community_ext.compare_partitions(groundtruth_partition,partition) loglike = community_ext.model_log_likelihood(G,partition,model=method,pars={'gamma':work_par,'mu':work_par}) print('best par',work_par) print("rand\t% 0f\tjaccard\t% 0f\tnmi\t% 0f\tnmi_arithm\t% 0f\tsize\t%d\tloglike\t% 0f" %\ (part_scores['rand'], part_scores['jaccard'], part_scores['nmi'], part_scores['nmi_arithm'], len(set(partition.values())), loglike))
2,907
974
import os,sys,math,numpy as np, matplotlib.pyplot as plt def runstuff(): #savept= './scores_v2_23042021' #0.7580982029438019 0.5812124161981046 #savept= './scores_v2_23042021_sizes' #0.7552803814411163 0.583345946110785 #savept= './scores_v2_23042021_sizes_posenc' #0.7596977412700654 0.583193539083004 #savept= './scores_v2_23042021_aspectratios' #0.7534634172916412 0.575133552961051 #savept= './scores_v2_23042021_aspectratios_posenc10' #0.7560707509517669 0.5779228328727186 #savept= './oldscores/scores_v2_23042021_innercv_sizes' #0.7794053614139558 0.6070150885730982 #savept= './scores_v4_10052021' #savept= './scores_v4_10052021_rebal0half' #savept= './scores_v4_10052021_rebal0half_densenet121_SGD'#0.8922465562820435 0.8617303603225284 #savept= './scores_v4_10052021_rebal0half_densenet121_AdamW_10-4'#0.9014121651649475 0.8683200238479508 savept= './scores_v4_10052021_rebal0half_densenet121_SGD_equalproba' numcv =10 numcl = 9 cwacc= np.zeros(numcl) globalacc=0 confusion = np.zeros((numcl,numcl)) for cvind in range(numcv): cwacctmp=np.load(os.path.join(savept,'rotavg_cwacc_outercv{:d}.npy'.format(cvind)) ) globalacctmp=np.load(os.path.join(savept,'rotavg_globalacc_outercv{:d}.npy'.format(cvind)) ) confusion_matrixtmp=np.load(os.path.join(savept,'rotavg_confusion_matrix_outercv{:d}.npy'.format(cvind))) globalacc+=globalacctmp / float(numcv) cwacc+=cwacctmp / float(numcv) conf = np.load( os.path.join(savept,'rotavg_confusion_matrix_outercv{:d}.npy'.format(cvind))) confusion+=conf counts = np.sum(confusion, axis=1) nconfusion = np.array(confusion) for r in range(numcl): nconfusion[r,:]= nconfusion[r,:] / np.sum(confusion[r,:] ) for r in range(numcl): print(r, 1 - nconfusion[r,r] ) print(counts) plt.matshow(nconfusion) plt.show() print(globalacc, np.mean(cwacc) ) if __name__=='__main__': runstuff()
1,961
1,109
from keras.models import Model, Sequential from keras.layers import Input, Convolution2D, ZeroPadding2D, MaxPooling2D, Flatten, Dense, Dropout, Activation import numpy as np from os import listdir,path from os.path import isfile, join from PIL import Image from keras.preprocessing.image import load_img, save_img, img_to_array from keras.applications.imagenet_utils import preprocess_input from keras.preprocessing import image # import matplotlib.pyplot as plt import cv2 as cv import boto3 # import sounddevice as sd model = Sequential() model.add(ZeroPadding2D((1,1),input_shape=(224,224, 3))) model.add(Convolution2D(64, (3, 3), activation='relu')) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(64, (3, 3), activation='relu')) model.add(MaxPooling2D((2,2), strides=(2,2))) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(128, (3, 3), activation='relu')) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(128, (3, 3), activation='relu')) model.add(MaxPooling2D((2,2), strides=(2,2))) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(256, (3, 3), activation='relu')) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(256, (3, 3), activation='relu')) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(256, (3, 3), activation='relu')) model.add(MaxPooling2D((2,2), strides=(2,2))) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(512, (3, 3), activation='relu')) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(512, (3, 3), activation='relu')) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(512, (3, 3), activation='relu')) model.add(MaxPooling2D((2,2), strides=(2,2))) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(512, (3, 3), activation='relu')) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(512, (3, 3), activation='relu')) model.add(ZeroPadding2D((1,1))) model.add(Convolution2D(512, (3, 3), activation='relu')) model.add(MaxPooling2D((2,2), strides=(2,2))) model.add(Convolution2D(4096, (7, 7), activation='relu')) model.add(Dropout(0.5)) model.add(Convolution2D(4096, (1, 1), activation='relu')) model.add(Dropout(0.5)) model.add(Convolution2D(2622, (1, 1))) model.add(Flatten()) model.add(Activation('softmax')) model.load_weights('vgg_face_weights.h5') vgg_face_descriptor = Model(inputs=model.layers[0].input, outputs=model.layers[-2].output) def preprocess_image(image_path): img = load_img(image_path, target_size=(224, 224)) img = img_to_array(img) img = np.expand_dims(img, axis=0) img = preprocess_input(img) return img def preprocess_loaded_image(img): img = img_to_array(img) img = np.expand_dims(img, axis=0) img = preprocess_input(img) return img def findCosineSimilarity(source_representation, target_representation): a = np.matmul(np.transpose(source_representation), target_representation) b = np.sum(np.multiply(source_representation, source_representation)) c = np.sum(np.multiply(target_representation, target_representation)) return 1 - (a / (np.sqrt(b) * np.sqrt(c))) def findEuclideanDistance(source_representation, target_representation): euclidean_distance = source_representation - target_representation euclidean_distance = np.sum(np.multiply(euclidean_distance, euclidean_distance)) euclidean_distance = np.sqrt(euclidean_distance) return euclidean_distance face_cascade = cv.CascadeClassifier(join('haarcascades','haarcascade_frontalface_default.xml')) faces_dir='faces' faces={} face_imgs = [f for f in listdir(faces_dir) if isfile(join(faces_dir, f))] for face_file in face_imgs: face_label=path.splitext(face_file)[0] print(face_label) face_representation= vgg_face_descriptor.predict(preprocess_image(join(faces_dir,face_file)))[0,:] faces[face_label]=face_representation def detect_face(img): gray = cv.cvtColor(img, cv.COLOR_BGR2GRAY) faces = face_cascade.detectMultiScale(gray, 1.3, 5) if(len(faces)>0): (x,y,w,h)=faces[0] roi = img[y:y+h, x:x+w] return roi vc = cv.VideoCapture(0) if vc.isOpened(): is_capturing, frame = vc.read() frame = cv.cvtColor(frame, cv.COLOR_BGR2RGB) vc.release() face=detect_face(frame) # plt.imshow(face) face=cv.resize(face,(224,224)) face = face[...,::-1] face_representation= vgg_face_descriptor.predict(preprocess_loaded_image(face))[0,:] min_sim=2 candidate='' for key in faces.keys(): candidate_representation=faces[key] cosine_similarity = findCosineSimilarity(face_representation, candidate_representation) # Should be less then 0.40 euclidean_distance = findEuclideanDistance(face_representation, candidate_representation) #Less then 120 print("Candidate {} CosineSimularity: {}, EuclideanDistance: {}" .format(key, cosine_similarity, euclidean_distance)) if cosine_similarity<min_sim: min_sim=cosine_similarity candidate=key print(candidate) # speak('Hello '+candidate+'. May I help you?') # def speak(text): # response = polly_client.synthesize_speech(VoiceId='Brian',OutputFormat='pcm',SampleRate="8000",Text = text) # stream=response['AudioStream'].read() # sound=np.frombuffer(stream,dtype=np.int16) # sd.play(sound, 8000)
5,282
2,030
"""Module with view functions that serve each uri.""" from datetime import datetime from learning_journal.models.mymodel import Journal from learning_journal.security import is_authenticated from pyramid.httpexceptions import HTTPFound, HTTPNotFound from pyramid.security import NO_PERMISSION_REQUIRED, forget, remember from pyramid.view import view_config @view_config(route_name='home', renderer='learning_journal:templates/index.jinja2', permission='view') def list_view(request): """Pass response to send to index.html page with all entries.""" entries = request.dbsession.query(Journal).all() entries = [entry.to_dict() for entry in entries] return { 'entries': entries } @view_config(route_name='detail', renderer='learning_journal:templates/detail.jinja2', permission='view') def detail_view(request): """Pass response to send to detail page for individual entries.""" target_id = int(request.matchdict['id']) entry = request.dbsession.query(Journal).get(target_id) if not entry: raise HTTPNotFound if request.method == 'GET': return { 'entry': entry.to_dict() } if request.method == "POST": return HTTPFound(request.route_url('edit', id=entry.id)) @view_config(route_name='create', renderer='learning_journal:templates/new.jinja2', permission='secret') def create_view(request): """Pass response to send to new page.""" if request.method == 'GET': return{ 'textarea': 'New Entry' } if request.method == 'POST': new_entry = Journal( title=request.POST['title'], text=request.POST['text'], created=datetime.now() ) request.dbsession.add(new_entry) return HTTPFound(request.route_url('home')) @view_config(route_name='edit', renderer='learning_journal:templates/edit.jinja2', permission='secret') def update_view(request): """Pass response to send to edit page.""" target_id = int(request.matchdict['id']) entry = request.dbsession.query(Journal).get(target_id) if not entry: raise HTTPNotFound if request.method == 'GET': return { 'entry': entry.to_dict() } if request.method == 'POST' and request.POST: entry.title = request.POST['title'] entry.text = request.POST['body'] entry.created = datetime.now() request.dbsession.add(entry) request.dbsession.flush() return HTTPFound(request.route_url('detail', id=entry.id)) @view_config(route_name='delete', permission='secret') def delete_view(request): """Delete a specific entry.""" target_id = int(request.matchdict['id']) entry = request.dbsession.query(Journal).get(target_id) if entry: request.dbsession.delete(entry) return HTTPFound(request.route_url('home')) raise HTTPNotFound @view_config( route_name='login', renderer="learning_journal:templates/login.jinja2", permission=NO_PERMISSION_REQUIRED ) def login(request): """Login view config to authenticate username/password.""" if request.authenticated_userid: return HTTPFound(request.route_url('home')) if request.method == "GET": return {} if request.method == "POST": username = request.POST['username'] password = request.POST['password'] if is_authenticated(username, password): headers = remember(request, username) return HTTPFound(request.route_url('home'), headers=headers) return { 'error': 'Invalid username/password combination.' } @view_config(route_name='logout', permission=NO_PERMISSION_REQUIRED) def logout(request): """Logout view config to redirect to home view.""" headers = forget(request) return HTTPFound(request.route_url('home'), headers=headers)
3,879
1,115
""" Created by Joseph Edradan Github: https://github.com/josephedradan Date created: 3/23/2020 Purpose: The most generic DFS algorithm capable of being modified to Fit your needs. It is also optimized. Details: Description: Notes: IMPORTANT NOTES: Explanation: Time Complexity: Reference: """ from typing import Set, FrozenSet, List # from joseph_resources.decorators._old.callable_called_count import print_callable_called_count, callable_called_count # from joseph_resources.decorators.timer import timer # @timer def get_power_set(list_given: list) -> List[set]: """ Given a list, find the power set of it which is basically all the combinations for all sizes from 0 to length of list_given :param list_given: list given :return: list of a list of solutions """ # Set containing frozensets which are solutions set_frozenset_shared_solutions = set() # type: Set[FrozenSet] # A Temp list that can potentially be a solution list_temp_shared_generic_solution = [] # type: list # Recursive DFS call _get_power_set_helper(list_temp_shared_generic_solution, list_given, set_frozenset_shared_solutions) # Convert frozen set with a tuple list_sets = [set(i) for i in set_frozenset_shared_solutions] # Add the empty set list_sets.append(set()) # Sort the list list_sets.sort() return list_sets # @callable_called_count def _get_power_set_helper(list_temp_shared_generic_solution: list, list_remaining_items: list, set_frozenset_shared_solutions: set) -> None: """ Recursive DFS to get all permutations of a List, but making them unique via frozenset which is a combination Notes: The amount of iterations should be - 1 because empty set is not involved Total iterations (Permutation formula): Less than (Due to not Recursive calling for an empty list_remaining_items) Summation from r = 0 to n of (n!)/((n-r)!) where r = sample size == len(list_remaining_items) n = number of objects == len(list_remaining_items) (n!)/((n-r)!) = permutation formula Power Set iterations: Greater than Summation from r = 0 to n of (n!)/(r!(n-r)!) == 2^(len(list_remaining_items)) where r = sample size == len(list_remaining_items) n = number of objects == len(list_remaining_items) (n!)/(r!(n-r)!) = combination formula :param list_temp_shared_generic_solution: Temporary List of the current permutation (temp List is shared) :param list_remaining_items: List of remaining items that need to be added to list_temp_shared_generic_solution :param set_frozenset_shared_solutions: Set of a frozensets that are to solutions :return: None """ # Loop through the length of list_remaining_items for i in range(len(list_remaining_items)): # Add the indexed item into the temp List list_temp_shared_generic_solution.append(list_remaining_items[i]) # Create a copy of list_remaining_items list_remaining_items_new = list_remaining_items.copy() # Pop off the item with the index number list_remaining_items_new.pop(i) # Add a frozenset (immutable) which is hashable in a set (mutable) set_frozenset_shared_solutions.add(frozenset(list_temp_shared_generic_solution)) # Don't recursive call if list_remaining_items_new is empty because you loop for no reason with a range(0) if list_remaining_items_new: # Recursive call into this function _get_power_set_helper(list_temp_shared_generic_solution, list_remaining_items_new, set_frozenset_shared_solutions) # Pop from list_temp_permutation for a new permutation list_temp_shared_generic_solution.pop() def test_example(): solution = get_power_set([1, 2, 3, 4, 5]) for i in solution: print(i) print(len(solution)) # print_callable_called_count() """ Callable: get_power_set Callable ran in 0.001001119613647461 Sec set() {1, 3, 5} {1, 4} {2} {3} {2, 3} {4} {3, 4} {2, 4} {2, 3, 4} {4, 5} {1} {5} {3, 5} {2, 3, 5} {3, 4, 5} {1, 3} {1, 2, 3} {1, 3, 4} {1, 5} {1, 4, 5} {1, 2} {2, 5} {2, 4, 5} {1, 2, 4, 5} {2, 3, 4, 5} {1, 2, 5} {1, 2, 4} {1, 2, 3, 4} {1, 3, 4, 5} {1, 2, 3, 5} {1, 2, 3, 4, 5} 32 Callable: _get_power_set_helper Callable Call Count: 206 """ if __name__ == '__main__': test_example()
4,854
1,685
from django.db import models import json class ParametersMM(): corGrafico = { "Novos Casos": "pink", "Média Móvel": "red" } def cores(self, tipo): cores = [] for cat in self.categorias(self, tipo): cores.append(self.corGrafico[cat]) return cores def categorias(self, tipo, comData = False): categorias = [] if(tipo == "media-movel"): categorias = [ "Novos Casos", "Média Móvel" ] if comData == True: categorias.insert(0, "Data") return categorias
657
200
import json import logging from PyQt5.QtCore import QObject, pyqtSignal from ..core.constants import ( API_TEST_CASE_RECORD_TYPE, HTTP_EXCHANGE_RECORD_TYPE, ENVIRONMENT_RECORD_TYPE, PROJECT_INFO_RECORD_TYPE, APP_STATE_RECORD_TYPE, API_CALL_RECORD_TYPE, ) from ..model.app_data import ( ApiCall, AppData, ApiTestCase, HttpExchange, Environment, ProjectInfo, AppState, ) class AppDataReadSignals(QObject): api_call_change_selection = pyqtSignal(ApiCall) initial_cache_loading_completed = pyqtSignal() class AppDataReader(AppData): def __init__(self, db_table): self.ldb = db_table self.signals = AppDataReadSignals() def get_all_api_calls_from_db(self): table = self.ldb[API_CALL_RECORD_TYPE] api_calls_db = table.find(name=API_CALL_RECORD_TYPE) return { api_db["api_call_id"]: ApiCall.from_json(json.loads(api_db["object"])) for api_db in api_calls_db } def get_api_call_from_db(self, api_call_id): logging.info(f"DB: {api_call_id} - Getting API call") table = self.ldb[API_CALL_RECORD_TYPE] obj_db = table.find_one(name=API_CALL_RECORD_TYPE, api_call_id=api_call_id) if not obj_db: return ApiCall.from_json() return ApiCall.from_json(json.loads(obj_db["object"])) def get_api_test_case_from_db(self, api_call_id): table = self.ldb[API_TEST_CASE_RECORD_TYPE] obj_db = table.find_one(name=API_TEST_CASE_RECORD_TYPE, api_call_id=api_call_id) if not obj_db: return ApiTestCase.from_json(None, api_call_id) return ApiTestCase.from_json(json.loads(obj_db["object"]), api_call_id) def get_api_call_exchanges_from_db(self, doc_id): table = self.ldb[HTTP_EXCHANGE_RECORD_TYPE] http_exchanges_db = table.find( name=HTTP_EXCHANGE_RECORD_TYPE, api_call_id=doc_id ) return [ HttpExchange.from_json(json.loads(obj["object"])) for obj in http_exchanges_db if obj["api_call_id"] == doc_id ] def get_api_call_exchanges(self, doc_id): return self.get_api_call_exchanges_from_db(doc_id) def get_http_exchange_from_db(self, exchange_id): table = self.ldb[HTTP_EXCHANGE_RECORD_TYPE] http_exchange_db = table.find_one(exchange_id=exchange_id) if not http_exchange_db: raise LookupError(f"Unable to find exchange with id: {exchange_id}") http_exchange_json = json.loads(http_exchange_db["object"]) return HttpExchange.from_json(http_exchange_json) def get_environments_from_db(self): table = self.ldb[ENVIRONMENT_RECORD_TYPE] environments_db = table.find(name=ENVIRONMENT_RECORD_TYPE) if not environments_db: return [] return [ Environment.from_json(json.loads(obj["object"])) for obj in environments_db ] def get_selected_environment_from_db(self, environment_name): table = self.ldb[ENVIRONMENT_RECORD_TYPE] environment_db = table.find_one(environment_name=environment_name) if not environment_db: return None environment_json = json.loads(environment_db["object"]) return Environment.from_json(environment_json) def get_or_create_project_info(self): table = self.ldb[PROJECT_INFO_RECORD_TYPE] project_info_db = table.find_one(name=PROJECT_INFO_RECORD_TYPE) if not project_info_db: return ProjectInfo.from_json(None) project_info_json = json.loads(project_info_db["object"]) return ProjectInfo.from_json(project_info_json) def get_appstate_environment(self): app_state = self.get_app_state() return app_state.selected_env def get_app_state(self): table = self.ldb[APP_STATE_RECORD_TYPE] app_state_db = table.find_one(name=APP_STATE_RECORD_TYPE) if not app_state_db: return AppState.from_json() app_state_json = json.loads(app_state_db["object"]) return AppState.from_json(app_state_json)
4,151
1,440
import unittest from dfttopif.parsers.pwscf import PwscfParser from ..test_pif import unpack_example, delete_example from pypif.obj.common.value import Value import os import shutil class TestPWSCFParser(unittest.TestCase): def get_parser(self,name): '''Get a PwscfParser for a certain test''' unpack_example(os.path.join('examples', 'pwscf', name+'.tar.gz')) return PwscfParser.generate_from_directory(name) def test_Au_nscf(self): """Test that a NSCF calculation is even parseable""" # Parse the results parser = self.get_parser('Au.nscf') # Test the settings self.assertEquals('PWSCF', parser.get_name()) def test_NaF(self): # Parse the results parser = self.get_parser('NaF.scf') # Test the settings self.assertEquals('PWSCF', parser.get_name()) strc = parser.get_output_structure() self.assertEquals(2.2713025676424632, strc.cell[0][2]) self.assertEquals(['F', 'Na'], strc.get_chemical_symbols()) self.assertEquals('FNa', parser.get_composition()) # Test the density self.assertAlmostEqual(2.975233747, parser.get_density().scalars[0].value) self.assertEqual("g/(cm^3)", parser.get_density().units) cutoff = parser.get_cutoff_energy() self.assertEquals(50.0, cutoff.scalars[0].value) self.assertEquals('Ry', cutoff.units) self.assertTrue(parser.is_converged().scalars[0].value) energy = parser.get_total_energy() self.assertEquals(-143.96084355, energy.scalars[0].value) self.assertEquals('Ry', energy.units) self.assertEquals(-83.49879681, parser.get_one_electron_energy_contribution().scalars[0].value) self.assertEquals(48.83409529, parser.get_hartree_energy_contribution().scalars[0].value) self.assertEquals(-23.86775310, parser.get_xc_energy_contribution().scalars[0].value) self.assertEquals(-85.42838893, parser.get_ewald_energy_contribution().scalars[0].value) self.assertEquals(None, parser.uses_SOC()) self.assertEquals(None, parser.is_relaxed()) self.assertEquals('SLA PW PBE PBE', parser.get_xc_functional().scalars[0].value) self.assertEquals(['f_pbe_v1.4.uspp.F.UPF','Na_pbe_v1.uspp.F.UPF'], list(map(lambda x: x.value, parser.get_pp_name().scalars))) self.assertEquals(3456, parser.get_KPPRA().scalars[0].value) self.assertEquals('5.4.0', parser.get_version_number()) self.assertEquals(None, parser.get_U_settings()) self.assertEquals(None, parser.get_vdW_settings()) self.assertEquals(None, parser.get_pressure()) self.assertEquals(None, parser.get_stresses()) self.assertEquals(None, parser.get_band_gap()) self.assertEquals(None, parser.get_dos()) # Delete the data delete_example('NaF.scf') def test_TiO2(self): # Parse the results parser = self.get_parser('TiO2.vcrelax') # Test the settings self.assertEquals('PWSCF', parser.get_name()) strc = parser.get_output_structure() self.assertEquals(3.7373367889445048, strc.cell[0][0]) self.assertEquals(['Ti', 'Ti', 'Ti', 'Ti', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O'], strc.get_chemical_symbols()) self.assertEquals('O8Ti4', parser.get_composition()) cutoff = parser.get_cutoff_energy() self.assertEquals(50.0, cutoff.scalars[0].value) self.assertEquals('Ry', cutoff.units) self.assertTrue(parser.is_converged().scalars[0].value) energy = parser.get_total_energy() self.assertAlmostEqual(-724.67999404, energy.scalars[0].value) self.assertEquals('Ry', energy.units) self.assertEquals(None, parser.uses_SOC()) self.assertTrue(isinstance(parser.is_relaxed(), Value)) self.assertEquals('SLA PZ NOGX NOGC', parser.get_xc_functional().scalars[0].value) self.assertEquals(['Ti.pz-sp-van_ak.UPF', 'O.pz-van_ak.UPF'], list(map(lambda x: x.value, parser.get_pp_name().scalars))) self.assertEquals(4800, parser.get_KPPRA().scalars[0].value) self.assertEquals('4.3.2', parser.get_version_number()) self.assertEquals(None, parser.get_U_settings()) self.assertEquals(None, parser.get_vdW_settings()) pressure = parser.get_pressure() self.assertEquals(-2.34, pressure.scalars[0].value) self.assertEquals('kbar', pressure.units) stresses = parser.get_stresses() self.assertEquals([[-2.32, 0.0, 0.0], [0.0, -2.32, 0.0], [0.0, 0.0, -2.36]], list(map(lambda x: list(map(lambda y: y.value, x)), stresses.matrices[0]))) self.assertEquals('kbar', stresses.units) self.assertEquals(None, parser.get_band_gap()) self.assertAlmostEqual(0.000141, parser.get_total_force().scalars[0].value) self.assertAlmostEqual(0.00005032, parser.get_forces().vectors[11][2].value) # Test energy contribution terms (from the end of the calculation) self.assertAlmostEqual(-317.64355286, parser.get_one_electron_energy_contribution().scalars[0].value) self.assertAlmostEqual(200.00443558, parser.get_hartree_energy_contribution().scalars[0].value) self.assertAlmostEqual(-112.62810014, parser.get_xc_energy_contribution().scalars[0].value) self.assertAlmostEqual(-494.41277661, parser.get_ewald_energy_contribution().scalars[0].value) # Delete the data delete_example('TiO2.vcrelax') def test_VS2(self): # Parse the results parser = self.get_parser('VS2.scf') # Test the settings self.assertEquals('PWSCF', parser.get_name()) strc = parser.get_output_structure() self.assertEquals(1.5862881841690908, strc.cell[0][0]) self.assertEquals(2.7475322138658069, strc.cell[1][1]) self.assertEquals(39.999449897411992, strc.cell[2][2]) self.assertEquals(['V', 'S', 'S'], strc.get_chemical_symbols()) self.assertEquals('S2V', parser.get_composition()) cutoff = parser.get_cutoff_energy() self.assertEquals(56.0, cutoff.scalars[0].value) self.assertEquals('Ry', cutoff.units) self.assertTrue(parser.is_converged().scalars[0].value) energy = parser.get_total_energy() self.assertEquals(-68.80612326, energy.scalars[0].value) self.assertEquals('Ry', energy.units) self.assertEquals(None, parser.uses_SOC()) self.assertEquals(None, parser.is_relaxed()) self.assertEquals('SLA PW PBE PBE', parser.get_xc_functional().scalars[0].value) self.assertEquals(['V.pbe-n-van.UPF', 'S.pbe-van_bm.UPF'], list(map(lambda x: x.value, parser.get_pp_name().scalars))) self.assertEquals(768, parser.get_KPPRA().scalars[0].value) self.assertEquals('4.3.2', parser.get_version_number()) self.assertEquals(None, parser.get_U_settings()) self.assertEquals(None, parser.get_vdW_settings()) self.assertEquals(None, parser.get_pressure()) self.assertEquals(None, parser.get_stresses()) self.assertEquals(0, parser.get_band_gap().scalars[0].value) dos = parser.get_dos() self.assertEquals([-14.3248, -14.3198, -14.314799999999998, -14.3098, -14.3048, -14.299800000000001, -14.294799999999999, -14.2898, -14.2848, -14.279799999999998, -14.274799999999999, -14.2698, -14.264800000000001, -14.259799999999998, -14.2548, -14.2498, -14.244799999999998, -14.239799999999999, -14.2348, -14.229800000000001, -14.224799999999998, -14.2198, -14.2148, -14.209800000000001, -14.204799999999999, -14.1998, -14.1948, -14.189799999999998, -14.1848, -14.1798, -14.174800000000001, -14.169799999999999, -14.1648, -14.1598, -14.154799999999998, -14.149799999999999, -14.1448, -14.139800000000001, -14.134799999999998, -14.1298, -14.1248, -14.119799999999998, -14.114799999999999, -14.1098, -14.104800000000001, -14.099799999999998, -14.0948, -14.0898, -14.084800000000001, -14.079799999999999, -14.0748, -14.0698, -14.064799999999998, -14.0598, -14.0548, -14.049800000000001, -14.044799999999999, -14.0398, -14.0348, -14.029799999999998, -14.024799999999999, -14.0198, -14.014800000000001, -14.009799999999998, -14.0048, -13.9998, -13.994799999999998, -13.989799999999999, -13.9848, -13.979800000000001, -13.974799999999998, -13.9698, -13.9648, -13.959800000000001, -13.954799999999999, -13.9498, -13.9448, -13.939799999999998, -13.9348, -13.9298, -13.924800000000001, -13.919799999999999, -13.9148, -13.9098, -13.904799999999998, -13.899799999999999, -13.8948, -13.889800000000001, -13.884799999999998, -13.8798, -13.8748, -13.869799999999998, -13.864799999999999, -13.8598, -13.854800000000001, -13.849799999999998, -13.8448, -13.8398, -13.834800000000001, -13.829799999999999, -13.8248, -13.8198, -13.814799999999998, -13.8098, -13.8048, -13.799800000000001, -13.794799999999999, -13.7898, -13.7848, -13.779799999999998, -13.774799999999999, -13.7698, -13.764800000000001, -13.759799999999998, -13.7548, -13.7498, -13.744799999999998, -13.739799999999999, -13.7348, -13.729800000000001, -13.724799999999998, -13.7198, -13.7148, -13.709800000000001, -13.704799999999999, -13.6998, -13.6948, -13.689799999999998, -13.6848, -13.6798, -13.674800000000001, -13.669799999999999, -13.6648, -13.6598, -13.654799999999998, -13.649799999999999, -13.6448, -13.639800000000001, -13.634799999999998, -13.6298, -13.6248, -13.619799999999998, -13.614799999999999, -13.6098, -13.604800000000001, -13.599799999999998, -13.5948, -13.5898, -13.584800000000001, -13.579799999999999, -13.5748, -13.5698, -13.564799999999998, -13.5598, -13.5548, -13.549800000000001, -13.544799999999999, -13.5398, -13.5348, -13.529799999999998, -13.524799999999999, -13.5198, -13.514800000000001, -13.509799999999998, -13.5048, -13.4998, -13.494799999999998, -13.489799999999999, -13.4848, -13.479800000000001, -13.474799999999998, -13.4698, -13.4648, -13.459800000000001, -13.454799999999999, -13.4498, -13.4448, -13.439799999999998, -13.4348, -13.4298, -13.424800000000001, -13.419799999999999, -13.4148, -13.4098, -13.404799999999998, -13.399799999999999, -13.3948, -13.389800000000001, -13.384799999999998, -13.3798, -13.3748, -13.369799999999998, -13.364799999999999, -13.3598, -13.354800000000001, -13.349799999999998, -13.3448, -13.3398, -13.334800000000001, -13.329799999999999, -13.3248, -13.3198, -13.314799999999998, -13.3098, -13.3048, -13.299800000000001, -13.294799999999999, -13.2898, -13.2848, -13.279799999999998, -13.274799999999999, -13.2698, -13.264800000000001, -13.259799999999998, -13.2548, -13.2498, -13.244799999999998, -13.239799999999999, -13.2348, -13.229800000000001, -13.224799999999998, -13.2198, -13.2148, -13.209800000000001, -13.204799999999999, -13.1998, -13.1948, -13.189799999999998, -13.1848, -13.1798, -13.174800000000001, -13.169799999999999, -13.1648, -13.1598, -13.154799999999998, -13.149799999999999, -13.1448, -13.139800000000001, -13.134799999999998, -13.1298, -13.1248, -13.119799999999998, -13.114799999999999, -13.1098, -13.104800000000001, -13.099799999999998, -13.0948, -13.0898, -13.084800000000001, -13.079799999999999, -13.0748, -13.0698, -13.064799999999998, -13.0598, -13.0548, -13.049800000000001, -13.044799999999999, -13.0398, -13.0348, -13.029799999999998, -13.024799999999999, -13.0198, -13.014800000000001, -13.009799999999998, -13.0048, -12.9998, -12.994799999999998, -12.989799999999999, -12.9848, -12.979800000000001, -12.974799999999998, -12.9698, -12.9648, -12.959800000000001, -12.954799999999999, -12.9498, -12.9448, -12.939799999999998, -12.9348, -12.9298, -12.924800000000001, -12.919799999999999, -12.9148, -12.9098, -12.904799999999998, -12.899799999999999, -12.8948, -12.889800000000001, -12.884799999999998, -12.8798, -12.8748, -12.869799999999998, -12.864799999999999, -12.8598, -12.854800000000001, -12.849799999999998, -12.8448, -12.8398, -12.834800000000001, -12.829799999999999, -12.8248, -12.8198, -12.814799999999998, -12.8098, -12.8048, -12.799800000000001, -12.794799999999999, -12.7898, -12.7848, -12.779799999999998, -12.774799999999999, -12.7698, -12.764800000000001, -12.759799999999998, -12.7548, -12.7498, -12.744799999999998, -12.739799999999999, -12.7348, -12.729800000000001, -12.724799999999998, -12.7198, -12.7148, -12.709800000000001, -12.704799999999999, -12.6998, -12.6948, -12.689799999999998, -12.6848, -12.6798, -12.674800000000001, -12.669799999999999, -12.6648, -12.6598, -12.654799999999998, -12.649799999999999, -12.6448, -12.639800000000001, -12.634799999999998, -12.6298, -12.6248, -12.619799999999998, -12.614799999999999, -12.6098, -12.604800000000001, -12.599799999999998, -12.5948, -12.5898, -12.584800000000001, -12.579799999999999, -12.5748, -12.5698, -12.564799999999998, -12.5598, -12.5548, -12.549800000000001, -12.544799999999999, -12.5398, -12.5348, -12.529799999999998, -12.524799999999999, -12.5198, -12.514800000000001, -12.509799999999998, -12.5048, -12.4998, -12.494799999999998, -12.489799999999999, -12.4848, -12.479800000000001, -12.474799999999998, -12.4698, -12.4648, -12.459800000000001, -12.454799999999999, -12.4498, -12.4448, -12.439799999999998, -12.4348, -12.4298, -12.424800000000001, -12.419799999999999, -12.4148, -12.4098, -12.404799999999998, -12.399799999999999, -12.3948, -12.389800000000001, -12.384799999999998, -12.3798, -12.3748, -12.369799999999998, -12.364799999999999, -12.3598, -12.354800000000001, -12.349799999999998, -12.3448, -12.3398, -12.334800000000001, -12.329799999999999, -12.3248, -12.3198, -12.314799999999998, -12.3098, -12.3048, -12.299800000000001, -12.294799999999999, -12.2898, -12.2848, -12.279799999999998, -12.274799999999999, -12.2698, -12.264800000000001, -12.259799999999998, -12.2548, -12.2498, -12.244799999999998, -12.239799999999999, -12.2348, -12.229800000000001, -12.224799999999998, -12.2198, -12.2148, -12.209800000000001, -12.204799999999999, -12.1998, -12.1948, -12.189799999999998, -12.1848, -12.1798, -12.174800000000001, -12.169799999999999, -12.1648, -12.1598, -12.154799999999998, -12.149799999999999, -12.1448, -12.139800000000001, -12.134799999999998, -12.1298, -12.1248, -12.119799999999998, -12.114799999999999, -12.1098, -12.104800000000001, -12.099799999999998, -12.0948, -12.0898, -12.084800000000001, -12.079799999999999, -12.0748, -12.0698, -12.064799999999998, -12.0598, -12.0548, -12.049800000000001, -12.044799999999999, -12.0398, -12.034799999999999, -12.0298, -12.024799999999999, -12.0198, -12.0148, -12.0098, -12.0048, -11.9998, -11.9948, -11.989799999999999, -11.9848, -11.9798, -11.9748, -11.9698, -11.9648, -11.9598, -11.954799999999999, -11.9498, -11.944799999999999, -11.9398, -11.9348, -11.9298, -11.9248, -11.9198, -11.9148, -11.909799999999999, -11.9048, -11.899799999999999, -11.8948, -11.8898, -11.8848, -11.8798, -11.8748, -11.8698, -11.864799999999999, -11.8598, -11.8548, -11.8498, -11.8448, -11.8398, -11.8348, -11.829799999999999, -11.8248, -11.819799999999999, -11.8148, -11.8098, -11.8048, -11.7998, -11.7948, -11.7898, -11.784799999999999, -11.7798, -11.774799999999999, -11.7698, -11.7648, -11.7598, -11.7548, -11.7498, -11.7448, -11.739799999999999, -11.7348, -11.7298, -11.7248, -11.7198, -11.7148, -11.7098, -11.704799999999999, -11.6998, -11.694799999999999, -11.6898, -11.6848, -11.6798, -11.6748, -11.6698, -11.6648, -11.659799999999999, -11.6548, -11.649799999999999, -11.6448, -11.6398, -11.6348, -11.6298, -11.6248, -11.6198, -11.614799999999999, -11.6098, -11.6048, -11.5998, -11.5948, -11.5898, -11.5848, -11.579799999999999, -11.5748, -11.569799999999999, -11.5648, -11.5598, -11.5548, -11.5498, -11.5448, -11.5398, -11.534799999999999, -11.5298, -11.524799999999999, -11.5198, -11.5148, -11.5098, -11.5048, -11.4998, -11.4948, -11.489799999999999, -11.4848, -11.4798, -11.4748, -11.4698, -11.4648, -11.4598, -11.454799999999999, -11.4498, -11.444799999999999, -11.4398, -11.4348, -11.4298, -11.4248, -11.4198, -11.4148, -11.409799999999999, -11.4048, -11.399799999999999, -11.3948, -11.3898, -11.3848, -11.3798, -11.3748, -11.3698, -11.364799999999999, -11.3598, -11.3548, -11.3498, -11.3448, -11.3398, -11.3348, -11.329799999999999, -11.3248, -11.319799999999999, -11.3148, -11.3098, -11.3048, -11.2998, -11.2948, -11.2898, -11.284799999999999, -11.2798, -11.274799999999999, -11.2698, -11.2648, -11.2598, -11.2548, -11.2498, -11.2448, -11.239799999999999, -11.2348, -11.2298, -11.2248, -11.2198, -11.2148, -11.2098, -11.204799999999999, -11.1998, -11.194799999999999, -11.1898, -11.1848, -11.1798, -11.1748, -11.1698, -11.1648, -11.159799999999999, -11.1548, -11.149799999999999, -11.1448, -11.1398, -11.1348, -11.1298, -11.1248, -11.1198, -11.114799999999999, -11.1098, -11.1048, -11.0998, -11.0948, -11.0898, -11.0848, -11.079799999999999, -11.0748, -11.069799999999999, -11.0648, -11.0598, -11.0548, -11.0498, -11.0448, -11.0398, -11.034799999999999, -11.0298, -11.024799999999999, -11.0198, -11.0148, -11.0098, -11.0048, -10.9998, -10.9948, -10.989799999999999, -10.9848, -10.9798, -10.9748, -10.9698, -10.9648, -10.9598, -10.954799999999999, -10.9498, -10.944799999999999, -10.9398, -10.9348, -10.9298, -10.9248, -10.9198, -10.9148, -10.909799999999999, -10.9048, -10.899799999999999, -10.8948, -10.8898, -10.8848, -10.8798, -10.8748, -10.8698, -10.864799999999999, -10.8598, -10.8548, -10.8498, -10.8448, -10.8398, -10.8348, -10.829799999999999, -10.8248, -10.819799999999999, -10.8148, -10.8098, -10.8048, -10.7998, -10.7948, -10.7898, -10.784799999999999, -10.7798, -10.774799999999999, -10.7698, -10.7648, -10.7598, -10.7548, -10.7498, -10.7448, -10.739799999999999, -10.7348, -10.7298, -10.7248, -10.7198, -10.7148, -10.7098, -10.704799999999999, -10.6998, -10.694799999999999, -10.6898, -10.6848, -10.6798, -10.6748, -10.6698, -10.6648, -10.659799999999999, -10.6548, -10.649799999999999, -10.6448, -10.6398, -10.6348, -10.6298, -10.6248, -10.6198, -10.614799999999999, -10.6098, -10.6048, -10.5998, -10.5948, -10.5898, -10.5848, -10.579799999999999, -10.5748, -10.569799999999999, -10.5648, -10.5598, -10.5548, -10.5498, -10.5448, -10.5398, -10.534799999999999, -10.5298, -10.524799999999999, -10.5198, -10.5148, -10.5098, -10.5048, -10.4998, -10.4948, -10.489799999999999, -10.4848, -10.4798, -10.4748, -10.4698, -10.4648, -10.4598, -10.454799999999999, -10.4498, -10.444799999999999, -10.4398, -10.4348, -10.4298, -10.4248, -10.4198, -10.4148, -10.409799999999999, -10.4048, -10.399799999999999, -10.3948, -10.3898, -10.3848, -10.3798, -10.3748, -10.3698, -10.364799999999999, -10.3598, -10.3548, -10.3498, -10.3448, -10.3398, -10.3348, -10.329799999999999, -10.3248, -10.319799999999999, -10.3148, -10.3098, -10.3048, -10.2998, -10.2948, -10.2898, -10.284799999999999, -10.2798, -10.274799999999999, -10.2698, -10.2648, -10.2598, -10.2548, -10.2498, -10.2448, -10.239799999999999, -10.2348, -10.2298, -10.2248, -10.2198, -10.2148, -10.2098, -10.204799999999999, -10.1998, -10.194799999999999, -10.1898, -10.1848, -10.1798, -10.1748, -10.1698, -10.1648, -10.159799999999999, -10.1548, -10.149799999999999, -10.1448, -10.1398, -10.1348, -10.1298, -10.1248, -10.1198, -10.114799999999999, -10.1098, -10.1048, -10.0998, -10.0948, -10.0898, -10.0848, -10.079799999999999, -10.0748, -10.069799999999999, -10.0648, -10.0598, -10.0548, -10.0498, -10.0448, -10.0398, -10.034799999999999, -10.0298, -10.024799999999999, -10.0198, -10.0148, -10.0098, -10.0048, -9.9998, -9.9948, -9.989799999999999, -9.9848, -9.9798, -9.9748, -9.9698, -9.9648, -9.9598, -9.954799999999999, -9.9498, -9.944799999999999, -9.9398, -9.9348, -9.9298, -9.9248, -9.9198, -9.9148, -9.909799999999999, -9.9048, -9.899799999999999, -9.8948, -9.8898, -9.8848, -9.8798, -9.8748, -9.8698, -9.864799999999999, -9.8598, -9.8548, -9.8498, -9.8448, -9.8398, -9.8348, -9.829799999999999, -9.8248, -9.819799999999999, -9.8148, -9.8098, -9.8048, -9.7998, -9.7948, -9.7898, -9.784799999999999, -9.7798, -9.774799999999999, -9.7698, -9.7648, -9.7598, -9.7548, -9.7498, -9.7448, -9.739799999999999, -9.7348, -9.7298, -9.7248, -9.7198, -9.7148, -9.7098, -9.704799999999999, -9.6998, -9.694799999999999, -9.6898, -9.6848, -9.6798, -9.6748, -9.6698, -9.6648, -9.659799999999999, -9.6548, -9.649799999999999, -9.6448, -9.6398, -9.6348, -9.6298, -9.6248, -9.6198, -9.614799999999999, -9.6098, -9.6048, -9.5998, -9.5948, -9.5898, -9.5848, -9.579799999999999, -9.5748, -9.569799999999999, -9.5648, -9.5598, -9.5548, -9.5498, -9.5448, -9.5398, -9.534799999999999, -9.5298, -9.524799999999999, -9.5198, -9.5148, -9.5098, -9.5048, -9.4998, -9.4948, -9.489799999999999, -9.4848, -9.4798, -9.4748, -9.4698, -9.4648, -9.4598, -9.454799999999999, -9.4498, -9.444799999999999, -9.4398, -9.4348, -9.4298, -9.4248, -9.4198, -9.4148, -9.409799999999999, -9.4048, -9.399799999999999, -9.3948, -9.3898, -9.3848, -9.3798, -9.3748, -9.3698, -9.364799999999999, -9.3598, -9.3548, -9.3498, -9.3448, -9.3398, -9.3348, -9.329799999999999, -9.3248, -9.319799999999999, -9.3148, -9.3098, -9.3048, -9.2998, -9.2948, -9.2898, -9.284799999999999, -9.2798, -9.274799999999999, -9.2698, -9.2648, -9.2598, -9.2548, -9.2498, -9.2448, -9.239799999999999, -9.2348, -9.2298, -9.2248, -9.2198, -9.2148, -9.2098, -9.204799999999999, -9.1998, -9.194799999999999, -9.1898, -9.1848, -9.1798, -9.1748, -9.1698, -9.1648, -9.159799999999999, -9.1548, -9.149799999999999, -9.1448, -9.1398, -9.1348, -9.1298, -9.1248, -9.1198, -9.114799999999999, -9.1098, -9.1048, -9.0998, -9.0948, -9.0898, -9.0848, -9.079799999999999, -9.0748, -9.069799999999999, -9.0648, -9.0598, -9.0548, -9.0498, -9.0448, -9.0398, -9.034799999999999, -9.0298, -9.024799999999999, -9.0198, -9.0148, -9.0098, -9.0048, -8.9998, -8.9948, -8.989799999999999, -8.9848, -8.9798, -8.9748, -8.9698, -8.9648, -8.9598, -8.954799999999999, -8.9498, -8.944799999999999, -8.9398, -8.9348, -8.9298, -8.9248, -8.9198, -8.9148, -8.909799999999999, -8.9048, -8.899799999999999, -8.8948, -8.8898, -8.8848, -8.8798, -8.8748, -8.8698, -8.864799999999999, -8.8598, -8.8548, -8.8498, -8.8448, -8.8398, -8.8348, -8.829799999999999, -8.8248, -8.819799999999999, -8.8148, -8.8098, -8.8048, -8.7998, -8.7948, -8.7898, -8.784799999999999, -8.7798, -8.774799999999999, -8.7698, -8.7648, -8.7598, -8.7548, -8.7498, -8.7448, -8.739799999999999, -8.7348, -8.7298, -8.7248, -8.7198, -8.7148, -8.7098, -8.704799999999999, -8.6998, -8.694799999999999, -8.6898, -8.6848, -8.6798, -8.6748, -8.6698, -8.6648, -8.659799999999999, -8.6548, -8.649799999999999, -8.6448, -8.6398, -8.6348, -8.6298, -8.6248, -8.6198, -8.614799999999999, -8.6098, -8.6048, -8.5998, -8.5948, -8.5898, -8.5848, -8.579799999999999, -8.5748, -8.569799999999999, -8.5648, -8.5598, -8.5548, -8.5498, -8.5448, -8.5398, -8.534799999999999, -8.5298, -8.524799999999999, -8.5198, -8.5148, -8.5098, -8.5048, -8.4998, -8.4948, -8.489799999999999, -8.4848, -8.4798, -8.4748, -8.4698, -8.4648, -8.4598, -8.454799999999999, -8.4498, -8.444799999999999, -8.4398, -8.4348, -8.4298, -8.4248, -8.4198, -8.4148, -8.409799999999999, -8.4048, -8.399799999999999, -8.3948, -8.3898, -8.3848, -8.3798, -8.3748, -8.3698, -8.364799999999999, -8.3598, -8.3548, -8.3498, -8.3448, -8.3398, -8.3348, -8.329799999999999, -8.3248, -8.319799999999999, -8.3148, -8.3098, -8.3048, -8.2998, -8.2948, -8.2898, -8.284799999999999, -8.2798, -8.274799999999999, -8.2698, -8.2648, -8.2598, -8.2548, -8.2498, -8.2448, -8.239799999999999, -8.2348, -8.2298, -8.2248, -8.2198, -8.2148, -8.2098, -8.204799999999999, -8.1998, -8.194799999999999, -8.1898, -8.1848, -8.1798, -8.1748, -8.1698, -8.1648, -8.159799999999999, -8.1548, -8.149799999999999, -8.1448, -8.1398, -8.1348, -8.1298, -8.1248, -8.1198, -8.114799999999999, -8.1098, -8.1048, -8.0998, -8.0948, -8.0898, -8.0848, -8.079799999999999, -8.0748, -8.069799999999999, -8.0648, -8.0598, -8.0548, -8.0498, -8.0448, -8.0398, -8.034799999999999, -8.0298, -8.024799999999999, -8.0198, -8.0148, -8.0098, -8.0048, -7.9998000000000005, -7.9948, -7.989799999999999, -7.9848, -7.979799999999999, -7.9748, -7.969799999999999, -7.9648, -7.9597999999999995, -7.954799999999999, -7.9498, -7.944799999999999, -7.9398, -7.934799999999999, -7.9298, -7.924799999999999, -7.9198, -7.9148, -7.909799999999999, -7.9048, -7.899799999999999, -7.8948, -7.889799999999999, -7.8848, -7.8797999999999995, -7.8748000000000005, -7.8698, -7.864799999999999, -7.8598, -7.854799999999999, -7.8498, -7.844799999999999, -7.8398, -7.8347999999999995, -7.829799999999999, -7.8248, -7.819799999999999, -7.8148, -7.809799999999999, -7.8048, -7.799799999999999, -7.7948, -7.7898, -7.784799999999999, -7.7798, -7.774799999999999, -7.7698, -7.764799999999999, -7.7598, -7.7547999999999995, -7.7498000000000005, -7.7448, -7.739799999999999, -7.7348, -7.729799999999999, -7.7248, -7.719799999999999, -7.7148, -7.7097999999999995, -7.704799999999999, -7.6998, -7.694799999999999, -7.6898, -7.684799999999999, -7.6798, -7.674799999999999, -7.6698, -7.6648, -7.659799999999999, -7.6548, -7.649799999999999, -7.6448, -7.639799999999999, -7.6348, -7.6297999999999995, -7.6248000000000005, -7.6198, -7.614799999999999, -7.6098, -7.604799999999999, -7.5998, -7.594799999999999, -7.5898, -7.5847999999999995, -7.579799999999999, -7.5748, -7.569799999999999, -7.5648, -7.559799999999999, -7.5548, -7.549799999999999, -7.5448, -7.5398, -7.534799999999999, -7.5298, -7.524799999999999, -7.5198, -7.514799999999999, -7.5098, -7.5047999999999995, -7.4998000000000005, -7.4948, -7.489799999999999, -7.4848, -7.479799999999999, -7.4748, -7.469799999999999, -7.4648, -7.4597999999999995, -7.454799999999999, -7.4498, -7.444799999999999, -7.4398, -7.434799999999999, -7.4298, -7.424799999999999, -7.4198, -7.4148, -7.409799999999999, -7.4048, -7.399799999999999, -7.3948, -7.389799999999999, -7.3848, -7.3797999999999995, -7.3748000000000005, -7.3698, -7.364799999999999, -7.3598, -7.354799999999999, -7.3498, -7.344799999999999, -7.3398, -7.3347999999999995, -7.329799999999999, -7.3248, -7.319799999999999, -7.3148, -7.309799999999999, -7.3048, -7.299799999999999, -7.2948, -7.2898, -7.284799999999999, -7.2798, -7.274799999999999, -7.2698, -7.264799999999999, -7.2598, -7.2547999999999995, -7.2498000000000005, -7.2448, -7.239799999999999, -7.2348, -7.229799999999999, -7.2248, -7.219799999999999, -7.2148, -7.2097999999999995, -7.204799999999999, -7.1998, -7.194799999999999, -7.1898, -7.184799999999999, -7.1798, -7.174799999999999, -7.1698, -7.1648, -7.159799999999999, -7.1548, -7.149799999999999, -7.1448, -7.139799999999999, -7.1348, -7.1297999999999995, -7.1248000000000005, -7.1198, -7.114799999999999, -7.1098, -7.104799999999999, -7.0998, -7.094799999999999, -7.0898, -7.0847999999999995, -7.079799999999999, -7.0748, -7.069799999999999, -7.0648, -7.059799999999999, -7.0548, -7.049799999999999, -7.0448, -7.0398, -7.034799999999999, -7.0298, -7.024799999999999, -7.0198, -7.014799999999999, -7.0098, -7.0047999999999995, -6.9998000000000005, -6.9948, -6.989799999999999, -6.9848, -6.979799999999999, -6.9748, -6.969799999999999, -6.9648, -6.9597999999999995, -6.954799999999999, -6.9498, -6.944799999999999, -6.9398, -6.934799999999999, -6.9298, -6.924799999999999, -6.9198, -6.9148, -6.909799999999999, -6.9048, -6.899799999999999, -6.8948, -6.889799999999999, -6.8848, -6.8797999999999995, -6.8748000000000005, -6.8698, -6.864799999999999, -6.8598, -6.854799999999999, -6.8498, -6.844799999999999, -6.8398, -6.8347999999999995, -6.829799999999999, -6.8248, -6.819799999999999, -6.8148, -6.809799999999999, -6.8048, -6.799799999999999, -6.7948, -6.7898, -6.784799999999999, -6.7798, -6.774799999999999, -6.7698, -6.764799999999999, -6.7598, -6.7547999999999995, -6.7498000000000005, -6.7448, -6.739799999999999, -6.7348, -6.729799999999999, -6.7248, -6.719799999999999, -6.7148, -6.7097999999999995, -6.704799999999999, -6.6998, -6.694799999999999, -6.6898, -6.684799999999999, -6.6798, -6.674799999999999, -6.6698, -6.6648, -6.659799999999999, -6.6548, -6.649799999999999, -6.6448, -6.639799999999999, -6.6348, -6.6297999999999995, -6.6248000000000005, -6.6198, -6.614799999999999, -6.6098, -6.604799999999999, -6.5998, -6.594799999999999, -6.5898, -6.5847999999999995, -6.579799999999999, -6.5748, -6.569799999999999, -6.5648, -6.559799999999999, -6.5548, -6.549799999999999, -6.5448, -6.5398, -6.534799999999999, -6.5298, -6.524799999999999, -6.5198, -6.514799999999999, -6.5098, -6.5047999999999995, -6.4998000000000005, -6.4948, -6.489799999999999, -6.4848, -6.479799999999999, -6.4748, -6.469799999999999, -6.4648, -6.4597999999999995, -6.454799999999999, -6.4498, -6.444799999999999, -6.4398, -6.434799999999999, -6.4298, -6.424799999999999, -6.4198, -6.4148, -6.409799999999999, -6.4048, -6.399799999999999, -6.3948, -6.389799999999999, -6.3848, -6.3797999999999995, -6.3748000000000005, -6.3698, -6.364799999999999, -6.3598, -6.354799999999999, -6.3498, -6.344799999999999, -6.3398, -6.3347999999999995, -6.329799999999999, -6.3248, -6.319799999999999, -6.3148, -6.309799999999999, -6.3048, -6.299799999999999, -6.2948, -6.2898, -6.284799999999999, -6.2798, -6.274799999999999, -6.2698, -6.264799999999999, -6.2598, -6.2547999999999995, -6.2498000000000005, -6.2448, -6.239799999999999, -6.2348, -6.229799999999999, -6.2248, -6.219799999999999, -6.2148, -6.2097999999999995, -6.204799999999999, -6.1998, -6.194799999999999, -6.1898, -6.184799999999999, -6.1798, -6.174799999999999, -6.1698, -6.1648, -6.159799999999999, -6.1548, -6.149799999999999, -6.1448, -6.139799999999999, -6.1348, -6.1297999999999995, -6.1248000000000005, -6.1198, -6.114799999999999, -6.1098, -6.104799999999999, -6.0998, -6.094799999999999, -6.0898, -6.0847999999999995, -6.079799999999999, -6.0748, -6.069799999999999, -6.0648, -6.059799999999999, -6.0548, -6.049799999999999, -6.0448, -6.0398, -6.034799999999999, -6.0298, -6.024799999999999, -6.0198, -6.014799999999999, -6.0098, -6.0047999999999995, -5.9998000000000005, -5.9948, -5.989799999999999, -5.9848, -5.979799999999999, -5.9748, -5.969799999999999, -5.9648, -5.9597999999999995, -5.954799999999999, -5.9498, -5.944799999999999, -5.9398, -5.934799999999999, -5.9298, -5.924799999999999, -5.9198, -5.9148, -5.909799999999999, -5.9048, -5.899799999999999, -5.8948, -5.889799999999999, -5.8848, -5.8797999999999995, -5.8748000000000005, -5.8698, -5.864799999999999, -5.8598, -5.854799999999999, -5.8498, -5.844799999999999, -5.8398, -5.8347999999999995, -5.829799999999999, -5.8248, -5.819799999999999, -5.8148, -5.809799999999999, -5.8048, -5.799799999999999, -5.7948, -5.7898, -5.784799999999999, -5.7798, -5.774799999999999, -5.7698, -5.764799999999999, -5.7598, -5.7547999999999995, -5.7498000000000005, -5.7448, -5.739799999999999, -5.7348, -5.729799999999999, -5.7248, -5.719799999999999, -5.7148, -5.7097999999999995, -5.704799999999999, -5.6998, -5.694799999999999, -5.6898, -5.684799999999999, -5.6798, -5.674799999999999, -5.6698, -5.6648, -5.659799999999999, -5.6548, -5.649799999999999, -5.6448, -5.639799999999999, -5.6348, -5.6297999999999995, -5.6248000000000005, -5.6198, -5.614799999999999, -5.6098, -5.604799999999999, -5.5998, -5.594799999999999, -5.5898, -5.5847999999999995, -5.579799999999999, -5.5748, -5.569799999999999, -5.5648, -5.559799999999999, -5.5548, -5.549799999999999, -5.5448, -5.5398, -5.534799999999999, -5.5298, -5.524799999999999, -5.5198, -5.514799999999999, -5.5098, -5.5047999999999995, -5.4998000000000005, -5.4948, -5.489799999999999, -5.4848, -5.479799999999999, -5.4748, -5.469799999999999, -5.4648, -5.4597999999999995, -5.454799999999999, -5.4498, -5.444799999999999, -5.4398, -5.434799999999999, -5.4298, -5.424799999999999, -5.4198, -5.4148, -5.409799999999999, -5.4048, -5.399799999999999, -5.3948, -5.389799999999999, -5.3848, -5.3797999999999995, -5.3748000000000005, -5.3698, -5.364799999999999, -5.3598, -5.354799999999999, -5.3498, -5.344799999999999, -5.3398, -5.3347999999999995, -5.329799999999999, -5.3248, -5.319799999999999, -5.3148, -5.309799999999999, -5.3048, -5.299799999999999, -5.2948, -5.2898, -5.284799999999999, -5.2798, -5.274799999999999, -5.2698, -5.264799999999999, -5.2598, -5.2547999999999995, -5.2498000000000005, -5.2448, -5.239799999999999, -5.2348, -5.229799999999999, -5.2248, -5.219799999999999, -5.2148, -5.2097999999999995, -5.204799999999999, -5.1998, -5.194799999999999, -5.1898, -5.184799999999999, -5.1798, -5.174799999999999, -5.1698, -5.1648, -5.159799999999999, -5.1548, -5.149799999999999, -5.1448, -5.139799999999999, -5.1348, -5.1297999999999995, -5.1248000000000005, -5.1198, -5.114799999999999, -5.1098, -5.104799999999999, -5.0998, -5.094799999999999, -5.0898, -5.0847999999999995, -5.079799999999999, -5.0748, -5.069799999999999, -5.0648, -5.059799999999999, -5.0548, -5.049799999999999, -5.0448, -5.0398, -5.034799999999999, -5.0298, -5.024799999999999, -5.0198, -5.014799999999999, -5.0098, -5.0047999999999995, -4.9998000000000005, -4.9948, -4.989799999999999, -4.9848, -4.979799999999999, -4.9748, -4.969799999999999, -4.9648, -4.9597999999999995, -4.954799999999999, -4.9498, -4.944799999999999, -4.9398, -4.934799999999999, -4.9298, -4.924799999999999, -4.9198, -4.9148, -4.909799999999999, -4.9048, -4.899799999999999, -4.8948, -4.889799999999999, -4.8848, -4.8797999999999995, -4.8748000000000005, -4.8698, -4.864799999999999, -4.8598, -4.854799999999999, -4.8498, -4.844799999999999, -4.8398, -4.8347999999999995, -4.829799999999999, -4.8248, -4.819799999999999, -4.8148, -4.809799999999999, -4.8048, -4.799799999999999, -4.7948, -4.7898, -4.784799999999999, -4.7798, -4.774799999999999, -4.7698, -4.764799999999999, -4.7598, -4.7547999999999995, -4.7498000000000005, -4.7448, -4.739799999999999, -4.7348, -4.729799999999999, -4.7248, -4.719799999999999, -4.7148, -4.7097999999999995, -4.704799999999999, -4.6998, -4.694799999999999, -4.6898, -4.684799999999999, -4.6798, -4.674799999999999, -4.6698, -4.6648, -4.659799999999999, -4.6548, -4.649799999999999, -4.6448, -4.639799999999999, -4.6348, -4.6297999999999995, -4.6248000000000005, -4.6198, -4.614799999999999, -4.6098, -4.604799999999999, -4.5998, -4.594799999999999, -4.5898, -4.5847999999999995, -4.579799999999999, -4.5748, -4.569799999999999, -4.5648, -4.559799999999999, -4.5548, -4.549799999999999, -4.5448, -4.5398, -4.534799999999999, -4.5298, -4.524799999999999, -4.5198, -4.514799999999999, -4.5098, -4.5047999999999995, -4.4998000000000005, -4.4948, -4.489799999999999, -4.4848, -4.479799999999999, -4.4748, -4.469799999999999, -4.4648, -4.4597999999999995, -4.454799999999999, -4.4498, -4.444799999999999, -4.4398, -4.434799999999999, -4.4298, -4.424799999999999, -4.4198, -4.4148, -4.409799999999999, -4.4048, -4.399799999999999, -4.3948, -4.389799999999999, -4.3848, -4.3797999999999995, -4.3748000000000005, -4.3698, -4.364799999999999, -4.3598, -4.354799999999999, -4.3498, -4.344799999999999, -4.3398, -4.3347999999999995, -4.329799999999999, -4.3248, -4.319799999999999, -4.3148, -4.309799999999999, -4.3048, -4.299799999999999, -4.2948, -4.2898, -4.284799999999999, -4.2798, -4.274799999999999, -4.2698, -4.264799999999999, -4.2598, -4.2547999999999995, -4.2498000000000005, -4.2448, -4.239799999999999, -4.2348, -4.229799999999999, -4.2248, -4.219799999999999, -4.2148, -4.2097999999999995, -4.204799999999999, -4.1998, -4.194799999999999, -4.1898, -4.184799999999999, -4.1798, -4.174799999999999, -4.1698, -4.1648, -4.159799999999999, -4.1548, -4.149799999999999, -4.1448, -4.139799999999999, -4.1348, -4.1297999999999995, -4.1248000000000005, -4.1198, -4.114799999999999, -4.1098, -4.104799999999999, -4.0998, -4.094799999999999, -4.0898, -4.0847999999999995, -4.079799999999999, -4.0748, -4.069799999999999, -4.0648, -4.059799999999999, -4.0548, -4.049799999999999, -4.0448, -4.0398, -4.034800000000001, -4.0298, -4.024800000000001, -4.0198, -4.014799999999999, -4.0098, -4.0047999999999995, -3.9998, -3.9948, -3.9898000000000002, -3.9848000000000003, -3.9798000000000004, -3.9747999999999997, -3.9697999999999998, -3.9648, -3.9598, -3.9548, -3.9498, -3.9448000000000003, -3.9398000000000004, -3.9347999999999996, -3.9297999999999997, -3.9248, -3.9198, -3.9148, -3.9098, -3.9048000000000003, -3.8998000000000004, -3.8948000000000005, -3.8897999999999997, -3.8848, -3.8798, -3.8748, -3.8698, -3.8648000000000002, -3.8598000000000003, -3.8548000000000004, -3.8497999999999997, -3.8447999999999998, -3.8398, -3.8348, -3.8298, -3.8248, -3.8198000000000003, -3.8148000000000004, -3.8097999999999996, -3.8047999999999997, -3.7998, -3.7948, -3.7898, -3.7848, -3.7798000000000003, -3.7748000000000004, -3.7698000000000005, -3.7647999999999997, -3.7598, -3.7548, -3.7498, -3.7448, -3.7398000000000002, -3.7348000000000003, -3.7298000000000004, -3.7247999999999997, -3.7197999999999998, -3.7148, -3.7098, -3.7048, -3.6998, -3.6948000000000003, -3.6898000000000004, -3.6847999999999996, -3.6797999999999997, -3.6748, -3.6698, -3.6648, -3.6598, -3.6548000000000003, -3.6498000000000004, -3.6448000000000005, -3.6397999999999997, -3.6348, -3.6298, -3.6248, -3.6198, -3.6148000000000002, -3.6098000000000003, -3.6048000000000004, -3.5997999999999997, -3.5947999999999998, -3.5898, -3.5848, -3.5798, -3.5748, -3.5698000000000003, -3.5648000000000004, -3.5597999999999996, -3.5547999999999997, -3.5498, -3.5448, -3.5398, -3.5348, -3.5298000000000003, -3.5248000000000004, -3.5198000000000005, -3.5147999999999997, -3.5098, -3.5048, -3.4998, -3.4948, -3.4898000000000002, -3.4848000000000003, -3.4798000000000004, -3.4747999999999997, -3.4697999999999998, -3.4648, -3.4598, -3.4548, -3.4498, -3.4448000000000003, -3.4398000000000004, -3.4347999999999996, -3.4297999999999997, -3.4248, -3.4198, -3.4148, -3.4098, -3.4048000000000003, -3.3998000000000004, -3.3948000000000005, -3.3897999999999997, -3.3848, -3.3798, -3.3748, -3.3698, -3.3648000000000002, -3.3598000000000003, -3.3548000000000004, -3.3497999999999997, -3.3447999999999998, -3.3398, -3.3348, -3.3298, -3.3248, -3.3198000000000003, -3.3148000000000004, -3.3097999999999996, -3.3047999999999997, -3.2998, -3.2948, -3.2898, -3.2848, -3.2798000000000003, -3.2748000000000004, -3.2698000000000005, -3.2647999999999997, -3.2598, -3.2548, -3.2498, -3.2448, -3.2398000000000002, -3.2348000000000003, -3.2298000000000004, -3.2247999999999997, -3.2197999999999998, -3.2148, -3.2098, -3.2048, -3.1998, -3.1948000000000003, -3.1898000000000004, -3.1847999999999996, -3.1797999999999997, -3.1748, -3.1698, -3.1648, -3.1598, -3.1548000000000003, -3.1498000000000004, -3.1448000000000005, -3.1397999999999997, -3.1348, -3.1298, -3.1248, -3.1198, -3.1148000000000002, -3.1098000000000003, -3.1048000000000004, -3.0997999999999997, -3.0947999999999998, -3.0898, -3.0848, -3.0798, -3.0748, -3.0698000000000003, -3.0648000000000004, -3.0597999999999996, -3.0547999999999997, -3.0498, -3.0448, -3.0398, -3.0348, -3.0298000000000003, -3.0248000000000004, -3.0198000000000005, -3.0147999999999997, -3.0098, -3.0048, -2.9998, -2.9948, -2.9898000000000002, -2.9848000000000003, -2.9798000000000004, -2.9747999999999997, -2.9697999999999998, -2.9648, -2.9598, -2.9548, -2.9498, -2.9448000000000003, -2.9398000000000004, -2.9347999999999996, -2.9297999999999997, -2.9248, -2.9198, -2.9148, -2.9098, -2.9048000000000003, -2.8998000000000004, -2.8948000000000005, -2.8897999999999997, -2.8848, -2.8798, -2.8748, -2.8698, -2.8648000000000002, -2.8598000000000003, -2.8548000000000004, -2.8497999999999997, -2.8447999999999998, -2.8398, -2.8348, -2.8298, -2.8248, -2.8198000000000003, -2.8148000000000004, -2.8097999999999996, -2.8047999999999997, -2.7998, -2.7948, -2.7898, -2.7848, -2.7798000000000003, -2.7748000000000004, -2.7698000000000005, -2.7647999999999997, -2.7598, -2.7548, -2.7498, -2.7448, -2.7398000000000002, -2.7348000000000003, -2.7298000000000004, -2.7247999999999997, -2.7197999999999998, -2.7148, -2.7098, -2.7048, -2.6998, -2.6948000000000003, -2.6898000000000004, -2.6847999999999996, -2.6797999999999997, -2.6748, -2.6698, -2.6648, -2.6598, -2.6548000000000003, -2.6498000000000004, -2.6448000000000005, -2.6397999999999997, -2.6348, -2.6298, -2.6248, -2.6198, -2.6148000000000002, -2.6098000000000003, -2.6048000000000004, -2.5997999999999997, -2.5947999999999998, -2.5898, -2.5848, -2.5798, -2.5748, -2.5698000000000003, -2.5648000000000004, -2.5597999999999996, -2.5547999999999997, -2.5498, -2.5448, -2.5398, -2.5348, -2.5298000000000003, -2.5248000000000004, -2.5198000000000005, -2.5147999999999997, -2.5098, -2.5048, -2.4998, -2.4948, -2.4898000000000002, -2.4848000000000003, -2.4798000000000004, -2.4747999999999997, -2.4697999999999998, -2.4648, -2.4598, -2.4548, -2.4498, -2.4448000000000003, -2.4398000000000004, -2.4347999999999996, -2.4297999999999997, -2.4248, -2.4198, -2.4148, -2.4098, -2.4048000000000003, -2.3998000000000004, -2.3948000000000005, -2.3897999999999997, -2.3848, -2.3798, -2.3748, -2.3698, -2.3648000000000002, -2.3598000000000003, -2.3548000000000004, -2.3497999999999997, -2.3447999999999998, -2.3398, -2.3348, -2.3298, -2.3248, -2.3198000000000003, -2.3148000000000004, -2.3097999999999996, -2.3047999999999997, -2.2998, -2.2948, -2.2898, -2.2848, -2.2798000000000003, -2.2748000000000004, -2.2698000000000005, -2.2647999999999997, -2.2598, -2.2548, -2.2498, -2.2448, -2.2398000000000002, -2.2348000000000003, -2.2298000000000004, -2.2247999999999997, -2.2197999999999998, -2.2148, -2.2098, -2.2048, -2.1998, -2.1948000000000003, -2.1898000000000004, -2.1847999999999996, -2.1797999999999997, -2.1748, -2.1698, -2.1648, -2.1598, -2.1548000000000003, -2.1498000000000004, -2.1448000000000005, -2.1397999999999997, -2.1348, -2.1298, -2.1248, -2.1198, -2.1148000000000002, -2.1098000000000003, -2.1048000000000004, -2.0997999999999997, -2.0947999999999998, -2.0898, -2.0848, -2.0798, -2.0748, -2.0698000000000003, -2.0648000000000004, -2.0597999999999996, -2.0547999999999997, -2.0498, -2.0448, -2.0398, -2.0348, -2.0298000000000003, -2.0248000000000004, -2.0198000000000005, -2.0147999999999997, -2.0098, -2.0048, -1.9998, -1.9948000000000001, -1.9898000000000002, -1.9848000000000003, -1.9798000000000004, -1.9747999999999997, -1.9697999999999998, -1.9647999999999999, -1.9598, -1.9548, -1.9498000000000002, -1.9448000000000003, -1.9398000000000004, -1.9347999999999996, -1.9297999999999997, -1.9247999999999998, -1.9198, -1.9148, -1.9098000000000002, -1.9048000000000003, -1.8998000000000004, -1.8948000000000005, -1.8897999999999997, -1.8847999999999998, -1.8798, -1.8748, -1.8698000000000001, -1.8648000000000002, -1.8598000000000003, -1.8548000000000004, -1.8497999999999997, -1.8447999999999998, -1.8397999999999999, -1.8348, -1.8298, -1.8248000000000002, -1.8198000000000003, -1.8148000000000004, -1.8097999999999996, -1.8047999999999997, -1.7997999999999998, -1.7948, -1.7898, -1.7848000000000002, -1.7798000000000003, -1.7748000000000004, -1.7698000000000005, -1.7647999999999997, -1.7597999999999998, -1.7548, -1.7498, -1.7448000000000001, -1.7398000000000002, -1.7348000000000003, -1.7298000000000004, -1.7247999999999997, -1.7197999999999998, -1.7147999999999999, -1.7098, -1.7048, -1.6998000000000002, -1.6948000000000003, -1.6898000000000004, -1.6847999999999996, -1.6797999999999997, -1.6747999999999998, -1.6698, -1.6648, -1.6598000000000002, -1.6548000000000003, -1.6498000000000004, -1.6448000000000005, -1.6397999999999997, -1.6347999999999998, -1.6298, -1.6248, -1.6198000000000001, -1.6148000000000002, -1.6098000000000003, -1.6048000000000004, -1.5997999999999997, -1.5947999999999998, -1.5897999999999999, -1.5848, -1.5798, -1.5748000000000002, -1.5698000000000003, -1.5648000000000004, -1.5597999999999996, -1.5547999999999997, -1.5497999999999998, -1.5448, -1.5398, -1.5348000000000002, -1.5298000000000003, -1.5248000000000004, -1.5198000000000005, -1.5147999999999997, -1.5097999999999998, -1.5048, -1.4998, -1.4948000000000001, -1.4898000000000002, -1.4848000000000003, -1.4798000000000004, -1.4747999999999997, -1.4697999999999998, -1.4647999999999999, -1.4598, -1.4548, -1.4498000000000002, -1.4448000000000003, -1.4398000000000004, -1.4347999999999996, -1.4297999999999997, -1.4247999999999998, -1.4198, -1.4148, -1.4098000000000002, -1.4048000000000003, -1.3998000000000004, -1.3948000000000005, -1.3897999999999997, -1.3847999999999998, -1.3798, -1.3748, -1.3698000000000001, -1.3648000000000002, -1.3598000000000003, -1.3548000000000004, -1.3497999999999997, -1.3447999999999998, -1.3397999999999999, -1.3348, -1.3298, -1.3248000000000002, -1.3198000000000003, -1.3148000000000004, -1.3097999999999996, -1.3047999999999997, -1.2997999999999998, -1.2948, -1.2898, -1.2848000000000002, -1.2798000000000003, -1.2748000000000004, -1.2698000000000005, -1.2647999999999997, -1.2597999999999998, -1.2548, -1.2498, -1.2448000000000001, -1.2398000000000002, -1.2348000000000003, -1.2298000000000004, -1.2247999999999997, -1.2197999999999998, -1.2147999999999999, -1.2098, -1.2048, -1.1998000000000002, -1.1948000000000003, -1.1898000000000004, -1.1847999999999996, -1.1797999999999997, -1.1747999999999998, -1.1698, -1.1648, -1.1598000000000002, -1.1548000000000003, -1.1498000000000004, -1.1448000000000005, -1.1397999999999997, -1.1347999999999998, -1.1298, -1.1248, -1.1198000000000001, -1.1148000000000002, -1.1098000000000003, -1.1048000000000004, -1.0997999999999997, -1.0947999999999998, -1.0897999999999999, -1.0848, -1.0798, -1.0748000000000002, -1.0698000000000003, -1.0648000000000004, -1.0597999999999996, -1.0547999999999997, -1.0497999999999998, -1.0448, -1.0398, -1.0348000000000002, -1.0298000000000003, -1.0248000000000004, -1.0198000000000005, -1.0147999999999997, -1.0097999999999998, -1.0048, -0.9998, -0.9948000000000001, -0.9898000000000002, -0.9848000000000003, -0.9798000000000004, -0.9747999999999997, -0.9697999999999998, -0.9647999999999999, -0.9598, -0.9548000000000001, -0.9498000000000002, -0.9448000000000003, -0.9398000000000004, -0.9347999999999996, -0.9297999999999997, -0.9247999999999998, -0.9198, -0.9148000000000001, -0.9098000000000002, -0.9048000000000003, -0.8998000000000004, -0.8948000000000005, -0.8897999999999997, -0.8847999999999998, -0.8797999999999999, -0.8748, -0.8698000000000001, -0.8648000000000002, -0.8598000000000003, -0.8548000000000004, -0.8497999999999997, -0.8447999999999998, -0.8397999999999999, -0.8348, -0.8298000000000001, -0.8248000000000002, -0.8198000000000003, -0.8148000000000004, -0.8097999999999996, -0.8047999999999997, -0.7997999999999998, -0.7948, -0.7898000000000001, -0.7848000000000002, -0.7798000000000003, -0.7748000000000004, -0.7698000000000005, -0.7647999999999997, -0.7597999999999998, -0.7547999999999999, -0.7498, -0.7448000000000001, -0.7398000000000002, -0.7348000000000003, -0.7298000000000004, -0.7247999999999997, -0.7197999999999998, -0.7147999999999999, -0.7098, -0.7048000000000001, -0.6998000000000002, -0.6948000000000003, -0.6898000000000004, -0.6847999999999996, -0.6797999999999997, -0.6747999999999998, -0.6698, -0.6648000000000001, -0.6598000000000002, -0.6548000000000003, -0.6498000000000004, -0.6448000000000005, -0.6397999999999997, -0.6347999999999998, -0.6297999999999999, -0.6248, -0.6198000000000001, -0.6148000000000002, -0.6098000000000003, -0.6048000000000004, -0.5997999999999997, -0.5947999999999998, -0.5897999999999999, -0.5848, -0.5798000000000001, -0.5748000000000002, -0.5698000000000003, -0.5648000000000004, -0.5597999999999996, -0.5547999999999997, -0.5497999999999998, -0.5448, -0.5398000000000001, -0.5348000000000002, -0.5298000000000003, -0.5248000000000004, -0.5198000000000005, -0.5147999999999997, -0.5097999999999998, -0.5047999999999999, -0.4998, -0.49480000000000013, -0.48980000000000024, -0.48480000000000034, -0.47980000000000045, -0.47479999999999967, -0.4697999999999998, -0.4647999999999999, -0.4598, -0.4548000000000001, -0.4498000000000002, -0.4448000000000003, -0.4398000000000004, -0.43479999999999963, -0.42979999999999974, -0.42479999999999984, -0.41979999999999995, -0.41480000000000006, -0.40980000000000016, -0.40480000000000027, -0.3998000000000004, -0.3948000000000005, -0.3897999999999997, -0.3847999999999998, -0.3797999999999999, -0.3748, -0.36980000000000013, -0.36480000000000024, -0.35980000000000034, -0.35480000000000045, -0.34979999999999967, -0.3447999999999998, -0.3397999999999999, -0.3348, -0.3298000000000001, -0.3248000000000002, -0.3198000000000003, -0.3148000000000004, -0.30979999999999963, -0.30479999999999974, -0.29979999999999984, -0.29479999999999995, -0.28980000000000006, -0.28480000000000016, -0.27980000000000027, -0.2748000000000004, -0.2698000000000005, -0.2647999999999997, -0.2597999999999998, -0.2547999999999999, -0.24980000000000002, -0.24480000000000013, -0.23980000000000024, -0.23480000000000034, -0.22980000000000045, -0.22479999999999967, -0.21979999999999977, -0.21479999999999988, -0.2098, -0.2048000000000001, -0.1998000000000002, -0.1948000000000003, -0.1898000000000004, -0.18479999999999963, -0.17979999999999974, -0.17479999999999984, -0.16979999999999995, -0.16480000000000006, -0.15980000000000016, -0.15480000000000027, -0.14980000000000038, -0.14480000000000048, -0.1397999999999997, -0.1347999999999998, -0.12979999999999992, -0.12480000000000002, -0.11980000000000013, -0.11480000000000024, -0.10980000000000034, -0.10480000000000045, -0.09979999999999967, -0.09479999999999977, -0.08979999999999988, -0.08479999999999999, -0.0798000000000001, -0.0748000000000002, -0.0698000000000003, -0.06480000000000041, -0.05979999999999963, -0.05479999999999974, -0.049799999999999844, -0.04479999999999995, -0.03980000000000006, -0.034800000000000164, -0.02980000000000027, -0.024799999999999933, -0.01980000000000004, -0.014800000000000146, -0.009800000000000253, -0.0047999999999999154, 0.00019999999999997797, 0.005199999999999871, 0.010199999999999765, 0.015200000000000102, 0.020199999999999996, 0.02519999999999989, 0.030199999999999783, 0.03520000000000012, 0.040200000000000014, 0.04519999999999991, 0.0501999999999998, 0.05520000000000014, 0.06020000000000003, 0.06519999999999992, 0.07019999999999982, 0.07520000000000016, 0.08020000000000005, 0.08519999999999994, 0.09019999999999984, 0.09519999999999973, 0.10020000000000007, 0.10519999999999996, 0.11019999999999985, 0.11519999999999975, 0.12020000000000008, 0.12519999999999998, 0.13019999999999987, 0.13519999999999976, 0.1402000000000001, 0.1452, 0.1501999999999999, 0.15519999999999978, 0.16020000000000012, 0.1652, 0.1701999999999999, 0.1751999999999998, 0.18020000000000014, 0.18520000000000003, 0.19019999999999992, 0.19519999999999982, 0.20020000000000016, 0.20520000000000005, 0.21019999999999994, 0.21519999999999984, 0.22019999999999973, 0.22520000000000007, 0.23019999999999996, 0.23519999999999985, 0.24019999999999975, 0.24520000000000008, 0.2502, 0.25519999999999987, 0.26019999999999976, 0.2652000000000001, 0.2702, 0.2751999999999999, 0.2801999999999998, 0.2852000000000001, 0.2902, 0.2951999999999999, 0.3001999999999998, 0.30520000000000014, 0.31020000000000003, 0.3151999999999999, 0.3201999999999998, 0.32520000000000016, 0.33020000000000005, 0.33519999999999994, 0.34019999999999984, 0.34519999999999973, 0.35020000000000007, 0.35519999999999996, 0.36019999999999985, 0.36519999999999975, 0.3702000000000001, 0.3752, 0.38019999999999987, 0.38519999999999976, 0.3902000000000001, 0.3952, 0.4001999999999999, 0.4051999999999998, 0.4102000000000001, 0.4152, 0.4201999999999999, 0.4251999999999998, 0.43020000000000014, 0.43520000000000003, 0.4401999999999999, 0.4451999999999998, 0.45020000000000016, 0.45520000000000005, 0.46019999999999994, 0.46519999999999984, 0.47019999999999973, 0.47520000000000007, 0.48019999999999996, 0.48519999999999985, 0.49019999999999975, 0.4952000000000001, 0.5002, 0.5051999999999999, 0.5101999999999998, 0.5152000000000001, 0.5202, 0.5251999999999999, 0.5301999999999998, 0.5352000000000001, 0.5402, 0.5451999999999999, 0.5501999999999998, 0.5552000000000001, 0.5602, 0.5651999999999999, 0.5701999999999998, 0.5752000000000002, 0.5802, 0.5851999999999999, 0.5901999999999998, 0.5951999999999997, 0.6002000000000001, 0.6052, 0.6101999999999999, 0.6151999999999997, 0.6202000000000001, 0.6252, 0.6301999999999999, 0.6351999999999998, 0.6402000000000001, 0.6452, 0.6501999999999999, 0.6551999999999998, 0.6602000000000001, 0.6652, 0.6701999999999999, 0.6751999999999998, 0.6802000000000001, 0.6852, 0.6901999999999999, 0.6951999999999998, 0.7002000000000002, 0.7052, 0.7101999999999999, 0.7151999999999998, 0.7201999999999997, 0.7252000000000001, 0.7302, 0.7351999999999999, 0.7401999999999997, 0.7452000000000001, 0.7502, 0.7551999999999999, 0.7601999999999998, 0.7652000000000001, 0.7702, 0.7751999999999999, 0.7801999999999998, 0.7852000000000001, 0.7902, 0.7951999999999999, 0.8001999999999998, 0.8052000000000001, 0.8102, 0.8151999999999999, 0.8201999999999998, 0.8252000000000002, 0.8302, 0.8351999999999999, 0.8401999999999998, 0.8451999999999997, 0.8502000000000001, 0.8552, 0.8601999999999999, 0.8651999999999997, 0.8702000000000001, 0.8752, 0.8801999999999999, 0.8851999999999998, 0.8902000000000001, 0.8952, 0.9001999999999999, 0.9051999999999998, 0.9102000000000001, 0.9152, 0.9201999999999999, 0.9251999999999998, 0.9302000000000001, 0.9352, 0.9401999999999999, 0.9451999999999998, 0.9502000000000002, 0.9552, 0.9601999999999999, 0.9651999999999998, 0.9701999999999997, 0.9752000000000001, 0.9802, 0.9851999999999999, 0.9901999999999997, 0.9952000000000001, 1.0002, 1.0051999999999999, 1.0101999999999998, 1.0152, 1.0202, 1.0252, 1.0301999999999998, 1.0352000000000001, 1.0402, 1.0452, 1.0501999999999998, 1.0552000000000001, 1.0602, 1.0652, 1.0701999999999998, 1.0752000000000002, 1.0802, 1.0852, 1.0901999999999998, 1.0951999999999997, 1.1002, 1.1052, 1.1101999999999999, 1.1151999999999997, 1.1202, 1.1252, 1.1301999999999999, 1.1351999999999998, 1.1402, 1.1452, 1.1502, 1.1551999999999998, 1.1602000000000001, 1.1652, 1.1702, 1.1751999999999998, 1.1802000000000001, 1.1852, 1.1902, 1.1951999999999998, 1.2002000000000002, 1.2052, 1.2102, 1.2151999999999998, 1.2201999999999997, 1.2252, 1.2302, 1.2351999999999999, 1.2401999999999997, 1.2452, 1.2502, 1.2551999999999999, 1.2601999999999998, 1.2652, 1.2702, 1.2752, 1.2801999999999998, 1.2852000000000001, 1.2902, 1.2952, 1.3001999999999998, 1.3052000000000001, 1.3102, 1.3152, 1.3201999999999998, 1.3252000000000002, 1.3302, 1.3352, 1.3401999999999998, 1.3451999999999997, 1.3502, 1.3552, 1.3601999999999999, 1.3651999999999997, 1.3702, 1.3752, 1.3801999999999999, 1.3851999999999998, 1.3902, 1.3952, 1.4002, 1.4051999999999998, 1.4102000000000001, 1.4152, 1.4202, 1.4251999999999998, 1.4302000000000001, 1.4352, 1.4402, 1.4451999999999998, 1.4502000000000002, 1.4552, 1.4602, 1.4651999999999998, 1.4701999999999997, 1.4752, 1.4802, 1.4851999999999999, 1.4901999999999997, 1.4952, 1.5002, 1.5051999999999999, 1.5101999999999998, 1.5152, 1.5202, 1.5252, 1.5301999999999998, 1.5352000000000001, 1.5402, 1.5452, 1.5501999999999998, 1.5552000000000001, 1.5602, 1.5652, 1.5701999999999998, 1.5752000000000002, 1.5802, 1.5852, 1.5901999999999998, 1.5951999999999997, 1.6002, 1.6052, 1.6101999999999999, 1.6151999999999997, 1.6202, 1.6252, 1.6301999999999999, 1.6351999999999998, 1.6402, 1.6452, 1.6502, 1.6551999999999998, 1.6602000000000001, 1.6652, 1.6702, 1.6751999999999998, 1.6802000000000001, 1.6852, 1.6902, 1.6951999999999998, 1.7002000000000002, 1.7052, 1.7102, 1.7151999999999998, 1.7201999999999997, 1.7252, 1.7302, 1.7351999999999999, 1.7401999999999997, 1.7452, 1.7502, 1.7551999999999999, 1.7601999999999998, 1.7652, 1.7702, 1.7752, 1.7801999999999998, 1.7852000000000001, 1.7902, 1.7952, 1.8001999999999998, 1.8052000000000001, 1.8102, 1.8152, 1.8201999999999998, 1.8252000000000002, 1.8302, 1.8352, 1.8401999999999998, 1.8451999999999997, 1.8502, 1.8552, 1.8601999999999999, 1.8651999999999997, 1.8702, 1.8752, 1.8801999999999999, 1.8851999999999998, 1.8902, 1.8952, 1.9002, 1.9051999999999998, 1.9102000000000001, 1.9152, 1.9202, 1.9251999999999998, 1.9302000000000001, 1.9352, 1.9402, 1.9451999999999998, 1.9502000000000002, 1.9552, 1.9602, 1.9651999999999998, 1.9702, 1.9751999999999998, 1.9802, 1.9851999999999999, 1.9902, 1.9951999999999999, 2.0002, 2.0052, 2.0102, 2.0152, 2.0202, 2.0252, 2.0302, 2.0351999999999997, 2.0402, 2.0452, 2.0502000000000002, 2.0552, 2.0602, 2.0652, 2.0702, 2.0751999999999997, 2.0802, 2.0852, 2.0902, 2.0952, 2.1002, 2.1052, 2.1102, 2.1151999999999997, 2.1201999999999996, 2.1252, 2.1302, 2.1352, 2.1402, 2.1452, 2.1502, 2.1552, 2.1601999999999997, 2.1652, 2.1702, 2.1752000000000002, 2.1802, 2.1852, 2.1902, 2.1952, 2.2001999999999997, 2.2052, 2.2102, 2.2152, 2.2202, 2.2252, 2.2302, 2.2352, 2.2401999999999997, 2.2451999999999996, 2.2502, 2.2552, 2.2602, 2.2652, 2.2702, 2.2752, 2.2802, 2.2851999999999997, 2.2902, 2.2952, 2.3002000000000002, 2.3052, 2.3102, 2.3152, 2.3202, 2.3251999999999997, 2.3302, 2.3352, 2.3402, 2.3452, 2.3502, 2.3552, 2.3602, 2.3651999999999997, 2.3701999999999996, 2.3752, 2.3802, 2.3852, 2.3902, 2.3952, 2.4002, 2.4052, 2.4101999999999997, 2.4152, 2.4202, 2.4252000000000002, 2.4302, 2.4352, 2.4402, 2.4452, 2.4501999999999997, 2.4552, 2.4602, 2.4652, 2.4702, 2.4752, 2.4802, 2.4852, 2.4901999999999997, 2.4951999999999996, 2.5002, 2.5052, 2.5102, 2.5152, 2.5202, 2.5252, 2.5302, 2.5351999999999997, 2.5402, 2.5452, 2.5502000000000002, 2.5552, 2.5602, 2.5652, 2.5702, 2.5751999999999997, 2.5802, 2.5852, 2.5902, 2.5952, 2.6002, 2.6052, 2.6102, 2.6151999999999997, 2.6201999999999996, 2.6252, 2.6302, 2.6352, 2.6402, 2.6452, 2.6502, 2.6552, 2.6601999999999997, 2.6652, 2.6702, 2.6752000000000002, 2.6802, 2.6852, 2.6902, 2.6952, 2.7001999999999997, 2.7052, 2.7102, 2.7152, 2.7202, 2.7252, 2.7302, 2.7352, 2.7401999999999997, 2.7451999999999996, 2.7502, 2.7552, 2.7602, 2.7652, 2.7702, 2.7752, 2.7802, 2.7851999999999997, 2.7902, 2.7952, 2.8002000000000002, 2.8052, 2.8102, 2.8152, 2.8202, 2.8251999999999997, 2.8302, 2.8352, 2.8402, 2.8452, 2.8502, 2.8552, 2.8602, 2.8651999999999997, 2.8701999999999996, 2.8752, 2.8802, 2.8852, 2.8902, 2.8952, 2.9002, 2.9052, 2.9101999999999997, 2.9152, 2.9202, 2.9252000000000002, 2.9302, 2.9352, 2.9402, 2.9452, 2.9501999999999997, 2.9552, 2.9602, 2.9652, 2.9702, 2.9752, 2.9802, 2.9852, 2.9901999999999997, 2.9952, 3.0002, 3.0052, 3.0102, 3.0152, 3.0202, 3.0252, 3.0302, 3.0351999999999997, 3.0402, 3.0452, 3.0502, 3.0552, 3.0602, 3.0652, 3.0702, 3.0751999999999997, 3.0802, 3.0852, 3.0902, 3.0952, 3.1002, 3.1052, 3.1102, 3.1151999999999997, 3.1202, 3.1252, 3.1302, 3.1352, 3.1402, 3.1452, 3.1502, 3.1552, 3.1601999999999997, 3.1652, 3.1702, 3.1752, 3.1802, 3.1852, 3.1902, 3.1952, 3.2001999999999997, 3.2052, 3.2102, 3.2152, 3.2202, 3.2252, 3.2302, 3.2352, 3.2401999999999997, 3.2452, 3.2502, 3.2552, 3.2602, 3.2652, 3.2702, 3.2752, 3.2802, 3.2851999999999997, 3.2902, 3.2952, 3.3002, 3.3052, 3.3102, 3.3152, 3.3202, 3.3251999999999997, 3.3302, 3.3352, 3.3402, 3.3452, 3.3502, 3.3552, 3.3602, 3.3651999999999997, 3.3702, 3.3752, 3.3802, 3.3852, 3.3902, 3.3952, 3.4002, 3.4052, 3.4101999999999997, 3.4152, 3.4202, 3.4252, 3.4302, 3.4352, 3.4402, 3.4452, 3.4501999999999997, 3.4552, 3.4602, 3.4652, 3.4702, 3.4752, 3.4802, 3.4852, 3.4901999999999997, 3.4952, 3.5002, 3.5052, 3.5101999999999998, 3.5152, 3.5202, 3.5252, 3.5302, 3.5352, 3.5402, 3.5452, 3.5502, 3.5552, 3.5602, 3.5652, 3.5702, 3.5751999999999997, 3.5802, 3.5852, 3.5902, 3.5952, 3.6002, 3.6052, 3.6102, 3.6151999999999997, 3.6202, 3.6252, 3.6302, 3.6351999999999998, 3.6402, 3.6452, 3.6502, 3.6552, 3.6602, 3.6652, 3.6702, 3.6752, 3.6802, 3.6852, 3.6902, 3.6952, 3.7001999999999997, 3.7052, 3.7102, 3.7152, 3.7202, 3.7252, 3.7302, 3.7352, 3.7401999999999997, 3.7452, 3.7502, 3.7552, 3.7601999999999998, 3.7652, 3.7702, 3.7752, 3.7802, 3.7852, 3.7902, 3.7952, 3.8002, 3.8052, 3.8102, 3.8152, 3.8202, 3.8251999999999997, 3.8302, 3.8352, 3.8402, 3.8451999999999997, 3.8502, 3.8552, 3.8602, 3.8651999999999997, 3.8702, 3.8752, 3.8802, 3.8851999999999998, 3.8902, 3.8952, 3.9002, 3.9052, 3.9102, 3.9152, 3.9202, 3.9252, 3.9302, 3.9352, 3.9402, 3.9452, 3.9502, 3.9552, 3.9602, 3.9652, 3.9701999999999997, 3.9752, 3.9802, 3.9852, 3.9901999999999997, 3.9952, 4.0001999999999995, 4.0052, 4.0102, 4.0152, 4.0202, 4.0252, 4.0302, 4.0352, 4.0402, 4.0452, 4.0502, 4.0552, 4.0602, 4.0652, 4.0702, 4.0752, 4.0802, 4.0852, 4.0902, 4.0952, 4.1002, 4.1052, 4.1102, 4.1152, 4.1202, 4.1251999999999995, 4.1302, 4.1352, 4.1402, 4.1452, 4.1502, 4.1552, 4.1602, 4.1652, 4.1702, 4.1752, 4.1802, 4.1852, 4.1902, 4.1952, 4.2002, 4.2052, 4.2102, 4.2152, 4.2202, 4.2252, 4.2302, 4.2352, 4.2402, 4.2452, 4.2501999999999995, 4.2552, 4.2602, 4.2652, 4.2702, 4.2752, 4.2802, 4.2852, 4.2902, 4.2952, 4.3002, 4.3052, 4.3102, 4.3152, 4.3202, 4.3252, 4.3302, 4.3352, 4.3402, 4.3452, 4.3502, 4.3552, 4.3602, 4.3652, 4.3702, 4.3751999999999995, 4.3802, 4.3852, 4.3902, 4.3952, 4.4002, 4.4052, 4.4102, 4.4152, 4.4202, 4.4252, 4.4302, 4.4352, 4.4402, 4.4452, 4.4502, 4.4552, 4.4602, 4.4652, 4.4702, 4.4752, 4.4802, 4.4852, 4.4902, 4.4952, 4.5001999999999995, 4.5052, 4.5102, 4.5152, 4.5202, 4.5252, 4.5302, 4.5352, 4.5402, 4.5451999999999995, 4.5502, 4.5552, 4.5602, 4.5652, 4.5702, 4.5752, 4.5802, 4.5852, 4.5902, 4.5952, 4.6002, 4.6052, 4.6102, 4.6152, 4.6202, 4.6251999999999995, 4.6302, 4.6352, 4.6402, 4.6452, 4.6502, 4.6552, 4.6602, 4.6652, 4.6701999999999995, 4.6752, 4.6802, 4.6852, 4.6902, 4.6952, 4.7002, 4.7052, 4.7102, 4.7152, 4.7202, 4.7252, 4.7302, 4.7352, 4.7402, 4.7452, 4.7501999999999995, 4.7552, 4.7602, 4.7652, 4.7702, 4.7752, 4.7802, 4.7852, 4.7902, 4.7951999999999995, 4.8002, 4.8052, 4.8102, 4.8152, 4.8202, 4.8252, 4.8302, 4.8352, 4.8402, 4.8452, 4.8502, 4.8552, 4.8602, 4.8652, 4.8702, 4.8751999999999995, 4.8802, 4.8852, 4.8902, 4.8952, 4.9002, 4.9052, 4.9102, 4.9152, 4.9201999999999995, 4.9252, 4.9302, 4.9352, 4.9402, 4.9452, 4.9502, 4.9552, 4.9602, 4.965199999999999, 4.9702, 4.9752, 4.9802, 4.9852, 4.9902, 4.9952, 5.0001999999999995, 5.0052, 5.0102, 5.0152, 5.0202, 5.0252, 5.0302, 5.0352, 5.0402000000000005, 5.0451999999999995, 5.0502, 5.0552, 5.0602, 5.0652, 5.0702, 5.0752, 5.0802, 5.0852, 5.090199999999999, 5.0952, 5.1002, 5.1052, 5.1102, 5.1152, 5.1202, 5.1251999999999995, 5.1302, 5.1352, 5.1402, 5.1452, 5.1502, 5.1552, 5.1602, 5.1652000000000005, 5.1701999999999995, 5.1752, 5.1802, 5.1852, 5.1902, 5.1952, 5.2002, 5.2052, 5.2102, 5.215199999999999, 5.2202, 5.2252, 5.2302, 5.2352, 5.2402, 5.2452, 5.2501999999999995, 5.2552, 5.2602, 5.2652, 5.2702, 5.2752, 5.2802, 5.2852, 5.2902000000000005, 5.2951999999999995, 5.3002, 5.3052, 5.3102, 5.3152, 5.3202, 5.3252, 5.3302, 5.3352, 5.340199999999999, 5.3452, 5.3502, 5.3552, 5.3602, 5.3652, 5.3702, 5.3751999999999995, 5.3802, 5.3852, 5.3902, 5.3952, 5.4002, 5.4052, 5.4102, 5.4152000000000005, 5.4201999999999995, 5.4252, 5.4302, 5.4352, 5.4402, 5.4452, 5.4502, 5.4552, 5.4602, 5.465199999999999, 5.4702, 5.4752, 5.4802, 5.4852, 5.4902, 5.4952, 5.5001999999999995, 5.5052, 5.5102, 5.5152, 5.5202, 5.5252, 5.5302, 5.5352, 5.5402000000000005, 5.5451999999999995, 5.5502, 5.5552, 5.5602, 5.5652, 5.5702, 5.5752, 5.5802, 5.5852, 5.590199999999999, 5.5952, 5.6002, 5.6052, 5.6102, 5.6152, 5.6202, 5.6251999999999995, 5.6302, 5.6352, 5.6402, 5.6452, 5.6502, 5.6552, 5.6602, 5.6652000000000005, 5.6701999999999995, 5.6752, 5.6802, 5.6852, 5.6902, 5.6952, 5.7002, 5.7052, 5.7102, 5.715199999999999, 5.7202, 5.7252, 5.7302, 5.7352, 5.7402, 5.7452, 5.7501999999999995, 5.7552, 5.7602, 5.7652, 5.7702, 5.7752, 5.7802, 5.7852, 5.7902000000000005, 5.7951999999999995, 5.8002, 5.8052, 5.8102, 5.8152, 5.8202, 5.8252, 5.8302, 5.8352, 5.840199999999999, 5.8452, 5.8502, 5.8552, 5.8602, 5.8652, 5.8702, 5.8751999999999995, 5.8802, 5.8852, 5.8902, 5.8952, 5.9002, 5.9052, 5.9102, 5.9152000000000005, 5.9201999999999995, 5.9252, 5.9302, 5.9352, 5.9402, 5.9452, 5.9502, 5.9552, 5.9602, 5.965199999999999, 5.9702, 5.9752, 5.9802, 5.9852, 5.9902, 5.9952000000000005, 6.0001999999999995, 6.0052, 6.010199999999999, 6.0152, 6.0202, 6.0252, 6.0302, 6.0352, 6.0402000000000005, 6.0451999999999995, 6.0502, 6.0552, 6.0602, 6.0652, 6.0702, 6.075200000000001, 6.0802, 6.0852, 6.090199999999999, 6.0952, 6.1002, 6.1052, 6.1102, 6.1152, 6.1202000000000005, 6.1251999999999995, 6.1302, 6.135199999999999, 6.1402, 6.1452, 6.1502, 6.1552, 6.1602, 6.1652000000000005, 6.1701999999999995, 6.1752, 6.1802, 6.1852, 6.1902, 6.1952, 6.200200000000001, 6.2052, 6.2102, 6.215199999999999, 6.2202, 6.2252, 6.2302, 6.2352, 6.2402, 6.2452000000000005, 6.2501999999999995, 6.2552, 6.260199999999999, 6.2652, 6.2702, 6.2752, 6.2802, 6.2852, 6.2902000000000005, 6.2951999999999995, 6.3002, 6.3052, 6.3102, 6.3152, 6.3202, 6.325200000000001, 6.3302, 6.3352, 6.340199999999999, 6.3452, 6.3502, 6.3552, 6.3602, 6.3652, 6.3702000000000005, 6.3751999999999995, 6.3802, 6.385199999999999, 6.3902, 6.3952, 6.4002, 6.4052, 6.4102, 6.4152000000000005, 6.4201999999999995, 6.4252, 6.4302, 6.4352, 6.4402, 6.4452, 6.450200000000001, 6.4552, 6.4602, 6.465199999999999, 6.4702, 6.4752, 6.4802, 6.4852, 6.4902, 6.4952000000000005, 6.5001999999999995, 6.5052, 6.510199999999999, 6.5152, 6.5202, 6.5252, 6.5302, 6.5352, 6.5402000000000005, 6.5451999999999995, 6.5502, 6.5552, 6.5602, 6.5652, 6.5702, 6.575200000000001, 6.5802, 6.5852, 6.590199999999999, 6.5952, 6.6002, 6.6052, 6.6102, 6.6152, 6.6202000000000005, 6.6251999999999995, 6.6302, 6.635199999999999, 6.6402, 6.6452, 6.6502, 6.6552, 6.6602, 6.6652000000000005, 6.6701999999999995, 6.6752, 6.6802, 6.6852, 6.6902, 6.6952, 6.700200000000001, 6.7052, 6.7102, 6.715199999999999, 6.7202, 6.7252, 6.7302, 6.7352, 6.7402, 6.7452000000000005, 6.7501999999999995, 6.7552, 6.760199999999999, 6.7652, 6.7702, 6.7752, 6.7802, 6.7852, 6.7902000000000005, 6.7951999999999995, 6.8002, 6.8052, 6.8102, 6.8152, 6.8202, 6.825200000000001, 6.8302, 6.8352, 6.840199999999999, 6.8452, 6.8502, 6.8552, 6.8602, 6.8652, 6.8702000000000005, 6.8751999999999995, 6.8802, 6.885199999999999, 6.8902, 6.8952, 6.9002, 6.9052, 6.9102, 6.9152000000000005, 6.9201999999999995, 6.9252, 6.9302, 6.9352, 6.9402, 6.9452, 6.950200000000001, 6.9552, 6.9602, 6.965199999999999, 6.9702, 6.9752, 6.9802, 6.9852, 6.9902, 6.9952000000000005, 7.0001999999999995, 7.0052, 7.010199999999999, 7.0152, 7.0202, 7.0252, 7.0302, 7.0352, 7.0402000000000005, 7.0451999999999995, 7.0502, 7.0552, 7.0602, 7.0652, 7.0702, 7.075200000000001, 7.0802, 7.0852, 7.090199999999999, 7.0952, 7.1002, 7.1052, 7.1102, 7.1152, 7.1202000000000005, 7.1251999999999995, 7.1302, 7.135199999999999, 7.1402, 7.1452, 7.1502, 7.1552, 7.1602, 7.1652000000000005, 7.1701999999999995, 7.1752, 7.1802, 7.1852, 7.1902, 7.1952, 7.200200000000001, 7.2052, 7.2102, 7.215199999999999, 7.2202, 7.2252, 7.2302, 7.2352, 7.2402, 7.2452000000000005, 7.2501999999999995, 7.2552, 7.260199999999999, 7.2652, 7.2702, 7.2752, 7.2802, 7.2852, 7.2902000000000005, 7.2951999999999995, 7.3002, 7.3052, 7.3102, 7.3152, 7.3202, 7.325200000000001, 7.3302, 7.3352, 7.340199999999999, 7.3452, 7.3502, 7.3552, 7.3602, 7.3652, 7.3702000000000005, 7.3751999999999995, 7.3802, 7.385199999999999, 7.3902, 7.3952, 7.4002, 7.4052, 7.4102, 7.4152000000000005, 7.4201999999999995, 7.4252, 7.4302, 7.4352, 7.4402, 7.4452, 7.450200000000001, 7.4552, 7.4602, 7.465199999999999, 7.4702, 7.4752, 7.4802, 7.4852, 7.4902, 7.4952000000000005, 7.5001999999999995, 7.5052, 7.510199999999999, 7.5152, 7.5202, 7.5252, 7.5302, 7.5352, 7.5402000000000005, 7.5451999999999995, 7.5502, 7.5552, 7.5602, 7.5652, 7.5702, 7.575200000000001, 7.5802, 7.5852, 7.590199999999999, 7.5952, 7.6002, 7.6052, 7.6102, 7.6152, 7.6202000000000005, 7.6251999999999995, 7.6302, 7.635199999999999, 7.6402, 7.6452, 7.6502, 7.6552, 7.6602, 7.6652000000000005, 7.6701999999999995, 7.6752, 7.6802, 7.6852, 7.6902, 7.6952, 7.700200000000001, 7.7052, 7.7102, 7.715199999999999, 7.7202, 7.7252, 7.7302, 7.7352, 7.7402, 7.7452000000000005, 7.7501999999999995, 7.7552, 7.760199999999999, 7.7652, 7.7702, 7.7752, 7.7802, 7.7852, 7.7902000000000005, 7.7951999999999995, 7.8002, 7.8052, 7.8102, 7.8152, 7.8202, 7.825200000000001, 7.8302, 7.8352, 7.840199999999999, 7.8452, 7.8502, 7.8552, 7.8602, 7.8652, 7.8702000000000005, 7.8751999999999995, 7.8802, 7.885199999999999, 7.8902, 7.8952, 7.9002, 7.9052, 7.9102, 7.9152000000000005, 7.9201999999999995, 7.9252, 7.9302, 7.9352, 7.9402, 7.9452, 7.950200000000001, 7.9552, 7.9602, 7.965199999999999, 7.9702, 7.975199999999999, 7.9802, 7.985200000000001, 7.9902, 7.9952000000000005, 8.0002, 8.0052, 8.0102, 8.0152, 8.020199999999999, 8.0252, 8.0302, 8.0352, 8.0402, 8.0452, 8.0502, 8.0552, 8.0602, 8.0652, 8.0702, 8.0752, 8.0802, 8.0852, 8.0902, 8.0952, 8.1002, 8.1052, 8.1102, 8.1152, 8.1202, 8.1252, 8.1302, 8.1352, 8.1402, 8.145199999999999, 8.1502, 8.1552, 8.1602, 8.1652, 8.1702, 8.1752, 8.1802, 8.1852, 8.1902, 8.1952, 8.2002, 8.2052, 8.2102, 8.2152, 8.2202, 8.2252, 8.2302, 8.2352, 8.2402, 8.2452, 8.2502, 8.2552, 8.2602, 8.2652, 8.270199999999999, 8.2752, 8.2802, 8.2852, 8.2902, 8.2952, 8.3002, 8.3052, 8.3102, 8.3152, 8.3202, 8.3252, 8.3302, 8.3352, 8.3402, 8.3452, 8.3502, 8.3552, 8.3602, 8.3652, 8.3702, 8.3752, 8.3802, 8.3852, 8.3902, 8.395199999999999, 8.4002, 8.4052, 8.4102, 8.4152, 8.4202, 8.4252, 8.4302, 8.4352, 8.4402, 8.4452, 8.4502, 8.4552, 8.4602, 8.4652, 8.4702, 8.4752, 8.4802, 8.4852, 8.4902, 8.4952, 8.5002, 8.5052, 8.5102, 8.5152, 8.520199999999999, 8.5252, 8.5302, 8.5352, 8.5402, 8.5452, 8.5502, 8.5552, 8.5602, 8.5652, 8.5702, 8.5752, 8.5802, 8.5852, 8.5902, 8.5952, 8.6002, 8.6052, 8.6102, 8.6152, 8.6202, 8.6252, 8.6302, 8.6352, 8.6402, 8.645199999999999, 8.6502, 8.6552, 8.6602, 8.6652, 8.6702, 8.6752, 8.6802, 8.6852, 8.6902, 8.6952, 8.7002, 8.7052, 8.7102, 8.7152, 8.7202, 8.7252, 8.7302, 8.7352, 8.7402, 8.7452, 8.7502, 8.7552, 8.7602, 8.7652, 8.770199999999999, 8.7752, 8.7802, 8.7852, 8.7902, 8.7952, 8.8002, 8.8052, 8.8102, 8.8152, 8.8202, 8.8252, 8.8302, 8.8352, 8.8402, 8.8452, 8.8502, 8.8552, 8.8602, 8.8652, 8.8702, 8.8752, 8.8802, 8.8852, 8.8902, 8.895199999999999, 8.9002, 8.9052, 8.9102, 8.9152, 8.9202, 8.9252, 8.9302, 8.9352, 8.9402, 8.9452, 8.9502, 8.9552, 8.9602, 8.9652, 8.9702, 8.9752, 8.9802, 8.9852, 8.9902, 8.9952, 9.0002, 9.0052, 9.0102, 9.0152, 9.020199999999999, 9.0252, 9.0302, 9.0352, 9.0402, 9.0452, 9.0502, 9.0552, 9.0602, 9.0652, 9.0702, 9.0752, 9.0802, 9.0852, 9.0902, 9.0952, 9.1002, 9.1052, 9.1102, 9.1152, 9.1202, 9.1252, 9.1302, 9.1352, 9.1402, 9.145199999999999, 9.1502, 9.1552, 9.1602, 9.1652, 9.1702, 9.1752, 9.1802, 9.1852, 9.1902, 9.1952, 9.2002, 9.2052, 9.2102, 9.2152, 9.2202, 9.2252, 9.2302, 9.2352, 9.2402, 9.2452, 9.2502, 9.2552, 9.2602, 9.2652, 9.270199999999999, 9.2752, 9.2802, 9.2852, 9.2902, 9.2952, 9.3002, 9.3052, 9.3102, 9.3152, 9.3202, 9.3252, 9.3302, 9.3352, 9.3402, 9.3452, 9.3502, 9.3552, 9.3602, 9.3652, 9.3702, 9.3752, 9.3802, 9.3852, 9.3902, 9.395199999999999, 9.4002, 9.4052, 9.4102, 9.4152, 9.4202, 9.4252, 9.4302, 9.4352, 9.4402, 9.4452, 9.4502, 9.4552, 9.4602, 9.4652, 9.4702, 9.4752, 9.4802, 9.4852, 9.4902, 9.4952, 9.5002, 9.5052, 9.5102, 9.5152, 9.520199999999999, 9.5252, 9.5302, 9.5352, 9.5402, 9.5452, 9.5502, 9.5552, 9.5602, 9.5652, 9.5702, 9.5752, 9.5802, 9.5852, 9.5902, 9.5952, 9.6002, 9.6052, 9.6102, 9.6152, 9.6202, 9.6252, 9.6302, 9.6352, 9.6402, 9.645199999999999, 9.6502, 9.6552, 9.6602, 9.6652, 9.6702, 9.6752, 9.6802, 9.6852, 9.6902, 9.6952, 9.7002, 9.7052, 9.7102, 9.7152, 9.7202, 9.7252, 9.7302, 9.7352, 9.7402, 9.7452, 9.7502, 9.7552, 9.7602, 9.7652, 9.770199999999999, 9.7752, 9.7802, 9.7852, 9.7902, 9.7952, 9.8002, 9.8052, 9.8102, 9.8152, 9.8202, 9.8252, 9.8302, 9.8352, 9.8402, 9.8452, 9.8502, 9.8552, 9.8602, 9.8652, 9.8702, 9.8752, 9.8802, 9.8852, 9.8902, 9.895199999999999, 9.9002, 9.9052, 9.9102, 9.9152, 9.9202, 9.9252, 9.9302, 9.9352, 9.9402, 9.9452, 9.9502, 9.9552, 9.9602, 9.9652, 9.9702, 9.9752, 9.9802, 9.9852, 9.9902, 9.9952, 10.0002, 10.0052, 10.0102, 10.0152, 10.020199999999999, 10.0252, 10.0302, 10.0352, 10.0402, 10.0452, 10.0502, 10.0552, 10.0602, 10.0652, 10.0702, 10.0752, 10.0802, 10.0852, 10.0902, 10.0952, 10.1002, 10.1052, 10.1102, 10.1152, 10.1202, 10.1252, 10.1302, 10.1352, 10.1402, 10.145199999999999, 10.1502, 10.1552, 10.1602, 10.1652, 10.1702, 10.1752, 10.1802, 10.1852, 10.1902, 10.1952, 10.2002, 10.2052, 10.2102, 10.2152, 10.2202, 10.2252, 10.2302, 10.2352, 10.2402, 10.2452, 10.2502, 10.2552, 10.2602, 10.2652, 10.270199999999999, 10.2752, 10.2802, 10.2852, 10.2902, 10.2952, 10.3002, 10.3052, 10.3102, 10.3152, 10.3202, 10.3252, 10.3302, 10.3352, 10.3402, 10.3452, 10.3502, 10.3552, 10.3602, 10.3652, 10.3702, 10.3752, 10.3802, 10.3852, 10.3902, 10.395199999999999, 10.4002, 10.4052, 10.4102, 10.4152, 10.4202, 10.4252, 10.4302, 10.4352, 10.4402, 10.4452, 10.4502, 10.4552, 10.4602, 10.4652, 10.4702, 10.4752, 10.4802, 10.4852, 10.4902, 10.4952, 10.5002, 10.5052, 10.5102, 10.5152, 10.520199999999999, 10.5252, 10.5302, 10.5352, 10.5402, 10.5452, 10.5502], list(map(lambda x: x.value, dos.conditions.scalars))) self.assertEquals([-4.957e-05, -8.501e-05, -0.0001428, -0.0002347, -0.0003778, -0.0005949, -0.0009164, -0.00138, -0.002032, -0.002921, -0.004097, -0.005601, -0.007451, -0.009628, -0.01205, -0.01455, -0.01686, -0.01856, -0.01913, -0.01787, -0.01402, -0.006742, 0.004777, 0.02122, 0.04303, 0.07032, 0.1028, 0.1397, 0.1798, 0.2217, 0.2637, 0.3041, 0.3417, 0.3754, 0.405, 0.4307, 0.4535, 0.4743, 0.4945, 0.5149, 0.536, 0.5575, 0.5781, 0.5962, 0.6094, 0.6155, 0.6125, 0.5994, 0.5763, 0.5447, 0.5074, 0.4682, 0.4316, 0.4025, 0.3849, 0.3817, 0.3946, 0.423, 0.4649, 0.5165, 0.5728, 0.6285, 0.6783, 0.7177, 0.7433, 0.7534, 0.7473, 0.7259, 0.6912, 0.6457, 0.5923, 0.5341, 0.4742, 0.4156, 0.3613, 0.3144, 0.2781, 0.2553, 0.2487, 0.2603, 0.2912, 0.3412, 0.4083, 0.4891, 0.5786, 0.6705, 0.758, 0.8342, 0.8928, 0.9293, 0.9407, 0.9267, 0.889, 0.8315, 0.7597, 0.68, 0.5986, 0.5214, 0.4528, 0.3957, 0.3512, 0.3189, 0.2974, 0.2847, 0.2787, 0.2781, 0.2822, 0.2912, 0.3061, 0.3283, 0.3593, 0.4, 0.4506, 0.5102, 0.5769, 0.648, 0.7202, 0.7898, 0.8534, 0.908, 0.9508, 0.98, 0.994, 0.992, 0.9734, 0.9384, 0.8878, 0.823, 0.7463, 0.6609, 0.5707, 0.4802, 0.394, 0.3165, 0.2515, 0.202, 0.1696, 0.1545, 0.1561, 0.1725, 0.2015, 0.2405, 0.2875, 0.3405, 0.3984, 0.4602, 0.5254, 0.5934, 0.6629, 0.7323, 0.799, 0.8599, 0.9116, 0.9506, 0.9745, 0.9819, 0.973, 0.9499, 0.9159, 0.8756, 0.8341, 0.7957, 0.764, 0.7407, 0.7254, 0.7162, 0.7093, 0.7002, 0.6843, 0.6577, 0.618, 0.5646, 0.4987, 0.4236, 0.3438, 0.265, 0.1931, 0.1338, 0.09214, 0.0719, 0.0756, 0.1042, 0.1572, 0.2324, 0.3267, 0.4356, 0.5538, 0.6757, 0.7955, 0.9078, 1.008, 1.092, 1.156, 1.2, 1.221, 1.222, 1.201, 1.161, 1.104, 1.033, 0.9513, 0.8631, 0.7732, 0.6866, 0.6085, 0.5437, 0.4961, 0.4679, 0.4598, 0.4701, 0.495, 0.5292, 0.5661, 0.5985, 0.6201, 0.6255, 0.6116, 0.5776, 0.5251, 0.4584, 0.3835, 0.3081, 0.2402, 0.1879, 0.1582, 0.1568, 0.1871, 0.25, 0.3439, 0.4643, 0.6047, 0.7564, 0.9099, 1.055, 1.184, 1.287, 1.361, 1.403, 1.413, 1.394, 1.351, 1.291, 1.218, 1.138, 1.054, 0.9707, 0.8876, 0.8058, 0.7255, 0.6472, 0.5724, 0.5031, 0.4424, 0.3935, 0.3597, 0.3433, 0.3451, 0.3641, 0.3975, 0.4405, 0.4875, 0.5322, 0.5689, 0.5931, 0.6025, 0.5971, 0.5795, 0.5544, 0.5283, 0.5083, 0.5012, 0.5127, 0.5467, 0.6046, 0.6849, 0.7838, 0.8953, 1.012, 1.126, 1.229, 1.316, 1.38, 1.421, 1.437, 1.431, 1.408, 1.374, 1.334, 1.295, 1.262, 1.236, 1.221, 1.213, 1.212, 1.213, 1.214, 1.211, 1.202, 1.188, 1.169, 1.149, 1.13, 1.117, 1.112, 1.119, 1.139, 1.172, 1.218, 1.276, 1.344, 1.42, 1.501, 1.585, 1.67, 1.752, 1.83, 1.902, 1.965, 2.019, 2.062, 2.096, 2.12, 2.137, 2.149, 2.158, 2.166, 2.176, 2.186, 2.198, 2.208, 2.215, 2.213, 2.2, 2.171, 2.124, 2.057, 1.969, 1.863, 1.741, 1.61, 1.475, 1.345, 1.228, 1.132, 1.066, 1.035, 1.043, 1.094, 1.184, 1.312, 1.471, 1.653, 1.848, 2.046, 2.237, 2.412, 2.562, 2.682, 2.768, 2.818, 2.834, 2.819, 2.777, 2.713, 2.635, 2.549, 2.462, 2.379, 2.305, 2.242, 2.193, 2.158, 2.135, 2.122, 2.115, 2.112, 2.11, 2.105, 2.096, 2.083, 2.067, 2.052, 2.041, 2.04, 2.056, 2.095, 2.163, 2.262, 2.396, 2.563, 2.76, 2.98, 3.213, 3.448, 3.674, 3.877, 4.046, 4.17, 4.243, 4.261, 4.223, 4.133, 3.998, 3.829, 3.639, 3.441, 3.25, 3.079, 2.94, 2.843, 2.791, 2.786, 2.824, 2.897, 2.993, 3.095, 3.189, 3.257, 3.286, 3.267, 3.196, 3.074, 2.911, 2.72, 2.52, 2.332, 2.175, 2.066, 2.015, 2.029, 2.104, 2.232, 2.398, 2.584, 2.769, 2.936, 3.068, 3.153, 3.185, 3.164, 3.094, 2.983, 2.842, 2.684, 2.519, 2.358, 2.208, 2.072, 1.952, 1.846, 1.751, 1.664, 1.583, 1.505, 1.433, 1.368, 1.316, 1.281, 1.268, 1.278, 1.313, 1.37, 1.443, 1.526, 1.607, 1.68, 1.734, 1.763, 1.763, 1.733, 1.673, 1.589, 1.485, 1.368, 1.247, 1.127, 1.017, 0.9197, 0.8411, 0.784, 0.75, 0.7399, 0.7538, 0.7907, 0.8497, 0.929, 1.027, 1.14, 1.266, 1.401, 1.539, 1.674, 1.801, 1.913, 2.002, 2.064, 2.094, 2.091, 2.054, 1.985, 1.89, 1.773, 1.643, 1.508, 1.374, 1.251, 1.145, 1.062, 1.007, 0.9842, 0.9966, 1.045, 1.13, 1.249, 1.399, 1.573, 1.764, 1.963, 2.157, 2.337, 2.49, 2.608, 2.681, 2.705, 2.68, 2.608, 2.496, 2.354, 2.195, 2.036, 1.892, 1.781, 1.717, 1.716, 1.784, 1.928, 2.144, 2.425, 2.753, 3.108, 3.463, 3.789, 4.061, 4.255, 4.355, 4.354, 4.255, 4.071, 3.824, 3.538, 3.242, 2.964, 2.724, 2.539, 2.415, 2.351, 2.339, 2.365, 2.412, 2.464, 2.504, 2.522, 2.511, 2.47, 2.401, 2.313, 2.215, 2.117, 2.028, 1.956, 1.903, 1.871, 1.858, 1.859, 1.866, 1.875, 1.877, 1.868, 1.843, 1.8, 1.738, 1.656, 1.556, 1.441, 1.313, 1.175, 1.03, 0.8835, 0.7382, 0.5983, 0.4675, 0.3488, 0.2447, 0.1566, 0.08505, 0.0298, -0.01035, -0.03718, -0.05286, -0.05977, -0.0602, -0.05627, -0.04975, -0.04206, -0.03422, -0.02691, -0.02052, -0.0152, -0.01095, -0.007687, -0.005262, -0.003515, -0.002293, -0.001461, -0.0009103, -0.0005545, -0.0003303, -0.0001925, -0.0001098, -6.128e-05, -3.349e-05, -1.792e-05, -9.385e-06, -4.815e-06, -2.419e-06, -1.191e-06, -5.741e-07, -2.712e-07, -1.255e-07, -5.688e-08, -2.527e-08, -1.1e-08, -4.691e-09, -1.96e-09, -8.028e-10, -3.222e-10, -1.267e-10, -4.884e-11, -1.845e-11, -6.829e-12, -2.477e-12, -8.807e-13, -3.069e-13, -1.048e-13, -3.507e-14, -1.15e-14, -3.696e-15, -1.164e-15, -3.595e-16, -1.088e-16, -3.225e-17, -9.372e-18, -2.669e-18, -7.451e-19, -2.038e-19, -5.464e-20, -1.435e-20, -3.696e-21, -9.327e-22, -2.307e-22, -5.59e-23, -1.328e-23, -3.091e-24, -7.052e-25, -1.577e-25, -3.454e-26, -7.417e-27, -1.561e-27, -3.219e-28, -6.506e-29, -1.289e-29, -2.502e-30, -4.759e-31, -8.874e-32, -1.621e-32, -2.903e-33, -5.095e-34, -8.763e-35, -1.477e-35, -2.44e-36, -3.95e-37, -6.266e-38, -9.743e-39, -1.485e-39, -2.217e-40, -3.245e-41, -4.654e-42, -6.542e-43, -9.013e-44, -1.217e-44, -1.61e-45, -2.088e-46, -2.654e-47, -3.305e-48, -4.035e-49, -4.827e-50, -5.66e-51, -6.504e-52, -7.324e-53, -8.084e-54, -8.745e-55, -9.271e-56, -9.632e-57, -9.808e-58, -9.789e-59, -9.574e-60, -9.178e-61, -8.623e-62, -7.94e-63, -7.165e-64, -6.337e-65, -5.493e-66, -4.667e-67, -3.886e-68, -3.171e-69, -2.536e-70, -1.988e-71, -1.527e-72, -1.15e-73, -8.486e-75, -6.138e-76, -4.354e-77, -3.05e-78, -2.329e-79, -4.083e-80, -2.797e-80, -2.711e-80, -2.704e-80, -2.701e-80, -2.699e-80, -2.697e-80, -2.695e-80, -2.693e-80, -2.691e-80, -2.689e-80, -2.687e-80, -2.685e-80, -2.683e-80, -2.681e-80, -2.679e-80, -2.677e-80, -2.675e-80, -2.673e-80, -2.671e-80, -2.669e-80, -2.667e-80, -2.666e-80, -2.664e-80, -2.662e-80, -2.66e-80, -2.658e-80, -2.656e-80, -2.654e-80, -2.652e-80, -2.65e-80, -2.648e-80, -2.646e-80, -2.644e-80, -2.642e-80, -2.64e-80, -2.638e-80, -2.636e-80, -2.634e-80, -2.632e-80, -2.63e-80, -2.628e-80, -2.626e-80, -2.624e-80, -2.622e-80, -2.62e-80, -2.618e-80, -2.616e-80, -2.614e-80, -2.612e-80, -2.61e-80, -2.608e-80, -2.606e-80, -2.604e-80, -2.602e-80, -2.6e-80, -2.599e-80, -2.597e-80, -2.595e-80, -2.593e-80, -2.591e-80, -2.589e-80, -2.587e-80, -2.585e-80, -2.583e-80, -2.581e-80, -2.579e-80, -2.577e-80, -2.575e-80, -2.573e-80, -2.571e-80, -2.569e-80, -2.567e-80, -2.565e-80, -2.564e-80, -2.562e-80, -2.56e-80, -2.558e-80, -2.556e-80, -2.554e-80, -2.552e-80, -2.55e-80, -2.548e-80, -2.546e-80, -2.544e-80, -2.542e-80, -2.54e-80, -2.538e-80, -2.537e-80, -2.535e-80, -2.533e-80, -2.531e-80, -2.529e-80, -2.527e-80, -2.525e-80, -2.523e-80, -2.521e-80, -2.519e-80, -2.517e-80, -2.515e-80, -2.514e-80, -2.512e-80, -2.51e-80, -2.508e-80, -2.506e-80, -2.504e-80, -2.502e-80, -2.5e-80, -2.498e-80, -2.496e-80, -2.495e-80, -2.493e-80, -2.491e-80, -2.489e-80, -2.487e-80, -2.485e-80, -2.483e-80, -2.481e-80, -2.479e-80, -2.477e-80, -2.476e-80, -2.474e-80, -2.472e-80, -2.47e-80, -2.468e-80, -2.466e-80, -2.464e-80, -2.462e-80, -2.461e-80, -2.459e-80, -2.457e-80, -2.455e-80, -2.453e-80, -2.451e-80, -2.449e-80, -2.447e-80, -2.446e-80, -2.444e-80, -2.442e-80, -2.44e-80, -2.438e-80, -2.436e-80, -2.434e-80, -2.432e-80, -2.431e-80, -2.429e-80, -2.427e-80, -2.425e-80, -2.423e-80, -2.421e-80, -2.419e-80, -2.418e-80, -2.416e-80, -2.414e-80, -2.412e-80, -2.41e-80, -2.408e-80, -2.406e-80, -2.405e-80, -2.403e-80, -2.401e-80, -2.399e-80, -2.397e-80, -2.395e-80, -2.393e-80, -2.392e-80, -2.39e-80, -2.388e-80, -2.386e-80, -2.384e-80, -2.382e-80, -2.381e-80, -2.379e-80, -2.377e-80, -2.375e-80, -2.373e-80, -2.371e-80, -2.37e-80, -2.368e-80, -2.366e-80, -2.364e-80, -2.362e-80, -2.36e-80, -2.359e-80, -2.357e-80, -2.355e-80, -2.353e-80, -2.351e-80, -2.349e-80, -2.348e-80, -2.346e-80, -2.344e-80, -2.342e-80, -2.34e-80, -2.339e-80, -2.337e-80, -2.335e-80, -2.333e-80, -2.331e-80, -2.33e-80, -2.328e-80, -2.326e-80, -2.324e-80, -2.322e-80, -2.32e-80, -2.319e-80, -2.317e-80, -2.315e-80, -2.313e-80, -2.311e-80, -2.31e-80, -2.308e-80, -2.306e-80, -2.304e-80, -2.302e-80, -2.301e-80, -2.299e-80, -2.297e-80, -2.295e-80, -2.294e-80, -2.292e-80, -2.29e-80, -2.288e-80, -2.286e-80, -2.285e-80, -2.283e-80, -2.281e-80, -2.279e-80, -2.277e-80, -2.276e-80, -2.274e-80, -2.272e-80, -2.27e-80, -2.269e-80, -2.267e-80, -2.265e-80, -2.263e-80, -2.261e-80, -2.26e-80, -2.258e-80, -2.256e-80, -2.254e-80, -2.253e-80, -2.251e-80, -2.249e-80, -2.247e-80, -2.246e-80, -2.244e-80, -2.242e-80, -2.24e-80, -2.238e-80, -2.237e-80, -2.235e-80, -2.233e-80, -2.231e-80, -2.23e-80, -2.228e-80, -2.226e-80, -2.224e-80, -2.223e-80, -2.221e-80, -2.219e-80, -2.217e-80, -2.216e-80, -2.214e-80, -2.212e-80, -2.21e-80, -2.209e-80, -2.207e-80, -2.205e-80, -2.204e-80, -2.202e-80, -2.2e-80, -2.198e-80, -2.197e-80, -2.195e-80, -2.193e-80, -2.191e-80, -2.19e-80, -2.188e-80, -2.186e-80, -2.184e-80, -2.183e-80, -2.181e-80, -2.179e-80, -2.178e-80, -2.176e-80, -2.174e-80, -2.172e-80, -2.171e-80, -2.169e-80, -2.167e-80, -2.166e-80, -2.164e-80, -2.162e-80, -2.16e-80, -2.159e-80, -2.157e-80, -2.155e-80, -2.154e-80, -2.152e-80, -2.15e-80, -2.148e-80, -2.147e-80, -2.145e-80, -2.143e-80, -2.142e-80, -2.14e-80, -2.138e-80, -2.136e-80, -2.135e-80, -2.133e-80, -2.131e-80, -2.13e-80, -2.128e-80, -2.126e-80, -2.125e-80, -2.123e-80, -2.121e-80, -2.12e-80, -2.118e-80, -2.116e-80, -2.114e-80, -2.113e-80, -2.111e-80, -2.109e-80, -2.108e-80, -2.106e-80, -2.104e-80, -2.103e-80, -2.101e-80, -2.099e-80, -2.098e-80, -2.096e-80, -2.094e-80, -2.093e-80, -2.091e-80, -2.089e-80, -2.088e-80, -2.086e-80, -2.084e-80, -2.083e-80, -2.081e-80, -2.079e-80, -2.078e-80, -2.076e-80, -2.074e-80, -2.073e-80, -2.071e-80, -2.069e-80, -2.068e-80, -2.066e-80, -2.064e-80, -2.063e-80, -2.061e-80, -2.059e-80, -2.058e-80, -2.056e-80, -2.054e-80, -2.053e-80, -2.051e-80, -2.049e-80, -2.048e-80, -2.046e-80, -2.044e-80, -2.043e-80, -2.041e-80, -2.04e-80, -2.038e-80, -2.036e-80, -2.035e-80, -2.033e-80, -2.031e-80, -2.03e-80, -2.028e-80, -2.026e-80, -2.025e-80, -2.023e-80, -2.022e-80, -2.02e-80, -2.018e-80, -2.017e-80, -2.015e-80, -2.013e-80, -2.012e-80, -2.01e-80, -2.009e-80, -2.007e-80, -2.005e-80, -2.004e-80, -2.002e-80, -2e-80, -1.999e-80, -1.997e-80, -1.996e-80, -1.994e-80, -1.992e-80, -1.991e-80, -1.989e-80, -1.988e-80, -1.986e-80, -1.984e-80, -1.983e-80, -1.981e-80, -1.979e-80, -1.978e-80, -1.976e-80, -1.975e-80, -1.973e-80, -1.971e-80, -1.97e-80, -1.968e-80, -1.967e-80, -1.965e-80, -1.963e-80, -1.962e-80, -1.96e-80, -1.959e-80, -1.957e-80, -1.956e-80, -1.954e-80, -1.952e-80, -1.951e-80, -1.949e-80, -1.948e-80, -1.946e-80, -1.944e-80, -1.943e-80, -1.941e-80, -1.94e-80, -1.938e-80, -1.936e-80, -1.935e-80, -1.933e-80, -1.932e-80, -1.93e-80, -1.929e-80, -1.927e-80, -1.925e-80, -1.924e-80, -1.922e-80, -1.921e-80, -1.919e-80, -1.918e-80, -1.916e-80, -1.915e-80, -1.913e-80, -1.911e-80, -1.91e-80, -1.908e-80, -1.907e-80, -1.905e-80, -1.904e-80, -1.902e-80, -1.9e-80, -1.899e-80, -1.897e-80, -1.896e-80, -1.894e-80, -1.893e-80, -1.891e-80, -1.89e-80, -1.888e-80, -1.887e-80, -1.885e-80, -1.883e-80, -1.882e-80, -1.88e-80, -1.879e-80, -1.877e-80, -1.876e-80, -1.874e-80, -1.873e-80, -1.871e-80, -1.87e-80, -1.868e-80, -1.866e-80, -1.865e-80, -1.863e-80, -1.862e-80, -1.86e-80, -1.859e-80, -1.857e-80, -1.856e-80, -1.854e-80, -1.853e-80, -1.851e-80, -1.85e-80, -1.848e-80, -1.847e-80, -1.845e-80, -1.844e-80, -1.842e-80, -1.841e-80, -1.839e-80, -1.838e-80, -1.836e-80, -1.835e-80, -1.833e-80, -1.832e-80, -1.83e-80, -1.828e-80, -1.827e-80, -1.825e-80, -1.824e-80, -1.822e-80, -1.821e-80, -1.819e-80, -1.818e-80, -1.816e-80, -1.815e-80, -1.813e-80, -1.812e-80, -1.81e-80, -1.809e-80, -1.807e-80, -1.806e-80, -1.804e-80, -1.803e-80, -1.801e-80, -1.8e-80, -1.799e-80, -1.797e-80, -1.796e-80, -1.794e-80, -1.793e-80, -1.791e-80, -1.79e-80, -1.788e-80, -1.787e-80, -1.785e-80, -1.784e-80, -1.782e-80, -1.781e-80, -1.779e-80, -1.778e-80, -1.776e-80, -1.775e-80, -1.773e-80, -1.772e-80, -1.77e-80, -1.769e-80, -1.767e-80, -1.766e-80, -1.765e-80, -1.763e-80, -1.762e-80, -1.76e-80, -1.759e-80, -1.757e-80, -1.756e-80, -1.754e-80, -1.753e-80, -1.751e-80, -1.75e-80, -1.749e-80, -1.747e-80, -1.746e-80, -1.744e-80, -1.743e-80, -1.741e-80, -1.74e-80, -1.738e-80, -1.737e-80, -1.735e-80, -1.734e-80, -1.733e-80, -1.731e-80, -1.73e-80, -1.728e-80, -1.727e-80, -1.725e-80, -1.724e-80, -1.722e-80, -1.721e-80, -1.72e-80, -1.718e-80, -1.717e-80, -1.715e-80, -1.714e-80, -1.712e-80, -1.711e-80, -1.71e-80, -1.708e-80, -1.707e-80, -1.705e-80, -1.704e-80, -1.702e-80, -1.701e-80, -1.7e-80, -1.698e-80, -1.697e-80, -1.695e-80, -1.694e-80, -1.693e-80, -1.691e-80, -1.69e-80, -1.688e-80, -1.687e-80, -1.685e-80, -1.684e-80, -1.683e-80, -1.681e-80, -1.68e-80, -1.678e-80, -1.677e-80, -1.676e-80, -1.674e-80, -1.673e-80, -1.671e-80, -1.67e-80, -1.669e-80, -1.667e-80, -1.666e-80, -1.664e-80, -1.663e-80, -1.662e-80, -1.66e-80, -1.659e-80, -1.657e-80, -1.656e-80, -1.655e-80, -1.653e-80, -1.652e-80, -1.651e-80, -1.649e-80, -1.648e-80, -1.646e-80, -1.645e-80, -1.644e-80, -1.642e-80, -1.641e-80, -1.639e-80, -1.638e-80, -1.637e-80, -1.635e-80, -1.634e-80, -1.633e-80, -1.631e-80, -1.63e-80, -1.629e-80, -1.627e-80, -1.626e-80, -1.624e-80, -1.623e-80, -1.622e-80, -1.62e-80, -1.619e-80, -1.618e-80, -1.616e-80, -1.615e-80, -1.614e-80, -1.612e-80, -1.611e-80, -1.609e-80, -1.608e-80, -1.607e-80, -1.605e-80, -1.604e-80, -1.603e-80, -1.601e-80, -1.6e-80, -1.599e-80, -1.597e-80, -1.596e-80, -1.595e-80, -1.593e-80, -1.592e-80, -1.591e-80, -1.589e-80, -1.588e-80, -1.587e-80, -1.585e-80, -1.584e-80, -1.583e-80, -1.581e-80, -1.58e-80, -1.579e-80, -1.577e-80, -1.576e-80, -1.575e-80, -1.573e-80, -1.572e-80, -1.571e-80, -1.569e-80, -1.568e-80, -1.567e-80, -1.565e-80, -1.564e-80, -1.563e-80, -1.561e-80, -1.56e-80, -1.559e-80, -1.557e-80, -1.556e-80, -1.555e-80, -1.553e-80, -1.552e-80, -1.551e-80, -1.549e-80, -1.548e-80, -1.547e-80, -1.546e-80, -1.544e-80, -1.543e-80, -1.542e-80, -1.54e-80, -1.539e-80, -1.538e-80, -1.536e-80, -1.535e-80, -1.534e-80, -1.533e-80, -1.531e-80, -1.53e-80, -1.529e-80, -1.527e-80, -1.526e-80, -1.525e-80, -1.523e-80, -1.522e-80, -1.521e-80, -1.52e-80, -1.518e-80, -1.517e-80, -1.516e-80, -1.514e-80, -1.513e-80, -1.512e-80, -1.511e-80, -1.509e-80, -1.508e-80, -1.507e-80, -1.505e-80, -1.504e-80, -1.503e-80, -1.502e-80, -1.5e-80, -1.499e-80, -1.498e-80, -1.497e-80, -1.495e-80, -1.494e-80, -1.493e-80, -1.492e-80, -1.49e-80, -1.489e-80, -1.488e-80, -1.486e-80, -1.485e-80, -1.484e-80, -1.483e-80, -1.481e-80, -1.48e-80, -1.479e-80, -1.478e-80, -1.476e-80, -1.475e-80, -1.474e-80, -1.473e-80, -1.471e-80, -1.47e-80, -1.469e-80, -1.468e-80, -1.466e-80, -1.465e-80, -1.464e-80, -1.463e-80, -1.461e-80, -1.46e-80, -1.459e-80, -1.458e-80, -1.456e-80, -1.455e-80, -1.454e-80, -1.453e-80, -1.452e-80, -1.45e-80, -1.449e-80, -1.448e-80, -1.447e-80, -1.445e-80, -1.444e-80, -1.443e-80, -1.442e-80, -1.44e-80, -1.439e-80, -1.438e-80, -1.437e-80, -1.436e-80, -1.434e-80, -1.433e-80, -1.432e-80, -1.431e-80, -1.43e-80, -1.428e-80, -1.427e-80, -1.426e-80, -1.425e-80, -1.423e-80, -1.422e-80, -1.421e-80, -1.42e-80, -1.419e-80, -1.417e-80, -1.416e-80, -1.415e-80, -1.414e-80, -1.413e-80, -1.411e-80, -1.41e-80, -1.409e-80, -1.408e-80, -1.407e-80, -1.405e-80, -1.404e-80, -1.403e-80, -1.402e-80, -1.401e-80, -1.399e-80, -1.398e-80, -1.397e-80, -1.396e-80, -1.395e-80, -1.393e-80, -1.392e-80, -1.391e-80, -1.39e-80, -1.389e-80, -1.388e-80, -1.386e-80, -1.385e-80, -1.384e-80, -1.383e-80, -1.382e-80, -1.381e-80, -1.379e-80, -1.378e-80, -1.377e-80, -1.376e-80, -1.375e-80, -1.373e-80, -1.372e-80, -1.371e-80, -1.37e-80, -1.369e-80, -1.368e-80, -1.366e-80, -1.365e-80, -1.364e-80, -1.363e-80, -1.362e-80, -1.361e-80, -1.36e-80, -1.358e-80, -1.357e-80, -1.356e-80, -1.355e-80, -1.354e-80, -1.353e-80, -1.351e-80, -1.35e-80, -1.349e-80, -1.348e-80, -1.347e-80, -1.346e-80, -1.346e-80, -1.365e-80, -1.684e-80, -6.522e-80, -7.844e-79, -1.126e-77, -1.607e-76, -2.252e-75, -3.092e-74, -4.16e-73, -5.487e-72, -7.092e-71, -8.985e-70, -1.116e-68, -1.358e-67, -1.619e-66, -1.892e-65, -2.168e-64, -2.434e-63, -2.678e-62, -2.888e-61, -3.052e-60, -3.162e-59, -3.209e-58, -3.193e-57, -3.113e-56, -2.975e-55, -2.786e-54, -2.557e-53, -2.3e-52, -2.028e-51, -1.752e-50, -1.483e-49, -1.231e-48, -1.001e-47, -7.975e-47, -6.228e-46, -4.767e-45, -3.576e-44, -2.628e-43, -1.893e-42, -1.337e-41, -9.247e-41, -6.269e-40, -4.165e-39, -2.712e-38, -1.73e-37, -1.082e-36, -6.63e-36, -3.981e-35, -2.342e-34, -1.351e-33, -7.631e-33, -4.225e-32, -2.292e-31, -1.219e-30, -6.35e-30, -3.242e-29, -1.622e-28, -7.949e-28, -3.818e-27, -1.797e-26, -8.287e-26, -3.745e-25, -1.658e-24, -7.193e-24, -3.058e-23, -1.273e-22, -5.196e-22, -2.078e-21, -8.138e-21, -3.123e-20, -1.174e-19, -4.327e-19, -1.562e-18, -5.521e-18, -1.913e-17, -6.49e-17, -2.158e-16, -7.027e-16, -2.242e-15, -7.005e-15, -2.144e-14, -6.429e-14, -1.888e-13, -5.432e-13, -1.53e-12, -4.223e-12, -1.141e-11, -3.02e-11, -7.828e-11, -1.987e-10, -4.938e-10, -1.202e-09, -2.863e-09, -6.68e-09, -1.526e-08, -3.411e-08, -7.465e-08, -1.599e-07, -3.353e-07, -6.881e-07, -1.382e-06, -2.715e-06, -5.22e-06, -9.817e-06, -1.806e-05, -3.249e-05, -5.717e-05, -9.836e-05, -0.0001654, -0.000272, -0.0004369, -0.0006857, -0.001051, -0.001574, -0.0023, -0.003279, -0.004559, -0.006178, -0.008153, -0.01047, -0.01306, -0.01579, -0.01845, -0.02076, -0.0223, -0.02258, -0.02101, -0.01689, -0.009437, 0.002204, 0.01896, 0.04179, 0.07166, 0.1095, 0.1559, 0.2115, 0.2764, 0.3499, 0.4311, 0.518, 0.6082, 0.6983, 0.7847, 0.8636, 0.9313, 0.9842, 1.02, 1.037, 1.034, 1.012, 0.9718, 0.917, 0.8509, 0.7777, 0.7026, 0.6312, 0.5693, 0.5226, 0.4963, 0.4945, 0.5195, 0.5717, 0.6489, 0.7464, 0.8576, 0.974, 1.086, 1.186, 1.265, 1.318, 1.343, 1.34, 1.313, 1.267, 1.209, 1.145, 1.083, 1.025, 0.9755, 0.9333, 0.897, 0.8639, 0.8302, 0.7928, 0.7492, 0.6981, 0.6403, 0.5782, 0.5157, 0.4583, 0.4121, 0.3835, 0.3781, 0.4006, 0.4531, 0.5354, 0.6444, 0.7741, 0.9158, 1.06, 1.195, 1.311, 1.4, 1.458, 1.482, 1.477, 1.447, 1.402, 1.352, 1.307, 1.275, 1.261, 1.268, 1.293, 1.33, 1.371, 1.407, 1.428, 1.427, 1.397, 1.338, 1.251, 1.141, 1.014, 0.8786, 0.7445, 0.6202, 0.5137, 0.4318, 0.3802, 0.3635, 0.3852, 0.4475, 0.5511, 0.695, 0.8757, 1.087, 1.322, 1.567, 1.811, 2.04, 2.242, 2.405, 2.524, 2.596, 2.621, 2.606, 2.561, 2.496, 2.425, 2.356, 2.298, 2.255, 2.227, 2.21, 2.197, 2.179, 2.147, 2.093, 2.011, 1.899, 1.758, 1.593, 1.414, 1.232, 1.06, 0.9099, 0.7955, 0.7268, 0.7111, 0.7523, 0.8499, 0.9994, 1.192, 1.417, 1.659, 1.904, 2.138, 2.35, 2.53, 2.675, 2.786, 2.866, 2.923, 2.966, 3.004, 3.041, 3.082, 3.125, 3.165, 3.197, 3.21, 3.196, 3.148, 3.061, 2.937, 2.778, 2.591, 2.388, 2.181, 1.983, 1.806, 1.661, 1.556, 1.498, 1.487, 1.524, 1.605, 1.721, 1.865, 2.024, 2.188, 2.342, 2.475, 2.576, 2.635, 2.647, 2.608, 2.519, 2.384, 2.21, 2.007, 1.785, 1.558, 1.338, 1.136, 0.9631, 0.8271, 0.7345, 0.6898, 0.696, 0.754, 0.8638, 1.024, 1.231, 1.48, 1.765, 2.077, 2.407, 2.744, 3.077, 3.396, 3.693, 3.962, 4.202, 4.413, 4.599, 4.767, 4.926, 5.083, 5.247, 5.421, 5.609, 5.809, 6.018, 6.229, 6.431, 6.612, 6.759, 6.861, 6.907, 6.888, 6.802, 6.649, 6.437, 6.176, 5.88, 5.566, 5.251, 4.95, 4.674, 4.432, 4.222, 4.042, 3.881, 3.728, 3.568, 3.39, 3.184, 2.946, 2.676, 2.38, 2.069, 1.76, 1.468, 1.212, 1.006, 0.8621, 0.7864, 0.7796, 0.8357, 0.9436, 1.087, 1.247, 1.404, 1.54, 1.639, 1.69, 1.69, 1.639, 1.544, 1.418, 1.272, 1.123, 0.985, 0.8685, 0.7822, 0.7309, 0.7156, 0.7348, 0.7847, 0.8604, 0.9562, 1.067, 1.186, 1.308, 1.428, 1.538, 1.633, 1.705, 1.748, 1.757, 1.728, 1.66, 1.555, 1.416, 1.25, 1.066, 0.8744, 0.684, 0.5048, 0.3451, 0.2116, 0.109, 0.04035, 0.006949, 0.008612, 0.04391, 0.1104, 0.2046, 0.3223, 0.4585, 0.6076, 0.7634, 0.9195, 1.069, 1.207, 1.327, 1.425, 1.497, 1.544, 1.563, 1.558, 1.531, 1.484, 1.422, 1.347, 1.263, 1.171, 1.074, 0.9715, 0.8648, 0.7544, 0.6415, 0.5279, 0.4159, 0.3087, 0.2101, 0.1244, 0.05606, 0.009524, -0.01119, -0.002733, 0.03728, 0.1099, 0.2146, 0.3489, 0.5085, 0.6869, 0.876, 1.066, 1.247, 1.409, 1.542, 1.637, 1.691, 1.699, 1.664, 1.589, 1.48, 1.349, 1.207, 1.066, 0.9394, 0.8386, 0.7734, 0.7506, 0.7738, 0.8426, 0.9535, 1.1, 1.273, 1.462, 1.66, 1.856, 2.046, 2.226, 2.394, 2.554, 2.706, 2.855, 3.004, 3.154, 3.306, 3.458, 3.608, 3.749, 3.879, 3.994, 4.09, 4.165, 4.222, 4.26, 4.283, 4.294, 4.295, 4.287, 4.27, 4.244, 4.207, 4.157, 4.095, 4.022, 3.943, 3.866, 3.801, 3.759, 3.751, 3.787, 3.874, 4.017, 4.215, 4.465, 4.758, 5.086, 5.436, 5.796, 6.155, 6.502, 6.824, 7.113, 7.36, 7.557, 7.696, 7.773, 7.782, 7.722, 7.592, 7.396, 7.139, 6.828, 6.473, 6.087, 5.681, 5.269, 4.862, 4.47, 4.101, 3.762, 3.454, 3.178, 2.934, 2.719, 2.531, 2.365, 2.222, 2.099, 1.996, 1.913, 1.847, 1.799, 1.765, 1.742, 1.725, 1.71, 1.691, 1.666, 1.63, 1.585, 1.532, 1.472, 1.412, 1.356, 1.308, 1.272, 1.251, 1.245, 1.254, 1.274, 1.302, 1.335, 1.368, 1.398, 1.422, 1.437, 1.441, 1.434, 1.414, 1.383, 1.34, 1.286, 1.225, 1.159, 1.09, 1.024, 0.9631, 0.9135, 0.8796, 0.8664, 0.8785, 0.9197, 0.9928, 1.098, 1.235, 1.399, 1.585, 1.782, 1.982, 2.173, 2.345, 2.489, 2.597, 2.666, 2.692, 2.678, 2.626, 2.54, 2.424, 2.285, 2.128, 1.957, 1.777, 1.594, 1.41, 1.23, 1.057, 0.8923, 0.7392, 0.5985, 0.4711, 0.3576, 0.2586, 0.1753, 0.109, 0.06212, 0.03718, 0.03715, 0.06469, 0.1217, 0.2089, 0.3252, 0.4674, 0.6307, 0.8085, 0.9937, 1.179, 1.357, 1.525, 1.678, 1.817, 1.944, 2.062, 2.174, 2.282, 2.389, 2.492, 2.589, 2.674, 2.742, 2.787, 2.808, 2.802, 2.776, 2.734, 2.687, 2.646, 2.622, 2.624, 2.658, 2.725, 2.821, 2.94, 3.068, 3.194, 3.303, 3.385, 3.431, 3.437, 3.403, 3.334, 3.238, 3.124, 3.005, 2.889, 2.786, 2.702, 2.641, 2.604, 2.59, 2.597, 2.622, 2.663, 2.716, 2.779, 2.847, 2.917, 2.986, 3.049, 3.1, 3.135, 3.148, 3.134, 3.089, 3.01, 2.898, 2.757, 2.59, 2.408, 2.22, 2.04, 1.881, 1.754, 1.67, 1.633, 1.647, 1.706, 1.804, 1.928, 2.065, 2.201, 2.323, 2.424, 2.497, 2.544, 2.568, 2.578, 2.582, 2.589, 2.607, 2.639, 2.687, 2.746, 2.812, 2.876, 2.93, 2.968, 2.984, 2.977, 2.948, 2.9, 2.84, 2.774, 2.709, 2.653, 2.608, 2.58, 2.568, 2.571, 2.587, 2.614, 2.647, 2.685, 2.725, 2.768, 2.815, 2.868, 2.929, 3.002, 3.087, 3.185, 3.293, 3.408, 3.524, 3.635, 3.733, 3.813, 3.872, 3.909, 3.925, 3.926, 3.918, 3.906, 3.896, 3.892, 3.893, 3.896, 3.892, 3.872, 3.825, 3.739, 3.607, 3.424, 3.192, 2.92, 2.621, 2.314, 2.018, 1.758, 1.552, 1.417, 1.363, 1.394, 1.505, 1.686, 1.92, 2.187, 2.465, 2.731, 2.966, 3.153, 3.281, 3.341, 3.333, 3.256, 3.118, 2.925, 2.69, 2.423, 2.14, 1.854, 1.579, 1.33, 1.117, 0.9523, 0.8413, 0.7885, 0.7945, 0.8567, 0.9699, 1.126, 1.317, 1.531, 1.758, 1.986, 2.204, 2.402, 2.568, 2.693, 2.769, 2.789, 2.751, 2.654, 2.502, 2.301, 2.063, 1.801, 1.529, 1.264, 1.018, 0.8062, 0.6374, 0.5183, 0.4525, 0.4396, 0.4765, 0.5575, 0.6749, 0.8196, 0.9823, 1.154, 1.326, 1.494, 1.654, 1.806, 1.951, 2.096, 2.245, 2.403, 2.574, 2.759, 2.952, 3.147, 3.331, 3.492, 3.615, 3.688, 3.705, 3.66, 3.558, 3.407, 3.222, 3.019, 2.818, 2.635, 2.485, 2.379, 2.322, 2.314, 2.349, 2.418, 2.509, 2.609, 2.706, 2.788, 2.848, 2.881, 2.886, 2.863, 2.816, 2.751, 2.673, 2.588, 2.501, 2.416, 2.334, 2.257, 2.187, 2.125, 2.072, 2.031, 2.007, 2.003, 2.025, 2.077, 2.159, 2.273, 2.414, 2.576, 2.752, 2.932, 3.104, 3.261, 3.396, 3.503, 3.581, 3.63, 3.654, 3.654, 3.633, 3.594, 3.536, 3.457, 3.357, 3.232, 3.082, 2.908, 2.712, 2.503, 2.289, 2.082, 1.895, 1.743, 1.638, 1.588, 1.603, 1.683, 1.828, 2.033, 2.288, 2.579, 2.891, 3.205, 3.501, 3.761, 3.967, 4.105, 4.166, 4.146, 4.049, 3.884, 3.667, 3.418, 3.162, 2.922, 2.72, 2.574, 2.494, 2.485, 2.542, 2.654, 2.804, 2.972, 3.137, 3.279, 3.38, 3.431, 3.427, 3.37, 3.271, 3.147, 3.019, 2.913, 2.854, 2.867, 2.972, 3.183, 3.505, 3.931, 4.445, 5.021, 5.624, 6.215, 6.753, 7.204, 7.538, 7.739, 7.801, 7.731, 7.55, 7.283, 6.963, 6.625, 6.298, 6.009, 5.776, 5.608, 5.506, 5.463, 5.465, 5.495, 5.532, 5.555, 5.548, 5.498, 5.398, 5.248, 5.057, 4.838, 4.609, 4.39, 4.201, 4.056, 3.966, 3.934, 3.955, 4.017, 4.105, 4.197, 4.274, 4.317, 4.313, 4.253, 4.136, 3.968, 3.76, 3.528, 3.289, 3.063, 2.865, 2.707, 2.597, 2.536, 2.523, 2.55, 2.608, 2.686, 2.771, 2.855, 2.928, 2.984, 3.021, 3.036, 3.031, 3.008, 2.968, 2.916, 2.854, 2.786, 2.714, 2.64, 2.566, 2.495, 2.427, 2.365, 2.311, 2.269, 2.24, 2.226, 2.228, 2.247, 2.282, 2.329, 2.384, 2.445, 2.505, 2.561, 2.609, 2.649, 2.679, 2.703, 2.723, 2.744, 2.771, 2.808, 2.859, 2.925, 3.006, 3.099, 3.2, 3.299, 3.39, 3.462, 3.508, 3.519, 3.493, 3.427, 3.323, 3.185, 3.019, 2.831, 2.628, 2.416, 2.198, 1.979, 1.761, 1.545, 1.332, 1.125, 0.9264, 0.7384, 0.5648, 0.4089, 0.2735, 0.1603, 0.06997, 0.001972, -0.04549, -0.07507, -0.09001, -0.09374, -0.08958, -0.08047, -0.06882, -0.05647, -0.04467, -0.03419, -0.02537, -0.01829, -0.01283, -0.008758, -0.005829, -0.003784, -0.002397, -0.001482, -0.0008956, -0.0005286, -0.000305, -0.000172, -9.488e-05, -5.123e-05, -2.713e-05, -1.422e-05, -7.628e-06, -4.697e-06, -4.152e-06, -5.703e-06, -9.914e-06, -1.834e-05, -3.393e-05, -6.175e-05, -0.0001101, -0.000192, -0.0003274, -0.0005461, -0.0008902, -0.001418, -0.002207, -0.003355, -0.004979, -0.007208, -0.01018, -0.014, -0.01875, -0.02441, -0.03086, -0.03777, -0.04463, -0.05067, -0.05484, -0.05584, -0.05213, -0.04199, -0.02361, 0.004872, 0.04526, 0.09923, 0.1683, 0.2537, 0.3565, 0.4771, 0.6156, 0.7714, 0.9427, 1.127, 1.319, 1.515, 1.707, 1.889, 2.053, 2.193, 2.304, 2.386, 2.439, 2.467, 2.477, 2.479, 2.481, 2.492, 2.518, 2.564, 2.628, 2.708, 2.797, 2.888, 2.972, 3.043, 3.096, 3.131, 3.149, 3.157, 3.162, 3.174, 3.202, 3.253, 3.333, 3.446, 3.591, 3.764, 3.962, 4.175, 4.395, 4.611, 4.81, 4.982, 5.114, 5.198, 5.225, 5.193, 5.101, 4.956, 4.768, 4.551, 4.319, 4.09, 3.876, 3.688, 3.533, 3.411, 3.317, 3.247, 3.19, 3.138, 3.086, 3.03, 2.969, 2.907, 2.847, 2.795, 2.757, 2.735, 2.73, 2.74, 2.758, 2.778, 2.792, 2.79, 2.766, 2.716, 2.639, 2.539, 2.422, 2.296, 2.171, 2.06, 1.972, 1.914, 1.891, 1.904, 1.95, 2.024, 2.117, 2.22, 2.32, 2.408, 2.474, 2.512, 2.515, 2.483, 2.417, 2.32, 2.199, 2.062, 1.919, 1.78, 1.651, 1.542, 1.456, 1.396, 1.363, 1.355, 1.368, 1.399, 1.444, 1.499, 1.56, 1.626, 1.693, 1.76, 1.823, 1.88, 1.926, 1.957, 1.97, 1.96, 1.926, 1.867, 1.785, 1.683, 1.566, 1.443, 1.32, 1.209, 1.115, 1.049, 1.013, 1.013, 1.048, 1.113, 1.203, 1.308, 1.416, 1.515, 1.594, 1.643, 1.657, 1.633, 1.572, 1.481, 1.368, 1.243, 1.118, 1.0, 0.9005, 0.8231, 0.771, 0.7437, 0.7386, 0.7511, 0.7758, 0.8069, 0.8394, 0.8692, 0.8938, 0.9123, 0.9249, 0.9329, 0.9383, 0.9428, 0.9478, 0.9536, 0.9597, 0.9647, 0.9662, 0.9615, 0.9478, 0.9229, 0.8853, 0.8344, 0.7711, 0.6969, 0.6146, 0.5274, 0.4389, 0.3526, 0.2715, 0.1983, 0.1348, 0.082, 0.04007, 0.00858, -0.01347, -0.02744, -0.03487, -0.03733, -0.03628, -0.03301, -0.02855, -0.02367, -0.01893, -0.01465, -0.011, -0.008027, -0.005703, -0.003948, -0.002666, -0.001757, -0.00113, -0.0007106, -0.0004365, -0.0002622, -0.000154, -8.843e-05, -4.969e-05, -2.732e-05, -1.47e-05, -7.74e-06, -3.99e-06, -2.013e-06, -9.948e-07, -4.813e-07, -2.28e-07, -1.058e-07, -4.807e-08, -2.139e-08, -9.326e-09, -3.983e-09, -1.666e-09, -6.828e-10, -2.741e-10, -1.078e-10, -4.156e-11, -1.569e-11, -5.807e-12, -2.105e-12, -7.48e-13, -2.604e-13, -8.883e-14, -2.97e-14, -9.729e-15, -3.123e-15, -9.828e-16, -3.03e-16, -9.157e-17, -2.712e-17, -7.872e-18, -2.239e-18, -6.243e-19, -1.706e-19, -4.568e-20, -1.199e-20, -3.085e-21, -7.777e-22, -1.922e-22, -4.655e-23, -1.105e-23, -2.571e-24, -5.863e-25, -1.31e-25, -2.87e-26, -6.163e-27, -1.297e-27, -2.677e-28, -5.503e-29, -1.563e-29, -2.714e-29, -1.255e-28, -6.122e-28, -2.935e-27, -1.379e-26, -6.346e-26, -2.862e-25, -1.265e-24, -5.477e-24, -2.324e-23, -9.661e-23, -3.935e-22, -1.57e-21, -6.14e-21, -2.352e-20, -8.827e-20, -3.246e-19, -1.169e-18, -4.127e-18, -1.427e-17, -4.832e-17, -1.603e-16, -5.212e-16, -1.66e-15, -5.176e-15, -1.581e-14, -4.732e-14, -1.387e-13, -3.983e-13, -1.12e-12, -3.084e-12, -8.319e-12, -2.197e-11, -5.684e-11, -1.44e-10, -3.571e-10, -8.672e-10, -2.062e-09, -4.8e-09, -1.094e-08, -2.441e-08, -5.33e-08, -1.139e-07, -2.383e-07, -4.879e-07, -9.774e-07, -1.916e-06, -3.674e-06, -6.891e-06, -1.264e-05, -2.269e-05, -3.98e-05, -6.827e-05, -0.0001145, -0.0001876, -0.0003004, -0.0004698, -0.0007178, -0.001071, -0.001559, -0.002216, -0.003072, -0.004151, -0.005467, -0.00701, -0.008744, -0.01059, -0.01244, -0.01412, -0.01539, -0.01597, -0.01549, -0.01351, -0.00949, -0.002779, 0.007389, 0.0219, 0.04172, 0.06784, 0.1012, 0.1424, 0.1918, 0.2489, 0.3126, 0.3809, 0.4507, 0.5185, 0.5801, 0.6315, 0.6691, 0.6903, 0.6942, 0.6816, 0.6551, 0.6188, 0.5782, 0.5395, 0.5086, 0.4908, 0.4899, 0.5082, 0.5456, 0.6006, 0.6694, 0.7473, 0.8285, 0.907, 0.9772, 1.034, 1.075, 1.096, 1.099, 1.084, 1.054, 1.012, 0.9627, 0.9094, 0.8558, 0.8045, 0.7577, 0.717, 0.6839, 0.6601, 0.6483, 0.6518, 0.6747, 0.722, 0.7984, 0.908, 1.054, 1.237, 1.456, 1.708, 1.987, 2.285, 2.593, 2.903, 3.204, 3.486, 3.742, 3.965, 4.15, 4.293, 4.397, 4.463, 4.497, 4.508, 4.504, 4.493, 4.483, 4.479, 4.48, 4.486, 4.49, 4.483, 4.457, 4.405, 4.323, 4.211, 4.076, 3.93, 3.787, 3.666, 3.585, 3.562, 3.608, 3.73, 3.925, 4.187, 4.499, 4.841, 5.187, 5.513, 5.793, 6.004, 6.129, 6.158, 6.085, 5.913, 5.651, 5.309, 4.906, 4.458, 3.983, 3.499, 3.023, 2.57, 2.155, 1.79, 1.489, 1.264, 1.128, 1.091, 1.167, 1.364, 1.692, 2.156, 2.758, 3.495, 4.359, 5.333, 6.395, 7.514, 8.649, 9.757, 10.79, 11.7, 12.43, 12.97, 13.27, 13.33, 13.15, 12.77, 12.2, 11.5, 10.72, 9.895, 9.074, 8.291, 7.571, 6.929, 6.372, 5.899, 5.504, 5.181, 4.918, 4.707, 4.537, 4.398, 4.281, 4.178, 4.079, 3.976, 3.864, 3.738, 3.597, 3.441, 3.274, 3.102, 2.933, 2.775, 2.637, 2.526, 2.449, 2.411, 2.413, 2.458, 2.543, 2.667, 2.824, 3.009, 3.215, 3.432, 3.652, 3.863, 4.054, 4.217, 4.344, 4.432, 4.481, 4.495, 4.482, 4.452, 4.416, 4.384, 4.364, 4.359, 4.367, 4.384, 4.4, 4.407, 4.396, 4.363, 4.308, 4.234, 4.154, 4.08, 4.028, 4.012, 4.041, 4.119, 4.245, 4.407, 4.591, 4.776, 4.94, 5.063, 5.126, 5.118, 5.032, 4.869, 4.634, 4.339, 3.999, 3.632, 3.255, 2.885, 2.537, 2.222, 1.952, 1.731, 1.565, 1.453, 1.396, 1.393, 1.444, 1.548, 1.706, 1.918, 2.184, 2.503, 2.871, 3.28, 3.717, 4.162, 4.593, 4.983, 5.306, 5.536, 5.652, 5.642, 5.503, 5.241, 4.873, 4.424, 3.926, 3.413, 2.918, 2.473, 2.102, 1.823, 1.646, 1.575, 1.603, 1.722, 1.917, 2.173, 2.471, 2.796, 3.131, 3.462, 3.776, 4.063, 4.316, 4.528, 4.695, 4.817, 4.895, 4.93, 4.929, 4.895, 4.835, 4.754, 4.658, 4.548, 4.428, 4.297, 4.156, 4.004, 3.841, 3.669, 3.489, 3.306, 3.123, 2.947, 2.781, 2.629, 2.494, 2.374, 2.27, 2.176, 2.091, 2.009, 1.928, 1.846, 1.765, 1.688, 1.619, 1.566, 1.535, 1.533, 1.566, 1.637, 1.745, 1.888, 2.058, 2.246, 2.441, 2.63, 2.801, 2.944, 3.05, 3.116, 3.139, 3.122, 3.068, 2.983, 2.874, 2.748, 2.61, 2.467, 2.324, 2.184, 2.051, 1.929, 1.821, 1.729, 1.656, 1.602, 1.567, 1.549, 1.545, 1.549, 1.555, 1.557, 1.547, 1.52, 1.472, 1.4, 1.305, 1.188, 1.058, 0.9221, 0.7926, 0.6826, 0.6055, 0.5744, 0.6001, 0.69, 0.8468, 1.068, 1.345, 1.665, 2.008, 2.355, 2.682, 2.969, 3.195, 3.346, 3.413, 3.394, 3.291, 3.111, 2.869, 2.577, 2.252, 1.911, 1.569, 1.24, 0.9372, 0.6706, 0.45, 0.2836, 0.1781, 0.1388, 0.1689, 0.2691, 0.4368, 0.6657, 0.9454, 1.262, 1.597, 1.931, 2.245, 2.519, 2.737, 2.888, 2.966, 2.971, 2.909, 2.79, 2.627, 2.434, 2.228, 2.024, 1.833, 1.668, 1.537, 1.447, 1.403, 1.408, 1.46, 1.557, 1.692, 1.856, 2.037, 2.22, 2.391, 2.536, 2.643, 2.704, 2.718, 2.684, 2.612, 2.511, 2.395, 2.28, 2.179, 2.104, 2.063, 2.058, 2.089, 2.147, 2.223, 2.304, 2.379, 2.437, 2.471, 2.48, 2.468, 2.446, 2.429, 2.436, 2.486, 2.599, 2.79, 3.07, 3.441, 3.898, 4.43, 5.017, 5.631, 6.245, 6.827, 7.346, 7.778, 8.101, 8.302, 8.377, 8.328, 8.167, 7.91, 7.58, 7.201, 6.794, 6.383, 5.985, 5.612, 5.272, 4.97, 4.703, 4.47, 4.264, 4.082, 3.918, 3.769, 3.634, 3.51, 3.396, 3.293, 3.198, 3.109, 3.026, 2.946, 2.867, 2.789, 2.712, 2.635, 2.559, 2.486, 2.415, 2.347, 2.28, 2.211, 2.139, 2.059, 1.969, 1.867, 1.751, 1.62, 1.475, 1.32, 1.157, 0.9912, 0.8264, 0.6676, 0.5194, 0.3853, 0.2682, 0.1696, 0.08998, 0.02888, -0.0152, -0.04439, -0.06122, -0.06837, -0.06842, -0.06372, -0.05623, -0.04749, -0.03864, -0.0304, -0.02319, -0.01719, -0.01241, -0.008723, -0.005981, -0.004003, -0.002616, -0.00167, -0.001042, -0.0006359, -0.0003795, -0.0002215, -0.0001265, -7.074e-05, -3.871e-05, -2.074e-05, -1.088e-05, -5.587e-06, -2.81e-06, -1.384e-06, -6.681e-07, -3.158e-07, -1.462e-07, -6.633e-08, -2.948e-08, -1.284e-08, -5.478e-09, -2.29e-09, -9.383e-10, -3.767e-10, -1.482e-10, -5.713e-11, -2.158e-11, -7.992e-12, -2.9e-12, -1.031e-12, -3.594e-13, -1.227e-13, -4.108e-14, -1.348e-14, -4.333e-15, -1.365e-15, -4.217e-16, -1.276e-16, -3.786e-17, -1.101e-17, -3.136e-18, -8.757e-19, -2.397e-19, -6.428e-20, -1.69e-20, -4.354e-21, -1.099e-21, -2.721e-22, -6.599e-23, -1.569e-23, -3.654e-24, -8.344e-25, -1.867e-25, -4.095e-26, -8.801e-27, -1.854e-27, -3.827e-28, -7.744e-29, -1.536e-29, -2.984e-30, -5.684e-31, -1.061e-31, -1.941e-32, -3.48e-33, -6.115e-34, -1.053e-34, -1.777e-35, -2.94e-36, -4.765e-37, -7.571e-38, -1.179e-38, -1.799e-39, -2.69e-40, -3.944e-41, -5.665e-42, -7.975e-43, -1.1e-43, -1.488e-44, -1.972e-45, -2.562e-46, -3.261e-47, -4.068e-48, -4.974e-49, -5.961e-50, -7.001e-51, -8.058e-52, -9.09e-53, -1.005e-53, -1.089e-54, -1.156e-55, -1.204e-56, -1.228e-57, -1.228e-58, -1.203e-59, -1.155e-60, -1.087e-61, -1.003e-62, -9.065e-64, -8.032e-65, -6.975e-66, -5.936e-67, -4.952e-68, -4.048e-69, -3.244e-70, -2.547e-71, -1.961e-72, -1.479e-73, -1.093e-74, -7.923e-76, -5.628e-77, -3.929e-78, -2.793e-79, -2.999e-80, -1.33e-80, -1.222e-80, -1.216e-80, -1.216e-80, -1.217e-80, -1.218e-80, -1.22e-80, -1.221e-80, -1.222e-80, -1.223e-80, -1.224e-80, -1.225e-80, -1.226e-80, -1.227e-80, -1.228e-80, -1.229e-80, -1.23e-80, -1.231e-80, -1.232e-80, -1.233e-80, -1.234e-80, -1.235e-80, -1.236e-80, -1.237e-80, -1.238e-80, -1.239e-80, -1.24e-80, -1.241e-80, -1.242e-80, -1.243e-80, -1.244e-80, -1.246e-80, -1.247e-80, -1.248e-80, -1.249e-80, -1.259e-80, -1.39e-80, -3.364e-80, -3.263e-79, -4.582e-78, -6.523e-77, -9.124e-76, -1.251e-74, -1.681e-73, -2.213e-72, -2.857e-71, -3.614e-70, -4.48e-69, -5.444e-68, -6.482e-67, -7.566e-66, -8.654e-65, -9.701e-64, -1.066e-62, -1.148e-61, -1.211e-60, -1.253e-59, -1.27e-58, -1.261e-57, -1.228e-56, -1.172e-55, -1.096e-54, -1.004e-53, -9.019e-53, -7.938e-52, -6.848e-51, -5.789e-50, -4.796e-49, -3.894e-48, -3.099e-47, -2.417e-46, -1.847e-45, -1.383e-44, -1.015e-43, -7.302e-43, -5.147e-42, -3.556e-41, -2.407e-40, -1.597e-39, -1.038e-38, -6.614e-38, -4.129e-37, -2.526e-36, -1.515e-35, -8.899e-35, -5.123e-34, -2.89e-33, -1.598e-32, -8.657e-32, -4.596e-31, -2.391e-30, -1.219e-29, -6.087e-29, -2.979e-28, -1.429e-27, -6.715e-27, -3.092e-26, -1.395e-25, -6.167e-25, -2.672e-24, -1.134e-23, -4.715e-23, -1.921e-22, -7.67e-22, -3e-21, -1.15e-20, -4.316e-20, -1.588e-19, -5.721e-19, -2.02e-18, -6.986e-18, -2.367e-17, -7.857e-17, -2.555e-16, -8.138e-16, -2.539e-15, -7.761e-15, -2.324e-14, -6.814e-14, -1.957e-13, -5.505e-13, -1.517e-12, -4.093e-12, -1.082e-11, -2.799e-11, -7.094e-11, -1.761e-10, -4.278e-10, -1.018e-09, -2.371e-09, -5.408e-09, -1.207e-08, -2.639e-08, -5.647e-08, -1.182e-07, -2.424e-07, -4.861e-07, -9.542e-07, -1.833e-06, -3.444e-06, -6.332e-06, -1.139e-05, -2.003e-05, -3.447e-05, -5.8e-05, -9.542e-05, -0.0001535, -0.0002414, -0.000371, -0.0005574, -0.0008181, -0.001173, -0.001643, -0.002246, -0.002998, -0.003901, -0.004946, -0.006102, -0.007308, -0.00847, -0.009448, -0.01005, -0.01002, -0.009034, -0.006701, -0.002549, 0.003953, 0.01337, 0.02628, 0.04317, 0.06439, 0.09004, 0.1199, 0.1532, 0.189, 0.2255, 0.2607, 0.2925, 0.3186, 0.3371, 0.3466, 0.3465, 0.3372, 0.3201, 0.2975, 0.2724, 0.2482, 0.2283, 0.2157, 0.2126, 0.2202, 0.2388, 0.2675, 0.3044, 0.3473, 0.3933, 0.4397, 0.4837, 0.5234, 0.5569, 0.5832, 0.6017, 0.6122, 0.615, 0.6103, 0.5987, 0.5809, 0.5577, 0.5304, 0.5003, 0.4696, 0.4407, 0.4167, 0.401, 0.3971, 0.4081, 0.4365, 0.4832, 0.5478, 0.6278, 0.7189, 0.8155, 0.9109, 0.9983, 1.072, 1.126, 1.159, 1.169, 1.159, 1.132, 1.091, 1.043, 0.9923, 0.9418, 0.8943, 0.8509, 0.8115, 0.7753, 0.7408, 0.7073, 0.6745, 0.6434, 0.6159, 0.5952, 0.5847, 0.5882, 0.6087, 0.6483, 0.7074, 0.7852, 0.879, 0.9851, 1.099, 1.216, 1.332, 1.443, 1.545, 1.636, 1.715, 1.777, 1.822, 1.847, 1.85, 1.828, 1.782, 1.71, 1.617, 1.507, 1.387, 1.267, 1.155, 1.064, 1.001, 0.9751, 0.9904, 1.049, 1.148, 1.282, 1.443, 1.62, 1.801, 1.973, 2.125, 2.247, 2.331, 2.372, 2.37, 2.328, 2.25, 2.144, 2.021, 1.89, 1.762, 1.647, 1.554, 1.488, 1.455, 1.456, 1.49, 1.553, 1.641, 1.747, 1.863, 1.981, 2.096, 2.202, 2.295, 2.373, 2.437, 2.487, 2.524, 2.549, 2.563, 2.566, 2.556, 2.531, 2.489, 2.429, 2.351, 2.256, 2.145, 2.021, 1.89, 1.755, 1.621, 1.492, 1.374, 1.27, 1.183, 1.116, 1.073, 1.057, 1.07, 1.115, 1.195, 1.312, 1.465, 1.653, 1.872, 2.113, 2.368, 2.623, 2.863, 3.074, 3.24, 3.35, 3.397, 3.379, 3.299, 3.168, 2.999, 2.808, 2.613, 2.429, 2.269, 2.141, 2.046, 1.983, 1.947, 1.929, 1.922, 1.918, 1.915, 1.911, 1.909, 1.915, 1.935, 1.976, 2.043, 2.14, 2.264, 2.413, 2.578, 2.751, 2.92, 3.075, 3.206, 3.307, 3.374, 3.404, 3.399, 3.362, 3.298, 3.211, 3.108, 2.995, 2.878, 2.76, 2.646, 2.537, 2.436, 2.34, 2.247, 2.154, 2.056, 1.948, 1.829, 1.695, 1.548, 1.392, 1.232, 1.079, 0.943, 0.8366, 0.7714, 0.7573, 0.8014, 0.9067, 1.071, 1.289, 1.549, 1.835, 2.13, 2.415, 2.671, 2.88, 3.029, 3.107, 3.108, 3.032, 2.883, 2.671, 2.407, 2.109, 1.793, 1.477, 1.18, 0.9186, 0.7056, 0.5517, 0.4634, 0.443, 0.4883, 0.5931, 0.748, 0.9407, 1.157, 1.383, 1.605, 1.81, 1.987, 2.129, 2.232, 2.292, 2.31, 2.29, 2.237, 2.157, 2.058, 1.949, 1.84, 1.74, 1.66, 1.607, 1.588, 1.608, 1.666, 1.761, 1.886, 2.03, 2.181, 2.324, 2.447, 2.538, 2.588, 2.595, 2.56, 2.49, 2.396, 2.291, 2.191, 2.108, 2.056, 2.045, 2.079, 2.161, 2.289, 2.456, 2.656, 2.876, 3.106, 3.332, 3.541, 3.72, 3.859, 3.947, 3.979, 3.951, 3.865, 3.722, 3.532, 3.303, 3.047, 2.776, 2.503, 2.238, 1.99, 1.765, 1.566, 1.395, 1.25, 1.126, 1.02, 0.9264, 0.8412, 0.7613, 0.6856, 0.6145, 0.5503, 0.4965, 0.4573, 0.4371, 0.4395, 0.4672, 0.5212, 0.6013, 0.7055, 0.831, 0.9743, 1.131, 1.298, 1.47, 1.643, 1.815, 1.98, 2.134, 2.275, 2.397, 2.498, 2.577, 2.632, 2.666, 2.68, 2.678, 2.665, 2.644, 2.62, 2.594, 2.567, 2.537, 2.5, 2.453, 2.39, 2.306, 2.198, 2.064, 1.902, 1.715, 1.509, 1.289, 1.063, 0.8417, 0.633, 0.4455, 0.2863, 0.1607, 0.07235, 0.02281, 0.01208, 0.03882, 0.1007, 0.1947, 0.3173, 0.4649, 0.6332, 0.8176, 1.013, 1.212, 1.408, 1.592, 1.755, 1.887, 1.979, 2.025, 2.019, 1.959, 1.848, 1.692, 1.499, 1.282, 1.054, 0.8306, 0.6239, 0.4457, 0.305, 0.2073, 0.1551, 0.1473, 0.1803, 0.248, 0.3428, 0.4558, 0.5781, 0.7009, 0.816, 0.9169, 0.9987, 1.059, 1.096, 1.112, 1.111, 1.097, 1.077, 1.056, 1.041, 1.035, 1.04, 1.055, 1.077, 1.102, 1.123, 1.133, 1.126, 1.098, 1.049, 0.9806, 0.8971, 0.8065, 0.7183, 0.6422, 0.5873, 0.5611, 0.5681, 0.6098, 0.6842, 0.7866, 0.9097, 1.045, 1.182, 1.311, 1.425, 1.515, 1.576, 1.606, 1.602, 1.566, 1.501, 1.411, 1.301, 1.179, 1.052, 0.9281, 0.8141, 0.7175, 0.6443, 0.5996, 0.5866, 0.6068, 0.6597, 0.7425, 0.8505, 0.977, 1.114, 1.254, 1.387, 1.508, 1.612, 1.697, 1.765, 1.822, 1.874, 1.932, 2.003, 2.096, 2.215, 2.359, 2.526, 2.706, 2.89, 3.063, 3.213, 3.33, 3.405, 3.435, 3.42, 3.363, 3.271, 3.152, 3.015, 2.867, 2.714, 2.561, 2.41, 2.264, 2.125, 1.997, 1.883, 1.791, 1.726, 1.698, 1.715, 1.78, 1.898, 2.066, 2.278, 2.522, 2.782, 3.042, 3.282, 3.485, 3.636, 3.726, 3.751, 3.716, 3.629, 3.504, 3.359, 3.211, 3.077, 2.971, 2.901, 2.871, 2.878, 2.915, 2.972, 3.034, 3.089, 3.123, 3.127, 3.092, 3.016, 2.898, 2.74, 2.548, 2.327, 2.085, 1.831, 1.57, 1.312, 1.062, 0.8253, 0.6081, 0.4144, 0.2477, 0.1108, 0.006002, -0.06491, -0.1006, -0.09997, -0.06241, 0.01236, 0.124, 0.2713, 0.4518, 0.6617, 0.8953, 1.145, 1.403, 1.659, 1.902, 2.123, 2.312, 2.463, 2.572, 2.639, 2.665, 2.657, 2.621, 2.567, 2.503, 2.438, 2.379, 2.33, 2.294, 2.272, 2.262, 2.261, 2.265, 2.272, 2.277, 2.278, 2.275, 2.268, 2.259, 2.254, 2.256, 2.273, 2.308, 2.365, 2.447, 2.55, 2.67, 2.796, 2.918, 3.02, 3.09, 3.114, 3.083, 2.99, 2.835, 2.622, 2.361, 2.065, 1.749, 1.428, 1.117, 0.8307, 0.5771, 0.3629, 0.1904, 0.0588, -0.0352, -0.09684, -0.1323, -0.1481, -0.1501, -0.1436, -0.1326, -0.1199, -0.1072, -0.09487, -0.08233, -0.06827, -0.05085, -0.02798, 0.002317, 0.04163, 0.09078, 0.1496, 0.2169, 0.2902, 0.3662, 0.4408, 0.51, 0.57, 0.6185, 0.6543, 0.6783, 0.6932, 0.7033, 0.7141, 0.7315, 0.7609, 0.8065, 0.8709, 0.954, 1.054, 1.165, 1.282, 1.396, 1.5, 1.586, 1.647, 1.68, 1.682, 1.653, 1.598, 1.52, 1.427, 1.324, 1.22, 1.118, 1.025, 0.9407, 0.8674, 0.8047, 0.7516, 0.7071, 0.6703, 0.6411, 0.6195, 0.606, 0.6005, 0.6025, 0.6107, 0.6227, 0.6353, 0.6453, 0.6494, 0.6457, 0.6332, 0.613, 0.5875, 0.5605, 0.5366, 0.5201, 0.5145, 0.522, 0.5427, 0.575, 0.6156, 0.66, 0.7032, 0.7403, 0.7672, 0.7811, 0.7804, 0.7648, 0.7354, 0.6939, 0.6427, 0.5844, 0.5214, 0.4559, 0.3902, 0.326, 0.2647, 0.2078, 0.1564, 0.1111, 0.07267, 0.04117, 0.01652, -0.001692, -0.01414, -0.0217, -0.02531, -0.02596, -0.02457, -0.02192, -0.01866, -0.01528, -0.0121, -0.009342, -0.007099, -0.005414, -0.004286, -0.003704, -0.00366, -0.004163, -0.005239, -0.006925, -0.009256, -0.01224, -0.01585, -0.01994, -0.02425, -0.02836, -0.03164, -0.03323, -0.03209, -0.02693, -0.01639, 0.0009908, 0.02657, 0.06153, 0.1067, 0.1624, 0.2283, 0.3034, 0.386, 0.4734, 0.5624, 0.6491, 0.7291, 0.7981, 0.8519, 0.887, 0.9007, 0.8915, 0.8597, 0.8066, 0.7353, 0.6499, 0.5553, 0.4566, 0.359, 0.2668, 0.1835, 0.1114, 0.05165, 0.004201, -0.03173, -0.05747, -0.07452, -0.08424, -0.08756, -0.08477, -0.07553, -0.05886, -0.03336, 0.002578, 0.05037, 0.1109, 0.1843, 0.2695, 0.3642, 0.4648, 0.5667, 0.6648, 0.7534, 0.8273, 0.8818, 0.9138, 0.9212, 0.9039, 0.8631, 0.8017, 0.7234, 0.6327, 0.5344, 0.4332, 0.3337, 0.2397, 0.1547, 0.08163, 0.02285, -0.01946, -0.04335, -0.04704, -0.02897, 0.01207, 0.07668, 0.1646, 0.2741, 0.4023, 0.5445, 0.6943, 0.8441, 0.9854, 1.109, 1.208, 1.275, 1.305, 1.297, 1.25, 1.169, 1.06, 0.9299, 0.7873, 0.641, 0.4988, 0.3674, 0.2516, 0.1545, 0.07729, 0.01941, -0.02084, -0.04602, -0.05912, -0.06318, -0.06104, -0.05513, -0.04739, -0.03928, -0.03178, -0.02553, -0.02088, -0.01796, -0.01681, -0.01737, -0.01948, -0.0229, -0.02724, -0.03193, -0.03611, -0.03864, -0.03803, -0.03254, -0.02023, 0.0008609, 0.03244, 0.07569, 0.131, 0.1977, 0.2738, 0.356, 0.44, 0.5206, 0.5922, 0.6495, 0.6879, 0.7044, 0.6975, 0.6677, 0.6174, 0.5504, 0.4718, 0.3869, 0.301, 0.2188, 0.1439, 0.07879, 0.02484, -0.01761, -0.04891, -0.06969, -0.08063, -0.08208, -0.07399, -0.05585, -0.02682, 0.01406, 0.06754, 0.1338, 0.2123, 0.3012, 0.3977, 0.4979, 0.5971, 0.69, 0.7715, 0.8367, 0.882, 0.9049, 0.9043, 0.8808, 0.8364, 0.7742, 0.6982, 0.6129, 0.5227, 0.4319, 0.3442, 0.2628, 0.1897, 0.1265, 0.07369, 0.03123, -0.001444, -0.02522, -0.04114, -0.05019, -0.05319, -0.05069, -0.04294, -0.02991, -0.01145, 0.01264, 0.04237, 0.07739, 0.1169, 0.1594, 0.2031, 0.2454, 0.2838, 0.3156, 0.3384, 0.3505, 0.3509, 0.3396, 0.3176, 0.2866, 0.2489, 0.2072, 0.1641, 0.1221, 0.08303, 0.04831, 0.01865, -0.005761, -0.0251, -0.03974, -0.05001, -0.05602, -0.05751, -0.05375, -0.04361, -0.02563, 0.001723, 0.03982, 0.08947, 0.1507, 0.2223, 0.302, 0.3861, 0.4699, 0.548, 0.6151, 0.666, 0.6966, 0.7046, 0.6891, 0.6516, 0.5949, 0.5235, 0.4427, 0.358, 0.2747, 0.1973, 0.1292, 0.07248, 0.02814, -0.003917, -0.02454, -0.0351, -0.0372, -0.03248, -0.02249, -0.008625, 0.007888, 0.02594, 0.0445, 0.06259, 0.07925, 0.09359, 0.1048, 0.1124, 0.1158, 0.115, 0.1102, 0.102, 0.09092, 0.07801, 0.06416, 0.05029, 0.0372, 0.0255, 0.0156, 0.007694, 0.001772, -0.002319, -0.004839, -0.006102, -0.006431, -0.006129, -0.00545, -0.004594, -0.003706, -0.002877, -0.002158, -0.001568, -0.001106, -0.000758, -0.0005059, -0.0003289, -0.0002085, -0.000129, -7.784e-05], list(map(lambda x: x.value, dos.scalars))) # Delete the data delete_example('VS2.scf') def test_pw_vdw(self): # Parse the results parser = self.get_parser('pw_vdw') # Test the settings self.assertEquals('PWSCF', parser.get_name()) strc = parser.get_output_structure() self.assertEquals(2.46596598034, strc.cell[0][0]) self.assertEquals(2.1355881881239482, strc.cell[1][1]) self.assertEquals(6.4115115488840004, strc.cell[2][2]) self.assertEquals(['C', 'C', 'C', 'C'], strc.get_chemical_symbols()) self.assertEquals('C4', parser.get_composition()) cutoff = parser.get_cutoff_energy() self.assertEquals(45.0, cutoff.scalars[0].value) self.assertEquals('Ry', cutoff.units) self.assertTrue(parser.is_converged().scalars[0].value) energy = parser.get_total_energy() self.assertEquals(-44.61813252, energy.scalars[0].value) self.assertEquals('Ry', energy.units) self.assertEquals(None, parser.uses_SOC()) self.assertEquals(None, parser.is_relaxed()) self.assertEquals('SLA PW PBX PBC', parser.get_xc_functional().scalars[0].value) self.assertEquals(['C.pbe-mt_gipaw.UPF'], list(map(lambda x: x.value, parser.get_pp_name().scalars))) self.assertEquals(4, parser.get_KPPRA().scalars[0].value) self.assertEquals('6.0', parser.get_version_number()) self.assertEquals(None, parser.get_U_settings()) self.assertEquals('Tkatchenko-Scheffler', parser.get_vdW_settings().scalars[0].value) pressure = parser.get_pressure() self.assertEquals(188.77, pressure.scalars[0].value) self.assertEquals('kbar', pressure.units) stresses = parser.get_stresses() self.assertEquals([[185.91, -1.88, 0.0], [-1.88, 183.74, 0.0], [0.0, 0.0, 196.65]], list(map(lambda x: list(map(lambda y: y.value, x)), stresses.matrices[0]))) self.assertEquals('kbar', stresses.units) self.assertEquals(None, parser.get_band_gap()) # Delete the data delete_example('pw_vdw') def test_pw_ldaU(self): # Parse the results parser = self.get_parser('pw_lda+U') # Test the settings self.assertEquals('PWSCF', parser.get_name()) strc = parser.get_output_structure() self.assertEquals(2.1669808346549999, strc.cell[0][0]) self.assertEquals(4.3339616693099998, strc.cell[1][1]) self.assertEquals(['O', 'O', 'Fe', 'Fe'], strc.get_chemical_symbols()) self.assertEquals('Fe2O2', parser.get_composition()) cutoff = parser.get_cutoff_energy() self.assertEquals(30.0, cutoff.scalars[0].value) self.assertEquals('Ry', cutoff.units) self.assertTrue(parser.is_converged().scalars[0].value) energy = parser.get_total_energy() self.assertEquals(-174.47156021, energy.scalars[0].value) self.assertEquals('Ry', energy.units) self.assertEquals(None, parser.uses_SOC()) self.assertEquals(None, parser.is_relaxed()) self.assertEquals('SLA PZ NOGX NOGC', parser.get_xc_functional().scalars[0].value) self.assertEquals(['O.pz-rrkjus.UPF', 'Fe.pz-nd-rrkjus.UPF', 'Fe.pz-nd-rrkjus.UPF'], list(map(lambda x: x.value, parser.get_pp_name().scalars))) self.assertEquals(32, parser.get_KPPRA().scalars[0].value) self.assertEquals('6.0', parser.get_version_number()) U_settings = parser.get_U_settings() self.assertEquals('Simplified', U_settings.Type) self.assertEquals({'Fe2': {'J': 0.0, 'U': 4.3, 'L': 2.0}, 'Fe1': {'J': 0.0, 'U': 4.3, 'L': 2.0}}, U_settings.Values) self.assertEquals(None, parser.get_vdW_settings()) self.assertEquals(None, parser.get_pressure()) self.assertEquals(None, parser.get_stresses()) self.assertEquals(None, parser.get_band_gap()) # Delete the data delete_example('pw_lda+U') if __name__ == '__main__': unittest.main()
120,882
108,837
# Generated by Django 3.1.3 on 2021-02-10 01:10 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('labels', '0001_initial'), ] operations = [ migrations.AddField( model_name='species', name='de', field=models.CharField(default='', max_length=100), preserve_default=False, ), migrations.AddField( model_name='species', name='es', field=models.CharField(default='', max_length=100), preserve_default=False, ), migrations.AddField( model_name='species', name='fr', field=models.CharField(default='', max_length=100), preserve_default=False, ), migrations.AddField( model_name='species', name='pt', field=models.CharField(default='', max_length=100), preserve_default=False, ), ]
1,009
294
import numpy as np def conjgrad(A, b, x, T, tol): r = b - A@x p = r rsold = np.sum(r * r, 0) for i in range(T): Ap = A@p alpha = rsold / np.sum(p*Ap, 0) x = x + alpha*p r = r - alpha*Ap rsnew = np.sum(r*r, 0) if np.sqrt(np.sum(rsnew)) < tol: break p = r + (rsnew / rsold) * p rsold = rsnew return x, i
399
170
import model sticker_storage = model.get_storage() def my(_, update): """Prints stickers added by user""" message = update.message user_id = update.message.from_user.id stickers = sticker_storage.get_for_owner(user_id, max_count=20, tagged=True) text = '\n\n'.join( 'Tags: {tags}\n' 'Times used: {sticker.times_used}\n' '/{sticker.id}' .format( sticker=sticker, tags=', '.join(sticker.tags) ) for sticker in stickers ) message.reply_text(text, parse_mode='HTML')
569
198
#!/usr/bin/env python3 import argparse import getpass import os import sys import argcomplete from datetime import datetime from forest import cmake_tools from forest.common.eval_handler import EvalHandler from forest.common.install import install_package, write_setup_file, write_ws_file, check_ws_file, uninstall_package, \ clean from forest.common.recipe import RecipeSource, Cookbook from forest.common import sudo_refresh from pprint import pprint # define directories for source, build, install, and recipes from forest.common.forest_dirs import * # just a try-except wrapper to catch ctrl+c def main(): try: if not do_main(): print('(failed)') sys.exit(1) sys.exit(0) except KeyboardInterrupt: print('\nfailed (interrupted by user)') sys.exit(1) # actual main def do_main(): # set recipe dir Cookbook.set_recipe_path(recipesdir) # available recipes available_recipes = Cookbook.get_available_recipes() if len(available_recipes) == 0: available_recipes = None # parse cmd line args buildtypes = ['None', 'RelWithDebInfo', 'Release', 'Debug'] cloneprotos = ['ssh', 'https'] dfl_log_file = datetime.now().strftime("/tmp/forest_%Y_%m_%d_%H_%M_%S.log") parser = argparse.ArgumentParser(description='forest automatizes cloning and building of software packages') parser.add_argument('--list', '-l', required=False, action='store_true', help='list available recipes') parser.add_argument('--log-file', default=dfl_log_file, help='log file for non-verbose mode') parser.add_argument('--verbose', '-v', required=False, action='store_true', help='print additional information') subparsers = parser.add_subparsers(dest='command') init_cmd = 'init' init_parser = subparsers.add_parser(init_cmd, help='initialize the current folder as a forest workspace') grow_cmd = 'grow' grow_parser = subparsers.add_parser(grow_cmd, help='clone, configure, and build a recipe') grow_parser.add_argument('recipe', nargs='?', metavar='RECIPE', choices=available_recipes, help='name of recipe with fetch and build information') grow_parser.add_argument('--jobs', '-j', default=1, help='parallel jobs for building') grow_parser.add_argument('--mode', '-m', nargs='+', required=False, help='specify modes that are used to set conditional compilation flags (e.g., cmake args)') grow_parser.add_argument('--config', '-c', nargs='+', required=False, help='specify configuration variables that can be used inside recipes') grow_parser.add_argument('--default-build-type', '-t', default=buildtypes[1], choices=buildtypes, help='build type for cmake, it is overridden by recipe') grow_parser.add_argument('--force-reconfigure', required=False, action='store_true', help='force calling cmake before building with args from the recipe') grow_parser.add_argument('--list-eval-locals', required=False, action='store_true', help='print available attributes when using conditional build args') grow_parser.add_argument('--clone-protocol', required=False, choices=cloneprotos, help='override clone protocol') grow_parser.add_argument('--clone-depth', required=False, type=int, help='set maximum history depth to save bandwidth') grow_parser.add_argument('--cmake-args', nargs='+', required=False, help='specify additional cmake args to be appended to each recipe (leading -D must be omitted)') grow_parser.add_argument('--no-deps', '-n', required=False, action='store_true', help='skip dependency fetch and build step') grow_parser.add_argument('--uninstall', required=False, action='store_true', help='uninstall recipe') grow_parser.add_argument('--clean', required=False, action='store_true', help='uninstall recipe and remove build') grow_parser.add_argument('--pwd', '-p', required=False, help='user password to be used when sudo permission is required (if empty, user is prompted for password); note: to be used with care, as exposing your password might be harmful!') grow_parser.add_argument('--verbose', '-v', required=False, action='store_true', help='print additional information') recipes_cmd = 'add-recipes' recipes_parser = subparsers.add_parser(recipes_cmd, help='add recipes from git remote') recipes_parser.add_argument('url', help='url of the remote (e.g. git@github.com:<username>/<reponame>.git)') recipes_parser.add_argument('--tag', '-t', required=False, default='master') recipes_parser.add_argument('--subdir-path', '-s', required=False, default='recipes', help='relative path to the folder in which recipes are contained') recipes_parser.add_argument('--recipes', '-r', required=False, nargs='+', help='specify which recipes to add, otherwise all recipes in subdir-path are added') recipes_parser.add_argument('--allow-overwrite', '-o', required=False, action='store_true', help='allow overwritng local recipes with new ones') recipes_parser.add_argument('--verbose', '-v', required=False, action='store_true', help='print additional information') recipes_parser.add_argument('--clone-protocol', required=False, choices=cloneprotos, help='override clone protocol') argcomplete.autocomplete(parser) args = parser.parse_args() # initialize workspace if args.command == init_cmd: # create marker file write_ws_file(rootdir=rootdir) # note: error on failure? # check ws if not check_ws_file(rootdir=rootdir): print(f'current directory {rootdir} is not a forest workspace.. \ have you called forest init ?', file=sys.stderr) return False # create directories (if do not exist) for dir in (buildroot, installdir, srcroot, recipesdir): if not os.path.exists(dir): os.mkdir(dir) # create setup.bash if does not exist write_setup_file() # verbose mode will show output of any called process if args.verbose: from forest.common import proc_utils proc_utils.call_process_verbose = True if not args.verbose: from forest.common import print_utils print_utils.log_file = open(args.log_file, 'w') # sudo handling if args.command == grow_cmd and args.pwd is not None: sudo_refresher = sudo_refresh.SudoRefresher(pwd=args.pwd) # print available packages if args.list: print(' '.join(Cookbook.get_available_recipes())) return True # set config vars if args.command == grow_cmd and args.config: from forest.common import config_handler ch = config_handler.ConfigHandler.instance() ch.set_config_variables(args.config) # print available local attributes for conditional args if args.command == grow_cmd and args.list_eval_locals: from forest.common import eval_handler eval_handler.EvalHandler.print_available_locals() return True # clone proto if args.command in (grow_cmd, recipes_cmd) and args.clone_protocol is not None: from forest.common.fetch_handler import GitFetcher GitFetcher.proto_override = args.clone_protocol # clone proto if args.command == grow_cmd and args.clone_depth is not None: from forest.common.fetch_handler import GitFetcher GitFetcher.depth_override = args.clone_depth # if required, add a recipe repository to the list of remotes if args.command == recipes_cmd: print('adding recipes...') recipe_source = RecipeSource.FromUrl(args.url, args.tag) return Cookbook.add_recipes(recipe_source, args.recipes, args.subdir_path, args.allow_overwrite) # no recipe to install, exit if args.command == grow_cmd and args.recipe is None: print('no recipe to build, exiting...') return True # uninstall functionality if args.command == grow_cmd and args.uninstall: return uninstall_package(pkg=args.recipe, buildroot=buildroot, installdir=installdir, verbose=args.verbose) # clean functionality if args.command == grow_cmd and args.clean: return clean(pkg=args.recipe, buildroot=buildroot, installdir=installdir, verbose=args.verbose) # handle modes if args.command == grow_cmd and args.mode is not None: EvalHandler.modes = set(args.mode) # default cmake args if args.command == grow_cmd and args.cmake_args: cmake_tools.CmakeTools.set_default_args(['-D' + a for a in args.cmake_args]) # print jobs if args.command == grow_cmd: # check ws is sourced if rootdir not in os.environ.get('HHCM_FOREST_PATH', '').split(':'): print('[warn] forest workspace does not appear to be sourced') print(f'building {args.recipe} with {args.jobs} parallel job{"s" if int(args.jobs) > 1 else ""}') # perform required installation success = install_package(pkg=args.recipe, srcroot=srcroot, buildroot=buildroot, installdir=installdir, buildtype=args.default_build_type, jobs=args.jobs, reconfigure=args.force_reconfigure, no_deps=args.no_deps ) return success return True if __name__ == '__main__': main()
9,587
2,781
""" Given an array of numbers, find the subarray that maximizes the sum of all elements in the array. Note that these numbers can be negative """ import random def createArray(n): nums = [] for i in range(n): nums.append(random.randint(-10, 10)) return nums def bruteForceBest(a): best = a bestTotal = total(a) for end in range(len(a)): for start in range(end + 1): t = total(a[start:(end + 1)]) if bestTotal < t: bestTotal = t best = a[start:(end + 1)] return best def total(a): sum = 0 for n in a: sum = sum + n return sum def maxSubArray(a): return impl(a, 0, len(a)) # Returns max subarray within a[i:j] (inclusive of i, exclusive of j) def impl(a, i, j): #print(i, j) if j - i <= 0: return [] if j - i == 1: return a[i:j] # ignore non-positive elements at the edges WRONG: [1, -999999, 2] # need to check how far we can spread from the center instead while i < j - 1 and a[i] <= 0: i += 1 while i < j - 1 and a[j - 1] <= 0: j -= 1 #print(a, i, j) bestUnbroken = total(a[i:j]) # break in half mid = int((i + j) / 2) left = impl(a, i, mid) right = impl(a, mid, j) leftTotal = total(left) rightTotal = total(right) # return either a half, or the total, whichever is max if (max(leftTotal, rightTotal, bestUnbroken) == bestUnbroken): return a[i:j] elif (max(leftTotal, rightTotal, bestUnbroken) == rightTotal): return right else: return left if __name__ == "__main__": a = createArray(100) print(a) bruteForce = bruteForceBest(a) print(f'Brute force found {bruteForce} {total(bruteForce)}') best = maxSubArray(a) print(f'Best: {best} {total(best)}')
1,849
685
#!/usr/bin/env python # coding: utf-8 from setuptools import setup, find_packages import os def package_files(directory, relative_to): paths = [] for (path, directories, filenames) in os.walk(directory): for filename in filenames: full_path = os.path.join(path, filename) final_path = os.path.relpath(full_path, relative_to) paths.append(final_path) return paths migration_files = package_files(os.path.join('blag', 'migrations'), os.path.abspath('blag')) package_data = [ os.path.join('templates', '*.html'), os.path.join('templates', '*', '*.html'), os.path.join('server-assets', '*'), ] package_data.extend(migration_files) setup( name='blag', version='0.1.0', author='Tarjei Husøy', author_email='git@thusoy.com', url='https://github.com/thusoy/blag', description='Somewhere to ramble', packages=find_packages(), package_data={ '': package_data }, zip_safe=False, entry_points={ 'console_scripts': [ 'manage.py = blag.scripts:main', ] } )
1,101
374
#coding:utf-8 N = int(raw_input()) S = '' stack = [S] for _ in xrange(N): s = raw_input() if s.startswith('1'): S = ''.join((S, s.split()[-1])) stack.append(S) elif s.startswith('2'): k = int(s.split()[-1]) S = S[:-k] stack.append(S) elif s.startswith('3'): k = int(s.split()[-1]) index = k-1 print S[index] elif s.startswith('4'): stack.pop() S = stack[-1]
469
185
from datetime import datetime from typing import Optional, List, Dict import sys sys.path.append("../../") from backend.server.pd_model import * from backend.queue.services import add_task, stop_all_ws_task from backend.database.main import gis_stac __all__ = ["preview_processing", "vector_processing", "refuse_processing"] def get_items(time_interval: List[datetime], bbox: List[float]) -> List[dict]: # response = get(DATABASE_URL + "get_preview") # TODO: Запрос к базе данных через url items = gis_stac.filter(time_intervals=[time_interval], bboxes=[bbox]) items = sorted(map(lambda item: item.to_dict(), items), key=lambda item: item["datetime"]) return list(items) def preview_interval(timestamp: int) -> List[datetime]: return [datetime.fromtimestamp(timestamp), datetime.fromtimestamp(timestamp + 24 * 60 * 60)] def preview_processing(data: PreviewData) -> Dict[str, List[PreviewData]]: items = get_items(preview_interval(data.datetime), [data.bbox[0].lat, data.bbox[0].lon, data.bbox[1].lat, data.bbox[1].lon]) res = [] for item in items: for asset in item["assets"]: if asset["type"] == "img": res.append(PreviewData(img=asset["href"], datetime=item["properties"]["datetime"], bbox=item["bbox"])) break res.sort(key=lambda el: el.datetime) return {"imgs": res} def get_item_url(iid: Optional[str]) -> str: item = gis_stac.root_catalog.get_child(iid, recursive=True) return item.href def vector_processing(ws_id: Optional[str], data: Optional[VectorsRequest]) -> None: files = (get_item_url(data.ids[0]), get_item_url(data.ids[1])) params = [files[0], files[1], data.points, data.window_size, data.vicinity_size] add_to_queue(ws_id=ws_id, *params) def add_to_queue(ws_id: Optional[str], task_type: Optional[str] = "high", *params, **kwargs) -> None: # request_data = {"task_type": task_type, # "params": params, # "kwargs": kwargs} # if ws_id is not None: # request_data["ws_id"] = ws_id add_task(ws_id=ws_id, args=params, kwargs=kwargs, task_type=task_type) # TODO: Microservices def delete_work_to_queue(ws_id: Optional[str]) -> None: stop_all_ws_task(ws_id) # TODO: Microservices def refuse_processing(ws_id: Optional[str]) -> None: delete_work_to_queue(ws_id)
2,601
837
#!/usr/bin/env python # -*- coding: utf-8 -*- from django.views.generic.base import TemplateView from diario.models import Entry from observations.models import Measurement class HomePageView(TemplateView): template_name = "home.html" def get_context_data(self, **kwargs): context = super(HomePageView, self).get_context_data(**kwargs) context['entry_list'] = Entry.objects.all()[:3] context['measurement_list'] = Measurement.objects.order_by('-created_timestamp')[:5] return context
530
162
""" Adds a ubt command which adds basic block counts to frames within a backtrace. Usage: ubt Contributors: Isa Smith, Toby Lloyd Davies Copyright (C) 2019 Undo Ltd """ import gdb from undodb.debugger_extensions import ( debugger_utils, udb, ) class BacktraceWithTime(gdb.Command): def __init__(self): super().__init__("ubt", gdb.COMMAND_USER) @staticmethod def invoke(arg, from_tty): # We disable all breakpoints, so we can reverse up the stack without # hitting anything we shouldn't. with udb.time.auto_reverting(), debugger_utils.suspend_breakpoints(): # Get the whole backtrace. backtrace = debugger_utils.execute_to_string("where") backtrace = backtrace.splitlines() exception_hit = False for line in backtrace: if not exception_hit: # Print time at start of each backtrace line. time = udb.time.get() print("[{}]\t{}".format(str(time.bbcount), line)) try: # Go back to previous frame debugger_utils.execute_to_string("rf") except gdb.error: # Can't figure out any further - perhaps stack frame is # not available, or we have reached the start. exception_hit = True else: print(f"[?]\t{line}") BacktraceWithTime()
1,516
412
# # @author Kevin Jesse # @email kevin.r.jesse@gmail.com # """ Database Connect serves to connect to the database postgres, as the master user. Autocommit has been turned on so all inserts, updates, and deletes will be enforced atomically """ import psycopg2 def db_connect(): cur = None try: conn = psycopg2.connect("dbname='postgres' user='postgres' host='localhost' password='postgres'", connect_timeout=30) conn.autocommit = True #Auto commit must be on if you want changes to be immediate for insert/update cur = conn.cursor() #cur.itersize = 10000 except: print "[ERROR] couldn't connect to the database" return cur
680
207
""" Integration test for remove_participants_under_18years module Original Issues: DC-1724 The intent is to remove data for participants under 18 years old from all the domain tables.""" # Python Imports import os import datetime # Project Imports from common import VISIT_OCCURRENCE, OBSERVATION from common import JINJA_ENV from app_identity import PROJECT_ID from cdr_cleaner.cleaning_rules.remove_participants_under_18years import ( RemoveParticipantsUnder18Years, AFFECTED_TABLES) from tests.integration_tests.data_steward.cdr_cleaner.cleaning_rules.bigquery_tests_base import \ BaseTest PERSON_DATA_TEMPLATE = JINJA_ENV.from_string(""" INSERT INTO `{{project_id}}.{{dataset_id}}.person` (person_id, birth_datetime, gender_concept_id, year_of_birth, race_concept_id, ethnicity_concept_id) VALUES /* Adding participans with different ranges of birthdays.*/ /* Participant 4's birth_datetime was set to 2021.*/ /* The data belonging to this participant from all the domain tables should be dropped.*/ (1, '1970-01-01 00:00:00 UTC', 0, 1970, 0, 0), (2, '2002-01-01 00:00:00 UTC', 0, 2002, 0, 0), (3, '2003-01-01 00:00:00 UTC', 0, 2003, 0, 0), (4, '2021-01-01 00:00:00 UTC', 0, 2015, 0, 0) """) VISIT_OCCURRENCE_DATA_TEMPLATE = JINJA_ENV.from_string(""" INSERT INTO `{{project_id}}.{{dataset_id}}.visit_occurrence` (visit_occurrence_id, person_id, visit_start_date, visit_end_date, visit_concept_id, visit_type_concept_id) VALUES (1, 1, '2020-01-01', '2020-01-02', 0, 0), (2, 3, '2020-01-02', '2020-01-03', 0, 0), (3, 2, '2020-01-01', '2020-03-01', 0, 0), (4, 4, '2020-01-02', '2022-01-03', 0, 0) """) OBSERVATION_DATA_TEMPLATE = JINJA_ENV.from_string(""" INSERT INTO `{{project_id}}.{{dataset_id}}.observation` (observation_id, person_id, observation_date, observation_concept_id, observation_type_concept_id) VALUES (1, 1, '2020-01-01', 0, 0), (2, 2, '2020-01-02', 0, 0), (3, 3, '2020-03-01', 0, 0), (4, 4, '2020-01-05', 0, 0), (5, 3, '2020-05-05', 0, 0) """) class RemoveParticipantsUnder18YearsTest(BaseTest.CleaningRulesTestBase): @classmethod def setUpClass(cls): print('**************************************************************') print(cls.__name__) print('**************************************************************') super().initialize_class_vars() # Set the test project identifier cls.project_id = os.environ.get(PROJECT_ID) # Set the expected test datasets cls.dataset_id = os.environ.get('COMBINED_DATASET_ID') cls.sandbox_id = cls.dataset_id + '_sandbox' cls.rule_instance = RemoveParticipantsUnder18Years( cls.project_id, cls.dataset_id, cls.sandbox_id) # Generates list of fully qualified table names and their corresponding sandbox table names # adding death table name for setup/cleanup operations for table_name in AFFECTED_TABLES: cls.fq_table_names.append( f'{cls.project_id}.{cls.dataset_id}.{table_name}') sandbox_table_name = cls.rule_instance.get_sandbox_tablenames( table_name) cls.fq_sandbox_table_names.append( f'{cls.project_id}.{cls.sandbox_id}.{sandbox_table_name}') # call super to set up the client, create datasets cls.up_class = super().setUpClass() def setUp(self): """ Create empty tables for the rule to run on """ # Create the observation, concept, and concept_relationship tables required for the test super().setUp() person_data_query = PERSON_DATA_TEMPLATE.render( project_id=self.project_id, dataset_id=self.dataset_id) visit_occurrence_data_query = VISIT_OCCURRENCE_DATA_TEMPLATE.render( project_id=self.project_id, dataset_id=self.dataset_id) observation_data_query = OBSERVATION_DATA_TEMPLATE.render( project_id=self.project_id, dataset_id=self.dataset_id) # Load test data self.load_test_data([ f'''{person_data_query}; {visit_occurrence_data_query}; {observation_data_query}''' ]) def test_remove_participants_under_18years(self): # Expected results list tables_and_counts = [{ 'fq_table_name': f'{self.project_id}.{self.dataset_id}.{VISIT_OCCURRENCE}', 'fq_sandbox_table_name': f'{self.project_id}.{self.sandbox_id}.{self.rule_instance.sandbox_table_for(VISIT_OCCURRENCE)}', 'loaded_ids': [1, 2, 3, 4], 'sandboxed_ids': [4], 'fields': [ 'visit_occurrence_id', 'person_id', 'visit_start_date', 'visit_end_date' ], 'cleaned_values': [ (1, 1, datetime.datetime.strptime('2020-01-01', '%Y-%m-%d').date(), datetime.datetime.strptime('2020-01-02', '%Y-%m-%d').date()), (2, 3, datetime.datetime.strptime('2020-01-02', '%Y-%m-%d').date(), datetime.datetime.strptime('2020-01-03', '%Y-%m-%d').date()), (3, 2, datetime.datetime.strptime('2020-01-01', '%Y-%m-%d').date(), datetime.datetime.strptime('2020-03-01', '%Y-%m-%d').date()) ] }, { 'fq_table_name': f'{self.project_id}.{self.dataset_id}.{OBSERVATION}', 'fq_sandbox_table_name': f'{self.project_id}.{self.sandbox_id}.{self.rule_instance.sandbox_table_for(OBSERVATION)}', 'loaded_ids': [1, 2, 3, 4, 5], 'sandboxed_ids': [4], 'fields': ['observation_id', 'person_id', 'observation_date'], 'cleaned_values': [ (1, 1, datetime.datetime.strptime('2020-01-01', '%Y-%m-%d').date()), (2, 2, datetime.datetime.strptime('2020-01-02', '%Y-%m-%d').date()), (3, 3, datetime.datetime.strptime('2020-03-01', '%Y-%m-%d').date()), (5, 3, datetime.datetime.strptime('2020-05-05', '%Y-%m-%d').date()) ] }] self.default_test(tables_and_counts)
6,590
2,401
import pandas as pd canucks = pd.read_csv('data/canucks.csv') # Identify any columns with null values with .info() # Save this dataframe as canucks_info canucks_info = canucks.info() canucks_info # Create a new column in the dataframe named Wealth # where all the values equal "comfortable" # Name the new dataframe canucks_comf canucks_comf = canucks.assign(Wealth = "comfortable") canucks_comf # Do conditional replacement, where if the value in the salary column is null, # we replace "comfortable" with "unknown" canucks_comf.loc[canucks_comf['Salary'].isnull(), "Wealth"] = "unknown" canucks_comf
609
209
# # @lc app=leetcode.cn id=461 lang=python3 # # [461] 汉明距离 # # https://leetcode-cn.com/problems/hamming-distance/description/ # # algorithms # Easy (79.21%) # Likes: 459 # Dislikes: 0 # Total Accepted: 137K # Total Submissions: 170K # Testcase Example: '1\n4' # # 两个整数之间的汉明距离指的是这两个数字对应二进制位不同的位置的数目。 # # 给出两个整数 x 和 y,计算它们之间的汉明距离。 # # 注意: # 0 ≤ x, y < 2^31. # # 示例: # # # 输入: x = 1, y = 4 # # 输出: 2 # # 解释: # 1 (0 0 0 1) # 4 (0 1 0 0) # ⁠ ↑ ↑ # # 上面的箭头指出了对应二进制位不同的位置。 # # # # @lc code=start class Solution: def hammingDistance(self, x: int, y: int) -> int: count = 0 z = x ^ y while z: z &= z-1 count += 1 return count # @lc code=end # def hammingDistance(self, x: int, y: int) -> int: # count = 0 # for i in range(32): # if x & 1 != y & 1: # count += 1 # x >>= 1 # y >>= 1 # return count # def hammingDistance(self, x: int, y: int) -> int: # count = 0 # z = x ^ y # for i in range(32): # if z & 1: # count += 1 # z >>= 1 # return count # def hammingDistance(self, x: int, y: int) -> int: # count = 0 # z = x ^ y # while z: # count += z & 1 # z >>= 1 # return count
1,412
701
"""Database Layer for the Emmission API. """ from functools import wraps from sqlalchemy import create_engine, Column, DateTime, Integer, Float, String from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import sessionmaker import geoalchemy2 from emissionsapi.config import config import emissionsapi.logger # Logger logger = emissionsapi.logger.getLogger('emission-api.db') # Database uri as described in # https://docs.sqlalchemy.org/en/13/core/engines.html#database-urls # Retrieved as environment variable. database = config('database') or 'postgresql://user:user@localhost/db' # Global session variable. Set on initialization. __session__ = None # Base Class of all ORM objects. Base = declarative_base() class File(Base): """ORM Object for the nc files. """ # Tablename __tablename__ = 'file' filename = Column(String, primary_key=True) class Carbonmonoxide(Base): """ORM Object for Carbonmonoxide Point """ # Tablename __tablename__ = 'carbonmonoxide' # Primary Key id = Column(Integer, primary_key=True) # Carbonmonoxide Value value = Column(Float) # Longitude longitude = Column(Float) # Latitude latitude = Column(Float) # timestamp timestamp = Column(DateTime) # PostGis type geom = Column(geoalchemy2.Geometry(geometry_type="POINT")) def __init__(self, value, longitude, latitude, timestamp): self.value = value self.longitude = longitude self.latitude = latitude self.timestamp = timestamp self.geom = geoalchemy2.elements.WKTElement( f"POINT({longitude} {latitude})") def with_session(f): """Wrapper for f to make a SQLAlchemy session present within the function :param f: function to call :type f: function :raises e: Possible Exception of f :return: result of f """ @wraps(f) def decorated(*args, **kwargs): # Get new session session = get_session() try: # Call f with the session and all the other arguments result = f(session, *args, **kwargs) except Exception as e: # Rollback session, something bad happend. session.rollback() session.close() raise e # Close session and return the result of f session.close() return result return decorated def get_session(): """Get a new session. Lazy load the database connection and create the tables. Returns: sqlalchemy.orm.session.Session -- SQLAlchemy Session Object """ global __session__ # Create Database Connection, Tables and Sessionmaker if neccessary. if not __session__: Engine = create_engine(database) __session__ = sessionmaker(bind=Engine) Base.metadata.create_all(Engine) # Return new session object return __session__() def get_points_in_polygon(session, polygon): """Get all points from within the specified polygon. :param session: SQL Alchemy Session :type session: sqlalchemy.orm.session.Session :param polygon: Polygon where to search for points :type polygon: geoalchemy2.WKTElement :return: SQLAlchemy Query Object with the points from within the polygon. :rtype: sqlalchemy.orm.query.Query """ return session.query(Carbonmonoxide).filter( geoalchemy2.func.ST_WITHIN(Carbonmonoxide.geom, polygon)) def get_points_in_rectangle(session, upper_left, lower_right): """Get all points from within a rectangle. :param session: SQL Alchemy Session :type session: sqlalchemy.orm.session.Session :param polygon: Polygon where to search for points :type polygon: geoalchemy2.WKTElement :param upper_left: Upper left point of the rectangle :type upper_left: tuple :param lower_right: Lower right point of the rectangle :type lower_right: tuple :return: SQLAlchemy Query Object with the points from within the polygon. :rtype: sqlalchemy.orm.query.Query """ # Defining the rectangle rectangle = geoalchemy2.elements.WKTElement( f'POLYGON(({upper_left[0]} {upper_left[1]},' f' {lower_right[0]} {upper_left[1]},' f' {lower_right[0]} {lower_right[1]},' f' {upper_left[0]} {lower_right[1]},' f' {upper_left[0]} {upper_left[1]}))') return get_points_in_polygon(session, rectangle)
4,413
1,332
# This file is part of the Edison Project. # Please refer to the LICENSE document that was supplied with this software for information on how it can be used. # Create your views here. from django.http import Http404, HttpResponse from django.shortcuts import render_to_response, get_object_or_404 from django.template import RequestContext from django.contrib.auth.decorators import login_required from django.forms import ModelForm from models import * # Project specific imports from models import * def custom_proc(request): "A context processor that provides 'app', 'user' and 'ip_address'." return { 'app': 'edison', 'user': request.user, 'ip_address': request.META['REMOTE_ADDR'] } @login_required def home(request): title = 'Configuration Database Home' section_item_name = 'Configuration Item' return render_to_response('cmdb/home.tpl', locals(), context_instance=RequestContext(request, processors=[custom_proc])) @login_required def listdata(request): link_desc = 'Configuration Item' cfgitems = ConfigurationItem.objects.all().order_by('Hostname') return render_to_response('list.tpl',{'data_list':cfgitems,'link_desc':link_desc,},context_instance=RequestContext(request)) #{'data_list':cfgitems,locals()}) # Setup the 'edit' form class EditForm(ModelForm): class Meta: model = ConfigurationItem @login_required def edit(request,cfgid): title = 'Edit an Item' if request.method == "POST": cfgitem = ConfigurationItem.objects.get(pk=cfgid) form = EditForm(request.POST,instance=cfgitem) if form.is_valid(): form.save() request.user.message_set.create(message='The Configuration Item was updated sucessfully') else: cfgitem = ConfigurationItem.objects.get(pk=cfgid) form = EditForm(instance=cfgitem) return render_to_response('cmdb/edit.tpl',{'form':form},context_instance=RequestContext(request, processors=[custom_proc])) @login_required def add(request): title = 'Add a new Item' return render_to_response('cmdb/add.tpl',{'form':form},context_instance=RequestContent(request, processors=[custom_proc]))
2,217
642
from setuptools import setup setup( name = 'pypdb', packages = ['pypdb'], # same as 'name' version = '1.310', install_requires=[ 'xmltodict', 'beautifulsoup4', 'requests' ], description = 'A Python wrapper for the RCSB Protein Data Bank (PDB) API', author = 'William Gilpin', author_email = 'firstname_lastname@gmail.com', url = 'https://github.com/williamgilpin/pypdb', download_url = 'https://github.com/williamgilpin/pypdb/tarball/0.6', keywords = ['protein','data','RESTful','api'], classifiers = [], )
553
208
wt1_10_10 = {'192.168.122.110': [5.5754, 5.5952, 9.2422, 8.5338, 9.0058, 8.4025, 8.7557, 8.4405, 8.1397, 8.1318, 8.0657, 7.8501, 8.1701, 8.0757, 7.8899, 7.7329, 7.6153, 7.9967, 7.9363, 7.838, 8.7936, 8.6351, 8.5151, 8.6381, 8.7262, 8.816, 8.8984, 8.7799, 8.8584, 8.9543, 8.8833, 8.794, 8.6935, 8.735, 8.635, 8.5429, 8.6163, 8.5476, 8.6108, 8.5577, 8.4882, 8.4211, 8.3623, 8.3054, 8.2413, 8.4337, 8.4888, 8.5373, 8.4713, 8.5225, 8.4593, 8.4011, 8.3452, 8.3259, 8.2905, 8.2449, 8.1937, 8.1445, 8.116, 8.1567, 8.1104, 8.0715, 8.115, 8.0737, 8.0345, 8.0136, 8.0019, 8.0049, 8.1192, 8.0796, 8.0452, 8.006, 7.981, 7.9482, 7.9175, 7.8876, 7.8733, 7.9073, 7.8801, 7.9114, 7.8796, 7.8656, 7.8337, 7.8213, 7.792, 7.8309, 7.8041, 7.8059, 7.7952, 7.7718, 7.8096, 7.7388, 7.7266, 7.7471, 7.7399, 7.7186, 7.7135, 7.6918, 7.7212, 7.7565, 7.7335, 7.711, 7.6962, 7.6741, 7.6596, 7.6417, 7.6303, 7.6106, 7.5902, 7.6216, 7.6199, 7.6491, 7.6785, 7.6596, 7.6464, 7.6277, 7.6561, 7.6506, 7.6396, 7.6222, 7.7245, 7.7135, 7.6971, 7.6861, 7.7189, 7.7939, 7.7734, 7.7552, 7.7516, 7.7743, 7.7593, 7.7427, 7.7249, 7.708, 7.6916, 7.6809, 7.703, 7.6865, 7.6734, 7.6572, 7.6484, 7.6386, 7.6612, 7.6835, 7.6686, 7.6592, 7.681, 7.6753, 7.7021, 7.6891, 7.6742, 7.665, 7.6538, 7.6739, 7.7405, 7.7304, 7.7693, 7.759, 7.7492, 7.7403, 7.7253, 7.7102, 7.6962, 7.7249, 7.7124, 7.7071, 7.7291, 7.7147, 7.7307, 7.717, 7.7031, 7.7357, 7.7238, 7.7431, 7.7364, 7.7563, 7.7441, 7.7358, 7.7272, 7.7473, 7.7372, 7.7443, 7.8068, 7.7982, 7.7906, 7.805, 7.7939, 7.7818, 7.8014, 7.7899, 7.7779, 7.7671, 7.7545, 7.9091, 7.8963, 7.8913, 7.8823, 7.8953, 7.9115, 7.9017, 7.9166, 7.9316, 7.9229, 7.9104, 7.9033, 7.8949, 7.8879, 7.9028, 7.8904, 7.8854, 7.8754, 7.8648, 7.8551, 7.8433, 7.8322, 7.8214, 7.8104, 7.8007, 7.7927, 7.7815, 7.7701, 7.783, 7.7734, 7.8037, 7.795, 7.7885, 7.7826, 7.7774, 7.7719, 7.7622, 7.7544, 7.7451, 7.7379, 7.7314, 7.7236, 7.7175, 7.7073, 7.7213, 7.7111, 7.7026, 7.6996, 7.6898, 7.7013, 7.6954, 7.7105, 7.7015, 7.692, 7.708, 7.7, 7.7133, 7.7291, 7.7193, 7.7098, 7.7936, 7.8109, 7.801, 7.7922, 7.8248, 7.8174, 7.809, 7.8018, 7.7969, 7.7876, 7.779, 7.7741, 7.7861, 7.7831, 7.8363, 7.8107, 7.807, 7.7985, 7.796, 7.7884, 7.7791, 7.7699, 7.7609, 7.7524, 7.7279, 7.7216, 7.7341, 7.7316, 7.727, 7.7204, 7.7139, 7.7255, 7.7206, 7.712, 7.7082, 7.7032, 7.6948, 7.7055, 7.6996, 7.6913, 7.6832, 7.6771, 7.6771, 7.687, 7.6898, 7.6686, 7.6639, 7.6614, 7.6572, 7.6555, 7.6487, 7.6588, 7.655, 7.6524, 7.6467, 7.6392, 7.6322, 7.6254, 7.618, 7.6111, 7.6039, 7.5989, 7.6084, 7.6017, 7.5977, 7.5922, 7.585, 7.5781, 7.5713, 7.5656, 7.5759, 7.5726, 7.5822, 7.5757, 7.5783, 7.5718, 7.5816, 7.5745, 7.5838, 7.5775, 7.5755, 7.5815, 7.5755, 7.5693, 7.564, 7.5588, 7.5405, 7.5338, 7.529, 7.5223, 7.5167, 7.526, 7.5195, 7.5056, 7.501, 7.4947, 7.504, 7.5005, 7.4983, 7.4962, 7.5053, 7.5001, 7.4945, 7.4886, 7.4852, 7.495, 7.4917, 7.4858, 7.4924, 7.5016, 7.4958, 7.4925, 7.5451, 7.5396, 7.5365, 7.5315, 7.5263, 7.5266, 7.5212, 7.5177, 7.5142, 7.5084, 7.5043, 7.4986, 7.526, 7.5214, 7.5294, 7.5234, 7.5207, 7.5166, 7.5125, 7.508, 7.5297, 7.5238, 7.521, 7.5162, 7.5259, 7.5214, 7.5166, 7.5263, 7.5209, 7.5181, 7.5129, 7.5073, 7.5034, 7.5056, 7.5024, 7.4975, 7.5072, 7.5537, 7.5498, 7.559, 7.5539, 7.5503, 7.5465, 7.5411, 7.5382, 7.5329, 7.5277, 7.5244, 7.519, 7.5167, 7.5244, 7.5335, 7.5661, 7.5608, 7.5701, 7.565, 7.5598, 7.5548, 7.5499, 7.5468, 7.5543, 7.5405, 7.5418, 7.5497, 7.5588, 7.556, 7.5408, 7.5372, 7.533, 7.5289, 7.5272, 7.522, 7.5192, 7.5044, 7.5113, 7.4982, 7.4835, 7.4797, 7.4871, 7.4821, 7.4794, 7.4755, 7.4705, 7.4669, 7.4621, 7.4572, 7.4548, 7.4508, 7.4483, 7.4561, 7.4521, 7.4605, 7.4562, 7.4529, 7.4485, 7.4487, 7.462, 7.4628, 7.4586, 7.4564, 7.4629, 7.4597, 7.4565, 7.4523, 7.4479, 7.4455, 7.4527, 7.4598, 7.4591, 7.4577, 7.4545, 7.451, 7.458, 7.4552, 7.4535, 7.4606, 7.4913, 7.4891, 7.4851, 7.4821, 7.4889, 7.5473, 7.5482, 7.5979, 7.5935, 7.5905, 7.5882, 7.5835, 7.5811, 7.5777, 7.5754, 7.5711, 7.5779, 7.5838, 7.5814, 7.5772, 7.5731, 7.5696, 7.5674, 7.5641, 7.5596, 7.5574, 7.5533, 7.5505, 7.5472, 7.5427, 7.5405, 7.5468, 7.5435, 7.5505, 7.5479, 7.544, 7.5502, 7.5533, 7.558, 7.5644, 7.5614, 7.5584, 7.554, 7.5503, 7.5566, 7.5522, 7.5501, 7.5458, 7.5515, 7.5473, 7.5444, 7.5401, 7.537, 7.5422, 7.5382, 7.5341, 7.5302, 7.5306, 7.5265, 7.5223, 7.5209, 7.5374, 7.5334, 7.5292, 7.5268, 7.5325, 7.5228, 7.5287, 7.5246, 7.5208, 7.5169, 7.5134, 7.5113, 7.5176, 7.5136, 7.5205, 7.5185, 7.5167, 7.5129, 7.5096, 7.5057, 7.504, 7.5019, 7.4985, 7.4949, 7.4931, 7.4834, 7.4902, 7.4881, 7.4949, 7.4917, 7.4974, 7.5012, 7.4979, 7.4945, 7.4926, 7.4808, 7.478, 7.4742, 7.4717, 7.4778, 7.4752, 7.4803, 7.4766, 7.4732, 7.4806, 7.4769, 7.4733, 7.4697, 7.4677, 7.4731, 7.4789, 7.4795, 7.4773, 7.4748, 7.4711, 7.469, 7.4654, 7.4619, 7.4598, 7.4669, 7.4649, 7.4616, 7.4674, 7.4646, 7.4538, 7.4595, 7.4562, 7.4531, 7.4497, 7.4469, 7.4458, 7.4422, 7.4468, 7.4358, 7.4337, 7.4307, 7.4285, 7.4342, 7.4322, 7.4385, 7.4351, 7.4326, 7.4306, 7.4361, 7.4338, 7.4316, 7.4289, 7.4377, 7.4343, 7.4398, 7.4445, 7.4422, 7.4388, 7.4356, 7.4339, 7.4322, 7.429, 7.4272, 7.4241, 7.4209, 7.418, 7.4157, 7.4124, 7.4091, 7.4062, 7.4031, 7.4009, 7.3981, 7.3986, 7.3959, 7.401, 7.3979, 7.4033, 7.401, 7.3993, 7.4053, 7.3954, 7.3923, 7.3936, 7.3909, 7.4051, 7.4033, 7.4003, 7.3978, 7.3946, 7.3947, 7.3914, 7.3918, 7.3989, 7.4042, 7.4026, 7.4002, 7.3994, 7.398, 7.4041, 7.4025, 7.4041, 7.4012, 7.4002, 7.3972, 7.3941, 7.394, 7.3913, 7.3895, 7.3872, 7.3859, 7.3829, 7.3913, 7.3886, 7.3942, 7.3922, 7.3979, 7.4103, 7.4074, 7.4246, 7.4325, 7.4312, 7.4356, 7.4328, 7.4309, 7.4281, 7.4285, 7.4257, 7.4232, 7.4207, 7.4277, 7.4269, 7.4315, 7.4285, 7.4259, 7.4247, 7.4239, 7.4211, 7.426, 7.4236, 7.421, 7.4259, 7.438, 7.4426, 7.4419, 7.4602, 7.4584, 7.456, 7.4532, 7.458, 7.4628, 7.467, 7.471, 7.4695, 7.4748, 7.4725, 7.4702, 7.4673, 7.4647, 7.4692, 7.4663, 7.4634, 7.4681, 7.4657, 7.4704, 7.4729, 7.4699, 7.468, 7.4589, 7.4562, 7.4537, 7.4522, 7.4575, 7.4548, 7.46, 7.4667, 7.4724, 7.4768, 7.474, 7.4717, 7.469, 7.4674, 7.4721, 7.4713, 7.4753, 7.4737, 7.4778, 7.4765, 7.4752, 7.4725, 7.4697, 7.4671, 7.4658, 7.4632, 7.4648, 7.4622, 7.4535, 7.451, 7.4494, 7.4534, 7.4579, 7.4574, 7.4548, 7.453, 7.4572, 7.4618, 7.4662, 7.4701, 7.4675, 7.4792, 7.4776, 7.4772, 7.4809, 7.4784, 7.4841, 7.4815, 7.4795, 7.4834, 7.4816, 7.4799, 7.4777, 7.4768, 7.4743, 7.4782, 7.4754, 7.4795, 7.4906, 7.4899, 7.491, 7.495, 7.4991, 7.5047, 7.5021, 7.4994, 7.5043, 7.5036, 7.5017, 7.4992, 7.4968, 7.4944, 7.4921, 7.4913, 7.4894, 7.4877, 7.4858, 7.4904, 7.4894, 7.487, 7.4845, 7.4819, 7.4805, 7.4812, 7.4788, 7.4768, 7.4753, 7.4727, 7.4704, 7.4681, 7.4655, 7.463, 7.461, 7.4586, 7.458, 7.4559, 7.4534, 7.4521, 7.4635, 7.4609, 7.4585, 7.4622, 7.4601, 7.4641, 7.4616, 7.4592, 7.4566, 7.4543, 7.4529, 7.4506, 7.4481, 7.4459, 7.4438, 7.4415, 7.4406, 7.4382, 7.4365, 7.435, 7.439, 7.437, 7.4409, 7.4639, 7.4678, 7.4735, 7.4713, 7.4701, 7.4739, 7.4715, 7.4691, 7.4675, 7.4715, 7.4696, 7.4735, 7.4711, 7.475, 7.474, 7.4664, 7.4761, 7.4799, 7.4837, 7.4814, 7.479, 7.4829, 7.4812, 7.4789, 7.4826, 7.4819, 7.4802, 7.4782, 7.476, 7.4794, 7.4772, 7.4811, 7.4911, 7.4888, 7.4867, 7.4847, 7.4773, 7.4763, 7.4743, 7.4723, 7.4706, 7.474, 7.4668, 7.4657, 7.4712, 7.469, 7.4727, 7.4714, 7.4697, 7.4743, 7.4764, 7.4742, 7.4727, 7.4765, 7.4751, 7.4729, 7.4766, 7.4831, 7.4811, 7.4794, 7.4781, 7.4757, 7.4737, 7.4714, 7.4693, 7.467, 7.4647, 7.4681, 7.4667, 7.4643, 7.462, 7.4607, 7.4641, 7.4678, 7.4656, 7.4639, 7.4674, 7.4709, 7.4744, 7.4722, 7.4702, 7.4679, 7.4751, 7.4748, 7.4734, 7.4816, 7.4794, 7.4771, 7.4772, 7.4808, 7.479, 7.4776, 7.4754, 7.4741, 7.4776, 7.4753, 7.4732, 7.4727, 7.4723, 7.47, 7.4682, 7.4672, 7.471, 7.4696, 7.4679, 7.4711, 7.472, 7.4752, 7.473, 7.472, 7.4699, 7.4753, 7.4732, 7.4769, 7.4747, 7.4736, 7.4772, 7.4825, 7.4803, 7.4791, 7.477, 7.4751, 7.473, 7.4715, 7.475, 7.4729, 7.4662, 7.4744, 7.4777, 7.4809, 7.4818, 7.4807, 7.4741, 7.4775, 7.4757, 7.4748, 7.4736, 7.4669, 7.4654, 7.4588, 7.4622, 7.4655, 7.4648, 7.4636, 7.4616, 7.4635, 7.4634, 7.4613, 7.4552, 7.4535, 7.4616, 7.4594, 7.4576, 7.4558, 7.4669, 7.4655, 7.464, 7.4707, 7.4687, 7.4667, 7.4703, 7.4693, 7.4684, 7.4695, 7.468, 7.4672, 7.4662, 7.4652, 7.4648, 7.4657, 7.4688, 7.4722, 7.4703, 7.4739, 7.473, 7.4711, 7.4987, 7.5019, 7.5051, 7.5034, 7.5014, 7.5046, 7.5041, 7.5073, 7.5061, 7.5041, 7.5099, 7.5078, 7.5057, 7.5088, 7.5086, 7.5077, 7.5057, 7.5191, 7.5178, 7.5157, 7.5147, 7.5126, 7.5109, 7.5089, 7.5072, 7.5053, 7.5046, 7.5037, 7.5017, 7.5003, 7.4983, 7.4962, 7.4942, 7.4972, 7.4961, 7.4991, 7.497, 7.5007, 7.4994, 7.4974, 7.5008, 7.5038, 7.5026, 7.5007, 7.5042, 7.5032, 7.5018, 7.4999, 7.4983, 7.4965, 7.4947, 7.4932, 7.4963, 7.495, 7.4946, 7.4977, 7.4958, 7.4938, 7.4931, 7.4981, 7.5012, 7.4993, 7.4989, 7.497, 7.4911, 7.4893, 7.5069, 7.5049, 7.5034, 7.5015, 7.5043, 7.5023, 7.5003, 7.4996, 7.4991, 7.4972, 7.4964, 7.5141, 7.517, 7.5156, 7.514, 7.5121, 7.5111, 7.5093, 7.5074, 7.5055, 7.5037, 7.5022, 7.5004, 7.4996, 7.5046, 7.503, 7.5012, 7.5056, 7.5044, 7.5026, 7.501, 7.4991, 7.4993, 7.4976, 7.492, 7.4902, 7.4889, 7.4871, 7.4857, 7.4802, 7.4805, 7.4787, 7.477, 7.4754, 7.4753, 7.4784, 7.4776, 7.4759, 7.4702, 7.4694, 7.4725, 7.4717, 7.4706, 7.4698, 7.469, 7.4673, 7.4616, 7.4603, 7.4585, 7.4568, 7.4556, 7.4538, 7.4521, 7.4503, 7.4485, 7.452, 7.4502, 7.4532, 7.4518, 7.4504, 7.4532, 7.4517, 7.4546, 7.4711, 7.4739, 7.4765, 7.4747, 7.469, 7.4718, 7.4702, 7.4684, 7.4666, 7.4695, 7.4678, 7.4711, 7.4738, 7.472, 7.4709, 7.469, 7.4693, 7.4676, 7.4667, 7.4651, 7.464, 7.4624, 7.4607, 7.4603, 7.4593, 7.4574, 7.4566, 7.4557, 7.4585, 7.4613, 7.4602, 7.455, 7.4533, 7.452, 7.4511, 7.4493, 7.4478, 7.4462, 7.4453, 7.4449, 7.4433, 7.4427, 7.4412, 7.4408, 7.4396, 7.4385, 7.4414, 7.4445, 7.4432, 7.4421, 7.4407, 7.4431, 7.4459, 7.4444, 7.4471, 7.4468, 7.4495, 7.4485, 7.4474, 7.4466, 7.447, 7.4462, 7.4447, 7.4434, 7.4423, 7.4424, 7.4407, 7.4356, 7.4339, 7.4327, 7.431, 7.4297, 7.4281, 7.4269, 7.4253, 7.4241, 7.4229, 7.4212, 7.4208, 7.4235, 7.4222, 7.4206, 7.4489, 7.4516, 7.4542, 7.4572, 7.4557, 7.4563, 7.4587, 7.4571, 7.4561, 7.455, 7.4543, 7.4572, 7.4597, 7.4582, 7.4568, 7.4596, 7.4622, 7.4608, 7.4592, 7.4621, 7.4569, 7.4561, 7.4546, 7.4532, 7.4559, 7.4543, 7.4538, 7.4573, 7.456, 7.4509, 7.4459, 7.4443, 7.4427, 7.4411, 7.4476, 7.4504, 7.4489, 7.4479, 7.4466, 7.449, 7.4441, 7.447, 7.4453, 7.4443, 7.4428, 7.4429, 7.4412, 7.44, 7.439, 7.4415, 7.4424, 7.4414, 7.4404, 7.4388, 7.4375, 7.4404, 7.4353, 7.4302, 7.4288, 7.4275, 7.4259, 7.4243, 7.4235, 7.4219, 7.4203, 7.4195, 7.418, 7.4169, 7.4157, 7.4141, 7.4126, 7.4111, 7.4101, 7.4086, 7.4071, 7.4056, 7.4042, 7.4068, 7.4052, 7.4037, 7.4064, 7.4088, 7.4079, 7.4065, 7.4049, 7.4001, 7.3987, 7.4005, 7.3991, 7.4059, 7.4046, 7.4032, 7.402, 7.4009, 7.3971, 7.3956, 7.3951, 7.394, 7.3926, 7.3952, 7.3941, 7.3927, 7.3914, 7.3979, 7.3966, 7.3954, 7.3942, 7.3929, 7.3925, 7.392, 7.3916, 7.3944, 7.3971, 7.3958, 7.3945, 7.393, 7.3925, 7.3912, 7.3903, 7.3926, 7.3914, 7.3905, 7.3946, 7.3933, 7.3959, 7.3946, 7.3932, 7.3921, 7.3907, 7.3901, 7.3895, 7.3885, 7.3872, 7.3859, 7.3844, 7.3835, 7.3822, 7.3921, 7.3946, 7.3943, 7.3929, 7.3954, 7.3979, 7.3973, 7.3999, 7.3987, 7.4005, 7.4018, 7.3986, 7.3973, 7.4002, 7.3997, 7.402, 7.401, 7.4004, 7.399, 7.3991, 7.3976, 7.3969, 7.3955, 7.3949, 7.3936, 7.3933, 7.3918, 7.3905, 7.3891, 7.385, 7.3806, 7.3791, 7.378, 7.3792, 7.3777, 7.3765, 7.375, 7.3775, 7.3761, 7.3787, 7.3779, 7.3775, 7.38, 7.3795, 7.3817, 7.3802, 7.3792, 7.3799, 7.3784, 7.381, 7.3798, 7.3789, 7.3777, 7.3765, 7.3786, 7.3778, 7.3763, 7.3748, 7.3733, 7.3742, 7.3765, 7.3752, 7.3738, 7.3724, 7.3749, 7.375, 7.3776, 7.38, 7.3759, 7.3746, 7.3908, 7.3896, 7.3892, 7.3883, 7.3907, 7.3897, 7.3885, 7.3875, 7.3869, 7.3892, 7.3879, 7.3932, 7.3955, 7.3977, 7.3963, 7.3949, 7.3948, 7.3935, 7.3923, 7.3947, 7.3942, 7.3965, 7.3985, 7.3974, 7.3995, 7.4022, 7.401, 7.4005, 7.3995, 7.3983, 7.3978, 7.3935, 7.3957, 7.3948, 7.3935, 7.3923, 7.391, 7.3897, 7.3888, 7.3876, 7.3863, 7.385, 7.3843, 7.383, 7.3816, 7.3839, 7.3826, 7.3817, 7.3805, 7.3762, 7.3752, 7.3738, 7.3724, 7.3716, 7.3703, 7.3689, 7.3676, 7.37, 7.3721, 7.3677, 7.3665, 7.3653, 7.3648, 7.3635, 7.3629, 7.3836, 7.3859, 7.3846, 7.3868, 7.3859, 7.3852, 7.3841, 7.3798, 7.3789, 7.3776, 7.3763, 7.3749, 7.3742, 7.3734, 7.3728, 7.3721, 7.3742, 7.3729, 7.375, 7.3741, 7.3729, 7.3726, 7.3725, 7.3729, 7.3765, 7.376, 7.3721, 7.3708, 7.3766, 7.3786, 7.3921, 7.3909, 7.3919, 7.3906, 7.3893, 7.3881, 7.3921, 7.3913, 7.39, 7.3887, 7.391, 7.3933, 7.3963, 7.3983, 7.3976, 7.3963, 7.3986, 7.3974, 7.3969, 7.3978, 7.397, 7.3998, 7.3992, 7.4014, 7.4035, 7.3994, 7.3982, 7.3976, 7.3963, 7.3987, 7.398, 7.4005, 7.3999, 7.3994, 7.3981, 7.399, 7.3979, 7.3969, 7.3963, 7.3985, 7.4013, 7.4, 7.4017, 7.4005, 7.4027, 7.4016, 7.4046, 7.4034, 7.4022, 7.4112, 7.4104, 7.4096, 7.4083, 7.4075, 7.4062, 7.4054, 7.4041, 7.4063, 7.4052, 7.4045, 7.4032, 7.4021, 7.404, 7.403, 7.4018, 7.4011, 7.4002, 7.3989, 7.3986, 7.4038, 7.4057, 7.4045, 7.4009, 7.3997, 7.4, 7.3994, 7.3991, 7.3982, 7.3979, 7.3945, 7.3938, 7.3927, 7.3921, 7.3915, 7.3906, 7.3906, 7.3902, 7.3897, 7.3952, 7.3973, 7.4041, 7.4062, 7.405, 7.4072, 7.4061, 7.4052, 7.4046, 7.4065, 7.4052, 7.4039, 7.4028, 7.4016, 7.4005, 7.3993, 7.4014, 7.4006, 7.4027, 7.4014, 7.4008, 7.3995, 7.3983, 7.3973, 7.3963, 7.3951, 7.3949, 7.3939, 7.3958, 7.3945, 7.3965, 7.3957, 7.3949, 7.3969, 7.3933, 7.3955, 7.3974, 7.3969, 7.3957, 7.3979, 7.3977, 7.3965, 7.3928, 7.3917, 7.4023, 7.4015, 7.4008, 7.4027, 7.4021, 7.4015, 7.4008, 7.3999, 7.3988, 7.3977, 7.3997, 7.399, 7.3979, 7.3973, 7.3971, 7.396, 7.3977, 7.3965, 7.3987, 7.3976, 7.3965, 7.3953, 7.3946, 7.3938, 7.3957, 7.3949, 7.3943, 7.3931, 7.392, 7.3908, 7.3896, 7.3891, 7.3881, 7.3869, 7.3865, 7.3827, 7.382, 7.3827, 7.3847, 7.3841, 7.3956, 7.3945, 7.3943, 7.3963, 7.3952, 7.394, 7.3928, 7.3916, 7.3906, 7.3896, 7.3889, 7.3877, 7.3895, 7.3884, 7.3905, 7.3894, 7.3883, 7.3872, 7.3891, 7.388, 7.39, 7.3893, 7.3886, 7.3907, 7.3896, 7.3885, 7.3874, 7.3868, 7.3887, 7.3878, 7.3866, 7.3853, 7.3844, 7.3808, 7.3797, 7.3788, 7.378, 7.3769, 7.3823, 7.3815, 7.3807, 7.38, 7.3789, 7.3781, 7.38, 7.3797, 7.3791, 7.378, 7.3808, 7.3797, 7.379, 7.3784, 7.3773, 7.3744, 7.3764, 7.3758, 7.3753, 7.3786, 7.3776, 7.3764, 7.3785, 7.3775, 7.3795, 7.3785, 7.3806, 7.3796, 7.3787, 7.3777, 7.3769, 7.3794, 7.3813, 7.3804, 7.3792, 7.3781, 7.3779, 7.3775, 7.3765, 7.3755, 7.3748, 7.3743, 7.3732, 7.3721, 7.3715, 7.3704, 7.3693, 7.3682, 7.3671, 7.3665, 7.3683, 7.3672, 7.3661, 7.3681, 7.367, 7.3689, 7.3678, 7.3667, 7.3685, 7.3679, 7.3671, 7.3659, 7.3801, 7.3791, 7.3784, 7.3773, 7.3791, 7.387, 7.3865, 7.3861, 7.3855, 7.3874, 7.3892, 7.3881, 7.3871, 7.389, 7.388, 7.387, 7.3889, 7.3883, 7.3877, 7.3872, 7.3905, 7.3927, 7.3916, 7.3909, 7.3898, 7.3889, 7.3881, 7.3873, 7.3897, 7.3888, 7.3882, 7.3877, 7.3871, 7.389, 7.3879, 7.3897, 7.3892, 7.3883, 7.3877, 7.3866, 7.3885, 7.3875, 7.3864, 7.3856, 7.3847, 7.3837, 7.3862, 7.3879, 7.387, 7.3858, 7.385, 7.3839, 7.3828, 7.3817, 7.3806, 7.3798, 7.379, 7.3782, 7.3771, 7.376, 7.3749, 7.3738, 7.3732, 7.3724, 7.3727, 7.3722, 7.3711, 7.3701, 7.369, 7.3708, 7.3703, 7.3723, 7.3713, 7.3702, 7.3691, 7.368, 7.3679, 7.3676, 7.3693, 7.3683, 7.3674, 7.3668, 7.3678, 7.3673, 7.369, 7.3679, 7.3673, 7.3663, 7.3652, 7.3646, 7.3636, 7.3633, 7.3629, 7.3619, 7.3612, 7.3602, 7.3592, 7.3587, 7.3608, 7.3599, 7.3589, 7.3579, 7.36, 7.3653, 7.3649, 7.364, 7.3629, 7.362, 7.3614, 7.3604, 7.3622, 7.3615, 7.3607, 7.36, 7.359, 7.3583, 7.3574, 7.3569, 7.3559, 7.3549, 7.3566, 7.3556, 7.3546, 7.3536, 7.3502, 7.3492, 7.3496, 7.3494, 7.3493, 7.3483, 7.35, 7.3489, 7.3488, 7.3479, 7.3474, 7.3467, 7.3485, 7.3474, 7.3464, 7.3457, 7.345, 7.3483, 7.3474, 7.3491, 7.3493, 7.3483, 7.3508, 7.3504, 7.3499, 7.3516, 7.3506, 7.3496, 7.3551, 7.3546, 7.3536, 7.3526, 7.352, 7.3513, 7.3506, 7.3535, 7.3526, 7.3569, 7.3828, 7.3821, 7.3812, 7.3805, 7.3797, 7.3813, 7.378, 7.3769, 7.3759, 7.3748, 7.3738, 7.373, 7.3723, 7.3714, 7.371, 7.3714, 7.3731, 7.3748, 7.3766, 7.3756, 7.3746, 7.3762, 7.3779, 7.3771, 7.3761, 7.3752, 7.3849, 7.384, 7.383, 7.382, 7.3811, 7.3828, 7.3817, 7.3807, 7.3805, 7.3799, 7.3819, 7.3834, 7.3824, 7.3927, 7.3917, 7.3914, 7.3932, 7.3923, 7.3941, 7.3932, 7.3928, 7.392, 7.3919, 7.3914, 7.3904, 7.3894, 7.3884, 7.3875, 7.3921, 7.3919, 7.3909, 7.3899, 7.3922, 7.3915, 7.3938, 7.393, 7.3925, 7.3915, 7.3932, 7.3949, 7.395, 7.3939, 7.3956, 7.395, 7.395, 7.3941, 7.3939, 7.3946, 7.3935, 7.3956, 7.3949, 7.3949, 7.394, 7.3932, 7.3925, 7.3917, 7.391, 7.3902, 7.3892, 7.389, 7.3907, 7.3899, 7.3998, 7.399, 7.3983, 7.3973, 7.3964, 7.3955, 7.3955, 7.3949, 7.3939, 7.393, 7.3928, 7.3921, 7.3938, 7.3929, 7.3945, 7.3942, 7.3944, 7.3961, 7.3952, 7.3974, 7.3993, 7.3989, 7.398, 7.397, 7.3986, 7.3977, 7.3947, 7.3942, 7.3932, 7.3922, 7.3915, 7.3905, 7.3926, 7.3923, 7.3917, 7.3908, 7.3923, 7.3917, 7.3909, 7.3902, 7.3895, 7.3889, 7.3879, 7.3869, 7.3863, 7.3853, 7.3843, 7.3835, 7.3828, 7.3827, 7.382, 7.3813, 7.3829, 7.3826, 7.3819, 7.3809, 7.3802, 7.3793, 7.3789, 7.3781, 7.3772, 7.3762, 7.3756, 7.3775, 7.3766, 7.3757, 7.3776, 7.3746, 7.3762, 7.3754, 7.3749, 7.3741, 7.3736, 7.3728, 7.3745, 7.3736, 7.3731, 7.3765, 7.3783, 7.3804, 7.3825, 7.3818, 7.3834, 7.3827, 7.3819, 7.3811, 7.3803, 7.3793, 7.3785, 7.3775, 7.3766, 7.376, 7.3751, 7.3767, 7.3785, 7.3777, 7.3769, 7.3785, 7.3777, 7.3769, 7.376, 7.3751, 7.3768, 7.3799, 7.379, 7.3806, 7.3797, 7.3791, 7.3787, 7.3779, 7.377, 7.3761, 7.3751, 7.3742, 7.3733, 7.3772, 7.3788, 7.3779, 7.3797, 7.3795, 7.3786, 7.3801, 7.3792, 7.3783, 7.3799, 7.3793, 7.3785, 7.3778, 7.3748, 7.3744, 7.3736, 7.3727, 7.3719, 7.3712, 7.3705, 7.3695, 7.3709, 7.3729, 7.3724, 7.3741, 7.3737, 7.3732, 7.3757, 7.3747, 7.3741, 7.3732, 7.3723, 7.3715, 7.3731, 7.3722, 7.3718, 7.371, 7.3701, 7.3767, 7.3788, 7.3782, 7.3779, 7.3775, 7.3766, 7.3762, 7.3763, 7.3758, 7.3749, 7.374, 7.3732, 7.3779, 7.3794, 7.3809, 7.38, 7.3794, 7.3789, 7.3783, 7.3778, 7.3775, 7.3789, 7.378, 7.3774, 7.3765, 7.3756, 7.3755, 7.375, 7.3765, 7.3759, 7.3774, 7.3767, 7.3758, 7.3735, 7.3726, 7.374, 7.3747, 7.3764, 7.3767, 7.3758, 7.375, 7.3771, 7.3787, 7.3827, 7.3821, 7.3814, 7.3806, 7.38, 7.3791, 7.3783, 7.382, 7.3816, 7.3807, 7.3799, 7.3792, 7.3783, 7.3774, 7.3789, 7.3803, 7.3817, 7.3813, 7.3827, 7.3818, 7.3814, 7.3805, 7.3797, 7.3811, 7.3802, 7.3793, 7.3789, 7.3806, 7.3798, 7.3815, 7.3829, 7.3822, 7.3817, 7.3861, 7.3852, 7.3843, 7.3837, 7.3837, 7.383, 7.3826, 7.3817, 7.383, 7.3824, 7.3848, 7.384, 7.3835, 7.3827, 7.3819, 7.3838, 7.3833, 7.3895, 7.391, 7.3909, 7.3924, 7.3917, 7.393, 7.3924, 7.3941, 7.3933, 7.3931, 7.3946, 7.3937, 7.3929, 7.3924, 7.3919, 7.3913, 7.3904, 7.3895, 7.3891, 7.3882, 7.3873, 7.3865, 7.3856, 7.3849, 7.3871, 7.3866, 7.3857, 7.3849, 7.3841, 7.3855, 7.3852, 7.3846, 7.3845, 7.385, 7.3845, 7.3843, 7.3834, 7.383, 7.3824, 7.3837, 7.3829, 7.383, 7.3821, 7.3813, 7.3805, 7.3796, 7.3824, 7.3839, 7.3832, 7.3823, 7.3815, 7.3833, 7.3824, 7.382, 7.3816, 7.383, 7.3823, 7.3824, 7.3921, 7.3937, 7.3955, 7.395, 7.3944, 7.3938, 7.393, 7.3936, 7.3927, 7.394, 7.3954, 7.3972, 7.3968, 7.3961, 7.3953, 7.3948, 7.3944, 7.3944, 7.3941, 7.3955, 7.3971, 7.3962, 7.3957, 7.3949, 7.3945, 7.394, 7.3955, 7.3948, 7.3962, 7.3954, 7.3946, 7.3938, 7.393, 7.3927, 7.3919, 7.3911, 7.3902, 7.3899, 7.3914, 7.3908, 7.3902, 7.3897, 7.3888, 7.3884, 7.3882, 7.3875, 7.3867, 7.3859, 7.3873, 7.3865, 7.3857, 7.3872, 7.3888, 7.3885, 7.3881, 7.3896, 7.3891, 7.3883, 7.3882, 7.3917, 7.3954, 7.3946, 7.3938, 7.393, 7.3924, 7.392, 7.3912, 7.3925, 7.3954, 7.3969, 7.3965, 7.398, 7.3993, 7.4031, 7.4047, 7.4041, 7.4039, 7.4035, 7.4035, 7.4049, 7.4111, 7.4125, 7.412, 7.4112, 7.4104, 7.41, 7.4115, 7.4111, 7.4103, 7.4097, 7.409, 7.4082, 7.4098, 7.409, 7.4063, 7.4083, 7.4077, 7.4072, 7.4064, 7.4056, 7.407, 7.4082, 7.4074, 7.4099, 7.409, 7.4085, 7.4077, 7.4069, 7.4107, 7.41, 7.4092, 7.4106, 7.4101, 7.4117, 7.4109, 7.4103, 7.4101, 7.4093, 7.409, 7.4083, 7.408, 7.4074, 7.407, 7.4061, 7.4053, 7.4069, 7.4082, 7.4078, 7.407, 7.4063, 7.4056, 7.4071, 7.4064, 7.4058, 7.4053, 7.4045, 7.402, 7.4015, 7.4028, 7.4021, 7.4014, 7.4031, 7.403, 7.4023, 7.4016, 7.4008, 7.4001, 7.3996, 7.4002, 7.4015, 7.4008, 7.4022, 7.4016, 7.4008, 7.4021, 7.4013, 7.4006, 7.4019, 7.4032, 7.4025, 7.4017, 7.4009, 7.4001, 7.3999, 7.3991, 7.3983, 7.3978, 7.397, 7.3982, 7.3989, 7.4007, 7.4003, 7.3996, 7.3988, 7.3981, 7.3995, 7.4008, 7.4004, 7.4003, 7.3996, 7.399, 7.3983, 7.3977, 7.3969, 7.3965, 7.3958, 7.395, 7.3948, 7.3962, 7.3962, 7.3956, 7.3951, 7.3964, 7.3961, 7.3966, 7.3981, 7.3976, 7.397, 7.3963, 7.3965, 7.3959, 7.3951, 7.3944, 7.396, 7.3961, 7.3955, 7.395, 7.3948, 7.394, 7.3954, 7.3949, 7.3941, 7.3956, 7.3952, 7.3966, 7.3962, 7.3975, 7.397, 7.3985, 7.3978, 7.3953, 7.3948, 7.394, 7.3932, 7.3947, 7.3943, 7.3957, 7.399, 7.3983, 7.3976, 7.3972, 7.3986, 7.3979, 7.3977, 7.3953, 7.3946, 7.3938, 7.3952, 7.3944, 7.3936, 7.3932, 7.3955, 7.3948, 7.3941, 7.3966, 7.4019, 7.4048, 7.4041, 7.4042, 7.4038, 7.4051, 7.4046, 7.404, 7.4035, 7.4054, 7.4046, 7.4042, 7.4034, 7.4047, 7.4044, 7.4057, 7.407, 7.4084, 7.4079, 7.4074, 7.4085, 7.41, 7.4096, 7.4111, 7.4103, 7.4095, 7.4091, 7.4125, 7.4119, 7.4118, 7.411, 7.4102, 7.4114, 7.4106, 7.4098, 7.4097, 7.4091, 7.4083, 7.4137, 7.4131, 7.4153, 7.4145, 7.4199, 7.4193, 7.4189, 7.4181, 7.4156, 7.4149, 7.4141, 7.4118, 7.4172, 7.4186, 7.4199, 7.4193, 7.4186, 7.4181, 7.4179, 7.4172, 7.4168, 7.4161, 7.4173, 7.4186, 7.4179, 7.416, 7.4162, 7.4155, 7.4148, 7.4143, 7.4155, 7.4148, 7.416, 7.4152, 7.4144, 7.4137, 7.4133, 7.413, 7.4143, 7.4137, 7.413, 7.4143, 7.4136, 7.4148, 7.4142, 7.4134, 7.4146, 7.4141, 7.4135, 7.4148, 7.4143, 7.4139, 7.4154, 7.4177, 7.4173, 7.4168, 7.4164, 7.4229, 7.4206, 7.4202, 7.4195, 7.4212, 7.4208, 7.4204, 7.42, 7.4194, 7.4207, 7.4201, 7.4197, 7.4192, 7.4185, 7.4166, 7.4162, 7.4157, 7.4151, 7.4146, 7.4219, 7.4222, 7.4235, 7.4248, 7.4241, 7.4234, 7.4226, 7.4222, 7.4216, 7.4268, 7.4264, 7.4262, 7.427, 7.4284, 7.4296, 7.4289, 7.4283, 7.4279, 7.4271, 7.4264, 7.4256, 7.4252, 7.4248, 7.427, 7.4263, 7.4275, 7.4268, 7.4261, 7.4269, 7.4282, 7.4279, 7.4272, 7.4285, 7.4278, 7.4271, 7.4266, 7.4279, 7.4272, 7.4307, 7.43, 7.4292, 7.4284, 7.4277, 7.4293, 7.4286, 7.4278, 7.4277, 7.4253, 7.4256, 7.4249, 7.4244, 7.4241, 7.4239, 7.4215, 7.4214, 7.4207, 7.4219, 7.4231, 7.4224, 7.4221, 7.4217, 7.421, 7.4205, 7.4199, 7.4211, 7.4206, 7.4217, 7.421, 7.4203, 7.4218, 7.4232, 7.4228, 7.424, 7.4253, 7.4259, 7.4252, 7.4245, 7.4239, 7.4238, 7.425, 7.4242, 7.4235, 7.4258, 7.4251, 7.4248, 7.4226, 7.4203, 7.4197, 7.4209, 7.4202, 7.4195, 7.4187, 7.4165, 7.4159, 7.4155, 7.415, 7.4145, 7.4139, 7.4135, 7.4128, 7.4141, 7.4155, 7.415, 7.4147, 7.4149, 7.4142, 7.4136, 7.4149, 7.4142, 7.4138, 7.415, 7.4143, 7.4136, 7.4129, 7.4128, 7.4123, 7.4117, 7.412, 7.4149, 7.4161, 7.4155, 7.4147, 7.414, 7.4135, 7.4148, 7.4161, 7.4173, 7.4167, 7.416, 7.4155, 7.4149, 7.4142, 7.4134, 7.4129, 7.4125, 7.4118, 7.4113, 7.4109, 7.4105, 7.41, 7.4093, 7.4086, 7.4098, 7.4093, 7.4105, 7.41, 7.4111, 7.4105, 7.41, 7.4104, 7.4097, 7.4094, 7.4089, 7.41, 7.4097, 7.4097, 7.4139, 7.4151, 7.4208, 7.4202, 7.423, 7.4241, 7.4253, 7.4248, 7.4248, 7.4244, 7.4256, 7.4267, 7.4263, 7.4258, 7.4254, 7.4264, 7.4262, 7.4274, 7.4267, 7.4279, 7.4274, 7.4268, 7.4262, 7.4277, 7.4274, 7.4268, 7.4261, 7.4273, 7.4285, 7.428, 7.4294, 7.4306, 7.4318, 7.433, 7.4326, 7.4319, 7.4314, 7.4324, 7.4319, 7.4313, 7.4308, 7.4301, 7.4312, 7.4305, 7.4299, 7.4293, 7.4287, 7.4282, 7.4275, 7.4269, 7.4262, 7.424, 7.4238, 7.4261, 7.4255, 7.4248, 7.4242, 7.4235, 7.4229, 7.4225, 7.4218, 7.4212, 7.4208, 7.4201, 7.4198, 7.4191, 7.4184, 7.4182, 7.4178, 7.4173, 7.4167, 7.418, 7.4228, 7.4221, 7.4218, 7.4216, 7.4233, 7.4227, 7.4238, 7.425, 7.4247, 7.4241, 7.4235, 7.4229, 7.4222, 7.4215, 7.4208, 7.4201, 7.4195, 7.4189, 7.4186, 7.4198, 7.4191, 7.4185, 7.4181, 7.4192, 7.4222, 7.4215, 7.4208, 7.4208, 7.4201, 7.4213, 7.4206, 7.4217, 7.421, 7.4203, 7.4197, 7.4193, 7.4186, 7.418, 7.4173, 7.4188, 7.4181, 7.4175, 7.4172, 7.4165, 7.4158, 7.4152, 7.4163, 7.4163, 7.4156, 7.415, 7.4145, 7.4138, 7.4148, 7.416, 7.4156, 7.4152, 7.4164, 7.4159, 7.4153, 7.4153, 7.415, 7.4144, 7.4139, 7.4136, 7.4133, 7.4127, 7.412, 7.4113, 7.4107, 7.4101, 7.4095, 7.4091, 7.4085, 7.409, 7.4103, 7.4097, 7.4093, 7.4086, 7.4098, 7.411, 7.4107, 7.41, 7.4093, 7.409, 7.4102, 7.4096, 7.4107, 7.4101, 7.4094, 7.409, 7.4088, 7.4084, 7.4081, 7.4101, 7.4112, 7.4106, 7.4102, 7.4095, 7.4106, 7.4099, 7.4095, 7.4088, 7.41, 7.4093, 7.4094, 7.4114, 7.4108, 7.4104, 7.4097, 7.411, 7.4104, 7.4097, 7.4108, 7.4101, 7.4094, 7.4087, 7.408, 7.4092, 7.4092, 7.4102, 7.414, 7.4155, 7.4193, 7.4186, 7.4179, 7.4179, 7.4174, 7.4167, 7.4161, 7.4141, 7.4152, 7.4146, 7.4142, 7.4136, 7.4132, 7.4142, 7.4157, 7.4168, 7.4185, 7.4179, 7.4172, 7.4168, 7.4165, 7.416, 7.4153, 7.4146, 7.414, 7.4137, 7.413, 7.414, 7.4136, 7.413, 7.4123, 7.4117, 7.411, 7.4104, 7.4102, 7.4096, 7.409, 7.4086, 7.4097, 7.409, 7.4084, 7.4078, 7.4075, 7.4086, 7.408, 7.409, 7.4085, 7.4081, 7.4074, 7.407, 7.414, 7.4158, 7.42, 7.4197, 7.4208, 7.4201, 7.4195, 7.419, 7.42, 7.4196, 7.4189, 7.4182, 7.4195, 7.4191, 7.4185, 7.4179, 7.4175, 7.4171, 7.4182, 7.4176, 7.4171, 7.4166, 7.4162, 7.4155, 7.4166, 7.4162, 7.4159, 7.4153, 7.4177, 7.4178, 7.4178, 7.4173, 7.4183, 7.4195, 7.4189, 7.4183, 7.4193, 7.4205, 7.4199, 7.4193, 7.4189, 7.4186, 7.4171, 7.4164, 7.4175, 7.4186, 7.4181, 7.4177, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4145, 7.4157, 7.4168, 7.4165, 7.4159, 7.4161, 7.4161, 7.4162, 7.4173, 7.417, 7.415, 7.4145, 7.4141, 7.4138, 7.4135, 7.4146, 7.4139, 7.4151, 7.4153, 7.4148, 7.4144, 7.4141, 7.4135, 7.4129, 7.4128, 7.4122, 7.4115, 7.4108, 7.4102, 7.4116, 7.4126, 7.4122, 7.4122, 7.4117, 7.4128, 7.4122, 7.4132, 7.4128, 7.4139, 7.4149, 7.4142, 7.4146, 7.414, 7.4136, 7.413, 7.4125, 7.4118, 7.4115, 7.411, 7.4104, 7.4098, 7.4094, 7.4087, 7.4084, 7.4093, 7.4103, 7.4105, 7.4102, 7.4097, 7.4107, 7.4102, 7.4097, 7.4098, 7.4095, 7.4089, 7.4083, 7.4077, 7.4075, 7.4069, 7.4063, 7.4057, 7.4067, 7.4118, 7.4113, 7.4125, 7.4119, 7.4113, 7.4124, 7.4156, 7.4178, 7.4173, 7.417, 7.4167, 7.4161, 7.4172, 7.4168, 7.4181, 7.4175, 7.4186, 7.418, 7.4174, 7.4175, 7.4186, 7.4183, 7.4186, 7.4183, 7.4177, 7.4173, 7.4168, 7.4165, 7.4176, 7.4174, 7.4168, 7.4178, 7.4172, 7.4183, 7.4193, 7.4203, 7.42, 7.4206, 7.4216, 7.421, 7.4204, 7.4214, 7.4208, 7.4207, 7.4201, 7.4199, 7.4195, 7.4205, 7.42, 7.421, 7.4194, 7.4188, 7.4182, 7.4181, 7.4175, 7.4172, 7.4153, 7.4147, 7.4141, 7.4155, 7.4149, 7.416, 7.4155, 7.415, 7.4144, 7.414, 7.415, 7.4157, 7.4168, 7.4162, 7.4156, 7.4153, 7.4147, 7.4141, 7.4152, 7.4145, 7.414, 7.4136, 7.4137, 7.4134, 7.4128, 7.4138, 7.4135, 7.4132, 7.4128, 7.4123, 7.4135, 7.413, 7.4124, 7.4118, 7.4114, 7.4111, 7.4121, 7.4131, 7.4157, 7.4151, 7.416, 7.4155, 7.415, 7.4152, 7.4146, 7.4156, 7.4152, 7.4146, 7.4143, 7.4139, 7.4133, 7.4145, 7.4141, 7.4135, 7.4162, 7.4156, 7.4152, 7.4146, 7.4149, 7.4143, 7.4156, 7.415, 7.416, 7.4155, 7.4149, 7.4143, 7.4137, 7.4131, 7.4157, 7.4151, 7.4145, 7.4139, 7.4137, 7.4133, 7.4127, 7.4138, 7.4132, 7.4126, 7.4121, 7.4115, 7.4129, 7.4128, 7.4139, 7.4134, 7.4146, 7.414, 7.4134, 7.413, 7.4124, 7.4118, 7.4114, 7.4153, 7.415, 7.4144, 7.4142, 7.4152, 7.415, 7.4143, 7.4138, 7.4132, 7.4141, 7.4138, 7.4147, 7.4141, 7.4152, 7.4158, 7.4152, 7.4139, 7.4133, 7.4134, 7.413, 7.4124, 7.4123, 7.4118, 7.416, 7.414, 7.4149, 7.4146, 7.4141, 7.4136, 7.4145, 7.414, 7.4158, 7.4155, 7.4173, 7.4167, 7.4161, 7.4157, 7.4151, 7.4146, 7.414, 7.4135, 7.4129, 7.4123, 7.4118, 7.4112, 7.4122, 7.4131, 7.4142, 7.4136, 7.413, 7.4127, 7.4108, 7.4105, 7.4101, 7.4095, 7.409, 7.41, 7.4174, 7.4171, 7.4167, 7.4178, 7.4175, 7.4172, 7.4168, 7.4164, 7.4158, 7.4153, 7.4153, 7.4182, 7.4192, 7.4189, 7.4199, 7.4194, 7.4193, 7.4205, 7.4199, 7.421, 7.4204, 7.4198, 7.4198, 7.4193, 7.419, 7.4201, 7.4198, 7.4194, 7.4188, 7.4182, 7.4182, 7.4178, 7.4173, 7.4168, 7.4165, 7.4177, 7.4172, 7.4167, 7.4167, 7.4163, 7.4157, 7.4154, 7.415, 7.4147, 7.4156, 7.4153, 7.415, 7.4145, 7.4139, 7.4136, 7.4133, 7.4127, 7.4122, 7.4116, 7.4113, 7.411, 7.4104, 7.4098, 7.4093, 7.4087, 7.4097, 7.4107, 7.4101, 7.4095, 7.4106, 7.4102, 7.4096, 7.4106, 7.41, 7.4097, 7.4093, 7.4089, 7.4085, 7.408, 7.4075, 7.4086, 7.4085, 7.409, 7.4084, 7.4081, 7.4091, 7.4086, 7.4097, 7.4092, 7.4102, 7.4099, 7.4094, 7.4106, 7.4118, 7.4127, 7.4124, 7.412, 7.4114, 7.4124, 7.4121, 7.4116, 7.4111, 7.4105, 7.4102, 7.4083, 7.4078, 7.4076, 7.4073, 7.4083, 7.4077, 7.4087, 7.4082, 7.4079, 7.4075, 7.4069, 7.4065, 7.406, 7.4055, 7.4049, 7.4043, 7.4026, 7.4034, 7.4029, 7.4024, 7.4018, 7.4014, 7.4009, 7.4003, 7.4012, 7.4006, 7.4003, 7.4, 7.3999, 7.4019, 7.4043, 7.4053, 7.4062, 7.4071, 7.4103, 7.4099, 7.4094, 7.409, 7.4085, 7.408, 7.4075, 7.4085, 7.4081, 7.4076, 7.4071, 7.4066, 7.4064, 7.4073, 7.4068, 7.4078, 7.4073, 7.4155, 7.4166, 7.4168, 7.4165, 7.4159, 7.4153, 7.415, 7.4145, 7.4139, 7.4135, 7.4133, 7.4128, 7.4123, 7.4118, 7.4113, 7.4107, 7.4131, 7.4125, 7.412, 7.4118, 7.4114, 7.411, 7.4105, 7.4101, 7.4104, 7.41, 7.4095, 7.4107, 7.4102, 7.4099, 7.4094, 7.409, 7.4086, 7.4083, 7.408, 7.4088, 7.4097, 7.4094, 7.4089, 7.4084, 7.4079, 7.4073, 7.4069, 7.4065, 7.406, 7.4043, 7.4052, 7.4049, 7.4043, 7.4038, 7.4032, 7.4041, 7.4038, 7.4033, 7.403, 7.4027, 7.4034, 7.4031, 7.4041, 7.4041, 7.4056, 7.4053, 7.4052, 7.4048, 7.4044, 7.404, 7.4037, 7.4034, 7.403, 7.4039, 7.4036, 7.4044, 7.4039, 7.4034, 7.403, 7.4026, 7.4021, 7.4015, 7.4027, 7.4022, 7.4018, 7.4029, 7.4029, 7.4024, 7.402, 7.4029, 7.4025, 7.402, 7.4014, 7.4009, 7.4004, 7.4018, 7.4013, 7.4007, 7.4002, 7.4, 7.3995, 7.399, 7.399, 7.3985, 7.398, 7.3976, 7.3992, 7.3987, 7.3983, 7.3978, 7.3994, 7.3989, 7.3984, 7.4003, 7.3998, 7.4001, 7.3997, 7.3992, 7.3987, 7.3997, 7.3993, 7.3988, 7.4012, 7.4006, 7.4, 7.3995, 7.3992, 7.3987, 7.3981, 7.3976, 7.3973, 7.3968, 7.3965, 7.3974, 7.3969, 7.3964, 7.3947, 7.3943, 7.3952, 7.401, 7.4019, 7.4016, 7.4012, 7.4007, 7.4003, 7.4, 7.4014, 7.4011, 7.4025, 7.4021, 7.4019, 7.4017, 7.4012, 7.401, 7.402, 7.4015, 7.401, 7.4006, 7.4003, 7.3998, 7.3993, 7.3989, 7.3984, 7.3979, 7.3974, 7.3971, 7.3971, 7.3965, 7.3962, 7.3964, 7.3962, 7.3957, 7.397, 7.3969, 7.3977, 7.3972, 7.3967, 7.3962, 7.3958, 7.3968, 7.3979, 7.3973, 7.3982, 7.3986, 7.3981, 7.3979, 7.3975, 7.397, 7.3964, 7.3963, 7.396, 7.3957, 7.3981, 7.3976, 7.3971, 7.3967, 7.3977, 7.3973, 7.397, 7.3967, 7.3977, 7.3972, 7.3968, 7.3965, 7.3961, 7.3956, 7.395, 7.3945, 7.394, 7.3935, 7.393, 7.394, 7.3935, 7.3929, 7.3926, 7.3955, 7.3983, 7.3993, 7.3988, 7.3985, 7.3968, 7.3995, 7.3993, 7.3988, 7.3987, 7.3996, 7.4005, 7.4, 7.3995, 7.399, 7.3999, 7.3994, 7.4002, 7.4011, 7.4006, 7.4005, 7.4001, 7.3996, 7.4006, 7.4002, 7.3999, 7.3995, 7.3992, 7.3987, 7.399, 7.3986, 7.3992, 7.4002, 7.3997, 7.3993, 7.3988, 7.3983, 7.3978, 7.3975, 7.4026, 7.4023, 7.4018, 7.4018, 7.4012, 7.4023, 7.4019, 7.4014, 7.4019, 7.4024, 7.4018, 7.4013, 7.4026, 7.4024, 7.404, 7.4038, 7.4033, 7.4028, 7.4023, 7.4032, 7.403, 7.4026, 7.4022, 7.4031, 7.4026, 7.4036, 7.4031, 7.4039, 7.4048, 7.4043, 7.4038, 7.4032, 7.4027, 7.4065, 7.4063, 7.406, 7.4056, 7.4054, 7.4051, 7.405, 7.4058, 7.4066, 7.4074, 7.407, 7.4066, 7.4067, 7.4064, 7.4061, 7.4074, 7.4071, 7.4066, 7.4063, 7.4059, 7.4056, 7.4052, 7.4103, 7.4099, 7.4094, 7.4091, 7.4089, 7.4084, 7.4081, 7.4086, 7.4081, 7.411, 7.4105, 7.4101, 7.411, 7.4106, 7.4102, 7.4097, 7.4106, 7.411, 7.4105, 7.41, 7.4083, 7.408, 7.4075, 7.407, 7.4066, 7.4075, 7.4083, 7.408, 7.4075, 7.407, 7.4065, 7.406, 7.4055, 7.405, 7.4072, 7.4069, 7.4065, 7.4073, 7.4068, 7.4067, 7.4063, 7.4059, 7.4054, 7.4063, 7.4058, 7.4065, 7.4087, 7.4083, 7.4078, 7.4088, 7.4085, 7.4095, 7.4092, 7.41, 7.4095, 7.409, 7.4104, 7.4113, 7.4108, 7.4117, 7.4112, 7.4108, 7.4103, 7.4098, 7.4094, 7.4092, 7.4183, 7.4178, 7.4178, 7.4161, 7.4156, 7.4151, 7.4187, 7.4182, 7.4191, 7.4174, 7.4171, 7.418, 7.4175, 7.4171, 7.418, 7.4175, 7.4183, 7.4192, 7.4202, 7.4211, 7.4206, 7.419, 7.4191, 7.4186, 7.4183, 7.4179, 7.4174, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4152, 7.4149, 7.4138, 7.4134, 7.4133, 7.415, 7.4147, 7.4156, 7.4151, 7.4148, 7.4143, 7.4138, 7.4134, 7.4129, 7.4126, 7.4123, 7.4138, 7.4133, 7.4141, 7.4137, 7.4134, 7.4129, 7.4124, 7.4121, 7.4118, 7.4113, 7.4121, 7.4116, 7.4112, 7.4109, 7.4104, 7.41, 7.4096, 7.4091, 7.4086, 7.4082, 7.409, 7.4085, 7.4086, 7.4083, 7.4078, 7.4073, 7.4068, 7.4076, 7.4073, 7.4081, 7.4068, 7.4067, 7.4064, 7.4077, 7.4072, 7.4067, 7.4062, 7.4069, 7.4064, 7.4074, 7.4075, 7.406, 7.4056, 7.4053, 7.4049, 7.4046, 7.4045, 7.404, 7.4035, 7.4031, 7.4026, 7.4034, 7.403, 7.4014, 7.4009, 7.4007, 7.4002, 7.3997, 7.4034, 7.4029, 7.404, 7.4052, 7.4047, 7.4042, 7.405, 7.4098, 7.4105, 7.41, 7.4108, 7.4103, 7.41, 7.4095, 7.4104, 7.41, 7.4095, 7.4103, 7.4101, 7.4096, 7.4105, 7.4103, 7.4098, 7.4096, 7.4091, 7.4088, 7.4089, 7.4086, 7.4084, 7.4083, 7.4107, 7.4115, 7.4113, 7.4098, 7.4099, 7.4109, 7.4104, 7.4113, 7.4109, 7.4104, 7.4113, 7.4108, 7.4104, 7.4102, 7.4098, 7.4093, 7.4089, 7.4085, 7.4081, 7.4077, 7.4074, 7.4082, 7.4077, 7.4073, 7.4068, 7.4066, 7.4062, 7.4059, 7.4069, 7.4064, 7.4075, 7.4072, 7.4067, 7.4072, 7.4069, 7.4066, 7.4063, 7.406, 7.4065, 7.4061, 7.406, 7.4056, 7.4053, 7.4051, 7.4035, 7.4032, 7.4042, 7.4041, 7.405, 7.4059, 7.4056, 7.4055, 7.4053, 7.4064, 7.4063, 7.407, 7.4066, 7.4064, 7.4059, 7.406, 7.4068, 7.4066, 7.4067, 7.4062, 7.4057, 7.4054, 7.4049, 7.4045, 7.4043, 7.404, 7.4052, 7.4047, 7.4043, 7.4066, 7.4077, 7.4089, 7.4084, 7.4091, 7.4086, 7.4083, 7.408, 7.4076, 7.4073, 7.4068, 7.4063, 7.4065, 7.4061, 7.4058, 7.4055, 7.4068, 7.414, 7.4137, 7.4134, 7.4131, 7.4129, 7.4126, 7.4134, 7.413, 7.4125, 7.4133, 7.4129, 7.4127, 7.4122, 7.4128, 7.4123, 7.4118, 7.4115, 7.4111, 7.4119, 7.4117, 7.4112, 7.4107, 7.4102, 7.4097, 7.4095, 7.4103, 7.411, 7.4108, 7.4105, 7.4103, 7.4098, 7.4106, 7.4103, 7.4099, 7.4085, 7.408, 7.4082, 7.408, 7.4075, 7.4074, 7.4069, 7.4077, 7.4072, 7.408, 7.4088, 7.4086, 7.4082, 7.4078, 7.4074, 7.4083, 7.408, 7.4066, 7.4062, 7.4095, 7.409, 7.4102, 7.4097, 7.4096, 7.4106, 7.4147, 7.4168, 7.4165, 7.4163, 7.4171, 7.4216, 7.4211, 7.4208, 7.4206, 7.4204, 7.42, 7.4196, 7.4193, 7.4202, 7.4199, 7.4194, 7.4189, 7.4187, 7.4219, 7.4216, 7.4225, 7.4224, 7.4232, 7.423, 7.4238, 7.4236, 7.4242, 7.4237, 7.4253, 7.4279, 7.4274, 7.4272, 7.4267, 7.4262, 7.4246, 7.4248, 7.4243, 7.4239, 7.4247, 7.4244, 7.424, 7.4248, 7.4245, 7.424, 7.4251, 7.4248, 7.4269, 7.4267, 7.4275, 7.427, 7.4278, 7.4286, 7.4281, 7.4289, 7.4284, 7.428, 7.4277, 7.4272, 7.4267, 7.4265, 7.4273, 7.427, 7.4266, 7.4262, 7.4258, 7.4253, 7.425, 7.4292, 7.4287, 7.4285, 7.4282, 7.4277, 7.4272, 7.428, 7.4276, 7.4283, 7.4278, 7.4277, 7.4272, 7.4304, 7.43, 7.4297, 7.4295, 7.4291, 7.4299, 7.4296, 7.4299, 7.4295, 7.4303, 7.4311, 7.4308, 7.4308, 7.4308, 7.4303, 7.4311, 7.4307, 7.4315, 7.431, 7.4305, 7.4313, 7.431, 7.4296, 7.4303, 7.431, 7.4306, 7.4304, 7.43, 7.4296, 7.4293, 7.4289, 7.4285, 7.4281, 7.4277, 7.4303, 7.4312, 7.4308, 7.4304, 7.43, 7.43, 7.4296, 7.4304, 7.4334, 7.4329, 7.4324, 7.432, 7.4317, 7.4313, 7.4322, 7.4329, 7.4326, 7.4334, 7.4329, 7.4338, 7.4335, 7.433, 7.4337, 7.4332, 7.4339, 7.4337, 7.4332, 7.434, 7.4347, 7.4344, 7.434, 7.4336, 7.4331, 7.433, 7.4327, 7.4323, 7.4322, 7.4317, 7.4316, 7.4312, 7.4297, 7.4294, 7.4289, 7.4287, 7.4283, 7.428, 7.4276, 7.4276, 7.4272, 7.4269, 7.4264, 7.4272, 7.4274, 7.4272, 7.4257, 7.4253, 7.425, 7.4259, 7.4255, 7.4252, 7.4249, 7.4244, 7.423, 7.4245, 7.4242, 7.4238, 7.4246, 7.4232, 7.424, 7.4235, 7.4232, 7.4229, 7.4226, 7.4226, 7.4224, 7.422, 7.4217, 7.4213, 7.4208, 7.4217, 7.4214, 7.4209, 7.4206, 7.4206, 7.4203, 7.4199, 7.4196, 7.4191, 7.422, 7.4218, 7.4213, 7.4211, 7.4207, 7.4202, 7.4198, 7.4256, 7.4265, 7.4261, 7.4269, 7.4267, 7.4263, 7.426, 7.4257, 7.4253, 7.4261, 7.4257, 7.4253, 7.4249, 7.4245, 7.4243, 7.4243, 7.4239, 7.4235, 7.423, 7.4229, 7.4224, 7.4221, 7.4217, 7.4213, 7.4221, 7.4229, 7.4226, 7.4224, 7.422, 7.4216, 7.4212, 7.4208, 7.4236, 7.4232, 7.4228, 7.4236, 7.4237, 7.4233, 7.4228, 7.4224, 7.4221, 7.4227, 7.4223, 7.4225, 7.4222, 7.4219, 7.4216, 7.4212, 7.4219, 7.4226, 7.4221, 7.4229, 7.4236, 7.4231, 7.4238, 7.4235, 7.4242, 7.4238, 7.4236, 7.4244, 7.424, 7.4238, 7.4236, 7.4245, 7.4244, 7.4243, 7.4239, 7.4239, 7.4235, 7.4237, 7.4234, 7.4264, 7.4261, 7.4257, 7.4253, 7.4249, 7.4246, 7.4242, 7.425, 7.4248, 7.4257, 7.4266, 7.4251, 7.4249, 7.4245, 7.4243, 7.4251, 7.4258, 7.4253, 7.4258, 7.4267, 7.4252, 7.4248, 7.4245, 7.4241, 7.4237, 7.4234, 7.4242, 7.4238, 7.4234, 7.423, 7.4226, 7.4224, 7.422, 7.4216, 7.4213, 7.422, 7.4216, 7.4224, 7.4223, 7.422, 7.4218, 7.4214, 7.4211, 7.4219, 7.4228, 7.4225, 7.4222, 7.4223, 7.4211, 7.4218, 7.4214, 7.4211, 7.421, 7.4229, 7.4228, 7.4214, 7.4212, 7.4219, 7.4217, 7.4212, 7.4209, 7.4204, 7.4225, 7.4222, 7.4219, 7.4217, 7.4225, 7.4234, 7.4244, 7.425, 7.4259, 7.4256, 7.4254, 7.425, 7.4247, 7.4245, 7.4241, 7.425, 7.4246, 7.4243, 7.4239, 7.4235, 7.4242, 7.425, 7.4248, 7.4244, 7.424, 7.4237, 7.4233, 7.423, 7.4226, 7.4223, 7.4209, 7.4208, 7.4206, 7.4203, 7.4211, 7.4208, 7.4204, 7.4201, 7.4197, 7.4194, 7.4194, 7.419, 7.4186, 7.4182, 7.4178, 7.4174, 7.417, 7.4166, 7.4162, 7.4169, 7.4165, 7.4178, 7.4174, 7.4169, 7.4165, 7.4178, 7.4176, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4153, 7.4161, 7.4192, 7.4188, 7.4186, 7.4182, 7.4179, 7.4175, 7.4182, 7.4178, 7.4185, 7.4193, 7.4189, 7.4186, 7.4182, 7.4184, 7.418, 7.4177, 7.4173, 7.4187, 7.4183, 7.4179, 7.4186, 7.4182, 7.4178, 7.4175, 7.4171, 7.4172, 7.4167, 7.4164, 7.4162, 7.4158, 7.4157, 7.4153, 7.4151, 7.4148, 7.4134, 7.4141, 7.4137, 7.4134, 7.4145, 7.4141, 7.415, 7.4146, 7.4142, 7.4147, 7.4145, 7.414, 7.4136, 7.4132, 7.413, 7.4138, 7.4135, 7.4151, 7.4147, 7.4154, 7.4161, 7.4157, 7.4153, 7.415, 7.4146, 7.4155, 7.4161, 7.4161, 7.4159, 7.4159, 7.4159, 7.4155, 7.4153, 7.4149, 7.4146, 7.4142, 7.4139, 7.4193, 7.419, 7.4185, 7.4187, 7.4184, 7.4184, 7.4192, 7.4199, 7.4206, 7.4213, 7.4211, 7.4209, 7.4207, 7.4214, 7.421, 7.4206, 7.4202, 7.4198, 7.4207, 7.4225, 7.4234, 7.4287, 7.4283, 7.4291, 7.4299, 7.4297, 7.4293, 7.429, 7.4297, 7.4293, 7.4289, 7.4296, 7.4292, 7.4299, 7.4295, 7.4291, 7.4299, 7.4296, 7.4294, 7.429, 7.4286, 7.4282, 7.428, 7.4276, 7.4272, 7.4269, 7.4265, 7.4261, 7.4257, 7.4255, 7.4262, 7.4257, 7.4253, 7.4249, 7.4276, 7.4272, 7.427, 7.4268, 7.4264, 7.4262, 7.4272, 7.4279, 7.4275, 7.4281, 7.4289, 7.4285, 7.428, 7.4277, 7.4284, 7.428, 7.4287, 7.4283, 7.4281, 7.4278, 7.4285, 7.4282, 7.428, 7.4287, 7.4283, 7.4283, 7.4279, 7.4275, 7.4271, 7.4267, 7.4275, 7.4282, 7.4285, 7.4282, 7.428, 7.4276, 7.4272, 7.427, 7.4269, 7.4276, 7.4273, 7.4269, 7.4265, 7.4263, 7.4259, 7.4268, 7.4266, 7.4261, 7.4259, 7.4255, 7.4253, 7.426, 7.4256, 7.4253, 7.4249, 7.4245, 7.4242, 7.4238, 7.4234, 7.423, 7.4227, 7.4224, 7.422, 7.4216, 7.4213, 7.4237, 7.4235, 7.4232, 7.4228, 7.4224, 7.4231, 7.4229, 7.4225, 7.4226, 7.4223, 7.4219, 7.4215, 7.4217, 7.4213, 7.422, 7.4216, 7.4223, 7.4219, 7.4215, 7.4222, 7.4227, 7.4223, 7.422, 7.4216, 7.4202, 7.4199, 7.4206, 7.4202, 7.4199, 7.4196, 7.4214, 7.421, 7.4206, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4188, 7.4186, 7.4194, 7.419, 7.4187, 7.4183, 7.418, 7.4187, 7.4193, 7.4195, 7.4191, 7.4191, 7.419, 7.4186, 7.4172, 7.4169, 7.4167, 7.4164, 7.416, 7.4156, 7.4183, 7.419, 7.4186, 7.4182, 7.4195, 7.4193, 7.4189, 7.4196, 7.4214, 7.4212, 7.421, 7.4229, 7.4237, 7.4236, 7.4232, 7.4229, 7.4227, 7.4224, 7.4231, 7.4239, 7.4235, 7.4243, 7.423, 7.4216, 7.4213, 7.421, 7.4208, 7.4225, 7.4225, 7.4211, 7.4217, 7.4213, 7.4211, 7.4208, 7.4205, 7.4195, 7.4192, 7.4201, 7.4208, 7.4204, 7.42, 7.4208, 7.4204, 7.4203, 7.4199, 7.4195, 7.4191, 7.4187, 7.4174, 7.4172, 7.417, 7.4177, 7.4173, 7.4171, 7.4178, 7.4185, 7.4181, 7.4177, 7.4174, 7.4171, 7.4169, 7.4173, 7.4169, 7.4176, 7.4174, 7.4171, 7.4167, 7.4167, 7.4167, 7.4163, 7.4159, 7.4156, 7.4152, 7.4148, 7.4155, 7.4153, 7.4149, 7.4166, 7.4163, 7.4161, 7.4158, 7.4165, 7.4162, 7.4163, 7.416, 7.4173, 7.4222, 7.4218, 7.4214, 7.422, 7.4228, 7.4226, 7.4222, 7.424, 7.4237, 7.4235, 7.4243, 7.425, 7.4246, 7.4242, 7.4239, 7.4256, 7.4252, 7.4239, 7.4235, 7.4231, 7.4229, 7.4225, 7.4221, 7.4227, 7.4223, 7.422, 7.4216, 7.4212, 7.4199, 7.4195, 7.4203, 7.4199, 7.4197, 7.4203, 7.4201, 7.4197, 7.4204, 7.421, 7.4207, 7.4203, 7.4199, 7.4195, 7.4191, 7.4203, 7.4199, 7.4195, 7.4202, 7.4198, 7.4207, 7.4203, 7.42, 7.4198, 7.4201, 7.4208, 7.4205, 7.4202, 7.4189, 7.4196, 7.4193, 7.4198, 7.4195, 7.4196, 7.4192, 7.4188, 7.4184, 7.418, 7.4176, 7.4183, 7.4189, 7.4185, 7.4181, 7.4177, 7.4183, 7.418, 7.4176, 7.4173, 7.4171, 7.4167, 7.4165, 7.4172, 7.4168, 7.4165, 7.4228, 7.4224, 7.4231, 7.4227, 7.4223, 7.422, 7.4216, 7.4214, 7.421, 7.4207, 7.4208, 7.4214, 7.4221, 7.4219, 7.4225, 7.4222, 7.4218, 7.4216, 7.4212, 7.4228, 7.4225, 7.4222, 7.4228, 7.4224, 7.422, 7.4231, 7.4227, 7.4234, 7.424, 7.4247, 7.4254, 7.4261, 7.4261, 7.4258, 7.4265, 7.4263, 7.4259, 7.4266, 7.4273, 7.4269, 7.4265, 7.4263, 7.426, 7.4256, 7.4253, 7.4243, 7.4241, 7.424, 7.4237, 7.4235, 7.4231, 7.4233, 7.4229, 7.4236, 7.4242, 7.4249, 7.4245, 7.4241, 7.4237, 7.4233, 7.4229, 7.4235, 7.4231, 7.4229, 7.4247, 7.4251, 7.4258, 7.4258, 7.4271, 7.4267, 7.4263, 7.431, 7.4306, 7.4302, 7.4298, 7.4295, 7.4282, 7.4278, 7.4276, 7.4283, 7.4279, 7.4285, 7.4281, 7.4279, 7.4275, 7.4271, 7.4284, 7.4319, 7.4326, 7.4322, 7.4318, 7.4314, 7.431, 7.4306, 7.4302, 7.43, 7.4308, 7.4304, 7.4301, 7.4297, 7.4293, 7.4289, 7.4291, 7.4317, 7.4314, 7.431, 7.4307, 7.4303, 7.43, 7.4287, 7.4294, 7.429, 7.4296, 7.4292, 7.4299, 7.4296, 7.4292, 7.4296, 7.4292, 7.4288, 7.4284, 7.428, 7.4287, 7.4294, 7.429, 7.4286, 7.4282, 7.4278, 7.4275, 7.4271, 7.4273, 7.4272, 7.4279, 7.4276, 7.4275, 7.4282, 7.4289, 7.4285, 7.4291, 7.429, 7.4288, 7.4285, 7.4292, 7.4299, 7.4295, 7.4291, 7.4298, 7.4296, 7.4295, 7.4293, 7.4289, 7.4296, 7.4294, 7.429, 7.429, 7.4278, 7.4285, 7.4281, 7.4268, 7.4268, 7.4278, 7.4265, 7.4261, 7.4268, 7.4266, 7.4263, 7.4259, 7.4255, 7.4252, 7.4248, 7.4245, 7.4241, 7.4238, 7.4244, 7.4248, 7.4254, 7.425, 7.4248, 7.4254, 7.4251, 7.4248, 7.4255, 7.4264, 7.4266, 7.4263, 7.4261, 7.4289, 7.4285, 7.4282, 7.4286, 7.4292, 7.4289, 7.4285, 7.4291, 7.4287, 7.4283, 7.4279, 7.4275, 7.4273, 7.4286, 7.4282, 7.428, 7.4277, 7.4274, 7.4274, 7.428, 7.4268, 7.4265, 7.4262, 7.427, 7.4266, 7.4262, 7.4268, 7.4266, 7.4272, 7.4268, 7.4264, 7.4271, 7.4267, 7.4263, 7.4262, 7.4259, 7.4257, 7.4255, 7.4252, 7.4249, 7.4275, 7.4282, 7.428, 7.4287, 7.4284, 7.428, 7.4276, 7.4273, 7.428, 7.4278, 7.4274, 7.4271, 7.4278, 7.4276, 7.4282, 7.4278, 7.4274, 7.4282, 7.4278, 7.4307, 7.4314, 7.431, 7.4316, 7.4312, 7.4309, 7.4334, 7.434, 7.4347, 7.4354, 7.4351, 7.4358, 7.4354, 7.4352, 7.4358, 7.4364, 7.436, 7.4358, 7.4369, 7.4375, 7.4371, 7.4377, 7.4374, 7.4371, 7.4377, 7.4374, 7.437, 7.4367, 7.4363, 7.4369, 7.4375, 7.4381, 7.438, 7.4386, 7.4382, 7.4388, 7.4384, 7.439, 7.4396, 7.4397, 7.4394, 7.4393, 7.4389, 7.4387, 7.4384, 7.4383, 7.4389, 7.4395, 7.4392, 7.4389, 7.4385, 7.4383, 7.438, 7.4378, 7.4377, 7.4374, 7.437, 7.4367, 7.4365, 7.4371, 7.4368, 7.4376, 7.4382, 7.4379, 7.4377, 7.4375, 7.4382, 7.4388, 7.4386, 7.4382, 7.4379, 7.4377, 7.4374, 7.437, 7.4366, 7.4362, 7.4368, 7.4366, 7.4405, 7.4411, 7.4418, 7.4414, 7.441, 7.4409, 7.4407, 7.441, 7.4407, 7.4404, 7.44, 7.4397, 7.4393, 7.4389, 7.4385, 7.4392, 7.4388, 7.4384, 7.442, 7.4417, 7.4413, 7.441, 7.4398, 7.4397, 7.4396, 7.4392, 7.4399, 7.4398, 7.4405, 7.4401, 7.4399, 7.4396, 7.4393, 7.4389, 7.4396, 7.4403, 7.4401, 7.4426, 7.4422, 7.4419, 7.4416, 7.4413, 7.4419, 7.4415, 7.4414, 7.4411, 7.4399, 7.4395, 7.4392, 7.4392, 7.439, 7.4396, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4375, 7.4372, 7.4368, 7.4364, 7.436, 7.4358, 7.4356, 7.4357, 7.4367, 7.4363, 7.436, 7.4356, 7.4362, 7.4358, 7.4346, 7.4358, 7.4354, 7.435, 7.4348, 7.4345, 7.4342, 7.4348, 7.4354, 7.4351, 7.435, 7.4346, 7.4343, 7.4341, 7.4337, 7.4333, 7.4331, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4339, 7.4345, 7.4342, 7.4338, 7.4334, 7.4341, 7.4337, 7.4343, 7.4339, 7.4336, 7.4337, 7.4335, 7.4341, 7.4337, 7.434, 7.4338, 7.4346, 7.4344, 7.4341, 7.434, 7.4347, 7.4354, 7.4351, 7.4347, 7.4344, 7.4341, 7.4347, 7.4346, 7.4343, 7.435, 7.435, 7.4349, 7.4345, 7.4351, 7.4349, 7.4347, 7.4343, 7.4341, 7.4338, 7.4335, 7.4332, 7.4329, 7.4328, 7.4332, 7.4339, 7.4338, 7.4345, 7.4343, 7.4341, 7.4339, 7.4336, 7.4335, 7.4341, 7.4338, 7.4336, 7.4335, 7.4342, 7.4339, 7.4335, 7.4333, 7.433, 7.4327, 7.4323, 7.433, 7.4336, 7.4342, 7.434, 7.4338, 7.4335, 7.4333, 7.4339, 7.4346, 7.4352, 7.4348, 7.4346, 7.4351, 7.4357, 7.4363, 7.437, 7.4367, 7.4363, 7.4362, 7.4374, 7.438, 7.4378, 7.4366, 7.4364, 7.4361, 7.4359, 7.4355, 7.4352, 7.4349, 7.4355, 7.4351, 7.4357, 7.4363, 7.4369, 7.4375, 7.4372, 7.4369, 7.4365, 7.4361, 7.4367, 7.4365, 7.4363, 7.4383, 7.4379, 7.4375, 7.4373, 7.4379, 7.4376, 7.4372, 7.4369, 7.4367, 7.4374, 7.4362, 7.4369, 7.4366, 7.4365, 7.4362, 7.4369, 7.4366, 7.4354, 7.436, 7.4357, 7.4362, 7.4368, 7.4375, 7.4373, 7.4371, 7.4367, 7.4363, 7.4359, 7.4355, 7.4388, 7.4386, 7.4384, 7.439, 7.4386, 7.4401, 7.4408, 7.4414, 7.442, 7.4418, 7.4419, 7.4415, 7.4411, 7.44, 7.4398, 7.4399, 7.4395, 7.4392, 7.4398, 7.4394, 7.4385, 7.4381, 7.4377, 7.4374, 7.438, 7.4387, 7.4394, 7.439, 7.4387, 7.4385, 7.4383, 7.438, 7.4369, 7.4375, 7.4372, 7.4368, 7.4365, 7.4362, 7.4368, 7.4365, 7.4364, 7.437, 7.4376, 7.4373, 7.437, 7.4368, 7.4364, 7.4361, 7.4358, 7.4386, 7.4383, 7.4379, 7.4385, 7.4381, 7.4377, 7.4383, 7.4383, 7.4379, 7.4385, 7.4382, 7.4378, 7.4375, 7.4378, 7.4367, 7.4364, 7.4361, 7.4359, 7.4365, 7.4371, 7.4368, 7.4365, 7.4363, 7.4361, 7.4358, 7.4354, 7.436, 7.4357, 7.4354, 7.4352, 7.4349, 7.4357, 7.4354, 7.4351, 7.4348, 7.4346, 7.4344, 7.435, 7.4346, 7.4345, 7.4352, 7.4349, 7.4347, 7.4363, 7.4362, 7.4412, 7.4418, 7.4416, 7.4413, 7.4419, 7.4425, 7.4431, 7.4427, 7.4443, 7.4439, 7.4428, 7.4425, 7.4431, 7.4436, 7.4432, 7.4429, 7.4425, 7.4422, 7.4418, 7.4424, 7.442, 7.4423, 7.4419, 7.4416, 7.4413, 7.4409, 7.4398, 7.4395, 7.4391, 7.4389, 7.4395, 7.4391, 7.439, 7.4386, 7.4383, 7.4381, 7.4379, 7.4376, 7.4372, 7.4369, 7.4375, 7.4381, 7.4387, 7.4403, 7.4418, 7.4417, 7.4414, 7.4411, 7.4408, 7.4406, 7.4403, 7.44, 7.4396, 7.4405, 7.4403, 7.44, 7.4398, 7.4395, 7.4392, 7.4398, 7.4395, 7.4393, 7.439, 7.4387, 7.4394, 7.439, 7.4387, 7.4393, 7.4399, 7.4405, 7.4401, 7.4399, 7.4395, 7.4391, 7.4393, 7.4407, 7.4403, 7.4402, 7.44, 7.4397, 7.4396, 7.4401, 7.44, 7.4406, 7.4402, 7.4399, 7.4399, 7.4409, 7.4405, 7.4401, 7.4399, 7.4395, 7.4426, 7.4422, 7.4424, 7.4423, 7.4429, 7.4426, 7.4431, 7.4435, 7.4433, 7.4429, 7.4426, 7.4422, 7.4418, 7.4415, 7.4412, 7.441, 7.4415, 7.4412, 7.441, 7.4409, 7.4408, 7.4414, 7.442, 7.4416, 7.4413, 7.4409, 7.4407, 7.4404, 7.4401, 7.4398, 7.4395, 7.4392, 7.4407, 7.4406, 7.4412, 7.4418, 7.4416, 7.4414, 7.4411, 7.4416, 7.4413, 7.441, 7.4407, 7.4404, 7.4401, 7.44, 7.4397, 7.4394, 7.44, 7.4397, 7.4397, 7.4405, 7.4402, 7.4399, 7.4405, 7.4402, 7.44, 7.4406, 7.4403, 7.44, 7.4405, 7.4402, 7.4408, 7.4414, 7.4413, 7.441, 7.4408, 7.4414, 7.4411, 7.4416, 7.4412, 7.4409, 7.4406, 7.4404, 7.441, 7.441, 7.4416, 7.4452, 7.4448, 7.4454, 7.4452, 7.4449, 7.4446, 7.4465, 7.4462, 7.4459, 7.4465, 7.4471, 7.4468, 7.4465, 7.4462, 7.446, 7.4457, 7.4463, 7.447, 7.4474, 7.4473, 7.447, 7.4466, 7.4462, 7.4459, 7.4457, 7.4453, 7.4453, 7.445, 7.4448, 7.4454, 7.4451, 7.4448, 7.4444, 7.4441, 7.4439, 7.4445, 7.4442, 7.4441, 7.4438, 7.4444, 7.4442, 7.444, 7.4437, 7.4444, 7.4443, 7.4441, 7.4457, 7.4457, 7.4463, 7.4469, 7.4471, 7.4471, 7.447, 7.447, 7.4469, 7.4468, 7.4465, 7.4462, 7.4468, 7.4467, 7.4464, 7.4463, 7.4469, 7.4476, 7.4473, 7.4471, 7.4469, 7.4467, 7.4466, 7.4465, 7.4464, 7.4461, 7.4461, 7.4468, 7.4468, 7.4468, 7.4475, 7.4475, 7.4481, 7.4478, 7.4478, 7.4475, 7.4475, 7.4476, 7.4476, 7.4473, 7.447, 7.4467, 7.4466, 7.4463, 7.4461, 7.4462, 7.4478, 7.4477, 7.4474, 7.4471, 7.4478, 7.4476, 7.4483, 7.4472, 7.4472, 7.4469, 7.4475, 7.4472, 7.4478, 7.4475], '192.168.122.112': [5.4374, 5.6017, 5.5869, 5.5019, 5.5944, 5.6154, 5.7422, 5.7489, 6.3936, 6.3733, 6.3329, 6.3161, 6.3314, 6.2822, 6.2252, 6.2252, 6.237, 6.2496, 6.4751, 6.4505, 6.6715, 6.6209, 6.5924, 6.5475, 6.7619, 6.761, 6.717, 6.8626, 6.83, 6.7829, 6.7566, 6.891, 6.8432, 6.8105, 6.7956, 6.9084, 6.8882, 6.8519, 6.8153, 6.7788, 7.1727, 7.4555, 7.4147, 7.3723, 7.3271, 7.4084, 7.482, 7.4378, 7.3971, 7.3547, 7.3158, 7.2956, 7.2586, 7.2379, 7.3075, 7.2785, 7.3428, 7.4198, 7.4766, 7.4463, 7.4149, 7.3906, 7.3612, 7.4171, 7.3868, 7.3541, 7.3246, 7.2286, 7.2002, 7.1848, 7.169, 7.2183, 7.1931, 7.1804, 7.0927, 7.0706, 7.3733, 7.3644, 7.3458, 7.3866, 7.3607, 7.3378, 7.3149, 7.2914, 7.3396, 7.3199, 7.2985, 7.3379, 7.3217, 7.3615, 7.3411, 7.3315, 7.314, 7.2936, 7.2283, 7.2083, 7.189, 7.1706, 7.157, 7.1395, 7.1212, 7.1602, 7.1437, 7.1314, 7.1183, 7.1527, 7.1882, 7.1784, 7.1622, 7.1491, 7.1806, 7.1693, 7.1549, 7.1424, 7.1309, 7.1277, 7.1132, 7.0982, 7.0849, 7.0761, 7.0657, 7.0588, 7.0495, 7.0424, 6.9899, 6.9785, 6.9694, 6.9579, 6.9475, 6.9425, 6.975, 6.99, 6.9825, 6.9699, 7.0021, 6.991, 6.9816, 6.9705, 6.9618, 6.9886, 6.9799, 6.9684, 6.9654, 6.9562, 6.984, 6.9782, 6.9758, 6.9673, 6.9563, 6.9573, 6.9515, 6.9547, 6.9463, 7.0111, 7.033, 7.0239, 7.0819, 7.0705, 7.0593, 7.0824, 7.0745, 7.0636, 7.0535, 7.0468, 7.0378, 7.027, 7.0494, 7.0728, 7.0636, 7.0874, 7.0801, 7.1035, 7.1255, 7.1154, 7.1052, 7.1266, 7.1209, 7.145, 7.1356, 7.1286, 7.1195, 7.1103, 7.1014, 7.0958, 7.0859, 7.0796, 7.073, 7.0661, 7.0892, 7.0822, 7.1041, 7.0981, 7.0966, 7.0872, 7.0833, 7.1043, 7.2041, 7.1965, 7.1868, 7.1785, 7.1707, 7.1608, 7.1563, 7.1816, 7.1744, 7.1686, 7.1605, 7.1536, 7.1465, 7.141, 7.1583, 7.176, 7.1719, 7.166, 7.1603, 7.1515, 7.1434, 7.1362, 7.1428, 7.1597, 7.2515, 7.3986, 7.3893, 7.3832, 7.4478, 7.4632, 7.454, 7.4464, 7.4377, 7.4314, 7.4262, 7.4444, 7.4359, 7.4273, 7.4189, 7.4139, 7.428, 7.4192, 7.4119, 7.4288, 7.4232, 7.4175, 7.41, 7.4026, 7.3968, 7.3908, 7.3842, 7.3975, 7.4097, 7.4034, 7.4576, 7.4716, 7.4857, 7.4996, 7.5967, 7.6107, 7.6022, 7.6155, 7.6092, 7.6008, 7.613, 7.6059, 7.5992, 7.5723, 7.5644, 7.5575, 7.5722, 7.5655, 7.5798, 7.5726, 7.5847, 7.5985, 7.6123, 7.6072, 7.6013, 7.5929, 7.5846, 7.5784, 7.5703, 7.5626, 7.5742, 7.5855, 7.5798, 7.5724, 7.6023, 7.5995, 7.5935, 7.5879, 7.5995, 7.5923, 7.5849, 7.5962, 7.5912, 7.5848, 7.577, 7.5714, 7.5654, 7.5836, 7.5774, 7.5703, 7.5656, 7.5604, 7.5531, 7.5492, 7.544, 7.5544, 7.5649, 7.5593, 7.5692, 7.5787, 7.5718, 7.565, 7.5582, 7.5528, 7.5457, 7.5388, 7.5521, 7.5335, 7.5441, 7.5373, 7.5348, 7.5298, 7.5243, 7.5186, 7.4971, 7.4904, 7.484, 7.4935, 7.4873, 7.4811, 7.4759, 7.471, 7.4816, 7.4756, 7.47, 7.4664, 7.4609, 7.4563, 7.4512, 7.4447, 7.4403, 7.4359, 7.4302, 7.4271, 7.4212, 7.4307, 7.4256, 7.4212, 7.4175, 7.4136, 7.4078, 7.403, 7.3989, 7.4786, 7.4882, 7.4829, 7.4926, 7.5129, 7.5066, 7.5004, 7.494, 7.4893, 7.4847, 7.4804, 7.4804, 7.4892, 7.498, 7.4921, 7.4864, 7.4804, 7.4802, 7.4896, 7.4983, 7.4932, 7.4898, 7.4989, 7.4934, 7.492, 7.4881, 7.4855, 7.5247, 7.5206, 7.5028, 7.5119, 7.5242, 7.52, 7.5155, 7.5111, 7.493, 7.4887, 7.4844, 7.48, 7.4767, 7.4715, 7.468, 7.4637, 7.4471, 7.4646, 7.4726, 7.4822, 7.4768, 7.4714, 7.48, 7.4745, 7.4707, 7.4669, 7.4748, 7.4718, 7.4678, 7.4627, 7.4579, 7.4526, 7.4483, 7.4431, 7.4519, 7.4469, 7.4437, 7.452, 7.4529, 7.4482, 7.4446, 7.4425, 7.4465, 7.4427, 7.4386, 7.4465, 7.4421, 7.4392, 7.4345, 7.4302, 7.4267, 7.4239, 7.4212, 7.4169, 7.4259, 7.4345, 7.4391, 7.4475, 7.4426, 7.4281, 7.4253, 7.4224, 7.4179, 7.4376, 7.4331, 7.4407, 7.4365, 7.4734, 7.4689, 7.4655, 7.4634, 7.4597, 7.4558, 7.4626, 7.4592, 7.4473, 7.4426, 7.4389, 7.4358, 7.4316, 7.427, 7.4223, 7.4189, 7.4258, 7.4212, 7.4396, 7.436, 7.4541, 7.4529, 7.4978, 7.4986, 7.4949, 7.4908, 7.4874, 7.4838, 7.4806, 7.4667, 7.4739, 7.4707, 7.4719, 7.4794, 7.4755, 7.4724, 7.469, 7.4574, 7.4547, 7.451, 7.4467, 7.4423, 7.4487, 7.4445, 7.4424, 7.4412, 7.4378, 7.4338, 7.4295, 7.4255, 7.4219, 7.4342, 7.4412, 7.4642, 7.4731, 7.4794, 7.4755, 7.4712, 7.4679, 7.4748, 7.4879, 7.4843, 7.4808, 7.4765, 7.4737, 7.4701, 7.4676, 7.4738, 7.4708, 7.4668, 7.4744, 7.4708, 7.4715, 7.4684, 7.4645, 7.4609, 7.4676, 7.4685, 7.4758, 7.473, 7.4703, 7.483, 7.4878, 7.4949, 7.493, 7.4897, 7.4857, 7.4834, 7.4796, 7.4672, 7.4832, 7.4791, 7.4757, 7.4839, 7.4825, 7.4785, 7.4761, 7.4728, 7.4797, 7.4764, 7.473, 7.4693, 7.4654, 7.4715, 7.4683, 7.4643, 7.463, 7.4592, 7.4557, 7.461, 7.4573, 7.4547, 7.463, 7.4595, 7.4576, 7.454, 7.4503, 7.4558, 7.4531, 7.4502, 7.4466, 7.4464, 7.4429, 7.4399, 7.446, 7.4521, 7.4483, 7.4537, 7.4506, 7.4473, 7.4435, 7.4406, 7.4291, 7.4352, 7.441, 7.4383, 7.4347, 7.4325, 7.4298, 7.4307, 7.437, 7.4335, 7.438, 7.4352, 7.4323, 7.4291, 7.4353, 7.4411, 7.4392, 7.4592, 7.4741, 7.4625, 7.4769, 7.4735, 7.4705, 7.4769, 7.4737, 7.4706, 7.5045, 7.5109, 7.5301, 7.5273, 7.5251, 7.5232, 7.5196, 7.51, 7.5169, 7.5138, 7.5109, 7.5085, 7.5067, 7.5037, 7.5004, 7.4983, 7.4962, 7.4932, 7.49, 7.4864, 7.4929, 7.4902, 7.5047, 7.5021, 7.5002, 7.4972, 7.4961, 7.4927, 7.498, 7.5036, 7.5007, 7.4974, 7.4957, 7.4928, 7.49, 7.4867, 7.4918, 7.5202, 7.5172, 7.5141, 7.5148, 7.5248, 7.5215, 7.5268, 7.5232, 7.5278, 7.5244, 7.5213, 7.5179, 7.5145, 7.5113, 7.516, 7.5127, 7.5342, 7.534, 7.54, 7.5378, 7.5345, 7.5322, 7.5311, 7.5287, 7.5288, 7.5261, 7.5336, 7.5312, 7.529, 7.5263, 7.5321, 7.5288, 7.5269, 7.5235, 7.5206, 7.5176, 7.5145, 7.5121, 7.5166, 7.5213, 7.5218, 7.5269, 7.5237, 7.5288, 7.5259, 7.523, 7.5202, 7.5172, 7.5217, 7.5186, 7.5231, 7.5259, 7.5307, 7.5279, 7.5262, 7.5233, 7.5201, 7.5184, 7.5155, 7.5125, 7.5098, 7.507, 7.5054, 7.5106, 7.5076, 7.5052, 7.5096, 7.4997, 7.4972, 7.4949, 7.4919, 7.4901, 7.4871, 7.4854, 7.4829, 7.4918, 7.4966, 7.4935, 7.4908, 7.4878, 7.4853, 7.4833, 7.4807, 7.478, 7.4754, 7.4733, 7.4703, 7.4673, 7.465, 7.4634, 7.4606, 7.4576, 7.4561, 7.4567, 7.4648, 7.4718, 7.4765, 7.4814, 7.4788, 7.4762, 7.4811, 7.4796, 7.4769, 7.4752, 7.4729, 7.5075, 7.5191, 7.5263, 7.5251, 7.5221, 7.5193, 7.5163, 7.5149, 7.5124, 7.5034, 7.5006, 7.4978, 7.495, 7.4928, 7.4899, 7.4869, 7.4845, 7.4893, 7.4937, 7.4946, 7.4917, 7.4964, 7.494, 7.4914, 7.4899, 7.487, 7.485, 7.4821, 7.4794, 7.4774, 7.4756, 7.4794, 7.4768, 7.4742, 7.4745, 7.4718, 7.469, 7.4667, 7.4641, 7.4624, 7.4601, 7.4643, 7.475, 7.4724, 7.4826, 7.4801, 7.4775, 7.475, 7.4737, 7.4783, 7.4756, 7.4801, 7.4776, 7.4755, 7.473, 7.4707, 7.4818, 7.4927, 7.5235, 7.5221, 7.5212, 7.5191, 7.5168, 7.5208, 7.5249, 7.5241, 7.5223, 7.5264, 7.5249, 7.5233, 7.5208, 7.5183, 7.516, 7.5137, 7.5115, 7.5087, 7.5068, 7.5045, 7.5026, 7.501, 7.4989, 7.4978, 7.4951, 7.4928, 7.4906, 7.4906, 7.4914, 7.4891, 7.4929, 7.4969, 7.5007, 7.5045, 7.5019, 7.4998, 7.4988, 7.4962, 7.4939, 7.4915, 7.4964, 7.4944, 7.4919, 7.4964, 7.4999, 7.4972, 7.4946, 7.4928, 7.4906, 7.4893, 7.4935, 7.4913, 7.4831, 7.4806, 7.4783, 7.4762, 7.4742, 7.4716, 7.469, 7.4672, 7.4649, 7.4631, 7.4606, 7.4603, 7.4589, 7.4567, 7.4625, 7.4602, 7.4578, 7.456, 7.4543, 7.4467, 7.4447, 7.4423, 7.4463, 7.4454, 7.4501, 7.4427, 7.4403, 7.4387, 7.4369, 7.4358, 7.4334, 7.4311, 7.4236, 7.4225, 7.4208, 7.4196, 7.4238, 7.4224, 7.4202, 7.418, 7.4157, 7.4134, 7.4174, 7.4154, 7.4136, 7.4117, 7.4106, 7.4087, 7.4076, 7.4052, 7.403, 7.4007, 7.3989, 7.3973, 7.4011, 7.3998, 7.3974, 7.4013, 7.3995, 7.3978, 7.3957, 7.3885, 7.3865, 7.3843, 7.383, 7.3807, 7.3791, 7.377, 7.3755, 7.3792, 7.378, 7.3761, 7.3777, 7.3757, 7.3736, 7.3747, 7.3781, 7.3769, 7.3748, 7.3726, 7.3707, 7.3697, 7.3676, 7.3658, 7.3638, 7.3772, 7.392, 7.39, 7.3934, 7.3913, 7.3955, 7.3935, 7.3931, 7.3871, 7.3909, 7.3888, 7.3868, 7.3847, 7.3838, 7.3818, 7.3799, 7.384, 7.3826, 7.3812, 7.3802, 7.39, 7.388, 7.3862, 7.384, 7.3822, 7.3805, 7.3795, 7.3773, 7.3754, 7.3905, 7.389, 7.3872, 7.3855, 7.3951, 7.396, 7.3906, 7.4011, 7.4104, 7.4114, 7.4096, 7.4089, 7.4074, 7.4117, 7.4153, 7.4133, 7.4079, 7.4149, 7.4186, 7.4171, 7.4217, 7.4203, 7.4244, 7.4278, 7.4257, 7.424, 7.4221, 7.42, 7.4189, 7.4171, 7.4339, 7.4319, 7.435, 7.4329, 7.4317, 7.4297, 7.4283, 7.4316, 7.4349, 7.4332, 7.4316, 7.4296, 7.4276, 7.4255, 7.4237, 7.422, 7.4211, 7.419, 7.417, 7.4153, 7.4138, 7.4119, 7.4153, 7.4133, 7.4114, 7.4096, 7.4079, 7.4111, 7.4094, 7.4032, 7.3964, 7.3952, 7.3933, 7.3912, 7.3895, 7.3881, 7.3865, 7.3898, 7.3931, 7.3917, 7.3897, 7.3879, 7.3859, 7.3894, 7.3875, 7.3861, 7.3797, 7.3779, 7.3814, 7.3795, 7.3776, 7.3756, 7.3742, 7.3795, 7.3777, 7.376, 7.379, 7.382, 7.38, 7.378, 7.376, 7.3747, 7.3729, 7.3667, 7.369, 7.3763, 7.3745, 7.3726, 7.3716, 7.3746, 7.3729, 7.3716, 7.3749, 7.373, 7.3713, 7.3693, 7.3674, 7.3657, 7.3642, 7.3585, 7.357, 7.3602, 7.3633, 7.362, 7.3607, 7.36, 7.3585, 7.3617, 7.3605, 7.3586, 7.3567, 7.3562, 7.3543, 7.3525, 7.3507, 7.3498, 7.348, 7.3462, 7.3446, 7.3433, 7.3421, 7.3404, 7.3393, 7.3422, 7.3406, 7.3439, 7.3385, 7.3368, 7.3309, 7.3296, 7.3295, 7.328, 7.3263, 7.3254, 7.3237, 7.3221, 7.3207, 7.3285, 7.3275, 7.3462, 7.3448, 7.3387, 7.3369, 7.3398, 7.3386, 7.3374, 7.3403, 7.3385, 7.3419, 7.3407, 7.3396, 7.3381, 7.3413, 7.34, 7.3389, 7.3377, 7.3405, 7.339, 7.3372, 7.3353, 7.3337, 7.337, 7.336, 7.3342, 7.3328, 7.341, 7.3393, 7.3377, 7.3363, 7.3365, 7.335, 7.3334, 7.3319, 7.3311, 7.33, 7.3241, 7.3225, 7.3211, 7.3194, 7.3178, 7.3161, 7.3103, 7.3098, 7.3085, 7.3069, 7.3052, 7.3086, 7.3073, 7.3057, 7.3042, 7.3032, 7.3016, 7.3044, 7.3074, 7.3057, 7.3084, 7.3069, 7.3064, 7.3092, 7.3168, 7.315, 7.3133, 7.3122, 7.3106, 7.3134, 7.3123, 7.3152, 7.3181, 7.3168, 7.3164, 7.3152, 7.314, 7.3124, 7.3109, 7.3136, 7.312, 7.315, 7.3209, 7.3193, 7.3175, 7.3159, 7.3146, 7.3131, 7.3075, 7.306, 7.3051, 7.3039, 7.3025, 7.297, 7.2993, 7.2986, 7.2969, 7.2914, 7.2903, 7.2928, 7.2913, 7.2898, 7.2925, 7.2909, 7.2939, 7.2922, 7.2941, 7.2938, 7.2924, 7.291, 7.2898, 7.2884, 7.2879, 7.2829, 7.282, 7.2851, 7.2835, 7.2819, 7.2826, 7.2813, 7.2798, 7.2787, 7.2772, 7.2759, 7.2755, 7.275, 7.2736, 7.2723, 7.271, 7.2699, 7.2685, 7.2673, 7.2702, 7.273, 7.2766, 7.2753, 7.2738, 7.2769, 7.2795, 7.2782, 7.2768, 7.2752, 7.2738, 7.2726, 7.2712, 7.2699, 7.2685, 7.267, 7.2655, 7.2737, 7.2764, 7.2752, 7.2782, 7.2768, 7.2798, 7.2787, 7.2773, 7.2763, 7.2751, 7.2738, 7.2724, 7.2708, 7.2692, 7.2678, 7.2671, 7.2657, 7.2648, 7.2645, 7.2791, 7.2775, 7.2761, 7.2788, 7.2774, 7.2728, 7.2714, 7.2699, 7.2686, 7.2671, 7.262, 7.2608, 7.2594, 7.2581, 7.2567, 7.2557, 7.2541, 7.2526, 7.2515, 7.2504, 7.2529, 7.2522, 7.2546, 7.2547, 7.2536, 7.2528, 7.2557, 7.2584, 7.2629, 7.2655, 7.2642, 7.263, 7.266, 7.265, 7.268, 7.2676, 7.2694, 7.2684, 7.2672, 7.2659, 7.2646, 7.2633, 7.2619, 7.2646, 7.263, 7.2618, 7.2643, 7.2629, 7.2615, 7.2606, 7.2649, 7.2674, 7.2721, 7.2707, 7.2694, 7.2684, 7.2692, 7.272, 7.2758, 7.2743, 7.2734, 7.272, 7.2713, 7.2779, 7.2802, 7.2956, 7.3023, 7.3052, 7.304, 7.3065, 7.3057, 7.3083, 7.3035, 7.3021, 7.3049, 7.3035, 7.3105, 7.31, 7.3093, 7.3122, 7.3147, 7.3133, 7.3121, 7.3125, 7.3111, 7.3136, 7.3163, 7.3149, 7.314, 7.3173, 7.3158, 7.3144, 7.3131, 7.3124, 7.3109, 7.3098, 7.3123, 7.3108, 7.3096, 7.3083, 7.3072, 7.3059, 7.3051, 7.3037, 7.306, 7.3051, 7.3036, 7.3023, 7.3009, 7.3, 7.2989, 7.2979, 7.2966, 7.2957, 7.2947, 7.2938, 7.2932, 7.2924, 7.2913, 7.2899, 7.2889, 7.2879, 7.2865, 7.2853, 7.2841, 7.283, 7.2817, 7.2803, 7.283, 7.2818, 7.2811, 7.2799, 7.2787, 7.2809, 7.2796, 7.2782, 7.2769, 7.2796, 7.2783, 7.2774, 7.2765, 7.2797, 7.2832, 7.2818, 7.2847, 7.2837, 7.2827, 7.2817, 7.2841, 7.2832, 7.2818, 7.2845, 7.2833, 7.2821, 7.2822, 7.2808, 7.2854, 7.2842, 7.2833, 7.2833, 7.2825, 7.2811, 7.2799, 7.2787, 7.2789, 7.2777, 7.2764, 7.2754, 7.2741, 7.2732, 7.2759, 7.2746, 7.2769, 7.2794, 7.2797, 7.2788, 7.2809, 7.2797, 7.2822, 7.281, 7.2798, 7.2786, 7.2778, 7.2767, 7.2758, 7.2749, 7.2739, 7.2763, 7.2752, 7.2747, 7.2736, 7.276, 7.2748, 7.2771, 7.2763, 7.275, 7.2736, 7.2751, 7.2748, 7.2738, 7.2729, 7.2754, 7.2743, 7.2733, 7.2726, 7.2766, 7.2753, 7.2744, 7.2807, 7.2793, 7.2821, 7.2858, 7.2855, 7.2844, 7.287, 7.2864, 7.2855, 7.2844, 7.2836, 7.2824, 7.2842, 7.2798, 7.279, 7.2782, 7.277, 7.2757, 7.2744, 7.2768, 7.2792, 7.278, 7.2775, 7.2763, 7.2793, 7.2818, 7.2806, 7.283, 7.2818, 7.2809, 7.2799, 7.2786, 7.281, 7.2834, 7.2861, 7.285, 7.2838, 7.2826, 7.2817, 7.2804, 7.2798, 7.2791, 7.2815, 7.2802, 7.2826, 7.2849, 7.2837, 7.2824, 7.2815, 7.2805, 7.2865, 7.2853, 7.2843, 7.2867, 7.2889, 7.2877, 7.2867, 7.2857, 7.2879, 7.2867, 7.2866, 7.2858, 7.2847, 7.2869, 7.286, 7.2905, 7.2974, 7.2968, 7.299, 7.3013, 7.3037, 7.3024, 7.3012, 7.3005, 7.2993, 7.2987, 7.2981, 7.3004, 7.2992, 7.298, 7.2973, 7.2996, 7.299, 7.2948, 7.2972, 7.299, 7.2981, 7.2968, 7.299, 7.2978, 7.3002, 7.2991, 7.3086, 7.3074, 7.3084, 7.3109, 7.3098, 7.3091, 7.308, 7.3102, 7.3111, 7.3098, 7.3086, 7.3109, 7.3098, 7.3121, 7.314, 7.316, 7.3147, 7.3135, 7.3094, 7.3103, 7.3091, 7.3081, 7.3069, 7.3091, 7.3115, 7.3108, 7.313, 7.3121, 7.311, 7.31, 7.3088, 7.3077, 7.3067, 7.3055, 7.3044, 7.3055, 7.3076, 7.3133, 7.3155, 7.3179, 7.3167, 7.3158, 7.318, 7.3239, 7.3227, 7.3248, 7.3293, 7.3292, 7.3313, 7.3301, 7.3295, 7.3285, 7.3276, 7.3266, 7.3288, 7.3308, 7.3328, 7.3318, 7.3309, 7.3299, 7.329, 7.328, 7.3269, 7.3259, 7.3249, 7.3279, 7.3267, 7.33, 7.3292, 7.3293, 7.3282, 7.3276, 7.3297, 7.3316, 7.3337, 7.3359, 7.3352, 7.3341, 7.3361, 7.3349, 7.3341, 7.333, 7.332, 7.331, 7.3304, 7.3296, 7.3284, 7.3274, 7.3295, 7.3284, 7.3306, 7.3296, 7.3286, 7.3275, 7.3263, 7.3255, 7.3278, 7.3268, 7.3258, 7.3252, 7.324, 7.3234, 7.3224, 7.3213, 7.3204, 7.3197, 7.3192, 7.3183, 7.3173, 7.3162, 7.3153, 7.3176, 7.3168, 7.3156, 7.3149, 7.3137, 7.3129, 7.3149, 7.3137, 7.3129, 7.3119, 7.314, 7.3129, 7.3125, 7.3115, 7.3108, 7.31, 7.3091, 7.3079, 7.3043, 7.3065, 7.3068, 7.3056, 7.305, 7.3039, 7.3034, 7.3025, 7.3016, 7.3008, 7.2969, 7.2958, 7.295, 7.2944, 7.294, 7.2932, 7.2952, 7.2948, 7.2938, 7.2932, 7.292, 7.2931, 7.2985, 7.3007, 7.3001, 7.2989, 7.2981, 7.3, 7.2991, 7.3012, 7.3001, 7.2989, 7.2984, 7.2975, 7.2966, 7.2955, 7.2948, 7.2937, 7.2929, 7.2926, 7.2918, 7.2909, 7.2901, 7.29, 7.2891, 7.2911, 7.2901, 7.289, 7.2884, 7.288, 7.2869, 7.2858, 7.2847, 7.2849, 7.2868, 7.2859, 7.2848, 7.2838, 7.2831, 7.282, 7.2818, 7.2807, 7.2816, 7.2807, 7.28, 7.2789, 7.2781, 7.28, 7.2789, 7.2781, 7.2773, 7.2792, 7.2785, 7.2782, 7.2773, 7.2768, 7.2786, 7.2784, 7.2804, 7.2794, 7.2784, 7.2785, 7.2781, 7.2801, 7.2794, 7.2784, 7.2821, 7.2841, 7.2833, 7.2852, 7.2851, 7.2869, 7.2918, 7.2882, 7.2873, 7.2891, 7.2883, 7.3015, 7.3004, 7.3022, 7.3015, 7.3005, 7.3023, 7.3018, 7.3014, 7.3006, 7.3003, 7.2992, 7.2985, 7.2975, 7.3014, 7.3005, 7.2995, 7.2987, 7.3006, 7.2995, 7.2991, 7.2981, 7.3009, 7.2999, 7.3019, 7.3012, 7.3005, 7.2996, 7.3036, 7.3027, 7.3018, 7.301, 7.3005, 7.2998, 7.2988, 7.3007, 7.2996, 7.2999, 7.3019, 7.3011, 7.3003, 7.2997, 7.3016, 7.3011, 7.3005, 7.2995, 7.2984, 7.3004, 7.2993, 7.2987, 7.2977, 7.2996, 7.3014, 7.3003, 7.2994, 7.2986, 7.2976, 7.2995, 7.3017, 7.2989, 7.2963, 7.2982, 7.3042, 7.3061, 7.3109, 7.3099, 7.3113, 7.3103, 7.3095, 7.3061, 7.3051, 7.3041, 7.3035, 7.3053, 7.3071, 7.3063, 7.3054, 7.3045, 7.3124, 7.3113, 7.3103, 7.3122, 7.3115, 7.3108, 7.3187, 7.3265, 7.323, 7.3247, 7.3239, 7.3258, 7.3248, 7.3266, 7.3284, 7.3274, 7.3264, 7.3258, 7.3276, 7.3305, 7.3296, 7.3316, 7.3347, 7.3338, 7.3328, 7.3322, 7.3316, 7.3339, 7.3305, 7.3351, 7.3343, 7.3333, 7.3358, 7.335, 7.3366, 7.3356, 7.3346, 7.3336, 7.3327, 7.332, 7.331, 7.3304, 7.3301, 7.3295, 7.3314, 7.3333, 7.3323, 7.334, 7.3335, 7.3329, 7.3346, 7.3365, 7.3384, 7.3403, 7.3395, 7.3413, 7.3403, 7.3393, 7.3383, 7.3378, 7.337, 7.3364, 7.3355, 7.3349, 7.3342, 7.3337, 7.3327, 7.3347, 7.334, 7.3331, 7.3347, 7.3337, 7.3329, 7.3352, 7.3343, 7.3339, 7.3335, 7.333, 7.3347, 7.3338, 7.3328, 7.3345, 7.3335, 7.3351, 7.3342, 7.3335, 7.3327, 7.3318, 7.3334, 7.3324, 7.3315, 7.3332, 7.3323, 7.3342, 7.3332, 7.3299, 7.3292, 7.331, 7.331, 7.3303, 7.3296, 7.3314, 7.3305, 7.3295, 7.3368, 7.3414, 7.3404, 7.3394, 7.3386, 7.3404, 7.342, 7.341, 7.34, 7.3417, 7.3409, 7.338, 7.3399, 7.3414, 7.3406, 7.3398, 7.3393, 7.3411, 7.3403, 7.3394, 7.3411, 7.3402, 7.3369, 7.3415, 7.3381, 7.3468, 7.3462, 7.3452, 7.347, 7.346, 7.3477, 7.3444, 7.3461, 7.3454, 7.3499, 7.3489, 7.3506, 7.3523, 7.3513, 7.3504, 7.3494, 7.3489, 7.3479, 7.3495, 7.3485, 7.3476, 7.3482, 7.3474, 7.3465, 7.3459, 7.3475, 7.3521, 7.3515, 7.3488, 7.3479, 7.3469, 7.3513, 7.3508, 7.3655, 7.3645, 7.366, 7.3657, 7.3649, 7.3644, 7.3636, 7.3666, 7.3668, 7.3725, 7.3725, 7.3716, 7.3707, 7.3699, 7.3718, 7.3709, 7.3738, 7.3733, 7.375, 7.374, 7.3732, 7.3724, 7.3714, 7.3705, 7.3722, 7.3739, 7.3734, 7.3734, 7.3751, 7.3772, 7.3769, 7.3762, 7.3754, 7.375, 7.3759, 7.3758, 7.3753, 7.3745, 7.3737, 7.3729, 7.3719, 7.3709, 7.3735, 7.3702, 7.3693, 7.371, 7.3727, 7.3741, 7.376, 7.3751, 7.3741, 7.3709, 7.37, 7.3691, 7.3684, 7.3701, 7.3691, 7.3708, 7.3698, 7.3739, 7.373, 7.3721, 7.3715, 7.3707, 7.37, 7.3708, 7.3725, 7.3719, 7.371, 7.3706, 7.3696, 7.3688, 7.3681, 7.3675, 7.3667, 7.366, 7.3651, 7.3668, 7.3659, 7.3652, 7.3642, 7.3638, 7.3607, 7.3606, 7.3622, 7.3613, 7.3606, 7.3623, 7.364, 7.3656, 7.3672, 7.3663, 7.3679, 7.3669, 7.3661, 7.3654, 7.3671, 7.3662, 7.3654, 7.3644, 7.3637, 7.3628, 7.362, 7.3638, 7.3628, 7.3669, 7.3758, 7.3752, 7.3769, 7.378, 7.3775, 7.377, 7.3763, 7.378, 7.3774, 7.3767, 7.3762, 7.3752, 7.3745, 7.3736, 7.3726, 7.3718, 7.371, 7.3702, 7.3717, 7.371, 7.3726, 7.3745, 7.3761, 7.3754, 7.3773, 7.3789, 7.3781, 7.3751, 7.3743, 7.3735, 7.3728, 7.3721, 7.3712, 7.3702, 7.3699, 7.3692, 7.3711, 7.3726, 7.3717, 7.3708, 7.3724, 7.374, 7.3708, 7.37, 7.3691, 7.3766, 7.376, 7.3751, 7.3766, 7.3758, 7.375, 7.3747, 7.3741, 7.3738, 7.3732, 7.3725, 7.3741, 7.3733, 7.3725, 7.3718, 7.3711, 7.3702, 7.3692, 7.3683, 7.3675, 7.3676, 7.3667, 7.3686, 7.3705, 7.368, 7.3684, 7.3678, 7.3673, 7.37, 7.3693, 7.3684, 7.3675, 7.369, 7.368, 7.3674, 7.3729, 7.372, 7.3736, 7.373, 7.3745, 7.3752, 7.3744, 7.3735, 7.3728, 7.3722, 7.3714, 7.3707, 7.3698, 7.3691, 7.3684, 7.3675, 7.369, 7.3684, 7.3676, 7.3668, 7.3661, 7.3652, 7.3666, 7.3657, 7.3652, 7.3729, 7.3719, 7.371, 7.3701, 7.3694, 7.3685, 7.3676, 7.3668, 7.3664, 7.3657, 7.3672, 7.3666, 7.368, 7.3671, 7.3663, 7.3654, 7.3646, 7.3638, 7.3629, 7.3622, 7.3614, 7.3629, 7.36, 7.3592, 7.3584, 7.3608, 7.3637, 7.365, 7.3641, 7.3633, 7.3648, 7.3643, 7.3661, 7.3676, 7.3667, 7.3663, 7.3656, 7.3648, 7.3639, 7.3632, 7.3623, 7.3616, 7.3615, 7.3607, 7.3598, 7.3591, 7.3606, 7.3599, 7.3593, 7.359, 7.3583, 7.3581, 7.3596, 7.3615, 7.3613, 7.3606, 7.3702, 7.377, 7.3768, 7.376, 7.3752, 7.3747, 7.3738, 7.3732, 7.3723, 7.3715, 7.3708, 7.3724, 7.3719, 7.3734, 7.3727, 7.372, 7.3713, 7.3727, 7.3719, 7.3714, 7.3709, 7.3704, 7.3721, 7.3714, 7.3732, 7.3725, 7.3718, 7.3712, 7.3726, 7.372, 7.3717, 7.3709, 7.3701, 7.372, 7.3735, 7.3727, 7.3722, 7.3715, 7.3707, 7.3679, 7.3672, 7.3666, 7.3667, 7.3661, 7.366, 7.3655, 7.3647, 7.3756, 7.3748, 7.3742, 7.3758, 7.375, 7.3741, 7.3733, 7.3748, 7.3764, 7.3768, 7.376, 7.3815, 7.3829, 7.3841, 7.3848, 7.384, 7.3878, 7.3879, 7.3872, 7.3866, 7.386, 7.3878, 7.3872, 7.3849, 7.3843, 7.3835, 7.3837, 7.3852, 7.3844, 7.3839, 7.384, 7.3841, 7.3843, 7.3834, 7.3852, 7.386, 7.3853, 7.3867, 7.3881, 7.3875, 7.3889, 7.3881, 7.3878, 7.387, 7.3863, 7.3863, 7.3879, 7.3872, 7.3863, 7.3864, 7.3857, 7.3835, 7.3855, 7.3848, 7.3841, 7.3834, 7.385, 7.3953, 7.3945, 7.3974, 7.3966, 7.3983, 7.4022, 7.4016, 7.4008, 7.4001, 7.4002, 7.4008, 7.4, 7.3996, 7.3988, 7.398, 7.4006, 7.3997, 7.3989, 7.3984, 7.3975, 7.3967, 7.3959, 7.3931, 7.3925, 7.3919, 7.3933, 7.3946, 7.3942, 7.3936, 7.3931, 7.3927, 7.3948, 7.394, 7.3933, 7.3926, 7.397, 7.3963, 7.3968, 7.4051, 7.4046, 7.4038, 7.403, 7.4025, 7.4092, 7.4085, 7.4077, 7.4071, 7.4064, 7.4044, 7.4027, 7.4019, 7.4047, 7.4041, 7.4032, 7.4027, 7.4021, 7.4035, 7.4042, 7.4063, 7.4079, 7.4071, 7.4069, 7.4063, 7.4065, 7.4058, 7.4053, 7.4055, 7.4047, 7.402, 7.4013, 7.4027, 7.4029, 7.4052, 7.4048, 7.4084, 7.4077, 7.4111, 7.4126, 7.4119, 7.4093, 7.4085, 7.408, 7.4072, 7.4064, 7.4056, 7.4051, 7.4043, 7.4057, 7.4049, 7.4065, 7.4079, 7.4093, 7.4087, 7.4079, 7.4074, 7.4066, 7.408, 7.4074, 7.4066, 7.4058, 7.4162, 7.4176, 7.4173, 7.4187, 7.4178, 7.4172, 7.4167, 7.4159, 7.4174, 7.423, 7.4222, 7.4217, 7.4264, 7.4263, 7.4275, 7.4267, 7.4271, 7.4264, 7.4297, 7.4292, 7.4284, 7.4299, 7.4313, 7.433, 7.4321, 7.4315, 7.4307, 7.4298, 7.4312, 7.4325, 7.4337, 7.4372, 7.4348, 7.4341, 7.4314, 7.4306, 7.4318, 7.4309, 7.4305, 7.4298, 7.4291, 7.4287, 7.428, 7.4274, 7.4293, 7.4286, 7.4299, 7.4294, 7.4286, 7.428, 7.4274, 7.4266, 7.4288, 7.428, 7.4255, 7.4247, 7.426, 7.4251, 7.4264, 7.4276, 7.4288, 7.4284, 7.4301, 7.4306, 7.43, 7.4293, 7.4288, 7.4281, 7.4273, 7.4269, 7.426, 7.4252, 7.4265, 7.4278, 7.4254, 7.4268, 7.4281, 7.4275, 7.4267, 7.4264, 7.4258, 7.4273, 7.4266, 7.4279, 7.4275, 7.4267, 7.426, 7.4256, 7.4248, 7.424, 7.4232, 7.4245, 7.4242, 7.4256, 7.4248, 7.4261, 7.4257, 7.4252, 7.4227, 7.4222, 7.4196, 7.4204, 7.4196, 7.4188, 7.4181, 7.4155, 7.4148, 7.4143, 7.4139, 7.4132, 7.4125, 7.4118, 7.4112, 7.4124, 7.4118, 7.413, 7.4122, 7.4136, 7.4129, 7.4121, 7.4135, 7.4127, 7.4121, 7.4115, 7.4108, 7.4103, 7.4097, 7.4089, 7.4063, 7.4058, 7.4071, 7.4045, 7.4042, 7.4036, 7.4028, 7.4023, 7.4015, 7.4009, 7.4023, 7.4035, 7.4028, 7.4042, 7.4037, 7.4052, 7.4066, 7.4078, 7.4071, 7.4064, 7.4079, 7.4072, 7.4064, 7.4039, 7.4014, 7.4007, 7.3999, 7.3992, 7.3984, 7.3996, 7.399, 7.3982, 7.4002, 7.3995, 7.4006, 7.4018, 7.403, 7.4024, 7.4037, 7.403, 7.4022, 7.4014, 7.4008, 7.4001, 7.4014, 7.4028, 7.4041, 7.4054, 7.4046, 7.4039, 7.4034, 7.4031, 7.4035, 7.403, 7.4042, 7.4037, 7.4049, 7.4041, 7.4055, 7.4068, 7.4082, 7.4078, 7.4071, 7.4063, 7.4096, 7.4089, 7.4081, 7.4074, 7.4086, 7.4079, 7.4055, 7.4048, 7.4042, 7.4035, 7.4027, 7.4053, 7.4047, 7.404, 7.4052, 7.4044, 7.4039, 7.4037, 7.4032, 7.4045, 7.4058, 7.406, 7.4055, 7.4048, 7.4061, 7.4036, 7.4028, 7.4023, 7.4018, 7.4013, 7.4025, 7.4019, 7.4041, 7.4049, 7.4044, 7.4038, 7.4051, 7.4045, 7.4037, 7.4051, 7.4047, 7.4041, 7.4016, 7.4008, 7.4002, 7.4015, 7.401, 7.4003, 7.3996, 7.3992, 7.3985, 7.3979, 7.3973, 7.3967, 7.3943, 7.3941, 7.3934, 7.3929, 7.3925, 7.3918, 7.3931, 7.3923, 7.3916, 7.3929, 7.3922, 7.3919, 7.3913, 7.3905, 7.3918, 7.3911, 7.3904, 7.3917, 7.391, 7.3906, 7.3905, 7.3899, 7.3892, 7.3889, 7.3871, 7.3885, 7.3878, 7.3874, 7.3867, 7.386, 7.3854, 7.3848, 7.3843, 7.3819, 7.3813, 7.3825, 7.3818, 7.3811, 7.3824, 7.3821, 7.3834, 7.3829, 7.3824, 7.3821, 7.3814, 7.3809, 7.3837, 7.383, 7.3825, 7.3897, 7.389, 7.3883, 7.3876, 7.3873, 7.3866, 7.3859, 7.3851, 7.3846, 7.3839, 7.3873, 7.3868, 7.3861, 7.3873, 7.3865, 7.388, 7.3893, 7.3886, 7.388, 7.3873, 7.3887, 7.3879, 7.3891, 7.3955, 7.3948, 7.396, 7.3954, 7.3948, 7.3961, 7.3953, 7.3946, 7.3938, 7.3931, 7.3925, 7.3919, 7.3932, 7.3926, 7.3937, 7.3937, 7.395, 7.3944, 7.3958, 7.3972, 7.3986, 7.398, 7.3974, 7.3968, 7.398, 7.3993, 7.3991, 7.3987, 7.398, 7.3974, 7.3967, 7.397, 7.3963, 7.3957, 7.3953, 7.3947, 7.3942, 7.3954, 7.3948, 7.3941, 7.3934, 7.3946, 7.3958, 7.3952, 7.3928, 7.3923, 7.3916, 7.3911, 7.3904, 7.3917, 7.3912, 7.3907, 7.39, 7.3893, 7.3906, 7.3918, 7.393, 7.3923, 7.3917, 7.391, 7.3922, 7.3917, 7.3911, 7.3905, 7.3898, 7.3893, 7.3886, 7.3879, 7.3856, 7.3871, 7.3864, 7.3859, 7.3837, 7.3835, 7.383, 7.3807, 7.3804, 7.3798, 7.3791, 7.3768, 7.3761, 7.3775, 7.3769, 7.3763, 7.3774, 7.3769, 7.3762, 7.3757, 7.375, 7.3761, 7.3772, 7.3766, 7.3759, 7.3752, 7.3764, 7.376, 7.3771, 7.3749, 7.376, 7.3771, 7.3782, 7.3781, 7.3776, 7.3775, 7.3787, 7.3889, 7.3882, 7.3876, 7.3887, 7.3882, 7.3893, 7.3889, 7.3883, 7.3877, 7.3889, 7.3886, 7.3898, 7.3895, 7.3889, 7.389, 7.3901, 7.3894, 7.3887, 7.388, 7.389, 7.3884, 7.3879, 7.3872, 7.3884, 7.388, 7.3878, 7.3873, 7.3912, 7.3905, 7.3913, 7.3933, 7.3953, 7.3946, 7.3947, 7.3943, 7.3955, 7.395, 7.3944, 7.3937, 7.3933, 7.393, 7.3923, 7.3916, 7.391, 7.3905, 7.3899, 7.3892, 7.3886, 7.3898, 7.3892, 7.3888, 7.3866, 7.3861, 7.3857, 7.3851, 7.3844, 7.3837, 7.3848, 7.3842, 7.3836, 7.3834, 7.3831, 7.3824, 7.3835, 7.3846, 7.3828, 7.384, 7.3835, 7.3828, 7.384, 7.3834, 7.3827, 7.3823, 7.3817, 7.3813, 7.3808, 7.382, 7.3814, 7.3823, 7.3817, 7.3811, 7.3827, 7.3821, 7.3814, 7.3826, 7.382, 7.3813, 7.3809, 7.3806, 7.3817, 7.3795, 7.3807, 7.3821, 7.3835, 7.3828, 7.3866, 7.3859, 7.3852, 7.3849, 7.3861, 7.3856, 7.3866, 7.386, 7.3853, 7.3846, 7.3858, 7.3888, 7.3899, 7.3893, 7.3887, 7.3897, 7.389, 7.3885, 7.391, 7.3904, 7.39, 7.3895, 7.389, 7.3885, 7.3878, 7.3928, 7.3922, 7.3916, 7.3909, 7.3906, 7.39, 7.3894, 7.3888, 7.3881, 7.3875, 7.3871, 7.3864, 7.3857, 7.3855, 7.3853, 7.3846, 7.3843, 7.3839, 7.3851, 7.3844, 7.3838, 7.3831, 7.3824, 7.3834, 7.383, 7.3842, 7.3852, 7.3847, 7.3826, 7.3837, 7.3831, 7.3826, 7.3836, 7.3846, 7.384, 7.3839, 7.3834, 7.3829, 7.3807, 7.3803, 7.3797, 7.3808, 7.3819, 7.383, 7.3824, 7.3818, 7.3812, 7.381, 7.3808, 7.3819, 7.3813, 7.3809, 7.3804, 7.3816, 7.381, 7.3804, 7.3783, 7.3777, 7.3756, 7.3751, 7.376, 7.3755, 7.3749, 7.3742, 7.3739, 7.3733, 7.3745, 7.3739, 7.3733, 7.3717, 7.3713, 7.373, 7.373, 7.3734, 7.3727, 7.3739, 7.3733, 7.373, 7.3725, 7.3738, 7.3732, 7.3726, 7.374, 7.3735, 7.3729, 7.3707, 7.37, 7.3694, 7.3691, 7.3685, 7.3679, 7.3673, 7.3667, 7.366, 7.3657, 7.365, 7.3679, 7.3673, 7.3668, 7.3661, 7.3656, 7.3651, 7.3646, 7.3624, 7.3635, 7.3631, 7.363, 7.3625, 7.3635, 7.363, 7.3641, 7.3636, 7.363, 7.3624, 7.3634, 7.3645, 7.364, 7.3634, 7.3628, 7.3622, 7.3617, 7.3613, 7.3607, 7.3601, 7.3644, 7.3655, 7.3649, 7.3643, 7.3637, 7.3631, 7.3643, 7.3638, 7.3649, 7.3643, 7.3643, 7.3654, 7.365, 7.3712, 7.3724, 7.3719, 7.376, 7.3753, 7.3764, 7.3776, 7.377, 7.3783, 7.3837, 7.3837, 7.3832, 7.3829, 7.3845, 7.3873, 7.3868, 7.3864, 7.3858, 7.3837, 7.3849, 7.3846, 7.3857, 7.3868, 7.3861, 7.3858, 7.3852, 7.3845, 7.3842, 7.3821, 7.38, 7.3812, 7.381, 7.3804, 7.38, 7.3811, 7.3824, 7.3819, 7.3814, 7.3825, 7.382, 7.3815, 7.3809, 7.3848, 7.3851, 7.3849, 7.3844, 7.3856, 7.3868, 7.3864, 7.3859, 7.387, 7.3916, 7.391, 7.3906, 7.3905, 7.3916, 7.3911, 7.3905, 7.3902, 7.3897, 7.3908, 7.3903, 7.3883, 7.3878, 7.3873, 7.3883, 7.3877, 7.3871, 7.3864, 7.3858, 7.3854, 7.3848, 7.3845, 7.384, 7.3835, 7.386, 7.3854, 7.3834, 7.3847, 7.3841, 7.3852, 7.3862, 7.3858, 7.3868, 7.3862, 7.3856, 7.385, 7.3843, 7.384, 7.3836, 7.3836, 7.383, 7.3826, 7.3837, 7.3847, 7.3843, 7.3853, 7.385, 7.3844, 7.3854, 7.3848, 7.3842, 7.3852, 7.3863, 7.3873, 7.3884, 7.3894, 7.3888, 7.3898, 7.3896, 7.3891, 7.3885, 7.3879, 7.3873, 7.3867, 7.3861, 7.3873, 7.3868, 7.3862, 7.3856, 7.3866, 7.386, 7.3855, 7.385, 7.3861, 7.3855, 7.3849, 7.3844, 7.3838, 7.3849, 7.3843, 7.3853, 7.3847, 7.3843, 7.3839, 7.3835, 7.3845, 7.384, 7.3851, 7.3845, 7.3854, 7.3848, 7.3857, 7.3857, 7.3868, 7.3863, 7.3874, 7.3868, 7.3866, 7.3862, 7.3874, 7.3868, 7.3864, 7.3859, 7.3853, 7.3848, 7.3859, 7.3871, 7.3881, 7.389, 7.3884, 7.388, 7.3874, 7.3868, 7.3878, 7.3888, 7.3885, 7.3896, 7.389, 7.39, 7.3894, 7.3873, 7.3868, 7.3862, 7.3872, 7.3866, 7.3846, 7.3842, 7.3851, 7.3847, 7.3859, 7.3853, 7.3847, 7.3841, 7.3836, 7.3862, 7.3857, 7.3867, 7.3862, 7.3859, 7.3855, 7.3865, 7.3876, 7.3871, 7.3867, 7.3861, 7.3855, 7.3851, 7.3845, 7.384, 7.3835, 7.3839, 7.3849, 7.3843, 7.3853, 7.3847, 7.3841, 7.3836, 7.3831, 7.3825, 7.382, 7.3818, 7.3812, 7.3807, 7.3805, 7.3799, 7.3809, 7.379, 7.3786, 7.3798, 7.3792, 7.3786, 7.3797, 7.3791, 7.3785, 7.3779, 7.3773, 7.3801, 7.3795, 7.3789, 7.3784, 7.3779, 7.3774, 7.3768, 7.3778, 7.3772, 7.3767, 7.3762, 7.3756, 7.3751, 7.376, 7.3754, 7.3765, 7.3782, 7.3781, 7.3775, 7.3769, 7.3764, 7.3759, 7.3757, 7.3751, 7.3745, 7.3755, 7.3753, 7.375, 7.3732, 7.3726, 7.372, 7.3739, 7.3734, 7.3745, 7.3739, 7.3733, 7.3743, 7.3724, 7.3719, 7.3715, 7.3696, 7.3691, 7.3691, 7.3687, 7.3684, 7.3708, 7.3703, 7.3714, 7.3709, 7.3704, 7.3715, 7.3726, 7.3721, 7.373, 7.3725, 7.372, 7.3715, 7.371, 7.3705, 7.3715, 7.3709, 7.3722, 7.3718, 7.3743, 7.3753, 7.3749, 7.3744, 7.3753, 7.3747, 7.3742, 7.3752, 7.3747, 7.3742, 7.3737, 7.3742, 7.3738, 7.3777, 7.3771, 7.3779, 7.3774, 7.377, 7.3765, 7.3775, 7.3785, 7.3779, 7.3774, 7.3775, 7.3771, 7.3781, 7.3779, 7.3773, 7.3784, 7.3778, 7.3773, 7.3784, 7.3794, 7.3803, 7.3813, 7.381, 7.382, 7.3814, 7.3808, 7.3818, 7.3812, 7.3806, 7.3802, 7.3805, 7.3826, 7.3821, 7.3822, 7.3818, 7.3803, 7.383, 7.3826, 7.3851, 7.3847, 7.3842, 7.3838, 7.3849, 7.386, 7.3855, 7.3849, 7.3844, 7.3839, 7.3834, 7.3828, 7.3822, 7.3817, 7.3826, 7.3821, 7.3815, 7.3812, 7.3808, 7.3803, 7.3797, 7.3808, 7.3803, 7.3798, 7.3793, 7.3789, 7.3784, 7.378, 7.3775, 7.3772, 7.3796, 7.3778, 7.3774, 7.383, 7.3824, 7.3819, 7.3816, 7.3812, 7.3806, 7.38, 7.3794, 7.379, 7.3786, 7.378, 7.3775, 7.377, 7.378, 7.3776, 7.3771, 7.378, 7.3776, 7.3786, 7.3796, 7.3792, 7.3802, 7.3811, 7.3807, 7.3802, 7.3812, 7.3807, 7.3815, 7.3809, 7.379, 7.3785, 7.3787, 7.3784, 7.3778, 7.3788, 7.3798, 7.3807, 7.3789, 7.377, 7.3765, 7.376, 7.3755, 7.3749, 7.3759, 7.3741, 7.3737, 7.3732, 7.3727, 7.3722, 7.3731, 7.3727, 7.3723, 7.3718, 7.3716, 7.3726, 7.372, 7.3715, 7.371, 7.3707, 7.3717, 7.3727, 7.3725, 7.3722, 7.3717, 7.3712, 7.3706, 7.3701, 7.3698, 7.3693, 7.3688, 7.3683, 7.3694, 7.369, 7.3685, 7.3696, 7.3706, 7.3702, 7.3687, 7.3696, 7.3706, 7.3703, 7.3712, 7.3731, 7.3727, 7.3722, 7.3717, 7.3717, 7.3712, 7.3707, 7.3702, 7.3699, 7.3694, 7.3689, 7.3684, 7.3693, 7.3702, 7.3699, 7.3703, 7.3699, 7.3695, 7.369, 7.3684, 7.375, 7.3745, 7.3741, 7.3736, 7.3731, 7.3744, 7.3742, 7.3736, 7.373, 7.3725, 7.3719, 7.3716, 7.3715, 7.3709, 7.3703, 7.3697, 7.3706, 7.37, 7.3696, 7.3692, 7.3686, 7.368, 7.3675, 7.3672, 7.3669, 7.3664, 7.3658, 7.3654, 7.3664, 7.3673, 7.3668, 7.3662, 7.3657, 7.3652, 7.3646, 7.3641, 7.3638, 7.3648, 7.3645, 7.364, 7.3634, 7.3629, 7.3625, 7.362, 7.3617, 7.3612, 7.3606, 7.3603, 7.3626, 7.362, 7.3629, 7.3625, 7.3621, 7.3603, 7.3599, 7.3594, 7.3589, 7.3584, 7.3579, 7.3574, 7.3583, 7.358, 7.3576, 7.3572, 7.3582, 7.3577, 7.3572, 7.3581, 7.3575, 7.3569, 7.3565, 7.3561, 7.3587, 7.3573, 7.3585, 7.3584, 7.358, 7.3576, 7.3588, 7.3585, 7.3595, 7.3614, 7.3624, 7.3623, 7.3618, 7.3615, 7.3612, 7.3607, 7.3603, 7.3599, 7.3615, 7.3626, 7.3621, 7.3645, 7.364, 7.3635, 7.3617, 7.3613, 7.3608, 7.3603, 7.3599, 7.3594, 7.3589, 7.3585, 7.3583, 7.3585, 7.358, 7.3575, 7.357, 7.3565, 7.356, 7.3569, 7.3578, 7.3573, 7.357, 7.3564, 7.3559, 7.3555, 7.3564, 7.3559, 7.3553, 7.3551, 7.356, 7.3557, 7.3566, 7.3561, 7.3557, 7.3553, 7.3563, 7.3585, 7.3582, 7.3578, 7.3574, 7.3569, 7.3567, 7.3564, 7.3573, 7.357, 7.3565, 7.3574, 7.3571, 7.358, 7.3589, 7.3583, 7.3578, 7.3588, 7.3583, 7.3578, 7.3586, 7.3595, 7.3591, 7.3586, 7.3595, 7.3584, 7.3607, 7.3617, 7.3613, 7.3614, 7.3642, 7.3639, 7.3635, 7.363, 7.3627, 7.3636, 7.3633, 7.363, 7.3626, 7.3621, 7.3645, 7.3641, 7.3636, 7.3631, 7.3626, 7.364, 7.3692, 7.3703, 7.3701, 7.3724, 7.3719, 7.3714, 7.3709, 7.3704, 7.3699, 7.3682, 7.3679, 7.3675, 7.3669, 7.3678, 7.37, 7.3697, 7.3706, 7.3734, 7.3743, 7.3737, 7.3745, 7.3767, 7.3762, 7.3757, 7.3754, 7.3766, 7.3777, 7.3786, 7.3781, 7.379, 7.38, 7.3796, 7.3791, 7.3788, 7.3784, 7.3778, 7.3775, 7.377, 7.378, 7.3775, 7.377, 7.3766, 7.3763, 7.3813, 7.3808, 7.3803, 7.3799, 7.3807, 7.3816, 7.3811, 7.3806, 7.3801, 7.3796, 7.3806, 7.3806, 7.3801, 7.3796, 7.3792, 7.3788, 7.3783, 7.3778, 7.3778, 7.3773, 7.3768, 7.3765, 7.3775, 7.3771, 7.3769, 7.3778, 7.3773, 7.3756, 7.3752, 7.3747, 7.3743, 7.3738, 7.3735, 7.377, 7.3766, 7.3761, 7.3756, 7.3742, 7.3739, 7.3776, 7.3773, 7.3797, 7.3807, 7.3816, 7.3824, 7.3819, 7.3814, 7.3837, 7.3832, 7.3827, 7.3823, 7.3818, 7.3813, 7.381, 7.3805, 7.3813, 7.3808, 7.3803, 7.3819, 7.3827, 7.3822, 7.3832, 7.3828, 7.3813, 7.3809, 7.3818, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.382, 7.3829, 7.3837, 7.3834, 7.3842, 7.3837, 7.3833, 7.3841, 7.3824, 7.382, 7.3816, 7.3826, 7.3822, 7.3832, 7.3827, 7.3835, 7.3832, 7.384, 7.3835, 7.3856, 7.3855, 7.385, 7.3847, 7.3842, 7.3837, 7.3833, 7.3842, 7.3851, 7.3862, 7.3858, 7.3853, 7.386, 7.3858, 7.3857, 7.3856, 7.3851, 7.3846, 7.3845, 7.3855, 7.385, 7.3845, 7.3846, 7.3829, 7.3825, 7.3834, 7.3823, 7.3818, 7.3813, 7.3822, 7.3817, 7.3812, 7.3821, 7.3828, 7.3826, 7.3822, 7.3818, 7.3815, 7.3811, 7.3819, 7.3826, 7.3821, 7.3817, 7.3812, 7.3821, 7.3817, 7.3813, 7.381, 7.3807, 7.3802, 7.3799, 7.3795, 7.3791, 7.3802, 7.3797, 7.3792, 7.3788, 7.3771, 7.378, 7.3775, 7.3784, 7.378, 7.3776, 7.3773, 7.3769, 7.3767, 7.3762, 7.3757, 7.3752, 7.3749, 7.3744, 7.3753, 7.3748, 7.3745, 7.3742, 7.3738, 7.3735, 7.3731, 7.3727, 7.3722, 7.3717, 7.3713, 7.3713, 7.3708, 7.3704, 7.37, 7.3708, 7.3717, 7.3712, 7.3695, 7.3692, 7.3701, 7.3696, 7.3692, 7.3689, 7.3685, 7.368, 7.3676, 7.3671, 7.3666, 7.3662, 7.3671, 7.3668, 7.3677, 7.3683, 7.3679, 7.3674, 7.3669, 7.3665, 7.3682, 7.368, 7.3677, 7.3682, 7.369, 7.3685, 7.368, 7.3678, 7.3675, 7.3684, 7.368, 7.3689, 7.3685, 7.3692, 7.3687, 7.3683, 7.3681, 7.3689, 7.3684, 7.3684, 7.3679, 7.3674, 7.3669, 7.3664, 7.3661, 7.3657, 7.3653, 7.3648, 7.3644, 7.364, 7.3635, 7.3643, 7.3638, 7.3646, 7.3642, 7.3639, 7.3634, 7.363, 7.3626, 7.3622, 7.3617, 7.3612, 7.3621, 7.3617, 7.3614, 7.3611, 7.362, 7.3616, 7.3612, 7.3621, 7.3631, 7.3639, 7.3634, 7.3631, 7.3628, 7.3625, 7.3632, 7.3627, 7.3625, 7.3622, 7.3617, 7.3614, 7.3612, 7.362, 7.3618, 7.3616, 7.3613, 7.3608, 7.3604, 7.36, 7.3592, 7.3601, 7.3596, 7.3604, 7.3612, 7.3608, 7.3604, 7.36, 7.3599, 7.3621, 7.3629, 7.3677, 7.3672, 7.3668, 7.3676, 7.3684, 7.3681, 7.3679, 7.3674, 7.3682, 7.3678, 7.3673, 7.3657, 7.3666, 7.3666, 7.3662, 7.3658, 7.3656, 7.3652, 7.3649, 7.3645, 7.3642, 7.3642, 7.3637, 7.3627, 7.3623, 7.3619, 7.3614, 7.361, 7.3607, 7.3604, 7.36, 7.3623, 7.3633, 7.364, 7.3635, 7.363, 7.363, 7.3639, 7.366, 7.3656, 7.3652, 7.3675, 7.3683, 7.3679, 7.3675, 7.3674, 7.372, 7.3719, 7.3715, 7.3711, 7.3706, 7.3702, 7.3697, 7.372, 7.3727, 7.3722, 7.3719, 7.3714, 7.3709, 7.3708, 7.3704, 7.3706, 7.3703, 7.3711, 7.3708, 7.3704, 7.37, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3691, 7.3701, 7.3703, 7.3699, 7.3695, 7.3691, 7.3698, 7.3693, 7.3689, 7.3685, 7.3681, 7.3679, 7.3687, 7.3684, 7.3679, 7.3675, 7.3671, 7.3668, 7.3652, 7.365, 7.3659, 7.3655, 7.3653, 7.365, 7.3649, 7.3645, 7.3643, 7.364, 7.3637, 7.3645, 7.3642, 7.3653, 7.366, 7.3644, 7.3641, 7.3636, 7.3632, 7.3628, 7.3637, 7.3633, 7.3628, 7.3625, 7.363, 7.3638, 7.3622, 7.3618, 7.3623, 7.3653, 7.3662, 7.3658, 7.3653, 7.3648, 7.3645, 7.3653, 7.3661, 7.3678, 7.3662, 7.3658, 7.3655, 7.37, 7.3696, 7.3684, 7.3681, 7.3719, 7.3715, 7.3715, 7.3736, 7.3738, 7.3734, 7.3734, 7.373, 7.3739, 7.3762, 7.3759, 7.3754, 7.3751, 7.3746, 7.3747, 7.3743, 7.374, 7.3736, 7.3732, 7.3728, 7.375, 7.3748, 7.3757, 7.3754, 7.3813, 7.3811, 7.3827, 7.3829, 7.3837, 7.3846, 7.385, 7.3847, 7.3846, 7.3868, 7.3864, 7.3861, 7.3869, 7.3864, 7.386, 7.3856, 7.3852, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.3839, 7.3835, 7.3843, 7.3839, 7.3835, 7.383, 7.3827, 7.3822, 7.3831, 7.3828, 7.3855, 7.3853, 7.3851, 7.3859, 7.3843, 7.3852, 7.3848, 7.3869, 7.3882, 7.3878, 7.3888, 7.39, 7.391, 7.3906, 7.3901, 7.3896, 7.3891, 7.3888, 7.3884, 7.388, 7.3878, 7.3874, 7.3896, 7.3892, 7.3887, 7.389, 7.3885, 7.3893, 7.3889, 7.3884, 7.388, 7.3875, 7.3871, 7.3866, 7.3861, 7.3859, 7.3855, 7.3853, 7.3848, 7.3847, 7.3842, 7.3838, 7.3862, 7.386, 7.3856, 7.3851, 7.3859, 7.3855, 7.3851, 7.3851, 7.3848, 7.3847, 7.3842, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3812, 7.3808, 7.3807, 7.3804, 7.3802, 7.3798, 7.3806, 7.3802, 7.3798, 7.3811, 7.3806, 7.3802, 7.3811, 7.3818, 7.3813, 7.3809, 7.3804, 7.3805, 7.3803, 7.3807, 7.3804, 7.3801, 7.381, 7.3806, 7.3802, 7.3797, 7.3793, 7.379, 7.3786, 7.3794, 7.3793, 7.379, 7.3786, 7.3783, 7.3779, 7.3775, 7.377, 7.3768, 7.3764, 7.376, 7.3757, 7.3752, 7.375, 7.3745, 7.3741, 7.3751, 7.3747, 7.376, 7.3756, 7.3763, 7.376, 7.3756, 7.3752, 7.375, 7.3747, 7.3742, 7.3756, 7.3753, 7.375, 7.3745, 7.3741, 7.3737, 7.3736, 7.3735, 7.3731, 7.3726, 7.3721, 7.3728, 7.3736, 7.3744, 7.3739, 7.3747, 7.3743, 7.3738, 7.3737, 7.3734, 7.3742, 7.3738, 7.3741, 7.3736, 7.3732, 7.3728, 7.3726, 7.3733, 7.3729, 7.3714, 7.371, 7.3718, 7.3728, 7.3724, 7.3722, 7.3729, 7.3724, 7.3722, 7.3718, 7.3726, 7.3724, 7.3745, 7.3741, 7.3727, 7.3724, 7.372, 7.3716, 7.3713, 7.372, 7.3717, 7.3713, 7.3709, 7.3705, 7.3701, 7.3697, 7.3694, 7.369, 7.3715, 7.3736, 7.3734, 7.3731, 7.3727, 7.3771, 7.3767, 7.3774, 7.377, 7.3767, 7.3763, 7.3771, 7.378, 7.3787, 7.3773, 7.3781, 7.3779, 7.3774, 7.377, 7.3767, 7.3753, 7.3761, 7.3757, 7.3753, 7.3753, 7.3749, 7.3745, 7.3741, 7.3737, 7.3732, 7.3739, 7.3735, 7.3731, 7.3727, 7.3722, 7.3721, 7.3718, 7.3714, 7.3721, 7.3718, 7.3704, 7.37, 7.3715, 7.3712, 7.3708, 7.3704, 7.37, 7.3696, 7.3716, 7.3739, 7.3736, 7.3736, 7.3732, 7.3728, 7.3724, 7.3732, 7.374, 7.3737, 7.3733, 7.374, 7.3736, 7.3733, 7.3729, 7.3725, 7.3721, 7.3728, 7.3724, 7.372, 7.3716, 7.3724, 7.372, 7.3728, 7.3736, 7.3731, 7.3727, 7.3723, 7.3719, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3725, 7.372, 7.3717, 7.3713, 7.371, 7.3707, 7.3725, 7.3722, 7.3718, 7.3714, 7.371, 7.3718, 7.3713, 7.3721, 7.3716, 7.3712, 7.3724, 7.3719, 7.3716, 7.3712, 7.372, 7.3717, 7.3713, 7.3721, 7.3719, 7.3715, 7.3711, 7.3719, 7.3717, 7.3726, 7.3728, 7.3747, 7.3743, 7.374, 7.3737, 7.3733, 7.3743, 7.374, 7.3748, 7.3743, 7.3739, 7.3753, 7.3749, 7.3749, 7.3756, 7.3752, 7.3748, 7.3744, 7.3741, 7.3737, 7.3761, 7.3769, 7.3765, 7.3772, 7.3802, 7.3798, 7.3801, 7.3798, 7.3789, 7.38, 7.38, 7.3789, 7.3785, 7.3782, 7.3778, 7.3774, 7.3759, 7.3766, 7.3762, 7.3758, 7.3756, 7.3752, 7.3748, 7.3745, 7.3752, 7.3766, 7.3763, 7.3759, 7.3767, 7.3781, 7.3777, 7.3787, 7.3783, 7.38, 7.3808, 7.3843, 7.3842, 7.3838, 7.3833, 7.3869, 7.3864, 7.386, 7.3867, 7.3876, 7.3883, 7.3881, 7.3877, 7.3884, 7.388, 7.3878, 7.3873, 7.387, 7.3877, 7.3874, 7.3871, 7.3884, 7.3891, 7.3902, 7.3898, 7.3894, 7.3891, 7.3892, 7.3888, 7.3874, 7.387, 7.3878, 7.3875, 7.3884, 7.3881, 7.3877, 7.3873, 7.388, 7.3876, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3865, 7.3861, 7.389, 7.3886, 7.3882, 7.388, 7.3876, 7.3872, 7.3868, 7.3866, 7.3873, 7.387, 7.3866, 7.3852, 7.3848, 7.3844, 7.384, 7.3837, 7.3846, 7.3842, 7.384, 7.3837, 7.3835, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3823, 7.3819, 7.3843, 7.3839, 7.3847, 7.3854, 7.3877, 7.3873, 7.3869, 7.3865, 7.3861, 7.3858, 7.3854, 7.385, 7.3857, 7.3854, 7.3861, 7.3858, 7.3854, 7.3862, 7.3861, 7.3857, 7.3856, 7.3854, 7.385, 7.3846, 7.3843, 7.3839, 7.3835, 7.3832, 7.3829, 7.3825, 7.3813, 7.3811, 7.3849, 7.3845, 7.3844, 7.384, 7.3837, 7.3834, 7.383, 7.384, 7.3838, 7.3834, 7.3821, 7.3817, 7.3815, 7.3812, 7.3819, 7.3816, 7.3824, 7.383, 7.3828, 7.3824, 7.381, 7.3806, 7.3803, 7.3799, 7.3795, 7.3791, 7.3798, 7.3806, 7.3813, 7.381, 7.3807, 7.3805, 7.3801, 7.3798, 7.3795, 7.3791, 7.3787, 7.3794, 7.379, 7.3797, 7.3804, 7.3803, 7.381, 7.3817, 7.3813, 7.3809, 7.3806, 7.3803, 7.3799, 7.3796, 7.3796, 7.3792, 7.3811, 7.3809, 7.3805, 7.3801, 7.3797, 7.3793, 7.3791, 7.3787, 7.3794, 7.3791, 7.3798, 7.3797, 7.3793, 7.3789, 7.3796, 7.3808, 7.3805, 7.3802, 7.3809, 7.3805, 7.3803, 7.3799, 7.3797, 7.3796, 7.3793, 7.379, 7.3786, 7.3782, 7.3778, 7.3776, 7.3783, 7.3789, 7.3785, 7.3815, 7.3811, 7.381, 7.3807, 7.3814, 7.381, 7.3806, 7.3813, 7.3819, 7.3826, 7.3833, 7.3829, 7.3836, 7.3843, 7.385, 7.3846, 7.3842, 7.3838, 7.3834, 7.3831, 7.3829, 7.3825, 7.3832, 7.3868, 7.3864, 7.3863, 7.3859, 7.3855, 7.3851, 7.3848, 7.3835, 7.3851, 7.3847, 7.3843, 7.385, 7.3836, 7.3832, 7.3828, 7.3824, 7.382, 7.3827, 7.3824, 7.382, 7.3827, 7.3823, 7.3819, 7.3827, 7.3827, 7.3823, 7.383, 7.3827, 7.3833, 7.3836, 7.3834, 7.3832, 7.3839, 7.3836, 7.3836, 7.3832, 7.3832, 7.3829, 7.3826, 7.3822, 7.3819, 7.3815, 7.3811, 7.3817, 7.3814, 7.3812, 7.3818, 7.3815, 7.3832, 7.383, 7.3827, 7.3823, 7.3819, 7.3817, 7.3814, 7.3821, 7.3823, 7.3821, 7.3818, 7.3814, 7.381, 7.3806, 7.3813, 7.381, 7.3817, 7.3813, 7.3809, 7.3807, 7.3804, 7.38, 7.3796, 7.3802, 7.3804, 7.3813, 7.382, 7.3821, 7.3817, 7.3824, 7.383, 7.3816, 7.3813, 7.3809, 7.3805, 7.3814, 7.3811, 7.381, 7.3817, 7.3813, 7.3809, 7.3805, 7.3803, 7.38, 7.3829, 7.3869, 7.3878, 7.3875, 7.3875, 7.3882, 7.3878, 7.3874, 7.387, 7.3858, 7.3854, 7.385, 7.3852, 7.385, 7.3846, 7.3853, 7.3849, 7.3845, 7.3842, 7.3838, 7.3844, 7.3832, 7.3828, 7.3846, 7.3843, 7.3849, 7.3845, 7.3841, 7.3848, 7.3844, 7.3841, 7.3837, 7.3833, 7.3832, 7.3828, 7.3839, 7.3835, 7.3831, 7.3827, 7.3825, 7.3832, 7.3829, 7.3827, 7.385, 7.3863, 7.3859, 7.3865, 7.3871, 7.3867, 7.3863, 7.3872, 7.3868, 7.3866, 7.3885, 7.3872, 7.3869, 7.3865, 7.3872, 7.3869, 7.3898, 7.3906, 7.3903, 7.39, 7.3896, 7.3904, 7.3901, 7.3897, 7.3893, 7.3899, 7.3905, 7.3913, 7.3909, 7.3905, 7.3902, 7.3898, 7.3904, 7.39, 7.3898, 7.3957, 7.3953, 7.394, 7.3947, 7.3975, 7.3982, 7.3978, 7.3987, 7.3984, 7.3981, 7.3998, 7.4006, 7.4024, 7.4021, 7.4018, 7.4014, 7.4012, 7.4009, 7.4006, 7.4002, 7.4004, 7.4, 7.4007, 7.4015, 7.4012, 7.4008, 7.4007, 7.4013, 7.402, 7.4017, 7.4015, 7.4012, 7.4019, 7.4015, 7.4012, 7.4009, 7.4006, 7.4003, 7.401, 7.4016, 7.4022, 7.4018, 7.4014, 7.4011, 7.4007, 7.4004, 7.4001, 7.3998, 7.3995, 7.4002, 7.3999, 7.3997, 7.3994, 7.3991, 7.3987, 7.3984, 7.3981, 7.3979, 7.3986, 7.3984, 7.3982, 7.3979, 7.3996, 7.3992, 7.3989, 7.3986, 7.3993, 7.3989, 7.3986, 7.3982, 7.3978, 7.3975, 7.3971, 7.3967, 7.3963, 7.3971, 7.3978, 7.3974, 7.397, 7.3966, 7.3963, 7.396, 7.3966, 7.3962, 7.3958, 7.3954, 7.395, 7.3957, 7.3963, 7.3969, 7.3966, 7.3963, 7.397, 7.3966, 7.3963, 7.3961, 7.3967, 7.3974, 7.3982, 7.3978, 7.3974, 7.3971, 7.3967, 7.3966, 7.3962, 7.3969, 7.3965, 7.3963, 7.3969, 7.3977, 7.3988, 7.3995, 7.4002, 7.401, 7.4017, 7.4014, 7.4014, 7.4011, 7.4007, 7.4014, 7.4021, 7.4018, 7.4015, 7.4047, 7.4045, 7.4041, 7.4047, 7.4054, 7.406, 7.4057, 7.4064, 7.406, 7.4067, 7.4063, 7.407, 7.4069, 7.4066, 7.4064, 7.4061, 7.4057, 7.407, 7.4067, 7.4074, 7.4071, 7.4089, 7.4086, 7.4093, 7.409, 7.4101, 7.4097, 7.4094, 7.411, 7.4117, 7.4107, 7.4104, 7.4091, 7.4088, 7.4085, 7.4082, 7.4129, 7.4136, 7.4132, 7.4139, 7.4146, 7.4153, 7.415, 7.4146, 7.4142, 7.4139, 7.416, 7.4166, 7.4172, 7.4168, 7.4164, 7.417, 7.4168, 7.4175, 7.4171, 7.4167, 7.4173, 7.4171, 7.4177, 7.4173, 7.418, 7.4186, 7.4182, 7.4179, 7.4175, 7.4175, 7.4171, 7.4168, 7.4164, 7.4171, 7.4177, 7.4174, 7.4171, 7.4189, 7.4186, 7.4182, 7.4179, 7.4176, 7.4173, 7.4169, 7.4165, 7.4171, 7.4167, 7.4174, 7.418, 7.4186, 7.4192, 7.4189, 7.4179, 7.421, 7.4218, 7.4216, 7.4223, 7.422, 7.4217, 7.4224, 7.423, 7.4237, 7.4244, 7.424, 7.4236, 7.4242, 7.4239, 7.4236, 7.4232, 7.4238, 7.4244, 7.4251, 7.4258, 7.4254, 7.425, 7.4246, 7.4243, 7.4242, 7.4254, 7.4251, 7.425, 7.4259, 7.4259, 7.4256, 7.4247, 7.4244, 7.4241, 7.4238, 7.4244, 7.425, 7.4246, 7.4253, 7.4249, 7.4246, 7.4252, 7.4259, 7.4255, 7.4262, 7.4269, 7.4276, 7.4283, 7.4291, 7.4298, 7.4295, 7.4292, 7.4299, 7.4295], '192.168.122.113': [10.9024, 8.1601, 7.208, 6.8129, 6.6064, 6.4637, 6.4441, 6.4141, 6.2927, 6.2657, 6.209, 6.2029, 6.1718, 6.2001, 6.1376, 5.7958, 6.0899, 6.3522, 6.3098, 6.2653, 6.2386, 6.4406, 6.4073, 6.3661, 6.5319, 6.5282, 6.4957, 6.4948, 6.4635, 6.4318, 6.933, 7.0558, 7.0084, 6.9785, 6.9424, 6.9036, 7.1504, 7.1154, 7.0698, 7.1662, 7.1418, 7.1303, 6.9857, 6.947, 6.923, 6.8968, 6.8623, 6.8461, 6.824, 6.8033, 6.8758, 7.0579, 7.0411, 7.2128, 7.1765, 7.1528, 7.2253, 7.2043, 7.2593, 7.2253, 7.2802, 7.2483, 7.2173, 7.1963, 7.1785, 7.1777, 7.1604, 7.2144, 7.1857, 7.1723, 7.083, 7.0612, 7.0377, 7.0892, 7.0657, 7.048, 7.2915, 7.3357, 7.3171, 7.3073, 7.3589, 7.3331, 7.3091, 7.2862, 7.2625, 7.2407, 7.2196, 7.2166, 7.1978, 7.1889, 7.1719, 7.2114, 7.2554, 7.3003, 7.2838, 7.2718, 7.2622, 7.2559, 7.3613, 7.3944, 7.3793, 7.3601, 7.3464, 7.3279, 7.309, 7.2957, 7.2875, 7.3211, 7.3541, 7.3348, 7.364, 7.3601, 7.3464, 7.3282, 7.3606, 7.3929, 7.421, 7.4094, 7.3951, 7.3418, 7.3287, 7.362, 7.3493, 7.3777, 7.3701, 7.3957, 7.3879, 7.3787, 7.3739, 7.3635, 7.347, 7.3378, 7.3252, 7.3127, 7.2981, 7.2899, 7.2836, 7.2697, 7.2562, 7.2472, 7.2353, 7.2602, 7.252, 7.2385, 7.2597, 7.2505, 7.2743, 7.2611, 7.2918, 7.3184, 7.3057, 7.3283, 7.3156, 7.3058, 7.2959, 7.2837, 7.2782, 7.2667, 7.2553, 7.2427, 7.2306, 7.22, 7.212, 7.2013, 7.1993, 7.1973, 7.2199, 7.242, 7.2347, 7.2566, 7.2453, 7.2695, 7.2608, 7.2523, 7.2437, 7.2354, 7.2292, 7.2197, 7.1824, 7.1742, 7.1661, 7.16, 7.1501, 7.1678, 7.1881, 7.2053, 7.1967, 7.3323, 7.3216, 7.3966, 7.3854, 7.3783, 7.3726, 7.3912, 7.4113, 7.4294, 7.4185, 7.4074, 7.403, 7.3697, 7.362, 7.3794, 7.3691, 7.3647, 7.3552, 7.3505, 7.3678, 7.3847, 7.3754, 7.3653, 7.3552, 7.395, 7.3896, 7.3597, 7.352, 7.4208, 7.4369, 7.4278, 7.4315, 7.4465, 7.4383, 7.4294, 7.4225, 7.4176, 7.4109, 7.4043, 7.4195, 7.4133, 7.4041, 7.3956, 7.3906, 7.382, 7.3731, 7.3664, 7.3815, 7.3754, 7.3684, 7.4081, 7.4013, 7.3971, 7.3909, 7.3845, 7.3767, 7.37, 7.3647, 7.366, 7.3644, 7.3584, 7.3523, 7.3647, 7.3807, 7.3547, 7.3478, 7.3404, 7.3353, 7.33, 7.3241, 7.3392, 7.3528, 7.3492, 7.3412, 7.3335, 7.3465, 7.3386, 7.3504, 7.3432, 7.3567, 7.3693, 7.3621, 7.3553, 7.3489, 7.3418, 7.3548, 7.3491, 7.361, 7.3541, 7.4057, 7.3987, 7.3931, 7.3879, 7.3842, 7.3773, 7.3754, 7.3881, 7.388, 7.388, 7.3825, 7.3955, 7.3917, 7.3844, 7.3776, 7.3751, 7.3784, 7.3748, 7.3702, 7.4149, 7.4079, 7.4069, 7.4025, 7.4041, 7.3862, 7.3718, 7.4014, 7.3942, 7.4017, 7.3965, 7.4063, 7.4101, 7.4066, 7.4004, 7.3959, 7.3906, 7.3841, 7.3805, 7.3745, 7.3701, 7.3655, 7.3607, 7.3564, 7.3519, 7.3955, 7.3893, 7.3826, 7.393, 7.3886, 7.3825, 7.3812, 7.3751, 7.3691, 7.3796, 7.3732, 7.3695, 7.3639, 7.3579, 7.3528, 7.3474, 7.3582, 7.3526, 7.3489, 7.36, 7.3546, 7.3491, 7.345, 7.3407, 7.3357, 7.3616, 7.3569, 7.3509, 7.3452, 7.3544, 7.3495, 7.3442, 7.3398, 7.3369, 7.3311, 7.3274, 7.3218, 7.319, 7.3164, 7.3111, 7.3059, 7.3003, 7.2956, 7.2906, 7.2861, 7.2864, 7.301, 7.2966, 7.2784, 7.2747, 7.286, 7.2835, 7.2802, 7.2749, 7.2708, 7.253, 7.2516, 7.25, 7.2447, 7.2399, 7.2376, 7.233, 7.2292, 7.2126, 7.2092, 7.2042, 7.203, 7.2128, 7.208, 7.2172, 7.2291, 7.2408, 7.2442, 7.2399, 7.2361, 7.2462, 7.2557, 7.2518, 7.2755, 7.2921, 7.2887, 7.2845, 7.28, 7.3019, 7.2974, 7.3094, 7.2933, 7.2888, 7.2842, 7.2933, 7.2776, 7.274, 7.2702, 7.2658, 7.261, 7.2578, 7.2537, 7.2626, 7.2586, 7.2541, 7.2511, 7.2466, 7.2422, 7.2519, 7.26, 7.2689, 7.2656, 7.2504, 7.2457, 7.2544, 7.2523, 7.2492, 7.2566, 7.2651, 7.2727, 7.2815, 7.2786, 7.2761, 7.2718, 7.2708, 7.2674, 7.2639, 7.2603, 7.2564, 7.2542, 7.2551, 7.2511, 7.2474, 7.2558, 7.2528, 7.2512, 7.2584, 7.2554, 7.2539, 7.2501, 7.2458, 7.242, 7.2405, 7.2486, 7.2562, 7.254, 7.263, 7.2602, 7.256, 7.2532, 7.2391, 7.2351, 7.2426, 7.2393, 7.2466, 7.2423, 7.2608, 7.2681, 7.2655, 7.2613, 7.2594, 7.2574, 7.2541, 7.2503, 7.2468, 7.2427, 7.2506, 7.2477, 7.2448, 7.241, 7.2371, 7.2333, 7.2408, 7.2381, 7.234, 7.2315, 7.2459, 7.2421, 7.2404, 7.2471, 7.2439, 7.2407, 7.2373, 7.2545, 7.2633, 7.262, 7.2599, 7.2577, 7.2543, 7.2618, 7.2689, 7.2777, 7.2749, 7.271, 7.2783, 7.2745, 7.2815, 7.2885, 7.2847, 7.2811, 7.288, 7.2848, 7.3027, 7.2993, 7.306, 7.304, 7.3009, 7.308, 7.3041, 7.311, 7.3089, 7.3128, 7.3556, 7.3524, 7.3495, 7.3461, 7.3432, 7.3499, 7.3573, 7.3679, 7.3648, 7.3612, 7.3682, 7.3657, 7.3722, 7.3701, 7.3662, 7.3627, 7.3588, 7.3649, 7.3614, 7.3578, 7.3691, 7.3663, 7.3626, 7.3592, 7.3478, 7.3442, 7.3407, 7.3383, 7.3365, 7.333, 7.3315, 7.3281, 7.3245, 7.3221, 7.3208, 7.3173, 7.3057, 7.3025, 7.3012, 7.2979, 7.3043, 7.3018, 7.2985, 7.3045, 7.3017, 7.2995, 7.2971, 7.2938, 7.2999, 7.2966, 7.2943, 7.2912, 7.2887, 7.2854, 7.2838, 7.2806, 7.2802, 7.2803, 7.2862, 7.2844, 7.2989, 7.3051, 7.3033, 7.3008, 7.2984, 7.3038, 7.3014, 7.308, 7.3061, 7.313, 7.3112, 7.3084, 7.3144, 7.3114, 7.318, 7.315, 7.3119, 7.3176, 7.317, 7.315, 7.321, 7.318, 7.3148, 7.3116, 7.3162, 7.3134, 7.3101, 7.307, 7.3041, 7.3012, 7.3069, 7.3129, 7.3105, 7.3165, 7.3223, 7.3207, 7.3264, 7.3313, 7.3279, 7.3288, 7.3258, 7.3315, 7.3294, 7.3264, 7.3235, 7.3233, 7.329, 7.3345, 7.3312, 7.3294, 7.3284, 7.3264, 7.3231, 7.3282, 7.325, 7.3217, 7.312, 7.3177, 7.3161, 7.3056, 7.3111, 7.3167, 7.3137, 7.3111, 7.3086, 7.3216, 7.3187, 7.3243, 7.3137, 7.3192, 7.3189, 7.3165, 7.3143, 7.3146, 7.3117, 7.3166, 7.3223, 7.3227, 7.32, 7.3173, 7.3228, 7.3279, 7.3278, 7.3252, 7.3224, 7.3196, 7.3188, 7.3163, 7.3219, 7.319, 7.3161, 7.3131, 7.3103, 7.3243, 7.3214, 7.3199, 7.3171, 7.3219, 7.3192, 7.3164, 7.3143, 7.3115, 7.3086, 7.3066, 7.3114, 7.318, 7.3162, 7.3134, 7.3106, 7.3111, 7.3089, 7.3061, 7.3109, 7.3161, 7.3134, 7.3106, 7.3164, 7.3221, 7.3199, 7.3173, 7.3168, 7.314, 7.3194, 7.3248, 7.3221, 7.3279, 7.3252, 7.3299, 7.3283, 7.3263, 7.3237, 7.3213, 7.3193, 7.3169, 7.3144, 7.3055, 7.303, 7.3015, 7.3015, 7.3007, 7.298, 7.2962, 7.3118, 7.3095, 7.3076, 7.3051, 7.3027, 7.3077, 7.3051, 7.3023, 7.3014, 7.2989, 7.2962, 7.2937, 7.2925, 7.29, 7.2886, 7.2931, 7.2905, 7.2881, 7.2856, 7.2838, 7.2884, 7.2857, 7.2839, 7.2885, 7.2866, 7.2919, 7.2892, 7.2866, 7.2843, 7.2822, 7.2868, 7.291, 7.2921, 7.3001, 7.2975, 7.304, 7.3028, 7.3074, 7.306, 7.3106, 7.3082, 7.3129, 7.3174, 7.3156, 7.3071, 7.3052, 7.3027, 7.3011, 7.3055, 7.2989, 7.3067, 7.3387, 7.3367, 7.342, 7.3404, 7.3384, 7.3364, 7.3406, 7.3391, 7.3372, 7.3289, 7.327, 7.3313, 7.3289, 7.3334, 7.3316, 7.3293, 7.3398, 7.3377, 7.3409, 7.3384, 7.3365, 7.3342, 7.3316, 7.3298, 7.3275, 7.3294, 7.3269, 7.3244, 7.3218, 7.3258, 7.3237, 7.3211, 7.3186, 7.3165, 7.315, 7.3124, 7.3106, 7.3147, 7.3121, 7.3096, 7.3074, 7.3066, 7.3046, 7.3022, 7.2998, 7.2974, 7.2956, 7.2942, 7.292, 7.291, 7.2894, 7.2937, 7.2923, 7.29, 7.2886, 7.288, 7.2856, 7.284, 7.2822, 7.2804, 7.2785, 7.2761, 7.274, 7.2719, 7.2704, 7.2746, 7.2725, 7.2711, 7.2688, 7.2704, 7.2681, 7.2725, 7.2701, 7.2746, 7.2686, 7.2677, 7.2681, 7.2661, 7.2699, 7.2675, 7.2653, 7.2578, 7.2561, 7.2664, 7.2642, 7.2627, 7.2556, 7.2654, 7.2632, 7.2611, 7.2592, 7.2633, 7.2675, 7.2716, 7.2693, 7.2671, 7.2777, 7.2827, 7.2809, 7.2788, 7.2785, 7.282, 7.2863, 7.2839, 7.2827, 7.2808, 7.2845, 7.3067, 7.3045, 7.3085, 7.3147, 7.3124, 7.3102, 7.3142, 7.3181, 7.316, 7.3139, 7.3117, 7.3096, 7.309, 7.3089, 7.3071, 7.3053, 7.3043, 7.3021, 7.3001, 7.2985, 7.2913, 7.2893, 7.2873, 7.291, 7.2892, 7.3075, 7.3115, 7.3096, 7.3085, 7.3132, 7.3112, 7.3091, 7.313, 7.317, 7.3209, 7.3194, 7.3171, 7.315, 7.3413, 7.34, 7.3378, 7.3363, 7.3342, 7.332, 7.336, 7.334, 7.3381, 7.3362, 7.3342, 7.3331, 7.3373, 7.336, 7.3341, 7.3385, 7.3422, 7.3482, 7.3467, 7.3446, 7.3424, 7.3464, 7.3444, 7.3482, 7.341, 7.3389, 7.3432, 7.3468, 7.3503, 7.3553, 7.3532, 7.3575, 7.3563, 7.3552, 7.3536, 7.3521, 7.3506, 7.3485, 7.3417, 7.3449, 7.3432, 7.3418, 7.3398, 7.3384, 7.3369, 7.3353, 7.3336, 7.3315, 7.3296, 7.3331, 7.3315, 7.3298, 7.3334, 7.337, 7.3402, 7.3394, 7.3383, 7.3367, 7.3464, 7.3456, 7.344, 7.3428, 7.3412, 7.3391, 7.3381, 7.3362, 7.3377, 7.3364, 7.3343, 7.3323, 7.3303, 7.3287, 7.3324, 7.3312, 7.3293, 7.3383, 7.3368, 7.3368, 7.3348, 7.333, 7.3313, 7.3294, 7.3276, 7.3256, 7.324, 7.3273, 7.3255, 7.3242, 7.3229, 7.321, 7.3247, 7.3282, 7.3266, 7.3253, 7.3235, 7.3268, 7.3248, 7.3229, 7.3271, 7.3306, 7.329, 7.3321, 7.3307, 7.3289, 7.3274, 7.3208, 7.319, 7.3224, 7.3214, 7.3202, 7.3197, 7.318, 7.3165, 7.3155, 7.3141, 7.3171, 7.316, 7.3143, 7.3134, 7.3069, 7.3167, 7.3203, 7.3201, 7.3212, 7.3204, 7.3263, 7.3257, 7.3241, 7.3228, 7.322, 7.3307, 7.3293, 7.3279, 7.3269, 7.3407, 7.355, 7.3534, 7.3523, 7.353, 7.3588, 7.3577, 7.3563, 7.3544, 7.3529, 7.3466, 7.3448, 7.3429, 7.3467, 7.3448, 7.3436, 7.3417, 7.3409, 7.3443, 7.3473, 7.346, 7.349, 7.3473, 7.3506, 7.3493, 7.3524, 7.3465, 7.3455, 7.3492, 7.3525, 7.3518, 7.3505, 7.3492, 7.3527, 7.3512, 7.3498, 7.3484, 7.3465, 7.3452, 7.3487, 7.3473, 7.3501, 7.3482, 7.3488, 7.3534, 7.3515, 7.3508, 7.3445, 7.3525, 7.3508, 7.3495, 7.348, 7.3463, 7.3463, 7.3453, 7.3438, 7.3473, 7.3456, 7.3441, 7.3426, 7.341, 7.3394, 7.3384, 7.3368, 7.3352, 7.3389, 7.3374, 7.3358, 7.3511, 7.3494, 7.3519, 7.3554, 7.3692, 7.3675, 7.3704, 7.3686, 7.3668, 7.3651, 7.3637, 7.3627, 7.361, 7.3591, 7.3579, 7.361, 7.3601, 7.3627, 7.3618, 7.3605, 7.3633, 7.3661, 7.3643, 7.363, 7.3664, 7.3651, 7.3683, 7.3625, 7.3607, 7.3596, 7.3624, 7.3669, 7.3651, 7.3634, 7.3622, 7.3613, 7.3606, 7.3642, 7.3626, 7.3657, 7.3643, 7.3634, 7.3621, 7.3564, 7.3547, 7.3532, 7.3523, 7.3551, 7.3534, 7.3517, 7.3504, 7.3492, 7.3479, 7.3471, 7.3454, 7.3441, 7.3426, 7.3439, 7.3467, 7.3451, 7.3483, 7.3467, 7.345, 7.3394, 7.334, 7.3284, 7.327, 7.3256, 7.324, 7.3274, 7.3262, 7.3291, 7.3275, 7.3261, 7.3252, 7.3238, 7.3226, 7.3209, 7.3197, 7.3229, 7.3259, 7.3292, 7.3275, 7.3307, 7.3293, 7.3281, 7.3272, 7.3255, 7.3241, 7.3273, 7.3273, 7.3305, 7.3291, 7.3279, 7.3264, 7.3209, 7.3245, 7.3272, 7.3307, 7.3302, 7.3293, 7.3278, 7.3273, 7.3303, 7.3286, 7.3288, 7.3274, 7.3262, 7.3249, 7.3233, 7.3218, 7.3203, 7.3194, 7.314, 7.3178, 7.3166, 7.3149, 7.315, 7.316, 7.3119, 7.3111, 7.3097, 7.3084, 7.3031, 7.3018, 7.301, 7.3039, 7.3026, 7.3012, 7.3006, 7.2999, 7.2987, 7.2972, 7.2965, 7.2953, 7.2938, 7.2923, 7.2994, 7.3069, 7.3096, 7.3097, 7.3046, 7.3071, 7.3057, 7.3083, 7.3067, 7.3055, 7.3046, 7.3034, 7.302, 7.3045, 7.3036, 7.3024, 7.301, 7.3, 7.3025, 7.305, 7.3039, 7.3024, 7.3011, 7.2999, 7.3039, 7.2988, 7.2975, 7.2962, 7.2953, 7.2937, 7.2921, 7.2948, 7.2934, 7.2924, 7.2916, 7.2942, 7.3004, 7.2993, 7.2942, 7.2946, 7.2972, 7.3041, 7.3028, 7.3018, 7.3004, 7.3033, 7.302, 7.3011, 7.2996, 7.3047, 7.3034, 7.3019, 7.3048, 7.3037, 7.3062, 7.3053, 7.3042, 7.3029, 7.3019, 7.2967, 7.2994, 7.2984, 7.2978, 7.2965, 7.2954, 7.2942, 7.2928, 7.2914, 7.2901, 7.2928, 7.2955, 7.298, 7.2968, 7.296, 7.3109, 7.3094, 7.3082, 7.3108, 7.3092, 7.308, 7.3066, 7.3061, 7.305, 7.3036, 7.303, 7.3015, 7.3016, 7.3002, 7.2987, 7.2972, 7.2975, 7.3012, 7.3007, 7.3033, 7.302, 7.3006, 7.2999, 7.2949, 7.3082, 7.3068, 7.3055, 7.3043, 7.3042, 7.3032, 7.3019, 7.3004, 7.3023, 7.3011, 7.3037, 7.3064, 7.3056, 7.3041, 7.3027, 7.305, 7.3041, 7.3108, 7.3097, 7.3088, 7.3077, 7.3066, 7.3052, 7.304, 7.3027, 7.3023, 7.3014, 7.3012, 7.2999, 7.2985, 7.298, 7.2991, 7.3015, 7.304, 7.3028, 7.3217, 7.3244, 7.3276, 7.3231, 7.3217, 7.321, 7.3197, 7.3192, 7.3178, 7.3131, 7.3116, 7.3107, 7.3092, 7.3084, 7.311, 7.3097, 7.3084, 7.307, 7.3056, 7.3042, 7.303, 7.3016, 7.2971, 7.3005, 7.2996, 7.2951, 7.298, 7.2969, 7.2959, 7.2947, 7.2932, 7.2958, 7.2982, 7.3008, 7.2995, 7.2988, 7.298, 7.2974, 7.2964, 7.2951, 7.2939, 7.2925, 7.2913, 7.2904, 7.2891, 7.2879, 7.2869, 7.2859, 7.2851, 7.284, 7.2829, 7.2818, 7.281, 7.2802, 7.2788, 7.2777, 7.2767, 7.2754, 7.2781, 7.2806, 7.2792, 7.2779, 7.277, 7.2776, 7.2781, 7.2767, 7.2762, 7.2803, 7.2802, 7.2792, 7.2782, 7.2768, 7.2757, 7.2747, 7.2733, 7.276, 7.2749, 7.2775, 7.2763, 7.2751, 7.2747, 7.2736, 7.2725, 7.275, 7.2737, 7.2725, 7.2715, 7.2701, 7.2727, 7.2716, 7.2706, 7.2693, 7.2685, 7.2677, 7.267, 7.2657, 7.2647, 7.2671, 7.2659, 7.2649, 7.2652, 7.2639, 7.2627, 7.2614, 7.2635, 7.2622, 7.261, 7.2597, 7.2586, 7.261, 7.2599, 7.2586, 7.2574, 7.2746, 7.2735, 7.276, 7.2748, 7.2743, 7.2738, 7.2725, 7.2713, 7.2704, 7.2696, 7.2684, 7.268, 7.2637, 7.2629, 7.2654, 7.2641, 7.2631, 7.2619, 7.2611, 7.2598, 7.262, 7.2577, 7.2571, 7.264, 7.2628, 7.2616, 7.2606, 7.2629, 7.2652, 7.2639, 7.2628, 7.2651, 7.2639, 7.2642, 7.263, 7.262, 7.2611, 7.26, 7.2589, 7.2546, 7.2534, 7.2527, 7.2518, 7.2509, 7.2504, 7.2494, 7.249, 7.2478, 7.2465, 7.2455, 7.2445, 7.247, 7.2493, 7.2515, 7.2538, 7.2534, 7.2523, 7.2511, 7.2507, 7.2555, 7.2547, 7.2541, 7.2531, 7.252, 7.251, 7.2499, 7.2494, 7.2482, 7.247, 7.2462, 7.2485, 7.2479, 7.2467, 7.2492, 7.2483, 7.2476, 7.2464, 7.246, 7.2448, 7.2439, 7.2427, 7.2441, 7.2435, 7.2426, 7.2414, 7.2437, 7.2427, 7.242, 7.2414, 7.2406, 7.2401, 7.2421, 7.241, 7.24, 7.2426, 7.2423, 7.2413, 7.2406, 7.2402, 7.2394, 7.2382, 7.237, 7.236, 7.2348, 7.2338, 7.2296, 7.2286, 7.2278, 7.2266, 7.2235, 7.2227, 7.2217, 7.2208, 7.22, 7.22, 7.2189, 7.2184, 7.2173, 7.2162, 7.2151, 7.2141, 7.2131, 7.2119, 7.214, 7.2131, 7.2119, 7.2143, 7.2137, 7.2128, 7.2116, 7.2137, 7.2126, 7.2116, 7.2104, 7.2093, 7.2082, 7.2073, 7.2062, 7.2052, 7.2047, 7.2037, 7.2027, 7.2017, 7.201, 7.204, 7.2063, 7.2051, 7.2043, 7.2035, 7.2056, 7.2096, 7.2118, 7.2112, 7.2103, 7.2094, 7.2084, 7.2074, 7.2041, 7.2061, 7.2049, 7.2071, 7.2093, 7.2081, 7.2073, 7.2063, 7.2057, 7.2051, 7.2047, 7.2068, 7.2092, 7.2083, 7.213, 7.215, 7.2177, 7.2165, 7.2186, 7.2175, 7.2197, 7.2158, 7.2215, 7.2204, 7.2225, 7.2214, 7.2226, 7.2215, 7.2236, 7.2263, 7.2256, 7.2244, 7.2253, 7.2242, 7.2235, 7.2228, 7.2224, 7.2214, 7.2205, 7.2195, 7.2186, 7.2185, 7.2178, 7.2173, 7.2196, 7.2184, 7.2172, 7.2163, 7.2183, 7.2175, 7.2166, 7.2156, 7.2177, 7.2184, 7.2205, 7.2221, 7.2212, 7.2205, 7.2198, 7.2187, 7.2179, 7.2201, 7.2192, 7.2182, 7.2202, 7.2196, 7.2186, 7.2175, 7.2164, 7.2155, 7.2149, 7.2172, 7.2191, 7.2185, 7.2178, 7.2174, 7.2166, 7.2156, 7.2145, 7.2138, 7.21, 7.2089, 7.2082, 7.2076, 7.2067, 7.2061, 7.2057, 7.2049, 7.207, 7.2082, 7.2077, 7.2096, 7.2096, 7.209, 7.2123, 7.2144, 7.2165, 7.2187, 7.2178, 7.2201, 7.219, 7.2179, 7.22, 7.2192, 7.22, 7.2221, 7.2289, 7.2282, 7.2272, 7.2293, 7.2282, 7.2304, 7.2332, 7.2357, 7.235, 7.2371, 7.2363, 7.2355, 7.2347, 7.2339, 7.2329, 7.2348, 7.2338, 7.2333, 7.2354, 7.2345, 7.2358, 7.2349, 7.234, 7.2329, 7.2339, 7.2329, 7.2349, 7.2339, 7.2331, 7.2322, 7.2313, 7.2414, 7.2404, 7.2426, 7.242, 7.2412, 7.2433, 7.2423, 7.2413, 7.2433, 7.2434, 7.2455, 7.2446, 7.2468, 7.2488, 7.2479, 7.25, 7.2493, 7.2484, 7.2473, 7.2465, 7.2454, 7.2447, 7.2436, 7.2428, 7.2446, 7.2439, 7.2429, 7.2419, 7.2409, 7.2399, 7.2394, 7.2386, 7.2411, 7.2403, 7.2424, 7.2441, 7.2459, 7.2449, 7.244, 7.2431, 7.245, 7.2442, 7.2433, 7.2425, 7.2442, 7.2432, 7.2422, 7.2416, 7.2405, 7.2421, 7.241, 7.2401, 7.2393, 7.2383, 7.2376, 7.2344, 7.2364, 7.2359, 7.2381, 7.2372, 7.2362, 7.24, 7.2424, 7.2419, 7.2409, 7.2401, 7.2393, 7.2414, 7.2407, 7.2397, 7.2393, 7.241, 7.2405, 7.2395, 7.2385, 7.2395, 7.2415, 7.2406, 7.2396, 7.2387, 7.2382, 7.2374, 7.2367, 7.2359, 7.2355, 7.2346, 7.2339, 7.236, 7.2353, 7.2343, 7.2333, 7.2334, 7.2325, 7.2316, 7.2342, 7.2336, 7.2331, 7.2324, 7.2321, 7.2311, 7.2304, 7.2294, 7.2314, 7.2306, 7.2296, 7.2287, 7.2278, 7.2269, 7.2259, 7.2278, 7.2273, 7.2264, 7.2259, 7.2258, 7.2249, 7.2243, 7.2263, 7.2257, 7.2248, 7.2276, 7.2267, 7.2285, 7.2282, 7.2275, 7.2288, 7.2279, 7.2269, 7.2288, 7.2309, 7.233, 7.2324, 7.2322, 7.2343, 7.2336, 7.2327, 7.2331, 7.2337, 7.2361, 7.2354, 7.2348, 7.234, 7.2332, 7.2324, 7.2343, 7.2335, 7.2326, 7.2319, 7.2337, 7.2327, 7.2318, 7.2325, 7.2315, 7.2311, 7.2328, 7.2324, 7.2322, 7.243, 7.2448, 7.2464, 7.2586, 7.2604, 7.2621, 7.264, 7.2659, 7.2653, 7.2644, 7.2663, 7.2679, 7.2669, 7.2688, 7.2686, 7.2676, 7.2666, 7.2657, 7.2733, 7.27, 7.2691, 7.2687, 7.2707, 7.2673, 7.2696, 7.269, 7.2708, 7.2702, 7.2694, 7.2685, 7.2741, 7.2763, 7.2758, 7.2749, 7.2766, 7.2761, 7.2766, 7.2733, 7.2725, 7.2716, 7.2706, 7.2702, 7.2718, 7.2709, 7.27, 7.2691, 7.2683, 7.2699, 7.2689, 7.271, 7.2701, 7.2695, 7.2685, 7.2675, 7.2665, 7.2657, 7.2654, 7.2644, 7.2635, 7.2626, 7.2643, 7.2659, 7.2653, 7.2671, 7.2689, 7.2657, 7.2648, 7.2666, 7.2661, 7.2678, 7.2675, 7.2757, 7.2774, 7.2791, 7.2784, 7.2792, 7.2759, 7.275, 7.2767, 7.2785, 7.2803, 7.2794, 7.2785, 7.2776, 7.2767, 7.2763, 7.2754, 7.2798, 7.2819, 7.2812, 7.2813, 7.2834, 7.2827, 7.2817, 7.2832, 7.2824, 7.2843, 7.2835, 7.2828, 7.2848, 7.2842, 7.2855, 7.2846, 7.2838, 7.2831, 7.2823, 7.2816, 7.2809, 7.28, 7.2791, 7.2782, 7.2759, 7.2777, 7.2773, 7.2792, 7.2785, 7.2802, 7.2793, 7.2783, 7.2774, 7.2844, 7.286, 7.2857, 7.2874, 7.2865, 7.2855, 7.2851, 7.2842, 7.2833, 7.2825, 7.2816, 7.2808, 7.2799, 7.2792, 7.2808, 7.2825, 7.2854, 7.2844, 7.2861, 7.2852, 7.2843, 7.2862, 7.2879, 7.2896, 7.2886, 7.2903, 7.2894, 7.2915, 7.2933, 7.2924, 7.2915, 7.2906, 7.2897, 7.2888, 7.2882, 7.2911, 7.2928, 7.2918, 7.2909, 7.2901, 7.2892, 7.2884, 7.29, 7.2891, 7.2907, 7.29, 7.2896, 7.289, 7.288, 7.2896, 7.2864, 7.2856, 7.2877, 7.2873, 7.2865, 7.2856, 7.288, 7.2895, 7.2924, 7.2943, 7.2946, 7.3013, 7.3005, 7.3046, 7.3063, 7.3195, 7.321, 7.3227, 7.3248, 7.3241, 7.3234, 7.3227, 7.3219, 7.3236, 7.3241, 7.3272, 7.3269, 7.3262, 7.3253, 7.3244, 7.326, 7.3251, 7.3242, 7.3258, 7.325, 7.3241, 7.3232, 7.3238, 7.3229, 7.3245, 7.3238, 7.3254, 7.3269, 7.3287, 7.3302, 7.3319, 7.3313, 7.3304, 7.3296, 7.3287, 7.3304, 7.332, 7.3336, 7.3328, 7.3322, 7.3313, 7.3308, 7.3335, 7.3331, 7.3323, 7.3372, 7.3369, 7.336, 7.335, 7.3384, 7.3376, 7.3392, 7.3385, 7.3376, 7.3368, 7.336, 7.3376, 7.3368, 7.3359, 7.3356, 7.335, 7.3342, 7.3349, 7.3366, 7.3357, 7.3372, 7.3364, 7.3355, 7.3347, 7.3339, 7.3332, 7.3349, 7.3341, 7.3357, 7.3349, 7.3354, 7.3347, 7.3361, 7.3353, 7.3349, 7.3339, 7.333, 7.3321, 7.3312, 7.3303, 7.3301, 7.3295, 7.3287, 7.3279, 7.3294, 7.3286, 7.3277, 7.3291, 7.3283, 7.3274, 7.3316, 7.3311, 7.3304, 7.3297, 7.3312, 7.3328, 7.3343, 7.3314, 7.3306, 7.3297, 7.3312, 7.3304, 7.3299, 7.3305, 7.3296, 7.3314, 7.3309, 7.3302, 7.3318, 7.3345, 7.3371, 7.3365, 7.3358, 7.3351, 7.3366, 7.3357, 7.3351, 7.3344, 7.3336, 7.3329, 7.3322, 7.3338, 7.3355, 7.3348, 7.334, 7.3332, 7.3325, 7.3316, 7.3309, 7.3301, 7.3293, 7.3284, 7.3276, 7.3268, 7.3262, 7.3278, 7.3273, 7.3265, 7.3281, 7.3275, 7.327, 7.3261, 7.3253, 7.325, 7.3241, 7.3233, 7.3225, 7.3216, 7.3207, 7.3222, 7.3215, 7.3207, 7.3202, 7.3203, 7.3197, 7.3211, 7.3203, 7.3196, 7.3189, 7.3183, 7.3176, 7.3169, 7.3164, 7.3157, 7.3149, 7.3142, 7.3141, 7.3134, 7.3126, 7.3117, 7.3109, 7.3111, 7.3104, 7.3098, 7.3095, 7.3111, 7.3082, 7.3097, 7.309, 7.3062, 7.3055, 7.3048, 7.3042, 7.3037, 7.3029, 7.3023, 7.3014, 7.303, 7.3026, 7.302, 7.3012, 7.3015, 7.3011, 7.3002, 7.2997, 7.3176, 7.3169, 7.3185, 7.3176, 7.3192, 7.3187, 7.3179, 7.3194, 7.3219, 7.3246, 7.3266, 7.3258, 7.3272, 7.3266, 7.3259, 7.3253, 7.3246, 7.3218, 7.3233, 7.3247, 7.3238, 7.3231, 7.3228, 7.3226, 7.3274, 7.3272, 7.3287, 7.3303, 7.3298, 7.3293, 7.3288, 7.328, 7.3272, 7.3264, 7.3259, 7.3251, 7.3243, 7.3216, 7.3211, 7.3224, 7.3224, 7.3239, 7.3254, 7.3247, 7.3261, 7.3326, 7.3317, 7.3309, 7.3302, 7.3295, 7.3295, 7.3288, 7.3305, 7.3296, 7.3311, 7.3304, 7.3297, 7.329, 7.3282, 7.3275, 7.3269, 7.3261, 7.3254, 7.3246, 7.324, 7.3233, 7.3229, 7.3244, 7.3238, 7.3233, 7.3248, 7.3267, 7.3262, 7.3275, 7.327, 7.3286, 7.3301, 7.3292, 7.3292, 7.3309, 7.3304, 7.3295, 7.3288, 7.3282, 7.3297, 7.3288, 7.3285, 7.33, 7.3294, 7.3287, 7.328, 7.3295, 7.3363, 7.3382, 7.3396, 7.3411, 7.3403, 7.3375, 7.3367, 7.336, 7.3354, 7.3369, 7.3383, 7.3377, 7.339, 7.3434, 7.3428, 7.3422, 7.3416, 7.3408, 7.3402, 7.3396, 7.3389, 7.3408, 7.34, 7.3396, 7.3408, 7.3403, 7.3395, 7.3387, 7.3382, 7.3355, 7.3349, 7.3343, 7.3336, 7.3351, 7.3344, 7.336, 7.3353, 7.3344, 7.3356, 7.3348, 7.3341, 7.3336, 7.3331, 7.3344, 7.336, 7.3355, 7.3348, 7.3341, 7.3357, 7.3349, 7.3343, 7.3357, 7.3349, 7.3363, 7.339, 7.3363, 7.3356, 7.3348, 7.3361, 7.3375, 7.3367, 7.3361, 7.3375, 7.3369, 7.3363, 7.3376, 7.3371, 7.3366, 7.3402, 7.3395, 7.3388, 7.3382, 7.3395, 7.3388, 7.3382, 7.3376, 7.3368, 7.3398, 7.3412, 7.3405, 7.342, 7.3433, 7.3447, 7.344, 7.3454, 7.3453, 7.3427, 7.34, 7.35, 7.3494, 7.3467, 7.3465, 7.3463, 7.3457, 7.3451, 7.3447, 7.3441, 7.3457, 7.3474, 7.3468, 7.3482, 7.3474, 7.3469, 7.3472, 7.3465, 7.346, 7.3477, 7.3474, 7.3467, 7.3459, 7.3451, 7.3443, 7.3437, 7.3442, 7.3435, 7.3429, 7.3439, 7.3432, 7.3424, 7.3459, 7.3453, 7.3447, 7.3441, 7.3416, 7.341, 7.3431, 7.3445, 7.3438, 7.3434, 7.3427, 7.3421, 7.3436, 7.3428, 7.3422, 7.3417, 7.3411, 7.3403, 7.3412, 7.3405, 7.3418, 7.3431, 7.3423, 7.3415, 7.3408, 7.3401, 7.3396, 7.341, 7.3424, 7.3436, 7.3428, 7.344, 7.3433, 7.3426, 7.3419, 7.3412, 7.3412, 7.3405, 7.3404, 7.3378, 7.3386, 7.3381, 7.3397, 7.3413, 7.3407, 7.3402, 7.3398, 7.339, 7.3402, 7.3394, 7.3386, 7.3398, 7.3394, 7.3407, 7.3442, 7.3455, 7.3448, 7.3459, 7.3472, 7.3468, 7.3481, 7.3494, 7.3487, 7.348, 7.3472, 7.3467, 7.3441, 7.3455, 7.3447, 7.3442, 7.3434, 7.3448, 7.3441, 7.3434, 7.3469, 7.3483, 7.3475, 7.3468, 7.3463, 7.3458, 7.3452, 7.3463, 7.3476, 7.3469, 7.3486, 7.3461, 7.3435, 7.3448, 7.3447, 7.344, 7.3433, 7.3425, 7.3466, 7.3463, 7.3461, 7.3453, 7.3445, 7.3439, 7.3453, 7.3445, 7.3439, 7.3452, 7.3465, 7.3461, 7.3473, 7.3485, 7.3477, 7.3492, 7.3486, 7.3478, 7.3473, 7.3467, 7.346, 7.3453, 7.3466, 7.3459, 7.3453, 7.3447, 7.344, 7.3432, 7.3445, 7.3441, 7.3434, 7.3427, 7.3421, 7.3434, 7.3455, 7.345, 7.3449, 7.3441, 7.3455, 7.3469, 7.3466, 7.3459, 7.3453, 7.3446, 7.3458, 7.3451, 7.3448, 7.3441, 7.3448, 7.344, 7.3453, 7.3445, 7.3458, 7.348, 7.3473, 7.3486, 7.3479, 7.3473, 7.3467, 7.346, 7.3452, 7.3447, 7.346, 7.3453, 7.3446, 7.3439, 7.344, 7.3433, 7.3428, 7.3439, 7.3435, 7.3434, 7.3427, 7.3422, 7.3415, 7.3408, 7.3429, 7.3435, 7.3431, 7.3426, 7.3421, 7.3415, 7.3408, 7.3445, 7.344, 7.3433, 7.3429, 7.3424, 7.3418, 7.341, 7.3423, 7.3437, 7.3457, 7.347, 7.3465, 7.346, 7.3453, 7.3448, 7.3447, 7.3442, 7.3436, 7.3431, 7.3424, 7.342, 7.3413, 7.3408, 7.342, 7.3433, 7.3427, 7.3422, 7.3415, 7.3408, 7.3406, 7.3419, 7.3433, 7.3428, 7.3423, 7.3435, 7.3411, 7.3443, 7.3439, 7.3431, 7.3444, 7.3438, 7.3433, 7.3426, 7.3423, 7.3435, 7.3429, 7.3426, 7.3452, 7.3447, 7.344, 7.346, 7.3475, 7.3468, 7.346, 7.3455, 7.345, 7.3443, 7.3436, 7.3429, 7.3424, 7.3417, 7.341, 7.3407, 7.3401, 7.3394, 7.3406, 7.3399, 7.3411, 7.3404, 7.3397, 7.341, 7.3422, 7.3415, 7.3427, 7.3439, 7.3432, 7.3425, 7.3438, 7.3451, 7.3444, 7.3421, 7.3416, 7.3409, 7.3402, 7.3395, 7.339, 7.3385, 7.3381, 7.3374, 7.337, 7.3364, 7.3357, 7.3352, 7.3351, 7.3363, 7.3359, 7.3372, 7.3386, 7.3379, 7.3373, 7.3367, 7.3361, 7.3354, 7.3348, 7.3345, 7.3358, 7.3352, 7.3345, 7.3357, 7.335, 7.3344, 7.3337, 7.3332, 7.3345, 7.3361, 7.3341, 7.3336, 7.333, 7.3325, 7.3321, 7.3315, 7.3311, 7.3304, 7.3298, 7.3293, 7.3288, 7.3282, 7.3294, 7.3289, 7.3283, 7.326, 7.3254, 7.3248, 7.3243, 7.3236, 7.3229, 7.3225, 7.3219, 7.3214, 7.3208, 7.3202, 7.3195, 7.3207, 7.3201, 7.3197, 7.3209, 7.3203, 7.3216, 7.3229, 7.3241, 7.3235, 7.3246, 7.324, 7.3235, 7.3229, 7.3223, 7.3236, 7.3247, 7.3241, 7.3254, 7.3249, 7.3243, 7.3239, 7.3232, 7.3229, 7.3242, 7.3254, 7.3248, 7.3242, 7.3239, 7.3232, 7.3225, 7.3237, 7.3253, 7.323, 7.3242, 7.3236, 7.323, 7.3259, 7.3252, 7.3264, 7.3258, 7.3252, 7.3247, 7.324, 7.3236, 7.323, 7.3242, 7.3235, 7.3213, 7.319, 7.3187, 7.3181, 7.3174, 7.3167, 7.316, 7.3155, 7.3166, 7.3161, 7.3154, 7.3148, 7.3141, 7.3136, 7.3148, 7.3143, 7.3143, 7.3139, 7.3151, 7.315, 7.3162, 7.3159, 7.3153, 7.3146, 7.3141, 7.3153, 7.3147, 7.3144, 7.3156, 7.3153, 7.3168, 7.3179, 7.3172, 7.3191, 7.3185, 7.3185, 7.3179, 7.3172, 7.3166, 7.3161, 7.3156, 7.3153, 7.3148, 7.3142, 7.3137, 7.3132, 7.3146, 7.316, 7.3171, 7.3183, 7.3176, 7.3155, 7.3166, 7.316, 7.3137, 7.3132, 7.3143, 7.3138, 7.3135, 7.3131, 7.3124, 7.3119, 7.3112, 7.3123, 7.3116, 7.313, 7.3124, 7.3136, 7.3131, 7.3143, 7.3138, 7.3132, 7.3126, 7.3138, 7.3132, 7.3144, 7.3138, 7.3133, 7.3128, 7.3129, 7.3123, 7.3137, 7.3131, 7.3114, 7.3108, 7.3103, 7.3098, 7.3096, 7.3089, 7.3083, 7.3094, 7.309, 7.3083, 7.3078, 7.3074, 7.3069, 7.3063, 7.3075, 7.3069, 7.3049, 7.3043, 7.3036, 7.3032, 7.3082, 7.3076, 7.3054, 7.3048, 7.3042, 7.3055, 7.3103, 7.3081, 7.3093, 7.311, 7.3104, 7.3117, 7.3112, 7.3106, 7.3103, 7.311, 7.3104, 7.3116, 7.3115, 7.3127, 7.3145, 7.314, 7.3138, 7.3144, 7.3141, 7.3136, 7.3146, 7.3161, 7.3155, 7.3155, 7.3172, 7.3183, 7.3194, 7.3191, 7.3186, 7.318, 7.3173, 7.3167, 7.316, 7.3156, 7.3167, 7.3179, 7.3172, 7.3167, 7.3162, 7.3155, 7.3148, 7.3143, 7.3136, 7.3148, 7.3159, 7.3153, 7.3165, 7.3161, 7.3155, 7.3168, 7.3164, 7.3158, 7.3153, 7.3147, 7.3159, 7.3153, 7.3166, 7.3162, 7.3156, 7.3153, 7.3131, 7.3142, 7.3137, 7.3117, 7.3112, 7.3106, 7.3102, 7.3098, 7.3096, 7.309, 7.3101, 7.3131, 7.3127, 7.3123, 7.3101, 7.3095, 7.3089, 7.3084, 7.3079, 7.309, 7.3086, 7.3082, 7.3079, 7.3074, 7.3085, 7.3095, 7.3108, 7.3103, 7.3097, 7.3092, 7.3087, 7.3081, 7.3077, 7.307, 7.3099, 7.3093, 7.3089, 7.3085, 7.3096, 7.3091, 7.3084, 7.3095, 7.309, 7.3087, 7.3087, 7.3065, 7.3044, 7.3039, 7.3035, 7.3046, 7.3057, 7.3054, 7.3049, 7.3043, 7.3053, 7.3064, 7.3059, 7.3055, 7.3066, 7.3076, 7.3087, 7.3082, 7.3078, 7.3072, 7.3068, 7.3062, 7.3056, 7.3034, 7.3028, 7.3022, 7.3033, 7.3029, 7.3042, 7.3053, 7.3066, 7.3112, 7.3106, 7.3102, 7.3096, 7.309, 7.3085, 7.3079, 7.309, 7.312, 7.3114, 7.3161, 7.3168, 7.3163, 7.3175, 7.317, 7.3165, 7.3162, 7.3157, 7.3152, 7.3147, 7.3157, 7.3168, 7.3162, 7.3172, 7.3166, 7.3162, 7.3156, 7.3168, 7.3162, 7.3156, 7.3151, 7.3146, 7.314, 7.3137, 7.3131, 7.313, 7.3127, 7.3138, 7.3149, 7.3144, 7.3155, 7.3166, 7.3178, 7.3172, 7.3166, 7.3161, 7.3163, 7.3212, 7.3207, 7.3202, 7.3196, 7.3193, 7.3187, 7.3198, 7.3193, 7.3189, 7.3234, 7.3228, 7.3225, 7.3221, 7.3216, 7.321, 7.3208, 7.3253, 7.3248, 7.3242, 7.325, 7.3263, 7.3276, 7.3272, 7.3266, 7.3276, 7.3287, 7.3281, 7.3275, 7.3269, 7.3266, 7.326, 7.3254, 7.3265, 7.3261, 7.3273, 7.3253, 7.3247, 7.3241, 7.3235, 7.3247, 7.3248, 7.3243, 7.3237, 7.3232, 7.3226, 7.322, 7.3232, 7.3242, 7.3237, 7.3233, 7.3229, 7.3224, 7.3223, 7.3217, 7.3227, 7.3221, 7.3215, 7.3211, 7.3222, 7.3216, 7.3243, 7.3238, 7.3232, 7.3226, 7.322, 7.3215, 7.3232, 7.3229, 7.3241, 7.3257, 7.3251, 7.3245, 7.3239, 7.3233, 7.3244, 7.3238, 7.3234, 7.3215, 7.3226, 7.3221, 7.3216, 7.3213, 7.3208, 7.3202, 7.328, 7.3275, 7.3269, 7.3283, 7.3277, 7.3272, 7.3282, 7.3292, 7.3286, 7.3298, 7.3294, 7.3288, 7.3282, 7.3276, 7.3276, 7.3272, 7.3284, 7.328, 7.3292, 7.3286, 7.3281, 7.3277, 7.3276, 7.3273, 7.3268, 7.3296, 7.3306, 7.3317, 7.3327, 7.3339, 7.3336, 7.3333, 7.3327, 7.3322, 7.3318, 7.3328, 7.3324, 7.3334, 7.3329, 7.3324, 7.3335, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3348, 7.3343, 7.3337, 7.3332, 7.3342, 7.3337, 7.3348, 7.3342, 7.3336, 7.3333, 7.3327, 7.3323, 7.3318, 7.3329, 7.3324, 7.3318, 7.3328, 7.3338, 7.3332, 7.3358, 7.3358, 7.3353, 7.3348, 7.3358, 7.336, 7.337, 7.3366, 7.336, 7.3361, 7.3355, 7.335, 7.3346, 7.334, 7.3334, 7.333, 7.3329, 7.3325, 7.3321, 7.3331, 7.3326, 7.332, 7.333, 7.3327, 7.3338, 7.3333, 7.3328, 7.3324, 7.3319, 7.3314, 7.3325, 7.332, 7.3315, 7.3309, 7.3306, 7.33, 7.3296, 7.329, 7.3301, 7.3295, 7.3289, 7.3299, 7.3294, 7.3289, 7.3285, 7.3292, 7.3306, 7.3303, 7.3299, 7.3294, 7.3291, 7.3286, 7.3281, 7.3276, 7.327, 7.3265, 7.3259, 7.3254, 7.3248, 7.3242, 7.3254, 7.3248, 7.3229, 7.3238, 7.3232, 7.3242, 7.3238, 7.3258, 7.3275, 7.3271, 7.3283, 7.3279, 7.3273, 7.3268, 7.3279, 7.3289, 7.3286, 7.3282, 7.3263, 7.326, 7.3255, 7.3264, 7.3259, 7.3285, 7.328, 7.3277, 7.3287, 7.3283, 7.3289, 7.3299, 7.3295, 7.329, 7.33, 7.3295, 7.3292, 7.3286, 7.328, 7.3276, 7.327, 7.3264, 7.3261, 7.3255, 7.3251, 7.3246, 7.3241, 7.3235, 7.3232, 7.3226, 7.3315, 7.3325, 7.3335, 7.3331, 7.3327, 7.3308, 7.3335, 7.336, 7.3388, 7.3409, 7.3432, 7.3426, 7.3423, 7.3434, 7.3444, 7.3457, 7.3467, 7.3481, 7.3478, 7.3487, 7.3498, 7.3493, 7.3497, 7.3507, 7.3503, 7.3504, 7.3499, 7.3493, 7.3489, 7.3485, 7.3481, 7.3477, 7.3471, 7.3481, 7.3492, 7.3496, 7.3506, 7.3514, 7.351, 7.3507, 7.3501, 7.35, 7.3502, 7.3499, 7.3493, 7.3487, 7.3499, 7.3493, 7.3521, 7.3518, 7.3513, 7.351, 7.3506, 7.35, 7.3497, 7.3508, 7.3503, 7.3498, 7.3515, 7.351, 7.3506, 7.3501, 7.3495, 7.3505, 7.3501, 7.3495, 7.3492, 7.3488, 7.3484, 7.3494, 7.3493, 7.3487, 7.3481, 7.3477, 7.3486, 7.348, 7.348, 7.3477, 7.348, 7.3475, 7.347, 7.3465, 7.3462, 7.3459, 7.3453, 7.3449, 7.3443, 7.344, 7.3435, 7.343, 7.3424, 7.3418, 7.3412, 7.3408, 7.3403, 7.3412, 7.3408, 7.3403, 7.3398, 7.3393, 7.3402, 7.3384, 7.338, 7.3378, 7.3373, 7.3367, 7.3361, 7.3355, 7.3369, 7.338, 7.3376, 7.337, 7.3365, 7.336, 7.3355, 7.3365, 7.3366, 7.3347, 7.3344, 7.3341, 7.334, 7.3353, 7.3348, 7.3354, 7.3348, 7.3343, 7.3338, 7.3332, 7.3341, 7.3336, 7.3332, 7.3328, 7.3323, 7.3317, 7.3323, 7.3333, 7.3327, 7.3337, 7.3349, 7.3345, 7.334, 7.3322, 7.3334, 7.3331, 7.3328, 7.334, 7.3334, 7.3341, 7.3336, 7.3331, 7.3326, 7.3322, 7.3319, 7.3329, 7.3324, 7.3319, 7.333, 7.3325, 7.332, 7.3315, 7.3351, 7.336, 7.3355, 7.3352, 7.3352, 7.3364, 7.336, 7.3357, 7.3351, 7.3348, 7.3358, 7.3368, 7.3369, 7.3366, 7.3362, 7.3357, 7.3354, 7.3364, 7.3372, 7.3367, 7.3362, 7.3357, 7.3367, 7.3363, 7.3373, 7.3367, 7.3377, 7.3372, 7.3368, 7.3363, 7.3359, 7.3355, 7.3349, 7.3359, 7.3354, 7.3363, 7.3346, 7.3355, 7.3363, 7.3346, 7.3397, 7.3392, 7.3389, 7.3384, 7.3379, 7.3389, 7.3383, 7.3378, 7.3373, 7.3368, 7.3364, 7.3359, 7.3363, 7.3366, 7.3362, 7.3359, 7.3363, 7.3359, 7.3357, 7.3366, 7.3374, 7.3389, 7.3387, 7.3383, 7.338, 7.3375, 7.3384, 7.3379, 7.3373, 7.3368, 7.335, 7.336, 7.3356, 7.3353, 7.3378, 7.3373, 7.3382, 7.3378, 7.3388, 7.3383, 7.3379, 7.3374, 7.3383, 7.3379, 7.3375, 7.337, 7.3366, 7.336, 7.3355, 7.3353, 7.3362, 7.3358, 7.3368, 7.3363, 7.3359, 7.3355, 7.3352, 7.3349, 7.3348, 7.338, 7.3388, 7.3384, 7.338, 7.3376, 7.3372, 7.3366, 7.3362, 7.3374, 7.337, 7.3365, 7.3363, 7.3372, 7.3369, 7.3353, 7.3349, 7.3361, 7.3358, 7.3368, 7.3376, 7.3371, 7.3394, 7.3391, 7.34, 7.3396, 7.3392, 7.34, 7.3396, 7.3391, 7.34, 7.3398, 7.3408, 7.3417, 7.3426, 7.342, 7.3415, 7.341, 7.3404, 7.3399, 7.3393, 7.3391, 7.3399, 7.3408, 7.3417, 7.3414, 7.3409, 7.3404, 7.3414, 7.341, 7.3406, 7.3404, 7.3399, 7.3395, 7.339, 7.3385, 7.3411, 7.3393, 7.3388, 7.3397, 7.3393, 7.3403, 7.3458, 7.3453, 7.3463, 7.3462, 7.3457, 7.3454, 7.3449, 7.3449, 7.3444, 7.3439, 7.3434, 7.3432, 7.3428, 7.3423, 7.3419, 7.3415, 7.3424, 7.3419, 7.3415, 7.341, 7.341, 7.3408, 7.3403, 7.3412, 7.3408, 7.3405, 7.3407, 7.3403, 7.3418, 7.3416, 7.3423, 7.3418, 7.3413, 7.3408, 7.3403, 7.3398, 7.3393, 7.339, 7.3391, 7.34, 7.3397, 7.3392, 7.3391, 7.3393, 7.3402, 7.341, 7.3419, 7.3428, 7.3435, 7.3444, 7.3452, 7.3475, 7.3498, 7.3494, 7.3489, 7.3485, 7.348, 7.3516, 7.3527, 7.3538, 7.3536, 7.3533, 7.3528, 7.3524, 7.352, 7.3516, 7.3525, 7.352, 7.3515, 7.3511, 7.3509, 7.3504, 7.3499, 7.3494, 7.3491, 7.3486, 7.3481, 7.3476, 7.3473, 7.3469, 7.3465, 7.346, 7.3469, 7.3464, 7.3462, 7.3457, 7.3457, 7.3453, 7.3449, 7.3444, 7.3439, 7.3436, 7.3432, 7.3427, 7.3424, 7.342, 7.3415, 7.3411, 7.3408, 7.3403, 7.3399, 7.3397, 7.3392, 7.3388, 7.3397, 7.3394, 7.3389, 7.3384, 7.338, 7.339, 7.3399, 7.3395, 7.3392, 7.3387, 7.3384, 7.3379, 7.3375, 7.337, 7.3365, 7.3375, 7.3371, 7.3366, 7.3362, 7.3357, 7.3379, 7.3374, 7.3383, 7.3378, 7.3374, 7.339, 7.3387, 7.3434, 7.343, 7.3427, 7.3436, 7.3432, 7.3427, 7.3435, 7.3432, 7.3427, 7.3422, 7.3417, 7.3413, 7.3412, 7.3407, 7.3402, 7.34, 7.3402, 7.3399, 7.3396, 7.3394, 7.3391, 7.3387, 7.3383, 7.3379, 7.3375, 7.3371, 7.3367, 7.3363, 7.3357, 7.3366, 7.3363, 7.3358, 7.3356, 7.3352, 7.3378, 7.3386, 7.3381, 7.3377, 7.3372, 7.3367, 7.3375, 7.337, 7.3379, 7.3406, 7.3402, 7.3399, 7.3409, 7.3405, 7.3408, 7.3403, 7.3399, 7.3402, 7.3411, 7.3407, 7.339, 7.3432, 7.3429, 7.3426, 7.3422, 7.3435, 7.3443, 7.3438, 7.3434, 7.343, 7.3426, 7.3452, 7.3448, 7.3444, 7.3439, 7.3453, 7.345, 7.3459, 7.3454, 7.347, 7.3467, 7.3463, 7.3477, 7.3485, 7.3482, 7.3477, 7.3473, 7.3481, 7.3476, 7.3485, 7.3481, 7.3484, 7.3482, 7.3478, 7.3473, 7.3457, 7.3453, 7.3451, 7.3448, 7.346, 7.3456, 7.3439, 7.3434, 7.3432, 7.3443, 7.3451, 7.346, 7.3457, 7.3466, 7.3461, 7.3456, 7.3466, 7.3474, 7.3469, 7.3464, 7.3473, 7.347, 7.3479, 7.3475, 7.3472, 7.3482, 7.348, 7.3475, 7.349, 7.3499, 7.3498, 7.3506, 7.3517, 7.3512, 7.3508, 7.3504, 7.3514, 7.351, 7.3505, 7.3501, 7.3496, 7.3492, 7.3501, 7.3497, 7.3494, 7.349, 7.3499, 7.3508, 7.3504, 7.35, 7.3495, 7.3504, 7.3501, 7.3509, 7.3517, 7.3512, 7.3507, 7.3502, 7.3497, 7.3505, 7.35, 7.3495, 7.3491, 7.3486, 7.3494, 7.3489, 7.3484, 7.3479, 7.3487, 7.3482, 7.348, 7.3476, 7.3472, 7.348, 7.3476, 7.3473, 7.3481, 7.3476, 7.3471, 7.3468, 7.3476, 7.3471, 7.3467, 7.3475, 7.3472, 7.3467, 7.3463, 7.3458, 7.3454, 7.345, 7.3459, 7.3457, 7.3453, 7.3448, 7.3443, 7.3438, 7.3447, 7.3442, 7.3464, 7.346, 7.3456, 7.3452, 7.3448, 7.3457, 7.3466, 7.3461, 7.3469, 7.3465, 7.3461, 7.3444, 7.3458, 7.3458, 7.3453, 7.345, 7.3472, 7.3501, 7.3498, 7.3506, 7.3502, 7.3514, 7.351, 7.3506, 7.3502, 7.3498, 7.3494, 7.3489, 7.3497, 7.3495, 7.349, 7.3485, 7.3482, 7.3477, 7.3474, 7.3469, 7.3464, 7.3459, 7.3464, 7.3459, 7.3455, 7.3451, 7.346, 7.3455, 7.3452, 7.3453, 7.3449, 7.3445, 7.344, 7.3435, 7.3445, 7.3441, 7.3437, 7.3433, 7.3429, 7.3425, 7.3435, 7.343, 7.3429, 7.3425, 7.343, 7.3458, 7.3455, 7.3451, 7.3447, 7.3442, 7.3437, 7.3434, 7.343, 7.3429, 7.3439, 7.3436, 7.342, 7.3418, 7.3414, 7.3423, 7.3419, 7.3427, 7.3422, 7.3418, 7.3414, 7.3409, 7.3405, 7.34, 7.3409, 7.3405, 7.3402, 7.3399, 7.344, 7.3448, 7.3456, 7.3464, 7.3461, 7.3457, 7.3452, 7.3436, 7.3445, 7.3443, 7.3438, 7.3435, 7.343, 7.3426, 7.3435, 7.3431, 7.3454, 7.3449, 7.3458, 7.3453, 7.345, 7.3445, 7.3443, 7.3451, 7.3449, 7.3446, 7.3467, 7.3465, 7.346, 7.3456, 7.3504, 7.3503, 7.3513, 7.3509, 7.3517, 7.3512, 7.3508, 7.3505, 7.3501, 7.3498, 7.3495, 7.3491, 7.3487, 7.3487, 7.3483, 7.348, 7.3476, 7.3472, 7.3468, 7.3484, 7.348, 7.3477, 7.3476, 7.3472, 7.3467, 7.3475, 7.3472, 7.3481, 7.3477, 7.3473, 7.3481, 7.3477, 7.3477, 7.3474, 7.347, 7.3465, 7.3463, 7.347, 7.3465, 7.346, 7.3456, 7.3452, 7.3459, 7.3467, 7.3463, 7.346, 7.3456, 7.3453, 7.345, 7.3447, 7.3443, 7.3439, 7.3434, 7.3429, 7.3479, 7.3475, 7.3471, 7.3468, 7.3476, 7.3491, 7.3488, 7.3508, 7.3503, 7.3498, 7.3483, 7.3479, 7.3475, 7.347, 7.3466, 7.3462, 7.3457, 7.3454, 7.3449, 7.3445, 7.3454, 7.345, 7.3447, 7.3459, 7.3468, 7.3477, 7.3486, 7.3495, 7.3491, 7.351, 7.3505, 7.35, 7.35, 7.3496, 7.3491, 7.3487, 7.3483, 7.3491, 7.3505, 7.35, 7.3495, 7.3492, 7.35, 7.3508, 7.3503, 7.3511, 7.3507, 7.3504, 7.3502, 7.351, 7.3518, 7.3513, 7.351, 7.3516, 7.3511, 7.3507, 7.3503, 7.3512, 7.3507, 7.3515, 7.3513, 7.3521, 7.3516, 7.3524, 7.3519, 7.3515, 7.3523, 7.3518, 7.3527, 7.3535, 7.3543, 7.3539, 7.3547, 7.3555, 7.3551, 7.355, 7.3546, 7.3544, 7.354, 7.3536, 7.3531, 7.3528, 7.3539, 7.3547, 7.3555, 7.3551, 7.3546, 7.3542, 7.3538, 7.3533, 7.3542, 7.3537, 7.3545, 7.3576, 7.3573, 7.3581, 7.3577, 7.3574, 7.3581, 7.3592, 7.3588, 7.3586, 7.3583, 7.3579, 7.3587, 7.3595, 7.359, 7.3598, 7.3594, 7.3602, 7.3597, 7.3605, 7.3613, 7.3609, 7.3605, 7.3601, 7.3609, 7.3618, 7.3613, 7.362, 7.3616, 7.3612, 7.3609, 7.3605, 7.3637, 7.3633, 7.3629, 7.3624, 7.3619, 7.3615, 7.363, 7.3656, 7.3663, 7.3658, 7.3653, 7.3649, 7.3645, 7.3642, 7.3638, 7.3634, 7.3664, 7.3662, 7.3658, 7.366, 7.3672, 7.3668, 7.3664, 7.3659, 7.3667, 7.3663, 7.366, 7.3667, 7.3669, 7.3664, 7.366, 7.3656, 7.3665, 7.3661, 7.3656, 7.3652, 7.3648, 7.3645, 7.3653, 7.3649, 7.3647, 7.3644, 7.3642, 7.365, 7.3646, 7.3642, 7.3662, 7.367, 7.3678, 7.3675, 7.371, 7.3705, 7.3701, 7.3708, 7.374, 7.3748, 7.3743, 7.3757, 7.3753, 7.375, 7.3758, 7.3758, 7.3754, 7.3739, 7.3734, 7.3729, 7.3738, 7.3736, 7.3731, 7.3716, 7.3723, 7.3731, 7.3727, 7.3735, 7.3731, 7.3728, 7.3735, 7.3755, 7.3751, 7.3748, 7.3744, 7.374, 7.3748, 7.3744, 7.3739, 7.3745, 7.3742, 7.374, 7.3737, 7.3733, 7.3743, 7.3739, 7.3734, 7.3742, 7.3738, 7.3734, 7.3743, 7.3739, 7.3736, 7.3733, 7.3729, 7.3736, 7.3732, 7.3742, 7.3738, 7.3734, 7.3742, 7.3739, 7.3743, 7.3767, 7.3765, 7.3761, 7.3758, 7.3754, 7.375, 7.3806, 7.3815, 7.3811, 7.3808, 7.3805, 7.3813, 7.3822, 7.3819, 7.3828, 7.3824, 7.3819, 7.3815, 7.3811, 7.3809, 7.3817, 7.3816, 7.3823, 7.382, 7.3816, 7.3813, 7.3821, 7.3829, 7.3837, 7.3835, 7.3833, 7.3832, 7.3828, 7.3837, 7.3834, 7.3829, 7.3825, 7.3821, 7.3816, 7.3824, 7.382, 7.3818, 7.3815, 7.3823, 7.3819, 7.3815, 7.381, 7.3818, 7.3814, 7.3822, 7.3819, 7.3827, 7.3823, 7.382, 7.3815, 7.3811, 7.3819, 7.3816, 7.3812, 7.3813, 7.382, 7.3816, 7.3816, 7.3813, 7.3809, 7.3807, 7.3803, 7.3799, 7.3795, 7.3804, 7.3812, 7.3821, 7.3817, 7.3814, 7.382, 7.3816, 7.3812, 7.3807, 7.3804, 7.3812, 7.3807, 7.3804, 7.38, 7.3796, 7.3803, 7.381, 7.3814, 7.3811, 7.3807, 7.3827, 7.3823, 7.382, 7.3852, 7.3848, 7.3845, 7.3853, 7.3849, 7.3846, 7.3843, 7.384, 7.3837, 7.3845, 7.3853, 7.3848, 7.3846, 7.3843, 7.3838, 7.3834, 7.3832, 7.3828, 7.3835, 7.3832, 7.3831, 7.3838, 7.3847, 7.3843, 7.3839, 7.3835, 7.3831, 7.3838, 7.3833, 7.3829, 7.3826, 7.3832, 7.3829, 7.3825, 7.3833, 7.3841, 7.3838, 7.3845, 7.383, 7.3827, 7.3823, 7.3819, 7.3826, 7.3833, 7.383, 7.3828, 7.3825, 7.3822, 7.3818, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3829, 7.3824, 7.3821, 7.3831, 7.3816, 7.3813, 7.381, 7.3806, 7.3813, 7.381, 7.3818, 7.3814, 7.3821, 7.3854, 7.3861, 7.3902, 7.391, 7.3908, 7.3905, 7.3901, 7.3898, 7.3894, 7.389, 7.3897, 7.3892, 7.3888, 7.3884, 7.3891, 7.3887, 7.3883, 7.3879, 7.3876, 7.3874, 7.3881, 7.3877, 7.3885, 7.3893, 7.389, 7.3886, 7.3884, 7.3881, 7.3888, 7.3918, 7.3914, 7.3915, 7.3916, 7.3922, 7.3919, 7.3924, 7.392, 7.3917, 7.3913, 7.3909, 7.3905, 7.3902, 7.3899, 7.3919, 7.3915, 7.3911, 7.3908, 7.3905, 7.3901, 7.391, 7.3906, 7.3903, 7.3899, 7.3896, 7.3902, 7.3899, 7.3906, 7.3913, 7.392, 7.3917, 7.3925, 7.3921, 7.3918, 7.3915, 7.3911, 7.3907, 7.3903, 7.391, 7.3906, 7.3902, 7.3898, 7.3939, 7.3935, 7.3942, 7.3939, 7.3946, 7.3943, 7.394, 7.3937, 7.3933, 7.3929, 7.3924, 7.392, 7.3916, 7.3912, 7.3919, 7.3926, 7.3934, 7.393, 7.3926, 7.3912, 7.3909, 7.3927, 7.3934, 7.3941, 7.3948, 7.3945, 7.3942, 7.394, 7.3936, 7.3934, 7.3952, 7.3951, 7.3948, 7.3945, 7.4008, 7.4004, 7.4, 7.3986, 7.3981, 7.3977, 7.3973, 7.397, 7.3966, 7.3962, 7.3959, 7.3955, 7.3951, 7.3947, 7.3943, 7.3951, 7.3946, 7.3955, 7.3952, 7.3949, 7.3945, 7.3959, 7.3956, 7.3999, 7.4008, 7.4026, 7.4025, 7.4032, 7.4029, 7.4036, 7.4034, 7.4033, 7.4037, 7.4045, 7.4041, 7.4038, 7.4036, 7.4032, 7.4039, 7.4036, 7.4044, 7.4041, 7.4038, 7.4045, 7.4044, 7.404, 7.4036, 7.4034, 7.403, 7.4037, 7.4044, 7.4041, 7.4038, 7.4024, 7.4032, 7.4039, 7.4046, 7.4043, 7.4051, 7.4058, 7.406, 7.4057, 7.4053, 7.4049, 7.4056, 7.4063, 7.4051, 7.4047, 7.4043, 7.4041, 7.4027, 7.4023, 7.4019, 7.4019, 7.4016, 7.4033, 7.4036, 7.4032, 7.4029, 7.4025, 7.4021, 7.4018, 7.4024, 7.402, 7.4017, 7.4024, 7.402, 7.4016, 7.4002, 7.3998, 7.3996, 7.4004, 7.4001, 7.3999, 7.3997, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3998, 7.3994, 7.3991, 7.3988, 7.3985, 7.3982, 7.3978, 7.3974, 7.3972, 7.3969, 7.3966, 7.3973, 7.397, 7.3967, 7.3963, 7.3965, 7.3962, 7.3969, 7.3976, 7.3973, 7.3969, 7.3965, 7.3972, 7.3968, 7.3965, 7.3961, 7.3957, 7.3954, 7.3951, 7.3958, 7.3954, 7.395, 7.3947, 7.3933, 7.394, 7.3937, 7.3933, 7.3929, 7.3926, 7.3922, 7.3919, 7.3926, 7.3923, 7.3909, 7.3906, 7.3902, 7.3909, 7.3916, 7.3913, 7.3909, 7.3916, 7.3923, 7.3919, 7.3915, 7.3912, 7.3908, 7.3904, 7.3911, 7.3908, 7.3905, 7.3901, 7.3898, 7.3895, 7.3892, 7.3888, 7.3884, 7.388, 7.3887, 7.3894, 7.3902, 7.3898, 7.3894, 7.389, 7.3888, 7.3884, 7.3882, 7.3889, 7.3885, 7.3882, 7.3889, 7.3885, 7.3892, 7.3913, 7.3919, 7.3915, 7.3912, 7.3909, 7.3907, 7.3903, 7.3901, 7.3898, 7.3895, 7.3902, 7.3899, 7.3895, 7.3891, 7.3887, 7.3894, 7.3901, 7.3907, 7.3914, 7.3932, 7.3949, 7.3945, 7.3941, 7.3948, 7.3944, 7.3942, 7.3938, 7.3934, 7.3932, 7.3928, 7.3957, 7.3944, 7.3962, 7.3959, 7.3977, 7.3974, 7.3972, 7.397, 7.3967, 7.3972, 7.3979, 7.3975, 7.3971, 7.3968, 7.3965, 7.3971, 7.3968, 7.3974, 7.3971, 7.3968, 7.3964, 7.396, 7.3957, 7.3954, 7.3951, 7.3958, 7.3955, 7.3954, 7.3952, 7.3948, 7.3947, 7.3943, 7.3939, 7.3935, 7.3931, 7.3928, 7.3935, 7.3932, 7.3919, 7.3917, 7.3914, 7.3911, 7.3908, 7.3904, 7.39, 7.3907, 7.3903, 7.3899, 7.3897, 7.3905, 7.3903, 7.39, 7.3907, 7.3915, 7.3912, 7.391, 7.3906, 7.3903, 7.3901, 7.3897, 7.3903, 7.39, 7.3896, 7.3893, 7.3889, 7.3886, 7.3894, 7.3893, 7.3893, 7.3889, 7.3886, 7.3884, 7.3892, 7.3899, 7.3897, 7.3927, 7.3924, 7.3921, 7.3929, 7.3925, 7.3926, 7.3922, 7.3919, 7.3905, 7.3902, 7.3899, 7.3896, 7.3887, 7.3883, 7.3881, 7.3877, 7.3873, 7.3871, 7.3867, 7.3875, 7.3874, 7.3881, 7.388, 7.3887, 7.3884, 7.388, 7.3876, 7.3873, 7.3871, 7.3879, 7.3876, 7.3874, 7.3871, 7.3878, 7.3875, 7.3872, 7.3868, 7.3875, 7.3882, 7.3869, 7.3866, 7.3864, 7.3861, 7.3858, 7.3854, 7.3851, 7.3848, 7.3845, 7.3854, 7.3851, 7.3847, 7.3853, 7.385, 7.3837, 7.3825, 7.3822, 7.3829, 7.3826, 7.3833, 7.383, 7.3826, 7.3824, 7.3821, 7.3818, 7.3816, 7.3812, 7.3808, 7.3804, 7.3801, 7.3798, 7.3795, 7.3792, 7.3799, 7.3796, 7.3813, 7.382, 7.3816, 7.3813, 7.3821, 7.382, 7.3826, 7.3833, 7.3829, 7.3826, 7.3833, 7.3829, 7.3825, 7.3833, 7.3841, 7.3837, 7.3833, 7.384, 7.3847, 7.3845, 7.3842, 7.3844, 7.384, 7.3838, 7.3834, 7.3841, 7.3838, 7.3834, 7.384, 7.3847, 7.3844, 7.384, 7.3847, 7.3843, 7.385, 7.3846, 7.3845, 7.3841, 7.3839, 7.3836, 7.3834, 7.3831, 7.3828, 7.3827, 7.3824, 7.3822, 7.3818, 7.3815, 7.3811, 7.3809, 7.3813, 7.3809, 7.3805, 7.3801, 7.3797, 7.3805, 7.3802, 7.3799, 7.3795, 7.3802, 7.3798, 7.3795, 7.3792, 7.3791, 7.3788, 7.3784, 7.3782, 7.377, 7.3768, 7.3775, 7.3771, 7.3768, 7.3766, 7.3773, 7.3769, 7.3776, 7.3772, 7.3769, 7.3766, 7.3764, 7.376, 7.3757, 7.3755, 7.3754, 7.375, 7.3748, 7.3755, 7.3762, 7.3758, 7.3755, 7.3752, 7.3748, 7.3735, 7.3734, 7.3732, 7.3739, 7.3736, 7.3733, 7.3732, 7.3729, 7.3737, 7.3743, 7.374, 7.3737, 7.3733, 7.373, 7.3728, 7.3724, 7.3721, 7.3717, 7.3716, 7.3712, 7.3708, 7.3706, 7.3702, 7.3709, 7.3696, 7.3702, 7.3708, 7.3704, 7.371, 7.3706, 7.3703, 7.3699, 7.3695, 7.3728, 7.3734, 7.3731, 7.3728, 7.3725, 7.3722, 7.3719, 7.3719, 7.3715, 7.3721, 7.3717, 7.3724, 7.3721, 7.3727, 7.3723, 7.374, 7.3737, 7.3734, 7.373, 7.3737, 7.3765, 7.3762, 7.3769, 7.3765, 7.3771, 7.3767, 7.3773, 7.3779, 7.3786, 7.3782, 7.3779, 7.3776, 7.3783, 7.3789, 7.3785, 7.3802, 7.38, 7.3796, 7.3803, 7.382, 7.3816, 7.3833, 7.383, 7.3826, 7.3822, 7.3828, 7.3824, 7.382, 7.3826, 7.3833, 7.3839, 7.3836, 7.3832, 7.383, 7.3826, 7.3833, 7.384, 7.3838, 7.3835, 7.3841, 7.3847, 7.3843, 7.3849, 7.3855, 7.3861, 7.3858, 7.3855, 7.3851, 7.3848, 7.3855, 7.3862, 7.3858, 7.3854, 7.385, 7.3847, 7.3843, 7.3839, 7.3837, 7.3834, 7.383, 7.3827, 7.3824, 7.382, 7.3817, 7.3823, 7.3819, 7.3826, 7.3822, 7.3828, 7.3825, 7.3821, 7.3817, 7.3813, 7.3809, 7.3816, 7.3813, 7.3821, 7.3819, 7.3827, 7.3834, 7.3831, 7.3828, 7.3825, 7.3821, 7.3827, 7.3824, 7.3823, 7.383, 7.3827, 7.3824, 7.3821, 7.3817, 7.3823], '192.168.122.114': [10.659, 7.9768, 7.2521, 6.8601, 6.6943, 6.5908, 6.4914, 6.3863, 6.2582, 6.1833, 6.5629, 6.8982, 6.8205, 7.1645, 7.0342, 7.2808, 7.8222, 7.7088, 7.5989, 7.8443, 7.5187, 7.2045, 7.2171, 7.1415, 7.3198, 7.2736, 7.2028, 7.1439, 7.094, 7.048, 6.9936, 7.4576, 7.4126, 7.422, 7.5326, 7.5139, 7.475, 7.4167, 7.3863, 7.3442, 7.3047, 7.2591, 7.2351, 7.2003, 7.1796, 7.1567, 7.2283, 7.2985, 7.3786, 7.3456, 7.3048, 7.3748, 7.3439, 7.5064, 7.572, 7.6308, 7.6894, 7.6592, 7.6341, 7.602, 7.5729, 7.535, 7.5892, 7.5537, 7.538, 7.5043, 7.4733, 7.6966, 7.7399, 7.8084, 7.7749, 7.7456, 7.7324, 7.702, 7.6719, 7.6408, 7.6823, 7.7227, 7.6321, 7.6032, 7.6414, 7.6147, 7.5893, 7.6085, 7.582, 7.5583, 7.5576, 7.5339, 7.5105, 7.4872, 7.4661, 7.453, 7.4427, 7.4797, 7.4631, 7.441, 7.4204, 7.4048, 7.385, 7.3652, 7.3476, 7.3284, 7.3595, 7.3921, 7.3796, 7.361, 7.3959, 7.3913, 7.3864, 7.3749, 7.3559, 7.3439, 7.3332, 7.2745, 7.305, 7.2887, 7.2786, 7.2628, 7.2516, 7.2381, 7.2291, 7.2957, 7.3279, 7.3596, 7.3427, 7.3351, 7.3231, 7.3166, 7.3033, 7.2896, 7.2747, 7.3478, 7.3436, 7.331, 7.3185, 7.3101, 7.2956, 7.2962, 7.2886, 7.2779, 7.266, 7.2571, 7.2488, 7.2372, 7.2258, 7.213, 7.1996, 7.1906, 7.1842, 7.1718, 7.1634, 7.1526, 7.1417, 7.1368, 7.125, 7.1203, 7.1507, 7.1461, 7.1346, 7.1268, 7.1222, 7.1442, 7.137, 7.1263, 7.116, 7.1051, 7.0947, 7.085, 7.0752, 7.0649, 7.0868, 7.0808, 7.0745, 7.0648, 7.0579, 7.052, 7.0887, 7.0816, 7.0796, 7.0712, 7.0608, 7.053, 7.0462, 7.049, 7.0409, 7.0356, 7.0286, 7.0218, 7.0568, 7.0522, 7.0757, 7.0702, 7.0908, 7.0811, 7.074, 7.0464, 7.0382, 7.0355, 7.0277, 7.0193, 7.020300000000001, 7.0148, 7.0094, 7.0021, 6.9951, 6.989, 6.9864, 6.9861, 7.0048, 6.9992, 6.9976, 7.0183, 7.034, 7.0258, 7.0179, 7.036, 7.0277, 7.0466, 7.0639, 7.0816, 7.0744, 7.0929, 7.0939000000000005, 7.0907, 7.0835, 7.1006, 7.0931, 7.0864, 7.0796, 7.0835, 7.0795, 7.0745, 7.0717, 7.0729, 7.0877, 7.0828, 7.0767, 7.0732, 7.0665, 7.0609, 7.065, 7.061, 7.0589, 7.0425, 7.0415, 7.0387, 7.0316, 7.0249, 7.0206, 7.0163, 7.0101, 7.0095, 7.0667, 7.0817, 7.0761, 7.0569, 7.05, 7.0542, 7.055, 7.057, 7.0544, 7.0493, 7.0467, 7.0628, 7.0563, 7.0515, 7.0465, 7.0405, 7.0346, 7.0444, 7.0398, 7.0349, 7.031, 7.0079, 7.0022, 6.9989, 7.0116, 7.0101, 7.0122, 7.0062, 7.0005, 6.9961, 6.9912, 6.9871, 6.9825, 6.9963, 6.994, 6.991, 6.9881, 6.9823, 6.9769, 6.9759, 6.9704, 6.9832, 6.98, 6.9747, 6.9692, 6.9636, 6.9585, 6.9534, 6.9501, 6.9626, 6.9751, 6.9872, 6.9997, 6.9943, 6.9895, 7.0028, 6.9972, 7.0085, 7.0214, 7.0348, 7.0297, 7.0292, 7.0238, 7.0183, 7.0299, 7.042, 7.0424, 7.0371, 7.033, 7.0299, 7.0248, 7.0195, 7.0148, 7.0095, 7.0046, 6.9997, 6.9948, 6.9902, 6.9851, 6.9967, 7.0084, 7.0054, 7.0008, 7.0121, 7.0092, 7.0206, 7.0167, 7.0118, 7.0248, 7.0059, 7.0164, 7.0275, 7.0224, 7.0326, 7.0292, 7.0103, 7.0065, 7.089, 7.1072, 7.1284, 7.1498, 7.1445, 7.142, 7.1385, 7.1483, 7.1447, 7.1401, 7.1379, 7.1347, 7.145, 7.1409, 7.1429, 7.1289, 7.1391, 7.1367, 7.1324, 7.1302, 7.1395, 7.1485, 7.1444, 7.1398, 7.1365, 7.119, 7.1158, 7.1264, 7.1386, 7.1355, 7.1488, 7.1439, 7.1541, 7.1502, 7.1463, 7.1428, 7.1524, 7.1495, 7.1456, 7.1424, 7.1445, 7.1396, 7.1483, 7.1437, 7.1398, 7.1433, 7.1389, 7.1504, 7.1463, 7.1436, 7.1537, 7.1492, 7.1474, 7.1457, 7.1422, 7.1385, 7.1347, 7.1445, 7.1406, 7.1387, 7.1345, 7.1427, 7.1416, 7.1407, 7.1389, 7.1481, 7.1563, 7.1528, 7.1502, 7.1461, 7.1546, 7.1507, 7.1597, 7.1559, 7.1539, 7.1542, 7.1498, 7.1717, 7.1679, 7.1635, 7.1595, 7.1446, 7.1528, 7.1612, 7.1571, 7.1535, 7.1512, 7.159, 7.1442, 7.1402, 7.136, 7.1325, 7.1399, 7.1366, 7.1444, 7.1418, 7.1381, 7.1342, 7.1302, 7.1264, 7.1224, 7.1199, 7.1163, 7.1021, 7.1096, 7.1179, 7.1154, 7.1118, 7.1194, 7.1159, 7.1272, 7.1353, 7.1313, 7.1173, 7.1133, 7.115, 7.125, 7.1219, 7.1301, 7.1263, 7.1337, 7.13, 7.1261, 7.1224, 7.1188, 7.1151, 7.1112, 7.1076, 7.1162, 7.1125, 7.1097, 7.1071, 7.1046, 7.1025, 7.0997, 7.0962, 7.0942, 7.0911, 7.0989, 7.0955, 7.0943, 7.0907, 7.0879, 7.085, 7.0816, 7.0789, 7.0866, 7.0838, 7.0915, 7.088, 7.0862, 7.0835, 7.0901, 7.0867, 7.084, 7.0805, 7.0883, 7.0851, 7.0861, 7.094, 7.0906, 7.0973, 7.1039, 7.1037, 7.1005, 7.0974, 7.0943, 7.0907, 7.0875, 7.0941, 7.0912, 7.088, 7.095, 7.0919, 7.0887, 7.0958, 7.1026, 7.0909, 7.0981, 7.0949, 7.0923, 7.0896, 7.0969, 7.0949, 7.0968, 7.0938, 7.0906, 7.0873, 7.0855, 7.0891, 7.0859, 7.1143, 7.1117, 7.1084, 7.1056, 7.1066, 7.1036, 7.1102, 7.108, 7.1148, 7.1127, 7.1108, 7.1075, 7.1052, 7.102, 7.1089, 7.1156, 7.1127, 7.1094, 7.1077, 7.1048, 7.1036, 7.1103, 7.1168, 7.1136, 7.1121, 7.1104, 7.1075, 7.1142, 7.1125, 7.1054, 7.1024, 7.1094, 7.1064, 7.1047, 7.1112, 7.1173, 7.1142, 7.111, 7.1082, 7.1056, 7.1036, 7.1042, 7.0956, 7.0932, 7.0902, 7.1079, 7.1235, 7.1204, 7.1174, 7.1153, 7.1127, 7.1282, 7.1253, 7.1415, 7.1328, 7.1301, 7.1273, 7.1352, 7.1325, 7.1394, 7.1405, 7.139, 7.146, 7.143, 7.1409, 7.1385, 7.1369, 7.1354, 7.141, 7.139, 7.1453, 7.1452, 7.1457, 7.1428, 7.1401, 7.1407, 7.139, 7.1374, 7.1348, 7.1318, 7.1379, 7.1554, 7.1628, 7.1621, 7.1987, 7.1963, 7.2005, 7.1981, 7.2039, 7.2099, 7.2076, 7.2135, 7.2115, 7.2092, 7.208, 7.2063, 7.2036, 7.2081, 7.2052, 7.204, 7.2094, 7.2078, 7.2075, 7.2135, 7.2186, 7.217, 7.214, 7.2125, 7.2105, 7.2076, 7.2047, 7.1952, 7.1923, 7.1895, 7.1866, 7.184, 7.1903, 7.1973, 7.2036, 7.2211, 7.2203, 7.2257, 7.2235, 7.2284, 7.2187, 7.2164, 7.2141, 7.2114, 7.2162, 7.2133, 7.2113, 7.2162, 7.2133, 7.2036, 7.2094, 7.2067, 7.2116, 7.2092, 7.2072, 7.2049, 7.1956, 7.1929, 7.1903, 7.1959, 7.2011, 7.2033, 7.2028, 7.2002, 7.198, 7.2033, 7.2007, 7.1979, 7.2034, 7.2008, 7.1985, 7.196, 7.1934, 7.203, 7.2018, 7.1991, 7.1974, 7.2055, 7.2111, 7.216, 7.2205, 7.2192, 7.2186, 7.2172, 7.2145, 7.2134, 7.2107, 7.2153, 7.2204, 7.2178, 7.2157, 7.2205, 7.2186, 7.2162, 7.2134, 7.2108, 7.2085, 7.2066, 7.2041, 7.2022, 7.2001, 7.1978, 7.1954, 7.1927, 7.1912, 7.1891, 7.1869, 7.1922, 7.1976, 7.2029, 7.2006, 7.1916, 7.19, 7.1886, 7.1869, 7.1926, 7.1903, 7.1881, 7.1929, 7.1917, 7.1991, 7.2334, 7.2315, 7.2298, 7.2303, 7.2349, 7.2325, 7.2372, 7.2347, 7.2327, 7.2307, 7.2361, 7.2336, 7.2385, 7.236, 7.2343, 7.2329, 7.2264, 7.2382, 7.2366, 7.2357, 7.2567, 7.257, 7.2546, 7.2599, 7.2675, 7.2653, 7.2629, 7.2608, 7.2654, 7.2699, 7.2811, 7.2857, 7.2831, 7.2818, 7.2806, 7.2789, 7.2836, 7.2811, 7.2855, 7.2832, 7.2817, 7.28, 7.2846, 7.289, 7.2867, 7.2844, 7.276, 7.2803, 7.2781, 7.2758, 7.2736, 7.2782, 7.2772, 7.2752, 7.2793, 7.2776, 7.2755, 7.2734, 7.2712, 7.2689, 7.2665, 7.2647, 7.2733, 7.2778, 7.2761, 7.2744, 7.2724, 7.2885, 7.3025, 7.3002, 7.3045, 7.3021, 7.2998, 7.3008, 7.2987, 7.2968, 7.2955, 7.2933, 7.2908, 7.2884, 7.286, 7.2842, 7.2942, 7.2918, 7.2895, 7.2871, 7.2857, 7.2964, 7.2941, 7.2919, 7.2975, 7.2954, 7.2995, 7.3047, 7.309, 7.313, 7.3177, 7.316, 7.3137, 7.3182, 7.3166, 7.3169, 7.3148, 7.3135, 7.3111, 7.3089, 7.3066, 7.3054, 7.3041, 7.3025, 7.2947, 7.2925, 7.2908, 7.2955, 7.2933, 7.2911, 7.2895, 7.2875, 7.2851, 7.2838, 7.2881, 7.2857, 7.2836, 7.2815, 7.2738, 7.2761, 7.2739, 7.2663, 7.2703, 7.2688, 7.2673, 7.2656, 7.2641, 7.2619, 7.2597, 7.2575, 7.256, 7.2549, 7.2548, 7.2533, 7.2512, 7.2548, 7.253, 7.2513, 7.2492, 7.2474, 7.2453, 7.2434, 7.2419, 7.2411, 7.2393, 7.2455, 7.2435, 7.2508, 7.2588, 7.253, 7.2514, 7.2498, 7.2441, 7.2419, 7.2405, 7.246, 7.245, 7.2429, 7.2428, 7.2467, 7.2455, 7.2437, 7.243, 7.2423, 7.2654, 7.2635, 7.2621, 7.2601, 7.259, 7.2572, 7.255, 7.255, 7.2568, 7.2555, 7.2535, 7.2574, 7.2554, 7.2539, 7.2527, 7.2508, 7.2488, 7.2473, 7.2458, 7.2438, 7.2418, 7.2406, 7.2387, 7.2367, 7.2354, 7.234, 7.2319, 7.2299, 7.2286, 7.2274, 7.2255, 7.2185, 7.2224, 7.2215, 7.2196, 7.219, 7.2179, 7.2164, 7.2145, 7.2131, 7.2112, 7.2116, 7.2096, 7.2134, 7.2116, 7.2104, 7.2085, 7.2068, 7.2053, 7.2148, 7.2133, 7.2162, 7.2148, 7.2129, 7.2196, 7.2182, 7.2219, 7.22, 7.2182, 7.2164, 7.2146, 7.2129, 7.212, 7.2161, 7.2214, 7.2195, 7.2195, 7.2177, 7.2166, 7.2223, 7.2227, 7.2225, 7.2207, 7.2196, 7.2384, 7.2377, 7.2435, 7.2472, 7.2457, 7.2493, 7.2473, 7.2453, 7.2442, 7.2475, 7.2458, 7.2441, 7.2422, 7.2456, 7.2437, 7.2418, 7.2353, 7.2387, 7.2367, 7.235, 7.2282, 7.2278, 7.231, 7.2293, 7.2275, 7.2258, 7.224, 7.2221, 7.2209, 7.2245, 7.2235, 7.2218, 7.2204, 7.2205, 7.2157, 7.2153, 7.2141, 7.2177, 7.2208, 7.2192, 7.2192, 7.2228, 7.2209, 7.2192, 7.2227, 7.2208, 7.2189, 7.2173, 7.2429, 7.2477, 7.2462, 7.2444, 7.2427, 7.2411, 7.2453, 7.2389, 7.2372, 7.2358, 7.234, 7.2322, 7.2305, 7.2342, 7.2377, 7.2363, 7.2345, 7.2339, 7.232, 7.2305, 7.2292, 7.228, 7.2262, 7.2244, 7.2293, 7.2335, 7.2321, 7.2301, 7.2293, 7.2386, 7.2374, 7.2362, 7.2349, 7.2384, 7.2365, 7.2349, 7.2331, 7.2317, 7.2301, 7.2283, 7.2315, 7.2302, 7.2295, 7.2305, 7.2297, 7.2284, 7.2267, 7.2251, 7.2237, 7.2227, 7.2259, 7.2292, 7.2275, 7.2261, 7.2294, 7.2327, 7.231, 7.2301, 7.229, 7.2277, 7.2263, 7.2255, 7.2263, 7.2251, 7.2241, 7.2223, 7.2207, 7.2191, 7.2183, 7.2172, 7.216, 7.2154, 7.2137, 7.2129, 7.2162, 7.2151, 7.2143, 7.2128, 7.2163, 7.2151, 7.214, 7.2131, 7.2074, 7.2064, 7.2054, 7.2038, 7.2068, 7.2066, 7.2055, 7.2091, 7.2076, 7.2112, 7.21, 7.2084, 7.207, 7.2053, 7.2037, 7.2026, 7.2057, 7.2043, 7.2032, 7.2067, 7.2102, 7.2087, 7.2073, 7.2103, 7.2092, 7.2081, 7.2068, 7.2053, 7.2039, 7.2027, 7.2013, 7.2007, 7.207, 7.2056, 7.2108, 7.2096, 7.208, 7.2065, 7.2099, 7.2093, 7.2078, 7.2062, 7.2098, 7.2082, 7.207, 7.2053, 7.2042, 7.2072, 7.2055, 7.2038, 7.2021, 7.2049, 7.2044, 7.2051, 7.2035, 7.2063, 7.2047, 7.203, 7.2013, 7.2042, 7.1992, 7.2022, 7.2008, 7.1992, 7.1976, 7.1963, 7.1993, 7.2023, 7.2006, 7.2036, 7.1983, 7.1974, 7.1959, 7.1988, 7.198, 7.201, 7.2038, 7.2022, 7.2006, 7.1991, 7.2066, 7.2052, 7.2082, 7.2067, 7.2054, 7.204, 7.1985, 7.1968, 7.1998, 7.2027, 7.1972, 7.1962, 7.1946, 7.1936, 7.1926, 7.191, 7.1896, 7.1886, 7.183, 7.1863, 7.1899, 7.1887, 7.1874, 7.1862, 7.1846, 7.1838, 7.1829, 7.1816, 7.1808, 7.1799, 7.1794, 7.1787, 7.1783, 7.1776, 7.176, 7.1747, 7.178, 7.1772, 7.1763, 7.1752, 7.1737, 7.1769, 7.1758, 7.1749, 7.1737, 7.1723, 7.1708, 7.1735, 7.1683, 7.1669, 7.1655, 7.1645, 7.1636, 7.1622, 7.1612, 7.1597, 7.1582, 7.1568, 7.1596, 7.1624, 7.1611, 7.16, 7.1591, 7.1579, 7.1565, 7.1556, 7.1544, 7.1543, 7.1543, 7.1493, 7.1485, 7.1503, 7.1496, 7.1492, 7.1477, 7.1466, 7.147600000000001, 7.1466, 7.1453, 7.144, 7.1437, 7.1428, 7.1455, 7.1443, 7.1434, 7.1419, 7.1404, 7.1393, 7.1382, 7.1449, 7.1434, 7.1423, 7.1409, 7.1366, 7.1352, 7.1338, 7.1328, 7.1316, 7.1303, 7.1289, 7.1318, 7.1328000000000005, 7.133800000000001, 7.1368, 7.1414, 7.1374, 7.1403, 7.1393, 7.1382, 7.1372, 7.1367, 7.1357, 7.1346, 7.1386, 7.1435, 7.1425, 7.1416, 7.1443, 7.1452, 7.1482, 7.151, 7.1501, 7.149, 7.1565, 7.1595, 7.1583, 7.1574, 7.156, 7.1554, 7.1582, 7.1592, 7.1579, 7.1546, 7.1573, 7.1597, 7.1624, 7.1611, 7.1599, 7.1585, 7.1575, 7.1561, 7.1548, 7.155, 7.158, 7.1604, 7.163, 7.1623, 7.1613, 7.161, 7.1602, 7.1596, 7.1583, 7.1569, 7.1599, 7.1585, 7.161, 7.1603, 7.159, 7.1578, 7.1567, 7.157, 7.1559, 7.1546, 7.1539, 7.1532, 7.1521, 7.1512, 7.15, 7.1527, 7.153700000000001, 7.1524, 7.1513, 7.15, 7.1452, 7.1479, 7.1474, 7.1462, 7.1682, 7.1669, 7.1656, 7.1644, 7.1637, 7.1645, 7.1676, 7.1663, 7.1689, 7.1676, 7.1672, 7.1658, 7.1645, 7.1633, 7.1625, 7.1621, 7.1612, 7.1605, 7.1631, 7.1618, 7.1609, 7.1598, 7.1591, 7.1543, 7.1531, 7.1519, 7.1515, 7.154, 7.1538, 7.1532, 7.1559, 7.1548, 7.1539, 7.1526, 7.1514, 7.1538, 7.1491, 7.1479, 7.1467, 7.1461, 7.1449, 7.1442, 7.1433, 7.1456, 7.1483, 7.147, 7.1458, 7.1449, 7.1437, 7.1426, 7.1413, 7.1405, 7.136, 7.1347, 7.137, 7.1357, 7.1356, 7.1349, 7.1347, 7.1345, 7.1371, 7.1364, 7.1353, 7.1365, 7.1353, 7.1341, 7.1335, 7.1359, 7.1351, 7.138, 7.1369, 7.1361, 7.1317, 7.1343, 7.1333, 7.1324, 7.1318, 7.1315, 7.1325, 7.1314, 7.134, 7.1366, 7.1392, 7.1452, 7.144, 7.143, 7.1435, 7.1448, 7.1436, 7.1428, 7.1417, 7.1406, 7.1399, 7.1389, 7.1379, 7.1344, 7.1373, 7.1337, 7.1329, 7.1325, 7.1316, 7.1342, 7.1367, 7.1323, 7.1316, 7.1307, 7.1333, 7.1325, 7.1313, 7.1309, 7.1406, 7.1393, 7.1422, 7.1409, 7.1432, 7.1431, 7.1422, 7.1413, 7.1404, 7.1393, 7.1384, 7.1374, 7.1364, 7.1353, 7.1344, 7.1337, 7.1324, 7.1315, 7.1307, 7.1332, 7.1325, 7.135, 7.1339, 7.1329, 7.1321, 7.1344, 7.1369, 7.1357, 7.1346, 7.134, 7.1365, 7.136, 7.1385, 7.141, 7.1399, 7.1356, 7.1369, 7.1358, 7.1348, 7.1377, 7.1365, 7.1371, 7.1328, 7.1352, 7.1377, 7.1473, 7.1498, 7.1561, 7.1591, 7.1582, 7.1573, 7.1562, 7.155, 7.1541, 7.1541, 7.1609, 7.1598, 7.1658, 7.172, 7.1745, 7.1734, 7.1725, 7.1717, 7.1712, 7.1703, 7.1799, 7.1787, 7.1778, 7.1766, 7.1756, 7.1749, 7.1773, 7.1796, 7.1785, 7.1848, 7.1837, 7.1826, 7.1815, 7.1837, 7.1829, 7.1827, 7.1817, 7.1805, 7.1795, 7.1783, 7.1771, 7.1765, 7.1788, 7.1781, 7.1772, 7.176, 7.1749, 7.1778, 7.1804, 7.1793, 7.1787, 7.1812, 7.181, 7.1799, 7.1767, 7.179, 7.1813, 7.1805, 7.1793, 7.1815, 7.1837, 7.1863, 7.1904, 7.1925, 7.1913, 7.1903, 7.1894, 7.1897, 7.1886, 7.1878, 7.1911, 7.1899, 7.1907, 7.1896, 7.1885, 7.1882, 7.1871, 7.1871, 7.186, 7.185, 7.184, 7.1832, 7.1821, 7.1816, 7.1775, 7.1785000000000005, 7.1777, 7.18, 7.1791, 7.1813, 7.1803, 7.1799, 7.179, 7.1846, 7.1836, 7.1826, 7.1848, 7.1843, 7.1833, 7.1841, 7.1834, 7.1838, 7.1841, 7.1839, 7.1828, 7.1819, 7.1839, 7.186, 7.1853, 7.1813, 7.1804, 7.1799, 7.1823, 7.1818, 7.1844, 7.1865, 7.1854, 7.1845, 7.1867, 7.1959, 7.196, 7.1982, 7.1972, 7.1962, 7.1987, 7.1982, 7.2003, 7.1991, 7.1982, 7.2002, 7.1991, 7.199, 7.2012, 7.2005, 7.1998, 7.199, 7.1979, 7.1976, 7.1968, 7.1957, 7.1949, 7.194, 7.193, 7.1985, 7.1975, 7.1972, 7.1963, 7.1954, 7.1982, 7.2004, 7.2025, 7.2015, 7.2036, 7.2058, 7.2046, 7.2006, 7.1995, 7.2015, 7.2004, 7.1993, 7.1952, 7.1973, 7.201, 7.2031, 7.2052, 7.2059, 7.2049, 7.2043, 7.2065, 7.2089, 7.2083, 7.2104, 7.2093, 7.2134, 7.2158, 7.2149, 7.2142, 7.2135, 7.2126, 7.2114, 7.2109, 7.2139, 7.2127, 7.2121, 7.214, 7.2161, 7.215, 7.214, 7.2161, 7.215, 7.2139, 7.2128, 7.2117, 7.2109, 7.2099, 7.2093, 7.2084, 7.2105, 7.2125, 7.2114, 7.2108, 7.21, 7.2089, 7.2082, 7.2102, 7.2092, 7.2083, 7.2077, 7.2069, 7.2062, 7.2054, 7.2073, 7.2067, 7.2085, 7.2074, 7.2095, 7.2088, 7.2078, 7.2068, 7.2062, 7.2083, 7.2073, 7.2093, 7.2113, 7.2104, 7.2094, 7.2084, 7.2105, 7.2098, 7.2086, 7.2075, 7.2079, 7.2069, 7.206, 7.2079, 7.2102, 7.2092, 7.2081, 7.207, 7.2061, 7.2057, 7.2051, 7.2046, 7.2036, 7.2026, 7.2015, 7.201, 7.2007, 7.1997, 7.1989, 7.1979, 7.1971, 7.196, 7.1978, 7.1998, 7.2019, 7.2045, 7.2037, 7.2059, 7.2052, 7.2043, 7.2033, 7.2055, 7.2074, 7.2064, 7.2083, 7.2102, 7.2122, 7.2116, 7.2106, 7.2126, 7.2118, 7.2109, 7.2099, 7.2095, 7.2084, 7.2076, 7.2067, 7.2057, 7.2162, 7.2152, 7.2141, 7.2157, 7.2175, 7.2166, 7.2159, 7.2149, 7.2168, 7.2162, 7.2155, 7.2148, 7.2145, 7.2164, 7.2156, 7.2174, 7.2167, 7.2187, 7.2177, 7.2168, 7.216, 7.218, 7.2199, 7.2224, 7.2214, 7.2207, 7.2201, 7.2221, 7.224, 7.2232, 7.2253, 7.2244, 7.2237, 7.2258, 7.2249, 7.2242, 7.2236, 7.2241, 7.2233, 7.2224, 7.2259, 7.2249, 7.2239, 7.2232, 7.2252, 7.2242, 7.2234, 7.2224, 7.2216, 7.2205, 7.2198, 7.219, 7.2208, 7.2201, 7.2193, 7.2188, 7.2193, 7.2212, 7.2201, 7.2191, 7.2223, 7.2217, 7.2211, 7.2205, 7.2198, 7.2189, 7.218, 7.2172, 7.217, 7.2161, 7.2172, 7.2191, 7.2211, 7.2231, 7.2222, 7.2213, 7.2188, 7.2178, 7.2144, 7.2136, 7.2128, 7.2118, 7.2118, 7.2108, 7.2216, 7.2208, 7.2198, 7.2192, 7.2182, 7.2173, 7.2166, 7.2161, 7.2183, 7.2176, 7.2166, 7.2158, 7.2209, 7.2199, 7.2194, 7.219, 7.218, 7.2201, 7.2326, 7.2319, 7.2339, 7.2331, 7.2324, 7.2315, 7.2305, 7.2307, 7.23, 7.2295, 7.229, 7.2284, 7.2276, 7.2266, 7.226, 7.225, 7.2268, 7.2262, 7.2253, 7.2247, 7.2237, 7.2227, 7.2223, 7.2216, 7.2209, 7.2175, 7.2165, 7.2158, 7.2149, 7.214, 7.2137, 7.2128, 7.2135, 7.213, 7.2123, 7.2139, 7.213, 7.2154, 7.2152, 7.2143, 7.2162, 7.2156, 7.2175, 7.2166, 7.2158, 7.2176, 7.2166, 7.2158, 7.215, 7.2169, 7.2163, 7.218, 7.2177, 7.217, 7.2163, 7.2155, 7.2173, 7.2196, 7.2215, 7.2233, 7.2226, 7.2216, 7.2209, 7.2229, 7.2221, 7.2213, 7.2206, 7.2225, 7.2242, 7.2233, 7.2251, 7.2244, 7.2263, 7.2253, 7.2244, 7.2235, 7.2226, 7.2244, 7.2234, 7.2225, 7.2216, 7.2206, 7.2224, 7.2216, 7.2209, 7.2208, 7.2202, 7.2194, 7.2189, 7.2184, 7.218, 7.217, 7.2188, 7.2182, 7.2173, 7.2163, 7.2129, 7.2124, 7.2145, 7.214, 7.2132, 7.2124, 7.2133, 7.2128, 7.2119, 7.2228, 7.2218, 7.2213, 7.2203, 7.2193, 7.2212, 7.2207, 7.2227, 7.2245, 7.2238, 7.2256, 7.2247, 7.2242, 7.226, 7.2252, 7.2245, 7.2263, 7.2253, 7.2247, 7.224, 7.2231, 7.2248, 7.2265, 7.2233, 7.2226, 7.2238, 7.223, 7.2224, 7.222, 7.221, 7.2202, 7.2195, 7.2186, 7.2177, 7.2171, 7.2163, 7.2154, 7.2145, 7.2162, 7.2158, 7.2149, 7.2139, 7.2134, 7.2126, 7.2117, 7.2112, 7.2102, 7.2094, 7.2088, 7.2106, 7.21, 7.2094, 7.2086, 7.208, 7.2072, 7.2077, 7.2068, 7.206, 7.2051, 7.2042, 7.2059, 7.2054, 7.2048, 7.2039, 7.2034, 7.2027, 7.2018, 7.2038, 7.201, 7.202, 7.2012, 7.2031, 7.2025, 7.2044, 7.2044, 7.2035, 7.2051, 7.2072, 7.2066, 7.2058, 7.2052, 7.2043, 7.2041, 7.2059, 7.2051, 7.2041, 7.2032, 7.2031, 7.2027, 7.202, 7.2011, 7.2004, 7.2, 7.1992, 7.1997, 7.1992, 7.2012, 7.2004, 7.1995, 7.2029, 7.202, 7.2011, 7.2003, 7.1995, 7.1989, 7.1987, 7.1981, 7.1972, 7.1964, 7.1955, 7.1947, 7.1939, 7.193, 7.1947, 7.194, 7.1957, 7.2001, 7.2076, 7.2093, 7.2084, 7.2101, 7.2097, 7.2088, 7.2079, 7.2052, 7.2048, 7.2065, 7.2057, 7.2075, 7.2081, 7.2076, 7.2045, 7.2036, 7.2029, 7.2046, 7.2063, 7.2082, 7.2075, 7.2109, 7.21, 7.2092, 7.2084, 7.2079, 7.2074, 7.2066, 7.2061, 7.2055, 7.2072, 7.2065, 7.2064, 7.2058, 7.2051, 7.2088, 7.2081, 7.21, 7.2093, 7.2087, 7.213, 7.2147, 7.2141, 7.2158, 7.2175, 7.2168, 7.2161, 7.2154, 7.2172, 7.2165, 7.2161, 7.2153, 7.2147, 7.2162, 7.2301, 7.2309, 7.2325, 7.2318, 7.2311, 7.2305, 7.2335, 7.2305, 7.232, 7.2314, 7.2306, 7.2297, 7.2291, 7.2308, 7.2325, 7.2318, 7.2334, 7.2306, 7.2297, 7.2289, 7.2281, 7.2296, 7.2291, 7.2284, 7.2301, 7.2293, 7.2316, 7.233, 7.2322, 7.2315, 7.2307, 7.2301, 7.2293, 7.2307, 7.2326, 7.2318, 7.2313, 7.2306, 7.23, 7.2315, 7.2334, 7.2326, 7.2318, 7.2315, 7.2311, 7.2304, 7.2299, 7.2294, 7.2286, 7.2279, 7.2272, 7.2264, 7.2261, 7.2285, 7.2277, 7.227, 7.2247, 7.2264, 7.2256, 7.2248, 7.2241, 7.2257, 7.2249, 7.2241, 7.2234, 7.2226, 7.2218, 7.2234, 7.2226, 7.222, 7.2215, 7.2207, 7.2246, 7.224, 7.2256, 7.2248, 7.2263, 7.2257, 7.2271, 7.2263, 7.2255, 7.2271, 7.2266, 7.2259, 7.2251, 7.2267, 7.2261, 7.2252, 7.2244, 7.2239, 7.2233, 7.2206, 7.2197, 7.2189, 7.2182, 7.2202, 7.2217, 7.2232, 7.2232, 7.2225, 7.222, 7.2214, 7.2208, 7.2201, 7.2194, 7.2189, 7.2198, 7.2193, 7.2188, 7.2182, 7.2176, 7.2169, 7.2164, 7.2156, 7.215, 7.2145, 7.2137, 7.2134, 7.2131, 7.2123, 7.2115, 7.2109, 7.2101, 7.2095, 7.2091, 7.2083, 7.2075, 7.2067, 7.2125, 7.2125, 7.2141, 7.2135, 7.2128, 7.2122, 7.2114, 7.2106, 7.2098, 7.2115, 7.211, 7.2102, 7.2094, 7.2086, 7.2082, 7.2073, 7.2066, 7.2059, 7.2053, 7.2047, 7.2062, 7.2059, 7.2051, 7.2045, 7.2063, 7.2055, 7.2049, 7.2043, 7.2037, 7.2052, 7.2046, 7.2064, 7.2059, 7.2052, 7.2067, 7.2062, 7.2057, 7.205, 7.2045, 7.2037, 7.2053, 7.2045, 7.2062, 7.2057, 7.205, 7.2043, 7.2037, 7.2029, 7.2022, 7.2017, 7.201, 7.2034, 7.2027, 7.2022, 7.2015, 7.2013, 7.201, 7.2008, 7.2003, 7.1999, 7.2015, 7.2007, 7.2071, 7.2064, 7.2056, 7.2052, 7.2055, 7.2048, 7.2042, 7.2041, 7.2062, 7.2059, 7.2075, 7.2068, 7.2084, 7.2094000000000005, 7.2089, 7.2104, 7.2097, 7.2089, 7.2182, 7.2174, 7.2189, 7.2237, 7.223, 7.2225, 7.2219, 7.2212, 7.2206, 7.2216, 7.2231, 7.2223, 7.2219, 7.2212, 7.2225, 7.222, 7.2215, 7.2209, 7.2203, 7.2219, 7.2213, 7.2228, 7.2242, 7.2234, 7.2234, 7.2229, 7.2243, 7.2235, 7.2227, 7.2224, 7.2217, 7.221, 7.2204, 7.2197, 7.2212, 7.2205, 7.2198, 7.2191, 7.2185, 7.2177, 7.2173, 7.2188, 7.2162, 7.2161, 7.2134, 7.2133, 7.2147, 7.2163, 7.2155, 7.2148, 7.214, 7.2156, 7.217, 7.2162, 7.2158, 7.2152, 7.2149, 7.2144, 7.2139, 7.2135, 7.213, 7.2177, 7.2191, 7.2186, 7.2181, 7.2173, 7.2258, 7.2256, 7.2229, 7.2254, 7.2417, 7.243, 7.2424, 7.2418, 7.245, 7.2443, 7.2438, 7.2431, 7.2423, 7.2443, 7.2463, 7.2458, 7.2453, 7.2449, 7.2442, 7.2458, 7.245, 7.2442, 7.2435, 7.2432, 7.2445, 7.2459, 7.2476, 7.247, 7.2464, 7.2456, 7.245, 7.2464, 7.2456, 7.2449, 7.2464, 7.248, 7.2472, 7.2464, 7.2457, 7.2472, 7.2465, 7.2458, 7.245, 7.2448, 7.2421, 7.2436, 7.2429, 7.2422, 7.2415, 7.2409, 7.2423, 7.2415, 7.2431, 7.2445, 7.2437, 7.2434, 7.2431, 7.2424, 7.2416, 7.2411, 7.2384, 7.2378, 7.2393, 7.2386, 7.238, 7.2404, 7.2396, 7.239, 7.2405, 7.2401, 7.2415, 7.2408, 7.2403, 7.2396, 7.2392, 7.2385, 7.2379, 7.2372, 7.2366, 7.2359, 7.2355, 7.2348, 7.2362, 7.2355, 7.2349, 7.2346, 7.2339, 7.2332, 7.2325, 7.2303, 7.2301, 7.2275, 7.2272, 7.2267, 7.226, 7.2274, 7.2247, 7.2243, 7.2237, 7.2235, 7.2252, 7.2268, 7.2269, 7.2285, 7.2278, 7.2291, 7.2285, 7.2278, 7.2273, 7.2267, 7.226, 7.2312, 7.2305, 7.23, 7.2295, 7.2308, 7.2305, 7.2298, 7.2291, 7.2286, 7.2279, 7.2255, 7.2249, 7.2242, 7.2265, 7.2277, 7.227, 7.2263, 7.2312, 7.2306, 7.2303, 7.2317, 7.2312, 7.2307, 7.2321, 7.2314, 7.2311, 7.2307, 7.23, 7.2314, 7.2308, 7.2301, 7.2297, 7.2313, 7.2306, 7.2299, 7.2292, 7.2285, 7.2283, 7.2275, 7.2268, 7.2265, 7.2258, 7.2271, 7.2267, 7.226, 7.2268, 7.2302, 7.2316, 7.231, 7.2303, 7.2284, 7.2279, 7.2254, 7.231, 7.2325, 7.2339, 7.2335, 7.2327, 7.2322, 7.2347, 7.2352, 7.2349, 7.2353, 7.2349, 7.2342, 7.2339, 7.2339, 7.2334, 7.2327, 7.232, 7.2313, 7.2309, 7.2303, 7.2299, 7.2292, 7.2286, 7.23, 7.2295, 7.227, 7.2263, 7.2258, 7.2253, 7.2228, 7.2226, 7.2204, 7.2197, 7.219, 7.2206, 7.22, 7.2214, 7.2231, 7.2224, 7.2218, 7.2212, 7.2227, 7.224, 7.2234, 7.2228, 7.2242, 7.2235, 7.2249, 7.2242, 7.2235, 7.2228, 7.2234, 7.223, 7.2243, 7.2238, 7.2231, 7.2224, 7.2219, 7.2216, 7.2209, 7.2206, 7.2199, 7.2213, 7.2208, 7.2201, 7.2194, 7.2187, 7.22, 7.2193, 7.2187, 7.22, 7.2195, 7.2189, 7.2221, 7.2215, 7.2259, 7.2271, 7.2309, 7.2332, 7.2337, 7.2332, 7.2325, 7.2318, 7.2311, 7.2304, 7.2318, 7.2312, 7.2308, 7.2304, 7.2318, 7.2312, 7.2326, 7.232, 7.2316, 7.231, 7.2316, 7.2309, 7.2302, 7.2297, 7.2312, 7.2306, 7.23, 7.2294, 7.2317, 7.2312, 7.2308, 7.234, 7.2353, 7.2347, 7.2342, 7.2335, 7.233, 7.2344, 7.2337, 7.235, 7.2364, 7.2358, 7.2355, 7.2349, 7.2342, 7.2336, 7.2351, 7.2345, 7.2357, 7.2352, 7.2345, 7.2356, 7.2369, 7.2362, 7.2358, 7.2352, 7.2349, 7.2345, 7.2338, 7.2333, 7.2328, 7.2322, 7.232, 7.2316, 7.2309, 7.2325, 7.2348, 7.2342, 7.2356, 7.2351, 7.2346, 7.2342, 7.2377, 7.2389, 7.2401, 7.2394, 7.2404, 7.241, 7.2405, 7.2398, 7.2391, 7.2404, 7.2418, 7.2433, 7.2429, 7.2426, 7.2419, 7.2415, 7.241, 7.2405, 7.2401, 7.2435, 7.2496, 7.251, 7.2523, 7.2516, 7.2509, 7.2521, 7.2516, 7.251, 7.2506, 7.2482, 7.2486, 7.25, 7.2514, 7.2507, 7.2514, 7.2495, 7.2489, 7.2505, 7.2502, 7.2496, 7.249, 7.2503, 7.2496, 7.2489, 7.2484, 7.2501, 7.2513, 7.2508, 7.2502, 7.2498, 7.2513, 7.2506, 7.25, 7.2512, 7.2524, 7.2517, 7.2532, 7.2526, 7.2522, 7.2551, 7.2568, 7.2564, 7.259, 7.2604, 7.26, 7.2597, 7.2591, 7.2588, 7.2582, 7.2575, 7.2568, 7.2561, 7.2574, 7.2568, 7.2561, 7.2556, 7.255, 7.2545, 7.2539, 7.2573, 7.2588, 7.2601, 7.2614, 7.2608, 7.2603, 7.2597, 7.2593, 7.2586, 7.258, 7.2575, 7.2571, 7.2569, 7.2563, 7.2558, 7.2551, 7.2564, 7.2558, 7.2551, 7.2546, 7.2539, 7.2533, 7.2528, 7.2523, 7.2521, 7.2517, 7.2512, 7.2506, 7.2501, 7.2496, 7.249, 7.2484, 7.2461, 7.2455, 7.2448, 7.2442, 7.2436, 7.2432, 7.2426, 7.2423, 7.242, 7.2418, 7.2414, 7.2407, 7.2401, 7.24, 7.2396, 7.2391, 7.2415, 7.2445, 7.2457, 7.2452, 7.2449, 7.2444, 7.2438, 7.2432, 7.2429, 7.2425, 7.2421, 7.2434, 7.2429, 7.2424, 7.242, 7.2415, 7.2412, 7.2409, 7.2403, 7.2398, 7.2395, 7.2392, 7.2389, 7.2382, 7.2376, 7.2373, 7.2366, 7.2359, 7.2371, 7.2365, 7.238, 7.2375, 7.2373, 7.2367, 7.2379, 7.2391, 7.2395, 7.2389, 7.2383, 7.238, 7.2374, 7.2368, 7.238, 7.2401, 7.2395, 7.2389, 7.2403, 7.2401, 7.2409, 7.2403, 7.2396, 7.2426, 7.2419, 7.2413, 7.2425, 7.2419, 7.2416, 7.2411, 7.241, 7.2407, 7.2401, 7.2378, 7.2373, 7.2368, 7.2361, 7.2355, 7.235, 7.2344, 7.2338, 7.2351, 7.2347, 7.2341, 7.2335, 7.2328, 7.234, 7.2333, 7.2341, 7.2335, 7.2347, 7.2359, 7.2353, 7.2348, 7.2342, 7.2336, 7.2349, 7.2343, 7.2336, 7.2331, 7.2326, 7.2322, 7.2317, 7.2316, 7.2331, 7.2325, 7.232, 7.2315, 7.2328, 7.2323, 7.2318, 7.2311, 7.2307, 7.2285, 7.228, 7.2293, 7.2287, 7.2282, 7.2295, 7.229, 7.2287, 7.2264, 7.226, 7.2256, 7.2252, 7.2264, 7.2275, 7.2269, 7.2281, 7.2275, 7.2287, 7.2298, 7.2292, 7.2286, 7.2298, 7.231, 7.2305, 7.2318, 7.2315, 7.2309, 7.2321, 7.2387, 7.2399, 7.2394, 7.2388, 7.2384, 7.238, 7.2395, 7.239, 7.2386, 7.238, 7.238, 7.2374, 7.2386, 7.2399, 7.2393, 7.2387, 7.2381, 7.2375, 7.237, 7.2364, 7.2358, 7.2352, 7.2347, 7.2325, 7.2337, 7.2331, 7.2326, 7.2321, 7.2333, 7.2327, 7.2338, 7.2335, 7.2332, 7.2326, 7.2322, 7.2334, 7.2332, 7.2327, 7.2323, 7.2316, 7.2312, 7.2306, 7.2304, 7.2334, 7.2329, 7.2323, 7.2318, 7.2314, 7.2326, 7.2337, 7.2348, 7.2345, 7.234, 7.2335, 7.233, 7.2326, 7.232, 7.2332, 7.2326, 7.2338, 7.2333, 7.2327, 7.232, 7.2333, 7.2344, 7.2338, 7.2334, 7.2329, 7.2325, 7.2323, 7.2321, 7.2315, 7.2327, 7.2321, 7.2314, 7.2309, 7.2302, 7.2297, 7.2308, 7.2302, 7.2325, 7.2319, 7.2315, 7.2312, 7.2308, 7.2302, 7.2313, 7.2307, 7.2372, 7.2385, 7.2381, 7.2376, 7.2372, 7.2366, 7.236, 7.2354, 7.2348, 7.2326, 7.232, 7.2314, 7.2312, 7.2308, 7.2302, 7.2296, 7.2291, 7.2289, 7.2284, 7.2296, 7.2291, 7.2286, 7.2282, 7.2278, 7.2292, 7.2304, 7.23, 7.2311, 7.231, 7.2307, 7.2302, 7.2312, 7.2309, 7.2321, 7.2316, 7.231, 7.233, 7.2325, 7.2336, 7.2349, 7.2351, 7.2346, 7.2364, 7.2362, 7.2356, 7.2351, 7.2346, 7.2357, 7.2351, 7.2346, 7.234, 7.2334, 7.2328, 7.2324, 7.2335, 7.2329, 7.234, 7.2337, 7.2331, 7.2329, 7.2323, 7.2345, 7.2358, 7.2418, 7.2423, 7.2419, 7.2416, 7.2411, 7.2412, 7.2407, 7.2402, 7.2416, 7.2433, 7.2428, 7.2438, 7.2467, 7.2462, 7.2456, 7.2468, 7.2462, 7.2457, 7.2451, 7.2445, 7.2439, 7.2433, 7.2427, 7.2421, 7.2427, 7.2422, 7.2405, 7.2418, 7.2431, 7.2443, 7.2448, 7.2442, 7.2437, 7.2448, 7.2442, 7.2436, 7.243, 7.2442, 7.2436, 7.2432, 7.2427, 7.2425, 7.2436, 7.2447, 7.2442, 7.2439, 7.2434, 7.2428, 7.2439, 7.2434, 7.2433, 7.2427, 7.2422, 7.2424, 7.2419, 7.2452, 7.2486, 7.2501, 7.2503, 7.2498, 7.2493, 7.2488, 7.2473, 7.247, 7.2467, 7.2461, 7.2472, 7.2483, 7.2479, 7.2504, 7.2592, 7.2605, 7.2609, 7.2603, 7.26, 7.2596, 7.2591, 7.2587, 7.26, 7.2595, 7.2591, 7.2587, 7.2582, 7.2598, 7.2592, 7.2587, 7.2584, 7.2578, 7.2572, 7.2566, 7.256, 7.2556, 7.2551, 7.2546, 7.2557, 7.2585, 7.2579, 7.2574, 7.2571, 7.2581, 7.2577, 7.2571, 7.2567, 7.2561, 7.2572, 7.2566, 7.256, 7.2571, 7.2601, 7.2596, 7.2606, 7.26, 7.2598, 7.2628, 7.2623, 7.2618, 7.2615, 7.2611, 7.2623, 7.2617, 7.2629, 7.2625, 7.2605, 7.2608, 7.262, 7.2615, 7.2609, 7.262, 7.2617, 7.265, 7.2645, 7.2641, 7.2652, 7.265, 7.2661, 7.2657, 7.2656, 7.265, 7.2663, 7.2658, 7.2653, 7.2647, 7.2644, 7.2638, 7.2633, 7.2629, 7.2626, 7.2637, 7.265, 7.2644, 7.2638, 7.2633, 7.267, 7.2664, 7.2658, 7.2654, 7.265, 7.2646, 7.264, 7.2637, 7.2646, 7.264, 7.2634, 7.2628, 7.2624, 7.2636, 7.2631, 7.2642, 7.2652, 7.2648, 7.2643, 7.2654, 7.2651, 7.2648, 7.2643, 7.2674, 7.2673, 7.2682, 7.2678, 7.2689, 7.2687, 7.2696, 7.2692, 7.2702, 7.2696, 7.2701, 7.2711, 7.2707, 7.2701, 7.2695, 7.2706, 7.2702, 7.2713, 7.2708, 7.2719, 7.2714, 7.2747, 7.2758, 7.2772, 7.277, 7.2766, 7.2762, 7.2774, 7.2768, 7.2762, 7.2761, 7.2774, 7.2775, 7.277, 7.278, 7.2775, 7.2772, 7.2767, 7.2763, 7.2757, 7.2753, 7.2748, 7.2744, 7.2739, 7.2733, 7.273, 7.2742, 7.2744, 7.2739, 7.2737, 7.2746, 7.2741, 7.2753, 7.275, 7.2744, 7.274, 7.2741, 7.2738, 7.2757, 7.276, 7.2755, 7.2749, 7.2775, 7.277, 7.2779, 7.2774, 7.279, 7.2807, 7.2802, 7.2799, 7.2794, 7.2788, 7.2784, 7.2765, 7.2759, 7.2769, 7.2764, 7.276, 7.2755, 7.2749, 7.276, 7.2756, 7.2751, 7.2747, 7.2743, 7.2737, 7.2733, 7.2732, 7.2728, 7.2739, 7.2719, 7.2713, 7.273, 7.2758, 7.2752, 7.2748, 7.2745, 7.274, 7.2734, 7.2728, 7.2722, 7.2727, 7.2722, 7.2725, 7.272, 7.2716, 7.2711, 7.2705, 7.27, 7.2697, 7.2692, 7.2687, 7.2683, 7.2709, 7.2704, 7.2701, 7.2698, 7.2693, 7.2704, 7.2699, 7.2697, 7.2691, 7.2687, 7.2682, 7.2678, 7.2659, 7.2655, 7.2665, 7.266, 7.2657, 7.2654, 7.2649, 7.2647, 7.2643, 7.2638, 7.2634, 7.2641, 7.2652, 7.2662, 7.2656, 7.2651, 7.2647, 7.2642, 7.2636, 7.263, 7.2641, 7.2638, 7.2619, 7.263, 7.2626, 7.2684, 7.2678, 7.269, 7.27, 7.2696, 7.2694, 7.2689, 7.2683, 7.2677, 7.2672, 7.2667, 7.2677, 7.2704, 7.2699, 7.2681, 7.2676, 7.2679, 7.2676, 7.2672, 7.2666, 7.2676, 7.2671, 7.2682, 7.2695, 7.2693, 7.2687, 7.2683, 7.2679, 7.2676, 7.267, 7.2679, 7.2673, 7.2669, 7.2665, 7.266, 7.2656, 7.2665, 7.2675, 7.2669, 7.2679, 7.2675, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2661, 7.2656, 7.2654, 7.2649, 7.2659, 7.267, 7.2665, 7.2659, 7.2654, 7.2636, 7.2631, 7.2626, 7.2623, 7.2622, 7.262, 7.2615, 7.261, 7.2605, 7.26, 7.2597, 7.2592, 7.2587, 7.2582, 7.2591, 7.2586, 7.258, 7.2589, 7.2584, 7.2579, 7.2576, 7.2573, 7.2567, 7.2562, 7.2557, 7.2553, 7.255, 7.256, 7.2555, 7.2551, 7.2546, 7.2561, 7.2557, 7.2552, 7.2561, 7.2558, 7.2553, 7.2563, 7.2558, 7.2555, 7.255, 7.2545, 7.2543, 7.2539, 7.2537, 7.2547, 7.2542, 7.2536, 7.2531, 7.2526, 7.2536, 7.2531, 7.2527, 7.2528, 7.2533, 7.2551, 7.2565, 7.2568, 7.2563, 7.2559, 7.2554, 7.255, 7.2546, 7.2547, 7.2543, 7.2553, 7.2551, 7.2547, 7.2544, 7.2554, 7.2579, 7.2575, 7.2572, 7.2568, 7.2564, 7.2575, 7.2571, 7.2581, 7.2578, 7.2574, 7.2574, 7.2569, 7.2567, 7.2577, 7.2572, 7.2644, 7.2639, 7.2649, 7.2674, 7.2684, 7.268, 7.2676, 7.2672, 7.2711, 7.2707, 7.2732, 7.2761, 7.2757, 7.2754, 7.2752, 7.2762, 7.2757, 7.2757, 7.2752, 7.2747, 7.2742, 7.2737, 7.2734, 7.273, 7.2725, 7.272, 7.2702, 7.2698, 7.2696, 7.2707, 7.2716, 7.271, 7.2705, 7.2701, 7.2696, 7.2706, 7.2701, 7.2686, 7.2695, 7.2694, 7.2689, 7.2672, 7.2667, 7.2676, 7.2671, 7.2653, 7.2648, 7.2659, 7.2667, 7.2663, 7.2679, 7.2674, 7.2685, 7.268, 7.2689, 7.2698, 7.2693, 7.2703, 7.2699, 7.273, 7.2725, 7.272, 7.2729, 7.2732, 7.2742, 7.2737, 7.2747, 7.2743, 7.2753, 7.2763, 7.2773, 7.2768, 7.2787, 7.2783, 7.2778, 7.2789, 7.2784, 7.2781, 7.2776, 7.2801, 7.2796, 7.2792, 7.2787, 7.2795, 7.2777, 7.2773, 7.2784, 7.2781, 7.2763, 7.2758, 7.2767, 7.2764, 7.2759, 7.2769, 7.2764, 7.2759, 7.2754, 7.2749, 7.2746, 7.2741, 7.2752, 7.2761, 7.2758, 7.2755, 7.2754, 7.2752, 7.2749, 7.2746, 7.2742, 7.2738, 7.2735, 7.2733, 7.2728, 7.2724, 7.2736, 7.2733, 7.273, 7.2726, 7.2722, 7.2718, 7.2714, 7.2711, 7.2706, 7.2703, 7.2713, 7.2708, 7.2704, 7.2701, 7.2697, 7.2693, 7.2703, 7.2698, 7.2694, 7.2705, 7.27, 7.2697, 7.2693, 7.269, 7.2696, 7.2705, 7.27, 7.2712, 7.2708, 7.2703, 7.2698, 7.2707, 7.2702, 7.2697, 7.2708, 7.2704, 7.2699, 7.2694, 7.269, 7.2685, 7.268, 7.2675, 7.267, 7.2666, 7.2675, 7.2672, 7.2667, 7.2663, 7.2661, 7.2656, 7.2671, 7.2666, 7.2676, 7.2672, 7.2667, 7.2676, 7.2671, 7.2681, 7.2677, 7.268, 7.2689, 7.2687, 7.2682, 7.268, 7.2663, 7.2673, 7.2669, 7.2651, 7.266, 7.2669, 7.275, 7.2745, 7.2743, 7.2766, 7.2762, 7.2771, 7.2767, 7.2777, 7.2786, 7.2797, 7.2807, 7.2789, 7.2799, 7.2782, 7.2777, 7.2786, 7.2798, 7.2794, 7.279, 7.2807, 7.2808, 7.2803, 7.2813, 7.2809, 7.2806, 7.2793, 7.2802, 7.2797, 7.2792, 7.2787, 7.2796, 7.2818, 7.2814, 7.2809, 7.2805, 7.2813, 7.2822, 7.2818, 7.2823, 7.2818, 7.2813, 7.2809, 7.2806, 7.2815, 7.2812, 7.282, 7.286, 7.2855, 7.285, 7.2845, 7.284, 7.2836, 7.2848, 7.286, 7.2877, 7.2872, 7.289, 7.2893, 7.291, 7.2905, 7.2901, 7.2896, 7.2905, 7.2914, 7.2933, 7.2928, 7.2965, 7.2962, 7.3008, 7.3004, 7.3001, 7.2996, 7.2992, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2987, 7.3024, 7.302, 7.3016, 7.3025, 7.3033, 7.303, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3034, 7.3029, 7.3025, 7.3022, 7.3019, 7.3016, 7.3011, 7.302, 7.3029, 7.3026, 7.3022, 7.3017, 7.3015, 7.301, 7.3007, 7.3003, 7.2998, 7.2994, 7.299, 7.2999, 7.2995, 7.2992, 7.299, 7.2986, 7.2984, 7.2979, 7.2977, 7.2972, 7.2967, 7.2976, 7.2985, 7.2982, 7.2978, 7.2988, 7.2984, 7.298, 7.2992, 7.2987, 7.2983, 7.2979, 7.2974, 7.2996, 7.2992, 7.2987, 7.2984, 7.2979, 7.2976, 7.2986, 7.2995, 7.2991, 7.2988, 7.2983, 7.2978, 7.2973, 7.2969, 7.2964, 7.2959, 7.2955, 7.2951, 7.2948, 7.2958, 7.2945, 7.2954, 7.2949, 7.2946, 7.2959, 7.2954, 7.295, 7.2947, 7.2944, 7.2952, 7.2948, 7.2984, 7.2991, 7.2987, 7.2983, 7.2984, 7.2981, 7.2978, 7.2987, 7.2983, 7.2979, 7.2976, 7.2979, 7.2975, 7.2976, 7.2989, 7.2984, 7.2981, 7.299, 7.2986, 7.2982, 7.2978, 7.2975, 7.2971, 7.2969, 7.2964, 7.2962, 7.3039, 7.3036, 7.3046, 7.303, 7.3027, 7.3024, 7.3033, 7.3029, 7.3025, 7.3021, 7.3016, 7.3025, 7.3034, 7.3031, 7.3027, 7.3023, 7.3019, 7.3014, 7.3009, 7.3006, 7.3002, 7.2998, 7.2995, 7.2991, 7.2988, 7.2987, 7.2983, 7.2978, 7.2974, 7.2971, 7.2967, 7.2964, 7.2962, 7.2959, 7.2954, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2912, 7.2909, 7.2918, 7.2916, 7.2911, 7.2908, 7.2945, 7.2942, 7.295, 7.2947, 7.2943, 7.2939, 7.2934, 7.2931, 7.2927, 7.2924, 7.292, 7.2915, 7.2912, 7.2911, 7.292, 7.2929, 7.2925, 7.292, 7.2917, 7.2912, 7.2908, 7.2905, 7.29, 7.2897, 7.2903, 7.2899, 7.2895, 7.2891, 7.2878, 7.2875, 7.2929, 7.2926, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2953, 7.2976, 7.2972, 7.2968, 7.2965, 7.2973, 7.2968, 7.2963, 7.2958, 7.2966, 7.2963, 7.2959, 7.2943, 7.2939, 7.2934, 7.2944, 7.2941, 7.2937, 7.2934, 7.2932, 7.2928, 7.2925, 7.292, 7.2929, 7.2927, 7.2923, 7.2919, 7.2916, 7.2923, 7.2932, 7.294, 7.2939, 7.2935, 7.2932, 7.2917, 7.2913, 7.2909, 7.2904, 7.2902, 7.2897, 7.2906, 7.2915, 7.291, 7.2918, 7.2914, 7.291, 7.2907, 7.2917, 7.2902, 7.2898, 7.2894, 7.2889, 7.2885, 7.2882, 7.289, 7.2886, 7.2881, 7.2877, 7.2873, 7.2869, 7.2865, 7.2863, 7.2868, 7.2876, 7.286, 7.2856, 7.2851, 7.2847, 7.2843, 7.2838, 7.2834, 7.2829, 7.283, 7.2827, 7.2822, 7.2818, 7.2814, 7.281, 7.2823, 7.2821, 7.2816, 7.2829, 7.2826, 7.2822, 7.2823, 7.2819, 7.2815, 7.281, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.279, 7.2786, 7.2796, 7.2794, 7.2815, 7.2825, 7.2821, 7.2819, 7.2817, 7.2814, 7.2825, 7.2821, 7.2819, 7.2815, 7.2824, 7.2821, 7.2817, 7.2814, 7.2809, 7.2818, 7.2814, 7.2836, 7.2858, 7.2856, 7.2852, 7.2848, 7.2845, 7.2841, 7.2836, 7.2831, 7.2826, 7.2823, 7.2819, 7.2815, 7.2811, 7.2819, 7.2828, 7.2824, 7.2808, 7.2804, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2808, 7.2804, 7.2799, 7.2796, 7.2805, 7.2801, 7.2797, 7.2804, 7.28, 7.2797, 7.2807, 7.2804, 7.2814, 7.281, 7.2806, 7.2815, 7.2812, 7.2816, 7.2813, 7.2834, 7.2831, 7.2827, 7.2824, 7.2847, 7.2843, 7.2839, 7.2835, 7.2833, 7.2836, 7.2832, 7.2841, 7.2838, 7.2835, 7.2845, 7.2842, 7.2837, 7.2833, 7.283, 7.2826, 7.2822, 7.2818, 7.2814, 7.281, 7.2807, 7.2802, 7.281, 7.2806, 7.2802, 7.2798, 7.2794, 7.279, 7.2786, 7.2783, 7.278, 7.2789, 7.2785, 7.2781, 7.2789, 7.2805, 7.2801, 7.2809, 7.2808, 7.2804, 7.28, 7.2796, 7.2804, 7.28, 7.2798, 7.2795, 7.2803, 7.2802, 7.2799, 7.2797, 7.2806, 7.2803, 7.2812, 7.2821, 7.2825, 7.282, 7.283, 7.2827, 7.2823, 7.2833, 7.2842, 7.2851, 7.2847, 7.2855, 7.2864, 7.286, 7.2856, 7.2852, 7.2849, 7.2846, 7.2832, 7.2828, 7.2824, 7.282, 7.2819, 7.2841, 7.2849, 7.2845, 7.2841, 7.2837, 7.2833, 7.2841, 7.2837, 7.2833, 7.2829, 7.2826, 7.2825, 7.2821, 7.2816, 7.2812, 7.2808, 7.2804, 7.28, 7.2808, 7.2805, 7.2802, 7.2797, 7.2794, 7.279, 7.2786, 7.2772, 7.2768, 7.2765, 7.2784, 7.2792, 7.2777, 7.2773, 7.2784, 7.2792, 7.2788, 7.2784, 7.2779, 7.2775, 7.2772, 7.2781, 7.2778, 7.2775, 7.2783, 7.2779, 7.2775, 7.2783, 7.278, 7.2775, 7.2773, 7.2785, 7.278, 7.2777, 7.2773, 7.278, 7.2788, 7.2796, 7.2808, 7.2804, 7.2811, 7.2807, 7.2804, 7.28, 7.2797, 7.2793, 7.279, 7.2788, 7.2796, 7.2795, 7.2804, 7.28, 7.2796, 7.2792, 7.28, 7.2799, 7.2797, 7.2793, 7.2802, 7.281, 7.2812, 7.2819, 7.2815, 7.2823, 7.282, 7.2805, 7.2801, 7.2786, 7.2771, 7.2767, 7.2763, 7.2771, 7.2767, 7.2764, 7.276, 7.2756, 7.2754, 7.2763, 7.276, 7.2756, 7.2751, 7.2737, 7.2733, 7.2729, 7.2716, 7.2711, 7.272, 7.2716, 7.2711, 7.2722, 7.2718, 7.2715, 7.2712, 7.272, 7.2718, 7.2716, 7.2747, 7.2746, 7.2742, 7.2739, 7.2745, 7.2742, 7.2738, 7.2734, 7.2731, 7.2728, 7.2724, 7.272, 7.2716, 7.2705, 7.2705, 7.2713, 7.2712, 7.2744, 7.2752, 7.2748, 7.2746, 7.2755, 7.2766, 7.2799, 7.2795, 7.281, 7.2806, 7.2815, 7.2824, 7.282, 7.2816, 7.2801, 7.2808, 7.2828, 7.2824, 7.2836, 7.2833, 7.283, 7.2827, 7.2835, 7.2831, 7.2827, 7.2823, 7.2831, 7.282, 7.2816, 7.2812, 7.2812, 7.2815, 7.2826, 7.2825, 7.2822, 7.2818, 7.2867, 7.2865, 7.2861, 7.2859, 7.2856, 7.2864, 7.286, 7.2856, 7.2865, 7.2861, 7.2857, 7.2854, 7.285, 7.2846, 7.2844, 7.2841, 7.285, 7.2848, 7.2857, 7.2855, 7.2852, 7.2848, 7.2845, 7.2841, 7.2837, 7.2833, 7.2831, 7.2851, 7.2859, 7.2869, 7.2878, 7.2891, 7.2899, 7.2895, 7.2891, 7.2888, 7.2895, 7.2892, 7.2899, 7.2908, 7.2904, 7.2899, 7.2895, 7.2891, 7.2888, 7.2896, 7.2892, 7.2889, 7.2897, 7.2893, 7.2891, 7.2887, 7.2884, 7.2892, 7.2889, 7.2887, 7.2883, 7.2881, 7.2877, 7.2873, 7.2917, 7.2913, 7.291, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.291, 7.2918, 7.2914, 7.2912, 7.2897, 7.2893, 7.2889, 7.2897, 7.2893, 7.289, 7.2886, 7.2883, 7.2879, 7.2875, 7.2872, 7.2879, 7.2882, 7.2878, 7.2874, 7.2871, 7.2869, 7.2864, 7.286, 7.2858, 7.2854, 7.2851, 7.2847, 7.2843, 7.2839, 7.2846, 7.2853, 7.285, 7.2846, 7.2844, 7.2841, 7.2837, 7.2833, 7.2829, 7.2836, 7.2833, 7.2829, 7.2826, 7.2823, 7.2831, 7.2827, 7.2823, 7.2823, 7.2819, 7.2816, 7.2824, 7.282, 7.2816, 7.2824, 7.282, 7.2818, 7.2816, 7.2812, 7.282, 7.2816, 7.2823, 7.2819, 7.2828, 7.2826, 7.2834, 7.283, 7.2826, 7.2824, 7.282, 7.2828, 7.2824, 7.2821, 7.2817, 7.2825, 7.2833, 7.2829, 7.2837, 7.2845, 7.2844, 7.2841, 7.2837, 7.2845, 7.2843, 7.2839, 7.2837, 7.2836, 7.2845, 7.2841, 7.2837, 7.2833, 7.2829, 7.2825, 7.2823, 7.2819, 7.2817, 7.2813, 7.2809, 7.2838, 7.2846, 7.2855, 7.2863, 7.2871, 7.2882, 7.289, 7.2886, 7.2872, 7.2879, 7.2875, 7.2872, 7.3009, 7.3005, 7.3001, 7.2998, 7.3006, 7.3004, 7.3002, 7.2999, 7.3008, 7.3006, 7.3008, 7.3016, 7.3012, 7.3008, 7.3029, 7.3027, 7.3027, 7.3024, 7.302, 7.3016, 7.3012, 7.3009, 7.3005, 7.3006, 7.3014, 7.301, 7.3018, 7.3015, 7.3013, 7.301, 7.3007, 7.3003, 7.301, 7.3018, 7.3015, 7.3011, 7.3007, 7.3004, 7.3, 7.2996, 7.2992, 7.2989, 7.2987, 7.2984, 7.298, 7.2977, 7.3033, 7.3029, 7.3026, 7.3032, 7.3028, 7.3026, 7.3024, 7.3025, 7.3033, 7.303, 7.3028, 7.3025, 7.3033, 7.3044, 7.3052, 7.3048, 7.3046, 7.3042, 7.305, 7.3057, 7.3053, 7.305, 7.3047, 7.3046, 7.3054, 7.305, 7.3046, 7.3053, 7.3059, 7.3055, 7.304, 7.3037, 7.3033, 7.3031, 7.3027, 7.3026, 7.3022, 7.3018, 7.3025, 7.3022, 7.3022, 7.302, 7.3007, 7.3004, 7.3, 7.2997, 7.2993, 7.299, 7.2986, 7.2982, 7.2982, 7.3003, 7.3, 7.2996, 7.3004, 7.3011, 7.3018, 7.3025, 7.3021, 7.3017, 7.3014, 7.301, 7.3006, 7.3013, 7.3009, 7.3007, 7.3014, 7.3011, 7.3007, 7.3003, 7.2999, 7.2995, 7.2991, 7.2979, 7.2975, 7.2972, 7.2968, 7.2964, 7.2971, 7.2967, 7.2964, 7.2973, 7.298, 7.2989, 7.2986, 7.2982, 7.2989, 7.2986, 7.2982, 7.2979, 7.2976, 7.2976, 7.2974, 7.2973, 7.2973, 7.2969, 7.2956, 7.2954, 7.2962, 7.2959, 7.2956, 7.2953, 7.2949, 7.2945, 7.2943, 7.295, 7.2947, 7.2943, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2935, 7.2942, 7.2949, 7.2946, 7.2942, 7.2949, 7.2945, 7.2942, 7.2938, 7.2934, 7.2932, 7.2928, 7.2924, 7.2931, 7.2927, 7.2924, 7.2924, 7.292, 7.2916, 7.2913, 7.291, 7.2908, 7.2906, 7.2913, 7.292, 7.2916, 7.2914, 7.2911, 7.2907, 7.2903, 7.2902, 7.2898, 7.2895, 7.2893, 7.2893, 7.289, 7.2888, 7.2909, 7.2917, 7.2915, 7.2912, 7.2909, 7.2916, 7.2912, 7.292, 7.2916, 7.2913, 7.2911, 7.2918, 7.2916, 7.2923, 7.2919, 7.2916, 7.2912, 7.2914, 7.291, 7.2906, 7.2913, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2899, 7.2897, 7.2895, 7.2891, 7.2888, 7.2884, 7.289, 7.2903, 7.2899, 7.2906, 7.2903, 7.29, 7.2898, 7.2894, 7.2901, 7.2909, 7.2905, 7.2901, 7.2908, 7.2905, 7.2912, 7.2912, 7.2908, 7.2906, 7.2903, 7.2899, 7.2895, 7.2892, 7.2888, 7.2886, 7.2882, 7.2878, 7.2875, 7.2872, 7.2868, 7.2869, 7.2867, 7.2864, 7.2868, 7.2877, 7.2874, 7.2871, 7.2878, 7.294, 7.2937, 7.2933, 7.293, 7.2927, 7.2934, 7.2931, 7.2939, 7.2936, 7.2933, 7.293, 7.2934, 7.2931, 7.2927, 7.2933, 7.293, 7.2927, 7.2924, 7.292, 7.2928, 7.2924, 7.292, 7.2917, 7.2914, 7.291, 7.2907, 7.2903, 7.2899, 7.2895, 7.2902, 7.2898, 7.2894, 7.2891, 7.2891, 7.2888, 7.2884, 7.288, 7.2878, 7.2874, 7.2872, 7.2868, 7.2864, 7.286, 7.2867, 7.2907, 7.2903, 7.2901, 7.2897, 7.29, 7.2907, 7.2914, 7.2911, 7.2918, 7.2965, 7.2961, 7.2957, 7.2964, 7.2971, 7.2968, 7.2974, 7.297, 7.2967, 7.2974, 7.2982, 7.2979, 7.2976, 7.2972, 7.2979, 7.2975, 7.2981, 7.2977, 7.2974, 7.2981, 7.2978, 7.2975, 7.2972, 7.297, 7.2966, 7.2962, 7.298, 7.2987, 7.2984, 7.2982, 7.2978, 7.2974, 7.297, 7.2977, 7.2973, 7.2971, 7.2968, 7.2967, 7.2963, 7.2962, 7.297, 7.2967, 7.2975, 7.2971, 7.2968, 7.2964, 7.2961, 7.296, 7.2956, 7.2952, 7.295, 7.2946, 7.2942, 7.2949, 7.2945, 7.2952, 7.2948, 7.2956, 7.2953, 7.2961, 7.2958, 7.2968, 7.2976, 7.2973, 7.2971, 7.2968, 7.2967, 7.2965, 7.2968, 7.2976, 7.2972, 7.2969, 7.2966, 7.2988, 7.2995, 7.2993, 7.299, 7.2987, 7.2993, 7.2989, 7.2986, 7.2983, 7.298, 7.2987, 7.2984, 7.298, 7.2976, 7.2973, 7.2969, 7.2969, 7.2965, 7.2963, 7.2959, 7.2966, 7.2962, 7.2969, 7.2966, 7.2973, 7.2969, 7.2967, 7.2964, 7.2952, 7.296, 7.2956, 7.2953, 7.2951, 7.2958, 7.2956, 7.2952, 7.2949, 7.2946, 7.2943, 7.294, 7.2937, 7.2935, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2912, 7.2909, 7.2942, 7.2938, 7.2945, 7.2942, 7.2949, 7.2955, 7.2953, 7.296, 7.2956, 7.2953, 7.2949, 7.2946, 7.2943, 7.295, 7.2947, 7.2954, 7.2961, 7.296, 7.2958, 7.2956, 7.2962, 7.2959, 7.2966, 7.2963, 7.2959, 7.2966, 7.2972, 7.2969, 7.2966, 7.2973, 7.297, 7.2966, 7.2963, 7.2962, 7.2969, 7.2965, 7.2961, 7.2968, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2947, 7.2943, 7.2949, 7.2946, 7.2934, 7.2932, 7.2931, 7.2928, 7.293, 7.2926, 7.2924, 7.2931, 7.2928, 7.2934, 7.2931, 7.2938, 7.2935, 7.2942, 7.294, 7.2937, 7.2935, 7.2944, 7.294, 7.2947, 7.2945, 7.2941, 7.2938, 7.2935, 7.2932, 7.294, 7.2937, 7.2934, 7.2931, 7.2928, 7.2925, 7.2921, 7.2918, 7.2915, 7.2916, 7.2915, 7.2912, 7.2909, 7.2906, 7.2904, 7.292, 7.2916, 7.2913, 7.291, 7.2906, 7.2903, 7.2899, 7.2906, 7.2902, 7.2917, 7.2914, 7.291, 7.2898, 7.2908, 7.2905, 7.2933, 7.2949, 7.2946, 7.2943, 7.2961, 7.2957, 7.2963, 7.298, 7.2987, 7.2983, 7.298, 7.2986, 7.3003, 7.301, 7.3007, 7.3003, 7.3001, 7.2998, 7.2995, 7.3002, 7.3025, 7.3022, 7.3034, 7.3038, 7.3046, 7.3044, 7.304, 7.3036, 7.3065, 7.3072, 7.307, 7.3067, 7.3071, 7.3069, 7.3066, 7.3064, 7.3071, 7.3069, 7.3065, 7.3061, 7.3068, 7.3066, 7.3063, 7.307, 7.3077, 7.3077, 7.3074, 7.3081, 7.3077, 7.3073, 7.308, 7.3077, 7.3076, 7.3083, 7.308, 7.3078, 7.3075, 7.3073, 7.307, 7.3069, 7.3067, 7.3074, 7.3082, 7.3089, 7.3096, 7.3093, 7.3091, 7.3087, 7.3092, 7.3099, 7.3097, 7.3096, 7.3103, 7.3099, 7.3096, 7.3103, 7.3101, 7.3099, 7.3096, 7.3092, 7.309, 7.3097, 7.3103, 7.311, 7.3108, 7.3115, 7.3114, 7.3122, 7.3119, 7.3116, 7.3123, 7.3122, 7.3121, 7.3119, 7.3117, 7.3114, 7.3111, 7.3111, 7.3109, 7.3106, 7.3103, 7.31, 7.3098, 7.3129, 7.3128, 7.3134, 7.313, 7.3129, 7.3119, 7.3116, 7.3112, 7.311, 7.3098, 7.3095, 7.3094, 7.309, 7.3097, 7.3094, 7.309, 7.3087, 7.3084, 7.3082, 7.3078, 7.3075, 7.3072, 7.3068, 7.3064, 7.3087, 7.3084, 7.3081, 7.3081, 7.3078, 7.3075, 7.3066, 7.3085, 7.3102, 7.3098, 7.3094, 7.3091, 7.3089, 7.3087, 7.3084, 7.3081, 7.3078, 7.3084, 7.3087, 7.3074, 7.308, 7.3077, 7.3075, 7.3067, 7.3064, 7.3071, 7.3064, 7.3061, 7.3069, 7.3067, 7.3065, 7.3062, 7.3061, 7.3059, 7.3059, 7.3067, 7.3067, 7.3063, 7.3061, 7.3068, 7.3068, 7.3066, 7.3064, 7.3061, 7.3061, 7.3069, 7.3077, 7.3074, 7.3073, 7.3072, 7.3072, 7.308, 7.3079, 7.3078, 7.3075, 7.3075, 7.3072, 7.308, 7.3079, 7.3087, 7.3076, 7.3076, 7.3076, 7.3076, 7.3073], '192.168.122.116': [10.8111, 10.8828, 9.1753, 8.3186, 7.9092, 7.6551, 7.4737, 7.1981, 7.029, 7.4404, 7.2458, 7.129, 7.0411, 6.9245, 6.9201, 6.8585, 6.7923, 7.064, 6.7169, 7.1985, 7.1304, 7.1376, 7.0845, 7.297, 7.081, 7.0172, 7.0267, 7.5454, 7.4673, 7.4348, 7.3962, 7.3295, 7.4259, 7.3906, 7.3321, 7.2881, 7.2688, 7.2326, 7.3389, 7.419, 7.497, 7.4442, 7.4121, 7.3764, 7.3418, 7.4378, 7.4115, 7.3763, 7.3389, 7.3081, 7.2719, 7.2424, 7.4651, 7.4295, 7.3932, 7.3561, 7.319, 7.2837, 7.2559, 7.2215, 7.5617, 7.5397, 7.5042, 7.4772, 7.4734, 7.458, 7.4286, 7.4166, 7.3879, 7.4388, 7.4115, 7.3842, 7.357, 7.3805, 7.3649, 7.3513, 7.3309, 7.3149, 7.2974, 7.3401, 7.3155, 7.3594, 7.3368, 7.3218, 7.3059, 7.3478, 7.3229, 7.3084, 7.3526, 7.3403, 7.3252, 7.3455, 7.3251, 7.3041, 7.2955, 7.3329, 7.3152, 7.3, 7.3002, 7.2798, 7.5208, 7.4998, 7.4345, 7.4199, 7.4533, 7.4842, 7.5139, 7.4939, 7.4789, 7.4753, 7.4618, 7.4531, 7.3924, 7.4285, 7.4139, 7.4474, 7.4327, 7.4668, 7.4521, 7.4398, 7.428, 7.4268, 7.4119, 7.3977, 7.4285, 7.4594, 7.4469, 7.4305, 7.4157, 7.4038, 7.3903, 7.3768, 7.4039, 7.475, 7.4651, 7.495, 7.4839, 7.4708, 7.4546, 7.4406, 7.4988, 7.4884, 7.4799, 7.5034, 7.4948, 7.482, 7.4768, 7.4649, 7.4512, 7.5702, 7.5556, 7.6097, 7.5978, 7.5851, 7.5422, 7.5284, 7.5163, 7.5032, 7.4937, 7.4849, 7.4741, 7.462, 7.4506, 7.437, 7.4251, 7.4234, 7.3841, 7.372, 7.3612, 7.3495, 7.3434, 7.3345, 7.3869, 7.3774, 7.3692, 7.3595, 7.3564, 7.3448, 7.3348, 7.3286, 7.3179, 7.3359, 7.4373, 7.4283, 7.4186, 7.4094, 7.3987, 7.3918, 7.3858, 7.3749, 7.366, 7.357, 7.353, 7.3716, 7.3902, 7.3795, 7.3702, 7.3608, 7.3547, 7.3481, 7.3382, 7.3288, 7.3216, 7.337, 7.3302, 7.3211, 7.3386, 7.3308, 7.322, 7.318, 7.3096, 7.3002, 7.3469, 7.3407, 7.3305, 7.3478, 7.3428, 7.3337, 7.3305, 7.3478, 7.3402, 7.3564, 7.3499, 7.3287, 7.3195, 7.3137, 7.3075, 7.3013, 7.3199, 7.3388, 7.3571, 7.3723, 7.3682, 7.3647, 7.3586, 7.3354, 7.3266, 7.3186, 7.3143, 7.3293, 7.3224, 7.3198, 7.3113, 7.2868, 7.2946, 7.2893, 7.2831, 7.2766, 7.2691, 7.2834, 7.2867, 7.2807, 7.2777, 7.2915, 7.2842, 7.277, 7.2689, 7.2638, 7.2586, 7.2727, 7.2671, 7.2597, 7.2523, 7.2452, 7.2398, 7.233, 7.2462, 7.2391, 7.2529, 7.2664, 7.2614, 7.2572, 7.2519, 7.2453, 7.24, 7.2342, 7.2288, 7.2411, 7.2361, 7.2292, 7.2242, 7.2176, 7.2112, 7.2234, 7.2236, 7.2189, 7.2123, 7.2076, 7.2201, 7.2137, 7.2324, 7.2291, 7.2417, 7.2355, 7.2293, 7.2415, 7.2538, 7.2473, 7.2593, 7.2708, 7.2874, 7.2811, 7.2774, 7.2881, 7.336, 7.3328, 7.3259, 7.3213, 7.3152, 7.3092, 7.3032, 7.3133, 7.3068, 7.301, 7.3124, 7.3058, 7.3003, 7.337, 7.3305, 7.3268, 7.338, 7.3326, 7.3333, 7.3274, 7.3245, 7.3356, 7.3297, 7.3236, 7.3219, 7.3183, 7.3129, 7.3077, 7.3048, 7.3029, 7.2979, 7.2921, 7.2888, 7.2839, 7.2965, 7.3243, 7.3338, 7.33, 7.3405, 7.3351, 7.3317, 7.3322, 7.3312, 7.3271, 7.3223, 7.3225, 7.3197, 7.3624, 7.3601, 7.3855, 7.3799, 7.3738, 7.3843, 7.3653, 7.3778, 7.3586, 7.3708, 7.3821, 7.3638, 7.3678, 7.363, 7.3585, 7.3399, 7.3343, 7.3428, 7.3513, 7.3461, 7.3406, 7.3363, 7.3336, 7.3164, 7.3259, 7.3211, 7.3167, 7.3125, 7.3085, 7.3048, 7.2994, 7.295, 7.2907, 7.299, 7.2944, 7.2916, 7.2875, 7.2833, 7.2827, 7.2797, 7.2759, 7.2862, 7.2829, 7.2798, 7.2747, 7.2704, 7.2656, 7.2756, 7.2856, 7.2938, 7.2902, 7.2853, 7.2825, 7.2801, 7.2777, 7.2868, 7.2718, 7.268, 7.2665, 7.2755, 7.2726, 7.2564, 7.2677, 7.2644, 7.2483, 7.2601, 7.2443, 7.2464, 7.2417, 7.2421, 7.2383, 7.2405, 7.2364, 7.2319, 7.2406, 7.2406, 7.2491, 7.246, 7.2416, 7.2502, 7.2461, 7.2539, 7.2495, 7.2453, 7.2424, 7.238, 7.2348, 7.2322, 7.2284, 7.2262, 7.2403, 7.238, 7.2383, 7.2464, 7.2526, 7.2493, 7.2458, 7.2428, 7.2389, 7.2463, 7.2533, 7.2487, 7.2705, 7.2778, 7.2734, 7.2695, 7.2661, 7.2732, 7.2719, 7.2797, 7.2763, 7.287, 7.2834, 7.2909, 7.2866, 7.2825, 7.2826, 7.2906, 7.2863, 7.2824, 7.2906, 7.2908, 7.2867, 7.2839, 7.2805, 7.2785, 7.2792, 7.2755, 7.2745, 7.2718, 7.2792, 7.2769, 7.2846, 7.281, 7.2899, 7.2966, 7.2981, 7.2982, 7.3062, 7.3021, 7.2982, 7.2946, 7.2956, 7.3028, 7.3108, 7.3068, 7.3138, 7.3209, 7.3256, 7.3216, 7.3193, 7.3161, 7.3127, 7.3107, 7.3067, 7.3047, 7.3135, 7.3104, 7.3076, 7.3052, 7.3012, 7.2974, 7.2939, 7.2905, 7.2964, 7.2931, 7.2999, 7.2967, 7.2932, 7.2912, 7.2887, 7.2956, 7.2917, 7.2881, 7.2844, 7.2812, 7.2781, 7.2743, 7.2719, 7.2796, 7.2768, 7.2733, 7.2694, 7.2667, 7.2646, 7.2638, 7.2611, 7.2575, 7.2642, 7.2606, 7.2572, 7.2534, 7.253, 7.2413, 7.2482, 7.2545, 7.2521, 7.2492, 7.2464, 7.2432, 7.24, 7.2389, 7.2447, 7.2531, 7.2411, 7.2379, 7.2512, 7.2669, 7.2645, 7.2617, 7.2586, 7.2569, 7.2647, 7.2707, 7.2772, 7.2753, 7.2719, 7.2687, 7.2755, 7.272, 7.2699, 7.2683, 7.2666, 7.2644, 7.2624, 7.2609, 7.2584, 7.2644, 7.2612, 7.2684, 7.2672, 7.2749, 7.2804, 7.277, 7.2735, 7.2716, 7.2693, 7.2659, 7.2641, 7.2614, 7.2597, 7.257, 7.2557, 7.2524, 7.2496, 7.2466, 7.2528, 7.2497, 7.2578, 7.2545, 7.2563, 7.2618, 7.259, 7.2557, 7.2609, 7.2584, 7.2555, 7.2521, 7.2578, 7.2569, 7.2536, 7.2508, 7.2477, 7.2552, 7.2532, 7.2511, 7.248, 7.2448, 7.2457, 7.2444, 7.2423, 7.2398, 7.2371, 7.2362, 7.2329, 7.2305, 7.2287, 7.2255, 7.2308, 7.2289, 7.2258, 7.2227, 7.2195, 7.225, 7.2221, 7.2195, 7.2165, 7.2229, 7.2292, 7.2271, 7.2328, 7.2385, 7.3009, 7.3057, 7.3037, 7.301, 7.2978, 7.2954, 7.2935, 7.2992, 7.2977, 7.3033, 7.305, 7.3216, 7.3186, 7.3155, 7.321, 7.319, 7.3162, 7.3139, 7.3107, 7.308, 7.3074, 7.3046, 7.3024, 7.2993, 7.3046, 7.3026, 7.2998, 7.2973, 7.2955, 7.2939, 7.299, 7.3038, 7.3007, 7.2979, 7.2957, 7.293, 7.2901, 7.2873, 7.2853, 7.2826, 7.2801, 7.2774, 7.2745, 7.2809, 7.2783, 7.2756, 7.273, 7.2781, 7.2757, 7.2805, 7.2853, 7.2825, 7.28, 7.2784, 7.276, 7.2812, 7.2863, 7.2914, 7.2888, 7.2943, 7.2914, 7.2885, 7.2869, 7.2845, 7.2819, 7.2875, 7.2856, 7.2829, 7.2803, 7.2782, 7.2836, 7.2823, 7.28, 7.2774, 7.2747, 7.2736, 7.2737, 7.2711, 7.264, 7.2616, 7.2681, 7.2656, 7.2629, 7.2601, 7.2575, 7.2548, 7.2525, 7.25, 7.2475, 7.2462, 7.2437, 7.2421, 7.2335, 7.231, 7.2363, 7.2345, 7.2399, 7.2375, 7.2352, 7.2333, 7.2308, 7.2284, 7.233, 7.2305, 7.2281, 7.2268, 7.2317, 7.2294, 7.2276, 7.2253, 7.2232, 7.228, 7.2263, 7.2239, 7.2284, 7.2272, 7.2341, 7.2317, 7.2292, 7.2341, 7.2318, 7.2299, 7.2275, 7.2394, 7.2458, 7.2435, 7.2495, 7.2544, 7.2601, 7.2642, 7.2689, 7.2665, 7.2641, 7.2641, 7.2689, 7.2671, 7.2646, 7.2626, 7.2601, 7.2587, 7.2567, 7.2545, 7.2521, 7.2574, 7.2549, 7.2491, 7.2568, 7.2558, 7.2548, 7.2594, 7.2571, 7.2617, 7.2797, 7.2774, 7.2781, 7.283, 7.2888, 7.287, 7.2863, 7.2839, 7.2814, 7.2793, 7.2786, 7.2827, 7.2812, 7.2853, 7.2844, 7.2823, 7.2801, 7.2788, 7.2791, 7.2768, 7.2748, 7.2734, 7.271, 7.2701, 7.2687, 7.2732, 7.2777, 7.2754, 7.2797, 7.278, 7.2756, 7.2739, 7.2778, 7.2773, 7.2752, 7.279, 7.2831, 7.2812, 7.279, 7.2766, 7.2747, 7.2725, 7.2732, 7.2955, 7.2931, 7.2973, 7.3073, 7.305, 7.3025, 7.3005, 7.299, 7.2967, 7.3011, 7.2988, 7.2972, 7.2895, 7.2876, 7.2988, 7.2975, 7.2958, 7.2879, 7.2866, 7.2982, 7.3235, 7.3218, 7.3254, 7.3295, 7.3527, 7.351, 7.3492, 7.3472, 7.3544, 7.3525, 7.3565, 7.3605, 7.3589, 7.3528, 7.3511, 7.3488, 7.3525, 7.3506, 7.3489, 7.3468, 7.3705, 7.3683, 7.3664, 7.3702, 7.3688, 7.3669, 7.3646, 7.3627, 7.3667, 7.365, 7.3635, 7.3711, 7.3812, 7.3791, 7.3779, 7.3762, 7.3744, 7.3722, 7.37, 7.3678, 7.3655, 7.3693, 7.3673, 7.3674, 7.3709, 7.369, 7.373, 7.3768, 7.3757, 7.3741, 7.378, 7.3818, 7.3859, 7.3968, 7.3944, 7.3926, 7.3903, 7.3882, 7.3918, 7.3898, 7.3876, 7.3864, 7.3848, 7.3837, 7.3824, 7.3809, 7.389, 7.3926, 7.391, 7.3895, 7.3876, 7.3912, 7.3893, 7.3873, 7.3852, 7.383, 7.3808, 7.3785, 7.3823, 7.3811, 7.3792, 7.378, 7.3758, 7.3797, 7.3798, 7.3831, 7.3813, 7.3791, 7.3775, 7.3704, 7.3741, 7.3779, 7.3758, 7.3736, 7.3716, 7.3752, 7.3788, 7.3718, 7.3699, 7.3678, 7.3714, 7.3693, 7.3675, 7.366, 7.3648, 7.3629, 7.361, 7.3595, 7.3576, 7.3556, 7.3537, 7.3517, 7.3553, 7.3542, 7.3683, 7.3745, 7.3732, 7.3721, 7.371, 7.375, 7.3785, 7.3774, 7.3754, 7.3733, 7.377, 7.3764, 7.383, 7.3809, 7.3842, 7.3876, 7.3808, 7.3798, 7.3835, 7.382, 7.3751, 7.3787, 7.3766, 7.375, 7.3728, 7.3675, 7.3655, 7.3635, 7.3669, 7.3659, 7.3639, 7.362, 7.361, 7.3596, 7.3576, 7.3558, 7.3545, 7.3526, 7.346, 7.3495, 7.353, 7.3522, 7.3503, 7.3537, 7.3525, 7.3557, 7.3551, 7.3541, 7.3476, 7.3463, 7.345, 7.3443, 7.3482, 7.3467, 7.3401, 7.3402, 7.3391, 7.3379, 7.3367, 7.3349, 7.3345, 7.338, 7.336, 7.334, 7.332, 7.3367, 7.335, 7.333, 7.3321, 7.3352, 7.3335, 7.332, 7.3301, 7.3281, 7.3265, 7.3248, 7.3231, 7.3211, 7.3201, 7.314, 7.3121, 7.3104, 7.3138, 7.3119, 7.3157, 7.314, 7.3127, 7.3161, 7.3148, 7.3128, 7.311, 7.3093, 7.3128, 7.3117, 7.3153, 7.3143, 7.3128, 7.3122, 7.3106, 7.3166, 7.3152, 7.3257, 7.3293, 7.3276, 7.3271, 7.3254, 7.3241, 7.3228, 7.3211, 7.3194, 7.3175, 7.3161, 7.3193, 7.3176, 7.3159, 7.3142, 7.3132, 7.3115, 7.3096, 7.3082, 7.3063, 7.3056, 7.3048, 7.3083, 7.3111, 7.3099, 7.3082, 7.3022, 7.301, 7.2997, 7.2982, 7.3016, 7.3007, 7.3043, 7.3025, 7.3009, 7.2994, 7.303, 7.3061, 7.3147, 7.3135, 7.3121, 7.3106, 7.3091, 7.3076, 7.306, 7.3048, 7.3032, 7.3021, 7.3074, 7.3059, 7.3044, 7.3034, 7.3064, 7.3049, 7.3003, 7.3013, 7.2969, 7.3008, 7.2992, 7.2979, 7.2968, 7.2951, 7.2933, 7.2915, 7.2945, 7.2963, 7.2947, 7.2934, 7.2917, 7.2947, 7.2977, 7.3009, 7.2996, 7.2978, 7.3006, 7.3035, 7.3018, 7.3004, 7.2994, 7.2936, 7.2964, 7.2992, 7.302, 7.3048, 7.3036, 7.3023, 7.3051, 7.3042, 7.3076, 7.306, 7.3043, 7.3026, 7.3009, 7.2993, 7.2977, 7.2921, 7.2906, 7.289, 7.2875, 7.2905, 7.2898, 7.2927, 7.2954, 7.2939, 7.2969, 7.2998, 7.3026, 7.3057, 7.3041, 7.2986, 7.2971, 7.2957, 7.294, 7.2929, 7.2925, 7.2868, 7.2858, 7.2849, 7.2833, 7.2863, 7.2901, 7.2932, 7.2934, 7.2922, 7.2906, 7.2891, 7.2875, 7.2905, 7.2933, 7.2926, 7.2959, 7.2945, 7.2938, 7.2926, 7.2919, 7.2902, 7.289, 7.2923, 7.2908, 7.3073, 7.3137, 7.3163, 7.315, 7.3139, 7.3125, 7.3108, 7.3096, 7.3083, 7.3114, 7.3102, 7.3129, 7.3113, 7.3142, 7.3171, 7.3155, 7.3141, 7.3128, 7.3161, 7.3147, 7.3131, 7.3117, 7.3144, 7.3131, 7.3116, 7.3146, 7.3137, 7.3124, 7.3107, 7.31, 7.3091, 7.3084, 7.3114, 7.3111, 7.3139, 7.3123, 7.3112, 7.3096, 7.3082, 7.311, 7.3098, 7.3088, 7.3121, 7.3113, 7.314, 7.3124, 7.3109, 7.3097, 7.3087, 7.3072, 7.3057, 7.3043, 7.3029, 7.3014, 7.2967, 7.2922, 7.2906, 7.2933, 7.2917, 7.2905, 7.2889, 7.2873, 7.2902, 7.2931, 7.2916, 7.29, 7.2893, 7.2882, 7.291, 7.2895, 7.2921, 7.2924, 7.2917, 7.2944, 7.2931, 7.2957, 7.2946, 7.2937, 7.2926, 7.2911, 7.2895, 7.2921, 7.2907, 7.2896, 7.2881, 7.2867, 7.2863, 7.2814, 7.2798, 7.2786, 7.2771, 7.2796, 7.2782, 7.2767, 7.2792, 7.2788, 7.2778, 7.2767, 7.2753, 7.2739, 7.2726, 7.2719, 7.2704, 7.269, 7.2719, 7.2748, 7.274, 7.2729, 7.2756, 7.2784, 7.2769, 7.2764, 7.2754, 7.2793, 7.2784, 7.2773, 7.2764, 7.2752, 7.2739, 7.2768, 7.2756, 7.2781, 7.2732, 7.272, 7.2706, 7.2733, 7.2723, 7.2708, 7.2694, 7.268, 7.2672, 7.2665, 7.2652, 7.2637, 7.2628, 7.2655, 7.2682, 7.2669, 7.2654, 7.2681, 7.281, 7.2796, 7.2782, 7.2808, 7.2794, 7.278, 7.2766, 7.2761, 7.2714, 7.27, 7.2687, 7.2675, 7.2719, 7.2709, 7.2695, 7.2682, 7.2668, 7.2654, 7.2605, 7.2571, 7.2565, 7.2517, 7.2504, 7.254, 7.2533, 7.252, 7.2547, 7.2574, 7.2561, 7.2546, 7.2609, 7.2596, 7.2586, 7.2571, 7.2558, 7.2545, 7.2573, 7.2597, 7.2688, 7.2681, 7.2667, 7.2621, 7.2608, 7.2596, 7.2584, 7.2571, 7.2557, 7.2511, 7.2505, 7.2531, 7.2518, 7.2506, 7.2493, 7.2479, 7.2433, 7.2461, 7.2486, 7.2475, 7.2462, 7.2456, 7.2485, 7.2471, 7.2457, 7.2444, 7.2435, 7.2429, 7.2425, 7.2416, 7.2405, 7.2432, 7.2386, 7.2375, 7.2401, 7.2391, 7.2383, 7.2376, 7.2402, 7.2427, 7.2454, 7.2442, 7.2434, 7.2421, 7.2412, 7.2398, 7.2428, 7.2425, 7.2414, 7.2447, 7.2438, 7.2464, 7.2451, 7.2439, 7.2464, 7.2453, 7.2444, 7.2465, 7.2455, 7.2445, 7.24, 7.2361, 7.2364, 7.2394, 7.242, 7.2409, 7.24, 7.2386, 7.238, 7.2405, 7.2433, 7.242, 7.2376, 7.2399, 7.2425, 7.2412, 7.2402, 7.2392, 7.2383, 7.2373, 7.2362, 7.2352, 7.234, 7.2329, 7.2318, 7.2309, 7.2295, 7.2293, 7.2287, 7.2274, 7.2264, 7.2253, 7.2241, 7.2232, 7.2258, 7.2247, 7.2234, 7.2224, 7.2212, 7.2236, 7.223, 7.2218, 7.221, 7.2276, 7.2265, 7.229, 7.2281, 7.2268, 7.2262, 7.2252, 7.2244, 7.2266, 7.226, 7.2248, 7.2242, 7.223, 7.2251, 7.234, 7.2328, 7.2319, 7.2306, 7.2299, 7.2286, 7.2273, 7.2269, 7.2257, 7.2249, 7.2241, 7.2233, 7.2221, 7.2211, 7.2204, 7.2197, 7.2185, 7.2174, 7.2166, 7.2154, 7.2142, 7.2133, 7.2125, 7.2113, 7.2077, 7.2101, 7.2093, 7.2091, 7.2084, 7.2076, 7.2067, 7.2056, 7.2051, 7.2076, 7.2068, 7.2057, 7.2044, 7.2033, 7.2021, 7.2009, 7.2058, 7.205, 7.2038, 7.2038, 7.2026, 7.202, 7.2013, 7.2006, 7.1995, 7.201, 7.2, 7.1994, 7.2042, 7.203, 7.2062, 7.205, 7.2042, 7.203, 7.2022, 7.2011, 7.2001, 7.1989, 7.2034, 7.2025, 7.2013, 7.2067, 7.2066, 7.2057, 7.2046, 7.2035, 7.2025, 7.2015, 7.1975, 7.1967, 7.1956, 7.1979, 7.1969, 7.1963, 7.1956, 7.1947, 7.1944, 7.1968, 7.196, 7.1981, 7.197, 7.1965, 7.1958, 7.1951, 7.1942, 7.1931, 7.1925, 7.1919, 7.1908, 7.1899, 7.1923, 7.1913, 7.1937, 7.1931, 7.1953, 7.1941, 7.1933, 7.1893, 7.1882, 7.1963, 7.1955, 7.1943, 7.1956, 7.1948, 7.1939, 7.1929, 7.1924, 7.1913, 7.1904, 7.1892, 7.1882, 7.1872, 7.1898, 7.1887, 7.1947, 7.1971, 7.1962, 7.1955, 7.1944, 7.1933, 7.1932, 7.1924, 7.1913, 7.1901, 7.1925, 7.1917, 7.1908, 7.1897, 7.1928, 7.1923, 7.1912, 7.1939, 7.1966, 7.1963, 7.1956, 7.1953, 7.1977, 7.1965, 7.211, 7.2104, 7.2128, 7.2195, 7.2193, 7.2153, 7.2145, 7.2137, 7.2132, 7.2122, 7.2111, 7.2133, 7.2123, 7.2114, 7.2105, 7.2098, 7.209, 7.208, 7.2069, 7.2061, 7.2055, 7.2015, 7.2036, 7.2025, 7.2047, 7.2038, 7.2028, 7.2017, 7.2015, 7.2006, 7.1996, 7.1989, 7.1982, 7.1972, 7.1963, 7.1955, 7.1982, 7.1976, 7.1972, 7.1961, 7.1952, 7.1943, 7.1981, 7.2001, 7.199, 7.1981, 7.2002, 7.1991, 7.1981, 7.1971, 7.1995, 7.1984, 7.1976, 7.1968, 7.196, 7.1953, 7.1947, 7.1969, 7.1961, 7.195, 7.1969, 7.196, 7.1954, 7.1943, 7.1932, 7.1921, 7.1909, 7.1899, 7.1889, 7.1878, 7.1873, 7.1869, 7.1859, 7.1852, 7.1842, 7.1863, 7.1853, 7.1844, 7.1834, 7.1824, 7.1846, 7.1835, 7.1863, 7.1887, 7.1999, 7.1989, 7.1951, 7.194, 7.1961, 7.1925, 7.1916, 7.1907, 7.19, 7.1901, 7.1863, 7.1882, 7.1903, 7.1866, 7.1857, 7.1853, 7.1876, 7.1865, 7.1854, 7.1874, 7.1867, 7.1861, 7.1855, 7.1846, 7.184, 7.1861, 7.1854, 7.1849, 7.1876, 7.1841, 7.1834, 7.183, 7.1819, 7.1838, 7.1827, 7.1821, 7.184, 7.1863, 7.1883, 7.1873, 7.1863, 7.1884, 7.1905, 7.1895, 7.1885, 7.1875, 7.1867, 7.1888, 7.1877, 7.1868, 7.1858, 7.1847, 7.1836, 7.1825, 7.1875, 7.1866, 7.186, 7.185, 7.1842, 7.1861, 7.1881, 7.1871, 7.1865, 7.1854, 7.1871, 7.1891, 7.1881, 7.1871, 7.189, 7.1881, 7.1871, 7.1864, 7.1884, 7.1874, 7.1864, 7.1855, 7.1847, 7.1867, 7.1858, 7.1878, 7.1868, 7.1916, 7.1908, 7.1899, 7.1891, 7.1912, 7.1902, 7.1896, 7.1886, 7.1875, 7.1865, 7.1885, 7.1879, 7.1898, 7.189, 7.1883, 7.1877, 7.187, 7.1889, 7.188, 7.19, 7.189, 7.188, 7.1871, 7.1861, 7.1853, 7.1846, 7.1838, 7.183, 7.1819, 7.1809, 7.1801, 7.1823, 7.1815, 7.181, 7.1803, 7.1825, 7.1791, 7.1781, 7.1801, 7.179, 7.1783, 7.1778, 7.1769, 7.1759, 7.1778, 7.1773, 7.1764, 7.1755, 7.1744, 7.1735, 7.1893, 7.1896, 7.1889, 7.188, 7.1938, 7.1929, 7.192, 7.1911, 7.1967, 7.1963, 7.1953, 7.1922, 7.1941, 7.1932, 7.1953, 7.1973, 7.1966, 7.1986, 7.198, 7.197, 7.1964, 7.1955, 7.1976, 7.197, 7.1964, 7.1982, 7.2006, 7.2028, 7.2018, 7.2009, 7.2, 7.2046, 7.2012, 7.2061, 7.2056, 7.2079, 7.2158, 7.2152, 7.2368, 7.2359, 7.2349, 7.2342, 7.2345, 7.2366, 7.2358, 7.2379, 7.2372, 7.2344, 7.2336, 7.2328, 7.2322, 7.2322, 7.2313, 7.2307, 7.2331, 7.2321, 7.2337, 7.2355, 7.2372, 7.2395, 7.2387, 7.2378, 7.2426, 7.2418, 7.239, 7.2381, 7.2374, 7.2365, 7.2357, 7.2351, 7.2372, 7.2366, 7.2387, 7.2413, 7.2404, 7.2428, 7.2418, 7.2441, 7.2432, 7.2426, 7.2421, 7.2413, 7.2407, 7.2428, 7.2418, 7.2411, 7.2401, 7.2392, 7.2416, 7.241, 7.2448, 7.2466, 7.2457, 7.2476, 7.2472, 7.2492, 7.249, 7.2509, 7.2499, 7.249, 7.248, 7.2472, 7.2518, 7.2623, 7.267, 7.272, 7.2711, 7.2772, 7.2765, 7.2788, 7.2755, 7.2747, 7.2737, 7.2755, 7.2773, 7.2763, 7.2782, 7.2827, 7.2822, 7.2813, 7.286, 7.291, 7.2908, 7.2982, 7.3055, 7.3056, 7.3054, 7.3044, 7.3035, 7.3003, 7.3028, 7.3048, 7.3039, 7.3031, 7.3021, 7.3039, 7.3029, 7.302, 7.3011, 7.3001, 7.2995, 7.299, 7.2981, 7.2971, 7.2964, 7.2955, 7.2948, 7.2944, 7.2935, 7.2926, 7.2949, 7.2941, 7.2931, 7.2921, 7.2911, 7.2927, 7.2921, 7.2915, 7.2906, 7.2922, 7.2913, 7.2904, 7.2897, 7.2893, 7.2883, 7.2876, 7.2867, 7.2861, 7.2852, 7.2869, 7.2861, 7.2856, 7.2874, 7.2865, 7.2857, 7.2847, 7.2843, 7.2859, 7.2853, 7.2844, 7.2835, 7.2852, 7.282, 7.2813, 7.2805, 7.2822, 7.2818, 7.2814, 7.2834, 7.2828, 7.282, 7.2815, 7.2805, 7.2797, 7.2787, 7.2782, 7.2774, 7.2769, 7.2785, 7.2802, 7.2798, 7.2789, 7.2806, 7.2803, 7.2821, 7.2815, 7.2832, 7.2822, 7.2853, 7.2845, 7.2815, 7.2808, 7.28, 7.2793, 7.2811, 7.2802, 7.2797, 7.2789, 7.278, 7.2771, 7.281, 7.2801, 7.2794, 7.2789, 7.278, 7.2771, 7.2765, 7.2783, 7.2774, 7.2771, 7.2765, 7.276, 7.2751, 7.2742, 7.2738, 7.273, 7.2747, 7.2754, 7.2751, 7.2751, 7.2742, 7.2733, 7.2729, 7.2747, 7.2738, 7.2729, 7.2722, 7.2741, 7.2733, 7.2748, 7.2739, 7.2731, 7.2724, 7.272, 7.2712, 7.2708, 7.2702, 7.2694, 7.2685, 7.2726, 7.2719, 7.2712, 7.2756, 7.2748, 7.2844, 7.2843, 7.2837, 7.2828, 7.287, 7.2914, 7.2906, 7.2927, 7.2929, 7.2926, 7.2925, 7.2923, 7.2919, 7.2935, 7.2929, 7.292, 7.2938, 7.2934, 7.2927, 7.292, 7.2936, 7.2953, 7.2948, 7.2941, 7.3009, 7.3004, 7.2995, 7.2989, 7.2982, 7.2976, 7.2969, 7.296, 7.2976, 7.2993, 7.2984, 7.2976, 7.2993, 7.2984, 7.2975, 7.2983, 7.2999, 7.2968, 7.2962, 7.2953, 7.2972, 7.2967, 7.2963, 7.2955, 7.2949, 7.2965, 7.2957, 7.2974, 7.2966, 7.2958, 7.2974, 7.2968, 7.2985, 7.2977, 7.2994, 7.2986, 7.2978, 7.297, 7.2962, 7.2956, 7.2947, 7.2942, 7.2934, 7.293, 7.2923, 7.2918, 7.2934, 7.2925, 7.2919, 7.2911, 7.2902, 7.292, 7.2937, 7.3051, 7.3068, 7.3084, 7.3077, 7.3071, 7.3063, 7.3079, 7.3071, 7.3064, 7.3056, 7.306, 7.3051, 7.3067, 7.3058, 7.308, 7.3074, 7.3065, 7.3058, 7.3049, 7.3043, 7.3038, 7.3054, 7.3024, 7.3016, 7.3013, 7.3006, 7.2997, 7.2988, 7.298, 7.2976, 7.299, 7.2982, 7.2973, 7.2966, 7.2957, 7.2948, 7.294, 7.2958, 7.2974, 7.2965, 7.2957, 7.2948, 7.2944, 7.2935, 7.2926, 7.2921, 7.2918, 7.2913, 7.2908, 7.29, 7.2893, 7.2885, 7.2878, 7.2873, 7.2868, 7.286, 7.2878, 7.2896, 7.2891, 7.2884, 7.2876, 7.2871, 7.2865, 7.2857, 7.2875, 7.2867, 7.2859, 7.2851, 7.2867, 7.286, 7.2852, 7.2845, 7.2836, 7.2851, 7.2846, 7.2838, 7.2851, 7.2842, 7.2857, 7.2848, 7.284, 7.2857, 7.2873, 7.2865, 7.2857, 7.285, 7.2864, 7.2857, 7.2849, 7.2844, 7.2836, 7.285, 7.2841, 7.2855, 7.2853, 7.2846, 7.2837, 7.2829, 7.2823, 7.2816, 7.281, 7.2803, 7.2797, 7.279, 7.2783, 7.2775, 7.279, 7.2786, 7.2803, 7.2797, 7.2791, 7.2786, 7.2779, 7.2773, 7.2768, 7.2765, 7.2758, 7.2756, 7.2748, 7.2739, 7.2738, 7.2733, 7.2726, 7.2742, 7.2735, 7.2738, 7.2736, 7.2728, 7.2722, 7.2714, 7.271, 7.2726, 7.2719, 7.2713, 7.2707, 7.2699, 7.2709, 7.2701, 7.2733, 7.275, 7.2742, 7.2734, 7.2731, 7.2724, 7.2717, 7.271, 7.2706, 7.2698, 7.2692, 7.2688, 7.2682, 7.2675, 7.267, 7.2664, 7.2643, 7.2662, 7.2656, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2682, 7.2676, 7.2667, 7.2639, 7.2633, 7.2646, 7.2639, 7.2631, 7.2646, 7.264, 7.2655, 7.2648, 7.2662, 7.2657, 7.2649, 7.2646, 7.2638, 7.263, 7.2707, 7.2699, 7.2692, 7.2685, 7.27, 7.2692, 7.2686, 7.2702, 7.2696, 7.2691, 7.2692, 7.2705, 7.272, 7.2714, 7.273, 7.2723, 7.2718, 7.271, 7.2702, 7.2717, 7.2711, 7.2703, 7.2695, 7.271, 7.2702, 7.2696, 7.2692, 7.2665, 7.268, 7.2674, 7.2653, 7.2654, 7.2626, 7.2625, 7.262, 7.2614, 7.2611, 7.2604, 7.2597, 7.259, 7.2614, 7.2646, 7.2619, 7.2633, 7.2626, 7.262, 7.2635, 7.2628, 7.263, 7.2631, 7.2666, 7.2665, 7.2684, 7.2679, 7.2673, 7.2666, 7.2681, 7.2678, 7.2678, 7.2671, 7.2665, 7.2657, 7.2672, 7.2666, 7.266, 7.2687, 7.2679, 7.2671, 7.2666, 7.2659, 7.2653, 7.2632, 7.2649, 7.2659, 7.2652, 7.2624, 7.2617, 7.2631, 7.2657, 7.2649, 7.2641, 7.2634, 7.2667, 7.2664, 7.266, 7.2656, 7.265, 7.2643, 7.2636, 7.2628, 7.2621, 7.2614, 7.2606, 7.26, 7.2613, 7.2628, 7.2623, 7.2617, 7.261, 7.2605, 7.2598, 7.259, 7.2582, 7.2616, 7.2615, 7.2611, 7.2584, 7.2579, 7.2574, 7.2567, 7.254, 7.2555, 7.2548, 7.254, 7.2533, 7.2506, 7.2531, 7.2524, 7.2536, 7.2529, 7.2523, 7.2539, 7.2533, 7.2526, 7.2518, 7.2512, 7.2507, 7.25, 7.2514, 7.2507, 7.25, 7.2514, 7.2508, 7.25, 7.2494, 7.2486, 7.2503, 7.2497, 7.2492, 7.2488, 7.2482, 7.2475, 7.2491, 7.2484, 7.2478, 7.247, 7.2484, 7.2476, 7.2491, 7.2485, 7.2478, 7.2493, 7.2486, 7.2479, 7.2496, 7.2501, 7.2514, 7.2511, 7.2524, 7.2537, 7.2533, 7.2527, 7.2542, 7.2556, 7.255, 7.2562, 7.2555, 7.255, 7.2565, 7.2558, 7.2552, 7.2545, 7.2519, 7.2534, 7.2548, 7.2542, 7.2556, 7.2552, 7.2545, 7.2537, 7.2532, 7.2525, 7.2542, 7.2535, 7.2529, 7.2522, 7.2515, 7.2508, 7.2525, 7.2523, 7.2516, 7.2531, 7.2526, 7.254, 7.2533, 7.2526, 7.2541, 7.2535, 7.2532, 7.2528, 7.2526, 7.2519, 7.2532, 7.2525, 7.2577, 7.2574, 7.2593, 7.2586, 7.2598, 7.2593, 7.2585, 7.2577, 7.2571, 7.2563, 7.2556, 7.2548, 7.254, 7.2554, 7.255, 7.2543, 7.2556, 7.256, 7.2553, 7.2546, 7.254, 7.2535, 7.255, 7.2544, 7.2538, 7.2532, 7.2527, 7.2507, 7.2482, 7.2479, 7.2473, 7.2488, 7.251, 7.2511, 7.2506, 7.2521, 7.2516, 7.2508, 7.2522, 7.2515, 7.2551, 7.2544, 7.2537, 7.253, 7.2507, 7.2521, 7.2535, 7.2528, 7.2526, 7.2519, 7.2534, 7.2527, 7.2541, 7.2556, 7.255, 7.2544, 7.2539, 7.2532, 7.2527, 7.252, 7.2515, 7.251, 7.2502, 7.2516, 7.2509, 7.2503, 7.2517, 7.2533, 7.257, 7.2585, 7.2587, 7.2582, 7.2577, 7.2552, 7.2546, 7.2542, 7.2536, 7.2529, 7.2523, 7.2516, 7.2512, 7.2509, 7.2488, 7.2502, 7.2495, 7.2528, 7.2526, 7.2507, 7.25, 7.2493, 7.2491, 7.2505, 7.2498, 7.2497, 7.2511, 7.251, 7.2523, 7.2516, 7.2529, 7.2524, 7.2519, 7.2515, 7.2509, 7.2503, 7.2498, 7.2512, 7.2507, 7.2501, 7.2513, 7.2507, 7.2502, 7.2495, 7.2492, 7.2486, 7.2481, 7.2477, 7.247, 7.2484, 7.2496, 7.2489, 7.2482, 7.2477, 7.2471, 7.2464, 7.2457, 7.245, 7.2443, 7.2436, 7.2435, 7.2429, 7.2423, 7.2417, 7.2421, 7.2417, 7.243, 7.2423, 7.2417, 7.243, 7.2424, 7.2437, 7.243, 7.2424, 7.2418, 7.2394, 7.239, 7.239, 7.2384, 7.2398, 7.2398, 7.2391, 7.2388, 7.2383, 7.2376, 7.237, 7.2365, 7.236, 7.2373, 7.2366, 7.2359, 7.2352, 7.2365, 7.236, 7.2353, 7.2366, 7.2359, 7.2374, 7.2367, 7.2379, 7.2372, 7.2365, 7.2379, 7.2372, 7.2368, 7.2363, 7.2376, 7.237, 7.2346, 7.236, 7.2354, 7.2347, 7.2341, 7.2336, 7.2349, 7.2342, 7.2338, 7.2341, 7.2334, 7.2327, 7.2321, 7.2318, 7.2313, 7.2309, 7.2302, 7.2296, 7.2289, 7.2302, 7.2297, 7.2291, 7.2286, 7.228, 7.2283, 7.2296, 7.2291, 7.2287, 7.2282, 7.2295, 7.2289, 7.2301, 7.2294, 7.2308, 7.2303, 7.2362, 7.2357, 7.2351, 7.2345, 7.2342, 7.2339, 7.2335, 7.2331, 7.2308, 7.2302, 7.2295, 7.229, 7.2284, 7.2289, 7.2283, 7.2281, 7.2275, 7.227, 7.2271, 7.2289, 7.2323, 7.2339, 7.2377, 7.2378, 7.2372, 7.2385, 7.2399, 7.2393, 7.2388, 7.24, 7.2414, 7.2408, 7.2402, 7.2432, 7.2426, 7.2422, 7.2435, 7.2428, 7.2424, 7.2418, 7.2415, 7.2429, 7.2423, 7.2417, 7.2411, 7.2406, 7.242, 7.2414, 7.2408, 7.2387, 7.2383, 7.238, 7.2393, 7.2386, 7.2381, 7.2387, 7.24, 7.2394, 7.2389, 7.2383, 7.2376, 7.2371, 7.2365, 7.2359, 7.2336, 7.233, 7.2323, 7.2344, 7.2339, 7.2374, 7.2367, 7.236, 7.2449, 7.2445, 7.2439, 7.2434, 7.2433, 7.2427, 7.2421, 7.2416, 7.2413, 7.2425, 7.2421, 7.2415, 7.2409, 7.2422, 7.2418, 7.2412, 7.2407, 7.242, 7.2432, 7.2427, 7.2423, 7.2416, 7.2428, 7.2422, 7.2417, 7.2411, 7.2423, 7.2435, 7.243, 7.2425, 7.242, 7.2415, 7.2409, 7.2404, 7.2426, 7.2422, 7.2416, 7.2413, 7.2425, 7.2439, 7.244, 7.2453, 7.2465, 7.246, 7.2457, 7.2469, 7.2465, 7.2478, 7.2474, 7.2469, 7.2466, 7.246, 7.246, 7.2473, 7.247, 7.2464, 7.246, 7.2454, 7.2448, 7.2442, 7.2435, 7.2432, 7.2426, 7.242, 7.2433, 7.2426, 7.2457, 7.2452, 7.2449, 7.2461, 7.246, 7.2455, 7.2452, 7.2469, 7.2463, 7.2457, 7.2455, 7.2451, 7.2447, 7.244, 7.2433, 7.2445, 7.2441, 7.2436, 7.2448, 7.2442, 7.2456, 7.2451, 7.2444, 7.244, 7.2436, 7.2429, 7.2442, 7.2436, 7.2413, 7.2408, 7.2386, 7.2402, 7.2398, 7.2391, 7.2385, 7.2381, 7.2396, 7.2392, 7.2404, 7.2399, 7.2392, 7.2386, 7.2397, 7.239, 7.2387, 7.2384, 7.2378, 7.2375, 7.2369, 7.2382, 7.2375, 7.2369, 7.2346, 7.2339, 7.2333, 7.2345, 7.234, 7.2334, 7.2345, 7.234, 7.2335, 7.2346, 7.2358, 7.2353, 7.2348, 7.2349, 7.2344, 7.234, 7.2336, 7.233, 7.2327, 7.2321, 7.2315, 7.2347, 7.2368, 7.2363, 7.2358, 7.237, 7.2364, 7.2358, 7.2352, 7.2364, 7.2363, 7.2357, 7.2352, 7.2347, 7.2344, 7.2346, 7.2358, 7.2352, 7.2348, 7.236, 7.2355, 7.2349, 7.2399, 7.2394, 7.2406, 7.2401, 7.2395, 7.2389, 7.2386, 7.238, 7.2375, 7.237, 7.2365, 7.2377, 7.2371, 7.2365, 7.2361, 7.2372, 7.2367, 7.2378, 7.2372, 7.2366, 7.2365, 7.236, 7.2357, 7.2351, 7.2346, 7.234, 7.2335, 7.2332, 7.2315, 7.2309, 7.2303, 7.2315, 7.2309, 7.2321, 7.2332, 7.2329, 7.2327, 7.2328, 7.2322, 7.2334, 7.2347, 7.2341, 7.2353, 7.2347, 7.2359, 7.2353, 7.235, 7.2344, 7.2338, 7.2333, 7.2327, 7.2339, 7.2333, 7.2345, 7.2342, 7.2335, 7.235, 7.2344, 7.2338, 7.235, 7.2345, 7.2345, 7.2342, 7.2353, 7.2347, 7.2342, 7.2336, 7.2348, 7.2342, 7.2338, 7.2334, 7.2329, 7.2325, 7.2337, 7.2333, 7.2328, 7.2322, 7.2334, 7.233, 7.2326, 7.2325, 7.2326, 7.2323, 7.2319, 7.2316, 7.233, 7.2324, 7.2319, 7.2332, 7.2326, 7.2321, 7.2316, 7.233, 7.2326, 7.2325, 7.232, 7.2334, 7.2329, 7.2307, 7.2302, 7.2296, 7.229, 7.2287, 7.2284, 7.2281, 7.2275, 7.2269, 7.2269, 7.2263, 7.2258, 7.227, 7.2264, 7.2263, 7.2257, 7.2254, 7.2248, 7.2243, 7.2237, 7.2232, 7.2229, 7.2209, 7.2209, 7.2205, 7.2203, 7.2197, 7.2192, 7.2192, 7.2204, 7.2199, 7.2194, 7.219, 7.2185, 7.2179, 7.2174, 7.2169, 7.2164, 7.216, 7.2158, 7.2154, 7.2198, 7.2192, 7.2189, 7.2183, 7.2177, 7.2173, 7.2184, 7.2181, 7.2179, 7.221, 7.2206, 7.2201, 7.2213, 7.2208, 7.2203, 7.2202, 7.2196, 7.219, 7.22, 7.2194, 7.2189, 7.2184, 7.2186, 7.2199, 7.221, 7.2207, 7.2201, 7.2197, 7.2192, 7.2186, 7.2181, 7.2187, 7.2183, 7.2177, 7.2173, 7.217, 7.2167, 7.2178, 7.2175, 7.2189, 7.2184, 7.2181, 7.2176, 7.2173, 7.2171, 7.2168, 7.2181, 7.2177, 7.2172, 7.2167, 7.2182, 7.2212, 7.2206, 7.2201, 7.2196, 7.2191, 7.2185, 7.2179, 7.2175, 7.217, 7.2164, 7.2158, 7.2153, 7.215, 7.2144, 7.2154, 7.2148, 7.2142, 7.2141, 7.2135, 7.2146, 7.214, 7.215, 7.2144, 7.2138, 7.2135, 7.2115, 7.211, 7.2105, 7.2102, 7.2098, 7.2117, 7.2111, 7.2105, 7.2101, 7.2096, 7.213, 7.2141, 7.2136, 7.213, 7.2131, 7.2126, 7.2137, 7.2148, 7.2159, 7.217, 7.215, 7.2144, 7.2138, 7.2149, 7.2176, 7.2173, 7.2184, 7.2195, 7.2192, 7.2186, 7.2201, 7.2195, 7.2206, 7.22, 7.2195, 7.2189, 7.2184, 7.2179, 7.2174, 7.2169, 7.2165, 7.2175, 7.2172, 7.2173, 7.2186, 7.2197, 7.2215, 7.2209, 7.2205, 7.2213, 7.2223, 7.2233, 7.2249, 7.2244, 7.2255, 7.2249, 7.2244, 7.2243, 7.2238, 7.2235, 7.2229, 7.2223, 7.2234, 7.2248, 7.2244, 7.2239, 7.2233, 7.2248, 7.2244, 7.2239, 7.2234, 7.2228, 7.2223, 7.2218, 7.223, 7.2226, 7.2237, 7.2247, 7.2243, 7.2254, 7.2249, 7.226, 7.2256, 7.2252, 7.2248, 7.2243, 7.2238, 7.2234, 7.2244, 7.2238, 7.2235, 7.2231, 7.2226, 7.2223, 7.2217, 7.2227, 7.2224, 7.2237, 7.2231, 7.2228, 7.2225, 7.222, 7.22, 7.2194, 7.2211, 7.2206, 7.2201, 7.2202, 7.2196, 7.2193, 7.2187, 7.2181, 7.2176, 7.2173, 7.2168, 7.2163, 7.2173, 7.2167, 7.2148, 7.2144, 7.2139, 7.2151, 7.2148, 7.2158, 7.2153, 7.2149, 7.2159, 7.2154, 7.2151, 7.2146, 7.2141, 7.2136, 7.2139, 7.215, 7.2171, 7.2182, 7.2192, 7.2187, 7.2182, 7.2191, 7.2186, 7.2181, 7.2181, 7.2176, 7.2172, 7.2167, 7.2148, 7.2143, 7.2139, 7.2133, 7.213, 7.2125, 7.2136, 7.213, 7.2126, 7.2127, 7.2125, 7.2121, 7.2137, 7.2131, 7.2126, 7.2123, 7.2119, 7.2114, 7.2108, 7.2102, 7.2097, 7.2134, 7.2129, 7.2125, 7.2122, 7.2133, 7.2128, 7.2123, 7.2118, 7.2114, 7.2112, 7.2107, 7.2117, 7.2114, 7.2109, 7.2108, 7.2103, 7.2098, 7.2093, 7.2087, 7.2145, 7.2126, 7.2137, 7.2149, 7.2149, 7.2143, 7.2155, 7.2149, 7.2144, 7.214, 7.2135, 7.2116, 7.2111, 7.2122, 7.2116, 7.2112, 7.2122, 7.2133, 7.2128, 7.2127, 7.214, 7.2122, 7.2116, 7.2113, 7.2108, 7.2103, 7.2099, 7.2094, 7.2104, 7.21, 7.2095, 7.2105, 7.21, 7.2095, 7.2169, 7.2166, 7.216, 7.2154, 7.2149, 7.2145, 7.2141, 7.2137, 7.2146, 7.2144, 7.217, 7.2165, 7.2162, 7.2157, 7.2166, 7.2162, 7.2159, 7.2154, 7.2153, 7.2135, 7.2133, 7.213, 7.214, 7.2136, 7.2133, 7.213, 7.2126, 7.2123, 7.2137, 7.2134, 7.213, 7.2135, 7.2129, 7.2124, 7.2121, 7.2117, 7.2115, 7.2125, 7.2125, 7.212, 7.2137, 7.2163, 7.2159, 7.217, 7.2165, 7.2162, 7.2157, 7.2152, 7.2156, 7.2153, 7.2151, 7.2149, 7.2145, 7.2141, 7.2136, 7.2118, 7.2144, 7.2139, 7.215, 7.2145, 7.214, 7.2135, 7.2129, 7.2138, 7.2134, 7.2131, 7.2142, 7.2137, 7.2132, 7.2128, 7.2124, 7.212, 7.2117, 7.2112, 7.2107, 7.2118, 7.2114, 7.2125, 7.2119, 7.2114, 7.2111, 7.2106, 7.2115, 7.2112, 7.2106, 7.2102, 7.2098, 7.2103, 7.2104, 7.21, 7.211, 7.2109, 7.2107, 7.2106, 7.2118, 7.2115, 7.2096, 7.2105, 7.2124, 7.2122, 7.2131, 7.2126, 7.2122, 7.2118, 7.2113, 7.211, 7.2119, 7.2114, 7.211, 7.2105, 7.2131, 7.2127, 7.2123, 7.2121, 7.2146, 7.2141, 7.2138, 7.2139, 7.2125, 7.2135, 7.213, 7.2125, 7.2138, 7.2133, 7.2129, 7.2139, 7.2135, 7.2146, 7.2155, 7.2151, 7.2148, 7.2144, 7.214, 7.2154, 7.2155, 7.2151, 7.2147, 7.2142, 7.2137, 7.2131, 7.2129, 7.2139, 7.2149, 7.2144, 7.2139, 7.2136, 7.2132, 7.2127, 7.2124, 7.2119, 7.2114, 7.2124, 7.2122, 7.2104, 7.21, 7.2097, 7.2093, 7.2088, 7.2086, 7.2081, 7.2076, 7.2071, 7.2081, 7.2076, 7.2071, 7.2083, 7.2078, 7.2076, 7.2073, 7.2055, 7.205, 7.2045, 7.204, 7.2051, 7.2061, 7.2074, 7.2084, 7.2079, 7.2073, 7.2083, 7.2081, 7.2076, 7.2085, 7.208, 7.2075, 7.2075, 7.2071, 7.2066, 7.2063, 7.2074, 7.2072, 7.2068, 7.2078, 7.2073, 7.2068, 7.2073, 7.2069, 7.2065, 7.2075, 7.2084, 7.2079, 7.2074, 7.2071, 7.2066, 7.2076, 7.2071, 7.2081, 7.2091, 7.2101, 7.2096, 7.2091, 7.2087, 7.2083, 7.2078, 7.2073, 7.2101, 7.2097, 7.2157, 7.2167, 7.2166, 7.2164, 7.2174, 7.217, 7.2165, 7.2162, 7.2159, 7.2156, 7.2152, 7.2164, 7.2159, 7.2155, 7.2165, 7.2162, 7.2159, 7.217, 7.2165, 7.2147, 7.2157, 7.2182, 7.2196, 7.2192, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.217, 7.2167, 7.2165, 7.2163, 7.216, 7.2156, 7.2168, 7.2164, 7.2169, 7.2179, 7.2175, 7.217, 7.2182, 7.2178, 7.2175, 7.2188, 7.2184, 7.2179, 7.2188, 7.2183, 7.2194, 7.219, 7.22, 7.2212, 7.2207, 7.2204, 7.2214, 7.2209, 7.2219, 7.2214, 7.2224, 7.2219, 7.2216, 7.2225, 7.222, 7.2216, 7.2211, 7.2208, 7.2204, 7.2199, 7.2194, 7.2189, 7.2184, 7.218, 7.2191, 7.2187, 7.2183, 7.2179, 7.2189, 7.2184, 7.2179, 7.2177, 7.2172, 7.2169, 7.2165, 7.2161, 7.2156, 7.2151, 7.2147, 7.2142, 7.2172, 7.2167, 7.2165, 7.216, 7.2155, 7.2151, 7.2146, 7.2144, 7.214, 7.2137, 7.2134, 7.2131, 7.2127, 7.2139, 7.2137, 7.2133, 7.2143, 7.2138, 7.2133, 7.2128, 7.2123, 7.2119, 7.2114, 7.211, 7.2119, 7.2129, 7.2124, 7.2134, 7.2131, 7.2141, 7.2151, 7.2163, 7.216, 7.2155, 7.2154, 7.2152, 7.2149, 7.2146, 7.2142, 7.2138, 7.2133, 7.2129, 7.2125, 7.2121, 7.2119, 7.2114, 7.2109, 7.2105, 7.2103, 7.2155, 7.2156, 7.2166, 7.2163, 7.2173, 7.2169, 7.2164, 7.2159, 7.2154, 7.2164, 7.2162, 7.2178, 7.2179, 7.2175, 7.2172, 7.2169, 7.2165, 7.2148, 7.2143, 7.2154, 7.215, 7.2147, 7.2143, 7.2138, 7.2133, 7.2129, 7.2124, 7.2142, 7.215, 7.2159, 7.2154, 7.215, 7.2146, 7.2162, 7.2158, 7.2168, 7.2165, 7.2173, 7.2168, 7.2163, 7.2172, 7.2168, 7.2163, 7.2158, 7.2153, 7.2163, 7.2159, 7.2156, 7.2166, 7.2161, 7.2158, 7.2167, 7.2162, 7.2157, 7.2154, 7.2137, 7.2151, 7.2148, 7.2145, 7.2141, 7.2137, 7.2121, 7.2119, 7.2115, 7.211, 7.2106, 7.2115, 7.2124, 7.212, 7.2117, 7.2112, 7.2127, 7.2137, 7.2133, 7.213, 7.2125, 7.2135, 7.2131, 7.214, 7.215, 7.2147, 7.2144, 7.2139, 7.2134, 7.2144, 7.214, 7.2141, 7.2144, 7.2143, 7.2139, 7.2135, 7.2118, 7.2114, 7.211, 7.2105, 7.21, 7.2108, 7.2104, 7.21, 7.2109, 7.2106, 7.2103, 7.2111, 7.2106, 7.2102, 7.2097, 7.2094, 7.2103, 7.2086, 7.2081, 7.2089, 7.2085, 7.208, 7.2078, 7.2088, 7.2086, 7.2081, 7.209, 7.2085, 7.208, 7.2078, 7.2076, 7.2071, 7.2081, 7.2077, 7.2074, 7.2084, 7.2081, 7.2078, 7.2101, 7.2099, 7.2164, 7.216, 7.2157, 7.2152, 7.2139, 7.2134, 7.2156, 7.2153, 7.2149, 7.2145, 7.2141, 7.215, 7.2161, 7.2162, 7.2157, 7.2154, 7.2164, 7.2187, 7.2183, 7.2194, 7.219, 7.2187, 7.2182, 7.2193, 7.2206, 7.2202, 7.2198, 7.2207, 7.2204, 7.2204, 7.2202, 7.2198, 7.2196, 7.2205, 7.2214, 7.221, 7.2206, 7.2204, 7.22, 7.2196, 7.2205, 7.2202, 7.2197, 7.2193, 7.2189, 7.2184, 7.2194, 7.2203, 7.2212, 7.2208, 7.2217, 7.2215, 7.2211, 7.222, 7.2229, 7.2224, 7.2221, 7.2217, 7.2214, 7.2217, 7.2214, 7.2223, 7.2219, 7.2216, 7.2226, 7.2224, 7.2224, 7.2223, 7.2243, 7.224, 7.2235, 7.2231, 7.2227, 7.2223, 7.2233, 7.223, 7.2226, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2201, 7.2197, 7.2192, 7.219, 7.2186, 7.2238, 7.2233, 7.2229, 7.2224, 7.2221, 7.2216, 7.2225, 7.222, 7.2215, 7.2239, 7.2234, 7.2243, 7.2238, 7.2234, 7.2229, 7.2224, 7.222, 7.2217, 7.2214, 7.2209, 7.2207, 7.2207, 7.2202, 7.2197, 7.2194, 7.2191, 7.2186, 7.2181, 7.2177, 7.2172, 7.2169, 7.2177, 7.2185, 7.2223, 7.222, 7.2216, 7.2212, 7.2209, 7.2205, 7.2214, 7.221, 7.2207, 7.2216, 7.2225, 7.2221, 7.223, 7.2227, 7.2237, 7.2245, 7.2241, 7.2239, 7.2234, 7.223, 7.2227, 7.2282, 7.2281, 7.2278, 7.2274, 7.227, 7.2267, 7.2263, 7.2258, 7.2281, 7.2278, 7.2275, 7.227, 7.227, 7.2266, 7.2276, 7.2273, 7.2272, 7.2282, 7.228, 7.2275, 7.2272, 7.2275, 7.2272, 7.2269, 7.2265, 7.2261, 7.2265, 7.2261, 7.2257, 7.2254, 7.2251, 7.226, 7.2271, 7.2272, 7.2269, 7.2253, 7.225, 7.2248, 7.2246, 7.2243, 7.2238, 7.2236, 7.2237, 7.2247, 7.2289, 7.2284, 7.2289, 7.2286, 7.2283, 7.2291, 7.2288, 7.2284, 7.228, 7.2295, 7.2304, 7.23, 7.2309, 7.2317, 7.2341, 7.2336, 7.2332, 7.2329, 7.2325, 7.2323, 7.2331, 7.2327, 7.2326, 7.2323, 7.2319, 7.2341, 7.2326, 7.2334, 7.233, 7.2339, 7.2335, 7.2343, 7.2339, 7.2348, 7.2344, 7.2353, 7.2349, 7.2344, 7.234, 7.2336, 7.2332, 7.2336, 7.2347, 7.2356, 7.2365, 7.2361, 7.2357, 7.2353, 7.2351, 7.2348, 7.2357, 7.2355, 7.2353, 7.2351, 7.2336, 7.2344, 7.234, 7.2348, 7.2359, 7.2343, 7.2352, 7.2348, 7.2345, 7.2341, 7.2342, 7.2338, 7.2323, 7.2328, 7.2368, 7.2382, 7.2382, 7.2377, 7.2377, 7.2372, 7.2381, 7.2377, 7.239, 7.2386, 7.2395, 7.2391, 7.2399, 7.242, 7.2416, 7.2412, 7.2464, 7.246, 7.2456, 7.2453, 7.2461, 7.2457, 7.2453, 7.2453, 7.2449, 7.2458, 7.2479, 7.2477, 7.2477, 7.2462, 7.2459, 7.2455, 7.245, 7.2446, 7.2443, 7.2451, 7.2447, 7.2443, 7.2452, 7.2437, 7.2445, 7.2441, 7.2449, 7.2446, 7.2442, 7.2451, 7.2448, 7.2444, 7.244, 7.244, 7.2437, 7.2445, 7.2441, 7.2437, 7.2475, 7.2472, 7.2468, 7.2465, 7.2461, 7.2457, 7.2477, 7.2473, 7.2481, 7.2477, 7.2473, 7.247, 7.2476, 7.2474, 7.2499, 7.2495, 7.2503, 7.2499, 7.2509, 7.2518, 7.2515, 7.2511, 7.2519, 7.2516, 7.2534, 7.2533, 7.2518, 7.2514, 7.2513, 7.2522, 7.2531, 7.2528, 7.2525, 7.2522, 7.2531, 7.2529, 7.2525, 7.2521, 7.2519, 7.2515, 7.2526, 7.2521, 7.2527, 7.2525, 7.2523, 7.252, 7.2516, 7.2513, 7.2511, 7.2506, 7.2514, 7.2511, 7.2506, 7.2515, 7.251, 7.2506, 7.2514, 7.2523, 7.252, 7.2516, 7.2512, 7.2508, 7.2492, 7.2488, 7.2484, 7.2481, 7.2477, 7.2476, 7.2484, 7.248, 7.2476, 7.2475, 7.2471, 7.2468, 7.2465, 7.2461, 7.2457, 7.2463, 7.2459, 7.2467, 7.2475, 7.2482, 7.2478, 7.2475, 7.2482, 7.2479, 7.2475, 7.2471, 7.2492, 7.2487, 7.2492, 7.2488, 7.2485, 7.248, 7.2477, 7.2473, 7.2469, 7.2477, 7.2473, 7.2469, 7.2465, 7.2464, 7.246, 7.2457, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2445, 7.2453, 7.2461, 7.2457, 7.2468, 7.2476, 7.2492, 7.2488, 7.2496, 7.2493, 7.2494, 7.2502, 7.25, 7.2496, 7.2493, 7.2491, 7.2499, 7.252, 7.2505, 7.2502, 7.2498, 7.2509, 7.2518, 7.2561, 7.2557, 7.2555, 7.2541, 7.2537, 7.2546, 7.2554, 7.2553, 7.255, 7.2546, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.254, 7.2536, 7.2532, 7.2528, 7.2524, 7.2521, 7.2517, 7.2514, 7.2512, 7.2508, 7.2517, 7.2513, 7.2521, 7.2529, 7.2538, 7.2545, 7.2541, 7.2537, 7.2534, 7.2532, 7.2528, 7.2526, 7.2621, 7.2618, 7.2656, 7.2665, 7.2661, 7.2668, 7.2676, 7.2684, 7.2682, 7.2691, 7.2676, 7.2684, 7.2692, 7.2688, 7.2696, 7.2703, 7.2699, 7.2697, 7.2705, 7.2714, 7.2718, 7.2714, 7.2722, 7.2718, 7.2715, 7.2711, 7.2708, 7.2704, 7.2705, 7.2702, 7.2698, 7.2694, 7.2704, 7.2712, 7.2708, 7.2694, 7.2702, 7.271, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2719, 7.2715, 7.2711, 7.2718, 7.2738, 7.2735, 7.2731, 7.2727, 7.2728, 7.2736, 7.2744, 7.2741, 7.2737, 7.2734, 7.273, 7.2726, 7.2734, 7.2743, 7.2739, 7.2734, 7.273, 7.2729, 7.2725, 7.2721, 7.273, 7.2739, 7.2748, 7.2744, 7.2753, 7.2749, 7.2746, 7.2743, 7.2738, 7.2734, 7.2731, 7.2727, 7.2723, 7.2719, 7.2741, 7.2738, 7.2734, 7.273, 7.2727, 7.2724, 7.2732, 7.2745, 7.2742, 7.2738, 7.2735, 7.2733, 7.2729, 7.2725, 7.2722, 7.2718, 7.2716, 7.2712, 7.2711, 7.2719, 7.2717, 7.2702, 7.2698, 7.2696, 7.2692, 7.2701, 7.2697, 7.2694, 7.269, 7.2685, 7.2681, 7.2677, 7.2686, 7.2682, 7.2678, 7.2664, 7.2672, 7.268, 7.2676, 7.2673, 7.2681, 7.2677, 7.2673, 7.2681, 7.2678, 7.2674, 7.2671, 7.2669, 7.2665, 7.2681, 7.2677, 7.2674, 7.2681, 7.2678, 7.2697, 7.2695, 7.2691, 7.2688, 7.2685, 7.2692, 7.27, 7.2697, 7.2693, 7.2691, 7.2699, 7.2695, 7.2692, 7.2689, 7.2685, 7.2693, 7.2701, 7.2697, 7.2705, 7.269, 7.2698, 7.2706, 7.2703, 7.271, 7.2708, 7.2705, 7.2701, 7.2698, 7.2696, 7.2695, 7.2714, 7.271, 7.278, 7.2776, 7.2774, 7.2782, 7.2778, 7.2774, 7.2771, 7.278, 7.2787, 7.2784, 7.278, 7.2776, 7.2774, 7.2771, 7.2768, 7.2764, 7.2762, 7.2759, 7.2755, 7.2742, 7.2749, 7.2748, 7.2744, 7.274, 7.2737, 7.2733, 7.273, 7.2727, 7.2724, 7.2723, 7.2727, 7.2725, 7.2745, 7.2741, 7.2761, 7.2748, 7.2798, 7.2795, 7.2791, 7.2776, 7.2783, 7.2813, 7.2798, 7.2794, 7.2791, 7.2805, 7.2801, 7.2798, 7.2819, 7.2815, 7.2811, 7.2807, 7.2826, 7.2824, 7.282, 7.2816, 7.2814, 7.2845, 7.2882, 7.2882, 7.2878, 7.2886, 7.2882, 7.2878, 7.2876, 7.2872, 7.287, 7.2867, 7.2874, 7.2905, 7.2901, 7.2905, 7.2901, 7.2898, 7.2906, 7.2914, 7.2922, 7.2919, 7.2927, 7.2936, 7.2932, 7.294, 7.2948, 7.2945, 7.2941, 7.2938, 7.2934, 7.293, 7.2934, 7.2997, 7.3004, 7.3012, 7.302, 7.3017, 7.3013, 7.301, 7.3006, 7.3003, 7.2999, 7.2997, 7.2995, 7.2991, 7.2987, 7.2995, 7.2991, 7.2999, 7.2995, 7.2993, 7.299, 7.2988, 7.2984, 7.298, 7.2977, 7.2974, 7.2981, 7.2979, 7.2975, 7.2972, 7.2979, 7.2976, 7.2972, 7.2972, 7.2968, 7.2982, 7.2978, 7.2974, 7.296, 7.2968, 7.2975, 7.2976, 7.2974, 7.297, 7.2966, 7.2962, 7.2959, 7.2956, 7.2952, 7.2948, 7.295, 7.2948, 7.2957, 7.2943, 7.295, 7.2958, 7.2956, 7.2963, 7.2959, 7.2955, 7.2962, 7.2958, 7.2954, 7.295, 7.2946, 7.2943, 7.295, 7.2957, 7.2953, 7.2952, 7.296, 7.2956, 7.2953, 7.2961, 7.2958, 7.2955, 7.2951, 7.2947, 7.2943, 7.2939, 7.2991, 7.3, 7.3, 7.2998, 7.2997, 7.3005, 7.3003, 7.299, 7.2997, 7.3005, 7.3013, 7.3032, 7.3031, 7.3027, 7.3046, 7.3055, 7.3076, 7.3073, 7.307, 7.3068, 7.3066, 7.3062, 7.3069, 7.3067, 7.307, 7.3081, 7.308, 7.3089, 7.3087, 7.3084, 7.3081, 7.3077, 7.3074, 7.3105, 7.3107, 7.3096, 7.3094, 7.3093, 7.3089, 7.3085, 7.3118, 7.3117, 7.3113, 7.3109, 7.3126, 7.3122, 7.3129, 7.3126, 7.3122, 7.3118, 7.3115, 7.3112, 7.3119, 7.3125, 7.3121, 7.3128, 7.3126, 7.3122, 7.3119, 7.3116, 7.3112, 7.3108, 7.3104, 7.31, 7.3097, 7.3093, 7.309, 7.3087, 7.3119, 7.3115, 7.3112, 7.3109, 7.3108, 7.3115, 7.3115, 7.3123, 7.3119, 7.3116, 7.3113, 7.3111, 7.3108, 7.3106, 7.3102, 7.309, 7.3097, 7.3093, 7.31, 7.3099, 7.3106, 7.3102, 7.3098, 7.3105, 7.3102, 7.311, 7.3107, 7.3103, 7.3101, 7.3108, 7.3115, 7.3122, 7.3119, 7.3126, 7.3122, 7.3129, 7.3138, 7.3146, 7.3144, 7.314, 7.3136, 7.3132, 7.3129, 7.3125, 7.3132, 7.3129, 7.3126, 7.3122, 7.3185, 7.3181, 7.3168, 7.3164, 7.3161, 7.3159, 7.3155, 7.3154, 7.3162, 7.3158, 7.3165, 7.3161, 7.3157, 7.3155, 7.3151, 7.3147, 7.3143, 7.3139, 7.3146, 7.3143, 7.3151, 7.3148, 7.3147, 7.3145, 7.3154, 7.3151, 7.3157, 7.3165, 7.3162, 7.3159, 7.3158, 7.3165, 7.3161, 7.3158, 7.3155, 7.3152, 7.3154, 7.3161, 7.3213, 7.3209, 7.3206, 7.3202, 7.3198, 7.3195, 7.3203, 7.3201, 7.3199, 7.3195, 7.3192, 7.3198, 7.3196, 7.3201, 7.3197, 7.3204, 7.3201, 7.3208, 7.3204, 7.32, 7.3198, 7.3194, 7.319, 7.3176, 7.3172, 7.3169, 7.3165, 7.3172, 7.3169, 7.3167, 7.3163, 7.3159, 7.3155, 7.3152, 7.3148, 7.3144, 7.314, 7.3137, 7.3135, 7.3142, 7.3128, 7.3125, 7.3121, 7.3119, 7.3116, 7.3112, 7.3109, 7.3105, 7.3112, 7.3108, 7.3104, 7.3101, 7.3097, 7.3093, 7.3094, 7.309, 7.3087, 7.3083, 7.3079, 7.3075, 7.31, 7.3103, 7.3099, 7.3106, 7.3102, 7.3098, 7.3094, 7.3101, 7.3097, 7.3093, 7.3089, 7.3096, 7.3092, 7.3088, 7.3096, 7.3093, 7.309, 7.3087, 7.3085, 7.3105, 7.3101, 7.3109, 7.3105, 7.3112, 7.3108, 7.3105, 7.3102, 7.3099, 7.3096, 7.3094, 7.3113, 7.31, 7.3106, 7.3114, 7.3121, 7.3128, 7.3125, 7.3122, 7.3119, 7.3137, 7.3139, 7.3136, 7.3144, 7.314, 7.3137, 7.3133, 7.3129, 7.3125, 7.3112, 7.3108, 7.3105, 7.3112, 7.311, 7.3108, 7.3116, 7.3114, 7.3111, 7.3118, 7.3105, 7.3102, 7.3098, 7.3095, 7.3091, 7.3088, 7.3084, 7.3091, 7.3109, 7.3106, 7.3113, 7.3109, 7.3118, 7.3125, 7.3125, 7.3125, 7.3121, 7.3117, 7.3107, 7.3104, 7.3101, 7.3107, 7.3113, 7.3111, 7.3107, 7.3104, 7.3111, 7.3118, 7.3125, 7.3121, 7.3117, 7.3114, 7.312, 7.3116, 7.3113, 7.312, 7.3128, 7.3125, 7.3121, 7.3118, 7.3115, 7.3134, 7.3131, 7.3127, 7.3145, 7.3141, 7.3138, 7.3135, 7.3133, 7.3141, 7.3159, 7.3167, 7.3165, 7.3162, 7.3159, 7.3156, 7.3157, 7.3154, 7.3166, 7.3163, 7.3161, 7.3157, 7.3165, 7.3167, 7.3174, 7.3171, 7.3168, 7.3165, 7.3162, 7.3159, 7.3156, 7.3154, 7.3141, 7.3138, 7.3135, 7.3142, 7.3139, 7.3146, 7.3153, 7.316, 7.3157, 7.3153, 7.3149, 7.3145, 7.3152, 7.3159, 7.3157, 7.3164, 7.3171, 7.3167, 7.3174, 7.317, 7.3166, 7.3173, 7.3169, 7.3165, 7.3172, 7.3179, 7.3175, 7.3171, 7.3173, 7.3169, 7.3177, 7.3173, 7.3171, 7.3168, 7.3165, 7.3163, 7.3171, 7.3178, 7.3175, 7.3182, 7.3178, 7.3175, 7.3171, 7.3167, 7.3174, 7.3171, 7.3168, 7.3164, 7.3207, 7.3214, 7.3211, 7.3219, 7.3216, 7.3212, 7.3209, 7.3206, 7.3203, 7.3199, 7.3196, 7.3193, 7.32, 7.3197, 7.3204, 7.3202, 7.3199, 7.3216, 7.3215, 7.3211, 7.3233, 7.3255, 7.3245, 7.3251, 7.3247, 7.3258, 7.3254, 7.3261, 7.3248, 7.3255, 7.3252, 7.3248, 7.3254, 7.325, 7.3247, 7.3244, 7.3262, 7.3249, 7.3256, 7.3244, 7.3241, 7.3238, 7.3234, 7.3231, 7.3228, 7.3225, 7.3222, 7.3229, 7.3237, 7.3234, 7.3231, 7.3239, 7.3255, 7.3251, 7.3249, 7.3246, 7.3246, 7.3252, 7.3249, 7.3247, 7.3254], '192.168.122.115': [10.5276, 8.3502, 7.5139, 7.1993, 7.8743, 7.4328, 7.3273, 7.7374, 7.4819, 7.2691, 7.0982, 6.9504, 6.9125, 6.8052, 6.7264, 6.9861, 6.6075, 6.8479, 6.8006, 6.7602, 6.7243, 6.9063, 6.8384, 6.7833, 6.7498, 6.9079, 6.8861, 6.9515, 7.2796, 7.2167, 7.183, 7.1287, 7.0735, 7.0523, 7.0126, 7.126, 7.1076, 7.196, 7.157, 7.1339, 7.2292, 7.2251, 7.1878, 7.2852, 7.2539, 7.2358, 7.193, 7.168, 7.1383, 7.1182, 7.0838, 7.147, 7.1165, 7.0845, 7.064, 7.1315, 7.099, 7.0826, 7.0539, 7.0359, 7.098, 7.1895, 7.161, 7.1332, 7.1146, 7.102, 7.1577, 7.1446, 7.1179, 7.0951, 7.0847, 7.061, 7.0418, 7.0276, 7.0079, 7.0655, 7.0444, 7.0957, 7.0764, 7.1206, 7.1704, 7.1503, 7.1488, 7.1272, 7.1703, 7.1549, 7.1359, 7.1779, 7.1636, 7.1547, 7.1962, 7.1741, 7.1578, 7.2462, 7.2286, 7.2652, 7.2464, 7.2287, 7.2156, 7.2009, 7.2366, 7.2223, 7.2583, 7.2428, 7.225, 7.2128, 7.2022, 7.1853, 7.168, 7.1997, 7.1855, 7.1283, 7.1603, 7.1468, 7.1342, 7.1226, 7.1145, 7.1013, 7.0991, 7.0863, 7.1208, 7.1543, 7.1873, 7.1801, 7.1708, 7.1572, 7.1485, 7.1356, 7.1255, 7.0748, 7.0654, 7.0941, 7.083, 7.0726, 7.0662, 7.056, 7.0448, 7.036, 7.0233, 7.0922, 7.1163, 7.1036, 7.0944, 7.0832, 7.0944, 7.0831, 7.206, 7.1939, 7.191, 7.1868, 7.1811, 7.3066, 7.296, 7.2853, 7.2776, 7.2655, 7.2534, 7.2423, 7.231, 7.2199, 7.2103, 7.265, 7.2574, 7.2194, 7.2422, 7.2314, 7.2223, 7.2138, 7.2047, 7.2639, 7.2911, 7.3118, 7.3608, 7.3519, 7.3426, 7.3661, 7.3565, 7.3764, 7.366, 7.3557, 7.35, 7.3431, 7.3398, 7.3591, 7.3818, 7.3722, 7.3899, 7.3796, 7.3708, 7.5029, 7.494, 7.4856, 7.4738, 7.4649, 7.4558, 7.4468, 7.4368, 7.4278, 7.4191, 7.4124, 7.455, 7.4716, 7.461, 7.4549, 7.4219, 7.4157, 7.4056, 7.4235, 7.416, 7.4373, 7.4529, 7.4517, 7.4702, 7.4861, 7.4764, 7.5534, 7.5429, 7.5581, 7.5488, 7.5409, 7.5809, 7.5943, 7.5862, 7.5904, 7.5842, 7.5759, 7.5663, 7.5586, 7.5487, 7.5419, 7.5598, 7.5522, 7.5446, 7.5373, 7.5304, 7.525, 7.5179, 7.5112, 7.504, 7.4947, 7.5078, 7.502, 7.5174, 7.5087, 7.4993, 7.4909, 7.5122, 7.5041, 7.5166, 7.5095, 7.5028, 7.495, 7.4903, 7.4827, 7.4761, 7.4895, 7.4817, 7.4781, 7.4705, 7.4648, 7.4578, 7.4511, 7.4462, 7.4402, 7.4339, 7.4268, 7.4392, 7.4515, 7.4538, 7.4464, 7.4388, 7.4344, 7.427, 7.419, 7.4153, 7.4084, 7.403, 7.3974, 7.3905, 7.3829, 7.3776, 7.3705, 7.363, 7.359, 7.3522, 7.3451, 7.3587, 7.3703, 7.3646, 7.3583, 7.3521, 7.3467, 7.3424, 7.3373, 7.3312, 7.3249, 7.3186, 7.3154, 7.3288, 7.3437, 7.3373, 7.3154, 7.3088, 7.3051, 7.2996, 7.2957, 7.2766, 7.2711, 7.2655, 7.2905, 7.3016, 7.2957, 7.3073, 7.3021, 7.2961, 7.2924, 7.3036, 7.2973, 7.2954, 7.3097, 7.3043, 7.2986, 7.2933, 7.2871, 7.2981, 7.2924, 7.2894, 7.3003, 7.2941, 7.2909, 7.2852, 7.2675, 7.2779, 7.29, 7.2852, 7.265, 7.2618, 7.2728, 7.2679, 7.2634, 7.279, 7.2737, 7.2682, 7.2649, 7.275, 7.2693, 7.264, 7.2595, 7.2557, 7.2526, 7.2627, 7.2729, 7.2689, 7.2637, 7.261, 7.2557, 7.2502, 7.2455, 7.2429, 7.2381, 7.2352, 7.2324, 7.2285, 7.2239, 7.2223, 7.2349, 7.2815, 7.2646, 7.2606, 7.2435, 7.2396, 7.2379, 7.2329, 7.2425, 7.2512, 7.2492, 7.244, 7.2431, 7.2381, 7.2334, 7.2302, 7.2259, 7.2214, 7.2172, 7.215, 7.2125, 7.2215, 7.2186, 7.2146, 7.1972, 7.1934, 7.1903, 7.1874, 7.1827, 7.1787, 7.175, 7.1745, 7.1701, 7.1665, 7.1625, 7.1596, 7.1569, 7.1543, 7.1498, 7.1456, 7.1423, 7.1378, 7.1337, 7.1296, 7.1266, 7.1224, 7.1208, 7.1179, 7.1139, 7.11, 7.1063, 7.1164, 7.1143, 7.1237, 7.1212, 7.1199, 7.1195, 7.1169, 7.1129, 7.1103, 7.1071, 7.1033, 7.1123, 7.1664, 7.1513, 7.1524, 7.1502, 7.1598, 7.1555, 7.1593, 7.1638, 7.1611, 7.1703, 7.1661, 7.1619, 7.1581, 7.1545, 7.1512, 7.1504, 7.1466, 7.1321, 7.129, 7.1809, 7.1791, 7.1753, 7.1726, 7.1691, 7.1792, 7.175, 7.173, 7.1906, 7.1894, 7.1851, 7.1831, 7.179, 7.1866, 7.1941, 7.1917, 7.1889, 7.1889, 7.1866, 7.1829, 7.1807, 7.1767, 7.1748, 7.1796, 7.1764, 7.184, 7.1799, 7.1764, 7.1849, 7.1812, 7.1837, 7.1929, 7.1908, 7.1879, 7.1859, 7.1848, 7.1816, 7.1782, 7.1777, 7.1757, 7.1725, 7.1684, 7.165, 7.1615, 7.1588, 7.1552, 7.1514, 7.1476, 7.1468, 7.1449, 7.1417, 7.1383, 7.1349, 7.1429, 7.1405, 7.148, 7.1555, 7.1519, 7.1726, 7.1705, 7.1674, 7.1647, 7.161, 7.1681, 7.1643, 7.1652, 7.162, 7.1592, 7.1576, 7.1557, 7.1522, 7.1497, 7.1471, 7.1553, 7.1529, 7.1428, 7.1403, 7.1374, 7.1355, 7.132, 7.1289, 7.1265, 7.124, 7.1311, 7.1287, 7.1268, 7.1236, 7.1229, 7.1206, 7.1176, 7.1164, 7.1132, 7.1202, 7.1178, 7.117, 7.1138, 7.1131, 7.1099, 7.1077, 7.108700000000001, 7.1154, 7.1124, 7.1193, 7.1161, 7.1138, 7.105, 7.102, 7.0991, 7.0962, 7.0934, 7.0904, 7.0875, 7.086, 7.0839, 7.0732, 7.0701, 7.0686, 7.0755, 7.0725, 7.0793, 7.0868, 7.085, 7.0917, 7.094, 7.0912, 7.0889, 7.0958, 7.0926, 7.0897, 7.0869, 7.0843, 7.0827, 7.0826, 7.0887, 7.0855, 7.0829, 7.0799, 7.0779, 7.076, 7.073, 7.0721, 7.0694, 7.0671, 7.0659, 7.0635, 7.0608, 7.0583, 7.058, 7.0647, 7.0706, 7.0679, 7.0663, 7.0637, 7.0607, 7.0589, 7.0572, 7.0543, 7.0709, 7.0774, 7.0746, 7.072, 7.0706, 7.0766, 7.0745, 7.0718, 7.0783, 7.0755, 7.0818, 7.0792, 7.0854, 7.0828, 7.0884, 7.0936, 7.0917, 7.0909, 7.0969, 7.103, 7.1082, 7.1068, 7.1039, 7.1008, 7.1066, 7.1121, 7.1092, 7.1064, 7.1036, 7.1094, 7.099, 7.0962, 7.0935, 7.0923, 7.0902, 7.0875, 7.0857, 7.0932, 7.1002, 7.09, 7.0878, 7.0932, 7.0992, 7.0979, 7.0951, 7.0937, 7.0916, 7.0939, 7.0917, 7.0891, 7.0874, 7.0846, 7.0916, 7.09, 7.0874, 7.0849, 7.0832, 7.0893, 7.0901, 7.0955, 7.0941, 7.0999, 7.1219, 7.1196, 7.1169, 7.1144, 7.1119, 7.1094, 7.1075, 7.1051, 7.1027, 7.1082, 7.1064, 7.1046, 7.1107, 7.1081, 7.1056, 7.1029, 7.1016, 7.1077, 7.1051, 7.1025, 7.1003, 7.099, 7.0966, 7.1012, 7.0988, 7.1039, 7.1015, 7.0993, 7.0973, 7.0962, 7.0954, 7.1094, 7.1075, 7.105, 7.1028, 7.1077, 7.106, 7.1106, 7.1086, 7.1065, 7.1117, 7.1191, 7.1166, 7.1226, 7.1203, 7.1181, 7.1157, 7.1131, 7.1145, 7.12, 7.1178, 7.1164, 7.1145, 7.1125, 7.1103, 7.1155, 7.1139, 7.1114, 7.1098, 7.1075, 7.1127, 7.1104, 7.108, 7.1057, 7.1032, 7.1009, 7.0988, 7.0966, 7.0887, 7.0871, 7.0848, 7.0898, 7.0929, 7.0911, 7.0889, 7.0875, 7.0853, 7.0833, 7.081, 7.0788, 7.0764, 7.0815, 7.0792, 7.0769, 7.0753, 7.0737, 7.0727, 7.089, 7.0802, 7.0782, 7.0763, 7.0743, 7.0722, 7.0782, 7.0783, 7.083, 7.084, 7.0824, 7.0855, 7.0846, 7.0832, 7.0878, 7.0855, 7.0908, 7.0885, 7.0864, 7.0909, 7.0892, 7.0883, 7.0865, 7.0917, 7.0895, 7.0881, 7.093, 7.0973, 7.1022, 7.1003, 7.1013, 7.0989, 7.1, 7.0994, 7.0981, 7.1036, 7.1021, 7.1209, 7.119, 7.1204, 7.1208, 7.1185, 7.1163, 7.1211, 7.1252, 7.1231, 7.1213, 7.1255, 7.1298, 7.1275, 7.1291, 7.1269, 7.1253, 7.1232, 7.121, 7.1198, 7.1245, 7.1228, 7.1273, 7.1257, 7.1235, 7.1222, 7.1247, 7.1238, 7.1283, 7.1341, 7.1384, 7.1362, 7.1345, 7.139, 7.1435, 7.1482, 7.146, 7.1502, 7.1543, 7.1523, 7.1568, 7.1551, 7.1533, 7.1722, 7.1701, 7.1745, 7.1724, 7.1769, 7.1815, 7.1792, 7.1774, 7.1759, 7.1748, 7.1739, 7.1724, 7.1701, 7.1624, 7.1604, 7.1587, 7.1565, 7.1543, 7.1591, 7.1633, 7.1675, 7.1726, 7.172, 7.1761, 7.1802, 7.1782, 7.1784, 7.1767, 7.1747, 7.1789, 7.177, 7.1749, 7.1734, 7.1718, 7.176, 7.1739, 7.1719, 7.1706, 7.1747, 7.1734, 7.1712, 7.1693, 7.1678, 7.1717, 7.1706, 7.1744, 7.1786, 7.1932, 7.1976, 7.1955, 7.1934, 7.1919, 7.1905, 7.1957, 7.202, 7.2009, 7.1998, 7.2038, 7.2016, 7.2003, 7.1986, 7.1971, 7.1962, 7.1943, 7.1929, 7.1913, 7.1905, 7.1835, 7.1816, 7.1797, 7.1778, 7.1763, 7.1756, 7.1796, 7.1836, 7.1822, 7.183, 7.1811, 7.1794, 7.1799, 7.1846, 7.1826, 7.1812, 7.1917, 7.1904, 7.189, 7.1936, 7.1977, 7.1957, 7.1935, 7.1919, 7.1942, 7.1922, 7.1912, 7.1899, 7.1886, 7.1873, 7.1852, 7.184, 7.1822, 7.1804, 7.1795, 7.1851, 7.1833, 7.1878, 7.1859, 7.1852, 7.1839, 7.182, 7.1871, 7.1852, 7.1842, 7.1822, 7.1813, 7.193, 7.1922, 7.1903, 7.1884, 7.1864, 7.1846, 7.1826, 7.1822, 7.1803, 7.184, 7.182, 7.1752, 7.1745, 7.1736, 7.1729, 7.1767, 7.1749, 7.1788, 7.1771, 7.1762, 7.1754, 7.174, 7.1728, 7.1717, 7.1755, 7.1762, 7.1801, 7.1791, 7.1774, 7.1761, 7.1746, 7.1727, 7.1717, 7.1706, 7.1687, 7.1674, 7.1709, 7.1743, 7.1724, 7.1705, 7.1689, 7.1676, 7.1686000000000005, 7.169600000000001, 7.1678, 7.1669, 7.1705, 7.1693, 7.1687, 7.1724, 7.1707, 7.1689, 7.167, 7.1651, 7.1661, 7.1656, 7.1703, 7.1686, 7.167, 7.1661, 7.1644, 7.1627, 7.1619, 7.1602, 7.1586, 7.1524, 7.1521, 7.1503, 7.1485, 7.1468, 7.1457, 7.145, 7.1433, 7.1417, 7.1353, 7.1337, 7.1321, 7.1313, 7.1296, 7.1285, 7.1335, 7.137, 7.141, 7.1396, 7.1385, 7.1374, 7.1358, 7.134, 7.1328, 7.1309, 7.131, 7.1302, 7.1296, 7.1278, 7.1269, 7.1252, 7.124, 7.1227, 7.1209, 7.1193, 7.1177, 7.1214, 7.1251, 7.1261, 7.1357, 7.1367, 7.1307, 7.1293, 7.1289, 7.1325, 7.1309, 7.1292, 7.1324, 7.1308, 7.1293, 7.1284, 7.1269, 7.1253, 7.1289, 7.1279, 7.1264, 7.1246, 7.1229, 7.1218, 7.1201, 7.1185, 7.118, 7.1163, 7.1157, 7.1146, 7.1129, 7.1167, 7.1207, 7.1193, 7.1185, 7.1189, 7.1172, 7.1209, 7.1194, 7.1179, 7.1202, 7.1188, 7.119800000000001, 7.1181, 7.117, 7.1153, 7.1137, 7.1125, 7.1108, 7.1143, 7.1128, 7.1164, 7.115, 7.1135, 7.1084, 7.1128, 7.1218, 7.1216, 7.1247, 7.1236, 7.1224, 7.1255, 7.1242, 7.123, 7.1217, 7.1232, 7.1238, 7.1224, 7.1215, 7.1202, 7.124, 7.1273, 7.1261, 7.1294, 7.1283, 7.1269, 7.1306, 7.1299, 7.1242, 7.1229, 7.1216, 7.1202, 7.1186, 7.1174, 7.1162, 7.1331, 7.1335, 7.1321, 7.131, 7.1346, 7.1334, 7.132, 7.1304, 7.1289, 7.1234, 7.1364, 7.1349, 7.1337, 7.1327, 7.1313, 7.1297, 7.1341, 7.1328, 7.1357, 7.1341, 7.1331, 7.1325, 7.131, 7.1341, 7.1375, 7.137, 7.1513, 7.1505, 7.149, 7.1523, 7.1507, 7.1499, 7.1492, 7.1522, 7.151, 7.1499, 7.1483, 7.1468, 7.1517, 7.1642, 7.1673, 7.1657, 7.1653, 7.1642, 7.163, 7.1614, 7.1599, 7.1588, 7.1574, 7.1559, 7.1503, 7.1488, 7.1473, 7.1465, 7.1511, 7.1506, 7.1495, 7.1499, 7.1494, 7.1524, 7.1513, 7.1544, 7.1533, 7.1565, 7.1598, 7.1544, 7.1538, 7.1528, 7.1513, 7.1671, 7.1661, 7.1652, 7.1642, 7.1682, 7.1674, 7.1669, 7.1658, 7.1647, 7.1671, 7.1655, 7.1642, 7.1634, 7.1667, 7.1655, 7.1685, 7.1673, 7.166, 7.1647, 7.168, 7.1673, 7.1661, 7.1653, 7.1639, 7.163, 7.1578, 7.1564, 7.1549, 7.1539, 7.1531, 7.1518, 7.1504, 7.1494, 7.148, 7.1465, 7.1451, 7.1436, 7.1425, 7.1416, 7.1425, 7.142, 7.1406, 7.1393, 7.1379, 7.1463, 7.1451, 7.1437, 7.1424, 7.1414, 7.1451, 7.144, 7.1433, 7.1526, 7.1488, 7.1474, 7.1434, 7.1525, 7.1515, 7.1502, 7.1493, 7.1496, 7.1488, 7.1475, 7.1543, 7.1531, 7.1517, 7.1466, 7.146, 7.1519, 7.1505, 7.1495, 7.1569, 7.1619, 7.1607, 7.1594, 7.1583, 7.1833, 7.1822, 7.1811, 7.1841, 7.183, 7.1823, 7.1809, 7.1798, 7.1825, 7.1855, 7.1849, 7.184, 7.1868, 7.1899, 7.1927, 7.1955, 7.1982, 7.201, 7.1998, 7.1982, 7.1971, 7.1965, 7.195, 7.1977, 7.1963, 7.1953, 7.1981, 7.1969, 7.1956, 7.1941, 7.1934, 7.1921, 7.1908, 7.1896, 7.1965, 7.1994, 7.1982, 7.1972, 7.2007, 7.1993, 7.2017, 7.2003, 7.2034, 7.2059, 7.2047, 7.2032, 7.2021, 7.2012, 7.2, 7.2032, 7.2019, 7.2008, 7.1996, 7.1986, 7.1975, 7.1976, 7.1968, 7.1961, 7.1991, 7.198, 7.1967, 7.1954, 7.1904, 7.189, 7.192, 7.1951, 7.1938, 7.193, 7.1917, 7.1945, 7.1931, 7.1958, 7.1949, 7.1939, 7.1926, 7.1912, 7.1899, 7.1892, 7.1885, 7.2002, 7.1988, 7.1976, 7.1967, 7.1956, 7.1955, 7.1941, 7.1927, 7.1914, 7.1903, 7.189, 7.1878, 7.1871, 7.1897, 7.1884, 7.1877, 7.1867, 7.1853, 7.1843, 7.1831, 7.1785, 7.1773, 7.1783, 7.1774, 7.1761, 7.1747, 7.1734, 7.1725, 7.1711, 7.1699, 7.1815, 7.1814, 7.1842, 7.1831, 7.1824, 7.1812, 7.1837, 7.1827, 7.1815, 7.1802, 7.179, 7.1777, 7.1804, 7.1831, 7.1818, 7.1847, 7.1836, 7.1823, 7.1885, 7.1872, 7.186, 7.1909, 7.1935, 7.1923, 7.1911, 7.1907, 7.1894, 7.1886, 7.1877, 7.1864, 7.1857, 7.1843, 7.183, 7.1819, 7.1808, 7.1799, 7.1795, 7.1782, 7.1774, 7.1764, 7.1751, 7.1743, 7.1739, 7.1731, 7.1756, 7.1784, 7.1811, 7.181, 7.1836, 7.1828, 7.189, 7.1918, 7.1909, 7.1896, 7.1923, 7.1949, 7.1982, 7.2006, 7.1997, 7.2019, 7.2007, 7.1995, 7.2017, 7.2043, 7.2033, 7.2024, 7.2011, 7.2001, 7.2024, 7.2049, 7.2037, 7.2024, 7.2011, 7.1998, 7.1955, 7.1942, 7.1966, 7.1958, 7.1947, 7.1936, 7.1965, 7.203, 7.2022, 7.205, 7.204, 7.203, 7.202, 7.2011, 7.2008, 7.1997, 7.2023, 7.2016, 7.2007, 7.1996, 7.1984, 7.1981, 7.2043, 7.2105, 7.2093, 7.2081, 7.2069, 7.2077, 7.2065, 7.2053, 7.2041, 7.2031, 7.2057, 7.2048, 7.2043, 7.2032, 7.202, 7.2014, 7.2002, 7.1989, 7.198, 7.2219, 7.2208, 7.2243, 7.2231, 7.2256, 7.2244, 7.2232, 7.222, 7.2208, 7.2233, 7.2225, 7.225, 7.224, 7.2228, 7.2256, 7.2258, 7.225, 7.2276, 7.2265, 7.2253, 7.2242, 7.2271, 7.2267, 7.2289, 7.2285, 7.2285, 7.2273, 7.2262, 7.2258, 7.2315, 7.2307, 7.2331, 7.232, 7.2312, 7.23, 7.2289, 7.2277, 7.2268, 7.2255, 7.2248, 7.2236, 7.2225, 7.2213, 7.2201, 7.2189, 7.2184, 7.2186, 7.2178, 7.2135, 7.2126, 7.2147, 7.2172, 7.216, 7.2186, 7.2185, 7.2203, 7.226, 7.2255, 7.2247, 7.2305, 7.2293, 7.2282, 7.2272, 7.2259, 7.2247, 7.2235, 7.2223, 7.2246, 7.2272, 7.2259, 7.225, 7.2248, 7.2204, 7.2193, 7.2183, 7.2172, 7.2195, 7.2182, 7.217, 7.2159, 7.2151, 7.2174, 7.2135, 7.2128, 7.2123, 7.2118, 7.2107, 7.2095, 7.2118, 7.2111, 7.2133, 7.2154, 7.2177, 7.217, 7.2159, 7.218, 7.2203, 7.2202, 7.219, 7.2178, 7.2169, 7.2159, 7.2147, 7.2139, 7.2133, 7.2122, 7.2113, 7.2134, 7.2164, 7.2186, 7.2174, 7.2163, 7.2152, 7.2176, 7.2164, 7.2159, 7.2147, 7.2135, 7.2226, 7.2216, 7.2205, 7.2193, 7.2217, 7.2209, 7.2198, 7.2192, 7.218, 7.217, 7.2192, 7.2184, 7.2181, 7.217, 7.2167, 7.2188, 7.2181, 7.2169, 7.2158, 7.2179, 7.2168, 7.2157, 7.2146, 7.2139, 7.2129, 7.2149, 7.2172, 7.2161, 7.2152, 7.2173, 7.2163, 7.2153, 7.2144, 7.2168, 7.2216, 7.2205, 7.2194, 7.2203, 7.2164, 7.2153, 7.2146, 7.2167, 7.2156, 7.2146, 7.2168, 7.2158, 7.2148, 7.2137, 7.2126, 7.2118, 7.2138, 7.2159, 7.2153, 7.2255, 7.2246, 7.2238, 7.2228, 7.2253, 7.2242, 7.2236, 7.2226, 7.2218, 7.2207, 7.2198, 7.2187, 7.2175, 7.2167, 7.2187, 7.2179, 7.2168, 7.2191, 7.218, 7.2169, 7.2165, 7.2154, 7.2143, 7.2132, 7.2124, 7.2113, 7.2104, 7.2094, 7.2119, 7.211, 7.213, 7.2118, 7.2138, 7.2126, 7.2117, 7.2109, 7.2102, 7.2122, 7.2114, 7.2104, 7.2102, 7.2092, 7.2091, 7.2112, 7.2102, 7.2091, 7.2087, 7.2077, 7.2097, 7.2086, 7.2106, 7.2097, 7.2086, 7.2079, 7.2041, 7.203, 7.202, 7.201, 7.2086, 7.2117, 7.2112, 7.2101, 7.2094, 7.2093, 7.2086, 7.2079, 7.2069, 7.2058, 7.2049, 7.2039, 7.206, 7.205, 7.2044, 7.2034, 7.2023, 7.2015, 7.2005, 7.1995, 7.2054, 7.2048, 7.2167, 7.2157, 7.2177, 7.2171, 7.2161, 7.2155, 7.2144, 7.2133, 7.213, 7.2121, 7.211, 7.2102, 7.2094, 7.2084, 7.2074, 7.2038, 7.2076, 7.2096, 7.209, 7.2081, 7.2102, 7.2091, 7.2084, 7.2074, 7.2066, 7.2057, 7.2077, 7.2071, 7.2066, 7.2058, 7.2047, 7.2066, 7.2085, 7.2079, 7.207, 7.2064, 7.2054, 7.2043, 7.2035, 7.2024, 7.2043, 7.2063, 7.2106, 7.2124, 7.2113, 7.2102, 7.2092, 7.2085, 7.2112, 7.2107, 7.2097, 7.2089, 7.2081, 7.2076, 7.2068, 7.2089, 7.2108, 7.2099, 7.2095, 7.2089, 7.2081, 7.2101, 7.2092, 7.2057, 7.2049, 7.2039, 7.2031, 7.2023, 7.2015, 7.2006, 7.2001, 7.1994, 7.2014, 7.2035, 7.2025, 7.2046, 7.2036, 7.2027, 7.2017, 7.2008, 7.2037, 7.2064, 7.2112, 7.2104, 7.2094, 7.2088, 7.208, 7.207, 7.2066, 7.2056, 7.2048, 7.2038, 7.2058, 7.205, 7.2041, 7.2031, 7.2051, 7.2043, 7.2013, 7.2005, 7.2026, 7.2018, 7.2008, 7.2112, 7.2103, 7.2093, 7.209, 7.2081, 7.2071, 7.207, 7.2062, 7.208, 7.207, 7.2061, 7.2055, 7.2075, 7.2095, 7.2093, 7.2113, 7.2104, 7.2123, 7.2115, 7.2105, 7.2099, 7.2094, 7.2115, 7.2135, 7.2131, 7.2124, 7.2148, 7.214, 7.2133, 7.2125, 7.2123, 7.212, 7.2111, 7.2105, 7.2095, 7.2068, 7.206, 7.2051, 7.2129, 7.212, 7.2112, 7.2102, 7.2092, 7.2082, 7.2076, 7.2125, 7.2146, 7.214, 7.2135, 7.2129, 7.2148, 7.2142, 7.2134, 7.2124, 7.2114, 7.2104, 7.2095, 7.2086, 7.2088, 7.2107, 7.2181, 7.2171, 7.2166, 7.2207, 7.2232, 7.2223, 7.2215, 7.2237, 7.227, 7.2262, 7.2253, 7.2243, 7.2239, 7.2231, 7.2196, 7.2268, 7.229, 7.2284, 7.2304, 7.2324, 7.229, 7.2286, 7.2254, 7.2282, 7.2272, 7.229, 7.2307, 7.2297, 7.2287, 7.2361, 7.2353, 7.2347, 7.2368, 7.2394, 7.2386, 7.2386, 7.2381, 7.2372, 7.2365, 7.2384, 7.2402, 7.2392, 7.2383, 7.2376, 7.2369, 7.2387, 7.238, 7.2374, 7.2365, 7.2355, 7.2374, 7.2392, 7.2384, 7.2375, 7.2365, 7.2355, 7.2323, 7.2289, 7.2281, 7.2278, 7.2272, 7.2265, 7.2286, 7.232, 7.2337, 7.2329, 7.2326, 7.2345, 7.2337, 7.2328, 7.2347, 7.2337, 7.233, 7.2297, 7.2294, 7.2285, 7.2282, 7.2301, 7.2268, 7.2259, 7.2252, 7.2243, 7.2247, 7.2268, 7.226, 7.2306, 7.2325, 7.2315, 7.2305, 7.2295, 7.2314, 7.2334, 7.2342, 7.236, 7.2352, 7.2351, 7.2344, 7.2336, 7.2329, 7.2345, 7.2335, 7.2326, 7.2343, 7.2361, 7.2379, 7.2371, 7.2363, 7.236, 7.2407, 7.24, 7.239, 7.2381, 7.2371, 7.2362, 7.2357, 7.2374, 7.2368, 7.2385, 7.2376, 7.2367, 7.2358, 7.2349, 7.2341, 7.2335, 7.2328, 7.2318, 7.2339, 7.233, 7.2321, 7.2342, 7.2359, 7.2352, 7.2402, 7.2393, 7.2384, 7.2404, 7.2396, 7.2388, 7.2381, 7.2374, 7.2389, 7.2407, 7.2402, 7.2394, 7.241, 7.2401, 7.2418, 7.241, 7.2407, 7.2422, 7.242, 7.2411, 7.2402, 7.2401, 7.2391, 7.2382, 7.2374, 7.2392, 7.2383, 7.2374, 7.2365, 7.2356, 7.2373, 7.2367, 7.2358, 7.2375, 7.2392, 7.2382, 7.2402, 7.2399, 7.239, 7.2407, 7.2401, 7.2395, 7.2386, 7.2404, 7.2395, 7.2405, 7.24, 7.2393, 7.2368, 7.2359, 7.2351, 7.2343, 7.2335, 7.2353, 7.2344, 7.2338, 7.2336, 7.2351, 7.2342, 7.2359, 7.235, 7.2341, 7.2332, 7.2323, 7.2314, 7.2307, 7.2298, 7.229, 7.2287, 7.2279, 7.227, 7.2239, 7.2231, 7.2228, 7.2246, 7.2238, 7.2254, 7.2246, 7.2292, 7.2289, 7.228, 7.2272, 7.2263, 7.2257, 7.2251, 7.2246, 7.2243, 7.2233, 7.2227, 7.2218, 7.2213, 7.2206, 7.2211, 7.2204, 7.2223, 7.2222, 7.2215, 7.2233, 7.2224, 7.2217, 7.2223, 7.2216, 7.2234, 7.2227, 7.2227, 7.2218, 7.2214, 7.2213, 7.2204, 7.2195, 7.2188, 7.218, 7.2177, 7.2173, 7.2167, 7.2159, 7.2152, 7.2147, 7.2144, 7.2135, 7.2129, 7.2113, 7.2109, 7.2104, 7.2096, 7.2066, 7.2057, 7.2049, 7.2041, 7.2032, 7.2029, 7.2021, 7.2015, 7.2032, 7.2049, 7.204, 7.2032, 7.2048, 7.2043, 7.2037, 7.2038, 7.2035, 7.2029, 7.2021, 7.2014, 7.2005, 7.2023, 7.2017, 7.2036, 7.2027, 7.2069, 7.2088, 7.2082, 7.2073, 7.2094, 7.2094, 7.2088, 7.2116, 7.2132, 7.2168, 7.2162, 7.2178, 7.2171, 7.2165, 7.2183, 7.2178, 7.2155, 7.216, 7.2161, 7.2177, 7.2173, 7.2166, 7.2161, 7.2154, 7.2146, 7.2144, 7.2147, 7.2143, 7.2159, 7.2153, 7.217, 7.2166, 7.2161, 7.2153, 7.2146, 7.2138, 7.213, 7.2133, 7.2126, 7.2118, 7.2134, 7.2126, 7.2142, 7.2136, 7.213, 7.2167, 7.2158, 7.2149, 7.2141, 7.2139, 7.2133, 7.2148, 7.214, 7.2156, 7.2173, 7.2188, 7.2181, 7.2173, 7.2165, 7.2161, 7.2177, 7.2198, 7.2189, 7.2205, 7.2177, 7.217, 7.2162, 7.2157, 7.215, 7.2144, 7.216, 7.2153, 7.2148, 7.2144, 7.2168, 7.216, 7.2152, 7.2149, 7.2141, 7.2133, 7.2125, 7.2121, 7.2138, 7.2131, 7.2126, 7.2118, 7.211, 7.2102, 7.2118, 7.2112, 7.2128, 7.21, 7.2093, 7.2085, 7.2101, 7.2096, 7.209, 7.2106, 7.2099, 7.2095, 7.2103, 7.2119, 7.2112, 7.2104, 7.2101, 7.2095, 7.2088, 7.2081, 7.2099, 7.2092, 7.2084, 7.2102, 7.2098, 7.2093, 7.209, 7.2083, 7.2098, 7.2093, 7.2086, 7.208, 7.2096, 7.2092, 7.2087, 7.2104, 7.2121, 7.2116, 7.2109, 7.2101, 7.2096, 7.2089, 7.2082, 7.2075, 7.2068, 7.2062, 7.2054, 7.2046, 7.2042, 7.2034, 7.2029, 7.2044, 7.206, 7.2052, 7.2045, 7.2038, 7.2032, 7.205, 7.2043, 7.2036, 7.2031, 7.2078, 7.2102, 7.2095, 7.2158, 7.2174, 7.2168, 7.2161, 7.2157, 7.2172, 7.2187, 7.218, 7.2174, 7.219, 7.2183, 7.2156, 7.217, 7.2165, 7.2182, 7.2176, 7.2191, 7.2222, 7.2214, 7.2229, 7.2221, 7.2213, 7.2205, 7.2197, 7.2191, 7.2206, 7.2199, 7.2198, 7.2213, 7.2251, 7.2243, 7.2236, 7.2229, 7.2224, 7.2218, 7.2193, 7.219, 7.2182, 7.2177, 7.2171, 7.2165, 7.2162, 7.2154, 7.215, 7.2232, 7.2206, 7.22, 7.2193, 7.2186, 7.2178, 7.2171, 7.2164, 7.2158, 7.2151, 7.2143, 7.2143, 7.2135, 7.2127, 7.2142, 7.2165, 7.2164, 7.2156, 7.2148, 7.214, 7.2133, 7.2129, 7.2124, 7.212, 7.2114, 7.2108, 7.2125, 7.2137, 7.2132, 7.2147, 7.214, 7.2133, 7.2143, 7.2167, 7.2161, 7.2153, 7.2167, 7.2159, 7.2199, 7.2214, 7.2207, 7.2202, 7.2175, 7.219, 7.2184, 7.2178, 7.2171, 7.2164, 7.2162, 7.2178, 7.2171, 7.2165, 7.2157, 7.2172, 7.2164, 7.2156, 7.215, 7.2155, 7.2151, 7.2167, 7.2164, 7.2163, 7.2155, 7.2147, 7.2141, 7.2134, 7.2149, 7.2143, 7.2136, 7.2129, 7.2122, 7.2117, 7.211, 7.2103, 7.2096, 7.2111, 7.2104, 7.2119, 7.2112, 7.2106, 7.2124, 7.2119, 7.2114, 7.2134, 7.2108, 7.2103, 7.2116, 7.2113, 7.2107, 7.2121, 7.2114, 7.2129, 7.2123, 7.2137, 7.2151, 7.2146, 7.2143, 7.2136, 7.2129, 7.2126, 7.2119, 7.2115, 7.2107, 7.21, 7.2093, 7.2086, 7.2082, 7.2076, 7.2092, 7.2106, 7.2102, 7.2096, 7.2095, 7.2088, 7.208, 7.2073, 7.2074, 7.2112, 7.2107, 7.21, 7.2095, 7.211, 7.2104, 7.2119, 7.2112, 7.2127, 7.2119, 7.2114, 7.2107, 7.213, 7.2123, 7.2117, 7.2113, 7.2108, 7.2121, 7.2115, 7.2113, 7.2107, 7.2099, 7.2092, 7.2087, 7.2081, 7.2074, 7.2067, 7.2073, 7.2078, 7.2074, 7.2069, 7.2063, 7.2056, 7.2073, 7.2067, 7.206, 7.2074, 7.2067, 7.206, 7.2075, 7.2068, 7.2061, 7.2054, 7.2047, 7.204, 7.2015, 7.2009, 7.2001, 7.2015, 7.2009, 7.2006, 7.2001, 7.1993, 7.1986, 7.1983, 7.1977, 7.1973, 7.1979, 7.1973, 7.1987, 7.1982, 7.1996, 7.1991, 7.1987, 7.198, 7.1973, 7.1967, 7.196, 7.1955, 7.1969, 7.1943, 7.1937, 7.1931, 7.1924, 7.1981, 7.1976, 7.1997, 7.1992, 7.1972, 7.1988, 7.1981, 7.1977, 7.1952, 7.196, 7.1979, 7.1972, 7.1986, 7.1978, 7.1974, 7.1982, 7.1994, 7.2007, 7.1999, 7.1993, 7.1986, 7.1999, 7.1993, 7.1988, 7.1981, 7.1977, 7.1972, 7.1965, 7.1957, 7.1972, 7.1965, 7.1963, 7.1978, 7.1973, 7.1967, 7.1982, 7.1996, 7.1991, 7.1984, 7.1977, 7.1972, 7.1968, 7.1982, 7.1976, 7.1976, 7.1969, 7.1962, 7.1976, 7.1971, 7.1968, 7.1966, 7.196, 7.1954, 7.1947, 7.1941, 7.1938, 7.1932, 7.1926, 7.1919, 7.1913, 7.1906, 7.1904, 7.1897, 7.189, 7.1883, 7.1878, 7.1872, 7.1868, 7.1863, 7.1858, 7.1851, 7.1844, 7.1857, 7.1851, 7.1846, 7.184, 7.1833, 7.185, 7.1847, 7.1842, 7.1835, 7.1828, 7.1822, 7.1817, 7.1832, 7.1849, 7.1843, 7.184, 7.1833, 7.1828, 7.1821, 7.1828, 7.1821, 7.1797, 7.179, 7.1783, 7.1798, 7.1792, 7.1788, 7.1802, 7.1798, 7.1793, 7.1786, 7.178, 7.1793, 7.1786, 7.1783, 7.1776, 7.1773, 7.1771, 7.1767, 7.1764, 7.1757, 7.1752, 7.1746, 7.176, 7.1755, 7.1752, 7.1747, 7.1761, 7.176, 7.1759, 7.1755, 7.1749, 7.1746, 7.1741, 7.1753, 7.1748, 7.1743, 7.1741, 7.1755, 7.1748, 7.1746, 7.1741, 7.1753, 7.1746, 7.1742, 7.1736, 7.1731, 7.1745, 7.1761, 7.1738, 7.1753, 7.1767, 7.1761, 7.1757, 7.1754, 7.175, 7.1763, 7.1777, 7.177, 7.1763, 7.1798, 7.181, 7.1805, 7.181500000000001, 7.1809, 7.1804, 7.1806, 7.1801, 7.1795, 7.1791, 7.1784, 7.1778, 7.1772, 7.1766, 7.1761, 7.1758, 7.1772, 7.1768, 7.1763, 7.18, 7.1813, 7.1807, 7.1806, 7.1801, 7.1794, 7.1809, 7.1824, 7.1818, 7.1814, 7.1847, 7.1864, 7.1877, 7.1875, 7.187, 7.1863, 7.1859, 7.1853, 7.1887, 7.1883, 7.1877, 7.1876, 7.1872, 7.1866, 7.1882, 7.1875, 7.1888, 7.1902, 7.1903, 7.1898, 7.1891, 7.1884, 7.1881, 7.1874, 7.1867, 7.1881, 7.1875, 7.1887, 7.1903, 7.1898, 7.192, 7.1933, 7.1945, 7.1939, 7.1934, 7.1931, 7.1946, 7.1939, 7.1933, 7.1945, 7.1941, 7.1954, 7.1994, 7.1987, 7.198, 7.1974, 7.1969, 7.1965, 7.1977, 7.1991, 7.1984, 7.1979, 7.1993, 7.1989, 7.1982, 7.1978, 7.1976, 7.1972, 7.1966, 7.1962, 7.1958, 7.1953, 7.1948, 7.1944, 7.1958, 7.1952, 7.1946, 7.1961, 7.1977, 7.1972, 7.1966, 7.198, 7.1992, 7.2005, 7.1999, 7.2012, 7.2005, 7.1999, 7.1993, 7.1987, 7.1999, 7.1993, 7.1989, 7.2002, 7.1996, 7.1993, 7.1988, 7.1982, 7.1983, 7.1979, 7.1973, 7.1967, 7.1962, 7.1956, 7.195, 7.1943, 7.1955, 7.1967, 7.196, 7.1957, 7.1997, 7.2009, 7.2017, 7.2011, 7.1988, 7.1982, 7.1977, 7.1971, 7.1964, 7.1941, 7.1937, 7.1932, 7.1926, 7.192, 7.1914, 7.1927, 7.1941, 7.1935, 7.1929, 7.1923, 7.1917, 7.1911, 7.1905, 7.1903, 7.19, 7.1895, 7.1889, 7.19, 7.1893, 7.1905, 7.1917, 7.1929, 7.1926, 7.192, 7.1914, 7.1907, 7.1919, 7.1932, 7.1929, 7.1923, 7.192, 7.1915, 7.1927, 7.1921, 7.1917, 7.1936, 7.1929, 7.1923, 7.1937, 7.1931, 7.1927, 7.1939, 7.1934, 7.193, 7.1924, 7.1918, 7.1912, 7.1907, 7.19, 7.1894, 7.1889, 7.1891, 7.1903, 7.1898, 7.1892, 7.1888, 7.1899, 7.1895, 7.1889, 7.1883, 7.1878, 7.1891, 7.1903, 7.1896, 7.1891, 7.1903, 7.19, 7.1912, 7.1924, 7.1937, 7.195, 7.1944, 7.1957, 7.1952, 7.1965, 7.1977, 7.1971, 7.1965, 7.1976, 7.1973, 7.1971, 7.1964, 7.1958, 7.1953, 7.1946, 7.1941, 7.1936, 7.1931, 7.1926, 7.192, 7.1933, 7.1928, 7.1939, 7.1932, 7.1926, 7.192, 7.1915, 7.191, 7.1921, 7.1916, 7.191, 7.1921, 7.1917, 7.1911, 7.1906, 7.1901, 7.1895, 7.1907, 7.1903, 7.1914, 7.1912, 7.1918, 7.1912, 7.1906, 7.1901, 7.1895, 7.1892, 7.1886, 7.1898, 7.1897, 7.1895, 7.1892, 7.1936, 7.1931, 7.1944, 7.1954, 7.195, 7.1962, 7.1957, 7.1951, 7.1946, 7.1941, 7.1936, 7.1931, 7.1925, 7.1919, 7.1932, 7.1929, 7.1941, 7.1953, 7.1947, 7.1942, 7.1936, 7.1932, 7.1929, 7.1924, 7.1922, 7.1934, 7.1946, 7.194, 7.1951, 7.1945, 7.1939, 7.1951, 7.1945, 7.194, 7.1934, 7.1933, 7.1927, 7.1922, 7.1916, 7.1931, 7.1926, 7.1923, 7.1917, 7.1932, 7.1945, 7.1957, 7.1952, 7.1963, 7.1961, 7.1958, 7.1953, 7.1964, 7.1958, 7.1955, 7.1952, 7.1946, 7.1961, 7.1955, 7.195, 7.1963, 7.1958, 7.1955, 7.1967, 7.1962, 7.1959, 7.1972, 7.1984, 7.1978, 7.1957, 7.1936, 7.1948, 7.1942, 7.1939, 7.1933, 7.1928, 7.1922, 7.1916, 7.1911, 7.1907, 7.1901, 7.1895, 7.1891, 7.1886, 7.188, 7.1893, 7.1887, 7.1898, 7.1899, 7.1896, 7.1891, 7.1901, 7.1896, 7.1892, 7.1904, 7.1898, 7.1902, 7.1898, 7.1904, 7.1887, 7.1881, 7.1877, 7.189, 7.1884, 7.1896, 7.191, 7.1905, 7.1902, 7.1914, 7.1911, 7.1909, 7.1905, 7.19, 7.1898, 7.1894, 7.1889, 7.1885, 7.1899, 7.1894, 7.1891, 7.1887, 7.1899, 7.1893, 7.1889, 7.19, 7.1912, 7.1909, 7.1906, 7.1917, 7.1928, 7.1922, 7.1917, 7.193, 7.1927, 7.1926, 7.194, 7.1935, 7.193, 7.1927, 7.1922, 7.1924, 7.1919, 7.1914, 7.1908, 7.1902, 7.1897, 7.1892, 7.1889, 7.1884, 7.1899, 7.1903, 7.19, 7.1898, 7.1895, 7.1891, 7.1888, 7.1899, 7.1895, 7.189, 7.1885, 7.188, 7.1879, 7.1892, 7.1889, 7.1883, 7.1879, 7.1875, 7.1869, 7.1865, 7.1878, 7.1873, 7.1852, 7.1849, 7.1844, 7.1856, 7.1851, 7.1845, 7.1841, 7.1838, 7.1835, 7.1831, 7.1826, 7.184, 7.1834, 7.1828, 7.1823, 7.1837, 7.1834, 7.1847, 7.1841, 7.1841, 7.1859, 7.1853, 7.1848, 7.1843, 7.1855, 7.185, 7.1846, 7.184, 7.1834, 7.1828, 7.1807, 7.1802, 7.1813, 7.1808, 7.1802, 7.1802, 7.1797, 7.1793, 7.1804, 7.1815, 7.1828, 7.1822, 7.1819, 7.1813, 7.1807, 7.1788, 7.1816, 7.181, 7.1805, 7.1834, 7.185, 7.1844, 7.1839, 7.1836, 7.1831, 7.1841, 7.1869, 7.1863, 7.1857, 7.1854, 7.1866, 7.1862, 7.1874, 7.1869, 7.1864, 7.1858, 7.1868, 7.1864, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1852, 7.1848, 7.1842, 7.1836, 7.1831, 7.183, 7.1825, 7.1823, 7.1819, 7.1814, 7.1808, 7.182, 7.1814, 7.1808, 7.1802, 7.1797, 7.1797, 7.1792, 7.1787, 7.1783, 7.178, 7.1792, 7.1787, 7.1783, 7.178, 7.179, 7.1784, 7.1796, 7.1791, 7.1835, 7.1832, 7.1829, 7.1842, 7.1836, 7.1832, 7.1827, 7.1835, 7.183, 7.1841, 7.1822, 7.1819, 7.1814, 7.181, 7.1805, 7.18, 7.1795, 7.179, 7.1802, 7.1797, 7.1808, 7.1792, 7.1787, 7.1821, 7.1806, 7.1801, 7.1797, 7.181, 7.1838, 7.1832, 7.1849, 7.1829, 7.1824, 7.1821, 7.1831, 7.1811, 7.1807, 7.1821, 7.1872, 7.187, 7.1866, 7.1864, 7.1876, 7.1876, 7.1873, 7.1868, 7.1863, 7.1858, 7.187, 7.1865, 7.186, 7.1873, 7.1871, 7.1904, 7.1915, 7.1896, 7.1891, 7.1887, 7.1882, 7.1884, 7.1907, 7.192, 7.1915, 7.191, 7.1906, 7.1902, 7.1912, 7.1908, 7.1903, 7.1914, 7.1909, 7.1903, 7.1898, 7.1893, 7.1887, 7.1882, 7.1877, 7.1884, 7.188, 7.1876, 7.1888, 7.1903, 7.1899, 7.191, 7.1921, 7.1931, 7.1927, 7.1922, 7.1918, 7.1914, 7.1908, 7.1903, 7.1913, 7.1907, 7.1902, 7.1899, 7.1912, 7.1908, 7.1928, 7.1923, 7.1934, 7.1945, 7.194, 7.1935, 7.1946, 7.1941, 7.1936, 7.1931, 7.1928, 7.1923, 7.1934, 7.1931, 7.1925, 7.1936, 7.1931, 7.1927, 7.1924, 7.192, 7.1915, 7.191, 7.1904, 7.1914, 7.1895, 7.1891, 7.1919, 7.1914, 7.1914, 7.1924, 7.1919, 7.1914, 7.191, 7.192, 7.1915, 7.1911, 7.1909, 7.1906, 7.1903, 7.1899, 7.1894, 7.1875, 7.1871, 7.1866, 7.1861, 7.1889, 7.1884, 7.188, 7.1877, 7.1874, 7.1872, 7.1867, 7.1862, 7.1873, 7.1868, 7.1865, 7.1876, 7.1871, 7.187, 7.1865, 7.1883, 7.1878, 7.1881, 7.1892, 7.1933, 7.193, 7.1925, 7.1922, 7.1917, 7.1913, 7.1909, 7.192, 7.1915, 7.1909, 7.1904, 7.1899, 7.1894, 7.189, 7.1884, 7.1879, 7.1889, 7.1885, 7.188, 7.1878, 7.1873, 7.1884, 7.1879, 7.1876, 7.1882, 7.1877, 7.1871, 7.1868, 7.1881, 7.1891, 7.1902, 7.1913, 7.1924, 7.1918, 7.1899, 7.191, 7.1905, 7.19, 7.1899, 7.1909, 7.1906, 7.1902, 7.1897, 7.1907, 7.1901, 7.1911, 7.1925, 7.192, 7.1901, 7.1911, 7.1909, 7.1919, 7.1921, 7.1917, 7.1952, 7.1955, 7.1981, 7.1976, 7.1974, 7.1969, 7.1964, 7.1958, 7.1953, 7.1948, 7.1942, 7.1937, 7.1932, 7.1927, 7.1924, 7.1921, 7.1916, 7.1911, 7.1906, 7.1904, 7.1914, 7.1911, 7.1906, 7.19, 7.1896, 7.1892, 7.1889, 7.189, 7.1889, 7.1884, 7.1896, 7.1906, 7.1903, 7.1898, 7.1895, 7.1906, 7.1918, 7.1913, 7.1909, 7.1904, 7.1905, 7.19, 7.1895, 7.1905, 7.19, 7.1897, 7.1893, 7.1888, 7.1883, 7.1878, 7.1873, 7.1871, 7.1868, 7.1863, 7.186, 7.1858, 7.1853, 7.1848, 7.1844, 7.184, 7.1837, 7.1832, 7.1827, 7.1838, 7.1833, 7.1842, 7.1851, 7.1846, 7.1856, 7.1851, 7.1847, 7.1842, 7.1839, 7.1834, 7.1833, 7.1829, 7.1825, 7.1836, 7.183, 7.184, 7.1851, 7.1846, 7.1841, 7.1836, 7.1834, 7.1831, 7.1826, 7.1821, 7.1817, 7.1812, 7.1807, 7.1802, 7.1812, 7.1807, 7.1804, 7.1799, 7.1794, 7.1791, 7.1787, 7.1782, 7.1777, 7.1759, 7.177, 7.1765, 7.1777, 7.1772, 7.1782, 7.1779, 7.1776, 7.1771, 7.1766, 7.1776, 7.1773, 7.1768, 7.1771, 7.1768, 7.1763, 7.1769, 7.1779, 7.1774, 7.1771, 7.178100000000001, 7.1792, 7.1787, 7.1783, 7.178, 7.1776, 7.1792, 7.1788, 7.1784, 7.1795, 7.179, 7.1788, 7.1785, 7.1783, 7.1793, 7.1789, 7.1784, 7.1782, 7.1825, 7.182, 7.1822, 7.1832, 7.1865, 7.1872, 7.1854, 7.1856, 7.1852, 7.1848, 7.1909, 7.1912, 7.1895, 7.189, 7.1887, 7.1897, 7.191, 7.1906, 7.1903, 7.1898, 7.1893, 7.1888, 7.1884, 7.1879, 7.1874, 7.1869, 7.1878, 7.1888, 7.1898, 7.1894, 7.19, 7.1895, 7.1892, 7.1901, 7.1899, 7.1895, 7.1893, 7.1903, 7.1899, 7.1894, 7.189, 7.1886, 7.1912, 7.1922, 7.1917, 7.19, 7.1883, 7.1893, 7.1888, 7.1883, 7.1893, 7.189, 7.19, 7.1897, 7.1892, 7.1887, 7.1882, 7.1879, 7.1874, 7.1869, 7.1864, 7.186, 7.1855, 7.1841, 7.1836, 7.1833, 7.1816, 7.1811, 7.1821, 7.1831, 7.184, 7.1835, 7.183, 7.1825, 7.1831, 7.1826, 7.1843, 7.184, 7.1837, 7.1847, 7.1842, 7.1837, 7.1833, 7.1829, 7.1839, 7.185, 7.1846, 7.1842, 7.1851, 7.1861, 7.1871, 7.1866, 7.1861, 7.1871, 7.1881, 7.1877, 7.1872, 7.1868, 7.1864, 7.186, 7.1857, 7.1854, 7.1864, 7.1874, 7.1888, 7.1885, 7.1898, 7.1895, 7.1905, 7.1902, 7.1898, 7.1894, 7.1891, 7.1889, 7.1874, 7.1871, 7.1867, 7.1864, 7.1859, 7.1855, 7.1854, 7.1851, 7.186, 7.1856, 7.1867, 7.1865, 7.1862, 7.1859, 7.1856, 7.1866, 7.1875, 7.187, 7.1881, 7.1876, 7.1886, 7.1882, 7.1877, 7.1873, 7.1869, 7.1864, 7.186, 7.1855, 7.185, 7.1849, 7.1845, 7.184, 7.1836, 7.186, 7.1855, 7.1851, 7.1848, 7.1845, 7.1854, 7.1851, 7.1846, 7.1856, 7.1852, 7.1861, 7.187, 7.1865, 7.1861, 7.1856, 7.1851, 7.1846, 7.1842, 7.1837, 7.1832, 7.1828, 7.1824, 7.1821, 7.1818, 7.1813, 7.181, 7.1806, 7.1815, 7.1811, 7.1807, 7.1803, 7.18, 7.1796, 7.1792, 7.1774, 7.177, 7.1766, 7.1776, 7.1787, 7.1783, 7.1792, 7.1788, 7.1784, 7.178, 7.1775, 7.1784, 7.1767, 7.1753, 7.1791, 7.1788, 7.1784, 7.1793, 7.1789, 7.1812, 7.1822, 7.1805, 7.18, 7.1813, 7.1824, 7.182, 7.1829, 7.183, 7.184, 7.1836, 7.1861, 7.187, 7.1909, 7.1919, 7.1915, 7.1898, 7.1895, 7.1904, 7.1913, 7.199, 7.1986, 7.1983, 7.1967, 7.1963, 7.1952, 7.1968, 7.1956, 7.1967, 7.1963, 7.1973, 7.1968, 7.1963, 7.1972, 7.1967, 7.1989, 7.2008, 7.2005, 7.2, 7.1996, 7.1992, 7.2002, 7.1985, 7.1995, 7.2005, 7.2001, 7.1996, 7.1991, 7.2, 7.1995, 7.1978, 7.1974, 7.1984, 7.1993, 7.1989, 7.1987, 7.1984, 7.1982, 7.1978, 7.1961, 7.1956, 7.1952, 7.1962, 7.1957, 7.1953, 7.1953, 7.195, 7.1959, 7.1956, 7.1952, 7.1949, 7.1944, 7.194, 7.1936, 7.1933, 7.193, 7.1926, 7.1922, 7.1917, 7.1913, 7.1911, 7.1908, 7.1904, 7.19, 7.1896, 7.1907, 7.1903, 7.1912, 7.1921, 7.1916, 7.1914, 7.1924, 7.1936, 7.1932, 7.1942, 7.1938, 7.1947, 7.1945, 7.1942, 7.1952, 7.1948, 7.1945, 7.1942, 7.1937, 7.1933, 7.193, 7.1927, 7.1937, 7.1933, 7.2008, 7.2004, 7.2013, 7.2009, 7.2018, 7.2003, 7.1998, 7.1994, 7.199, 7.1986, 7.1998, 7.2019, 7.2015, 7.2011, 7.1995, 7.1991, 7.1988, 7.1971, 7.1967, 7.1977, 7.1986, 7.1983, 7.1978, 7.1973, 7.1971, 7.1968, 7.1965, 7.196, 7.1957, 7.1953, 7.1949, 7.1945, 7.1954, 7.1964, 7.1962, 7.1958, 7.1954, 7.1949, 7.1959, 7.1957, 7.1952, 7.1949, 7.1946, 7.1944, 7.194, 7.1936, 7.1932, 7.1928, 7.1923, 7.1932, 7.1928, 7.1937, 7.1933, 7.1943, 7.1953, 7.195, 7.1946, 7.1944, 7.1942, 7.1938, 7.1957, 7.1956, 7.1951, 7.1949, 7.1945, 7.1955, 7.1951, 7.1947, 7.1942, 7.1937, 7.1932, 7.1941, 7.195, 7.1946, 7.1942, 7.1938, 7.1952, 7.195, 7.196, 7.1956, 7.1953, 7.1949, 7.196, 7.1956, 7.1952, 7.1949, 7.1958, 7.1954, 7.1951, 7.195, 7.1958, 7.1954, 7.195, 7.1947, 7.1944, 7.1939, 7.1935, 7.1931, 7.1927, 7.1936, 7.1932, 7.1928, 7.1925, 7.1926, 7.1922, 7.1918, 7.1914, 7.1923, 7.1932, 7.1928, 7.1924, 7.1922, 7.1932, 7.1928, 7.1936, 7.1933, 7.1942, 7.1939, 7.1947, 7.1944, 7.1952, 7.195, 7.1946, 7.1943, 7.194, 7.1938, 7.1947, 7.1943, 7.1939, 7.1935, 7.193, 7.1926, 7.1925, 7.1921, 7.1918, 7.1927, 7.1923, 7.1934, 7.1943, 7.1952, 7.196, 7.1955, 7.1951, 7.1948, 7.1943, 7.194, 7.1936, 7.1944, 7.1953, 7.1974, 7.197, 7.1965, 7.1962, 7.1957, 7.1953, 7.1948, 7.1944, 7.1941, 7.1948, 7.1958, 7.1954, 7.1951, 7.1947, 7.1942, 7.1938, 7.1933, 7.193, 7.1942, 7.1937, 7.1934, 7.1929, 7.1925, 7.1934, 7.1931, 7.1927, 7.1935, 7.1931, 7.1939, 7.1935, 7.1945, 7.1941, 7.1936, 7.1944, 7.194, 7.1949, 7.1945, 7.1955, 7.1977, 7.1973, 7.1982, 7.1978, 7.1974, 7.197, 7.1965, 7.1974, 7.1969, 7.1953, 7.1949, 7.1946, 7.1943, 7.1953, 7.1949, 7.1984, 7.199400000000001, 7.199, 7.1999, 7.1998, 7.1994, 7.1991, 7.2, 7.2009, 7.2007, 7.2026, 7.2023, 7.2032, 7.2029, 7.2037, 7.2047, 7.2043, 7.204, 7.2049, 7.2065, 7.2074, 7.2076, 7.2075, 7.2071, 7.2066, 7.2062, 7.2058, 7.2053, 7.2049, 7.2046, 7.2042, 7.2051, 7.2048, 7.2047, 7.2042, 7.204, 7.2037, 7.2035, 7.2034, 7.2031, 7.204, 7.2036, 7.2046, 7.2054, 7.2051, 7.2046, 7.2042, 7.2037, 7.2033, 7.2031, 7.2028, 7.2024, 7.2021, 7.2018, 7.202, 7.2016, 7.2012, 7.201, 7.2005, 7.2006, 7.2014, 7.2011, 7.201, 7.2007, 7.2004, 7.2, 7.2009, 7.2006, 7.2002, 7.1998, 7.1994, 7.1991, 7.1987, 7.1985, 7.1981, 7.1977, 7.1962, 7.197, 7.1967, 7.1963, 7.1972, 7.1968, 7.1968, 7.1964, 7.1991, 7.1987, 7.1996, 7.1994, 7.2004, 7.2, 7.1996, 7.2003, 7.1999, 7.1994, 7.199, 7.1987, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1965, 7.1962, 7.1969, 7.1965, 7.1961, 7.1958, 7.1954, 7.195, 7.1935, 7.1945, 7.1929, 7.1927, 7.1925, 7.1934, 7.193, 7.1926, 7.1922, 7.1917, 7.1925, 7.1933, 7.1928, 7.1925, 7.1933, 7.1934, 7.1931, 7.1927, 7.1923, 7.1931, 7.1927, 7.1937, 7.1921, 7.192, 7.1928, 7.1936, 7.1932, 7.194, 7.1937, 7.1942, 7.1939, 7.1937, 7.1934, 7.1931, 7.1927, 7.1923, 7.1932, 7.1956, 7.1952, 7.196, 7.1959, 7.1955, 7.1951, 7.1937, 7.1934, 7.193, 7.1927, 7.1929, 7.1925, 7.1934, 7.1932, 7.1934, 7.1932, 7.1928, 7.1936, 7.1935, 7.1932, 7.1928, 7.193, 7.1926, 7.1924, 7.1921, 7.1917, 7.1915, 7.1911, 7.1908, 7.1904, 7.1901, 7.1886, 7.1883, 7.1881, 7.1877, 7.1876, 7.1872, 7.187, 7.1879, 7.1889, 7.1897, 7.1905, 7.1903, 7.1901, 7.19, 7.1896, 7.191, 7.1907, 7.1923, 7.1919, 7.1917, 7.1914, 7.1923, 7.1918, 7.1914, 7.1911, 7.1907, 7.1903, 7.1888, 7.1884, 7.1882, 7.1879, 7.1875, 7.1871, 7.1867, 7.1865, 7.1861, 7.1859, 7.1855, 7.1851, 7.1847, 7.1845, 7.1843, 7.1851, 7.1847, 7.1844, 7.184, 7.1837, 7.1834, 7.1831, 7.1827, 7.1823, 7.1832, 7.1841, 7.1837, 7.1834, 7.183, 7.1827, 7.1835, 7.1832, 7.1841, 7.1837, 7.1835, 7.1831, 7.1839, 7.1837, 7.1835, 7.1832, 7.1828, 7.1824, 7.1834, 7.1854, 7.185, 7.1846, 7.1845, 7.1843, 7.1852, 7.1849, 7.1846, 7.1854, 7.1851, 7.1861, 7.1857, 7.1903, 7.1912, 7.1909, 7.193, 7.1927, 7.1924, 7.1948, 7.1957, 7.1967, 7.1964, 7.1973, 7.197, 7.1966, 7.1976, 7.198600000000001, 7.199600000000001, 7.1992, 7.1988, 7.1984, 7.1992, 7.1988, 7.1984, 7.1981, 7.199, 7.1988, 7.1986, 7.1982, 7.1979, 7.1975, 7.1972, 7.1968, 7.1964, 7.1961, 7.1958, 7.1955, 7.1963, 7.1959, 7.1967, 7.1964, 7.1973, 7.1969, 7.1977, 7.1973, 7.197, 7.1978, 7.1974, 7.1972, 7.1981, 7.1978, 7.1974, 7.1982, 7.2001, 7.1999, 7.1996, 7.1992, 7.1988, 7.1996, 7.2005, 7.2001, 7.1997, 7.1994, 7.1991, 7.1987, 7.1996, 7.1993, 7.2001, 7.1998, 7.1994, 7.199, 7.1998, 7.1994, 7.199, 7.1986, 7.1994, 7.2003, 7.202, 7.2018, 7.2014, 7.201, 7.2018, 7.2015, 7.2012, 7.2047, 7.2046, 7.2042, 7.2052, 7.2061, 7.2046, 7.2042, 7.2044, 7.2052, 7.2067, 7.2064, 7.206, 7.2057, 7.2053, 7.2049, 7.2057, 7.2056, 7.2052, 7.206, 7.2068, 7.2077, 7.2073, 7.207, 7.2078, 7.2075, 7.2072, 7.2069, 7.2065, 7.2061, 7.2057, 7.2053, 7.2049, 7.2049, 7.2049, 7.2046, 7.2042, 7.2038, 7.2046, 7.2042, 7.2038, 7.2035, 7.2031, 7.2027, 7.2023, 7.2019, 7.2015, 7.2013, 7.2011, 7.2007, 7.2004, 7.2, 7.1997, 7.1995, 7.1981, 7.1977, 7.1975, 7.2, 7.1997, 7.202, 7.2017, 7.2013, 7.2021, 7.2018, 7.2014, 7.201, 7.2006, 7.2014, 7.2011, 7.2009, 7.2005, 7.1994, 7.1992, 7.2002, 7.2023, 7.2009, 7.2008, 7.2005, 7.2014, 7.2011, 7.2008, 7.2016, 7.2024, 7.2032, 7.2028, 7.2024, 7.2032, 7.2029, 7.2026, 7.2035, 7.2031, 7.2027, 7.2024, 7.2021, 7.2007, 7.2014, 7.2022, 7.202, 7.2016, 7.2012, 7.202, 7.2016, 7.2024, 7.2021, 7.2018, 7.2015, 7.2024, 7.202, 7.2016, 7.2012, 7.2011, 7.2009, 7.2005, 7.2001, 7.1998, 7.1996, 7.2004, 7.2001, 7.1999, 7.1995, 7.1991, 7.1987, 7.1995, 7.2003, 7.2003, 7.2, 7.1997, 7.1995, 7.1991, 7.1989, 7.1988, 7.1984, 7.1992, 7.1989, 7.1985, 7.2008, 7.2004, 7.2012, 7.202, 7.2018, 7.2025, 7.2021, 7.2029, 7.2025, 7.2021, 7.2029, 7.2036, 7.2033, 7.2053, 7.2066, 7.2062, 7.2058, 7.2056, 7.2053, 7.2049, 7.2045, 7.2041, 7.2062, 7.2069, 7.2067, 7.2117, 7.2113, 7.211, 7.2097, 7.2093, 7.2093, 7.2102, 7.211, 7.2096, 7.2093, 7.2091, 7.2099, 7.2096, 7.2093, 7.2102, 7.2113, 7.211, 7.2106, 7.2114, 7.2112, 7.2121, 7.212, 7.2116, 7.2114, 7.211, 7.2107, 7.2105, 7.2124, 7.2121, 7.213, 7.2126, 7.2133, 7.2129, 7.2126, 7.2133, 7.2137, 7.2135, 7.2166, 7.2162, 7.2148, 7.2156, 7.2152, 7.2138, 7.2134, 7.213, 7.2185, 7.2193, 7.2189, 7.2197, 7.2216, 7.2214, 7.2212, 7.222, 7.2216, 7.2212, 7.2209, 7.2206, 7.2202, 7.2209, 7.2205, 7.2201, 7.2199, 7.2196, 7.2204, 7.2213, 7.2209, 7.2206, 7.2213, 7.221, 7.2207, 7.2204, 7.2201, 7.2197, 7.2194, 7.219, 7.2186, 7.219600000000001, 7.220600000000001, 7.2203, 7.22, 7.2208, 7.2216, 7.2224, 7.2221, 7.2217, 7.2214, 7.221, 7.2206, 7.2203, 7.2211, 7.2207, 7.2206, 7.2202, 7.2199, 7.2195, 7.2191, 7.2187, 7.2184, 7.218, 7.2179, 7.2188, 7.2184, 7.218, 7.2187, 7.2189, 7.2185, 7.2193, 7.219, 7.219, 7.2198, 7.2206, 7.2203, 7.2199, 7.2199, 7.2206, 7.2203, 7.22, 7.2197, 7.2193, 7.219, 7.2197, 7.2193, 7.2189, 7.2186, 7.2182, 7.2179, 7.2175, 7.2182, 7.2179, 7.2165, 7.2162, 7.216, 7.2156, 7.2154, 7.2151, 7.2147, 7.2155, 7.2162, 7.2159, 7.2157, 7.2155, 7.2151, 7.2159, 7.2155, 7.2152, 7.2148, 7.2144, 7.2141, 7.2137, 7.2134, 7.2142, 7.2134, 7.2132, 7.2128, 7.2125, 7.2121, 7.2117, 7.212700000000001, 7.2123, 7.2121, 7.2131, 7.2138, 7.2134, 7.2131, 7.2139, 7.2146, 7.2142, 7.2141, 7.2128, 7.2124, 7.2122, 7.2119, 7.2116, 7.2115, 7.2114, 7.2122, 7.2118, 7.2114, 7.2121, 7.2128, 7.2125, 7.2133, 7.213, 7.2128, 7.2135, 7.2143, 7.2141, 7.2141, 7.2137, 7.2144, 7.2142, 7.214, 7.2149, 7.2145, 7.2142, 7.2142, 7.2141, 7.2137, 7.2157, 7.2155, 7.2162, 7.217, 7.2167, 7.2175, 7.2173, 7.2184, 7.218, 7.2178, 7.2174, 7.2177, 7.2193, 7.2201, 7.2198, 7.2204, 7.2206, 7.2204, 7.2203, 7.221, 7.2207, 7.2211, 7.2207, 7.2204, 7.22, 7.2208, 7.2204, 7.2201, 7.2198, 7.2194, 7.219, 7.2211, 7.2208, 7.2216, 7.2224, 7.2223, 7.2233, 7.2233, 7.223, 7.2237, 7.2235, 7.2242, 7.2239, 7.2235, 7.2232, 7.2228, 7.2227, 7.2224, 7.2224, 7.2237, 7.2234, 7.2243, 7.224, 7.2236, 7.2233, 7.2229, 7.2225, 7.2233, 7.2241, 7.2249, 7.2246, 7.2243, 7.2251, 7.2249, 7.2257, 7.2249, 7.2247, 7.2243, 7.2241, 7.2238, 7.2246, 7.2304, 7.2311, 7.2308, 7.2305, 7.2301, 7.23, 7.2297, 7.2305, 7.2301, 7.2309, 7.2305, 7.2313, 7.231, 7.2307, 7.2304, 7.2312, 7.2308, 7.2305, 7.2312, 7.231, 7.2306, 7.2302, 7.2298, 7.2294, 7.229, 7.2297, 7.2295, 7.2302, 7.2299, 7.2295, 7.2293, 7.229, 7.2286, 7.2304, 7.23, 7.2287, 7.2284, 7.2292, 7.2289, 7.2296, 7.2292, 7.23, 7.2296, 7.2303, 7.2299, 7.2306, 7.2302, 7.2298, 7.2294, 7.2303, 7.2301, 7.2298, 7.2295, 7.2292, 7.2289, 7.2286, 7.2284, 7.2281, 7.2268, 7.2264, 7.2261, 7.2258, 7.2265, 7.2262, 7.2259, 7.2257, 7.2255, 7.2253, 7.225, 7.2247, 7.2246, 7.2242, 7.2229, 7.2241, 7.2261, 7.2269, 7.2268, 7.2265, 7.2262, 7.2258, 7.2254, 7.225, 7.2258, 7.2256, 7.2252, 7.2248, 7.2244, 7.224, 7.2237, 7.2266, 7.2264, 7.2262, 7.2258, 7.2256, 7.2253, 7.225, 7.2257, 7.2254, 7.2252, 7.2259, 7.2266, 7.2264, 7.2271, 7.2269, 7.2276, 7.2263, 7.2259, 7.2257, 7.2254, 7.2251, 7.2251, 7.2278, 7.2275, 7.2285, 7.2281, 7.2278, 7.2286, 7.2305, 7.2301, 7.2313, 7.231, 7.2318, 7.2326, 7.2333, 7.234, 7.2336, 7.2332, 7.2339, 7.2346, 7.2342, 7.2338, 7.2338, 7.2334, 7.2331, 7.2328, 7.2325, 7.2323, 7.2319, 7.2327, 7.2324, 7.2322, 7.2318, 7.2324, 7.2322, 7.2318, 7.2314, 7.2311, 7.2307, 7.2304, 7.2301, 7.2311000000000005, 7.2308, 7.2305, 7.2302, 7.2299, 7.2297, 7.2296, 7.2323, 7.231, 7.2307, 7.2304, 7.2302, 7.2309, 7.2307, 7.2305, 7.2312, 7.232, 7.2317, 7.2307, 7.2304, 7.2302, 7.2299, 7.2307, 7.2304, 7.23, 7.2297, 7.2295, 7.2313, 7.2309, 7.2318, 7.2315, 7.2312, 7.231, 7.2307, 7.2316, 7.2313, 7.231, 7.2307, 7.2294, 7.2291, 7.2299, 7.2295, 7.2304, 7.2301, 7.2308, 7.2305, 7.2301, 7.2297, 7.2295, 7.2292, 7.2289, 7.2287, 7.2284, 7.2282, 7.229, 7.2286, 7.2295, 7.2293, 7.2291, 7.2299, 7.2295, 7.2292, 7.2299, 7.2306, 7.2304, 7.2305, 7.2312, 7.2308, 7.2304, 7.2301, 7.2297, 7.2294, 7.2301, 7.2308, 7.2306, 7.2304, 7.23, 7.2297, 7.2295, 7.2301, 7.2297, 7.2295, 7.2292, 7.2302, 7.231, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2311, 7.2307, 7.2314, 7.2327, 7.2324, 7.2321, 7.2318, 7.234, 7.2337, 7.2334, 7.233, 7.2327, 7.2324, 7.2322, 7.2329, 7.2325, 7.2333, 7.2329, 7.2326, 7.2323, 7.232, 7.2317, 7.2324, 7.232, 7.2316, 7.2312, 7.2308, 7.2304, 7.2311, 7.2308, 7.2315, 7.2311, 7.2312, 7.231, 7.2307, 7.2303, 7.23, 7.2298, 7.2295, 7.2292, 7.2279, 7.2286, 7.2293, 7.2291, 7.2288, 7.2276, 7.2273, 7.228, 7.2276, 7.2275, 7.2271, 7.2268, 7.2265, 7.2262, 7.2271, 7.2268, 7.2276, 7.2272, 7.2279, 7.2277, 7.2274, 7.2271, 7.2269, 7.2265, 7.2262, 7.2259, 7.2246, 7.2233, 7.224, 7.2237, 7.2234, 7.2231, 7.2227, 7.2238, 7.2226, 7.2222, 7.2219, 7.2215, 7.2222, 7.2218, 7.2215, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2205, 7.2212, 7.2209, 7.2216, 7.2213, 7.221, 7.2207, 7.2197, 7.2194, 7.2201, 7.2208, 7.2204, 7.2201, 7.22, 7.2197, 7.2214, 7.2203, 7.2199, 7.2186, 7.2182, 7.22, 7.2198, 7.2216, 7.2223, 7.222, 7.2216, 7.2213, 7.221, 7.2208, 7.2225, 7.2223, 7.2221, 7.2248, 7.2255, 7.2252, 7.225, 7.2247, 7.2244, 7.2251, 7.2258, 7.2265, 7.2264, 7.2271, 7.2267, 7.2274, 7.227, 7.2315, 7.2341, 7.2337, 7.2336, 7.2336, 7.2334, 7.2332, 7.2329, 7.2325, 7.2336, 7.2334, 7.2333, 7.233, 7.2336, 7.2334, 7.2331, 7.2338, 7.2344, 7.2341, 7.2348, 7.2364, 7.2361, 7.2358, 7.2367, 7.2364, 7.2361, 7.2357, 7.2374, 7.2371, 7.2369, 7.2368, 7.2366, 7.2372, 7.2368, 7.2364, 7.237, 7.2367, 7.2374, 7.2371, 7.2377, 7.2383, 7.238, 7.2388, 7.2384, 7.2391, 7.2398, 7.2405, 7.2402, 7.2409, 7.2407, 7.2404, 7.24, 7.2397, 7.2403, 7.2421, 7.2428, 7.2416, 7.2413, 7.241, 7.2407, 7.2404, 7.2411, 7.2418, 7.2424, 7.242, 7.2427, 7.2424, 7.243, 7.2436, 7.2442, 7.244, 7.2437, 7.2433, 7.243, 7.2427, 7.2424, 7.2421, 7.2428, 7.2445, 7.2441, 7.2438, 7.2435, 7.2432, 7.2429, 7.2427, 7.2437, 7.2434, 7.2431, 7.2437, 7.2445, 7.2442, 7.2439, 7.2436, 7.2446, 7.2443, 7.2439, 7.2436, 7.2432, 7.2429, 7.2436, 7.2432, 7.2449], '192.168.122.120': [8.0388, 6.694, 6.3781, 6.3054, 7.2142, 7.0815, 6.1872, 6.1121, 5.5454, 5.5245, 5.5086, 5.6229, 5.5926, 5.589, 5.5738, 7.1955, 7.0895, 6.9976, 6.9587, 6.8847, 6.8159, 7.8499, 7.9814, 7.8916, 7.8402, 7.7616, 7.7233, 7.8511, 7.7724, 7.871, 7.9638, 7.8814, 7.8164, 7.7423, 7.7387, 7.6841, 7.6183, 7.6968, 7.6626, 7.6101, 7.6734, 7.6205, 7.5804, 7.5255, 7.5992, 7.5609, 7.5171, 7.4904, 7.4482, 7.5096, 7.4846, 7.4538, 7.592, 7.5511, 7.5133, 7.4742, 7.4537, 7.4187, 7.3934, 7.3748, 7.3416, 7.3968, 7.3777, 7.3468, 7.415, 7.481, 7.5809, 7.5547, 7.5253, 7.5153, 7.4915, 7.4607, 7.4334, 7.4115, 7.3827, 7.3642, 7.3595, 7.2734, 7.2512, 7.2322, 7.2128, 7.2582, 7.2368, 7.237, 7.2136, 7.1917, 7.1712, 7.1494, 7.194, 7.2343, 7.2803, 7.2602, 7.3015, 7.3433, 7.328, 7.3109, 7.2936, 7.3362, 7.3227, 7.3028, 7.2841, 7.2642, 7.1987, 7.1826, 7.167, 7.1587, 7.1495, 7.0877, 7.0723, 7.0595, 7.098, 7.085, 7.2189, 7.2548, 7.4265, 7.4109, 7.4024, 7.5253, 7.5549, 7.5418, 7.5708, 7.5544, 7.5395, 7.5904, 7.5471, 7.5763, 7.5612, 7.5452, 7.575, 7.5599, 7.5423, 7.5285, 7.5161, 7.5063, 7.5331, 7.5169, 7.549, 7.5326, 7.5267, 7.5123, 7.498, 7.5253, 7.5116, 7.4964, 7.5413, 7.5651, 7.5544, 7.5414, 7.5402, 7.5278, 7.5143, 7.6544, 7.6397, 7.6257, 7.6792, 7.7398, 7.7282, 7.7169, 7.703, 7.6903, 7.6765, 7.6625, 7.6516, 7.672, 7.6891, 7.6766, 7.6652, 7.6842, 7.703, 7.6903, 7.6799, 7.6673, 7.6571, 7.6465, 7.6351, 7.6235, 7.6117, 7.6303, 7.6216, 7.64, 7.6304, 7.6219, 7.6102, 7.6011, 7.5883, 7.578, 7.5704, 7.5884, 7.5835, 7.6006, 7.59, 7.578, 7.5701, 7.5588, 7.5464, 7.5349, 7.5504, 7.541, 7.5372, 7.5538, 7.5426, 7.5344, 7.5259, 7.5158, 7.5059, 7.5207, 7.5117, 7.5042, 7.5009, 7.4955, 7.485, 7.4772, 7.493, 7.4832, 7.4768, 7.4833, 7.4738, 7.4874, 7.5028, 7.4946, 7.4846, 7.4762, 7.4926, 7.5214, 7.5136, 7.5056, 7.6185, 7.6124, 7.6032, 7.5928, 7.606, 7.5988, 7.5895, 7.6102, 7.624, 7.6163, 7.609, 7.606, 7.5989, 7.6117, 7.6022, 7.5943, 7.5886, 7.5605, 7.5526, 7.5679, 7.56, 7.5982, 7.5895, 7.602, 7.5945, 7.5863, 7.5776, 7.5904, 7.603, 7.5948, 7.5878, 7.6006, 7.6125, 7.6463, 7.6421, 7.653, 7.7142, 7.7074, 7.6983, 7.693, 7.6884, 7.6993, 7.6984, 7.6897, 7.683, 7.6791, 7.6733, 7.7463, 7.7395, 7.7308, 7.7222, 7.7141, 7.7119, 7.7048, 7.7168, 7.7102, 7.7014, 7.6932, 7.6875, 7.6636, 7.6557, 7.6665, 7.662, 7.6541, 7.6705, 7.6638, 7.6409, 7.6332, 7.6256, 7.6174, 7.6356, 7.6274, 7.6377, 7.652, 7.6626, 7.6546, 7.6472, 7.6408, 7.6354, 7.6291, 7.6401, 7.6325, 7.627, 7.6376, 7.6478, 7.657, 7.707, 7.7039, 7.6977, 7.691, 7.6838, 7.6817, 7.6745, 7.6676, 7.6608, 7.6549, 7.6478, 7.6409, 7.6361, 7.6302, 7.6263, 7.6198, 7.615, 7.6113, 7.6052, 7.6031, 7.6021, 7.6145, 7.609, 7.6167, 7.6101, 7.6045, 7.5995, 7.5941, 7.5876, 7.5968, 7.5922, 7.5867, 7.5832, 7.577, 7.5709, 7.5646, 7.5735, 7.5695, 7.5632, 7.5572, 7.5675, 7.561, 7.5603, 7.5554, 7.549, 7.5428, 7.5381, 7.5336, 7.5145, 7.5096, 7.5204, 7.5146, 7.5092, 7.506, 7.5136, 7.5233, 7.5173, 7.5113, 7.5089, 7.5038, 7.4997, 7.4947, 7.4896, 7.5059, 7.5144, 7.5084, 7.5038, 7.5121, 7.5064, 7.5023, 7.5225, 7.5176, 7.526, 7.5236, 7.5324, 7.5311, 7.5259, 7.5224, 7.531, 7.5263, 7.5356, 7.5314, 7.5782, 7.5867, 7.5824, 7.5906, 7.5741, 7.5696, 7.5638, 7.5581, 7.5527, 7.5535, 7.5487, 7.5318, 7.5273, 7.5233, 7.5181, 7.515, 7.5484, 7.583, 7.5786, 7.574, 7.5685, 7.5646, 7.5605, 7.5575, 7.554, 7.549, 7.5656, 7.5733, 7.5862, 7.6094, 7.6172, 7.6121, 7.6065, 7.601, 7.5958, 7.5909, 7.5988, 7.5944, 7.589, 7.585, 7.5801, 7.5751, 7.5714, 7.5684, 7.5686, 7.5646, 7.5644, 7.561, 7.5597, 7.556, 7.5749, 7.5713, 7.5666, 7.5614, 7.5702, 7.5666, 7.5629, 7.5599, 7.5672, 7.5633, 7.5585, 7.5543, 7.5388, 7.5339, 7.5292, 7.5355, 7.5306, 7.527, 7.5261, 7.5335, 7.5309, 7.5271, 7.5225, 7.5078, 7.5045, 7.5118, 7.5267, 7.5235, 7.5309, 7.5279, 7.5231, 7.5185, 7.5141, 7.5206, 7.5161, 7.5231, 7.5301, 7.5262, 7.5233, 7.52, 7.5155, 7.5118, 7.5078, 7.5155, 7.5116, 7.5194, 7.5156, 7.5115, 7.5308, 7.5368, 7.5462, 7.5424, 7.5403, 7.5369, 7.534, 7.5405, 7.5466, 7.5433, 7.5398, 7.5355, 7.5313, 7.5321, 7.5301, 7.5259, 7.5217, 7.5187, 7.5158, 7.5126, 7.5102, 7.5062, 7.5035, 7.4998, 7.497, 7.5034, 7.5005, 7.4967, 7.4946, 7.4909, 7.4875, 7.4845, 7.4814, 7.4781, 7.4742, 7.4717, 7.4681, 7.4642, 7.4612, 7.4574, 7.4542, 7.4509, 7.4477, 7.4439, 7.4403, 7.438, 7.4442, 7.4404, 7.4364, 7.4342, 7.4314, 7.4276, 7.424, 7.4203, 7.4165, 7.4135, 7.4108, 7.4179, 7.4144, 7.4605, 7.4581, 7.455, 7.4513, 7.4491, 7.4466, 7.4712, 7.4689, 7.466, 7.4625, 7.4591, 7.4554, 7.4519, 7.4496, 7.4457, 7.4435, 7.4398, 7.4377, 7.4342, 7.4406, 7.4382, 7.4358, 7.4327, 7.4388, 7.4462, 7.452, 7.4486, 7.4561, 7.4621, 7.468, 7.4644, 7.4613, 7.4579, 7.4633, 7.4606, 7.4587, 7.4576, 7.4572, 7.4535, 7.4584, 7.4564, 7.4534, 7.4524, 7.4494, 7.4461, 7.4521, 7.4488, 7.4525, 7.4489, 7.4548, 7.4605, 7.4799, 7.4763, 7.4729, 7.4693, 7.476, 7.4731, 7.4701, 7.4666, 7.464, 7.4608, 7.4664, 7.4632, 7.46, 7.4574, 7.4541, 7.4514, 7.448, 7.4454, 7.451, 7.44, 7.4368, 7.4423, 7.4425, 7.4481, 7.4698, 7.4759, 7.473, 7.4778, 7.4743, 7.4709, 7.4673, 7.4721, 7.4686, 7.4658, 7.4709, 7.4698, 7.4676, 7.4648, 7.4623, 7.4516, 7.4577, 7.4628, 7.4681, 7.4737, 7.471, 7.4688, 7.4661, 7.4632, 7.4605, 7.4656, 7.47, 7.4667, 7.4646, 7.4621, 7.4593, 7.4566, 7.4461, 7.4434, 7.433, 7.4308, 7.4363, 7.4351, 7.4325, 7.4315, 7.4374, 7.4427, 7.4479, 7.4454, 7.4461, 7.4919, 7.4979, 7.4964, 7.4951, 7.4927, 7.4894, 7.4944, 7.4922, 7.4903, 7.4958, 7.4932, 7.4902, 7.487, 7.4841, 7.4818, 7.4788, 7.4838, 7.4884, 7.4867, 7.4841, 7.4829, 7.4876, 7.4845, 7.4814, 7.48, 7.4781, 7.4827, 7.4798, 7.4846, 7.489, 7.4937, 7.4904, 7.4878, 7.4849, 7.4885, 7.4857, 7.4826, 7.4809, 7.4861, 7.4831, 7.48, 7.4776, 7.476, 7.4741, 7.4722, 7.4712, 7.4686, 7.4658, 7.4631, 7.4603, 7.4652, 7.4622, 7.4596, 7.4569, 7.4553, 7.4528, 7.4499, 7.4547, 7.4525, 7.45, 7.4473, 7.4449, 7.4421, 7.4394, 7.4367, 7.4341, 7.4326, 7.4299, 7.4295, 7.4341, 7.4315, 7.4295, 7.4269, 7.4242, 7.422, 7.4201, 7.4172, 7.4151, 7.4209, 7.4182, 7.4159, 7.421, 7.4186, 7.4229, 7.4203, 7.4176, 7.4153, 7.4128, 7.4107, 7.4086, 7.4129, 7.418, 7.4228, 7.421, 7.4198, 7.417, 7.418, 7.4226, 7.4203, 7.4249, 7.4235, 7.4219, 7.4267, 7.433, 7.4339, 7.4364, 7.4406, 7.4398, 7.4442, 7.4425, 7.4399, 7.4373, 7.4416, 7.4394, 7.4368, 7.4342, 7.4383, 7.4355, 7.4332, 7.4307, 7.4374, 7.435, 7.4323, 7.4308, 7.4284, 7.4256, 7.4233, 7.4209, 7.4196, 7.4241, 7.4608, 7.453, 7.4504, 7.4479, 7.4517, 7.449, 7.4477, 7.4516, 7.4554, 7.4592, 7.4578, 7.4778, 7.4758, 7.4748, 7.4722, 7.4697, 7.4672, 7.4651, 7.4626, 7.4666, 7.4644, 7.4619, 7.466, 7.4641, 7.4614, 7.4721, 7.4694, 7.4612, 7.4528, 7.4502, 7.4477, 7.4462, 7.4704, 7.4742, 7.472, 7.4699, 7.4678, 7.4659, 7.4638, 7.4613, 7.4588, 7.4638, 7.4616, 7.459, 7.4571, 7.4679, 7.4658, 7.4699, 7.4675, 7.4651, 7.4626, 7.4612, 7.4597, 7.4594, 7.4513, 7.4495, 7.447, 7.4446, 7.4483, 7.4402, 7.4438, 7.4418, 7.4405, 7.4382, 7.4421, 7.4458, 7.4497, 7.4472, 7.451, 7.4548, 7.4525, 7.4604, 7.464, 7.4616, 7.4597, 7.4573, 7.4613, 7.46, 7.4579, 7.4557, 7.4605, 7.4583, 7.4593, 7.4569, 7.4552, 7.4591, 7.458, 7.4618, 7.4661, 7.4707, 7.4684, 7.4667, 7.4647, 7.463, 7.4667, 7.4594, 7.4577, 7.4562, 7.454, 7.4517, 7.4494, 7.4483, 7.4474, 7.4532, 7.4511, 7.4488, 7.447, 7.445, 7.4426, 7.4526, 7.4508, 7.4544, 7.4528, 7.4687, 7.4665, 7.4701, 7.468, 7.4662, 7.4645, 7.4623, 7.4601, 7.4596, 7.4576, 7.4619, 7.4596, 7.4573, 7.4551, 7.4585, 7.4568, 7.4609, 7.4586, 7.457, 7.455, 7.4615, 7.4557, 7.4593, 7.457, 7.4718, 7.4696, 7.4682, 7.4667, 7.4649, 7.4631, 7.4565, 7.4599, 7.4584, 7.4561, 7.4594, 7.4523, 7.4519, 7.4555, 7.4591, 7.4648, 7.4627, 7.4605, 7.4587, 7.4566, 7.4545, 7.4592, 7.4629, 7.4664, 7.4765, 7.4751, 7.4679, 7.4663, 7.4641, 7.4672, 7.4654, 7.4643, 7.4675, 7.4707, 7.4685, 7.472, 7.4702, 7.4681, 7.4661, 7.4639, 7.4616, 7.4595, 7.4626, 7.4613, 7.4697, 7.4685, 7.4715, 7.47, 7.4737, 7.483, 7.4817, 7.4799, 7.4777, 7.4767, 7.476, 7.4739, 7.4915, 7.4899, 7.4879, 7.4864, 7.4847, 7.486, 7.4845, 7.4836, 7.4819, 7.4838, 7.482, 7.48, 7.4785, 7.4825, 7.4768, 7.4753, 7.4741, 7.4774, 7.4754, 7.4811, 7.4791, 7.4772, 7.4751, 7.4736, 7.4717, 7.4697, 7.4676, 7.4667, 7.4652, 7.4631, 7.4662, 7.4651, 7.4636, 7.457, 7.4604, 7.4584, 7.4565, 7.4545, 7.4526, 7.4513, 7.4545, 7.4527, 7.4557, 7.4535, 7.4514, 7.4507, 7.4487, 7.4522, 7.4504, 7.4484, 7.447, 7.4501, 7.4532, 7.4516, 7.4502, 7.4487, 7.4521, 7.451, 7.4495, 7.4491, 7.4525, 7.4558, 7.4587, 7.4621, 7.4602, 7.4586, 7.4565, 7.4551, 7.4584, 7.4572, 7.4557, 7.4543, 7.4525, 7.4556, 7.4539, 7.452, 7.4507, 7.4535, 7.4563, 7.4546, 7.4528, 7.4511, 7.4502, 7.449, 7.4521, 7.4507, 7.4488, 7.4474, 7.4462, 7.4603, 7.4583, 7.4619, 7.4606, 7.4646, 7.4632, 7.462, 7.4609, 7.4599, 7.4538, 7.4521, 7.4517, 7.4514, 7.4501, 7.4487, 7.4473, 7.4459, 7.4488, 7.4476, 7.4457, 7.4443, 7.4431, 7.4411, 7.4391, 7.4375, 7.4412, 7.4395, 7.4395, 7.438, 7.4405, 7.4417, 7.4451, 7.4435, 7.4416, 7.4446, 7.4526, 7.4508, 7.4543, 7.4577, 7.4559, 7.4543, 7.4529, 7.451, 7.4492, 7.4474, 7.4459, 7.4443, 7.4426, 7.4461, 7.4444, 7.4475, 7.4457, 7.4442, 7.4471, 7.4458, 7.4399, 7.4384, 7.4373, 7.436, 7.436, 7.4559, 7.4548, 7.4529, 7.4514, 7.4459, 7.4446, 7.4473, 7.4458, 7.4443, 7.4436, 7.442, 7.4402, 7.4383, 7.4364, 7.4394, 7.4376, 7.4358, 7.4341, 7.4338, 7.432, 7.4308, 7.429, 7.4272, 7.4214, 7.4195, 7.4224, 7.4219, 7.4201, 7.4183, 7.4166, 7.4156, 7.4141, 7.4141, 7.4133, 7.416, 7.4102, 7.4131, 7.4114, 7.4103, 7.4093, 7.4081, 7.4068, 7.4097, 7.408, 7.4023, 7.4013, 7.4001, 7.4027, 7.4013, 7.3995, 7.3985, 7.3969, 7.3996, 7.4024, 7.4017, 7.3999, 7.3982, 7.397, 7.396, 7.3943, 7.3926, 7.3912, 7.3944, 7.3971, 7.3956, 7.3941, 7.3971, 7.3956, 7.3947, 7.3932, 7.3917, 7.3949, 7.3943, 7.3931, 7.3914, 7.3901, 7.3929, 7.3913, 7.3898, 7.3881, 7.3864, 7.3853, 7.3836, 7.3782, 7.377, 7.3759, 7.3787, 7.3816, 7.3805, 7.3801, 7.3786, 7.3771, 7.3801, 7.3787, 7.3818, 7.382, 7.3852, 7.3838, 7.3827, 7.3809, 7.3793, 7.3781, 7.3769, 7.38, 7.3748, 7.3737, 7.3727, 7.3713, 7.3738, 7.3728, 7.3716, 7.3699, 7.3685, 7.3712, 7.3696, 7.3688, 7.3676, 7.3661, 7.3688, 7.3676, 7.3702, 7.3647, 7.3633, 7.3659, 7.3611, 7.36, 7.3585, 7.3571, 7.3555, 7.3544, 7.3597, 7.3599, 7.3585, 7.3572, 7.3557, 7.3546, 7.353, 7.3518, 7.3507, 7.3491, 7.3484, 7.3481, 7.3468, 7.3493, 7.3484, 7.3474, 7.346, 7.3486, 7.347, 7.3456, 7.3482, 7.3472, 7.3499, 7.3569, 7.3558, 7.3545, 7.353, 7.3515, 7.353, 7.3557, 7.3544, 7.3492, 7.3478, 7.3462, 7.3489, 7.3474, 7.3459, 7.3454, 7.3439, 7.3438, 7.3423, 7.3417, 7.3405, 7.341, 7.3407, 7.342, 7.3407, 7.3396, 7.3388, 7.3471, 7.346, 7.3446, 7.3408, 7.3369, 7.3355, 7.3341, 7.3351, 7.3337, 7.3323, 7.3307, 7.3334, 7.3326, 7.3313, 7.3298, 7.3293, 7.3286, 7.3394, 7.3344, 7.333, 7.332, 7.3314, 7.3299, 7.3292, 7.3278, 7.3268, 7.3258, 7.3243, 7.3287, 7.3272, 7.3258, 7.3289, 7.332, 7.3347, 7.3334, 7.3324, 7.3276, 7.3373, 7.3358, 7.3343, 7.3328, 7.3318, 7.3306, 7.3296, 7.3384, 7.3376, 7.3367, 7.3319, 7.3317, 7.3308, 7.3294, 7.3287, 7.3278, 7.3309, 7.3297, 7.3282, 7.3268, 7.3258, 7.3244, 7.3315, 7.3366, 7.3393, 7.3382, 7.3389, 7.3455, 7.3445, 7.3433, 7.3426, 7.3412, 7.3403, 7.3401, 7.3387, 7.3384, 7.3372, 7.336, 7.3353, 7.3346, 7.3333, 7.3319, 7.3313, 7.33, 7.329, 7.3316, 7.3306, 7.3292, 7.332, 7.3348, 7.3335, 7.3324, 7.331, 7.3311, 7.3297, 7.3284, 7.3274, 7.3261, 7.3283, 7.3271, 7.326, 7.3287, 7.3429, 7.3456, 7.3444, 7.3474, 7.3464, 7.3469, 7.3459, 7.3493, 7.3482, 7.3469, 7.3456, 7.3448, 7.3443, 7.3432, 7.3419, 7.3448, 7.3435, 7.342, 7.3444, 7.3435, 7.3466, 7.3456, 7.3444, 7.3434, 7.3455, 7.3448, 7.3441, 7.3431, 7.3453, 7.3478, 7.3466, 7.3459, 7.3448, 7.3441, 7.3426, 7.3427, 7.345, 7.3438, 7.3424, 7.341, 7.3432, 7.342, 7.3409, 7.3396, 7.3417, 7.3406, 7.3396, 7.3387, 7.3412, 7.3439, 7.3427, 7.3418, 7.3405, 7.3469, 7.3462, 7.345, 7.3438, 7.3461, 7.3448, 7.3436, 7.3425, 7.3411, 7.3436, 7.3428, 7.3452, 7.3476, 7.3488, 7.3482, 7.347, 7.3496, 7.3483, 7.347, 7.3457, 7.3458, 7.3448, 7.3435, 7.3465, 7.3451, 7.3438, 7.3439, 7.3464, 7.3456, 7.3447, 7.3441, 7.3428, 7.3452, 7.3451, 7.3439, 7.3431, 7.3418, 7.3405, 7.3393, 7.3417, 7.3444, 7.3437, 7.3426, 7.3416, 7.3406, 7.3396, 7.3394, 7.3416, 7.3404, 7.3397, 7.3389, 7.3377, 7.3371, 7.3366, 7.3357, 7.3379, 7.3437, 7.3463, 7.3453, 7.348, 7.3468, 7.346, 7.3483, 7.3471, 7.3494, 7.3484, 7.3475, 7.35, 7.3487, 7.3473, 7.3465, 7.3452, 7.3438, 7.3428, 7.3418, 7.3405, 7.3427, 7.3449, 7.3474, 7.3463, 7.3455, 7.3444, 7.3435, 7.3423, 7.3414, 7.3437, 7.3424, 7.3421, 7.3408, 7.3399, 7.3422, 7.3411, 7.3404, 7.3424, 7.3412, 7.3401, 7.3394, 7.3403, 7.3395, 7.3418, 7.3439, 7.3427, 7.3427, 7.3443, 7.343, 7.3452, 7.3473, 7.3477, 7.3464, 7.3489, 7.3512, 7.3536, 7.3526, 7.3618, 7.3605, 7.3591, 7.3614, 7.3602, 7.3593, 7.358, 7.3568, 7.3589, 7.358, 7.3574, 7.3563, 7.3587, 7.3581, 7.3568, 7.3555, 7.3546, 7.3568, 7.3563, 7.3587, 7.3607, 7.3609, 7.3629, 7.3588, 7.3581, 7.3569, 7.3558, 7.3517, 7.3544, 7.3566, 7.3555, 7.3545, 7.3535, 7.3523, 7.3539, 7.3527, 7.3515, 7.3503, 7.3491, 7.3481, 7.3469, 7.3456, 7.3445, 7.344, 7.3428, 7.3417, 7.3406, 7.3427, 7.3414, 7.3411, 7.3399, 7.3394, 7.3382, 7.3372, 7.3363, 7.3353, 7.3341, 7.3336, 7.336, 7.3349, 7.3342, 7.3331, 7.332, 7.3323, 7.3314, 7.3336, 7.3325, 7.3346, 7.3335, 7.3327, 7.3316, 7.3276, 7.3265, 7.3253, 7.3241, 7.3234, 7.3222, 7.3214, 7.3208, 7.3203, 7.3191, 7.318, 7.3172, 7.3185, 7.3177, 7.317, 7.3189, 7.318, 7.3172, 7.3162, 7.3152, 7.3143, 7.3131, 7.3119, 7.3107, 7.3095, 7.3086, 7.3074, 7.3062, 7.3087, 7.3108, 7.3108, 7.3099, 7.3087, 7.3077, 7.3073, 7.3065, 7.3054, 7.3052, 7.3053, 7.3042, 7.303, 7.3019, 7.3008, 7.304, 7.3038, 7.3091, 7.3082, 7.307, 7.3062, 7.3078, 7.3066, 7.3057, 7.312, 7.3195, 7.3183, 7.3202, 7.3192, 7.3185, 7.3174, 7.3165, 7.3217, 7.3206, 7.3195, 7.3254, 7.3243, 7.3263, 7.3285, 7.3277, 7.3265, 7.3257, 7.3279, 7.3269, 7.3258, 7.3246, 7.3351, 7.334, 7.3331, 7.3325, 7.3346, 7.3337, 7.3328, 7.3372, 7.3361, 7.3381, 7.337, 7.3433, 7.3422, 7.3414, 7.3402, 7.3432, 7.3452, 7.344, 7.3464, 7.3455, 7.3481, 7.3475, 7.3464, 7.3487, 7.3476, 7.3468, 7.3465, 7.3456, 7.3447, 7.3439, 7.3429, 7.3454, 7.3444, 7.3434, 7.3423, 7.3387, 7.3376, 7.3368, 7.336, 7.3349, 7.3337, 7.3333, 7.3327, 7.3316, 7.3434, 7.3422, 7.3414, 7.341, 7.3399, 7.3392, 7.338, 7.337, 7.3358, 7.3349, 7.3338, 7.334, 7.3334, 7.3384, 7.3376, 7.3365, 7.3354, 7.3344, 7.3334, 7.3329, 7.332, 7.3331, 7.3351, 7.334, 7.333, 7.3326, 7.3317, 7.3308, 7.3299, 7.3288, 7.3279, 7.3268, 7.326, 7.3256, 7.3307, 7.3302, 7.3292, 7.3317, 7.3307, 7.33, 7.3295, 7.3289, 7.3278, 7.347, 7.349, 7.3485, 7.3475, 7.3463, 7.3482, 7.3473, 7.3462, 7.3453, 7.3444, 7.3476, 7.347, 7.3459, 7.3448, 7.3439, 7.3428, 7.3416, 7.3434, 7.3427, 7.3415, 7.3406, 7.3395, 7.3412, 7.3414, 7.3441, 7.3432, 7.3422, 7.3411, 7.3401, 7.3394, 7.3386, 7.3375, 7.3394, 7.3411, 7.3404, 7.3378, 7.3376, 7.3369, 7.3522, 7.3512, 7.3509, 7.3502, 7.3521, 7.354, 7.3529, 7.352, 7.3539, 7.3557, 7.3549, 7.3515, 7.3709, 7.3734, 7.3727, 7.3717, 7.3737, 7.3755, 7.3748, 7.3745, 7.3763, 7.3786, 7.378, 7.3799, 7.3788, 7.3782, 7.3775, 7.3793, 7.3782, 7.3776, 7.377, 7.3801, 7.3794, 7.3785, 7.3777, 7.3769, 7.3758, 7.3751, 7.3742, 7.3731, 7.3724, 7.3716, 7.3705, 7.3746, 7.3767, 7.3757, 7.3777, 7.3797, 7.379, 7.3837, 7.3854, 7.3845, 7.3839, 7.3829, 7.3818, 7.3808, 7.3798, 7.3817, 7.3807, 7.3797, 7.3786, 7.3815, 7.3833, 7.3852, 7.3842, 7.3832, 7.3823, 7.3845, 7.3834, 7.38, 7.3793, 7.3827, 7.3849, 7.3867, 7.3863, 7.3881, 7.3873, 7.3865, 7.3865, 7.3857, 7.3847, 7.3837, 7.3827, 7.3818, 7.3824, 7.3791, 7.3811, 7.3829, 7.3821, 7.3811, 7.3803, 7.3792, 7.3782, 7.3772, 7.3761, 7.3751, 7.3746, 7.3738, 7.3754, 7.3751, 7.3741, 7.373, 7.3722, 7.3767, 7.377, 7.3765, 7.3784, 7.3787, 7.383, 7.3848, 7.384, 7.383, 7.3846, 7.3837, 7.3828, 7.3829, 7.3819, 7.3837, 7.3853, 7.3855, 7.3873, 7.3942, 7.3932, 7.3921, 7.391, 7.3902, 7.3893, 7.3885, 7.3959, 7.3924, 7.3942, 7.3932, 7.3948, 7.3964, 7.3984, 7.4002, 7.3992, 7.3958, 7.3976, 7.3994, 7.3987, 7.4004, 7.4048, 7.4071, 7.4087, 7.4104, 7.4093, 7.4083, 7.4104, 7.4121, 7.4112, 7.4127, 7.4142, 7.4132, 7.4148, 7.419, 7.4182, 7.4198, 7.419, 7.4182, 7.4198, 7.4216, 7.4208, 7.4198, 7.4188, 7.418, 7.417, 7.4162, 7.4152, 7.4145, 7.4166, 7.4156, 7.4146, 7.4162, 7.4206, 7.4209, 7.4205, 7.4194, 7.4203, 7.4237, 7.4241, 7.4235, 7.4225, 7.4242, 7.4232, 7.4223, 7.4216, 7.4206, 7.4201, 7.4191, 7.4184, 7.4177, 7.4172, 7.4167, 7.4186, 7.418, 7.4171, 7.4164, 7.416, 7.4152, 7.417, 7.4185, 7.4175, 7.4192, 7.4207, 7.42, 7.4216, 7.4206, 7.4196, 7.4186, 7.4203, 7.4195, 7.419, 7.4187, 7.4216, 7.4206, 7.4197, 7.4189, 7.4184, 7.4177, 7.4167, 7.4158, 7.4148, 7.4138, 7.4161, 7.4155, 7.4172, 7.4164, 7.4156, 7.4173, 7.419, 7.4207, 7.4223, 7.4214, 7.4203, 7.421, 7.4202, 7.4194, 7.4186, 7.4202, 7.4192, 7.4182, 7.4173, 7.4192, 7.4194, 7.4186, 7.4178, 7.4196, 7.4188, 7.4181, 7.4214, 7.4245, 7.4261, 7.4277, 7.4246, 7.4214, 7.421, 7.4225, 7.424, 7.423, 7.4221, 7.4212, 7.4202, 7.4222, 7.424, 7.423, 7.4246, 7.424, 7.4256, 7.4248, 7.4241, 7.4233, 7.4223, 7.4216, 7.4209, 7.4201, 7.4234, 7.4227, 7.4281, 7.4308, 7.4301, 7.4302, 7.4276, 7.4268, 7.4288, 7.4357, 7.4349, 7.434, 7.4356, 7.4371, 7.4409, 7.4401, 7.4416, 7.4409, 7.4434, 7.4429, 7.442, 7.4458, 7.4451, 7.4492, 7.4483, 7.4452, 7.4444, 7.4435, 7.445, 7.4466, 7.4482, 7.4475, 7.4492, 7.4483, 7.4473, 7.4466, 7.4459, 7.4473, 7.4488, 7.4479, 7.4469, 7.4485, 7.4476, 7.4466, 7.446, 7.4451, 7.4442, 7.4432, 7.4424, 7.4414, 7.4408, 7.4399, 7.4392, 7.4382, 7.4372, 7.4388, 7.4404, 7.4421, 7.4411, 7.4429, 7.4421, 7.4414, 7.4432, 7.4425, 7.4422, 7.4416, 7.4406, 7.4397, 7.4388, 7.4379, 7.437, 7.4386, 7.4404, 7.442, 7.441, 7.4404, 7.4394, 7.4385, 7.4376, 7.4367, 7.4382, 7.4397, 7.439, 7.436, 7.4354, 7.4354, 7.4363, 7.4378, 7.4372, 7.4365, 7.4383, 7.4374, 7.4373, 7.4366, 7.438, 7.4372, 7.4364, 7.4357, 7.4391, 7.4382, 7.4378, 7.4385, 7.4401, 7.4392, 7.4406, 7.4401, 7.4416, 7.4407, 7.4402, 7.4372, 7.4364, 7.4354, 7.4345, 7.436, 7.4352, 7.4367, 7.4357, 7.4351, 7.4366, 7.4356, 7.437, 7.434, 7.4354, 7.4348, 7.4342, 7.4359, 7.4351, 7.4343, 7.434, 7.4337, 7.433, 7.4324, 7.4337, 7.4331, 7.4326, 7.4318, 7.431, 7.4325, 7.4316, 7.4306, 7.4299, 7.4292, 7.4286, 7.4278, 7.4269, 7.4302, 7.4293, 7.4286, 7.4301, 7.4315, 7.4307, 7.4298, 7.4314, 7.433, 7.4302, 7.4317, 7.4308, 7.4302, 7.4317, 7.4309, 7.4304, 7.4296, 7.4287, 7.4279, 7.4271, 7.4262, 7.4254, 7.4247, 7.426, 7.4252, 7.4244, 7.4238, 7.4233, 7.4224, 7.4242, 7.4257, 7.4249, 7.4241, 7.4256, 7.4248, 7.4241, 7.4232, 7.4225, 7.424, 7.4232, 7.4249, 7.4265, 7.4257, 7.4249, 7.4263, 7.4256, 7.4248, 7.424, 7.4234, 7.4228, 7.4222, 7.4216, 7.4208, 7.4202, 7.4172, 7.4169, 7.416, 7.4152, 7.4144, 7.4137, 7.4161, 7.4153, 7.4145, 7.4139, 7.4156, 7.4163, 7.4154, 7.4145, 7.4162, 7.4155, 7.4146, 7.4161, 7.4175, 7.4168, 7.4183, 7.4195, 7.421, 7.4202, 7.4194, 7.4211, 7.4225, 7.4218, 7.4234, 7.4235, 7.4228, 7.4242, 7.4256, 7.427, 7.4261, 7.4255, 7.4273, 7.4288, 7.4302, 7.4293, 7.4287, 7.4323, 7.4315, 7.4307, 7.4342, 7.4334, 7.4348, 7.434, 7.4331, 7.4323, 7.4315, 7.431, 7.4303, 7.4296, 7.4287, 7.4302, 7.4317, 7.4309, 7.43, 7.4272, 7.4264, 7.4277, 7.4269, 7.4282, 7.4274, 7.4268, 7.4262, 7.4276, 7.429, 7.4281, 7.4272, 7.4287, 7.4282, 7.4295, 7.4307, 7.4347, 7.4349, 7.4363, 7.4357, 7.4349, 7.434, 7.4334, 7.4326, 7.4321, 7.4314, 7.4307, 7.4321, 7.4314, 7.4309, 7.4324, 7.4317, 7.4309, 7.4329, 7.4321, 7.4312, 7.4306, 7.4427, 7.4419, 7.441, 7.4402, 7.4416, 7.441, 7.4402, 7.4396, 7.4393, 7.4404, 7.4398, 7.4389, 7.4381, 7.4373, 7.4366, 7.4358, 7.438, 7.4374, 7.4367, 7.4358, 7.4372, 7.4384, 7.4379, 7.4372, 7.4367, 7.436, 7.4355, 7.4397, 7.439, 7.4382, 7.4374, 7.4346, 7.4337, 7.4354, 7.4372, 7.4364, 7.4356, 7.4352, 7.4347, 7.4343, 7.4358, 7.4372, 7.4365, 7.4358, 7.4349, 7.4342, 7.4336, 7.4328, 7.4323, 7.4314, 7.4309, 7.4302, 7.4295, 7.4286, 7.43, 7.43, 7.4272, 7.4264, 7.4256, 7.425, 7.427, 7.4285, 7.4276, 7.4268, 7.4314, 7.4344, 7.4336, 7.4328, 7.432, 7.4357, 7.4349, 7.4341, 7.4352, 7.4396, 7.441, 7.4425, 7.4418, 7.441, 7.4404, 7.4395, 7.4419, 7.4414, 7.4427, 7.4431, 7.4446, 7.4463, 7.4477, 7.4469, 7.446, 7.4482, 7.4513, 7.4485, 7.4478, 7.4495, 7.4488, 7.4481, 7.4473, 7.4467, 7.4459, 7.4451, 7.447, 7.4462, 7.4455, 7.4448, 7.4443, 7.4436, 7.4428, 7.442, 7.4432, 7.4426, 7.4419, 7.4417, 7.4416, 7.441, 7.4402, 7.4395, 7.4407, 7.4444, 7.444, 7.4432, 7.4424, 7.442, 7.4411, 7.4427, 7.4423, 7.4438, 7.4432, 7.4425, 7.4419, 7.4411, 7.4424, 7.4418, 7.4484, 7.4498, 7.4511, 7.4503, 7.45, 7.4493, 7.4485, 7.4499, 7.4491, 7.4504, 7.4495, 7.4489, 7.4481, 7.4494, 7.4488, 7.4481, 7.4473, 7.4466, 7.4458, 7.445, 7.4424, 7.4438, 7.4433, 7.4427, 7.442, 7.4433, 7.4427, 7.4423, 7.4416, 7.4409, 7.4403, 7.4395, 7.4389, 7.4381, 7.4373, 7.4388, 7.4381, 7.4376, 7.437, 7.4362, 7.4355, 7.4347, 7.4339, 7.4332, 7.4324, 7.4302, 7.4294, 7.4307, 7.4321, 7.4314, 7.4311, 7.4327, 7.432, 7.4334, 7.4327, 7.4325, 7.4339, 7.4333, 7.4326, 7.4319, 7.4333, 7.4346, 7.4339, 7.4333, 7.4327, 7.4326, 7.4319, 7.4312, 7.4286, 7.428, 7.4273, 7.4269, 7.4261, 7.4274, 7.4266, 7.4258, 7.425, 7.4243, 7.4235, 7.4228, 7.4221, 7.4215, 7.4207, 7.4199, 7.4193, 7.4205, 7.4216, 7.4208, 7.4201, 7.4214, 7.4208, 7.4222, 7.4216, 7.4211, 7.4204, 7.4196, 7.4189, 7.4186, 7.4181, 7.4176, 7.4168, 7.4165, 7.4158, 7.415, 7.4162, 7.4154, 7.4148, 7.414, 7.4132, 7.4144, 7.4157, 7.4169, 7.4163, 7.4176, 7.4188, 7.4183, 7.4177, 7.4169, 7.4163, 7.4156, 7.4149, 7.416, 7.4153, 7.4166, 7.416, 7.4136, 7.4129, 7.4142, 7.4155, 7.4154, 7.4147, 7.4139, 7.4152, 7.4144, 7.4136, 7.4131, 7.4124, 7.4117, 7.4131, 7.4124, 7.4136, 7.4139, 7.4131, 7.4125, 7.4118, 7.4131, 7.4142, 7.4136, 7.4132, 7.4143, 7.4141, 7.4135, 7.413, 7.4144, 7.4165, 7.418, 7.4172, 7.4168, 7.4169, 7.4171, 7.4164, 7.4158, 7.4169, 7.4161, 7.4161, 7.4175, 7.4168, 7.4183, 7.4177, 7.417, 7.4183, 7.4178, 7.417, 7.4181, 7.4174, 7.4169, 7.4163, 7.4156, 7.415, 7.4163, 7.4176, 7.4169, 7.4162, 7.4158, 7.428, 7.4273, 7.4286, 7.428, 7.4293, 7.4286, 7.4282, 7.4274, 7.4266, 7.4261, 7.4253, 7.4277, 7.4269, 7.4263, 7.4255, 7.4331, 7.4325, 7.4319, 7.4312, 7.4306, 7.4282, 7.4295, 7.4289, 7.4283, 7.4276, 7.4268, 7.4279, 7.4293, 7.4286, 7.4278, 7.429, 7.4302, 7.4295, 7.4288, 7.4303, 7.4297, 7.4289, 7.4282, 7.4278, 7.4272, 7.4269, 7.4264, 7.4324, 7.4352, 7.4387, 7.444, 7.4417, 7.4411, 7.4425, 7.4417, 7.4413, 7.4406, 7.4401, 7.4394, 7.4406, 7.4399, 7.4412, 7.4424, 7.442, 7.4418, 7.4421, 7.4413, 7.441, 7.4405, 7.4417, 7.4451, 7.4445, 7.444, 7.448, 7.4491, 7.4485, 7.4479, 7.4473, 7.4487, 7.4485, 7.4481, 7.4482, 7.4478, 7.4472, 7.4465, 7.4488, 7.449, 7.4483, 7.448, 7.4472, 7.4465, 7.4504, 7.4555, 7.4548, 7.4541, 7.4553, 7.4546, 7.454, 7.4618, 7.4631, 7.4625, 7.4617, 7.461, 7.4607, 7.46, 7.4614, 7.4608, 7.4605, 7.4581, 7.4574, 7.4568, 7.4561, 7.4556, 7.455, 7.4545, 7.454, 7.4533, 7.4546, 7.4557, 7.4551, 7.4588, 7.4582, 7.4577, 7.4572, 7.4564, 7.4559, 7.4571, 7.4566, 7.4578, 7.4571, 7.4564, 7.4576, 7.4569, 7.4573, 7.4566, 7.456, 7.4572, 7.4584, 7.4577, 7.4589, 7.4582, 7.4574, 7.4567, 7.4599, 7.4619, 7.4612, 7.4607, 7.46, 7.4612, 7.4607, 7.4585, 7.4578, 7.4574, 7.4567, 7.456, 7.4573, 7.4569, 7.4563, 7.4566, 7.4558, 7.457, 7.4582, 7.4579, 7.4573, 7.4567, 7.4562, 7.4577, 7.457, 7.4564, 7.4557, 7.455, 7.4543, 7.4538, 7.4533, 7.4526, 7.4541, 7.4534, 7.4528, 7.452, 7.4518, 7.4513, 7.4507, 7.45, 7.4493, 7.4486, 7.4482, 7.4477, 7.4488, 7.4481, 7.4478, 7.4474, 7.4485, 7.4497, 7.449, 7.4485, 7.4479, 7.449, 7.4485, 7.4478, 7.449, 7.4484, 7.4532, 7.4543, 7.452, 7.4532, 7.4527, 7.452, 7.455, 7.4543, 7.4538, 7.4557, 7.4551, 7.4562, 7.4555, 7.455, 7.4544, 7.4542, 7.4559, 7.4553, 7.4547, 7.4561, 7.4574, 7.4577, 7.4573, 7.4567, 7.4561, 7.4574, 7.4568, 7.4562, 7.4558, 7.4552, 7.4563, 7.4556, 7.4569, 7.4592, 7.4604, 7.4613, 7.4625, 7.4618, 7.4623, 7.4618, 7.4613, 7.4638, 7.4633, 7.4626, 7.4619, 7.4614, 7.4607, 7.4587, 7.4669, 7.468, 7.4692, 7.4703, 7.4696, 7.469, 7.4685, 7.468, 7.4692, 7.4688, 7.4681, 7.4679, 7.4674, 7.4688, 7.4698, 7.4777, 7.4787, 7.478, 7.4775, 7.4791, 7.4784, 7.4778, 7.4789, 7.4782, 7.4777, 7.479, 7.4783, 7.4776, 7.477, 7.4764, 7.4757, 7.4779, 7.478, 7.4774, 7.4767, 7.4764, 7.4742, 7.4735, 7.4728, 7.4721, 7.4714, 7.4709, 7.4703, 7.4697, 7.469, 7.4683, 7.4678, 7.4673, 7.468, 7.469, 7.4683, 7.4696, 7.4691, 7.4701, 7.4711, 7.4707, 7.4703, 7.4698, 7.4694, 7.4688, 7.4681, 7.4674, 7.4667, 7.4662, 7.4657, 7.4669, 7.4663, 7.4658, 7.4651, 7.4647, 7.4641, 7.4634, 7.4627, 7.462, 7.4613, 7.4606, 7.4599, 7.4626, 7.4604, 7.4601, 7.4596, 7.4591, 7.4584, 7.4577, 7.4572, 7.4589, 7.4582, 7.4585, 7.4578, 7.4589, 7.46, 7.4594, 7.4587, 7.458, 7.4573, 7.4584, 7.4579, 7.4572, 7.4565, 7.4559, 7.4564, 7.4557, 7.4552, 7.4545, 7.4538, 7.4551, 7.455, 7.4544, 7.4556, 7.455, 7.456, 7.4555, 7.4552, 7.4564, 7.4557, 7.4552, 7.4547, 7.4615, 7.461, 7.4622, 7.4686, 7.4697, 7.4692, 7.4771, 7.4766, 7.4761, 7.477, 7.4763, 7.4756, 7.4767, 7.4761, 7.4757, 7.4751, 7.475, 7.4746, 7.474, 7.4751, 7.4751, 7.4744, 7.4738, 7.4748, 7.4751, 7.4748, 7.4742, 7.4737, 7.4719, 7.4699, 7.4696, 7.4691, 7.4674, 7.4688, 7.4682, 7.4676, 7.4659, 7.4654, 7.4683, 7.4677, 7.4672, 7.4668, 7.4662, 7.4673, 7.4666, 7.466, 7.4654, 7.4649, 7.4644, 7.4655, 7.4665, 7.4661, 7.4655, 7.4649, 7.4643, 7.4673, 7.4682, 7.4693, 7.4687, 7.4682, 7.4675, 7.467, 7.4663, 7.4668, 7.4678, 7.4674, 7.4685, 7.4681, 7.4676, 7.4675, 7.4693, 7.4693, 7.4706, 7.4702, 7.4712, 7.4793, 7.4787, 7.4781, 7.4797, 7.4855, 7.4833, 7.4826, 7.4836, 7.4886, 7.488, 7.4883, 7.4878, 7.4874, 7.4893, 7.4887, 7.4897, 7.4908, 7.4919, 7.4912, 7.4922, 7.4922, 7.4916, 7.4912, 7.4909, 7.4905, 7.49, 7.4894, 7.4905, 7.4899, 7.4894, 7.4906, 7.4934, 7.4928, 7.4924, 7.4935, 7.4929, 7.4922, 7.4918, 7.4931, 7.4926, 7.4936, 7.493, 7.4924, 7.4937, 7.4931, 7.4925, 7.492, 7.4914, 7.491, 7.4904, 7.4899, 7.4878, 7.4874, 7.4869, 7.4868, 7.4877, 7.487, 7.4881, 7.4892, 7.4901, 7.4895, 7.489, 7.4885, 7.4864, 7.4858, 7.4852, 7.4845, 7.4855, 7.486, 7.4855, 7.4852, 7.4864, 7.4875, 7.4884, 7.4878, 7.4911, 7.492, 7.4913, 7.4924, 7.4934, 7.4927, 7.492, 7.4913, 7.493, 7.4924, 7.4917, 7.491, 7.4905, 7.4898, 7.4908, 7.4968, 7.4979, 7.4984, 7.4978, 7.4987, 7.4998, 7.5009, 7.5004, 7.4998, 7.4992, 7.4986, 7.4979, 7.4972, 7.4965, 7.496, 7.4954, 7.4948, 7.4942, 7.4935, 7.4944, 7.4938, 7.4949, 7.4944, 7.4943, 7.4937, 7.4931, 7.4925, 7.4928, 7.4921, 7.4914, 7.4908, 7.4919, 7.4913, 7.4908, 7.4918, 7.4912, 7.4921, 7.4914, 7.4909, 7.4921, 7.4915, 7.491, 7.4903, 7.4896, 7.489, 7.4884, 7.4877, 7.487, 7.4864, 7.4859, 7.4854, 7.4862, 7.4857, 7.4869, 7.4862, 7.4856, 7.4862, 7.4872, 7.4866, 7.4876, 7.487, 7.4864, 7.4859, 7.4855, 7.4865, 7.4859, 7.4838, 7.4847, 7.4843, 7.4837, 7.4831, 7.4843, 7.4837, 7.4848, 7.4857, 7.4851, 7.4852, 7.4852, 7.4847, 7.4879, 7.4873, 7.4883, 7.4883, 7.4894, 7.4888, 7.4885, 7.4889, 7.4882, 7.4875, 7.4871, 7.4865, 7.4859, 7.4853, 7.4849, 7.4859, 7.4853, 7.4847, 7.4857, 7.4868, 7.4878, 7.4871, 7.4865, 7.4858, 7.4853, 7.4848, 7.4858, 7.4853, 7.4863, 7.4871, 7.4865, 7.486, 7.4856, 7.485, 7.486, 7.487, 7.4865, 7.4861, 7.4855, 7.4849, 7.4843, 7.484, 7.4834, 7.4828, 7.4822, 7.4821, 7.4818, 7.4813, 7.4808, 7.482, 7.4831, 7.4825, 7.482, 7.4821, 7.4818, 7.4815, 7.4812, 7.4806, 7.48, 7.4797, 7.4796, 7.4789, 7.4786, 7.478, 7.4775, 7.4768, 7.4811, 7.4805, 7.4805, 7.48, 7.4825, 7.4834, 7.4829, 7.4825, 7.4805, 7.4815, 7.4809, 7.4819, 7.4813, 7.4807, 7.4802, 7.4796, 7.479, 7.48, 7.4794, 7.4804, 7.48, 7.4795, 7.4836, 7.483, 7.4862, 7.4858, 7.4868, 7.4863, 7.4859, 7.4854, 7.4849, 7.4846, 7.484, 7.4834, 7.4828, 7.4823, 7.4803, 7.4797, 7.4793, 7.4803, 7.4797, 7.4795, 7.4819, 7.4814, 7.4808, 7.4818, 7.4812, 7.4808, 7.4818, 7.4813, 7.4824, 7.482, 7.4837, 7.4822, 7.4816, 7.4825, 7.4819, 7.4813, 7.4807, 7.4801, 7.4809, 7.4818, 7.4814, 7.4823, 7.4803, 7.4798, 7.4795, 7.4792, 7.4773, 7.4787, 7.4796, 7.4791, 7.4785, 7.4782, 7.4776, 7.4772, 7.4766, 7.476, 7.4754, 7.475, 7.4745, 7.474, 7.4734, 7.4728, 7.4723, 7.4724, 7.4734, 7.4729, 7.474, 7.4734, 7.4805, 7.4799, 7.4793, 7.4789, 7.4785, 7.478, 7.4774, 7.4785, 7.4781, 7.4777, 7.4771, 7.4766, 7.478, 7.4798, 7.4792, 7.4787, 7.4782, 7.478, 7.4793, 7.4787, 7.4781, 7.4775, 7.4769, 7.4791, 7.4811, 7.4808, 7.4802, 7.4796, 7.4799, 7.4795, 7.4831, 7.4825, 7.4819, 7.4814, 7.4811, 7.4806, 7.48, 7.4809, 7.4818, 7.4827, 7.4823, 7.4817, 7.4814, 7.4811, 7.482, 7.4814, 7.4811, 7.4806, 7.48, 7.4794, 7.4788, 7.4782, 7.4777, 7.4773, 7.4767, 7.4761, 7.4755, 7.4764, 7.476, 7.4754, 7.4749, 7.4758, 7.4768, 7.4764, 7.4773, 7.4767, 7.4775, 7.477, 7.4764, 7.476, 7.4755, 7.4749, 7.4743, 7.4737, 7.4742, 7.4737, 7.4733, 7.4727, 7.4721, 7.4731, 7.474, 7.4734, 7.4758, 7.4768, 7.4778, 7.4772, 7.4783, 7.4779, 7.4788, 7.4782, 7.4791, 7.4785, 7.478, 7.4774, 7.4768, 7.4762, 7.4758, 7.4753, 7.4749, 7.4759, 7.4754, 7.4766, 7.4777, 7.4772, 7.4793, 7.4803, 7.4812, 7.4807, 7.4803, 7.4802, 7.4797, 7.4822, 7.4833, 7.4814, 7.4809, 7.4805, 7.48, 7.4781, 7.4793, 7.4809, 7.4806, 7.4801, 7.4795, 7.4812, 7.4807, 7.4817, 7.4813, 7.4816, 7.481, 7.4819, 7.4813, 7.4809, 7.4803, 7.4799, 7.4794, 7.4775, 7.4769, 7.4754, 7.4752, 7.476, 7.4754, 7.4748, 7.4757, 7.4751, 7.476, 7.4756, 7.475, 7.4744, 7.4747, 7.4741, 7.475, 7.4744, 7.4726, 7.4708, 7.4705, 7.47, 7.4696, 7.4705, 7.4699, 7.4693, 7.4687, 7.4671, 7.4666, 7.466, 7.467, 7.4664, 7.4658, 7.4653, 7.4662, 7.4656, 7.4654, 7.4652, 7.4661, 7.4665, 7.4674, 7.4668, 7.4663, 7.4659, 7.4654, 7.4663, 7.4658, 7.4654, 7.4648, 7.4642, 7.4637, 7.4634, 7.4628, 7.4623, 7.4617, 7.4612, 7.461, 7.461, 7.4605, 7.4599, 7.4601, 7.4596, 7.4594, 7.4588, 7.4588, 7.4582, 7.4576, 7.4572, 7.4569, 7.4566, 7.456, 7.4571, 7.458, 7.4577, 7.4573, 7.4569, 7.4565, 7.4563, 7.4576, 7.4587, 7.4583, 7.4579, 7.4575, 7.4571, 7.4567, 7.4565, 7.4577, 7.4589, 7.4585, 7.4579, 7.4575, 7.4572, 7.4581, 7.4578, 7.4576, 7.4571, 7.4565, 7.4561, 7.4557, 7.4554, 7.4551, 7.4548, 7.4545, 7.4554, 7.455, 7.4548, 7.4544, 7.4541, 7.455, 7.4559, 7.4555, 7.4565, 7.4575, 7.4585, 7.4582, 7.4577, 7.4572, 7.4572, 7.4633, 7.4627, 7.4635, 7.463, 7.4628, 7.4622, 7.4616, 7.4624, 7.4619, 7.4613, 7.4608, 7.4603, 7.4681, 7.4676, 7.4685, 7.468, 7.4675, 7.4671, 7.4666, 7.4662, 7.4658, 7.4675, 7.467, 7.4665, 7.4662, 7.4657, 7.4655, 7.4651, 7.4647, 7.4642, 7.4638, 7.4634, 7.4629, 7.4624, 7.4628, 7.4623, 7.4618, 7.4614, 7.461, 7.4606, 7.46, 7.4595, 7.4604, 7.4601, 7.461, 7.4619, 7.4615, 7.4612, 7.4606, 7.4601, 7.4595, 7.4604, 7.4615, 7.4616, 7.4625, 7.4662, 7.467, 7.4665, 7.4661, 7.4643, 7.4638, 7.4662, 7.4657, 7.4652, 7.4675, 7.4672, 7.4669, 7.4678, 7.4688, 7.4688, 7.4696, 7.4692, 7.4686, 7.4681, 7.469, 7.4686, 7.4684, 7.4678, 7.4672, 7.4668, 7.4664, 7.4661, 7.4658, 7.4667, 7.4649, 7.4643, 7.4652, 7.4647, 7.4642, 7.464, 7.4635, 7.4631, 7.464, 7.4636, 7.4633, 7.4629, 7.4637, 7.4632, 7.464, 7.4649, 7.4645, 7.4654, 7.4638, 7.4662, 7.4671, 7.4666, 7.4674, 7.467, 7.4665, 7.4661, 7.467, 7.4665, 7.466, 7.4645, 7.4641, 7.4651, 7.4646, 7.4642, 7.4641, 7.4636, 7.4645, 7.464, 7.4635, 7.4632, 7.4626, 7.4635, 7.463, 7.4625, 7.462, 7.4631, 7.4627, 7.4622, 7.4618, 7.46, 7.4596, 7.4591, 7.4587, 7.4582, 7.4565, 7.4574, 7.457, 7.4579, 7.4587, 7.4599, 7.4595, 7.459, 7.4599, 7.4611, 7.4606, 7.4602, 7.4597, 7.4593, 7.4601, 7.4596, 7.4592, 7.46, 7.4609, 7.4625, 7.4622, 7.4619, 7.4628, 7.4637, 7.4633, 7.463, 7.4625, 7.4621, 7.4617, 7.4613, 7.4609, 7.4604, 7.4614, 7.4611, 7.4606, 7.4617, 7.4604, 7.4599, 7.4594, 7.4589, 7.4584, 7.4578, 7.4574, 7.4569, 7.4564, 7.4559, 7.4569, 7.457, 7.4595, 7.4591, 7.4586, 7.4582, 7.4633, 7.4628, 7.4623, 7.4619, 7.4614, 7.4622, 7.4631, 7.4632, 7.4627, 7.4622, 7.4619, 7.4614, 7.4609, 7.4612, 7.4611, 7.4606, 7.46, 7.4597, 7.4592, 7.4588, 7.4584, 7.4581, 7.4576, 7.4571, 7.4579, 7.4576, 7.4573, 7.4581, 7.4576, 7.4571, 7.458, 7.4576, 7.4571, 7.4566, 7.4561, 7.4565, 7.456, 7.4558, 7.4566, 7.4589, 7.4584, 7.4579, 7.4574, 7.4584, 7.4567, 7.4575, 7.4571, 7.4566, 7.4562, 7.456, 7.4556, 7.4552, 7.4548, 7.4556, 7.4551, 7.4546, 7.4554, 7.4537, 7.4533, 7.4529, 7.4529, 7.4537, 7.4547, 7.4542, 7.4549, 7.4545, 7.454, 7.4535, 7.4531, 7.454, 7.4535, 7.4532, 7.4526, 7.4523, 7.4519, 7.4514, 7.4523, 7.4533, 7.4529, 7.4524, 7.4519, 7.4516, 7.4531, 7.454, 7.4536, 7.4531, 7.454, 7.4536, 7.4546, 7.4544, 7.4539, 7.4534, 7.4532, 7.453, 7.4525, 7.452, 7.4516, 7.4512, 7.4562, 7.4559, 7.4554, 7.455, 7.4546, 7.4529, 7.4537, 7.4534, 7.4531, 7.4527, 7.4537, 7.4545, 7.454, 7.4535, 7.4518, 7.4514, 7.4522, 7.4517, 7.4525, 7.4521, 7.4531, 7.4527, 7.4523, 7.4519, 7.4515, 7.451, 7.4507, 7.4503, 7.45, 7.4496, 7.4505, 7.45, 7.4495, 7.4492, 7.4487, 7.4483, 7.448, 7.4475, 7.447, 7.4472, 7.4468, 7.4463, 7.4458, 7.4454, 7.4462, 7.4446, 7.4441, 7.4437, 7.4432, 7.4441, 7.4424, 7.4421, 7.442, 7.4419, 7.4414, 7.4435, 7.443, 7.4426, 7.4435, 7.4444, 7.4439, 7.4434, 7.4429, 7.4427, 7.4424, 7.4419, 7.4415, 7.4418, 7.4427, 7.4423, 7.4421, 7.4416, 7.4414, 7.4409, 7.4407, 7.4402, 7.4399, 7.4394, 7.4389, 7.4397, 7.4392, 7.4401, 7.4398, 7.4394, 7.439, 7.4398, 7.4395, 7.439, 7.4387, 7.4383, 7.4367, 7.4362, 7.4364, 7.4359, 7.4354, 7.4349, 7.4345, 7.4341, 7.4337, 7.4344, 7.434, 7.4336, 7.4332, 7.4327, 7.4323, 7.4331, 7.4366, 7.4362, 7.4358, 7.4358, 7.4354, 7.435, 7.4362, 7.4358, 7.4354, 7.4349, 7.4345, 7.4342, 7.434, 7.4337, 7.4332, 7.4328, 7.4323, 7.433, 7.4327, 7.4322, 7.433, 7.4317, 7.4312, 7.4321, 7.4316, 7.4311, 7.4319, 7.4314, 7.4309, 7.4304, 7.43, 7.4318, 7.4326, 7.4361, 7.4357, 7.4364, 7.4374, 7.4369, 7.4365, 7.436, 7.4412, 7.4395, 7.4379, 7.4386, 7.4381, 7.4376, 7.4371, 7.4366, 7.4364, 7.4361, 7.4356, 7.4364, 7.4386, 7.4382, 7.4379, 7.4376, 7.4372, 7.4368, 7.4379, 7.4374, 7.437, 7.4377, 7.4403, 7.4398, 7.4424, 7.4419, 7.4416, 7.4411, 7.4419, 7.4414, 7.441, 7.4407, 7.4404, 7.4411, 7.4433, 7.4429, 7.4426, 7.4433, 7.443, 7.4426, 7.4423, 7.4418, 7.4427, 7.4424, 7.442, 7.4416, 7.4411, 7.4407, 7.4404, 7.44, 7.4409, 7.4404, 7.4407, 7.4402, 7.44, 7.4396, 7.4392, 7.4401, 7.4397, 7.4392, 7.4387, 7.4422, 7.4419, 7.4416, 7.4425, 7.4421, 7.4416, 7.4429, 7.4437, 7.4424, 7.4419, 7.4415, 7.44, 7.4396, 7.4392, 7.4388, 7.4383, 7.441, 7.4418, 7.4414, 7.4409, 7.4416, 7.4426, 7.4428, 7.444, 7.4448, 7.4444, 7.4439, 7.4434, 7.443, 7.4425, 7.442, 7.4428, 7.4436, 7.4433, 7.4428, 7.4423, 7.4418, 7.4413, 7.4409, 7.4405, 7.4401, 7.4397, 7.4394, 7.4393, 7.44, 7.4395, 7.439, 7.4387, 7.4384, 7.4381, 7.439, 7.4398, 7.4398, 7.4395, 7.4401, 7.4397, 7.4405, 7.441, 7.4405, 7.44, 7.4397, 7.4392, 7.4388, 7.4384, 7.4392, 7.4388, 7.4383, 7.4379, 7.4374, 7.4369, 7.4365, 7.436, 7.4355, 7.4363, 7.4371, 7.4366, 7.4373, 7.4368, 7.4366, 7.4365, 7.436, 7.4369, 7.4367, 7.4363, 7.436, 7.4367, 7.4363, 7.4362, 7.437, 7.4365, 7.4373, 7.4369, 7.4377, 7.4372, 7.4367, 7.4366, 7.4361, 7.4371, 7.4379, 7.4387, 7.4383, 7.4368, 7.4363, 7.4358, 7.4353, 7.4364, 7.4348, 7.4345, 7.4342, 7.4337, 7.4339, 7.4334, 7.4342, 7.4337, 7.4332, 7.4328, 7.4324, 7.4319, 7.4326, 7.4322, 7.433, 7.4338, 7.4334, 7.4368, 7.4376, 7.4372, 7.4367, 7.4363, 7.4359, 7.4367, 7.4375, 7.437, 7.4378, 7.4373, 7.4368, 7.4365, 7.4361, 7.4369, 7.4365, 7.4361, 7.437, 7.4366, 7.4363, 7.4373, 7.4376, 7.4388, 7.4398, 7.4406, 7.4401, 7.4409, 7.4405, 7.44, 7.4407, 7.4403, 7.4399, 7.4395, 7.4397, 7.4393, 7.4389, 7.4396, 7.4394, 7.439, 7.439, 7.4385, 7.438, 7.4375, 7.4395, 7.4393, 7.44, 7.4408, 7.4404, 7.4402, 7.4412, 7.4417, 7.4414, 7.4428, 7.4416, 7.4412, 7.442, 7.4415, 7.441, 7.4406, 7.4414, 7.4421, 7.4483, 7.4479, 7.4464, 7.446, 7.4468, 7.4466, 7.4463, 7.4461, 7.4456, 7.4488, 7.454, 7.4536, 7.4543, 7.4528, 7.4525, 7.4509, 7.4504, 7.45, 7.4496, 7.4491, 7.4486, 7.4483, 7.4481, 7.4466, 7.4463, 7.4469, 7.4477, 7.4485, 7.4481, 7.4477, 7.4484, 7.4481, 7.4476, 7.4471, 7.4466, 7.4463, 7.4471, 7.4468, 7.4463, 7.4459, 7.4455, 7.4453, 7.4451, 7.4436, 7.445, 7.4447, 7.4456, 7.4452, 7.4451, 7.4448, 7.4469, 7.4477, 7.4472, 7.4467, 7.4462, 7.4457, 7.4453, 7.445, 7.4446, 7.4453, 7.445, 7.4445, 7.4432, 7.4429, 7.4426, 7.4472, 7.4468, 7.4465, 7.4461, 7.4457, 7.4464, 7.4462, 7.4458, 7.4454, 7.4452, 7.4447, 7.4443, 7.4439, 7.4434, 7.4441, 7.4448, 7.4456, 7.4452, 7.4449, 7.4445, 7.4441, 7.4438, 7.4435, 7.4432, 7.4427, 7.4435, 7.4502, 7.4497, 7.4504, 7.4557, 7.4552, 7.455, 7.4547, 7.4543, 7.4551, 7.4547, 7.4544, 7.454, 7.4548, 7.4544, 7.4552, 7.4547, 7.4543, 7.4539, 7.4559, 7.4555, 7.4562, 7.4558, 7.4553, 7.4549, 7.4556, 7.4563, 7.4559, 7.4556, 7.4552, 7.4547, 7.4543, 7.454, 7.4546, 7.4542, 7.454, 7.4536, 7.4531, 7.4527, 7.4524, 7.452, 7.4515, 7.4523, 7.4519, 7.4526, 7.4523, 7.4518, 7.4514, 7.451, 7.4517, 7.4513, 7.452, 7.4517, 7.4514, 7.4522, 7.4519, 7.4516, 7.4511, 7.4496, 7.4492, 7.4487, 7.4483, 7.4479, 7.4487, 7.4495, 7.4491, 7.4488, 7.4484, 7.4479, 7.4487, 7.4488, 7.4474, 7.4472, 7.4468, 7.4465, 7.4461, 7.4446, 7.4454, 7.4451, 7.4471, 7.4467, 7.4463, 7.4477, 7.4476, 7.4472, 7.446, 7.4456, 7.4467, 7.4464, 7.4466, 7.4463, 7.4517, 7.4513, 7.4522, 7.4529, 7.4536, 7.4554, 7.4549, 7.4556, 7.4564, 7.456, 7.4555, 7.455, 7.4546, 7.4541, 7.4541, 7.4537, 7.4533, 7.4531, 7.4526, 7.4523, 7.4521, 7.4516, 7.4512, 7.4519, 7.4526, 7.4536, 7.4532, 7.4527, 7.4525, 7.4532, 7.4528, 7.4532, 7.4528, 7.4524, 7.4531, 7.4538, 7.4545, 7.4552, 7.4548, 7.4544, 7.454, 7.4536, 7.4531, 7.4541, 7.4548, 7.4544, 7.4542, 7.4538, 7.4534, 7.4542, 7.4537, 7.4545, 7.4541, 7.4537, 7.4544, 7.454, 7.4541, 7.4538, 7.4545, 7.4551, 7.4547, 7.4543, 7.4562, 7.458, 7.4575, 7.4582, 7.4581, 7.4577, 7.4573, 7.458, 7.4576, 7.4572, 7.4568, 7.4563, 7.4562, 7.4558, 7.4555, 7.4552, 7.4549, 7.4544, 7.454, 7.4536, 7.4534, 7.453, 7.4526, 7.4523, 7.4523, 7.452, 7.4519, 7.4525, 7.4521, 7.4518, 7.4514, 7.4509, 7.4517, 7.4513, 7.4509, 7.4557, 7.4553, 7.4548, 7.4548, 7.4544, 7.454, 7.4547, 7.4544, 7.4542, 7.4549, 7.4549, 7.4546, 7.4542, 7.4539, 7.4546, 7.4544, 7.454, 7.4536, 7.4532, 7.4529, 7.4525, 7.4522, 7.4519, 7.4526, 7.4522, 7.4532, 7.4528, 7.4551, 7.4546, 7.4542, 7.456, 7.4557, 7.4569, 7.4567, 7.4563, 7.457, 7.4566, 7.4573, 7.4579, 7.4586, 7.4582, 7.4589, 7.4586, 7.4593, 7.46, 7.4596, 7.4592, 7.4589, 7.4597, 7.4604, 7.46, 7.4596, 7.4592, 7.4589, 7.4585, 7.4581, 7.4576, 7.4583, 7.4579, 7.4575, 7.4571, 7.4566, 7.4563, 7.4551, 7.4558, 7.4554, 7.4561, 7.4557, 7.4564, 7.456, 7.4556, 7.4552, 7.4549, 7.4547, 7.4543, 7.4539, 7.4536, 7.4532, 7.4528, 7.4525, 7.4521, 7.4517, 7.4524, 7.4533, 7.4534, 7.453, 7.4526, 7.4522, 7.4519, 7.4516, 7.4514, 7.4521, 7.4517, 7.4513, 7.4512, 7.4508, 7.4504, 7.45, 7.4508, 7.4507, 7.4503, 7.4499, 7.4496, 7.4494, 7.449, 7.4538, 7.4534, 7.453, 7.4527, 7.4525, 7.4522, 7.4527, 7.4522, 7.4518, 7.4517, 7.4513, 7.451, 7.4506, 7.4513, 7.452, 7.4517, 7.4514, 7.4512, 7.4508, 7.4505, 7.4501, 7.4528, 7.4535, 7.4532, 7.4539, 7.4546, 7.4556, 7.4554, 7.4561, 7.4557, 7.4567, 7.4574, 7.4578, 7.4585, 7.4593, 7.4589, 7.4585, 7.4582, 7.4578, 7.4585, 7.4581, 7.4577, 7.4573, 7.4569, 7.4566, 7.4563, 7.457, 7.4568, 7.4565, 7.4572, 7.458, 7.4576, 7.4582, 7.4589, 7.4585, 7.4584, 7.458, 7.4576, 7.4573, 7.4569, 7.4565, 7.4561, 7.4557, 7.4564, 7.4571, 7.4568, 7.4564, 7.4563, 7.457, 7.4566, 7.4564, 7.456, 7.4556, 7.4552, 7.4559, 7.4566, 7.4562, 7.4559, 7.4558, 7.457, 7.4568, 7.4564, 7.456, 7.4561, 7.4564, 7.456, 7.4568, 7.4564, 7.457, 7.4567, 7.4553, 7.4549, 7.4547, 7.4542, 7.454, 7.4549, 7.4546, 7.4543, 7.4539, 7.454, 7.4537, 7.4546, 7.4543, 7.4539, 7.4535, 7.4532, 7.4527, 7.4523, 7.4519, 7.4515, 7.4511, 7.4498, 7.4516, 7.4513, 7.4509, 7.4506, 7.4502, 7.4498, 7.4494, 7.4491, 7.4497, 7.4495, 7.4501, 7.4499, 7.4496, 7.4493, 7.4491, 7.4487, 7.4484, 7.448, 7.4476, 7.4472, 7.4479, 7.4477, 7.4473, 7.447, 7.4466, 7.4467, 7.4463, 7.447, 7.4467, 7.4463, 7.4459, 7.4455, 7.4451, 7.4447, 7.4443, 7.444, 7.4447, 7.4451, 7.4475, 7.4472, 7.4468, 7.4464, 7.4471, 7.4468, 7.4466, 7.4474, 7.447, 7.4466, 7.4462, 7.447, 7.4466, 7.4463, 7.447, 7.4465, 7.4461, 7.4468, 7.4497, 7.4493, 7.45, 7.4507, 7.4503, 7.4509, 7.4507, 7.4514, 7.4521, 7.4528, 7.4534, 7.4541, 7.4538, 7.4534, 7.4542, 7.4539, 7.4535, 7.4544, 7.455, 7.4547, 7.4544, 7.454, 7.4537, 7.4544, 7.454, 7.4536, 7.4533, 7.4529, 7.4525, 7.4533, 7.453, 7.4541, 7.4537, 7.4534, 7.4535, 7.4533, 7.4529, 7.4527, 7.4544, 7.4542, 7.455, 7.4548, 7.4544, 7.454, 7.4536, 7.4532, 7.4527, 7.4513, 7.4515, 7.4511, 7.4507, 7.4504, 7.4512, 7.4509, 7.4506, 7.4504, 7.4516, 7.4523, 7.4519, 7.4514, 7.4511, 7.4507, 7.4504, 7.4502, 7.4499, 7.4495, 7.4491, 7.4501, 7.4498, 7.4495, 7.4495, 7.4491, 7.4489, 7.4475, 7.4472, 7.4468, 7.4466, 7.4472, 7.447, 7.4467, 7.4465, 7.4461, 7.4457, 7.4453, 7.4449, 7.4445, 7.4441, 7.4437, 7.4433, 7.443, 7.4427, 7.4423, 7.442, 7.4428, 7.4425, 7.4422, 7.4429, 7.4425, 7.4421, 7.4417, 7.4415, 7.4412, 7.4408, 7.4405, 7.4402, 7.4408, 7.4406, 7.4403, 7.4399, 7.4386, 7.4392, 7.4389, 7.439, 7.4397, 7.4394, 7.439, 7.4397, 7.4394, 7.439, 7.4387, 7.4384, 7.4381, 7.4399, 7.4396, 7.4392, 7.4399, 7.4396, 7.4403, 7.4399, 7.4406, 7.4403, 7.4399, 7.4397, 7.4393, 7.44, 7.4397, 7.4394, 7.4404, 7.4402, 7.4401, 7.44, 7.4396, 7.4403, 7.441, 7.4406, 7.4402, 7.4409, 7.4406, 7.4402, 7.4388, 7.4394, 7.439, 7.4397, 7.4403, 7.439, 7.4387, 7.4384, 7.438, 7.4376, 7.4373, 7.438, 7.4377, 7.4384, 7.4391, 7.4397, 7.4393, 7.4389, 7.4396, 7.4392, 7.4389, 7.4385, 7.4404, 7.4419, 7.4415, 7.4412, 7.4399, 7.4385, 7.4392, 7.4388, 7.4415, 7.4412, 7.4409, 7.4399, 7.4396, 7.4392, 7.4389, 7.439, 7.4401, 7.4414, 7.4421, 7.4427, 7.4423, 7.4429, 7.4435, 7.4432, 7.4439, 7.4435, 7.4462, 7.4479, 7.4486, 7.4482, 7.4478, 7.4478, 7.4474, 7.4471, 7.4482, 7.4479, 7.4475, 7.4476, 7.4479, 7.4477, 7.4491, 7.4487, 7.4474, 7.4512, 7.4509, 7.4527, 7.4524, 7.4522, 7.4559, 7.4565, 7.4561, 7.4558, 7.4576, 7.4574, 7.4575, 7.4572, 7.4579, 7.4576, 7.4572, 7.4569, 7.4565, 7.4571, 7.4579, 7.4585, 7.4581, 7.4577, 7.4574, 7.458, 7.4576, 7.4563, 7.4569, 7.4596, 7.4586, 7.4598, 7.4598, 7.4595, 7.4592, 7.4599, 7.4596, 7.4602, 7.4608, 7.4604, 7.46, 7.4596, 7.4606, 7.4612, 7.4618, 7.4625, 7.4621, 7.4617, 7.4623, 7.462, 7.4616, 7.4622, 7.4629, 7.4627, 7.4623, 7.4619, 7.4625, 7.4621, 7.4627, 7.4633, 7.4639, 7.4646, 7.4643, 7.4639, 7.4646, 7.4643, 7.465, 7.4647, 7.4643, 7.4639, 7.4636, 7.4632, 7.465, 7.4658, 7.4655, 7.4662, 7.4658, 7.4655, 7.4661, 7.4657, 7.4654, 7.467, 7.4676, 7.4694, 7.4683, 7.4679, 7.4675, 7.4672, 7.4668, 7.4675, 7.4671, 7.4668, 7.4674, 7.468, 7.4686, 7.4692, 7.4698, 7.4695, 7.4691, 7.4697, 7.4693, 7.4691, 7.4688, 7.4685, 7.4682, 7.4678, 7.4674, 7.467, 7.4666, 7.4662, 7.4668, 7.4675, 7.4682, 7.4689, 7.4695, 7.4692, 7.4689, 7.4706, 7.4702, 7.4698, 7.4704, 7.471, 7.4706, 7.4713, 7.47, 7.4696, 7.4693, 7.4709, 7.4705, 7.4701, 7.4698, 7.4694, 7.4691, 7.4688, 7.4694, 7.4702, 7.4708, 7.4704, 7.4701, 7.4698, 7.4696, 7.4695, 7.4693, 7.47, 7.469, 7.4694, 7.4684, 7.468, 7.4676, 7.4683, 7.4689, 7.4685, 7.4685, 7.4683, 7.468, 7.4678, 7.4685, 7.4692, 7.4699, 7.4705, 7.4712, 7.4708, 7.4705, 7.4704, 7.4701, 7.4707, 7.4706, 7.4714, 7.471, 7.4719, 7.4715, 7.4712, 7.4709, 7.4707, 7.4714, 7.4711, 7.471, 7.4716, 7.4715, 7.4715, 7.4714, 7.4721, 7.472, 7.4717, 7.4716, 7.4712, 7.4711, 7.4699, 7.4706, 7.4703, 7.47, 7.4699, 7.4699], '192.168.122.118': [5.4498, 5.43, 6.3577, 6.0905, 6.1591, 6.0216, 7.2374, 7.013, 7.4726, 7.3706, 7.2471, 7.0966, 7.1346, 7.0128, 6.9101, 7.1657, 7.4116, 7.3226, 7.4349, 7.3382, 7.3024, 7.2419, 7.3982, 7.3099, 7.2297, 7.1783, 7.5206, 7.4567, 7.8891, 7.6979, 7.6329, 7.5662, 7.7655, 7.8697, 7.7013, 7.726, 7.97, 7.922, 8.0194, 7.9533, 7.9023, 7.8523, 7.8022, 7.9223, 7.8666, 7.9328, 7.9166, 7.8689, 7.8306, 7.8895, 7.8403, 7.7923, 7.7568, 7.7202, 7.6829, 7.6455, 7.608, 7.5861, 7.5572, 7.5351, 7.4996, 7.4665, 7.449, 7.4261, 7.3956, 7.4493, 7.5028, 7.4726, 7.5227, 7.4909, 7.4612, 7.4372, 7.4072, 7.4579, 7.4383, 7.4184, 7.3943, 7.3701, 7.3458, 7.3858, 7.4279, 7.4068, 7.5165, 7.5854, 7.5604, 7.6104, 7.6437, 7.7865, 7.7623, 7.7349, 7.7097, 7.6858, 7.7194, 7.693, 7.7267, 7.7103, 7.6906, 7.7207, 7.702, 7.6818, 7.6128, 7.5918, 7.5741, 7.6033, 7.5868, 7.5659, 7.5547, 7.5541, 7.5395, 7.53, 7.5614, 7.5939, 7.5736, 7.6018, 7.5846, 7.5714, 7.6009, 7.5838, 7.5647, 7.5614, 7.507, 7.4882, 7.4785, 7.4691, 7.4139, 7.4077, 7.3979, 7.3834, 7.3732, 7.3571, 7.3894, 7.3776, 7.3631, 7.4972, 7.485, 7.4772, 7.4666, 7.4511, 7.4763, 7.5023, 7.527, 7.5128, 7.4983, 7.525, 7.5484, 7.5712, 7.557, 7.5424, 7.5278, 7.5129, 7.5083, 7.4974, 7.4854, 7.4726, 7.4592, 7.4808, 7.5028, 7.5243, 7.513, 7.503, 7.5237, 7.5116, 7.5004, 7.4896, 7.4843, 7.4721, 7.4794, 7.4705, 7.4588, 7.4484, 7.4679, 7.4552, 7.4437, 7.4411, 7.4287, 7.4169, 7.4059, 7.395, 7.3832, 7.4021, 7.3914, 7.3853, 7.4085, 7.4545, 7.4992, 7.517, 7.5351, 7.5562, 7.5721, 7.5645, 7.5599, 7.5777, 7.5671, 7.5847, 7.6019, 7.6233, 7.6702, 7.6855, 7.6788, 7.6698, 7.6587, 7.6468, 7.6368, 7.6281, 7.647, 7.6387, 7.6383, 7.6291, 7.6205, 7.6146, 7.6056, 7.5959, 7.6102, 7.6051, 7.5947, 7.5882, 7.5807, 7.5949, 7.588, 7.5803, 7.5713, 7.5658, 7.5575, 7.5498, 7.5403, 7.537, 7.5299, 7.5234, 7.4951, 7.5084, 7.5263, 7.5189, 7.5348, 7.5528, 7.5243, 7.5586, 7.6159, 7.5871, 7.5818, 7.5948, 7.5863, 7.5788, 7.5736, 7.5645, 7.5566, 7.5489, 7.5627, 7.5539, 7.545, 7.5373, 7.5401, 7.5528, 7.5465, 7.5735, 7.5744, 7.5871, 7.5781, 7.5708, 7.5842, 7.5958, 7.5866, 7.5786, 7.5711, 7.5637, 7.5573, 7.5542, 7.546, 7.539, 7.5499, 7.5416, 7.5355, 7.5274, 7.5584, 7.5503, 7.5606, 7.5544, 7.546, 7.5379, 7.5299, 7.5218, 7.5343, 7.5447, 7.5371, 7.532, 7.5433, 7.5545, 7.5683, 7.5609, 7.5377, 7.5307, 7.5235, 7.5175, 7.5118, 7.5227, 7.5158, 7.4928, 7.4883, 7.4854, 7.4785, 7.4563, 7.4676, 7.4632, 7.4747, 7.4676, 7.4609, 7.4561, 7.4495, 7.4427, 7.4485, 7.4596, 7.4707, 7.4643, 7.4744, 7.4674, 7.4604, 7.4538, 7.4469, 7.4578, 7.4511, 7.4616, 7.4722, 7.4827, 7.4802, 7.4905, 7.4697, 7.4491, 7.459, 7.4531, 7.4487, 7.442, 7.4207, 7.4143, 7.4093, 7.4211, 7.4155, 7.4093, 7.4195, 7.4133, 7.4071, 7.4019, 7.396, 7.406, 7.4168, 7.4129, 7.4069, 7.4017, 7.3959, 7.392, 7.3868, 7.3842, 7.3952, 7.4134, 7.408, 7.4022, 7.398, 7.3786, 7.3881, 7.3852, 7.3674, 7.3617, 7.3593, 7.3566, 7.3384, 7.3333, 7.3282, 7.3245, 7.3212, 7.3171, 7.3981, 7.4076, 7.389, 7.399, 7.3935, 7.3891, 7.3847, 7.3793, 7.3881, 7.3827, 7.3786, 7.3756, 7.3832, 7.4056, 7.4007, 7.3832, 7.3778, 7.3733, 7.3681, 7.3776, 7.3743, 7.3694, 7.3647, 7.3598, 7.3545, 7.3632, 7.3582, 7.3547, 7.3629, 7.3591, 7.3677, 7.3655, 7.3619, 7.3576, 7.3528, 7.3362, 7.3452, 7.354, 7.3372, 7.3339, 7.3432, 7.3269, 7.3225, 7.321, 7.3184, 7.3269, 7.323, 7.3073, 7.3026, 7.2977, 7.2945, 7.2898, 7.3383, 7.3338, 7.3311, 7.3267, 7.3217, 7.3301, 7.3315, 7.3348, 7.3302, 7.3272, 7.338, 7.3457, 7.3413, 7.337, 7.333, 7.3412, 7.3466, 7.3436, 7.3391, 7.3416, 7.343, 7.3383, 7.3335, 7.3991, 7.396, 7.3928, 7.3906, 7.3864, 7.394, 7.3892, 7.3876, 7.3947, 7.39, 7.3856, 7.393, 7.4002, 7.3965, 7.4038, 7.411, 7.4077, 7.4147, 7.4103, 7.3955, 7.3911, 7.3869, 7.3824, 7.3789, 7.3746, 7.3705, 7.367, 7.3625, 7.369, 7.3764, 7.3724, 7.3795, 7.3755, 7.3717, 7.3686, 7.3665, 7.3631, 7.3592, 7.3667, 7.3623, 7.3602, 7.375, 7.3717, 7.3699, 7.3766, 7.3732, 7.3692, 7.377, 7.3834, 7.3822, 7.3802, 7.3763, 7.3734, 7.3691, 7.3693, 7.3676, 7.3637, 7.3598, 7.3579, 7.3649, 7.3637, 7.3719, 7.368, 7.3756, 7.3726, 7.3686, 7.3648, 7.3611, 7.358, 7.3555, 7.3625, 7.3587, 7.3548, 7.352, 7.3578, 7.355, 7.3518, 7.3486, 7.3483, 7.3448, 7.3411, 7.3479, 7.3453, 7.3424, 7.3396, 7.3358, 7.3321, 7.3298, 7.3295, 7.3311, 7.3301, 7.3281, 7.3249, 7.3221, 7.3185, 7.3095, 7.3067, 7.2949, 7.3016, 7.2998, 7.2972, 7.3032, 7.2998, 7.2965, 7.2929, 7.2892, 7.2861, 7.2825, 7.2707, 7.2676, 7.264, 7.2624, 7.2687, 7.2653, 7.2619, 7.2685, 7.2673, 7.2657, 7.2626, 7.2591, 7.2561, 7.2538, 7.2534, 7.2508, 7.2482, 7.2449, 7.2416, 7.2383, 7.2447, 7.2431, 7.24, 7.246, 7.2435, 7.2415, 7.2394, 7.2374, 7.2432, 7.2399, 7.2368, 7.2334, 7.2309, 7.2286, 7.2278, 7.2335, 7.2328, 7.2217, 7.2185, 7.2256, 7.2229, 7.2288, 7.2275, 7.2244, 7.2222, 7.2113, 7.2098, 7.2077, 7.2058, 7.2028, 7.2377, 7.2432, 7.2406, 7.2376, 7.2347, 7.2407, 7.2382, 7.2354, 7.2245, 7.2214, 7.2193, 7.2171, 7.2232, 7.221, 7.2264, 7.2318, 7.2286, 7.2261, 7.2229, 7.2201, 7.2173, 7.2233, 7.2298, 7.23, 7.2273, 7.2248, 7.2224, 7.2279, 7.2249, 7.2218, 7.2188, 7.217, 7.2138, 7.2108, 7.2093, 7.2063, 7.2041, 7.2015, 7.1991, 7.1961, 7.1936, 7.1912, 7.1969, 7.1944, 7.2002, 7.1976, 7.1955, 7.1941, 7.1912, 7.1981, 7.1967, 7.1937, 7.191, 7.1897, 7.1869, 7.1772, 7.1746, 7.1722, 7.1704, 7.1754, 7.1741, 7.1802, 7.1784, 7.1836, 7.1892, 7.1864, 7.1846, 7.1827, 7.1802, 7.1865, 7.1837, 7.181, 7.1872, 7.1845, 7.183, 7.1883, 7.1931, 7.1913, 7.1885, 7.1859, 7.1919, 7.1896, 7.1951, 7.1931, 7.1931, 7.1981, 7.1957, 7.2009, 7.2061, 7.211, 7.2113, 7.2091, 7.2065, 7.2039, 7.2014, 7.1991, 7.2043, 7.2017, 7.2074, 7.2131, 7.2119, 7.2144, 7.212, 7.2175, 7.2241, 7.2216, 7.2271, 7.2328, 7.2304, 7.228, 7.226, 7.2337, 7.2326, 7.2561, 7.2537, 7.2511, 7.2484, 7.2595, 7.2571, 7.2548, 7.2678, 7.2661, 7.264, 7.2621, 7.2601, 7.2707, 7.2681, 7.2661, 7.2641, 7.2616, 7.2591, 7.2629, 7.2539, 7.2529, 7.2573, 7.2554, 7.2555, 7.2532, 7.252, 7.2501, 7.2556, 7.2532, 7.2509, 7.2496, 7.2472, 7.2446, 7.2421, 7.2397, 7.2372, 7.2347, 7.2368, 7.2418, 7.2345, 7.2324, 7.2376, 7.2363, 7.2275, 7.2403, 7.2385, 7.2435, 7.2438, 7.2482, 7.247, 7.2451, 7.2501, 7.2483, 7.246, 7.2442, 7.2425, 7.2466, 7.2444, 7.2418, 7.2409, 7.2383, 7.2363, 7.2351, 7.2407, 7.2395, 7.2372, 7.2354, 7.2337, 7.2318, 7.2293, 7.2268, 7.2318, 7.2363, 7.2415, 7.2398, 7.2374, 7.2421, 7.2404, 7.2457, 7.2504, 7.2488, 7.2535, 7.2521, 7.2612, 7.2587, 7.2567, 7.2609, 7.2655, 7.2697, 7.2675, 7.2654, 7.2633, 7.2702, 7.2678, 7.2688, 7.2679, 7.2718, 7.2758, 7.2734, 7.2775, 7.2816, 7.2797, 7.2774, 7.2751, 7.2727, 7.2703, 7.2746, 7.2729, 7.2714, 7.2689, 7.2858, 7.2903, 7.2822, 7.2798, 7.2784, 7.2828, 7.2807, 7.2788, 7.2769, 7.2852, 7.2895, 7.2932, 7.2974, 7.2956, 7.2934, 7.2912, 7.2888, 7.2869, 7.2851, 7.2828, 7.2828, 7.294, 7.3229, 7.3207, 7.3187, 7.3108, 7.3091, 7.307, 7.3049, 7.3028, 7.307, 7.3056, 7.3162, 7.3141, 7.3066, 7.3043, 7.3023, 7.2965, 7.3004, 7.2982, 7.296, 7.2937, 7.2914, 7.2903, 7.2882, 7.2921, 7.2961, 7.2938, 7.2862, 7.2851, 7.2837, 7.2822, 7.2925, 7.2931, 7.2914, 7.2898, 7.2936, 7.2914, 7.2908, 7.2948, 7.2927, 7.291, 7.2889, 7.3026, 7.301, 7.3222, 7.32, 7.3184, 7.3176, 7.3215, 7.3199, 7.3184, 7.3174, 7.3158, 7.3142, 7.3132, 7.311, 7.3102, 7.3087, 7.3077, 7.3056, 7.3038, 7.3074, 7.3052, 7.303, 7.3066, 7.3049, 7.3028, 7.3068, 7.3053, 7.304, 7.308, 7.3059, 7.3042, 7.302, 7.3059, 7.3098, 7.3076, 7.3115, 7.3161, 7.3232, 7.3211, 7.319, 7.3176, 7.3212, 7.3258, 7.3247, 7.3231, 7.321, 7.3191, 7.3231, 7.3214, 7.3252, 7.3289, 7.3267, 7.3246, 7.3229, 7.3224, 7.3212, 7.32, 7.3236, 7.326, 7.3241, 7.3179, 7.3164, 7.3202, 7.3133, 7.3121, 7.31, 7.3086, 7.3069, 7.3053, 7.3035, 7.3018, 7.2957, 7.2891, 7.2871, 7.287, 7.2849, 7.2828, 7.2811, 7.2796, 7.2777, 7.2764, 7.2745, 7.2736, 7.2715, 7.2705, 7.2747, 7.2733, 7.2669, 7.2707, 7.2687, 7.2619, 7.2601, 7.2637, 7.2637, 7.267, 7.2658, 7.2639, 7.2621, 7.2607, 7.2588, 7.2629, 7.2613, 7.2594, 7.2632, 7.2627, 7.2608, 7.2597, 7.2531, 7.2516, 7.2448, 7.2435, 7.2579, 7.2562, 7.2557, 7.2623, 7.2603, 7.2589, 7.2577, 7.2559, 7.2541, 7.2524, 7.2509, 7.249, 7.2566, 7.2551, 7.2484, 7.2467, 7.2448, 7.2481, 7.2463, 7.245, 7.2432, 7.2465, 7.2455, 7.2438, 7.2373, 7.2354, 7.2343, 7.2377, 7.2358, 7.2392, 7.2388, 7.237, 7.2353, 7.2335, 7.2324, 7.2312, 7.2359, 7.2353, 7.2343, 7.2335, 7.2334, 7.2371, 7.2359, 7.234, 7.2327, 7.2308, 7.229, 7.2272, 7.2259, 7.2247, 7.2233, 7.2215, 7.225, 7.2239, 7.2273, 7.2265, 7.2252, 7.2236, 7.227, 7.2256, 7.2241, 7.2229, 7.2265, 7.2248, 7.2233, 7.2216, 7.2249, 7.2281, 7.2268, 7.2398, 7.2384, 7.2372, 7.2404, 7.2393, 7.2379, 7.237, 7.2358, 7.2341, 7.2324, 7.2316, 7.2299, 7.2391, 7.2572, 7.2555, 7.2547, 7.258, 7.2613, 7.2597, 7.259, 7.2572, 7.2619, 7.2653, 7.2639, 7.2672, 7.2654, 7.2686, 7.2669, 7.2673, 7.2656, 7.264, 7.2625, 7.2621, 7.2626, 7.2683, 7.2622, 7.2669, 7.2654, 7.2738, 7.2819, 7.281, 7.2792, 7.2875, 7.2857, 7.2843, 7.2827, 7.2908, 7.2899, 7.2893, 7.2879, 7.2914, 7.2901, 7.2933, 7.2919, 7.291, 7.2925, 7.2914, 7.2899, 7.2884, 7.2869, 7.2852, 7.2884, 7.2874, 7.2857, 7.2841, 7.2881, 7.2865, 7.2809, 7.2794, 7.2828, 7.2861, 7.2891, 7.2833, 7.282, 7.2805, 7.279, 7.279, 7.2787, 7.277, 7.2762, 7.2747, 7.2777, 7.2761, 7.2752, 7.2738, 7.2728, 7.2716, 7.2699, 7.2739, 7.2768, 7.2751, 7.274, 7.2723, 7.2707, 7.2734, 7.2722, 7.2707, 7.2692, 7.2676, 7.2663, 7.2605, 7.2634, 7.2619, 7.2649, 7.2633, 7.2661, 7.2645, 7.2634, 7.2723, 7.2798, 7.2783, 7.2775, 7.276, 7.2743, 7.2728, 7.2758, 7.2749, 7.2734, 7.2735, 7.2728, 7.2711, 7.2704, 7.2687, 7.2677, 7.2624, 7.2611, 7.2595, 7.2583, 7.2572, 7.2647, 7.2639, 7.2624, 7.2611, 7.2597, 7.2586, 7.2616, 7.2602, 7.2595, 7.2579, 7.2566, 7.2593, 7.2584, 7.2572, 7.2559, 7.255, 7.2537, 7.2572, 7.2599, 7.2586, 7.2571, 7.2604, 7.259, 7.2574, 7.256, 7.2545, 7.2575, 7.2559, 7.2544, 7.2536, 7.2522, 7.2512, 7.2498, 7.2484, 7.2482, 7.2469, 7.2453, 7.2441, 7.2471, 7.2503, 7.2489, 7.2519, 7.2505, 7.2497, 7.2483, 7.2469, 7.2455, 7.2445, 7.2435, 7.2432, 7.2464, 7.2451, 7.2438, 7.2429, 7.2416, 7.2441, 7.2433, 7.2421, 7.2413, 7.24, 7.2395, 7.2381, 7.2373, 7.2359, 7.2308, 7.2346, 7.2337, 7.2354, 7.2347, 7.2339, 7.2327, 7.2323, 7.231, 7.2339, 7.2368, 7.2375, 7.2361, 7.2321, 7.2308, 7.2294, 7.2282, 7.2268, 7.2297, 7.2287, 7.2276, 7.231, 7.2299, 7.2287, 7.2273, 7.2262, 7.2255, 7.2247, 7.2237, 7.2223, 7.2215, 7.2247, 7.2239, 7.2228, 7.2256, 7.2246, 7.2276, 7.2264, 7.233, 7.2318, 7.2302, 7.2293, 7.2323, 7.2351, 7.2338, 7.2323, 7.2353, 7.2343, 7.234, 7.2367, 7.2353, 7.2338, 7.237, 7.236, 7.2347, 7.2367, 7.2395, 7.2382, 7.2369, 7.2356, 7.2348, 7.2374, 7.2404, 7.2391, 7.2391, 7.239, 7.2376, 7.2366, 7.2362, 7.2349, 7.2337, 7.2297, 7.2284, 7.2279, 7.2305, 7.2309, 7.2318, 7.2306, 7.2298, 7.2289, 7.2278, 7.2235, 7.2197, 7.2184, 7.2282, 7.2268, 7.2255, 7.2218, 7.2205, 7.2233, 7.2223, 7.221, 7.2202, 7.2188, 7.2174, 7.2166, 7.216, 7.2147, 7.2133, 7.2134, 7.2121, 7.2112, 7.2112, 7.2138, 7.2129, 7.2081, 7.207, 7.2096, 7.2083, 7.2069, 7.2055, 7.2043, 7.207, 7.2061, 7.2051, 7.2038, 7.2024, 7.2015, 7.2002, 7.1989, 7.1977, 7.1966, 7.1992, 7.1983, 7.197, 7.1957, 7.1945, 7.1969, 7.1996, 7.2027, 7.2014, 7.2166, 7.2152, 7.2142, 7.2131, 7.2125, 7.2113, 7.2104, 7.2092, 7.2084, 7.207, 7.2097, 7.2085, 7.2074, 7.2062, 7.2049, 7.2036, 7.2063, 7.2051, 7.2043, 7.2038, 7.2047, 7.2034, 7.2024, 7.1977, 7.2003, 7.203, 7.2056, 7.2046, 7.2075, 7.2077, 7.2103, 7.2094, 7.2126, 7.2156, 7.2109, 7.2113, 7.2158, 7.2222, 7.2213, 7.2235, 7.2225, 7.2302, 7.233, 7.2321, 7.2307, 7.2296, 7.2283, 7.2309, 7.2356, 7.2381, 7.2368, 7.2355, 7.2353, 7.2344, 7.2368, 7.2357, 7.2459, 7.2449, 7.2436, 7.2423, 7.2415, 7.2439, 7.2428, 7.2449, 7.2474, 7.2503, 7.2492, 7.2483, 7.2473, 7.2474, 7.2464, 7.2488, 7.2478, 7.2432, 7.2426, 7.2414, 7.24, 7.239, 7.238, 7.2369, 7.2357, 7.2372, 7.2361, 7.235, 7.2342, 7.233, 7.2358, 7.2345, 7.2376, 7.2398, 7.2405, 7.2392, 7.2381, 7.2377, 7.2366, 7.2356, 7.2348, 7.2335, 7.2325, 7.232, 7.2312, 7.2313, 7.2302, 7.229, 7.2279, 7.2278, 7.2276, 7.2265, 7.2252, 7.2242, 7.2263, 7.2284, 7.2272, 7.2264, 7.2253, 7.224, 7.2236, 7.2224, 7.2212, 7.22, 7.2224, 7.2247, 7.2255, 7.2245, 7.2232, 7.2224, 7.2216, 7.221, 7.2205, 7.2194, 7.2218, 7.221, 7.2167, 7.2161, 7.2155, 7.2143, 7.2137, 7.2128, 7.2221, 7.2213, 7.22, 7.2157, 7.2146, 7.2145, 7.2133, 7.214, 7.2128, 7.2152, 7.2141, 7.2128, 7.2128, 7.2117, 7.2107, 7.213, 7.2119, 7.2113, 7.2105, 7.2128, 7.2119, 7.2108, 7.2095, 7.2089, 7.2078, 7.2168, 7.2189, 7.2178, 7.2171, 7.2262, 7.2252, 7.2244, 7.2305, 7.2293, 7.2316, 7.2339, 7.2331, 7.232, 7.231, 7.2299, 7.2287, 7.2276, 7.2297, 7.2285, 7.2272, 7.2263, 7.2343, 7.2366, 7.2356, 7.2348, 7.237, 7.2362, 7.235, 7.234, 7.2366, 7.2375, 7.2415, 7.2408, 7.2398, 7.2388, 7.2384, 7.2372, 7.2366, 7.2354, 7.2348, 7.2337, 7.2325, 7.2314, 7.2302, 7.2297, 7.2299, 7.2333, 7.2323, 7.2333, 7.2322, 7.231, 7.2333, 7.2321, 7.2309, 7.2297, 7.2289, 7.2277, 7.227, 7.2333, 7.2336, 7.2341, 7.2344, 7.2336, 7.2324, 7.2314, 7.2308, 7.2328, 7.2316, 7.2304, 7.2298, 7.2316, 7.2338, 7.2329, 7.2318, 7.2316, 7.2305, 7.2294, 7.2255, 7.2244, 7.2235, 7.2223, 7.2244, 7.2235, 7.2227, 7.2217, 7.2206, 7.2195, 7.2188, 7.221, 7.2199, 7.2188, 7.2183, 7.2204, 7.2225, 7.2279, 7.2268, 7.229, 7.2281, 7.2274, 7.2263, 7.2252, 7.2246, 7.2243, 7.2232, 7.2221, 7.2213, 7.2205, 7.2194, 7.2199, 7.2187, 7.2179, 7.217, 7.2171, 7.2195, 7.2183, 7.2204, 7.2224, 7.2217, 7.2207, 7.2199, 7.2193, 7.2181, 7.2204, 7.2194, 7.2188, 7.2212, 7.2206, 7.2194, 7.219, 7.2213, 7.2289, 7.2278, 7.227, 7.229, 7.2279, 7.227, 7.2262, 7.2281, 7.2244, 7.2235, 7.2255, 7.2247, 7.2236, 7.2257, 7.2249, 7.2242, 7.2233, 7.2222, 7.2215, 7.2209, 7.2202, 7.2195, 7.2186, 7.2177, 7.2166, 7.2156, 7.2147, 7.2136, 7.2129, 7.2151, 7.2175, 7.2168, 7.219, 7.2179, 7.217, 7.219, 7.2182, 7.2179, 7.2167, 7.2156, 7.2145, 7.2136, 7.2126, 7.2089, 7.2082, 7.2103, 7.2124, 7.2116, 7.211, 7.2195, 7.2157, 7.215, 7.2143, 7.2134, 7.2153, 7.2148, 7.2167, 7.2188, 7.2178, 7.2167, 7.2156, 7.2152, 7.2148, 7.2142, 7.2163, 7.2184, 7.2174, 7.2167, 7.2158, 7.218, 7.217, 7.2173, 7.2165, 7.2158, 7.2179, 7.2168, 7.2187, 7.2179, 7.2201, 7.2225, 7.2218, 7.2215, 7.2204, 7.2193, 7.2187, 7.2176, 7.2168, 7.2159, 7.2177, 7.214, 7.2159, 7.215, 7.217, 7.224, 7.2212, 7.2219, 7.2281, 7.2273, 7.2264, 7.2364, 7.2386, 7.2386, 7.2378, 7.2398, 7.2387, 7.2376, 7.2366, 7.233, 7.2319, 7.2309, 7.2272, 7.2261, 7.225, 7.2248, 7.2269, 7.2287, 7.2308, 7.2298, 7.2296, 7.2288, 7.2282, 7.2272, 7.2332, 7.2325, 7.2314, 7.2305, 7.2294, 7.2287, 7.2305, 7.2295, 7.2286, 7.2304, 7.2295, 7.229, 7.2356, 7.232, 7.2314, 7.2307, 7.2299, 7.232, 7.2342, 7.2337, 7.2327, 7.2319, 7.2309, 7.2329, 7.2349, 7.2344, 7.2369, 7.2389, 7.2378, 7.2368, 7.2374, 7.2391, 7.2381, 7.2417, 7.2438, 7.2411, 7.2374, 7.2347, 7.2399, 7.2417, 7.2408, 7.2398, 7.239, 7.2409, 7.2403, 7.2395, 7.2385, 7.2375, 7.2393, 7.2413, 7.2403, 7.2393, 7.2386, 7.2376, 7.2369, 7.236, 7.235, 7.2472, 7.2492, 7.2482, 7.2476, 7.2466, 7.2485, 7.2518, 7.2509, 7.256, 7.255, 7.2572, 7.2545, 7.2551, 7.2544, 7.2515, 7.2515, 7.2548, 7.2538, 7.253, 7.2532, 7.2523, 7.2577, 7.2595, 7.2587, 7.2583, 7.2574, 7.2624, 7.2668, 7.2663, 7.268, 7.267, 7.2668, 7.2635, 7.2625, 7.2618, 7.2636, 7.2655, 7.2673, 7.2663, 7.2652, 7.267, 7.2689, 7.2679, 7.2675, 7.2698, 7.2689, 7.2679, 7.2699, 7.269, 7.272, 7.2755, 7.2746, 7.2737, 7.2757, 7.2774, 7.2767, 7.2757, 7.2777, 7.2775, 7.2794, 7.2784, 7.2776, 7.2769, 7.2793, 7.2812, 7.2802, 7.2792, 7.2787, 7.2779, 7.2743, 7.2716, 7.2681, 7.2676, 7.2696, 7.2702, 7.2695, 7.2697, 7.269, 7.2709, 7.2703, 7.2693, 7.2683, 7.2676, 7.2681, 7.2685, 7.2677, 7.2669, 7.2691, 7.2683, 7.2673, 7.2641, 7.2635, 7.2714, 7.2705, 7.2722, 7.2715, 7.2708, 7.2698, 7.2688, 7.2732, 7.2722, 7.272, 7.2714, 7.273, 7.2721, 7.2714, 7.2732, 7.2723, 7.2714, 7.2704, 7.2723, 7.2739, 7.2818, 7.2808, 7.2798, 7.2817, 7.2835, 7.283, 7.2822, 7.2834, 7.286, 7.2879, 7.2871, 7.2889, 7.2879, 7.287, 7.2861, 7.2828, 7.282, 7.2814, 7.2805, 7.2796, 7.2788, 7.278, 7.2796, 7.2789, 7.2782, 7.2774, 7.2768, 7.276, 7.2778, 7.2796, 7.2797, 7.2764, 7.2755, 7.2746, 7.2764, 7.276, 7.2756, 7.2774, 7.2765, 7.2756, 7.2748, 7.2764, 7.2757, 7.275, 7.2743, 7.2734, 7.2754, 7.2769, 7.2759, 7.2775, 7.277, 7.2761, 7.2751, 7.2768, 7.2758, 7.2726, 7.2716, 7.2721, 7.2762, 7.2754, 7.2771, 7.2761, 7.2757, 7.2775, 7.2743, 7.2739, 7.2733, 7.2729, 7.2823, 7.2814, 7.2834, 7.2825, 7.2827, 7.2826, 7.2819, 7.2815, 7.2806, 7.2798, 7.2791, 7.2785, 7.2805, 7.2821, 7.2812, 7.2804, 7.2796, 7.2788, 7.2778, 7.2789, 7.2781, 7.2771, 7.2763, 7.2754, 7.2745, 7.2739, 7.2762, 7.2783, 7.28, 7.2818, 7.2811, 7.2829, 7.282, 7.2813, 7.2803, 7.2795, 7.2812, 7.2803, 7.282, 7.2811, 7.2802, 7.2821, 7.2814, 7.2804, 7.2816, 7.2808, 7.2799, 7.2816, 7.2834, 7.2825, 7.2816, 7.2857, 7.2847, 7.2838, 7.2855, 7.2846, 7.2837, 7.2831, 7.2825, 7.2818, 7.2809, 7.2826, 7.284, 7.2831, 7.2826, 7.2819, 7.2787, 7.2804, 7.2823, 7.284, 7.2831, 7.2822, 7.2814, 7.2806, 7.2797, 7.2788, 7.2779, 7.277, 7.2787, 7.2781, 7.2796, 7.2794, 7.2811, 7.2802, 7.2818, 7.2836, 7.2831, 7.2849, 7.2841, 7.2837, 7.2828, 7.282, 7.2813, 7.2805, 7.2796, 7.2786, 7.2807, 7.2825, 7.2818, 7.2817, 7.281, 7.2805, 7.2804, 7.2795, 7.2787, 7.278, 7.2773, 7.2793, 7.2811, 7.2808, 7.28, 7.2808, 7.2801, 7.2771, 7.2762, 7.2753, 7.2747, 7.2762, 7.2755, 7.275, 7.2766, 7.2759, 7.275, 7.2765, 7.2757, 7.2753, 7.2748, 7.2741, 7.2736, 7.2727, 7.2719, 7.2736, 7.2728, 7.2744, 7.2735, 7.275, 7.2747, 7.2739, 7.2732, 7.277, 7.2761, 7.2755, 7.2749, 7.2743, 7.2735, 7.2727, 7.2718, 7.2713, 7.2709, 7.276, 7.2777, 7.2769, 7.2761, 7.2761, 7.2762, 7.2759, 7.2777, 7.277, 7.2767, 7.2758, 7.2752, 7.2746, 7.2738, 7.2731, 7.2743, 7.2737, 7.2736, 7.2752, 7.2743, 7.276, 7.2759, 7.2753, 7.2724, 7.274, 7.2732, 7.275, 7.2743, 7.2734, 7.2727, 7.2746, 7.2738, 7.2731, 7.2723, 7.2715, 7.2708, 7.2733, 7.2725, 7.2718, 7.2714, 7.2709, 7.2724, 7.274, 7.2739, 7.273, 7.2727, 7.2719, 7.2712, 7.2707, 7.2698, 7.269, 7.269, 7.2685, 7.2685, 7.2679, 7.273, 7.2721, 7.2736, 7.2751, 7.2743, 7.2761, 7.2812, 7.2805, 7.2835, 7.2852, 7.2868, 7.2883, 7.2876, 7.2869, 7.2869, 7.2861, 7.2853, 7.2846, 7.2863, 7.2856, 7.2847, 7.284, 7.2831, 7.2829, 7.2823, 7.2815, 7.2807, 7.2799, 7.2793, 7.2785, 7.2779, 7.2775, 7.2793, 7.2785, 7.2777, 7.2792, 7.2786, 7.2802, 7.2793, 7.279, 7.2786, 7.2778, 7.2808, 7.2821, 7.2813, 7.2807, 7.2822, 7.2813, 7.2809, 7.2801, 7.2794, 7.2789, 7.278, 7.2794, 7.2785, 7.2782, 7.2797, 7.279, 7.2783, 7.2778, 7.2775, 7.2771, 7.2788, 7.2781, 7.2778, 7.2773, 7.2749, 7.2741, 7.2735, 7.275, 7.2751, 7.2767, 7.276, 7.2783, 7.2775, 7.2767, 7.276, 7.2752, 7.2769, 7.2762, 7.2755, 7.2748, 7.2742, 7.2734, 7.2726, 7.272, 7.2737, 7.2729, 7.2737, 7.2734, 7.2729, 7.2744, 7.2759, 7.2751, 7.2747, 7.2738, 7.2733, 7.2748, 7.2742, 7.2757, 7.2729, 7.2742, 7.2734, 7.2725, 7.2742, 7.2736, 7.2751, 7.2723, 7.2738, 7.273, 7.2744, 7.2738, 7.2732, 7.2748, 7.2742, 7.2734, 7.2729, 7.2721, 7.2715, 7.273, 7.2722, 7.2736, 7.2732, 7.2726, 7.2718, 7.2711, 7.2703, 7.2695, 7.269, 7.2738, 7.2732, 7.2724, 7.2716, 7.2708, 7.2701, 7.2693, 7.2709, 7.2703, 7.2677, 7.2692, 7.2686, 7.2701, 7.2721, 7.2714, 7.2706, 7.2721, 7.2714, 7.2713, 7.2707, 7.2705, 7.2698, 7.2691, 7.2686, 7.2678, 7.2692, 7.2684, 7.2679, 7.2684, 7.2698, 7.2695, 7.271, 7.2707, 7.2733, 7.2747, 7.274, 7.2734, 7.2729, 7.2722, 7.2715, 7.2709, 7.2703, 7.2697, 7.2712, 7.2727, 7.2719, 7.2734, 7.2729, 7.2721, 7.2714, 7.2708, 7.2722, 7.2714, 7.2728, 7.2722, 7.2736, 7.2729, 7.2721, 7.2736, 7.2729, 7.2791, 7.2783, 7.2776, 7.2791, 7.2783, 7.2777, 7.2772, 7.2765, 7.276, 7.2754, 7.2747, 7.2804, 7.2811, 7.2805, 7.2778, 7.2772, 7.2765, 7.2757, 7.2749, 7.2741, 7.2734, 7.2727, 7.2721, 7.2717, 7.2711, 7.2746, 7.2761, 7.2756, 7.2769, 7.2784, 7.2779, 7.2771, 7.2763, 7.2755, 7.2748, 7.2741, 7.2734, 7.2726, 7.2719, 7.2716, 7.273, 7.2726, 7.275, 7.2746, 7.2738, 7.2752, 7.2749, 7.2764, 7.2756, 7.2749, 7.2742, 7.2739, 7.2739, 7.2753, 7.2752, 7.2745, 7.2763, 7.2758, 7.2774, 7.2769, 7.2761, 7.2753, 7.2745, 7.274, 7.2734, 7.2748, 7.2741, 7.2737, 7.273, 7.2726, 7.2718, 7.271, 7.2703, 7.2695, 7.2689, 7.2703, 7.2695, 7.2687, 7.2662, 7.2659, 7.2652, 7.2645, 7.2637, 7.2623, 7.2618, 7.2613, 7.2607, 7.2624, 7.262, 7.266, 7.2676, 7.2669, 7.2662, 7.2657, 7.2651, 7.2645, 7.2661, 7.2658, 7.2653, 7.2646, 7.2639, 7.2652, 7.2646, 7.2659, 7.2652, 7.2644, 7.2637, 7.2633, 7.2731, 7.2725, 7.2739, 7.2732, 7.2729, 7.2725, 7.2739, 7.2736, 7.2729, 7.2743, 7.2737, 7.2732, 7.2725, 7.2717, 7.2709, 7.2701, 7.2715, 7.2731, 7.2725, 7.2718, 7.2711, 7.2705, 7.2719, 7.2712, 7.2707, 7.2699, 7.2691, 7.2683, 7.2679, 7.2672, 7.2666, 7.266, 7.2653, 7.2648, 7.2662, 7.2676, 7.2671, 7.2664, 7.27, 7.2695, 7.2688, 7.2663, 7.2656, 7.2651, 7.2644, 7.2637, 7.2744, 7.2761, 7.2754, 7.2766, 7.2762, 7.2775, 7.2767, 7.2762, 7.2754, 7.2746, 7.274, 7.2734, 7.2746, 7.2739, 7.2752, 7.2745, 7.2719, 7.2713, 7.2705, 7.2719, 7.2734, 7.2728, 7.2724, 7.2717, 7.2691, 7.2683, 7.2676, 7.2669, 7.2662, 7.2658, 7.2672, 7.2726, 7.2719, 7.2714, 7.2708, 7.2716, 7.2712, 7.2706, 7.2722, 7.2715, 7.2711, 7.2725, 7.2719, 7.2713, 7.2707, 7.27, 7.2714, 7.2708, 7.2701, 7.2694, 7.2706, 7.2719, 7.2711, 7.2716, 7.2709, 7.2702, 7.2715, 7.2707, 7.2701, 7.2694, 7.2686, 7.2699, 7.2692, 7.2686, 7.2698, 7.2695, 7.2689, 7.2681, 7.2695, 7.2689, 7.2683, 7.2676, 7.2671, 7.2686, 7.2679, 7.2672, 7.2666, 7.266, 7.2654, 7.2649, 7.2663, 7.2655, 7.2672, 7.2686, 7.27, 7.2715, 7.2728, 7.2721, 7.2723, 7.2718, 7.2731, 7.2745, 7.274, 7.2747, 7.274, 7.2721, 7.2754, 7.2747, 7.2763, 7.2758, 7.2773, 7.2767, 7.2761, 7.2779, 7.2788, 7.2801, 7.2797, 7.2792, 7.2796, 7.2809, 7.2803, 7.2798, 7.2811, 7.2807, 7.2801, 7.2794, 7.279, 7.2783, 7.2777, 7.277, 7.2764, 7.2759, 7.2752, 7.2766, 7.2759, 7.2753, 7.2769, 7.2784, 7.2778, 7.2771, 7.2768, 7.2762, 7.2776, 7.2769, 7.2763, 7.2775, 7.277, 7.2766, 7.2759, 7.2752, 7.2765, 7.2758, 7.2755, 7.275, 7.2743, 7.2736, 7.2732, 7.2744, 7.2757, 7.2753, 7.2746, 7.2741, 7.2737, 7.2712, 7.2725, 7.272, 7.2733, 7.2732, 7.2725, 7.2718, 7.2711, 7.2723, 7.2741, 7.2735, 7.2729, 7.2722, 7.2717, 7.2711, 7.2709, 7.2702, 7.2695, 7.2698, 7.2694, 7.2687, 7.268, 7.2693, 7.2669, 7.2683, 7.2697, 7.2691, 7.2702, 7.2703, 7.2696, 7.269, 7.274, 7.2735, 7.2728, 7.2721, 7.2717, 7.2731, 7.2724, 7.2717, 7.2729, 7.2743, 7.2736, 7.2729, 7.2722, 7.2715, 7.2728, 7.2778, 7.2773, 7.2766, 7.2759, 7.2773, 7.2788, 7.2781, 7.2774, 7.2768, 7.2761, 7.2756, 7.2751, 7.2765, 7.2796, 7.2812, 7.2805, 7.28, 7.2793, 7.2805, 7.2798, 7.2791, 7.2803, 7.28, 7.2806, 7.2802, 7.2804, 7.2819, 7.2812, 7.2807, 7.2802, 7.2815, 7.2829, 7.2842, 7.2854, 7.2868, 7.2864, 7.2858, 7.2851, 7.2845, 7.2838, 7.2833, 7.2827, 7.2821, 7.2816, 7.2829, 7.2825, 7.2841, 7.2838, 7.2871, 7.2864, 7.2858, 7.2873, 7.2866, 7.2879, 7.2888, 7.2894, 7.2889, 7.2883, 7.2876, 7.2869, 7.2846, 7.2859, 7.2857, 7.285, 7.2863, 7.2857, 7.2851, 7.2844, 7.284, 7.2817, 7.281, 7.2823, 7.2816, 7.2829, 7.2827, 7.284, 7.2836, 7.2843, 7.2844, 7.2839, 7.2832, 7.2826, 7.2824, 7.2887, 7.2883, 7.2894, 7.2889, 7.29, 7.2905, 7.2917, 7.2911, 7.2906, 7.2902, 7.2896, 7.289, 7.2883, 7.2879, 7.2872, 7.2865, 7.2861, 7.2854, 7.2847, 7.2841, 7.2834, 7.2828, 7.2823, 7.2818, 7.2794, 7.2787, 7.278, 7.2775, 7.2769, 7.2762, 7.2756, 7.275, 7.2745, 7.274, 7.2735, 7.2712, 7.2708, 7.2721, 7.2714, 7.271, 7.2703, 7.2697, 7.2692, 7.2686, 7.2679, 7.2673, 7.2667, 7.266, 7.2655, 7.2649, 7.2645, 7.2641, 7.2635, 7.2632, 7.2644, 7.2655, 7.265, 7.2667, 7.2679, 7.2673, 7.2667, 7.2699, 7.273, 7.2725, 7.2738, 7.2733, 7.2745, 7.2758, 7.2808, 7.2813, 7.2826, 7.282, 7.2814, 7.2811, 7.2808, 7.2802, 7.2796, 7.2792, 7.2805, 7.2799, 7.2794, 7.279, 7.2785, 7.2785, 7.2797, 7.2808, 7.2803, 7.28, 7.2811, 7.2823, 7.2817, 7.2813, 7.2808, 7.2786, 7.2781, 7.2776, 7.2771, 7.2766, 7.2762, 7.2774, 7.2771, 7.2764, 7.2776, 7.2771, 7.2768, 7.2762, 7.2773, 7.2766, 7.276, 7.2754, 7.2748, 7.2742, 7.2738, 7.2751, 7.2729, 7.2723, 7.2721, 7.2716, 7.2711, 7.2706, 7.27, 7.2694, 7.2725, 7.2719, 7.2729, 7.2724, 7.2719, 7.2715, 7.2711, 7.2722, 7.2733, 7.2729, 7.2723, 7.2718, 7.2712, 7.2709, 7.2705, 7.2699, 7.2711, 7.2705, 7.2717, 7.2729, 7.2723, 7.2718, 7.273, 7.2742, 7.272, 7.2714, 7.2726, 7.2725, 7.2719, 7.2723, 7.2701, 7.2695, 7.2708, 7.2702, 7.2714, 7.2708, 7.272, 7.2731, 7.2725, 7.2747, 7.2759, 7.2758, 7.2752, 7.2763, 7.2761, 7.2756, 7.275, 7.2761, 7.2772, 7.2766, 7.2762, 7.2773, 7.2769, 7.278, 7.2774, 7.277, 7.2765, 7.2758, 7.2772, 7.2783, 7.2778, 7.2771, 7.2766, 7.2759, 7.2753, 7.2764, 7.2774, 7.2769, 7.2763, 7.2773, 7.2786, 7.2779, 7.2772, 7.2767, 7.276, 7.2753, 7.2747, 7.2741, 7.2752, 7.2746, 7.2741, 7.2737, 7.2731, 7.2725, 7.2739, 7.2736, 7.2731, 7.2725, 7.272, 7.2715, 7.2726, 7.2731, 7.2725, 7.2705, 7.2699, 7.2695, 7.2707, 7.272, 7.2714, 7.2726, 7.2721, 7.2718, 7.2714, 7.2726, 7.2722, 7.2717, 7.2711, 7.2705, 7.2705, 7.27, 7.2695, 7.2691, 7.2726, 7.272, 7.2714, 7.2726, 7.272, 7.2733, 7.2745, 7.274, 7.2737, 7.2731, 7.2728, 7.2723, 7.2718, 7.2712, 7.2708, 7.2703, 7.2698, 7.2711, 7.2707, 7.2718, 7.2713, 7.2724, 7.2738, 7.2734, 7.2728, 7.2723, 7.2717, 7.2729, 7.2723, 7.2719, 7.273, 7.2725, 7.2722, 7.2716, 7.2727, 7.2722, 7.2733, 7.2713, 7.2721, 7.2715, 7.271, 7.2706, 7.27, 7.2694, 7.2688, 7.2683, 7.2677, 7.2672, 7.2667, 7.2663, 7.2658, 7.2652, 7.2664, 7.2658, 7.2653, 7.2648, 7.2644, 7.2639, 7.264, 7.2636, 7.2635, 7.263, 7.2624, 7.2619, 7.2639, 7.2652, 7.2677, 7.2739, 7.2753, 7.2747, 7.2758, 7.2752, 7.2748, 7.2742, 7.2789, 7.2785, 7.2779, 7.2808, 7.2802, 7.2802, 7.2796, 7.2808, 7.2802, 7.2814, 7.2808, 7.2803, 7.2797, 7.2804, 7.2816, 7.288, 7.2874, 7.287, 7.2864, 7.2858, 7.2852, 7.2853, 7.2847, 7.2842, 7.2838, 7.2836, 7.283, 7.2824, 7.2818, 7.2814, 7.2826, 7.2822, 7.2818, 7.2814, 7.2826, 7.2837, 7.2831, 7.2829, 7.2824, 7.2819, 7.2814, 7.2811, 7.2808, 7.2787, 7.2784, 7.2778, 7.2776, 7.2789, 7.2783, 7.2777, 7.2773, 7.2767, 7.2778, 7.2772, 7.2767, 7.2763, 7.2758, 7.2737, 7.2734, 7.2729, 7.2725, 7.272, 7.2732, 7.2716, 7.2726, 7.2721, 7.2717, 7.2727, 7.2741, 7.2752, 7.2746, 7.2742, 7.2744, 7.2748, 7.2746, 7.274, 7.2737, 7.2734, 7.2745, 7.2755, 7.2751, 7.273, 7.2724, 7.2719, 7.273, 7.2726, 7.2721, 7.2715, 7.271, 7.2705, 7.2701, 7.2695, 7.2692, 7.269, 7.2685, 7.2696, 7.269, 7.2685, 7.2696, 7.2707, 7.2704, 7.27, 7.2694, 7.2688, 7.2682, 7.2677, 7.2672, 7.2667, 7.2662, 7.2673, 7.2668, 7.2666, 7.266, 7.2655, 7.2652, 7.2667, 7.2661, 7.2676, 7.2671, 7.2681, 7.2693, 7.2706, 7.2716, 7.2711, 7.2707, 7.2701, 7.2697, 7.2693, 7.2704, 7.2716, 7.2711, 7.2705, 7.2701, 7.2697, 7.2693, 7.2688, 7.2692, 7.2687, 7.2682, 7.2677, 7.2687, 7.2667, 7.2663, 7.2674, 7.2668, 7.2664, 7.2658, 7.2671, 7.2666, 7.2662, 7.2661, 7.2674, 7.2685, 7.268, 7.2674, 7.2688, 7.2706, 7.2704, 7.2715, 7.2709, 7.272, 7.2714, 7.2712, 7.2708, 7.2703, 7.2697, 7.2691, 7.2704, 7.2714, 7.2708, 7.2702, 7.2697, 7.2694, 7.2705, 7.27, 7.2698, 7.2692, 7.2687, 7.2683, 7.2678, 7.2688, 7.2684, 7.2678, 7.2689, 7.2701, 7.2698, 7.2709, 7.2716, 7.2727, 7.2723, 7.2736, 7.2733, 7.2744, 7.2739, 7.2733, 7.2745, 7.2742, 7.2738, 7.2733, 7.2744, 7.2754, 7.2752, 7.2747, 7.2741, 7.2736, 7.2747, 7.2743, 7.274, 7.2735, 7.2731, 7.2741, 7.2737, 7.2732, 7.2727, 7.2726, 7.272, 7.2714, 7.271, 7.2704, 7.2701, 7.2713, 7.2708, 7.2704, 7.2714, 7.2711, 7.2707, 7.2702, 7.2683, 7.2677, 7.2672, 7.2671, 7.2667, 7.2661, 7.2644, 7.2639, 7.2649, 7.2661, 7.2658, 7.2653, 7.2647, 7.2643, 7.2639, 7.2636, 7.2646, 7.2631, 7.2626, 7.2639, 7.265, 7.2646, 7.2642, 7.2623, 7.2618, 7.2614, 7.2626, 7.2621, 7.2616, 7.2613, 7.261, 7.2621, 7.2615, 7.2625, 7.262, 7.2631, 7.2629, 7.2624, 7.2626, 7.2622, 7.2617, 7.2615, 7.2612, 7.2609, 7.2605, 7.2599, 7.2595, 7.2622, 7.2652, 7.2649, 7.2646, 7.264, 7.2635, 7.2631, 7.2627, 7.2623, 7.265, 7.2645, 7.2631, 7.2628, 7.2624, 7.2621, 7.2619, 7.2615, 7.2613, 7.2609, 7.2619, 7.2615, 7.261, 7.2607, 7.2602, 7.2598, 7.2593, 7.2606, 7.2601, 7.2595, 7.2605, 7.2616, 7.2612, 7.2626, 7.2627, 7.2623, 7.2633, 7.2629, 7.2626, 7.2621, 7.2615, 7.2626, 7.2622, 7.2631, 7.2626, 7.2622, 7.2634, 7.263, 7.2642, 7.2651, 7.2661, 7.2659, 7.2671, 7.2666, 7.2661, 7.2671, 7.2682, 7.2678, 7.2673, 7.2668, 7.268, 7.2675, 7.267, 7.2681, 7.2676, 7.2671, 7.2666, 7.2661, 7.2656, 7.2668, 7.2663, 7.2658, 7.2668, 7.2666, 7.2661, 7.2656, 7.2666, 7.2661, 7.2656, 7.2652, 7.2647, 7.2641, 7.2622, 7.2616, 7.2611, 7.2605, 7.2599, 7.2593, 7.2589, 7.2584, 7.2579, 7.2575, 7.2586, 7.2596, 7.2591, 7.2589, 7.2602, 7.2598, 7.2595, 7.2592, 7.2587, 7.2584, 7.2593, 7.2588, 7.2594, 7.2591, 7.2588, 7.2585, 7.2579, 7.2579, 7.2576, 7.2571, 7.2567, 7.2562, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2549, 7.2546, 7.2543, 7.2538, 7.2548, 7.2559, 7.2555, 7.2551, 7.2548, 7.2559, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2545, 7.2555, 7.2564, 7.2574, 7.257, 7.2582, 7.2577, 7.2573, 7.2569, 7.2582, 7.2577, 7.2559, 7.2554, 7.2551, 7.2562, 7.2558, 7.257, 7.2564, 7.2561, 7.2557, 7.2615, 7.2615, 7.261, 7.2635, 7.263, 7.2624, 7.2634, 7.2629, 7.2624, 7.2606, 7.2602, 7.2597, 7.2592, 7.2588, 7.2583, 7.2578, 7.2559, 7.2555, 7.2552, 7.2562, 7.2559, 7.2558, 7.2567, 7.2577, 7.2587, 7.2583, 7.2578, 7.2573, 7.2568, 7.2578, 7.2574, 7.2569, 7.2582, 7.2578, 7.2573, 7.2583, 7.2593, 7.2587, 7.2582, 7.2577, 7.2559, 7.2554, 7.2563, 7.2558, 7.2568, 7.2566, 7.2562, 7.2558, 7.2569, 7.2564, 7.2559, 7.2554, 7.255, 7.2561, 7.2556, 7.2551, 7.2547, 7.2529, 7.2524, 7.252, 7.2529, 7.2524, 7.2536, 7.2531, 7.2526, 7.2535, 7.2541, 7.2536, 7.2547, 7.2552, 7.2548, 7.2545, 7.2544, 7.2544, 7.2539, 7.2534, 7.2544, 7.2541, 7.2537, 7.2535, 7.2531, 7.2527, 7.2522, 7.2533, 7.2528, 7.2523, 7.2518, 7.2528, 7.2537, 7.2532, 7.2529, 7.2537, 7.2532, 7.2542, 7.2539, 7.2535, 7.2532, 7.253, 7.2525, 7.2539, 7.2534, 7.2543, 7.2552, 7.2549, 7.2544, 7.2539, 7.2549, 7.256, 7.2556, 7.2567, 7.2569, 7.2564, 7.2575, 7.2571, 7.2568, 7.2564, 7.256, 7.2557, 7.2567, 7.2562, 7.2558, 7.2554, 7.2551, 7.2546, 7.2557, 7.2553, 7.2549, 7.2544, 7.2539, 7.2534, 7.253, 7.2529, 7.2524, 7.2539, 7.2555, 7.2557, 7.2553, 7.2563, 7.2573, 7.2569, 7.2565, 7.2562, 7.2557, 7.2553, 7.2549, 7.2553, 7.2549, 7.2545, 7.2541, 7.2538, 7.2541, 7.2536, 7.2531, 7.2563, 7.2571, 7.2569, 7.2564, 7.2573, 7.2568, 7.2564, 7.2561, 7.2562, 7.2572, 7.2591, 7.2595, 7.2612, 7.2607, 7.2602, 7.2597, 7.2595, 7.2591, 7.2587, 7.2574, 7.2585, 7.2582, 7.2577, 7.2586, 7.2595, 7.2594, 7.2589, 7.2586, 7.2584, 7.2593, 7.2589, 7.2586, 7.2584, 7.258, 7.2593, 7.2589, 7.2584, 7.2584, 7.2593, 7.2588, 7.2584, 7.2594, 7.2576, 7.2586, 7.2582, 7.2577, 7.2588, 7.2584, 7.2581, 7.262, 7.2615, 7.2611, 7.261, 7.2611, 7.2612, 7.2594, 7.2603, 7.2612, 7.2607, 7.2617, 7.2612, 7.2608, 7.2604, 7.2651, 7.2647, 7.2656, 7.2693, 7.2689, 7.2686, 7.2681, 7.2677, 7.2672, 7.2702, 7.2711, 7.2735, 7.2731, 7.2754, 7.2751, 7.2747, 7.2757, 7.278, 7.2776, 7.2784, 7.2779, 7.2774, 7.2771, 7.2795, 7.2793, 7.2788, 7.2798, 7.2797, 7.2792, 7.279, 7.2788, 7.2798, 7.2795, 7.2792, 7.28, 7.2837, 7.2833, 7.2828, 7.283, 7.2813, 7.2808, 7.2817, 7.2813, 7.2808, 7.2805, 7.2802, 7.2798, 7.2787, 7.2784, 7.2779, 7.2776, 7.2785, 7.2794, 7.279, 7.2813, 7.2822, 7.2817, 7.2813, 7.281, 7.2807, 7.2805, 7.2803, 7.2799, 7.2808, 7.2803, 7.2813, 7.2809, 7.2804, 7.28, 7.2783, 7.2778, 7.2773, 7.2768, 7.2766, 7.2761, 7.2758, 7.2753, 7.2748, 7.2746, 7.2741, 7.2737, 7.2733, 7.273, 7.2725, 7.2723, 7.2718, 7.2713, 7.271, 7.2705, 7.2701, 7.2696, 7.2693, 7.2688, 7.2684, 7.268, 7.2689, 7.2672, 7.2667, 7.2665, 7.2673, 7.2668, 7.2663, 7.266, 7.2669, 7.2666, 7.2675, 7.267, 7.2668, 7.2663, 7.2658, 7.2653, 7.2662, 7.2658, 7.2654, 7.2656, 7.2653, 7.2649, 7.2645, 7.2641, 7.2636, 7.2645, 7.264, 7.2623, 7.2631, 7.2639, 7.2636, 7.2631, 7.2626, 7.2634, 7.2629, 7.2625, 7.2621, 7.2617, 7.2613, 7.2609, 7.2604, 7.26, 7.2596, 7.2593, 7.2588, 7.2583, 7.2578, 7.2573, 7.2582, 7.2592, 7.259, 7.2598, 7.2593, 7.2589, 7.2584, 7.258, 7.2578, 7.2575, 7.257, 7.2566, 7.2561, 7.2556, 7.2552, 7.2561, 7.2557, 7.256, 7.2556, 7.2552, 7.255, 7.2547, 7.2543, 7.2539, 7.2549, 7.2559, 7.2555, 7.2551, 7.2548, 7.2543, 7.2539, 7.2537, 7.2533, 7.2529, 7.2524, 7.2519, 7.2528, 7.2525, 7.251, 7.2505, 7.25, 7.2497, 7.2493, 7.2488, 7.2486, 7.2495, 7.2493, 7.2502, 7.2499, 7.2496, 7.2505, 7.2503, 7.25, 7.2496, 7.2495, 7.2491, 7.25, 7.2496, 7.2506, 7.2502, 7.2498, 7.2493, 7.2502, 7.2497, 7.2492, 7.25, 7.251, 7.2507, 7.2517, 7.2513, 7.2528, 7.2524, 7.2519, 7.2516, 7.2513, 7.251, 7.2507, 7.2504, 7.25, 7.2497, 7.2494, 7.2489, 7.2498, 7.2507, 7.2516, 7.2525, 7.2521, 7.2516, 7.2524, 7.2522, 7.2518, 7.2513, 7.2521, 7.2531, 7.2527, 7.2522, 7.2519, 7.2515, 7.2511, 7.2507, 7.2524, 7.2519, 7.2528, 7.2524, 7.252, 7.2516, 7.2527, 7.2522, 7.2519, 7.2517, 7.2526, 7.2521, 7.2518, 7.2516, 7.2512, 7.251, 7.2508, 7.2505, 7.2523, 7.2519, 7.2515, 7.2512, 7.2508, 7.2504, 7.2502, 7.2512, 7.2508, 7.2504, 7.2501, 7.2502, 7.2498, 7.2493, 7.2489, 7.2498, 7.2495, 7.2491, 7.2486, 7.2482, 7.2478, 7.2474, 7.2471, 7.2469, 7.2467, 7.2465, 7.2461, 7.247, 7.2479, 7.2503, 7.2499, 7.2494, 7.249, 7.2486, 7.2482, 7.2491, 7.2487, 7.2483, 7.2479, 7.2475, 7.2472, 7.2468, 7.2464, 7.2461, 7.2457, 7.2452, 7.2448, 7.2445, 7.2454, 7.2462, 7.2458, 7.2454, 7.245, 7.2446, 7.2442, 7.2438, 7.2447, 7.2443, 7.2439, 7.2437, 7.2432, 7.244, 7.2453, 7.2448, 7.2443, 7.2438, 7.2434, 7.2443, 7.2441, 7.2437, 7.2446, 7.2454, 7.245, 7.2448, 7.2447, 7.2445, 7.244, 7.2462, 7.2458, 7.2453, 7.245, 7.2448, 7.2444, 7.244, 7.2463, 7.2448, 7.2457, 7.2454, 7.245, 7.2446, 7.243, 7.2427, 7.2449, 7.2457, 7.2453, 7.2461, 7.2457, 7.2466, 7.2475, 7.2471, 7.2473, 7.2469, 7.2477, 7.2474, 7.2496, 7.2491, 7.2512, 7.251, 7.2506, 7.249, 7.2485, 7.2481, 7.2479, 7.2488, 7.2484, 7.2493, 7.2492, 7.2489, 7.2498, 7.2494, 7.2504, 7.2501, 7.2497, 7.2494, 7.2522, 7.2532, 7.2541, 7.2527, 7.2525, 7.2521, 7.2549, 7.2545, 7.2554, 7.255, 7.2558, 7.2566, 7.2563, 7.2559, 7.2555, 7.2551, 7.255, 7.2546, 7.2549, 7.2546, 7.2544, 7.2562, 7.2572, 7.2568, 7.2564, 7.2561, 7.2557, 7.2554, 7.255, 7.2546, 7.2543, 7.2551, 7.2548, 7.2556, 7.2565, 7.2563, 7.2559, 7.256, 7.2555, 7.2551, 7.2547, 7.2555, 7.2551, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2543, 7.2539, 7.2535, 7.2531, 7.2539, 7.2536, 7.2532, 7.2529, 7.2539, 7.2535, 7.2531, 7.2527, 7.2527, 7.2526, 7.2534, 7.253, 7.2538, 7.2534, 7.2543, 7.2539, 7.2536, 7.2545, 7.2541, 7.2525, 7.2521, 7.2542, 7.2538, 7.2534, 7.2537, 7.2536, 7.2532, 7.253, 7.2527, 7.2525, 7.2521, 7.2518, 7.2518, 7.2514, 7.251, 7.2506, 7.2514, 7.251, 7.2506, 7.2514, 7.2525, 7.2533, 7.2529, 7.2525, 7.2522, 7.253, 7.2525, 7.2521, 7.2541, 7.2539, 7.2536, 7.2533, 7.2528, 7.2535, 7.2531, 7.2528, 7.2549, 7.2559, 7.2554, 7.255, 7.2547, 7.2532, 7.2528, 7.2524, 7.252, 7.2518, 7.2526, 7.2522, 7.252, 7.2528, 7.2524, 7.252, 7.2529, 7.2525, 7.252, 7.2516, 7.2512, 7.2497, 7.2493, 7.2488, 7.2485, 7.2481, 7.2477, 7.2474, 7.247, 7.2466, 7.2462, 7.2457, 7.2443, 7.2451, 7.2447, 7.2443, 7.2438, 7.2446, 7.2456, 7.2465, 7.246, 7.2456, 7.2452, 7.2449, 7.2445, 7.2441, 7.2437, 7.2444, 7.244, 7.2436, 7.2431, 7.2428, 7.2425, 7.2422, 7.2418, 7.2444, 7.2444, 7.244, 7.2438, 7.2434, 7.2443, 7.244, 7.2436, 7.2432, 7.2435, 7.2444, 7.244, 7.2439, 7.2424, 7.2419, 7.2415, 7.2423, 7.2431, 7.244, 7.2437, 7.2446, 7.2442, 7.245, 7.2447, 7.2444, 7.2466, 7.2474, 7.2473, 7.2482, 7.2489, 7.2485, 7.2481, 7.2476, 7.2472, 7.2469, 7.2477, 7.2473, 7.2471, 7.2467, 7.2464, 7.2508, 7.2553, 7.2549, 7.2546, 7.2555, 7.2551, 7.2547, 7.2532, 7.253, 7.2527, 7.2526, 7.2522, 7.2517, 7.2525, 7.2522, 7.253, 7.2526, 7.2535, 7.2544, 7.2541, 7.2548, 7.2545, 7.2542, 7.2537, 7.2545, 7.2554, 7.2562, 7.2571, 7.2578, 7.2587, 7.2595, 7.259, 7.2586, 7.2594, 7.2592, 7.2601, 7.2588, 7.2597, 7.2604, 7.2605, 7.2601, 7.2609, 7.2618, 7.2616, 7.2612, 7.261, 7.2606, 7.2603, 7.2611, 7.2608, 7.2629, 7.2626, 7.2622, 7.2631, 7.2629, 7.2645, 7.2641, 7.2637, 7.2633, 7.2629, 7.2627, 7.2624, 7.2632, 7.2627, 7.2623, 7.2619, 7.2615, 7.2611, 7.2619, 7.2604, 7.26, 7.2596, 7.2593, 7.2589, 7.2603, 7.2599, 7.2584, 7.258, 7.2576, 7.2572, 7.257, 7.2566, 7.2551, 7.2547, 7.2543, 7.2543, 7.2541, 7.2537, 7.2533, 7.253, 7.2526, 7.2534, 7.2531, 7.2527, 7.2531, 7.253, 7.2527, 7.2523, 7.2532, 7.2541, 7.2537, 7.2534, 7.2533, 7.2529, 7.2537, 7.2546, 7.2542, 7.255, 7.2537, 7.2533, 7.2533, 7.2531, 7.2527, 7.2523, 7.2531, 7.2528, 7.2524, 7.2531, 7.2535, 7.2531, 7.2538, 7.2545, 7.2553, 7.2552, 7.2548, 7.2545, 7.2541, 7.2538, 7.2535, 7.2556, 7.2553, 7.2551, 7.2559, 7.2555, 7.2552, 7.2548, 7.2556, 7.2552, 7.2549, 7.2545, 7.2565, 7.2572, 7.2568, 7.2564, 7.256, 7.2557, 7.2553, 7.2561, 7.2558, 7.2565, 7.2561, 7.2558, 7.2555, 7.2553, 7.255, 7.2548, 7.2544, 7.2551, 7.2559, 7.2558, 7.2566, 7.2576, 7.2573, 7.257, 7.2578, 7.262, 7.2617, 7.2613, 7.2613, 7.2609, 7.2605, 7.2602, 7.2609, 7.2605, 7.2613, 7.2609, 7.2676, 7.2673, 7.2669, 7.2665, 7.2661, 7.2668, 7.2664, 7.266, 7.2656, 7.2652, 7.2648, 7.2645, 7.2642, 7.2638, 7.2635, 7.2632, 7.265, 7.2646, 7.2643, 7.2651, 7.2647, 7.2645, 7.2642, 7.2638, 7.2634, 7.2631, 7.2628, 7.2625, 7.2622, 7.262, 7.2617, 7.2614, 7.261, 7.2606, 7.2602, 7.2598, 7.2597, 7.2593, 7.2589, 7.259, 7.2597, 7.2593, 7.2589, 7.2587, 7.2586, 7.2594, 7.2593, 7.2592, 7.26, 7.2596, 7.2592, 7.2588, 7.259, 7.2586, 7.2594, 7.259, 7.2586, 7.2584, 7.2592, 7.26, 7.2597, 7.2605, 7.2601, 7.2598, 7.2605, 7.263, 7.2638, 7.2645, 7.2642, 7.265, 7.265, 7.2646, 7.2642, 7.2638, 7.2636, 7.2632, 7.2661, 7.2669, 7.2665, 7.2661, 7.267, 7.2677, 7.2685, 7.2693, 7.2689, 7.2685, 7.2694, 7.2691, 7.2699, 7.2695, 7.2712, 7.2708, 7.2705, 7.2701, 7.2699, 7.2706, 7.2703, 7.2722, 7.2718, 7.2716, 7.2712, 7.2708, 7.2704, 7.27, 7.2696, 7.2693, 7.2701, 7.2697, 7.2693, 7.2689, 7.2685, 7.2682, 7.2679, 7.2676, 7.2683, 7.269, 7.2697, 7.2684, 7.268, 7.2678, 7.2688, 7.2686, 7.2684, 7.268, 7.2677, 7.2673, 7.2669, 7.2666, 7.2673, 7.2671, 7.2668, 7.2664, 7.2717, 7.2714, 7.271, 7.2707, 7.2703, 7.2689, 7.2685, 7.2692, 7.2688, 7.2696, 7.2693, 7.269, 7.2686, 7.2684, 7.2691, 7.2699, 7.2697, 7.2705, 7.2701, 7.2697, 7.2693, 7.269, 7.2698, 7.2694, 7.2691, 7.2689, 7.2685, 7.2681, 7.2677, 7.2676, 7.2674, 7.267, 7.2668, 7.2664, 7.266, 7.2657, 7.2654, 7.265, 7.2648, 7.2655, 7.2668, 7.2664, 7.2672, 7.2669, 7.2678, 7.2674, 7.2671, 7.2667, 7.2664, 7.2665, 7.2661, 7.2657, 7.2655, 7.2651, 7.2718, 7.2717, 7.2704, 7.27, 7.2697, 7.2723, 7.2719, 7.2716, 7.2747, 7.2744, 7.2742, 7.2738, 7.2736, 7.2732, 7.2728, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.2709, 7.2706, 7.2715, 7.2712, 7.2709, 7.2706, 7.2702, 7.2709, 7.2716, 7.2771, 7.2779, 7.2783, 7.278, 7.2777, 7.2774, 7.2772, 7.2769, 7.2767, 7.2764, 7.2761, 7.2757, 7.2753, 7.2749, 7.2747, 7.2754, 7.2762, 7.2748, 7.2744, 7.2742, 7.2739, 7.2735, 7.2732, 7.2728, 7.2732, 7.2729, 7.2725, 7.2722, 7.2718, 7.2736, 7.2733, 7.2731, 7.2727, 7.2724, 7.2731, 7.2728, 7.2737, 7.2733, 7.2729, 7.2725, 7.2723, 7.2721, 7.2718, 7.2715, 7.2712, 7.2709, 7.2715, 7.2712, 7.2709, 7.2705, 7.2717, 7.2714, 7.2722, 7.2725, 7.2721, 7.2718, 7.2726, 7.2733, 7.2731, 7.2727, 7.2723, 7.2731, 7.2727, 7.2723, 7.2731, 7.2728, 7.2726, 7.2722, 7.2718, 7.2718, 7.2716, 7.2703, 7.27, 7.2697, 7.2693, 7.269, 7.2686, 7.2682, 7.2679, 7.2675, 7.2673, 7.267, 7.2677, 7.2685, 7.2682, 7.274, 7.2747, 7.2745, 7.2741, 7.2737, 7.2734, 7.2731, 7.2718, 7.2704, 7.2701, 7.2697, 7.2693, 7.269, 7.2688, 7.2687, 7.2683, 7.2679, 7.2687, 7.2683, 7.2679, 7.2675, 7.2671, 7.2668, 7.2664, 7.2676, 7.2673, 7.267, 7.2666, 7.2664, 7.2671, 7.2667, 7.2664, 7.2661, 7.2658, 7.2668, 7.2655, 7.2652, 7.2661, 7.2657, 7.2654, 7.2652, 7.2659, 7.2649, 7.2646, 7.2653, 7.2649, 7.2647, 7.2645, 7.2641, 7.2648, 7.2644, 7.2641, 7.2637, 7.2633, 7.2629, 7.2625, 7.2621, 7.2628, 7.2625, 7.2622, 7.2618, 7.2614, 7.2611, 7.261, 7.2606, 7.2603, 7.26, 7.2605, 7.2609, 7.2605, 7.2604, 7.26, 7.2596, 7.2592, 7.259, 7.2581, 7.2579, 7.2586, 7.2593, 7.259, 7.2588, 7.2597, 7.2593, 7.26, 7.2607, 7.2604, 7.26, 7.2607, 7.2603, 7.2599, 7.2606, 7.2603, 7.2602, 7.2609, 7.2616, 7.2613, 7.2621, 7.2619, 7.2616, 7.2618, 7.2625, 7.2622, 7.2618, 7.2618, 7.2632, 7.2629, 7.2626, 7.2622, 7.2626, 7.2623, 7.262, 7.2621, 7.2618, 7.2614, 7.2622, 7.263, 7.2626, 7.2623, 7.2625, 7.2621, 7.2617, 7.2624, 7.2621, 7.2628, 7.2625, 7.2628, 7.2627, 7.2624, 7.2632, 7.263, 7.2639, 7.2637, 7.2634, 7.2641, 7.2638, 7.2635, 7.2642, 7.2649, 7.2646, 7.2644, 7.2642, 7.2641, 7.2638, 7.2637, 7.2624, 7.2621, 7.2618, 7.2616, 7.2623, 7.2621, 7.2617, 7.2614, 7.2623, 7.263, 7.2638, 7.2624, 7.2632, 7.2639, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.264, 7.2636, 7.2633, 7.2663, 7.267, 7.2677, 7.2675, 7.2733, 7.273, 7.2726, 7.2732, 7.2728, 7.2725, 7.2732, 7.273, 7.2726, 7.2733, 7.273, 7.2727, 7.2725, 7.2721, 7.2717, 7.2713, 7.271, 7.2706, 7.2703, 7.2707, 7.2703, 7.271, 7.2707, 7.2706, 7.2713, 7.27, 7.2708, 7.2705, 7.2712, 7.2709, 7.2717, 7.2704, 7.2702, 7.2699, 7.2696, 7.2694, 7.269, 7.2687, 7.2683, 7.268, 7.2677, 7.2691, 7.2688, 7.2696, 7.2692, 7.2699, 7.2696, 7.2704, 7.2701, 7.2698, 7.2694, 7.2701, 7.2698, 7.2695, 7.2691, 7.2689, 7.2687, 7.2691, 7.2692, 7.2699, 7.2696, 7.2695, 7.2692, 7.269, 7.2693, 7.2689, 7.2686, 7.2693, 7.2689, 7.2686, 7.2682, 7.269, 7.2692, 7.2688, 7.2684, 7.2681, 7.2688, 7.2684, 7.268, 7.2678, 7.2674, 7.2671, 7.2667, 7.2663, 7.267, 7.2657, 7.2654, 7.2651, 7.2648, 7.2646, 7.2643, 7.2639, 7.2637, 7.2635, 7.2632, 7.264, 7.2637, 7.2634, 7.2632, 7.2628, 7.2635, 7.2641, 7.2648, 7.2645, 7.2642, 7.2639, 7.2645, 7.2642, 7.2639, 7.2646, 7.2633, 7.263, 7.2641, 7.2649, 7.2648, 7.2645, 7.2641, 7.2638, 7.2635, 7.2632, 7.2628, 7.2626, 7.2623, 7.2622, 7.2629, 7.2627, 7.2623, 7.263, 7.2637, 7.2634, 7.2641, 7.2638, 7.2636, 7.2633, 7.2631, 7.2627, 7.2625, 7.2632, 7.2628, 7.2625, 7.2623, 7.262, 7.2626, 7.2624, 7.2621, 7.2618, 7.2625, 7.2632, 7.263, 7.2627, 7.2633, 7.263, 7.2627, 7.2624, 7.2621, 7.2618, 7.2615, 7.2622, 7.263, 7.2637, 7.2635, 7.2631, 7.2628, 7.2625, 7.2633, 7.264, 7.2637, 7.2634, 7.263, 7.2626, 7.2622, 7.2618, 7.2615, 7.2613, 7.2609, 7.2605, 7.2612, 7.2609, 7.2606, 7.2603, 7.26, 7.2596, 7.2592, 7.2588, 7.2586, 7.2593, 7.26, 7.2625, 7.2621, 7.2618, 7.2624, 7.2622, 7.2629, 7.2626, 7.2622, 7.2628, 7.2635, 7.2641, 7.2639, 7.2636, 7.2643, 7.265, 7.2646, 7.2642, 7.2649, 7.2645, 7.2642, 7.2639, 7.2646, 7.2643, 7.265, 7.2647, 7.2675, 7.2681, 7.2678, 7.2675, 7.2681, 7.2678, 7.2675, 7.2671, 7.2668, 7.2665, 7.2661, 7.2658, 7.2655, 7.2662, 7.2658, 7.2656, 7.2653, 7.2659, 7.2656, 7.2653, 7.2649, 7.2646, 7.2653, 7.2649, 7.2655, 7.2662, 7.2668, 7.2665, 7.2661, 7.2657, 7.2653, 7.265, 7.265, 7.2648, 7.2645, 7.2642, 7.2639, 7.2636, 7.2633, 7.263, 7.2627, 7.2634, 7.2641, 7.2653, 7.2651, 7.2654, 7.2662, 7.2658, 7.2668, 7.2665, 7.2673, 7.267, 7.2668, 7.2666, 7.2663, 7.2651, 7.2648, 7.2645, 7.2642, 7.2639, 7.2646, 7.266, 7.2656, 7.2653, 7.264, 7.2637, 7.2644, 7.2642, 7.2638, 7.2635, 7.2633, 7.265, 7.2657, 7.2664, 7.2661, 7.2659, 7.2666, 7.2673, 7.267, 7.2668, 7.2665, 7.2672, 7.2669, 7.2666, 7.2675, 7.2683, 7.2693], '192.168.122.119': [11.1458, 9.3222, 8.0368, 7.4878, 6.1125, 6.2764, 6.1505, 6.1014, 6.6108, 6.5736, 6.9628, 6.9601, 6.8781, 7.1709, 7.0542, 7.0211, 6.9493, 6.8548, 6.8132, 6.7333, 6.6898, 6.6908, 6.6342, 6.5946, 6.5736, 6.5474, 6.5153, 6.5013, 6.5635, 6.5391, 6.5211, 6.7801, 6.9324, 7.0575, 7.0751, 7.0441, 7.0037, 7.0082, 6.9776, 6.9642, 6.9255, 6.8895, 6.8577, 6.8354, 6.9274, 6.9028, 7.0044, 6.9797, 6.9472, 7.0244, 6.9959, 6.9969, 6.977, 6.9814, 7.0511, 7.0214, 6.9932, 6.966, 6.9439, 6.9178, 6.9024, 6.9649, 7.0274, 7.087, 7.1499, 7.2059, 7.2607, 7.2408, 7.2142, 7.1943, 7.1925, 7.1764, 7.2305, 7.2813, 7.2543, 7.2327, 7.2264, 7.269, 7.3148, 7.3374, 7.3255, 7.3011, 7.276, 7.2617, 7.2397, 7.2176, 7.1982, 7.1785, 7.1643, 7.2035, 7.2039, 7.1901, 7.2261, 7.2129, 7.1931, 7.1799, 7.174, 7.1547, 7.1912, 7.182, 7.1643, 7.2002, 7.1826, 7.1739, 7.2573, 7.2529, 7.2374, 7.2753, 7.2613, 7.2429, 7.2774, 7.2619, 7.2473, 7.2336, 7.2168, 7.3011, 7.3425, 7.3793, 7.3628, 7.3468, 7.3293, 7.3148, 7.3243, 7.3125, 7.344, 7.3295, 7.3999, 7.3846, 7.3727, 7.3606, 7.3491, 7.3335, 7.3191, 7.3049, 7.2903, 7.276, 7.2262, 7.253, 7.2862, 7.2754, 7.2627, 7.2511, 7.2389, 7.2277, 7.2519, 7.2477, 7.2385, 7.2268, 7.2512, 7.2416, 7.2376, 7.2279, 7.251, 7.2394, 7.2278, 7.2518, 7.2727, 7.2644, 7.2528, 7.2424, 7.2348, 7.2282, 7.2513, 7.2396, 7.2308, 7.2211, 7.2123, 7.2017, 7.1939, 7.184, 7.174, 7.1635, 7.1841, 7.2107, 7.203, 7.1969, 7.1888, 7.1847, 7.1755, 7.1676, 7.1867, 7.1775, 7.1696, 7.19, 7.1805, 7.1738, 7.2338, 7.2526, 7.2448, 7.2351, 7.2259, 7.2463, 7.4137, 7.4195, 7.409, 7.3996, 7.4126, 7.4034, 7.3924, 7.3822, 7.3728, 7.3633, 7.3548, 7.3648, 7.3733, 7.3632, 7.3586, 7.3514, 7.3441, 7.3382, 7.3081, 7.3251, 7.3189, 7.3098, 7.302, 7.2924, 7.2869, 7.3014, 7.2919, 7.2845, 7.3033, 7.2941, 7.2877, 7.2813, 7.2733, 7.2673, 7.2808, 7.2752, 7.2701, 7.2417, 7.236, 7.2276, 7.2196, 7.2342, 7.2255, 7.2276, 7.2003, 7.1929, 7.187, 7.182, 7.1754, 7.172, 7.1687, 7.1616, 7.1539, 7.1464, 7.1415, 7.1365, 7.1298, 7.1229, 7.1174, 7.1143, 7.1094, 7.1237, 7.1371, 7.1328, 7.126, 7.1197, 7.1132, 7.1062, 7.0997, 7.0929, 7.1071, 7.1006, 7.0958, 7.0915, 7.0881, 7.0823, 7.0776, 7.0727, 7.0666, 7.0801, 7.0734, 7.0868, 7.0799, 7.0745, 7.068, 7.063, 7.0789, 7.0736, 7.0671, 7.0612, 7.0556, 7.052, 7.0293, 7.0414, 7.036, 7.0306, 7.0253, 7.0197, 7.014, 7.008, 7.0088, 7.0041, 7.0165, 7.0118, 7.0421, 7.0527, 7.0477, 7.0429, 7.0376, 7.0322, 7.0451, 7.0396, 7.0864, 7.0809, 7.0756, 7.088, 7.0828, 7.0952, 7.0899, 7.0998, 7.1115, 7.1076, 7.1023, 7.097, 7.1086, 7.1056, 7.0998, 7.0942, 7.0909, 7.0944, 7.1053, 7.1009, 7.0974, 7.0935, 7.0887, 7.089, 7.0837, 7.0789, 7.09, 7.1017, 7.0819, 7.0916, 7.0715, 7.0723, 7.0838, 7.0968, 7.0939, 7.0909, 7.0855, 7.0805, 7.0796, 7.0746, 7.0698, 7.0804, 7.0763, 7.0714, 7.0667, 7.0622, 7.0587, 7.0537, 7.0497, 7.0466, 7.0429, 7.0417, 7.0529, 7.0529, 7.0356, 7.031, 7.0276, 7.0247, 7.026, 7.0232, 7.0195, 7.0321, 7.0292, 7.0264, 7.0281, 7.0248, 7.0216, 7.0203, 7.0169, 7.0125, 7.0092, 7.0214, 7.0216, 7.0179, 7.005, 7.0007, 6.999, 6.9954, 6.9914, 6.9872, 7.0048, 7.0022, 6.9994, 6.9952, 6.9914, 6.9902, 7.0024, 6.9997, 6.9957, 7.0056, 7.0139, 7.023, 7.024, 7.025, 7.0207, 7.0166, 7.0132, 7.0104, 7.02, 7.0161, 7.0117, 7.0207, 7.0296, 7.0268, 7.0233, 7.0334, 7.0295, 7.026, 7.0247, 7.0211, 7.0293, 7.0263, 7.0362, 7.0328, 7.0422, 7.0381, 7.0348, 7.037, 7.0331, 7.0423, 7.0396, 7.0363, 7.0337, 7.0299, 7.0263, 7.0225, 7.0244, 7.0205, 7.0171, 7.0255, 7.0235, 7.0323, 7.0287, 7.0366, 7.033, 7.03, 7.0649, 7.0623, 7.0615, 7.0596, 7.0578, 7.0541, 7.0867, 7.1074, 7.1049, 7.1186, 7.1165, 7.1125, 7.1093, 7.1053, 7.1014, 7.0989, 7.1086, 7.1048, 7.1143, 7.1113, 7.108, 7.1045, 7.1138, 7.1264, 7.1229, 7.1214, 7.1199, 7.128, 7.1148, 7.1226, 7.1304, 7.1381, 7.1468, 7.155, 7.1526, 7.1496, 7.1467, 7.1435, 7.1396, 7.1357, 7.1436, 7.1412, 7.1491, 7.1469, 7.1449, 7.1417, 7.1495, 7.1473, 7.1443, 7.1411, 7.1376, 7.1336, 7.13, 7.1275, 7.1241, 7.1204, 7.1178, 7.1143, 7.1109, 7.1073, 7.1043, 7.101, 7.0979, 7.1279, 7.1241, 7.1209, 7.1276, 7.1251, 7.1324, 7.1292, 7.1366, 7.1336, 7.1211, 7.1183, 7.1267, 7.1231, 7.1217, 7.1189, 7.1153, 7.1125, 7.1189, 7.1161, 7.1134, 7.1197, 7.117, 7.114, 7.1109, 7.1084, 7.1155, 7.1129, 7.1191, 7.1211, 7.1194, 7.1263, 7.133, 7.13, 7.1268, 7.1242, 7.1218, 7.1199, 7.1166, 7.123, 7.1297, 7.1276, 7.1246, 7.1216, 7.1189, 7.1176, 7.1252, 7.1222, 7.1193, 7.1167, 7.1055, 7.1028, 7.1101, 7.1076, 7.1054, 7.1122, 7.1094, 7.1065, 7.1034, 7.1098, 7.1085, 7.1061, 7.103, 7.1103, 7.0991, 7.0968, 7.1034, 7.1004, 7.0974, 7.1036, 7.1102, 7.1088, 7.1059, 7.1031, 7.1003, 7.0974, 7.0945, 7.101, 7.0979, 7.1051, 7.1119, 7.1099, 7.1168, 7.1141, 7.1112, 7.1091, 7.1185, 7.1159, 7.1132, 7.1112, 7.1471, 7.145, 7.1425, 7.1396, 7.1553, 7.1545, 7.1515, 7.1574, 7.1547, 7.153, 7.1517, 7.1491, 7.1641, 7.1612, 7.1581, 7.1569, 7.163, 7.1634, 7.1603, 7.1577, 7.1551, 7.1524, 7.1507, 7.1478, 7.1453, 7.1425, 7.1318, 7.1291, 7.1267, 7.1351, 7.1324, 7.1384, 7.1372, 7.1341, 7.1316, 7.1308, 7.1278, 7.1264, 7.1239, 7.121, 7.119, 7.1241, 7.1219, 7.1198, 7.1176, 7.1146, 7.1295, 7.1265, 7.1322, 7.1296, 7.1272, 7.1251, 7.1236, 7.1207, 7.1178, 7.1155, 7.1214, 7.1264, 7.1333, 7.1303, 7.1274, 7.1247, 7.1219, 7.1192, 7.1093, 7.1067, 7.1042, 7.1025, 7.1084, 7.109, 7.1073, 7.1049, 7.1024, 7.0999, 7.1054, 7.1037, 7.1009, 7.1153, 7.1128, 7.1103, 7.1079, 7.1057, 7.1032, 7.1086, 7.1061, 7.1041, 7.1014, 7.099, 7.0962, 7.1016, 7.0999, 7.0973, 7.1025, 7.1012, 7.0986, 7.096, 7.0933, 7.0924, 7.0899, 7.0954, 7.0858, 7.0912, 7.0964, 7.094, 7.0997, 7.1222, 7.1275, 7.1251, 7.1228, 7.1218, 7.1191, 7.1254, 7.1227, 7.1202, 7.1177, 7.1153, 7.114, 7.1119, 7.1032, 7.1014, 7.1065, 7.1045, 7.1175, 7.1153, 7.1215, 7.1271, 7.1414, 7.1391, 7.1368, 7.1349, 7.1404, 7.1388, 7.1751, 7.1726, 7.1703, 7.1742, 7.1716, 7.1693, 7.1667, 7.165, 7.1624, 7.1612, 7.1587, 7.1565, 7.1547, 7.1525, 7.1585, 7.156, 7.1537, 7.1514, 7.1565, 7.1542, 7.1576, 7.1649, 7.1625, 7.1601, 7.1589, 7.1639, 7.1627, 7.1611, 7.1656, 7.1712, 7.169, 7.1843, 7.1893, 7.1877, 7.1927, 7.197, 7.1952, 7.1942, 7.1928, 7.1908, 7.1885, 7.1863, 7.185, 7.1829, 7.2062, 7.2133, 7.2109, 7.2085, 7.2076, 7.2059, 7.2045, 7.2023, 7.1999, 7.1991, 7.204, 7.2016, 7.1998, 7.1986, 7.1971, 7.1946, 7.193, 7.198, 7.1958, 7.2006, 7.1982, 7.1959, 7.1937, 7.1983, 7.1962, 7.2006, 7.2053, 7.21, 7.2084, 7.2133, 7.2176, 7.2162, 7.2257, 7.2304, 7.2285, 7.2261, 7.2243, 7.2219, 7.2217, 7.2193, 7.2168, 7.2233, 7.2217, 7.2194, 7.2171, 7.2159, 7.2222, 7.2204, 7.2207, 7.2191, 7.2173, 7.2151, 7.2159, 7.2204, 7.2245, 7.2226, 7.2212, 7.2197, 7.2176, 7.2224, 7.2207, 7.2186, 7.2167, 7.2211, 7.2197, 7.2185, 7.2173, 7.215, 7.2148, 7.2129, 7.2118, 7.2097, 7.222, 7.2196, 7.2207, 7.2192, 7.2518, 7.2495, 7.2504, 7.2428, 7.2501, 7.2482, 7.2465, 7.2442, 7.2362, 7.2351, 7.2339, 7.2318, 7.2298, 7.2289, 7.2268, 7.2248, 7.2235, 7.2213, 7.2201, 7.2125, 7.2163, 7.2089, 7.2137, 7.2114, 7.21, 7.2078, 7.2118, 7.2098, 7.2139, 7.218, 7.2163, 7.2143, 7.2123, 7.2108, 7.2088, 7.207, 7.2048, 7.2042, 7.2082, 7.2062, 7.2055, 7.2035, 7.2018, 7.1998, 7.2, 7.1979, 7.1966, 7.2008, 7.1987, 7.1968, 7.1947, 7.1932, 7.1973, 7.1953, 7.1939, 7.1925, 7.1904, 7.1891, 7.1876, 7.1857, 7.1837, 7.1819, 7.1858, 7.1838, 7.1819, 7.1803, 7.1784, 7.1765, 7.1765, 7.1746, 7.1726, 7.1707, 7.1686, 7.1676, 7.1663, 7.1699, 7.1679, 7.1609, 7.1591, 7.1575, 7.156, 7.1541, 7.1579, 7.1559, 7.154, 7.152, 7.1557, 7.1558, 7.154, 7.1521, 7.1562, 7.1603, 7.1585, 7.1625, 7.1613, 7.1653, 7.1633, 7.1615, 7.179, 7.1887, 7.187, 7.1855, 7.1895, 7.1882, 7.1864, 7.1846, 7.1828, 7.1815, 7.1804, 7.1787, 7.1771, 7.1753, 7.1787, 7.1826, 7.1809, 7.1795, 7.1835, 7.1878, 7.1865, 7.1909, 7.1945, 7.1876, 7.1914, 7.1953, 7.1938, 7.1975, 7.1968, 7.1957, 7.1939, 7.1978, 7.1962, 7.1961, 7.1942, 7.1929, 7.191, 7.1947, 7.1927, 7.1912, 7.1943, 7.1927, 7.1913, 7.1897, 7.1879, 7.1864, 7.2008, 7.221, 7.225, 7.2234, 7.2225, 7.2209, 7.2194, 7.2179, 7.2215, 7.2251, 7.2232, 7.2215, 7.225, 7.2232, 7.2266, 7.2247, 7.2288, 7.2289, 7.228, 7.2263, 7.2245, 7.2235, 7.222, 7.2203, 7.224, 7.2222, 7.2258, 7.2239, 7.2226, 7.2207, 7.2196, 7.219, 7.2225, 7.2208, 7.2241, 7.2223, 7.2206, 7.22, 7.2183, 7.2165, 7.2197, 7.2184, 7.2167, 7.2152, 7.2088, 7.2078, 7.206, 7.2043, 7.2078, 7.2062, 7.2045, 7.2081, 7.2062, 7.2099, 7.2093, 7.2087, 7.2069, 7.2064, 7.2062, 7.2053, 7.2034, 7.2022, 7.2009, 7.2089, 7.2127, 7.2163, 7.2197, 7.2193, 7.2178, 7.2209, 7.2241, 7.2224, 7.2162, 7.2145, 7.2129, 7.212, 7.2104, 7.2098, 7.2089, 7.2071, 7.2054, 7.2036, 7.2018, 7.2051, 7.2036, 7.2019, 7.2057, 7.2095, 7.213, 7.2117, 7.2101, 7.2271, 7.226, 7.2244, 7.2301, 7.2284, 7.2317, 7.2299, 7.2284, 7.2269, 7.2256, 7.2361, 7.2344, 7.2345, 7.2331, 7.2322, 7.2304, 7.2297, 7.2279, 7.2271, 7.226, 7.2308, 7.2344, 7.2326, 7.2317, 7.2309, 7.2297, 7.2304, 7.234, 7.2326, 7.231, 7.2293, 7.2276, 7.2325, 7.2307, 7.2344, 7.233, 7.2359, 7.2397, 7.2383, 7.2371, 7.2357, 7.234, 7.2325, 7.2317, 7.2452, 7.2446, 7.243, 7.2656, 7.2643, 7.2631, 7.2663, 7.2649, 7.2645, 7.2635, 7.2666, 7.2651, 7.2633, 7.2632, 7.2621, 7.2607, 7.2639, 7.2628, 7.2746, 7.273, 7.2673, 7.2656, 7.2639, 7.267, 7.2653, 7.2595, 7.2629, 7.2616, 7.2605, 7.2588, 7.2579, 7.2608, 7.2635, 7.2622, 7.2608, 7.2613, 7.2595, 7.2624, 7.2606, 7.2591, 7.2577, 7.2568, 7.2557, 7.254, 7.2534, 7.2521, 7.2551, 7.2534, 7.2519, 7.2503, 7.2447, 7.2431, 7.246, 7.2445, 7.2504, 7.2493, 7.2489, 7.2472, 7.2461, 7.2445, 7.2431, 7.2418, 7.2405, 7.2397, 7.2428, 7.2416, 7.24, 7.2431, 7.2461, 7.2406, 7.2351, 7.2294, 7.2279, 7.2268, 7.2298, 7.2286, 7.2278, 7.2263, 7.2247, 7.2232, 7.222, 7.2206, 7.2194, 7.2222, 7.2214, 7.2207, 7.224, 7.2224, 7.2257, 7.2244, 7.2233, 7.222, 7.2211, 7.2203, 7.219, 7.2223, 7.2255, 7.2283, 7.2316, 7.2302, 7.2288, 7.2272, 7.2301, 7.2287, 7.2318, 7.2302, 7.2333, 7.2324, 7.2309, 7.2338, 7.2285, 7.2273, 7.2304, 7.2335, 7.2332, 7.2318, 7.2303, 7.2331, 7.2361, 7.2349, 7.2335, 7.2322, 7.2307, 7.2293, 7.232, 7.2351, 7.2337, 7.2368, 7.2355, 7.2384, 7.237, 7.2355, 7.2346, 7.2331, 7.2321, 7.2305, 7.2335, 7.2364, 7.2405, 7.239, 7.2375, 7.2361, 7.2346, 7.2332, 7.2318, 7.2303, 7.2262, 7.2254, 7.2283, 7.2313, 7.2264, 7.2248, 7.2246, 7.2232, 7.2218, 7.222, 7.2209, 7.2197, 7.2222, 7.2212, 7.2209, 7.2234, 7.222, 7.2212, 7.2205, 7.2197, 7.2226, 7.2215, 7.2245, 7.2231, 7.2218, 7.2205, 7.2233, 7.222, 7.2252, 7.224, 7.2228, 7.2215, 7.2201, 7.2151, 7.21, 7.2085, 7.2073, 7.206, 7.2052, 7.2041, 7.2027, 7.2013, 7.1964, 7.195, 7.1942, 7.1936, 7.196, 7.1976, 7.2004, 7.1995, 7.1983, 7.1971, 7.1957, 7.1943, 7.1933, 7.1995, 7.1988, 7.1978, 7.1966, 7.1952, 7.1943, 7.193, 7.1965, 7.1957, 7.1945, 7.1938, 7.1926, 7.1918, 7.1911, 7.1902, 7.1888, 7.1917, 7.191, 7.1896, 7.1882, 7.1909, 7.1895, 7.1921, 7.1954, 7.1955, 7.1942, 7.1934, 7.1928, 7.1914, 7.1941, 7.1968, 7.1996, 7.1983, 7.1969, 7.1995, 7.1982, 7.2009, 7.1998, 7.1992, 7.1985, 7.1978, 7.1964, 7.1915, 7.1871, 7.1932, 7.1939, 7.1931, 7.1922, 7.1911, 7.1904, 7.1891, 7.1883, 7.191, 7.1925, 7.1918, 7.1944, 7.1932, 7.196, 7.1948, 7.1943, 7.1937, 7.1988, 7.2016, 7.2046, 7.2073, 7.2027, 7.202, 7.2052, 7.2114, 7.21, 7.2093, 7.2087, 7.2077, 7.2049, 7.2075, 7.2067, 7.2029, 7.2021, 7.2012, 7.2038, 7.2025, 7.2127, 7.2118, 7.2109, 7.2098, 7.2162, 7.215, 7.2184, 7.2174, 7.2161, 7.2187, 7.2223, 7.2214, 7.2239, 7.2225, 7.2213, 7.2214, 7.2204, 7.2191, 7.2177, 7.2163, 7.2151, 7.2139, 7.2127, 7.2114, 7.2103, 7.2094, 7.2158, 7.2149, 7.2137, 7.2162, 7.2153, 7.214, 7.2127, 7.2115, 7.2103, 7.2091, 7.2117, 7.2143, 7.2131, 7.2157, 7.218, 7.2171, 7.2195, 7.2184, 7.2171, 7.2196, 7.2222, 7.2212, 7.2202, 7.2188, 7.2175, 7.2172, 7.2159, 7.2148, 7.2139, 7.2127, 7.2117, 7.2104, 7.2102, 7.2125, 7.2148, 7.2138, 7.2127, 7.2121, 7.2118, 7.2127, 7.2117, 7.2108, 7.2125, 7.2122, 7.2145, 7.2139, 7.2257, 7.225, 7.2241, 7.2266, 7.231, 7.2298, 7.2288, 7.2276, 7.2266, 7.2261, 7.2249, 7.2272, 7.2259, 7.225, 7.2206, 7.2196, 7.2184, 7.2173, 7.216, 7.2148, 7.2136, 7.2169, 7.2159, 7.2148, 7.2135, 7.2128, 7.2116, 7.2104, 7.2096, 7.2121, 7.2113, 7.2101, 7.2091, 7.208, 7.2072, 7.2062, 7.2071, 7.2058, 7.2079, 7.2072, 7.2059, 7.2047, 7.2073, 7.2096, 7.2118, 7.2113, 7.2101, 7.2091, 7.2079, 7.2093, 7.2081, 7.2075, 7.2064, 7.2054, 7.2047, 7.2043, 7.2032, 7.2056, 7.208, 7.208, 7.2067, 7.2055, 7.2045, 7.2036, 7.2025, 7.2014, 7.2001, 7.2027, 7.2048, 7.2038, 7.2037, 7.2025, 7.2013, 7.2036, 7.2023, 7.2015, 7.2006, 7.1995, 7.1957, 7.1946, 7.1939, 7.194, 7.1965, 7.1957, 7.1984, 7.2006, 7.2029, 7.2017, 7.2006, 7.1994, 7.1982, 7.1974, 7.1964, 7.1987, 7.1976, 7.1966, 7.1987, 7.1975, 7.1963, 7.1951, 7.194, 7.1964, 7.1952, 7.1942, 7.193, 7.1919, 7.1907, 7.1866, 7.1858, 7.1848, 7.184, 7.1857, 7.1881, 7.1869, 7.1859, 7.1848, 7.1869, 7.186, 7.1854, 7.1846, 7.1835, 7.1824, 7.1818, 7.1813, 7.1807, 7.1796, 7.1816, 7.1839, 7.1852, 7.1842, 7.183, 7.1821, 7.1812, 7.1804, 7.1834, 7.1825, 7.1846, 7.1838, 7.183, 7.1819, 7.1807, 7.1829, 7.1822, 7.1812, 7.1803, 7.1791, 7.1783, 7.1806, 7.1795, 7.1789, 7.1781, 7.1778, 7.177, 7.1759, 7.1752, 7.1741, 7.173, 7.1721, 7.1709, 7.1698, 7.1719, 7.1708, 7.1735, 7.1727, 7.1718, 7.1756, 7.1717, 7.1708, 7.1709, 7.1707, 7.1701, 7.1691, 7.1714, 7.1702, 7.1695, 7.1693, 7.1732, 7.1753, 7.1799, 7.1788, 7.1776, 7.1765, 7.1754, 7.1743, 7.1765, 7.176, 7.1781, 7.1772, 7.1765, 7.1756, 7.1745, 7.1767, 7.1758, 7.1747, 7.171, 7.1705, 7.1727, 7.1719, 7.1709, 7.1698, 7.1687, 7.1708, 7.1669, 7.1664, 7.1656, 7.1647, 7.1667, 7.166, 7.1652, 7.1643, 7.1632, 7.1655, 7.1645, 7.1634, 7.1626, 7.1615, 7.1605, 7.1597, 7.1618, 7.1608, 7.1597, 7.1621, 7.161, 7.16, 7.1621, 7.161, 7.1602, 7.1623, 7.1612, 7.1634, 7.1674, 7.1664, 7.1688, 7.1711, 7.1703, 7.179, 7.1817, 7.1811, 7.18, 7.1796, 7.1786, 7.1808, 7.18, 7.1794, 7.1785, 7.1778, 7.1825, 7.1818, 7.1808, 7.1801, 7.183, 7.182, 7.1814, 7.1804, 7.1795, 7.1786, 7.1805, 7.1766, 7.176, 7.176, 7.1754, 7.1751, 7.174, 7.1762, 7.1762, 7.1782, 7.1801, 7.182, 7.1841, 7.1832, 7.1822, 7.1785, 7.1775, 7.1799, 7.1791, 7.1811, 7.1804, 7.1828, 7.182, 7.1809, 7.1801, 7.1794, 7.1786, 7.1775, 7.1765, 7.1789, 7.1818, 7.1811, 7.18, 7.1798, 7.183, 7.1853, 7.1844, 7.1808, 7.1802, 7.1796, 7.1791, 7.1782, 7.1774, 7.1795, 7.1784, 7.1805, 7.1799, 7.1791, 7.1784, 7.1872, 7.1864, 7.1882, 7.1894, 7.1884, 7.1873, 7.1864, 7.1856, 7.1877, 7.1869, 7.1864, 7.1853, 7.1844, 7.1834, 7.1825, 7.1814, 7.181, 7.1802, 7.1792, 7.1788, 7.1777, 7.1776, 7.1766, 7.1756, 7.1749, 7.1739, 7.1748, 7.1746, 7.1736, 7.1726, 7.1717, 7.1709, 7.1729, 7.1722, 7.1713, 7.1723, 7.1714, 7.1677, 7.1668, 7.1661, 7.1682, 7.1672, 7.1663, 7.1653, 7.1643, 7.1664, 7.1654, 7.1649, 7.1642, 7.1634, 7.1654, 7.1644, 7.1638, 7.1664, 7.1636, 7.1629, 7.1739, 7.1875, 7.1866, 7.1859, 7.1851, 7.1841, 7.1861, 7.1853, 7.1845, 7.1864, 7.1871, 7.1861, 7.1881, 7.1871, 7.1863, 7.1857, 7.1847, 7.1838, 7.1829, 7.1819, 7.181, 7.18, 7.1791, 7.1785, 7.1777, 7.1787, 7.178, 7.1799, 7.182, 7.1969, 7.2008, 7.2004, 7.1997, 7.1987, 7.1987, 7.198, 7.1973, 7.1985, 7.1976, 7.1967, 7.1957, 7.1951, 7.1941, 7.1936, 7.1956, 7.1947, 7.1938, 7.193, 7.195, 7.2, 7.1995, 7.1989, 7.198, 7.1947, 7.197, 7.1961, 7.1951, 7.1969, 7.1964, 7.1983, 7.1977, 7.1968, 7.1989, 7.201, 7.203, 7.2081, 7.2075, 7.2065, 7.2057, 7.2078, 7.2068, 7.2062, 7.2052, 7.207, 7.209, 7.2081, 7.2074, 7.2094, 7.2066, 7.2058, 7.2068, 7.2059, 7.2052, 7.205, 7.207, 7.2062, 7.2053, 7.2044, 7.2034, 7.2054, 7.2044, 7.2035, 7.2055, 7.2075, 7.2095, 7.2086, 7.2105, 7.2107, 7.2097, 7.2107, 7.2099, 7.2144, 7.2136, 7.2131, 7.2127, 7.2123, 7.2129, 7.2122, 7.2115, 7.2107, 7.2099, 7.2092, 7.2086, 7.2076, 7.2072, 7.2062, 7.2053, 7.206300000000001, 7.206, 7.2055, 7.2047, 7.2042, 7.2033, 7.203, 7.2022, 7.2016, 7.2009, 7.2028, 7.2047, 7.2038, 7.2029, 7.202, 7.2013, 7.2117, 7.2107, 7.2097, 7.2088, 7.2112, 7.2105, 7.2123, 7.2114, 7.2109, 7.2103, 7.2094, 7.2084, 7.209, 7.2085, 7.2052, 7.2043, 7.2036, 7.2031, 7.2023, 7.2016, 7.2007, 7.1998, 7.202, 7.2039, 7.2037, 7.2028, 7.2047, 7.2043, 7.2063, 7.2057, 7.2051, 7.2022, 7.2014, 7.2033, 7.2024, 7.2018, 7.2034, 7.2054, 7.2021, 7.2038, 7.2061, 7.2028, 7.2074, 7.2092, 7.2103, 7.2102, 7.2093, 7.2088, 7.2079, 7.2071, 7.2064, 7.2094, 7.2097, 7.2093, 7.2084, 7.2077, 7.207, 7.2061, 7.2078, 7.2075, 7.2118, 7.2113, 7.2108, 7.2099, 7.2089, 7.2106, 7.2097, 7.209, 7.2084, 7.2102, 7.2096, 7.2087, 7.2104, 7.2094, 7.2089, 7.2081, 7.2081, 7.2073, 7.2091, 7.2085, 7.208, 7.2076, 7.2093, 7.2109, 7.2104, 7.2097, 7.2089, 7.2081, 7.2124, 7.2116, 7.2164, 7.2156, 7.215, 7.2144, 7.2173, 7.2167, 7.2164, 7.2188, 7.2181, 7.2202, 7.2195, 7.2187, 7.2207, 7.2223, 7.2218, 7.2209, 7.2204, 7.2195, 7.2187, 7.2178, 7.217, 7.2162, 7.2159, 7.2176, 7.2169, 7.2141, 7.2135, 7.2153, 7.2145, 7.2168, 7.2186, 7.2177, 7.2194, 7.2185, 7.2203, 7.2219, 7.2237, 7.2232, 7.2224, 7.2243, 7.2234, 7.2229, 7.2247, 7.2241, 7.2258, 7.225, 7.2242, 7.2236, 7.2229, 7.2197, 7.219, 7.2182, 7.2176, 7.2168, 7.2164, 7.2157, 7.2193, 7.2186, 7.2178, 7.2195, 7.2186, 7.2178, 7.2247, 7.2264, 7.2281, 7.2274, 7.2292, 7.2263, 7.2255, 7.2248, 7.2242, 7.2259, 7.2324, 7.2318, 7.2311, 7.2307, 7.2301, 7.2293, 7.2285, 7.2277, 7.227, 7.2264, 7.2256, 7.2312, 7.2306, 7.2301, 7.2356, 7.235, 7.2367, 7.2389, 7.2407, 7.2402, 7.2399, 7.239, 7.2412, 7.2414, 7.241, 7.2436, 7.2429, 7.2421, 7.2412, 7.2403, 7.2398, 7.239, 7.2382, 7.2373, 7.2391, 7.2387, 7.238, 7.2371, 7.2364, 7.2356, 7.2373, 7.2373, 7.2367, 7.2359, 7.2354, 7.2345, 7.2339, 7.2331, 7.2326, 7.2317, 7.2312, 7.2304, 7.2296, 7.2314, 7.2307, 7.2298, 7.2291, 7.231, 7.2301, 7.2295, 7.2286, 7.2278, 7.2293, 7.2284, 7.2276, 7.2292, 7.2302, 7.232, 7.2313, 7.2307, 7.2302, 7.2319, 7.2311, 7.2328, 7.2345, 7.2338, 7.2333, 7.2325, 7.2327, 7.2322, 7.2313, 7.231, 7.2302, 7.2294, 7.2287, 7.228, 7.2274, 7.2268, 7.2259, 7.225, 7.2243, 7.2235, 7.2227, 7.222, 7.2212, 7.2189, 7.2183, 7.2175, 7.2191, 7.2184, 7.2201, 7.2197, 7.2192, 7.2208, 7.2202, 7.2244, 7.2264, 7.228, 7.2299, 7.2317, 7.2309, 7.2302, 7.2297, 7.2295, 7.2362, 7.238, 7.2418, 7.2483, 7.2475, 7.2466, 7.246, 7.2452, 7.2445, 7.2436, 7.2428, 7.2423, 7.2415, 7.2407, 7.2401, 7.2393, 7.2385, 7.2378, 7.2369, 7.2362, 7.2356, 7.2358, 7.2356, 7.2371, 7.2368, 7.2363, 7.238, 7.2374, 7.2365, 7.2361, 7.2381, 7.2397, 7.2413, 7.2429, 7.2401, 7.2392, 7.2386, 7.2378, 7.2396, 7.241, 7.2402, 7.2395, 7.2387, 7.2379, 7.2394, 7.2385, 7.238, 7.2374, 7.2366, 7.2359, 7.2351, 7.2368, 7.2384, 7.2385, 7.24, 7.2416, 7.241, 7.2402, 7.2394, 7.2388, 7.2385, 7.2401, 7.2395, 7.2413, 7.2391, 7.2396, 7.2388, 7.2418, 7.241, 7.2402, 7.2396, 7.2424, 7.2416, 7.2408, 7.24, 7.2394, 7.2397, 7.2391, 7.2386, 7.2401, 7.2415, 7.2408, 7.2401, 7.2396, 7.2388, 7.236, 7.2355, 7.238, 7.2373, 7.2416, 7.2433, 7.2426, 7.2421, 7.2437, 7.2435, 7.2427, 7.2419, 7.2414, 7.243, 7.2425, 7.2442, 7.2434, 7.245, 7.2465, 7.2438, 7.2435, 7.245, 7.2442, 7.2434, 7.2426, 7.2442, 7.2481, 7.2473, 7.2489, 7.2481, 7.2495, 7.2491, 7.2483, 7.2476, 7.2468, 7.2462, 7.2493, 7.2521, 7.2515, 7.2577, 7.257, 7.2565, 7.2559, 7.2552, 7.2544, 7.2544, 7.2537, 7.2529, 7.2529, 7.2521, 7.2516, 7.2531, 7.2546, 7.254, 7.2554, 7.2548, 7.254, 7.2532, 7.2525, 7.2546, 7.2563, 7.2558, 7.255, 7.2564, 7.2556, 7.2548, 7.2544, 7.2536, 7.2574, 7.2566, 7.2558, 7.2573, 7.2567, 7.2559, 7.2532, 7.2525, 7.2518, 7.2519, 7.2512, 7.2508, 7.25, 7.2493, 7.2486, 7.2478, 7.2473, 7.249, 7.2482, 7.2476, 7.2471, 7.2466, 7.246, 7.2459, 7.2454, 7.2446, 7.2461, 7.2476, 7.2468, 7.2461, 7.2456, 7.2493, 7.2554, 7.2547, 7.2542, 7.2536, 7.2529, 7.2525, 7.2542, 7.2537, 7.2534, 7.2578, 7.2571, 7.2584, 7.2582, 7.2574, 7.2568, 7.2563, 7.2584, 7.2576, 7.2569, 7.2562, 7.2653, 7.2649, 7.2644, 7.2638, 7.2634, 7.2626, 7.2618, 7.2612, 7.2627, 7.2642, 7.2634, 7.2626, 7.2641, 7.2633, 7.2626, 7.2644, 7.266, 7.2654, 7.265, 7.2644, 7.2636, 7.263, 7.2624, 7.2619, 7.2612, 7.2607, 7.2626, 7.2618, 7.2633, 7.2648, 7.2643, 7.2658, 7.2651, 7.2663, 7.2671, 7.2664, 7.2657, 7.265, 7.2667, 7.2662, 7.2655, 7.2651, 7.2646, 7.2659, 7.2651, 7.2643, 7.2656, 7.2649, 7.2642, 7.2636, 7.2651, 7.2624, 7.2617, 7.2611, 7.2603, 7.2597, 7.259, 7.2583, 7.2575, 7.2568, 7.2572, 7.2565, 7.2558, 7.2558, 7.2572, 7.2586, 7.2579, 7.2574, 7.2566, 7.2559, 7.2556, 7.2638, 7.263, 7.2624, 7.2636, 7.263, 7.2628, 7.262, 7.2594, 7.2572, 7.2565, 7.254, 7.2534, 7.2547, 7.2541, 7.2539, 7.2567, 7.2592, 7.2625, 7.2642, 7.2637, 7.2632, 7.2627, 7.2622, 7.2636, 7.2633, 7.2631, 7.2625, 7.2639, 7.2665, 7.2681, 7.2674, 7.2667, 7.2671, 7.2707, 7.2746, 7.2759, 7.2766, 7.276, 7.2753, 7.2767, 7.2761, 7.2754, 7.2769, 7.2786, 7.2779, 7.2773, 7.2766, 7.278, 7.2773, 7.2767, 7.276, 7.2773, 7.2787, 7.2803, 7.2817, 7.2862, 7.2856, 7.2906, 7.2898, 7.2891, 7.2883, 7.2896, 7.2891, 7.2888, 7.288, 7.2876, 7.2871, 7.2885, 7.2879, 7.2871, 7.2866, 7.286, 7.2852, 7.2845, 7.2859, 7.2861, 7.2875, 7.2888, 7.2882, 7.2874, 7.2848, 7.2862, 7.2956, 7.2951, 7.2945, 7.2959, 7.2951, 7.2943, 7.2955, 7.2955, 7.2968, 7.2981, 7.2974, 7.2987, 7.3009, 7.3005, 7.3001, 7.2994, 7.2989, 7.2981, 7.2976, 7.2969, 7.2983, 7.2997, 7.299, 7.2982, 7.2975, 7.297, 7.2945, 7.2995, 7.303, 7.3024, 7.3024, 7.3017, 7.301, 7.3003, 7.3018, 7.2993, 7.2986, 7.3001, 7.2995, 7.3008, 7.3032, 7.3025, 7.3019, 7.3011, 7.3004, 7.3016, 7.3009, 7.3023, 7.3037, 7.3031, 7.3024, 7.3073, 7.3068, 7.306, 7.3073, 7.3087, 7.31, 7.3114, 7.3108, 7.3121, 7.3135, 7.3138, 7.3133, 7.3126, 7.3122, 7.3131, 7.3125, 7.3119, 7.3114, 7.3107, 7.3101, 7.3094, 7.311, 7.3091, 7.3087, 7.3079, 7.3078, 7.3073, 7.3068, 7.3064, 7.3058, 7.3053, 7.3046, 7.3042, 7.3035, 7.3028, 7.3022, 7.3015, 7.301, 7.3006, 7.3002, 7.2995, 7.2988, 7.2981, 7.2976, 7.2969, 7.2964, 7.2957, 7.297, 7.2965, 7.2962, 7.2955, 7.2988, 7.3093, 7.3088, 7.3101, 7.3094, 7.3087, 7.31, 7.3113, 7.311, 7.3103, 7.3115, 7.3128, 7.3141, 7.3134, 7.3127, 7.3124, 7.3119, 7.312, 7.3114, 7.3107, 7.3101, 7.3103, 7.31, 7.3173, 7.3168, 7.3163, 7.3156, 7.3152, 7.3146, 7.3158, 7.3154, 7.3148, 7.3144, 7.3138, 7.3131, 7.3128, 7.3122, 7.3117, 7.3155, 7.3152, 7.3147, 7.3139, 7.3152, 7.3165, 7.316, 7.3154, 7.3167, 7.316, 7.3153, 7.3166, 7.318, 7.3175, 7.3188, 7.3184, 7.3197, 7.3191, 7.3167, 7.3163, 7.3177, 7.319, 7.3188, 7.32, 7.3193, 7.3189, 7.3188, 7.3181, 7.3174, 7.3168, 7.3201, 7.3214, 7.3226, 7.322, 7.3213, 7.3225, 7.3219, 7.3196, 7.319, 7.3189, 7.3183, 7.3181, 7.3195, 7.3189, 7.3204, 7.3199, 7.3191, 7.3186, 7.3199, 7.3223, 7.3217, 7.3211, 7.3204, 7.3197, 7.319, 7.3183, 7.3178, 7.3172, 7.3185, 7.3178, 7.3178, 7.321, 7.3208, 7.3201, 7.3194, 7.3206, 7.3218, 7.323, 7.3226, 7.3289, 7.3301, 7.3314, 7.3307, 7.33, 7.3296, 7.3307, 7.3303, 7.3316, 7.3316, 7.3311, 7.3308, 7.3306, 7.33, 7.3293, 7.329, 7.3284, 7.3298, 7.3292, 7.3285, 7.3281, 7.3285, 7.3279, 7.3293, 7.3289, 7.3285, 7.3278, 7.3273, 7.3267, 7.33, 7.3294, 7.3288, 7.3319, 7.3333, 7.3347, 7.3341, 7.3354, 7.3367, 7.336, 7.3373, 7.3366, 7.336, 7.3356, 7.3351, 7.3366, 7.3377, 7.3371, 7.3367, 7.336, 7.3353, 7.3424, 7.3418, 7.3411, 7.3405, 7.3399, 7.3393, 7.3387, 7.3381, 7.3378, 7.3371, 7.3382, 7.3377, 7.339, 7.3367, 7.3344, 7.3337, 7.3349, 7.3366, 7.336, 7.3353, 7.333, 7.3324, 7.3336, 7.3347, 7.3341, 7.3336, 7.3332, 7.3325, 7.3336, 7.3331, 7.3327, 7.3322, 7.3318, 7.333, 7.3324, 7.3337, 7.3331, 7.3325, 7.332, 7.3314, 7.331, 7.3321, 7.3315, 7.3311, 7.3322, 7.3315, 7.3328, 7.3324, 7.3335, 7.3328, 7.3321, 7.3333, 7.3352, 7.3345, 7.3339, 7.3333, 7.3329, 7.3324, 7.3319, 7.3313, 7.3317, 7.331, 7.3304, 7.3317, 7.3311, 7.3324, 7.3319, 7.3313, 7.3307, 7.3302, 7.3295, 7.329, 7.3301, 7.3294, 7.3287, 7.3281, 7.3276, 7.3272, 7.3284, 7.3278, 7.3272, 7.3267, 7.3262, 7.3273, 7.3285, 7.3298, 7.3291, 7.3284, 7.328, 7.3279, 7.3291, 7.3286, 7.3279, 7.3272, 7.3267, 7.3262, 7.3256, 7.3251, 7.3246, 7.324, 7.3261, 7.3291, 7.3286, 7.3282, 7.3275, 7.3286, 7.328, 7.3275, 7.3272, 7.3265, 7.326, 7.3253, 7.3251, 7.3246, 7.3257, 7.3251, 7.3245, 7.3238, 7.3268, 7.3251, 7.3247, 7.3242, 7.3237, 7.3248, 7.3241, 7.3236, 7.3249, 7.3245, 7.3257, 7.3251, 7.3262, 7.3274, 7.3284, 7.3278, 7.3271, 7.3265, 7.3264, 7.326, 7.3255, 7.3258, 7.3252, 7.3246, 7.3241, 7.3234, 7.3228, 7.3223, 7.3216, 7.3228, 7.3222, 7.32, 7.3194, 7.3206, 7.322, 7.3231, 7.3226, 7.322, 7.3214, 7.3208, 7.3221, 7.3214, 7.3214, 7.3226, 7.3223, 7.3217, 7.3211, 7.3204, 7.3198, 7.3195, 7.3207, 7.3217, 7.3212, 7.3209, 7.3206, 7.3205, 7.3203, 7.3181, 7.3176, 7.3172, 7.3166, 7.3161, 7.3155, 7.3149, 7.3143, 7.3156, 7.3149, 7.3147, 7.3141, 7.316, 7.3172, 7.3167, 7.3162, 7.3157, 7.3151, 7.3148, 7.3141, 7.3134, 7.3148, 7.3141, 7.3155, 7.3151, 7.3145, 7.3156, 7.3149, 7.3144, 7.3139, 7.3134, 7.3129, 7.3125, 7.3124, 7.3118, 7.3113, 7.3108, 7.3101, 7.3112, 7.3105, 7.31, 7.3094, 7.3088, 7.3083, 7.3094, 7.3088, 7.3083, 7.3077, 7.3072, 7.3101, 7.3095, 7.3093, 7.3086, 7.308, 7.3074, 7.3122, 7.3132, 7.3125, 7.3103, 7.3114, 7.3109, 7.3106, 7.312, 7.3113, 7.3116, 7.311, 7.3104, 7.3101, 7.3096, 7.3092, 7.3087, 7.308, 7.3077, 7.3071, 7.3081, 7.3082, 7.3077, 7.3071, 7.3065, 7.3097, 7.3093, 7.3088, 7.3084, 7.3077, 7.3088, 7.3082, 7.3111, 7.3092, 7.3086, 7.3081, 7.3075, 7.307, 7.3065, 7.3059, 7.3054, 7.305, 7.3045, 7.3043, 7.3038, 7.3031, 7.3025, 7.3021, 7.3018, 7.3014, 7.3008, 7.3004, 7.3, 7.3011, 7.3005, 7.3, 7.2994, 7.3006, 7.3017, 7.3011, 7.3008, 7.3006, 7.3001, 7.2995, 7.2989, 7.2984, 7.2981, 7.2982, 7.2976, 7.297, 7.2964, 7.2958, 7.2955, 7.2949, 7.2945, 7.2956, 7.2968, 7.2962, 7.2959, 7.2955, 7.2966, 7.299, 7.2993, 7.2987, 7.2981, 7.2975, 7.297, 7.2964, 7.2958, 7.2968, 7.2996, 7.299, 7.2987, 7.2981, 7.2993, 7.2988, 7.2998, 7.3014, 7.301, 7.3005, 7.2999, 7.2997, 7.3008, 7.3019, 7.3017, 7.3011, 7.3005, 7.2999, 7.2993, 7.299, 7.3001, 7.2995, 7.2989, 7.2983, 7.2977, 7.2987, 7.2998, 7.2994, 7.2988, 7.2996, 7.299, 7.2985, 7.298, 7.2975, 7.297, 7.2965, 7.2964, 7.2959, 7.2954, 7.2948, 7.2945, 7.294, 7.2935, 7.2929, 7.2924, 7.292, 7.2914, 7.2911, 7.2925, 7.2919, 7.2914, 7.2908, 7.2903, 7.2916, 7.2913, 7.2925, 7.2919, 7.2916, 7.2917, 7.2913, 7.2909, 7.2903, 7.2899, 7.2893, 7.2887, 7.2881, 7.2891, 7.2886, 7.2892, 7.2886, 7.2882, 7.2877, 7.2856, 7.285, 7.2846, 7.2841, 7.2837, 7.2833, 7.2827, 7.2876, 7.2874, 7.2869, 7.2879, 7.2876, 7.2874, 7.2872, 7.2867, 7.2883, 7.2884, 7.2864, 7.2878, 7.2872, 7.2866, 7.286, 7.2856, 7.2851, 7.2862, 7.2856, 7.2851, 7.2863, 7.287, 7.2865, 7.2875, 7.2869, 7.2879, 7.2873, 7.2867, 7.2861, 7.2858, 7.2853, 7.2848, 7.2842, 7.2836, 7.283, 7.2841, 7.2835, 7.283, 7.2841, 7.2852, 7.2846, 7.2841, 7.2837, 7.2834, 7.2828, 7.2822, 7.2832, 7.2826, 7.2821, 7.2861, 7.2856, 7.2868, 7.288, 7.2874, 7.2868, 7.2864, 7.2875, 7.2871, 7.2865, 7.2859, 7.2855, 7.2856, 7.2854, 7.2854, 7.285, 7.2844, 7.2838, 7.2833, 7.2828, 7.2825, 7.2949, 7.2943, 7.2938, 7.2933, 7.2944, 7.2954, 7.2965, 7.2961, 7.2956, 7.2952, 7.295, 7.2973, 7.2969, 7.2971, 7.2982, 7.2977, 7.2988, 7.2985, 7.2981, 7.2976, 7.297, 7.2965, 7.2975, 7.2985, 7.2979, 7.2973, 7.2968, 7.2963, 7.2957, 7.2952, 7.2948, 7.2992, 7.2987, 7.2983, 7.298, 7.2974, 7.297, 7.2966, 7.2962, 7.2957, 7.2951, 7.2947, 7.2945, 7.2939, 7.2952, 7.2946, 7.2942, 7.2937, 7.2933, 7.2945, 7.2956, 7.2952, 7.2946, 7.294, 7.2936, 7.2933, 7.2944, 7.2938, 7.2932, 7.2926, 7.292, 7.2916, 7.2911, 7.2906, 7.2901, 7.2896, 7.2906, 7.2902, 7.2897, 7.2908, 7.2903, 7.2897, 7.2892, 7.2903, 7.2898, 7.2892, 7.2887, 7.2883, 7.288, 7.2876, 7.2871, 7.2867, 7.2861, 7.286, 7.2857, 7.2851, 7.2845, 7.2846, 7.2862, 7.2857, 7.2867, 7.2862, 7.2857, 7.2854, 7.285, 7.2844, 7.284, 7.2836, 7.2833, 7.2845, 7.2839, 7.2849, 7.2846, 7.2841, 7.285, 7.283, 7.2825, 7.2806, 7.28, 7.2794, 7.2791, 7.2786, 7.2781, 7.2791, 7.2786, 7.2781, 7.2792, 7.2788, 7.2784, 7.2779, 7.2774, 7.2769, 7.2764, 7.2758, 7.2752, 7.2747, 7.2742, 7.2753, 7.2748, 7.2743, 7.274, 7.2735, 7.273, 7.274, 7.2735, 7.273, 7.2726, 7.2737, 7.2735, 7.2749, 7.2799, 7.2825, 7.2819, 7.2815, 7.2826, 7.2835, 7.2831, 7.2827, 7.2821, 7.2815, 7.281, 7.2843, 7.2839, 7.2835, 7.2846, 7.2841, 7.2855, 7.2865, 7.2896, 7.2892, 7.2901, 7.2912, 7.2906, 7.2903, 7.2903, 7.29, 7.2895, 7.2892, 7.2902, 7.2897, 7.2896, 7.2891, 7.2909, 7.2905, 7.2901, 7.2899, 7.2894, 7.2889, 7.289, 7.29, 7.291, 7.2923, 7.2919, 7.2938, 7.2949, 7.2962, 7.2958, 7.2953, 7.2964, 7.2961, 7.2958, 7.2957, 7.2953, 7.2948, 7.2943, 7.294, 7.295, 7.2945, 7.294, 7.2935, 7.293, 7.2925, 7.292, 7.2933, 7.2929, 7.2924, 7.292, 7.2916, 7.2911, 7.2912, 7.2909, 7.2904, 7.2899, 7.2894, 7.2889, 7.2884, 7.2879, 7.2873, 7.2867, 7.2861, 7.287, 7.2866, 7.2863, 7.2857, 7.2852, 7.2848, 7.2843, 7.2838, 7.2833, 7.2814, 7.2812, 7.2809, 7.2804, 7.2814, 7.281, 7.2805, 7.2799, 7.2794, 7.2788, 7.2783, 7.2778, 7.2773, 7.2768, 7.2821, 7.2857, 7.2867, 7.2898, 7.2931, 7.2942, 7.2937, 7.2932, 7.2928, 7.2923, 7.2919, 7.2914, 7.291, 7.2905, 7.29, 7.2895, 7.289, 7.2899, 7.2895, 7.2905, 7.2901, 7.2895, 7.2905, 7.2899, 7.2884, 7.2895, 7.2891, 7.2886, 7.2917, 7.2958, 7.2968, 7.2966, 7.2962, 7.2957, 7.2953, 7.2951, 7.2946, 7.2941, 7.2938, 7.2934, 7.2918, 7.2914, 7.2896, 7.2905, 7.29, 7.2899, 7.2927, 7.298, 7.2975, 7.2956, 7.2966, 7.2961, 7.2956, 7.2951, 7.2961, 7.2956, 7.2953, 7.2948, 7.2943, 7.2938, 7.2933, 7.2929, 7.2912, 7.2908, 7.2904, 7.2899, 7.2909, 7.2905, 7.2915, 7.291, 7.2921, 7.2931, 7.2927, 7.2921, 7.2932, 7.2927, 7.2923, 7.2933, 7.2928, 7.2923, 7.2917, 7.2912, 7.2907, 7.2901, 7.2895, 7.2893, 7.289, 7.2871, 7.288, 7.2875, 7.2871, 7.2872, 7.2885, 7.288, 7.2889, 7.2871, 7.287, 7.2865, 7.286, 7.2857, 7.2852, 7.2849, 7.2844, 7.2845, 7.2827, 7.2822, 7.2819, 7.2814, 7.2809, 7.2806, 7.2803, 7.2799, 7.2796, 7.2794, 7.2789, 7.2799, 7.2796, 7.2792, 7.2787, 7.2797, 7.2793, 7.2789, 7.2784, 7.278, 7.279, 7.2784, 7.2781, 7.2776, 7.2772, 7.2767, 7.279, 7.2791, 7.2789, 7.2784, 7.2793, 7.2789, 7.2785, 7.2797, 7.2806, 7.2803, 7.2824, 7.2834, 7.2829, 7.2839, 7.2834, 7.2829, 7.2824, 7.282, 7.2829, 7.2811, 7.2821, 7.2843, 7.2852, 7.2862, 7.2875, 7.2885, 7.2867, 7.2863, 7.2875, 7.287, 7.2866, 7.2876, 7.2872, 7.2882, 7.2878, 7.2888, 7.2898, 7.2893, 7.2906, 7.2917, 7.2913, 7.2923, 7.2919, 7.2915, 7.2912, 7.292, 7.2929, 7.2925, 7.2921, 7.2917, 7.2912, 7.291, 7.2919, 7.2915, 7.2911, 7.2906, 7.2902, 7.2897, 7.2892, 7.2888, 7.2885, 7.2881, 7.2891, 7.2886, 7.2869, 7.2879, 7.2874, 7.287, 7.2864, 7.2861, 7.2858, 7.2868, 7.2863, 7.2858, 7.2853, 7.2862, 7.2858, 7.2853, 7.2851, 7.29, 7.2897, 7.2893, 7.289, 7.2901, 7.2897, 7.288, 7.2876, 7.2885, 7.2882, 7.2893, 7.2889, 7.2884, 7.2892, 7.2887, 7.2883, 7.288, 7.2875, 7.2872, 7.2867, 7.2863, 7.2861, 7.2897, 7.2914, 7.2923, 7.292, 7.2916, 7.2926, 7.2921, 7.2918, 7.2915, 7.291, 7.2906, 7.2906, 7.2903, 7.2898, 7.2881, 7.2894, 7.2904, 7.2916, 7.2916, 7.2911, 7.2907, 7.2902, 7.2898, 7.2914, 7.291, 7.292, 7.2916, 7.2911, 7.2908, 7.2905, 7.2902, 7.2898, 7.2893, 7.2893, 7.29, 7.2895, 7.289, 7.2885, 7.2884, 7.2879, 7.2875, 7.2872, 7.2868, 7.2877, 7.2874, 7.2869, 7.2878, 7.2887, 7.2918, 7.2913, 7.2908, 7.2903, 7.2887, 7.2882, 7.288, 7.2875, 7.2873, 7.287, 7.2865, 7.2874, 7.2869, 7.2878, 7.2887, 7.2888, 7.2883, 7.2892, 7.29, 7.2897, 7.2908, 7.2906, 7.2915, 7.2924, 7.2922, 7.2918, 7.2913, 7.2922, 7.2931, 7.2927, 7.2936, 7.2931, 7.2943, 7.2942, 7.2937, 7.2946, 7.2941, 7.294, 7.2949, 7.2945, 7.294, 7.2936, 7.2936, 7.2931, 7.2926, 7.2936, 7.2936, 7.2932, 7.2929, 7.2916, 7.2914, 7.291, 7.2907, 7.2915, 7.291, 7.2905, 7.29, 7.2895, 7.2904, 7.2899, 7.2907, 7.2916, 7.2912, 7.2907, 7.2902, 7.2899, 7.2896, 7.2891, 7.2886, 7.2884, 7.288, 7.2875, 7.2882, 7.2879, 7.2876, 7.2871, 7.291, 7.292, 7.2942, 7.295, 7.295, 7.2945, 7.294, 7.2937, 7.2933, 7.2928, 7.2965, 7.296, 7.2969, 7.2965, 7.2975, 7.2977, 7.2985, 7.2981, 7.2976, 7.2971, 7.2966, 7.2962, 7.2957, 7.2953, 7.2949, 7.2959, 7.2958, 7.2969, 7.2978, 7.2974, 7.3016, 7.3011, 7.3006, 7.3003, 7.2998, 7.2994, 7.2989, 7.2985, 7.298, 7.2975, 7.297, 7.3008, 7.3003, 7.3006, 7.3002, 7.2997, 7.3006, 7.3018, 7.3029, 7.3026, 7.3022, 7.3018, 7.3026, 7.3023, 7.3018, 7.3026, 7.3021, 7.303, 7.3039, 7.3036, 7.3045, 7.3041, 7.3036, 7.3031, 7.3027, 7.3036, 7.3032, 7.3042, 7.3037, 7.3032, 7.3041, 7.3037, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3011, 7.3008, 7.3017, 7.3027, 7.3036, 7.3031, 7.303, 7.3028, 7.3023, 7.3032, 7.3043, 7.3052, 7.3049, 7.3058, 7.3055, 7.3064, 7.3073, 7.3082, 7.3127, 7.3131, 7.3126, 7.3121, 7.3116, 7.3111, 7.3122, 7.3117, 7.3114, 7.311, 7.3106, 7.3102, 7.3098, 7.3098, 7.3107, 7.3115, 7.3112, 7.3121, 7.3116, 7.3111, 7.3119, 7.3115, 7.3123, 7.3118, 7.3128, 7.3123, 7.3133, 7.313, 7.3125, 7.312, 7.3116, 7.3111, 7.3106, 7.3114, 7.311, 7.3108, 7.3117, 7.3112, 7.3109, 7.3106, 7.3101, 7.3104, 7.3099, 7.3107, 7.3102, 7.3097, 7.3118, 7.3113, 7.3108, 7.3103, 7.3098, 7.3095, 7.3093, 7.3093, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3105, 7.31, 7.3108, 7.3117, 7.3113, 7.311, 7.3105, 7.3104, 7.31, 7.3095, 7.3093, 7.3089, 7.3085, 7.3082, 7.3079, 7.3075, 7.307, 7.3066, 7.3061, 7.3056, 7.3052, 7.3047, 7.3056, 7.3052, 7.3047, 7.3043, 7.3041, 7.3037, 7.3044, 7.3039, 7.3048, 7.3044, 7.304, 7.3049, 7.3045, 7.3053, 7.3048, 7.3044, 7.304, 7.3036, 7.3032, 7.3029, 7.3038, 7.3035, 7.3032, 7.3043, 7.3052, 7.3048, 7.3033, 7.3029, 7.3026, 7.3022, 7.3023, 7.3018, 7.3014, 7.3012, 7.3007, 7.3002, 7.2998, 7.3007, 7.3016, 7.3024, 7.302, 7.303, 7.3027, 7.3023, 7.302, 7.3017, 7.3026, 7.3023, 7.3031, 7.3039, 7.3036, 7.3031, 7.3032, 7.3041, 7.3049, 7.3046, 7.3058, 7.3054, 7.3051, 7.3047, 7.3044, 7.3079, 7.3077, 7.3074, 7.307, 7.3054, 7.3059, 7.3055, 7.3065, 7.3062, 7.3071, 7.3068, 7.3071, 7.3067, 7.3062, 7.3071, 7.3067, 7.3062, 7.306, 7.3056, 7.3052, 7.3048, 7.3049, 7.3045, 7.3044, 7.3068, 7.3063, 7.3059, 7.3056, 7.3052, 7.3047, 7.3055, 7.3064, 7.306, 7.3069, 7.3064, 7.3059, 7.3055, 7.305, 7.3045, 7.3054, 7.3063, 7.3066, 7.3061, 7.3057, 7.3055, 7.305, 7.3046, 7.3043, 7.304, 7.3035, 7.3031, 7.3027, 7.3025, 7.3021, 7.3018, 7.3026, 7.307, 7.3066, 7.3104, 7.3099, 7.3095, 7.3093, 7.31, 7.3108, 7.3103, 7.3099, 7.3095, 7.3092, 7.3089, 7.3101, 7.3098, 7.3097, 7.3106, 7.3107, 7.3115, 7.3115, 7.311, 7.3108, 7.3104, 7.3112, 7.3109, 7.3108, 7.3117, 7.3125, 7.3134, 7.313, 7.3129, 7.3124, 7.3109, 7.3119, 7.3114, 7.3109, 7.3105, 7.3101, 7.3096, 7.3104, 7.3113, 7.3109, 7.3105, 7.3089, 7.3097, 7.3092, 7.3088, 7.3096, 7.3092, 7.3088, 7.3083, 7.308, 7.3077, 7.3072, 7.306, 7.3057, 7.3053, 7.3049, 7.3047, 7.305, 7.3046, 7.3059, 7.3054, 7.3042, 7.3038, 7.3049, 7.307, 7.3078, 7.3073, 7.3071, 7.3066, 7.3063, 7.3058, 7.3054, 7.3052, 7.3049, 7.3059, 7.3056, 7.3093, 7.309, 7.3091, 7.311, 7.3106, 7.3104, 7.3125, 7.3121, 7.3118, 7.3113, 7.3111, 7.3108, 7.3116, 7.3112, 7.3108, 7.3105, 7.3116, 7.3114, 7.311, 7.3107, 7.3105, 7.3103, 7.3098, 7.3095, 7.3091, 7.3087, 7.3084, 7.3081, 7.3077, 7.3085, 7.3093, 7.3088, 7.3098, 7.3095, 7.3104, 7.3113, 7.3114, 7.3116, 7.3113, 7.3109, 7.3108, 7.3105, 7.3104, 7.3111, 7.3119, 7.3128, 7.3124, 7.3132, 7.3129, 7.3133, 7.3129, 7.3137, 7.3133, 7.3129, 7.3137, 7.3145, 7.3141, 7.3149, 7.3165, 7.3173, 7.3169, 7.3167, 7.3162, 7.3159, 7.3154, 7.3162, 7.3158, 7.3154, 7.3163, 7.3151, 7.3164, 7.3172, 7.3179, 7.3177, 7.3172, 7.318, 7.3188, 7.3184, 7.3193, 7.3196, 7.3204, 7.3201, 7.3209, 7.3206, 7.3212, 7.3208, 7.3204, 7.3212, 7.3208, 7.3204, 7.3214, 7.3211, 7.3207, 7.3204, 7.3212, 7.3211, 7.3196, 7.3194, 7.3191, 7.3199, 7.3195, 7.3192, 7.3188, 7.3196, 7.3192, 7.3187, 7.3182, 7.3178, 7.3176, 7.3184, 7.318, 7.3191, 7.3211, 7.3207, 7.3203, 7.3211, 7.3198, 7.3194, 7.3202, 7.3199, 7.3198, 7.3194, 7.319, 7.3192, 7.32, 7.3196, 7.3192, 7.3188, 7.3184, 7.318, 7.3176, 7.3175, 7.3171, 7.3168, 7.3164, 7.3149, 7.315, 7.3147, 7.3143, 7.3141, 7.3137, 7.3133, 7.3129, 7.3138, 7.3135, 7.3132, 7.314, 7.3136, 7.3132, 7.3128, 7.3124, 7.3121, 7.3118, 7.3104, 7.31, 7.3109, 7.3105, 7.3101, 7.3111, 7.3107, 7.3102, 7.3099, 7.3096, 7.3097, 7.3111, 7.3121, 7.3119, 7.3118, 7.3114, 7.311, 7.3106, 7.3113, 7.3133, 7.3141, 7.3138, 7.3134, 7.3142, 7.3138, 7.3136, 7.3132, 7.3129, 7.3125, 7.3124, 7.3121, 7.3117, 7.3113, 7.3108, 7.3104, 7.3101, 7.3097, 7.3105, 7.3091, 7.3099, 7.3099, 7.3095, 7.3091, 7.3098, 7.3095, 7.3093, 7.309, 7.3088, 7.3087, 7.3083, 7.3078, 7.3085, 7.3082, 7.3079, 7.3075, 7.3074, 7.307, 7.3067, 7.3063, 7.3071, 7.3069, 7.3069, 7.3066, 7.3065, 7.305, 7.3046, 7.3044, 7.304, 7.3038, 7.3024, 7.3022, 7.3018, 7.3014, 7.301, 7.3006, 7.3004, 7.3012, 7.3009, 7.3005, 7.3004, 7.3012, 7.3009, 7.3006, 7.3005, 7.3003, 7.301, 7.3007, 7.3004, 7.3, 7.3008, 7.3006, 7.3002, 7.301, 7.3007, 7.3003, 7.3002, 7.3011, 7.3007, 7.3016, 7.3023, 7.3031, 7.3027, 7.3022, 7.303, 7.3026, 7.3022, 7.3019, 7.3016, 7.3024, 7.3032, 7.3028, 7.3036, 7.3032, 7.3028, 7.3024, 7.302, 7.3016, 7.3014, 7.301, 7.3006, 7.3004, 7.3001, 7.2999, 7.2995, 7.2991, 7.2987, 7.299, 7.2987, 7.2994, 7.3025, 7.3022, 7.3019, 7.3036, 7.3032, 7.3052, 7.3048, 7.3046, 7.3043, 7.3043, 7.3073, 7.3069, 7.3088, 7.3085, 7.3081, 7.3078, 7.3086, 7.3083, 7.3081, 7.3093, 7.3101, 7.3097, 7.3093, 7.309, 7.3087, 7.3085, 7.3083, 7.3079, 7.3076, 7.3073, 7.3069, 7.3065, 7.3062, 7.3058, 7.3055, 7.3051, 7.3059, 7.3055, 7.3051, 7.3049, 7.3057, 7.3065, 7.3061, 7.3069, 7.3078, 7.3082, 7.309, 7.3087, 7.3084, 7.307, 7.3078, 7.3076, 7.3072, 7.3069, 7.3066, 7.3062, 7.307, 7.3066, 7.3062, 7.3048, 7.3044, 7.304, 7.3036, 7.3033, 7.3031, 7.304, 7.3037, 7.3037, 7.3033, 7.3019, 7.3033, 7.3029, 7.3026, 7.3024, 7.302, 7.3038, 7.3034, 7.3041, 7.3037, 7.3046, 7.3043, 7.3039, 7.3036, 7.3032, 7.3028, 7.3024, 7.3032, 7.3028, 7.3034, 7.3031, 7.3038, 7.3037, 7.3045, 7.3041, 7.3038, 7.3035, 7.306, 7.3068, 7.3064, 7.306, 7.3056, 7.3066, 7.3062, 7.3058, 7.3054, 7.305, 7.3058, 7.3054, 7.305, 7.3047, 7.3043, 7.3039, 7.3035, 7.3043, 7.3039, 7.3046, 7.3043, 7.3039, 7.3036, 7.3033, 7.3029, 7.3025, 7.3021, 7.3028, 7.3024, 7.3023, 7.3019, 7.3015, 7.3011, 7.3008, 7.302, 7.3016, 7.3013, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.3009, 7.3016, 7.3012, 7.3009, 7.3005, 7.3002, 7.2998, 7.2994, 7.2991, 7.2987, 7.2983, 7.2979, 7.2976, 7.2973, 7.2969, 7.2966, 7.2962, 7.2958, 7.2955, 7.2952, 7.2959, 7.2967, 7.2975, 7.2972, 7.2968, 7.2967, 7.2963, 7.2961, 7.2947, 7.2943, 7.294, 7.2947, 7.2944, 7.2943, 7.295, 7.2958, 7.2956, 7.2952, 7.2948, 7.2946, 7.2942, 7.2941, 7.2937, 7.2933, 7.2941, 7.2937, 7.2933, 7.2929, 7.2926, 7.2922, 7.2918, 7.2914, 7.2921, 7.2929, 7.2925, 7.2931, 7.2929, 7.2937, 7.2933, 7.295, 7.2968, 7.2975, 7.2982, 7.2989, 7.2988, 7.2985, 7.2983, 7.2979, 7.2976, 7.2984, 7.2981, 7.2979, 7.2976, 7.2973, 7.2969, 7.2976, 7.2975, 7.2983, 7.2991, 7.2987, 7.2994, 7.2991, 7.3, 7.3009, 7.3006, 7.3014, 7.3011, 7.3008, 7.3006, 7.3013, 7.301, 7.3007, 7.3003, 7.2999, 7.2996, 7.2997, 7.2984, 7.2991, 7.2987, 7.2994, 7.2991, 7.2987, 7.2983, 7.298, 7.2976, 7.2973, 7.2969, 7.2965, 7.2962, 7.2971, 7.2968, 7.2976, 7.2974, 7.297, 7.2977, 7.2974, 7.2971, 7.2968, 7.2964, 7.2971, 7.2967, 7.2963, 7.2959, 7.2956, 7.2952, 7.2948, 7.2966, 7.2963, 7.2959, 7.2955, 7.2952, 7.2951, 7.2949, 7.2945, 7.2942, 7.2938, 7.294, 7.2937, 7.2936, 7.2932, 7.2928, 7.2914, 7.2921, 7.2917, 7.2914, 7.291, 7.2919, 7.2926, 7.2923, 7.2919, 7.2916, 7.2913, 7.2921, 7.2928, 7.2924, 7.292, 7.2916, 7.2923, 7.2919, 7.2916, 7.2924, 7.2932, 7.2928, 7.2935, 7.2931, 7.2928, 7.2924, 7.2921, 7.2918, 7.2925, 7.2921, 7.2917, 7.2913, 7.2909, 7.2905, 7.2902, 7.2899, 7.2896, 7.2894, 7.2914, 7.2913, 7.292, 7.2918, 7.2914, 7.291, 7.2906, 7.2902, 7.2899, 7.2895, 7.2902, 7.2907, 7.2903, 7.2899, 7.2897, 7.2893, 7.29, 7.2898, 7.2894, 7.2901, 7.2899, 7.2912, 7.2928, 7.2928, 7.2925, 7.2922, 7.2931, 7.2928, 7.2925, 7.2921, 7.2917, 7.2914, 7.291, 7.2907, 7.2913, 7.2909, 7.2907, 7.2915, 7.2922, 7.2919, 7.2915, 7.2922, 7.2918, 7.2925, 7.2924, 7.2922, 7.2919, 7.2916, 7.2923, 7.2919, 7.2917, 7.2915, 7.2911, 7.2907, 7.2903, 7.29, 7.2897, 7.2904, 7.2901, 7.2899, 7.2896, 7.2886, 7.2895, 7.2924, 7.292, 7.2922, 7.2929, 7.294, 7.2947, 7.2944, 7.2944, 7.294, 7.2937, 7.2944, 7.294, 7.2937, 7.2933, 7.2929, 7.2937, 7.2934, 7.2931, 7.2927, 7.2923, 7.292, 7.2916, 7.2965, 7.2961, 7.2958, 7.2954, 7.2951, 7.2949, 7.2945, 7.2952, 7.2949, 7.2957, 7.2953, 7.2951, 7.2947, 7.2954, 7.295, 7.2948, 7.2955, 7.2951, 7.2947, 7.2943, 7.294, 7.2937, 7.2934, 7.293, 7.2927, 7.2933, 7.2931, 7.2937, 7.2944, 7.2951, 7.2947, 7.2954, 7.2951, 7.2958, 7.2954, 7.2951, 7.2949, 7.2946, 7.2965, 7.2961, 7.2957, 7.2954, 7.295, 7.2949, 7.2946, 7.2942, 7.2949, 7.2946, 7.2944, 7.2941, 7.2938, 7.2935, 7.2942, 7.2949, 7.2957, 7.2979, 7.2978, 7.2975, 7.2974, 7.2971, 7.2969, 7.2966, 7.2963, 7.296, 7.2957, 7.2944, 7.2941, 7.2937, 7.2935, 7.2942, 7.2938, 7.2944, 7.2941, 7.2947, 7.2944, 7.295, 7.2948, 7.2945, 7.2941, 7.2937, 7.2943, 7.2939, 7.2946, 7.2942, 7.2938, 7.2956, 7.2963, 7.296, 7.2956, 7.2957, 7.2964, 7.2961, 7.2959, 7.2955, 7.2953, 7.295, 7.295, 7.2947, 7.2944, 7.2941, 7.2948, 7.2954, 7.2961, 7.2959, 7.2981, 7.2988, 7.2987, 7.2984, 7.2981, 7.2988, 7.2985, 7.2991, 7.2999, 7.2996, 7.2993, 7.299, 7.306, 7.3057, 7.3063, 7.306, 7.3056, 7.3063, 7.3059, 7.3057, 7.3071, 7.3078, 7.3085, 7.3082, 7.3081, 7.309, 7.3088, 7.3086, 7.3084, 7.3083, 7.308, 7.3077, 7.3064, 7.3081, 7.3078, 7.3075, 7.3072, 7.3079, 7.3075, 7.3071, 7.3067, 7.3063, 7.307, 7.3066, 7.3063, 7.3071, 7.3067, 7.3063, 7.306, 7.3057, 7.3054, 7.305, 7.3046, 7.3042, 7.3038, 7.3045, 7.3052, 7.3059, 7.3057, 7.3054, 7.3051, 7.3059, 7.3057, 7.3054, 7.3053, 7.3051, 7.3048, 7.3045, 7.3053, 7.3052, 7.3049, 7.3056, 7.3052, 7.3049, 7.3056, 7.3053, 7.305, 7.3047, 7.3045, 7.3042, 7.3039, 7.3036, 7.3033, 7.303, 7.3037, 7.3033, 7.3038, 7.3035, 7.3031, 7.306, 7.3076, 7.3063, 7.307, 7.3074, 7.3092, 7.3088, 7.3085, 7.3082, 7.3093, 7.3102, 7.31, 7.3097, 7.3104, 7.31, 7.3111, 7.3109, 7.312, 7.3117, 7.3114, 7.3115, 7.3122, 7.3118, 7.3125, 7.3121, 7.3128, 7.3135, 7.3122, 7.3129, 7.3116, 7.3112, 7.3108, 7.3104, 7.3111, 7.3108, 7.3105, 7.3113, 7.312, 7.3117, 7.3124, 7.3131, 7.3139, 7.3136, 7.3133, 7.3139, 7.3135, 7.3162, 7.3158, 7.3155, 7.3152, 7.3169, 7.3177, 7.3164, 7.3162, 7.3169, 7.3177, 7.3199, 7.3196, 7.3203, 7.32, 7.3209, 7.3217, 7.3213, 7.3231, 7.3231, 7.3238, 7.3234, 7.3235, 7.3231, 7.3241, 7.3238, 7.3234, 7.3231, 7.3238, 7.3235, 7.3232, 7.3229, 7.3226, 7.3225, 7.3222, 7.3229, 7.3226, 7.3229, 7.3239, 7.3248, 7.3268, 7.3265, 7.3276, 7.3299, 7.3306, 7.3302, 7.3298, 7.3294, 7.3291, 7.3306, 7.3302, 7.33, 7.3297, 7.3293, 7.3291, 7.3298, 7.3295, 7.3294, 7.3302, 7.3298, 7.3315, 7.3315, 7.3321, 7.3317, 7.3314, 7.3321, 7.3319, 7.3318, 7.3306, 7.3322, 7.334, 7.3357, 7.3353, 7.3351, 7.3348, 7.3354, 7.3352, 7.3359, 7.3355, 7.3362, 7.3418, 7.3415, 7.3412, 7.3418, 7.3425, 7.3421, 7.3418, 7.3414, 7.3411, 7.3408, 7.3405, 7.3402, 7.3408, 7.3405, 7.3412, 7.3419, 7.3415, 7.3411, 7.3407, 7.3414, 7.343, 7.3437, 7.3444, 7.344, 7.3436, 7.3443, 7.3449, 7.3458, 7.3485, 7.3491, 7.3487, 7.3484, 7.3491, 7.3488, 7.3486, 7.3496, 7.3493, 7.349, 7.3487, 7.3491, 7.3489, 7.3485, 7.3481, 7.3478, 7.3474, 7.3472, 7.3469, 7.3466, 7.3462, 7.346, 7.3456, 7.3453, 7.3459, 7.3455, 7.3451, 7.3447, 7.3444, 7.345, 7.3457, 7.3453, 7.346, 7.3469, 7.3468, 7.3465, 7.3472, 7.347, 7.3467, 7.3466, 7.3473, 7.3471, 7.3471, 7.3479, 7.3476, 7.3473, 7.3472, 7.3469, 7.3477, 7.3484, 7.3481, 7.3489, 7.3485, 7.3485, 7.3492, 7.3489, 7.3485, 7.3482, 7.3479, 7.3476, 7.3474, 7.3471, 7.3478, 7.3475, 7.3474, 7.3473, 7.347, 7.3467, 7.3464]} rtt1_10_10 = {'192.168.122.110': [5.4743, 5.3494, 6.1264, 5.6801, 5.6803, 5.3401, 5.5432, 5.4164, 6.2985, 6.6202, 5.5289, 14.8401, 5.5702, 5.594, 11.6262, 10.8125, 10.9787, 5.5699, 12.6357, 5.3196, 5.4703, 5.3272, 10.9894, 5.5265, 11.3788, 10.9804, 5.4898, 10.4806, 23.1249, 5.6422, 5.4572, 5.3451, 11.3616, 5.2958, 5.9364, 5.4667, 5.4507, 5.441, 6.0833, 10.7987, 11.8411, 5.3022, 11.9996, 10.7069, 5.4467, 11.6322, 6.592, 6.022, 10.7489, 5.2631, 5.5406, 5.5821, 5.2407, 11.6687, 5.9304, 10.9615, 5.8081, 33.3328, 6.1343, 6.3047, 21.8408, 5.4445, 6.2957, 6.2585, 5.8463, 5.3413, 6.4957, 6.7782, 21.9529, 16.515, 5.4755, 0.9091, 0.4644, 6.5014, 5.9791, 5.6658, 5.5196, 5.7685, 5.2876, 5.2054, 17.5219, 5.3947, 16.3548, 0.7474, 10.7291, 5.2938, 6.4175, 6.8312, 6.2172, 6.3863, 21.137, 5.4495, 5.4929, 5.4345, 10.6258, 5.6434, 5.3189, 5.6965, 11.7466, 6.9067, 10.9591, 5.5227, 6.5694, 22.2669, 5.7185, 5.5363, 6.5701, 5.455, 10.9699, 6.2227, 6.3012, 6.516, 5.4939, 5.4932, 5.8544, 5.6686, 6.0461, 27.2543, 5.5583, 5.3248, 5.5125, 5.5528, 6.2103, 5.6121, 5.4743, 6.1758, 5.3842, 6.3469, 5.3337, 10.8922, 5.5189, 5.6913, 5.4085, 5.6396, 11.106, 6.7394, 5.296, 10.7758, 5.656, 11.0726, 5.3959, 10.8948, 5.2907, 6.511, 5.569, 5.9936, 5.7356, 14.2839, 5.8472, 10.8278, 6.3822, 5.4469, 10.6931, 10.8459, 6.4785, 10.8137, 5.5666, 5.5635, 12.5484, 5.6248, 6.427, 6.3379, 5.4667, 5.4395, 5.2822, 5.4109, 5.5265, 5.8708, 5.8453, 6.2609, 5.7456, 11.7643, 5.3473, 5.476, 5.6963, 6.3882, 10.4949, 6.3829, 6.8102, 5.2857, 5.7788, 11.0006, 5.3694, 5.7604, 23.735, 5.3227, 5.5065, 6.1221, 5.1913, 11.152, 5.9829, 16.3114, 6.7067, 5.6107, 8.0097, 6.3746, 5.2645, 6.9292, 5.2867, 5.5764, 5.5425, 6.4383, 5.7833, 11.4999, 6.3012, 6.2726, 5.445, 5.2209, 11.9107, 11.3051, 5.9257, 6.5377, 5.2853, 5.3957, 5.4581, 10.7422, 6.3646, 6.6261, 5.7766, 5.4898, 5.6274, 10.8774, 11.0016, 5.7914, 11.2855, 5.3668, 6.546, 6.3241, 5.3051, 11.2097, 5.5707, 11.1802, 11.1029, 6.1684, 5.4333, 15.8582, 10.6881, 5.4381, 5.7445, 8.7867, 5.2938, 5.6846, 5.5652, 10.9668, 5.3103, 5.4123, 5.698, 0.8152, 10.8788, 10.9882, 6.3384, 6.8235, 7.5333, 5.6643, 6.3145, 0.6075, 5.8537, 6.4731, 5.5528, 20.8216], '192.168.122.119': [5.4898, 5.919, 6.7711, 5.2445, 5.2905, 5.3098, 5.8281, 10.7565, 5.4014, 13.5603, 5.7003, 5.8727, 11.0471, 5.5137, 10.8557, 5.8224, 6.4499, 24.4725, 11.3716, 5.4255, 10.9782, 10.4616, 6.2904, 5.4467, 10.8597, 10.9363, 5.6229, 16.7565, 5.877, 10.4945, 5.3318, 5.542, 5.6205, 16.8185, 10.9622, 5.3828, 6.4118, 5.3456, 5.4064, 5.3928, 5.4896, 5.8503, 5.6958, 5.3024, 5.475, 5.6107, 6.0146, 16.7425, 10.8192, 5.2273, 16.3898, 10.8778, 11.4644, 6.0124, 5.7871, 5.3637, 5.5304, 11.7137, 11.1263, 5.3613, 10.4384, 5.3878, 10.8862, 10.9916, 10.9594, 5.3585, 5.4331, 7.3013, 10.8259, 5.9388, 5.5115, 0.5364, 0.5891, 5.4049, 5.9817, 5.4824, 7.1023, 16.5668, 5.4951, 5.4069, 11.6518, 10.9286, 10.8345, 5.8467, 5.4271, 5.9061, 13.2456, 5.2836, 11.1167, 11.148, 10.7279, 10.9055, 5.4636, 5.9381, 22.9683, 5.6794, 10.7844, 5.8198, 17.4716, 5.4989, 10.993, 11.0393, 6.3081, 6.1691, 6.0198, 5.945, 6.3927, 5.4533, 5.4841, 5.8484, 6.0582, 5.5015, 5.625, 5.5456, 10.9801, 5.2819, 10.5765, 5.4252, 19.6426, 5.3465, 5.5754, 11.1749, 5.3058, 5.6498, 5.9011, 0.644, 11.2929, 15.9781, 11.4264, 5.2335, 5.7051, 5.5268, 5.2688, 10.7658, 10.7017, 12.5816, 5.2266, 5.3725, 10.7448, 6.0303, 11.0171, 5.9261, 5.3606, 5.2724, 5.2636, 26.511, 5.9009, 21.9893, 5.4874, 10.9386, 10.7448, 5.5079, 6.3021, 17.1671, 5.3065, 5.4631, 6.0165, 9.0578, 11.044, 5.518, 5.4498, 10.9499, 5.4224, 5.542, 5.302, 5.82, 5.7111, 11.3692, 11.0817, 5.929, 5.3217, 5.7762, 5.4481, 16.5856, 5.4946, 10.6585, 11.1673, 6.9637, 5.6748, 5.5888, 6.3992, 10.8473, 10.7732, 16.6087, 5.4793, 5.975, 5.4915, 10.9563, 5.271, 5.827, 12.2826, 6.0644, 5.7049, 11.3771, 5.6684, 5.6212, 5.2674, 11.1482, 5.7185, 5.6334, 5.4281, 10.838, 5.5118, 10.8888, 5.713, 11.1566, 5.24, 10.7176, 12.8064, 5.3928, 5.5861, 5.3971, 5.6679, 5.5494, 16.968, 6.0961, 10.9053, 5.6844, 5.4803, 5.527, 5.599, 5.6212, 5.7688, 5.7414, 5.6877, 5.8517, 5.4612, 10.6704, 5.9419, 6.2554, 5.5091, 6.0782, 5.8572, 5.7411, 11.004, 10.6072, 10.7634, 5.4922, 5.7762, 5.6558, 5.1851, 10.9708, 11.4434, 5.4357, 5.4388, 11.147, 6.2675, 0.906, 5.3129, 5.384, 10.9529, 5.3039, 5.1785, 5.7895, 10.8387, 33.2687, 5.6701, 5.6181, 10.9911, 5.2526], '192.168.122.118': [5.4932, 6.741, 13.7329, 5.3694, 10.7343, 10.6883, 5.9149, 10.8676, 5.3399, 12.2643, 11.2214, 11.4198, 5.5759, 6.5, 5.7254, 9.3093, 6.3152, 5.2717, 10.9355, 10.4573, 5.317, 18.4543, 10.8523, 11.1532, 5.6581, 10.9608, 5.3105, 5.6059, 11.3153, 5.7623, 5.6119, 5.6672, 5.295, 5.5254, 11.6978, 10.9184, 5.6467, 5.3701, 5.4529, 5.7921, 5.342, 5.8913, 11.4024, 5.3494, 6.0501, 5.8522, 10.7019, 6.4688, 5.4855, 16.0036, 10.9708, 10.9138, 1.1065, 6.3324, 5.4116, 5.5566, 5.8243, 5.4085, 10.5448, 5.7404, 5.2216, 10.8778, 10.8514, 16.7749, 5.5711, 10.5197, 5.6846, 6.6671, 10.6506, 5.5289, 6.0191, 5.8439, 0.6707, 18.2981, 6.3095, 5.7864, 6.7644, 11.2553, 9.9149, 5.2567, 5.3689, 5.2924, 10.9742, 10.9212, 11.8072, 10.5462, 5.3427, 5.9855, 5.4314, 6.1338, 33.2661, 10.9398, 5.4159, 5.945, 11.2257, 11.3034, 5.444, 15.9364, 5.8615, 6.2366, 5.4998, 6.0277, 5.4309, 10.7667, 5.5897, 11.256, 13.4068, 6.6998, 6.2673, 6.0463, 18.5568, 5.4524, 5.6093, 5.718, 5.4567, 10.6497, 5.8208, 5.4152, 11.0762, 6.402, 5.5737, 5.3294, 5.8362, 5.4877, 5.7259, 0.5834, 6.1448, 1.235, 5.5261, 5.2149, 5.5528, 6.305, 6.3164, 10.7191, 11.214, 5.4088, 10.8089, 10.8423, 11.6351, 11.338, 5.5766, 5.8722, 5.4781, 5.2941, 5.2369, 5.6975, 5.4667, 5.4674, 5.5254, 11.2319, 10.6394, 11.1907, 16.5973, 10.9992, 11.0497, 10.9663, 5.8746, 16.9024, 5.5325, 10.4542, 17.0829, 10.6478, 5.3453, 5.3427, 5.3196, 5.491, 5.2917, 5.2354, 11.0457, 5.3377, 10.7319, 5.564, 5.4886, 11.5385, 5.6047, 17.4575, 6.2525, 5.9233, 5.3422, 5.2617, 5.476, 10.9489, 10.8767, 21.8668, 5.4626, 5.419, 5.6264, 22.4032, 11.4903, 16.3026, 5.6336, 5.2965, 5.6417, 5.4524, 5.6951, 6.3744, 5.2326, 5.4822, 10.7915, 0.5202, 6.0656, 5.8703, 5.6894, 11.6401, 10.8273, 6.31, 5.4677, 5.77, 10.875, 10.8922, 16.6881, 5.8985, 5.4235, 5.4407, 10.9117, 5.5206, 5.4283, 6.2072, 5.2171, 12.5566, 10.7315, 5.7945, 5.2872, 5.6174, 5.9257, 5.9726, 5.6581, 5.4617, 5.3074, 5.4202, 5.6307, 10.7894, 5.5704, 5.6839, 16.4981, 5.2588, 5.3735, 5.2896, 11.3013, 5.3105, 11.2157, 10.9639, 7.324, 10.8273, 5.9409, 5.8274, 5.6567, 0.6344, 5.6224, 5.4834, 11.5101, 6.2382, 5.5153, 5.9047, 6.0086, 11.2641, 6.6147, 5.8818, 5.7783, 6.1812], '192.168.122.120': [6.1116, 5.3353, 11.3487, 5.7242, 11.0874, 5.2655, 16.2282, 5.7423, 5.3267, 9.0251, 17.2536, 11.6396, 5.5244, 5.2896, 5.6782, 5.8973, 6.1352, 5.5456, 11.0059, 5.2879, 5.4467, 5.5439, 5.2941, 5.3864, 5.6331, 5.5242, 21.9083, 5.374, 5.3971, 11.0123, 10.8097, 5.5568, 5.5971, 5.4128, 5.9462, 5.4154, 10.7737, 10.989, 5.6798, 5.3849, 9.45, 5.3978, 5.4963, 5.2812, 11.0216, 5.8119, 5.897, 23.1369, 10.9291, 0.6161, 5.996, 5.8377, 1.2133, 10.8404, 5.7027, 11.7779, 21.5104, 5.5432, 5.7654, 17.3147, 5.4817, 5.3341, 5.4538, 5.4812, 5.4722, 27.8423, 5.6798, 6.7728, 5.5637, 5.8413, 5.4357, 5.2822, 0.7839, 5.3542, 5.872, 11.3769, 11.0967, 6.0384, 5.6841, 10.8836, 5.2645, 5.4138, 10.9012, 5.4274, 5.3608, 5.4324, 6.2892, 5.662, 5.8053, 5.8661, 5.3248, 5.4049, 5.3363, 5.9381, 5.4018, 5.6789, 11.2402, 5.5196, 5.6753, 6.4056, 10.9348, 6.0232, 5.8949, 5.7404, 5.4679, 6.8021, 5.9726, 5.2412, 5.4071, 16.4297, 5.4803, 6.0315, 11.3254, 5.5494, 5.2872, 5.2793, 10.9229, 5.6581, 5.46, 5.9896, 6.0754, 6.202, 5.306, 6.3028, 11.0803, 6.0639, 16.9163, 10.5557, 10.8595, 10.859, 16.8014, 5.3117, 10.9107, 5.3797, 11.1239, 11.1036, 5.4419, 5.4796, 11.1086, 16.5401, 5.9202, 10.8593, 10.7396, 5.4264, 5.399, 11.2166, 5.6903, 11.492, 10.8945, 10.9515, 6.2115, 5.4445, 6.2311, 17.3712, 5.8904, 5.7096, 5.4774, 5.6701, 5.578, 11.27, 5.3258, 5.4817, 6.3667, 6.3579, 10.4315, 5.9371, 11.0972, 5.4696, 16.6979, 11.034, 11.1206, 5.8451, 5.2516, 5.4555, 10.7384, 5.8475, 5.6763, 5.8441, 5.6963, 5.2702, 10.4153, 5.2941, 5.4379, 5.363, 5.4901, 5.5587, 10.7656, 7.0906, 6.1953, 5.6214, 5.4896, 10.9825, 5.7275, 6.6645, 5.615, 22.2278, 5.2676, 10.8421, 5.3174, 5.3921, 0.4516, 22.5308, 5.6882, 5.5971, 5.4665, 5.4622, 5.4295, 6.314, 29.145, 11.4627, 5.6052, 5.4595, 10.5324, 5.4398, 5.9075, 23.3541, 5.9478, 5.5094, 5.543, 5.3835, 5.4955, 5.538, 10.6397, 10.8085, 6.299, 10.4804, 5.5323, 5.482, 10.664, 5.8954, 5.307, 11.0261, 6.0391, 6.2001, 10.8628, 5.6567, 10.7234, 5.5945, 5.6965, 5.4617, 10.848, 5.4936, 10.7398, 10.9916, 10.7853, 6.5479, 10.9878, 0.7052, 10.3955, 10.9072, 11.0652, 5.7919, 11.4145, 5.7149, 11.2021, 29.7606, 5.8854, 6.5169, 11.0128, 10.6828], '192.168.122.115': [6.4092, 5.2743, 10.5462, 11.2517, 10.5469, 10.4134, 10.7787, 6.3963, 5.4398, 7.642, 11.4563, 10.8757, 5.4893, 5.5177, 5.5668, 5.2845, 5.8093, 5.3689, 10.8707, 10.5224, 11.2782, 5.5268, 6.4454, 10.8976, 5.2173, 10.7906, 10.9456, 6.027, 5.414, 10.7725, 10.6978, 5.5809, 5.4982, 11.0278, 5.9888, 5.8873, 10.4814, 5.527, 5.9075, 5.4083, 0.8283, 5.4393, 5.383, 11.3084, 5.4314, 10.0775, 10.7772, 10.8137, 5.4505, 0.5379, 11.0035, 5.6696, 0.6967, 10.8101, 5.3711, 10.9048, 11.2934, 5.9323, 0.5519, 16.3589, 5.5869, 0.845, 15.9073, 5.6098, 10.6206, 10.8857, 5.2145, 6.6352, 6.0742, 5.6589, 16.1438, 0.4218, 6.1021, 5.2688, 6.0766, 6.0387, 6.0267, 12.8775, 5.2907, 22.0454, 11.57, 16.4146, 5.4913, 5.3639, 5.3577, 10.8924, 10.6194, 5.5974, 5.2309, 5.7628, 10.7965, 11.3766, 5.46, 5.9638, 5.404, 11.2782, 10.8795, 11.2734, 0.4916, 5.3756, 5.4097, 5.4514, 5.8763, 5.9769, 6.1285, 5.2953, 5.2507, 5.3458, 5.9936, 10.9627, 5.3921, 5.4505, 22.1748, 10.9146, 16.4201, 5.3327, 5.2617, 11.2472, 5.3711, 5.3549, 12.7895, 5.9507, 5.2822, 10.9668, 10.9756, 19.1066, 5.9116, 6.2358, 6.0821, 5.1992, 5.4114, 5.7127, 5.5518, 5.3551, 11.2429, 5.439, 5.5153, 6.639, 5.332, 22.4376, 10.9677, 5.2578, 5.2166, 10.8654, 10.5264, 10.5777, 10.9954, 11.2135, 10.9448, 10.9818, 5.4164, 6.1154, 6.057, 5.9032, 6.7356, 5.4333, 6.4015, 10.6466, 6.0294, 5.4765, 10.8759, 10.9653, 11.0776, 5.486, 5.3647, 16.5496, 5.5263, 5.7211, 6.0699, 5.3418, 5.4054, 0.6342, 5.4326, 5.3573, 10.9713, 17.205, 16.2618, 7.9532, 5.2166, 5.2159, 11.0917, 10.8378, 5.4493, 10.8902, 5.1906, 5.482, 5.5535, 5.6505, 5.2464, 5.6517, 11.2219, 5.9144, 6.4373, 6.413, 5.6467, 5.5647, 5.3053, 15.9931, 5.4026, 5.893, 6.175, 5.6071, 5.6586, 5.7728, 10.988, 5.8949, 10.8426, 10.9715, 11.4114, 5.7051, 5.619, 10.7677, 5.4753, 5.4083, 11.06, 16.7642, 10.973, 5.9323, 11.4679, 27.7224, 6.0279, 5.5704, 5.2576, 5.5757, 5.3599, 5.682, 10.8745, 10.7558, 10.5917, 10.9646, 10.5798, 6.1214, 11.8647, 10.3481, 5.9297, 10.6416, 5.2614, 21.9574, 6.1765, 5.5361, 5.4634, 5.4507, 6.9408, 11.095, 10.7272, 20.4568, 11.0469, 0.8869, 5.2862, 5.4502, 11.3778, 6.1541, 10.4156, 5.4941, 5.6946, 11.4553, 6.6714, 10.9401, 5.7302, 5.7421], '192.168.122.116': [6.7875, 11.6584, 6.2265, 21.3084, 5.7273, 5.7075, 5.2814, 5.3003, 5.2848, 33.3142, 5.6007, 5.619, 5.7132, 5.441, 6.3224, 5.5742, 5.5151, 6.0394, 10.865, 10.4423, 22.7954, 5.4924, 31.1017, 10.8721, 10.7422, 10.9107, 5.5661, 5.8532, 5.8703, 5.6324, 10.9894, 5.5606, 5.5971, 16.2289, 10.8826, 5.5258, 10.8917, 5.3835, 6.0017, 5.4014, 5.6338, 10.9382, 5.43, 16.6547, 6.238, 5.2712, 5.7361, 10.7784, 5.3558, 0.4265, 5.5065, 6.007, 0.4406, 10.9715, 0.6127, 5.6813, 11.066, 32.939, 0.3369, 21.7905, 27.2505, 0.8023, 21.9402, 5.5294, 16.1669, 16.5114, 11.6334, 5.4858, 10.7136, 10.6645, 5.7068, 0.5829, 11.1232, 6.1817, 6.7155, 10.6843, 11.3978, 5.9545, 15.6221, 5.4252, 5.1899, 5.4803, 10.5314, 10.8042, 5.3566, 10.54, 5.3601, 6.5236, 5.5034, 5.7023, 5.8224, 6.5405, 10.9193, 5.455, 5.2702, 5.7447, 6.3379, 10.7427, 6.0863, 5.4331, 5.466, 10.8538, 17.0724, 10.371, 5.4791, 5.3787, 5.8527, 5.9435, 5.9016, 10.8213, 10.8294, 5.4231, 10.9987, 5.8115, 5.774, 5.321, 10.8502, 5.4202, 5.4595, 6.0201, 5.2886, 10.4327, 5.4259, 11.2205, 10.9937, 11.0195, 5.9218, 6.2857, 5.4624, 5.3728, 5.2505, 10.6316, 5.3823, 10.7536, 6.0892, 10.9868, 10.8294, 6.3384, 5.5368, 11.0741, 5.8143, 16.5162, 22.0973, 5.4021, 5.9607, 10.7958, 5.7189, 10.8459, 10.8404, 5.4824, 5.8155, 12.4726, 10.8562, 10.8721, 5.9071, 5.5385, 10.9143, 5.5242, 10.778, 5.9063, 5.4216, 10.9925, 5.8801, 11.0478, 33.6385, 10.6065, 27.6418, 5.5621, 10.7079, 5.276, 6.1831, 1.08, 22.1651, 5.4264, 5.919, 5.326, 5.2049, 0.5455, 5.3849, 5.3413, 27.5276, 10.7827, 16.3877, 6.0539, 5.564, 5.4095, 5.9707, 5.4028, 16.6113, 11.3237, 5.6691, 5.7933, 5.486, 11.3735, 5.6953, 5.7182, 16.6574, 10.5402, 5.4827, 5.4111, 5.6713, 11.4784, 6.758, 10.9766, 10.8054, 5.9066, 10.9401, 11.5054, 5.6641, 11.2276, 5.5952, 5.2099, 5.8053, 5.4963, 6.0668, 10.9842, 5.5146, 5.7471, 16.609, 21.6875, 11.137, 5.5573, 5.3959, 5.6658, 11.57, 5.8498, 11.6727, 5.326, 6.6059, 5.4481, 10.9422, 16.324, 5.8007, 5.4462, 5.6865, 10.6394, 10.8354, 10.793, 5.8041, 5.2636, 5.3835, 6.1176, 5.4736, 5.6126, 5.4402, 5.2309, 5.7783, 0.55, 10.8476, 16.4533, 5.6126, 5.626, 5.5385, 5.7442, 5.6117, 5.6069, 5.4462, 11.179, 27.307, 10.8814], '192.168.122.114': [6.6602, 21.8852, 10.5515, 10.7384, 5.3139, 5.2032, 10.8378, 5.3453, 5.4469, 11.3225, 5.7368, 0.5617, 6.1603, 6.4385, 5.2454, 21.4033, 9.8453, 0.5288, 6.2032, 10.8514, 10.9289, 6.386, 5.4474, 5.8727, 10.9434, 10.7694, 5.816, 5.5585, 11.3146, 10.4733, 5.4173, 11.1101, 5.7256, 5.4514, 5.5656, 5.9841, 5.5256, 12.8391, 5.3346, 5.3873, 5.2829, 10.6404, 5.2984, 10.735, 11.3688, 5.2152, 11.6599, 5.4834, 5.2633, 0.7706, 5.9247, 11.297, 0.6936, 10.814, 0.6723, 5.8286, 21.5101, 5.6531, 16.9098, 5.9524, 5.6846, 1.9381, 5.7724, 5.2226, 16.7112, 10.9046, 28.079, 6.5997, 5.4221, 5.3272, 5.2323, 0.6273, 5.3895, 0.8469, 10.8831, 5.3515, 10.9792, 5.6858, 10.6702, 5.4193, 10.6556, 10.8099, 10.7358, 16.3391, 10.8671, 5.5833, 5.3592, 5.6574, 5.4653, 0.8097, 10.8008, 10.9386, 5.4307, 5.481, 5.2984, 5.8599, 10.946, 11.0021, 10.8867, 5.3613, 5.3978, 5.3871, 10.9761, 5.5594, 5.224, 5.3334, 10.7236, 5.9152, 5.5037, 10.8681, 5.8761, 11.0388, 10.8972, 10.9205, 5.6214, 5.2702, 5.4736, 5.9876, 5.487, 5.8632, 5.671, 5.5416, 5.7781, 10.6444, 11.0345, 5.3198, 5.2545, 6.8128, 5.3844, 0.7143, 5.2736, 10.8373, 10.6473, 6.4766, 5.4076, 5.429, 5.6283, 11.054, 5.2774, 16.6681, 6.4287, 10.8495, 5.5344, 11.0664, 5.8348, 11.538, 5.5003, 5.7039, 5.3973, 5.8177, 10.7541, 11.601, 5.4624, 5.4364, 5.8844, 5.4607, 10.9727, 5.7366, 5.6095, 5.4739, 5.4507, 6.1328, 22.465, 5.7323, 5.5311, 6.263, 5.4953, 5.4088, 10.946, 5.6095, 10.9441, 0.9241, 13.8288, 10.8461, 6.3396, 5.9497, 5.8663, 5.8923, 5.4107, 10.5145, 27.3979, 5.8808, 6.2306, 11.0424, 5.4908, 5.5108, 6.0928, 7.2417, 5.2519, 11.4858, 28.2805, 5.6825, 5.61, 5.6183, 11.3459, 10.9723, 5.2614, 5.3639, 5.4107, 10.9742, 5.7142, 5.4798, 5.8181, 5.6889, 5.3797, 11.7629, 5.2879, 6.227, 5.3415, 5.2862, 11.1279, 10.7405, 5.4114, 5.3906, 10.9589, 5.3573, 10.8845, 21.9774, 10.8154, 10.8302, 5.5079, 5.5127, 5.3568, 5.7037, 26.2206, 5.8692, 5.446, 10.8614, 5.9435, 10.8948, 5.6939, 11.6425, 5.7316, 10.802, 30.3447, 10.4902, 11.0106, 11.0421, 6.2957, 5.7051, 5.4638, 11.0457, 10.6692, 6.2907, 5.9161, 6.4955, 5.4996, 0.7539, 11.1368, 5.8808, 11.5318, 10.7872, 5.5764, 5.4448, 5.6229, 5.7142, 5.4033, 6.5389, 10.3779, 10.5212], '192.168.122.113': [6.1097, 10.6566, 10.5853, 5.9462, 5.2862, 5.3642, 5.4536, 6.1572, 5.5923, 5.3971, 5.5206, 0.6919, 5.2652, 6.1638, 27.5834, 5.9998, 15.9521, 5.9268, 11.0595, 11.0445, 5.4104, 5.3883, 10.8278, 5.5466, 22.8617, 5.3542, 5.4598, 10.5743, 14.2767, 10.9401, 10.9687, 5.4798, 11.121, 5.4076, 5.4812, 6.4089, 0.6022, 20.9394, 5.336, 5.2462, 10.6268, 5.3275, 10.9079, 5.3456, 5.2767, 11.3921, 5.5587, 5.4827, 10.9241, 0.5558, 5.5449, 5.4462, 0.3741, 5.3287, 0.7129, 7.2215, 5.6663, 6.3317, 10.8392, 10.8936, 5.8303, 0.7582, 5.4543, 5.4324, 10.8788, 5.2931, 11.5926, 10.9506, 10.8185, 5.4824, 10.9649, 0.6731, 5.4259, 0.6688, 5.2674, 10.7324, 6.2621, 6.0894, 5.347, 5.3053, 10.6015, 5.4255, 9.4392, 5.4367, 5.4882, 5.6818, 10.9305, 11.426, 5.4784, 5.7657, 5.2328, 5.3585, 10.8802, 5.5373, 10.7126, 5.8601, 5.4152, 10.855, 11.8136, 10.7396, 5.8227, 5.4305, 10.9522, 5.8999, 6.0475, 6.012, 6.1071, 10.7541, 5.3461, 10.9253, 5.6303, 5.7094, 10.9172, 11.3692, 10.7694, 5.3012, 5.415, 5.3394, 5.3108, 11.1151, 5.4915, 20.6103, 5.8262, 11.1272, 5.4579, 23.2859, 10.6652, 11.3075, 5.4064, 6.2075, 10.4077, 10.2885, 5.672, 10.7863, 17.2386, 6.2072, 16.341, 10.9558, 5.5611, 6.0778, 10.9425, 10.8809, 5.5501, 5.5799, 11.1926, 6.1927, 6.0468, 5.3177, 10.803, 11.6098, 10.653, 6.3229, 6.8505, 10.89, 10.844, 10.6709, 5.465, 11.1008, 5.9712, 5.82, 10.7651, 6.3798, 5.4872, 16.1545, 5.6274, 6.2208, 5.3468, 5.3067, 5.6455, 32.4721, 5.3725, 0.6196, 5.3515, 6.1443, 5.3289, 5.8408, 10.5515, 5.8451, 5.2075, 5.2493, 6.038, 0.8898, 0.479, 5.4631, 10.9499, 5.5001, 5.6102, 5.4748, 5.7282, 6.1636, 6.8934, 10.7191, 11.6618, 5.8141, 11.0447, 5.6381, 5.3296, 10.7074, 11.4055, 10.963, 5.3792, 5.4297, 16.5396, 11.4932, 5.9912, 16.398, 10.8953, 21.0927, 10.9653, 5.4317, 5.4765, 10.6459, 10.3998, 5.4512, 11.0452, 16.9373, 5.3306, 5.4457, 10.7601, 10.7872, 5.486, 5.5089, 5.8868, 5.6283, 5.7862, 5.3961, 5.4438, 10.8128, 10.6032, 5.3902, 6.258, 5.4159, 11.1475, 5.2845, 5.4643, 10.6311, 5.3408, 5.8224, 5.7006, 5.595, 10.8099, 11.0126, 10.896, 12.9991, 10.89, 9.4335, 5.6505, 0.8337, 6.0415, 18.8353, 5.62, 5.5707, 17.1678, 5.7042, 11.3492, 7.1552, 8.1553, 5.4774, 5.6338, 10.798], '192.168.122.112': [6.6125, 5.5645, 10.5946, 11.8713, 15.9001, 11.2586, 10.8254, 16.2265, 10.9048, 6.3736, 5.605, 0.6585, 5.3959, 5.825, 11.2498, 5.2698, 5.7843, 5.2419, 5.8157, 10.6268, 5.3747, 6.341, 10.8926, 5.4038, 11.3842, 5.3983, 5.5132, 5.2459, 10.7982, 5.7573, 5.2838, 5.5094, 5.5149, 5.2421, 5.3141, 6.1073, 0.7484, 5.4691, 5.6562, 5.4846, 5.4369, 11.2696, 16.4752, 5.4097, 5.4548, 10.4196, 5.4026, 5.2888, 10.7374, 0.4601, 5.4896, 22.3451, 0.4125, 5.4975, 0.5937, 5.7178, 10.2999, 5.7499, 10.6742, 5.3937, 5.645, 0.5991, 5.4739, 10.69, 5.4615, 16.9995, 5.4548, 5.8846, 10.7071, 5.9607, 10.8147, 0.6783, 5.4412, 0.7348, 5.43, 5.3463, 5.6548, 5.3339, 10.7553, 5.4016, 5.5573, 5.3976, 21.6773, 5.5156, 11.0281, 10.3321, 5.2509, 5.8064, 5.7478, 11.3142, 10.581, 5.4367, 10.8495, 5.7001, 5.5792, 6.1207, 10.6704, 5.6777, 6.0284, 10.8283, 10.9849, 5.4097, 10.5689, 10.7875, 10.6878, 5.6207, 5.3773, 5.6381, 6.0358, 10.823, 10.9692, 5.2927, 10.9136, 7.3903, 5.2962, 5.4252, 5.8789, 5.4719, 16.3779, 22.0606, 16.4299, 10.8323, 21.1756, 5.7018, 11.0683, 5.7487, 5.3816, 5.645, 10.9463, 5.2621, 10.3791, 5.7228, 16.4721, 5.8875, 5.8603, 5.2803, 6.0284, 5.4231, 5.2381, 10.5226, 5.3709, 5.3816, 5.4293, 11.0567, 6.2199, 11.3499, 16.7074, 5.5611, 11.121, 11.5423, 10.4482, 5.5156, 21.7669, 10.92, 10.8056, 6.2876, 10.9017, 5.6219, 10.8156, 5.3685, 5.8391, 6.1989, 5.5017, 5.5075, 10.6542, 5.8732, 11.1272, 5.4305, 10.7915, 10.9906, 5.512, 3.5157, 5.3892, 10.5278, 5.4975, 5.4121, 5.3742, 5.8405, 5.9125, 5.2276, 5.6586, 6.9728, 0.7064, 5.3751, 6.356, 6.4003, 5.6314, 5.7282, 21.2114, 5.6839, 5.4758, 5.7142, 5.8277, 5.496, 11.5471, 5.5695, 10.926, 6.2068, 6.1648, 10.993, 5.5561, 5.6152, 10.8273, 5.867, 21.6129, 6.0785, 11.2967, 5.2211, 10.4733, 5.3942, 11.0958, 5.9552, 6.0847, 5.4493, 11.1403, 5.3926, 10.9742, 5.4233, 5.5892, 5.4414, 5.6138, 6.4259, 5.348, 0.622, 6.2153, 5.47, 10.9148, 5.4493, 5.8701, 10.7257, 6.2494, 5.9736, 0.9689, 11.4861, 5.4505, 5.1975, 5.1951, 11.0641, 11.4124, 5.9161, 5.4262, 11.0803, 28.1923, 5.5428, 11.0164, 6.4774, 10.9408, 0.5114, 16.1619, 26.4544, 5.758, 5.9094, 5.533, 5.3537, 11.272, 10.9181, 10.9501, 29.7203, 10.3443, 10.9313]} cpu1_10_10 = [10.4, 57.2, 2.3, 3.6, 1.4, 0.3, 0.4, 0.5, 0.3, 0.3, 0.0, 0.6, 0.3, 1.3, 0.8, 0.1, 0.5, 0.2, 0.8, 1.2, 0.0, 0.8, 0.5, 0.1, 0.6, 0.0, 0.2, 0.1, 0.0, 0.0, 0.0, 0.1, 0.3, 0.2, 0.0, 0.1, 1.7, 2.2, 0.4, 0.5, 0.5, 0.1, 0.2, 0.2, 0.1, 0.3, 0.7, 0.9, 0.8, 0.2, 0.0, 0.4, 0.6, 1.0, 0.7, 2.4, 2.1, 0.1, 0.0, 0.0, 0.2, 0.2, 0.5, 0.9, 0.4, 0.2, 0.2, 0.5, 0.5, 0.2, 0.3, 0.7, 0.6, 0.1, 0.3, 1.2, 1.5, 1.8, 0.8, 0.8, 0.2, 0.2, 0.0, 0.4, 1.2, 0.7, 0.5, 1.6, 1.3, 0.1, 0.0, 0.4, 0.5, 0.1, 0.4, 0.0, 0.3, 0.5, 0.9, 1.1, 0.5, 2.1, 1.7, 0.7, 0.4, 0.3, 1.4, 1.2, 0.5, 0.2, 1.2, 0.4, 0.6, 0.9, 0.0, 0.7, 0.4, 0.0, 0.9, 1.0, 0.7, 0.1, 1.2, 0.9, 0.4, 0.7, 0.3, 1.1, 0.9, 0.1, 0.3, 0.6, 0.2, 0.4, 0.2, 0.5, 0.9, 0.3, 0.3, 0.5, 0.1, 0.7, 0.0, 0.7, 0.1, 0.8, 1.1, 0.8, 2.0, 3.2, 2.6, 0.2, 0.2, 0.4, 0.1, 0.3, 0.5, 1.3, 1.2, 0.3, 0.1, 0.5, 0.3, 1.1, 5.5, 4.8, 0.2, 0.4, 0.4, 1.4, 0.7, 0.2, 0.0, 0.4, 1.1, 0.6, 0.3, 0.1, 0.2, 0.4, 0.7, 0.4, 1.7, 1.8, 0.2, 0.5, 0.8, 0.5, 0.2, 0.2, 0.4, 0.1, 0.2, 0.5, 1.2, 0.4, 0.0, 0.5, 0.3, 0.1, 0.2, 0.1, 0.3, 0.4, 0.1, 0.3, 0.1, 0.1, 0.2, 0.2, 0.2, 1.3, 1.2, 5.0, 5.5, 0.4, 1.0, 0.9, 0.1, 0.3, 0.4, 0.2, 0.5, 0.5, 0.0, 0.8, 0.9, 0.1, 0.5, 3.2, 2.6, 3.5, 3.5, 2.2, 2.3, 0.6, 0.2, 0.6, 0.1, 3.2, 3.4, 0.2, 0.4, 0.8, 0.0, 0.7, 0.4, 0.0, 0.3, 0.1, 0.2, 0.8, 0.2, 1.0, 0.7, 2.1, 1.1, 0.7, 0.7, 0.4] off_mec1_10_10 = 54 off_cloud1_10_10 = 114 inward_mec1_10_10 = 31 loc1_10_10 = 706 deadlock1_10_10 = [4] memory1_10_10 = [0.2187, 0.2188, 0.2189, 0.2191, 0.2192, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2197, 0.2198, 0.2198, 0.2198, 0.2199, 0.2199, 0.22, 0.2202, 0.2204, 0.2204, 0.2205, 0.2205, 0.2206, 0.2206, 0.2206, 0.2207, 0.2207, 0.2208, 0.2209, 0.2209, 0.2209, 0.2211, 0.2211, 0.2212, 0.2212, 0.2212, 0.2212, 0.2212, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2214, 0.2215, 0.2216, 0.2216, 0.2217, 0.2219, 0.222, 0.2221, 0.2221, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2224, 0.2225, 0.2226, 0.2226, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2227, 0.2229, 0.223, 0.223, 0.2232, 0.2233, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2237, 0.2238, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2239, 0.2241, 0.2241, 0.2242, 0.2244, 0.2244, 0.2245, 0.2245, 0.2245, 0.2245, 0.2246, 0.2247, 0.2248, 0.2248, 0.225, 0.225, 0.2251, 0.2252, 0.2252, 0.2252, 0.2253, 0.2253, 0.2256, 0.2256, 0.2257, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.226, 0.226, 0.226, 0.2261, 0.2261, 0.2262, 0.2262, 0.2262, 0.2264, 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.2267, 0.2267, 0.2267, 0.2267, 0.2267, 0.2268, 0.2269, 0.2269, 0.227, 0.227, 0.227, 0.227, 0.227, 0.2271, 0.2271, 0.2271, 0.2273, 0.2273, 0.2273, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2276, 0.2276, 0.2276, 0.2276, 0.2282, 0.2282, 0.2282, 0.2283, 0.2283, 0.2283, 0.2283, 0.2283, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2284, 0.2285, 0.2285, 0.2285, 0.2286, 0.2286, 0.2286, 0.2287, 0.2287, 0.2287, 0.2287, 0.2288, 0.2288, 0.2288, 0.2288, 0.2291, 0.2291, 0.2296, 0.2296, 0.2297, 0.2297, 0.2297, 0.2298, 0.2298, 0.2298, 0.2299, 0.2299, 0.2299, 0.2299, 0.2299, 0.23, 0.23, 0.23, 0.23, 0.23, 0.2302, 0.2302, 0.2303, 0.2303, 0.2303, 0.2303, 0.2304, 0.2304, 0.2304, 0.2304, 0.2305, 0.231, 0.231, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2311, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312, 0.2312] task_received1_10_10 = 874 sent_t1_10_10 = {'124': 267, '125': 236, '126': 371} cooperate1_10_10 = {'mec': 54, 'cloud': 114} task_record1_10_10 = {} outward_mec1_10_10 = 32 offload_check1_10_10 = [30, 2]
409,678
409,497
from django.conf import settings from django.conf.urls.static import static from django.conf.urls import include,url from . import views urlpatterns=[ url(r'api/user/user-id/(?P<pk>[0-9]+)/$', views.UserDescription.as_view()), url(r'api/project/project-id/(?P<pk>[0-9]+)/$', views.ProjectDescription.as_view()), url(r'^profile/',views.profile,name='profile'), url('^$',views.index,name ='index'), url(r'^search/', views.search_results, name='search_results'), url(r'^user/',views.user,name ='user'), url(r'^tinymce/', include('tinymce.urls')), url(r'^api/profile/', views.UserList.as_view()), url(r'^api/project/', views.ProjectList.as_view()), url(r'^project/',views.new_project,name ='newproject'), url(r'^ajax/newsletter/$', views.newsletter, name='newsletter') ] if settings.DEBUG: urlpatterns+= static(settings.MEDIA_URL, document_root = settings.MEDIA_ROOT)
940
343
import yaml import argparse from ansible_vault import Vault def create_file(args): svc = open("netbox_tools/webhook_proxy_svc.py", "r") all_lines = svc.readlines() svc = open("netbox_tools/webhook_proxy_svc.py", "w") for index, content in enumerate(all_lines): if "'token'" in content: all_lines[index] = " 'token': (None, '{}'),\n".format(args.gitlab_token) if "gitlab_url =" in content: all_lines[index] = "gitlab_url = '{}'\n".format(args.gitlab_url) if "host_vars = " in content: all_lines[index] = "host_vars = '{}repository/files/ansible%2Fhost_vars%2F{}.yml?ref=master'\n".format( args.gitlab_url.split("trigger")[0], args.nxos_devices[0]) svc.writelines(all_lines) svc.close() inv = open("netbox_tools/inventory.py", "r") all_lines = inv.readlines() inv = open("netbox_tools/inventory.py", "w") for index, content in enumerate(all_lines): if "URL =" in content: all_lines[index] = "URL = '{}'\n".format(args.netbox_url) if "TOKEN =" in content: all_lines[index] = "TOKEN = '{}'\n".format(args.netbox_token) inv.writelines(all_lines) inv.close() config = dict() config["ansible_connection"] = "network_cli" config["ansible_network_os"] = "nxos" config["ansible_user"] = args.nxos_username config["ansible_password"] = "{{ vault_ansible_password }}" config["nxapi_port"] = args.nxos_port config["netbox_url"] = args.netbox_url with open("ansible/group_vars/all", "w") as file: yaml.dump(config, file) with open("ansible/hosts", "w") as file: for device in args.nxos_devices: file.write("\n[{}]\n".format(device)) file.write("{}\n".format(device)) data = dict({"vault_ansible_password": args.nxos_password, "netbox_token": args.netbox_token}) vault = Vault(args.ansible_vault_password) vault.dump(data, open("ansible/group_vars/vault", "wb")) def main(): # show arguments for the user parser = argparse.ArgumentParser() parser._action_groups.pop() required = parser.add_argument_group("required arguments") required.add_argument("-d", dest="nxos_devices", help="NXOS Hostname or IP ; nxos1.lab.local 192.168.1.1 ...", required=True, nargs='+') required.add_argument("-np", dest="nxos_port", help="NXAPI Port ; 80", required=True) required.add_argument("-u", dest="nxos_username", help="NXOS Username", required=True) required.add_argument("-p", dest="nxos_password", help="NXOS Password", required=True) required.add_argument("-pv", dest="ansible_vault_password", help="Ansible Vault Password", required=True) required.add_argument("-nu", dest="netbox_url", help="Netbox URL ; http(s)://netbox.lab.local", required=True) required.add_argument("-nt", dest="netbox_token", help="Netbox Token ; 12345abcdef", required=True) required.add_argument("-gu", dest="gitlab_url", help="Gitlab Pipeline Trigger Url ; http(" "s)://gitlab.lab.local/api/v4/projects/91/trigger/pipeline", required=True) required.add_argument("-gt", dest="gitlab_token", help="Gitlab Pipeline Token ; 12345abcdef", required=True) args = parser.parse_args() create_file(args) if __name__ == '__main__': main()
3,485
1,196
# -*- coding: utf-8 -*- """ The data is (should be) based on the lecture Energie und Klimasysteme II, Erneuerbare Energieerzeugung am Gebäude, FS 2019, Folie 30, """ from __future__ import print_function def get_performance_ratio(performance_scenario): # return "\n".join("{key}: {value}".format(key=key, value=value) # for key, value in performance_scenario.items()) return performance_scenario["performance ratio"]
448
152
import netCDF4 from os import path from test_utils.utils import count_strings, read_log_file import pytest SCRIPT_PATH = path.dirname(path.realpath(__file__)) class TestChm15kProcessing: product = 'lidar' instrument = 'chm15k' @pytest.fixture(autouse=True) def _fetch_params(self, params): self.full_path = params['full_path'] @pytest.mark.first_run def test_that_refuses_to_process_without_reprocess_flag(self): with pytest.raises(OSError): netCDF4.Dataset(self.full_path) @pytest.mark.first_run def test_that_calls_metadata_api_only_once(self): data = read_log_file(SCRIPT_PATH) assert len(data) == 1 assert '"GET /api/files?dateFrom=2020-10-22&dateTo=2020-10-22&site=bucharest&developer=True' \ '&product=lidar&showLegacy=True HTTP/1.1" 200 -' in data[0] @pytest.mark.first_run def test_that_does_not_call_pid_api(self): f = open(f'{SCRIPT_PATH}/pid.log') data = f.readlines() assert len(data) == 0 @pytest.mark.reprocess def test_attributes(self): nc = netCDF4.Dataset(self.full_path) assert nc.year == "2020" assert nc.month == "10" assert nc.day == "22" assert nc.cloudnet_file_type == self.product assert hasattr(nc, 'pid') is True nc.close() @pytest.mark.reprocess def test_that_calls_pid_api(self): f = open(f'{SCRIPT_PATH}/pid.log') data = f.readlines() assert len(data) == 1 assert 'POST /pid/ HTTP/1.1" 200 -' in data[0] @pytest.mark.reprocess def test_that_calls_metadata_api(self): data = read_log_file(SCRIPT_PATH) n_raw_files = 3 n_img = 2 n_gets = 5 n_puts = n_img + 2 n_posts = n_raw_files assert len(data) == n_gets + n_puts + n_posts # Check product status assert '"GET /api/files?dateFrom=2020-10-22&dateTo=2020-10-22&site=bucharest&developer=True' \ '&product=lidar&showLegacy=True HTTP/1.1" 200 -' in data[0] # Two API calls the get instrument status... # GET raw data assert '"GET /upload-metadata?dateFrom=2020-10-22&dateTo=2020-10-22&site=bucharest' \ '&developer=True&instrument=chm15k&status%5B%5D=uploaded&status%5B%5D=processed HTTP/1.1" 200 -' in data[3] # GET calibration assert '"GET /api/calibration?site=bucharest&date=2020-10-22&instrument=chm15k HTTP/1.1" 200 -' in data[4] # PUT file assert '"PUT /files/20201022_bucharest_chm15k.nc HTTP/1.1"' in data[5] # PUT images img_put = '"PUT /visualizations/20201022_bucharest_chm15k-' assert count_strings(data, img_put) == n_img # POST metadata file_put = '"POST /upload-metadata HTTP/1.1" 200 -' assert count_strings(data, file_put) == n_raw_files
2,901
1,134
from django.contrib.auth.models import AbstractUser from django.db import models from .validators import validate_bet, validate_course class User(AbstractUser): email = models.EmailField('email address', unique=True) USERNAME_FIELD = 'email' REQUIRED_FIELDS = ['username'] class FootballType(models.Model): first_team = models.CharField(max_length=64, null=True) second_team = models.CharField(max_length=64, null=True) draw = models.BooleanField(default=False) is_ended = models.BooleanField(default=False) date_game = models.DateTimeField() league = models.CharField(max_length=64) course = models.DecimalField(max_digits=5, decimal_places=2, validators=[validate_course]) comments = models.CharField(max_length=128, null=True, blank=True) bet = models.IntegerField(validators=[validate_bet]) retired = models.BooleanField(default=False) class Meta: ordering = ['-date_game'] @property def total(self): if self.is_ended == True: if self.retired == False: if self.draw == True: return self.bet * (self.course - 1) return (self.bet) * (-1) else: return 0 return self.bet * (self.course - 1) def __str__(self): return "{} vs. {}".format(self.first_team, self.second_team)
1,371
417
# Copyright (c) 2021 Graphcore Ltd. All rights reserved. import logging import popdist import popdist.poptorch import horovod.torch as hvd def handle_distributed_settings(opts): # Initialise popdist if popdist.isPopdistEnvSet(): init_popdist(opts) else: opts.use_popdist = False def init_popdist(args): hvd.init() args.use_popdist = True if popdist.getNumTotalReplicas() != args.replicas: logging.warn(f"The number of replicas is overridden by poprun. The new value is {popdist.getNumTotalReplicas()}.") args.replicas = int(popdist.getNumLocalReplicas()) args.popdist_rank = popdist.getInstanceIndex() args.popdist_size = popdist.getNumInstances() args.popdist_local_rank = hvd.local_rank()
759
258
from .docs import docs from .request import ( request_schema, use_kwargs, # for backward compatibility path_schema, # request_schema with locations=["path"] querystring_schema, # request_schema with locations=["querystring"] form_schema, # request_schema with locations=["form"] json_schema, # request_schema with locations=["json"] headers_schema, # request_schema with locations=["headers"] cookies_schema, # request_schema with locations=["cookies"] ) from .response import ( response_schema, marshal_with, # for backward compatibility )
589
165
# -*- coding: utf-8 -*- # # Copyright (C) 2018 Red Hat, 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. from __future__ import unicode_literals import pytest from dci.common.exceptions import DCIException from dci.common.schemas import check_json_is_valid, tag_schema def test_create_tags(admin): pt = admin.post('/api/v1/tags', data={'name': 'my tag'}) assert pt.status_code == 201 assert pt.data['tag']['name'] == 'my tag' def test_get_tags(admin): gt = admin.get('/api/v1/tags') count = gt.data['_meta']['count'] for x in range(3): admin.post('/api/v1/tags', data={'name': 'my tag %s' % x}) gt = admin.get('/api/v1/tags') assert gt.status_code == 200 assert len(gt.data['tags']) == count + 3 def test_delete_tag_by_id(admin): gt = admin.get('/api/v1/tags') count = gt.data['_meta']['count'] pt = admin.post('/api/v1/tags', data={'name': 'my tag to delete'}) pt_etag = pt.headers.get("ETag") pt_id = pt.data['tag']['id'] assert pt.status_code == 201 deleted_t = admin.delete('/api/v1/tags/%s' % pt_id, headers={'If-match': pt_etag}) assert deleted_t.status_code == 204 gt = admin.get('/api/v1/tags') assert len(gt.data['tags']) == count def test_post_schema(): try: check_json_is_valid(tag_schema, {"name": "tag"}) except DCIException: pytest.fail("tag_schema is invalid")
1,943
686
#!/usr/bin/env python # -*- coding: utf-8 -*- """Logging Handler integrating RabbitMQ and Graylog Extended Log Format (GELF)""" import json from logging import Filter from logging.handlers import SocketHandler from amqplib import client_0_8 as amqp # pylint: disable=import-error from graypy.handler import BaseGELFHandler try: from urllib.parse import urlparse, unquote except ImportError: from urlparse import urlparse from urllib import unquote _ifnone = lambda v, x: x if v is None else v class GELFRabbitHandler(BaseGELFHandler, SocketHandler): """RabbitMQ / GELF handler .. note:: This handler ignores all messages logged by amqplib. """ def __init__(self, url, exchange='logging.gelf', exchange_type='fanout', virtual_host='/', routing_key='', **kwargs): """Initialize the GELFRabbitHandler :param url: RabbitMQ URL (ex: amqp://guest:guest@localhost:5672/) :type url: str :param exchange: RabbitMQ exchange. A queue binding must be defined on the server to prevent GELF logs from being dropped. :type exchange: str :param exchange_type: RabbitMQ exchange type. :type exchange_type: str :param virtual_host: :type virtual_host: str :param routing_key: :type routing_key: str """ self.url = url parsed = urlparse(url) if parsed.scheme != 'amqp': raise ValueError('invalid URL scheme (expected "amqp"): %s' % url) host = parsed.hostname or 'localhost' port = _ifnone(parsed.port, 5672) self.virtual_host = virtual_host if not unquote( parsed.path[1:]) else unquote(parsed.path[1:]) self.cn_args = { 'host': '%s:%s' % (host, port), 'userid': _ifnone(parsed.username, 'guest'), 'password': _ifnone(parsed.password, 'guest'), 'virtual_host': self.virtual_host, 'insist': False, } self.exchange = exchange self.exchange_type = exchange_type self.routing_key = routing_key BaseGELFHandler.__init__( self, **kwargs ) SocketHandler.__init__(self, host, port) self.addFilter(ExcludeFilter('amqplib')) def makeSocket(self, timeout=1): return RabbitSocket(self.cn_args, timeout, self.exchange, self.exchange_type, self.routing_key) def makePickle(self, record): message_dict = self._make_gelf_dict(record) return json.dumps(message_dict) class RabbitSocket(object): def __init__(self, cn_args, timeout, exchange, exchange_type, routing_key): self.cn_args = cn_args self.timeout = timeout self.exchange = exchange self.exchange_type = exchange_type self.routing_key = routing_key self.connection = amqp.Connection( connection_timeout=timeout, **self.cn_args) self.channel = self.connection.channel() self.channel.exchange_declare( exchange=self.exchange, type=self.exchange_type, durable=True, auto_delete=False, ) def sendall(self, data): msg = amqp.Message(data, delivery_mode=2) self.channel.basic_publish( msg, exchange=self.exchange, routing_key=self.routing_key ) def close(self): """Close the connection to the RabbitMQ socket""" try: self.connection.close() except Exception: pass class ExcludeFilter(Filter): """A subclass of :class:`logging.Filter` which should be instantiated with the name of the logger which, together with its children, will have its events excluded (filtered out)""" def __init__(self, name): """Initialize the ExcludeFilter :param name: Name to match for within a :class:`logging.LogRecord`'s ``name`` field for filtering. :type name: str """ if not name: raise ValueError('ExcludeFilter requires a non-empty name') Filter.__init__(self, name) def filter(self, record): return not (record.name.startswith(self.name) and ( len(record.name) == self.nlen or record.name[self.nlen] == "."))
4,355
1,275
import boto3 comprehend = boto3.client(service_name='comprehend') translate = boto3.client(service_name='translate') def detect_language(text): """ Detects the dominant language in a text Parameters ---------- text: string, required Input text Returns ------- string Representing language code of the dominant language """ # Sending call to get language result = comprehend.detect_dominant_language(Text = text)['Languages'] # Since the result can contain more than one language find the one with the highest score. high_score = 0 best_guess = '' for lang in range(len(result)): if result[lang]['Score'] > high_score: high_score = result[lang]['Score'] best_guess = result[lang]['LanguageCode'] return best_guess def translate_text(text, source_lang, destination_lang): """ Translates given text from source language into destination language Parameters ---------- text: string, required Input text in source language Returns ------- string Translated text in destination language """ result = translate.translate_text(Text=text, SourceLanguageCode=source_lang, TargetLanguageCode=destination_lang) return result.get('TranslatedText')
1,323
358
# 2020.05.10 # update topNscore # learner on subspace # particular designed for encounter missing class in this subspace # if one class do not exists in training data, probability for this class would be zeros under anytime # # learner: a regressor or classifier, must have methods named 'predict' # num_class: total number of class in dataset import numpy as np from sklearn.metrics import accuracy_score class myLearner(): def __init__(self, learner, num_class): self.learner = learner self.num_class = num_class self.class_list = {} self.oneclass = False self.trained = False def mapping(self, Y, train=True, probability=False): c, res = 0, [] Y = Y.reshape(Y.shape[0], -1) if train == True: self.class_list = {} for i in range(np.array(Y).shape[0]): if Y[i, 0] not in self.class_list.keys(): self.class_list[Y[i,0]] = c c += 1 res.append(self.class_list[Y[i, 0]]) else: if probability == False: for i in range(np.array(Y).shape[0]): for d in self.class_list.keys(): if self.class_list[d] == Y[i, 0]: res.append(d) else: res = np.zeros((Y.shape[0], self.num_class)) for i in range(np.array(Y).shape[0]): c = 0 for j in range(self.num_class): if j in self.class_list.keys(): res[i, j] = Y[i, self.class_list[j]] c += 1 return np.array(res) def fit(self, X, Y): Y = self.mapping(Y, train=True) if np.unique(Y).shape[0] == 1: self.oneclass = True else: self.learner.fit(X, Y) self.trained = True return self def predict(self, X): assert (self.trained == True), "Must call fit first!" if self.oneclass == False: tmp_pred = self.learner.predict(X).reshape(-1) else: tmp_pred = np.zeros((X.shape[0])) return self.mapping(tmp_pred, train=False) def predict_proba(self, X): assert (self.trained == True), "Must call fit first!" if self.oneclass == False: tmp_pred = self.learner.predict_proba(X) else: tmp_pred = np.ones((X.shape[0], 1)) return self.mapping(tmp_pred, train=False, probability=True) def score(self, X, Y): assert (self.trained == True), "Must call fit first!" return accuracy_score(Y, self.predict(X)) def topNscore(self, X, Y, N=3): prob = self.predict_proba(X) idx = np.argsort(prob, axis=1) ct = 0. Y = Y.astype('int16') for i in range(len(Y)): if Y[i] in (list)(idx[i, -N:]): ct+=1 return ct/(float)(len(Y)) if __name__ == "__main__": from sklearn.svm import SVC from sklearn import datasets from sklearn.model_selection import train_test_split print(" > This is a test example: ") digits = datasets.load_digits() X = digits.images.reshape((len(digits.images), -1)) print(" input feature shape: %s"%str(X.shape)) X_train, X_test, y_train, y_test = train_test_split(X, digits.target, test_size=0.2, stratify=digits.target) clf = myLearner(SVC(gamma='scale', probability=True), 10) clf.fit(X_train, y_train) print(" --> train acc: %s"%str(clf.score(X_train, y_train))) print(" --> test acc.: %s"%str(clf.score(X_test, y_test))) print(" --> test top3 acc.: %s"%str(clf.topNscore(X_test, y_test, 3))) print("------- DONE -------\n")
3,768
1,251
import time import pritunl_wireguard_client.utils.random as utils class Tokens: def __init__(self): self.store = dict() def get(self, profile_id: str, ttl: int): """Return token for profile_id""" if profile_id not in self.store: self.init(profile_id, ttl) self.update() return self.store[profile_id]['token'] def update(self): """Update out of time token""" now = time.time() to_update = [] for profile_id, token in self.store.items(): ttl = token['ttl'] if now - token['timestamp'] > ttl: to_update.append(profile_id) for profile_id in to_update: self.init(profile_id) def init(self, profile_id: str, ttl=None): """Generate new token for profile_id""" if ttl is None: ttl = self.store[profile_id]['ttl'] token = { 'token': utils.rand_str_complex(16), 'timestamp': time.time(), 'ttl': ttl } self.store[profile_id] = token
1,077
335
#!/usr/bin/env python3 from __future__ import print_function import getpass import os import shutil import time from datetime import datetime from github import Github, GithubException, GithubObject from git import git_init class GithubUtilException(Exception): "General GitHub utilities exception" class MeteredIssue(object): def __init__(self, metered_repo, issue): self.__metered_repo = metered_repo self.__issue = issue def create_comment(self, body): self.__metered_repo.check_limit() return self.__issue.create_comment(body) def edit(self, title=GithubObject.NotSet, body=GithubObject.NotSet, assignee=GithubObject.NotSet, state=GithubObject.NotSet, milestone=GithubObject.NotSet, labels=GithubObject.NotSet, assignees=GithubObject.NotSet): self.__metered_repo.check_limit() self.__issue.edit(title=title, body=body, assignee=assignee, state=state, milestone=milestone, labels=labels, assignees=assignees) @property def number(self): return self.__issue.number class MeteredRepo(object): """ A metered version of the Github Repository object which monitors the GitHub limit and either pauses or aborts once it's reached """ MAX_REMAINING = 3 def __init__(self, github, repo, sleep_seconds=1, abort_at_limit=False, debug=False, verbose=False): self.__github = github self.__repo = repo self.__sleep_seconds = sleep_seconds self.__abort_at_limit = abort_at_limit self.__debug = debug self.__verbose = verbose def check_limit(self, skip_sleep=False): """ If the Github limit is reached, either abort or pause until it is reset """ if not skip_sleep: # sleep a bit to avoid GitHub's spam hammer if self.__verbose: print("Sleeping ...", end="") start_time = datetime.now() time.sleep(self.__sleep_seconds) if self.__verbose: print(" slept for %s" % (datetime.now() - start_time)) # check all limits, set 'throttle' if we've exceeded any throttle = False all_limits = self.__github.get_rate_limit() limit_str = None for name, obj in \ ("core", all_limits.core), \ ("search", all_limits.search), \ ("graphql", all_limits.graphql): if obj.remaining < self.MAX_REMAINING: throttle = True elif obj.remaining == 0 and self.__abort_at_limit: raise Exception("Limit reached for %s, reset in %s seconds" % (name, self.__reset_seconds, )) # if we're debugging, add these limits to the output string if self.__debug: lstr = "%s(%s of %s)" % (name, obj.remaining, obj.limit) if limit_str is None: limit_str = lstr else: limit_str += " " + lstr if self.__debug: print("[GitHub limits: %s%s]" % (limit_str, " !!THROTTLED!!" if throttle else "")) # if no limits have been hit, we're done if not throttle: return # we've reached a limit, pause for a bit to reset the limit secs = self.__reset_seconds print("Limit reached, pausing for %d seconds" % secs) time.sleep(secs + 1) # recheck the limit self.check_limit(skip_sleep=True) def __reset_seconds(self): "Return the number of seconds remaining before the limit is reset" return int(time.time()) - self.__github.rate_limiting_resettime def create_issue(self, title, body=GithubObject.NotSet, assignee=GithubObject.NotSet, milestone=GithubObject.NotSet, labels=GithubObject.NotSet, assignees=GithubObject.NotSet): self.check_limit() issue = self.__repo.create_issue(title, body=body, assignee=assignee, milestone=milestone, labels=labels, assignees=assignees) return MeteredIssue(self, issue) def create_label(self, name, color, description=GithubObject.NotSet): self.check_limit() return self.__repo.create_label(name, color, description) def create_milestone(self, title, state=GithubObject.NotSet, description=GithubObject.NotSet, due_on=GithubObject.NotSet): self.check_limit() return self.__repo.create_milestone(title, state=state, description=description, due_on=due_on) def get_labels(self): self.check_limit() return self.__repo.get_labels() def get_milestones(self): self.check_limit() return self.__repo.get_milestones() @property def has_issue_tracker(self): return True def make_url(self, repo_name): base_url, _ = self.__repo.ssh_url.rsplit("/", 1) return "%s/%s.git" % (base_url, repo_name) @property def ssh_url(self): return self.__repo.ssh_url class LocalRepository(object): def __init__(self, local_path, repo_name, create_repo=False, destroy_existing=False, debug=False, verbose=False): if not repo_name.endswith(".git"): repo_name += ".git" self.__path = os.path.abspath(os.path.join(local_path, repo_name)) exists = os.path.exists(self.__path) if exists and destroy_existing: shutil.rmtree(self.__path) exists = False if not exists: if not create_repo: raise GithubUtilException("Repository %s does not exist" % (self.__path, )) # initialize the new repository git_init(sandbox_dir=self.__path, bare=True, debug=debug, verbose=verbose) @property def has_issue_tracker(self): return False def make_url(self, repo_name): base_url, _ = self.__path.rsplit("/", 1) return "file://%s/%s.git" % (base_url, repo_name) @property def ssh_url(self): return "file://%s" % (self.__path, ) class ProjectRepo(object): def __init__(self, project_name, git_repo=None): self.name = project_name self.git_repo = git_repo self.__branches = {} def add_branch(self, branch_name): if branch_name in self.__branches: raise Exception("Manager cannot add existing Git branch \"%s\"" % (branch_name, )) self.__branches[branch_name] = True def has_branch(self, branch_name): return branch_name in self.__branches class GitRepoManager(object): """ Manage a set of Git repos """ __GIT_REPO_DICT = {} def __init__(self, use_github=False, local_repo_path=None, sleep_seconds=None): if not use_github: if local_repo_path is None: raise Exception("Please specify the local directory where Git" " repositories are stored") if os.path.exists(local_repo_path) and \ not os.path.isdir(local_repo_path): raise Exception("Local repo \"%s\" exists and is not" " a directory" % (local_repo_path, )) self.__use_github = use_github self.__local_repo_path = local_repo_path self.__sleep_seconds = sleep_seconds def __str__(self): return "GitRepoManager[%s,path=%s,sleep=%s]" % \ ("GitHub" if self.__use_github else "LocalRepo", self.__local_repo_path, self.__sleep_seconds) @classmethod def __add_repo_to_cache(cls, project_name, git_repo): if project_name in cls.__GIT_REPO_DICT: raise Exception("Found existing cached repo for \"%s\"" % (project_name, )) cls.__GIT_REPO_DICT[project_name] = ProjectRepo(project_name, git_repo) @classmethod def __get_cached_repo(cls, project_name): if project_name in cls.__GIT_REPO_DICT: prjrepo = cls.__GIT_REPO_DICT[project_name] if prjrepo.git_repo is not None: return prjrepo.git_repo return None @classmethod def add_branch(cls, project_name, git_branch): if project_name not in cls.__GIT_REPO_DICT: cls.__GIT_REPO_DICT[project_name] = ProjectRepo(project_name) cls.__GIT_REPO_DICT[project_name].add_branch(git_branch) @classmethod def get_github_util(cls, project_name, organization=None, new_project_name=None, make_public=False, sleep_seconds=None): # if the organization name was not specified, # assume it is this user's name if organization is None: organization = getpass.getuser() # if requested, use a different repository name if new_project_name is None: repo_name = project_name else: repo_name = new_project_name ghutil = GithubUtil(organization, repo_name) ghutil.make_new_repo_public = make_public ghutil.sleep_seconds = sleep_seconds return ghutil def get_repo(self, project_name, organization=None, new_project_name=None, description=None, destroy_old_repo=False, make_public=None, debug=False, verbose=False): cached = self.__get_cached_repo(project_name) if cached is not None: return cached # if we're writing to a local repository... if not self.__use_github: if not os.path.exists(self.__local_repo_path): # create the top-level Git repository directory os.makedirs(self.__local_repo_path, mode=0o755) # create and return the local repository repo = GithubUtil.create_local_repo(self.__local_repo_path, project_name, destroy_existing=\ destroy_old_repo, debug=debug, verbose=verbose) else: # connect to GitHub ghutil = self.get_github_util(project_name, organization, new_project_name, make_public=make_public, sleep_seconds=self.__sleep_seconds) # if description was not specified, build a default value # XXX add a more general solution here if description is None: description = "WIPAC's %s project" % (project_name, ) repo = ghutil.get_github_repo(description=description, create_repo=destroy_old_repo, destroy_existing=destroy_old_repo, debug=debug, verbose=verbose) # cache the new repo and return self.__add_repo_to_cache(project_name, repo) return repo @classmethod def has_branch(cls, project_name, git_branch): if project_name in cls.__GIT_REPO_DICT: prjrepo = cls.__GIT_REPO_DICT[project_name] return prjrepo.has_branch(git_branch) return False @property def is_local(self): return not self.__use_github @property def local_repo_path(self): return self.__local_repo_path class GithubUtil(object): def __init__(self, organization, repository, token_path=None): if organization is None: raise GithubUtilException("Please specify a GitHub" " user/organization") if repository is None: raise GithubUtilException("Please specify a GitHub repository") self.__organization = organization self.__repository = repository self.__make_public = False self.__sleep_seconds = 1 self.__github = self.__open_connection(token_path) @classmethod def __open_connection(cls, token_path=None): if token_path is not None: filename = token_path else: filename = "%s/.github_token" % os.environ["HOME"] if not os.path.exists(filename): raise Exception("Please create a GitHub personal access token" " and save it to %s" % (filename, )) token = None with open(filename, "r") as fin: for line in fin: line = line.strip() if line.startswith("#"): continue if line == "": continue token = line break if token is None: raise GithubUtilException("Cannot find GitHub token in \"%s\"" % (filename, )) return Github(token) def get_github_repo(self, description=None, create_repo=False, destroy_existing=False, debug=False, verbose=False): "Return a Github Repository object, creating it on Github if necessary" try: org = self.get_organization_or_user(self.__github) except GithubException: raise GithubUtilException("Unknown GitHub organization/user" " \"%s\"" % (self.__organization, )) try: repo = org.get_repo(self.__repository) except GithubException: print("ERROR: Could not get %s repo from GitHub" % (self.__repository, )) print(" No issues will be added") repo = None if destroy_existing and repo is not None: repo.delete() repo = None if verbose: print("Deleted existing \"%s/%s\" repository" % (self.__organization, self.__repository, )) if create_repo and repo is None: if verbose: print("Created %s GitHub \"%s/%s\" repository" % ("public" if self.__make_public else "private", self.__organization, self.__repository, )) repo = org.create_repo(self.__repository, description=description, has_issues=True, private=not self.__make_public) return MeteredRepo(self.__github, repo, sleep_seconds=self.__sleep_seconds, debug=debug, verbose=verbose) @classmethod def create_local_repo(cls, local_path, name, destroy_existing=False, debug=False, verbose=False): return LocalRepository(local_path, name, create_repo=True, destroy_existing=destroy_existing, debug=debug, verbose=verbose) def get_organization_or_user(self, github): """ Return either this user's AuthenticatedUser object or an Organization object """ if self.__organization == getpass.getuser(): return github.get_user() try: return github.get_organization(self.__organization) except GithubException: raise GithubUtilException("Bad organization \"%s\"" % (self.__organization, )) @property def make_new_repo_public(self): "Return True if a created repository is made visible to the public" return self.__make_public @make_new_repo_public.setter def make_new_repo_public(self, value): """ Set the boolean value determining if a created repository is made visible to the public """ self.__make_public = value @property def organization(self): """ Return the name of the organization used to fetch or create the repository """ return self.__organization @property def repository(self): "Return the repository name" return self.__repository @property def sleep_seconds(self): "Return the number of seconds to sleep between GitHub issue operations" return self.__sleep_seconds @sleep_seconds.setter def sleep_seconds(self, value): self.__sleep_seconds = int(value)
16,812
4,547
import logging import os import platform from datetime import datetime from moabb.analysis import plotting as plt from moabb.analysis.meta_analysis import ( # noqa: E501 compute_dataset_statistics, find_significant_differences, ) from moabb.analysis.results import Results # noqa: F401 log = logging.getLogger(__name__) def analyze(results, out_path, name="analysis", plot=False): """Analyze results. Given a results dataframe, generates a folder with results and a dataframe of the exact data used to generate those results, aswell as introspection to return information on the computer parameters ---------- out_path: location to store analysis folder results: Dataframe generated from Results object path: string/None plot: whether to plot results Either path or results is necessary """ # input checks # if not isinstance(out_path, str): raise ValueError("Given out_path argument is not string") elif not os.path.isdir(out_path): raise IOError("Given directory does not exist") else: analysis_path = os.path.join(out_path, name) unique_ids = [plt._simplify_names(x) for x in results.pipeline.unique()] simplify = True print(unique_ids) print(set(unique_ids)) if len(unique_ids) != len(set(unique_ids)): log.warning("Pipeline names are too similar, turning off name shortening") simplify = False os.makedirs(analysis_path, exist_ok=True) # TODO: no good cross-platform way of recording CPU info? with open(os.path.join(analysis_path, "info.txt"), "a") as f: dt = datetime.now() f.write("Date: {:%Y-%m-%d}\n Time: {:%H:%M}\n".format(dt, dt)) f.write("System: {}\n".format(platform.system())) f.write("CPU: {}\n".format(platform.processor())) results.to_csv(os.path.join(analysis_path, "data.csv")) stats = compute_dataset_statistics(results) stats.to_csv(os.path.join(analysis_path, "stats.csv")) P, T = find_significant_differences(stats) if plot: fig, color_dict = plt.score_plot(results) fig.savefig(os.path.join(analysis_path, "scores.pdf")) fig = plt.summary_plot(P, T, simplify=simplify) fig.savefig(os.path.join(analysis_path, "ordering.pdf"))
2,299
718
from numba import guvectorize, float64, int64, njit import numpy as np from smm import numba_target as target_preset @guvectorize([(int64, float64, float64[:, :], float64[:])], '(),(),(M,n)->(n)', nopython=True, target=target_preset) def indexed_x_axpy(ix, a, x, res): # pragma: no cover """Computes y <-- ax + y, but where x is indexed, i.e. it is chosen by the index, ix. So it is equivalent to inplace a*x[ix,:]+y. N.B. y cannot be indexed because this is an inplace operation.""" for i in range(res.shape[0]): res[i] += a * x[ix, i] @guvectorize([(int64, float64, float64[:, :, :], float64[:], float64, float64[:])], '(),(),(M,m,n),(n),()->(m)', nopython=True, target=target_preset) def indexed_A_gemv(ix, a, A, x, b, res): # pragma: no cover """Computes y <-- aAx + by, where A is indexed.""" for i in range(res.shape[0]): res[i] *= b for j in range(x.shape[0]): res[i] += a * A[ix, i, j] * x[j] @guvectorize([(int64, float64[:], float64[:, :, :], float64[:, :], float64[:])], '(),(m),(M,m,n),(M,n)->(n)', nopython=True, target=target_preset) def indexed_Ab_xApb(ix, x, A, b, res): # pragma: no cover """Computes y <-- xA + b, where A and b are indexed.""" for i in range(res.shape[0]): res[i] = b[ix, i] for j in range(x.shape[0]): res[i] += x[j] * A[ix, j, i] @guvectorize([(int64, float64[:], float64[:, :, :], float64[:], float64[:])], '(),(n),(M,n,m),(m)->()', nopython=True, target=target_preset) def indexed_A_xAy(ix, x, A, y, res): # pragma: no cover for i in range(x.shape[0]): for j in range(y.shape[0]): res[0] += x[i] * A[ix, i, j] * y[j] @njit def count_C(C, M): # pragma: no cover C_total = np.zeros((M,)) N = C.shape[0] for i in range(N): C_total[C[i]] += 1 return C_total @njit def sum_per_C(C, M, P, out): # pragma: no cover N = C.shape[0] for i in range(N): out[C[i]] += P[i] return out
2,180
894
""" How to find only the duplicates """ some_list = ['a', 'b', 'c', 'b', 'd', 'm', 'n', 'n'] duplicates = [] # o noua lista unde adaugam duplicatele for value in some_list: if some_list.count(value) > 1: # cand in lista numaram fiecare valoarea si se gaseste mai mult de o data if value not in duplicates: # apoi cand acea valoare nu se gaseste deja in duplicates, o adaugam duplicates.append(value) print(duplicates) some_list = ['a', 'b', 'c', 'b', 'd', 'm', 'n', 'n'] duplicates = list(set([x for x in some_list if some_list.count(x) > 1])) print(duplicates) # list = transformam in lista cum cere # set = sa apara fara duplicate # for x in some_list sa mearga prin lista, if = numai cand count(x) din lista some_list se gaseste mai mult de o data
783
275