hexsha stringlengths 40 40 | size int64 5 2.06M | ext stringclasses 11 values | lang stringclasses 1 value | max_stars_repo_path stringlengths 3 251 | max_stars_repo_name stringlengths 4 130 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 251 | max_issues_repo_name stringlengths 4 130 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 116k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 251 | max_forks_repo_name stringlengths 4 130 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 1 1.05M | avg_line_length float64 1 1.02M | max_line_length int64 3 1.04M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b7447c7e63cef72744a2596b6bfed0bc8c930ff6 | 147 | py | Python | plugins/Hikvision_app.py | cflq3/getcms | 6cf07da0ea3ec644866df715cff1f311a46ee378 | [
"MIT"
] | 22 | 2016-09-01T08:27:07.000Z | 2021-01-11T13:32:59.000Z | plugins/Hikvision_app.py | cflq3/getcms | 6cf07da0ea3ec644866df715cff1f311a46ee378 | [
"MIT"
] | null | null | null | plugins/Hikvision_app.py | cflq3/getcms | 6cf07da0ea3ec644866df715cff1f311a46ee378 | [
"MIT"
] | 20 | 2015-11-07T19:09:48.000Z | 2018-05-02T03:10:41.000Z | #!/usr/bin/env python
# encoding: utf-8
| 21 | 74 | 0.721088 |
3f74e2e86d84e340b05f4456f8d63e50bac1ee3e | 495 | py | Python | package/awesome_panel/database/settings.py | mycarta/awesome-panel | dae17d11f686daaedd48b8e74ac4307c89e2b031 | [
"Apache-2.0"
] | 1 | 2020-05-08T21:44:37.000Z | 2020-05-08T21:44:37.000Z | package/awesome_panel/database/settings.py | mycarta/awesome-panel | dae17d11f686daaedd48b8e74ac4307c89e2b031 | [
"Apache-2.0"
] | null | null | null | package/awesome_panel/database/settings.py | mycarta/awesome-panel | dae17d11f686daaedd48b8e74ac4307c89e2b031 | [
"Apache-2.0"
] | null | null | null | """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/"
| 55 | 92 | 0.775758 |
3f787b4695b11190d523827faaa3e059aacc4c9c | 1,789 | py | Python | astropy/coordinates/tests/test_pickle.py | MatiasRepetto/astropy | 689f9d3b063145150149e592a879ee40af1fac06 | [
"BSD-3-Clause"
] | 1 | 2019-03-11T12:26:49.000Z | 2019-03-11T12:26:49.000Z | astropy/coordinates/tests/test_pickle.py | MatiasRepetto/astropy | 689f9d3b063145150149e592a879ee40af1fac06 | [
"BSD-3-Clause"
] | 1 | 2019-10-09T18:54:27.000Z | 2019-10-09T18:54:27.000Z | astropy/coordinates/tests/test_pickle.py | MatiasRepetto/astropy | 689f9d3b063145150149e592a879ee40af1fac06 | [
"BSD-3-Clause"
] | 1 | 2020-02-18T04:10:00.000Z | 2020-02-18T04:10:00.000Z | 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
_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'},
{},
]
| 24.847222 | 81 | 0.579094 |
3f78ac0f4821a9877cc3b9aefc54f11d9894ac13 | 3,683 | py | Python | articles/Machine Learning/SupervisedLearning/knn_classify/knn.py | wjiec/packages | 4ccaf8f717265a1f8a9af533f9a998b935efb32a | [
"MIT"
] | null | null | null | articles/Machine Learning/SupervisedLearning/knn_classify/knn.py | wjiec/packages | 4ccaf8f717265a1f8a9af533f9a998b935efb32a | [
"MIT"
] | 1 | 2016-09-15T07:06:15.000Z | 2016-09-15T07:06:15.000Z | articles/Machine Learning/SupervisedLearning/knn_classify/knn.py | wjiec/packages | 4ccaf8f717265a1f8a9af533f9a998b935efb32a | [
"MIT"
] | null | null | null | #!/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']
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))
| 36.83 | 111 | 0.541406 |
3f79f05e8ea447c87ecd650d6cef267e990945dc | 3,101 | py | Python | src/pymir-controller/controller/label_model/label_runner.py | IJtLJZ8Rm4Yr/ymir-backend | 73baa7822bb0d8ec1d152b07d9cabaddb2ae895d | [
"Apache-2.0"
] | null | null | null | src/pymir-controller/controller/label_model/label_runner.py | IJtLJZ8Rm4Yr/ymir-backend | 73baa7822bb0d8ec1d152b07d9cabaddb2ae895d | [
"Apache-2.0"
] | null | null | null | src/pymir-controller/controller/label_model/label_runner.py | IJtLJZ8Rm4Yr/ymir-backend | 73baa7822bb0d8ec1d152b07d9cabaddb2ae895d | [
"Apache-2.0"
] | null | null | null | 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
| 34.842697 | 124 | 0.718478 |
3f7a60ea385d7fdaeb685b99834b8a082b01d925 | 719 | py | Python | run-workflow-cloud-run/main.py | UriKatsirPrivate/gcp-workflows | 35fa813bdc5335d8f06aee2f2d2e12b773f43872 | [
"MIT"
] | 1 | 2021-07-07T07:43:55.000Z | 2021-07-07T07:43:55.000Z | run-workflow-cloud-run/main.py | UriKatsirPrivate/gcp-workflows | 35fa813bdc5335d8f06aee2f2d2e12b773f43872 | [
"MIT"
] | null | null | null | run-workflow-cloud-run/main.py | UriKatsirPrivate/gcp-workflows | 35fa813bdc5335d8f06aee2f2d2e12b773f43872 | [
"MIT"
] | null | null | null | 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')
if __name__ == "__main__":
app.run(debug=True, host="0.0.0.0", port=int(os.environ.get("PORT", 8080)))
| 23.966667 | 94 | 0.727399 |
3f7b2d2414e53d9ad204b36035beffc35a3a5a76 | 9,264 | py | Python | rendering/viewer.py | MTKat/FloorplanTransformation | de10a1177e685267185de05dbce3230c25ef1d16 | [
"MIT"
] | 323 | 2017-10-24T07:45:12.000Z | 2022-03-05T15:25:17.000Z | rendering/viewer.py | MTKat/FloorplanTransformation | de10a1177e685267185de05dbce3230c25ef1d16 | [
"MIT"
] | 32 | 2017-11-20T12:44:27.000Z | 2022-03-22T01:59:23.000Z | rendering/viewer.py | MTKat/FloorplanTransformation | de10a1177e685267185de05dbce3230c25ef1d16 | [
"MIT"
] | 137 | 2017-11-13T10:06:00.000Z | 2022-03-23T10:26:30.000Z | 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
app = Viewer()
app.run()
| 35.358779 | 186 | 0.636118 |
3f7bd6bf0cb9919cde3364ef2571e57284b86425 | 118,425 | py | Python | application/gen/today/TodayInternalApiService.py | today-app/today-api | a77adbad509d485e643023efc64f62b69fd364cc | [
"MIT"
] | null | null | null | application/gen/today/TodayInternalApiService.py | today-app/today-api | a77adbad509d485e643023efc64f62b69fd364cc | [
"MIT"
] | null | null | null | application/gen/today/TodayInternalApiService.py | today-app/today-api | a77adbad509d485e643023efc64f62b69fd364cc | [
"MIT"
] | 1 | 2021-06-04T06:02:36.000Z | 2021-06-04T06:02:36.000Z | #
# 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
# HELPER FUNCTIONS AND STRUCTURES
| 31.156275 | 188 | 0.673574 |
3f7d049cc55342fe3c9001df6677acf8bf2011d5 | 626 | py | Python | common/kalman/simple_kalman_old.py | 919bot/Tessa | 9b48ff9020e8fb6992fc78271f2720fd19e01093 | [
"MIT"
] | 114 | 2020-02-24T14:18:01.000Z | 2022-03-19T03:42:00.000Z | common/kalman/simple_kalman_old.py | 919bot/Tessa | 9b48ff9020e8fb6992fc78271f2720fd19e01093 | [
"MIT"
] | 15 | 2020-02-25T03:37:44.000Z | 2021-09-08T01:51:15.000Z | common/kalman/simple_kalman_old.py | 919bot/Tessa | 9b48ff9020e8fb6992fc78271f2720fd19e01093 | [
"MIT"
] | 73 | 2018-12-03T19:34:42.000Z | 2020-07-27T05:10:23.000Z | import numpy as np
| 26.083333 | 81 | 0.634185 |
3f7dac25b4b548d364d5151417f67ef21dc2df87 | 3,985 | py | Python | serverless/apps/qctokyo/horoscope.py | snuffkin/qctokyo | 25d457cce402a21fe1a009c82cfb5131fb7db526 | [
"Apache-2.0"
] | 8 | 2020-06-15T23:08:12.000Z | 2022-01-30T00:14:48.000Z | serverless/apps/qctokyo/horoscope.py | snuffkin/qctokyo | 25d457cce402a21fe1a009c82cfb5131fb7db526 | [
"Apache-2.0"
] | 1 | 2022-03-09T18:33:26.000Z | 2022-03-09T18:33:26.000Z | serverless/apps/qctokyo/horoscope.py | snuffkin/qctokyo | 25d457cce402a21fe1a009c82cfb5131fb7db526 | [
"Apache-2.0"
] | 1 | 2020-06-16T00:30:08.000Z | 2020-06-16T00:30:08.000Z | 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",
]
| 29.738806 | 98 | 0.647679 |
3f7e03214470e23d0a5adb54a209d5b572903083 | 8,558 | py | Python | boot/rpi/tools/patman/func_test.py | yodaos-project/yodaos | d0d7bbc277c0fc1c64e2e0a1c82fe6e63f6eb954 | [
"Apache-2.0"
] | 1,144 | 2018-12-18T09:46:47.000Z | 2022-03-07T14:51:46.000Z | boot/rpi/tools/patman/func_test.py | Rokid/YodaOS | d0d7bbc277c0fc1c64e2e0a1c82fe6e63f6eb954 | [
"Apache-2.0"
] | 16 | 2019-01-28T06:08:40.000Z | 2019-12-04T10:26:41.000Z | boot/rpi/tools/patman/func_test.py | Rokid/YodaOS | d0d7bbc277c0fc1c64e2e0a1c82fe6e63f6eb954 | [
"Apache-2.0"
] | 129 | 2018-12-18T09:46:50.000Z | 2022-03-30T07:30:13.000Z | # -*- 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
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 Brns <stefan.bruens@rwth-aachen.de>
Cover-letter-cc: Lord Mlchett <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 Brns <stefan.bruens@rwth-aachen.de>'
rick = 'Richard III <richard@palace.gov>'
mel = u'Lord Mlchett <clergy@palace.gov>'
ed = u'Lond Edmund Blackaddr <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])
| 35.218107 | 80 | 0.557373 |
3f7e4f78011ff12caa466b7a88c18ef168733660 | 832 | py | Python | anime downloaders/animeblkom downloader.py | badr286/anime-stuff | 2083e612ff2dbd079e68d8c49eb3fcddbfbfc031 | [
"MIT"
] | null | null | null | anime downloaders/animeblkom downloader.py | badr286/anime-stuff | 2083e612ff2dbd079e68d8c49eb3fcddbfbfc031 | [
"MIT"
] | null | null | null | anime downloaders/animeblkom downloader.py | badr286/anime-stuff | 2083e612ff2dbd079e68d8c49eb3fcddbfbfc031 | [
"MIT"
] | null | null | null | 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')
| 24.470588 | 78 | 0.689904 |
3f814f9f3699e39e3b921e760844dbc2795a7e64 | 225 | py | Python | src/spaceone/monitoring/interface/rest/v1/common.py | xellos00/monitoring | deb5363a2152e7b3f85a08d27bdede0e00023824 | [
"Apache-2.0"
] | null | null | null | src/spaceone/monitoring/interface/rest/v1/common.py | xellos00/monitoring | deb5363a2152e7b3f85a08d27bdede0e00023824 | [
"Apache-2.0"
] | null | null | null | src/spaceone/monitoring/interface/rest/v1/common.py | xellos00/monitoring | deb5363a2152e7b3f85a08d27bdede0e00023824 | [
"Apache-2.0"
] | null | null | null | import logging
from fastapi import APIRouter
from spaceone.core.locator import Locator
_LOGGER = logging.getLogger(__name__)
router = APIRouter()
| 16.071429 | 41 | 0.742222 |
3f8398d930cd82cdfb7464d288fada9e7ec31ac8 | 7,617 | py | Python | figures/kCSD_properties/figure_eigensources_M_1D.py | rdarie/kCSD-python | 5b9e1b1dce2ff95c0d981c2c4015b7a75199de9a | [
"BSD-3-Clause"
] | 11 | 2017-11-06T21:24:18.000Z | 2022-02-07T21:17:13.000Z | figures/kCSD_properties/figure_eigensources_M_1D.py | aeladly91/kCSD-python | 4dd0015e9c5598e7eceeeb25668e696e495b2026 | [
"BSD-3-Clause"
] | 105 | 2017-12-13T12:49:54.000Z | 2022-03-19T12:25:51.000Z | figures/kCSD_properties/figure_eigensources_M_1D.py | aeladly91/kCSD-python | 4dd0015e9c5598e7eceeeb25668e696e495b2026 | [
"BSD-3-Clause"
] | 27 | 2017-06-08T07:32:32.000Z | 2022-02-07T21:17:15.000Z | """
@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 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)
| 32.412766 | 79 | 0.52606 |
3f83a4002afc61816d499ce9af2515b129624aaf | 392 | py | Python | examples/task1.py | qqgg231/Allegro | d5300bfb8eb58168d5efbd6a7e211561fce569e0 | [
"MIT"
] | 27 | 2017-04-22T03:00:04.000Z | 2017-11-28T08:40:47.000Z | examples/task1.py | qqgg231/Allegro | d5300bfb8eb58168d5efbd6a7e211561fce569e0 | [
"MIT"
] | 2 | 2017-05-18T08:40:29.000Z | 2018-11-07T02:00:20.000Z | examples/task1.py | qqgg231/Allegro | d5300bfb8eb58168d5efbd6a7e211561fce569e0 | [
"MIT"
] | 4 | 2017-04-21T11:49:15.000Z | 2018-10-29T12:01:38.000Z | #!/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')
| 17.818182 | 94 | 0.614796 |
3f880cabd29a75530eb1d2132bd05625f3e4cd8e | 98 | py | Python | checkov/common/comment/enum.py | antonblr/checkov | 9415c6593c537945c08f7a19f28bdd8b96966f67 | [
"Apache-2.0"
] | 4,013 | 2019-12-09T13:16:54.000Z | 2022-03-31T14:31:01.000Z | checkov/common/comment/enum.py | antonblr/checkov | 9415c6593c537945c08f7a19f28bdd8b96966f67 | [
"Apache-2.0"
] | 1,258 | 2019-12-17T09:55:51.000Z | 2022-03-31T19:17:17.000Z | checkov/common/comment/enum.py | antonblr/checkov | 9415c6593c537945c08f7a19f28bdd8b96966f67 | [
"Apache-2.0"
] | 638 | 2019-12-19T08:57:38.000Z | 2022-03-30T21:38:37.000Z | import re
COMMENT_REGEX = re.compile(r'(checkov:skip=|bridgecrew:skip=) *([A-Z_\d]+)(:[^\n]+)?')
| 24.5 | 86 | 0.622449 |
3f89aa8877a0c320a25f1232234def2b63591b67 | 438 | py | Python | chris_backend/plugins/migrations/0034_auto_20200420_2320.py | rudolphpienaar/ChRIS_ultron_backEnd | 5de4e255fb151ac7a6f900327704831da11dcd1f | [
"MIT"
] | 26 | 2016-05-26T14:09:35.000Z | 2022-01-28T19:12:43.000Z | chris_backend/plugins/migrations/0034_auto_20200420_2320.py | rudolphpienaar/ChRIS_ultron_backEnd | 5de4e255fb151ac7a6f900327704831da11dcd1f | [
"MIT"
] | 168 | 2016-06-24T11:07:15.000Z | 2022-03-21T12:33:43.000Z | chris_backend/plugins/migrations/0034_auto_20200420_2320.py | rudolphpienaar/ChRIS_ultron_backEnd | 5de4e255fb151ac7a6f900327704831da11dcd1f | [
"MIT"
] | 45 | 2017-08-16T16:41:40.000Z | 2022-03-31T18:12:14.000Z | # Generated by Django 2.1.4 on 2020-04-20 23:20
from django.db import migrations, models
| 23.052632 | 64 | 0.639269 |
3f8a0dda01eeac406db001e56651f4bc81dfa178 | 4,112 | py | Python | src/StarTrac/forms.py | Stdubic/Track | 853df13178967ab9b5c1918d6d56fa7fe2831b0f | [
"MIT"
] | 1 | 2015-09-14T19:54:56.000Z | 2015-09-14T19:54:56.000Z | src/StarTrac/forms.py | Stdubic/Track | 853df13178967ab9b5c1918d6d56fa7fe2831b0f | [
"MIT"
] | null | null | null | src/StarTrac/forms.py | Stdubic/Track | 853df13178967ab9b5c1918d6d56fa7fe2831b0f | [
"MIT"
] | null | null | null | '''
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
| 31.875969 | 100 | 0.63643 |
3f8a3a645b102cb7225f8c5a5422dfe385638911 | 4,775 | py | Python | mysite/settings/base.py | HumanCellAtlas/HCA-Tracker | 4b3df2b8a99582b7b654253d6e0faf537298a876 | [
"MIT"
] | 3 | 2019-09-09T15:43:23.000Z | 2020-12-03T23:29:45.000Z | mysite/settings/base.py | HumanCellAtlas/HCA-Tracker | 4b3df2b8a99582b7b654253d6e0faf537298a876 | [
"MIT"
] | 45 | 2019-09-30T19:00:04.000Z | 2020-12-03T23:50:35.000Z | mysite/settings/base.py | HumanCellAtlas/HCA-Tracker | 4b3df2b8a99582b7b654253d6e0faf537298a876 | [
"MIT"
] | 1 | 2021-01-11T21:30:52.000Z | 2021-01-11T21:30:52.000Z | """
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
| 27.923977 | 99 | 0.685654 |
3f8a7855be2c7792001f6241d146c5b377cdb431 | 932 | py | Python | setup.py | kiranmantri/python-remote-import | 2724e320377c3f2328dafd61707aad4d5eed2f10 | [
"MIT"
] | null | null | null | setup.py | kiranmantri/python-remote-import | 2724e320377c3f2328dafd61707aad4d5eed2f10 | [
"MIT"
] | null | null | null | setup.py | kiranmantri/python-remote-import | 2724e320377c3f2328dafd61707aad4d5eed2f10 | [
"MIT"
] | null | null | null | """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"],
)
| 35.846154 | 105 | 0.724249 |
3f8aa0798a7df35cc97e5a10a092cb9ce9a9bf74 | 1,958 | py | Python | flaskr/test/unit/webapp/test_aquarium_mode.py | UnibucProjects/SmartAquarium | 6f3c16fb7a45218e763b46223568f6c3e5b66bfd | [
"MIT"
] | 6 | 2022-02-02T19:37:57.000Z | 2022-02-03T15:12:32.000Z | flaskr/test/unit/webapp/test_aquarium_mode.py | UnibucProjects/SmartAquarium | 6f3c16fb7a45218e763b46223568f6c3e5b66bfd | [
"MIT"
] | 18 | 2022-01-29T22:47:46.000Z | 2022-02-03T15:30:28.000Z | flaskr/test/unit/webapp/test_aquarium_mode.py | UnibucProjects/SmartAquarium | 6f3c16fb7a45218e763b46223568f6c3e5b66bfd | [
"MIT"
] | null | null | null |
from flask import request
import pytest
import json
from app import create_app, create_rest_api
from db import get_db
| 26.459459 | 84 | 0.64811 |
3f8aeedaa1eeb40e7b048cb7a40313232cfd6bb4 | 4,172 | py | Python | get_anns.py | hoangnt2601/RAPiD | 8e765ccec45e192305ca3d9d547967dbb4299cc3 | [
"MIT"
] | null | null | null | get_anns.py | hoangnt2601/RAPiD | 8e765ccec45e192305ca3d9d547967dbb4299cc3 | [
"MIT"
] | null | null | null | get_anns.py | hoangnt2601/RAPiD | 8e765ccec45e192305ca3d9d547967dbb4299cc3 | [
"MIT"
] | null | null | null | 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()
| 28.972222 | 88 | 0.514382 |
3f8b0d6e16b2a41fa16dedea3dc287034f8c9ddf | 5,194 | py | Python | src/pypipegraph2/util.py | TyberiusPrime/pypipegraph2 | 16f5d3a471b3dae71fafca98f63c4c80882dc20a | [
"MIT"
] | null | null | null | src/pypipegraph2/util.py | TyberiusPrime/pypipegraph2 | 16f5d3a471b3dae71fafca98f63c4c80882dc20a | [
"MIT"
] | null | null | null | src/pypipegraph2/util.py | TyberiusPrime/pypipegraph2 | 16f5d3a471b3dae71fafca98f63c4c80882dc20a | [
"MIT"
] | 1 | 2021-09-01T11:20:46.000Z | 2021-09-01T11:20:46.000Z | 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 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
do_jobtrace_log = False
def pretty_log_errors(func):
"""capture exceptions (on a function outside of ppg)
and format it with our fancy local logging exception logger
"""
return inner
| 29.344633 | 87 | 0.622256 |
3f8d947a33583e1607214e59c7b361284124cdbb | 1,808 | py | Python | hwk/tests/unit/test_udev.py | jaypipes/os-hardware | b43be56fafc7e853614cafc7d02c734aadb72cbe | [
"Apache-2.0"
] | null | null | null | hwk/tests/unit/test_udev.py | jaypipes/os-hardware | b43be56fafc7e853614cafc7d02c734aadb72cbe | [
"Apache-2.0"
] | 7 | 2017-06-02T00:41:49.000Z | 2017-06-19T23:00:12.000Z | hwk/tests/unit/test_udev.py | jaypipes/hwk | b43be56fafc7e853614cafc7d02c734aadb72cbe | [
"Apache-2.0"
] | null | null | null | # -*- 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
| 30.644068 | 76 | 0.776549 |
3f8dbacf9ded6ecf935b85a50c2260653a9563a1 | 618 | py | Python | app/resources/continent.py | visar/world | c609dcf343e94d6bb5cd242cd093ad646c744575 | [
"MIT"
] | 2 | 2021-03-20T05:53:33.000Z | 2021-04-12T04:38:58.000Z | app/resources/continent.py | visar/world | c609dcf343e94d6bb5cd242cd093ad646c744575 | [
"MIT"
] | null | null | null | app/resources/continent.py | visar/world | c609dcf343e94d6bb5cd242cd093ad646c744575 | [
"MIT"
] | null | null | null | 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)
| 29.428571 | 110 | 0.745955 |
3f8e2e50dac6d87bfd7ff239f2e32c8c791e0ddb | 14,547 | py | Python | sublimebookmark.py | gwenzek/sublimeBookmark | 02a08c8249c5203fa9a46fd19e71bc68e6e0be9a | [
"Apache-2.0"
] | null | null | null | sublimebookmark.py | gwenzek/sublimeBookmark | 02a08c8249c5203fa9a46fd19e71bc68e6e0be9a | [
"Apache-2.0"
] | null | null | null | sublimebookmark.py | gwenzek/sublimeBookmark | 02a08c8249c5203fa9a46fd19e71bc68e6e0be9a | [
"Apache-2.0"
] | null | null | null | 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()
| 28.083012 | 121 | 0.72771 |
3f8e75a7037cb0591f30cdca4d67c840b9c842f3 | 3,677 | py | Python | xrpc/examples/exemplary_rpc.py | andreycizov/python-xrpc | ed403ae74d5e89e0ebac68bcc58591d6b32742ff | [
"Apache-2.0"
] | null | null | null | xrpc/examples/exemplary_rpc.py | andreycizov/python-xrpc | ed403ae74d5e89e0ebac68bcc58591d6b32742ff | [
"Apache-2.0"
] | null | null | null | xrpc/examples/exemplary_rpc.py | andreycizov/python-xrpc | ed403ae74d5e89e0ebac68bcc58591d6b32742ff | [
"Apache-2.0"
] | null | null | null | 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.
| 29.653226 | 101 | 0.627686 |
3f8ee60500939b288620ad55089e24b11d028c78 | 413 | py | Python | tests/__init__.py | sgbaird/ml-matrics | e0560af810b12cae3a34dd818d628360de2d96e5 | [
"MIT"
] | 11 | 2021-07-12T02:12:02.000Z | 2022-02-14T19:06:22.000Z | tests/__init__.py | sgbaird/ml-matrics | e0560af810b12cae3a34dd818d628360de2d96e5 | [
"MIT"
] | 7 | 2021-10-14T10:00:01.000Z | 2022-03-01T21:09:30.000Z | tests/__init__.py | sgbaird/ml-matrics | e0560af810b12cae3a34dd818d628360de2d96e5 | [
"MIT"
] | 2 | 2021-10-01T10:00:50.000Z | 2022-02-12T08:50:22.000Z | import matplotlib.pyplot as plt
import pandas as pd
import pytest
from ml_matrics import ROOT
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
| 20.65 | 80 | 0.723971 |
3f8f4d8b9a542512c36e38813053e17bfd674f61 | 2,907 | py | Python | example_run.py | altsoph/community_loglike | ea8800217097575558f8bfb97f7737d12cad2339 | [
"BSD-3-Clause"
] | 16 | 2018-02-14T23:14:32.000Z | 2021-09-15T09:38:47.000Z | example_run.py | altsoph/community_loglike | ea8800217097575558f8bfb97f7737d12cad2339 | [
"BSD-3-Clause"
] | null | null | null | example_run.py | altsoph/community_loglike | ea8800217097575558f8bfb97f7737d12cad2339 | [
"BSD-3-Clause"
] | 7 | 2019-05-09T10:25:24.000Z | 2020-06-06T09:37:18.000Z | # -*- 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))
| 38.76 | 144 | 0.68765 |
3f8f5e2babed8a1212595d0eeba5f9b572718ef4 | 1,961 | py | Python | rebalanced_balanced_tests/evalr.py | zhanghuiying2319/Master | 1f4d11dd8277517b7e63d34651a9629f58dd7070 | [
"MIT"
] | null | null | null | rebalanced_balanced_tests/evalr.py | zhanghuiying2319/Master | 1f4d11dd8277517b7e63d34651a9629f58dd7070 | [
"MIT"
] | null | null | null | rebalanced_balanced_tests/evalr.py | zhanghuiying2319/Master | 1f4d11dd8277517b7e63d34651a9629f58dd7070 | [
"MIT"
] | null | null | null |
import os,sys,math,numpy as np, matplotlib.pyplot as plt
if __name__=='__main__':
runstuff()
| 35.017857 | 109 | 0.740948 |
3f8f66290e622881703269fb324e879e53d1763e | 5,282 | py | Python | recognize.py | pg992/face-recognition | 61db03a7fc5efeae6d88a49cf60dca3e426a2b04 | [
"Apache-2.0"
] | null | null | null | recognize.py | pg992/face-recognition | 61db03a7fc5efeae6d88a49cf60dca3e426a2b04 | [
"Apache-2.0"
] | null | null | null | recognize.py | pg992/face-recognition | 61db03a7fc5efeae6d88a49cf60dca3e426a2b04 | [
"Apache-2.0"
] | null | null | null | 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)
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
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) | 37.197183 | 125 | 0.72624 |
3f94e4db1e0637fc4c005e79e78b67f9d50a7128 | 3,879 | py | Python | learning_journal/views/default.py | famavott/pyramid-learning-journal | 07d1c6c8699e7cb1cdb8b8eb856c8477455f4fa9 | [
"MIT"
] | null | null | null | learning_journal/views/default.py | famavott/pyramid-learning-journal | 07d1c6c8699e7cb1cdb8b8eb856c8477455f4fa9 | [
"MIT"
] | null | null | null | learning_journal/views/default.py | famavott/pyramid-learning-journal | 07d1c6c8699e7cb1cdb8b8eb856c8477455f4fa9 | [
"MIT"
] | null | null | null | """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
| 33.439655 | 109 | 0.675432 |
3f94e6b56b89d77a4cf091db5423e2787e19e58b | 4,854 | py | Python | algorithms/search/depth_first_search/depth_first_search_power_set.py | josephedradan/algorithms | 6caa107b0df245653eab81143ebf0d9c7e5515fb | [
"MIT"
] | null | null | null | algorithms/search/depth_first_search/depth_first_search_power_set.py | josephedradan/algorithms | 6caa107b0df245653eab81143ebf0d9c7e5515fb | [
"MIT"
] | null | null | null | algorithms/search/depth_first_search/depth_first_search_power_set.py | josephedradan/algorithms | 6caa107b0df245653eab81143ebf0d9c7e5515fb | [
"MIT"
] | null | null | null | """
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()
if __name__ == '__main__':
test_example()
| 28.892857 | 119 | 0.63391 |
3f95236c19c4a6142c354065a15b5c5f4828679e | 657 | py | Python | apps/core/models/cb_media_movel/parameters_MM.py | bispojr/observatorio-ufj-covid19 | 8667fae1367b95a7dfa8558fbac3b1b0b708af8d | [
"MIT"
] | 3 | 2020-04-02T21:59:19.000Z | 2020-12-03T12:37:26.000Z | apps/core/models/cb_media_movel/parameters_MM.py | bispojr/observatorio-ufj-covid19 | 8667fae1367b95a7dfa8558fbac3b1b0b708af8d | [
"MIT"
] | 68 | 2020-03-28T22:40:08.000Z | 2020-07-08T18:04:07.000Z | apps/core/models/cb_media_movel/parameters_MM.py | bispojr/observatorio-ufj-covid19 | 8667fae1367b95a7dfa8558fbac3b1b0b708af8d | [
"MIT"
] | 5 | 2020-03-28T21:35:30.000Z | 2020-06-10T01:28:14.000Z | from django.db import models
import json | 21.193548 | 48 | 0.482496 |
3f971a075f4d4a4954da5f6fa16233c6818129bb | 4,151 | py | Python | httprider/model/app_data_reader.py | iSWORD/http-rider | 5d9e5cc8c5166ab58f81d30d21b3ce2497bf09b9 | [
"MIT"
] | 27 | 2019-12-20T00:10:28.000Z | 2022-03-09T18:04:23.000Z | httprider/model/app_data_reader.py | iSWORD/http-rider | 5d9e5cc8c5166ab58f81d30d21b3ce2497bf09b9 | [
"MIT"
] | 6 | 2019-10-13T08:50:21.000Z | 2020-06-05T12:23:08.000Z | httprider/model/app_data_reader.py | iSWORD/http-rider | 5d9e5cc8c5166ab58f81d30d21b3ce2497bf09b9 | [
"MIT"
] | 7 | 2019-08-10T01:38:31.000Z | 2021-08-23T05:28:46.000Z | 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,
)
| 33.747967 | 88 | 0.695977 |
3f978f4cb297bf98d9722f54f27227c0fe655e28 | 120,882 | py | Python | tests/parsers/test_pwscf.py | jgaff/pif-dft | 0fcc136560973f0f99cd257108cdfbc497207e4f | [
"Apache-2.0"
] | null | null | null | tests/parsers/test_pwscf.py | jgaff/pif-dft | 0fcc136560973f0f99cd257108cdfbc497207e4f | [
"Apache-2.0"
] | null | null | null | tests/parsers/test_pwscf.py | jgaff/pif-dft | 0fcc136560973f0f99cd257108cdfbc497207e4f | [
"Apache-2.0"
] | null | null | null | 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
if __name__ == '__main__':
unittest.main()
| 470.357977 | 65,484 | 0.668983 |
3f9839dc98473c8e4ea48d01106d9d7e95ce9755 | 1,009 | py | Python | labels/migrations/0002_auto_20210210_0110.py | plaf2000/webspec | 487ccccff088ddbda0e5e475aaad167a01f4aab2 | [
"MIT"
] | null | null | null | labels/migrations/0002_auto_20210210_0110.py | plaf2000/webspec | 487ccccff088ddbda0e5e475aaad167a01f4aab2 | [
"MIT"
] | null | null | null | labels/migrations/0002_auto_20210210_0110.py | plaf2000/webspec | 487ccccff088ddbda0e5e475aaad167a01f4aab2 | [
"MIT"
] | null | null | null | # Generated by Django 3.1.3 on 2021-02-10 01:10
from django.db import migrations, models
| 26.552632 | 63 | 0.544103 |
3f9a7e714891705f693edf84f2253bf5255cd0d3 | 399 | py | Python | src/MeshSegmentation/conjgrad.py | paigeco/VirtualGoniometer | 536e7e77fbb036ad8d777b42e751a0f3e80b8242 | [
"CC0-1.0"
] | 1 | 2021-02-22T02:53:26.000Z | 2021-02-22T02:53:26.000Z | src/MeshSegmentation/conjgrad.py | paigeco/VirtualGoniometer | 536e7e77fbb036ad8d777b42e751a0f3e80b8242 | [
"CC0-1.0"
] | 5 | 2021-03-26T15:15:34.000Z | 2021-06-11T20:16:00.000Z | src/MeshSegmentation/conjgrad.py | paigeco/VirtualGoniometer | 536e7e77fbb036ad8d777b42e751a0f3e80b8242 | [
"CC0-1.0"
] | null | null | null | import numpy as np
| 22.166667 | 40 | 0.43609 |
3f9ba869b5d88cbcf4492c69120be7f5826782f4 | 569 | py | Python | handlers/_my.py | MelomanCool/telegram-stickers | 62ee6e5c89bf6793a6d64ec0865b6f79582b3974 | [
"MIT"
] | null | null | null | handlers/_my.py | MelomanCool/telegram-stickers | 62ee6e5c89bf6793a6d64ec0865b6f79582b3974 | [
"MIT"
] | 7 | 2017-12-18T20:07:57.000Z | 2021-06-21T13:50:30.000Z | handlers/_my.py | MelomanCool/telegram-stickers | 62ee6e5c89bf6793a6d64ec0865b6f79582b3974 | [
"MIT"
] | null | null | null | 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')
| 22.76 | 80 | 0.602812 |
3f9c9921caf4c6f97ced7380a73a7c255bf458f6 | 9,587 | py | Python | src/forest/main.py | ADVRHumanoids/forest | 22995b7bebf9809d49b0887dcb4a35c907fb3e13 | [
"MIT"
] | null | null | null | src/forest/main.py | ADVRHumanoids/forest | 22995b7bebf9809d49b0887dcb4a35c907fb3e13 | [
"MIT"
] | 6 | 2022-02-24T14:00:39.000Z | 2022-03-31T14:35:18.000Z | src/forest/main.py | ADVRHumanoids/forest | 22995b7bebf9809d49b0887dcb4a35c907fb3e13 | [
"MIT"
] | null | null | null | #!/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
# actual main
if __name__ == '__main__':
main() | 45.870813 | 240 | 0.682487 |
3f9ec030fef5007a3fee6e257fb29f26ca2ccd76 | 1,849 | py | Python | csc140/divideAndConquer/maximumSubArray.py | Matt-Crow/SmallPythonPrograms | 660dad09e1e8472e4bb4f0464117ccac63dbd7ea | [
"MIT"
] | 1 | 2019-12-11T21:56:59.000Z | 2019-12-11T21:56:59.000Z | csc140/divideAndConquer/maximumSubArray.py | Matt-Crow/SmallPythonPrograms | 660dad09e1e8472e4bb4f0464117ccac63dbd7ea | [
"MIT"
] | null | null | null | csc140/divideAndConquer/maximumSubArray.py | Matt-Crow/SmallPythonPrograms | 660dad09e1e8472e4bb4f0464117ccac63dbd7ea | [
"MIT"
] | null | null | null | """
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
# Returns max subarray within a[i:j] (inclusive of i, exclusive of j)
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)}')
| 24.012987 | 74 | 0.567334 |
3f9f5148d14b1213378b99075bb02d7c56142c61 | 1,101 | py | Python | setup.py | thusoy/blag | 183f5c5c6be16d8f22b269e574396d957d5f1895 | [
"MIT"
] | null | null | null | setup.py | thusoy/blag | 183f5c5c6be16d8f22b269e574396d957d5f1895 | [
"MIT"
] | 10 | 2015-02-23T22:55:15.000Z | 2022-01-07T19:48:42.000Z | setup.py | thusoy/blag | 183f5c5c6be16d8f22b269e574396d957d5f1895 | [
"MIT"
] | null | null | null | #!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
import os
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 Husy',
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',
]
}
)
| 25.022727 | 92 | 0.629428 |
3fa22069ae5fe18f29c6332040788c47fba607ea | 469 | py | Python | DataStructures/Stacks/TextEditor.py | baby5/HackerRank | 1e68a85f40499adb9b52a4da16936f85ac231233 | [
"MIT"
] | null | null | null | DataStructures/Stacks/TextEditor.py | baby5/HackerRank | 1e68a85f40499adb9b52a4da16936f85ac231233 | [
"MIT"
] | null | null | null | DataStructures/Stacks/TextEditor.py | baby5/HackerRank | 1e68a85f40499adb9b52a4da16936f85ac231233 | [
"MIT"
] | null | null | null | #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]
| 19.541667 | 39 | 0.447761 |
3fa25fe67ade7748177cb9602ea922bfde19db47 | 2,601 | py | Python | backend/server/services.py | Masyru/gisspot | 472e7d6c321c3a9db01ffdb8573e612caaf8a13b | [
"Apache-2.0"
] | null | null | null | backend/server/services.py | Masyru/gisspot | 472e7d6c321c3a9db01ffdb8573e612caaf8a13b | [
"Apache-2.0"
] | null | null | null | backend/server/services.py | Masyru/gisspot | 472e7d6c321c3a9db01ffdb8573e612caaf8a13b | [
"Apache-2.0"
] | null | null | null | 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"]
| 34.68 | 89 | 0.626682 |
3fa285fbe23a04fd466fb79a701560d794e0830d | 530 | py | Python | openwater/views.py | openwater/h2o-really | bb6ae678cc4f505450684a2579e3f0196236e8dc | [
"Unlicense"
] | 3 | 2015-05-25T07:41:42.000Z | 2020-05-18T05:50:40.000Z | openwater/views.py | openwater/h2o-really | bb6ae678cc4f505450684a2579e3f0196236e8dc | [
"Unlicense"
] | null | null | null | openwater/views.py | openwater/h2o-really | bb6ae678cc4f505450684a2579e3f0196236e8dc | [
"Unlicense"
] | null | null | null | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.views.generic.base import TemplateView
from diario.models import Entry
from observations.models import Measurement
| 27.894737 | 92 | 0.711321 |
3fa32905c78137776bdb65ffa8ff14608ab1abe6 | 1,516 | py | Python | backtrace_with_time/backtrace_with_time.py | chimicus/addons | 0fa1110df999fc9a8622a12e00453fc67b62fce1 | [
"BSD-3-Clause"
] | null | null | null | backtrace_with_time/backtrace_with_time.py | chimicus/addons | 0fa1110df999fc9a8622a12e00453fc67b62fce1 | [
"BSD-3-Clause"
] | 6 | 2019-08-23T15:53:05.000Z | 2021-07-14T08:24:06.000Z | backtrace_with_time/backtrace_with_time.py | chimicus/addons | 0fa1110df999fc9a8622a12e00453fc67b62fce1 | [
"BSD-3-Clause"
] | 3 | 2019-11-04T12:02:11.000Z | 2020-03-05T13:57:11.000Z | """
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,
)
BacktraceWithTime()
| 31.583333 | 79 | 0.566623 |
3fa6b41c13b8399c331e3ed2f410f771408be4f8 | 680 | py | Python | envoy/examples/puma-proxy/internal_lib/backend/netflix/database_connect.py | kevinjesse/puma | 163a363275bf5d84d1957aaf23783be84053e40f | [
"MIT"
] | null | null | null | envoy/examples/puma-proxy/internal_lib/backend/netflix/database_connect.py | kevinjesse/puma | 163a363275bf5d84d1957aaf23783be84053e40f | [
"MIT"
] | null | null | null | envoy/examples/puma-proxy/internal_lib/backend/netflix/database_connect.py | kevinjesse/puma | 163a363275bf5d84d1957aaf23783be84053e40f | [
"MIT"
] | null | null | null | #
# @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 | 30.909091 | 125 | 0.695588 |
3fa903d69a123b3bf76665218092b5512ddf68eb | 6,590 | py | Python | tests/integration_tests/data_steward/cdr_cleaner/cleaning_rules/remove_participants_under_18years_test.py | lrwb-aou/curation | e80447e56d269dc2c9c8bc79e78218d4b0dc504c | [
"MIT"
] | 16 | 2017-06-30T20:05:05.000Z | 2022-03-08T21:03:19.000Z | tests/integration_tests/data_steward/cdr_cleaner/cleaning_rules/remove_participants_under_18years_test.py | lrwb-aou/curation | e80447e56d269dc2c9c8bc79e78218d4b0dc504c | [
"MIT"
] | 342 | 2017-06-23T21:37:40.000Z | 2022-03-30T16:44:16.000Z | tests/integration_tests/data_steward/cdr_cleaner/cleaning_rules/remove_participants_under_18years_test.py | lrwb-aou/curation | e80447e56d269dc2c9c8bc79e78218d4b0dc504c | [
"MIT"
] | 33 | 2017-07-01T00:12:20.000Z | 2022-01-26T18:06:53.000Z | """
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)
""")
| 42.792208 | 113 | 0.579363 |
3fa9343aaf14f40f21e088d8570e50cd71a50d99 | 609 | py | Python | exercises/en/solution_08_15.py | Lavendulaa/programming-in-python-for-data-science | bc41da8afacf4c180ae0ff9c6dc26a7e6292252f | [
"MIT"
] | 1 | 2020-06-26T20:15:44.000Z | 2020-06-26T20:15:44.000Z | exercises/en/solution_08_15.py | Lavendulaa/programming-in-python-for-data-science | bc41da8afacf4c180ae0ff9c6dc26a7e6292252f | [
"MIT"
] | 20 | 2020-06-15T23:05:20.000Z | 2020-09-01T22:07:45.000Z | exercises/en/solution_08_15.py | UBC-MDS/MCL-programming-in-python | 22836d9013d3e3d1b1074678ba7dc3ee2e66f398 | [
"MIT"
] | 1 | 2020-05-09T03:49:02.000Z | 2020-05-09T03:49:02.000Z | 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 | 27.681818 | 78 | 0.770115 |
3faaaf65e1a880fbb043da470d287b3c90f587fb | 1,412 | py | Python | 题源分类/LeetCode/LeetCode日刷/python/461.汉明距离.py | ZhengyangXu/Algorithm-Daily-Practice | 3017a3d476fc9a857026190ea4fae2911058df59 | [
"MIT"
] | null | null | null | 题源分类/LeetCode/LeetCode日刷/python/461.汉明距离.py | ZhengyangXu/Algorithm-Daily-Practice | 3017a3d476fc9a857026190ea4fae2911058df59 | [
"MIT"
] | null | null | null | 题源分类/LeetCode/LeetCode日刷/python/461.汉明距离.py | ZhengyangXu/Algorithm-Daily-Practice | 3017a3d476fc9a857026190ea4fae2911058df59 | [
"MIT"
] | null | null | null | #
# @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
# @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 | 18.578947 | 64 | 0.431303 |
3fab256836e3c2695afaebffbd3e344034438d33 | 4,413 | py | Python | emissionsapi/db.py | brennerm/emissions-api | 577fa209ffd27476ff1ad0904ecc081564cf8f53 | [
"MIT"
] | null | null | null | emissionsapi/db.py | brennerm/emissions-api | 577fa209ffd27476ff1ad0904ecc081564cf8f53 | [
"MIT"
] | null | null | null | emissionsapi/db.py | brennerm/emissions-api | 577fa209ffd27476ff1ad0904ecc081564cf8f53 | [
"MIT"
] | null | null | null | """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()
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
"""
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)
| 30.226027 | 78 | 0.686155 |
3fabfef911568657e72bad1d7f657b6017f3f593 | 2,217 | py | Python | cmdb/views.py | proffalken/edison | 5bfa941f8876cb8698cd8009c4514bc03d24c109 | [
"BSD-3-Clause"
] | 3 | 2015-11-05T07:29:00.000Z | 2021-06-17T23:44:17.000Z | cmdb/views.py | proffalken/edison | 5bfa941f8876cb8698cd8009c4514bc03d24c109 | [
"BSD-3-Clause"
] | 1 | 2016-05-04T10:54:48.000Z | 2016-05-04T10:54:56.000Z | cmdb/views.py | proffalken/edison | 5bfa941f8876cb8698cd8009c4514bc03d24c109 | [
"BSD-3-Clause"
] | null | null | null | # 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']
}
# Setup the 'edit' form
class EditForm(ModelForm):
| 36.344262 | 162 | 0.722598 |
3fac52a8d1c05423e274506bc3a7a1b6ae3c1a67 | 553 | py | Python | setup.py | williamgilpin/pypdb_legacy | 5c0586128415ec64804d17dd3efa0a4e52b64734 | [
"MIT"
] | null | null | null | setup.py | williamgilpin/pypdb_legacy | 5c0586128415ec64804d17dd3efa0a4e52b64734 | [
"MIT"
] | null | null | null | setup.py | williamgilpin/pypdb_legacy | 5c0586128415ec64804d17dd3efa0a4e52b64734 | [
"MIT"
] | null | null | null | 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 = [],
)
| 26.333333 | 76 | 0.652803 |
3fac820670f21ea8c46cbcd7d979941dd6e7c18a | 409,678 | py | Python | 3algo/homo/1_10_10datap.py | allengrr/deadlock_project | 933878077c45a7df04daa087407bb2620c064617 | [
"MIT"
] | null | null | null | 3algo/homo/1_10_10datap.py | allengrr/deadlock_project | 933878077c45a7df04daa087407bb2620c064617 | [
"MIT"
] | null | null | null | 3algo/homo/1_10_10datap.py | allengrr/deadlock_project | 933878077c45a7df04daa087407bb2620c064617 | [
"MIT"
] | 1 | 2021-03-21T17:54:26.000Z | 2021-03-21T17:54:26.000Z |
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] | 25,604.875 | 386,495 | 0.620085 |
3facb12be8784f2c2576c973d9abccef35b78a25 | 940 | py | Python | awwards/urls.py | cossie14/slyawwards | 8babb043843dee836644b311809c5c1727e1de69 | [
"MIT"
] | null | null | null | awwards/urls.py | cossie14/slyawwards | 8babb043843dee836644b311809c5c1727e1de69 | [
"MIT"
] | 4 | 2021-03-19T03:24:59.000Z | 2021-09-08T01:16:07.000Z | awwards/urls.py | cossie14/slyawwards | 8babb043843dee836644b311809c5c1727e1de69 | [
"MIT"
] | null | null | null |
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)
| 33.571429 | 81 | 0.667021 |
3faf19d3bce07009761ea272b335839c3b750a3e | 3,485 | py | Python | webinar_part_2/2.0_nxos_existing_with_netbox/setup.py | Miradot/webinar | d6f4b54477e2dabf856406d65ad585c98066bc2f | [
"MIT"
] | 1 | 2021-12-21T21:20:48.000Z | 2021-12-21T21:20:48.000Z | webinar_part_2/2.0_nxos_existing_with_netbox/setup.py | Miradot/webinar | d6f4b54477e2dabf856406d65ad585c98066bc2f | [
"MIT"
] | null | null | null | webinar_part_2/2.0_nxos_existing_with_netbox/setup.py | Miradot/webinar | d6f4b54477e2dabf856406d65ad585c98066bc2f | [
"MIT"
] | null | null | null | import yaml
import argparse
from ansible_vault import Vault
if __name__ == '__main__':
main()
| 37.880435 | 115 | 0.631564 |
3fb0b9f6019a06b844fd3dd799c2b173e97e1ff6 | 448 | py | Python | Core/solar/performance_ratio.py | ncatunda/hive | 721731ce83c9ccd4ff1db224824a234035fbcd30 | [
"MIT"
] | null | null | null | Core/solar/performance_ratio.py | ncatunda/hive | 721731ce83c9ccd4ff1db224824a234035fbcd30 | [
"MIT"
] | null | null | null | Core/solar/performance_ratio.py | ncatunda/hive | 721731ce83c9ccd4ff1db224824a234035fbcd30 | [
"MIT"
] | null | null | null | # -*- coding: utf-8 -*-
"""
The data is (should be) based on the lecture Energie und Klimasysteme II,
Erneuerbare Energieerzeugung am Gebude, FS 2019, Folie 30,
"""
from __future__ import print_function
| 37.333333 | 74 | 0.705357 |
3fb1e5989581de8b3d3c0c1f32458f03c00fd7bf | 2,901 | py | Python | tests/e2e/process_chm15k/tests.py | actris-cloudnet/data-processing | 8ab6fccd5cf48e10e985addcf339b9698a9b09cd | [
"MIT"
] | null | null | null | tests/e2e/process_chm15k/tests.py | actris-cloudnet/data-processing | 8ab6fccd5cf48e10e985addcf339b9698a9b09cd | [
"MIT"
] | 5 | 2020-08-27T12:34:08.000Z | 2021-09-28T14:49:20.000Z | tests/e2e/process_chm15k/tests.py | actris-cloudnet/data-processing | 8ab6fccd5cf48e10e985addcf339b9698a9b09cd | [
"MIT"
] | null | null | null | 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__))
| 32.595506 | 122 | 0.641848 |
3fb2a77029f3ade78cfb9fb154c1aca159746d1e | 1,371 | py | Python | type_page/models.py | dumel93/project- | f9ad52d9c8449953e2151fd1c13b39631113eea7 | [
"MIT"
] | null | null | null | type_page/models.py | dumel93/project- | f9ad52d9c8449953e2151fd1c13b39631113eea7 | [
"MIT"
] | null | null | null | type_page/models.py | dumel93/project- | f9ad52d9c8449953e2151fd1c13b39631113eea7 | [
"MIT"
] | null | null | null | from django.contrib.auth.models import AbstractUser
from django.db import models
from .validators import validate_bet, validate_course
| 33.439024 | 94 | 0.66229 |
3fb31909a92b7362c0a031af95a6855ca677513e | 759 | py | Python | applications/pytorch/cnns/utils/distributed.py | kew96/GraphcoreExamples | 22dc0d7e3755b0a7f16cdf694c6d10c0f91ee8eb | [
"MIT"
] | null | null | null | applications/pytorch/cnns/utils/distributed.py | kew96/GraphcoreExamples | 22dc0d7e3755b0a7f16cdf694c6d10c0f91ee8eb | [
"MIT"
] | null | null | null | applications/pytorch/cnns/utils/distributed.py | kew96/GraphcoreExamples | 22dc0d7e3755b0a7f16cdf694c6d10c0f91ee8eb | [
"MIT"
] | null | null | null | # Copyright (c) 2021 Graphcore Ltd. All rights reserved.
import logging
import popdist
import popdist.poptorch
import horovod.torch as hvd
| 30.36 | 122 | 0.732543 |
3fb348a99aed4f8624038b9f92d6819ccde7fa22 | 589 | py | Python | aiohttp_apispec/decorators/__init__.py | maksimvrs/aiohttp-apispec | 186e354ce244ccc4b36999bca56a9d8ca41e63d0 | [
"MIT"
] | null | null | null | aiohttp_apispec/decorators/__init__.py | maksimvrs/aiohttp-apispec | 186e354ce244ccc4b36999bca56a9d8ca41e63d0 | [
"MIT"
] | null | null | null | aiohttp_apispec/decorators/__init__.py | maksimvrs/aiohttp-apispec | 186e354ce244ccc4b36999bca56a9d8ca41e63d0 | [
"MIT"
] | null | null | null | 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
)
| 36.8125 | 72 | 0.730051 |
3fb43581afcabab87376ae372e835742ac18f05a | 1,943 | py | Python | tests/api/v1/test_tags.py | redhat-cip/dci-control-server | 6dee30e7b8770fde2466f2b09554d299a3f3db4d | [
"Apache-2.0"
] | 17 | 2016-09-02T09:21:29.000Z | 2021-09-27T11:33:58.000Z | tests/api/v1/test_tags.py | redhat-cip/dci-control-server | 6dee30e7b8770fde2466f2b09554d299a3f3db4d | [
"Apache-2.0"
] | 80 | 2015-12-09T09:29:26.000Z | 2021-01-06T08:24:22.000Z | tests/api/v1/test_tags.py | redhat-cip/dci-control-server | 6dee30e7b8770fde2466f2b09554d299a3f3db4d | [
"Apache-2.0"
] | 10 | 2015-09-29T21:34:53.000Z | 2021-09-27T11:34:01.000Z | # -*- 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
| 30.84127 | 75 | 0.654658 |
3fb4a33534aa6e53058ff51d1739c3dcfd4acdde | 4,355 | py | Python | graypy/rabbitmq.py | bakkerd/graypy | e2782c7a5174c7c5f1006ff444f6d59487ef3c7f | [
"BSD-3-Clause"
] | null | null | null | graypy/rabbitmq.py | bakkerd/graypy | e2782c7a5174c7c5f1006ff444f6d59487ef3c7f | [
"BSD-3-Clause"
] | null | null | null | graypy/rabbitmq.py | bakkerd/graypy | e2782c7a5174c7c5f1006ff444f6d59487ef3c7f | [
"BSD-3-Clause"
] | null | null | null | #!/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
| 31.330935 | 79 | 0.622503 |
3fb6cccbe58ab4aa99341ff7ff29997ad198d655 | 1,323 | py | Python | workmail-translate-email/src/translate_helper.py | zjt/amazon-workmail-lambda-templates | 27bcdee78634527c11c5083ecdc67360295a99e0 | [
"Apache-2.0"
] | 31 | 2019-02-20T04:52:45.000Z | 2022-03-28T14:55:27.000Z | workmail-translate-email/src/translate_helper.py | zjt/amazon-workmail-lambda-templates | 27bcdee78634527c11c5083ecdc67360295a99e0 | [
"Apache-2.0"
] | 4 | 2021-06-29T16:21:16.000Z | 2021-09-17T22:58:52.000Z | workmail-translate-email/src/translate_helper.py | zjt/amazon-workmail-lambda-templates | 27bcdee78634527c11c5083ecdc67360295a99e0 | [
"Apache-2.0"
] | 16 | 2019-02-21T13:27:10.000Z | 2021-12-25T18:49:13.000Z | 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')
| 29.4 | 94 | 0.665155 |
3fb7186eaada6a7909f15b3f783b895109917928 | 3,768 | py | Python | mylearner.py | USC-MCL/Func-Pool | 20c43df0eb2da68d8d2e01c03d66a1a4e4e06081 | [
"MIT"
] | 3 | 2020-01-24T19:03:44.000Z | 2021-04-13T17:22:36.000Z | mylearner.py | USC-MCL/Func-Pool | 20c43df0eb2da68d8d2e01c03d66a1a4e4e06081 | [
"MIT"
] | null | null | null | mylearner.py | USC-MCL/Func-Pool | 20c43df0eb2da68d8d2e01c03d66a1a4e4e06081 | [
"MIT"
] | 3 | 2020-01-24T19:03:45.000Z | 2020-04-13T08:27:13.000Z | # 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
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")
| 36.582524 | 112 | 0.551221 |
3fb92b9dfc88175ad72437eeb1e0e07300b64bc1 | 1,077 | py | Python | pritunl_wireguard_client/utils/token.py | SuperBo/pritunl-wireguard-cient | bed4407bf2b7811f7180d72446a2dc26d45db90d | [
"MIT"
] | 1 | 2021-02-16T07:08:46.000Z | 2021-02-16T07:08:46.000Z | pritunl_wireguard_client/utils/token.py | SuperBo/pritunl-wireguard-cient | bed4407bf2b7811f7180d72446a2dc26d45db90d | [
"MIT"
] | 1 | 2022-02-08T13:34:18.000Z | 2022-02-08T13:34:18.000Z | pritunl_wireguard_client/utils/token.py | SuperBo/pritunl-wireguard-cient | bed4407bf2b7811f7180d72446a2dc26d45db90d | [
"MIT"
] | 1 | 2021-03-18T14:34:41.000Z | 2021-03-18T14:34:41.000Z | import time
import pritunl_wireguard_client.utils.random as utils
| 27.615385 | 53 | 0.557103 |
3fb9b92107c88b93e0868bfec40b6ae263c31ca9 | 16,812 | py | Python | github_util.py | dglo/svn2git_tools | 72aea47d801c7c674e4fe9f053a613ef88fc38c4 | [
"BSD-3-Clause"
] | null | null | null | github_util.py | dglo/svn2git_tools | 72aea47d801c7c674e4fe9f053a613ef88fc38c4 | [
"BSD-3-Clause"
] | null | null | null | github_util.py | dglo/svn2git_tools | 72aea47d801c7c674e4fe9f053a613ef88fc38c4 | [
"BSD-3-Clause"
] | null | null | null | #!/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
| 35.171548 | 79 | 0.583393 |
3fba31ce0598188d4268a711f23cf7223b613738 | 2,299 | py | Python | moabb/analysis/__init__.py | plcrodrigues/moabb | aa4274fe7905631864e854c121c92e1927061f29 | [
"BSD-3-Clause"
] | 321 | 2017-06-03T16:14:45.000Z | 2022-03-28T17:43:59.000Z | moabb/analysis/__init__.py | plcrodrigues/moabb | aa4274fe7905631864e854c121c92e1927061f29 | [
"BSD-3-Clause"
] | 223 | 2017-06-03T17:41:57.000Z | 2022-03-29T09:07:44.000Z | moabb/analysis/__init__.py | girafe-ai/moabb | 78bbb48a2a0058b0725ebeba1ba1e3203f0eacd5 | [
"BSD-3-Clause"
] | 118 | 2017-06-03T18:36:35.000Z | 2022-03-16T06:22:02.000Z | 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"))
| 32.380282 | 82 | 0.68769 |
3fba37decae8c7ead3f5cde9a2d0f4e93d890495 | 2,180 | py | Python | smm/lemm/numba_optimisations.py | jamesthomasgriffin/smm | 5f1f6432e17f84f7f793d60cb9831ac5c79991e6 | [
"BSD-3-Clause"
] | 2 | 2019-10-17T15:33:13.000Z | 2020-01-16T10:05:36.000Z | smm/lemm/numba_optimisations.py | jamesthomasgriffin/smm | 5f1f6432e17f84f7f793d60cb9831ac5c79991e6 | [
"BSD-3-Clause"
] | null | null | null | smm/lemm/numba_optimisations.py | jamesthomasgriffin/smm | 5f1f6432e17f84f7f793d60cb9831ac5c79991e6 | [
"BSD-3-Clause"
] | 1 | 2020-01-16T10:06:10.000Z | 2020-01-16T10:06:10.000Z | from numba import guvectorize, float64, int64, njit
import numpy as np
from smm import numba_target as target_preset
| 31.142857 | 77 | 0.509633 |
3fba7d34fac65f02b80c4c96594e7743e1629ab8 | 783 | py | Python | exercices_todo/duplicates_find.py | AntonioIonica/Automation_testing | 6f7c94c55677b0958e6fada24058f1a00d2c0d0e | [
"MIT"
] | null | null | null | exercices_todo/duplicates_find.py | AntonioIonica/Automation_testing | 6f7c94c55677b0958e6fada24058f1a00d2c0d0e | [
"MIT"
] | null | null | null | exercices_todo/duplicates_find.py | AntonioIonica/Automation_testing | 6f7c94c55677b0958e6fada24058f1a00d2c0d0e | [
"MIT"
] | null | null | null | """
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
| 35.590909 | 117 | 0.664112 |
3fba885aa5f0287571e2d253dd5d007fd48c35d4 | 588 | py | Python | ethgasstation.py | ethgasstation/ethgasstation-adaptive-oracle | e5983adfa0cb8cd0c3952aa6a9869e9f402156b9 | [
"MIT"
] | 47 | 2017-12-08T02:02:19.000Z | 2018-01-06T10:30:56.000Z | ethgasstation.py | ethgasstation/ethgasstation-adaptive-oracle | e5983adfa0cb8cd0c3952aa6a9869e9f402156b9 | [
"MIT"
] | 11 | 2017-12-08T08:03:56.000Z | 2018-01-06T23:39:32.000Z | ethgasstation.py | ethgasstation/ethgasstation-adaptive-oracle | e5983adfa0cb8cd0c3952aa6a9869e9f402156b9 | [
"MIT"
] | 7 | 2017-12-08T07:27:18.000Z | 2018-01-06T04:06:46.000Z | #!/usr/bin/env python3
"""
ETH Gas Station
Primary backend.
"""
import argparse
from egs.main import master_control
from egs.output import Output
def main():
"""Parse command line options."""
parser = argparse.ArgumentParser(description="An adaptive gas price oracle for Ethereum.")
parser.add_argument('--generate-report', action='store_true', help="Generate reports for ethgasstation-frontend.")
args = parser.parse_args()
# kick off the egs main event loop
master_control(args)
if __name__ == '__main__':
o = Output()
o.banner()
main()
| 23.52 | 118 | 0.693878 |
3fbafb8b47bed64f592d7b2645ff31b682526b8a | 3,675 | py | Python | app/tests/controls/tests_template_helpers.py | madussault/FlaskyPress | 677bfbb3473a239c08d9e120e959d3e31c456964 | [
"MIT"
] | null | null | null | app/tests/controls/tests_template_helpers.py | madussault/FlaskyPress | 677bfbb3473a239c08d9e120e959d3e31c456964 | [
"MIT"
] | null | null | null | app/tests/controls/tests_template_helpers.py | madussault/FlaskyPress | 677bfbb3473a239c08d9e120e959d3e31c456964 | [
"MIT"
] | null | null | null | """Contains tests for the functions found in ``controls/templates_helpers.py``
To run this particular test file use the following command line:
nose2 -v app.tests.controls.tests_template_helpers
"""
from app import db, create_app
import unittest
from unittest import TestCase
from config import Config
from app.tests.utils import (dummy_post, control_categories,
control_search_bar,
add_three_dummy_widget_positions)
from app.models import SearchBarControls, CategoriesControls
from app.controls.template_helpers import (ordered_widgets,
categories_presence,
sidebar_widget_count,
search_bar_placement)
if __name__ == '__main__':
unittest.main(verbosity=2) | 37.121212 | 79 | 0.628844 |
3fbbc3f8ef8d51546060cccaf53257878c60d288 | 2,299 | py | Python | MAModule/networks/predict.py | MrReochen/MultiAgentModule | 20216dee265501f09fba7b73fafdbef63b297725 | [
"MIT"
] | null | null | null | MAModule/networks/predict.py | MrReochen/MultiAgentModule | 20216dee265501f09fba7b73fafdbef63b297725 | [
"MIT"
] | null | null | null | MAModule/networks/predict.py | MrReochen/MultiAgentModule | 20216dee265501f09fba7b73fafdbef63b297725 | [
"MIT"
] | null | null | null | import torch
import torch.nn as nn
from ..networks.basic.util import check
from ..networks.basic.predict import PredictNet, PredictLayer, OutLayer
from ..utils.util import get_shape_from_obs_space | 34.833333 | 104 | 0.646368 |
3fbbd88b176cdd6b237953ffa51d4f9d25ca08a8 | 1,431 | py | Python | repositories/gae/blob_dataset.py | singhj/locality-sensitive-hashing | 99baa87d3b532ba5aa03fd80ed967275eb98d422 | [
"MIT"
] | 19 | 2015-02-22T15:47:33.000Z | 2020-10-19T12:29:24.000Z | repositories/gae/blob_dataset.py | singhj/locality-sensitive-hashing | 99baa87d3b532ba5aa03fd80ed967275eb98d422 | [
"MIT"
] | 7 | 2015-02-10T10:52:06.000Z | 2019-04-01T15:27:00.000Z | repositories/gae/blob_dataset.py | singhj/locality-sensitive-hashing | 99baa87d3b532ba5aa03fd80ed967275eb98d422 | [
"MIT"
] | 7 | 2015-02-23T19:22:11.000Z | 2022-02-04T10:27:15.000Z | from google.appengine.ext import ndb
from repositories.gae.dataset import Dataset
from repositories.gae.dataset import calculate_max_hashes, get_random_bits | 34.902439 | 74 | 0.566038 |
3fbcfad926cc78ab95112a6eecc4dc811aaf6f09 | 1,394 | py | Python | wetrunner/tests/test_evmat.py | DavidMStraub/python-wetrunner | be9549535aab3a00e496002a515c647d112ea090 | [
"MIT"
] | null | null | null | wetrunner/tests/test_evmat.py | DavidMStraub/python-wetrunner | be9549535aab3a00e496002a515c647d112ea090 | [
"MIT"
] | 4 | 2018-01-11T10:29:16.000Z | 2018-04-12T15:36:20.000Z | wetrunner/tests/test_evmat.py | DavidMStraub/python-wetrunner | be9549535aab3a00e496002a515c647d112ea090 | [
"MIT"
] | 2 | 2018-01-11T10:20:55.000Z | 2018-03-07T22:13:34.000Z | """Compare evolution matrices to v0.1 numerics"""
import wetrunner
import unittest
from pkg_resources import resource_filename
import numpy as np
import numpy.testing as npt
| 39.828571 | 91 | 0.553085 |
3fbfff6f4fb61ab0d9c6aaa91429d122a201c789 | 4,310 | py | Python | python/clockwork/ena/submit_files.py | jeff-k/clockwork | d6e9ac80bb46ec806acd7db85ed5c3430c3f2438 | [
"MIT"
] | 18 | 2018-01-18T13:02:10.000Z | 2022-03-25T05:56:02.000Z | python/clockwork/ena/submit_files.py | jeff-k/clockwork | d6e9ac80bb46ec806acd7db85ed5c3430c3f2438 | [
"MIT"
] | 54 | 2018-01-25T15:47:25.000Z | 2022-03-30T17:02:23.000Z | python/clockwork/ena/submit_files.py | jeff-k/clockwork | d6e9ac80bb46ec806acd7db85ed5c3430c3f2438 | [
"MIT"
] | 15 | 2018-01-18T11:21:33.000Z | 2022-03-30T16:55:48.000Z | import configparser
import random
import string
from clockwork import utils
| 31.459854 | 148 | 0.615777 |
3fc20da9e836148d0b5e35676fbdec51d080a74c | 3,350 | py | Python | tools/add_new_quantization_parameters.py | xiao1228/nncf | 307262119ee3f50eec2fa4022b2ef96693fd8448 | [
"Apache-2.0"
] | 310 | 2020-10-29T09:22:42.000Z | 2022-03-31T04:53:34.000Z | tools/add_new_quantization_parameters.py | xiao1228/nncf | 307262119ee3f50eec2fa4022b2ef96693fd8448 | [
"Apache-2.0"
] | 615 | 2020-10-28T10:22:25.000Z | 2022-03-29T18:09:23.000Z | tools/add_new_quantization_parameters.py | xiao1228/nncf | 307262119ee3f50eec2fa4022b2ef96693fd8448 | [
"Apache-2.0"
] | 86 | 2020-10-28T11:34:34.000Z | 2022-03-31T08:00:35.000Z | """
Copyright (c) 2020 Intel Corporation
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 sys
from argparse import ArgumentParser
from typing import NamedTuple, Any
import torch
from os import listdir, makedirs
from os.path import isfile, join, exists
from shutil import copyfile
from nncf.torch.quantization.layers import SymmetricQuantizer, AsymmetricQuantizer
if __name__ == '__main__':
main(sys.argv[1:])
| 37.222222 | 118 | 0.638507 |
3fc217a661811f79c1778a9b4610e13c10ae7b95 | 1,106 | py | Python | src/backend/marsha/core/migrations/0019_auto_20200609_0820.py | marin-leonard/marsha | b5d6bf98fda27acd3a08577b82dd98bcd39bfd8d | [
"MIT"
] | 64 | 2018-04-26T23:46:14.000Z | 2022-03-26T21:32:23.000Z | src/backend/marsha/core/migrations/0019_auto_20200609_0820.py | marin-leonard/marsha | b5d6bf98fda27acd3a08577b82dd98bcd39bfd8d | [
"MIT"
] | 533 | 2018-04-17T10:17:24.000Z | 2022-03-31T13:07:49.000Z | src/backend/marsha/core/migrations/0019_auto_20200609_0820.py | marin-leonard/marsha | b5d6bf98fda27acd3a08577b82dd98bcd39bfd8d | [
"MIT"
] | 16 | 2018-09-21T12:52:34.000Z | 2021-11-29T16:44:51.000Z | # Generated by Django 3.0.6 on 2020-05-19 14:32
from django.db import migrations, models
| 26.97561 | 72 | 0.454792 |
3fc23e96afc2ac687938892c8fa39f0756c775dd | 11,766 | py | Python | models/video_base.py | vedaldi/dynamic-video-depth | 274f5f59604a10121a2445f7b30df4a9ff075946 | [
"Apache-2.0"
] | 1 | 2022-03-24T23:59:26.000Z | 2022-03-24T23:59:26.000Z | models/video_base.py | vedaldi/dynamic-video-depth | 274f5f59604a10121a2445f7b30df4a9ff075946 | [
"Apache-2.0"
] | null | null | null | models/video_base.py | vedaldi/dynamic-video-depth | 274f5f59604a10121a2445f7b30df4a9ff075946 | [
"Apache-2.0"
] | null | null | null | # 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.
from os.path import join, dirname
import numpy as np
import torch
from ..models.netinterface import NetInterface
from os import makedirs
import matplotlib.pyplot as plt
import matplotlib.cm
from matplotlib.colors import ListedColormap
from ..third_party.util_colormap import turbo_colormap_data
# matplotlib.cm.register_cmap('turbo', cmap=ListedColormap(turbo_colormap_data))
import matplotlib
import shutil
# %%
| 40.996516 | 167 | 0.586011 |
3fc28ee2166df5c930e27ec1974997e4a8df5d90 | 1,232 | py | Python | update-tuya-address.py | mwinters-stuff/octoprint-update-tuya-address | 6b4f95613d573eb45af2de936615d75dfd01a77b | [
"Apache-2.0"
] | null | null | null | update-tuya-address.py | mwinters-stuff/octoprint-update-tuya-address | 6b4f95613d573eb45af2de936615d75dfd01a77b | [
"Apache-2.0"
] | null | null | null | update-tuya-address.py | mwinters-stuff/octoprint-update-tuya-address | 6b4f95613d573eb45af2de936615d75dfd01a77b | [
"Apache-2.0"
] | null | null | null | #!/usr/bin/python3
import subprocess
import yaml
try:
from yaml import CLoader as Loader, CDumper as Dumper
except ImportError:
from yaml import Loader, Dumper
#MAC address of the smart plug
MAC_ADDRESS = '84:f3:eb:32:e3:b4'
# netmask of your network
NET_MASK = '192.168.1.1/24'
#octopi config
OCTOPI_CONFIG = '/home/pi/.octoprint/config.yaml'
if __name__ == "__main__":
subprocess.check_call(['/usr/bin/nmap','-sP','-T4',NET_MASK])
p = subprocess.Popen(['/usr/sbin/arp','-n'], stdout=subprocess.PIPE)
for line in iter(p.stdout.readline, b''):
str = line.decode('utf-8')
if(MAC_ADDRESS in str):
ipaddress = str.split(' ')[0]
print('Found Plug with address %s' % ipaddress)
config = open(OCTOPI_CONFIG)
configy = yaml.load(config, Loader=Loader)
config.close()
# print(configy)
print(configy['plugins']['tuyasmartplug']['arrSmartplugs'][0]['ip'])
if configy['plugins']['tuyasmartplug']['arrSmartplugs'][0]['ip'] != ipaddress:
configy['plugins']['tuyasmartplug']['arrSmartplugs'][0]['ip'] = ipaddress
config = open(OCTOPI_CONFIG, mode='w')
config.write(yaml.safe_dump(configy, allow_unicode=False))
config.close()
break
| 31.589744 | 84 | 0.660714 |
3fc2b905de175376e48fc847adcd762ca15c7b7a | 2,571 | py | Python | sarpy_gui_apps/apps/canvas_demo/panels/canvas_demo_button_panel.py | spowlas/sarpy | c4a404203607d404b93a556459aa5311d7148e95 | [
"MIT"
] | null | null | null | sarpy_gui_apps/apps/canvas_demo/panels/canvas_demo_button_panel.py | spowlas/sarpy | c4a404203607d404b93a556459aa5311d7148e95 | [
"MIT"
] | 1 | 2019-11-14T20:55:57.000Z | 2019-12-27T18:11:29.000Z | sarpy_gui_apps/apps/canvas_demo/panels/canvas_demo_button_panel.py | spowlas/sarpy | c4a404203607d404b93a556459aa5311d7148e95 | [
"MIT"
] | 2 | 2020-02-12T20:11:00.000Z | 2020-03-26T16:55:03.000Z | from tkinter_gui_builder.panel_templates.widget_panel.widget_panel import AbstractWidgetPanel
from tkinter_gui_builder.widgets import basic_widgets
if __name__ == '__main__':
print(dir(AbstractWidgetPanel))
| 40.171875 | 93 | 0.552703 |
3fc57348ab10be442b6950d805f656ab0d9bf881 | 1,360 | py | Python | GCN/test_until.py | Alienge/Graph-Network | 559cccb6af4e6ca50c44fd51cac8df5713f255bf | [
"MIT"
] | 3 | 2020-06-10T03:29:11.000Z | 2020-10-21T09:03:13.000Z | GCN/test_until.py | Alienge/Graph-Network | 559cccb6af4e6ca50c44fd51cac8df5713f255bf | [
"MIT"
] | null | null | null | GCN/test_until.py | Alienge/Graph-Network | 559cccb6af4e6ca50c44fd51cac8df5713f255bf | [
"MIT"
] | 1 | 2020-06-25T06:15:28.000Z | 2020-06-25T06:15:28.000Z | import torch
import numpy as np
import scipy.sparse as sp
def sparse_to_tuple(sparse_mx):
"""Convert sparse matrix to tuple representation."""
if isinstance(sparse_mx, list):
for i in range(len(sparse_mx)):
sparse_mx[i] = to_tuple(sparse_mx[i])
else:
sparse_mx = to_tuple(sparse_mx)
return sparse_mx
a = np.array([1,2,3])
b = np.array([4,5,6])
c = a + b.reshape((3,1))
print(c)
#a = torch.randint(1,100,(2,2,5))
#print(a)
#print(a.repeat(1,1,2))
#b = a.repeat(1,1,2).view(2,4,5)
#print(b)
#c = a.repeat(1,2,1)
#print(torch.cat([b,c],dim=2).view(2,))
#print(range(10))
#a = torch.randint(1,100,(3,3)).numpy()
#print(a)
#a = a + np.multiply(a.T,a.T > a) - np.multiply(a,a.T > a)
#print(a)
'''
a = torch.randint(0,2,(3,3))
b = sp.coo_matrix(a)
c = np.array(b.sum(1))
print(a)
print(b)
print(c)
'''
'''
a = torch.randn((3,3))
rowsum = np.array(a.sum(1))
r_inv = np.power(rowsum,-1).flatten()
r_inv[np.isinf(r_inv)] = 0.
r_mat_inv = sp.diags(r_inv)
print(r_inv)
print(r_mat_inv)
print(a)
features = r_mat_inv.dot(a)
print(features)
print(sparse_to_tuple(features))
'''
| 17.894737 | 58 | 0.609559 |
3fc7b2fa4d7d1bb8ba7c895d8420a155ae6e1ca0 | 5,056 | py | Python | mechmean/fabric_tensors.py | JulianKarlBauer/meanfieldmechanics | a53b38655d0e9558cc3e676c359fa13dfe3d9112 | [
"MIT"
] | null | null | null | mechmean/fabric_tensors.py | JulianKarlBauer/meanfieldmechanics | a53b38655d0e9558cc3e676c359fa13dfe3d9112 | [
"MIT"
] | null | null | null | mechmean/fabric_tensors.py | JulianKarlBauer/meanfieldmechanics | a53b38655d0e9558cc3e676c359fa13dfe3d9112 | [
"MIT"
] | 1 | 2022-02-25T19:37:20.000Z | 2022-02-25T19:37:20.000Z | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
import numpy as np
import mechkit
import mechmean
def evenly_distributed_vectors_on_sphere(nbr_vectors=1000):
"""
Define nbr_vectors evenly distributed vectors on a sphere
Using the golden spiral method kindly provided by
stackoverflow-user "CR Drost"
https://stackoverflow.com/a/44164075/8935243
"""
from numpy import pi, cos, sin, arccos, arange
indices = arange(0, nbr_vectors, dtype=float) + 0.5
phi = arccos(1 - 2 * indices / nbr_vectors)
theta = pi * (1 + 5 ** 0.5) * indices
x, y, z = cos(theta) * sin(phi), sin(theta) * sin(phi), cos(phi)
orientations = np.column_stack((x, y, z))
return orientations
def first_kind_discrete(orientations, order=4):
"""
Calc orientation tensors of ... kind
"""
# Normalize orientations
orientations = [np.array(v) / np.linalg.norm(v) for v in orientations]
# Symmetrize orientations
# orientations_reversed = [-v for v in orientations]
# orientations = orientations + orientations_reversed
einsumStrings = {
1: "ij -> j",
2: "ij, ik -> jk",
3: "ij, ik, il -> jkl",
4: "ij, ik, il, im -> jklm",
5: "ij, ik, il, im, in -> jklmn",
6: "ij, ik, il, im, in, ip -> jklmnp",
}
if order > 6:
einsumStrings[order] = einsum_str_fabric_tensor_first_kind_discrete(order=order)
einsumArgs = [orientations for i in range(order)]
N = 1.0 / len(orientations) * np.einsum(einsumStrings[order], *einsumArgs)
return N
def einsum_str_fabric_tensor_first_kind_discrete(order):
"""
Generalize to higher orders:
N = sum_i 'order'-times_dyad_product(vector)
=
1: 'ij -> j',
2: 'ij, ik -> jk',
3: 'ij, ik, il -> jkl',
4: 'ij, ik, il, im -> jklm',
5: 'ij, ik, il, im, in -> jklmn',
6: 'ij, ik, il, im, in, ip -> jklmnp',
...
"""
# Get list of all available characters
import string
letters = list(string.ascii_letters)
letters.remove("i")
# Create einsum string and arguments
einsumInput = ",".join(["i" + letters[index] for index in range(order)])
einsumOut = "".join(letters[0:order])
einsumString = einsumInput + "->" + einsumOut
return einsumString
| 28.727273 | 88 | 0.548655 |
3fc90063242679a163aee4c95d494aed3302ce11 | 961 | py | Python | setup.py | adamltyson/fancylog | 8e9047759d5c394e98b5af7c2d68f70f2fbeb40e | [
"MIT"
] | 3 | 2020-09-30T09:02:08.000Z | 2021-06-12T20:43:43.000Z | setup.py | adamltyson/fancylog | 8e9047759d5c394e98b5af7c2d68f70f2fbeb40e | [
"MIT"
] | 8 | 2020-01-07T11:27:05.000Z | 2021-07-13T11:07:11.000Z | setup.py | adamltyson/fancylog | 8e9047759d5c394e98b5af7c2d68f70f2fbeb40e | [
"MIT"
] | 2 | 2020-02-05T19:03:04.000Z | 2021-07-07T09:42:24.000Z | from setuptools import setup, find_packages
setup(
name="fancylog",
version="0.2.6",
description="Fancier logging in Python",
install_requires=["packaging", "rich"],
extras_require={
"dev": [
"black",
"pytest-cov",
"pytest",
"coverage",
"bump2version",
"pre-commit",
"flake8",
]
},
python_requires=">=3.6",
packages=find_packages(),
include_package_data=True,
url="https://github.com/adamltyson/fancylog",
author="Adam Tyson",
author_email="code@adamltyson.com",
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
],
)
| 26.694444 | 49 | 0.552549 |
3fc96ed41bb550e4bca1d28b2bc1be7197a1cd5d | 5,620 | py | Python | tests/test_identity.py | multiscale/ymmsl-python | f8a63232823ad655530a83570443d9c045ef9929 | [
"Apache-2.0"
] | 1 | 2018-12-13T18:09:09.000Z | 2018-12-13T18:09:09.000Z | tests/test_identity.py | multiscale/ymmsl-python | f8a63232823ad655530a83570443d9c045ef9929 | [
"Apache-2.0"
] | 10 | 2018-11-13T16:12:38.000Z | 2021-07-21T13:16:43.000Z | tests/test_identity.py | multiscale/ymmsl-python | f8a63232823ad655530a83570443d9c045ef9929 | [
"Apache-2.0"
] | null | null | null | from ymmsl import Identifier, Reference
import pytest
import yatiml
| 30.053476 | 79 | 0.637011 |
3fc9e66e2e4c81e88a2f6282ca33a85ca40e0ad7 | 1,262 | py | Python | molecule/loadbalancer/tests/test_default.py | mvdheenux/OpenConext-deploy | 9c75866cba7675cafa8946e591ffac0fe528f7b3 | [
"Apache-2.0"
] | 11 | 2015-07-05T10:38:10.000Z | 2019-06-27T07:49:32.000Z | molecule/loadbalancer/tests/test_default.py | mvdheenux/OpenConext-deploy | 9c75866cba7675cafa8946e591ffac0fe528f7b3 | [
"Apache-2.0"
] | 201 | 2015-02-03T14:52:30.000Z | 2022-03-09T08:45:00.000Z | molecule/loadbalancer/tests/test_default.py | domgon/OpenConext-deploy | 80b28f59bdef2ac683744c07bb938c889cb43681 | [
"Apache-2.0"
] | 48 | 2015-03-10T13:28:23.000Z | 2021-11-28T23:15:32.000Z | import os
import pytest
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
def test_sysctl_non_local_bind(host):
non_local_bind = host.sysctl("net.ipv4.ip_nonlocal_bind")
assert non_local_bind == 1
| 26.291667 | 71 | 0.717116 |
3fca93e41547a1ae70fbe0d1268f42c02b9128db | 4,237 | py | Python | tiledb/cloud/_results/results.py | TileDB-Inc/TileDB-Cloud-Py | e73f6e0ae3fc595218abd3be606c68f62ad5ac9b | [
"MIT"
] | 4 | 2019-12-04T23:19:35.000Z | 2021-06-21T21:42:53.000Z | tiledb/cloud/_results/results.py | TileDB-Inc/TileDB-Cloud-Py | e73f6e0ae3fc595218abd3be606c68f62ad5ac9b | [
"MIT"
] | 106 | 2019-11-07T22:40:43.000Z | 2022-03-29T22:31:18.000Z | tiledb/cloud/_results/results.py | TileDB-Inc/TileDB-Cloud-Py | e73f6e0ae3fc595218abd3be606c68f62ad5ac9b | [
"MIT"
] | 1 | 2020-10-04T18:54:37.000Z | 2020-10-04T18:54:37.000Z | """Things that help you keep track of task results and how to decode them."""
import abc
import dataclasses
import threading
import uuid
from concurrent import futures
from typing import Callable, Generic, Optional, TypeVar, Union
import urllib3
from tiledb.cloud import rest_api
from tiledb.cloud import tiledb_cloud_error as tce
from tiledb.cloud._results import decoders
from tiledb.cloud._results import stored_params
TASK_ID_HEADER = "X-TILEDB-CLOUD-TASK-ID"
_T = TypeVar("_T")
# Not frozen to avoid generating unsafe methods like `__hash__`,
# but you should still *treat* these subclasses like they're frozen.
class AsyncResult(Generic[_T]):
"""Asynchronous wrapper for compatibility with the old array.TaskResult."""
def __init__(self, future: "futures.Future[Result[_T]]"):
"""Creates a new AsyncResponse wrapping the given Future."""
self._future = future
self._id_lock = threading.Lock()
self._task_id: Optional[uuid.UUID] = None
self._future.add_done_callback(self._set_task_id)
def get(self, timeout: Optional[float] = None) -> _T:
"""Gets the result from this response, with Future's timeout rules."""
return self._future.result(timeout).get()
def _set_task_id(self, _):
"""Sets the task ID once the Future has completed."""
try:
res = self._future.result()
except rest_api.ApiException as exc:
with self._id_lock:
self._task_id = extract_task_id(exc)
except: # noqa: E722 We don't care about other exceptions, period.
pass
else:
with self._id_lock:
self._task_id = res.task_id
def extract_task_id(
thing: Union[rest_api.ApiException, urllib3.HTTPResponse],
) -> Optional[uuid.UUID]:
"""Pulls the task ID out of a response or an exception."""
id_hdr = thing.headers and thing.headers.get(TASK_ID_HEADER)
return _maybe_uuid(id_hdr)
def _maybe_uuid(id_str: Optional[str]) -> Optional[uuid.UUID]:
"""Parses a hex string into a UUID if present and valid."""
if not id_str:
return None
try:
return uuid.UUID(hex=id_str)
except ValueError:
return None
| 32.343511 | 80 | 0.660609 |
3fca96dd670cc10df7dd85a3eaf8c8ace2dc5c34 | 3,676 | py | Python | test2/mining/mining.py | gr0mph/OceanOfCode | 336caa00e22ae06e12d32971f84c82e3c0c9a3a4 | [
"MIT"
] | null | null | null | test2/mining/mining.py | gr0mph/OceanOfCode | 336caa00e22ae06e12d32971f84c82e3c0c9a3a4 | [
"MIT"
] | null | null | null | test2/mining/mining.py | gr0mph/OceanOfCode | 336caa00e22ae06e12d32971f84c82e3c0c9a3a4 | [
"MIT"
] | null | null | null | import sys
sys.path.append('../../')
# Global variables
from test2.test_main import TREASURE_MAP
from test2.test_main import MINE_MAP
# From OceanOfCode
# Class
from OceanOfCode import MineAndTrigger
from OceanOfCode import Submarine
from OceanOfCode import Board
# Global
from OceanOfCode import EMPTY_SYMBOLS
from OceanOfCode import DIRS
# Method
from OceanOfCode import square
import unittest
if __name__ == '__main__':
unittest.main()
| 28.276923 | 95 | 0.586235 |
3fcb54fe77197f1040f44681301381a698a9f1e0 | 831 | py | Python | dfdatetime/__init__.py | joachimmetz/dfdatetime | de6da30114b952abeac8909906862e78aa7286dc | [
"Apache-2.0"
] | null | null | null | dfdatetime/__init__.py | joachimmetz/dfdatetime | de6da30114b952abeac8909906862e78aa7286dc | [
"Apache-2.0"
] | null | null | null | dfdatetime/__init__.py | joachimmetz/dfdatetime | de6da30114b952abeac8909906862e78aa7286dc | [
"Apache-2.0"
] | null | null | null | # -*- coding: utf-8 -*-
"""Digital Forensics Date and Time (dfDateTime).
dfDateTime, or Digital Forensics date and time, provides date and time
objects to preserve accuracy and precision.
"""
# Imports for date time values factory.
from dfdatetime import apfs_time
from dfdatetime import cocoa_time
from dfdatetime import delphi_date_time
from dfdatetime import fat_date_time
from dfdatetime import filetime
from dfdatetime import hfs_time
from dfdatetime import golang_time
from dfdatetime import java_time
from dfdatetime import ole_automation_date
from dfdatetime import posix_time
from dfdatetime import rfc2579_date_time
from dfdatetime import semantic_time
from dfdatetime import systemtime
from dfdatetime import time_elements
from dfdatetime import uuid_time
from dfdatetime import webkit_time
__version__ = '20211229'
| 29.678571 | 70 | 0.839952 |
3fcbaff4724b7b17a4f047879b9dde04a4754a7c | 1,267 | py | Python | common/data/selectionhelper.py | alainjungo/reliability-challenges-uncertainty | 21e86f6e2a5d2520b5767dce48bbcf2b11773788 | [
"MIT"
] | 56 | 2019-07-10T06:02:11.000Z | 2021-12-21T08:11:22.000Z | common/data/selectionhelper.py | alainjungo/reliability-challenges-uncertainty | 21e86f6e2a5d2520b5767dce48bbcf2b11773788 | [
"MIT"
] | 4 | 2019-09-26T08:51:58.000Z | 2021-06-08T20:27:53.000Z | common/data/selectionhelper.py | alainjungo/reliability-challenges-uncertainty | 21e86f6e2a5d2520b5767dce48bbcf2b11773788 | [
"MIT"
] | 8 | 2019-10-21T12:43:08.000Z | 2021-12-02T08:14:38.000Z | import logging
import json
import zlib
import os
import pymia.data.extraction as extr
| 28.155556 | 103 | 0.694554 |
3fce44aec3e71efcc655d5db43f3f8dd2acd2d0c | 1,191 | py | Python | src/main/TextLemmatizer.py | alschmut/code2semantics | af1daf0b8320b534344c5352ae972fb600e21e43 | [
"MIT"
] | 2 | 2020-02-26T22:50:38.000Z | 2020-10-29T10:46:10.000Z | src/main/TextLemmatizer.py | alschmut/linguistic-parser | af1daf0b8320b534344c5352ae972fb600e21e43 | [
"MIT"
] | null | null | null | src/main/TextLemmatizer.py | alschmut/linguistic-parser | af1daf0b8320b534344c5352ae972fb600e21e43 | [
"MIT"
] | null | null | null | import sys
from util.Timer import Timer
from util.FileOpener import FileOpener
from util.Logger import Logger
from util.PathExtractor import PathExtractor
from util.PathValidator import PathValidator
from service import SpacyModel
if __name__ == '__main__':
main()
| 28.357143 | 90 | 0.74979 |
3fce57d4964a0ce253965c723aa6fb69e1b90bf3 | 4,069 | py | Python | mat2py/core/graph2d.py | mat2py/mat2py | 2776fbe9ca4ad2aaa3eac6aa79d17747a9ec24a8 | [
"MIT"
] | null | null | null | mat2py/core/graph2d.py | mat2py/mat2py | 2776fbe9ca4ad2aaa3eac6aa79d17747a9ec24a8 | [
"MIT"
] | 37 | 2021-12-23T03:22:20.000Z | 2022-02-16T15:40:47.000Z | mat2py/core/graph2d.py | mat2py/mat2py | 2776fbe9ca4ad2aaa3eac6aa79d17747a9ec24a8 | [
"MIT"
] | 2 | 2022-01-23T07:59:10.000Z | 2022-02-03T09:15:54.000Z | # type: ignore
__all__ = [
"plotyy",
"figtoolset",
"getscribecontextmenu",
"getobj",
"scribeeventhandler",
"setscribecontextmenu",
"putdowntext",
"gtext",
"scribetextdlg",
"doresize",
"prepdrag",
"scriberestoresavefcns",
"zoom",
"scribeclearmode",
"domymenu",
"ylabel",
"getscribeobjectdata",
"enddrag",
"texlabel",
"setscribeobjectdata",
"polar",
"getcolumn",
"plotedit",
"semilogx",
"jpropeditutils",
"basicfitdatastat",
"plot",
"box",
"axis",
"title",
"loglog",
"dokeypress",
"semilogy",
"doclick",
"middrag",
"text",
"pan",
"subplot",
"xlabel",
"rbbox",
"grid",
"moveaxis",
"getorcreateobj",
]
from mat2py.common.backends import numpy as np
from ._internal import M
| 17.168776 | 54 | 0.673876 |
3fce96f02b43f368aab74e2c6e770ef0bfeee1f2 | 107 | py | Python | run.py | Arthurdb1999/dash-plotly-example | a54dce5e233aab75746a433665a4a958a77e4b58 | [
"MIT"
] | null | null | null | run.py | Arthurdb1999/dash-plotly-example | a54dce5e233aab75746a433665a4a958a77e4b58 | [
"MIT"
] | null | null | null | run.py | Arthurdb1999/dash-plotly-example | a54dce5e233aab75746a433665a4a958a77e4b58 | [
"MIT"
] | null | null | null | from app import app
if __name__ == '__main__':
app.run_server(port=5000, debug=True, host='localhost') | 26.75 | 59 | 0.719626 |
3fcf781a8eea0228e1eb54ee4f6768c262da5120 | 748 | py | Python | rasa/train_init.py | BarnikRay/chatbot | 4191f3064f6dae90b108ecf4e08130cda39ed370 | [
"MIT"
] | 1 | 2020-05-03T07:30:18.000Z | 2020-05-03T07:30:18.000Z | rasa/train_init.py | privykurura1/chatbot | 4191f3064f6dae90b108ecf4e08130cda39ed370 | [
"MIT"
] | 8 | 2019-12-04T23:20:56.000Z | 2022-02-10T07:47:03.000Z | rasa/train_init.py | privykurura1/chatbot | 4191f3064f6dae90b108ecf4e08130cda39ed370 | [
"MIT"
] | 1 | 2021-11-14T07:45:24.000Z | 2021-11-14T07:45:24.000Z | from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
import logging
from rasa_core.agent import Agent
from rasa_core.policies.keras_policy import KerasPolicy
from rasa_core.policies.memoization import MemoizationPolicy
if __name__ == '__main__':
logging.basicConfig(level="INFO")
run_faq()
| 28.769231 | 117 | 0.758021 |
3fcf9b0ce8ecad5b900f4b1d09dd5ed1b9a47ad4 | 6,123 | py | Python | examples/passage_ranking.py | skirdey/FARM | 2fc801d1d0c973cb36bc867907d4250d1084493b | [
"Apache-2.0"
] | 1,551 | 2019-07-17T18:21:08.000Z | 2022-03-24T18:09:07.000Z | examples/passage_ranking.py | skirdey/FARM | 2fc801d1d0c973cb36bc867907d4250d1084493b | [
"Apache-2.0"
] | 555 | 2019-07-23T09:00:54.000Z | 2022-03-31T15:31:06.000Z | examples/passage_ranking.py | skirdey/FARM | 2fc801d1d0c973cb36bc867907d4250d1084493b | [
"Apache-2.0"
] | 259 | 2019-07-22T08:12:01.000Z | 2022-03-26T09:41:00.000Z | # fmt: off
import logging
from pathlib import Path
from farm.data_handler.data_silo import DataSilo
from farm.data_handler.processor import RegressionProcessor, TextPairClassificationProcessor
from farm.experiment import initialize_optimizer
from farm.infer import Inferencer
from farm.modeling.adaptive_model import AdaptiveModel
from farm.modeling.language_model import LanguageModel
from farm.modeling.prediction_head import RegressionHead, TextClassificationHead
from farm.modeling.tokenization import Tokenizer
from farm.train import Trainer
from farm.utils import set_all_seeds, MLFlowLogger, initialize_device_settings, reformat_msmarco_train, reformat_msmarco_dev, write_msmarco_results
from farm.evaluation.msmarco_passage_farm import msmarco_evaluation
if __name__ == "__main__":
text_pair_classification()
# fmt: on
| 41.653061 | 162 | 0.644619 |
3fd06fe52f4de9eab41206707f2484a26a7e0deb | 2,723 | py | Python | extended_data_provider.py | NicolaOrritos/pricenet | 1667e564d48bf0021eb16dcd529017cd00643b03 | [
"MIT"
] | null | null | null | extended_data_provider.py | NicolaOrritos/pricenet | 1667e564d48bf0021eb16dcd529017cd00643b03 | [
"MIT"
] | null | null | null | extended_data_provider.py | NicolaOrritos/pricenet | 1667e564d48bf0021eb16dcd529017cd00643b03 | [
"MIT"
] | null | null | null | #!/usr/bin/env python
import numpy as np
import pandas as pd
import json
import pytz
def load():
""" Returns `X` and `y` arrays, the former being the training data and the former the targets. """
# Get data:
data = _get_data('coinbaseUSD_1-min_data_2014-12-01_to_2018-03-27.csv')
prices = _get_prices(data)
prices['day_of_week'] = prices['time'].dt.dayofweek
prices['day_of_month'] = prices['time'].dt.day
prices['day_of_month_scaled'] = prices['time'].dt.day / prices['time'].dt.days_in_month
prices['month'] = prices['time'].dt.month
prices['time_of_day'] = prices['time'].dt.time.apply(lambda time: str(time).split(':')[0]).astype(int)
return prices
| 28.072165 | 114 | 0.667646 |
3fd08ba20ef96dd8738b44a611be2e078eaec1a9 | 789 | py | Python | django_alive/tests/test_command.py | lincolnloop/django-alive | 608fd0a1d94f90f51a48a943348e9038f402a504 | [
"MIT"
] | 25 | 2018-08-22T12:42:14.000Z | 2022-01-18T19:03:05.000Z | django_alive/tests/test_command.py | lincolnloop/django-alive | 608fd0a1d94f90f51a48a943348e9038f402a504 | [
"MIT"
] | 7 | 2019-11-05T23:52:49.000Z | 2020-07-01T18:03:32.000Z | django_alive/tests/test_command.py | lincolnloop/django-alive | 608fd0a1d94f90f51a48a943348e9038f402a504 | [
"MIT"
] | null | null | null | import sys
from django.core.management import CommandError, call_command
from django.test import TestCase
from .side_effects import bad_database_check
try:
from unittest.mock import patch
except ImportError:
from mock import patch
# Python 2.7 support
if sys.version_info > (3, 0):
from io import StringIO
else:
from io import BytesIO as StringIO
| 24.65625 | 80 | 0.697085 |
3fd0cbcd561a8f1e4b20915840399b1fbffc54a0 | 2,579 | py | Python | main.py | fanicia/file-backup | f85d59a77d3168def9805e70b8a2a1dacf99c69d | [
"MIT"
] | null | null | null | main.py | fanicia/file-backup | f85d59a77d3168def9805e70b8a2a1dacf99c69d | [
"MIT"
] | null | null | null | main.py | fanicia/file-backup | f85d59a77d3168def9805e70b8a2a1dacf99c69d | [
"MIT"
] | null | null | null | from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler
# importing the modules
import os.path
import shutil
import datetime
import time
import re
# getting the current working directory
src_dir = os.getcwd()
# printing current directory
print("########## File-backup started ###########")
folder_to_track = f"{os.getcwd()}{os.path.sep}testsubject{os.path.sep}source"
destination = f"{os.getcwd()}{os.path.sep}testsubject{os.path.sep}destination"
print(f"{folder_to_track} --> {destination}")
event_handler = FileHandler()
observer = Observer()
observer.schedule(event_handler, folder_to_track, recursive=True)
observer.start()
try:
while True:
time.sleep(10)
except KeyboardInterrupt:
observer.stop()
observer.join()
print("########## File-backup ended ###########") | 32.2375 | 134 | 0.643273 |
3fd11ac451a6a98e1c44245e5db55488106cc6f1 | 24,449 | py | Python | tests/ignite/distributed/comp_models/test_native.py | Eunjnnn/ignite | 743089705b2b252aa5e2a0f310da3a8724d6711e | [
"BSD-3-Clause"
] | 4,119 | 2017-11-23T18:10:37.000Z | 2022-03-31T05:31:27.000Z | tests/ignite/distributed/comp_models/test_native.py | Eunjnnn/ignite | 743089705b2b252aa5e2a0f310da3a8724d6711e | [
"BSD-3-Clause"
] | 1,838 | 2017-11-24T11:19:25.000Z | 2022-03-31T09:08:18.000Z | tests/ignite/distributed/comp_models/test_native.py | Eunjnnn/ignite | 743089705b2b252aa5e2a0f310da3a8724d6711e | [
"BSD-3-Clause"
] | 691 | 2017-11-24T10:57:33.000Z | 2022-03-29T02:19:44.000Z | import os
import pytest
import torch
import torch.distributed as dist
from ignite.distributed.comp_models import has_native_dist_support
if not has_native_dist_support:
pytest.skip("Skip if no native dist support", allow_module_level=True)
else:
from ignite.distributed.comp_models.native import _expand_hostlist, _NativeDistModel, _setup_ddp_vars_from_slurm_env
# tests from https://github.com/LLNL/py-hostlist/blob/master/hostlist/unittest_hostlist.py
def _assert_model(model, true_conf):
assert model.device() == torch.device(true_conf["device"])
assert model.get_local_rank() == true_conf["local_rank"]
assert model.get_rank() == true_conf["rank"]
assert model.get_world_size() == true_conf["world_size"]
assert model.get_node_rank() == true_conf["node_index"]
assert model.get_nnodes() == true_conf["nnodes"]
assert model.get_nproc_per_node() == true_conf["nproc_per_node"]
def _test__native_dist_model_create_from_backend_no_dist(backend, true_device):
from datetime import timedelta
model = _NativeDistModel.create_from_backend(backend=backend, timeout=timedelta(seconds=20))
assert dist.is_available() and dist.is_initialized()
assert dist.get_backend() == backend
_assert_model(
model,
{
"device": true_device,
"local_rank": 0,
"rank": 0,
"world_size": 1,
"node_index": 0,
"nnodes": 1,
"nproc_per_node": 1,
},
)
model.finalize()
def _test__native_dist_model_create_from_backend_dist(init_method, local_rank, rank, world_size, backend, true_device):
import os
from datetime import timedelta
timeout = timedelta(seconds=20)
os.environ["RANK"] = f"{rank}"
assert "MASTER_ADDR" not in os.environ
assert "MASTER_PORT" not in os.environ
model = _NativeDistModel.create_from_backend(backend=backend, timeout=timeout, init_method=init_method)
assert dist.is_available() and dist.is_initialized()
assert dist.get_backend() == backend
with pytest.raises(RuntimeError, match=r"Can not create new distributed process group if default one is"):
_NativeDistModel.create_from_backend(backend=backend, timeout=timeout)
_assert_model(
model,
{
"device": true_device,
"local_rank": local_rank,
"rank": rank,
"world_size": world_size,
"node_index": 0,
"nnodes": 1,
"nproc_per_node": world_size,
},
)
if init_method is None:
assert model._init_method == "env://"
else:
assert model._init_method == init_method
model.finalize()
del os.environ["RANK"]
assert "MASTER_ADDR" not in os.environ
assert "MASTER_PORT" not in os.environ
assert "RANK" not in os.environ
def _test__native_dist_model_create_from_backend_slurm(local_rank, rank, world_size, backend, true_device):
import os
from datetime import timedelta
timeout = timedelta(seconds=20)
assert "MASTER_ADDR" not in os.environ
assert "MASTER_PORT" not in os.environ
del os.environ["WORLD_SIZE"]
del os.environ["LOCAL_RANK"]
os.environ["SLURM_JOB_ID"] = "15000"
os.environ["SLURM_PROCID"] = str(rank)
os.environ["SLURM_LOCALID"] = str(local_rank)
os.environ["SLURM_NTASKS"] = str(world_size)
os.environ["SLURM_JOB_NODELIST"] = "localhost"
os.environ["SLURM_JOB_NUM_NODES"] = "1"
model = _NativeDistModel.create_from_backend(backend=backend, timeout=timeout)
assert dist.is_available() and dist.is_initialized()
assert dist.get_backend() == backend
with pytest.raises(RuntimeError, match=r"Can not create new distributed process group if default one is"):
_NativeDistModel.create_from_backend(backend=backend, timeout=timeout)
_assert_model(
model,
{
"device": true_device,
"local_rank": local_rank,
"rank": rank,
"world_size": world_size,
"node_index": 0,
"nnodes": 1,
"nproc_per_node": world_size,
},
)
model.finalize()
del os.environ["SLURM_JOB_ID"]
del os.environ["SLURM_PROCID"]
del os.environ["SLURM_LOCALID"]
del os.environ["SLURM_NTASKS"]
del os.environ["SLURM_JOB_NODELIST"]
del os.environ["SLURM_JOB_NUM_NODES"]
assert "MASTER_ADDR" not in os.environ
assert "MASTER_PORT" not in os.environ
assert "RANK" not in os.environ
os.environ["WORLD_SIZE"] = str(world_size)
os.environ["LOCAL_RANK"] = str(local_rank)
def _test__native_dist_model_create_from_context_no_local_rank():
if "LOCAL_RANK" in os.environ:
del os.environ["LOCAL_RANK"]
from ignite.distributed.comp_models.base import ComputationModel
if ComputationModel._ext_local_rank is not None:
ComputationModel._ext_local_rank = None
with pytest.warns(UserWarning, match=r"Local rank information for native distributed setting will be initialized"):
_NativeDistModel.create_from_context()
def _test__native_dist_model_create_from_context_env_local_rank(true_conf):
import os
remove_lrank = False
if "LOCAL_RANK" not in os.environ:
os.environ["LOCAL_RANK"] = str(true_conf["local_rank"])
remove_lrank = True
model = _NativeDistModel.create_from_context()
_assert_model(model, true_conf)
if remove_lrank:
del os.environ["LOCAL_RANK"]
def _test_dist_spawn_fn(local_rank, backend, world_size, device):
from ignite.distributed.utils import _model
assert dist.is_available() and dist.is_initialized()
assert dist.get_backend() == backend
assert isinstance(_model, _NativeDistModel), f"{type(_model)} vs _NativeDistModel"
assert _model.get_local_rank() == local_rank
assert _model.get_world_size() == world_size
assert _model.device().type == torch.device(device).type
def _test__native_dist_model_spawn(backend, num_workers_per_machine, device, init_method=None, **spawn_kwargs):
_NativeDistModel.spawn(
_test_dist_spawn_fn,
args=(backend, num_workers_per_machine, device),
kwargs_dict={},
backend=backend,
nproc_per_node=num_workers_per_machine,
init_method=init_method,
**spawn_kwargs,
)
def test__setup_ddp_vars_from_slurm_env_bad_configs():
with pytest.raises(
RuntimeError, match=r"Environment variable defined for PyTorch Distributed context is inconsistent"
):
environ = {
"SLURM_PROCID": "3",
"SLURM_LOCALID": "1",
"SLURM_NTASKS": "4",
"SLURM_JOB_NUM_NODES": "2",
"SLURM_JOB_NODELIST": "c1, c2",
"SLURM_JOB_ID": "12345",
"MASTER_ADDR": "another-addr",
"MASTER_PORT": "12233",
"RANK": "1",
"LOCAL_RANK": "1",
"WORLD_SIZE": "2",
}
_setup_ddp_vars_from_slurm_env(environ)
with pytest.raises(
RuntimeError, match=r"Environment variable defined for PyTorch Distributed context is inconsistent"
):
environ = {
"SLURM_PROCID": "1",
"SLURM_LOCALID": "1",
"SLURM_NTASKS": "4",
"SLURM_JOB_NUM_NODES": "1",
"SLURM_JOB_NODELIST": "c1",
"SLURM_JOB_ID": "12345",
"MASTER_ADDR": "another-addr",
"MASTER_PORT": "12233",
"RANK": "1",
"LOCAL_RANK": "1",
"WORLD_SIZE": "2",
}
_setup_ddp_vars_from_slurm_env(environ)
with pytest.warns(UserWarning, match=r"We detected the following env variables"):
environ = {
"SLURM_PROCID": "3",
"SLURM_LOCALID": "1",
"SLURM_NTASKS": "4",
"SLURM_JOB_NUM_NODES": "2",
"SLURM_JOB_NODELIST": "c1, c2",
"SLURM_JOB_ID": "12345",
"RANK": "1",
"LOCAL_RANK": "1",
"WORLD_SIZE": "2",
}
_setup_ddp_vars_from_slurm_env(environ)
with pytest.raises(RuntimeError, match=r"No hostname detected in SLURM_JOB_NODELIST by ignite"):
environ = {
"SLURM_PROCID": "1",
"SLURM_LOCALID": "1",
"SLURM_NTASKS": "4",
"SLURM_JOB_NUM_NODES": "1",
"SLURM_JOB_NODELIST": "[]",
"SLURM_JOB_ID": "12345",
}
_setup_ddp_vars_from_slurm_env(environ)
| 36.491045 | 120 | 0.674261 |
3fd17ae0190fb0fd9c0e5b30d818a6da541ac894 | 1,114 | py | Python | src/popular_consistent_items/popular_consistent_items.py | masinag/popular_twitter_topics_mining | b86e05d7700cfca4dbf9db67cde50664d99e60f7 | [
"MIT"
] | null | null | null | src/popular_consistent_items/popular_consistent_items.py | masinag/popular_twitter_topics_mining | b86e05d7700cfca4dbf9db67cde50664d99e60f7 | [
"MIT"
] | null | null | null | src/popular_consistent_items/popular_consistent_items.py | masinag/popular_twitter_topics_mining | b86e05d7700cfca4dbf9db67cde50664d99e60f7 | [
"MIT"
] | null | null | null | import pandas as pd
from .apriori_opt import apriori as apriori_opt
from .apriori_basic import apriori as apriori_basic
# from memory_profiler import profile
from .utils import log
| 30.108108 | 83 | 0.653501 |