hexsha
stringlengths 40
40
| size
int64 6
1.04M
| ext
stringclasses 10
values | lang
stringclasses 1
value | max_stars_repo_path
stringlengths 4
247
| 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
368k
⌀ | 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 4
247
| 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 4
247
| 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.04M
| avg_line_length
float64 1.53
618k
| max_line_length
int64 1
1.02M
| alphanum_fraction
float64 0
1
| original_content
stringlengths 6
1.04M
| filtered:remove_non_ascii
int64 0
538k
| filtered:remove_decorators
int64 0
917k
| filtered:remove_async
int64 0
722k
| filtered:remove_classes
int64 -45
1M
| filtered:remove_generators
int64 0
814k
| filtered:remove_function_no_docstring
int64 -102
850k
| filtered:remove_class_no_docstring
int64 -3
5.46k
| filtered:remove_unused_imports
int64 -1,350
52.4k
| filtered:remove_delete_markers
int64 0
59.6k
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d7e636d3d64063bcb97ad001385d2875f365c42a
| 1,419
|
py
|
Python
|
effective_python/metaclass_property/confirm_subclass.py
|
ftconan/python3
|
eb63ba33960072f792ecce6db809866b38c402f8
|
[
"MIT"
] | 1
|
2018-12-19T22:07:56.000Z
|
2018-12-19T22:07:56.000Z
|
effective_python/metaclass_property/confirm_subclass.py
|
ftconan/python3
|
eb63ba33960072f792ecce6db809866b38c402f8
|
[
"MIT"
] | 12
|
2020-03-14T05:32:26.000Z
|
2022-03-12T00:08:49.000Z
|
effective_python/metaclass_property/confirm_subclass.py
|
ftconan/python3
|
eb63ba33960072f792ecce6db809866b38c402f8
|
[
"MIT"
] | 1
|
2018-12-19T22:08:00.000Z
|
2018-12-19T22:08:00.000Z
|
"""
@author: magician
@file: confirm_subclass.py
@date: 2020/1/14
"""
if __name__ == '__main__':
print('Before Class')
try:
except Exception as e:
print(e)
print('After Class')
| 18.192308
| 58
| 0.538407
|
"""
@author: magician
@file: confirm_subclass.py
@date: 2020/1/14
"""
class Meta(type):
"""
Meta
"""
def __new__(meta, name, bases, class_dict):
print(meta, name, bases, class_dict)
return type.__new__(meta, name, bases, class_dict)
class MyClass(object, metaclass=Meta):
"""
MyClass
"""
stuff = 3
def foo(self):
pass
class ValidatePolygon(type):
"""
ValidatePolygon
"""
def __new__(meta, name, bases, class_dict):
"""
Don't validate the abstract Polygon class
@param name:
@param bases:
@param class_dict:
"""
if bases != (object,):
if class_dict['sides'] < 3:
raise ValueError('Polygons need 3+ sides')
return type.__new__(meta, name, bases, class_dict)
class Polygon(object, metaclass=ValidatePolygon):
"""
Polygon
"""
# Specified by subclasses
sides = None
@classmethod
def interior_angles(cls):
return (cls.sides - 2) * 180
class Triangle(Polygon):
"""
Triangle
"""
sides = 3
if __name__ == '__main__':
print('Before Class')
try:
class Line(Polygon):
"""
Line
"""
print('Before sides')
sides = 1
print('After sides')
except Exception as e:
print(e)
print('After Class')
| 0
| 58
| 0
| 1,004
| 0
| 0
| 0
| 0
| 145
|
243cd76a122be32db8b6099cc8850f0875085453
| 2,309
|
py
|
Python
|
Geometry/ForwardCommonData/python/testForwardXML_cfi.py
|
PKUfudawei/cmssw
|
8fbb5ce74398269c8a32956d7c7943766770c093
|
[
"Apache-2.0"
] | 1
|
2021-11-30T16:24:46.000Z
|
2021-11-30T16:24:46.000Z
|
Geometry/ForwardCommonData/python/testForwardXML_cfi.py
|
PKUfudawei/cmssw
|
8fbb5ce74398269c8a32956d7c7943766770c093
|
[
"Apache-2.0"
] | 4
|
2021-11-29T13:57:56.000Z
|
2022-03-29T06:28:36.000Z
|
Geometry/ForwardCommonData/python/testForwardXML_cfi.py
|
PKUfudawei/cmssw
|
8fbb5ce74398269c8a32956d7c7943766770c093
|
[
"Apache-2.0"
] | 1
|
2022-02-27T06:12:26.000Z
|
2022-02-27T06:12:26.000Z
|
import FWCore.ParameterSet.Config as cms
XMLIdealGeometryESSource = cms.ESSource("XMLIdealGeometryESSource",
geomXMLFiles = cms.vstring(
'Geometry/CMSCommonData/data/materials/2021/v3/materials.xml',
'Geometry/CMSCommonData/data/rotations.xml',
'Geometry/CMSCommonData/data/extend/v3/cmsextent.xml',
'Geometry/CMSCommonData/data/cavernData/2021/v1/cavernData.xml',
'Geometry/CMSCommonData/data/cms/2021/v3/cms.xml',
'Geometry/CMSCommonData/data/cmsMother.xml',
'Geometry/CMSCommonData/data/eta3/etaMax.xml',
'Geometry/TrackerCommonData/data/pixfwdCommon.xml',
'Geometry/ForwardCommonData/data/pixfwd/2021/v1/pixfwd.xml',
'Geometry/HcalCommonData/data/average/hcalforwardmaterial.xml',
'Geometry/ForwardCommonData/data/forward/2021/v1/forward.xml',
'Geometry/ForwardCommonData/data/totemt2/2021/v1/totemt2.xml',
'Geometry/ForwardCommonData/data/forwardshield/2021/v1/forwardshield.xml',
'Geometry/ForwardCommonData/data/bhm.xml',
'Geometry/ForwardCommonData/data/pltbcm/2021/v1/pltbcm.xml',
'Geometry/ForwardCommonData/data/bcm1f/2021/v1/bcm1f.xml',
'Geometry/ForwardCommonData/data/plt/2021/v1/plt.xml',
'Geometry/ForwardSimData/data/bcm1fsens.xml',
'Geometry/ForwardCommonData/data/zdcmaterials/2021/v1/zdcmaterials.xml',
'Geometry/ForwardCommonData/data/lumimaterials.xml',
'Geometry/ForwardCommonData/data/zdcrotations.xml',
'Geometry/ForwardCommonData/data/lumirotations.xml',
'Geometry/ForwardCommonData/data/zdc/2021/v1/zdc.xml',
'Geometry/ForwardCommonData/data/zdclumi/2021/v2/zdclumi.xml',
'Geometry/ForwardCommonData/data/cmszdc.xml',
'Geometry/ForwardSimData/data/pltsens.xml',
'Geometry/ForwardSimData/data/bcm1fsens.xml',
'Geometry/ForwardSimData/data/totemsensT2/2021/totemsensT2.xml',
'Geometry/ForwardSimData/data/zdcsens.xml',
'Geometry/ForwardSimData/data/bhmProdCuts/2021/v1/bhmProdCuts.xml',
'Geometry/ForwardSimData/data/zdcProdCuts/2021/v2/zdcProdCuts.xml',
'Geometry/ForwardSimData/data/ForwardShieldProdCuts.xml',
'Geometry/CMSCommonData/data/FieldParameters.xml',
),
rootNodeName = cms.string('cms:OCMS')
)
| 56.317073
| 82
| 0.728021
|
import FWCore.ParameterSet.Config as cms
XMLIdealGeometryESSource = cms.ESSource("XMLIdealGeometryESSource",
geomXMLFiles = cms.vstring(
'Geometry/CMSCommonData/data/materials/2021/v3/materials.xml',
'Geometry/CMSCommonData/data/rotations.xml',
'Geometry/CMSCommonData/data/extend/v3/cmsextent.xml',
'Geometry/CMSCommonData/data/cavernData/2021/v1/cavernData.xml',
'Geometry/CMSCommonData/data/cms/2021/v3/cms.xml',
'Geometry/CMSCommonData/data/cmsMother.xml',
'Geometry/CMSCommonData/data/eta3/etaMax.xml',
'Geometry/TrackerCommonData/data/pixfwdCommon.xml',
'Geometry/ForwardCommonData/data/pixfwd/2021/v1/pixfwd.xml',
'Geometry/HcalCommonData/data/average/hcalforwardmaterial.xml',
'Geometry/ForwardCommonData/data/forward/2021/v1/forward.xml',
'Geometry/ForwardCommonData/data/totemt2/2021/v1/totemt2.xml',
'Geometry/ForwardCommonData/data/forwardshield/2021/v1/forwardshield.xml',
'Geometry/ForwardCommonData/data/bhm.xml',
'Geometry/ForwardCommonData/data/pltbcm/2021/v1/pltbcm.xml',
'Geometry/ForwardCommonData/data/bcm1f/2021/v1/bcm1f.xml',
'Geometry/ForwardCommonData/data/plt/2021/v1/plt.xml',
'Geometry/ForwardSimData/data/bcm1fsens.xml',
'Geometry/ForwardCommonData/data/zdcmaterials/2021/v1/zdcmaterials.xml',
'Geometry/ForwardCommonData/data/lumimaterials.xml',
'Geometry/ForwardCommonData/data/zdcrotations.xml',
'Geometry/ForwardCommonData/data/lumirotations.xml',
'Geometry/ForwardCommonData/data/zdc/2021/v1/zdc.xml',
'Geometry/ForwardCommonData/data/zdclumi/2021/v2/zdclumi.xml',
'Geometry/ForwardCommonData/data/cmszdc.xml',
'Geometry/ForwardSimData/data/pltsens.xml',
'Geometry/ForwardSimData/data/bcm1fsens.xml',
'Geometry/ForwardSimData/data/totemsensT2/2021/totemsensT2.xml',
'Geometry/ForwardSimData/data/zdcsens.xml',
'Geometry/ForwardSimData/data/bhmProdCuts/2021/v1/bhmProdCuts.xml',
'Geometry/ForwardSimData/data/zdcProdCuts/2021/v2/zdcProdCuts.xml',
'Geometry/ForwardSimData/data/ForwardShieldProdCuts.xml',
'Geometry/CMSCommonData/data/FieldParameters.xml',
),
rootNodeName = cms.string('cms:OCMS')
)
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
dbeafa580c18ce1f9935d21c5c0dd724455a6ada
| 12,269
|
py
|
Python
|
wbb/utils/dbfunctions.py
|
sppidy/WilliamButcherBot
|
8cbd1593dd44a5384f7b1c4d630aa65271282e3e
|
[
"MIT"
] | null | null | null |
wbb/utils/dbfunctions.py
|
sppidy/WilliamButcherBot
|
8cbd1593dd44a5384f7b1c4d630aa65271282e3e
|
[
"MIT"
] | null | null | null |
wbb/utils/dbfunctions.py
|
sppidy/WilliamButcherBot
|
8cbd1593dd44a5384f7b1c4d630aa65271282e3e
|
[
"MIT"
] | null | null | null |
"""
MIT License
Copyright (c) 2021 TheHamkerCat
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
from wbb import db
notesdb = db.notes
filtersdb = db.filters
warnsdb = db.warns
karmadb = db.karma
chatsdb = db.chats
gbansdb = db.gban
coupledb = db.couple
captchadb = db.captcha
antiservicedb = db.antiservice
pmpermitdb = db.pmpermit
""" Notes functions """
""" Filters funcions """
""" Warn functions """
""" Karma functions """
""" Chats log functions """
""" Gban functions """
# Couple Chooser
# Captcha
"""Anti Service System"""
""" PM PERMIT """
| 24.735887
| 78
| 0.615291
|
"""
MIT License
Copyright (c) 2021 TheHamkerCat
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
from wbb import db
from typing import Dict, List, Union
notesdb = db.notes
filtersdb = db.filters
warnsdb = db.warns
karmadb = db.karma
chatsdb = db.chats
gbansdb = db.gban
coupledb = db.couple
captchadb = db.captcha
antiservicedb = db.antiservice
pmpermitdb = db.pmpermit
""" Notes functions """
async def get_notes_count() -> dict:
chats = notesdb.find({"chat_id": {"$lt": 0}})
if not chats:
return {}
chats_count = 0
notes_count = 0
for chat in await chats.to_list(length=1000000000):
notes_name = await get_note_names(chat['chat_id'])
notes_count += len(notes_name)
chats_count += 1
return {
"chats_count": chats_count,
"notes_count": notes_count
}
async def _get_notes(chat_id: int) -> Dict[str, int]:
_notes = await notesdb.find_one({"chat_id": chat_id})
if _notes:
_notes = _notes["notes"]
else:
_notes = {}
return _notes
async def get_note_names(chat_id: int) -> List[str]:
_notes = []
for note in await _get_notes(chat_id):
_notes.append(note)
return _notes
async def get_note(chat_id: int, name: str) -> Union[bool, dict]:
name = name.lower().strip()
_notes = await _get_notes(chat_id)
if name in _notes:
return _notes[name]
else:
return False
async def save_note(chat_id: int, name: str, note: dict):
name = name.lower().strip()
_notes = await _get_notes(chat_id)
_notes[name] = note
await notesdb.update_one(
{"chat_id": chat_id},
{
"$set": {
"notes": _notes
}
},
upsert=True
)
async def delete_note(chat_id: int, name: str) -> bool:
notesd = await _get_notes(chat_id)
name = name.lower().strip()
if name in notesd:
del notesd[name]
await notesdb.update_one(
{"chat_id": chat_id},
{
"$set": {
"notes": notesd
}
},
upsert=True
)
return True
return False
""" Filters funcions """
async def get_filters_count() -> dict:
chats = filtersdb.find({"chat_id": {"$lt": 0}})
if not chats:
return {}
chats_count = 0
filters_count = 0
for chat in await chats.to_list(length=1000000000):
filters_name = await get_filters_names(chat['chat_id'])
filters_count += len(filters_name)
chats_count += 1
return {
"chats_count": chats_count,
"filters_count": filters_count
}
async def _get_filters(chat_id: int) -> Dict[str, int]:
_filters = await filtersdb.find_one({"chat_id": chat_id})
if _filters:
_filters = _filters['filters']
else:
_filters = {}
return _filters
async def get_filters_names(chat_id: int) -> List[str]:
_filters = []
for _filter in await _get_filters(chat_id):
_filters.append(_filter)
return _filters
async def get_filter(chat_id: int, name: str) -> Union[bool, dict]:
name = name.lower().strip()
_filters = await _get_filters(chat_id)
if name in _filters:
return _filters[name]
else:
return False
async def save_filter(chat_id: int, name: str, _filter: dict):
name = name.lower().strip()
_filters = await _get_filters(chat_id)
_filters[name] = _filter
await filtersdb.update_one(
{"chat_id": chat_id},
{
"$set": {
"filters": _filters
}
},
upsert=True
)
async def delete_filter(chat_id: int, name: str) -> bool:
filtersd = await _get_filters(chat_id)
name = name.lower().strip()
if name in filtersd:
del filtersd[name]
await filtersdb.update_one(
{"chat_id": chat_id},
{
"$set": {
"filters": filtersd
}
},
upsert=True
)
return True
return False
""" Warn functions """
async def int_to_alpha(user_id: int) -> str:
alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j"]
text = ""
user_id = str(user_id)
for i in user_id:
text += alphabet[int(i)]
return text
async def alpha_to_int(user_id_alphabet: str) -> int:
alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j"]
user_id = ""
for i in user_id_alphabet:
index = alphabet.index(i)
user_id += str(index)
user_id = int(user_id)
return user_id
async def get_warns_count() -> dict:
chats = warnsdb.find({"chat_id": {"$lt": 0}})
if not chats:
return {}
chats_count = 0
warns_count = 0
for chat in await chats.to_list(length=100000000):
for user in chat['warns']:
warns_count += chat['warns'][user]['warns']
chats_count += 1
return {
"chats_count": chats_count,
"warns_count": warns_count
}
async def get_warns(chat_id: int) -> Dict[str, int]:
warns = await warnsdb.find_one({"chat_id": chat_id})
if warns:
warns = warns['warns']
else:
warns = {}
return warns
async def get_warn(chat_id: int, name: str) -> Union[bool, dict]:
name = name.lower().strip()
warns = await get_warns(chat_id)
if name in warns:
return warns[name]
async def add_warn(chat_id: int, name: str, warn: dict):
name = name.lower().strip()
warns = await get_warns(chat_id)
warns[name] = warn
await warnsdb.update_one(
{"chat_id": chat_id},
{
"$set": {
"warns": warns
}
},
upsert=True
)
async def remove_warns(chat_id: int, name: str) -> bool:
warnsd = await get_warns(chat_id)
name = name.lower().strip()
if name in warnsd:
del warnsd[name]
await warnsdb.update_one(
{"chat_id": chat_id},
{
"$set": {
"warns": warnsd
}
},
upsert=True
)
return True
return False
""" Karma functions """
async def get_karmas_count() -> dict:
chats = karmadb.find({"chat_id": {"$lt": 0}})
if not chats:
return {}
chats_count = 0
karmas_count = 0
for chat in await chats.to_list(length=1000000):
for i in chat['karma']:
karmas_count += chat['karma'][i]['karma']
chats_count += 1
return {
"chats_count": chats_count,
"karmas_count": karmas_count
}
async def get_karmas(chat_id: int) -> Dict[str, int]:
karma = await karmadb.find_one({"chat_id": chat_id})
if karma:
karma = karma['karma']
else:
karma = {}
return karma
async def get_karma(chat_id: int, name: str) -> Union[bool, dict]:
name = name.lower().strip()
karmas = await get_karmas(chat_id)
if name in karmas:
return karmas[name]
async def update_karma(chat_id: int, name: str, karma: dict):
name = name.lower().strip()
karmas = await get_karmas(chat_id)
karmas[name] = karma
await karmadb.update_one(
{"chat_id": chat_id},
{
"$set": {
"karma": karmas
}
},
upsert=True
)
""" Chats log functions """
async def is_served_chat(chat_id: int) -> bool:
chat = await chatsdb.find_one({"chat_id": chat_id})
if not chat:
return False
return True
async def get_served_chats() -> list:
chats = chatsdb.find({"chat_id": {'$lt': 0}})
if not chats:
return []
chats_list = []
for chat in await chats.to_list(length=1000000000):
chats_list.append(chat)
return chats_list
async def add_served_chat(chat_id: int):
is_served = await is_served_chat(chat_id)
if is_served:
return
return await chatsdb.insert_one({"chat_id": chat_id})
async def remove_served_chat(chat_id: int):
is_served = await is_served_chat(chat_id)
if not is_served:
return
return await chatsdb.delete_one({"chat_id": chat_id})
""" Gban functions """
async def get_gbans_count() -> int:
users = gbansdb.find({"user_id": {"$gt": 0}})
users = await users.to_list(length=100000)
return len(users)
async def is_gbanned_user(user_id: int) -> bool:
user = await gbansdb.find_one({"user_id": user_id})
if not user:
return False
return True
async def add_gban_user(user_id: int):
is_gbanned = await is_gbanned_user(user_id)
if is_gbanned:
return
return await gbansdb.insert_one({"user_id": user_id})
async def remove_gban_user(user_id: int):
is_gbanned = await is_gbanned_user(user_id)
if not is_gbanned:
return
return await gbansdb.delete_one({"user_id": user_id})
# Couple Chooser
async def _get_lovers(chat_id: int):
lovers = await coupledb.find_one({"chat_id": chat_id})
if lovers:
lovers = lovers["couple"]
else:
lovers = {}
return lovers
async def get_couple(chat_id: int, date: str):
lovers = await _get_lovers(chat_id)
if date in lovers:
return lovers[date]
else:
return False
async def save_couple(chat_id: int, date: str, couple: dict):
lovers = await _get_lovers(chat_id)
lovers[date] = couple
await coupledb.update_one(
{"chat_id": chat_id},
{
"$set": {
"couple": lovers
}
},
upsert=True
)
# Captcha
async def is_captcha_on(chat_id: int) -> bool:
chat = await captchadb.find_one({"chat_id": chat_id})
if not chat:
return True
return False
async def captcha_on(chat_id: int):
is_captcha = await is_captcha_on(chat_id)
if is_captcha:
return
return await captchadb.delete_one({"chat_id": chat_id})
async def captcha_off(chat_id: int):
is_captcha = await is_captcha_on(chat_id)
if not is_captcha:
return
return await captchadb.insert_one({"chat_id": chat_id})
"""Anti Service System"""
async def is_antiservice_on(chat_id: int) -> bool:
chat = await antiservicedb.find_one({"chat_id": chat_id})
if not chat:
return True
return False
async def antiservice_on(chat_id: int):
is_antiservice = await is_antiservice_on(chat_id)
if is_antiservice:
return
return await antiservicedb.delete_one({"chat_id": chat_id})
async def antiservice_off(chat_id: int):
is_antiservice = await is_antiservice_on(chat_id)
if not is_antiservice:
return
return await antiservicedb.insert_one({"chat_id": chat_id})
""" PM PERMIT """
async def is_pmpermit_approved(user_id: int) -> bool:
user = await pmpermitdb.find_one({"user_id": user_id})
if not user:
return False
return True
async def approve_pmpermit(user_id: int):
is_pmpermit = await is_pmpermit_approved(user_id)
if is_pmpermit:
return
return await pmpermitdb.insert_one({"user_id": user_id})
async def disapprove_pmpermit(user_id: int):
is_pmpermit = await is_pmpermit_approved(user_id)
if not is_pmpermit:
return
return await pmpermitdb.delete_one({"user_id": user_id})
| 0
| 0
| 9,652
| 0
| 0
| 0
| 0
| 15
| 1,011
|
49de79cb6c84fe14e0275dff4c478a1045fd3ede
| 1,308
|
py
|
Python
|
explicalib/calibration/evaluation/diagrams/discrete_diagrams.py
|
euranova/estimating_eces
|
9bfa81dd7a39ebe069c5b11b8e7a9bf9017e9350
|
[
"MIT"
] | 2
|
2021-11-30T18:44:11.000Z
|
2021-11-30T18:44:19.000Z
|
explicalib/calibration/evaluation/diagrams/discrete_diagrams.py
|
euranova/estimating_eces
|
9bfa81dd7a39ebe069c5b11b8e7a9bf9017e9350
|
[
"MIT"
] | null | null | null |
explicalib/calibration/evaluation/diagrams/discrete_diagrams.py
|
euranova/estimating_eces
|
9bfa81dd7a39ebe069c5b11b8e7a9bf9017e9350
|
[
"MIT"
] | null | null | null |
# -*- coding: utf-8 -*-
"""
@author: nicolas.posocco
"""
| 39.636364
| 113
| 0.703364
|
# -*- coding: utf-8 -*-
"""
@author: nicolas.posocco
"""
from sklearn.calibration import calibration_curve
import numpy as np
def reliability_diagram(label_of_interest, scores, n_bins):
# label_of_interest
assert type(label_of_interest) is np.ndarray, \
"label_of_interest should be an np.ndarray, not a {}.".format(type(label_of_interest))
assert label_of_interest.ndim == 1, \
"label_of_interest should be a 1D array, not a {}D one.".format(label_of_interest.ndim)
assert label_of_interest.shape[0] > 0, \
"label_of_interest can't be an empty array."
# scores
assert type(scores) is np.ndarray, \
"scores should be an np.ndarray, not a {}.".format(type(scores))
assert scores.ndim == 1, \
"scores should be a 1D array, not a {}D one.".format(scores.ndim)
assert scores.shape == label_of_interest.shape, \
"scores and label_of_interest should share a common shape, here they are respectively {} and {}.".format(
scores.shape, label_of_interest.shape)
# Calculation via sklearn
fraction_of_positives, mean_predicted_value = calibration_curve(label_of_interest, scores, n_bins=n_bins)
return {"fraction_of_positives": fraction_of_positives,
"mean_predicted_value": mean_predicted_value}
| 0
| 0
| 0
| 0
| 0
| 1,157
| 0
| 25
| 68
|
12561c7b297f03c8a4ed8c22313832ae6dd69b64
| 815
|
py
|
Python
|
src/aoikfiletypeasso/sac.py
|
AoiKuiyuyou/AoikWinFileTypeAsso
|
294570f729660b7f374ec6c128c9644b8f0eace0
|
[
"MIT"
] | 3
|
2016-09-24T16:01:05.000Z
|
2020-06-16T07:40:14.000Z
|
src/aoikfiletypeasso/sac.py
|
AoiKuiyuyou/AoikFileTypeAsso
|
294570f729660b7f374ec6c128c9644b8f0eace0
|
[
"MIT"
] | null | null | null |
src/aoikfiletypeasso/sac.py
|
AoiKuiyuyou/AoikFileTypeAsso
|
294570f729660b7f374ec6c128c9644b8f0eace0
|
[
"MIT"
] | null | null | null |
# coding: utf-8
#
# File name "sac" means "SHCNE_ASSOCCHANGED" used at 4xc5k9H.
#
from __future__ import absolute_import
import sys
#/
if __name__ == '__main__':
sys.exit(main())
| 19.404762
| 89
| 0.650307
|
# coding: utf-8
#
# File name "sac" means "SHCNE_ASSOCCHANGED" used at 4xc5k9H.
#
from __future__ import absolute_import
import sys
#/
def main():
#/
sys.stderr.write('#/ Send shell change notification, to make changes take effect.\n')
try:
import win32com.shell.shell as shell
import win32com.shell.shellcon as shellcon
except ImportError:
sys.stderr.write(r"""Error:
Importing |win32com| failed.
Please install |pywin32|.
Download is available at http://sourceforge.net/projects/pywin32/files/pywin32/
""")
return 1
#/ 4xc5k9H
shell.SHChangeNotify(
shellcon.SHCNE_ASSOCCHANGED,
shellcon.SHCNF_IDLIST,
None,
None,
)
sys.stderr.write('OK\n')
#/
return 0
if __name__ == '__main__':
sys.exit(main())
| 0
| 0
| 0
| 0
| 0
| 606
| 0
| 0
| 22
|
ccf3e84481404af3c4b3cd4070a56149409c72b0
| 326
|
py
|
Python
|
ReadingGauges/ComputerSide/GrabberGaugesOutput_python3/ScriptRunGrabber.py
|
jerabaul29/PaddleAndUltrasonicGauges
|
5c6ba80ddfd44190eb21d5c61979ac802a54cb99
|
[
"MIT"
] | 2
|
2021-02-03T12:55:57.000Z
|
2021-02-11T07:07:06.000Z
|
ReadingGauges/ComputerSide/GrabberGaugesOutput_python3/ScriptRunGrabber.py
|
jerabaul29/PaddleAndUltrasonicGauges
|
5c6ba80ddfd44190eb21d5c61979ac802a54cb99
|
[
"MIT"
] | null | null | null |
ReadingGauges/ComputerSide/GrabberGaugesOutput_python3/ScriptRunGrabber.py
|
jerabaul29/PaddleAndUltrasonicGauges
|
5c6ba80ddfd44190eb21d5c61979ac802a54cb99
|
[
"MIT"
] | null | null | null |
import Grabber
gauge_grabber = Grabber.grabb_serial_values()
gauge_grabber.init()
gauge_grabber.grabb(10)
gauge_grabber.convert_grabbed_to_numpy()
gauge_grabber.plot_grabbed_data()
gauge_grabber.clean_numpy_dict()
gauge_grabber.save_cleaned_dict_numpy('test_saving')
gauge_grabber.save_cleaned_dict_numpy_csv('test_saving')
| 27.166667
| 56
| 0.868098
|
import Grabber
gauge_grabber = Grabber.grabb_serial_values()
gauge_grabber.init()
gauge_grabber.grabb(10)
gauge_grabber.convert_grabbed_to_numpy()
gauge_grabber.plot_grabbed_data()
gauge_grabber.clean_numpy_dict()
gauge_grabber.save_cleaned_dict_numpy('test_saving')
gauge_grabber.save_cleaned_dict_numpy_csv('test_saving')
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
cc20e3149a11c3be4fc61095e2693ba607d9e501
| 5,488
|
py
|
Python
|
src/stdout.py
|
X-EcutiOnner/fileobj
|
7e4120759450bbdd1eee4ec26c8a757a8af48093
|
[
"BSD-2-Clause"
] | 17
|
2015-05-23T11:09:46.000Z
|
2021-12-10T14:28:01.000Z
|
src/stdout.py
|
X-EcutiOnner/fileobj
|
7e4120759450bbdd1eee4ec26c8a757a8af48093
|
[
"BSD-2-Clause"
] | 3
|
2015-03-23T04:35:25.000Z
|
2017-09-15T07:12:15.000Z
|
src/stdout.py
|
X-EcutiOnner/fileobj
|
7e4120759450bbdd1eee4ec26c8a757a8af48093
|
[
"BSD-2-Clause"
] | 2
|
2016-01-07T00:38:13.000Z
|
2020-12-02T08:27:28.000Z
|
# Copyright (c) 2014, Tomohiro Kusumi
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Error = Exception
_count = 0
A_NONE = 0
A_BOLD = 1
A_REVERSE = 2
A_STANDOUT = 4
A_UNDERLINE = 8
A_COLOR_FB = 0
A_COLOR_CURRENT = 0
A_COLOR_ZERO = 0
A_COLOR_FF = 0
A_COLOR_PRINT = 0
A_COLOR_DEFAULT = 0
A_COLOR_VISUAL = 0
A_COLOR_OFFSET = 0
BUTTON1_CLICKED = 0
BUTTON1_PRESSED = 0
BUTTON1_RELEASED = 0
BUTTON1_DOUBLE_CLICKED = 0
BUTTON1_TRIPLE_CLICKED = 0
BUTTON2_CLICKED = 0
BUTTON2_PRESSED = 0
BUTTON2_RELEASED = 0
BUTTON2_DOUBLE_CLICKED = 0
BUTTON2_TRIPLE_CLICKED = 0
BUTTON3_CLICKED = 0
BUTTON3_PRESSED = 0
BUTTON3_RELEASED = 0
BUTTON3_DOUBLE_CLICKED = 0
BUTTON3_TRIPLE_CLICKED = 0
BUTTON4_CLICKED = 0
BUTTON4_PRESSED = 0
BUTTON4_RELEASED = 0
BUTTON4_DOUBLE_CLICKED = 0
BUTTON4_TRIPLE_CLICKED = 0
REPORT_MOUSE_POSITION = 0
# APIs must be compatible with
# https://docs.python.org/3/library/curses.html
| 24.5
| 81
| 0.647959
|
# Copyright (c) 2014, Tomohiro Kusumi
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import sys
from . import filebytes
from . import ncurses
from . import setting
from . import terminal
from . import util
Error = Exception
_count = 0
A_NONE = 0
A_BOLD = 1
A_REVERSE = 2
A_STANDOUT = 4
A_UNDERLINE = 8
A_COLOR_FB = 0
A_COLOR_CURRENT = 0
A_COLOR_ZERO = 0
A_COLOR_FF = 0
A_COLOR_PRINT = 0
A_COLOR_DEFAULT = 0
A_COLOR_VISUAL = 0
A_COLOR_OFFSET = 0
BUTTON1_CLICKED = 0
BUTTON1_PRESSED = 0
BUTTON1_RELEASED = 0
BUTTON1_DOUBLE_CLICKED = 0
BUTTON1_TRIPLE_CLICKED = 0
BUTTON2_CLICKED = 0
BUTTON2_PRESSED = 0
BUTTON2_RELEASED = 0
BUTTON2_DOUBLE_CLICKED = 0
BUTTON2_TRIPLE_CLICKED = 0
BUTTON3_CLICKED = 0
BUTTON3_PRESSED = 0
BUTTON3_RELEASED = 0
BUTTON3_DOUBLE_CLICKED = 0
BUTTON3_TRIPLE_CLICKED = 0
BUTTON4_CLICKED = 0
BUTTON4_PRESSED = 0
BUTTON4_RELEASED = 0
BUTTON4_DOUBLE_CLICKED = 0
BUTTON4_TRIPLE_CLICKED = 0
REPORT_MOUSE_POSITION = 0
def init():
from . import screen
return newwin(screen.get_size_y(), screen.get_size_x(), 0, 0), \
A_NONE, A_BOLD, A_REVERSE, A_STANDOUT, A_UNDERLINE, \
A_COLOR_FB, A_COLOR_CURRENT, A_COLOR_ZERO, A_COLOR_FF, A_COLOR_PRINT, \
A_COLOR_DEFAULT, A_COLOR_VISUAL, A_COLOR_OFFSET
def cleanup():
ncurses.cleanup_windows()
def doupdate():
return
def flash():
return
def newwin(leny, lenx, begy, begx, ref=None):
scr = _window(leny, lenx, begy, begx, ref)
scr.init()
return scr
def get_size():
return -1, -1
def is_resize_supported():
return False
def has_chgat():
return True
def has_color():
return False
def can_change_color():
return False
def set_color_attr(s):
return -1
def use_color():
return False
def use_mouse():
return False
def iter_color_name():
yield "black"
yield "white"
def getmouse():
return -1, -1, -1, -1, 0
def get_mouse_event_name(bstate):
return ""
# APIs must be compatible with
# https://docs.python.org/3/library/curses.html
class _window (ncurses.SeqWindow):
def __init__(self, leny, lenx, begy, begx, ref):
self.__siz = util.Pair(leny, lenx)
self.__pos = util.Pair(begy, begx)
self.__ref = ref
def init(self):
global _count
super(_window, self).init()
if _count == 0:
assert terminal.init_getch(sys.stdin) != -1
_count += 1
def cleanup(self):
global _count
super(_window, self).cleanup()
_count -= 1
if _count == 0:
assert terminal.cleanup_getch(sys.stdin) != -1
def __mkstr(self, y, x, s):
return "{0} ({1:2}, {2:3}) {3}".format(repr(self.__ref), y, x,
filebytes.str(s))
def keypad(self, yes):
return
def idlok(self, yes):
return
def scrollok(self, flag):
return
def bkgd(self, ch, attr=A_NONE): # attr must be optional
return
def addstr(self, y, x, s, attr=A_NONE): # attr must be optional
if setting.stdout_verbose > 0:
util.printf(self.__mkstr(y, x, s))
if setting.stdout_verbose > 2:
for x in util.iter_traceback():
util.printf(x)
def clrtoeol(self):
return
def erase(self):
return
def clear(self):
return
def noutrefresh(self):
return
def refresh(self):
return
def move(self, y, x):
return
def mvwin(self, y, x):
self.__pos.set(y, x)
def resize(self, y, x):
self.__siz.set(y, x)
def box(self):
return
def border(self, ls, rs, ts, bs, tl, tr, bl, br):
return
def chgat(self, y, x, num, attr):
return
def getmaxyx(self):
return self.__siz.y, self.__siz.x
def getbegyx(self):
return self.__pos.y, self.__pos.x
def _getch(self):
return terminal.getch(sys.stdin)
def preprocess(self, x, l):
if setting.stdout_verbose > 1:
if util.isprint(x):
util.printf("{0} {1}".format(x, chr(x)))
else:
util.printf(x)
| 0
| 0
| 0
| 2,075
| 37
| 577
| 0
| -11
| 524
|
02283df57f4319a703ace0e80322454df4dd0614
| 3,493
|
py
|
Python
|
software/permacam_processing/image_quality_process.py
|
lab11/Task2
|
3c3451599dd303cd1e2469e5b9e36e1b4ca49fa6
|
[
"Apache-2.0"
] | 21
|
2018-08-29T18:58:26.000Z
|
2022-01-12T09:08:04.000Z
|
software/permacam_processing/image_quality_process.py
|
lab11/permamote
|
3c3451599dd303cd1e2469e5b9e36e1b4ca49fa6
|
[
"Apache-2.0"
] | 9
|
2017-11-08T03:22:58.000Z
|
2020-05-02T18:23:12.000Z
|
software/permacam_processing/image_quality_process.py
|
lab11/Task2
|
3c3451599dd303cd1e2469e5b9e36e1b4ca49fa6
|
[
"Apache-2.0"
] | 8
|
2018-10-28T23:44:23.000Z
|
2021-07-11T05:18:02.000Z
|
#!/usr/bin/env python3
import argparse
from glob import glob
from skimage import exposure
from PIL import Image
import colour
import numpy as np
import pandas as pd
import os
from colour_demosaicing import (demosaicing_CFA_Bayer_Menon2007)
cctf_encoding = colour.cctf_encoding
parser = argparse.ArgumentParser(description='Process quality series of Permacam images and generate error measurements')
parser.add_argument('save_dir', help='Optional save detected images to file in dir')
args = parser.parse_args()
jpegs = glob(args.save_dir + '/image_mono*.jpeg')
raws = glob(args.save_dir + '/image_raw*.npy')
manifest_fname = args.save_dir + '/manifest.pkl'
data = None
if not os.path.isfile(manifest_fname) :
print('Generating')
data = {}
data['filename'] = []
data['id'] = []
data['quality'] = []
data['size'] = []
data['raw'] = []
data['time'] = []
data['image_array'] = []
d = None
fname = None
for f in jpegs:
data['filename'].append(f)
i = int(f.split('_')[-1].split('.')[0])
data['id'].append(i)
q = int(f.split('_')[2])
data['quality'].append(q)
data['size'].append(os.path.getsize(f))
data['raw'].append(0)
time_fname = args.save_dir + '/time_to_send_' + str(q) + '_' + str(i) + '.txt'
time_to_send = 0
with open(time_fname, 'r') as tf:
time_to_send = float(tf.read());
data['time'].append(time_to_send)
jpeg = Image.open(f)
d = np.array(jpeg.getdata()).reshape(jpeg.size[0], jpeg.size[1]) / 0xff
d = cctf_encoding(demosaicing_CFA_Bayer_Menon2007(d, 'BGGR'))
d = exposure.rescale_intensity(d, (0,1))
d = exposure.adjust_gamma(d, 1.5)
#d = (d * 255).astype(np.uint8)
fname = f.replace('mono', 'jpeg_demosaiced').replace('.jpeg', '.npy')
np.save(fname, d)
data['image_array'].append(fname)
result = Image.fromarray((d * 255).astype(np.uint8))
result.save(fname.replace('npy','jpeg'), format='JPEG')
for f in raws:
data['filename'].append(f)
i = int(f.split('_')[-1].split('.')[0])
data['id'].append(i)
data['quality'].append(100)
data['raw'].append(1)
data['size'].append(d.shape[0] * d.shape[1])
time_fname = args.save_dir + '/time_to_send_0_' + str(i) + '.txt'
time_to_send = 0
with open(time_fname, 'r') as tf:
time_to_send = float(tf.read());
data['time'].append(time_to_send)
d = np.load(f) / float(0xff)
d = cctf_encoding(demosaicing_CFA_Bayer_Menon2007(d, 'BGGR'))
d = exposure.rescale_intensity(d, (0,1))
d = exposure.adjust_gamma(d, 1.5)
#d = (d * 255).astype(np.uint8)
fname = f.replace('raw', 'demosaiced')
np.save(fname, d)
data['image_array'].append(fname)
result = Image.fromarray((d * 255).astype(np.uint8))
result.save(fname.replace('npy','jpeg'), format='JPEG')
data = pd.DataFrame(data)
qualities = set(np.unique(data['quality']).flatten())
for i in data['id']:
avail_qual = set(data[data['id'] == i]['quality'])
if (avail_qual != qualities):
data = data[data['id'] != i]
data.to_pickle(manifest_fname)
else:
data = pd.read_pickle(manifest_fname)
print(data)
print(len(np.unique(data['id'])))
| 34.245098
| 121
| 0.604924
|
#!/usr/bin/env python3
import argparse
from glob import glob
from skimage import exposure
from PIL import Image
import colour
import numpy as np
import pandas as pd
import os
from colour_demosaicing import (
demosaicing_CFA_Bayer_bilinear,
demosaicing_CFA_Bayer_Malvar2004,
demosaicing_CFA_Bayer_Menon2007,
mosaicing_CFA_Bayer)
cctf_encoding = colour.cctf_encoding
parser = argparse.ArgumentParser(description='Process quality series of Permacam images and generate error measurements')
parser.add_argument('save_dir', help='Optional save detected images to file in dir')
args = parser.parse_args()
jpegs = glob(args.save_dir + '/image_mono*.jpeg')
raws = glob(args.save_dir + '/image_raw*.npy')
manifest_fname = args.save_dir + '/manifest.pkl'
data = None
if not os.path.isfile(manifest_fname) :
print('Generating')
data = {}
data['filename'] = []
data['id'] = []
data['quality'] = []
data['size'] = []
data['raw'] = []
data['time'] = []
data['image_array'] = []
d = None
fname = None
for f in jpegs:
data['filename'].append(f)
i = int(f.split('_')[-1].split('.')[0])
data['id'].append(i)
q = int(f.split('_')[2])
data['quality'].append(q)
data['size'].append(os.path.getsize(f))
data['raw'].append(0)
time_fname = args.save_dir + '/time_to_send_' + str(q) + '_' + str(i) + '.txt'
time_to_send = 0
with open(time_fname, 'r') as tf:
time_to_send = float(tf.read());
data['time'].append(time_to_send)
jpeg = Image.open(f)
d = np.array(jpeg.getdata()).reshape(jpeg.size[0], jpeg.size[1]) / 0xff
d = cctf_encoding(demosaicing_CFA_Bayer_Menon2007(d, 'BGGR'))
d = exposure.rescale_intensity(d, (0,1))
d = exposure.adjust_gamma(d, 1.5)
#d = (d * 255).astype(np.uint8)
fname = f.replace('mono', 'jpeg_demosaiced').replace('.jpeg', '.npy')
np.save(fname, d)
data['image_array'].append(fname)
result = Image.fromarray((d * 255).astype(np.uint8))
result.save(fname.replace('npy','jpeg'), format='JPEG')
for f in raws:
data['filename'].append(f)
i = int(f.split('_')[-1].split('.')[0])
data['id'].append(i)
data['quality'].append(100)
data['raw'].append(1)
data['size'].append(d.shape[0] * d.shape[1])
time_fname = args.save_dir + '/time_to_send_0_' + str(i) + '.txt'
time_to_send = 0
with open(time_fname, 'r') as tf:
time_to_send = float(tf.read());
data['time'].append(time_to_send)
d = np.load(f) / float(0xff)
d = cctf_encoding(demosaicing_CFA_Bayer_Menon2007(d, 'BGGR'))
d = exposure.rescale_intensity(d, (0,1))
d = exposure.adjust_gamma(d, 1.5)
#d = (d * 255).astype(np.uint8)
fname = f.replace('raw', 'demosaiced')
np.save(fname, d)
data['image_array'].append(fname)
result = Image.fromarray((d * 255).astype(np.uint8))
result.save(fname.replace('npy','jpeg'), format='JPEG')
data = pd.DataFrame(data)
qualities = set(np.unique(data['quality']).flatten())
for i in data['id']:
avail_qual = set(data[data['id'] == i]['quality'])
if (avail_qual != qualities):
data = data[data['id'] != i]
data.to_pickle(manifest_fname)
else:
data = pd.read_pickle(manifest_fname)
print(data)
print(len(np.unique(data['id'])))
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 104
| 0
|
fd261e8c4a8691fb747969570204d7a92c2cb98d
| 2,307
|
py
|
Python
|
Code/packages/migrations/0001_initial.py
|
praktianerJones/LSD
|
8ca07bfcf53347dc466be0cae260387c90f0c2ed
|
[
"BSD-3-Clause"
] | 2
|
2021-12-15T21:58:43.000Z
|
2021-12-15T22:17:26.000Z
|
Code/packages/migrations/0001_initial.py
|
praktianerJones/LSD
|
8ca07bfcf53347dc466be0cae260387c90f0c2ed
|
[
"BSD-3-Clause"
] | null | null | null |
Code/packages/migrations/0001_initial.py
|
praktianerJones/LSD
|
8ca07bfcf53347dc466be0cae260387c90f0c2ed
|
[
"BSD-3-Clause"
] | 1
|
2021-12-19T17:02:02.000Z
|
2021-12-19T17:02:02.000Z
|
# Generated by Django 2.1.7 on 2020-10-22 12:55
import django.db.models.deletion
| 31.60274
| 82
| 0.397486
|
# Generated by Django 2.1.7 on 2020-10-22 12:55
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone
class Migration(migrations.Migration):
initial = True
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("licenses", "0001_initial"),
]
operations = [
migrations.CreateModel(
name="Package",
fields=[
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("package_name", models.CharField(max_length=100)),
("package_version", models.CharField(max_length=50)),
("package_description", models.TextField(blank=True)),
(
"usage",
models.CharField(
choices=[
("d", "dynamic"),
("s", "static"),
("r", "rootfs"),
("u", "unknown"),
],
default="u",
max_length=1,
),
),
("date", models.DateTimeField(default=django.utils.timezone.now)),
(
"license_list",
models.ManyToManyField(
related_name="linked_licenses", to="licenses.License"
),
),
(
"license_used",
models.ForeignKey(
on_delete=django.db.models.deletion.PROTECT,
to="licenses.License",
),
),
(
"package_creator",
models.ForeignKey(
null=True,
on_delete=django.db.models.deletion.PROTECT,
to=settings.AUTH_USER_MODEL,
),
),
],
),
]
| 0
| 0
| 0
| 2,097
| 0
| 0
| 0
| 37
| 90
|
4765077027b875beb3bbe235bb22451c6aed58b9
| 2,655
|
py
|
Python
|
src/website/misc/mail.py
|
wooyek/secure-share
|
b3b1dd6a03dc278e881e866a5554254523d33a81
|
[
"MIT"
] | null | null | null |
src/website/misc/mail.py
|
wooyek/secure-share
|
b3b1dd6a03dc278e881e866a5554254523d33a81
|
[
"MIT"
] | 1
|
2020-05-01T10:53:25.000Z
|
2020-05-01T10:53:25.000Z
|
src/website/misc/mail.py
|
wooyek/secure-share
|
b3b1dd6a03dc278e881e866a5554254523d33a81
|
[
"MIT"
] | null | null | null |
# coding=utf-8
# Copyright 2015 Brave Labs sp. z o.o.
# All rights reserved.
#
# This source code and all resulting intermediate files are CONFIDENTIAL and
# PROPRIETY TRADE SECRETS of Brave Labs sp. z o.o.
# Use is subject to license terms. See NOTICE file of this project for details.
import json
import logging
from smtplib import SMTPAuthenticationError, SMTPServerDisconnected
import html2text
from django.conf import settings
from django.core.mail import EmailMultiAlternatives
from django.core.mail import send_mail as django_send_mail
from django.template.exceptions import TemplateDoesNotExist
from django.template.loader import render_to_string
from sparkpost.exceptions import SparkPostAPIException
def send_mail(template_path, ctx, to):
"""Simplifies message rendering"""
ctx.setdefault('BASE_URL', settings.BASE_URL)
message = render_to_string(template_path + '.jinja2', ctx)
html_message = render_to_string(template_path + '.html', ctx)
subject, message = message.split("\n", 1)
if not isinstance(to, list):
to = [to]
django_send_mail(
subject=subject,
message=message,
html_message=html_message,
from_email=settings.DEFAULT_FROM_EMAIL,
recipient_list=to
)
def send_mail_template(template, ctx, subject, to=None, **kwargs):
"""Simplifies message rendering"""
ctx.setdefault('BASE_URL', settings.BASE_URL)
html_message = render_to_string(template, ctx)
try:
text_message = render_to_string(template.replace(".html", ".jinja2"), ctx)
except TemplateDoesNotExist:
text_message = html2text.html2text(html_message)
if not isinstance(to, list):
to = [to]
kwargs.setdefault('from_email', settings.DEFAULT_FROM_EMAIL)
kwargs.setdefault('reply_to', [settings.DEFAULT_REPLY_TO_EMAIL])
message = EmailMultiAlternatives(subject, body=text_message, to=to, **kwargs)
if html_message:
message.attach_alternative(html_message, 'text/html')
logging.debug("to: %s", to)
if 'unsubscribe' in ctx:
message.extra_headers['List-Unsubscribe'] = "<{}>".format(ctx['unsubscribe'])
message.extra_headers['X-MSYS-API'] = json.dumps({'options': {'transactional': True}})
try:
return message.send()
except SparkPostAPIException as ex:
if ex.status == 1902 or not settings.FAIL_ON_EMAIL_SUPPRESSION:
logging.error("Email suppression: %s", to, exc_info=ex)
else:
raise
except (SMTPServerDisconnected, SMTPAuthenticationError) as ex:
logging.error("", exc_info=ex)
# Retry once
return message.send()
| 34.480519
| 94
| 0.711864
|
# coding=utf-8
# Copyright 2015 Brave Labs sp. z o.o.
# All rights reserved.
#
# This source code and all resulting intermediate files are CONFIDENTIAL and
# PROPRIETY TRADE SECRETS of Brave Labs sp. z o.o.
# Use is subject to license terms. See NOTICE file of this project for details.
import json
import logging
from smtplib import SMTPAuthenticationError, SMTPServerDisconnected
import html2text
from django.conf import settings
from django.core.mail import EmailMultiAlternatives
from django.core.mail import send_mail as django_send_mail
from django.template.exceptions import TemplateDoesNotExist
from django.template.loader import render_to_string
from sparkpost.exceptions import SparkPostAPIException
def send_mail(template_path, ctx, to):
"""Simplifies message rendering"""
ctx.setdefault('BASE_URL', settings.BASE_URL)
message = render_to_string(template_path + '.jinja2', ctx)
html_message = render_to_string(template_path + '.html', ctx)
subject, message = message.split("\n", 1)
if not isinstance(to, list):
to = [to]
django_send_mail(
subject=subject,
message=message,
html_message=html_message,
from_email=settings.DEFAULT_FROM_EMAIL,
recipient_list=to
)
def send_mail_template(template, ctx, subject, to=None, **kwargs):
"""Simplifies message rendering"""
ctx.setdefault('BASE_URL', settings.BASE_URL)
html_message = render_to_string(template, ctx)
try:
text_message = render_to_string(template.replace(".html", ".jinja2"), ctx)
except TemplateDoesNotExist:
text_message = html2text.html2text(html_message)
if not isinstance(to, list):
to = [to]
kwargs.setdefault('from_email', settings.DEFAULT_FROM_EMAIL)
kwargs.setdefault('reply_to', [settings.DEFAULT_REPLY_TO_EMAIL])
message = EmailMultiAlternatives(subject, body=text_message, to=to, **kwargs)
if html_message:
message.attach_alternative(html_message, 'text/html')
logging.debug("to: %s", to)
if 'unsubscribe' in ctx:
message.extra_headers['List-Unsubscribe'] = "<{}>".format(ctx['unsubscribe'])
message.extra_headers['X-MSYS-API'] = json.dumps({'options': {'transactional': True}})
try:
return message.send()
except SparkPostAPIException as ex:
if ex.status == 1902 or not settings.FAIL_ON_EMAIL_SUPPRESSION:
logging.error("Email suppression: %s", to, exc_info=ex)
else:
raise
except (SMTPServerDisconnected, SMTPAuthenticationError) as ex:
logging.error("", exc_info=ex)
# Retry once
return message.send()
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
e7588964b2c66c2e1a9c460176fbd519c621d0aa
| 1,256
|
py
|
Python
|
main.py
|
hiroyaiyori/MultiAgentQlearning
|
9e5161edad6b9e83995f3bb70bb159047e2dab79
|
[
"Apache-2.0"
] | null | null | null |
main.py
|
hiroyaiyori/MultiAgentQlearning
|
9e5161edad6b9e83995f3bb70bb159047e2dab79
|
[
"Apache-2.0"
] | null | null | null |
main.py
|
hiroyaiyori/MultiAgentQlearning
|
9e5161edad6b9e83995f3bb70bb159047e2dab79
|
[
"Apache-2.0"
] | null | null | null |
import matplotlib.pyplot as plt
from field import Field
from qvalue import Hunter
if __name__ == "__main__":
h0 = Hunter(0)
h1 = Hunter(1)
epi_itern_l = []
for i in range(EPISODE_N):
f = Field()
itern = 0
while True:
fin = qlearn_step(f, h0, h1)
itern += 1
if fin:
break
epi_itern_l.append(itern)
print(i, itern)
plt.plot(list(range(EPISODE_N)), epi_itern_l, linewidth=1)
plt.xlabel("Number of Trials")
plt.ylabel("Steps to Catch")
plt.savefig("figure")
| 22.428571
| 62
| 0.610669
|
import random
import matplotlib.pyplot as plt
from setting import *
from field import Field
from qvalue import Hunter
def qlearn_step(f: Field, h0: Hunter, h1: Hunter):
# move hunter0
m0 = h0.decide_movement(f)
pre_s0 = h0.h_recognize(f)
f.move_agent(0, m0)
# move hunter1
m1 = h1.decide_movement(f)
pre_s1 = h1.h_recognize(f)
f.move_agent(1, m1)
# move target
f.move_agent(2, random.randrange(0, 4))
# ask reward
neighbor_hunter_n = f.catch_detection()
if neighbor_hunter_n == 2:
reward = CATCH_REWARD
else:
reward = MOVEMENT_REWARD
# update q_value
h0.update_qvalue(f, pre_s0, m0, reward)
h1.update_qvalue(f, pre_s1, m1, reward)
return neighbor_hunter_n == 2
if __name__ == "__main__":
h0 = Hunter(0)
h1 = Hunter(1)
epi_itern_l = []
for i in range(EPISODE_N):
f = Field()
itern = 0
while True:
fin = qlearn_step(f, h0, h1)
itern += 1
if fin:
break
epi_itern_l.append(itern)
print(i, itern)
plt.plot(list(range(EPISODE_N)), epi_itern_l, linewidth=1)
plt.xlabel("Number of Trials")
plt.ylabel("Steps to Catch")
plt.savefig("figure")
| 0
| 0
| 0
| 0
| 0
| 613
| 0
| -8
| 68
|
4dd52bce4b143c4fbffd44bc3c50266b8901f019
| 4,976
|
py
|
Python
|
rlpyt/runners/multigpu_sync.py
|
DilipA/rlpyt
|
edfd46484c56a47b4671006a16a642e6808da393
|
[
"MIT"
] | null | null | null |
rlpyt/runners/multigpu_sync.py
|
DilipA/rlpyt
|
edfd46484c56a47b4671006a16a642e6808da393
|
[
"MIT"
] | null | null | null |
rlpyt/runners/multigpu_sync.py
|
DilipA/rlpyt
|
edfd46484c56a47b4671006a16a642e6808da393
|
[
"MIT"
] | 1
|
2020-06-23T14:13:40.000Z
|
2020-06-23T14:13:40.000Z
|
###############################################################################
# Master
###############################################################################
###############################################################################
# Worker
###############################################################################
# Helpers
| 28.434286
| 79
| 0.567725
|
import multiprocessing as mp
import time
import torch.distributed
from rlpyt.runners.minibatch_rl import MinibatchRl
from rlpyt.runners.minibatch_rl_eval import MinibatchRlEval
from rlpyt.utils.seed import make_seed
from rlpyt.utils.collections import AttrDict
from rlpyt.utils.quick_args import save__init__args
###############################################################################
# Master
###############################################################################
class MultiGpuRlMixin(object):
def startup(self):
self.launch_workers()
n_itr = super().startup()
self.par.barrier.wait()
self._start_time = self._last_time = time.time() # (Overwrite)
return n_itr
def launch_workers(self):
self.affinities = self.affinity
self.affinity = self.affinities[0]
self.n_runners = n_runners = len(self.affinities)
self.rank = rank = 0
self.par = par = self.build_par_objs(n_runners)
if self.seed is None:
self.seed = make_seed()
port = find_port(offset=self.affinity.get("run_slot", 0))
workers_kwargs = [dict(
algo=self.algo,
agent=self.agent,
sampler=self.sampler,
n_steps=self.n_steps,
seed=self.seed + 100 * rank,
affinity=self.affinities[rank],
log_interval_steps=self.log_interval_steps,
rank=rank,
n_runners=n_runners,
port=port,
par=par,
)
for rank in range(1, n_runners)]
workers = [self.WorkerCls(**w_kwargs) for w_kwargs in workers_kwargs]
self.workers = [mp.Process(target=w.train, args=()) for w in workers]
for w in self.workers:
w.start()
torch.distributed.init_process_group(
backend="nccl",
rank=rank,
world_size=n_runners,
init_method=f"tcp://127.0.0.1:{port}",
)
def build_par_objs(self, n_runners):
barrier = mp.Barrier(n_runners)
traj_infos_queue = mp.Queue()
mgr = mp.Manager()
mgr_dict = mgr.dict() # For any other comms.
par = AttrDict(
barrier=barrier,
traj_infos_queue=traj_infos_queue,
dict=mgr_dict,
)
return par
class MultiGpuRl(MultiGpuRlMixin, MinibatchRl):
@property
def WorkerCls(self):
return MultiGpuWorker
def store_diagnostics(self, itr, traj_infos, opt_info):
while self.par.traj_infos_queue.qsize():
traj_infos.append(self.par.traj_infos_queue.get())
super().store_diagnostics(itr, traj_infos, opt_info)
class MultiGpuRlEval(MultiGpuRlMixin, MinibatchRlEval):
@property
def WorkerCls(self):
return MultiGpuWorkerEval
def log_diagnostics(self, *args, **kwargs):
super().log_diagnostics(*args, **kwargs)
self.par.barrier.wait()
###############################################################################
# Worker
###############################################################################
class MultiGpuWorkerMixin(object):
def __init__(
self,
algo,
agent,
sampler,
n_steps,
seed,
affinity,
log_interval_steps,
rank,
n_runners,
port,
par,
):
save__init__args(locals())
def startup(self):
torch.distributed.init_process_group(
backend="nccl",
rank=self.rank,
world_size=self.n_runners,
init_method=f"tcp://127.0.0.1:{self.port}",
)
n_itr = super().startup()
self.par.barrier.wait()
return n_itr
def initialize_logging(self):
pass # Don't log in workers.
def shutdown(self):
self.sampler.shutdown()
class MultiGpuWorker(MultiGpuWorkerMixin, MinibatchRl):
def store_diagnostics(self, itr, traj_infos, opt_info):
for traj_info in traj_infos:
self.par.traj_infos_queue.put(traj_info)
# Leave worker opt_info un-recorded.
def log_diagnostics(self, *args, **kwargs):
pass
class MultiGpuWorkerEval(MultiGpuWorkerMixin, MinibatchRlEval):
def store_diagnostics(self, *args, **kwargs):
pass
def log_diagnostics(self, *args, **kwargs):
self.par.barrier.wait()
def evaluate_agent(self, *args, **kwargs):
return None, None
# Helpers
def find_port(offset):
# Find a unique open port, to stack multiple multi-GPU runs per machine.
assert offset < 100
for port in range(29500 + offset, 65000, 100):
try:
store = torch.distributed.TCPStore("127.0.0.1", port, 1, True)
break
except RuntimeError:
pass # Port taken.
del store # Before fork (small time gap; could be re-taken, hence offset).
return port
| 0
| 90
| 0
| 3,633
| 0
| 416
| 0
| 137
| 339
|
d85adc875950cf9304a2a13e89a8e00037af958b
| 8,324
|
py
|
Python
|
src/python/pants/backend/python/rules/python_test_runner.py
|
mpopenko-exos/pants
|
47d27037c8b13291fc9023e56ddd1b1defdf1b8e
|
[
"Apache-2.0"
] | null | null | null |
src/python/pants/backend/python/rules/python_test_runner.py
|
mpopenko-exos/pants
|
47d27037c8b13291fc9023e56ddd1b1defdf1b8e
|
[
"Apache-2.0"
] | 1
|
2018-09-04T17:37:34.000Z
|
2018-09-04T19:42:58.000Z
|
src/python/pants/backend/python/rules/python_test_runner.py
|
mpopenko-exos/pants
|
47d27037c8b13291fc9023e56ddd1b1defdf1b8e
|
[
"Apache-2.0"
] | null | null | null |
# Copyright 2018 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
from textwrap import dedent
from typing import Optional
DEFAULT_COVERAGE_CONFIG = dedent(f"""
[run]
branch = True
timid = False
relative_files = True
""")
def calculate_timeout_seconds(
*,
timeouts_enabled: bool,
target_timeout: Optional[int],
timeout_default: Optional[int],
timeout_maximum: Optional[int],
) -> Optional[int]:
"""Calculate the timeout for a test target.
If a target has no timeout configured its timeout will be set to the default timeout.
"""
if not timeouts_enabled:
return None
if target_timeout is None:
if timeout_default is None:
return None
target_timeout = timeout_default
if timeout_maximum is not None:
return min(target_timeout, timeout_maximum)
return target_timeout
| 38.359447
| 117
| 0.780995
|
# Copyright 2018 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
import os
from dataclasses import dataclass
from textwrap import dedent
from typing import Optional, Tuple
from pants.backend.python.rules.pex import Pex
from pants.backend.python.rules.pex_from_target_closure import CreatePexFromTargetClosure
from pants.backend.python.rules.prepare_chrooted_python_sources import ChrootedPythonSources
from pants.backend.python.subsystems.pytest import PyTest
from pants.backend.python.subsystems.python_setup import PythonSetup
from pants.backend.python.subsystems.subprocess_environment import SubprocessEncodingEnvironment
from pants.build_graph.address import Address
from pants.engine.addressable import BuildFileAddresses
from pants.engine.fs import Digest, DirectoriesToMerge, FileContent, InputFilesContent
from pants.engine.interactive_runner import InteractiveProcessRequest
from pants.engine.isolated_process import ExecuteProcessRequest, FallibleExecuteProcessResult
from pants.engine.legacy.graph import HydratedTargets, TransitiveHydratedTargets
from pants.engine.legacy.structs import PythonTestsAdaptor
from pants.engine.rules import UnionRule, rule, subsystem_rule
from pants.engine.selectors import Get
from pants.option.global_options import GlobalOptions
from pants.rules.core.strip_source_root import SourceRootStrippedSources
from pants.rules.core.test import TestDebugRequest, TestOptions, TestResult, TestTarget
DEFAULT_COVERAGE_CONFIG = dedent(f"""
[run]
branch = True
timid = False
relative_files = True
""")
def get_coveragerc_input(coveragerc_content: str) -> InputFilesContent:
return InputFilesContent(
[
FileContent(
path='.coveragerc',
content=coveragerc_content.encode(),
is_executable=False,
),
]
)
def calculate_timeout_seconds(
*,
timeouts_enabled: bool,
target_timeout: Optional[int],
timeout_default: Optional[int],
timeout_maximum: Optional[int],
) -> Optional[int]:
"""Calculate the timeout for a test target.
If a target has no timeout configured its timeout will be set to the default timeout.
"""
if not timeouts_enabled:
return None
if target_timeout is None:
if timeout_default is None:
return None
target_timeout = timeout_default
if timeout_maximum is not None:
return min(target_timeout, timeout_maximum)
return target_timeout
@dataclass(frozen=True)
class TestTargetSetup:
requirements_pex: Pex
args: Tuple[str, ...]
input_files_digest: Digest
timeout_seconds: Optional[int]
# Prevent this class from being detected by pytest as a test class.
__test__ = False
def get_packages_to_cover(
test_target: PythonTestsAdaptor,
source_root_stripped_file_paths: Tuple[str, ...],
) -> Tuple[str, ...]:
if hasattr(test_target, 'coverage'):
return tuple(sorted(set(test_target.coverage)))
return tuple(sorted({
os.path.dirname(source_root_stripped_source_file_path).replace(os.sep, '.') # Turn file paths into package names.
for source_root_stripped_source_file_path in source_root_stripped_file_paths
}))
@rule
async def setup_pytest_for_target(
test_target: PythonTestsAdaptor,
pytest: PyTest,
test_options: TestOptions,
) -> TestTargetSetup:
# TODO: Rather than consuming the TestOptions subsystem, the TestRunner should pass on coverage
# configuration via #7490.
transitive_hydrated_targets = await Get[TransitiveHydratedTargets](
BuildFileAddresses((test_target.address,))
)
all_targets = transitive_hydrated_targets.closure
resolved_requirements_pex = await Get[Pex](
CreatePexFromTargetClosure(
build_file_addresses=BuildFileAddresses((test_target.address,)),
output_filename='pytest-with-requirements.pex',
entry_point="pytest:main",
additional_requirements=pytest.get_requirement_strings(),
# NB: We set `--not-zip-safe` because Pytest plugin discovery, which uses
# `importlib_metadata` and thus `zipp`, does not play nicely when doing import magic directly
# from zip files. `zipp` has pathologically bad behavior with large zipfiles.
# TODO: this does have a performance cost as the pex must now be expanded to disk. Long term,
# it would be better to fix Zipp (whose fix would then need to be used by importlib_metadata
# and then by Pytest). See https://github.com/jaraco/zipp/pull/26.
additional_args=("--not-zip-safe",),
include_source_files=False,
)
)
chrooted_sources = await Get[ChrootedPythonSources](HydratedTargets(all_targets))
directories_to_merge = [
chrooted_sources.digest,
resolved_requirements_pex.directory_digest,
]
# Get the file names for the test_target, adjusted for the source root. This allows us to
# specify to Pytest which files to test and thus to avoid the test auto-discovery defined by
# https://pytest.org/en/latest/goodpractices.html#test-discovery. In addition to a performance
# optimization, this ensures that any transitive sources, such as a test project file named
# test_fail.py, do not unintentionally end up being run as tests.
source_root_stripped_test_target_sources = await Get[SourceRootStrippedSources](
Address, test_target.address.to_address()
)
coverage_args = []
test_target_sources_file_names = source_root_stripped_test_target_sources.snapshot.files
if test_options.values.run_coverage:
coveragerc_digest = await Get[Digest](InputFilesContent, get_coveragerc_input(DEFAULT_COVERAGE_CONFIG))
directories_to_merge.append(coveragerc_digest)
packages_to_cover = get_packages_to_cover(
test_target,
source_root_stripped_file_paths=test_target_sources_file_names,
)
coverage_args = [
'--cov-report=', # To not generate any output. https://pytest-cov.readthedocs.io/en/latest/config.html
]
for package in packages_to_cover:
coverage_args.extend(['--cov', package])
merged_input_files = await Get[Digest](DirectoriesToMerge(directories=tuple(directories_to_merge)))
timeout_seconds = calculate_timeout_seconds(
timeouts_enabled=pytest.options.timeouts,
target_timeout=getattr(test_target, 'timeout', None),
timeout_default=pytest.options.timeout_default,
timeout_maximum=pytest.options.timeout_maximum,
)
return TestTargetSetup(
requirements_pex=resolved_requirements_pex,
args=(*pytest.options.args, *coverage_args, *sorted(test_target_sources_file_names)),
input_files_digest=merged_input_files,
timeout_seconds=timeout_seconds,
)
@rule(name="Run pytest")
async def run_python_test(
test_target: PythonTestsAdaptor,
test_setup: TestTargetSetup,
python_setup: PythonSetup,
subprocess_encoding_environment: SubprocessEncodingEnvironment,
global_options: GlobalOptions,
test_options: TestOptions,
) -> TestResult:
"""Runs pytest for one target."""
colors = global_options.colors
env = {"PYTEST_ADDOPTS": f"--color={'yes' if colors else 'no'}"}
request = test_setup.requirements_pex.create_execute_request(
python_setup=python_setup,
subprocess_encoding_environment=subprocess_encoding_environment,
pex_path=f'./{test_setup.requirements_pex.output_filename}',
pex_args=test_setup.args,
input_files=test_setup.input_files_digest,
output_directories=('.coverage',) if test_options.values.run_coverage else None,
description=f'Run Pytest for {test_target.address.reference()}',
timeout_seconds=test_setup.timeout_seconds if test_setup.timeout_seconds is not None else 9999,
env=env,
)
result = await Get[FallibleExecuteProcessResult](ExecuteProcessRequest, request)
return TestResult.from_fallible_execute_process_result(result)
@rule(name="Run pytest in an interactive process")
async def debug_python_test(test_setup: TestTargetSetup) -> TestDebugRequest:
run_request = InteractiveProcessRequest(
argv=(test_setup.requirements_pex.output_filename, *test_setup.args),
run_in_workspace=False,
input_files=test_setup.input_files_digest
)
return TestDebugRequest(run_request)
def rules():
return [
run_python_test,
debug_python_test,
setup_pytest_for_target,
UnionRule(TestTarget, PythonTestsAdaptor),
subsystem_rule(PyTest),
subsystem_rule(PythonSetup),
]
| 0
| 5,106
| 0
| 0
| 0
| 845
| 0
| 875
| 603
|
ac0722f5355939a163b27b591dc7ab3e9e9bd82a
| 817
|
py
|
Python
|
blog_config.py
|
misalabs/misalabs.com
|
f2c95f124f01a718c5bf9331457d75bae0e892bd
|
[
"MIT"
] | null | null | null |
blog_config.py
|
misalabs/misalabs.com
|
f2c95f124f01a718c5bf9331457d75bae0e892bd
|
[
"MIT"
] | null | null | null |
blog_config.py
|
misalabs/misalabs.com
|
f2c95f124f01a718c5bf9331457d75bae0e892bd
|
[
"MIT"
] | null | null | null |
# coding: utf-8 -*-
# TITLE / SUBTITLE / AUTHOR
# The title, subtitle, and author of the blog
TITLE = "Misa Montes"
SUBTITLE = "blog"
AUTHOR = "Misa"
METADATA_TAGS = ['title', 'author']
# POSTS_PER_PAGE
# The number of posts that will appear on each page of index.html
POSTS_PER_PAGE = 3
# SUMMARY_DELIMITOR
# Used to specify a breaking point from the beginning of the document to the
# end of the summary.
SUMMARY_DELIMITER = "~~"
# USE_HEROKU
# Toggled as True/False if the system will or will not be deployed as a Heroku
# app, respectively.
USE_HEROKU = True
# DISQUS_SHORTNAME
# Disqus is a free system used to manage comments at the bottom of blog posts.
# After signing up, you will be issued a shortname -- put it here. By default
# developer mode of the script is enabled.
DISQUS_SHORTNAME = "misalabs"
| 29.178571
| 78
| 0.740514
|
# coding: utf-8 -*-
# TITLE / SUBTITLE / AUTHOR
# The title, subtitle, and author of the blog
TITLE = "Misa Montes"
SUBTITLE = "blog"
AUTHOR = "Misa"
METADATA_TAGS = ['title', 'author']
# POSTS_PER_PAGE
# The number of posts that will appear on each page of index.html
POSTS_PER_PAGE = 3
# SUMMARY_DELIMITOR
# Used to specify a breaking point from the beginning of the document to the
# end of the summary.
SUMMARY_DELIMITER = "~~"
# USE_HEROKU
# Toggled as True/False if the system will or will not be deployed as a Heroku
# app, respectively.
USE_HEROKU = True
# DISQUS_SHORTNAME
# Disqus is a free system used to manage comments at the bottom of blog posts.
# After signing up, you will be issued a shortname -- put it here. By default
# developer mode of the script is enabled.
DISQUS_SHORTNAME = "misalabs"
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
ee0f794b0f5448c23e5ed4a42cf4a22fac9055fd
| 509
|
py
|
Python
|
tAPP/2/P2.py
|
ArvinZJC/UofG_PGT_PSD_Python
|
d90e9bb0b53b14c6b1d7e657c3c61e2792e0d9c4
|
[
"MIT"
] | null | null | null |
tAPP/2/P2.py
|
ArvinZJC/UofG_PGT_PSD_Python
|
d90e9bb0b53b14c6b1d7e657c3c61e2792e0d9c4
|
[
"MIT"
] | null | null | null |
tAPP/2/P2.py
|
ArvinZJC/UofG_PGT_PSD_Python
|
d90e9bb0b53b14c6b1d7e657c3c61e2792e0d9c4
|
[
"MIT"
] | null | null | null |
'''
Description: Problem 2 (rearrange the code)
Version: 1.0.2.20210118
Author: Arvin Zhao
Date: 2021-01-14 22:35:43
Last Editors: Arvin Zhao
LastEditTime: 2021-01-18 18:11:03
'''
line = input('Enter a string: ')
i = 0
is_palindrome = True
while i < len(line) / 2 and is_palindrome:
if line[i] != line[len(line) - i - 1]:
is_palindrome = False
else:
is_palindrome = True
i += 1
if is_palindrome:
print(line, 'is a palindrome.')
else:
print(line, 'is not a palindrome.')
| 20.36
| 43
| 0.646365
|
'''
Description: Problem 2 (rearrange the code)
Version: 1.0.2.20210118
Author: Arvin Zhao
Date: 2021-01-14 22:35:43
Last Editors: Arvin Zhao
LastEditTime: 2021-01-18 18:11:03
'''
line = input('Enter a string: ')
i = 0
is_palindrome = True
while i < len(line) / 2 and is_palindrome:
if line[i] != line[len(line) - i - 1]:
is_palindrome = False
else:
is_palindrome = True
i += 1
if is_palindrome:
print(line, 'is a palindrome.')
else:
print(line, 'is not a palindrome.')
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
ed9616c041b5bba086b27dc907c55bb00c486b21
| 1,762
|
py
|
Python
|
classes/buildings.py
|
AlbatrosCZ/RP-bot
|
f605550ebb9009a9846048da645db91e385d4f35
|
[
"MIT"
] | null | null | null |
classes/buildings.py
|
AlbatrosCZ/RP-bot
|
f605550ebb9009a9846048da645db91e385d4f35
|
[
"MIT"
] | null | null | null |
classes/buildings.py
|
AlbatrosCZ/RP-bot
|
f605550ebb9009a9846048da645db91e385d4f35
|
[
"MIT"
] | null | null | null |
"""
name - jmno
pozition - pozice (x, y)
can_train - sla pro trening jednotky (integer) - pokud je m jednotka alespo jedno z tchto sel me budova trnovat tuto jednotku (m vc spolench sel tm krat doba trningu)
defend_power - sl obrany integer - 0 neuastn se obrany
lifes - poet ivot (integer, integer) - aktuln, maximaln | 0 v maximaln znien pi znien msta, -1 v maximaln znien pi toku na msto, ostant kladn sla v maximaln znien pi dosaen 0
income - vydl za as (integer, integer, integer) - vydl, za, posledn
"""
| 46.368421
| 247
| 0.536322
|
"""
name - jméno
pozition - pozice (x, y)
can_train - čísla pro trening jednotky (integer) - pokud je má jednotka alespoň jedno z těchto čísel může budova trénovat tuto jednotku (čím víc společných čísel tím kratší doba tréningu)
defend_power - sílá obrany integer - 0 neučastní se obrany
lifes - počet životů (integer, integer) - aktuálně, maximalně | 0 v maximalně zničení při zničení města, -1 v maximalně zničení při útoku na město, ostantí kladná čísla v maximalně zničení při dosažení 0
income - vydělá za čas (integer, integer, integer) - vydělá, za, posledně
"""
from time import time
class building:
def __init__(self, name, can_train, defend_power = 0, lifes = [0, 0], income = [0, 0, time()], pozition = "Tamplate"):
self.name = name
self.can_train = can_train
self.defend_power = defend_power
self.lifes = lifes
self.income = income
def get_income(self):
if not self.income[0]:
return 0
if time() - self.income[2] >= self.income[1]:
self.income[2] = time()
return self.income[0]
return 0
def defend(self):
if self.lifes == [-1, -1]:
return "destroy"
elif self.lifes == [0, 0]:
if not self.defend_power:
return "no_defend"
else:
return [self.defend_power, self.lifes]
else:
if not self.defend_power:
return [0, self.lifes]
else:
return [self.defend_power, self.lifes]
| 122
| 0
| 0
| 926
| 0
| 0
| 0
| 0
| 44
|
0dfa8249c34d3a763ad92b788a6d4f1a0321b4b8
| 1,870
|
py
|
Python
|
Labs/Lab10/lab10a.py
|
tonysulfaro/CSE-231
|
0e3ff5422fe42624a90a17d7f33174346662a6fc
|
[
"MIT"
] | 2
|
2021-09-23T19:17:24.000Z
|
2021-11-29T09:03:56.000Z
|
Labs/Lab10/lab10a.py
|
tonysulfaro/CSE-231
|
0e3ff5422fe42624a90a17d7f33174346662a6fc
|
[
"MIT"
] | null | null | null |
Labs/Lab10/lab10a.py
|
tonysulfaro/CSE-231
|
0e3ff5422fe42624a90a17d7f33174346662a6fc
|
[
"MIT"
] | 1
|
2020-10-25T13:03:18.000Z
|
2020-10-25T13:03:18.000Z
|
##
## Demonstrate some of the operations of the Deck and Card classes
##
import cards
# Seed the random number generator to a specific value so every execution
# of the program uses the same sequence of random numbers (for testing).
import random
random.seed( 100 )
# Create a deck of cards
my_deck = cards.Deck()
# Shuffle the deck, then display it in 13 columns
my_deck.shuffle()
print( "===== shuffled deck =====" )
my_deck.display()
# Deal five cards to each player (alternating)
print( "Dealt five cards to each player (alternating)" )
print()
player1_list=[]
player2_list=[]
for i in range( 5 ):
player1_list.append( my_deck.deal() )
player2_list.append( my_deck.deal() )
# Display each player's cards and the cards still in the deck
print( "===== player #1 =====" )
print()
print( player1_list )
print()
print( "===== player #2 =====" )
print()
print( player2_list )
print()
print( "===== remaining cards in deck =====" )
my_deck.display()
hand(0,'First')
hand(0,'Second')
hand(-1,'Last')
| 24.285714
| 85
| 0.665775
|
##
## Demonstrate some of the operations of the Deck and Card classes
##
import cards
# Seed the random number generator to a specific value so every execution
# of the program uses the same sequence of random numbers (for testing).
import random
random.seed( 100 )
# Create a deck of cards
my_deck = cards.Deck()
# Shuffle the deck, then display it in 13 columns
my_deck.shuffle()
print( "===== shuffled deck =====" )
my_deck.display()
# Deal five cards to each player (alternating)
print( "Dealt five cards to each player (alternating)" )
print()
player1_list=[]
player2_list=[]
for i in range( 5 ):
player1_list.append( my_deck.deal() )
player2_list.append( my_deck.deal() )
# Display each player's cards and the cards still in the deck
print( "===== player #1 =====" )
print()
print( player1_list )
print()
print( "===== player #2 =====" )
print()
print( player2_list )
print()
print( "===== remaining cards in deck =====" )
my_deck.display()
def hand(index, hand_name):
# First card dealt to Player #1
print("\n")
player1_card = player1_list.pop( index )
print(hand_name, " card dealt to player #1:", player1_card )
print("Player #1 hand", player1_list)
# First card dealt to Player #2
print()
player2_card = player2_list.pop( index )
print(hand_name, "card dealt to player #2:", player2_card )
print("Player #2 hand", player2_list)
# Compare the ranks of the two cards
print()
if player1_card.rank() == player2_card.rank():
print( "Tie:", player1_card, "and", player2_card, "of equal rank" )
elif player1_card.rank() > player2_card.rank():
print( "Player #1 wins:", player1_card, "of higher rank than", player2_card )
else:
print( "Player #2 wins:", player2_card, "of higher rank than", player1_card )
hand(0,'First')
hand(0,'Second')
hand(-1,'Last')
| 0
| 0
| 0
| 0
| 0
| 829
| 0
| 0
| 23
|
bb993e3d8ef9c6f08b033e56942c9442d4a223c0
| 4,886
|
py
|
Python
|
src/ur_online_control/ur_direct/structure.py
|
createchaos/ur_online_control_2
|
22b0ec6b7ffa2c74b55dd214e7b854bec9922ccb
|
[
"MIT"
] | null | null | null |
src/ur_online_control/ur_direct/structure.py
|
createchaos/ur_online_control_2
|
22b0ec6b7ffa2c74b55dd214e7b854bec9922ccb
|
[
"MIT"
] | null | null | null |
src/ur_online_control/ur_direct/structure.py
|
createchaos/ur_online_control_2
|
22b0ec6b7ffa2c74b55dd214e7b854bec9922ccb
|
[
"MIT"
] | null | null | null |
from __future__ import absolute_import
__all__ = [
'URCommandScript'
]
| 35.926471
| 117
| 0.575931
|
from __future__ import absolute_import
import os
import socket
from ur_online_control.ur_direct.mixins.airpick_mixins import AirpickMixins
__all__ = [
'URCommandScript'
]
class URCommandScript(AirpickMixins):
"""Class containing commands for the UR Robot system"""
def __init__(self, server_ip=None, server_port=None, ur_ip=None, ur_port=None):
self.commands_dict = {}
self.server_ip = server_ip
self.server_port = server_port
self.ur_ip = ur_ip
self.ur_port = ur_port
self.script = None
self.exit_message = "Done"
# Functionality
def start(self):
"""To build the start of the script"""
self.add_lines(["def program():",
"\ttextmsg(\">> Entering program.\")",
"\t# open line for airpick commands"])
def end(self, feedback=None):
"""To build the end of the script"""
if feedback:
self.socket_send_line('"Done"')
self.add_lines(["\ttextmsg(\"<< Exiting program.\")",
"end",
"program()\n\n\n"])
def generate(self):
"""Translate the dictionary to a long string"""
self.script = '\n'.join(self.commands_dict.values())
return self.script
def socket_send_line(self, line):
self.add_lines(['\tsocket_open("{}", {})'.format(self.server_ip, self.server_port),
'\tsocket_send_line({})'.format(line),
"\tsocket_close()"])
# Dictionary building
def add_line(self, line, i=None):
"""Add a single line to the script"""
if i is None:
i = len(self.commands_dict)
else:
pass
self.commands_dict[i] = line
def add_lines(self, lines):
"""Add a multiple lines to the script"""
i = len(self.commands_dict)
[self.add_line(line, i+line_nr) for (line_nr, line) in zip(range(len(lines)), lines)]
# Feedback functionality
def get_current_pose_cartesian(self, send=False):
"""Get the current cartesian pose"""
self.get_current_pose("cartesian", send)
def get_current_pose_joints(self, send=False):
"""Get the current joints pose"""
self.get_current_pose("joints", send)
def get_current_pose(self, get_type, send):
"""Create get pose code"""
pose_type = {
"cartesian": "get_forward_kin()",
"joints": "get_actual_joint_positions()"
}
self.add_lines(["\tcurrent_pose = {}".format(pose_type[get_type]),
"\ttextmsg(current_pose)"])
if send:
self.socket_send_line('current_pose')
#self.add_line("\ttextmsg('sending done')")
# Connectivity
def is_available(self):
"""Ping the network, to check for availability"""
system_call = "ping -r 1 -n 1 {}".format(self.ur_ip)
response = os.system(system_call)
if response == 0:
return True
else:
return False
def send_script(self):
try:
s = socket.create_connection((self.ur_ip, self.ur_port), timeout=2)
except socket.timeout:
print("UR with ip {} not available on port {}".format(self.ur_ip, self.ur_port))
raise
finally:
enc_script = self.script.encode('utf-8') # encoding allows use of python 3.7
s.send(enc_script)
print("Script sent to {} on port {}".format(self.ur_ip, self.ur_port))
s.close()
# Geometric effects
def set_tcp(self, tcp):
"""Set the tcp"""
#tcp = [tcp[i]/1000 if i < 3 else tcp[i] for i in range(len(tcp))]
tcp = [tcp[i] for i in range(len(tcp))]
self.add_line("\tset_tcp(p{})".format(tcp))
def add_move_linear(self, move_command, feedback=None):
"""Add a move command to the script"""
#move = [cmd / 1000 if c not in [3, 4, 5] else cmd for c, cmd in zip(range(len(move_command)), move_command)]
move = [cmd for c, cmd in zip(range(len(move_command)), move_command)]
[x, y, z, dx, dy, dz, v, r] = move
self.add_line("\tmovel(p[{}, {}, {}, {}, {}, {}], v={}, r={})".format(x, y, z, dx, dy, dz, v, r))
if feedback == "Full":
self.get_current_pose_cartesian(True)
elif feedback == "UR_only":
self.get_current_pose_cartesian(False)
else:
pass
def add_digital_out(self, number, value):
self.add_line("\tset_digital_out({}, {})".format(number, value))
def add_areagrip_on(self, sleep = 1.):
self.add_digital_out(7, True)
self.add_line("\tsleep({})".format(sleep))
def add_areagrip_off(self, sleep = 0.1):
self.add_digital_out(7, False)
self.add_line("\tsleep({})".format(sleep))
| 0
| 0
| 0
| 4,685
| 0
| 0
| 0
| 34
| 89
|
728f3b3c609ce6bb2af3cd08ab99688368ec0879
| 1,168
|
py
|
Python
|
genemunge/data/cleanup.py
|
unlearnai/genemunge
|
a7dc07706ae2bf487a04fcda5623013c055030a3
|
[
"CC-BY-4.0"
] | 21
|
2018-04-06T17:03:52.000Z
|
2020-06-29T12:56:43.000Z
|
genemunge/data/cleanup.py
|
unlearnai/genemunge
|
a7dc07706ae2bf487a04fcda5623013c055030a3
|
[
"CC-BY-4.0"
] | 5
|
2018-04-10T19:32:33.000Z
|
2018-07-17T18:07:48.000Z
|
genemunge/data/cleanup.py
|
unlearnai/genemunge
|
a7dc07706ae2bf487a04fcda5623013c055030a3
|
[
"CC-BY-4.0"
] | 5
|
2018-04-11T05:42:52.000Z
|
2019-04-02T03:43:52.000Z
|
import os
import contextlib
filepath = os.path.dirname(os.path.abspath(__file__))
def remove_installed_data_files():
"""
Removes some of the files that are downloaded during install.
Args:
None
Returns:
None
"""
# remove the GO file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'go-basic.obo'))
# remove the GO annotations
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'goa_human.gaf.gz'))
# remove the housekeeping genes file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'HK_genes.txt'))
# remove the transcription factors genes file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'TFCheckpoint_download_180515.txt'))
# remove the GTEx Rdata file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'gtex', 'rse_gene.Rdata'))
# remove the GTEx expression file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'gtex', 'expression_data.csv'))
| 29.2
| 77
| 0.697774
|
import os
import contextlib
filepath = os.path.dirname(os.path.abspath(__file__))
def remove_installed_data_files():
"""
Removes some of the files that are downloaded during install.
Args:
None
Returns:
None
"""
# remove the GO file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'go-basic.obo'))
# remove the GO annotations
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'goa_human.gaf.gz'))
# remove the housekeeping genes file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'HK_genes.txt'))
# remove the transcription factors genes file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'TFCheckpoint_download_180515.txt'))
# remove the GTEx Rdata file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'gtex', 'rse_gene.Rdata'))
# remove the GTEx expression file
with contextlib.suppress(FileNotFoundError):
os.remove(os.path.join(filepath, 'gtex', 'expression_data.csv'))
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
cbc363039e6a67e61d37d79f26466d4524013356
| 42
|
py
|
Python
|
test/integration/ElseIfStart/else if start.py
|
HighSchoolHacking/GLS-Draft
|
9e418b6290e7c8e3f2da87668784bdba1cde5a76
|
[
"MIT"
] | 30
|
2019-10-29T12:47:50.000Z
|
2022-02-12T06:41:39.000Z
|
test/integration/ElseIfStart/else if start.py
|
HighSchoolHacking/GLS-Draft
|
9e418b6290e7c8e3f2da87668784bdba1cde5a76
|
[
"MIT"
] | 247
|
2017-09-21T17:11:18.000Z
|
2019-10-08T12:59:07.000Z
|
test/integration/ElseIfStart/else if start.py
|
HighSchoolHacking/GLS-Draft
|
9e418b6290e7c8e3f2da87668784bdba1cde5a76
|
[
"MIT"
] | 17
|
2017-10-01T16:53:20.000Z
|
2018-11-28T07:20:35.000Z
|
#
if aaa:
# ...
elif bbb:
# ...
#
| 6
| 9
| 0.285714
|
#
if aaa:
# ...
elif bbb:
# ...
#
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
8a6089511fc4904952eb4fa9eb272cd7236b50fa
| 6,550
|
py
|
Python
|
model/videoQA.py
|
MikeWangWZHL/StarterCode
|
e271c5dff2d9c4344c2fecd81bb0b5dfe2749cf2
|
[
"MIT"
] | 63
|
2021-06-07T18:16:55.000Z
|
2022-03-29T09:41:05.000Z
|
model/videoQA.py
|
MikeWangWZHL/StarterCode
|
e271c5dff2d9c4344c2fecd81bb0b5dfe2749cf2
|
[
"MIT"
] | 16
|
2021-07-08T07:42:28.000Z
|
2022-01-14T06:40:57.000Z
|
model/videoQA.py
|
MikeWangWZHL/StarterCode
|
e271c5dff2d9c4344c2fecd81bb0b5dfe2749cf2
|
[
"MIT"
] | 5
|
2021-07-19T08:23:45.000Z
|
2022-02-02T02:49:48.000Z
|
"""
Copyright (c) Microsoft Corporation.
Licensed under the MIT license.
HERO for Video Question Answering Tasks, shared by:
1. TVQA
2. How2QA
3. VLEP
4. VIOLIN
copied/modified from HERO
(https://github.com/linjieli222/HERO)
"""
| 41.455696
| 81
| 0.563206
|
"""
Copyright (c) Microsoft Corporation.
Licensed under the MIT license.
HERO for Video Question Answering Tasks, shared by:
1. TVQA
2. How2QA
3. VLEP
4. VIOLIN
copied/modified from HERO
(https://github.com/linjieli222/HERO)
"""
from collections import defaultdict
import copy
import torch
from torch import nn
from torch.nn import functional as F
from .model import HeroModel
from .layers import MLPLayer
from .modeling_utils import mask_logits
class HeroForVideoQA(HeroModel):
def __init__(self, config, vfeat_dim, max_frm_seq_len):
HeroModel.__init__(
self, config, vfeat_dim, max_frm_seq_len)
hsz = config.c_config.hidden_size
self.qa_pool = nn.Linear(
in_features=hsz, out_features=1, bias=False)
self.qa_pred_head = MLPLayer(hsz, 1)
# in tvqa/how2qa, we also have annotations for st and ed frame idx
self.st_ed_pool = copy.deepcopy(self.qa_pool)
self.st_ed_pred_head = MLPLayer(hsz, 2)
def get_modularized_video(
self, frame_embeddings, frame_mask, violin=False):
"""
Args:
frame_embeddings: (Nv, Nq, L, D)
frame_mask: (Nv, Nq, L)
"""
if not violin:
st_ed_attn_scores = self.st_ed_pool(
frame_embeddings) # (Nv, Nq, L, 1)
qa_attn_scores = self.qa_pool(frame_embeddings)
st_ed_attn_scores = F.softmax(
mask_logits(st_ed_attn_scores,
frame_mask.unsqueeze(-1)), dim=1)
qa_attn_scores = F.softmax(
mask_logits(qa_attn_scores,
frame_mask.unsqueeze(-1)), dim=2)
# TODO check whether it is the same
st_ed_pooled_video = torch.einsum(
"vqlm,vqld->vlmd", st_ed_attn_scores,
frame_embeddings) # (Nv, L, 1, D)
qa_pooled_video = torch.einsum(
"vqlm,vqld->vqmd", qa_attn_scores,
frame_embeddings) # (Nv, Nq, 1, D)
return st_ed_pooled_video.squeeze(2), qa_pooled_video.squeeze(2)
else:
violin_attn_scores = self.qa_pool(
frame_embeddings) # (Nv, L, 1)
violin_attn_scores = F.softmax(
mask_logits(violin_attn_scores,
frame_mask.unsqueeze(-1)), dim=1)
# TODO check whether it is the same
violin_pooled_video = torch.einsum(
"vlm,vld->vmd", violin_attn_scores,
frame_embeddings) # (Nv, 1, D)
return violin_pooled_video.squeeze(1)
def forward(self, batch, task='videoQA', compute_loss=True):
batch = defaultdict(lambda: None, batch)
if task == "videoQA" or task == "violin":
targets = batch['targets'].squeeze(-1)
c_attn_masks = batch["c_attn_masks"]
# (num_video * 5, num_frames, hid_size)
v_encoder_output = self.v_encoder.forward_repr(
batch, encode_clip=False)
if isinstance(v_encoder_output, tuple):
frame_embeddings, c_attn_masks = v_encoder_output
else:
frame_embeddings = v_encoder_output
if self.v_encoder.c_encoder is not None:
frame_embeddings = self.v_encoder.c_encoder.embeddings(
frame_embeddings,
position_ids=None)
qa_embeddings = self.v_encoder.f_encoder._compute_txt_embeddings(
batch["qa_input_ids"], batch["qa_pos_ids"],
txt_type_ids=None)
frame_qa_embeddings = torch.cat(
(frame_embeddings, qa_embeddings), dim=1)
frame_qa_attn_mask = torch.cat(
(c_attn_masks, batch["qa_attn_masks"]), dim=1)
fused_video_qa = self.v_encoder.c_encoder.forward_encoder(
frame_qa_embeddings, frame_qa_attn_mask)
num_frames = c_attn_masks.shape[1]
video_embeddings = fused_video_qa[:, :num_frames, :]
else:
raise ValueError("c_encoder is None in v_encoder")
if task == "videoQA":
num_videos = len(targets)
num_frames, hid_size = video_embeddings.shape[1:3]
video_embeddings = video_embeddings.view(
num_videos, -1, num_frames, hid_size)
video_masks = c_attn_masks.view(num_videos, -1, num_frames)
video_masks = video_masks.to(dtype=video_embeddings.dtype)
(st_ed_pooled_video, qa_pooled_video
) = self.get_modularized_video(
video_embeddings, video_masks)
pred_st_ed = self.st_ed_pred_head(st_ed_pooled_video)
st_prob = mask_logits(pred_st_ed[:, :, 0], video_masks[:, 0])
ed_prob = mask_logits(pred_st_ed[:, :, 1], video_masks[:, 0])
logits = self.qa_pred_head(qa_pooled_video).squeeze(-1)
else:
video_masks = c_attn_masks.to(dtype=video_embeddings.dtype)
qa_pooled_video = self.get_modularized_video(
video_embeddings, video_masks, violin=True)
logits = self.qa_pred_head(qa_pooled_video)
if compute_loss:
if task == "videoQA":
ts_targets = batch["ts_targets"]
st_target, ed_target = ts_targets[:, 0], ts_targets[:, 1]
st_loss = F.cross_entropy(
st_prob, st_target, reduction="mean",
ignore_index=-1)
ed_loss = F.cross_entropy(
ed_prob, ed_target, reduction="mean",
ignore_index=-1)
temporal_loss = (st_loss + ed_loss)/2.
qa_loss = F.cross_entropy(
logits, targets, reduction='mean',
ignore_index=-1)
return qa_loss, temporal_loss
else:
targets = batch['targets']
scores = torch.sigmoid(logits).squeeze(-1)
targets = targets.squeeze(-1).to(dtype=scores.dtype)
qa_loss = F.binary_cross_entropy(
scores, targets, reduction='mean')
return qa_loss
else:
return logits
else:
raise ValueError(f'Unrecognized task: {task}')
| 0
| 0
| 0
| 6,076
| 0
| 0
| 0
| 41
| 201
|
a41809e1c5cdadc95d16313cf867c2d8f5f87176
| 24,261
|
py
|
Python
|
cardgame_channels_app/tests.py
|
cyface/cardgame_channels
|
22f2bef190ee20999eae27e6aa9ce138a78ae47f
|
[
"MIT"
] | null | null | null |
cardgame_channels_app/tests.py
|
cyface/cardgame_channels
|
22f2bef190ee20999eae27e6aa9ce138a78ae47f
|
[
"MIT"
] | null | null | null |
cardgame_channels_app/tests.py
|
cyface/cardgame_channels
|
22f2bef190ee20999eae27e6aa9ce138a78ae47f
|
[
"MIT"
] | null | null | null |
import logging
LOGGER = logging.getLogger("cardgame_channels_app")
| 61.420253
| 228
| 0.676765
|
import logging
from channels.test import ChannelTestCase, WSClient
from .game_logic import add_player_to_game
from .models import Player, Game, CardGamePlayer, Card
LOGGER = logging.getLogger("cardgame_channels_app")
class GameModelTests(ChannelTestCase):
fixtures = ['test_card_data.json'] # 100 green and 100 red cards
def setUp(self):
self.game1 = Game.objects.create(pk=1, code='abcd')
def test_cards(self):
player = add_player_to_game(self.game1.code, 'tim')
self.assertIsNotNone(str(player))
self.assertEqual(6, len(player.cardgameplayer_set.all()))
# Pull by CGP
cgps_in_hand = CardGamePlayer.objects.filter(player=player, game=player.game, status=CardGamePlayer.HAND)
self.assertEqual(5, len(cgps_in_hand))
self.assertIsNotNone(str(cgps_in_hand[0]))
# Pull by Card
cards_in_hand = Card.objects.filter(cardgameplayer__player=player, cardgameplayer__game=player.game, cardgameplayer__status=CardGamePlayer.HAND)
self.assertEqual(5, len(cards_in_hand))
self.assertIsNotNone(str(cards_in_hand[0]))
def test_game(self):
self.assertIsNotNone(str(self.game1))
class GameConsumerTests(ChannelTestCase):
fixtures = ['test_card_data.json'] # 100 green and 100 red cards
def setUp(self):
self.game1 = Game.objects.create(pk=1, code='abcd')
def test_create_game(self):
client = WSClient()
while client.receive():
pass # Grab connection success message from each consumer
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'create_game', 'payload': {}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual(receive_reply.get('stream'), 'create_game')
self.assertEqual(4, len(receive_reply.get('payload').get('data').get('game_code')))
disconnect_consumer = client.send_and_consume('websocket.disconnect', path='/game/')
disconnect_consumer.close()
def test_join_game_errors(self):
client = WSClient()
client.send_and_consume('websocket.connect', path='/game/') # Connect is forwarded to ALL multiplexed consumers under this demultiplexer
while client.receive():
pass # Grab connection success message from each consumer
# Test Player Name Too Long
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': 'abcd', 'player_name': '1234567891011121314151617181920'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertIn('most 10', receive_reply.get('payload').get('data').get('errors').get('player_name')[0])
# Test Game Code Missing
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': '', 'player_name': '123456789'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertIn('required', receive_reply.get('payload').get('data').get('errors').get('game_code')[0])
# Test Player Name Missing
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': 'abcd', 'player_name': ''}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertIn('required', receive_reply.get('payload').get('data').get('errors').get('player_name')[0])
# Test Empty Submit
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': '', 'player_name': ''}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertIn('required', receive_reply.get('payload').get('data').get('errors').get('game_code')[0])
self.assertIn('required', receive_reply.get('payload').get('data').get('errors').get('player_name')[0])
# Test Game Code Doesn't Exist
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': '1234', 'player_name': '123456789'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertIn('does not exist', receive_reply.get('payload').get('data').get('errors').get('game_code')[0])
# Test Player Name Taken
add_player_to_game('abcd', 'my_player')
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': 'abcd', 'player_name': 'my_player'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertIn('already taken', receive_reply.get('payload').get('data').get('errors').get('player_name')[0])
Player.objects.get(name='my_player').delete()
# Test HTML in Code/Player
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': 'a<b>', 'player_name': '©<b>'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
data = receive_reply.get('payload').get('data')
self.assertIsNotNone(data.get('error'))
disconnect_consumer = client.send_and_consume('websocket.disconnect', path='/game/')
disconnect_consumer.close()
def test_join_game(self):
client = WSClient()
client.send_and_consume('websocket.connect', path='/game/') # Connect is forwarded to ALL multiplexed consumers under this demultiplexer
while client.receive():
pass # Grab connection success message from each consumer
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': 'abcd', 'player_name': 'tim'}}) # Text arg is JSON as if it came from browser
# Joined Event to Player
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('join_game', receive_reply.get('stream'))
# Player Joined Group Event
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('player_joined_game', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual(1, len(data.get('players')))
self.assertEqual('judge', data.get('players')[0].get('status'))
self.assertEqual('tim', data.get('player').get('name'))
tim = Player.objects.get(name='tim')
self.assertIsNotNone(Player.objects.get(name='tim', game__code='abcd'))
self.assertEqual(6, len(tim.card_set.all())) # 5 red, one green
disconnect_consumer = client.send_and_consume('websocket.disconnect', path='/game/')
disconnect_consumer.close()
def test_validate_game_code(self):
client = WSClient()
client.send_and_consume('websocket.connect', path='/game/') # Connect is forwarded to ALL multiplexed consumers under this demultiplexer
while client.receive():
pass # Grab connection success message from each consumer
# Valid Test
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'validate_game_code', 'payload': {'game_code': 'abcd'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual(receive_reply.get('stream'), 'validate_game_code')
self.assertEqual('abcd', receive_reply.get('payload').get('data').get('game_code'))
self.assertTrue(receive_reply.get('payload').get('data').get('valid'))
# Invalid Test
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'validate_game_code', 'payload': {'game_code': '1234'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual(receive_reply.get('stream'), 'validate_game_code')
self.assertEqual('1234', receive_reply.get('payload').get('data').get('game_code'))
self.assertFalse(receive_reply.get('payload').get('data').get('valid'))
disconnect_consumer = client.send_and_consume('websocket.disconnect', path='/game/')
disconnect_consumer.close()
def test_validate_player_name(self):
client = WSClient()
client.send_and_consume('websocket.connect', path='/game/') # Connect is forwarded to ALL multiplexed consumers under this demultiplexer
while client.receive():
pass # Grab connection success message from each consumer
# Available Test
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'validate_player_name', 'payload': {'game_code': 'abcd', 'player_name': 'tim'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual(receive_reply.get('stream'), 'validate_player_name')
self.assertEqual('abcd', receive_reply.get('payload').get('data').get('game_code'))
self.assertTrue(receive_reply.get('payload').get('data').get('valid'))
# Invalid Test
add_player_to_game(self.game1.code, 'tim')
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'validate_player_name', 'payload': {'game_code': 'abcd', 'player_name': 'tim'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual(receive_reply.get('stream'), 'validate_player_name')
self.assertEqual('abcd', receive_reply.get('payload').get('data').get('game_code'))
self.assertFalse(receive_reply.get('payload').get('data').get('valid'))
disconnect_consumer = client.send_and_consume('websocket.disconnect', path='/game/')
disconnect_consumer.close()
def test_pick_card(self):
client = WSClient()
client.send_and_consume('websocket.connect', path='/game/') # Connect is forwarded to ALL multiplexed consumers under this demultiplexer
while client.receive():
pass # Grab connection success message from each consumer
# Invalid Test
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'pick_card', 'payload': {'game_code': '1234'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual(receive_reply.get('stream'), 'pick_card')
self.assertFalse(receive_reply.get('payload').get('data').get('valid'))
disconnect_consumer = client.send_and_consume('websocket.disconnect', path='/game/')
disconnect_consumer.close()
def test_submit_card(self):
client = WSClient()
client.send_and_consume('websocket.connect', path='/game/') # Connect is forwarded to ALL multiplexed consumers under this demultiplexer
while client.receive():
pass # Grab connection success message from each consumer
# Invalid Test
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'submit_card', 'payload': {'game_code': '1234'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual(receive_reply.get('stream'), 'submit_card')
self.assertFalse(receive_reply.get('payload').get('data').get('valid'))
disconnect_consumer = client.send_and_consume('websocket.disconnect', path='/game/')
disconnect_consumer.close()
def test_boot_player(self):
client = WSClient()
client.send_and_consume('websocket.connect', path='/game/') # Connect is forwarded to ALL multiplexed consumers under this demultiplexer
while client.receive():
pass # Grab connection success message from each consumer
# Add extra player for valid test
add_player_to_game(self.game1.code, 'tim')
# Join Game
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': self.game1.code, 'player_name': 'bob'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
bob_pk = receive_reply.get('payload').get('data').get('player').get('pk')
self.assertEqual('join_game', receive_reply.get('stream'))
# Join Game Broadcast
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
# Valid Test
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'boot_player', 'payload': {'game_code': self.game1.code, 'player_pk': bob_pk}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual(receive_reply.get('stream'), 'boot_player')
self.assertEqual(self.game1.code, receive_reply.get('payload').get('data').get('game_code'))
self.assertEqual('bob', receive_reply.get('payload').get('data').get('player_name'))
self.assertTrue(receive_reply.get('payload').get('data').get('valid'))
self.assertFalse(Player.objects.filter(pk=bob_pk))
# Invalid Test
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'boot_player', 'payload': {'game_code': self.game1.code, 'player_pk': 99}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual(receive_reply.get('stream'), 'boot_player')
self.assertEqual(self.game1.code, receive_reply.get('payload').get('data').get('game_code'))
self.assertFalse(receive_reply.get('payload').get('data').get('valid'))
disconnect_consumer = client.send_and_consume('websocket.disconnect', path='/game/')
disconnect_consumer.close()
def test_whole_game(self):
client = WSClient()
client.send_and_consume('websocket.connect', path='/game/') # Connect is forwarded to ALL multiplexed consumers under this demultiplexer
while client.receive():
pass # Grab connection success message from each consumer
# Create a game
client.send_and_consume('websocket.receive', path='/game/create/', text={'stream': 'create_game', 'payload': {}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual('create_game', receive_reply.get('stream'))
game_code = receive_reply.get('payload').get('data').get('game_code')
# Join the game
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': game_code, 'player_name': 'tim'}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('join_game', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual(5, len(data.get('player_cards')))
self.assertEqual('tim', data.get('judge').get('name'))
self.assertIsNotNone(data.get('green_card').get('name'))
# Player Join Event
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('player_joined_game', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual(1, len(data.get('players')))
self.assertEqual('judge', data.get('players')[0].get('status'))
self.assertEqual('tim', data.get('player').get('name'))
# Set up player 2
client2 = WSClient()
client2.send_and_consume('websocket.connect', path='/game/') # Connect is forwarded to ALL multiplexed consumers under this demultiplexer
while client2.receive():
pass # Grab connection success message from each consumer
# Player 2: join the game
client2.send_and_consume('websocket.receive', path='/game/', text={'stream': 'join_game', 'payload': {'game_code': game_code, 'player_name': 'bob'}}) # Text arg is JSON as if it came from browser
receive_reply = client2.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('join_game', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
submitted_card_pk = data.get('player_cards')[0].get('pk')
self.assertEqual(5, len(data.get('player_cards')))
self.assertEqual('tim', data.get('judge').get('name'))
self.assertIsNotNone(data.get('green_card').get('name'))
# Player2 Join Event
receive_reply = client2.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('player_joined_game', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual('bob', data.get('player').get('name'))
self.assertEqual(2, len(data.get('players')))
self.assertEqual('bob', data.get('players')[0].get('name'))
self.assertEqual('tim', data.get('players')[1].get('name'))
self.assertEqual('waiting', data.get('players')[0].get('status'))
self.assertEqual('judge', data.get('players')[1].get('status'))
# Player2 Join Event - Seen by Player 1
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
self.assertEqual('player_joined_game', receive_reply.get('stream'))
LOGGER.debug(receive_reply)
data = receive_reply.get('payload').get('data')
self.assertEqual('bob', data.get('player').get('name'))
# Player 2: Submit Card
client2.send_and_consume('websocket.receive', path='/game/', text={'stream': 'submit_card', 'payload': {'game_code': game_code, 'card_pk': submitted_card_pk}}) # Text arg is JSON as if it came from browser
receive_reply = client2.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('submit_card', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual(4, len(data.get('cards')))
# Player 2: Submit Card - Group Notification
receive_reply = client2.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('card_was_submitted', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual('bob', data.get('submitting_player').get('name'))
# Player 1: Submit Card - Group Notification
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('card_was_submitted', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual('bob', data.get('submitting_player').get('name'))
# Player 1 Pick Card - Group notification
client.send_and_consume('websocket.receive', path='/game/', text={'stream': 'pick_card', 'payload': {'game_code': game_code, 'card_pk': submitted_card_pk}}) # Text arg is JSON as if it came from browser
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('pick_card', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual('bob', data.get('picked_player').get('name'))
self.assertEqual(1, data.get('players')[0].get('score')) # Point to bob
self.assertEqual(0, data.get('players')[1].get('score')) # Tim's score should not have changed
# Player 2: Pick Card - Group notification
receive_reply = client2.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertEqual('pick_card', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual('bob', data.get('picked_player').get('name'))
self.assertEqual(1, data.get('players')[0].get('score')) # Point to bob
self.assertEqual(0, data.get('players')[1].get('score')) # Tim's score should not have changed
# Player 1: Get New Cards Message
receive_reply = client.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertIsNotNone(receive_reply)
self.assertEqual('new_cards', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual(5, len(data.get('cards')))
self.assertEqual('bob', data.get('judge').get('name')) # Bob's card was picked so he should now be the judge
self.assertIsNotNone(data.get('green_card').get('name'))
# Player 2: Get New Cards Message
receive_reply = client2.receive() # receive() grabs the content of the next message off of the client's reply_channel
LOGGER.debug(receive_reply)
self.assertIsNotNone(receive_reply)
self.assertEqual('new_cards', receive_reply.get('stream'))
data = receive_reply.get('payload').get('data')
self.assertEqual(5, len(data.get('cards')))
self.assertEqual('bob', data.get('judge').get('name')) # Bob's card was picked so he should now be the judge
self.assertIsNotNone(data.get('green_card').get('name'))
disconnect_consumer = client.send_and_consume('websocket.disconnect', path='/game/')
disconnect_consumer.close()
| 0
| 0
| 0
| 23,993
| 0
| 0
| 0
| 84
| 114
|
dce07b739ca43d0c08ddf16db1417665536ad16a
| 16,447
|
py
|
Python
|
pyt_utilities.py
|
realtechsupport/return_to_bali
|
6af3b8163ef583e9d9ad3fb5d381e62714ce8c6f
|
[
"CC-BY-4.0"
] | null | null | null |
pyt_utilities.py
|
realtechsupport/return_to_bali
|
6af3b8163ef583e9d9ad3fb5d381e62714ce8c6f
|
[
"CC-BY-4.0"
] | null | null | null |
pyt_utilities.py
|
realtechsupport/return_to_bali
|
6af3b8163ef583e9d9ad3fb5d381e62714ce8c6f
|
[
"CC-BY-4.0"
] | null | null | null |
# pyt_utilities.py (python3)
# utilities for CNN training with pytorch; data preparation, training, evaluation
# added saving checkpoint
# FEB 2020 / 21
# sources:
# https://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html#load-data
# https://pytorch.org/tutorials/beginner/finetuning_torchvision_models_tutorial.html
#updated normalization mean and std:
#mean [0.4597244970012637, 0.4887084808460421, 0.46925360649661096]
#std [0.20728858675971737, 0.2048932794469992, 0.21645177513430724]
#-------------------------------------------------------------------------------
from torchvision import transforms
import torch.optim as optim
bali26_class_names = ['aroid', 'bamboo', 'banana', 'cacao', 'cinnamon', 'coffeearabica', 'dragonfruit', 'durian', 'frangipani', 'guava', \
'jackfruit', 'lychee', 'mango', 'mangosteen', 'nilam', 'papaya', 'passiflora', \
'sawo', 'snakefruit', 'starfruit', 'sugarpalm', 'taro', 'vanilla', 'waterguava', 'whitepepper', 'zodia']
#files on pCloud
bali26_alexnet = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/models/bali26_alexnet.pth'
bali26_resnet152 = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/models/bali26_resnet152.pth'
bali26_rexnext50 = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/models/bali26_resnext50.pth'
bali26_samples_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali26samples.zip'
bali3_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali-3.zip'
bali3B_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali-3B.zip'
bali3C_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali-3C.zip'
bali3D_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali-3D.zip'
tests_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/tests.zip'
bali_mixedplants_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali_mixedplants.zip'
#-------------------------------------------------------------------------------
data_transforms = {
'train': transforms.Compose([
transforms.RandomResizedCrop(224),
transforms.RandomHorizontalFlip(),
transforms.ToTensor(),
transforms.Normalize([0.4597, 0.4887, 0.4692], [0.2072, 0.2048, 0.2164]) #bali26
#transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
]),
'val': transforms.Compose([
transforms.Resize(256),
transforms.CenterCrop(224),
transforms.ToTensor(),
transforms.Normalize([0.4597, 0.4887, 0.4692], [0.2072, 0.2048, 0.2164]) #bali26
#transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
]),
}
predict_transform = transforms.Compose([
transforms.CenterCrop(224),
transforms.ToTensor(),
transforms.Normalize([0.4597, 0.4887, 0.4692], [0.2072, 0.2048, 0.2164]) #bali26
#transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
])
#-------------------------------------------------------------------------------
#simple three layer CNN for 224 x 224 input; reduced alexnet; untrained by default
#https://github.com/pytorch/vision/blob/master/torchvision/models/alexnet.py
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
#def train_model(checkpointname, model, criterion, optimizer, scheduler, num_epochs, output):
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
| 42.830729
| 196
| 0.588436
|
# pyt_utilities.py (python3)
# utilities for CNN training with pytorch; data preparation, training, evaluation
# added saving checkpoint
# FEB 2020 / 21
# sources:
# https://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html#load-data
# https://pytorch.org/tutorials/beginner/finetuning_torchvision_models_tutorial.html
#updated normalization mean and std:
#mean [0.4597244970012637, 0.4887084808460421, 0.46925360649661096]
#std [0.20728858675971737, 0.2048932794469992, 0.21645177513430724]
#-------------------------------------------------------------------------------
import os, sys, time, random, itertools
import torch, torchvision
from torch.optim import lr_scheduler
from torch.autograd import Variable
from torchvision import models, datasets, transforms
import torch.nn.functional as F
from torch import utils
import torch.optim as optim
from PIL import Image
import numpy
import array
import urllib, glob, shutil
from shutil import copyfile, copy
from copy import deepcopy
import matplotlib.pyplot as plt
from plot_helper import *
from utilities import *
bali26_class_names = ['aroid', 'bamboo', 'banana', 'cacao', 'cinnamon', 'coffeearabica', 'dragonfruit', 'durian', 'frangipani', 'guava', \
'jackfruit', 'lychee', 'mango', 'mangosteen', 'nilam', 'papaya', 'passiflora', \
'sawo', 'snakefruit', 'starfruit', 'sugarpalm', 'taro', 'vanilla', 'waterguava', 'whitepepper', 'zodia']
#files on pCloud
bali26_alexnet = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/models/bali26_alexnet.pth'
bali26_resnet152 = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/models/bali26_resnet152.pth'
bali26_rexnext50 = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/models/bali26_resnext50.pth'
bali26_samples_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali26samples.zip'
bali3_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali-3.zip'
bali3B_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali-3B.zip'
bali3C_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali-3C.zip'
bali3D_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali-3D.zip'
tests_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/tests.zip'
bali_mixedplants_zip = 'https://filedn.com/lqzjnYhpY3yQ7BdfTulG1yY/bali_mixedplants.zip'
#-------------------------------------------------------------------------------
data_transforms = {
'train': transforms.Compose([
transforms.RandomResizedCrop(224),
transforms.RandomHorizontalFlip(),
transforms.ToTensor(),
transforms.Normalize([0.4597, 0.4887, 0.4692], [0.2072, 0.2048, 0.2164]) #bali26
#transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
]),
'val': transforms.Compose([
transforms.Resize(256),
transforms.CenterCrop(224),
transforms.ToTensor(),
transforms.Normalize([0.4597, 0.4887, 0.4692], [0.2072, 0.2048, 0.2164]) #bali26
#transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
]),
}
predict_transform = transforms.Compose([
transforms.CenterCrop(224),
transforms.ToTensor(),
transforms.Normalize([0.4597, 0.4887, 0.4692], [0.2072, 0.2048, 0.2164]) #bali26
#transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
])
#-------------------------------------------------------------------------------
#simple three layer CNN for 224 x 224 input; reduced alexnet; untrained by default
#https://github.com/pytorch/vision/blob/master/torchvision/models/alexnet.py
class vanillanet(torch.nn.Module):
def __init__(self, num_classes):
super(vanillanet, self).__init__()
self.cnn_layers = torch.nn.Sequential(
torch.nn.Conv2d(3, 64, kernel_size=11, stride=4, padding=2),
torch.nn.ReLU(inplace=True),
torch.nn.MaxPool2d(kernel_size=3, stride=2),
torch.nn.Conv2d(64, 192, kernel_size=5, padding=2),
torch.nn.ReLU(inplace=True),
torch.nn.MaxPool2d(kernel_size=3, stride=2),
torch.nn.Conv2d(192, 256, kernel_size=3, padding=1),
torch.nn.ReLU(inplace=True),
torch.nn.MaxPool2d(kernel_size=3, stride=2),
)
self.avgpool = torch.nn.AdaptiveAvgPool2d((6, 6))
self.classifier = torch.nn.Sequential(
torch.nn.Dropout(),
torch.nn.Linear(256 * 6 * 6, 4096),
torch.nn.ReLU(inplace=True),
torch.nn.Linear(4096, num_classes),
)
def forward(self, x):
x = self.cnn_layers(x)
x = self.avgpool(x)
x = torch.flatten(x, 1)
x = self.classifier(x)
return (x)
#-------------------------------------------------------------------------------
def prune_imageset(datapath, categories, limit, randomprune):
for i in range(0, len(categories)):
files = list(filter(os.path.isfile, glob.glob(datapath + categories[i] + '/' + "*")))
if(randomprune == True):
#random.shuffle(files)
shuffle(files)
else:
files.sort(key=lambda x: os.path.getmtime(x))
for i in range (0, len(files)):
if(i < limit):
pass
else:
print("random?, getting rid of: ", randomprune, files[i])
os.remove(files[i])
#-------------------------------------------------------------------------------
def create_train_val_sets(datapath, categories, percentage):
train = datapath + 'train/'
val = datapath + 'val/'
if not os.path.exists(train):
os.mkdir(train)
for k in categories:
os.mkdir(train + k)
if not os.path.exists(val):
os.mkdir(val)
for k in categories:
os.mkdir(val + k)
os.chdir(datapath)
try:
i = categories.index('train'); j = categories.index('val')
p,d,f = next(os.walk(categories[i]))
del categories[i]; del categories[j]
except:
pass
print('here are the categories: ', categories)
for i in range(0, len(categories)):
files = list(filter(os.path.isfile, glob.glob(datapath + categories[i] + '/' + "*")))
files.sort(key=lambda x: os.path.getmtime(x))
traininglimit = int(percentage*len(files))
print('\ncategory: ', categories[i])
print('number files for training: ', traininglimit)
print('number files for validation: ', (len(files) - traininglimit))
for j in range (0, len(files)):
filename = files[j].split('/')[-1]
filecatname = categories[i] + '/' + filename
if(j < traininglimit):
filecatnametrain = train + filecatname
shutil.copy(files[j], filecatnametrain)
else:
filecatnameval = val + filecatname
shutil.copy(files[j], filecatnameval)
#-------------------------------------------------------------------------------
#def train_model(checkpointname, model, criterion, optimizer, scheduler, num_epochs, output):
def train_model(app, checkpointname, network, testcollection, model, categories, datapath, epochs, gamma, lr, momentum, max_images, training_percentage, pretrained, training_image, normalization):
prune_imageset(datapath, categories, max_images, randomprune=True)
#check if they esist, if so, delete and re-create
create_train_val_sets(datapath, categories, training_percentage)
device = ("cuda" if torch.cuda.is_available() else "cpu" )
image_datasets = {x: datasets.ImageFolder(os.path.join(datapath, x), data_transforms[x]) for x in ['train', 'val']}
dataloaders = {x: torch.utils.data.DataLoader(image_datasets[x], batch_size=4,shuffle=True, num_workers=4) for x in ['train', 'val']}
dataset_sizes = {x: len(image_datasets[x]) for x in ['train', 'val']}
class_names = image_datasets['train'].classes
model = model.to(device)
criterion = torch.nn.CrossEntropyLoss()
optimizer = torch.optim.SGD(model.parameters(), lr, momentum)
step_size = 7
scheduler = lr_scheduler.StepLR(optimizer, step_size, gamma)
#---------------------------------------------------------------------------
since = time.time()
best_acc = 0.0
e_val_loss = []; e_train_loss = []
e_val_acc = []; e_train_acc = []
for epoch in range(epochs):
print('Epoch {}/{}'.format(epoch, epochs - 1))
print('-' * 10)
# Each epoch has a training and validation phase
for phase in ['train', 'val']:
if phase == 'train':
print('training...')
model.train() # Set model to training mode
else:
print('evaluating...')
model.eval() # Set model to evaluate mode
running_loss = 0.0; running_corrects = 0
for inputs, labels in dataloaders[phase]:
inputs = inputs.to(device)
labels = labels.to(device)
# zero the parameter gradients
optimizer.zero_grad()
# forward; track history if only in train
with torch.set_grad_enabled(phase == 'train'):
outputs = model(inputs)
_, preds = torch.max(outputs, 1)
loss = criterion(outputs, labels)
# backward + optimize only if in training phase
if phase == 'train':
loss.backward()
optimizer.step()
running_loss += loss.item() * inputs.size(0)
running_corrects += torch.sum(preds == labels.data)
if phase == 'train':
scheduler.step()
epoch_loss = running_loss / dataset_sizes[phase]
epoch_acc = running_corrects.double() / dataset_sizes[phase]
print('{} Loss: {:.4f} Acc: {:.4f}'.format(phase, epoch_loss, epoch_acc))
loss = float('{:.4f}'.format(epoch_loss))
acc = float('{:.4f}'.format(epoch_acc))
if(phase == 'train'):
e_train_loss.append(loss)
e_train_acc.append(acc)
if(phase == 'val'):
e_val_loss.append(loss)
e_val_acc.append(acc)
if (phase == 'val' and epoch_acc > best_acc):
best_acc = epoch_acc
best_model_wts = deepcopy(model.state_dict())
checkpoint = {'model': model,'state_dict': model.state_dict(), 'optimizer' : optimizer.state_dict()}
print()
time_elapsed = time.time() - since
model.load_state_dict(best_model_wts)
torch.save(checkpoint, checkpointname)
print('Training complete in {:.0f}m {:.0f}s'.format(time_elapsed // 60, time_elapsed % 60))
print('Best val Acc: {:4f}'.format(best_acc))
print('\nPlotting results...')
plot_training(e_val_loss, e_train_loss, e_val_acc, e_train_acc, training_image)
toperrors_filename = os.path.join(app.config['RESULTS'], 'top_errors.csv')
tk=3; processor=device; tpp=int(100 * training_percentage)
get_toperrors(datapath, checkpointname, network, testcollection, predict_transform, tk, processor, toperrors_filename, pretrained, tpp, normalization, epochs, max_images)
toperrors_image = os.path.join(app.config['RESULTS'], 'top_errors.jpg')
ttp = int(100*training_percentage)
plot_toperrors(datapath, testcollection, network, toperrors_filename, toperrors_image, pretrained, epochs, max_images, ttp)
nwidth = 680; resize_image(training_image, nwidth)
nwidth = 640; resize_image(toperrors_image, nwidth)
return (training_image, toperrors_image)
#-------------------------------------------------------------------------------
def get_toperrors(datapath, checkpointname, network, testcollection, predict_transform, tk, processor, toperrors_filename, pretrained, tpp, normalization, epochs, max_images):
print('\n> Getting top errors <')
if(pretrained == True):
if('bali' in normalization):
comment_t = testcollection + ', ' + network + ', pretrainedyes' + ', ' + str(tpp) + ', ' + str(epochs) + ', ' + str(max_images) + ', ' + 'balinorms'
else:
comment_t = testcollection+ ', ' + network + ', pretrainedyes' + ', ' + str(tpp) + ', ' + str(epochs) + ', ' + str(max_images) + ', ' + ''
else:
if('bali' in normalization):
comment_t = testcollection + ', ' + network + ', pretrainedNO' + ', ' + str(tpp) + ', ' + str(epochs) + ', ' + str(max_images) + ', ' + 'balinorms'
else:
comment_t = testcollection + ', ' + network + ', pretrainedNO' + ', ' + str(tpp) + ', ' + str(epochs) + ', ' + str(max_images) + ', ' + ''
image_datasets = {x: datasets.ImageFolder(os.path.join(datapath, x), data_transforms[x]) for x in ['train', 'val']}
class_names = image_datasets['train'].classes
try:
model = load_checkpoint(checkpointname, processor)
except:
print('That model does not exist... ')
exit()
for i in range (0, len(class_names)):
fulldatapath = datapath + 'val/' + class_names[i] + '/'
path, dirs, files = next(os.walk(fulldatapath))
limit = len(files)
top1 = 0; topN = 0; tk = 3
for j in range (0, limit):
image_path = next(itertools.islice(os.scandir(fulldatapath), j, None)).path
predictions, percentage, outcategory = predict_image(image_path, model, predict_transform, class_names, tk, processor)
topN_ind = predictions[1].tolist()[0]
top1_ind = topN_ind[0]
input = image_path.split('/')[-2], image_path.split('/')[-1]
#check input[1] to find problematic images / categories of confusion
#print('\ninput: ', input); print('output: ', outcategory, percentage)
if(class_names[top1_ind] == input[0]):
top1 = top1 + 1
#if(check_topN(class_names, topN_ind, tk, input[0]) == 1):
# topN = topN + 1
top1_score = float(top1 / limit)
top1_error = 100*float("%.3f" %(1.0 - top1_score))
#topN_score = float(topN / limit)
#topN_error = 100*float("%.3f" %(1.0 - topN_score))
#comment = comment_t + ', ' + str(class_names[i]) + ', top1-error, ' + str(top1_error) + ', top' + str(tk) + '-error, ' + str(topN_error)
comment = comment_t + ', ' + str(class_names[i]) + ', top1-error, ' + str(top1_error)
print(comment)
write2file(toperrors_filename, comment)
#-------------------------------------------------------------------------------
def predict_image(image_path, model, predict_transform, class_names, tk, processor):
img = Image.open(image_path)
img_t = predict_transform(img)
if((processor == 'gpu') or (processor == 'cuda')):
batch_t = torch.unsqueeze(img_t, 0).cuda()
else:
batch_t = torch.unsqueeze(img_t, 0).cpu()
model.eval()
output = model(batch_t)
predictions = output.topk(tk,1,largest=True,sorted=True)
_, index = torch.max(output, 1)
t_percentage = torch.nn.functional.softmax(output, dim=1)[0] * 100
percentage = t_percentage[index[0]].item()
percentage = '%.1f'%(percentage)
category = class_names[index[0]]
return(predictions, percentage, category)
#-------------------------------------------------------------------------------
def check_topN(class_names, topNlist, tk, input):
topN = 0
for i in range (0, len(topNlist)):
if(class_names[topNlist[i]] == input):
topN = 1
break
return(topN)
#-------------------------------------------------------------------------------
def load_checkpoint(filepath, processor):
if(processor == 'gpu'):
checkpoint = torch.load(filepath)
else:
checkpoint = torch.load(filepath, map_location=torch.device('cpu'))
model = checkpoint['model']
model.load_state_dict(checkpoint['state_dict'])
for parameter in model.parameters():
parameter.requires_grad = False
model.eval()
return (model)
#-------------------------------------------------------------------------------
def resize_image(inputimage, newwidth):
img = Image.open(inputimage)
wpercent = (newwidth/float(img.size[0]))
hsize = int((float(img.size[1])*float(wpercent)))
resized_image = img.resize((newwidth,hsize), Image.ANTIALIAS)
resized_image.save(inputimage)
#-------------------------------------------------------------------------------
| 0
| 0
| 0
| 1,102
| 0
| 10,861
| 0
| 101
| 529
|
ae1a7f1f3b28ebe4b6ed9d9b5a1557a03091f6d4
| 10,706
|
py
|
Python
|
data_preperation/cricsheet/load_data.py
|
vv-varun/IPL-DataAnalysis
|
936827aedcbc4f0a2204888210b3e20fcd46b0e6
|
[
"MIT"
] | null | null | null |
data_preperation/cricsheet/load_data.py
|
vv-varun/IPL-DataAnalysis
|
936827aedcbc4f0a2204888210b3e20fcd46b0e6
|
[
"MIT"
] | null | null | null |
data_preperation/cricsheet/load_data.py
|
vv-varun/IPL-DataAnalysis
|
936827aedcbc4f0a2204888210b3e20fcd46b0e6
|
[
"MIT"
] | null | null | null |
import mysql.connector
from os import path
import shutil
db_connection = mysql.connector.connect(
host="localhost",
port=3308,
user="root",
passwd="",
database="ipldata"
)
# Global Variable
player_data = {}
# Query Team details by name
# Add new player to DB.
# Get Player details by name
# Read data from YAML file
# Read files from folders
# Upload data into MySQL DB
# Parse Innings data
###### Main Program ######
# Read files to load from directory
files = readFilesInFolder()
# Read Data from the file.
for file in files:
print("Processing file: " + file)
match_data = readDataFromFile(file)
#print(match_data['info'])
# Upload into DB
parseAndUploadDataToDB(match_data)
shutil.move(path.dirname(__file__) + "/to_load/" + file, path.dirname(__file__) + "/done/" + file)
print("I'm done here !")
| 37.697183
| 153
| 0.621054
|
import mysql.connector
import yaml
from os import path, listdir
import shutil
import datetime
db_connection = mysql.connector.connect(
host="localhost",
port=3308,
user="root",
passwd="",
database="ipldata"
)
# Global Variable
player_data = {}
# Query Team details by name
def queryTeamDetailsByName(team_name):
my_database = db_connection.cursor()
sql_statement = "SELECT * FROM teams WHERE Team_Name = '" + team_name + "'"
my_database.execute(sql_statement)
result_set = my_database.fetchall()
for team in result_set:
team_details = {"id":team[1], "team_name": team[2]}
return team_details
# Add new player to DB.
def addPlayer(player_name):
# Here we assume that the player does not exist.
# To keep it safe - lets add a unique index on Player name
my_database = db_connection.cursor()
sql_statement = "SELECT max(Player_Id) as C FROM players"
my_database.execute(sql_statement)
result_set = my_database.fetchall()
id = result_set[0][0] + 1
# Now insert.
sql_statement = "INSERT INTO players (PLAYER_SK, Player_Id, Player_Name) VALUES (%s, %s, %s)"
values = (id,id,player_name)
my_database.execute(sql_statement, values)
db_connection.commit()
return {"id":id, "player_name": player_name}
# Get Player details by name
def getPlayerDetailsByName(player_name):
if player_name == '': return {"id":"","player_name":player_name}
if player_name in player_data:
return player_data[player_name]
else:
my_database = db_connection.cursor()
sql_statement = "SELECT * FROM players WHERE Player_Name = '" + player_name + "'"
my_database.execute(sql_statement)
result_set = my_database.fetchall()
if len(result_set) > 0:
# We found entry
for player in result_set:
player_details = {"id":player[1], "player_name": player[2]}
player_data[player_name] = player_details
#print("Read " + player_name + " from DB")
else:
# This is a new player ! Create entry.
player_details = addPlayer(player_name)
player_data[player_name] = player_details
return player_data[player_name]
# Read data from YAML file
def readDataFromFile(filename):
# Get the filename without extension to extract the match id
match_id = path.splitext(filename)[0]
# Open YAML file and load data
file = path.dirname(__file__) + '/to_load/' + filename
with open(file, 'r') as stream:
try:
match_data = yaml.safe_load(stream)
match_data['info']['match_id'] = match_id
except yaml.YAMLError as exc:
print(exc)
return match_data
# Read files from folders
def readFilesInFolder():
return listdir(path.dirname(__file__) + "/to_load")
# Upload data into MySQL DB
def parseAndUploadDataToDB(match_data):
# Prepare match info.
match_info = {}
ball_details = []
match_info['Match_SK'] = match_info['match_id'] = match_data['info']['match_id']
match_info['Team1'] = match_data['info']['teams'][0]
match_info['Team2'] = match_data['info']['teams'][1]
match_info['match_date_str'] = match_data['info']['dates'][0]
match_info['match_date'] = datetime.datetime.strptime(match_data['info']['dates'][0], "%Y-%m-%d").date()
match_info['Season_Year'] = match_info['match_date'].year
match_info['Venue_Name'] = match_data['info']['venue']
match_info['City_Name'] = match_data['info'].get('city','')
match_info['Country_Name'] = ''
match_info['Toss_Winner'] = match_data['info']['toss']['winner']
match_info['Toss_Name'] = match_data['info']['toss']['decision']
if 'winner' in match_data['info']['outcome'].keys():
match_info['Outcome_Type'] = 'Result'
match_info['match_winner'] = match_data['info']['outcome']['winner']
match_info['Win_Type'] = list(match_data['info']['outcome']['by'].keys())[0]
match_info['Win_Margin'] = list(match_data['info']['outcome']['by'].values())[0]
else:
match_info['Outcome_Type'] = match_data['info']['outcome']['result']
match_info['match_winner'] = ''
match_info['Win_Type'] = ''
match_info['Win_Margin'] = ''
if 'player_of_match' in match_data['info'].keys():
match_info['ManOfMach'] = match_data['info']['player_of_match'][0]
else:
match_info['ManOfMach'] = ''
match_info['Country_id'] = ''
#print(match_info)
first_innings_data = match_data['innings'][0]['1st innings']
fi_team = queryTeamDetailsByName(first_innings_data['team'])
second_innings_data = match_data['innings'][1]['2nd innings']
si_team = queryTeamDetailsByName(second_innings_data['team'])
#Parse 1st innings
first_innings = parseInningsData(first_innings_data)
for bd in first_innings:
bd['match_id'] = match_info['match_id']
bd['innings_no'] = 1
bd['Team_Batting'] = fi_team['id']
bd['Team_Bowling'] = si_team['id']
# Put all details in a list for Update
ball_details.extend(first_innings)
#Parse 2nd Innings
second_innings = parseInningsData(second_innings_data)
for bd in second_innings:
bd['match_id'] = match_info['match_id']
bd['innings_no'] = 2
bd['Team_Batting'] = si_team['id']
bd['Team_Bowling'] = fi_team['id']
# Put all details in a list for Update
ball_details.extend(second_innings)
#May be there are super overs !
if len(match_data['innings']) > 2:
# More than 2 innings ! - Super Over!
so_first_innings_data = list(match_data['innings'][2].values())[0]
so_fi_team = queryTeamDetailsByName(so_first_innings_data['team'])
so_second_innings_data = list(match_data['innings'][3].values())[0]
so_si_team = queryTeamDetailsByName(so_second_innings_data['team'])
so_first_innings = parseInningsData(so_first_innings_data)
for bd in so_first_innings:
bd['match_id'] = match_info['match_id']
bd['innings_no'] = 3
bd['Team_Batting'] = so_fi_team['id']
bd['Team_Bowling'] = so_si_team['id']
ball_details.extend(so_first_innings)
so_second_innings = parseInningsData(so_second_innings_data)
for bd in so_second_innings:
bd['match_id'] = match_info['match_id']
bd['innings_no'] = 4
bd['Team_Batting'] = si_team['id']
bd['Team_Bowling'] = fi_team['id']
ball_details.extend(so_first_innings)
# Now update all in a transaction
uploadDataToDB(match_info, ball_details)
# Print Random for testing
#print(first_innings[20])
#print(first_innings[12])
#print(second_innings[20])
#print(second_innings[7])
return
# Parse Innings data
def parseInningsData(innings_data):
ball_data = []
bowler_wicket_list = ['caught','bowled','lbw','stumped','caught and bowled']
for delivery in innings_data['deliveries']:
ball_no = str(list(delivery.keys())[0])
ball_details = list(delivery.values())[0]
wicket = ball_details.get('wicket', {'player_out':'','kind':'Not Applicable'})
wicket_kind = wicket.get('kind','')
if wicket_kind in bowler_wicket_list:
wicket['Bowler_Wicket'] = 1
else:
wicket['Bowler_Wicket'] = 0
extras = ball_details.get('extras', {})
if (len(extras) > 0): extra_type = list(extras.keys())[0]
else: extra_type = ''
wides = extras.get('wides',0)
legbyes = extras.get('legbyes',0)
noballs = extras.get('noballs',0)
byes = extras.get('byes',0)
bowler_extras = wides + noballs
ball_data.append({
'match_id': '',
'over_id': ball_no.split(".")[0],
'ball_id': ball_no.split(".")[1],
'innings_no': '',
'Team_Batting': '',
'Team_Bowling': '',
'Striker_Batting_Position': '',
'Extra_Type': extra_type,
'Runs_Scored': ball_details['runs']['batsman'],
'Extra_runs': ball_details['runs']['extras'],
'Wides': wides,
'Legbyes': legbyes,
'Byes': byes,
'Noballs': noballs,
'Penalty': '',
'Bowler_Extras': bowler_extras,
'Out_type': wicket['kind'],
'Caught': 1 if wicket_kind == 'caught' else 0,
'Bowled': 1 if wicket_kind == 'bowled' else 0,
'Run_out': 1 if wicket_kind == 'run out' else 0,
'LBW': 1 if wicket_kind == 'lbw' else 0,
'Retired_hurt': 1 if wicket_kind == 'retired hurt' else 0,
'Stumped': 1 if wicket_kind == 'stumped' else 0,
'caught_and_bowled': 1 if wicket_kind == 'caught and bowled' else 0,
'hit_wicket': 1 if wicket_kind == 'hit wicket' else 0,
'ObstructingFeild': 1 if wicket_kind == 'obstructing the field' else 0,
'Bowler_Wicket': wicket['Bowler_Wicket'],
'Striker': getPlayerDetailsByName(ball_details['batsman'])['id'],
'Non_Striker': getPlayerDetailsByName(ball_details['non_striker'])['id'],
'Bowler': getPlayerDetailsByName(ball_details['bowler'])['id'],
'Player_Out': getPlayerDetailsByName(wicket['player_out'])['id'],
'Fielders': '',
'Keeper_Catch': ''
})
#print(ball_data)
return ball_data
def uploadDataToDB(match_info, ball_details):
my_database = db_connection.cursor()
db_connection.start_transaction()
# Insert Match Info
sql_statement = "INSERT INTO matches VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)"
values = tuple(list(match_info.values()))
my_database.execute(sql_statement, values)
sql_statement = "INSERT INTO balldetails VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)"
for bd in ball_details:
values = tuple(list(bd.values()))
my_database.execute(sql_statement, values)
# Insert Ball Details
db_connection.commit()
###### Main Program ######
# Read files to load from directory
files = readFilesInFolder()
# Read Data from the file.
for file in files:
print("Processing file: " + file)
match_data = readDataFromFile(file)
#print(match_data['info'])
# Upload into DB
parseAndUploadDataToDB(match_data)
shutil.move(path.dirname(__file__) + "/to_load/" + file, path.dirname(__file__) + "/done/" + file)
print("I'm done here !")
| 0
| 0
| 0
| 0
| 0
| 9,642
| 0
| -7
| 221
|
a258ffb0adf5980dfb80e491c805881a5b484263
| 5,868
|
py
|
Python
|
resources/mgltools_x86_64Linux2_1.5.6/MGLToolsPckgs/MolKit/groParser.py
|
J-E-J-S/aaRS-Pipeline
|
43f59f28ab06e4b16328c3bc405cdddc6e69ac44
|
[
"MIT"
] | 8
|
2021-12-14T21:30:01.000Z
|
2022-02-14T11:30:03.000Z
|
resources/mgltools_x86_64Linux2_1.5.6/MGLToolsPckgs/MolKit/groParser.py
|
J-E-J-S/aaRS-Pipeline
|
43f59f28ab06e4b16328c3bc405cdddc6e69ac44
|
[
"MIT"
] | null | null | null |
resources/mgltools_x86_64Linux2_1.5.6/MGLToolsPckgs/MolKit/groParser.py
|
J-E-J-S/aaRS-Pipeline
|
43f59f28ab06e4b16328c3bc405cdddc6e69ac44
|
[
"MIT"
] | 1
|
2021-11-04T21:48:14.000Z
|
2021-11-04T21:48:14.000Z
|
#
#
#
#
#
#
#$Id: groParser.py,v 1.11 2006/12/15 19:53:29 annao Exp $
#
"""
Module Gromacs Parser.
"""
import os, types
from MolKit.moleculeParser import MoleculeParser
from MolKit.protein import Protein, Chain, ChainSet, Residue, ResidueSet, ProteinSet
from MolKit.molecule import Atom, AtomSet, Bond, BondSet, HydrogenBond
from PyBabel.babelElements import babel_elements
if __name__ == '__main__':
parser = groParser( filename='/usr/share/gromacs/tutor/methanol/conf.gro' )
print "Reading molecule"
mol = parser.parse()
| 36
| 179
| 0.512781
|
#
#
#
#
#
#
#$Id: groParser.py,v 1.11 2006/12/15 19:53:29 annao Exp $
#
"""
Module Gromacs Parser.
"""
import os,types
from MolKit.moleculeParser import MoleculeParser
from MolKit.protein import Protein, Chain, ChainSet, Residue, ResidueSet, ProteinSet
from MolKit.molecule import Atom, AtomSet, Bond, BondSet, HydrogenBond
from PyBabel.babelElements import babel_elements
class groParser( MoleculeParser ):
def __init__( self, filename=None, allLines=None ):
"""Constructor for groParser: adopted form PdbParser"""
MoleculeParser.__init__( self, filename, allLines )
def parse( self, objClass=Protein ):
if self.allLines is None and self.filename:
self.readFile()
if self.allLines is None or len(self.allLines)==0:
return
mol = Protein()
self.mol = mol
molList = mol.setClass()
molList.append( mol )
current_residue_number = None
current_chain = None
current_residue = None
number_of_atoms = int(self.allLines[1][:5])
self.configureProgressBar( init=1, mode='increment',
authtext='parse atoms', max=number_of_atoms )
current_chain = Chain( id='GRO',)
#FIX this: The existence of allAtoms attribute (and the fact that it is an empty set rather than all atoms in the chain) causes getNodesByMolecule() to return wrong values
if hasattr(current_chain, "allAtoms"):
del(current_chain.allAtoms)
#current_chain = Chain( id='GRO',parent = mol)
mol.adopt( current_chain, setChildrenTop=1 )
for index in range( 2,number_of_atoms+2 ):
residue_number = int(self.allLines[index][:5])
if residue_number!=current_residue_number:#
#current_chain should adopt the current residue if there is one
#create new residue
res_type = self.allLines[index][5:10]
residue_type = res_type.split(' ')[0]
current_residue = Residue( type=residue_type, number=residue_number )
current_residue_number = residue_number
if current_residue is not None: #REMEMBER TO ADOPT THE LAST ONE!!!
current_chain.adopt( current_residue, setChildrenTop=1 )
n = self.allLines[index][10:15]
name = n.split(' ')[-1]
element = name
if element in babel_elements.keys():
element = element
else:
if residue_type == "System" or residue_type == "SOL":
#if element[1] == 'W':
# element = 'H'
# group is treated as one particle
#else:
element = element[0]
elif element[:2] == 'Me':
element = 'C'
else:
element = element[0]
#if len(element)>1:
# if type(element[1]) == types.StringType:
#
# if element[1] == element[1].lower():
# element =element
# else:
# element = element[0]
#
# else:
# element = element[0]
atom = Atom( name, current_residue, element, top=mol )
c = self.allLines[index][15:20]
cx = self.allLines[index][20:28]
cy = self.allLines[index][28:36]
cz = self.allLines[index][36:44]
x = float(cx)*10
y = float(cy)*10
z = float(cz)*10
atom._coords = [[x, y, z]]
atom._charges = []
atom.segID = mol.name
atom.normalname = name
atom.number = int(self.allLines[index][15:20])
atom.elementType = name[0]
mol.atmNum[atom.number] = atom
atom.altname = None
atom.hetatm = 0
mol.name = os.path.split(os.path.splitext(self.filename)[0])[-1]
mol.allAtoms = mol.chains.residues.atoms
mol.parser = self
mol.levels = [Protein, Chain, Residue, Atom]
name = ''
for n in molList.name:
name = n + ','
name = name[:-1]
molList.setStringRepr( name )
strRpr = name + ':::'
molList.allAtoms.setStringRepr( strRpr )
for m in molList:
mname = m.name
strRpr = mname + ':::'
m.allAtoms.setStringRepr( strRpr )
strRpr = mname + ':'
m.chains.setStringRepr( strRpr )
for c in m.chains:
cname = c.id
strRpr = mname + ':' + cname + ':'
c.residues.setStringRepr( strRpr )
for r in c.residues:
rname = r.name
strRpr = mname + ':' + cname + ':' + rname + ':'
r.atoms.setStringRepr( strRpr )
return molList
def getMoleculeInformation(self):
""" Function to retrieve the general informations on the molecule.
This information is used by the molecule chooser to provide
informations on the molecule selected.
"""
molStr = ''
return molStr
def configureProgressBar( self, **kw ):
# this method is to be implemented by the user from outside
pass
if __name__ == '__main__':
parser = groParser( filename='/usr/share/gromacs/tutor/methanol/conf.gro' )
print "Reading molecule"
mol = parser.parse()
| 0
| 0
| 0
| 5,293
| 0
| 0
| 0
| -1
| 23
|
cd271e097e85b39119ac5d57f5185c0f3eb0adae
| 3,675
|
py
|
Python
|
webiopi_0.7.1/python/webiopi/devices/bus.py
|
Masterkriz/rpi3-webiopi
|
3c627a2769394a9cd5687e32fe779e9280c17e9b
|
[
"Apache-2.0"
] | 63
|
2016-09-01T13:10:59.000Z
|
2021-04-28T16:00:22.000Z
|
webiopi_0.7.1/python/webiopi/devices/bus.py
|
Masterkriz/rpi3-webiopi
|
3c627a2769394a9cd5687e32fe779e9280c17e9b
|
[
"Apache-2.0"
] | 56
|
2016-09-08T21:59:25.000Z
|
2021-04-29T07:44:39.000Z
|
services/webiopi/src/python/webiopi/devices/bus.py
|
creative-workflow/pi-setup
|
d6d28cb8d34ef71b1e8ac95dd94099bfad08837a
|
[
"MIT"
] | 24
|
2016-10-30T03:20:02.000Z
|
2021-04-28T15:03:07.000Z
|
# Copyright 2012-2013 Eric Ptak - trouch.com
#
# 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.
BUSLIST = {
"I2C": {"enabled": False, "gpio": {0:"SDA", 1:"SCL", 2:"SDA", 3:"SCL"}, "modules": ["i2c-bcm2708", "i2c-dev"]},
"SPI": {"enabled": False, "gpio": {7:"CE1", 8:"CE0", 9:"MISO", 10:"MOSI", 11:"SCLK"}, "modules": ["spi-bcm2708", "spidev"]},
"UART": {"enabled": False, "gpio": {14:"TX", 15:"RX"}},
"ONEWIRE": {"enabled": False, "gpio": {4:"DATA"}, "modules": ["w1-gpio"], "wait": 2}
}
| 31.144068
| 128
| 0.594558
|
# Copyright 2012-2013 Eric Ptak - trouch.com
#
# 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 os
import time
import subprocess
from webiopi.utils.logger import debug, info
BUSLIST = {
"I2C": {"enabled": False, "gpio": {0:"SDA", 1:"SCL", 2:"SDA", 3:"SCL"}, "modules": ["i2c-bcm2708", "i2c-dev"]},
"SPI": {"enabled": False, "gpio": {7:"CE1", 8:"CE0", 9:"MISO", 10:"MOSI", 11:"SCLK"}, "modules": ["spi-bcm2708", "spidev"]},
"UART": {"enabled": False, "gpio": {14:"TX", 15:"RX"}},
"ONEWIRE": {"enabled": False, "gpio": {4:"DATA"}, "modules": ["w1-gpio"], "wait": 2}
}
def loadModule(module):
debug("Loading module : %s" % module)
subprocess.call(["modprobe", module])
def unloadModule(module):
subprocess.call(["modprobe", "-r", module])
def loadModules(bus):
if BUSLIST[bus]["enabled"] == False and not modulesLoaded(bus):
info("Loading %s modules" % bus)
for module in BUSLIST[bus]["modules"]:
loadModule(module)
if "wait" in BUSLIST[bus]:
info("Sleeping %ds to let %s modules load" % (BUSLIST[bus]["wait"], bus))
time.sleep(BUSLIST[bus]["wait"])
BUSLIST[bus]["enabled"] = True
def unloadModules(bus):
info("Unloading %s modules" % bus)
for module in BUSLIST[bus]["modules"]:
unloadModule(module)
BUSLIST[bus]["enabled"] = False
def __modulesLoaded__(modules, lines):
if len(modules) == 0:
return True
for line in lines:
if modules[0].replace("-", "_") == line.split(" ")[0]:
return __modulesLoaded__(modules[1:], lines)
return False
def modulesLoaded(bus):
if not bus in BUSLIST or not "modules" in BUSLIST[bus]:
return True
try:
with open("/proc/modules") as f:
c = f.read()
f.close()
lines = c.split("\n")
return __modulesLoaded__(BUSLIST[bus]["modules"], lines)
except:
return False
def checkAllBus():
for bus in BUSLIST:
if modulesLoaded(bus):
BUSLIST[bus]["enabled"] = True
class Bus():
def __init__(self, busName, device, flag=os.O_RDWR):
loadModules(busName)
self.busName = busName
self.device = device
self.flag = flag
self.fd = 0
self.open()
def open(self):
self.fd = os.open(self.device, self.flag)
if self.fd < 0:
raise Exception("Cannot open %s" % self.device)
def close(self):
if self.fd > 0:
os.close(self.fd)
def read(self, size=1):
if self.fd > 0:
return os.read(self.fd, size)
raise Exception("Device %s not open" % self.device)
def readBytes(self, size=1):
return bytearray(self.read(size))
def readByte(self):
return self.readBytes()[0]
def write(self, string):
if self.fd > 0:
return os.write(self.fd, string)
raise Exception("Device %s not open" % self.device)
def writeBytes(self, data):
return self.write(bytearray(data))
def writeByte(self, value):
self.writeBytes([value])
| 0
| 0
| 0
| 1,049
| 0
| 1,310
| 0
| -3
| 290
|
0323291efc8d205fb0aa73cee0fb59b5fd6e516a
| 345,898
|
py
|
Python
|
3algo/homo/1_2_7datap.py
|
allengrr/deadlock_project
|
933878077c45a7df04daa087407bb2620c064617
|
[
"MIT"
] | null | null | null |
3algo/homo/1_2_7datap.py
|
allengrr/deadlock_project
|
933878077c45a7df04daa087407bb2620c064617
|
[
"MIT"
] | null | null | null |
3algo/homo/1_2_7datap.py
|
allengrr/deadlock_project
|
933878077c45a7df04daa087407bb2620c064617
|
[
"MIT"
] | 1
|
2021-03-21T17:54:26.000Z
|
2021-03-21T17:54:26.000Z
|
wt1_2_7 = {'192.168.122.112': [6.0527, 8.4551, 7.8479, 7.6681, 7.4932, 6.4745, 6.4198, 8.2644, 10.7811, 10.3783, 9.9412, 9.5791, 9.2604, 9.4337, 9.2044, 8.9888, 8.8576, 8.6938, 8.5687, 8.4276, 8.3159, 8.203, 8.3446, 8.2226, 8.127, 8.0167, 7.9279, 7.8576, 7.9614, 7.9092, 7.8796, 7.8118, 7.747, 7.8486, 7.7813, 7.8853, 7.8253, 7.7668, 7.8695, 7.8173, 7.7653, 7.7128, 7.6701, 7.7426, 7.811, 7.8762, 7.8196, 7.7081, 7.6705, 7.6261, 7.4933, 7.4535, 7.4443, 7.4345, 7.3984, 7.3828, 7.7321, 7.6903, 7.6519, 7.6141, 7.5784, 7.928, 7.9189, 7.9659, 7.944, 7.9437, 7.913, 7.8772, 7.85, 7.8308, 7.8185, 7.792, 7.7742, 7.7612, 7.7356, 7.766, 7.7373, 7.713, 7.6905, 7.6612, 7.6402, 7.6118, 7.6528, 7.6491, 7.6283, 7.6693, 7.6482, 7.6321, 7.6127, 7.6098, 7.591, 7.5769, 7.552, 7.5301, 7.599, 7.5916, 7.5948, 7.5769, 7.5614, 7.5986, 7.6272, 7.6068, 7.5859, 7.5649, 7.5449, 7.5254, 7.5584, 7.5457, 7.5256, 7.507, 7.4923, 7.4765, 7.4653, 7.4491, 7.4337, 7.4291, 7.4144, 7.3997, 7.3822, 7.367, 7.3764, 7.3622, 7.3563, 7.3879, 7.4147, 7.4086, 7.3983, 7.3818, 7.369, 7.3627, 7.3494, 7.336, 7.3291, 7.3555, 7.3425, 7.3289, 7.3256, 7.3134, 7.3019, 7.29, 7.2769, 7.28, 7.2784, 7.2705, 7.2624, 7.2586, 7.2533, 7.242, 7.2377, 7.226, 7.2145, 7.204, 7.196, 7.1857, 7.1782, 7.1677, 7.1569, 7.147, 7.1717, 7.1647, 7.1563, 7.1466, 7.1387, 7.1084, 7.0987, 7.1237, 7.1465, 7.1378, 7.1284, 7.1282, 7.1236, 7.1152, 7.1389, 7.1315, 7.1216, 7.1144, 7.1361, 7.1283, 7.1231, 7.1165, 7.1066, 7.0985, 7.0954, 7.0867, 7.0779, 7.0714, 7.1006, 7.0915, 7.0837, 7.0782, 7.0746, 7.0937, 7.0859, 7.0775, 7.0682, 7.0611, 7.0631, 7.081, 7.1014, 7.124, 7.1425, 7.1334, 7.1285, 7.1239, 7.1184, 7.114, 7.1419, 7.1632, 7.1568, 7.1517, 7.1455, 7.1398, 7.1347, 7.1295, 7.1227, 7.1424, 7.136, 7.1334, 7.1365, 7.1313, 7.1289, 7.1205, 7.1134, 7.1061, 7.0978, 7.0911, 7.0841, 7.1017, 7.0946, 7.1373, 7.1519, 7.2006, 7.1938, 7.1872, 7.18, 7.2445, 7.2365, 7.2297, 7.2465, 7.2423, 7.2577, 7.2533, 7.2483, 7.263, 7.256, 7.3058, 7.2987, 7.2907, 7.2849, 7.2795, 7.2754, 7.3144, 7.3078, 7.3218, 7.3151, 7.3085, 7.3027, 7.3037, 7.2964, 7.3106, 7.3208, 7.3144, 7.3081, 7.3009, 7.2937, 7.293, 7.2899, 7.2844, 7.3197, 7.3168, 7.3121, 7.305, 7.3182, 7.3258, 7.321, 7.3179, 7.3157, 7.3098, 7.3046, 7.3021, 7.3193, 7.3393, 7.3549, 7.3489, 7.3446, 7.3388, 7.3356, 7.3339, 7.3504, 7.3633, 7.3564, 7.3501, 7.346, 7.3426, 7.3751, 7.3699, 7.3634, 7.3945, 7.4059, 7.4176, 7.4303, 7.4264, 7.4373, 7.4307, 7.4238, 7.4202, 7.4156, 7.4113, 7.405, 7.4245, 7.4185, 7.4153, 7.4085, 7.4021, 7.3971, 7.3904, 7.3842, 7.378, 7.3763, 7.3734, 7.3681, 7.3644, 7.3586, 7.3546, 7.3526, 7.3653, 7.3612, 7.3557, 7.3497, 7.345, 7.3553, 7.3538, 7.3505, 7.3459, 7.3401, 7.3381, 7.3338, 7.3282, 7.3227, 7.3165, 7.3133, 7.3251, 7.3234, 7.3194, 7.3139, 7.3083, 7.3038, 7.3145, 7.3094, 7.3186, 7.3151, 7.3095, 7.3048, 7.3171, 7.3124, 7.3091, 7.305, 7.2995, 7.2952, 7.2898, 7.2852, 7.2807, 7.2767, 7.2722, 7.2694, 7.2639, 7.2596, 7.2695, 7.2642, 7.2598, 7.2588, 7.2555, 7.2675, 7.2685, 7.269500000000001, 7.3129, 7.3095, 7.3189, 7.3139, 7.3227, 7.3188, 7.3172, 7.3149, 7.3147, 7.3107, 7.3213, 7.3183, 7.3142, 7.3111, 7.3065, 7.3045, 7.3047, 7.2998, 7.3094, 7.3054, 7.3145, 7.3238, 7.321, 7.3159, 7.311, 7.3063, 7.3057, 7.3144, 7.3093, 7.3182, 7.3141, 7.3364, 7.3317, 7.3291, 7.3267, 7.3222, 7.3176, 7.3146, 7.3104, 7.3069, 7.3039, 7.2997, 7.2949, 7.3038, 7.3007, 7.296, 7.3036, 7.3079, 7.3165, 7.3123, 7.3106, 7.309, 7.3172, 7.3253, 7.3211, 7.3292, 7.3389, 7.3345, 7.3303, 7.3444, 7.3402, 7.3366, 7.3328, 7.3291, 7.3252, 7.3215, 7.3226, 7.319, 7.3156, 7.3124, 7.3086, 7.3055, 7.304, 7.3023, 7.3081, 7.3045, 7.3014, 7.2976, 7.2943, 7.2949, 7.2915, 7.3006, 7.3117, 7.3152, 7.3118, 7.308, 7.3041, 7.3149, 7.3117, 7.3084, 7.3058, 7.3199, 7.322, 7.3182, 7.324, 7.3318, 7.3338, 7.3334, 7.331, 7.332, 7.3297, 7.3502, 7.3496, 7.3472, 7.3441, 7.3421, 7.3525, 7.3606, 7.3569, 7.3741, 7.3719, 7.3796, 7.376, 7.3744, 7.371, 7.3684, 7.3678, 7.3649, 7.362, 7.3613, 7.3583, 7.3547, 7.3514, 7.3477, 7.3442, 7.3524, 7.3518, 7.3528, 7.3489, 7.3557, 7.3538, 7.3528, 7.3607, 7.3676, 7.3749, 7.3715, 7.3679, 7.3719, 7.3702, 7.3664, 7.3636, 7.3624, 7.3588, 7.3572, 7.3647, 7.3718, 7.371, 7.3675, 7.3645, 7.3617, 7.3617, 7.3582, 7.366, 7.3724, 7.3687, 7.366, 7.3634, 7.3713, 7.3678, 7.3652, 7.3724, 7.3697, 7.3685, 7.3651, 7.3625, 7.3602, 7.3781, 7.3762, 7.3724, 7.3781, 7.3771, 7.3744, 7.3832, 7.3897, 7.3872, 7.3838, 7.3805, 7.3778, 7.375, 7.3824, 7.3799, 7.3762, 7.3727, 7.3696, 7.3659, 7.3656, 7.3636, 7.3664, 7.3643, 7.3621, 7.3598, 7.359, 7.3556, 7.3528, 7.3491, 7.3458, 7.3443, 7.351, 7.35, 7.3483, 7.3551, 7.3527, 7.3506, 7.3574, 7.3542, 7.3524, 7.3494, 7.3481, 7.3542, 7.3515, 7.3485, 7.3452, 7.3514, 7.3593, 7.3929, 7.39, 7.3953, 7.3933, 7.4173, 7.4151, 7.4123, 7.4105, 7.4265, 7.4245, 7.4399, 7.4369, 7.4345, 7.4336, 7.4344, 7.4395, 7.4454, 7.4422, 7.4392, 7.4383, 7.4352, 7.4318, 7.4293, 7.4261, 7.4227, 7.4192, 7.4156, 7.4125, 7.4119, 7.4101, 7.4085, 7.4146, 7.4212, 7.4186, 7.4169, 7.4223, 7.4207, 7.4197, 7.4251, 7.4319, 7.4293, 7.4269, 7.43, 7.427, 7.4186, 7.416, 7.4214, 7.4193, 7.4167, 7.4142, 7.4226, 7.4196, 7.4168, 7.4081, 7.4054, 7.4108, 7.4111, 7.4086, 7.4143, 7.4122, 7.4194, 7.4166, 7.4137, 7.4188, 7.4263, 7.4231, 7.4204, 7.4265, 7.4238, 7.4296, 7.4271, 7.4265, 7.4242, 7.4235, 7.4204, 7.4175, 7.4173, 7.4151, 7.4124, 7.4111, 7.408, 7.4064, 7.4038, 7.4019, 7.3997, 7.3976, 7.3989, 7.3969, 7.395, 7.392, 7.39, 7.3868, 7.3932, 7.3908, 7.39, 7.387, 7.3839, 7.3812, 7.3781, 7.3759, 7.373, 7.3701, 7.3676, 7.3648, 7.363, 7.3695, 7.3686, 7.3741, 7.3798, 7.3791, 7.3771, 7.3742, 7.3812, 7.3867, 7.3839, 7.3811, 7.3786, 7.3759, 7.3732, 7.3718, 7.3772, 7.3763, 7.3734, 7.3789, 7.376, 7.3742, 7.3717, 7.3703, 7.3686, 7.3668, 7.3655, 7.365, 7.3655, 7.3709, 7.3761, 7.374, 7.3714, 7.3768, 7.376, 7.3748, 7.3726, 7.3858, 7.3846, 7.3994, 7.4048, 7.4024, 7.4012, 7.399, 7.3963, 7.3938, 7.3926, 7.3916, 7.3902, 7.3891, 7.3909, 7.3896, 7.3883, 7.3859, 7.3838, 7.3825, 7.383, 7.3808, 7.3865, 7.3852, 7.3828, 7.3815, 7.3839, 7.3811, 7.38, 7.3784, 7.3843, 7.3829, 7.3808, 7.386, 7.3836, 7.3878, 7.3989, 7.3967, 7.3953, 7.3937, 7.392, 7.3895, 7.3874, 7.3854, 7.3904, 7.3949, 7.393, 7.3925, 7.391, 7.3886, 7.3885, 7.386, 7.3843, 7.3818, 7.3863, 7.3865, 7.3855, 7.3839, 7.3816, 7.3796, 7.3771, 7.3773, 7.3754, 7.3735, 7.3785, 7.3768, 7.3748, 7.3724, 7.3912, 7.3909, 7.3883, 7.3927, 7.3919, 7.39, 7.3953, 7.397, 7.3947, 7.4195, 7.4247, 7.4228, 7.4277, 7.4318, 7.4292, 7.4272, 7.4259, 7.4238, 7.4225, 7.4204, 7.4319, 7.4357, 7.4334, 7.4447, 7.4427, 7.4406, 7.4385, 7.4432, 7.4471, 7.4456, 7.4441, 7.4434, 7.4368, 7.4352, 7.4336, 7.4315, 7.4298, 7.4285, 7.4327, 7.4302, 7.4286, 7.4396, 7.437, 7.4408, 7.4384, 7.4361, 7.4348, 7.4326, 7.4302, 7.4294, 7.4282, 7.426, 7.4303, 7.4288, 7.4271, 7.4259, 7.4301, 7.429, 7.4278, 7.4259, 7.4302, 7.4281, 7.4322, 7.4308, 7.4354, 7.4331, 7.4325, 7.4325, 7.4365, 7.4344, 7.4324, 7.4302, 7.4278, 7.4263, 7.4305, 7.4342, 7.4319, 7.4298, 7.4276, 7.4258, 7.4236, 7.4218, 7.4194, 7.4173, 7.4151, 7.4131, 7.4171, 7.415, 7.4126, 7.4102, 7.4149, 7.4268, 7.4249, 7.4233, 7.4239, 7.4217, 7.4259, 7.4235, 7.4273, 7.4317, 7.4297, 7.4278, 7.4262, 7.4241, 7.4277, 7.4264, 7.4242, 7.422, 7.4264, 7.4245, 7.4225, 7.4209, 7.4454, 7.4436, 7.4437, 7.4475, 7.4458, 7.4494, 7.4475, 7.4452, 7.4432, 7.4421, 7.4407, 7.4385, 7.4373, 7.4376, 7.4366, 7.4345, 7.4335, 7.4317, 7.4295, 7.4273, 7.4261, 7.4249, 7.4232, 7.4248, 7.4231, 7.421, 7.4198, 7.4186, 7.4169, 7.4155, 7.4137, 7.4173, 7.4152, 7.4135, 7.4115, 7.415, 7.4148, 7.4127, 7.4114, 7.4101, 7.4135, 7.408, 7.4118, 7.4103, 7.4084, 7.4128, 7.4117, 7.4096, 7.4137, 7.4122, 7.4114, 7.4093, 7.4071, 7.4062, 7.4043, 7.4028, 7.4062, 7.4123, 7.4107, 7.4086, 7.4071, 7.4055, 7.4042, 7.4021, 7.4011, 7.399, 7.3985, 7.3984, 7.3962, 7.3942, 7.3924, 7.396, 7.3942, 7.3927, 7.3911, 7.39, 7.3878, 7.3862, 7.3852, 7.3838, 7.3877, 7.3856, 7.3839, 7.3876, 7.3859, 7.3793, 7.3776, 7.3812, 7.3844, 7.3829, 7.3816, 7.3797, 7.3836, 7.3868, 7.3856, 7.3844, 7.3879, 7.3867, 7.3903, 7.3883, 7.3863, 7.3845, 7.3825, 7.3862, 7.3844, 7.3825, 7.3807, 7.3788, 7.3777, 7.3757, 7.3745, 7.3724, 7.3714, 7.3694, 7.373, 7.371, 7.3704, 7.3688, 7.3723, 7.3693, 7.3675, 7.3658, 7.3659, 7.3652, 7.3648, 7.3631, 7.3672, 7.3711, 7.3701, 7.3747, 7.3788, 7.3783, 7.3769, 7.3812, 7.3857, 7.3852, 7.3838, 7.382, 7.3812, 7.3794, 7.378, 7.3762, 7.3745, 7.3738, 7.3824, 7.3825, 7.3858, 7.3851, 7.3835, 7.3815, 7.3799, 7.3782, 7.3766, 7.3758, 7.3747, 7.373, 7.3731, 7.3815, 7.3811, 7.3798, 7.378, 7.3816, 7.3809, 7.3758, 7.3744, 7.3733, 7.3844, 7.3836, 7.3823, 7.3857, 7.3839, 7.3827, 7.381, 7.3793, 7.3781, 7.3764, 7.3749, 7.374, 7.3768, 7.3751, 7.3738, 7.3723, 7.3704, 7.3688, 7.3673, 7.3693, 7.3676, 7.371, 7.3697, 7.3684, 7.3669, 7.3667, 7.3652, 7.3688, 7.3723, 7.3705, 7.3688, 7.3673, 7.3658, 7.3651, 7.3641, 7.3642, 7.3684, 7.3671, 7.3666, 7.3654, 7.3644, 7.3627, 7.3618, 7.3673, 7.3662, 7.37, 7.3842, 7.3823, 7.3805, 7.3789, 7.3779, 7.3815, 7.3796, 7.3777, 7.3766, 7.3755, 7.3833, 7.3821, 7.3804, 7.3787, 7.3769, 7.3752, 7.3738, 7.3721, 7.371, 7.3702, 7.3698, 7.368, 7.3674, 7.3666, 7.3695, 7.3677, 7.3662, 7.3654, 7.3641, 7.3652, 7.3687, 7.3673, 7.3657, 7.3642, 7.3627, 7.3656, 7.3642, 7.3671, 7.3659, 7.3695, 7.3688, 7.3672, 7.3667, 7.3658, 7.3644, 7.3588, 7.3595, 7.359, 7.3573, 7.356, 7.3557, 7.354, 7.3528, 7.3522, 7.3514, 7.3502, 7.3485, 7.3477, 7.3512, 7.3513, 7.3611, 7.3598, 7.3582, 7.3617, 7.3605, 7.3588, 7.3579, 7.3607, 7.3592, 7.3623, 7.3613, 7.3608, 7.3637, 7.3629, 7.3661, 7.3644, 7.3627, 7.3633, 7.3616, 7.3612, 7.369, 7.3718, 7.3747, 7.376, 7.3749, 7.3738, 7.3731, 7.3724, 7.3709, 7.3745, 7.3729, 7.3727, 7.3787, 7.3787, 7.3777, 7.3786, 7.3794, 7.3785, 7.3812, 7.3801, 7.3793, 7.3784, 7.3775, 7.3767, 7.3762, 7.3747, 7.3747, 7.3731, 7.372, 7.375, 7.3739, 7.3768, 7.3754, 7.3745, 7.3742, 7.377, 7.3761, 7.3756, 7.3741, 7.3725, 7.371, 7.3697, 7.3818, 7.3802, 7.3788, 7.3771, 7.3756, 7.3748, 7.3731, 7.3763, 7.3784, 7.3879, 7.387, 7.3877, 7.3915, 7.3912, 7.3898, 7.3887, 7.3918, 7.3953, 7.3937, 7.3923, 7.391, 7.3897, 7.3885, 7.3875, 7.3861, 7.3848, 7.3837, 7.3821, 7.381, 7.3803, 7.3796, 7.3823, 7.3812, 7.3797, 7.3783, 7.3768, 7.3765, 7.3752, 7.3748, 7.3733, 7.3717, 7.3711, 7.3959, 7.4047, 7.4119, 7.4191, 7.4223, 7.4208, 7.4239, 7.4227, 7.4217, 7.4205, 7.4195, 7.4222, 7.4217, 7.4207, 7.4195, 7.418, 7.4176, 7.4124, 7.4153, 7.4146, 7.4136, 7.412, 7.4104, 7.4088, 7.4072, 7.4062, 7.4054, 7.4038, 7.4026, 7.4052, 7.4038, 7.4022, 7.4006, 7.3996, 7.3982, 7.3966, 7.3995, 7.3997, 7.3981, 7.4011, 7.3996, 7.4031, 7.4018, 7.4003, 7.401, 7.3996, 7.4027, 7.4013, 7.4042, 7.4028, 7.4014, 7.4041, 7.403, 7.4057, 7.4042, 7.4031, 7.4017, 7.4004, 7.3988, 7.3978, 7.3963, 7.3953, 7.3945, 7.393, 7.3919, 7.3906, 7.3895, 7.3885, 7.387, 7.3859, 7.3847, 7.3832, 7.382, 7.3806, 7.3793, 7.3783, 7.3777, 7.3852, 7.3884, 7.3952, 7.3989, 7.4049, 7.4045, 7.4032, 7.4028, 7.4023, 7.4008, 7.3996, 7.4034, 7.4024, 7.4009, 7.3995, 7.4064, 7.4092, 7.4114, 7.4105, 7.4092, 7.4077, 7.41, 7.4088, 7.4075, 7.4068, 7.406, 7.4053, 7.4081, 7.4067, 7.4052, 7.4038, 7.4066, 7.4091, 7.4077, 7.4064, 7.4053, 7.4048, 7.4035, 7.4058, 7.4046, 7.4031, 7.4017, 7.4005, 7.399, 7.3975, 7.396, 7.3954, 7.3949, 7.3936, 7.3934, 7.3923, 7.3915, 7.3901, 7.3888, 7.3875, 7.386, 7.3887, 7.3876, 7.3865, 7.385, 7.3838, 7.3837, 7.3823, 7.3819, 7.3817, 7.3812, 7.38, 7.3788, 7.3778, 7.3802, 7.3791, 7.3777, 7.3802, 7.3826, 7.3817, 7.3805, 7.383, 7.3854, 7.3854, 7.3842, 7.3828, 7.382, 7.3808, 7.3831, 7.3821, 7.3814, 7.3808, 7.3802, 7.3803, 7.379, 7.3782, 7.377, 7.3761, 7.3755, 7.3754, 7.3754, 7.374, 7.3733, 7.3724, 7.371, 7.3699, 7.3689, 7.3684, 7.3681, 7.3678, 7.3708, 7.3789, 7.3777, 7.3732, 7.3735, 7.3759, 7.3752, 7.374, 7.3735, 7.3722, 7.3713, 7.3707, 7.3698, 7.3695, 7.369, 7.3676, 7.3666, 7.3657, 7.3643, 7.3635, 7.3623, 7.3647, 7.3634, 7.362, 7.3644, 7.3703, 7.3693, 7.3681, 7.3668, 7.3659, 7.3655, 7.3679, 7.3676, 7.3669, 7.366, 7.3648, 7.3644, 7.3641, 7.3637, 7.3628, 7.362, 7.3651, 7.3682, 7.3711, 7.3669, 7.3659, 7.3648, 7.3683, 7.3673, 7.3668, 7.3657, 7.3646, 7.3632, 7.3659, 7.3655, 7.3681, 7.3672, 7.3666, 7.3722, 7.375, 7.3747, 7.3733, 7.3719, 7.3709, 7.3701, 7.3697, 7.3684, 7.3674, 7.3736, 7.3728, 7.3717, 7.3715, 7.3707, 7.3698, 7.3663, 7.3689, 7.3687, 7.3681, 7.3674, 7.3665, 7.3653, 7.3646, 7.3633, 7.362, 7.3611, 7.3608, 7.3607, 7.3608, 7.3603, 7.3596, 7.3584, 7.358, 7.3568, 7.3566, 7.3566, 7.3559, 7.3551, 7.354, 7.3569, 7.3652, 7.3639, 7.3632, 7.3619, 7.3608, 7.3601, 7.3588, 7.3582, 7.3576, 7.36, 7.3593, 7.3581, 7.3571, 7.356, 7.3588, 7.3575, 7.3629, 7.3656, 7.3645, 7.3637, 7.3625, 7.3614, 7.3601, 7.3589, 7.3577, 7.3605, 7.3599, 7.3623, 7.3623, 7.3629, 7.3651, 7.3639, 7.366, 7.3682, 7.3673, 7.3662, 7.366, 7.3648, 7.3642, 7.3665, 7.3687, 7.3675, 7.3666, 7.3656, 7.3645, 7.3674, 7.3663, 7.3651, 7.3642, 7.3631, 7.3619, 7.3613, 7.3602, 7.3596, 7.3619, 7.3641, 7.3637, 7.3657, 7.3653, 7.3641, 7.3632, 7.3623, 7.361, 7.3608, 7.3596, 7.3589, 7.3577, 7.3565, 7.3588, 7.361, 7.3597, 7.3595, 7.3619, 7.3616, 7.3607, 7.3598, 7.3589, 7.3547, 7.3537, 7.3525, 7.3592, 7.3588, 7.3576, 7.3597, 7.3585, 7.3573, 7.3562, 7.3556, 7.3576, 7.3564, 7.3554, 7.3544, 7.3531, 7.3522, 7.3511, 7.3504, 7.3493, 7.3481, 7.3469, 7.346, 7.3451, 7.3442, 7.3431, 7.3452, 7.3443, 7.3442, 7.3411, 7.3399, 7.3388, 7.3382, 7.3371, 7.338100000000001, 7.3436, 7.3424, 7.3415, 7.3405, 7.3394, 7.3418, 7.3407, 7.3397, 7.3395, 7.3387, 7.3385, 7.3406, 7.3394, 7.3382, 7.3375, 7.3368, 7.3361, 7.3383, 7.3372, 7.3363, 7.3351, 7.3339, 7.336, 7.3349, 7.3338, 7.3327, 7.3348, 7.3336, 7.3354, 7.3375, 7.3366, 7.3357, 7.3346, 7.3337, 7.3326, 7.3316, 7.3314, 7.3337, 7.3326, 7.3346, 7.3335, 7.3323, 7.3341, 7.3363, 7.3351, 7.3343, 7.3365, 7.336, 7.3349, 7.334, 7.3331, 7.3319, 7.3315, 7.3304, 7.3299, 7.3297, 7.3286, 7.3278, 7.33, 7.3292, 7.3282, 7.3272, 7.3368, 7.3388, 7.3408, 7.3396, 7.3388, 7.3408, 7.3371, 7.3368, 7.3389, 7.3387, 7.3377, 7.3366, 7.3356, 7.3346, 7.3467, 7.3511, 7.3501, 7.3491, 7.3458, 7.3481, 7.3483, 7.3508, 7.353, 7.3524, 7.3515, 7.3506, 7.35, 7.354, 7.3531, 7.3519, 7.3509, 7.3501, 7.349, 7.348, 7.3475, 7.3466, 7.3461, 7.3482, 7.3477, 7.3466, 7.346, 7.3464, 7.3454, 7.3444, 7.3464, 7.3485, 7.3481, 7.3471, 7.3464, 7.346, 7.3484, 7.348, 7.35, 7.3521, 7.3509, 7.3534, 7.3535, 7.3557, 7.3552, 7.3541, 7.3536, 7.3527, 7.3516, 7.3504, 7.3498, 7.3491, 7.3481, 7.3474, 7.3466, 7.3468, 7.349, 7.348, 7.3472, 7.3438, 7.343, 7.3508, 7.3498, 7.3491, 7.3511, 7.3504, 7.3495, 7.3517, 7.3529, 7.352, 7.3517, 7.3545, 7.3539, 7.353, 7.3523, 7.354, 7.3534, 7.3594, 7.3615, 7.3606, 7.3598, 7.3592, 7.3614, 7.3608, 7.3603, 7.3591, 7.3583, 7.3586, 7.3577, 7.3598, 7.3593, 7.3591, 7.3586, 7.3581, 7.3572, 7.3563, 7.3553, 7.3603, 7.3628, 7.3618, 7.3591, 7.3584, 7.3601, 7.3592, 7.3667, 7.3687, 7.3679, 7.3669, 7.3659, 7.3677, 7.367, 7.3664, 7.3655, 7.3647, 7.3641, 7.3661, 7.3655, 7.3651, 7.3644, 7.3642, 7.3631, 7.3624, 7.3613, 7.3604, 7.3627, 7.362, 7.361, 7.36, 7.3603, 7.3595, 7.3615, 7.3607, 7.3596, 7.3615, 7.3608, 7.3628, 7.3626, 7.3617, 7.3608, 7.3599, 7.359, 7.3607, 7.3597, 7.359, 7.3585, 7.3605, 7.3595, 7.3587, 7.3583, 7.3573, 7.3564, 7.3555, 7.3558, 7.3548, 7.3538, 7.3529, 7.352, 7.351, 7.3505, 7.3502, 7.3505, 7.3499, 7.3491, 7.3481, 7.3477, 7.3499, 7.3496, 7.3528, 7.3519, 7.351, 7.3526, 7.352, 7.3517, 7.3507, 7.3501, 7.3492, 7.3529, 7.3523, 7.3514, 7.3507, 7.3502, 7.3595, 7.3586, 7.3582, 7.3572, 7.3569, 7.3586, 7.3583, 7.3579, 7.3574, 7.3593, 7.3613, 7.3602, 7.3598, 7.3588, 7.3579, 7.357, 7.3561, 7.355, 7.354, 7.353, 7.3524, 7.3514, 7.3558, 7.3527, 7.3518, 7.3536, 7.3527, 7.3518, 7.3508, 7.3501, 7.3494, 7.3486, 7.3476, 7.3495, 7.349, 7.3485, 7.3482, 7.3474, 7.3464, 7.3484, 7.3475, 7.3468, 7.3468, 7.3488, 7.348, 7.3501, 7.3491, 7.3485, 7.3508, 7.3503, 7.3493, 7.3484, 7.3482, 7.3472, 7.3477, 7.3472, 7.3491, 7.3507, 7.3499, 7.349, 7.3481, 7.347, 7.3462, 7.3454, 7.3445, 7.344, 7.3431, 7.3421, 7.3412, 7.3433, 7.3423, 7.3443, 7.3463, 7.3457, 7.3454, 7.3486, 7.3462, 7.3481, 7.3475, 7.347, 7.3462, 7.3481, 7.3479, 7.3497, 7.3489, 7.3479, 7.3497, 7.3514, 7.3504, 7.3494, 7.3485, 7.3504, 7.3501, 7.3492, 7.3484, 7.3502, 7.3492, 7.3487, 7.3483, 7.3527, 7.3527, 7.3518, 7.3512, 7.3505, 7.3496, 7.365, 7.3644, 7.3638, 7.363, 7.3621, 7.3645, 7.3685, 7.3675, 7.3719, 7.3709, 7.373, 7.3724, 7.3717, 7.3712, 7.3702, 7.3692, 7.3685, 7.3676, 7.3675, 7.3671, 7.3664, 7.3657, 7.3648, 7.3639, 7.3634, 7.3625, 7.3617, 7.3621, 7.3614, 7.361, 7.3627, 7.362, 7.3611, 7.3606, 7.3597, 7.3588, 7.3581, 7.3598, 7.3593, 7.3584, 7.3578, 7.3572, 7.3591, 7.3581, 7.3614, 7.3605, 7.3595, 7.3587, 7.3577, 7.357, 7.3563, 7.3561, 7.3553, 7.3544, 7.3566, 7.3567, 7.356, 7.3553, 7.3543, 7.354, 7.3533, 7.3529, 7.3521, 7.3513, 7.3503, 7.352, 7.3538, 7.3607, 7.3599, 7.3616, 7.3607, 7.3623, 7.3641, 7.3632, 7.3628, 7.3622, 7.359, 7.3589, 7.3582, 7.3572, 7.3563, 7.3556, 7.3552, 7.357, 7.3586, 7.3602, 7.365, 7.3642, 7.3641, 7.3654, 7.3644, 7.3638, 7.3629, 7.3625, 7.362, 7.3614, 7.3632, 7.3647, 7.3637, 7.3628, 7.362, 7.3639, 7.363, 7.362, 7.3636, 7.3627, 7.3619, 7.3666, 7.3657, 7.3649, 7.3641, 7.3635, 7.363, 7.363, 7.3624, 7.362, 7.3614, 7.3609, 7.3611, 7.3608, 7.3625, 7.3642, 7.3661, 7.3651, 7.3644, 7.3638, 7.363, 7.3625, 7.3618, 7.3609, 7.3602, 7.3596, 7.3592, 7.3608, 7.3602, 7.3619, 7.3611, 7.3602, 7.3596, 7.3612, 7.3609, 7.361, 7.3601, 7.3595, 7.3588, 7.3579, 7.3595, 7.3611, 7.3628, 7.3621, 7.3612, 7.3606, 7.3598, 7.3592, 7.3587, 7.3582, 7.3573, 7.3564, 7.3562, 7.3554, 7.3545, 7.3536, 7.3533, 7.3526, 7.3517, 7.3509, 7.348, 7.3471, 7.3462, 7.3503, 7.3495, 7.3487, 7.348, 7.3479, 7.3474, 7.3468, 7.3464, 7.3456, 7.3447, 7.3439, 7.3431, 7.3425, 7.3416, 7.3426, 7.3421, 7.3437, 7.3431, 7.3426, 7.3418, 7.3436, 7.3453, 7.3446, 7.3437, 7.3428, 7.3421, 7.3487, 7.3481, 7.3495, 7.3488, 7.3479, 7.3474, 7.3467, 7.3465, 7.3438, 7.3435, 7.3433, 7.3428, 7.3445, 7.3437, 7.3428, 7.3419, 7.3505, 7.3505, 7.3499, 7.3516, 7.3531, 7.3522, 7.3517, 7.3513, 7.3528, 7.3521, 7.3513, 7.3528, 7.3542, 7.3533, 7.3527, 7.3519, 7.351, 7.3525, 7.3521, 7.356, 7.3551, 7.3543, 7.3535, 7.3526, 7.3524, 7.3516, 7.3531, 7.3522, 7.352, 7.3497, 7.35, 7.3491, 7.3483, 7.351, 7.3505, 7.3498, 7.349, 7.3486, 7.3479, 7.3474, 7.349, 7.3483, 7.3475, 7.3469, 7.3468, 7.3464, 7.3479, 7.347, 7.3462, 7.3458, 7.3475, 7.3468, 7.3465, 7.3457, 7.3448, 7.3464, 7.3462, 7.3459, 7.3451, 7.3443, 7.3436, 7.3429, 7.3444, 7.3459, 7.3454, 7.3446, 7.3438, 7.3455, 7.3475, 7.3469, 7.3465, 7.3482, 7.3473, 7.3472, 7.3465, 7.3456, 7.3449, 7.344, 7.3431, 7.3423, 7.3417, 7.341, 7.3428, 7.3424, 7.3442, 7.3458, 7.3475, 7.3468, 7.3463, 7.3455, 7.3447, 7.3439, 7.3431, 7.3426, 7.3418, 7.3446, 7.3438, 7.3454, 7.3447, 7.3444, 7.3436, 7.3452, 7.3446, 7.3463, 7.3457, 7.3451, 7.3446, 7.344, 7.3455, 7.3451, 7.3445, 7.3463, 7.348, 7.3497, 7.3489, 7.3481, 7.3497, 7.3492, 7.3486, 7.3482, 7.3476, 7.3491, 7.3483, 7.3475, 7.3466, 7.3457, 7.3472, 7.3487, 7.3478, 7.3473, 7.3467, 7.3461, 7.3532, 7.3526, 7.352, 7.3512, 7.3504, 7.3518, 7.351, 7.3508, 7.3508, 7.3502, 7.3494, 7.3486, 7.3502, 7.3495, 7.3489, 7.3503, 7.3496, 7.349, 7.3506, 7.3499, 7.3494, 7.3491, 7.3484, 7.3482, 7.3473, 7.3468, 7.3481, 7.3473, 7.3466, 7.3458, 7.3453, 7.3446, 7.3441, 7.3451, 7.3446, 7.344, 7.3435, 7.3434, 7.3435, 7.3445, 7.3437, 7.3431, 7.3427, 7.3444, 7.3438, 7.343, 7.3404, 7.3396, 7.3397, 7.3388, 7.3383, 7.3375, 7.3367, 7.3363, 7.3381, 7.3395, 7.3394, 7.3409, 7.3401, 7.3395, 7.3387, 7.3401, 7.3415, 7.3406, 7.3402, 7.3394, 7.3386, 7.34, 7.3393, 7.3407, 7.3401, 7.3416, 7.3449, 7.3442, 7.3435, 7.3432, 7.3427, 7.3423, 7.3416, 7.3408, 7.3422, 7.3414, 7.3406, 7.34, 7.3416, 7.341, 7.3407, 7.3405, 7.34, 7.3401, 7.34, 7.3394, 7.3387, 7.3379, 7.3374, 7.3366, 7.3382, 7.3396, 7.3389, 7.3381, 7.3373, 7.3388, 7.3366, 7.3364, 7.3356, 7.3349, 7.3344, 7.3359, 7.3359, 7.3332, 7.332, 7.3294, 7.3288, 7.3282, 7.3274, 7.3282, 7.3277, 7.3273, 7.3265, 7.3257, 7.3255, 7.325, 7.3249, 7.3303, 7.3319, 7.3311, 7.3309, 7.3302, 7.3297, 7.329, 7.3284, 7.3276, 7.3373, 7.3367, 7.336, 7.3354, 7.339, 7.3365, 7.3357, 7.335, 7.3346, 7.3338, 7.3315, 7.3309, 7.3301, 7.3293, 7.3286, 7.328, 7.3278, 7.3292, 7.3286, 7.3303, 7.3298, 7.3291, 7.3285, 7.3261, 7.3254, 7.3248, 7.3254, 7.3264000000000005, 7.3301, 7.3311, 7.3305, 7.3301, 7.3315, 7.3329, 7.3342, 7.3354, 7.3354, 7.3374, 7.3389, 7.3382, 7.3379, 7.3371, 7.3364, 7.3358, 7.3352, 7.3351, 7.3346, 7.3343, 7.3335, 7.3329, 7.3322, 7.3315, 7.3312, 7.3326, 7.3318, 7.3311, 7.3304, 7.3304, 7.3314, 7.3308, 7.3318, 7.3332, 7.3345, 7.3358, 7.3357, 7.3367, 7.338, 7.3377, 7.337, 7.3365, 7.3358, 7.3353, 7.3346, 7.3343, 7.3335, 7.3331, 7.3323, 7.3337, 7.3334, 7.3326, 7.332, 7.3313, 7.3308, 7.3285, 7.3299, 7.3295, 7.3291, 7.3287, 7.3281, 7.3274, 7.3266, 7.3265, 7.3257, 7.3254, 7.3251, 7.3244, 7.324, 7.3253, 7.3267, 7.3279, 7.3278, 7.3272, 7.3285, 7.328, 7.3273, 7.3267, 7.3263, 7.3259, 7.3252, 7.3265, 7.3258, 7.3271, 7.3267, 7.3259, 7.3257, 7.3254, 7.3248, 7.3242, 7.3238, 7.3254, 7.3251, 7.3246, 7.3249, 7.325900000000001, 7.326900000000001, 7.3286, 7.33, 7.3295, 7.3287, 7.3304, 7.3297, 7.3311, 7.3305, 7.3301, 7.3297, 7.3291, 7.329, 7.3303, 7.3316, 7.3331, 7.3326, 7.3338, 7.3333, 7.3326, 7.3304, 7.3303, 7.3316, 7.3311, 7.3324, 7.3321, 7.3316, 7.3309, 7.3304, 7.3322, 7.3315, 7.3312, 7.3308, 7.3301, 7.3315, 7.3308, 7.3305, 7.33, 7.3293, 7.3289, 7.3282, 7.3275, 7.3289, 7.3287, 7.329700000000001, 7.3291, 7.3286, 7.328, 7.3275, 7.3268, 7.3265, 7.3262, 7.3256, 7.3268, 7.3264, 7.326, 7.3257, 7.3252, 7.3245, 7.324, 7.324, 7.3271, 7.3288, 7.3269, 7.3285, 7.3278, 7.3272, 7.3288, 7.3282, 7.3276, 7.3276, 7.327, 7.3263, 7.3299, 7.330900000000001, 7.331900000000001, 7.332, 7.3313, 7.3311, 7.3324, 7.3317, 7.3309, 7.3305, 7.3318, 7.3311, 7.3323, 7.3319, 7.3351, 7.3361, 7.336, 7.337000000000001, 7.337, 7.3365, 7.3359, 7.3351, 7.3345, 7.3356, 7.3349, 7.3348, 7.3342, 7.3336, 7.3337, 7.3332, 7.3345, 7.3357, 7.335, 7.3362, 7.3358, 7.3371, 7.3369, 7.3383, 7.3377, 7.3376, 7.3371, 7.3427, 7.342, 7.3413, 7.3406, 7.3419, 7.3433, 7.3434, 7.3429, 7.3424, 7.3431, 7.3432, 7.3429, 7.3425, 7.3421, 7.3474, 7.347, 7.3513, 7.3508, 7.3501, 7.351100000000001, 7.3504, 7.3499, 7.3493, 7.349, 7.3486, 7.3481, 7.3494, 7.3487, 7.3529, 7.3525, 7.3519, 7.3512, 7.3525, 7.3518, 7.3512, 7.3509, 7.3502, 7.3514, 7.351, 7.3503, 7.3496, 7.349, 7.3502, 7.3496, 7.3488, 7.3482, 7.3479, 7.3476, 7.3487, 7.3482, 7.3477, 7.3472, 7.3449, 7.3426, 7.3421, 7.3415, 7.3408, 7.3418, 7.3412, 7.3406, 7.3399, 7.3394, 7.3408, 7.3405, 7.3399, 7.3411, 7.3404, 7.34, 7.3396, 7.3394, 7.3388, 7.3386, 7.3379, 7.3373, 7.3367, 7.3362, 7.3356, 7.3352, 7.3345, 7.3339, 7.3332, 7.3327, 7.3321, 7.3298, 7.3291, 7.3284, 7.3296, 7.3291, 7.3284, 7.3282, 7.3373, 7.3367, 7.3381, 7.3377, 7.337, 7.3384, 7.3383, 7.3395, 7.3464, 7.3458, 7.3452, 7.3445, 7.3424, 7.3418, 7.3417, 7.3412, 7.3408, 7.3421, 7.3415, 7.3412, 7.3444, 7.3438, 7.3436, 7.3449, 7.3462, 7.3456, 7.3449, 7.3462, 7.3457, 7.3452, 7.3446, 7.3439, 7.3433, 7.343, 7.343, 7.3423, 7.342, 7.3432, 7.343, 7.3461, 7.3472, 7.3469, 7.3463, 7.3459, 7.3471, 7.3465, 7.3478, 7.348, 7.3475, 7.3488, 7.3487, 7.3482, 7.3478, 7.3505, 7.35, 7.3494, 7.349, 7.3528, 7.3523, 7.3524, 7.3541, 7.3572, 7.3606, 7.3585, 7.3564, 7.354, 7.3536, 7.353, 7.3588, 7.3585, 7.3596, 7.359, 7.3583, 7.3577, 7.3571, 7.3585, 7.3596, 7.3607, 7.3588, 7.3601, 7.3614, 7.3612, 7.3607, 7.3623, 7.3617, 7.3615, 7.3648, 7.3626, 7.3679, 7.3673, 7.367, 7.3647, 7.3654, 7.3663, 7.3679, 7.3694, 7.3688, 7.3686, 7.368, 7.3674, 7.3669, 7.3662, 7.3657, 7.3668, 7.3662, 7.3656, 7.3651, 7.3647, 7.3644, 7.3658, 7.3652, 7.3646, 7.366, 7.3653, 7.3646, 7.3642, 7.3637, 7.3632, 7.3645, 7.3639, 7.3651, 7.3649, 7.3645, 7.3639, 7.3638, 7.3632, 7.3629, 7.3623, 7.3636, 7.3634, 7.3628, 7.3622, 7.3616, 7.3611, 7.3607, 7.3602, 7.3595, 7.3589, 7.3583, 7.3577, 7.3571, 7.3566, 7.3559, 7.3557, 7.3552, 7.3564, 7.3559, 7.3554, 7.3551, 7.3547, 7.3544, 7.3538, 7.3533, 7.353, 7.3527, 7.3523, 7.3518, 7.3512, 7.3517, 7.3535, 7.3533, 7.3526, 7.352, 7.3514, 7.3528, 7.3541, 7.3542, 7.3538, 7.3533, 7.3529, 7.3525, 7.352, 7.3531, 7.3527, 7.3526, 7.352, 7.3532, 7.3526, 7.3538, 7.355, 7.3561, 7.3595, 7.3644, 7.3638, 7.3637, 7.3635, 7.3631, 7.3642, 7.3639, 7.3633, 7.3611, 7.3607, 7.3601, 7.3616, 7.3612, 7.3607, 7.3603, 7.36, 7.3594, 7.3588, 7.3582, 7.3578, 7.3578, 7.3572, 7.3569, 7.3579, 7.3593, 7.3605, 7.3602, 7.3596, 7.3592, 7.3604, 7.3598, 7.363, 7.3625, 7.3624, 7.3619, 7.3616, 7.3627, 7.3624, 7.3618, 7.3617, 7.3612, 7.3611, 7.3605, 7.3599, 7.3595, 7.3589, 7.3583, 7.3577, 7.3571, 7.3566, 7.356, 7.3555, 7.3549, 7.3545, 7.3556, 7.3553, 7.3548, 7.3561, 7.3556, 7.3567, 7.3561, 7.3555, 7.3549, 7.3543, 7.3549, 7.3543, 7.3539, 7.3535, 7.3531, 7.3542, 7.3537, 7.3566, 7.3579, 7.3572, 7.3566, 7.3594, 7.3587, 7.3581, 7.3575, 7.3572, 7.3566, 7.3565, 7.3563, 7.3575, 7.3573, 7.3566, 7.3584, 7.3621, 7.3615, 7.3609, 7.3623, 7.3617, 7.3613, 7.361, 7.3607, 7.36, 7.3579, 7.3576, 7.3569, 7.3562, 7.3574, 7.3569, 7.3584, 7.3581, 7.3595, 7.3592, 7.3604, 7.3604, 7.3599, 7.3594, 7.3592, 7.3592, 7.3589, 7.3583, 7.3579, 7.3559, 7.3555, 7.3556, 7.3551, 7.3579, 7.3593, 7.3587, 7.3581, 7.3576, 7.3587, 7.3582, 7.3581, 7.3575, 7.3603, 7.3602, 7.3596, 7.3591, 7.3601, 7.3596, 7.361, 7.3607, 7.362, 7.362, 7.3613, 7.3642, 7.3636, 7.3648, 7.366, 7.3673, 7.3668, 7.3649, 7.3649, 7.3642, 7.364, 7.3651, 7.3645, 7.364, 7.3637, 7.3634, 7.3629, 7.3624, 7.3636, 7.3648, 7.3642, 7.364, 7.3653, 7.3651, 7.365, 7.3644, 7.3641, 7.3635, 7.3629, 7.3625, 7.3622, 7.3616, 7.361, 7.3604, 7.3615, 7.361, 7.3604, 7.36, 7.3594, 7.3592, 7.3602, 7.3596, 7.3594, 7.359, 7.3584, 7.3584, 7.3578, 7.3572, 7.357, 7.355, 7.3545, 7.3542, 7.3538, 7.3549, 7.3544, 7.3539, 7.3534, 7.3527, 7.3538, 7.3518, 7.3514, 7.3508, 7.3502, 7.3498, 7.3493, 7.3504, 7.3498, 7.3493, 7.3492, 7.3487, 7.3481, 7.3492, 7.3486, 7.3496, 7.3478, 7.346, 7.3453, 7.3463, 7.3457, 7.3452, 7.3462, 7.3442, 7.3421, 7.3415, 7.3409, 7.3403, 7.3417, 7.3411, 7.3408, 7.3404, 7.3399, 7.3396, 7.339, 7.3398, 7.3396, 7.3407, 7.3404, 7.3417, 7.3412, 7.3407, 7.3401, 7.3395, 7.3392, 7.3386, 7.3382, 7.3378, 7.3374, 7.3355, 7.3369, 7.3364, 7.3359, 7.3358, 7.3357, 7.337, 7.3383, 7.3395, 7.3394, 7.339, 7.3388, 7.3401, 7.3413, 7.3411, 7.3456, 7.3453, 7.3449, 7.3451, 7.3466, 7.3467, 7.3464, 7.3461, 7.3456, 7.3453, 7.3448, 7.3442, 7.3436, 7.343, 7.3442, 7.3424, 7.3423, 7.3419, 7.3416, 7.3452, 7.3448, 7.3427, 7.3517, 7.3511, 7.3506, 7.3517, 7.3528, 7.3524, 7.3534, 7.3534, 7.3528, 7.3525, 7.3522, 7.3521, 7.3518, 7.3512, 7.3507, 7.3518, 7.3512, 7.351, 7.3505, 7.3499, 7.3493, 7.3504, 7.3498, 7.3495, 7.3491, 7.3485, 7.3482, 7.3494, 7.349, 7.3487, 7.3498, 7.3516, 7.3527, 7.3521, 7.3532, 7.3544, 7.3557, 7.3552, 7.3599, 7.3594, 7.3589, 7.3584, 7.3595, 7.3592, 7.3589, 7.3587, 7.3585, 7.3581, 7.3577, 7.3575, 7.3571, 7.3565, 7.3559, 7.3557, 7.3553, 7.3547, 7.3528, 7.3509, 7.3508, 7.3519, 7.3514, 7.351, 7.352, 7.3534, 7.3602, 7.3598, 7.3593, 7.3587, 7.3582, 7.3576, 7.359, 7.3588, 7.3582, 7.3595, 7.3608, 7.3604, 7.3615, 7.3644, 7.3644, 7.3639, 7.3658, 7.3671, 7.3667, 7.374, 7.375, 7.3787, 7.3782, 7.3777, 7.379, 7.3786, 7.3783, 7.3778, 7.3772, 7.3783, 7.3793, 7.3787, 7.3797, 7.3801, 7.3812, 7.3839, 7.3834, 7.3814, 7.3809, 7.3811, 7.3808, 7.3803, 7.3802, 7.3816, 7.3811, 7.3821, 7.3815, 7.3809, 7.382, 7.3815, 7.3809, 7.3806, 7.3805, 7.3788, 7.3786, 7.3798, 7.3792, 7.3786, 7.3785, 7.3782, 7.3778, 7.3773, 7.377, 7.3765, 7.3761, 7.3758, 7.3755, 7.3753, 7.3767, 7.3765, 7.3761, 7.3755, 7.3767, 7.3762, 7.3758, 7.377, 7.3767, 7.3776, 7.3786, 7.3782, 7.3778, 7.3778, 7.3775, 7.3769, 7.3763, 7.3758, 7.3779, 7.3776, 7.3774, 7.3768, 7.3762, 7.3759, 7.3754, 7.3753, 7.3736, 7.3718, 7.3713, 7.3708, 7.3705, 7.3715, 7.3715, 7.3712, 7.3707, 7.3703, 7.37, 7.3696, 7.3691, 7.3687, 7.3681, 7.3691, 7.3687, 7.3683, 7.3677, 7.3674, 7.3668, 7.3663, 7.3658, 7.3654, 7.3666, 7.3647, 7.3642, 7.364, 7.3637, 7.3633, 7.3628, 7.3624, 7.3621, 7.3616, 7.361, 7.3636, 7.3634, 7.3629, 7.3624, 7.3619, 7.3615, 7.3613, 7.3608, 7.3617, 7.3612, 7.3609, 7.3607, 7.3605, 7.3602, 7.3612, 7.3623, 7.3618, 7.3616, 7.3627, 7.3639, 7.3649, 7.366, 7.3658, 7.3652, 7.3664, 7.3662, 7.3659, 7.367, 7.368, 7.3679, 7.3677, 7.3692, 7.369, 7.3685, 7.3682, 7.3663, 7.3645, 7.3641, 7.3638, 7.3635, 7.3633, 7.3628, 7.3622, 7.3618, 7.3615, 7.3625, 7.3621, 7.3615, 7.361, 7.3604, 7.3602, 7.3612, 7.3607, 7.3618, 7.3614, 7.3608, 7.3605, 7.3601, 7.3598, 7.3595, 7.3604, 7.36, 7.3613, 7.3598, 7.3592, 7.3586, 7.3582, 7.3612, 7.361, 7.3605, 7.3603, 7.3602, 7.36, 7.3611, 7.3607, 7.3605, 7.3604, 7.36, 7.3599, 7.3594, 7.3594, 7.3588, 7.3585, 7.3583, 7.358, 7.3562, 7.3545, 7.3539, 7.3536, 7.3531, 7.3528, 7.3524, 7.3519, 7.3529, 7.3526, 7.3522, 7.3517, 7.3512, 7.3508, 7.3503, 7.3498, 7.3508, 7.3503, 7.35, 7.3499, 7.3493, 7.3488, 7.3484, 7.3481, 7.3476, 7.3459, 7.3457, 7.3455, 7.3465, 7.346, 7.3454, 7.345, 7.3446, 7.3442, 7.3439, 7.3451, 7.3446, 7.3441, 7.3436, 7.3445, 7.3441, 7.3436, 7.3446, 7.3443, 7.3438, 7.3434, 7.3429, 7.3423, 7.3418, 7.3401, 7.3398, 7.3395, 7.3405, 7.3404, 7.3401, 7.3431, 7.3415, 7.3412, 7.3424, 7.3406, 7.3402, 7.3399, 7.3395, 7.3377, 7.3387, 7.3382, 7.3377, 7.3373, 7.337, 7.338, 7.3376, 7.3386, 7.3383, 7.3397, 7.3396, 7.3391, 7.3386, 7.3382, 7.3364, 7.3362, 7.3344, 7.3344, 7.3342, 7.3337, 7.3332, 7.3327, 7.3322, 7.3323, 7.3321, 7.3307, 7.3305, 7.3307, 7.3302, 7.3313, 7.3308, 7.3304, 7.3299, 7.3296, 7.3294, 7.3292, 7.3289, 7.3285, 7.328, 7.3276, 7.328600000000001, 7.3281, 7.3283, 7.3278, 7.3277, 7.3272, 7.3268, 7.3263, 7.3258, 7.3253, 7.3263, 7.3248, 7.3243, 7.3255, 7.3254, 7.3251, 7.3249, 7.3296, 7.3292, 7.3287, 7.3282, 7.3279, 7.3275, 7.3286, 7.3283, 7.328, 7.3277, 7.3273, 7.3268, 7.3263, 7.3262, 7.3257, 7.3267, 7.3283, 7.3303, 7.3299, 7.3294, 7.3289, 7.3284, 7.3283, 7.3281, 7.3277, 7.3287, 7.3283, 7.3279, 7.3275, 7.3273, 7.3295, 7.3291, 7.3301, 7.3313, 7.3338, 7.3332, 7.3342, 7.3351, 7.3333, 7.3327, 7.3326, 7.3322, 7.3332, 7.3327, 7.3322, 7.3317, 7.3314, 7.3309, 7.3304, 7.3299, 7.3297, 7.3293, 7.329, 7.3286, 7.3297, 7.3294, 7.3289, 7.3284, 7.3279, 7.3291, 7.3305, 7.3348, 7.3344, 7.3356, 7.3352, 7.335, 7.3392, 7.3388, 7.3385, 7.3395, 7.3394, 7.3394, 7.3394, 7.339, 7.3386, 7.3394, 7.3391, 7.3386, 7.3383, 7.3382, 7.3393, 7.3388, 7.3403, 7.3414, 7.341, 7.3407, 7.3403, 7.3399, 7.3408, 7.3404, 7.3413, 7.3408, 7.3403, 7.3398, 7.3394, 7.3405, 7.3404, 7.3404, 7.3413, 7.3423, 7.342, 7.343, 7.3427, 7.3429, 7.3424, 7.342, 7.3417, 7.3415, 7.3412, 7.3407, 7.3417, 7.343, 7.3427, 7.3459, 7.3454, 7.3453, 7.3449, 7.3448, 7.3446, 7.3444, 7.344, 7.3435, 7.343, 7.3428, 7.3426, 7.3435, 7.3431, 7.3427, 7.3425, 7.342, 7.3419, 7.3415, 7.3423, 7.3421, 7.3418, 7.3415, 7.3424, 7.3435, 7.343, 7.3428, 7.3425, 7.3421, 7.3416, 7.3428, 7.3424, 7.3436, 7.3434, 7.343, 7.3428, 7.3426, 7.3426, 7.3423, 7.3418, 7.3416, 7.3426, 7.3422, 7.3419, 7.3418, 7.3415, 7.3425, 7.342, 7.3417, 7.3426, 7.3423, 7.3419, 7.3429, 7.3425, 7.3422, 7.3417, 7.3414, 7.3409, 7.3408, 7.3404, 7.3401, 7.34, 7.3395, 7.3395, 7.339, 7.34, 7.341, 7.342, 7.343, 7.3425, 7.3435, 7.3432, 7.343, 7.3427, 7.3424, 7.3419, 7.3429, 7.344, 7.345, 7.3448, 7.3444, 7.3439, 7.3434, 7.3429, 7.3428, 7.3424, 7.3434, 7.3429, 7.3424, 7.342, 7.3416, 7.3413, 7.3408, 7.3403, 7.3398, 7.340800000000001, 7.3403, 7.34, 7.3403, 7.3445, 7.344, 7.3437, 7.3433, 7.3428, 7.343800000000001, 7.3435, 7.3432, 7.3427, 7.3423, 7.342, 7.3416, 7.3416, 7.3427, 7.3412, 7.3411, 7.3408, 7.3419, 7.3415, 7.3414, 7.341, 7.3408, 7.3405, 7.3401, 7.34, 7.3395, 7.3392, 7.3387, 7.3382, 7.338, 7.3375, 7.3385, 7.3382, 7.3377, 7.3386, 7.3383, 7.3378, 7.3376, 7.3372, 7.3404, 7.3399, 7.3396, 7.3394, 7.3389, 7.3384, 7.3393, 7.3388, 7.3384, 7.3379, 7.3376, 7.3386, 7.3384, 7.338, 7.3375, 7.337, 7.3382, 7.3378, 7.3388, 7.3384, 7.3393, 7.3388, 7.3383, 7.338, 7.3376, 7.3371, 7.3366, 7.3363, 7.3373, 7.3377, 7.3374, 7.3371, 7.3379, 7.3377, 7.339, 7.3391, 7.3388, 7.3397, 7.3395, 7.339, 7.3387, 7.3396, 7.3392, 7.3403, 7.3412, 7.3407, 7.3417, 7.3413, 7.3409, 7.3404, 7.3401, 7.3397, 7.3407, 7.3405, 7.3402, 7.3398, 7.3394, 7.339, 7.3387, 7.3382, 7.3379, 7.3376, 7.3373, 7.3371, 7.338, 7.3375, 7.3374, 7.337, 7.3384, 7.338, 7.3375, 7.337, 7.3379, 7.3389, 7.339, 7.3385, 7.3385, 7.3382, 7.338, 7.339, 7.3386, 7.3396, 7.3391, 7.3402, 7.3397, 7.3392, 7.3391, 7.34, 7.3395, 7.339, 7.34, 7.3409, 7.3405, 7.34, 7.3397, 7.3407, 7.3408, 7.3404, 7.3401, 7.3397, 7.3421, 7.3426, 7.3425, 7.3421, 7.343, 7.3428, 7.3425, 7.3422, 7.3424, 7.342, 7.3416, 7.3413, 7.342300000000001, 7.342, 7.3417, 7.3412, 7.3421, 7.3461, 7.3458, 7.3454, 7.3449, 7.3446, 7.3442, 7.3426, 7.341, 7.3405, 7.3402, 7.3399, 7.3396, 7.3393, 7.3389, 7.3384, 7.3395, 7.3378, 7.3375, 7.337, 7.338, 7.3377, 7.3376, 7.3371, 7.3366, 7.3376, 7.3379, 7.3376, 7.3385, 7.3382, 7.3378, 7.3387, 7.3385, 7.3394, 7.3389, 7.3385, 7.3381, 7.3377, 7.3402, 7.3398, 7.3395, 7.3394, 7.3394, 7.3404, 7.3413, 7.3423, 7.3421, 7.3419, 7.3415, 7.3411, 7.3422, 7.3419, 7.3415, 7.3414, 7.3413, 7.3415, 7.3414, 7.3411, 7.3409, 7.3418, 7.3415, 7.3413, 7.3409, 7.3404, 7.3401, 7.3397, 7.3392, 7.3402, 7.3398, 7.3393, 7.339, 7.3386, 7.3382, 7.3378, 7.3378, 7.3373, 7.3369, 7.3365, 7.3373, 7.3372, 7.337, 7.3379, 7.3374, 7.3372, 7.3367, 7.3366, 7.3362, 7.3371, 7.3381, 7.3377, 7.3373, 7.3383, 7.3379, 7.3375, 7.3384, 7.338, 7.3377, 7.3372, 7.3367, 7.3364, 7.336, 7.3355, 7.3352, 7.335, 7.3349, 7.3345, 7.334, 7.3335, 7.3333, 7.3329, 7.3328, 7.3326, 7.3321, 7.3319, 7.3328, 7.3323, 7.332, 7.3316, 7.3313, 7.3321, 7.3329, 7.3327, 7.3325, 7.332, 7.3329, 7.3324, 7.3319, 7.3315, 7.3311, 7.3308, 7.3306, 7.3302, 7.3312, 7.3307, 7.3302, 7.3313, 7.3308, 7.3305, 7.329, 7.3287, 7.3296, 7.3294, 7.3292, 7.3291, 7.3287, 7.3284, 7.3279, 7.3289, 7.3299, 7.3297, 7.3296, 7.3292, 7.3287, 7.3284, 7.3281, 7.328, 7.3275, 7.327, 7.3266, 7.3265, 7.3274, 7.3272, 7.3267, 7.3266, 7.3263, 7.3259, 7.3255, 7.3254, 7.325, 7.3248, 7.3243, 7.324, 7.3238, 7.3233, 7.3229, 7.324, 7.3252, 7.3249, 7.3247, 7.3243, 7.324, 7.3238, 7.3234, 7.323, 7.3225, 7.3221, 7.3218, 7.3228, 7.3224, 7.3235, 7.3231, 7.324, 7.325, 7.3247, 7.3243, 7.3241, 7.3238, 7.3247, 7.3255, 7.325, 7.3247, 7.3256, 7.3253, 7.325, 7.3248, 7.326, 7.3271, 7.328, 7.3278, 7.3278, 7.3287, 7.3286, 7.3281, 7.3289, 7.3284, 7.3284, 7.3281, 7.3267, 7.3264, 7.3274, 7.3272, 7.3268, 7.3263, 7.325, 7.3247, 7.3243, 7.3251, 7.3247, 7.3247, 7.3242, 7.3239, 7.3236, 7.3233, 7.3229, 7.3224, 7.322, 7.3229, 7.3225, 7.3221, 7.323, 7.3233, 7.323, 7.3227, 7.3235, 7.3274, 7.3271, 7.328, 7.3277, 7.3262, 7.3258, 7.3266, 7.3262, 7.3259, 7.3254, 7.325, 7.3259, 7.3256, 7.3253, 7.326300000000001, 7.3286, 7.3282, 7.3279, 7.3274, 7.3272, 7.328, 7.3276, 7.3273, 7.3259, 7.3256, 7.3256, 7.3254, 7.3249, 7.3247, 7.3243, 7.3238, 7.326, 7.3246, 7.3232, 7.3241, 7.3251, 7.3247, 7.3244, 7.3242, 7.3238, 7.3234, 7.3231, 7.3241, 7.3237, 7.3245, 7.3242, 7.3242, 7.324, 7.3238, 7.3247, 7.3243, 7.3239, 7.3235, 7.3234, 7.323, 7.3216, 7.3214, 7.3209, 7.3208, 7.3204, 7.32, 7.321, 7.3219, 7.3217, 7.3213, 7.321, 7.3206, 7.3202, 7.3199, 7.3215, 7.3212, 7.3219, 7.3229, 7.3236, 7.3232, 7.3229, 7.3226, 7.3233, 7.323, 7.3227, 7.3224, 7.3233, 7.3218, 7.3214, 7.3201, 7.3198, 7.3194, 7.3191, 7.3187, 7.3196, 7.3205, 7.3213, 7.321, 7.322, 7.3229, 7.3238, 7.3233, 7.3219, 7.3215, 7.321, 7.3219, 7.3215, 7.3223, 7.3221, 7.3218, 7.3215, 7.3213, 7.3213, 7.321, 7.3208, 7.3195, 7.3194, 7.3192, 7.32, 7.3209, 7.3207, 7.3205, 7.3202, 7.3212, 7.3223, 7.322, 7.3215, 7.3211, 7.3207, 7.3204, 7.32, 7.3198, 7.3195, 7.3192, 7.3188, 7.3184, 7.3169, 7.3153, 7.3162, 7.3161, 7.317, 7.3169, 7.3166, 7.3153, 7.3153, 7.3175, 7.3183, 7.3179, 7.3178, 7.3186, 7.3196, 7.3193, 7.3191, 7.3191, 7.3191, 7.3187, 7.3186, 7.3184, 7.318, 7.3176, 7.3172, 7.3168, 7.3177, 7.3176, 7.3175, 7.3173, 7.3172, 7.3168, 7.3167, 7.3175, 7.3183, 7.318, 7.3176, 7.3174, 7.317, 7.3179, 7.3177, 7.3173, 7.3169, 7.3168, 7.3178, 7.3177, 7.3163, 7.3159, 7.3155, 7.3164, 7.3161, 7.3147, 7.3133, 7.3119, 7.3115, 7.3124, 7.312, 7.3117, 7.3113, 7.3123, 7.3119, 7.3119, 7.3115, 7.3114, 7.3123, 7.3121, 7.3117, 7.3104, 7.3101, 7.3097, 7.3098, 7.3097, 7.3094, 7.3117, 7.3113, 7.3099, 7.3096, 7.3093, 7.3102, 7.3099, 7.3097, 7.3106, 7.3107, 7.3116, 7.3114, 7.3124, 7.3121, 7.3129, 7.3127, 7.3136, 7.3123, 7.312, 7.3128, 7.3126, 7.3124, 7.3122, 7.3119, 7.3106, 7.3101, 7.3098, 7.3107, 7.3105, 7.3103, 7.3099, 7.3095, 7.3103, 7.31, 7.3097, 7.3093, 7.3089, 7.3086, 7.3083, 7.3093, 7.3089, 7.31, 7.3098, 7.3094, 7.3091, 7.3087, 7.3098, 7.3107, 7.3123, 7.3119, 7.3126, 7.3124, 7.3122, 7.3118, 7.3128, 7.3137, 7.3146, 7.3143, 7.3139, 7.3138, 7.3136, 7.3133, 7.3129, 7.3126, 7.3127, 7.3123, 7.3134, 7.312, 7.3116, 7.3128, 7.3124, 7.3122, 7.3119, 7.3116, 7.3139, 7.3137, 7.3137, 7.3136, 7.3144, 7.3153, 7.3162, 7.3159, 7.3155, 7.3152, 7.316, 7.3157, 7.3153, 7.3163, 7.3173, 7.317, 7.318, 7.3177, 7.3194, 7.3193, 7.319, 7.318, 7.3181, 7.3189, 7.3189, 7.3198, 7.3208, 7.3205, 7.3204, 7.3201, 7.3201, 7.32, 7.3208, 7.3205, 7.3202, 7.32, 7.3197, 7.3193, 7.319, 7.3187, 7.3186, 7.3194, 7.3181, 7.3177, 7.3184, 7.3192, 7.3188, 7.3185, 7.3181, 7.3177, 7.3173, 7.3181, 7.3179, 7.3176, 7.3183, 7.3191, 7.3188, 7.3184, 7.318, 7.3189, 7.3187, 7.3184, 7.3193, 7.3201, 7.3209, 7.3206, 7.3202, 7.321, 7.321, 7.3206, 7.3214, 7.321, 7.3206, 7.3203, 7.32, 7.3208, 7.3206, 7.3202, 7.3187, 7.3195, 7.3202, 7.32, 7.3196, 7.3194, 7.319, 7.3186, 7.3182, 7.3183, 7.318, 7.3191, 7.3188, 7.3185, 7.3182, 7.3178, 7.3176, 7.3172, 7.3179, 7.3187, 7.3195, 7.3192, 7.3191, 7.3188, 7.3187, 7.3185, 7.3182, 7.318, 7.3178, 7.3188, 7.3187, 7.3185, 7.3183, 7.3179, 7.3176, 7.3172, 7.3168, 7.3167, 7.3174, 7.3173, 7.317, 7.3168, 7.3166, 7.3173, 7.3171, 7.3157, 7.3154, 7.3161, 7.3161, 7.3157, 7.3153, 7.3167, 7.3163, 7.3162, 7.3158, 7.3154, 7.315, 7.3147, 7.3143, 7.314, 7.3138, 7.3134, 7.3139, 7.315, 7.3159, 7.3167, 7.3196, 7.3194, 7.3202, 7.3199, 7.3198, 7.3196, 7.3194, 7.3191, 7.3198, 7.3196, 7.3194, 7.3194, 7.3193, 7.319, 7.3233, 7.3231, 7.3229, 7.3227, 7.3227, 7.3224, 7.3232, 7.3229, 7.3226, 7.3233, 7.3229, 7.3227, 7.3236, 7.3232, 7.3231, 7.323, 7.3227, 7.3227, 7.3223, 7.3221, 7.322, 7.3218, 7.3215, 7.3212, 7.3209, 7.3208, 7.3205, 7.3202, 7.3209, 7.3206, 7.3203, 7.3214, 7.3211, 7.3232, 7.3248, 7.3258, 7.3255, 7.3252, 7.3248, 7.3247, 7.3243, 7.3239, 7.3246, 7.3243, 7.324, 7.3238, 7.3237, 7.3244, 7.324, 7.3247, 7.3255, 7.3251, 7.3259, 7.3255, 7.3263, 7.3271, 7.3268, 7.3266, 7.3266, 7.3274, 7.3328, 7.3326, 7.3335, 7.3332, 7.3328, 7.3326, 7.3345, 7.3344, 7.3342, 7.3339, 7.3336, 7.3333, 7.3331, 7.3317, 7.3314, 7.3311, 7.3307, 7.3316, 7.3313, 7.3313, 7.331, 7.331, 7.331, 7.3307, 7.3303, 7.329, 7.3288, 7.3285, 7.3281, 7.3279, 7.3275, 7.3273, 7.3281, 7.3277, 7.3273, 7.3269, 7.3276, 7.3283, 7.3279, 7.3286, 7.3283, 7.3291, 7.3289, 7.3292, 7.3292, 7.3288, 7.3286, 7.3321, 7.332, 7.3327, 7.3323, 7.3319, 7.3316, 7.3312, 7.3308, 7.3305, 7.3301, 7.3298, 7.3294, 7.329, 7.3286, 7.3285, 7.3281, 7.3278, 7.3275, 7.3272, 7.3269, 7.3277, 7.3285, 7.3282, 7.3279, 7.3287, 7.3287, 7.3286, 7.3283, 7.328, 7.3276, 7.3285, 7.3293, 7.3291, 7.329, 7.3298, 7.3296, 7.3303, 7.3303, 7.33, 7.3298, 7.3306, 7.3303, 7.33, 7.3297, 7.3294, 7.3302, 7.3298, 7.3296, 7.3292, 7.33, 7.3296, 7.3293, 7.3289, 7.3298, 7.3295, 7.3292, 7.3288, 7.3287, 7.3295, 7.3292, 7.3288, 7.3289, 7.3289, 7.3285, 7.3282, 7.3279, 7.3286, 7.3282, 7.3279, 7.3276, 7.3274, 7.327, 7.3267, 7.3274, 7.3261, 7.3262, 7.326, 7.3256, 7.3264, 7.3261, 7.3257, 7.3256, 7.3253, 7.3249, 7.3247, 7.3245, 7.3241, 7.3241, 7.3241, 7.3249, 7.3245, 7.3252, 7.3261, 7.3258, 7.3258, 7.3256, 7.3254, 7.3252, 7.3248, 7.3255, 7.3254, 7.3251, 7.326, 7.3257, 7.3254, 7.326, 7.3259, 7.3256, 7.3252, 7.3249, 7.325, 7.3247, 7.3245, 7.3244, 7.3241, 7.325, 7.3247, 7.3234, 7.3232, 7.3228, 7.3235, 7.3243, 7.324, 7.3249, 7.3246, 7.3255, 7.3253, 7.3307, 7.3296, 7.3304, 7.3305, 7.3312, 7.3308, 7.3305, 7.3301, 7.3297, 7.3293, 7.329, 7.3303, 7.3315, 7.3312, 7.3317, 7.3315, 7.3311, 7.3307, 7.3306, 7.3314, 7.3321, 7.3328, 7.3325, 7.3312, 7.3319, 7.3315, 7.3322, 7.3329, 7.3325, 7.3321, 7.3328, 7.3325, 7.3332, 7.3341, 7.334, 7.3338, 7.3334, 7.334, 7.3326, 7.3313, 7.332, 7.3367, 7.3365, 7.3361, 7.3359, 7.3358, 7.3356, 7.3352, 7.3359, 7.3357, 7.3353, 7.3349, 7.3349, 7.3345, 7.3343, 7.3349, 7.3345, 7.3352, 7.3349, 7.3346, 7.3342, 7.3339, 7.3335, 7.3322, 7.3318, 7.3314, 7.3311, 7.3308, 7.3304, 7.3303, 7.33, 7.3299, 7.3296, 7.3307, 7.3304, 7.3334, 7.3331, 7.3327, 7.3324, 7.3323, 7.3323, 7.3331, 7.3328, 7.3326, 7.3324, 7.3321, 7.333, 7.3327, 7.3325, 7.3313, 7.331, 7.331, 7.3307, 7.3303, 7.331, 7.3309, 7.3315, 7.3313, 7.3311, 7.3308, 7.3306, 7.3316, 7.3312, 7.3309, 7.3306, 7.3314, 7.3315, 7.3312, 7.3319, 7.3318, 7.3315, 7.3311, 7.3318, 7.3315, 7.3322, 7.3339, 7.3372, 7.3359, 7.3346, 7.3347, 7.3344, 7.334, 7.3359, 7.3359, 7.3355, 7.3353, 7.335, 7.3348, 7.3344, 7.3352, 7.335, 7.3349, 7.3346, 7.3344, 7.3341, 7.3338, 7.3335, 7.3333, 7.3329, 7.3325, 7.3334, 7.3332, 7.3367, 7.3375, 7.3372, 7.3369, 7.3366, 7.3363, 7.3359, 7.3357, 7.3354, 7.3354, 7.335, 7.3348, 7.3357, 7.3354, 7.3351, 7.3358, 7.3364, 7.3361, 7.3369, 7.3365, 7.3365, 7.3362, 7.3358, 7.3375, 7.3383, 7.3389, 7.3386, 7.3419, 7.3427, 7.3424, 7.3431, 7.3427, 7.3436, 7.3444, 7.3441, 7.3437, 7.3435, 7.3433, 7.3431, 7.3419, 7.3415, 7.3413, 7.341, 7.3407, 7.3406, 7.3413, 7.342, 7.3418, 7.3416, 7.3412, 7.3416, 7.3412, 7.3419, 7.3417, 7.3413, 7.3411, 7.3418, 7.3415, 7.3423, 7.3419, 7.3438, 7.3444, 7.344, 7.3438, 7.3434, 7.3431, 7.3428, 7.3425, 7.3421, 7.3419, 7.3416, 7.3417, 7.3414, 7.3422, 7.3429, 7.3435, 7.3443, 7.344, 7.3439, 7.3436, 7.3434, 7.3432, 7.3429, 7.3436, 7.3433, 7.343, 7.3427, 7.3425, 7.3431, 7.3428, 7.3434, 7.343, 7.3427, 7.3434, 7.3433, 7.3429, 7.3426, 7.3424, 7.3422, 7.3419, 7.342, 7.3417, 7.3404, 7.34, 7.3397, 7.3385, 7.3383, 7.3379, 7.3376, 7.3373, 7.3371, 7.3368, 7.3364, 7.3364, 7.336, 7.3358, 7.3354, 7.3354, 7.3351, 7.3349, 7.3345, 7.3341, 7.3351, 7.335, 7.3348, 7.3345, 7.3342, 7.3339, 7.3337, 7.3343, 7.334, 7.3336, 7.3333, 7.3331, 7.3338, 7.3335, 7.3333, 7.333, 7.333, 7.3328, 7.3326, 7.3322, 7.3329, 7.3325, 7.3333, 7.333, 7.3328, 7.3324, 7.3331, 7.3327, 7.3324, 7.3321, 7.3318, 7.3316, 7.3323, 7.332, 7.3328, 7.3326, 7.3323, 7.3321, 7.3317, 7.3314, 7.3321, 7.3319, 7.3347, 7.3364, 7.3361, 7.3357, 7.3353, 7.3351, 7.335, 7.3356, 7.3352, 7.3349, 7.3356, 7.3362, 7.335, 7.3346, 7.3342, 7.3341, 7.333, 7.3328, 7.3326, 7.3323, 7.3312, 7.331, 7.3307, 7.3314, 7.3312, 7.332, 7.3316, 7.3312, 7.3311, 7.3317, 7.3313, 7.3309, 7.3306, 7.3305, 7.3293, 7.3291, 7.3289, 7.3287, 7.3275, 7.3273, 7.3271, 7.327, 7.3268, 7.3264, 7.3261, 7.3258, 7.3254, 7.3279, 7.3284, 7.3281, 7.3278, 7.3276, 7.3274, 7.3271, 7.3279, 7.3276, 7.3264, 7.3264, 7.3263, 7.3283, 7.3282, 7.329, 7.3288, 7.3297, 7.3295, 7.3302, 7.33, 7.331, 7.3309, 7.3306, 7.3317, 7.3315, 7.3311, 7.331, 7.3312, 7.3308, 7.3306, 7.3304, 7.3292, 7.3281, 7.3279, 7.3277, 7.3285, 7.3282, 7.328, 7.3278, 7.3275, 7.3274, 7.327, 7.3267, 7.3264, 7.3263, 7.3271, 7.327, 7.3269, 7.3267, 7.3264, 7.3261, 7.3268, 7.3274, 7.3272, 7.3278, 7.3276, 7.3273, 7.328, 7.3287, 7.3285, 7.3282, 7.3279, 7.3267, 7.3274, 7.327, 7.3268, 7.3265, 7.3261, 7.3259, 7.3257, 7.3255, 7.3259, 7.3256, 7.3252, 7.325, 7.3246, 7.3242, 7.3239, 7.3236, 7.3234, 7.3232, 7.3228, 7.3235, 7.3231, 7.3229, 7.3219, 7.3217, 7.3214, 7.3233, 7.3243, 7.3253, 7.326300000000001, 7.3263, 7.3273, 7.3283000000000005, 7.329300000000001, 7.329, 7.3289, 7.3288, 7.3298, 7.3295, 7.3292, 7.329, 7.3287, 7.3284, 7.3284, 7.3291, 7.3299, 7.3297, 7.3294, 7.3292, 7.3289, 7.3297, 7.3305, 7.3302, 7.33, 7.3298, 7.3308, 7.3318, 7.3315, 7.3316, 7.3338, 7.3337, 7.3333, 7.3331, 7.3329, 7.3328, 7.3316, 7.3306, 7.3303, 7.3299, 7.3297, 7.3304, 7.33, 7.3297, 7.3296, 7.3302, 7.33, 7.329, 7.3297, 7.3296, 7.3294, 7.3301, 7.3308, 7.3314, 7.3311, 7.3308, 7.3314, 7.331, 7.3307, 7.3295, 7.3293, 7.329, 7.3287, 7.3283, 7.3281, 7.3278, 7.3275, 7.3273, 7.327, 7.3268, 7.3265, 7.3272, 7.3269, 7.3266, 7.3276, 7.3273, 7.3271, 7.3269, 7.3276, 7.3273, 7.3279, 7.3276, 7.3264, 7.3271, 7.3278, 7.3288, 7.3285, 7.3283, 7.3289, 7.3296, 7.3293, 7.329, 7.3288, 7.3286, 7.3283, 7.3281, 7.3279, 7.3285, 7.3283, 7.3281, 7.328, 7.3277, 7.3275, 7.3274, 7.3271, 7.3268, 7.3266, 7.3265, 7.3263, 7.3261, 7.3259, 7.3266, 7.3262, 7.325, 7.3247, 7.3244, 7.3241, 7.323, 7.323, 7.3227, 7.3224, 7.3222, 7.3219, 7.3217, 7.3215, 7.3211, 7.3212, 7.3209, 7.3207, 7.3214, 7.3213, 7.3211, 7.322100000000001, 7.322, 7.323, 7.3228, 7.3234, 7.324400000000001, 7.3242, 7.325200000000001, 7.3269, 7.3265, 7.3262, 7.326, 7.3257, 7.326700000000001, 7.3264, 7.326, 7.3258, 7.3255, 7.3252, 7.3249, 7.3248, 7.3245, 7.3243, 7.3241, 7.3238, 7.3235, 7.3242, 7.3239, 7.3238, 7.3247, 7.3243, 7.324, 7.3237, 7.3245, 7.3243, 7.3255, 7.3251, 7.3248, 7.3245, 7.3255, 7.3252, 7.3249, 7.3245, 7.3242, 7.3248, 7.3245, 7.325, 7.325, 7.3247, 7.3246, 7.3242, 7.3249, 7.3248, 7.3245, 7.3253, 7.3252, 7.325, 7.3246, 7.3248, 7.3257, 7.3264, 7.326, 7.327, 7.3267, 7.3264, 7.3271, 7.3278, 7.3284, 7.3281, 7.328, 7.329000000000001, 7.3287, 7.3287, 7.3287, 7.3288, 7.3296, 7.3301, 7.3289, 7.3287, 7.3284, 7.3291, 7.328, 7.3286, 7.3285, 7.3281, 7.3278, 7.3275, 7.3272, 7.3268, 7.3266, 7.3265, 7.3263, 7.3273, 7.3283000000000005, 7.329300000000001, 7.3291, 7.3289, 7.3288, 7.3286, 7.3283, 7.3281, 7.3279, 7.3286, 7.3292, 7.328, 7.333, 7.3329, 7.3335, 7.3332, 7.3329, 7.3328, 7.3336, 7.3325, 7.3322, 7.3322, 7.332, 7.3318, 7.3325, 7.3325, 7.3322, 7.3328, 7.334, 7.3338, 7.3334, 7.3331, 7.3337, 7.3335, 7.3333, 7.3341, 7.3348, 7.3345, 7.3363, 7.336, 7.3359, 7.3365, 7.3371, 7.337, 7.3368, 7.3364, 7.3361, 7.3358, 7.3355, 7.3352, 7.3359, 7.3356, 7.3363, 7.336, 7.3357, 7.3363, 7.3369, 7.3376, 7.3382, 7.338, 7.3386, 7.3383, 7.3382, 7.3379, 7.3375, 7.3372, 7.3378, 7.3384, 7.3381, 7.3378, 7.3375, 7.3373, 7.337, 7.3367, 7.3373, 7.338, 7.3386, 7.3383, 7.338, 7.3377, 7.3384, 7.3381, 7.3387, 7.3383, 7.338, 7.3379, 7.3377, 7.3374, 7.3372, 7.3369, 7.3375, 7.3372, 7.3371, 7.3365, 7.3362, 7.3369, 7.3368, 7.3366, 7.3363, 7.336, 7.3367, 7.3374, 7.3371, 7.337, 7.3376, 7.3374, 7.3371, 7.3361, 7.3357, 7.3363, 7.336, 7.3358, 7.3356, 7.3354, 7.3351, 7.3348, 7.3344, 7.3341, 7.3339, 7.3336, 7.3334, 7.3344000000000005, 7.3342, 7.334, 7.3337, 7.3335, 7.3332, 7.3329, 7.3325, 7.3322, 7.3328, 7.3326, 7.3317, 7.3314, 7.3318, 7.3314, 7.3311, 7.3308, 7.3306, 7.3303, 7.331, 7.3308, 7.3305, 7.3303, 7.3292, 7.329, 7.3297, 7.3295, 7.3302, 7.33, 7.3298, 7.3295, 7.3294, 7.3298, 7.3296, 7.3294, 7.3291, 7.3298, 7.3296, 7.3285, 7.3284, 7.3282, 7.3281, 7.3279, 7.3276, 7.3273, 7.3262, 7.3252, 7.3241, 7.3246, 7.3243, 7.324, 7.3237, 7.3235, 7.3233, 7.3241, 7.3238, 7.3237, 7.3236, 7.3243, 7.3253, 7.3262, 7.3268, 7.3267, 7.3279, 7.3277, 7.3282, 7.3288, 7.3296, 7.3302, 7.33, 7.3298, 7.3304, 7.3293, 7.329, 7.3279, 7.3276, 7.3273, 7.3272, 7.3273, 7.329, 7.3287, 7.3284, 7.3281, 7.3287, 7.3288, 7.3285, 7.3287, 7.3284, 7.329400000000001, 7.330400000000001, 7.3302, 7.3309, 7.3305, 7.3304, 7.3301, 7.3307, 7.3305, 7.3302, 7.33, 7.3298, 7.3296, 7.3295, 7.3292, 7.3299, 7.3296, 7.3295, 7.3292, 7.3291, 7.3289, 7.3287, 7.3284, 7.3282, 7.3281, 7.3278, 7.3275, 7.3273, 7.3272, 7.3269, 7.3267, 7.3272, 7.3278, 7.3276, 7.3273, 7.327, 7.3267, 7.3273, 7.3271, 7.3268, 7.3274, 7.328, 7.3277, 7.3283, 7.3289, 7.3286, 7.3293, 7.3292, 7.3291, 7.3287, 7.3293, 7.329, 7.3287, 7.3277, 7.3281, 7.3288, 7.3285, 7.3284, 7.3281, 7.3291, 7.329, 7.3297, 7.3295, 7.3294, 7.3301, 7.3298, 7.3305, 7.3308, 7.3308, 7.3343, 7.334, 7.3337, 7.3345, 7.3352, 7.3352, 7.3349, 7.3346, 7.3343, 7.3343, 7.3342, 7.3349, 7.3348, 7.3337, 7.3344, 7.335, 7.3349, 7.3347, 7.3344, 7.3351, 7.335, 7.3349, 7.3346, 7.3352, 7.3349, 7.3347, 7.3353, 7.3351, 7.3349, 7.3346, 7.3344, 7.335, 7.3347, 7.3346, 7.3345, 7.3352, 7.3359, 7.3358, 7.3356, 7.3362, 7.3359, 7.3356, 7.3353, 7.335, 7.3348, 7.3345, 7.3342, 7.3339, 7.3328, 7.3325, 7.3331, 7.3328, 7.3335, 7.3332, 7.3338, 7.3335, 7.3335, 7.3332, 7.3338, 7.3335, 7.3333, 7.3331, 7.3329, 7.3336, 7.3342, 7.3349, 7.3347, 7.3353, 7.335, 7.3348, 7.3337, 7.3326, 7.3325, 7.3323, 7.3321, 7.332, 7.3309, 7.3299, 7.3289, 7.3278, 7.3275, 7.3291, 7.3289, 7.3286, 7.3277, 7.3274, 7.3271, 7.3269, 7.326, 7.3257, 7.3264, 7.3261, 7.3263, 7.326, 7.3257, 7.3254, 7.3251, 7.3241, 7.3238, 7.3235, 7.324, 7.3246, 7.3252, 7.3251, 7.3248, 7.3246, 7.3244, 7.3243, 7.3241, 7.3238, 7.3245, 7.3254, 7.3253, 7.3258, 7.3266, 7.3263, 7.326, 7.3258, 7.3266, 7.3263, 7.3252, 7.3241, 7.324, 7.3238, 7.3235, 7.3232, 7.3232, 7.3229, 7.3239, 7.3249, 7.3246, 7.3243, 7.3241, 7.3239, 7.3237, 7.3234, 7.324, 7.3239, 7.3236, 7.3242, 7.3248, 7.3254, 7.3252, 7.3257, 7.3255, 7.3261, 7.3258, 7.3257, 7.3255, 7.3262, 7.3268, 7.3265, 7.3262, 7.326, 7.3266, 7.3264, 7.3263, 7.3262, 7.3259, 7.3259, 7.3266, 7.3263, 7.327, 7.3267, 7.3265, 7.3263, 7.3261, 7.3258, 7.3256, 7.3254, 7.3261, 7.3259, 7.3265, 7.3272, 7.3272, 7.3269, 7.3266, 7.3264, 7.327, 7.3269, 7.3259, 7.3256, 7.3253, 7.325, 7.3248, 7.3247, 7.3246, 7.3244, 7.325, 7.3248, 7.3246, 7.3252, 7.325, 7.3247, 7.3244, 7.3241, 7.3246, 7.3252, 7.3249, 7.3247, 7.3247, 7.3244, 7.3243, 7.3241, 7.324, 7.3246, 7.3243, 7.3252, 7.3259, 7.3265, 7.3281, 7.3278, 7.3275, 7.3273, 7.3271, 7.327, 7.3277, 7.3275, 7.3273, 7.3271, 7.326, 7.3261, 7.3259, 7.3257, 7.3256, 7.3255, 7.3253, 7.3266, 7.3265, 7.3273, 7.3273, 7.327, 7.3275, 7.3274, 7.3271, 7.3268, 7.3267, 7.3265, 7.3262, 7.3259, 7.3256, 7.3254, 7.3251, 7.3248, 7.3246, 7.3243, 7.3242, 7.3241, 7.3247, 7.3246, 7.3244, 7.3243, 7.324, 7.3239, 7.3239, 7.3246, 7.3237, 7.3247, 7.3246, 7.3244, 7.3243, 7.324, 7.3237, 7.3235, 7.3232, 7.3231, 7.3229, 7.3235, 7.3241, 7.3238, 7.3244, 7.3236, 7.3246, 7.3256000000000006, 7.326600000000001, 7.3264, 7.3263, 7.3262, 7.3261, 7.3259, 7.3256, 7.3253, 7.3255, 7.3254, 7.3252, 7.325, 7.3247, 7.3245, 7.3251, 7.3257, 7.326700000000001, 7.327700000000001, 7.3286, 7.3311, 7.3339, 7.3338, 7.3336, 7.3343, 7.3342, 7.3347, 7.3346, 7.3351, 7.3349, 7.3348, 7.3347, 7.3344, 7.3349, 7.3346, 7.3345, 7.3343, 7.334, 7.3337, 7.3343, 7.3349, 7.3347, 7.3344, 7.3342, 7.334, 7.3337, 7.3334, 7.3341, 7.3338, 7.3337, 7.3337, 7.3337, 7.3329, 7.3326, 7.3326, 7.3324, 7.3322, 7.332, 7.3317, 7.3331, 7.3337, 7.3343, 7.3342, 7.3341, 7.3338, 7.3336, 7.3344, 7.3342, 7.3357, 7.3364, 7.3361, 7.3367, 7.3366, 7.3364, 7.3361, 7.3359, 7.3365, 7.3363, 7.336, 7.3357, 7.3365, 7.3362, 7.3359, 7.3365, 7.3371, 7.3376, 7.3376, 7.3373, 7.3371, 7.3368, 7.3366, 7.3372, 7.3378, 7.3375, 7.3372, 7.3369, 7.3366, 7.3364, 7.337, 7.3368, 7.3366, 7.3364, 7.3361, 7.3368, 7.3396, 7.3393, 7.339, 7.3387, 7.3384, 7.3381, 7.3378, 7.3378, 7.3383, 7.338, 7.3378, 7.3376, 7.3374, 7.3373, 7.3379, 7.3385, 7.3384, 7.3381, 7.3378, 7.3375, 7.3373, 7.3372, 7.3377, 7.3376, 7.3382, 7.339, 7.3387, 7.3393, 7.3392, 7.339, 7.3388, 7.3397, 7.3394, 7.3392, 7.3399, 7.3396, 7.3395, 7.3394, 7.3391, 7.3407, 7.3413, 7.3412, 7.3414, 7.3411, 7.3408, 7.3405, 7.3403, 7.3427, 7.3434, 7.3432, 7.3447, 7.3445, 7.3443, 7.3441, 7.3438, 7.3436, 7.3433, 7.3431, 7.3445, 7.3452, 7.3476, 7.3475, 7.3473, 7.3471, 7.3468, 7.347, 7.3485, 7.3483, 7.3489, 7.3486, 7.3483, 7.3506, 7.3512, 7.3518, 7.3516, 7.3529, 7.3534, 7.3531, 7.3528, 7.3533, 7.3546, 7.3543, 7.3542, 7.3539, 7.3536, 7.3541, 7.3538, 7.3528, 7.3533, 7.3539, 7.3544, 7.3534, 7.3539, 7.3544, 7.3542, 7.3539, 7.3554, 7.3556, 7.3554, 7.3563, 7.3574, 7.3571, 7.3568, 7.3566, 7.359, 7.3587, 7.3592, 7.3598, 7.3613, 7.361, 7.3608, 7.3605, 7.3605, 7.3603, 7.361, 7.3612, 7.3617, 7.3623, 7.3628, 7.3625, 7.3622, 7.3634, 7.3635, 7.3642, 7.365, 7.3648, 7.3645, 7.3644, 7.3641, 7.3639, 7.3637, 7.3635, 7.3634, 7.364, 7.3639, 7.3636, 7.3643, 7.364, 7.3637, 7.3635, 7.3632, 7.3642, 7.364, 7.3638, 7.365, 7.3647, 7.3645, 7.3651, 7.3649, 7.3648, 7.3646, 7.3644, 7.3643, 7.364, 7.3637, 7.3635, 7.3633, 7.3631, 7.3629, 7.364, 7.3638, 7.3643, 7.3649, 7.3663, 7.3661, 7.366, 7.3668, 7.3676, 7.3674, 7.3674, 7.3671, 7.3668, 7.3698, 7.3695, 7.3693, 7.3699, 7.3712, 7.3709, 7.3714, 7.3719, 7.3716, 7.3714, 7.3711, 7.3717, 7.3722, 7.3719, 7.3716, 7.3713, 7.371, 7.3707, 7.3705, 7.3702, 7.3699, 7.3697, 7.3694, 7.3692, 7.369, 7.3695, 7.3692, 7.3697, 7.3703, 7.3701, 7.3699, 7.3696, 7.3694, 7.3691, 7.3688, 7.3694, 7.37, 7.3705, 7.3702, 7.3699, 7.3696, 7.3693, 7.3698, 7.3695, 7.3692, 7.3682, 7.368, 7.3678, 7.3675, 7.3674, 7.3671, 7.3669, 7.3667, 7.3666, 7.3663, 7.3669, 7.3676, 7.3674, 7.3671, 7.367, 7.3668, 7.3667, 7.3665, 7.3662, 7.366, 7.3657, 7.3654, 7.3652, 7.3651, 7.3648, 7.3653, 7.365, 7.3656, 7.3653, 7.3652, 7.3652, 7.3658, 7.3656, 7.3653, 7.365, 7.3647, 7.3645, 7.3642, 7.364, 7.3638, 7.3637, 7.3636, 7.3633, 7.3646, 7.3643, 7.364, 7.3645, 7.3642, 7.364, 7.3638, 7.3635, 7.3649, 7.3646, 7.3644, 7.3649, 7.3646, 7.3651, 7.3656, 7.3653, 7.3658, 7.3655, 7.3652, 7.3649, 7.3647, 7.3644, 7.3642, 7.3639, 7.3637, 7.3644, 7.3643, 7.3647, 7.3645, 7.3675, 7.3681, 7.3679, 7.3687, 7.3693, 7.3691, 7.3688, 7.3685, 7.3683, 7.3681, 7.3687, 7.3692, 7.3689, 7.3686, 7.3685, 7.3683, 7.3681, 7.3679, 7.3676, 7.3674, 7.3672, 7.3671, 7.3669, 7.3666, 7.3663, 7.3668, 7.3675, 7.3673, 7.367, 7.3669, 7.3667, 7.3673, 7.367, 7.3668, 7.3666, 7.3663, 7.366, 7.3657, 7.3663, 7.3669, 7.3666, 7.3664, 7.3661, 7.3659, 7.3664, 7.3669, 7.3667, 7.3666, 7.3664, 7.3661, 7.3658, 7.3657, 7.3656, 7.3653, 7.365, 7.3647, 7.3653, 7.3659, 7.3657, 7.3654, 7.3652, 7.3658, 7.3663, 7.3669, 7.3668, 7.3666, 7.3663, 7.366, 7.3658, 7.3658, 7.3656, 7.3654, 7.3652, 7.3649, 7.3646, 7.3643, 7.364, 7.3639, 7.3645, 7.3644, 7.3641, 7.364, 7.3638, 7.3635, 7.3633, 7.3639, 7.3637, 7.3634, 7.364, 7.3637, 7.3635, 7.3633, 7.363, 7.3629, 7.3634, 7.3631, 7.3628, 7.3634, 7.3632, 7.3639, 7.3636, 7.3633, 7.3631, 7.3629, 7.3634, 7.3633, 7.3638, 7.3637, 7.3643, 7.3633, 7.3631, 7.3629, 7.3626, 7.3632, 7.3629, 7.3629, 7.3626, 7.3623, 7.3622, 7.3619, 7.3625, 7.3622, 7.362, 7.3617, 7.3622, 7.362, 7.3617, 7.3614, 7.3611, 7.361, 7.3611, 7.3608, 7.3614, 7.362, 7.3626, 7.3631, 7.3629, 7.3634, 7.3631, 7.3629, 7.3626, 7.3623, 7.3628, 7.3633, 7.3638, 7.3635, 7.364, 7.3638, 7.3643, 7.364, 7.3637, 7.3642, 7.3639, 7.3636, 7.3641, 7.3641, 7.3638, 7.3637, 7.3634, 7.3631, 7.3629, 7.3628, 7.3625, 7.3623, 7.3632, 7.363, 7.3627, 7.3625, 7.3623, 7.3621, 7.3619, 7.3616, 7.3614, 7.3613, 7.3611, 7.361, 7.3608, 7.3606, 7.3604, 7.3602, 7.3601, 7.3599, 7.3598, 7.3595, 7.3592, 7.3612, 7.3611, 7.3616, 7.3614, 7.3627, 7.3625, 7.3623, 7.3621, 7.3616, 7.3614, 7.362, 7.3618, 7.3615, 7.3613, 7.3615, 7.3613, 7.3611, 7.3609, 7.3611, 7.3608, 7.3614, 7.3612, 7.3613, 7.3612, 7.361, 7.3609, 7.3606, 7.3612, 7.3609, 7.3606, 7.3604, 7.3609, 7.3606, 7.3616, 7.3614, 7.3611, 7.3609, 7.3607, 7.3605, 7.3611, 7.3608, 7.3605, 7.3602, 7.3601, 7.3599, 7.3597, 7.3597, 7.3594, 7.3591, 7.3588, 7.3594, 7.3593, 7.3591, 7.3589, 7.3587, 7.3584], '192.168.122.113': [6.5258, 6.3813, 6.0486, 6.1847, 6.1228, 6.0996, 6.085, 6.0842, 6.8934, 7.3242, 8.6848, 8.5281, 8.4066, 9.4824, 9.7957, 9.5451, 9.6502, 9.4383, 9.2264, 9.3215, 9.1382, 8.969, 9.062, 8.9376, 9.0416, 8.9406, 8.8447, 8.7301, 8.6387, 8.5354, 8.9698, 8.8689, 8.793, 9.0322, 8.9423, 8.8455, 8.7672, 8.6852, 8.6094, 8.5448, 8.4691, 8.3981, 8.3319, 8.2743, 8.2207, 8.1831, 8.1329, 8.0733, 8.0461, 7.9958, 7.9451, 8.0045, 7.9545, 7.9248, 7.8806, 7.8478, 7.8049, 7.7674, 7.7294, 7.791, 7.7695, 7.7303, 7.708, 7.6903, 7.7426, 7.7084, 7.695, 7.6753, 7.7347, 7.7794, 7.7488, 7.7307, 7.7108, 7.6814, 7.6569, 7.7031, 7.7462, 7.7166, 7.7172, 7.7096, 7.6892, 7.6622, 7.6484, 7.6224, 7.6005, 7.5827, 7.6239, 7.6119, 7.5991, 7.5826, 7.5661, 7.6043, 7.5809, 7.5592, 7.5369, 7.57, 7.5543, 7.533, 7.5114, 7.4911, 7.5247, 7.5084, 7.4945, 7.527, 7.5146, 7.5039, 7.5358, 7.5672, 7.5526, 7.5339, 7.5653, 7.5747, 7.5551, 7.5402, 7.5274, 7.5624, 7.5468, 7.5277, 7.5565, 7.5415, 7.5574, 7.7357, 7.7178, 7.7091, 7.6909, 7.6712, 7.697, 7.6894, 7.7142, 7.6971, 7.6786, 7.7032, 7.6853, 7.675, 7.6578, 7.6793, 7.7037, 7.6891, 7.6725, 7.6568, 7.6436, 7.6709, 7.6626, 7.6158, 7.6014, 7.5872, 7.5754, 7.5644, 7.5498, 7.5379, 7.5252, 7.512, 7.5332, 7.5199, 7.5063, 7.4933, 7.4823, 7.4702, 7.4564, 7.4487, 7.4371, 7.4249, 7.4123, 7.4048, 7.3953, 7.3862, 7.374, 7.3634, 7.3537, 7.3456, 7.3361, 7.3268, 7.3175, 7.37, 7.3627, 7.3821, 7.3724, 7.361, 7.3517, 7.3408, 7.3332, 7.3229, 7.3426, 7.3321, 7.3244, 7.3244, 7.3143, 7.3089, 7.3012, 7.3211, 7.3165, 7.337, 7.3351, 7.3273, 7.3187, 7.3114, 7.3086, 7.3034, 7.2953, 7.292, 7.2822, 7.2727, 7.2681, 7.2882, 7.2796, 7.2964, 7.2872, 7.3084, 7.3287, 7.3488, 7.3402, 7.3358, 7.3288, 7.3216, 7.3144, 7.3111, 7.3031, 7.297, 7.294, 7.2865, 7.2777, 7.296, 7.288, 7.2822, 7.2996, 7.3146, 7.3087, 7.3086, 7.3052, 7.3248, 7.3203, 7.3143, 7.3072, 7.3253, 7.3196, 7.3118, 7.3065, 7.2992, 7.3141, 7.3078, 7.3005, 7.2928, 7.2878, 7.2827, 7.2799, 7.2741, 7.2912, 7.3064, 7.299, 7.2964, 7.2961, 7.3108, 7.3064, 7.3234, 7.3421, 7.3351, 7.3504, 7.3652, 7.358, 7.3535, 7.3669, 7.3799, 7.3728, 7.3864, 7.3811, 7.3742, 7.3732, 7.3652, 7.3615, 7.3546, 7.3493, 7.3436, 7.3567, 7.3712, 7.3637, 7.3634, 7.3598, 7.3556, 7.3541, 7.3494, 7.3448, 7.3398, 7.3353, 7.3306, 7.3259, 7.3213, 7.3333, 7.3288, 7.3245, 7.3198, 7.3183, 7.3301, 7.3262, 7.3368, 7.3378000000000005, 7.3516, 7.3822, 7.3753, 7.3697, 7.3631, 7.3576, 7.3509, 7.3466, 7.3454, 7.3409, 7.3361, 7.3303, 7.3278, 7.3215, 7.3192, 7.332, 7.3259, 7.3213, 7.3228, 7.3199, 7.3176, 7.3129, 7.308, 7.3075, 7.3038, 7.3076, 7.3224, 7.3536, 7.3502, 7.345, 7.3613, 7.3567, 7.3557, 7.3586, 7.3574, 7.3535, 7.3342, 7.3294, 7.3411, 7.3372, 7.352, 7.3469, 7.342, 7.3228, 7.3181, 7.3157, 7.3111, 7.307, 7.3022, 7.2983, 7.2942, 7.3036, 7.2989, 7.2986, 7.2958, 7.2912, 7.2876, 7.2821, 7.2818, 7.2774, 7.2744, 7.2702, 7.2646, 7.2758, 7.2716, 7.2691, 7.2645, 7.2761, 7.273, 7.2857, 7.284, 7.2803, 7.2918, 7.2885, 7.3002, 7.2977, 7.2946, 7.2894, 7.2856, 7.282, 7.2647, 7.2762, 7.277200000000001, 7.278200000000001, 7.2739, 7.2703, 7.2669, 7.2644, 7.2727, 7.2681, 7.2628, 7.2618, 7.2603, 7.2551, 7.2507, 7.2463, 7.2437, 7.2411, 7.2363, 7.2335, 7.234500000000001, 7.235500000000001, 7.2307, 7.2262, 7.2227, 7.2325, 7.2276, 7.223, 7.2457, 7.2424, 7.2434, 7.2415, 7.2393, 7.2355, 7.2306, 7.228, 7.2235, 7.2333, 7.2288, 7.2298, 7.2308, 7.2408, 7.2493, 7.2476, 7.244, 7.2438, 7.2395, 7.2384, 7.2355, 7.2586, 7.2805, 7.2815, 7.2766, 7.2731, 7.2759, 7.2736, 7.27, 7.267, 7.2631, 7.2597, 7.2573, 7.2583, 7.2593000000000005, 7.260300000000001, 7.261300000000001, 7.2596, 7.2574, 7.2657, 7.2616, 7.2698, 7.2792, 7.2766, 7.2728, 7.2698, 7.2673, 7.2627, 7.2592, 7.2557, 7.2525, 7.2507, 7.2477, 7.2436, 7.2527, 7.2615, 7.2604, 7.2566, 7.2576, 7.2558, 7.2547, 7.2518, 7.2488, 7.2457, 7.2424, 7.2396, 7.2396, 7.2363, 7.2457, 7.2548, 7.2539, 7.2507, 7.2471, 7.2434, 7.242, 7.24, 7.2377, 7.2468, 7.2467, 7.2438, 7.2404, 7.2376, 7.2338, 7.2306, 7.2314, 7.2389, 7.2376, 7.2363, 7.2329, 7.2291, 7.2369, 7.2369, 7.2332, 7.2417, 7.2501, 7.2573, 7.2535, 7.2516, 7.259, 7.2562, 7.253, 7.2511, 7.2487, 7.2568, 7.2531, 7.2495, 7.2565, 7.2635, 7.2701, 7.277, 7.2845, 7.2817, 7.2989, 7.2951, 7.3021, 7.2984, 7.2951, 7.2961, 7.3037, 7.3137, 7.3216, 7.3195, 7.3157, 7.3384, 7.3356, 7.3331, 7.34, 7.3371, 7.3339, 7.3321, 7.3291, 7.3269, 7.3263, 7.3226, 7.3208, 7.328, 7.3246, 7.3232, 7.3296, 7.3258, 7.3339, 7.3348, 7.3311, 7.3299, 7.3272, 7.3246, 7.3323, 7.333, 7.3309, 7.3278, 7.3251, 7.3238, 7.3319, 7.3283, 7.3258, 7.3234, 7.3212, 7.3196, 7.3188, 7.3174, 7.3255, 7.3226, 7.3203, 7.3181, 7.3168, 7.3146, 7.3214, 7.3179, 7.315, 7.3207, 7.3221, 7.3203, 7.3169, 7.3138, 7.3115, 7.3086, 7.3084, 7.3061, 7.3077, 7.3046, 7.3022, 7.2995, 7.2963, 7.3025, 7.2995, 7.2977, 7.2966, 7.2953, 7.2944, 7.3007, 7.2981, 7.305, 7.3174, 7.3143, 7.3184, 7.3372, 7.3293, 7.3262, 7.3236, 7.3206, 7.3176, 7.3238, 7.3208, 7.3178, 7.3237, 7.3214, 7.3198, 7.3186, 7.3191, 7.3162, 7.3129, 7.3108, 7.3076, 7.2977, 7.2957, 7.3032, 7.3001, 7.2991, 7.2962, 7.2931, 7.2913, 7.2882, 7.2863, 7.2847, 7.2903, 7.2895, 7.2866, 7.284, 7.2891, 7.2872, 7.2864, 7.287400000000001, 7.2844, 7.2841, 7.282, 7.2789, 7.2861, 7.2832, 7.2813, 7.2786, 7.2758, 7.2739, 7.2725, 7.2707, 7.2677, 7.2664, 7.2636, 7.2607, 7.2592, 7.2645, 7.2695, 7.2666, 7.2658, 7.2716, 7.2694, 7.2673, 7.2643, 7.2612, 7.2668, 7.2639, 7.2619, 7.2689, 7.2679, 7.2658, 7.2708, 7.268, 7.3045, 7.3024, 7.2994, 7.2965, 7.2938, 7.2928, 7.2913, 7.2972, 7.296, 7.2954, 7.2928, 7.2902, 7.2878, 7.2937, 7.2918, 7.2915, 7.2889, 7.2953, 7.2925, 7.2901, 7.2911, 7.2886, 7.287, 7.2852, 7.2862, 7.2872, 7.2843, 7.2824, 7.2797, 7.2777, 7.2767, 7.2756, 7.275, 7.2741, 7.2788, 7.2858, 7.2842, 7.2814, 7.2795, 7.2769, 7.275, 7.2736, 7.2716, 7.2699, 7.2673, 7.2655, 7.2565, 7.254, 7.2513, 7.2501, 7.2478, 7.2462, 7.244, 7.2416, 7.247, 7.2479, 7.2457, 7.2527, 7.2573, 7.2553, 7.2537, 7.2528, 7.251, 7.2491, 7.2488, 7.2462, 7.245, 7.2448, 7.2428, 7.2414, 7.2391, 7.237, 7.2356, 7.2345, 7.2326, 7.2336, 7.2322, 7.2376, 7.2356, 7.2556, 7.2613, 7.2592, 7.2572, 7.2553, 7.2542, 7.252, 7.2499, 7.2487, 7.2605, 7.2583, 7.2593000000000005, 7.2644, 7.2778, 7.2774, 7.2761, 7.2749, 7.2736, 7.2721, 7.2704, 7.2685, 7.2677, 7.2724, 7.2771, 7.2757, 7.2745, 7.2734, 7.2717, 7.2693, 7.270300000000001, 7.271300000000001, 7.2698, 7.2678, 7.2721, 7.2696, 7.2738, 7.2735, 7.2796, 7.2916, 7.2907, 7.2985, 7.2979, 7.3056, 7.3031, 7.3011, 7.3094, 7.3085, 7.3007, 7.2982, 7.3031, 7.3022, 7.3137, 7.3058, 7.3044, 7.3091, 7.3136, 7.3197, 7.3248, 7.3229, 7.327, 7.325, 7.3298, 7.3281, 7.3259, 7.3257, 7.3241, 7.3221, 7.3267, 7.3254, 7.3253, 7.3254, 7.3238, 7.3216, 7.3259, 7.3252, 7.3234, 7.3212, 7.3259, 7.3304, 7.329, 7.3332, 7.3381, 7.3363, 7.3404, 7.3381, 7.3359, 7.3344, 7.3333, 7.3375, 7.3425, 7.3422, 7.34, 7.3484, 7.3502, 7.3544, 7.3525, 7.3507, 7.3486, 7.3473, 7.3455, 7.3623, 7.3667, 7.371, 7.3701, 7.3678, 7.3723, 7.3701, 7.3682, 7.3665, 7.3643, 7.3622, 7.3662, 7.3637, 7.3617, 7.3596, 7.3588, 7.3571, 7.3554, 7.3595, 7.3573, 7.3553, 7.3533, 7.3572, 7.3551, 7.3528, 7.3524, 7.3616, 7.3672, 7.366, 7.3639, 7.3618, 7.3614, 7.3592, 7.3574, 7.3551, 7.3535, 7.3574, 7.3557, 7.3542, 7.353, 7.3575, 7.3622, 7.3665, 7.3646, 7.3693, 7.367, 7.3656, 7.3694, 7.3738, 7.3719, 7.3722, 7.3716, 7.3697, 7.3737, 7.3717, 7.3761, 7.3749, 7.3731, 7.3711, 7.3691, 7.3668, 7.3657, 7.365, 7.3632, 7.3675, 7.3742, 7.372, 7.37, 7.3677, 7.3676, 7.3717, 7.3694, 7.3671, 7.3658, 7.3694, 7.3678, 7.3655, 7.3642, 7.3622, 7.3609, 7.3591, 7.3574, 7.3556, 7.3543, 7.3527, 7.3507, 7.3486, 7.3523, 7.3502, 7.3497, 7.3477, 7.3514, 7.3551, 7.3538, 7.3522, 7.3559, 7.3544, 7.358, 7.3559, 7.354, 7.353, 7.3528, 7.352, 7.3499, 7.3487, 7.3477, 7.3458, 7.3501, 7.3497, 7.3479, 7.3517, 7.3499, 7.3479, 7.3582, 7.3569, 7.3552, 7.3592, 7.3584, 7.3563, 7.3542, 7.3527, 7.352, 7.3512, 7.3491, 7.3486, 7.3522, 7.3501, 7.348, 7.3735, 7.3715, 7.3697, 7.3698, 7.3681, 7.3673, 7.3713, 7.3708, 7.369, 7.3731, 7.371, 7.369, 7.3681, 7.3716, 7.3696, 7.368, 7.3663, 7.3646, 7.3633, 7.3671, 7.3655, 7.364, 7.362, 7.3601, 7.358, 7.3569, 7.3553, 7.3541, 7.3532, 7.3525, 7.3509, 7.3497, 7.3486, 7.3523, 7.3516, 7.3506, 7.3621, 7.3604, 7.3587, 7.3522, 7.3501, 7.3535, 7.3526, 7.3566, 7.355, 7.3538, 7.3523, 7.3515, 7.3498, 7.3491, 7.3528, 7.3562, 7.3602, 7.3638, 7.362, 7.3601, 7.3582, 7.3561, 7.3548, 7.3529, 7.3509, 7.3489, 7.3472, 7.3453, 7.3437, 7.3419, 7.34, 7.3381, 7.3416, 7.3401, 7.3385, 7.3365, 7.3359, 7.3394, 7.3377, 7.336, 7.3394, 7.3432, 7.3419, 7.3407, 7.3395, 7.3376, 7.3412, 7.3397, 7.3383, 7.3375, 7.3365, 7.3358, 7.3339, 7.3334, 7.3322, 7.3309, 7.3297, 7.3292, 7.3327, 7.3321, 7.3361, 7.3352, 7.3396, 7.3437, 7.3421, 7.3406, 7.344, 7.3499, 7.3507, 7.3457, 7.3442, 7.3425, 7.3417, 7.3408, 7.3391, 7.3423, 7.3414, 7.341, 7.3397, 7.3494, 7.3496, 7.3539, 7.3581, 7.3579, 7.3597, 7.3596, 7.3595, 7.358, 7.3575, 7.3557, 7.3551, 7.3543, 7.3532, 7.3514, 7.3503, 7.3487, 7.3471, 7.346, 7.3495, 7.3582, 7.3567, 7.3554, 7.3538, 7.3568, 7.3551, 7.3532, 7.3521, 7.3551, 7.3579, 7.3612, 7.3646, 7.363, 7.3616, 7.36, 7.3584, 7.3568, 7.355, 7.3533, 7.3515, 7.3509, 7.3494, 7.3491, 7.3478, 7.3464, 7.3449, 7.3445, 7.3433, 7.342, 7.3404, 7.3393, 7.3382, 7.3374, 7.3361, 7.3342, 7.3325, 7.3367, 7.3355, 7.335, 7.3342, 7.3325, 7.3322, 7.3305, 7.3289, 7.3273, 7.3262, 7.3245, 7.3282, 7.3269, 7.3279000000000005, 7.3262, 7.3257, 7.3241, 7.3228, 7.3216, 7.328, 7.3318, 7.3312, 7.3301, 7.3288, 7.3271, 7.3279, 7.3264, 7.33, 7.3296, 7.329, 7.3276, 7.326, 7.3246, 7.3278, 7.3266, 7.3252, 7.3247, 7.3237, 7.3235, 7.3223, 7.3209, 7.3193, 7.3176, 7.3265, 7.3263, 7.3259, 7.3287, 7.3271, 7.3259, 7.3243, 7.3232, 7.3226, 7.3264, 7.3248, 7.3248, 7.3241, 7.3239, 7.3223, 7.3215, 7.3205, 7.319, 7.3222, 7.3216, 7.3205, 7.3193, 7.3177, 7.3174, 7.3165, 7.3151, 7.3095, 7.3078, 7.311, 7.3095, 7.308, 7.3064, 7.3049, 7.3047, 7.3036, 7.302, 7.3022, 7.3011, 7.3043, 7.3027, 7.3014, 7.3007, 7.2995, 7.3042, 7.3026, 7.3021, 7.3015, 7.3, 7.3035, 7.3029, 7.3016, 7.3001, 7.2993, 7.2981, 7.2971, 7.2972, 7.2957, 7.2956, 7.295, 7.2948, 7.2937, 7.2968, 7.2963, 7.2955, 7.2955, 7.3079, 7.3112, 7.3139, 7.313, 7.3076, 7.3062, 7.3102, 7.3135, 7.3169, 7.3204, 7.3202, 7.3195, 7.318, 7.3172, 7.316, 7.3146, 7.3131, 7.3118, 7.3146, 7.3133, 7.3143, 7.3128, 7.3083, 7.3093, 7.310300000000001, 7.311300000000001, 7.3102, 7.3089, 7.3079, 7.3069, 7.306, 7.307, 7.308000000000001, 7.3065, 7.305, 7.3043, 7.3031, 7.3017, 7.3067, 7.3071, 7.3149, 7.3135, 7.3121, 7.3114, 7.3144, 7.3133, 7.3123, 7.3121, 7.323, 7.3217, 7.3204, 7.3193, 7.3182, 7.318, 7.3172, 7.3167, 7.3212, 7.3198, 7.319, 7.3179, 7.3176, 7.3205, 7.3195, 7.3187, 7.3216, 7.3218, 7.3374, 7.34, 7.3391, 7.3381, 7.3372, 7.3401, 7.3387, 7.3373, 7.3359, 7.3345, 7.3334, 7.3383, 7.339300000000001, 7.3383, 7.3373, 7.3364, 7.339, 7.338, 7.3367, 7.3352, 7.334, 7.3366, 7.335, 7.3374, 7.3366, 7.3351, 7.3341, 7.3336, 7.333, 7.3316, 7.3309, 7.3339, 7.3325, 7.3316, 7.331, 7.3297, 7.3292, 7.3279, 7.3279, 7.3271, 7.326, 7.3259, 7.3245, 7.3277, 7.327, 7.3261, 7.3251, 7.3276, 7.3264, 7.3252, 7.3258, 7.3249, 7.3235, 7.3265, 7.3255, 7.3259, 7.3249, 7.3234, 7.3186, 7.3171, 7.3165, 7.3201, 7.3187, 7.3212, 7.3237, 7.3228, 7.3219, 7.3206, 7.3245, 7.3235, 7.3222, 7.3211, 7.3198, 7.3187, 7.3177, 7.3164, 7.3154, 7.3139, 7.3127, 7.3123, 7.3116, 7.3105, 7.3092, 7.3239, 7.3225, 7.3215, 7.3241, 7.3231, 7.3217, 7.3243, 7.327, 7.3314, 7.3306, 7.3293, 7.3284, 7.3272, 7.3266, 7.3258, 7.3245, 7.3268, 7.3293, 7.3283, 7.3303, 7.3342, 7.3334, 7.3323, 7.3349, 7.3335, 7.3325, 7.3312, 7.3302, 7.3326, 7.3329, 7.3352, 7.3345, 7.3342, 7.3364, 7.3351, 7.3378, 7.3366, 7.3354, 7.3346, 7.3349, 7.3338, 7.3326, 7.332, 7.3311, 7.3299, 7.3288, 7.3312, 7.3302, 7.3301, 7.3296, 7.3291, 7.3284, 7.3273, 7.3261, 7.3249, 7.3237, 7.3328, 7.3314, 7.3303, 7.3294, 7.3283, 7.328, 7.3267, 7.3258, 7.3249, 7.3277, 7.3269, 7.3293, 7.3284, 7.3279, 7.3307, 7.3307, 7.3295, 7.3283, 7.3271, 7.3258, 7.3248, 7.3273, 7.3261, 7.3248, 7.3234, 7.3224, 7.3218, 7.3206, 7.3192, 7.3181, 7.3204, 7.3203, 7.3189, 7.3177, 7.3164, 7.3328, 7.3315, 7.3302, 7.3297, 7.3285, 7.3272, 7.326, 7.3248, 7.3274, 7.3261, 7.3248, 7.3236, 7.326, 7.3283, 7.3276, 7.3263, 7.332, 7.3308, 7.3331, 7.3317, 7.3305, 7.3291, 7.3283, 7.327, 7.3262, 7.3265, 7.3252, 7.3245, 7.3206, 7.3198, 7.3221, 7.3209, 7.3203, 7.3194, 7.3187, 7.318, 7.3211, 7.3197, 7.3188, 7.3218, 7.3224, 7.3216, 7.3213, 7.3207, 7.3236, 7.3228, 7.3225, 7.3222, 7.3214, 7.3201, 7.3193, 7.3185, 7.319500000000001, 7.3191, 7.3179, 7.3172, 7.3161, 7.312, 7.3144, 7.3154, 7.3116, 7.3116, 7.3106, 7.3099, 7.3091, 7.3087, 7.3116, 7.3141, 7.3129, 7.3116, 7.3138, 7.3134, 7.3161, 7.315, 7.314, 7.3127, 7.3153, 7.3144, 7.3134, 7.3124, 7.3147, 7.314, 7.3134, 7.3128, 7.3151, 7.3139, 7.3162, 7.3151, 7.3178, 7.3177, 7.3172, 7.3162, 7.3155, 7.3147, 7.3137, 7.3136, 7.3161, 7.315, 7.314, 7.313, 7.3118, 7.3112, 7.3102, 7.309, 7.3083, 7.3091, 7.3081, 7.3071, 7.3096, 7.3137, 7.3131, 7.3122, 7.3112, 7.3103, 7.3131, 7.3125, 7.3135, 7.3158, 7.3191, 7.3213, 7.3204, 7.3198, 7.3191, 7.3185, 7.3174, 7.3195, 7.319, 7.3184, 7.3193, 7.3214, 7.3202, 7.3195, 7.3183, 7.3205, 7.3199, 7.322, 7.324, 7.3232, 7.322, 7.3224, 7.325, 7.3271, 7.3263, 7.326, 7.3255, 7.3247, 7.3269, 7.3291, 7.3285, 7.3308, 7.3302, 7.329, 7.3278, 7.3276, 7.3274, 7.3325, 7.3313, 7.3338, 7.3327, 7.3326, 7.3318, 7.3309, 7.3299, 7.330900000000001, 7.331900000000001, 7.331, 7.3305, 7.3292, 7.3287, 7.3275, 7.3301, 7.332, 7.3317, 7.3327, 7.3351, 7.3343, 7.3334, 7.3325, 7.3315, 7.3308, 7.33, 7.3326, 7.3351, 7.3343, 7.3334, 7.333, 7.3319, 7.334, 7.3359, 7.3356, 7.3383, 7.339300000000001, 7.3381, 7.3401, 7.3396, 7.3389, 7.3387, 7.3379, 7.3369, 7.3389, 7.3413, 7.3401, 7.339, 7.3388, 7.338, 7.3408, 7.34, 7.3389, 7.3409, 7.34, 7.3391, 7.3381, 7.3374, 7.3365, 7.3353, 7.3375, 7.3365, 7.336, 7.3351, 7.3345, 7.334, 7.3329, 7.335, 7.3345, 7.3338, 7.3317, 7.3317, 7.3307, 7.3277, 7.3268, 7.3257, 7.3249, 7.3254, 7.3243, 7.3239, 7.3238, 7.3258, 7.3246, 7.3238, 7.3264, 7.3284, 7.3273, 7.3296, 7.3286, 7.3276, 7.3265, 7.3254, 7.3245, 7.324, 7.3261, 7.3251, 7.3243, 7.3233, 7.3228, 7.3217, 7.3237, 7.323, 7.322, 7.321, 7.3198, 7.322, 7.3239, 7.3233, 7.3222, 7.321, 7.32, 7.3225, 7.3216, 7.3207, 7.3197, 7.3185, 7.3175, 7.3163, 7.3156, 7.315, 7.3168, 7.3161, 7.3159, 7.3152, 7.3148, 7.3138, 7.3165, 7.3197, 7.322, 7.3212, 7.3203, 7.3226, 7.3249, 7.3243, 7.3239, 7.3239, 7.3232, 7.3222, 7.3212, 7.3203, 7.3195, 7.3185, 7.3176, 7.317, 7.3249, 7.3307, 7.3297, 7.3317, 7.3309, 7.3319, 7.3315, 7.331, 7.3332, 7.3327, 7.3322, 7.3313, 7.3303, 7.3324, 7.3319, 7.331, 7.33, 7.3294, 7.3285, 7.3281, 7.3275, 7.3266, 7.3289, 7.3281, 7.3272, 7.3264, 7.3311, 7.3349, 7.3339, 7.333, 7.3326, 7.3318, 7.3309, 7.3299, 7.3294, 7.3284, 7.3277, 7.3409, 7.3427, 7.3417, 7.3408, 7.3399, 7.3405, 7.3424, 7.343, 7.3419, 7.3412, 7.3404, 7.3396, 7.3385, 7.3375, 7.3364, 7.3358, 7.3353, 7.3344, 7.3337, 7.3357, 7.3353, 7.3344, 7.3363, 7.3388, 7.3382, 7.3372, 7.3366, 7.3357, 7.3358, 7.3349, 7.334, 7.3359, 7.3379, 7.3372, 7.3367, 7.3365, 7.3404, 7.3394, 7.3385, 7.3374, 7.3367, 7.3416, 7.3407, 7.34, 7.3396, 7.3385, 7.3377, 7.3397, 7.3417, 7.3407, 7.3406, 7.3426, 7.3418, 7.3409, 7.3399, 7.3394, 7.3384, 7.3378, 7.3397, 7.3397, 7.3393, 7.339, 7.3385, 7.3378, 7.337, 7.3364, 7.3358, 7.3375, 7.3343, 7.3341, 7.3333, 7.3324, 7.3319, 7.3314, 7.3312, 7.3302, 7.3294, 7.3285, 7.328, 7.3306, 7.33, 7.3292, 7.3283, 7.3275, 7.3267, 7.3262, 7.3259, 7.325, 7.3241, 7.3233, 7.3223, 7.3241, 7.3384, 7.3384, 7.3378, 7.3398, 7.3394, 7.3394, 7.3416, 7.341, 7.34, 7.3389, 7.3385, 7.3383, 7.3374, 7.3395, 7.339, 7.338, 7.3372, 7.3382, 7.3402, 7.3397, 7.3434, 7.3425, 7.3445, 7.3442, 7.3436, 7.3428, 7.3421, 7.3441, 7.3437, 7.3458, 7.3453, 7.3445, 7.3574, 7.3564, 7.3555, 7.3576, 7.3571, 7.3591, 7.3585, 7.3577, 7.3569, 7.3564, 7.3555, 7.3551, 7.3569, 7.356, 7.3526, 7.3544, 7.3539, 7.3532, 7.3523, 7.3521, 7.3514, 7.3506, 7.3496, 7.3494, 7.3484, 7.3477, 7.347, 7.3465, 7.3466, 7.3486, 7.3482, 7.3479, 7.3475, 7.3466, 7.3485, 7.3477, 7.3471, 7.3462, 7.3459, 7.3532, 7.3531, 7.3524, 7.3519, 7.3511, 7.353, 7.352, 7.3516, 7.3532, 7.3527, 7.3547, 7.3537, 7.3532, 7.3524, 7.3516, 7.3506, 7.3497, 7.3487, 7.3484, 7.3474, 7.3465, 7.3455, 7.3447, 7.3439, 7.3429, 7.3419, 7.3492, 7.3482, 7.3498, 7.3488, 7.3484, 7.3478, 7.3495, 7.3514, 7.353, 7.3523, 7.3512, 7.3505, 7.3495, 7.3491, 7.349, 7.3508, 7.3498, 7.3491, 7.3506, 7.3498, 7.3491, 7.3486, 7.3478, 7.3473, 7.3466, 7.3459, 7.345, 7.3447, 7.3438, 7.343, 7.3428, 7.3447, 7.3437, 7.3456, 7.3475, 7.3491, 7.349, 7.3481, 7.3472, 7.3467, 7.3459, 7.345, 7.3465, 7.3456, 7.3452, 7.3443, 7.3462, 7.3453, 7.3448, 7.3447, 7.3463, 7.3454, 7.3449, 7.345, 7.3445, 7.3436, 7.3428, 7.3419, 7.341, 7.3401, 7.3392, 7.3385, 7.3377, 7.3373, 7.339, 7.3393, 7.3387, 7.3378, 7.3368, 7.3359, 7.3352, 7.3342, 7.3333, 7.3325, 7.3341, 7.3334, 7.3325, 7.3316, 7.3332, 7.3301, 7.3296, 7.3315, 7.3307, 7.33, 7.3294, 7.3286, 7.3276, 7.3267, 7.3284, 7.3274, 7.3268, 7.3259, 7.3249, 7.3242, 7.3213, 7.3204, 7.3197, 7.32, 7.3193, 7.3186, 7.3177, 7.3171, 7.3165, 7.3156, 7.3147, 7.3142, 7.3133, 7.3155, 7.3148, 7.314, 7.3133, 7.3134, 7.3126, 7.3188, 7.3183, 7.3177, 7.3254, 7.327, 7.3275, 7.3294, 7.3288, 7.3279, 7.3272, 7.3268, 7.3395, 7.3392, 7.3386, 7.3403, 7.3435, 7.3451, 7.3472, 7.3487, 7.3478, 7.3468, 7.3484, 7.3475, 7.3469, 7.3487, 7.3479, 7.3449, 7.3446, 7.3471, 7.349, 7.3482, 7.3474, 7.3471, 7.3465, 7.3487, 7.3505, 7.3482, 7.3524, 7.3515, 7.3508, 7.3501, 7.35, 7.3502, 7.3494, 7.3491, 7.3484, 7.3476, 7.3468, 7.3461, 7.3479, 7.3474, 7.3491, 7.3509, 7.3525, 7.3516, 7.3509, 7.3481, 7.3476, 7.347, 7.3462, 7.3458, 7.3475, 7.3468, 7.3459, 7.3451, 7.3445, 7.3437, 7.3452, 7.3468, 7.3485, 7.3477, 7.3468, 7.3482, 7.3474, 7.347, 7.3467, 7.3463, 7.3484, 7.3475, 7.3494, 7.3486, 7.3504, 7.3501, 7.3519, 7.3513, 7.3521, 7.3497, 7.3516, 7.351, 7.3502, 7.3497, 7.3488, 7.3479, 7.3496, 7.3513, 7.3529, 7.352, 7.3519, 7.3511, 7.3503, 7.3522, 7.3516, 7.351, 7.3502, 7.3493, 7.3484, 7.3478, 7.3473, 7.3466, 7.3458, 7.3473, 7.3465, 7.348, 7.3472, 7.3465, 7.3459, 7.3452, 7.3444, 7.3436, 7.344600000000001, 7.3441, 7.3437, 7.3429, 7.3421, 7.3412, 7.3405, 7.3397, 7.339, 7.3388, 7.3381, 7.3399, 7.3416, 7.3433, 7.3425, 7.3419, 7.3411, 7.3405, 7.3422, 7.3414, 7.3405, 7.3398, 7.3416, 7.3409, 7.3425, 7.3417, 7.3408, 7.3423, 7.3414, 7.3405, 7.3403, 7.34, 7.3401, 7.3395, 7.3388, 7.3381, 7.3398, 7.3393, 7.3389, 7.3384, 7.3379, 7.3374, 7.3368, 7.336, 7.3375, 7.3367, 7.336, 7.3355, 7.3373, 7.337, 7.3392, 7.3389, 7.3413, 7.344, 7.3459, 7.3452, 7.3445, 7.3451, 7.3446, 7.344, 7.3432, 7.3424, 7.3419, 7.3412, 7.3429, 7.3425, 7.3417, 7.3411, 7.3425, 7.3417, 7.3413, 7.3405, 7.3399, 7.3391, 7.3389, 7.3383, 7.3376, 7.3373, 7.3366, 7.3364, 7.3361, 7.3354, 7.337, 7.3386, 7.3388, 7.3387, 7.3383, 7.3398, 7.3391, 7.3386, 7.3378, 7.3373, 7.3387, 7.3384, 7.3402, 7.3403, 7.3394, 7.3408, 7.3422, 7.3414, 7.3434, 7.345, 7.3446, 7.3462, 7.3456, 7.3449, 7.3442, 7.3435, 7.3453, 7.3445, 7.3437, 7.343, 7.3425, 7.3417, 7.3412, 7.3407, 7.3424, 7.344, 7.3432, 7.3448, 7.344, 7.3432, 7.3426, 7.3419, 7.3434, 7.3427, 7.3423, 7.3416, 7.3408, 7.3405, 7.342, 7.3412, 7.3408, 7.3422, 7.3463, 7.3456, 7.3449, 7.3445, 7.3438, 7.343, 7.3423, 7.344, 7.3456, 7.3449, 7.3441, 7.3433, 7.3427, 7.3399, 7.3414, 7.3429, 7.3421, 7.3415, 7.3408, 7.3401, 7.3393, 7.3407, 7.34, 7.3444, 7.3512, 7.3506, 7.3506, 7.3547, 7.3574, 7.3567, 7.3581, 7.3575, 7.3569, 7.3562, 7.3647, 7.3642, 7.3636, 7.3613, 7.3607, 7.3635, 7.3628, 7.3622, 7.3616, 7.3635, 7.3633, 7.3627, 7.3619, 7.3618, 7.3611, 7.3634, 7.3609, 7.3604, 7.3598, 7.3599, 7.3639, 7.3633, 7.3651, 7.365, 7.3668, 7.3663, 7.3656, 7.365, 7.3647, 7.3664, 7.366, 7.3653, 7.3667, 7.3659, 7.3651, 7.3643, 7.3635, 7.3627, 7.3622, 7.3614, 7.3631, 7.3645, 7.366, 7.3654, 7.3649, 7.3642, 7.3634, 7.3628, 7.3643, 7.3659, 7.3651, 7.3645, 7.3637, 7.3651, 7.3643, 7.3662, 7.3654, 7.3648, 7.3641, 7.3634, 7.3635, 7.3629, 7.3622, 7.3614, 7.3613, 7.3608, 7.3602, 7.3599, 7.3595, 7.3591, 7.3607, 7.3604, 7.3596, 7.3592, 7.3584, 7.3576, 7.3571, 7.3585, 7.3586, 7.3582, 7.3581, 7.3574, 7.3583, 7.3578, 7.3595, 7.3588, 7.3565, 7.356, 7.3552, 7.3591, 7.3583, 7.3577, 7.3569, 7.3584, 7.3579, 7.3585, 7.3579, 7.3555, 7.3549, 7.3541, 7.3535, 7.353, 7.3524, 7.3517, 7.3513, 7.3527, 7.352, 7.3513, 7.3508, 7.3502, 7.3496, 7.3488, 7.3484, 7.3477, 7.3476, 7.349, 7.3483, 7.3476, 7.349, 7.3526, 7.3521, 7.3536, 7.3549, 7.3583, 7.3576, 7.3569, 7.3545, 7.3561, 7.3559, 7.3552, 7.3546, 7.3523, 7.3519, 7.3574, 7.3567, 7.3582, 7.3596, 7.3591, 7.3586, 7.3578, 7.3593, 7.3587, 7.3582, 7.3578, 7.3592, 7.3585, 7.3581, 7.3596, 7.3609, 7.3621, 7.3614, 7.3628, 7.362, 7.3634, 7.3629, 7.3643, 7.3657, 7.3671, 7.3667, 7.367, 7.3663, 7.3659, 7.3651, 7.3643, 7.3636, 7.3631, 7.3625, 7.364, 7.3635, 7.363, 7.3623, 7.3637, 7.365, 7.3646, 7.3661, 7.3658, 7.3656, 7.3669, 7.3683, 7.3678, 7.3675, 7.3669, 7.3662, 7.3656, 7.3648, 7.3642, 7.3639, 7.3634, 7.363, 7.3624, 7.3628, 7.3643, 7.3688, 7.3706, 7.3702, 7.3695, 7.3688, 7.3701, 7.3703, 7.3695, 7.3691, 7.3705, 7.3718, 7.3711, 7.3709, 7.3702, 7.3695, 7.3709, 7.3724, 7.3736, 7.3751, 7.3744, 7.3738, 7.3734, 7.3728, 7.372, 7.3715, 7.3707, 7.37, 7.3713, 7.3728, 7.372, 7.3714, 7.371, 7.3703, 7.3696, 7.3689, 7.3684, 7.3698, 7.3721, 7.3723, 7.3716, 7.3711, 7.3704, 7.3698, 7.3696, 7.3693, 7.3686, 7.3681, 7.3678, 7.3674, 7.367, 7.3663, 7.3659, 7.3651, 7.3646, 7.3641, 7.3676, 7.3669, 7.3665, 7.3658, 7.3652, 7.3646, 7.366, 7.3674, 7.367, 7.3663, 7.3658, 7.3653, 7.3649, 7.3642, 7.364, 7.3639, 7.3632, 7.3627, 7.362, 7.3618, 7.3612, 7.3605, 7.36, 7.3613, 7.3627, 7.362, 7.3614, 7.3627, 7.3626, 7.3623, 7.3616, 7.3615, 7.3608, 7.3602, 7.3616, 7.361, 7.3624, 7.3626, 7.3621, 7.3614, 7.3608, 7.3602, 7.3595, 7.3611, 7.3605, 7.36, 7.3593, 7.3589, 7.3604, 7.3601, 7.3616, 7.3613, 7.3608, 7.3602, 7.3595, 7.3609, 7.3607, 7.3599, 7.3612, 7.3626, 7.3622, 7.362, 7.3635, 7.3629, 7.3622, 7.3636, 7.3652, 7.3648, 7.3644, 7.3638, 7.3635, 7.3647, 7.364, 7.3635, 7.363, 7.3625, 7.3638, 7.3631, 7.3626, 7.3644, 7.3637, 7.3633, 7.3628, 7.3629, 7.3642, 7.3635, 7.3629, 7.3628, 7.3623, 7.3615, 7.3608, 7.3623, 7.3619, 7.3613, 7.3608, 7.3602, 7.3596, 7.359, 7.3596, 7.3656, 7.365, 7.3647, 7.3643, 7.3685, 7.368, 7.3695, 7.369, 7.3684, 7.3698, 7.3766, 7.3759, 7.3811, 7.3825, 7.3821, 7.3834, 7.3829, 7.3822, 7.3816, 7.3811, 7.3824, 7.3825, 7.3818, 7.3831, 7.3825, 7.3838, 7.3875, 7.3888, 7.3881, 7.3874, 7.3868, 7.3866, 7.3879, 7.3874, 7.3868, 7.3881, 7.3874, 7.3868, 7.3865, 7.386, 7.3875, 7.3889, 7.3882, 7.3897, 7.3893, 7.3905, 7.3917, 7.3915, 7.391, 7.3905, 7.3902, 7.3899, 7.3895, 7.3894, 7.3873, 7.3866, 7.3861, 7.3858, 7.3856, 7.3849, 7.3844, 7.3821, 7.3797, 7.381, 7.3805, 7.3799, 7.3794, 7.3789, 7.3782, 7.3794, 7.3807, 7.3804, 7.3815, 7.3813, 7.3806, 7.3817, 7.3812, 7.3805, 7.382, 7.3814, 7.3815, 7.3829, 7.3821, 7.3819, 7.3832, 7.3847, 7.384, 7.3839, 7.3833, 7.3827, 7.3842, 7.3854, 7.385, 7.3849, 7.3845, 7.3841, 7.3854, 7.3866, 7.386, 7.3857, 7.3854, 7.3849, 7.3842, 7.3838, 7.3831, 7.3827, 7.3805, 7.3804, 7.3817, 7.3815, 7.3812, 7.381, 7.3806, 7.3802, 7.3799, 7.3793, 7.3787, 7.378, 7.3777, 7.3774, 7.3789, 7.379, 7.3783, 7.3777, 7.3772, 7.3767, 7.3761, 7.3778, 7.3771, 7.3764, 7.3757, 7.375, 7.3744, 7.3739, 7.3732, 7.3727, 7.3721, 7.3715, 7.3708, 7.3705, 7.3717, 7.3712, 7.3725, 7.3724, 7.3719, 7.3713, 7.3724, 7.3719, 7.3712, 7.3708, 7.3702, 7.3696, 7.3691, 7.3703, 7.3697, 7.3709, 7.3688, 7.3688, 7.3665, 7.3659, 7.3654, 7.3665, 7.3659, 7.3656, 7.3649, 7.3663, 7.3657, 7.3653, 7.3648, 7.3649, 7.3645, 7.3622, 7.3619, 7.3614, 7.3609, 7.3611, 7.3609, 7.3602, 7.3599, 7.3578, 7.3591, 7.3586, 7.36, 7.3597, 7.3574, 7.3571, 7.3567, 7.356, 7.356, 7.3556, 7.3551, 7.3545, 7.354, 7.3534, 7.3546, 7.3544, 7.3539, 7.3534, 7.3531, 7.3526, 7.3524, 7.3518, 7.3514, 7.3509, 7.3502, 7.3495, 7.351, 7.3504, 7.3497, 7.3498, 7.3497, 7.3493, 7.3487, 7.3485, 7.3482, 7.3494, 7.3489, 7.3486, 7.3484, 7.3478, 7.3486, 7.3481, 7.3474, 7.3469, 7.3481, 7.3494, 7.3488, 7.3483, 7.3495, 7.3507, 7.3522, 7.3516, 7.3512, 7.3508, 7.3523, 7.3536, 7.353, 7.3524, 7.3536, 7.3533, 7.3547, 7.3544, 7.3539, 7.3533, 7.3547, 7.3542, 7.3536, 7.353, 7.3524, 7.3536, 7.3529, 7.3525, 7.3521, 7.3518, 7.3532, 7.3527, 7.3541, 7.3552, 7.3546, 7.3542, 7.3539, 7.3551, 7.3548, 7.3545, 7.3542, 7.3538, 7.3532, 7.3527, 7.3534, 7.353, 7.3544, 7.3595, 7.359, 7.3605, 7.3601, 7.3608, 7.3587, 7.3599, 7.3593, 7.3672, 7.3682, 7.3695, 7.3689, 7.3686, 7.368, 7.366, 7.3655, 7.365, 7.3661, 7.3656, 7.3649, 7.3664, 7.3657, 7.3652, 7.3646, 7.3657, 7.3651, 7.3648, 7.3642, 7.3653, 7.3647, 7.3643, 7.3638, 7.3632, 7.3629, 7.3625, 7.362, 7.3616, 7.3612, 7.3606, 7.3599, 7.3594, 7.3592, 7.3585, 7.3597, 7.3591, 7.3586, 7.3597, 7.3591, 7.3588, 7.3583, 7.3594, 7.3587, 7.3581, 7.3579, 7.3574, 7.3571, 7.3568, 7.3562, 7.3558, 7.3552, 7.3548, 7.3544, 7.3538, 7.3533, 7.3533, 7.3526, 7.3506, 7.35, 7.3511, 7.3522, 7.3533, 7.3531, 7.3528, 7.354, 7.3539, 7.354, 7.3533, 7.3528, 7.3526, 7.3523, 7.3535, 7.353, 7.3524, 7.3535, 7.3529, 7.3524, 7.3535, 7.3532, 7.3543, 7.3538, 7.3532, 7.3529, 7.3523, 7.3535, 7.3548, 7.3546, 7.3542, 7.3544, 7.356, 7.3556, 7.355, 7.3573, 7.3588, 7.3585, 7.3582, 7.3595, 7.3592, 7.3585, 7.3578, 7.3574, 7.3589, 7.3602, 7.3598, 7.3595, 7.3592, 7.3592, 7.3588, 7.3584, 7.3582, 7.358, 7.3577, 7.358, 7.3575, 7.357, 7.3549, 7.3544, 7.354, 7.3557, 7.3552, 7.355, 7.3637, 7.3638, 7.3649, 7.3643, 7.3641, 7.3634, 7.3629, 7.3628, 7.3638, 7.3633, 7.3628, 7.3623, 7.3619, 7.3616, 7.3611, 7.3609, 7.3607, 7.3601, 7.3613, 7.3608, 7.3603, 7.36, 7.3613, 7.3625, 7.3619, 7.3631, 7.3625, 7.3621, 7.3614, 7.3608, 7.3588, 7.357, 7.3564, 7.3558, 7.3572, 7.3583, 7.358, 7.3561, 7.3557, 7.3554, 7.3553, 7.3547, 7.3541, 7.3537, 7.3549, 7.3543, 7.3556, 7.355, 7.3545, 7.3542, 7.3539, 7.3533, 7.3517, 7.3512, 7.3506, 7.3505, 7.3502, 7.3497, 7.3492, 7.3486, 7.3483, 7.3478, 7.3492, 7.3488, 7.3485, 7.3479, 7.3473, 7.3454, 7.3451, 7.3446, 7.3459, 7.3453, 7.3464, 7.3461, 7.3474, 7.3486, 7.3497, 7.3492, 7.3489, 7.347, 7.3469, 7.3463, 7.3457, 7.3468, 7.3464, 7.346, 7.347, 7.348, 7.3477, 7.3475, 7.3472, 7.347, 7.3453, 7.3435, 7.3414, 7.3396, 7.3395, 7.339, 7.3389, 7.3384, 7.3364, 7.3344, 7.3339, 7.3334, 7.3329, 7.3323, 7.3318, 7.3314, 7.3325, 7.3337, 7.3331, 7.3341, 7.3352, 7.3347, 7.3344, 7.3338, 7.3335, 7.3345, 7.3339, 7.3333, 7.3329, 7.3323, 7.3321, 7.3333, 7.3331, 7.3313, 7.331, 7.3305, 7.3302, 7.3299, 7.3294, 7.329, 7.3302, 7.3296, 7.3293, 7.329, 7.3292, 7.3286, 7.3281, 7.3295, 7.3289, 7.3283, 7.3295, 7.3291, 7.3288, 7.3284, 7.3279, 7.3276, 7.3272, 7.3266, 7.3277, 7.3273, 7.3268, 7.3279, 7.328, 7.3261, 7.33, 7.3296, 7.329, 7.3286, 7.3296, 7.3306, 7.3301, 7.33, 7.3311, 7.3322, 7.332, 7.3318, 7.3328, 7.3326, 7.332, 7.3315, 7.3309, 7.3307, 7.3302, 7.3313, 7.3324, 7.3318, 7.3313, 7.3324, 7.332, 7.332, 7.3331, 7.3327, 7.3324, 7.3352, 7.3363, 7.3391, 7.3419, 7.3413, 7.3424, 7.3418, 7.3412, 7.3406, 7.34, 7.3396, 7.339, 7.3384, 7.3384, 7.3381, 7.3393, 7.3405, 7.34, 7.3412, 7.3407, 7.3405, 7.3417, 7.3413, 7.3408, 7.3402, 7.3396, 7.3408, 7.3403, 7.3417, 7.3413, 7.3424, 7.3421, 7.3401, 7.3383, 7.3364, 7.3374, 7.3368, 7.3362, 7.3373, 7.3383, 7.3377, 7.3387, 7.3397, 7.3408, 7.3404, 7.34, 7.3394, 7.3391, 7.3385, 7.3396, 7.3391, 7.3385, 7.338, 7.3375, 7.3385, 7.3383, 7.3381, 7.3376, 7.3375, 7.3386, 7.3382, 7.3392, 7.3391, 7.3388, 7.3382, 7.3379, 7.3389, 7.3387, 7.3381, 7.3375, 7.3385, 7.3398, 7.341, 7.3421, 7.3446, 7.346, 7.3471, 7.3455, 7.3452, 7.3451, 7.3447, 7.3457, 7.3451, 7.3457, 7.3467, 7.3464, 7.3462, 7.3456, 7.3452, 7.3448, 7.3444, 7.3455, 7.3436, 7.3433, 7.3443, 7.3453, 7.3447, 7.3455, 7.3456, 7.3467, 7.3463, 7.3476, 7.3486, 7.3483, 7.3479, 7.3473, 7.3468, 7.3462, 7.3458, 7.3455, 7.3464, 7.3458, 7.3457, 7.3455, 7.3449, 7.346, 7.3456, 7.3453, 7.3449, 7.343, 7.3441, 7.3438, 7.3449, 7.3445, 7.344, 7.3437, 7.342, 7.3414, 7.3409, 7.3403, 7.3399, 7.3394, 7.3394, 7.3418, 7.3403, 7.3399, 7.3395, 7.3391, 7.3387, 7.3384, 7.338, 7.3392, 7.3389, 7.3398, 7.3409, 7.3404, 7.3399, 7.3396, 7.3391, 7.3391, 7.3386, 7.3381, 7.3377, 7.3372, 7.3358, 7.3359, 7.3375, 7.3371, 7.3353, 7.3336, 7.3331, 7.3328, 7.3323, 7.3317, 7.3327, 7.3322, 7.332, 7.3315, 7.3325, 7.3335, 7.3329, 7.3325, 7.332, 7.3318, 7.3316, 7.3316, 7.3313, 7.3307, 7.3303, 7.3316, 7.3344, 7.3341, 7.3338, 7.3334, 7.3331, 7.3326, 7.3321, 7.3332, 7.3327, 7.3324, 7.3336, 7.3348, 7.3345, 7.3339, 7.3334, 7.3344, 7.3339, 7.3334, 7.3345, 7.3343, 7.3339, 7.3349, 7.3361, 7.3372, 7.3355, 7.3339, 7.3335, 7.333, 7.3331, 7.3327, 7.3324, 7.3334, 7.3329, 7.3325, 7.3321, 7.3316, 7.3315, 7.331, 7.3308, 7.333, 7.3337, 7.3333, 7.3315, 7.3313, 7.3308, 7.3303, 7.3329, 7.3355, 7.335, 7.3347, 7.3357, 7.3352, 7.3347, 7.3348, 7.3359, 7.337, 7.3369, 7.3396, 7.3408, 7.3404, 7.3403, 7.3398, 7.3395, 7.3393, 7.3389, 7.3388, 7.3386, 7.3383, 7.3382, 7.3378, 7.3372, 7.3368, 7.3362, 7.3373, 7.3384, 7.3379, 7.3373, 7.3357, 7.3352, 7.3347, 7.3344, 7.3338, 7.335, 7.3361, 7.3359, 7.3354, 7.3349, 7.3344, 7.3341, 7.3341, 7.3339, 7.3335, 7.332, 7.3315, 7.3315, 7.331, 7.3306, 7.3316, 7.3326, 7.331, 7.331, 7.332000000000001, 7.3316, 7.3312, 7.3308, 7.3318, 7.3316, 7.3313, 7.3308, 7.3302, 7.3297, 7.3296, 7.3291, 7.3288, 7.3298000000000005, 7.3311, 7.3306, 7.3301, 7.3296, 7.3335, 7.333, 7.3344, 7.3354, 7.3351, 7.335, 7.335, 7.336, 7.337, 7.3371, 7.3368, 7.3365, 7.3361, 7.3359, 7.3356, 7.3353, 7.3348, 7.3358, 7.3356, 7.3352, 7.3336, 7.3335, 7.3346, 7.3328, 7.3312, 7.3309, 7.3306, 7.3301, 7.3299, 7.3311, 7.3306, 7.3304, 7.33, 7.3298, 7.3295, 7.3278, 7.3275, 7.3271, 7.3267, 7.325, 7.3233, 7.3233, 7.323, 7.3226, 7.324, 7.3236, 7.3231, 7.324, 7.3249, 7.3246, 7.3244, 7.3239, 7.3234, 7.3232, 7.3228, 7.3238, 7.3249, 7.3245, 7.324, 7.3235, 7.326, 7.3258, 7.3255, 7.325, 7.3260000000000005, 7.327000000000001, 7.328000000000001, 7.3278, 7.3273, 7.3283, 7.3278, 7.3276, 7.3274, 7.3269, 7.3278, 7.3288, 7.3284, 7.3282, 7.328, 7.3278, 7.3276, 7.3272, 7.3268, 7.3266, 7.3264, 7.3261, 7.3256, 7.3253, 7.3248, 7.3243, 7.3241, 7.3236, 7.3231, 7.3226, 7.3221, 7.323, 7.323, 7.3225, 7.3235, 7.3231, 7.3241000000000005, 7.325100000000001, 7.325, 7.3246, 7.3245, 7.3246, 7.3243, 7.3239, 7.3235, 7.3231, 7.3241, 7.3237, 7.3247, 7.3274, 7.3269, 7.3265, 7.3275, 7.3272, 7.3268, 7.3266, 7.3276, 7.3273, 7.3268, 7.3263, 7.326, 7.3257, 7.3254, 7.3249, 7.3247, 7.3249, 7.3245, 7.3254, 7.3267, 7.3262, 7.3259, 7.3254, 7.325, 7.326, 7.3256, 7.3267, 7.3276, 7.3276, 7.3274, 7.3285, 7.3295, 7.3291, 7.3286, 7.3286, 7.3282, 7.3279, 7.3277, 7.3273, 7.3285, 7.3297, 7.3292, 7.3302, 7.3311, 7.3306, 7.3301, 7.3312, 7.3311, 7.3308, 7.3303, 7.3301, 7.3311, 7.3306, 7.3302, 7.33, 7.3295, 7.3291, 7.3287, 7.3283, 7.3279, 7.329, 7.331, 7.3321, 7.3319, 7.3314, 7.3298, 7.333, 7.3339, 7.3351, 7.3347, 7.3356, 7.3353, 7.3348, 7.3343, 7.3338, 7.3335, 7.3332, 7.3327, 7.3324, 7.3321, 7.3316, 7.3326, 7.3321, 7.3316, 7.3311, 7.332, 7.3315, 7.331, 7.3305, 7.3288, 7.3306, 7.3301, 7.3297, 7.3365, 7.336, 7.3356, 7.3354, 7.3351, 7.3348, 7.3343, 7.3353, 7.3349, 7.3345, 7.334, 7.3335, 7.3345, 7.3343, 7.3353, 7.3348, 7.3343, 7.3341, 7.3336, 7.3331, 7.3331, 7.3327, 7.3322, 7.3332, 7.3328, 7.3324, 7.332, 7.3317, 7.3327, 7.3324, 7.3321, 7.3317, 7.3315, 7.3325000000000005, 7.333500000000001, 7.3331, 7.3341, 7.3351, 7.3347, 7.3345, 7.3355, 7.3354, 7.3365, 7.3363, 7.336, 7.3356, 7.3353, 7.3362, 7.3372, 7.3367, 7.3363, 7.3358, 7.337, 7.3365, 7.336, 7.3356, 7.3354, 7.3364, 7.3361, 7.3358, 7.3353, 7.3363000000000005, 7.337300000000001, 7.3383, 7.338, 7.338, 7.3375, 7.337, 7.3366, 7.3364, 7.3361, 7.3371, 7.3369, 7.3398, 7.3406, 7.3414, 7.3411, 7.3407, 7.3403, 7.3413, 7.3421, 7.3429, 7.3426, 7.3435, 7.343, 7.3425, 7.3438, 7.3433, 7.3429, 7.3425, 7.3421, 7.343, 7.3426, 7.3424, 7.3422, 7.3432, 7.3427, 7.3422, 7.3434, 7.3432, 7.3429, 7.3425, 7.342, 7.3419, 7.3429, 7.3429, 7.3439000000000005, 7.3435, 7.3432, 7.3427, 7.3425, 7.3425, 7.3421, 7.342, 7.3405, 7.3401, 7.3397, 7.3394, 7.339, 7.3386, 7.3381, 7.3377, 7.3375, 7.337, 7.3381, 7.3377, 7.3372, 7.3383, 7.3378, 7.3375, 7.3385, 7.338, 7.3392, 7.3388, 7.3398, 7.3395, 7.3392, 7.3389, 7.3398, 7.3396, 7.3392, 7.3388, 7.3384, 7.338, 7.3377, 7.3372, 7.338, 7.3375, 7.3383, 7.338, 7.3375, 7.3371, 7.338, 7.339, 7.3385, 7.3381, 7.3379, 7.3412, 7.3423, 7.342, 7.3416, 7.3411, 7.3408, 7.3404, 7.3399, 7.3394, 7.3391, 7.3388, 7.3398, 7.3393, 7.3388, 7.3387, 7.3383, 7.3392, 7.3414, 7.3409, 7.3406, 7.3402, 7.3397, 7.3393, 7.3389, 7.3384, 7.338, 7.338, 7.3376, 7.3371, 7.3366, 7.3361, 7.3361, 7.3345, 7.3342, 7.3338, 7.3347, 7.3343, 7.3339, 7.3338, 7.3334, 7.3344, 7.3349, 7.3359, 7.3356, 7.3352, 7.3338, 7.3336, 7.3332, 7.3342, 7.334, 7.3336, 7.3332, 7.3327, 7.3325, 7.332, 7.3316, 7.3312, 7.3308, 7.3304, 7.3314, 7.332400000000001, 7.3323, 7.3327, 7.3323, 7.3318, 7.3314, 7.3311, 7.3308, 7.3306, 7.3302, 7.3297, 7.3294, 7.3292, 7.3289, 7.3286, 7.3283, 7.3279, 7.3275, 7.3271, 7.3267, 7.3266, 7.3274, 7.3384, 7.338, 7.3377, 7.3374, 7.337, 7.3366, 7.3361, 7.3411, 7.3409, 7.3405, 7.3414, 7.3409, 7.3417, 7.3426, 7.3425, 7.3421, 7.3429, 7.3424, 7.3419, 7.3414, 7.3411, 7.3406, 7.3404, 7.3402, 7.3387, 7.3382, 7.3381, 7.3376, 7.336, 7.3358, 7.3355, 7.3364, 7.3359, 7.3355, 7.3354, 7.3349, 7.3345, 7.3342, 7.3337, 7.3347, 7.3357, 7.3354, 7.3351, 7.3348, 7.3358, 7.3355, 7.3354, 7.3351, 7.3348, 7.3344, 7.3341, 7.3339, 7.3336, 7.3345, 7.334, 7.3358, 7.3354, 7.3364, 7.337400000000001, 7.3372, 7.3369, 7.3365, 7.336, 7.3355, 7.3353, 7.3349, 7.3345, 7.3344, 7.334, 7.3351, 7.336, 7.3357, 7.3366, 7.3361, 7.3357, 7.3353, 7.3349, 7.3348, 7.3333, 7.333, 7.3327, 7.3325, 7.3323, 7.3319, 7.3328, 7.3337, 7.3332, 7.3328, 7.3327, 7.3322, 7.332, 7.3319, 7.3316, 7.3314, 7.3311, 7.3309, 7.332, 7.3317, 7.3315, 7.3311, 7.3308, 7.3305, 7.33, 7.3297, 7.3293, 7.3288, 7.3284, 7.3282, 7.328, 7.3278, 7.3274, 7.3283, 7.3278, 7.329, 7.3287, 7.3285, 7.3349, 7.3346, 7.3357, 7.3354, 7.3352, 7.3348, 7.3357, 7.3352, 7.3349, 7.3345, 7.3341, 7.3336, 7.3335, 7.3331, 7.3329, 7.3325, 7.3335, 7.3332, 7.3331, 7.3327, 7.3325, 7.332, 7.3318, 7.3315, 7.3312, 7.3307, 7.3304, 7.33, 7.3297, 7.3295, 7.3286, 7.3283, 7.3281, 7.3278, 7.3275, 7.3271, 7.3272, 7.3282, 7.3279, 7.329, 7.3295, 7.3308, 7.3305, 7.3316, 7.3324, 7.3321, 7.3318, 7.3315, 7.331, 7.3319, 7.3315, 7.331, 7.3319, 7.3314, 7.331, 7.3309, 7.3308, 7.3331, 7.3342, 7.3338, 7.3335, 7.3345, 7.3356, 7.3352, 7.3348, 7.3345, 7.3342, 7.3338, 7.3334, 7.3331, 7.3327, 7.3322, 7.3319, 7.3315, 7.3311, 7.332, 7.3318, 7.3316, 7.3312, 7.3322, 7.3334, 7.3344, 7.3341, 7.3337, 7.3333, 7.333, 7.3329, 7.3325, 7.3325, 7.3334, 7.3331, 7.3327, 7.335, 7.3346, 7.3347, 7.3343, 7.3343, 7.3353, 7.3353, 7.3349, 7.3347, 7.3344, 7.3343, 7.334, 7.3353, 7.3357, 7.3354, 7.3352, 7.335, 7.3335, 7.332, 7.3317, 7.3313, 7.3311, 7.3306, 7.3304, 7.329, 7.3288, 7.3286, 7.3282, 7.3281, 7.3266, 7.3264, 7.326, 7.3259, 7.3256, 7.3265, 7.3262, 7.3283, 7.3278, 7.3275, 7.3282, 7.3291, 7.3287, 7.3313, 7.3311, 7.3372, 7.3371, 7.3367, 7.3363, 7.3361, 7.337, 7.3366, 7.3364, 7.336, 7.3357, 7.3356, 7.3352, 7.3349, 7.3346, 7.3344, 7.334, 7.3342, 7.3338, 7.3337, 7.3335, 7.3344, 7.3353, 7.3351, 7.3346, 7.3342, 7.3338, 7.3336, 7.3331, 7.3329, 7.3326, 7.3311, 7.3308, 7.3306, 7.3305, 7.3302, 7.331, 7.3307, 7.3307, 7.3317, 7.3302, 7.3288, 7.3288, 7.3284, 7.328, 7.3276, 7.3273, 7.327, 7.3266, 7.3263, 7.3271, 7.3267, 7.3264, 7.326, 7.3257, 7.3265, 7.3273, 7.3292, 7.3291, 7.3289, 7.3323, 7.331, 7.3319, 7.3316, 7.3302, 7.3302, 7.3309, 7.3305, 7.3301, 7.3297, 7.3294, 7.3292, 7.3291, 7.329, 7.3286, 7.3283, 7.328, 7.3277, 7.3275, 7.3283, 7.3279, 7.3289, 7.3286, 7.3282, 7.3279, 7.3264, 7.326, 7.3256, 7.3255, 7.3251, 7.3249, 7.3246, 7.3231, 7.3229, 7.3214, 7.3224, 7.322, 7.3216, 7.3212, 7.3214, 7.3238, 7.3236, 7.3234, 7.3247, 7.3243, 7.3253, 7.3242, 7.3229, 7.3237, 7.3258, 7.3254, 7.3249, 7.3247, 7.3243, 7.324, 7.3236, 7.3232, 7.3258, 7.3269, 7.3277, 7.3282, 7.3271, 7.3278, 7.3276, 7.3272, 7.3268, 7.3276, 7.3271, 7.3268, 7.3264, 7.3261, 7.3269, 7.3265, 7.3262, 7.3259, 7.3267, 7.3277, 7.3285, 7.3283, 7.328, 7.3278, 7.3276, 7.3274, 7.3259, 7.3246, 7.3242, 7.3228, 7.3224, 7.322, 7.3216, 7.3201, 7.32, 7.3196, 7.3205, 7.3202, 7.3211, 7.3207, 7.3202, 7.3199, 7.3196, 7.3191, 7.3188, 7.3185, 7.3193, 7.3188, 7.3178, 7.3176, 7.3172, 7.3168, 7.3164, 7.3162, 7.3182, 7.3178, 7.3174, 7.317, 7.3165, 7.3162, 7.317, 7.3178, 7.3176, 7.3175, 7.3173, 7.3169, 7.3165, 7.3173, 7.3169, 7.3165, 7.3172, 7.3168, 7.3189, 7.3175, 7.3172, 7.3168, 7.3164, 7.3174, 7.316, 7.3147, 7.3132, 7.3118, 7.3114, 7.311, 7.3107, 7.3105, 7.3101, 7.311, 7.3108, 7.3129, 7.3129, 7.3127, 7.3126, 7.3134, 7.312, 7.3107, 7.3104, 7.3101, 7.3099, 7.3095, 7.3091, 7.31, 7.3109, 7.3118, 7.3127, 7.3135, 7.3144, 7.314, 7.3137, 7.3133, 7.3129, 7.3126, 7.3122, 7.3119, 7.3116, 7.3113, 7.3111, 7.3107, 7.3104, 7.309, 7.3099, 7.3097, 7.3096, 7.3095, 7.3105, 7.3101, 7.311, 7.3097, 7.3095, 7.3093, 7.3091, 7.3088, 7.3087, 7.31, 7.3087, 7.3095, 7.3092, 7.3091, 7.3087, 7.3095, 7.3091, 7.3098, 7.3095, 7.3103, 7.3099, 7.3099, 7.3096, 7.3093, 7.309, 7.3089, 7.3098, 7.3097, 7.3106, 7.3102, 7.3098, 7.3094, 7.3092, 7.31, 7.3108, 7.3116, 7.3113, 7.3109, 7.3106, 7.3103, 7.3099, 7.3095, 7.3094, 7.3102, 7.3099, 7.3107, 7.3104, 7.31, 7.3096, 7.3104, 7.31, 7.3108, 7.3104, 7.3102, 7.3098, 7.3107, 7.3104, 7.31, 7.3097, 7.3093, 7.3102, 7.3093, 7.309, 7.3088, 7.3118, 7.3126, 7.3125, 7.3153, 7.3162, 7.316, 7.317, 7.3168, 7.3189, 7.3186, 7.3193, 7.3191, 7.3188, 7.3187, 7.3183, 7.3179, 7.3175, 7.3171, 7.3167, 7.3175, 7.3171, 7.3169, 7.3176, 7.3186, 7.3183, 7.3179, 7.3176, 7.3174, 7.317, 7.3177, 7.3173, 7.3171, 7.3168, 7.3166, 7.3162, 7.3169, 7.3165, 7.3162, 7.3149, 7.3145, 7.3142, 7.314, 7.3137, 7.3137, 7.3134, 7.3144, 7.314, 7.3137, 7.3145, 7.3153, 7.315, 7.3147, 7.3143, 7.3141, 7.3144, 7.3141, 7.3137, 7.3134, 7.3131, 7.3127, 7.3124, 7.3124, 7.3121, 7.3118, 7.3117, 7.3114, 7.3112, 7.3118, 7.3115, 7.3111, 7.3119, 7.3117, 7.3126, 7.3122, 7.3107, 7.3115, 7.3111, 7.3108, 7.3104, 7.3112, 7.3109, 7.3106, 7.3113, 7.3109, 7.3106, 7.3113, 7.311, 7.3119, 7.3115, 7.3112, 7.3108, 7.3105, 7.3101, 7.3099, 7.3106, 7.3114, 7.3111, 7.3107, 7.3103, 7.3102, 7.3101, 7.3098, 7.3095, 7.3104, 7.3103, 7.3099, 7.3097, 7.3096, 7.3093, 7.3092, 7.3101, 7.3097, 7.3097, 7.3094, 7.3091, 7.3088, 7.3085, 7.3084, 7.3081, 7.3078, 7.3077, 7.3065, 7.3063, 7.3059, 7.3067, 7.3065, 7.3063, 7.3074, 7.307, 7.3067, 7.3074, 7.3082, 7.308, 7.3089, 7.3087, 7.3084, 7.3093, 7.3089, 7.3099, 7.3096, 7.3092, 7.3089, 7.3086, 7.3084, 7.3082, 7.3078, 7.3074, 7.3071, 7.3069, 7.3066, 7.3065, 7.3074, 7.3089, 7.3085, 7.3082, 7.3101, 7.3098, 7.3095, 7.3091, 7.3092, 7.3116, 7.3113, 7.3109, 7.3109, 7.313, 7.3139, 7.3138, 7.3135, 7.3134, 7.313, 7.3138, 7.3136, 7.3133, 7.3131, 7.3138, 7.3135, 7.3132, 7.314, 7.3136, 7.3143, 7.314, 7.3148, 7.3157, 7.3167, 7.3164, 7.3162, 7.3158, 7.3155, 7.3154, 7.315, 7.3148, 7.3145, 7.3143, 7.315, 7.3148, 7.3144, 7.314, 7.3137, 7.3134, 7.313, 7.3138, 7.3157, 7.3153, 7.3149, 7.3146, 7.3153, 7.315, 7.3146, 7.3154, 7.3153, 7.3161, 7.3158, 7.3154, 7.315, 7.3146, 7.3143, 7.3143, 7.3141, 7.3129, 7.3127, 7.3123, 7.3141, 7.3129, 7.3125, 7.3121, 7.3118, 7.3126, 7.3123, 7.3156, 7.3153, 7.3186, 7.3182, 7.3168, 7.3168, 7.3164, 7.3164, 7.3171, 7.3167, 7.3163, 7.3149, 7.3157, 7.3156, 7.3153, 7.3161, 7.3169, 7.3168, 7.3167, 7.3176, 7.3172, 7.3172, 7.3168, 7.3176, 7.3175, 7.3171, 7.3179, 7.3177, 7.3174, 7.317, 7.3178, 7.3174, 7.3173, 7.3171, 7.3179, 7.3175, 7.3171, 7.3168, 7.3164, 7.3163, 7.3159, 7.3164, 7.316, 7.3157, 7.3156, 7.3152, 7.316, 7.3157, 7.3165, 7.3162, 7.3159, 7.3158, 7.3155, 7.3162, 7.3159, 7.3155, 7.3154, 7.3189, 7.3188, 7.3218, 7.3216, 7.3215, 7.3224, 7.3232, 7.3231, 7.3246, 7.3242, 7.3241, 7.3238, 7.3245, 7.3242, 7.3238, 7.3235, 7.3235, 7.3231, 7.3228, 7.3235, 7.3232, 7.3229, 7.3225, 7.3221, 7.3228, 7.3226, 7.3239, 7.3238, 7.3234, 7.3231, 7.3229, 7.3246, 7.3253, 7.3249, 7.3245, 7.3241, 7.3239, 7.3237, 7.3235, 7.3233, 7.3229, 7.3225, 7.3221, 7.3217, 7.3213, 7.3211, 7.3209, 7.3206, 7.3203, 7.3212, 7.322, 7.3217, 7.3213, 7.3211, 7.3208, 7.3205, 7.3201, 7.3197, 7.3193, 7.32, 7.3198, 7.3194, 7.3192, 7.3189, 7.3188, 7.3186, 7.3194, 7.319, 7.3197, 7.3196, 7.3197, 7.3193, 7.3201, 7.3205, 7.3207, 7.321700000000001, 7.3214, 7.3211, 7.3209, 7.3217, 7.3214, 7.3222, 7.3219, 7.3216, 7.3226, 7.3225, 7.3221, 7.3219, 7.3216, 7.3214, 7.3211, 7.3207, 7.3204, 7.3211, 7.322100000000001, 7.3218, 7.3215, 7.3213, 7.321, 7.3218, 7.3228, 7.3266, 7.3266, 7.3263, 7.326, 7.3256, 7.3264, 7.3271, 7.3269, 7.3269, 7.3266, 7.3273, 7.328, 7.3287, 7.3285, 7.3293, 7.33, 7.3297, 7.3293, 7.329, 7.3288, 7.3286, 7.3284, 7.328, 7.3277, 7.3274, 7.3272, 7.328200000000001, 7.3313, 7.3309, 7.3317, 7.3324, 7.3321, 7.3317, 7.3324, 7.3322, 7.333, 7.3328, 7.3324, 7.332, 7.3316, 7.3323, 7.3319, 7.3317, 7.3313, 7.3311, 7.3308, 7.3308, 7.3315, 7.3311, 7.3308, 7.3306, 7.3302, 7.3298, 7.3296, 7.3294, 7.3296, 7.3292, 7.3299, 7.3286, 7.3273, 7.328, 7.3298, 7.3295, 7.3312, 7.3308, 7.3304, 7.3301, 7.3308, 7.3307, 7.3315, 7.3312, 7.3309, 7.3296, 7.3306000000000004, 7.3302, 7.3298, 7.3295, 7.3291, 7.3287, 7.3294, 7.3291, 7.3289, 7.33, 7.3313, 7.331, 7.3309, 7.3305, 7.3294, 7.329, 7.3292, 7.3288, 7.3286, 7.3282, 7.3279, 7.3276, 7.3274, 7.3271, 7.3269, 7.3268, 7.3264, 7.3267, 7.3274, 7.3273, 7.327, 7.3269, 7.3266, 7.3264, 7.326, 7.3259, 7.3255, 7.3254, 7.325, 7.3246, 7.3233, 7.3221, 7.3218, 7.3217, 7.3205, 7.3203, 7.3199, 7.3195, 7.3191, 7.3194, 7.319, 7.3186, 7.3184, 7.3183, 7.3181, 7.3188, 7.3192, 7.3207, 7.3204, 7.3207, 7.3205, 7.3202, 7.3198, 7.3197, 7.3196, 7.3192, 7.3199, 7.3195, 7.3213, 7.32, 7.3188, 7.3194, 7.3191, 7.3189, 7.3186, 7.3185, 7.3194, 7.319, 7.3197, 7.3194, 7.3195, 7.3196, 7.3195, 7.3193, 7.3191, 7.3191, 7.3188, 7.3185, 7.3182, 7.3179, 7.3177, 7.3186, 7.3184, 7.3183, 7.3179, 7.3176, 7.3174, 7.3171, 7.3159, 7.3156, 7.3153, 7.315, 7.3149, 7.3146, 7.3149, 7.3145, 7.3142, 7.3139, 7.3156, 7.3161, 7.3158, 7.3155, 7.3152, 7.3149, 7.3146, 7.3153, 7.315, 7.3146, 7.315600000000001, 7.3155, 7.3155, 7.3152, 7.3163, 7.3162, 7.3159, 7.3156, 7.3154, 7.3151, 7.3148, 7.3157, 7.3154, 7.3151, 7.3158, 7.3154, 7.3151, 7.3147, 7.3144, 7.314, 7.3137, 7.3135, 7.3132, 7.3128, 7.3129, 7.3126, 7.313, 7.3127, 7.3135, 7.3134, 7.3141, 7.3138, 7.3135, 7.3131, 7.3131, 7.3138, 7.3135, 7.3133, 7.313, 7.3128, 7.3124, 7.3121, 7.3128, 7.3138000000000005, 7.3136, 7.3133, 7.3133, 7.3132, 7.3129, 7.3136, 7.3134, 7.3135, 7.3134, 7.313, 7.3128, 7.3128, 7.3127, 7.3124, 7.3121, 7.3119, 7.3129, 7.3126, 7.3133, 7.3132, 7.3128, 7.3155, 7.3162, 7.3161, 7.3158, 7.3166, 7.3165, 7.3172, 7.3169, 7.3167, 7.3195, 7.3193, 7.323, 7.3228, 7.3227, 7.3224, 7.3212, 7.3209, 7.3207, 7.3205, 7.3202, 7.3199, 7.3196, 7.3193, 7.3199, 7.3195, 7.3185, 7.3181, 7.3178, 7.3185, 7.3182, 7.318, 7.3176, 7.3173, 7.3169, 7.317900000000001, 7.318900000000001, 7.3188, 7.3185, 7.3182, 7.3199, 7.3196, 7.3192, 7.3209, 7.3218, 7.3226, 7.3223, 7.3222, 7.3222, 7.3219, 7.3215, 7.3224, 7.3222, 7.3219, 7.3218, 7.3215, 7.3223, 7.3231, 7.3228, 7.3226, 7.3223, 7.322, 7.3216, 7.3216, 7.3213, 7.3211, 7.3208, 7.3206, 7.3214, 7.3214, 7.3211, 7.3209, 7.3216, 7.3213, 7.321, 7.3208, 7.3218000000000005, 7.3216, 7.3212, 7.3209, 7.3215, 7.3221, 7.3217, 7.3214, 7.3211, 7.3208, 7.3215, 7.3212, 7.3209, 7.3227, 7.3236, 7.3233, 7.323, 7.322, 7.3217, 7.3226, 7.3223, 7.323300000000001, 7.3231, 7.3238, 7.3235, 7.3242, 7.325, 7.3259, 7.3255, 7.3252, 7.325, 7.3246, 7.3245, 7.3253, 7.3251, 7.3258, 7.3266, 7.3272, 7.327, 7.3266, 7.3263, 7.326, 7.3257, 7.3254, 7.3261, 7.3259, 7.3256, 7.3252, 7.3259, 7.3256, 7.3283, 7.3271, 7.3278, 7.3275, 7.3272, 7.3269, 7.3275, 7.3282, 7.3279, 7.3277, 7.3273, 7.3279, 7.3268, 7.3275, 7.3274, 7.3271, 7.3267, 7.3264, 7.3262, 7.3269, 7.3266, 7.3264, 7.3272, 7.327, 7.3266, 7.3264, 7.3272, 7.327, 7.3267, 7.3266, 7.3265, 7.3271, 7.3279, 7.3278, 7.3277, 7.3283, 7.328, 7.3277, 7.3274, 7.327, 7.3268, 7.3265, 7.3262, 7.3258, 7.3256, 7.3253, 7.326300000000001, 7.3283, 7.3282, 7.3284, 7.3292, 7.3291, 7.3298, 7.3298, 7.3299, 7.3296, 7.3285, 7.3277, 7.3266, 7.3263, 7.3273, 7.327, 7.3268, 7.327, 7.3268, 7.3267, 7.3268, 7.3265, 7.3274, 7.3271, 7.3279, 7.328, 7.3278, 7.3286, 7.3284, 7.328, 7.3277, 7.3275, 7.3271, 7.3268, 7.3274, 7.3271, 7.3278, 7.3277, 7.3275, 7.3274, 7.3271, 7.326, 7.3258, 7.3254, 7.3243, 7.3242, 7.324, 7.3247, 7.3267, 7.3265, 7.3261, 7.3268, 7.3275, 7.3274, 7.3281, 7.3287, 7.3284, 7.3282, 7.3279, 7.3276, 7.3275, 7.3281, 7.328, 7.3279, 7.3285, 7.3282, 7.3289, 7.3297, 7.3304, 7.3301, 7.3298, 7.3295, 7.3294, 7.3295, 7.3294, 7.3291, 7.3299, 7.3343, 7.334, 7.3338, 7.3346, 7.3344, 7.3352, 7.335, 7.3348, 7.3356, 7.3353, 7.335, 7.3347, 7.3344, 7.3341, 7.3338, 7.3337, 7.3334, 7.3334, 7.3331, 7.3327, 7.3333, 7.3332, 7.333, 7.3326, 7.3323, 7.3312, 7.3302, 7.331, 7.3308, 7.3306, 7.3304, 7.3301, 7.3298, 7.3297, 7.3294, 7.3282, 7.3279, 7.3277, 7.3284, 7.3281, 7.3291, 7.3299, 7.3306, 7.3323, 7.3331, 7.3329, 7.3328, 7.3326, 7.3314, 7.3311, 7.3309, 7.3306, 7.3305, 7.3301, 7.3299, 7.3299, 7.3296, 7.3294, 7.3303, 7.3302, 7.3299, 7.3297, 7.3293, 7.3291, 7.3298, 7.3294, 7.3294, 7.3291, 7.3289, 7.3286, 7.3297, 7.3285, 7.3275, 7.3273, 7.3283000000000005, 7.328, 7.3278, 7.3275, 7.3273, 7.327, 7.3268, 7.3266, 7.3265, 7.3275, 7.3275, 7.3272, 7.3305, 7.3303, 7.3314, 7.3312, 7.3313, 7.3337, 7.3348, 7.3367, 7.3364, 7.338, 7.3377, 7.3384, 7.3381, 7.3379, 7.3385, 7.3383, 7.3371, 7.3368, 7.3365, 7.3362, 7.336, 7.3357, 7.3355, 7.3373, 7.337, 7.3368, 7.3365, 7.3362, 7.3361, 7.3358, 7.3354, 7.3342, 7.3339, 7.3336, 7.3333, 7.333, 7.3328, 7.3326, 7.3315, 7.3314, 7.3311, 7.3309, 7.3306, 7.3304, 7.3302, 7.331, 7.3307, 7.3306, 7.3304, 7.331, 7.3307, 7.3304, 7.3302, 7.33, 7.3298, 7.3295, 7.3294, 7.3292, 7.3298, 7.3295, 7.3292, 7.329, 7.3287, 7.3284, 7.3286, 7.3284, 7.328, 7.3277, 7.3274, 7.3272, 7.3272, 7.327, 7.3276, 7.3281, 7.3287, 7.3285, 7.3306, 7.3303, 7.33, 7.3307, 7.3304, 7.3302, 7.33, 7.3297, 7.3294, 7.3292, 7.3291, 7.3289, 7.3288, 7.3285, 7.3293, 7.3291, 7.3289, 7.3288, 7.3295, 7.3292, 7.3301, 7.3299, 7.3298, 7.3324, 7.3323, 7.333, 7.3328, 7.3335, 7.3333, 7.333, 7.3326, 7.3336, 7.3335, 7.3334, 7.333, 7.3328, 7.3325, 7.3322, 7.3329, 7.3327, 7.3323, 7.3314, 7.3313, 7.3319, 7.3316, 7.3321, 7.3319, 7.3317, 7.3314, 7.3321, 7.3318, 7.3316, 7.3314, 7.3312, 7.3309, 7.3319, 7.3317, 7.3315, 7.3313, 7.3311, 7.331, 7.3307, 7.3303, 7.3301, 7.33, 7.3297, 7.3294, 7.3291, 7.3298, 7.3297, 7.3294, 7.3292, 7.3289, 7.3286, 7.3285, 7.3281, 7.3278, 7.3275, 7.3272, 7.327, 7.3268, 7.3274, 7.328, 7.3277, 7.3283, 7.328, 7.329000000000001, 7.330000000000001, 7.331000000000001, 7.3307, 7.3304, 7.3293, 7.33, 7.331, 7.3307, 7.3317000000000005, 7.3314, 7.332400000000001, 7.3342, 7.334, 7.3337, 7.3335, 7.3341, 7.3339, 7.3336, 7.3335, 7.3331, 7.3327, 7.3337, 7.3334, 7.3331, 7.3329, 7.3328, 7.3326, 7.3323, 7.333, 7.3340000000000005, 7.334, 7.3338, 7.3335, 7.3332, 7.3329, 7.3328, 7.3333, 7.333, 7.3327, 7.3325, 7.3323, 7.332, 7.3317, 7.3314, 7.3311, 7.332, 7.3317, 7.332, 7.3318, 7.3316, 7.3313, 7.331, 7.3308, 7.3315, 7.3313, 7.3311, 7.331, 7.3307, 7.3304, 7.3314, 7.332400000000001, 7.3325, 7.3323, 7.3321, 7.3353, 7.3351, 7.3358, 7.3355, 7.3352, 7.3349, 7.3348, 7.3347, 7.3344, 7.3341, 7.3338, 7.3345, 7.3334, 7.3331, 7.3341, 7.3347, 7.3357, 7.3355, 7.3352, 7.3351, 7.3348, 7.3337, 7.3326, 7.3333, 7.3331, 7.3328, 7.3325, 7.3333, 7.333, 7.3327, 7.3325, 7.3323, 7.3329, 7.3326, 7.3323, 7.3333, 7.333, 7.3340000000000005, 7.3346, 7.3356, 7.3353, 7.335, 7.3347, 7.3344, 7.3341, 7.3338, 7.3327, 7.3333, 7.3323, 7.3321, 7.3319, 7.3325, 7.3322, 7.3319, 7.3316, 7.3313, 7.332, 7.3327, 7.3324, 7.3331, 7.333, 7.3328, 7.3326, 7.3325, 7.3332, 7.333, 7.3328, 7.3325, 7.3323, 7.334, 7.3337, 7.3357, 7.336, 7.3357, 7.3363, 7.3362, 7.3352, 7.3349, 7.3353, 7.335, 7.3353, 7.3361, 7.3369, 7.3359, 7.3349, 7.3338, 7.3345, 7.3344, 7.3341, 7.3338, 7.3335, 7.3333, 7.334, 7.3348, 7.3347, 7.3355, 7.3352, 7.335, 7.3359, 7.3356, 7.3362, 7.3359, 7.3366, 7.3364, 7.3361, 7.3367, 7.3364, 7.3364, 7.3362, 7.3359, 7.3358, 7.3355, 7.3352, 7.336, 7.3357, 7.3354, 7.3353, 7.3359, 7.3357, 7.3354, 7.3351, 7.334, 7.3338, 7.3354, 7.3351, 7.3348, 7.3355, 7.3353, 7.3351, 7.3348, 7.3346, 7.3344, 7.3341, 7.3338, 7.3345, 7.3349, 7.3348, 7.3345, 7.3344, 7.3341, 7.3339, 7.3347, 7.3345, 7.3347, 7.3349, 7.3347, 7.3345, 7.3344, 7.3341, 7.3347, 7.3344, 7.3342, 7.3339, 7.3345, 7.3342, 7.3378, 7.3375, 7.3372, 7.337, 7.3367, 7.3364, 7.3361, 7.3358, 7.3355, 7.336, 7.3365, 7.3363, 7.336, 7.3368, 7.3365, 7.3364, 7.3362, 7.3359, 7.3356, 7.3355, 7.3353, 7.3359, 7.3365, 7.3362, 7.336, 7.3357, 7.3354, 7.3351, 7.3341, 7.3339, 7.3345, 7.3352, 7.3349, 7.3348, 7.3346, 7.3343, 7.3341, 7.3349, 7.3355, 7.3352, 7.3349, 7.3346, 7.3343, 7.3341, 7.3338, 7.3345, 7.3342, 7.3339, 7.3338, 7.3336, 7.3325, 7.3335, 7.3332, 7.333, 7.3327, 7.3324, 7.333, 7.3327, 7.3317, 7.3317, 7.3314, 7.3313, 7.3311, 7.3309, 7.3316, 7.3315, 7.3313, 7.331, 7.3309, 7.3306, 7.3304, 7.3301, 7.3299, 7.3307, 7.3315, 7.3312, 7.3309, 7.3306, 7.3312, 7.331, 7.331, 7.3308, 7.3315, 7.3313, 7.332, 7.3325, 7.3322, 7.3326, 7.333600000000001, 7.3333, 7.3331, 7.3328, 7.3332, 7.3338, 7.3344, 7.3334, 7.3341, 7.3338, 7.3344, 7.3341, 7.3339, 7.3336, 7.3346, 7.3343, 7.3341, 7.334, 7.3338, 7.3336, 7.3334, 7.3332, 7.333, 7.3319, 7.3316, 7.3316, 7.3315, 7.3315, 7.3312, 7.3309, 7.3307, 7.3298, 7.3288, 7.3278, 7.3275, 7.3274, 7.3273, 7.3262, 7.3252, 7.3243, 7.3235, 7.3233, 7.323, 7.3236, 7.3251, 7.324, 7.323, 7.3228, 7.3227, 7.3225, 7.3222, 7.3229, 7.3239, 7.3238, 7.324800000000001, 7.3245, 7.326, 7.3257, 7.3255, 7.3253, 7.3251, 7.324, 7.3246, 7.3245, 7.3245, 7.3244, 7.3249, 7.3254, 7.3261, 7.326, 7.3259, 7.3257, 7.3259, 7.3256, 7.3253, 7.325, 7.3247, 7.3244, 7.3242, 7.324, 7.3237, 7.3236, 7.3233, 7.323, 7.3219, 7.3209, 7.3219, 7.322900000000001, 7.323900000000001, 7.3238, 7.3235, 7.3232, 7.3231, 7.3228, 7.3234, 7.3242, 7.3241, 7.3238, 7.3246, 7.3243, 7.324, 7.3247, 7.3245, 7.3251, 7.325, 7.3247, 7.3244, 7.3242, 7.3239, 7.3237, 7.3234, 7.3232, 7.323, 7.3228, 7.3235, 7.3233, 7.3231, 7.3228, 7.3225, 7.3231, 7.3229, 7.3227, 7.3226, 7.3224, 7.3221, 7.3219, 7.3217, 7.3215, 7.3214, 7.322, 7.3218, 7.3217, 7.3215, 7.3212, 7.3222000000000005, 7.322, 7.3226, 7.3233, 7.323, 7.3228, 7.3233, 7.323, 7.3228, 7.3225, 7.3223, 7.322, 7.3219, 7.3218, 7.3217, 7.3223, 7.3222, 7.3212, 7.321, 7.3207, 7.3206, 7.3212, 7.3209, 7.3206, 7.3216, 7.3213, 7.3218, 7.3216, 7.3216, 7.3213, 7.3213, 7.3211, 7.3209, 7.3219, 7.322900000000001, 7.3226, 7.323600000000001, 7.3242, 7.3241, 7.324, 7.3238, 7.3237, 7.3243, 7.3245, 7.3245, 7.3251, 7.3257, 7.3255, 7.3262, 7.326, 7.3265, 7.3255, 7.3253, 7.3251, 7.3241, 7.3238, 7.3236, 7.3234, 7.3233, 7.323, 7.3227, 7.3236, 7.3233, 7.3232, 7.3246, 7.3243, 7.3241, 7.3231, 7.323, 7.3247, 7.3245, 7.3242, 7.3242, 7.3239, 7.323, 7.3228, 7.3227, 7.3224, 7.3222, 7.322, 7.3219, 7.3216, 7.3214, 7.3212, 7.3218, 7.3217, 7.3222, 7.3219, 7.3224, 7.3234, 7.3226, 7.323600000000001, 7.324600000000001, 7.325600000000001, 7.3254, 7.326, 7.3258, 7.3256, 7.3253, 7.325, 7.3247, 7.3244, 7.3254, 7.3253, 7.325, 7.3259, 7.3256, 7.3262, 7.327, 7.3277, 7.3292, 7.3298, 7.3295, 7.3294, 7.3292, 7.3289, 7.3295, 7.3293, 7.329, 7.3287, 7.3286, 7.3285, 7.3284, 7.3282, 7.3279, 7.3279, 7.3277, 7.3274, 7.3272, 7.3271, 7.3269, 7.3275, 7.3273, 7.3271, 7.3268, 7.3274, 7.3272, 7.327, 7.3268, 7.3273, 7.3271, 7.3278, 7.3283, 7.3282, 7.328, 7.3277, 7.3276, 7.3274, 7.3279, 7.3277, 7.3275, 7.3273, 7.327, 7.3276, 7.3273, 7.327, 7.3276, 7.3282, 7.3281, 7.3279, 7.3285, 7.3282, 7.3281, 7.3286, 7.3284, 7.3283, 7.328, 7.327, 7.3267, 7.3264, 7.3274, 7.3272, 7.3278, 7.3275, 7.3281, 7.3279, 7.3278, 7.3276, 7.3265, 7.3255, 7.3253, 7.3259, 7.3257, 7.3257, 7.3257, 7.326700000000001, 7.3272, 7.327, 7.3269, 7.3266, 7.3272, 7.3278, 7.3276, 7.328600000000001, 7.329600000000001, 7.3293, 7.329, 7.3295, 7.33, 7.3298, 7.3296, 7.3301, 7.3307, 7.3297, 7.3303, 7.331300000000001, 7.3312, 7.3311, 7.3308, 7.3306, 7.3303, 7.3315, 7.3313, 7.3311, 7.3308, 7.3306, 7.3303, 7.3309, 7.3306, 7.3303, 7.331, 7.3315, 7.3312, 7.3309, 7.3314, 7.3311, 7.3309, 7.3308, 7.3305, 7.3303, 7.3302, 7.3301, 7.3308, 7.3308, 7.3313, 7.3311, 7.3308, 7.3306, 7.3303, 7.3309, 7.3299, 7.3305, 7.3302, 7.33, 7.3298, 7.3295, 7.33, 7.3297, 7.3294, 7.3292, 7.3298, 7.3308, 7.3305, 7.3304, 7.3301, 7.3308, 7.3306, 7.3319, 7.3317, 7.3322, 7.3336, 7.3334, 7.334, 7.3338, 7.3337, 7.3334, 7.3332, 7.333, 7.3344, 7.3358, 7.3373, 7.3371, 7.3377, 7.3376, 7.3375, 7.3373, 7.337, 7.3369, 7.3376, 7.3374, 7.3372, 7.3369, 7.3367, 7.3364, 7.3361, 7.3359, 7.3365, 7.3363, 7.338, 7.3377, 7.3375, 7.3373, 7.3379, 7.3388, 7.3386, 7.3383, 7.3381, 7.3379, 7.3404, 7.3401, 7.3408, 7.3415, 7.3412, 7.341, 7.3407, 7.3407, 7.3404, 7.3411, 7.3417, 7.3415, 7.3412, 7.3409, 7.3407, 7.3413, 7.341, 7.3416, 7.3414, 7.3412, 7.3418, 7.3417, 7.3415, 7.3421, 7.3419, 7.3416, 7.3421, 7.3428, 7.3434, 7.3433, 7.3439, 7.3438, 7.3443, 7.3433, 7.3431, 7.3428, 7.3427, 7.3433, 7.3439, 7.3436, 7.3435, 7.3432, 7.343, 7.3427, 7.3432, 7.343, 7.3429, 7.3427, 7.3425, 7.3422, 7.3419, 7.3417, 7.3415, 7.3407, 7.3405, 7.3404, 7.3403, 7.3408, 7.3405, 7.3403, 7.3401, 7.3398, 7.3395, 7.3392, 7.3389, 7.3387, 7.3384, 7.3382, 7.3387, 7.3393, 7.3391, 7.3388, 7.3409, 7.3406, 7.3403, 7.3405, 7.3402, 7.3394, 7.34, 7.3413, 7.3411, 7.3416, 7.3421, 7.3419, 7.3417, 7.3423, 7.342, 7.3425, 7.3422, 7.3423, 7.3434, 7.3439, 7.3437, 7.3468, 7.3473, 7.347, 7.3467, 7.3464, 7.3461, 7.3459, 7.3456, 7.3453, 7.3458, 7.3456, 7.3454, 7.3459, 7.3464, 7.3462, 7.3484, 7.3488, 7.3493, 7.3498, 7.3503, 7.3501, 7.3515, 7.3512, 7.3517, 7.3514, 7.3512, 7.351, 7.3508, 7.3505, 7.3503, 7.35, 7.3497, 7.3499, 7.3496, 7.3495, 7.3492, 7.349, 7.3488, 7.3494, 7.3491, 7.3496, 7.3502, 7.3499, 7.3497, 7.3494, 7.3492, 7.3499, 7.3505, 7.3503, 7.3502, 7.3499, 7.3502, 7.3507, 7.3513, 7.3519, 7.3518, 7.353, 7.3535, 7.3532, 7.353, 7.3535, 7.3532, 7.3537, 7.3542, 7.3547, 7.3544, 7.3549, 7.3546, 7.3551, 7.3549, 7.3546, 7.3544, 7.3557, 7.3554, 7.3551, 7.3548, 7.3546, 7.3551, 7.3556, 7.3561, 7.3558, 7.3562, 7.3559, 7.3568, 7.3565, 7.357, 7.3575, 7.3572, 7.357, 7.3568, 7.3569, 7.3569, 7.3574, 7.3575, 7.3572, 7.3586, 7.3583, 7.3589, 7.3603, 7.3609, 7.3607, 7.3613, 7.3614, 7.362, 7.3619, 7.3617, 7.3616, 7.3614, 7.3611, 7.3609, 7.3614, 7.3612, 7.3609, 7.3607, 7.3608, 7.3607, 7.3605, 7.361, 7.3608, 7.3605, 7.3603, 7.3601, 7.3599, 7.3597, 7.3595, 7.3592, 7.359, 7.3596, 7.3594, 7.3595, 7.3592, 7.3591, 7.3589, 7.3596, 7.3594, 7.3593, 7.3591, 7.3589, 7.3591, 7.3593, 7.3591, 7.3596, 7.3602, 7.3599, 7.3596, 7.3602, 7.36, 7.3597, 7.3595, 7.3592, 7.3591, 7.3588, 7.3586, 7.3584, 7.3584, 7.3581, 7.3587, 7.3584, 7.359, 7.3589, 7.3586, 7.3585, 7.3582, 7.358, 7.3586, 7.3584, 7.359, 7.3589, 7.3588, 7.3586, 7.3591, 7.3589, 7.3586, 7.3584, 7.3582, 7.3588, 7.3585, 7.3575, 7.3581, 7.3579, 7.3576, 7.3573, 7.3572, 7.3569, 7.3584, 7.3582, 7.3574, 7.3572, 7.3577, 7.3583, 7.3593, 7.3592, 7.3589, 7.3586, 7.3585, 7.3582, 7.358, 7.3572, 7.359, 7.3595, 7.3595, 7.3601, 7.36, 7.3597, 7.361, 7.3616, 7.3613, 7.361, 7.3623, 7.362, 7.3617, 7.3615, 7.3613, 7.361, 7.3608, 7.3605, 7.3602, 7.3607, 7.3605, 7.3604, 7.3601, 7.3599, 7.3597, 7.3602, 7.36, 7.3621, 7.3619, 7.3617, 7.3614, 7.3612, 7.361, 7.3607, 7.3604, 7.3602, 7.36, 7.3606, 7.3604, 7.3604, 7.3602, 7.36, 7.3604, 7.3602, 7.3601, 7.3598, 7.3604, 7.3617, 7.3615, 7.3613, 7.3612, 7.363, 7.3638, 7.3636, 7.3633, 7.3632, 7.3629, 7.3627, 7.364, 7.3639, 7.3636, 7.3634, 7.3632, 7.3629, 7.3626, 7.3631, 7.3644, 7.3653, 7.3652, 7.3653, 7.3651, 7.3649, 7.3646, 7.3651, 7.3657, 7.3655, 7.3654, 7.3653, 7.365, 7.365, 7.3648, 7.3655, 7.3652, 7.3684, 7.3681, 7.3679, 7.3677, 7.3674, 7.368, 7.3679, 7.3678, 7.3677, 7.3676, 7.3682, 7.368, 7.3678, 7.3683, 7.368, 7.3677, 7.3683, 7.3682, 7.3683, 7.3696, 7.3694, 7.3691, 7.3688, 7.3686, 7.3684, 7.3682, 7.3687, 7.3684, 7.3682, 7.3687, 7.3686, 7.3683, 7.3681, 7.368, 7.3677, 7.3699, 7.3697, 7.3694, 7.3699, 7.3696, 7.3701, 7.3699, 7.3697, 7.3694, 7.3692, 7.3697, 7.3702, 7.3699, 7.3696, 7.3694, 7.3691, 7.3688, 7.3693, 7.369, 7.3688, 7.3686, 7.3684, 7.3681, 7.3678, 7.3676, 7.3675, 7.3672, 7.3669, 7.3666, 7.3664, 7.3661, 7.3666, 7.3671, 7.3676, 7.3675, 7.3673, 7.367, 7.3682, 7.3679, 7.3681, 7.3679, 7.3677, 7.3675, 7.3673, 7.367, 7.3677, 7.3682, 7.368, 7.3677, 7.369, 7.3687, 7.3685, 7.369, 7.3689, 7.3688, 7.3686, 7.3683, 7.3688, 7.3685, 7.3682, 7.368, 7.3678, 7.3677, 7.3682, 7.3681, 7.3673, 7.3679, 7.3683, 7.368, 7.3678, 7.3676, 7.3674, 7.3671, 7.3676, 7.3674, 7.3672], '192.168.122.114': [5.9025, 6.0012, 7.0126, 10.3557, 10.7287, 9.8321, 10.0603, 9.5307, 9.1465, 9.4261, 9.1891, 8.9185, 8.6481, 8.4332, 8.6149, 8.4506, 8.308, 8.2204, 8.137, 8.0005, 7.909, 7.8219, 7.755, 7.6714, 7.6139, 7.7478, 7.6607, 7.5889, 7.5251, 7.4613, 7.5808, 7.5326, 7.4711, 7.413, 7.3501, 7.447, 7.5375, 7.4951, 7.4379, 7.4009, 7.3505, 7.3213, 7.2962, 7.2641, 7.237, 7.2031, 7.1906, 7.3816, 7.3684, 7.3312, 7.3119, 7.3794, 7.3424, 7.3109, 7.2765, 7.2436, 7.2123, 7.1814, 7.1522, 7.1261, 7.0963, 7.071, 7.0513, 7.029, 7.0935, 7.1472, 7.1242, 7.143, 7.2063, 7.1816, 7.1664, 7.1422, 7.1189, 7.0977, 7.083, 7.0687, 7.0473, 7.0333, 7.0281, 7.0133, 6.9956, 6.9952, 6.9852, 6.9823, 6.972, 6.9668, 6.948, 6.949000000000001, 6.9457, 6.946700000000001, 6.9323, 6.9192, 6.9019, 6.9473, 6.9314, 6.9343, 6.9188, 6.9045, 6.8901, 6.8795, 6.8718, 6.8725, 6.8694, 6.8589, 6.8503, 6.8491, 6.8394, 6.8304, 6.8288, 6.8768, 6.8654, 6.8593, 6.8958, 6.8848, 6.8751, 6.8622, 6.8572, 6.8464, 6.8372, 6.8305, 6.8638, 6.9447, 6.9389, 6.9333, 6.9199, 6.9504, 6.9408, 6.9299, 6.9259, 6.9178, 6.9073, 6.8968, 7.0568, 7.0462, 7.0369, 7.0261, 7.0171, 7.0058, 6.999, 6.9925, 6.9904, 6.9875, 7.0144, 7.005, 6.9942, 6.9889, 6.9783, 6.9682, 6.9949, 6.9851, 6.9754, 6.9674, 6.9594, 6.9532, 6.9586, 6.9586, 6.984, 7.0072, 6.9978, 7.0225, 7.0235, 7.0224, 7.0575, 7.0877, 7.0801, 7.0728, 7.0652, 7.0553, 7.0557, 7.0478, 7.0409, 7.0318, 7.0531, 7.0515, 7.0415, 7.0341, 7.0249, 7.0256, 7.0577, 7.1008, 7.0944, 7.0857, 7.0795, 7.0698, 7.0606, 7.055, 7.0499, 7.0432, 7.0645, 7.0911, 7.0852, 7.0761, 7.0675, 7.0589, 7.0503, 7.0679, 7.0898, 7.1086, 7.1072, 7.0984, 7.0909, 7.082, 7.0808, 7.0779, 7.0711, 7.0899, 7.0842, 7.081, 7.0747, 7.0757, 7.0715, 7.0688, 7.0606, 7.0526, 7.072, 7.0669, 7.0591, 7.0516, 7.0468, 7.0406, 7.0989, 7.0927, 7.0873, 7.0814, 7.0767, 7.1699, 7.1631, 7.1712, 7.1515, 7.152500000000001, 7.1481, 7.142, 7.143000000000001, 7.1359, 7.136900000000001, 7.1535, 7.2304, 7.2085, 7.2042, 7.1992, 7.200200000000001, 7.201200000000001, 7.202200000000001, 7.2216, 7.2606, 7.2461, 7.2413, 7.2582, 7.2523, 7.2533, 7.2459, 7.2392, 7.2315, 7.2463, 7.2473, 7.2483, 7.2649, 7.3017, 7.3007, 7.3227, 7.3562, 7.3398, 7.3371, 7.331, 7.3465, 7.36, 7.3538, 7.3548, 7.3519, 7.3448, 7.3581, 7.3543, 7.3668, 7.3641, 7.3766, 7.3754, 7.4093, 7.404, 7.398, 7.4084, 7.4028, 7.4007, 7.399, 7.4157, 7.4088, 7.4021, 7.3992, 7.3927, 7.3858, 7.3818, 7.4015, 7.4001, 7.4122, 7.4257, 7.4215, 7.4218, 7.4737, 7.4667, 7.4601, 7.4545, 7.4506, 7.445, 7.4449, 7.4711, 7.4758, 7.4687, 7.4615, 7.4612, 7.4552, 7.4656, 7.4801, 7.4733, 7.4684, 7.4616, 7.4569, 7.4509, 7.4618, 7.455, 7.4522, 7.4478, 7.4442, 7.4409, 7.4363, 7.4299, 7.4238, 7.4202, 7.4163, 7.4101, 7.4037, 7.3979, 7.4075, 7.4062, 7.4161, 7.4112, 7.4073, 7.403, 7.3974, 7.3923, 7.3869, 7.3816, 7.3754, 7.37, 7.3815, 7.3777, 7.3725, 7.3703, 7.3655, 7.3596, 7.3556, 7.3513, 7.3467, 7.3406, 7.3359, 7.3313, 7.3411, 7.3524, 7.3512, 7.3474, 7.3425, 7.3367, 7.3332, 7.3296, 7.3268, 7.337, 7.3316, 7.3263, 7.3219, 7.3185, 7.3161, 7.3276, 7.3242, 7.3204, 7.3104, 7.3085, 7.3045, 7.316, 7.3123, 7.3242, 7.3217, 7.3196, 7.3186, 7.3149, 7.3116, 7.3256, 7.3371, 7.3332, 7.3437, 7.352, 7.3485, 7.3439, 7.3457, 7.3428, 7.3403, 7.3366, 7.3315, 7.329, 7.3277, 7.3262, 7.3234, 7.321, 7.3301, 7.3256, 7.3208, 7.3308, 7.3261, 7.335, 7.3302, 7.3279, 7.3257, 7.3218, 7.3194, 7.3147, 7.3106, 7.3106, 7.3098, 7.3091, 7.3182, 7.3136, 7.3091, 7.3079, 7.3036, 7.3011, 7.2993, 7.3086, 7.314, 7.3103, 7.3056, 7.3247, 7.3336, 7.3306, 7.3387, 7.336, 7.3318, 7.3272, 7.3371, 7.3332, 7.3298, 7.3396, 7.337, 7.3339, 7.3292, 7.3386, 7.3358, 7.331, 7.3385, 7.3359, 7.3325, 7.331, 7.3273, 7.3258, 7.3226, 7.3191, 7.3166, 7.3129, 7.3099, 7.3296, 7.3383, 7.3347, 7.3435, 7.3396, 7.3498, 7.3468, 7.3424, 7.3399, 7.3423, 7.3512, 7.3511, 7.3601, 7.3564, 7.354, 7.3495, 7.3474, 7.3438, 7.3633, 7.3597, 7.3558, 7.3642, 7.3605, 7.37, 7.3784, 7.3746, 7.3713, 7.3673, 7.3651, 7.363, 7.3601, 7.3681, 7.3646, 7.3617, 7.3609, 7.3575, 7.3551, 7.3634, 7.3616, 7.3576, 7.3565, 7.3542, 7.3509, 7.3479, 7.3548, 7.3518, 7.3484, 7.3566, 7.3649, 7.3609, 7.3602, 7.3577, 7.3545, 7.3615, 7.3582, 7.3573, 7.357, 7.3644, 7.3645, 7.3606, 7.3583, 7.3648, 7.3723, 7.3706, 7.3671, 7.3645, 7.3603, 7.3584, 7.3573, 7.3544, 7.3523, 7.3583, 7.3643, 7.3608, 7.3573, 7.3554, 7.352, 7.3516, 7.3491, 7.3461, 7.3433, 7.3408, 7.3384, 7.3358, 7.3349, 7.331, 7.3293, 7.3371, 7.3364, 7.3345, 7.3407, 7.3396, 7.337, 7.334, 7.3328, 7.3297, 7.3272, 7.3247, 7.3216, 7.3183, 7.3155, 7.3222, 7.3199, 7.3173, 7.3157, 7.3127, 7.3102, 7.3082, 7.3046, 7.3129, 7.3105, 7.3081, 7.3054, 7.302, 7.3081, 7.3058, 7.3024, 7.3004, 7.298, 7.2947, 7.2921, 7.2984, 7.2961, 7.3028, 7.315, 7.3119, 7.309, 7.3173, 7.3149, 7.3126, 7.3098, 7.3082, 7.3088, 7.3057, 7.3028, 7.3006, 7.2987, 7.3045, 7.3025, 7.2997, 7.2965, 7.2935, 7.2999, 7.298, 7.2963, 7.2935, 7.2908, 7.2968, 7.2938, 7.3003, 7.3013, 7.3106, 7.3102, 7.3076, 7.3054, 7.3022, 7.3081, 7.3061, 7.3045, 7.3023, 7.3074, 7.3043, 7.3011, 7.2982, 7.2961, 7.2932, 7.2899, 7.2866, 7.2923, 7.2983, 7.2957, 7.3016, 7.2992, 7.2964, 7.2934, 7.2928, 7.3025, 7.3022, 7.2991, 7.3047, 7.3021, 7.3088, 7.3064, 7.3076, 7.305, 7.3029, 7.301, 7.3233, 7.3206, 7.3178, 7.3249, 7.3219, 7.328, 7.3252, 7.3307, 7.3278, 7.3333, 7.3303, 7.3353, 7.3401, 7.3382, 7.337, 7.347, 7.3449, 7.3435, 7.3403, 7.3389, 7.3362, 7.3353, 7.3326, 7.3379, 7.3433, 7.3421, 7.3401, 7.3378, 7.336, 7.333, 7.3318, 7.3296, 7.329, 7.3275, 7.3254, 7.3255, 7.3237, 7.3285, 7.326, 7.3246, 7.3223, 7.323, 7.3216, 7.3195, 7.319, 7.3168, 7.3152, 7.321, 7.3258, 7.3239, 7.3211, 7.3271, 7.3257, 7.333, 7.3309, 7.3287, 7.3257, 7.324, 7.3213, 7.3214, 7.3208, 7.3181, 7.3175, 7.3176, 7.3154, 7.316, 7.315, 7.3137, 7.3192, 7.3172, 7.3235, 7.3233, 7.3213, 7.3496, 7.3548, 7.3521, 7.3573, 7.3563, 7.3558, 7.355, 7.3524, 7.3502, 7.341, 7.3382, 7.3375, 7.3367, 7.3344, 7.3398, 7.3381, 7.3366, 7.3423, 7.34, 7.3474, 7.3455, 7.3426, 7.3411, 7.3322, 7.3298, 7.3417, 7.3458, 7.3433, 7.3409, 7.3395, 7.3367, 7.3345, 7.3332, 7.3319, 7.33, 7.3352, 7.333, 7.3316, 7.3294, 7.3281, 7.3257, 7.3301, 7.3279, 7.3267, 7.3244, 7.3217, 7.3194, 7.3174, 7.315, 7.3123, 7.3103, 7.3086, 7.3147, 7.3342, 7.3337, 7.3321, 7.3303, 7.329, 7.3346, 7.3329, 7.3303, 7.3282, 7.3258, 7.3256, 7.3233, 7.3212, 7.319, 7.3166, 7.3146, 7.3128, 7.3174, 7.3159, 7.3138, 7.3184, 7.3183, 7.3167, 7.3159, 7.3134, 7.311, 7.3085, 7.3066, 7.3085, 7.3068, 7.3047, 7.3091, 7.3147, 7.3189, 7.3109, 7.3159, 7.3138, 7.3117, 7.3094, 7.3071, 7.3053, 7.3037, 7.3025, 7.3006, 7.3054, 7.3115, 7.31, 7.3025, 7.3, 7.2986, 7.3031, 7.3006, 7.2989, 7.3043, 7.3018, 7.302, 7.3008, 7.3052, 7.3043, 7.3025, 7.3149, 7.313, 7.3124, 7.3116, 7.31, 7.3099, 7.3146, 7.3125, 7.3174, 7.3161, 7.3202, 7.3247, 7.323, 7.3246, 7.3224, 7.3203, 7.3186, 7.32, 7.3244, 7.3354, 7.333, 7.3373, 7.3365, 7.3405, 7.3453, 7.3436, 7.3478, 7.3458, 7.3451, 7.3429, 7.3473, 7.352, 7.3502, 7.3489, 7.3476, 7.3453, 7.3444, 7.3494, 7.347, 7.3518, 7.3567, 7.3544, 7.3527, 7.3521, 7.3577, 7.3557, 7.3536, 7.3526, 7.3519, 7.356, 7.3537, 7.3526, 7.3505, 7.3486, 7.3465, 7.3567, 7.3546, 7.3533, 7.3511, 7.3496, 7.3478, 7.3489, 7.3485, 7.347, 7.3456, 7.3438, 7.3428, 7.3418, 7.3457, 7.3438, 7.348, 7.346, 7.3447, 7.343, 7.3418, 7.3399, 7.3436, 7.3424, 7.3408, 7.3397, 7.3377, 7.3364, 7.3342, 7.3335, 7.3371, 7.3412, 7.341, 7.3401, 7.3382, 7.342, 7.3403, 7.3402, 7.3439, 7.344, 7.3419, 7.3398, 7.3386, 7.3377, 7.3361, 7.3356, 7.334, 7.3317, 7.3353, 7.3341, 7.3324, 7.3308, 7.3291, 7.327, 7.3251, 7.3291, 7.3273, 7.3263, 7.3248, 7.3226, 7.322, 7.3217, 7.3199, 7.3179, 7.3161, 7.3208, 7.3199, 7.3202, 7.3181, 7.3165, 7.3188, 7.3176, 7.3415, 7.3398, 7.3378, 7.3366, 7.3373, 7.3356, 7.3352, 7.3347, 7.3391, 7.3371, 7.3352, 7.3387, 7.3425, 7.362, 7.361, 7.3595, 7.3574, 7.3554, 7.3534, 7.3514, 7.3494, 7.3478, 7.3457, 7.3436, 7.3417, 7.3396, 7.338, 7.342, 7.3402, 7.3385, 7.3373, 7.3357, 7.3347, 7.3337, 7.3317, 7.3298, 7.3282, 7.3264, 7.3257, 7.324, 7.3184, 7.3169, 7.3149, 7.3131, 7.3167, 7.3156, 7.3145, 7.3184, 7.3224, 7.3214, 7.325, 7.3231, 7.3214, 7.3203, 7.3186, 7.3175, 7.3156, 7.3202, 7.3188, 7.3169, 7.3152, 7.3137, 7.3127, 7.3166, 7.3115, 7.3099, 7.3083, 7.3091, 7.308, 7.3176, 7.3158, 7.3143, 7.3123, 7.3164, 7.315, 7.314, 7.3125, 7.3163, 7.3194, 7.3178, 7.3179, 7.3171, 7.321, 7.3197, 7.3187, 7.3173, 7.3165, 7.3152, 7.3186, 7.3172, 7.3168, 7.3151, 7.3149, 7.3133, 7.3172, 7.3213, 7.3211, 7.3205, 7.3234, 7.3217, 7.3204, 7.3186, 7.332, 7.33, 7.328, 7.3261, 7.3266, 7.325, 7.3231, 7.3353, 7.3336, 7.3319, 7.3305, 7.3289, 7.3271, 7.3256, 7.3237, 7.3229, 7.321, 7.3203, 7.3235, 7.3216, 7.3247, 7.3235, 7.3219, 7.3204, 7.3187, 7.3221, 7.3211, 7.3243, 7.3227, 7.3211, 7.32, 7.3186, 7.3215, 7.3161, 7.3171, 7.3162, 7.3156, 7.3141, 7.3127, 7.3122, 7.3106, 7.3095, 7.3125, 7.3114, 7.3099, 7.3086, 7.3069, 7.3052, 7.3084, 7.3068, 7.3052, 7.3048, 7.3183, 7.3219, 7.3306, 7.3296, 7.3293, 7.3286, 7.3283, 7.3276, 7.3315, 7.3352, 7.3343, 7.3336, 7.3322, 7.3412, 7.3501, 7.35, 7.3487, 7.3521, 7.3518, 7.3552, 7.3536, 7.3517, 7.3507, 7.3504, 7.3493, 7.3483, 7.3521, 7.355, 7.3533, 7.3519, 7.3509, 7.354, 7.3523, 7.3506, 7.3492, 7.3474, 7.3503, 7.3485, 7.3525, 7.3469, 7.3458, 7.3491, 7.3492, 7.3482, 7.3466, 7.3458, 7.3494, 7.348, 7.3466, 7.3451, 7.3487, 7.3486, 7.3472, 7.3455, 7.3447, 7.3485, 7.3474, 7.3459, 7.345, 7.3442, 7.352, 7.3505, 7.3493, 7.3477, 7.3464, 7.3498, 7.353, 7.3525, 7.3509, 7.3542, 7.3525, 7.3508, 7.3535, 7.3527, 7.351, 7.3504, 7.353, 7.3609, 7.3596, 7.358, 7.362, 7.3652, 7.3644, 7.3637, 7.362, 7.3625, 7.3608, 7.36, 7.3592, 7.3577, 7.3562, 7.3549, 7.3579, 7.3564, 7.3598, 7.3584, 7.3569, 7.3554, 7.354, 7.3524, 7.3514, 7.3499, 7.3493, 7.3478, 7.3465, 7.3564, 7.3549, 7.3535, 7.3528, 7.3515, 7.3501, 7.3487, 7.3479, 7.3463, 7.3599, 7.3584, 7.3574, 7.3602, 7.3586, 7.3574, 7.3604, 7.3595, 7.3603, 7.3591, 7.3621, 7.3612, 7.3596, 7.3583, 7.3577, 7.3569, 7.3568, 7.3601, 7.3585, 7.3577, 7.3568, 7.3555, 7.3588, 7.362, 7.3607, 7.3593, 7.3589, 7.362, 7.3604, 7.3632, 7.3618, 7.3607, 7.364, 7.3637, 7.3626, 7.3578, 7.3572, 7.3565, 7.3548, 7.3543, 7.3575, 7.3559, 7.359, 7.3581, 7.3577, 7.3562, 7.3546, 7.3536, 7.3522, 7.3553, 7.3539, 7.3526, 7.3516, 7.3502, 7.3492, 7.3482, 7.3467, 7.3541, 7.3527, 7.3561, 7.3552, 7.3653, 7.3639, 7.3689, 7.3762, 7.376, 7.3747, 7.3738, 7.3724, 7.3714, 7.3703, 7.3835, 7.3869, 7.3853, 7.3888, 7.3875, 7.386, 7.3887, 7.3872, 7.3863, 7.3853, 7.3845, 7.3831, 7.3821, 7.3806, 7.3793, 7.3822, 7.3856, 7.3886, 7.3912, 7.39, 7.3885, 7.3871, 7.3901, 7.3886, 7.3871, 7.3855, 7.3848, 7.3837, 7.3829, 7.3814, 7.3799, 7.3788, 7.3781, 7.3769, 7.3759, 7.3785, 7.377, 7.38, 7.3793, 7.3781, 7.3767, 7.3756, 7.3745, 7.3772, 7.3763, 7.3788, 7.3777, 7.3763, 7.3748, 7.3736, 7.3765, 7.375, 7.3746, 7.3731, 7.3722, 7.3747, 7.3732, 7.3722, 7.3707, 7.3715, 7.3699, 7.3686, 7.3671, 7.3669, 7.3659, 7.3645, 7.3635, 7.3621, 7.3637, 7.3624, 7.377, 7.3757, 7.3764, 7.3789, 7.378, 7.3774, 7.3802, 7.3788, 7.3779, 7.3771, 7.3774, 7.3801, 7.382, 7.3809, 7.3796, 7.3781, 7.3774, 7.3799, 7.379, 7.3775, 7.3765, 7.3753, 7.374, 7.3725, 7.3711, 7.3698, 7.3685, 7.3682, 7.3677, 7.3663, 7.3688, 7.3674, 7.366, 7.3647, 7.3641, 7.3705, 7.3694, 7.3684, 7.367, 7.3698, 7.3686, 7.3747, 7.3734, 7.3723, 7.3717, 7.3702, 7.3725, 7.3713, 7.3702, 7.3702, 7.3726, 7.3715, 7.3703, 7.3702, 7.3695, 7.3685, 7.3712, 7.3736, 7.3724, 7.3751, 7.3736, 7.373, 7.372, 7.3712, 7.3741, 7.3727, 7.3716, 7.3701, 7.3691, 7.3687, 7.3674, 7.3661, 7.3651, 7.3638, 7.3626, 7.3649, 7.3638, 7.3668, 7.3661, 7.3648, 7.3674, 7.3663, 7.3658, 7.3655, 7.3652, 7.3645, 7.3749, 7.3739, 7.3812, 7.3798, 7.3795, 7.3785, 7.3774, 7.3767, 7.3764, 7.3753, 7.3745, 7.3731, 7.3742, 7.3745, 7.374, 7.3734, 7.3722, 7.3709, 7.3698, 7.369, 7.3686, 7.3673, 7.366, 7.3684, 7.3672, 7.3669, 7.3656, 7.3642, 7.3646, 7.3671, 7.3673, 7.3668, 7.3657, 7.3646, 7.3633, 7.3679, 7.3666, 7.3661, 7.3651, 7.365, 7.371, 7.3698, 7.3701, 7.3688, 7.3646, 7.3667, 7.3655, 7.3683, 7.3675, 7.3669, 7.3659, 7.3652, 7.3642, 7.3632, 7.3619, 7.3643, 7.3669, 7.3659, 7.3684, 7.371, 7.37, 7.373, 7.3717, 7.3744, 7.3733, 7.3729, 7.372, 7.3708, 7.3701, 7.3687, 7.3679, 7.3672, 7.3663, 7.3652, 7.364, 7.3668, 7.3656, 7.3679, 7.3668, 7.3655, 7.3646, 7.3633, 7.3593, 7.378, 7.3775, 7.3814, 7.3841, 7.3835, 7.3857, 7.3844, 7.3834, 7.3822, 7.3809, 7.3805, 7.3793, 7.3781, 7.377, 7.3763, 7.3752, 7.3777, 7.3763, 7.3757, 7.3756, 7.3749, 7.3742, 7.3767, 7.3755, 7.3743, 7.374, 7.3765, 7.3754, 7.3748, 7.3773, 7.3763, 7.3751, 7.3741, 7.3727, 7.3715, 7.3707, 7.3706, 7.3695, 7.3688, 7.3676, 7.3667, 7.3655, 7.3645, 7.3634, 7.3628, 7.3618, 7.3611, 7.3635, 7.3627, 7.3615, 7.3603, 7.3591, 7.3579, 7.3567, 7.3561, 7.3556, 7.3544, 7.3601, 7.3588, 7.358, 7.3573, 7.3565, 7.3553, 7.3572, 7.3563, 7.3556, 7.3548, 7.3535, 7.3525, 7.352, 7.3509, 7.3503, 7.3499, 7.3521, 7.3543, 7.3536, 7.3525, 7.3522, 7.3512, 7.3499, 7.349, 7.3483, 7.3507, 7.3531, 7.3554, 7.3546, 7.3536, 7.3532, 7.352, 7.3513, 7.3504, 7.3497, 7.3488, 7.3478, 7.3466, 7.3457, 7.3449, 7.3437, 7.3426, 7.3414, 7.3405, 7.343, 7.342, 7.3408, 7.3399, 7.3388, 7.3381, 7.3403, 7.3401, 7.3391, 7.3384, 7.3372, 7.3366, 7.3389, 7.3478, 7.3477, 7.3471, 7.3466, 7.3461, 7.3451, 7.3444, 7.3444, 7.3456, 7.3444, 7.3438, 7.3458, 7.3447, 7.3435, 7.3424, 7.3444, 7.3442, 7.3437, 7.3436, 7.3432, 7.3423, 7.3416, 7.3446, 7.3434, 7.3422, 7.341, 7.3433, 7.3422, 7.3443, 7.3436, 7.3456, 7.3447, 7.3441, 7.3431, 7.342, 7.3416, 7.3415, 7.3437, 7.3428, 7.342, 7.3411, 7.3398, 7.3389, 7.3379, 7.3402, 7.3423, 7.342, 7.3412, 7.3401, 7.339, 7.3386, 7.3376, 7.3374, 7.3367, 7.3358, 7.3347, 7.3338, 7.3329, 7.3317, 7.3339, 7.336, 7.335, 7.3343, 7.3331, 7.3329, 7.3289, 7.328, 7.3269, 7.3263, 7.3256, 7.3246, 7.3271, 7.3262, 7.3256, 7.3251, 7.3271, 7.326, 7.3253, 7.3243, 7.3263, 7.3285, 7.3277, 7.3265, 7.3254, 7.3218, 7.3211, 7.322100000000001, 7.3212, 7.3207, 7.3227, 7.3218, 7.3213, 7.3202, 7.3165, 7.3156, 7.3149, 7.3139, 7.3131, 7.3128, 7.3122, 7.3117, 7.3138, 7.3139, 7.3134, 7.3159, 7.3126, 7.312, 7.3111, 7.311, 7.3102, 7.3093, 7.3085, 7.3079, 7.3072, 7.3073, 7.3077, 7.3076, 7.3065, 7.3054, 7.3044, 7.3039, 7.3061, 7.3066, 7.3056, 7.3046, 7.3042, 7.3032, 7.304200000000001, 7.3035, 7.3024, 7.3046, 7.3035, 7.3024, 7.3018, 7.3008, 7.3027, 7.3075, 7.3069, 7.3068, 7.3067, 7.3063, 7.3053, 7.3043, 7.3038, 7.3036, 7.3033, 7.3026, 7.3086, 7.3106, 7.3097, 7.3087, 7.3082, 7.3104, 7.3126, 7.3116, 7.3139, 7.3358, 7.3379, 7.3377, 7.3373, 7.3364, 7.3354, 7.3345, 7.334, 7.3362, 7.3383, 7.3419, 7.3416, 7.3407, 7.34, 7.3391, 7.3383, 7.3379, 7.3375, 7.3369, 7.337, 7.3361, 7.3352, 7.3374, 7.3365, 7.3357, 7.3349, 7.334, 7.3337, 7.3328, 7.3319, 7.3309, 7.33, 7.3293, 7.3284, 7.3312, 7.3332, 7.3326, 7.3315, 7.3304, 7.3297, 7.3287, 7.328, 7.3276, 7.3274, 7.3263, 7.3341, 7.3331, 7.3325, 7.3322, 7.3346, 7.3335, 7.3354, 7.3349, 7.3338, 7.3333, 7.3351, 7.3371, 7.3389, 7.3354, 7.3377, 7.3366, 7.3356, 7.3349, 7.3371, 7.3367, 7.336, 7.336, 7.3383, 7.3373, 7.3364, 7.3362, 7.3353, 7.3344, 7.3336, 7.3325, 7.3316, 7.3312, 7.3329, 7.3324, 7.3316, 7.3308, 7.3329, 7.3348, 7.3339, 7.3329, 7.3325, 7.3318, 7.3339, 7.3331, 7.3351, 7.3343, 7.3336, 7.3355, 7.3349, 7.3344, 7.334, 7.3361, 7.3352, 7.3348, 7.3338, 7.3329, 7.3318, 7.3314, 7.3309, 7.3298, 7.3292, 7.3311, 7.3307, 7.3301, 7.3292, 7.3283, 7.3277, 7.3269, 7.3262, 7.3254, 7.3248, 7.3239, 7.326, 7.3262, 7.3252, 7.3244, 7.3235, 7.3257, 7.3283, 7.3273, 7.3268, 7.3294, 7.3295, 7.3285, 7.3282, 7.3273, 7.3266, 7.326, 7.3252, 7.3241, 7.3231, 7.3222, 7.3212, 7.321, 7.3202, 7.3197, 7.3192, 7.3185, 7.3227, 7.3223, 7.3242, 7.3237, 7.3233, 7.3224, 7.3218, 7.3208, 7.3203, 7.3194, 7.3195, 7.3185, 7.319500000000001, 7.320500000000001, 7.321500000000001, 7.3206, 7.3198, 7.3192, 7.3182, 7.3176, 7.3194, 7.3204, 7.3198, 7.3191, 7.3184, 7.3208, 7.3206, 7.3205, 7.3228, 7.3219, 7.3211, 7.3206, 7.3203, 7.3224, 7.3215, 7.3206, 7.3201, 7.3247, 7.3246, 7.3242, 7.3234, 7.3226, 7.3219, 7.3212, 7.3231, 7.3234, 7.3224, 7.3242, 7.3258, 7.3252, 7.3272, 7.328200000000001, 7.33, 7.3292, 7.3285, 7.3301, 7.3292, 7.3302000000000005, 7.335, 7.3341, 7.3361, 7.3371, 7.3376, 7.3367, 7.3358, 7.3352, 7.3321, 7.3313, 7.3308, 7.3304, 7.3294, 7.3319, 7.331, 7.3327, 7.3321, 7.334, 7.333, 7.3321, 7.3339, 7.3329, 7.3348, 7.3316, 7.3307, 7.3306, 7.3301, 7.3297, 7.3292, 7.3284, 7.3279, 7.3284, 7.3276, 7.3294, 7.3287, 7.3261, 7.3252, 7.3243, 7.3234, 7.3266, 7.3283, 7.332, 7.3313, 7.3309, 7.3302, 7.3293, 7.3291, 7.3311, 7.333, 7.3321, 7.3311, 7.3305, 7.3299, 7.3317, 7.3308, 7.33, 7.3316, 7.3311, 7.3312, 7.3284, 7.3304, 7.3306, 7.3323, 7.3341, 7.3339, 7.333, 7.3348, 7.3341, 7.3338, 7.3329, 7.3324, 7.3316, 7.3309, 7.3303, 7.33, 7.3321, 7.3316, 7.3307, 7.3326, 7.3321, 7.3313, 7.333, 7.3325, 7.3324, 7.3317, 7.3309, 7.3326, 7.3323, 7.3316, 7.3318, 7.3309, 7.33, 7.3291, 7.3282, 7.3278, 7.3273, 7.3289, 7.328, 7.3271, 7.3242, 7.3233, 7.3225, 7.3222, 7.3221, 7.3211, 7.3204, 7.32, 7.3196, 7.3186, 7.3179, 7.3173, 7.317, 7.3187, 7.3189, 7.318, 7.3177, 7.3198, 7.319, 7.3183, 7.3177, 7.3171, 7.3165, 7.3156, 7.3149, 7.3141, 7.3133, 7.3123, 7.3119, 7.3114, 7.3236, 7.3232, 7.3226, 7.3219, 7.322, 7.3211, 7.322100000000001, 7.3212, 7.321, 7.322, 7.3211, 7.3228, 7.3225, 7.3242, 7.3261, 7.3254, 7.327, 7.3261, 7.3257, 7.3253, 7.3272, 7.3266, 7.326, 7.3305, 7.3298, 7.3316, 7.3333, 7.3348, 7.3343, 7.3363, 7.3361, 7.3354, 7.3347, 7.3341, 7.3336, 7.3332, 7.3329, 7.332, 7.3314, 7.3307, 7.3303, 7.3318, 7.3333, 7.3325, 7.3343, 7.3338, 7.3354, 7.3346, 7.3338, 7.3355, 7.3346, 7.3337, 7.3478, 7.3471, 7.3444, 7.3436, 7.3429, 7.3444, 7.3441, 7.3434, 7.343, 7.3444, 7.3461, 7.3458, 7.3475, 7.3469, 7.3461, 7.3454, 7.3452, 7.3471, 7.3443, 7.3435, 7.3413, 7.3405, 7.3415, 7.3431, 7.345, 7.347, 7.3464, 7.3458, 7.3454, 7.3475, 7.3472, 7.3488, 7.3505, 7.3497, 7.3494, 7.3485, 7.348, 7.3474, 7.3466, 7.3459, 7.3454, 7.3454, 7.348, 7.3476, 7.3474, 7.3489, 7.3482, 7.3517, 7.351, 7.3501, 7.3519, 7.3511, 7.3503, 7.3495, 7.3514, 7.3507, 7.3485, 7.3479, 7.3494, 7.3486, 7.3478, 7.347, 7.3466, 7.3459, 7.3455, 7.3447, 7.3464, 7.3479, 7.347, 7.3466, 7.3458, 7.3475, 7.3466, 7.346, 7.3455, 7.3447, 7.3439, 7.3436, 7.3427, 7.3419, 7.3429, 7.3425, 7.3417, 7.3434, 7.3432, 7.3448, 7.3442, 7.3438, 7.343, 7.3448, 7.3443, 7.3435, 7.3428, 7.3422, 7.3441, 7.3437, 7.3452, 7.3446, 7.3438, 7.343, 7.3425, 7.3417, 7.3411, 7.3406, 7.34, 7.341, 7.3405, 7.3408, 7.3402, 7.3395, 7.3398, 7.3398, 7.3394, 7.3389, 7.3386, 7.3379, 7.3374, 7.3371, 7.3364, 7.3356, 7.3352, 7.3352, 7.3363, 7.3354, 7.3349, 7.3365, 7.3356, 7.3348, 7.3364, 7.336, 7.3357, 7.3349, 7.3343, 7.3341, 7.3335, 7.3328, 7.3322, 7.3337, 7.3337, 7.3331, 7.3324, 7.3318, 7.3313, 7.3306, 7.3299, 7.3319, 7.3317, 7.3315, 7.331, 7.3303, 7.3302, 7.3295, 7.3287, 7.329700000000001, 7.3292, 7.3302000000000005, 7.3294, 7.3304, 7.3296, 7.3289, 7.3282, 7.3273, 7.3271, 7.3286, 7.328, 7.3297, 7.3312, 7.3304, 7.3298, 7.3294, 7.3308, 7.3323, 7.3317, 7.3314, 7.333, 7.3324, 7.3318, 7.331, 7.3307, 7.33, 7.3296, 7.3312, 7.3307, 7.3305, 7.3303, 7.3295, 7.3289, 7.3306, 7.3299, 7.3294, 7.3312, 7.3328, 7.3325, 7.334, 7.3332, 7.3329, 7.3323, 7.3343, 7.3339, 7.3335, 7.3401, 7.3395, 7.3392, 7.3389, 7.3404, 7.3444, 7.3442, 7.344, 7.3434, 7.345, 7.3444, 7.3444, 7.3437, 7.3452, 7.3427, 7.3443, 7.3441, 7.3438, 7.3455, 7.3452, 7.3467, 7.3464, 7.3459, 7.3459, 7.3456, 7.3451, 7.3446, 7.3561, 7.3554, 7.3554, 7.3552, 7.3547, 7.354, 7.3513, 7.3506, 7.3522, 7.354, 7.3565, 7.3557, 7.3549, 7.3545, 7.3539, 7.3532, 7.3525, 7.3517, 7.3535, 7.3529, 7.352, 7.3494, 7.3486, 7.3481, 7.3528, 7.3543, 7.3535, 7.3529, 7.3522, 7.3525, 7.353, 7.3526, 7.3532, 7.3527, 7.3519, 7.3514, 7.3506, 7.3499, 7.3513, 7.3532, 7.3528, 7.3524, 7.3517, 7.3521, 7.3515, 7.3509, 7.3501, 7.3495, 7.3492, 7.3485, 7.3501, 7.3518, 7.3514, 7.3506, 7.3499, 7.3493, 7.3491, 7.3487, 7.3488, 7.348, 7.3493, 7.3485, 7.3479, 7.3474, 7.3471, 7.3468, 7.3461, 7.3457, 7.3471, 7.3468, 7.3461, 7.3455, 7.3447, 7.3442, 7.3438, 7.343, 7.3425, 7.3419, 7.3411, 7.3408, 7.341, 7.3425, 7.3417, 7.3409, 7.3457, 7.3449, 7.3445, 7.3425, 7.3423, 7.3436, 7.345, 7.3443, 7.3435, 7.3427, 7.3419, 7.3411, 7.3403, 7.3417, 7.343, 7.3423, 7.3416, 7.3408, 7.34, 7.3392, 7.3386, 7.3379, 7.3373, 7.3387, 7.3382, 7.3374, 7.3369, 7.3367, 7.3366, 7.3359, 7.3381, 7.3356, 7.336600000000001, 7.3384, 7.3378, 7.3392, 7.3406, 7.3398, 7.339, 7.341, 7.3406, 7.3398, 7.3394, 7.3387, 7.3401, 7.3397, 7.3389, 7.3382, 7.3374, 7.3386, 7.34, 7.3414, 7.3407, 7.34, 7.3394, 7.3388, 7.3386, 7.3381, 7.3395, 7.3391, 7.3405, 7.3424, 7.342, 7.3412, 7.3427, 7.342, 7.3453, 7.3449, 7.3444, 7.344, 7.3455, 7.3449, 7.3485, 7.348, 7.3473, 7.3487, 7.3525, 7.3517, 7.3531, 7.3524, 7.3516, 7.3534, 7.3526, 7.352, 7.3516, 7.3517, 7.351, 7.3526, 7.3528, 7.3542, 7.3534, 7.3526, 7.3519, 7.3513, 7.3511, 7.3614, 7.3607, 7.3622, 7.3635, 7.3651, 7.3644, 7.3636, 7.365, 7.3646, 7.3659, 7.3651, 7.3646, 7.3661, 7.3655, 7.3648, 7.364, 7.3643, 7.3641, 7.3634, 7.3626, 7.3618, 7.3631, 7.3606, 7.3604, 7.3599, 7.3592, 7.3591, 7.3605, 7.36, 7.3614, 7.3606, 7.36, 7.3593, 7.3586, 7.3579, 7.3592, 7.3585, 7.3582, 7.3579, 7.3572, 7.3564, 7.3578, 7.3571, 7.3564, 7.3557, 7.355, 7.3544, 7.3541, 7.3539, 7.3534, 7.3531, 7.3524, 7.3519, 7.3511, 7.3527, 7.3531, 7.3557, 7.3553, 7.3545, 7.3548, 7.3545, 7.3538, 7.3553, 7.3547, 7.354, 7.3539, 7.3539, 7.3536, 7.353, 7.3524, 7.3538, 7.353, 7.3525, 7.3524, 7.3516, 7.3531, 7.3524, 7.3516, 7.3531, 7.3523, 7.3518, 7.3513, 7.3508, 7.3507, 7.35, 7.3493, 7.3498, 7.3494, 7.3491, 7.3488, 7.3483, 7.3476, 7.3469, 7.3466, 7.3465, 7.3479, 7.3492, 7.3487, 7.3483, 7.3517, 7.3512, 7.3505, 7.35, 7.3496, 7.3512, 7.3505, 7.3499, 7.3495, 7.3492, 7.3486, 7.3503, 7.3501, 7.3496, 7.349, 7.3505, 7.3504, 7.3519, 7.3515, 7.3509, 7.3506, 7.3502, 7.3499, 7.3495, 7.3489, 7.3483, 7.3481, 7.3478, 7.3506, 7.3504, 7.3502, 7.3498, 7.3511, 7.3504, 7.3519, 7.3515, 7.3508, 7.3521, 7.3536, 7.353, 7.3523, 7.3538, 7.3534, 7.3532, 7.3525, 7.3519, 7.3512, 7.3507, 7.3499, 7.3494, 7.3469, 7.3462, 7.3474, 7.3489, 7.3482, 7.3477, 7.349, 7.3483, 7.3477, 7.3471, 7.3464, 7.3459, 7.3455, 7.3447, 7.3443, 7.3436, 7.3449, 7.3482, 7.3498, 7.3511, 7.3507, 7.3501, 7.3497, 7.349, 7.3505, 7.3517, 7.351, 7.3524, 7.3517, 7.351, 7.3523, 7.3519, 7.3519, 7.3512, 7.3514, 7.351, 7.3492, 7.3472, 7.3482, 7.349200000000001, 7.350200000000001, 7.3516, 7.352600000000001, 7.3519, 7.3529, 7.3524, 7.3517, 7.3515, 7.3509, 7.3501, 7.3494, 7.3494, 7.3489, 7.3487, 7.348, 7.3475, 7.3472, 7.3468, 7.3462, 7.3457, 7.3452, 7.3464, 7.3478, 7.3473, 7.3467, 7.3462, 7.3475, 7.3454, 7.3431, 7.3426, 7.3421, 7.3426, 7.3438, 7.3433, 7.3428, 7.3421, 7.3434, 7.3427, 7.3421, 7.3416, 7.3409, 7.3405, 7.3398, 7.3412, 7.3405, 7.3401, 7.3398, 7.3392, 7.339, 7.3384, 7.3377, 7.3371, 7.3366, 7.3359, 7.3336, 7.3333, 7.3329, 7.3323, 7.3335, 7.3329, 7.3323, 7.3319, 7.3331, 7.3325, 7.3337, 7.3332, 7.3325, 7.3318, 7.3332, 7.3342, 7.3354, 7.3364, 7.337400000000001, 7.337, 7.3379, 7.3374, 7.3375, 7.3352, 7.3367, 7.3381, 7.3376, 7.3389, 7.3402, 7.3397, 7.3394, 7.3406, 7.3402, 7.3398, 7.3411, 7.3404, 7.3398, 7.3415, 7.3428, 7.3425, 7.3423, 7.342, 7.3415, 7.3409, 7.341900000000001, 7.3416, 7.3413, 7.3408, 7.3421, 7.3414, 7.3427, 7.3422, 7.3419, 7.3416, 7.3413, 7.3408, 7.3405, 7.3413, 7.3408, 7.3422, 7.3417, 7.3414, 7.3408, 7.3405, 7.3401, 7.34, 7.3393, 7.3405, 7.3402, 7.3396, 7.3395, 7.3393, 7.339, 7.3387, 7.338, 7.3358, 7.3335, 7.3312, 7.3343, 7.3337, 7.3332, 7.3355, 7.3369, 7.3362, 7.3355, 7.3349, 7.3349, 7.3345, 7.3346, 7.336, 7.3357, 7.3368, 7.3363, 7.3359, 7.3353, 7.3367, 7.3366, 7.3361, 7.3357, 7.3355, 7.3355, 7.3349, 7.3346, 7.3323, 7.3319, 7.3314, 7.3312, 7.3308, 7.3303, 7.3316, 7.3312, 7.3307, 7.3305, 7.3301, 7.3296, 7.329, 7.3285, 7.3281, 7.3276, 7.327, 7.3282, 7.3277, 7.3288, 7.3284, 7.3278, 7.3271, 7.3266, 7.3262, 7.3275, 7.3271, 7.3265, 7.3261, 7.3255, 7.3251, 7.3245, 7.3239, 7.3232, 7.3226, 7.322, 7.3233, 7.3227, 7.3239, 7.3235, 7.3228, 7.3226, 7.3229, 7.3242, 7.325200000000001, 7.3266, 7.3284, 7.3295, 7.329, 7.3284, 7.3278, 7.329, 7.3287, 7.3282, 7.3277, 7.3289, 7.3285, 7.3281, 7.3276, 7.3269, 7.3281, 7.3312, 7.3313, 7.3311, 7.3307, 7.3321, 7.3319, 7.3313, 7.3306, 7.33, 7.3296, 7.3289, 7.3307, 7.3302, 7.3296, 7.3315, 7.3311, 7.3311, 7.3308, 7.3322, 7.3317, 7.334, 7.3351, 7.3345, 7.3339, 7.3335, 7.3331, 7.3343, 7.3337, 7.3366, 7.3401, 7.3396, 7.3393, 7.3387, 7.3403, 7.3403, 7.3415, 7.3411, 7.3408, 7.3387, 7.3401, 7.3412, 7.3407, 7.3403, 7.3416, 7.3428, 7.3422, 7.3416, 7.341, 7.3409, 7.3403, 7.3415, 7.3409, 7.3404, 7.3398, 7.3392, 7.3387, 7.339700000000001, 7.340700000000001, 7.3402, 7.3396, 7.3389, 7.3387, 7.3401, 7.3396, 7.3389, 7.3386, 7.3397, 7.3391, 7.3385, 7.3396, 7.3407, 7.3401, 7.3398, 7.341, 7.3403, 7.3401, 7.3412, 7.3423, 7.3435, 7.3446, 7.3441, 7.3435, 7.3429, 7.3426, 7.3423, 7.3417, 7.3413, 7.3443, 7.3439, 7.3435, 7.3418, 7.3411, 7.3407, 7.3417, 7.3416, 7.3425, 7.3418, 7.3431, 7.3444, 7.3438, 7.3431, 7.3442, 7.3436, 7.3434, 7.3431, 7.3424, 7.3418, 7.3413, 7.3425, 7.343500000000001, 7.3436, 7.3432, 7.3426, 7.3423, 7.3419, 7.342, 7.3416, 7.341, 7.3422, 7.3437, 7.3433, 7.3428, 7.3423, 7.3418, 7.3413, 7.3408, 7.3402, 7.3397, 7.3394, 7.3388, 7.3384, 7.3396, 7.3391, 7.3386, 7.3381, 7.3374, 7.3368, 7.3365, 7.3375, 7.3371, 7.3365, 7.3361, 7.3355, 7.3352, 7.3355, 7.3358, 7.3354, 7.3353, 7.3353, 7.3351, 7.3349, 7.3344, 7.3342, 7.3323, 7.3338, 7.3336, 7.3333, 7.3327, 7.3321, 7.3334, 7.3346, 7.3344, 7.334, 7.3335, 7.3316, 7.3311, 7.3306, 7.3301, 7.3367, 7.3362, 7.3359, 7.3355, 7.3369, 7.3363, 7.3375, 7.3373, 7.3368, 7.3362, 7.3359, 7.3369, 7.3379, 7.3374, 7.3372, 7.3352, 7.3348, 7.3344, 7.3338, 7.335, 7.3362, 7.3359, 7.3354, 7.3367, 7.3364, 7.3358, 7.3353, 7.3347, 7.336, 7.3355, 7.3351, 7.3347, 7.3342, 7.3343, 7.334, 7.3335, 7.333, 7.3324, 7.3323, 7.3322, 7.3334, 7.3345, 7.3339, 7.3333, 7.3329, 7.3323, 7.3317, 7.3311, 7.3306, 7.3318, 7.3318, 7.3324, 7.3319, 7.3329, 7.3342, 7.3336, 7.3332, 7.3363, 7.3373, 7.3383, 7.3395, 7.3408, 7.3389, 7.34, 7.3394, 7.339, 7.3388, 7.3385, 7.3382, 7.3376, 7.337, 7.3365, 7.336, 7.3354, 7.3348, 7.3345, 7.3338, 7.3334, 7.3328, 7.3322, 7.3333, 7.3333, 7.3327, 7.3325, 7.3319, 7.3316, 7.3299, 7.3278, 7.3288, 7.3284, 7.3279, 7.3273, 7.3253, 7.3233, 7.3227, 7.3223, 7.3219, 7.3216, 7.3227, 7.3227, 7.3221, 7.3218, 7.3214, 7.3209, 7.322, 7.3239, 7.3235, 7.3232, 7.3245, 7.3239, 7.3235, 7.323, 7.3226, 7.3222, 7.3219, 7.3213, 7.3194, 7.3175, 7.3172, 7.3182, 7.3192, 7.320200000000001, 7.3198, 7.3225, 7.3237, 7.3231, 7.3227, 7.3221, 7.322, 7.3215, 7.322, 7.3214, 7.321, 7.3222, 7.3207, 7.3201, 7.3197, 7.3193, 7.3188, 7.3183, 7.3196, 7.3194, 7.321, 7.3207, 7.3201, 7.3196, 7.3193, 7.3189, 7.3188, 7.3188, 7.3184, 7.318, 7.3174, 7.3173, 7.3186, 7.3182, 7.3177, 7.3171, 7.3165, 7.3175, 7.3169, 7.3164, 7.3159, 7.3153, 7.315, 7.3149, 7.3144, 7.3139, 7.3166, 7.3178, 7.3173, 7.317, 7.3180000000000005, 7.3192, 7.3186, 7.3181, 7.3192, 7.3187, 7.3184, 7.318, 7.3175, 7.3186, 7.3195, 7.3189, 7.3201, 7.3197, 7.3192, 7.3188, 7.3183, 7.3178, 7.3172, 7.3167, 7.3163, 7.3174, 7.317, 7.3165, 7.3161, 7.3158, 7.3153, 7.315, 7.3146, 7.3157, 7.3154, 7.3149, 7.316, 7.3156, 7.3152, 7.315, 7.3161, 7.3155, 7.315, 7.3145, 7.3125, 7.3106, 7.3102, 7.3098, 7.3081, 7.308, 7.309, 7.3102, 7.3112, 7.3106, 7.3117, 7.3127, 7.3136, 7.3135, 7.3129, 7.3124, 7.3118, 7.3129, 7.3126, 7.3173, 7.3172, 7.3167, 7.3161, 7.3156, 7.3153, 7.315, 7.3147, 7.3143, 7.3153, 7.3149, 7.3144, 7.314, 7.315, 7.3144, 7.314, 7.3136, 7.3146, 7.3156, 7.315, 7.3144, 7.3156, 7.315, 7.3144, 7.3154, 7.3135, 7.313, 7.3127, 7.3122, 7.3187, 7.3201, 7.3212, 7.3207, 7.3218, 7.3212, 7.3209, 7.3205, 7.3199, 7.3196, 7.3207, 7.3204, 7.3185, 7.3182, 7.3206, 7.3203, 7.32, 7.3195, 7.3189, 7.3185, 7.3187, 7.3182, 7.3177, 7.3174, 7.3172, 7.3167, 7.3162, 7.3159, 7.3153, 7.3147, 7.3158, 7.3154, 7.315, 7.3164, 7.316, 7.3156, 7.3156, 7.3152, 7.3146, 7.3146, 7.3142, 7.3139, 7.3133, 7.3147, 7.3158, 7.3156, 7.3151, 7.3151, 7.3162, 7.3157, 7.3167, 7.3177, 7.318700000000001, 7.3198, 7.3196, 7.3179, 7.3161, 7.3171, 7.3181, 7.319100000000001, 7.3202, 7.3199, 7.3195, 7.3192, 7.3188, 7.3184, 7.3182, 7.3184, 7.3178, 7.3175, 7.3169, 7.3163, 7.3158, 7.3158, 7.3153, 7.3148, 7.3159, 7.3155, 7.3164, 7.3174, 7.3169, 7.3181, 7.3176, 7.3171, 7.3154, 7.3151, 7.3167, 7.3162, 7.3161, 7.3171, 7.3165, 7.3169, 7.3179, 7.3173, 7.3172, 7.3168, 7.3163, 7.3175, 7.3172, 7.3169, 7.3165, 7.316, 7.3157, 7.3142, 7.3155, 7.3166, 7.3176000000000005, 7.318600000000001, 7.3184, 7.3183, 7.3197, 7.3179, 7.3227, 7.3222, 7.3248, 7.3243, 7.3238, 7.3265, 7.3275, 7.3277, 7.3272, 7.3268, 7.3264, 7.3275, 7.3285, 7.328, 7.3275, 7.3286, 7.3283, 7.3287, 7.3298, 7.3309, 7.329, 7.3273, 7.3284, 7.3282, 7.3277, 7.3273, 7.327, 7.3267, 7.3295, 7.330500000000001, 7.331500000000001, 7.332500000000001, 7.3334, 7.333, 7.3325, 7.3322, 7.3317, 7.3312, 7.3322, 7.3332, 7.3327, 7.3322, 7.3318, 7.3359, 7.3354, 7.3364, 7.3359, 7.3354, 7.3352, 7.3432, 7.3428, 7.3424, 7.342, 7.343, 7.3426, 7.3425, 7.3424, 7.3421, 7.3417, 7.3416, 7.3425, 7.3421, 7.3417, 7.3412, 7.3406, 7.3418, 7.343, 7.3441, 7.3439, 7.3434, 7.3429, 7.3427, 7.3425, 7.3435, 7.3417, 7.34, 7.3396, 7.3391, 7.3385, 7.3381, 7.3376, 7.3372, 7.3367, 7.3365, 7.3361, 7.3356, 7.3353, 7.335, 7.3344, 7.3355, 7.3351, 7.3349, 7.3344, 7.3339, 7.3348, 7.3359, 7.3356, 7.3366, 7.3375, 7.3376, 7.3371, 7.3368, 7.3365, 7.3376, 7.3386, 7.3381, 7.339, 7.3399, 7.3393, 7.3405, 7.3446, 7.344, 7.3436, 7.3432, 7.3426, 7.3422, 7.3419, 7.3414, 7.3409, 7.3419, 7.3417, 7.3414, 7.3424, 7.3419, 7.3416, 7.3415, 7.3425, 7.3422, 7.3479, 7.3475, 7.347, 7.3473, 7.3459, 7.3456, 7.3439, 7.3434, 7.3448, 7.3471, 7.3459, 7.3458, 7.3454, 7.3479, 7.3474, 7.3472, 7.3467, 7.3454, 7.3467, 7.3472, 7.3487, 7.3512, 7.3509, 7.3504, 7.3499, 7.3481, 7.3493, 7.3489, 7.3484, 7.3483, 7.3478, 7.3473, 7.3459, 7.3458, 7.3467, 7.3464, 7.3474, 7.3471, 7.3467, 7.3468, 7.3465, 7.3461, 7.3457, 7.3452, 7.3447, 7.3442, 7.344, 7.345, 7.3447, 7.3442, 7.3437, 7.3433, 7.3447, 7.3458, 7.3452, 7.3446, 7.3443, 7.3438, 7.3449, 7.3444, 7.344, 7.3436, 7.3445, 7.3442, 7.3438, 7.3435, 7.3432, 7.3426, 7.3451, 7.3446, 7.3441, 7.344, 7.3436, 7.3432, 7.343, 7.3427, 7.3421, 7.3431, 7.3426, 7.3429, 7.3424, 7.3418, 7.3414, 7.3409, 7.3404, 7.3403, 7.3414, 7.3409, 7.3406, 7.3405, 7.3402, 7.3399, 7.3395, 7.339, 7.3388, 7.3384, 7.3381, 7.3378, 7.3418, 7.3414, 7.341, 7.3419, 7.3447, 7.3445, 7.3443, 7.3453, 7.3448, 7.3434, 7.3443, 7.3441, 7.3436, 7.3431, 7.343, 7.3455, 7.345, 7.3445, 7.3454, 7.3464, 7.346, 7.3459, 7.3456, 7.3452, 7.3451, 7.3448, 7.3443, 7.344, 7.3438, 7.3451, 7.3448, 7.3459, 7.3459, 7.3454, 7.345, 7.3446, 7.3445, 7.3456, 7.3452, 7.3448, 7.346, 7.3456, 7.3453, 7.3449, 7.3449, 7.3447, 7.3457, 7.3455, 7.3451, 7.3448, 7.3445, 7.3441, 7.3452, 7.3462, 7.3459, 7.3456, 7.3453, 7.345, 7.3461, 7.3456, 7.3454, 7.3469, 7.3467, 7.3467, 7.3452, 7.3448, 7.3459, 7.3456, 7.3451, 7.3448, 7.3458, 7.3453, 7.345, 7.3485, 7.3494, 7.3489, 7.3485, 7.3515, 7.3531, 7.3541, 7.3536, 7.3531, 7.3542, 7.3538, 7.3533, 7.3529, 7.3526, 7.3521, 7.3546, 7.3567, 7.3577, 7.3572, 7.3582, 7.3592, 7.3602, 7.3597, 7.3597, 7.3596, 7.3593, 7.3589, 7.3607, 7.3602, 7.362, 7.3616, 7.3613, 7.3609, 7.3617, 7.3614, 7.3612, 7.3607, 7.3627, 7.3623, 7.3633, 7.3641, 7.3636, 7.3631, 7.3628, 7.3637, 7.3635, 7.363, 7.3628, 7.3623, 7.362, 7.363, 7.3626, 7.3622, 7.3632, 7.363, 7.363, 7.3626, 7.3638, 7.3635, 7.3631, 7.3629, 7.3626, 7.3621, 7.3617, 7.3615, 7.3611, 7.3606, 7.3603, 7.3599, 7.3622, 7.3618, 7.3622, 7.3659, 7.3657, 7.366, 7.3656, 7.3642, 7.3638, 7.3635, 7.3633, 7.3642, 7.3639, 7.3648, 7.3644, 7.3653, 7.365, 7.3646, 7.3644, 7.364, 7.3636, 7.3638, 7.3638, 7.3633, 7.3632, 7.3628, 7.3626, 7.3634, 7.3629, 7.3626, 7.3635, 7.363, 7.3625, 7.362, 7.3616, 7.3612, 7.361, 7.3606, 7.3605, 7.36, 7.3597, 7.3628, 7.3623, 7.3632, 7.3627, 7.3625, 7.3635, 7.3646, 7.3655, 7.3654, 7.3649, 7.3645, 7.3654, 7.365, 7.3647, 7.3656, 7.3652, 7.3662, 7.3658, 7.3641, 7.3652, 7.3647, 7.3657, 7.3668, 7.3651, 7.3647, 7.3657, 7.3669, 7.3665, 7.366, 7.3655, 7.3651, 7.3648, 7.3644, 7.3644, 7.3642, 7.3652, 7.3648, 7.3656, 7.3653, 7.3663, 7.3659, 7.3656, 7.3652, 7.365, 7.3661, 7.3671, 7.3665, 7.3675, 7.3672, 7.3669, 7.3666, 7.3651, 7.3649, 7.3645, 7.3654, 7.3651, 7.3646, 7.3641, 7.3636, 7.3631, 7.3656, 7.3653, 7.3648, 7.3644, 7.364, 7.3638, 7.3647, 7.3644, 7.3641, 7.3638, 7.3635, 7.3631, 7.3641, 7.3638, 7.3633, 7.3632, 7.3629, 7.3627, 7.3622, 7.3619, 7.3616, 7.3625, 7.3634, 7.3629, 7.3626, 7.3625, 7.362, 7.3616, 7.3613, 7.361, 7.3609, 7.3592, 7.3588, 7.3598, 7.3595, 7.3605, 7.3602, 7.3597, 7.3607, 7.3604, 7.3601, 7.3599, 7.3608, 7.3604, 7.3601, 7.3597, 7.3606, 7.3607, 7.3605, 7.3601, 7.3596, 7.3597, 7.3593, 7.3588, 7.3585, 7.3584, 7.358, 7.3591, 7.3586, 7.3584, 7.3579, 7.3575, 7.3584, 7.358, 7.3575, 7.3584, 7.3594, 7.359, 7.3598, 7.3607, 7.3605, 7.3605, 7.3602, 7.36, 7.3598, 7.3596, 7.3605, 7.3602, 7.3597, 7.3594, 7.3591, 7.3588, 7.3586, 7.3641, 7.3636, 7.3633, 7.3617, 7.3615, 7.361, 7.3605, 7.3601, 7.3598, 7.3607, 7.3616, 7.36, 7.3596, 7.3594, 7.359, 7.3586, 7.3581, 7.3578, 7.3574, 7.357, 7.3582, 7.3567, 7.3562, 7.3566, 7.3562, 7.3559, 7.3555, 7.3551, 7.3561, 7.3558, 7.3555, 7.3551, 7.3548, 7.3548, 7.3552, 7.3547, 7.3556, 7.3551, 7.3551, 7.3548, 7.3548, 7.3543, 7.3552, 7.3548, 7.3557, 7.3553, 7.3549, 7.356, 7.3558, 7.3553, 7.3561, 7.357, 7.3579, 7.3578, 7.3574, 7.3571, 7.3567, 7.3564, 7.356, 7.3556, 7.3552, 7.3561, 7.3559, 7.3569, 7.3564, 7.3574, 7.3572, 7.357, 7.3566, 7.3575, 7.3572, 7.358, 7.3576, 7.3574, 7.3571, 7.3567, 7.3576, 7.3585, 7.3582, 7.3578, 7.3573, 7.3568, 7.3564, 7.3562, 7.3559, 7.3554, 7.3563, 7.356, 7.3559, 7.3554, 7.3549, 7.3549, 7.3546, 7.3554, 7.3549, 7.3545, 7.3542, 7.355, 7.3558, 7.3555, 7.3554, 7.355, 7.356, 7.3568, 7.3564, 7.3561, 7.3558, 7.3553, 7.3549, 7.3546, 7.3556, 7.3551, 7.356, 7.3568, 7.3563, 7.3558, 7.3554, 7.3552, 7.3548, 7.3546, 7.3541, 7.3537, 7.3534, 7.3529, 7.357, 7.3578, 7.3573, 7.3568, 7.3564, 7.356, 7.3569, 7.3567, 7.3564, 7.3559, 7.3554, 7.3551, 7.356, 7.3557, 7.3553, 7.356, 7.3568, 7.3564, 7.356, 7.3557, 7.3552, 7.3548, 7.3543, 7.3552, 7.3551, 7.356, 7.3559, 7.3554, 7.355, 7.3547, 7.3555, 7.3564, 7.3561, 7.357, 7.3567, 7.3576, 7.3584, 7.358, 7.3589, 7.3586, 7.3608, 7.3607, 7.3616, 7.3614, 7.3609, 7.3617, 7.3613, 7.3612, 7.3608, 7.3604, 7.36, 7.3596, 7.3592, 7.3588, 7.3584, 7.3586, 7.3582, 7.359, 7.3585, 7.358, 7.3577, 7.3574, 7.3571, 7.3566, 7.3564, 7.3561, 7.3569, 7.3566, 7.3564, 7.3573, 7.3581, 7.3579, 7.3587, 7.3595, 7.3602, 7.3599, 7.3598, 7.3607, 7.3605, 7.3603, 7.3612, 7.3622, 7.3618, 7.3615, 7.361, 7.3605, 7.3603, 7.36, 7.3595, 7.3591, 7.3589, 7.3585, 7.3595, 7.3595, 7.3594, 7.3593, 7.359, 7.3586, 7.3571, 7.3569, 7.3579, 7.3578, 7.3576, 7.3584, 7.3581, 7.3579, 7.3575, 7.357, 7.3568, 7.3566, 7.3561, 7.3546, 7.3543, 7.3552, 7.3548, 7.3546, 7.3542, 7.3527, 7.3523, 7.352, 7.3532, 7.353, 7.353, 7.3526, 7.3531, 7.3539, 7.3535, 7.3532, 7.3528, 7.3524, 7.352, 7.3528, 7.3526, 7.3526, 7.3523, 7.352, 7.3516, 7.3513, 7.3509, 7.3494, 7.3492, 7.3491, 7.35, 7.3496, 7.3492, 7.3489, 7.3485, 7.3482, 7.3477, 7.3476, 7.3471, 7.3469, 7.3466, 7.3464, 7.3473, 7.3469, 7.3467, 7.3464, 7.346, 7.3456, 7.3441, 7.3438, 7.3436, 7.3435, 7.3444, 7.3429, 7.3425, 7.3423, 7.3409, 7.3395, 7.3383, 7.3384, 7.3396, 7.3395, 7.3393, 7.3391, 7.3389, 7.3386, 7.3396, 7.3393, 7.3389, 7.3388, 7.3386, 7.3383, 7.338, 7.3389, 7.3398, 7.3395, 7.3381, 7.3379, 7.3365, 7.3361, 7.337, 7.3368, 7.3364, 7.336, 7.3357, 7.3353, 7.3352, 7.336, 7.3357, 7.3366, 7.3362, 7.336, 7.3356, 7.3352, 7.3359, 7.3356, 7.3365, 7.3363, 7.3359, 7.3382, 7.3379, 7.3376, 7.3373, 7.337, 7.3378, 7.3365, 7.3351, 7.3348, 7.3348, 7.3356, 7.3371, 7.3372, 7.337, 7.3366, 7.3361, 7.3357, 7.3354, 7.3353, 7.335, 7.3359, 7.3345, 7.3342, 7.3339, 7.3348, 7.3345, 7.3343, 7.3338, 7.3346, 7.3343, 7.3353, 7.3351, 7.3348, 7.3345, 7.3354, 7.3352, 7.3362, 7.337, 7.3378, 7.3373, 7.3369, 7.3365, 7.3363, 7.3384, 7.3396, 7.3394, 7.3392, 7.3399, 7.3397, 7.3393, 7.339, 7.3386, 7.3383, 7.3379, 7.3376, 7.3383, 7.3368, 7.3355, 7.3363, 7.3359, 7.3356, 7.3353, 7.3358, 7.3343, 7.334, 7.3337, 7.3334, 7.333, 7.3327, 7.3325, 7.3322, 7.3321, 7.3329, 7.3353, 7.3351, 7.3349, 7.3365, 7.3377, 7.3385, 7.3383, 7.338, 7.3376, 7.3391, 7.3391, 7.34, 7.3408, 7.3404, 7.3413, 7.3411, 7.3407, 7.3406, 7.3404, 7.34, 7.3399, 7.3396, 7.3404, 7.3401, 7.3397, 7.3395, 7.3392, 7.3379, 7.3388, 7.3385, 7.3435, 7.3433, 7.342, 7.3407, 7.3393, 7.3401, 7.341, 7.3408, 7.3415, 7.3411, 7.3399, 7.3436, 7.3453, 7.3449, 7.345, 7.3439, 7.3453, 7.3504, 7.349, 7.3476, 7.3474, 7.3466, 7.347, 7.3465, 7.3461, 7.347, 7.3467, 7.3475, 7.3472, 7.3468, 7.3465, 7.3463, 7.346, 7.3456, 7.3453, 7.3449, 7.3445, 7.3441, 7.3438, 7.3434, 7.343, 7.3427, 7.3414, 7.341, 7.3406, 7.3404, 7.3403, 7.3405, 7.3401, 7.3388, 7.3385, 7.3383, 7.338, 7.338, 7.3377, 7.3364, 7.3361, 7.3357, 7.3354, 7.335, 7.3346, 7.3354, 7.3362, 7.337, 7.3365, 7.3363, 7.3361, 7.3357, 7.3364, 7.3372, 7.3381, 7.3378, 7.3387, 7.3385, 7.3393, 7.3389, 7.3386, 7.3383, 7.3391, 7.3387, 7.3395, 7.3391, 7.34, 7.3397, 7.3393, 7.3389, 7.3387, 7.3407, 7.3403, 7.3399, 7.3397, 7.3393, 7.3389, 7.3385, 7.3383, 7.339, 7.3388, 7.3399, 7.3414, 7.3412, 7.3411, 7.3419, 7.3417, 7.3418, 7.3414, 7.3415, 7.3411, 7.3431, 7.343, 7.3431, 7.3428, 7.3424, 7.3423, 7.3419, 7.3416, 7.3414, 7.3409, 7.3406, 7.3413, 7.3411, 7.3407, 7.3404, 7.3412, 7.3409, 7.3406, 7.3403, 7.3398, 7.3397, 7.3394, 7.339, 7.3387, 7.3384, 7.338, 7.3377, 7.3374, 7.3371, 7.3369, 7.3367, 7.3375, 7.3372, 7.3368, 7.3364, 7.336, 7.3357, 7.3353, 7.3349, 7.3345, 7.3342, 7.3338, 7.3334, 7.3332, 7.333, 7.3326, 7.3333, 7.3328, 7.3336, 7.3334, 7.333, 7.3328, 7.3326, 7.3322, 7.332, 7.3329, 7.3325, 7.3322, 7.3318, 7.3315, 7.3311, 7.3308, 7.3306, 7.3315, 7.3324, 7.3323, 7.3319, 7.3316, 7.3313, 7.3309, 7.3305, 7.3313, 7.331, 7.3317, 7.3316, 7.3313, 7.3321, 7.3317, 7.3314, 7.3322, 7.3318, 7.3326, 7.3322, 7.3321, 7.3317, 7.3313, 7.332, 7.3316, 7.3323, 7.332, 7.3317, 7.3314, 7.3311, 7.3307, 7.3304, 7.3322, 7.3331, 7.334, 7.3339, 7.3347, 7.3343, 7.3351, 7.3348, 7.3346, 7.3343, 7.334, 7.3327, 7.3323, 7.3319, 7.332, 7.3318, 7.3327, 7.3324, 7.332, 7.3328, 7.3326, 7.3333, 7.3329, 7.3337, 7.3345, 7.3341, 7.3348, 7.3345, 7.3342, 7.3339, 7.3337, 7.3344, 7.3352, 7.3348, 7.3345, 7.3341, 7.3339, 7.335, 7.3382, 7.3378, 7.3374, 7.3372, 7.337, 7.3378, 7.3388, 7.3384, 7.3381, 7.3377, 7.3374, 7.3373, 7.3382, 7.3401, 7.3399, 7.3406, 7.3404, 7.3401, 7.3398, 7.3394, 7.3392, 7.3388, 7.3384, 7.337, 7.3387, 7.3383, 7.3381, 7.3377, 7.3374, 7.3382, 7.338, 7.3378, 7.3385, 7.3392, 7.34, 7.3397, 7.3405, 7.3401, 7.3397, 7.3395, 7.3392, 7.34, 7.3399, 7.3405, 7.3402, 7.3411, 7.3407, 7.3406, 7.3419, 7.3416, 7.3413, 7.3409, 7.3406, 7.3403, 7.3399, 7.3406, 7.3404, 7.3403, 7.3401, 7.3397, 7.3395, 7.3391, 7.3387, 7.3384, 7.3381, 7.3377, 7.3384, 7.338, 7.3376, 7.3383, 7.3379, 7.3395, 7.3391, 7.3399, 7.3395, 7.3391, 7.3389, 7.3387, 7.3395, 7.3392, 7.3401, 7.3397, 7.3405, 7.3401, 7.3408, 7.3406, 7.3402, 7.34, 7.3397, 7.3394, 7.339, 7.3386, 7.3372, 7.3371, 7.337, 7.3368, 7.3365, 7.3361, 7.3357, 7.3354, 7.3351, 7.3352, 7.335, 7.3357, 7.3355, 7.3351, 7.3347, 7.3355, 7.3351, 7.3348, 7.3347, 7.3345, 7.3341, 7.3337, 7.3344, 7.3341, 7.3338, 7.3357, 7.3356, 7.3357, 7.3353, 7.335, 7.3348, 7.3344, 7.334, 7.3336, 7.3333, 7.3331, 7.3328, 7.3324, 7.332, 7.3318, 7.3318, 7.3314, 7.3321, 7.3319, 7.3317, 7.3314, 7.331, 7.3307, 7.3304, 7.33, 7.3298, 7.3294, 7.3284, 7.3281, 7.3277, 7.3273, 7.3269, 7.3266, 7.3273, 7.3281, 7.328, 7.3277, 7.3273, 7.3271, 7.3267, 7.3264, 7.3251, 7.3249, 7.3246, 7.3243, 7.3239, 7.3238, 7.3245, 7.3242, 7.3238, 7.3234, 7.3231, 7.3227, 7.3227, 7.3226, 7.3225, 7.3232, 7.3228, 7.3224, 7.322, 7.3216, 7.3213, 7.321, 7.3206, 7.3203, 7.3203, 7.3211, 7.3209, 7.3208, 7.3205, 7.3213, 7.3221, 7.3221, 7.3218, 7.3215, 7.3222, 7.3218, 7.3215, 7.3222, 7.322, 7.3218, 7.3214, 7.3211, 7.3218, 7.3215, 7.3212, 7.3212, 7.3209, 7.3217, 7.3215, 7.3212, 7.3208, 7.3215, 7.3211, 7.3208, 7.3216, 7.3213, 7.321, 7.3207, 7.3215, 7.3213, 7.3211, 7.3207, 7.3215, 7.3212, 7.3219, 7.3216, 7.3224, 7.322, 7.3217, 7.3227, 7.3225, 7.3233, 7.3229, 7.3237, 7.3234, 7.3231, 7.324, 7.3247, 7.3245, 7.3253, 7.3252, 7.3249, 7.3246, 7.3243, 7.3241, 7.3237, 7.3235, 7.3234, 7.3231, 7.3229, 7.3236, 7.3233, 7.3241, 7.3239, 7.3235, 7.3243, 7.325, 7.3246, 7.3244, 7.324, 7.3237, 7.3247, 7.3257, 7.3274, 7.3282, 7.3278, 7.3277, 7.3275, 7.3272, 7.3268, 7.3274, 7.3272, 7.3279, 7.3286, 7.3283, 7.328, 7.3278, 7.3274, 7.3281, 7.3279, 7.3285, 7.3283, 7.328, 7.3278, 7.3275, 7.3272, 7.3279, 7.3275, 7.3272, 7.327, 7.3266, 7.3262, 7.3258, 7.3265, 7.3252, 7.3239, 7.3236, 7.3233, 7.3231, 7.3229, 7.3236, 7.3286, 7.3293, 7.329, 7.3297, 7.3294, 7.3301, 7.3297, 7.3293, 7.329, 7.3289, 7.3285, 7.3281, 7.3268, 7.3275, 7.3271, 7.3277, 7.3273, 7.3269, 7.3266, 7.3263, 7.3251, 7.3247, 7.3244, 7.3241, 7.3237, 7.3245, 7.3242, 7.3239, 7.3249, 7.3246, 7.3244, 7.3242, 7.3238, 7.3236, 7.3235, 7.3235, 7.3241, 7.3238, 7.3235, 7.3231, 7.3228, 7.3226, 7.3222, 7.3223, 7.323, 7.3227, 7.3215, 7.3213, 7.321, 7.3207, 7.3194, 7.3191, 7.3187, 7.3183, 7.3179, 7.3176, 7.3186, 7.3196, 7.3202, 7.3199, 7.3195, 7.3203, 7.3209, 7.3206, 7.3202, 7.3198, 7.3206, 7.3203, 7.3201, 7.3208, 7.3215, 7.3222, 7.3218, 7.3225, 7.3232, 7.3238, 7.3234, 7.3221, 7.3209, 7.3206, 7.3212, 7.3219, 7.3216, 7.3222, 7.3218, 7.3225, 7.3227, 7.3225, 7.3232, 7.323, 7.3228, 7.3227, 7.3227, 7.3223, 7.3221, 7.3221, 7.3219, 7.3216, 7.3213, 7.3212, 7.322, 7.3218, 7.3215, 7.3212, 7.3223, 7.3221, 7.3218, 7.3226, 7.3223, 7.3222, 7.3219, 7.3216, 7.3213, 7.3221, 7.3218, 7.3274, 7.3273, 7.328, 7.3276, 7.3276, 7.3273, 7.327, 7.3322, 7.332, 7.3316, 7.3325, 7.3332, 7.333, 7.3329, 7.3326, 7.3325, 7.3322, 7.3329, 7.3328, 7.3325, 7.3322, 7.332, 7.3327, 7.3324, 7.3321, 7.3317, 7.3314, 7.3312, 7.3308, 7.3306, 7.3302, 7.33, 7.3297, 7.3295, 7.3292, 7.3289, 7.3286, 7.3284, 7.3281, 7.3278, 7.3285, 7.3281, 7.3281, 7.3286, 7.3289, 7.3286, 7.3284, 7.3281, 7.3289, 7.3286, 7.3283, 7.3289, 7.3297, 7.3295, 7.3295, 7.3293, 7.329, 7.3297, 7.3293, 7.33, 7.3307, 7.3314, 7.331, 7.3306, 7.3303, 7.3301, 7.331, 7.3306, 7.3315, 7.3323, 7.332, 7.3318, 7.3324, 7.3331, 7.3381, 7.3377, 7.3374, 7.337, 7.3371, 7.3367, 7.3366, 7.3374, 7.3383, 7.3371, 7.3368, 7.3364, 7.3361, 7.3358, 7.3358, 7.3354, 7.3361, 7.3358, 7.3365, 7.3355, 7.3354, 7.3351, 7.3348, 7.3344, 7.334, 7.3337, 7.3343, 7.335, 7.3348, 7.3345, 7.3342, 7.3338, 7.3334, 7.3338, 7.3336, 7.3344, 7.3342, 7.3351, 7.3348, 7.3346, 7.3342, 7.334, 7.3338, 7.3335, 7.3332, 7.3329, 7.3332, 7.3329, 7.3326, 7.3322, 7.3319, 7.3317, 7.3314, 7.3312, 7.3311, 7.3308, 7.3315, 7.3312, 7.3309, 7.3316, 7.3323, 7.333, 7.3327, 7.3325, 7.3322, 7.3339, 7.3347, 7.3343, 7.335, 7.3348, 7.3336, 7.3333, 7.334, 7.3336, 7.3334, 7.3333, 7.3321, 7.3317, 7.3324, 7.3321, 7.331, 7.3316, 7.3314, 7.3312, 7.3311, 7.3308, 7.3315, 7.3315, 7.3312, 7.3319, 7.3322, 7.3319, 7.3317, 7.3316, 7.3323, 7.3322, 7.3318, 7.3316, 7.3313, 7.332, 7.3317, 7.3314, 7.3321, 7.3317, 7.3314, 7.332, 7.3316, 7.3314, 7.3312, 7.331, 7.3317, 7.3314, 7.3302, 7.3299, 7.3295, 7.3302, 7.3301, 7.3309, 7.3306, 7.3296, 7.3293, 7.3289, 7.3285, 7.3275, 7.3271, 7.3278, 7.3275, 7.3271, 7.3267, 7.3264, 7.3262, 7.3258, 7.3255, 7.3253, 7.3252, 7.3249, 7.3247, 7.3245, 7.3243, 7.3251, 7.3259, 7.3268, 7.3265, 7.3261, 7.3258, 7.3257, 7.3253, 7.3252, 7.3252, 7.3248, 7.3255, 7.3252, 7.326, 7.3258, 7.3255, 7.3253, 7.326300000000001, 7.3259, 7.3267, 7.3265, 7.3261, 7.3258, 7.3255, 7.3253, 7.326, 7.3267, 7.3255, 7.3242, 7.3239, 7.3237, 7.3234, 7.3241, 7.3242, 7.3253, 7.3252, 7.325, 7.3258, 7.3254, 7.3252, 7.3261, 7.3259, 7.3258, 7.3255, 7.3252, 7.326, 7.326, 7.327, 7.3279, 7.3277, 7.3285, 7.3291, 7.3297, 7.3293, 7.329, 7.3286, 7.3283, 7.3281, 7.3278, 7.3275, 7.3273, 7.327, 7.3267, 7.3266, 7.3264, 7.326, 7.3267, 7.3264, 7.326, 7.3257, 7.3264, 7.326, 7.3257, 7.3255, 7.3262, 7.326, 7.3277, 7.3276, 7.3273, 7.3271, 7.3267, 7.3264, 7.3265, 7.3272, 7.3294, 7.3292, 7.3289, 7.3287, 7.329700000000001, 7.3296, 7.3295, 7.3302, 7.3302, 7.331, 7.3307, 7.3305, 7.3302, 7.33, 7.3302, 7.3326, 7.3324, 7.3331, 7.3319, 7.3309, 7.3306, 7.3317, 7.3316, 7.3314, 7.3311, 7.3309, 7.3319, 7.3316, 7.3315, 7.3322, 7.332, 7.3317, 7.3325, 7.3314, 7.3311, 7.3311, 7.3308, 7.3305, 7.3302, 7.3301, 7.3298, 7.3295, 7.3303, 7.331, 7.3308, 7.3305, 7.3303, 7.3302, 7.3292, 7.3288, 7.3284, 7.3281, 7.3281, 7.3269, 7.3266, 7.3264, 7.3274, 7.3274, 7.3274, 7.3281, 7.3287, 7.3293, 7.3291, 7.3311, 7.3318, 7.3315, 7.3313, 7.3315, 7.3312, 7.3309, 7.3306, 7.3303, 7.3311, 7.3318, 7.3335, 7.3333, 7.3321, 7.331, 7.3317, 7.3314, 7.3313, 7.332, 7.3327, 7.3324, 7.3332, 7.3331, 7.333, 7.3338, 7.3338, 7.3335, 7.3332, 7.3329, 7.3327, 7.3326, 7.3324, 7.3332, 7.333, 7.3329, 7.3336, 7.3333, 7.333, 7.3327, 7.3324, 7.3321, 7.3318, 7.3317, 7.3306, 7.3305, 7.3314, 7.3313, 7.331, 7.3307, 7.3306, 7.3308, 7.3305, 7.3313, 7.332, 7.3317, 7.3314, 7.3314, 7.3321, 7.331, 7.3307, 7.3305, 7.3302, 7.3309, 7.3321, 7.3341, 7.3338, 7.3335, 7.3341, 7.3338, 7.3345, 7.3344, 7.3341, 7.3338, 7.3335, 7.3333, 7.333, 7.3336, 7.3343, 7.335, 7.3347, 7.3345, 7.3343, 7.335, 7.3347, 7.3344, 7.334, 7.3337, 7.3334, 7.333, 7.3327, 7.3324, 7.3321, 7.3319, 7.3325, 7.3323, 7.3319, 7.3316, 7.3322, 7.3329, 7.3325, 7.3322, 7.3321, 7.3319, 7.3316, 7.3315, 7.3322, 7.332, 7.3317, 7.3315, 7.3357, 7.3345, 7.3343, 7.3349, 7.3345, 7.3341, 7.334, 7.3348, 7.3347, 7.3338, 7.3336, 7.3334, 7.3341, 7.3337, 7.3335, 7.3333, 7.333, 7.3327, 7.3324, 7.3312, 7.3309, 7.332, 7.333, 7.3322, 7.3321, 7.332, 7.3318, 7.3316, 7.3312, 7.3318, 7.3315, 7.3315, 7.3313, 7.3312, 7.3311, 7.33, 7.3299, 7.3295, 7.3291, 7.3288, 7.3288, 7.3285, 7.3292, 7.3289, 7.3321, 7.333, 7.3339, 7.3337, 7.3345, 7.3343, 7.3339, 7.3336, 7.3343, 7.334, 7.3347, 7.3346, 7.3342, 7.3341, 7.3341, 7.3338, 7.3336, 7.3338, 7.3335, 7.3332, 7.3347, 7.3346, 7.3343, 7.3341, 7.3347, 7.3371, 7.3369, 7.3367, 7.3367, 7.3364, 7.3374, 7.3371, 7.3369, 7.3366, 7.3363, 7.3361, 7.3359, 7.3357, 7.3354, 7.3352, 7.3359, 7.3366, 7.3363, 7.3359, 7.3357, 7.3363, 7.336, 7.3357, 7.3354, 7.3351, 7.335, 7.3356, 7.3353, 7.3359, 7.3356, 7.3358, 7.337, 7.3358, 7.3355, 7.3361, 7.3359, 7.3356, 7.3353, 7.3361, 7.3368, 7.3374, 7.338, 7.3378, 7.3375, 7.3382, 7.3379, 7.3385, 7.3382, 7.3379, 7.3376, 7.3373, 7.3372, 7.3369, 7.3366, 7.3363, 7.3361, 7.3358, 7.3357, 7.3355, 7.3352, 7.3349, 7.3346, 7.3353, 7.3352, 7.3349, 7.3349, 7.3356, 7.3354, 7.3352, 7.3358, 7.3355, 7.3352, 7.3349, 7.3346, 7.3343, 7.334, 7.3331, 7.3341, 7.3347, 7.3345, 7.3343, 7.3341, 7.334, 7.3339, 7.3346, 7.3335, 7.3342, 7.3369, 7.3366, 7.3363, 7.337, 7.3367, 7.3367, 7.3384, 7.3382, 7.3399, 7.3405, 7.3403, 7.34, 7.341, 7.3418, 7.3425, 7.3422, 7.3428, 7.3425, 7.3431, 7.3428, 7.3418, 7.3416, 7.3405, 7.3405, 7.3402, 7.3412, 7.3409, 7.3407, 7.3395, 7.3393, 7.34, 7.3399, 7.3397, 7.3394, 7.3391, 7.3384, 7.3374, 7.338, 7.3377, 7.3375, 7.3373, 7.337, 7.3367, 7.3364, 7.3364, 7.3363, 7.337, 7.3377, 7.3375, 7.3381, 7.3378, 7.3367, 7.3374, 7.3391, 7.3388, 7.3433, 7.343, 7.3428, 7.3435, 7.3433, 7.3422, 7.3412, 7.3411, 7.3408, 7.3404, 7.3411, 7.3408, 7.3406, 7.3404, 7.3402, 7.3423, 7.342, 7.3417, 7.3416, 7.3413, 7.3418, 7.3425, 7.3422, 7.342, 7.3419, 7.3425, 7.343, 7.3426, 7.3423, 7.3421, 7.3446, 7.3452, 7.3449, 7.3447, 7.3446, 7.3443, 7.345, 7.3448, 7.3454, 7.3452, 7.3449, 7.3456, 7.3445, 7.3442, 7.3439, 7.3446, 7.3443, 7.3441, 7.3439, 7.3437, 7.3435, 7.3433, 7.343, 7.3427, 7.3434, 7.3431, 7.3437, 7.3434, 7.3431, 7.3429, 7.3427, 7.3433, 7.3432, 7.343, 7.3427, 7.3424, 7.3431, 7.3439, 7.3454, 7.3451, 7.345, 7.3447, 7.3444, 7.3442, 7.3439, 7.3436, 7.3434, 7.3431, 7.3429, 7.3427, 7.3424, 7.3421, 7.3419, 7.3418, 7.3424, 7.343, 7.3436, 7.3441, 7.3457, 7.3456, 7.3456, 7.3453, 7.3451, 7.3457, 7.3454, 7.3452, 7.345, 7.3456, 7.3455, 7.3461, 7.3468, 7.3466, 7.3463, 7.346, 7.3449, 7.3455, 7.3454, 7.346, 7.3457, 7.3453, 7.345, 7.3448, 7.3446, 7.3444, 7.3441, 7.3447, 7.3444, 7.3451, 7.3459, 7.3456, 7.3454, 7.3461, 7.3458, 7.3455, 7.3452, 7.3449, 7.3439, 7.3447, 7.3444, 7.3441, 7.3447, 7.3444, 7.3451, 7.3448, 7.3437, 7.3435, 7.3432, 7.3429, 7.3427, 7.3425, 7.3422, 7.342, 7.342, 7.3418, 7.3417, 7.3416, 7.3414, 7.3411, 7.3409, 7.3406, 7.3403, 7.3403, 7.34, 7.3406, 7.3404, 7.3403, 7.3402, 7.3409, 7.3407, 7.3404, 7.3401, 7.3408, 7.3414, 7.3412, 7.341, 7.3408, 7.3405, 7.3402, 7.3409, 7.3408, 7.3409, 7.3406, 7.3395, 7.3393, 7.3391, 7.3389, 7.3386, 7.3383, 7.3389, 7.3387, 7.3394, 7.3391, 7.3389, 7.3387, 7.3385, 7.3382, 7.338, 7.3386, 7.3385, 7.3383, 7.3389, 7.3386, 7.3384, 7.3381, 7.3387, 7.3377, 7.3366, 7.3363, 7.3363, 7.336, 7.3357, 7.3347, 7.3336, 7.3325, 7.3315, 7.3321, 7.3319, 7.3316, 7.3314, 7.3305, 7.3305, 7.3302, 7.3308, 7.3306, 7.3303, 7.3317, 7.3357, 7.3354, 7.3352, 7.335, 7.3348, 7.3345, 7.3344, 7.3333, 7.3332, 7.3329, 7.3326, 7.3323, 7.3329, 7.3326, 7.3333, 7.334, 7.3342, 7.3339, 7.3338, 7.3337, 7.3345, 7.3342, 7.3348, 7.3345, 7.3353, 7.3379, 7.3376, 7.3382, 7.3389, 7.3395, 7.3393, 7.3385, 7.3393, 7.34, 7.3398, 7.3397, 7.3403, 7.3401, 7.3398, 7.3406, 7.3403, 7.341, 7.3407, 7.3407, 7.3404, 7.3401, 7.3398, 7.3396, 7.3393, 7.339, 7.3388, 7.3386, 7.3383, 7.3381, 7.3378, 7.3375, 7.3381, 7.3379, 7.3378, 7.338, 7.3379, 7.3379, 7.3396, 7.3393, 7.3391, 7.3388, 7.3385, 7.3382, 7.3382, 7.3388, 7.3386, 7.3383, 7.338, 7.3378, 7.3384, 7.3391, 7.3391, 7.3389, 7.3387, 7.3385, 7.3383, 7.339, 7.3397, 7.3394, 7.3392, 7.3389, 7.3386, 7.3383, 7.3381, 7.3378, 7.3384, 7.3382, 7.3379, 7.3378, 7.3385, 7.3384, 7.3381, 7.3378, 7.3375, 7.3374, 7.338, 7.3377, 7.3375, 7.3379, 7.3404, 7.3411, 7.3408, 7.3405, 7.3402, 7.3401, 7.3407, 7.3404, 7.3403, 7.34, 7.3398, 7.3397, 7.3395, 7.3393, 7.3391, 7.3389, 7.3415, 7.3412, 7.341, 7.3416, 7.3413, 7.3411, 7.3409, 7.3406, 7.3403, 7.3401, 7.3398, 7.3404, 7.3409, 7.3424, 7.3431, 7.3438, 7.3449, 7.3446, 7.3435, 7.3432, 7.3432, 7.3431, 7.3431, 7.3438, 7.3452, 7.3457, 7.3456, 7.3453, 7.345, 7.3469, 7.3491, 7.3489, 7.3494, 7.3491, 7.3497, 7.3495, 7.3492, 7.3489, 7.3495, 7.3484, 7.349, 7.3489, 7.3487, 7.3486, 7.3496, 7.3493, 7.3499, 7.3505, 7.3515, 7.3512, 7.3509, 7.3506, 7.3504, 7.3503, 7.3501, 7.3491, 7.349, 7.3487, 7.3486, 7.3483, 7.348, 7.3478, 7.3477, 7.3476, 7.3473, 7.348, 7.3477, 7.3476, 7.3474, 7.3472, 7.3469, 7.3482, 7.3479, 7.3476, 7.349, 7.3487, 7.3493, 7.3491, 7.3489, 7.3487, 7.3489, 7.3487, 7.3485, 7.3494, 7.3491, 7.3491, 7.3489, 7.3487, 7.3485, 7.3484, 7.3481, 7.3479, 7.3476, 7.3474, 7.3472, 7.3469, 7.3466, 7.3464, 7.3461, 7.3467, 7.3465, 7.3463, 7.3461, 7.3458, 7.3456, 7.3453, 7.345, 7.3449, 7.3456, 7.3453, 7.3459, 7.3457, 7.3459, 7.3456, 7.3454, 7.3452, 7.345, 7.3448, 7.3471, 7.3477, 7.3474, 7.3471, 7.3472, 7.3464, 7.3456, 7.3454, 7.3444, 7.3455, 7.347, 7.3467, 7.3481, 7.3478, 7.3476, 7.3482, 7.3483, 7.3482, 7.348, 7.3477, 7.3475, 7.3472, 7.3469, 7.3468, 7.3467, 7.3465, 7.3463, 7.3469, 7.3466, 7.3465, 7.3471, 7.347, 7.3476, 7.3473, 7.3479, 7.3476, 7.3477, 7.3475, 7.3472, 7.3478, 7.3484, 7.349, 7.3487, 7.3484, 7.3481, 7.3478, 7.3477, 7.3476, 7.3482, 7.348, 7.3478, 7.3476, 7.3473, 7.348, 7.3478, 7.3476, 7.3473, 7.3479, 7.3476, 7.3473, 7.3479, 7.3478, 7.3478, 7.3476, 7.3483, 7.3481, 7.3479, 7.3477, 7.3475, 7.3473, 7.347, 7.3469, 7.3466, 7.3463, 7.3462, 7.346, 7.3457, 7.3463, 7.346, 7.3457, 7.3455, 7.3452, 7.3449, 7.3446, 7.3451, 7.3448, 7.3445, 7.3444, 7.3441, 7.3446, 7.3444, 7.3443, 7.344, 7.3438, 7.3443, 7.3441, 7.3438, 7.3435, 7.3432, 7.3437, 7.3434, 7.3431, 7.3431, 7.3436, 7.3434, 7.344, 7.3453, 7.3451, 7.3449, 7.3447, 7.3445, 7.3454, 7.3451, 7.347, 7.3475, 7.3472, 7.347, 7.3469, 7.3467, 7.3473, 7.3479, 7.3494, 7.3493, 7.3491, 7.3488, 7.3498, 7.3495, 7.3492, 7.3489, 7.3504, 7.3502, 7.35, 7.3497, 7.3502, 7.3499, 7.3497, 7.3495, 7.3501, 7.3493, 7.3491, 7.3489, 7.3487, 7.3486, 7.3484, 7.3482, 7.3479, 7.3477, 7.3474, 7.3473, 7.3478, 7.3476, 7.3474, 7.3471, 7.347, 7.3481, 7.3487, 7.3485, 7.3487, 7.3485, 7.3482, 7.3479, 7.3476, 7.3482, 7.3488, 7.3493, 7.3499, 7.3497, 7.3494, 7.3492, 7.3498, 7.35, 7.3503, 7.3501, 7.3501, 7.3495, 7.35, 7.3497, 7.3495, 7.3509, 7.351, 7.3507, 7.3513, 7.3519, 7.3516, 7.3513, 7.351, 7.3507, 7.3513, 7.351, 7.3507, 7.3505, 7.3511, 7.3508, 7.3513, 7.3518, 7.3516, 7.3515, 7.3519, 7.3518, 7.3515, 7.3513, 7.3519, 7.3541, 7.3555, 7.3552, 7.3551, 7.3549, 7.3554, 7.3554, 7.3553, 7.3543, 7.3555, 7.3552, 7.355, 7.3556, 7.3555, 7.3552, 7.3558, 7.3555, 7.3561, 7.356, 7.3566, 7.3571, 7.3568, 7.3573, 7.357, 7.3567, 7.3564, 7.3581, 7.3614, 7.3611, 7.3608, 7.3608, 7.3606, 7.3603, 7.3611, 7.3609, 7.3606, 7.3604, 7.3601, 7.3599, 7.3604, 7.3618, 7.3617, 7.3639, 7.3637, 7.3627, 7.3624, 7.3621, 7.362, 7.3627, 7.3626, 7.3625, 7.3623, 7.3621, 7.3619, 7.3617, 7.3614, 7.3612, 7.361, 7.3609, 7.3606, 7.3604, 7.3603, 7.36, 7.3606, 7.3598, 7.3621, 7.362, 7.3617, 7.3619, 7.3618, 7.3632, 7.3631, 7.3637, 7.364, 7.3656, 7.3653, 7.3652, 7.3649, 7.3655, 7.3664, 7.3655, 7.3652, 7.3649, 7.3647, 7.3645, 7.3642, 7.3639, 7.3637, 7.3635, 7.3633, 7.363, 7.3628, 7.3626, 7.3623, 7.3615, 7.3617, 7.362, 7.3619, 7.3616, 7.3613, 7.3611, 7.3608, 7.3609, 7.3608, 7.3605, 7.3611, 7.3608, 7.3606, 7.3603, 7.3609, 7.3606, 7.3611, 7.3608, 7.361, 7.3607, 7.3605, 7.3602, 7.3599, 7.3603, 7.3608, 7.3616, 7.3613, 7.361, 7.3608, 7.3613, 7.3621, 7.3618, 7.3615, 7.3614, 7.3612, 7.3611, 7.361, 7.3607, 7.3614, 7.3611, 7.3609, 7.3606, 7.3604, 7.3625, 7.3623, 7.3633, 7.3648, 7.3646, 7.3643, 7.3642, 7.364, 7.3639, 7.3637, 7.3636, 7.3633, 7.364, 7.3639, 7.3637, 7.3635, 7.3633, 7.3632, 7.3629, 7.3627, 7.3634, 7.3646, 7.3643, 7.3643, 7.3641, 7.3639, 7.3645, 7.3644, 7.3642, 7.364, 7.3655, 7.3652, 7.3658, 7.3657, 7.3656, 7.3653, 7.3652, 7.3649, 7.3647, 7.3645, 7.366, 7.3658, 7.3655, 7.3661, 7.3659, 7.3656, 7.3662, 7.3661, 7.3675, 7.3689, 7.3686, 7.3683, 7.368, 7.3679, 7.3679, 7.3677, 7.3674, 7.3671, 7.3677, 7.3674, 7.3673, 7.367, 7.3667, 7.3666, 7.3671, 7.3669, 7.3668, 7.3667, 7.3667, 7.3672, 7.3669, 7.3667, 7.3665, 7.3662, 7.366, 7.366, 7.3666, 7.3663, 7.366, 7.3658, 7.3655, 7.3652, 7.365, 7.3649, 7.3647, 7.3653, 7.3651, 7.3648, 7.3653, 7.3651, 7.3649, 7.3647, 7.3652, 7.3659, 7.3656, 7.3654, 7.3651, 7.3649, 7.3648, 7.3648, 7.3653, 7.365, 7.3656, 7.3661, 7.3667, 7.3666, 7.3671, 7.3669, 7.3666, 7.3665, 7.3663, 7.3664, 7.3661, 7.3667, 7.3666, 7.3664, 7.3663, 7.3662, 7.3661, 7.3658, 7.3657, 7.3654, 7.3652, 7.365, 7.3647, 7.3644, 7.3643, 7.3643, 7.364, 7.3639, 7.3645, 7.365, 7.365, 7.3647, 7.3645, 7.3643, 7.364, 7.3645, 7.3643, 7.3641, 7.3646, 7.3643, 7.364, 7.3637, 7.3634, 7.3631, 7.3629, 7.3628, 7.3633, 7.3631, 7.3629, 7.3628, 7.3633, 7.3632, 7.3632, 7.3637, 7.3634, 7.3631, 7.3629, 7.3628, 7.3626, 7.3631, 7.363, 7.3635, 7.3632, 7.3637, 7.3637, 7.3642, 7.3639, 7.3636, 7.3636, 7.3641, 7.3638, 7.3635, 7.364, 7.3639, 7.3644, 7.3641, 7.3671, 7.3669, 7.3667, 7.3665, 7.3666, 7.3667, 7.3667, 7.3664, 7.3663, 7.3669, 7.3667, 7.3665, 7.3662, 7.3675, 7.3714, 7.3713, 7.3712, 7.371, 7.3708, 7.3708, 7.3706, 7.3704, 7.3702, 7.37, 7.3697, 7.3696, 7.3693, 7.3691, 7.3688, 7.3686, 7.3684, 7.3682, 7.3682, 7.3687, 7.3685, 7.3691, 7.3688, 7.3687, 7.3694, 7.3691, 7.369, 7.3687, 7.3684, 7.3682, 7.3681, 7.368, 7.3677, 7.3675, 7.3672, 7.3669, 7.3666, 7.3665, 7.3666, 7.3671, 7.367, 7.3667, 7.3667, 7.3665, 7.3663, 7.3662, 7.366, 7.3658, 7.3673, 7.367, 7.3687, 7.3684, 7.3682, 7.3683, 7.368, 7.3678, 7.3679, 7.3677, 7.3676, 7.3675, 7.3672, 7.3669, 7.3668, 7.3665, 7.3662, 7.3668, 7.3665, 7.3662, 7.3659, 7.3664, 7.3661, 7.3658, 7.3657, 7.3654, 7.3652, 7.3651, 7.3648, 7.3647, 7.3644, 7.3641, 7.364, 7.364, 7.3638, 7.3637, 7.3638, 7.3636, 7.367, 7.3668, 7.3673, 7.3664, 7.3655, 7.366], '192.168.122.115': [33.2656, 19.9446, 17.0888, 14.3363, 12.632, 12.5523, 11.5953, 11.5365, 11.1013, 11.1184, 10.7182, 10.3221, 10.0475, 9.7454, 9.4585, 9.595, 9.3885, 9.1787, 9.2818, 9.3657, 9.1883, 9.0224, 8.9085, 8.8669, 8.8243, 8.7512, 8.6385, 8.5674, 8.659, 8.5569, 8.6324, 8.5428, 8.6136, 8.5299, 8.9657, 9.1357, 9.044, 8.9813, 8.9008, 8.8147, 8.8255, 8.8148, 8.7361, 8.6596, 8.7074, 8.7525, 8.6848, 8.6161, 8.5704, 8.7143, 8.6589, 8.5964, 8.7847, 8.7327, 8.6813, 8.72, 8.7574, 8.7177, 8.6632, 8.7012, 8.7406, 8.6888, 8.6466, 8.5977, 8.5554, 8.5195, 8.4751, 8.4388, 8.3933, 8.3525, 8.3201, 8.2902, 8.266, 8.2289, 8.2032, 8.1718, 8.1423, 8.1766, 8.1532, 8.2427, 8.2146, 8.1945, 8.229, 8.2068, 8.1782, 8.1492, 8.1288, 8.102, 8.079, 8.0541, 8.0265, 8.0001, 8.0404, 8.0219, 7.9994, 7.9724, 7.9513, 7.9804, 7.954, 7.9291, 7.9166, 7.8912, 7.8749, 7.8519, 7.8306, 7.8097, 7.7869, 7.7755, 7.76, 7.8365, 7.8672, 7.9024, 7.8504, 7.8345, 7.8801, 7.9072, 7.8883, 7.9162, 7.9005, 7.9293, 7.9589, 7.9696, 8.1006, 8.0863, 8.0635, 8.0449, 8.0678, 8.053, 8.0413, 8.0242, 8.0113, 7.9945, 7.9778, 8.0196, 8.0013, 7.9835, 7.9657, 7.9882, 7.9755, 7.9571, 7.9809, 7.9643, 7.9575, 7.9399, 7.9216, 7.9043, 7.8883, 7.911, 7.895, 7.8835, 7.8716, 7.8568, 7.8436, 7.8379, 7.8296, 7.8136, 7.7988, 7.8574, 7.844, 7.8303, 7.8168, 7.8114, 7.7988, 7.7866, 7.7728, 7.7635, 7.7834, 7.7865, 7.813, 7.7975, 7.7866, 7.7742, 7.7605, 7.8251, 7.813, 7.8295, 7.8168, 7.8175, 7.8053, 7.7964, 7.7847, 7.7709, 7.7592, 7.7517, 7.739, 7.7591, 7.748, 7.7356, 7.7573, 7.7532, 7.7427, 7.761, 7.7513, 7.7394, 7.7282, 7.7182, 7.7103, 7.7008, 7.6916, 7.6826, 7.6724, 7.6629, 7.6756, 7.6635, 7.6798, 7.6682, 7.6571, 7.6521, 7.6428, 7.6368, 7.6307, 7.6312, 7.6264, 7.6185, 7.6408, 7.6567, 7.672, 7.6613, 7.658, 7.6499, 7.6469, 7.6382, 7.632, 7.6254, 7.6408, 7.6314, 7.6271, 7.646, 7.6426, 7.6341, 7.6501, 7.6418, 7.6577, 7.6284, 7.6232, 7.6194, 7.6311, 7.6228, 7.6197, 7.613, 7.6269, 7.6424, 7.6567, 7.653, 7.6464, 7.6402, 7.6314, 7.6222, 7.6171, 7.6083, 7.6018, 7.5933, 7.5849, 7.5789, 7.575, 7.5665, 7.5603, 7.5527, 7.5655, 7.5405, 7.5338, 7.5282, 7.5426, 7.5352, 7.5307, 7.5256, 7.5409, 7.5322, 7.5251, 7.5217, 7.5192, 7.5167, 7.5107, 7.505, 7.4985, 7.4939, 7.487, 7.48, 7.4771, 7.4722, 7.4659, 7.4588, 7.4569, 7.4681, 7.466, 7.4781, 7.4903, 7.4849, 7.4797, 7.4781, 7.4722, 7.4656, 7.4611, 7.4734, 7.4686, 7.4617, 7.4564, 7.4493, 7.4422, 7.4387, 7.4317, 7.4435, 7.4406, 7.4366, 7.4303, 7.4785, 7.4963, 7.4925, 7.488, 7.5143, 7.5129, 7.5299, 7.5425, 7.5385, 7.5488, 7.5425, 7.5357, 7.5308, 7.5237, 7.5199, 7.5158, 7.5092, 7.5213, 7.5151, 7.5097, 7.5044, 7.4986, 7.496, 7.4922, 7.4877, 7.4831, 7.4776, 7.4726, 7.467, 7.4618, 7.4554, 7.4505, 7.4486, 7.4422, 7.4386, 7.4336, 7.4299, 7.4249, 7.4226, 7.423, 7.4176, 7.4142, 7.4091, 7.4044, 7.414, 7.4241, 7.4206, 7.4158, 7.411, 7.4055, 7.4023, 7.3964, 7.391, 7.3862, 7.3826, 7.3785, 7.3742, 7.3701, 7.3746, 7.403, 7.3981, 7.3959, 7.392, 7.4056, 7.403, 7.4238, 7.4197, 7.4154, 7.4114, 7.4101, 7.4068, 7.4022, 7.4007, 7.397, 7.3922, 7.4008, 7.4089, 7.4182, 7.4272, 7.4217, 7.4162, 7.4132, 7.4129, 7.4077, 7.4024, 7.4109, 7.4095, 7.4175, 7.4152, 7.4101, 7.4048, 7.427, 7.4356, 7.4452, 7.4407, 7.4404, 7.4354, 7.4304, 7.4256, 7.4261, 7.4272, 7.4554, 7.4635, 7.4593, 7.4543, 7.4507, 7.4468, 7.4417, 7.4545, 7.4508, 7.5207, 7.517, 7.5119, 7.5067, 7.5022, 7.4982, 7.5062, 7.5044, 7.5003, 7.4963, 7.4914, 7.4883, 7.4982, 7.4966, 7.5057, 7.5015, 7.5104, 7.5063, 7.5021, 7.5028, 7.4999, 7.5516, 7.5609, 7.5597, 7.5555, 7.5528, 7.5483, 7.5441, 7.5441, 7.5528, 7.5629, 7.5593, 7.5577, 7.5662, 7.5749, 7.571, 7.5673, 7.5871, 7.5957, 7.5913, 7.5874, 7.5834, 7.5812, 7.5771, 7.5859, 7.5839, 7.5995, 7.5966, 7.5922, 7.5899, 7.5859, 7.5838, 7.5796, 7.5771, 7.5844, 7.5921, 7.5878, 7.5839, 7.581, 7.5774, 7.5867, 7.5832, 7.5794, 7.5769, 7.5727, 7.5719, 7.5675, 7.5655, 7.5636, 7.5713, 7.5684, 7.564, 7.5619, 7.5622, 7.5586, 7.5556, 7.5523, 7.5481, 7.5472, 7.545, 7.552, 7.5476, 7.5561, 7.5522, 7.5478, 7.5453, 7.5464, 7.5445, 7.5406, 7.5387, 7.5466, 7.554, 7.5503, 7.5466, 7.5432, 7.5399, 7.5371, 7.5329, 7.5291, 7.5284, 7.5247, 7.5207, 7.5165, 7.5232, 7.5198, 7.5187, 7.5154, 7.5119, 7.5095, 7.5058, 7.5021, 7.509, 7.5071, 7.5051, 7.5019, 7.4997, 7.4965, 7.4945, 7.4912, 7.4883, 7.4859, 7.4829, 7.4818, 7.4981, 7.4952, 7.5031, 7.5096, 7.5066, 7.5147, 7.5185, 7.5251, 7.5221, 7.5187, 7.5267, 7.5237, 7.5212, 7.5183, 7.5155, 7.5114, 7.5083, 7.5056, 7.5113, 7.508, 7.5051, 7.5032, 7.5008, 7.4982, 7.4946, 7.4937, 7.4998, 7.497, 7.4935, 7.4901, 7.4865, 7.483, 7.4834, 7.4909, 7.4878, 7.4849, 7.4814, 7.4886, 7.4856, 7.4826, 7.4886, 7.4951, 7.492, 7.4886, 7.486, 7.4827, 7.4889, 7.4949, 7.4916, 7.4902, 7.4871, 7.4931, 7.4995, 7.4966, 7.4931, 7.4897, 7.4873, 7.4929, 7.4893, 7.4858, 7.4915, 7.488, 7.494, 7.5, 7.4965, 7.4928, 7.4917, 7.4885, 7.4852, 7.4815, 7.4784, 7.4747, 7.4711, 7.4682, 7.4655, 7.4629, 7.4609, 7.4664, 7.4638, 7.4602, 7.4569, 7.4537, 7.4514, 7.45, 7.4496, 7.4476, 7.4449, 7.4416, 7.4393, 7.4358, 7.4338, 7.439, 7.4359, 7.4331, 7.4384, 7.4353, 7.4322, 7.4296, 7.4282, 7.4336, 7.4387, 7.4367, 7.4366, 7.4343, 7.4394, 7.4361, 7.4635, 7.4609, 7.4575, 7.4628, 7.4599, 7.4571, 7.4545, 7.4527, 7.4582, 7.4556, 7.461, 7.4583, 7.465, 7.4639, 7.4612, 7.4598, 7.4569, 7.4543, 7.4513, 7.4484, 7.4461, 7.4431, 7.4406, 7.4396, 7.4377, 7.4347, 7.4334, 7.4303, 7.4279, 7.418, 7.4176, 7.417, 7.4145, 7.4136, 7.4116, 7.4098, 7.4149, 7.4118, 7.4096, 7.4078, 7.4049, 7.4029, 7.4007, 7.4068, 7.4039, 7.4019, 7.3994, 7.3964, 7.401, 7.3992, 7.3973, 7.3964, 7.3947, 7.3934, 7.3907, 7.3882, 7.3868, 7.3904, 7.3901, 7.3885, 7.3878, 7.3923, 7.3908, 7.3891, 7.386, 7.3848, 7.3818, 7.38, 7.3797, 7.3704, 7.3684, 7.3663, 7.3652, 7.3705, 7.3686, 7.3671, 7.3655, 7.3632, 7.3607, 7.3602, 7.3732, 7.371, 7.3687, 7.3664, 7.3726, 7.3794, 7.3769, 7.3744, 7.373, 7.3828, 7.3805, 7.3789, 7.3765, 7.375, 7.3807, 7.3803, 7.3786, 7.3759, 7.3749, 7.3725, 7.371, 7.3688, 7.3737, 7.372, 7.3702, 7.3674, 7.3657, 7.3636, 7.3624, 7.3604, 7.3593, 7.3614, 7.36, 7.3646, 7.3631, 7.3605, 7.3654, 7.3626, 7.36, 7.3579, 7.3567, 7.3546, 7.3592, 7.3583, 7.3564, 7.3541, 7.352, 7.3496, 7.3485, 7.346, 7.3448, 7.3444, 7.3433, 7.3424, 7.34, 7.3377, 7.3352, 7.3335, 7.3315, 7.3307, 7.33, 7.3282, 7.3362, 7.3349, 7.3394, 7.3376, 7.335, 7.3336, 7.3387, 7.3435, 7.3415, 7.3398, 7.3373, 7.3417, 7.3529, 7.3573, 7.3822, 7.38, 7.3775, 7.3755, 7.3734, 7.3709, 7.369, 7.3743, 7.3722, 7.3765, 7.3818, 7.3798, 7.3773, 7.3758, 7.3734, 7.3713, 7.3692, 7.3673, 7.3669, 7.3718, 7.3715, 7.3757, 7.376, 7.3811, 7.3806, 7.3852, 7.385, 7.3899, 7.389, 7.3884, 7.3932, 7.3909, 7.3887, 7.3875, 7.3856, 7.3843, 7.3828, 7.3815, 7.3798, 7.3775, 7.3762, 7.3746, 7.3728, 7.3728, 7.3719, 7.3699, 7.3683, 7.366, 7.3652, 7.37, 7.3752, 7.3751, 7.3739, 7.3731, 7.3712, 7.369, 7.3673, 7.366, 7.3641, 7.363, 7.3677, 7.3722, 7.3702, 7.3683, 7.3663, 7.3643, 7.3634, 7.3611, 7.3596, 7.3814, 7.3791, 7.3767, 7.3754, 7.374, 7.3717, 7.3703, 7.3991, 7.3978, 7.3959, 7.3936, 7.3974, 7.3955, 7.3936, 7.392, 7.3899, 7.3876, 7.3914, 7.3892, 7.3869, 7.3907, 7.3886, 7.3864, 7.384, 7.3817, 7.3804, 7.4051, 7.4037, 7.4021, 7.3998, 7.3987, 7.3964, 7.3942, 7.3979, 7.3958, 7.3948, 7.3932, 7.3915, 7.3954, 7.3932, 7.3913, 7.3901, 7.3889, 7.3868, 7.3847, 7.3832, 7.3835, 7.3825, 7.3814, 7.3792, 7.3776, 7.3763, 7.3757, 7.3797, 7.3776, 7.3811, 7.3845, 7.3822, 7.381, 7.3814, 7.3806, 7.3789, 7.3778, 7.3759, 7.3747, 7.3734, 7.3723, 7.3702, 7.3689, 7.381, 7.3797, 7.3781, 7.3791, 7.3775, 7.3766, 7.3749, 7.3791, 7.3801, 7.3791, 7.3776, 7.3815, 7.3795, 7.3829, 7.3869, 7.3905, 7.3941, 7.392, 7.391, 7.3896, 7.3879, 7.3862, 7.3847, 7.3884, 7.3876, 7.3867, 7.3905, 7.394, 7.3927, 7.3917, 7.39, 7.3896, 7.388, 7.3865, 7.3848, 7.3889, 7.3867, 7.3849, 7.383, 7.3816, 7.3811, 7.3795, 7.3779, 7.3776, 7.3755, 7.3759, 7.3802, 7.3782, 7.3765, 7.3752, 7.3794, 7.3788, 7.3774, 7.3764, 7.3748, 7.3734, 7.3713, 7.3695, 7.3687, 7.3671, 7.366, 7.3639, 7.3622, 7.3602, 7.364, 7.3628, 7.3612, 7.3594, 7.3579, 7.3566, 7.3545, 7.3525, 7.3559, 7.3542, 7.3522, 7.3605, 7.3592, 7.3626, 7.3609, 7.3593, 7.3577, 7.3574, 7.3565, 7.356, 7.3592, 7.363, 7.363, 7.361, 7.3589, 7.3569, 7.355, 7.3585, 7.357, 7.3606, 7.3648, 7.3627, 7.3622, 7.3607, 7.3709, 7.369, 7.3678, 7.372, 7.3706, 7.3691, 7.3672, 7.3662, 7.3695, 7.3687, 7.3672, 7.3658, 7.3648, 7.364, 7.3623, 7.3605, 7.3586, 7.3566, 7.3548, 7.3531, 7.3525, 7.3561, 7.3546, 7.3532, 7.354, 7.3602, 7.3595, 7.3629, 7.3659, 7.3693, 7.3676, 7.3658, 7.3657, 7.3638, 7.367, 7.3655, 7.3641, 7.3642, 7.3628, 7.3613, 7.3598, 7.3582, 7.357, 7.3555, 7.3549, 7.3583, 7.3619, 7.3603, 7.3589, 7.3577, 7.3568, 7.3606, 7.3594, 7.3687, 7.3671, 7.3706, 7.3754, 7.3817, 7.3822, 7.3858, 7.3851, 7.3832, 7.3866, 7.385, 7.3833, 7.3816, 7.3815, 7.38, 7.3781, 7.3768, 7.3756, 7.375, 7.3743, 7.3749, 7.3783, 7.3815, 7.3801, 7.3783, 7.3769, 7.399, 7.3979, 7.3973, 7.3962, 7.3994, 7.4027, 7.4011, 7.3976, 7.3967, 7.3952, 7.3934, 7.3916, 7.396, 7.3944, 7.3926, 7.3956, 7.3937, 7.3926, 7.3915, 7.391, 7.3906, 7.3892, 7.3884, 7.3866, 7.3937, 7.3971, 7.3982, 7.3972, 7.3969, 7.4005, 7.4051, 7.4036, 7.412, 7.4108, 7.4097, 7.4227, 7.4209, 7.4192, 7.4178, 7.4164, 7.4108, 7.4142, 7.4133, 7.412, 7.4108, 7.4096, 7.409, 7.4081, 7.4109, 7.4098, 7.4081, 7.4109, 7.4146, 7.4128, 7.4123, 7.4115, 7.41, 7.4092, 7.408, 7.4066, 7.4051, 7.4095, 7.4077, 7.4107, 7.4097, 7.4129, 7.4112, 7.41, 7.4128, 7.4117, 7.4103, 7.4088, 7.4117, 7.411, 7.41, 7.4139, 7.4171, 7.4156, 7.415, 7.4178, 7.421, 7.4196, 7.4189, 7.4172, 7.4165, 7.4154, 7.4137, 7.4123, 7.4109, 7.4201, 7.4188, 7.4173, 7.416, 7.4144, 7.4136, 7.4129, 7.4113, 7.4143, 7.4127, 7.4112, 7.4094, 7.4077, 7.4067, 7.4052, 7.4057, 7.4053, 7.4043, 7.4033, 7.4017, 7.4044, 7.4078, 7.4068, 7.4101, 7.4086, 7.4077, 7.4068, 7.4059, 7.4042, 7.4038, 7.4143, 7.4157, 7.4166, 7.4156, 7.4141, 7.4174, 7.4161, 7.4147, 7.4177, 7.4163, 7.4154, 7.414, 7.4131, 7.4124, 7.4156, 7.4139, 7.4128, 7.4162, 7.4111, 7.4098, 7.4091, 7.4079, 7.4065, 7.4052, 7.4039, 7.4032, 7.4019, 7.4014, 7.4005, 7.3994, 7.3992, 7.3979, 7.4005, 7.3999, 7.3989, 7.3991, 7.3983, 7.3973, 7.3958, 7.3945, 7.3939, 7.3948, 7.3936, 7.3884, 7.3929, 7.3915, 7.3906, 7.3906, 7.3902, 7.3886, 7.3873, 7.386, 7.3851, 7.384, 7.3835, 7.3863, 7.385, 7.3838, 7.3823, 7.3809, 7.38, 7.3786, 7.3774, 7.3763, 7.3748, 7.3774, 7.3759, 7.3747, 7.3783, 7.3812, 7.3798, 7.3787, 7.3777, 7.3766, 7.3751, 7.3777, 7.3803, 7.3829, 7.386, 7.3886, 7.3871, 7.3873, 7.3903, 7.3889, 7.3875, 7.3872, 7.3909, 7.3911, 7.3898, 7.3922, 7.3969, 7.4, 7.399, 7.4004, 7.4004, 7.403, 7.4109, 7.4101, 7.4086, 7.4091, 7.4075, 7.4072, 7.4098, 7.4083, 7.407, 7.4056, 7.4046, 7.4037, 7.4033, 7.4018, 7.4007, 7.4005, 7.3996, 7.4022, 7.4055, 7.4044, 7.4035, 7.4062, 7.4055, 7.4049, 7.4034, 7.4028, 7.4015, 7.4042, 7.4029, 7.4015, 7.4006, 7.3994, 7.3996, 7.3984, 7.3982, 7.3975, 7.3968, 7.3957, 7.3956, 7.3941, 7.3925, 7.3912, 7.39, 7.3894, 7.3881, 7.3909, 7.3894, 7.3886, 7.3909, 7.3935, 7.3929, 7.3916, 7.3907, 7.3893, 7.3881, 7.387, 7.3901, 7.389, 7.3881, 7.387, 7.3889, 7.3878, 7.3907, 7.3936, 7.3947, 7.4015, 7.4005, 7.3993, 7.4024, 7.4017, 7.4041, 7.4035, 7.402, 7.4009, 7.3995, 7.3984, 7.3975, 7.3966, 7.3961, 7.3988, 7.3976, 7.3963, 7.3956, 7.3946, 7.394, 7.3925, 7.3914, 7.3899, 7.3886, 7.3882, 7.387, 7.3857, 7.3845, 7.3833, 7.383, 7.3821, 7.381, 7.386, 7.3903, 7.3929, 7.3918, 7.3911, 7.3899, 7.3893, 7.3885, 7.3883, 7.3876, 7.3867, 7.3855, 7.3841, 7.3831, 7.3822, 7.3808, 7.3796, 7.3824, 7.3812, 7.3802, 7.379, 7.378, 7.3787, 7.3778, 7.3777, 7.3763, 7.3756, 7.3779, 7.3765, 7.3763, 7.3755, 7.3746, 7.3739, 7.3763, 7.3752, 7.374, 7.3727, 7.3719, 7.3706, 7.3693, 7.3684, 7.367, 7.366, 7.3646, 7.3669, 7.3658, 7.3682, 7.3668, 7.3693, 7.3683, 7.3676, 7.364, 7.3628, 7.3616, 7.3604, 7.3595, 7.3647, 7.3637, 7.3659, 7.3649, 7.3639, 7.3629, 7.3615, 7.3643, 7.367, 7.3664, 7.365, 7.3646, 7.3673, 7.3663, 7.3693, 7.3682, 7.3674, 7.3665, 7.3729, 7.3719, 7.3748, 7.3771, 7.3765, 7.3757, 7.3787, 7.3779, 7.3778, 7.3769, 7.3758, 7.3756, 7.3786, 7.3777, 7.3769, 7.3761, 7.3785, 7.3773, 7.3763, 7.3788, 7.3775, 7.3797, 7.3788, 7.3775, 7.377, 7.3796, 7.3817, 7.3817, 7.3806, 7.3829, 7.3818, 7.3807, 7.3803, 7.3796, 7.3784, 7.3777, 7.3772, 7.376, 7.3751, 7.3773, 7.376, 7.3748, 7.377, 7.3795, 7.3784, 7.3774, 7.3764, 7.3754, 7.3742, 7.3761, 7.3747, 7.3745, 7.3768, 7.3766, 7.3754, 7.375, 7.3739, 7.3752, 7.374, 7.3737, 7.3726, 7.3719, 7.3713, 7.3739, 7.3728, 7.3721, 7.3711, 7.3706, 7.3695, 7.3684, 7.3681, 7.3673, 7.3664, 7.3653, 7.3641, 7.3632, 7.3654, 7.3642, 7.3629, 7.3616, 7.3606, 7.3596, 7.3585, 7.3575, 7.3564, 7.3558, 7.3554, 7.3542, 7.3566, 7.3556, 7.3555, 7.358, 7.3602, 7.3605, 7.3598, 7.3592, 7.358, 7.3568, 7.3556, 7.3547, 7.3537, 7.3525, 7.3522, 7.3513, 7.3537, 7.3525, 7.3547, 7.3535, 7.3561, 7.3554, 7.3548, 7.3538, 7.354, 7.3501, 7.3496, 7.3526, 7.3548, 7.3617, 7.3645, 7.3656, 7.3651, 7.3642, 7.3638, 7.3629, 7.3621, 7.3641, 7.3633, 7.3621, 7.3611, 7.3601, 7.3592, 7.3584, 7.3605, 7.3625, 7.3615, 7.3608, 7.3598, 7.3596, 7.3589, 7.3581, 7.3569, 7.3593, 7.3581, 7.3606, 7.3594, 7.3768, 7.3765, 7.3769, 7.3759, 7.3752, 7.3741, 7.3729, 7.3722, 7.3713, 7.3737, 7.3725, 7.3744, 7.3732, 7.372, 7.3711, 7.3798, 7.3788, 7.3863, 7.3853, 7.3844, 7.3898, 7.3885, 7.3876, 7.4006, 7.3996, 7.3984, 7.3976, 7.4001, 7.3992, 7.3982, 7.3973, 7.3966, 7.3956, 7.3945, 7.3938, 7.3926, 7.3916, 7.3904, 7.3899, 7.389, 7.3908, 7.3902, 7.3892, 7.3912, 7.39, 7.3888, 7.3877, 7.3866, 7.3854, 7.3842, 7.3837, 7.3861, 7.385, 7.3839, 7.3826, 7.3819, 7.3839, 7.3827, 7.3816, 7.381, 7.383, 7.3818, 7.3806, 7.3826, 7.3845, 7.3875, 7.3865, 7.3916, 7.3905, 7.3899, 7.389, 7.3884, 7.3904, 7.3893, 7.3917, 7.3914, 7.3907, 7.3898, 7.3888, 7.3881, 7.3901, 7.3913, 7.3935, 7.3923, 7.3919, 7.3939, 7.3938, 7.3936, 7.3955, 7.3946, 7.3968, 7.396, 7.395, 7.3969, 7.3966, 7.4016, 7.4005, 7.4026, 7.4018, 7.4007, 7.3996, 7.3987, 7.396, 7.3958, 7.3951, 7.4006, 7.3995, 7.4016, 7.4068, 7.4059, 7.4049, 7.4044, 7.404, 7.4059, 7.4111, 7.4103, 7.4098, 7.4117, 7.4111, 7.4107, 7.4126, 7.4128, 7.412, 7.4128, 7.412, 7.4112, 7.4111, 7.4103, 7.4097, 7.4117, 7.4137, 7.4128, 7.4119, 7.4109, 7.4102, 7.4094, 7.4113, 7.4101, 7.409, 7.4111, 7.4189, 7.4179, 7.4172, 7.4166, 7.4191, 7.4188, 7.4181, 7.4204, 7.4224, 7.4214, 7.4235, 7.423, 7.4219, 7.4212, 7.4207, 7.4224, 7.4218, 7.4248, 7.4295, 7.4285, 7.4279, 7.4385, 7.4376, 7.4365, 7.4358, 7.4352, 7.4343, 7.4338, 7.4329, 7.4319, 7.4307, 7.4296, 7.4285, 7.4309, 7.43, 7.4291, 7.4282, 7.4271, 7.4259, 7.4249, 7.4239, 7.423, 7.4221, 7.4214, 7.4205, 7.4198, 7.4193, 7.4187, 7.4194, 7.4213, 7.4205, 7.4196, 7.4247, 7.4236, 7.4226, 7.4214, 7.4233, 7.4224, 7.4244, 7.4263, 7.4254, 7.4273, 7.4263, 7.4251, 7.4269, 7.426, 7.425, 7.4244, 7.4234, 7.4254, 7.4245, 7.4237, 7.4226, 7.4232, 7.4221, 7.4243, 7.4233, 7.4226, 7.422, 7.4215, 7.4214, 7.4263, 7.4251, 7.4243, 7.4263, 7.4265, 7.4283, 7.4275, 7.4273, 7.4295, 7.4285, 7.4303, 7.4292, 7.4286, 7.4278, 7.4269, 7.4261, 7.4258, 7.4254, 7.4247, 7.4268, 7.4258, 7.4249, 7.4242, 7.4261, 7.4279, 7.4272, 7.4267, 7.4257, 7.4246, 7.4237, 7.423, 7.4221, 7.422, 7.421, 7.423, 7.4219, 7.4236, 7.4226, 7.4246, 7.424, 7.4233, 7.4229, 7.4218, 7.4211, 7.4222, 7.4212, 7.4234, 7.4225, 7.4215, 7.421, 7.423, 7.4222, 7.4241, 7.4208, 7.4197, 7.4186, 7.418, 7.4177, 7.4195, 7.4189, 7.4179, 7.4169, 7.4158, 7.4178, 7.4241, 7.423, 7.422, 7.4224, 7.4243, 7.4236, 7.4247, 7.4244, 7.424, 7.4233, 7.4249, 7.4271, 7.4316, 7.4306, 7.4297, 7.4287, 7.4282, 7.43, 7.429, 7.4279, 7.4325, 7.4322, 7.4317, 7.4307, 7.4299, 7.4297, 7.4315, 7.4305, 7.4299, 7.4289, 7.4286, 7.4282, 7.4276, 7.4266, 7.4257, 7.4275, 7.4248, 7.4271, 7.4268, 7.4274, 7.4278, 7.4344, 7.4378, 7.4368, 7.4359, 7.4351, 7.4341, 7.4357, 7.4359, 7.4379, 7.4376, 7.437, 7.4359, 7.4349, 7.4338, 7.4354, 7.4373, 7.4362, 7.4388, 7.4378, 7.4396, 7.439, 7.4386, 7.4376, 7.4365, 7.438, 7.4374, 7.437, 7.436, 7.435, 7.4341, 7.4331, 7.432, 7.4317, 7.4306, 7.4303, 7.4308, 7.4304, 7.4295, 7.4288, 7.428, 7.4277, 7.4274, 7.4267, 7.4261, 7.4255, 7.4246, 7.424, 7.4257, 7.4252, 7.4247, 7.4236, 7.4228, 7.4227, 7.422, 7.4211, 7.4184, 7.4176, 7.4193, 7.4193, 7.4183, 7.4177, 7.4167, 7.4186, 7.4176, 7.4167, 7.4212, 7.4204, 7.4194, 7.4186, 7.4203, 7.4195, 7.4188, 7.4185, 7.4176, 7.417, 7.4165, 7.4156, 7.415, 7.414, 7.4133, 7.4124, 7.4142, 7.414, 7.4134, 7.4125, 7.4116, 7.4106, 7.4104, 7.4098, 7.4088, 7.4078, 7.4071, 7.4044, 7.411, 7.4177, 7.4246, 7.4236, 7.4253, 7.4243, 7.4233, 7.4251, 7.4241, 7.4237, 7.4266, 7.4263, 7.4309, 7.4299, 7.429, 7.428, 7.427, 7.4288, 7.4283, 7.428, 7.4295, 7.4289, 7.4279, 7.4271, 7.4288, 7.4281, 7.4278, 7.4294, 7.4287, 7.4278, 7.4272, 7.4269, 7.4265, 7.4286, 7.4278, 7.4269, 7.4286, 7.4277, 7.4295, 7.4287, 7.4278, 7.4271, 7.4261, 7.4251, 7.4321, 7.4315, 7.4314, 7.4365, 7.4358, 7.4418, 7.4409, 7.4399, 7.4414, 7.4409, 7.4399, 7.4414, 7.443, 7.4446, 7.4436, 7.4431, 7.4421, 7.4411, 7.4401, 7.4417, 7.4433, 7.4426, 7.4417, 7.441, 7.4426, 7.4442, 7.4436, 7.4427, 7.442, 7.4412, 7.4428, 7.4421, 7.4412, 7.4403, 7.4394, 7.4389, 7.4385, 7.4377, 7.4372, 7.4366, 7.4362, 7.4357, 7.435, 7.4342, 7.4334, 7.433, 7.4327, 7.432, 7.4336, 7.4331, 7.4328, 7.4323, 7.4341, 7.4336, 7.4353, 7.4348, 7.4364, 7.4381, 7.4373, 7.4363, 7.4358, 7.4355, 7.4346, 7.4338, 7.433, 7.4327, 7.4322, 7.4318, 7.431, 7.4307, 7.4298, 7.4294, 7.4312, 7.4303, 7.4276, 7.4295, 7.4289, 7.4307, 7.4301, 7.4305, 7.4302, 7.4294, 7.4289, 7.4287, 7.4283, 7.43, 7.4319, 7.4311, 7.4306, 7.43, 7.4292, 7.4293, 7.4283, 7.4277, 7.4269, 7.4263, 7.4253, 7.4246, 7.424, 7.4258, 7.4249, 7.4247, 7.4238, 7.423, 7.4231, 7.4247, 7.424, 7.4231, 7.4246, 7.4238, 7.424, 7.4256, 7.4248, 7.4242, 7.4236, 7.423, 7.4222, 7.4214, 7.4231, 7.4263, 7.4255, 7.4248, 7.4239, 7.423, 7.4226, 7.4218, 7.4209, 7.4226, 7.422, 7.421, 7.4214, 7.423, 7.4226, 7.4218, 7.4211, 7.4203, 7.4217, 7.4232, 7.4224, 7.4219, 7.4235, 7.4227, 7.4219, 7.4235, 7.4226, 7.4219, 7.4212, 7.4203, 7.4195, 7.4186, 7.4177, 7.4169, 7.416, 7.4154, 7.417, 7.4184, 7.4177, 7.4168, 7.4203, 7.4198, 7.4193, 7.4186, 7.4177, 7.4171, 7.4165, 7.4162, 7.4159, 7.4187, 7.4205, 7.4198, 7.4193, 7.4185, 7.4177, 7.4249, 7.4265, 7.4281, 7.4272, 7.4264, 7.4261, 7.4252, 7.4244, 7.4282, 7.4309, 7.4302, 7.43, 7.4292, 7.4307, 7.4355, 7.4347, 7.4345, 7.434, 7.4331, 7.4324, 7.4337, 7.4332, 7.4349, 7.4345, 7.434, 7.4345, 7.4341, 7.4333, 7.4335, 7.4337, 7.441, 7.4405, 7.4402, 7.4397, 7.439, 7.4386, 7.4382, 7.4375, 7.4366, 7.4382, 7.4379, 7.4393, 7.4387, 7.4382, 7.4374, 7.4392, 7.4386, 7.4377, 7.4369, 7.4365, 7.4357, 7.4349, 7.4341, 7.4336, 7.4341, 7.4337, 7.4331, 7.4347, 7.4339, 7.4331, 7.4325, 7.4338, 7.4331, 7.4326, 7.4318, 7.4315, 7.4307, 7.4298, 7.4294, 7.4311, 7.4303, 7.4297, 7.4294, 7.4287, 7.4279, 7.4292, 7.429, 7.4285, 7.4276, 7.4269, 7.426, 7.4252, 7.4245, 7.426, 7.4259, 7.425, 7.4264, 7.4255, 7.4246, 7.4238, 7.423, 7.4223, 7.4215, 7.4211, 7.4226, 7.4217, 7.4209, 7.4201, 7.4193, 7.4207, 7.4202, 7.4195, 7.4211, 7.4204, 7.4199, 7.4192, 7.4187, 7.4179, 7.4177, 7.417, 7.4165, 7.4183, 7.4176, 7.4168, 7.4162, 7.4153, 7.4146, 7.4163, 7.4156, 7.4147, 7.414, 7.4136, 7.4129, 7.4127, 7.4124, 7.4117, 7.4133, 7.415, 7.4141, 7.4134, 7.4131, 7.4127, 7.4142, 7.4135, 7.4127, 7.412, 7.4126, 7.4121, 7.4114, 7.4132, 7.4129, 7.4101, 7.41, 7.4094, 7.4088, 7.4103, 7.4097, 7.4114, 7.4127, 7.4121, 7.4115, 7.4106, 7.4103, 7.4099, 7.4091, 7.4085, 7.4098, 7.4093, 7.4089, 7.4083, 7.4075, 7.4069, 7.406, 7.4052, 7.4044, 7.4063, 7.4056, 7.4048, 7.404, 7.4032, 7.4028, 7.4032, 7.4024, 7.4018, 7.4012, 7.4008, 7.4, 7.3994, 7.4087, 7.4131, 7.4123, 7.412, 7.4135, 7.4128, 7.4122, 7.4118, 7.4116, 7.4109, 7.4103, 7.4095, 7.4092, 7.4089, 7.4148, 7.4121, 7.4119, 7.4114, 7.4106, 7.4082, 7.4098, 7.4093, 7.4091, 7.4088, 7.408, 7.4074, 7.407, 7.4071, 7.4063, 7.4038, 7.4014, 7.403, 7.4044, 7.4059, 7.4055, 7.4049, 7.4041, 7.4034, 7.403, 7.4022, 7.4016, 7.4011, 7.4007, 7.3999, 7.3991, 7.4005, 7.3999, 7.4016, 7.4009, 7.4001, 7.4018, 7.401, 7.4003, 7.4001, 7.3997, 7.3993, 7.4007, 7.4007, 7.4002, 7.3999, 7.399, 7.3983, 7.3997, 7.3994, 7.3987, 7.4, 7.3992, 7.3984, 7.3981, 7.3973, 7.3968, 7.396, 7.3954, 7.3947, 7.3961, 7.3953, 7.3949, 7.3926, 7.3922, 7.3914, 7.3906, 7.3901, 7.3894, 7.3887, 7.3884, 7.388, 7.3894, 7.3891, 7.3885, 7.39, 7.3915, 7.393, 7.3923, 7.3948, 7.3954, 7.4031, 7.4046, 7.4043, 7.4035, 7.4031, 7.4044, 7.406, 7.4073, 7.4065, 7.4082, 7.4096, 7.4109, 7.4102, 7.4099, 7.4096, 7.409, 7.4082, 7.4074, 7.4067, 7.4059, 7.4053, 7.4046, 7.4038, 7.4053, 7.4066, 7.4068, 7.4061, 7.4053, 7.4067, 7.4063, 7.4055, 7.407, 7.4062, 7.4057, 7.4053, 7.4048, 7.404, 7.4033, 7.4047, 7.406, 7.4056, 7.407, 7.4064, 7.4077, 7.407, 7.4062, 7.4075, 7.4067, 7.4059, 7.4052, 7.4065, 7.4057, 7.4051, 7.4044, 7.404, 7.4054, 7.405, 7.4065, 7.4059, 7.4036, 7.4028, 7.4021, 7.4018, 7.4012, 7.4027, 7.4024, 7.4017, 7.3991, 7.3984, 7.3999, 7.3993, 7.4007, 7.4004, 7.4002, 7.3997, 7.3993, 7.3985, 7.3978, 7.3971, 7.3966, 7.3962, 7.3955, 7.3973, 7.3967, 7.3964, 7.3959, 7.3952, 7.3948, 7.3949, 7.3945, 7.3937, 7.3952, 7.3964, 7.3957, 7.4013, 7.4005, 7.402, 7.4013, 7.4006, 7.398, 7.3972, 7.3965, 7.398, 7.3972, 7.3969, 7.3962, 7.3974, 7.397, 7.3985, 7.3977, 7.397, 7.3965, 7.3958, 7.3951, 7.3946, 7.3942, 7.3936, 7.393, 7.3923, 7.3927, 7.3925, 7.3918, 7.3915, 7.3928, 7.3921, 7.3914, 7.3906, 7.3919, 7.3912, 7.3927, 7.3921, 7.3915, 7.3929, 7.3923, 7.392, 7.3935, 7.3928, 7.3923, 7.3917, 7.3911, 7.3905, 7.3897, 7.3909, 7.3905, 7.3918, 7.3914, 7.3926, 7.3924, 7.392, 7.3935, 7.3928, 7.3941, 7.3934, 7.3948, 7.3943, 7.3936, 7.3935, 7.3948, 7.3944, 7.3963, 7.3976, 7.3972, 7.3965, 7.3961, 7.3955, 7.3948, 7.3942, 7.3959, 7.3952, 7.3965, 7.3961, 7.3974, 7.3975, 7.3971, 7.3986, 7.3981, 7.3994, 7.3987, 7.3982, 7.3976, 7.3973, 7.3969, 7.3962, 7.3962, 7.3973, 7.3969, 7.3962, 7.3955, 7.3951, 7.3944, 7.3937, 7.3951, 7.3945, 7.3939, 7.3953, 7.3993, 7.3987, 7.3982, 7.3995, 7.399, 7.3983, 7.3979, 7.3976, 7.3977, 7.3963, 7.3961, 7.3957, 7.3951, 7.3963, 7.3976, 7.3969, 7.3975, 7.3973, 7.3967, 7.3961, 7.3974, 7.3968, 7.3961, 7.3954, 7.3947, 7.3944, 7.3937, 7.3951, 7.3965, 7.398, 7.3975, 7.3971, 7.3965, 7.3962, 7.3963, 7.3961, 7.3953, 7.395, 7.3945, 7.3939, 7.3952, 7.3949, 7.3946, 7.3939, 7.3932, 7.3911, 7.3892, 7.3885, 7.3877, 7.3871, 7.3903, 7.3898, 7.3911, 7.3924, 7.3955, 7.3948, 7.3961, 7.3973, 7.4054, 7.4065, 7.4058, 7.407, 7.4084, 7.4096, 7.4094, 7.4086, 7.4083, 7.4079, 7.4071, 7.4065, 7.4058, 7.4055, 7.405, 7.4027, 7.4021, 7.4015, 7.401, 7.4004, 7.3997, 7.3992, 7.4005, 7.4001, 7.4013, 7.4008, 7.4004, 7.3997, 7.3991, 7.3987, 7.399, 7.3989, 7.408, 7.4092, 7.4085, 7.4063, 7.4058, 7.4052, 7.4064, 7.4065, 7.4105, 7.4117, 7.4113, 7.4108, 7.4104, 7.4098, 7.4092, 7.4088, 7.4081, 7.408, 7.4078, 7.407, 7.4063, 7.4056, 7.405, 7.4044, 7.4057, 7.405, 7.4043, 7.4054, 7.4053, 7.4046, 7.4042, 7.4035, 7.4032, 7.4028, 7.4022, 7.4034, 7.4028, 7.4025, 7.4018, 7.4012, 7.4006, 7.3999, 7.3993, 7.3987, 7.398, 7.3977, 7.3988, 7.3982, 7.3996, 7.399, 7.3988, 7.3982, 7.396, 7.3943, 7.3937, 7.3931, 7.3944, 7.394, 7.3955, 7.3951, 7.3945, 7.394, 7.3935, 7.393, 7.395, 7.3944, 7.3939, 7.3918, 7.3985, 7.3983, 7.3989, 7.3986, 7.3983, 7.3977, 7.3971, 7.3967, 7.4051, 7.4049, 7.4086, 7.4079, 7.4056, 7.4053, 7.4049, 7.4042, 7.4037, 7.4072, 7.4101, 7.4121, 7.4115, 7.411, 7.4105, 7.4099, 7.4094, 7.4108, 7.4103, 7.4118, 7.4132, 7.4145, 7.4141, 7.4155, 7.4149, 7.4142, 7.4135, 7.4128, 7.4141, 7.4135, 7.4128, 7.4122, 7.4116, 7.4113, 7.4108, 7.412, 7.4116, 7.4111, 7.4124, 7.4123, 7.4118, 7.4113, 7.4109, 7.4104, 7.4102, 7.4096, 7.4089, 7.4101, 7.4099, 7.4092, 7.4104, 7.4103, 7.4096, 7.4091, 7.4085, 7.4079, 7.4075, 7.4087, 7.4086, 7.4097, 7.4093, 7.4095, 7.409, 7.4084, 7.4096, 7.4091, 7.4085, 7.4081, 7.4078, 7.4073, 7.4068, 7.4062, 7.4059, 7.4054, 7.405, 7.4046, 7.4045, 7.4038, 7.4035, 7.4034, 7.4034, 7.4052, 7.4047, 7.4047, 7.404, 7.4054, 7.4048, 7.4042, 7.4036, 7.4048, 7.4058, 7.4051, 7.4044, 7.4038, 7.4033, 7.4044, 7.4055, 7.4048, 7.4059, 7.4037, 7.4034, 7.4064, 7.4078, 7.4071, 7.4065, 7.4078, 7.4107, 7.4119, 7.4114, 7.4113, 7.4126, 7.4125, 7.4123, 7.4134, 7.4129, 7.4122, 7.4117, 7.4117, 7.4112, 7.4124, 7.4118, 7.4115, 7.4112, 7.4105, 7.41, 7.4095, 7.4092, 7.4085, 7.408, 7.4074, 7.4068, 7.4062, 7.4055, 7.4038, 7.4032, 7.4028, 7.4022, 7.4016, 7.401, 7.4006, 7.4002, 7.4013, 7.4008, 7.4006, 7.4, 7.4011, 7.4006, 7.4002, 7.3997, 7.3992, 7.3986, 7.3982, 7.3977, 7.3971, 7.3968, 7.3963, 7.3956, 7.395, 7.3945, 7.3938, 7.395, 7.3962, 7.3972, 7.3968, 7.3963, 7.3961, 7.3958, 7.4028, 7.4024, 7.4037, 7.4031, 7.4044, 7.404, 7.4034, 7.4052, 7.4059, 7.4057, 7.4052, 7.4062, 7.4058, 7.4054, 7.4048, 7.4044, 7.4058, 7.4071, 7.4066, 7.406, 7.4056, 7.405, 7.4062, 7.4058, 7.4054, 7.4047, 7.4059, 7.4056, 7.4067, 7.4063, 7.4057, 7.4054, 7.4048, 7.4042, 7.4038, 7.4035, 7.4031, 7.4026, 7.402, 7.4013, 7.4008, 7.4023, 7.4021, 7.4018, 7.4013, 7.4009, 7.4024, 7.4025, 7.4005, 7.4, 7.3994, 7.399, 7.3988, 7.3986, 7.3981, 7.3993, 7.3988, 7.4, 7.3998, 7.3993, 7.3973, 7.4051, 7.4047, 7.4041, 7.4052, 7.4046, 7.4042, 7.404, 7.4053, 7.4048, 7.4043, 7.4043, 7.4055, 7.405, 7.4047, 7.4027, 7.4023, 7.4002, 7.3996, 7.3989, 7.3984, 7.3995, 7.3992, 7.3988, 7.4005, 7.4, 7.3996, 7.3991, 7.4002, 7.4013, 7.4009, 7.402, 7.4015, 7.4012, 7.3992, 7.3986, 7.3979, 7.3992, 7.3991, 7.3988, 7.3983, 7.3981, 7.3993, 7.3994, 7.403, 7.4024, 7.4077, 7.4088, 7.4083, 7.4081, 7.4077, 7.4072, 7.4084, 7.408, 7.4076, 7.4071, 7.4099, 7.4113, 7.4109, 7.4089, 7.4086, 7.4082, 7.411, 7.411, 7.4107, 7.4101, 7.4101, 7.4095, 7.4075, 7.407, 7.405, 7.4061, 7.406, 7.4056, 7.405, 7.4063, 7.4059, 7.4055, 7.4049, 7.406, 7.4071, 7.4065, 7.4046, 7.4027, 7.4038, 7.4032, 7.4026, 7.4021, 7.4015, 7.4008, 7.3987, 7.3982, 7.3976, 7.3973, 7.397, 7.3967, 7.3962, 7.3956, 7.3949, 7.3943, 7.3954, 7.3948, 7.3976, 7.3986, 7.3998, 7.3997, 7.3991, 7.3987, 7.3983, 7.3977, 7.3972, 7.3968, 7.3963, 7.3991, 7.3985, 7.3965, 7.3959, 7.3958, 7.397, 7.3968, 7.3964, 7.3975, 7.3986, 7.398, 7.3991, 7.3987, 7.3999, 7.4011, 7.4006, 7.4018, 7.4013, 7.4011, 7.4006, 7.4006, 7.4, 7.3995, 7.3995, 7.399, 7.3987, 7.3981, 7.3981, 7.3975, 7.3969, 7.3979, 7.396, 7.3955, 7.395, 7.3944, 7.394, 7.3934, 7.3928, 7.3922, 7.3955, 7.395, 7.3946, 7.394, 7.3934, 7.393, 7.393, 7.3926, 7.3921, 7.3917, 7.3928, 7.393, 7.3924, 7.3947, 7.3958, 7.3952, 7.3947, 7.3944, 7.3944, 7.394, 7.3934, 7.3928, 7.3925, 7.3937, 7.3935, 7.393, 7.3941, 7.3938, 7.3948, 7.3946, 7.3941, 7.3952, 7.395, 7.3944, 7.3939, 7.3935, 7.393, 7.3925, 7.3937, 7.3934, 7.3928, 7.3924, 7.392, 7.3914, 7.3909, 7.3905, 7.3915, 7.3911, 7.3905, 7.39, 7.3897, 7.3908, 7.3904, 7.39, 7.3898, 7.391, 7.3891, 7.3873, 7.3885, 7.3882, 7.3879, 7.3877, 7.3872, 7.3869, 7.3893, 7.389, 7.3884, 7.3882, 7.3892, 7.3886, 7.3883, 7.3894, 7.3905, 7.3917, 7.3929, 7.3924, 7.3919, 7.3919, 7.3918, 7.3927, 7.3921, 7.3917, 7.3911, 7.3907, 7.3901, 7.3915, 7.3909, 7.3907, 7.3902, 7.3899, 7.3938, 7.3928, 7.3922, 7.3935, 7.3945, 7.3939, 7.3935, 7.393, 7.3941, 7.3923, 7.3933, 7.393, 7.3941, 7.395, 7.3978, 7.3972, 7.3972, 7.3967, 7.4014, 7.4009, 7.4003, 7.4014, 7.4009, 7.4006, 7.3987, 7.3986, 7.3981, 7.3978, 7.3978, 7.3973, 7.3985, 7.398, 7.3992, 7.4026, 7.4046, 7.4057, 7.4052, 7.4046, 7.4041, 7.4035, 7.4053, 7.4051, 7.4046, 7.4041, 7.4035, 7.4046, 7.404, 7.4051, 7.4048, 7.4043, 7.4052, 7.4046, 7.4059, 7.4055, 7.405, 7.4044, 7.4039, 7.405, 7.4044, 7.4056, 7.4052, 7.4047, 7.4045, 7.4054, 7.4038, 7.4022, 7.4047, 7.4058, 7.4054, 7.405, 7.4045, 7.4041, 7.4035, 7.4045, 7.4041, 7.4038, 7.4049, 7.4047, 7.4056, 7.4067, 7.4063, 7.4074, 7.4146, 7.4144, 7.4156, 7.4155, 7.4164, 7.4159, 7.4154, 7.4149, 7.4144, 7.4126, 7.411, 7.4121, 7.4116, 7.4127, 7.4122, 7.4116, 7.4114, 7.411, 7.4122, 7.4116, 7.4114, 7.4126, 7.4122, 7.4133, 7.4143, 7.4141, 7.4136, 7.4131, 7.4141, 7.415, 7.4147, 7.4142, 7.4153, 7.4151, 7.4146, 7.4128, 7.4124, 7.4162, 7.4172, 7.4183, 7.4179, 7.4173, 7.4198, 7.4192, 7.4203, 7.4198, 7.4193, 7.4188, 7.4203, 7.4198, 7.4193, 7.4188, 7.4183, 7.4194, 7.4189, 7.4187, 7.4169, 7.4152, 7.415, 7.4145, 7.4173, 7.4168, 7.4163, 7.4171, 7.4165, 7.4162, 7.4157, 7.4152, 7.415, 7.4145, 7.414, 7.4137, 7.4137, 7.4133, 7.4128, 7.4123, 7.4133, 7.4127, 7.4122, 7.4118, 7.4113, 7.4109, 7.4104, 7.4104, 7.4099, 7.4097, 7.4093, 7.4088, 7.4083, 7.4109, 7.4106, 7.4103, 7.41, 7.4109, 7.4104, 7.4101, 7.4096, 7.4092, 7.41, 7.4097, 7.4092, 7.4086, 7.4082, 7.408, 7.4074, 7.4072, 7.4066, 7.4051, 7.4048, 7.4043, 7.4056, 7.405, 7.4048, 7.4043, 7.4038, 7.4033, 7.4029, 7.4042, 7.4052, 7.4049, 7.4043, 7.4039, 7.4033, 7.4028, 7.4023, 7.4018, 7.4015, 7.4011, 7.4008, 7.399, 7.3984, 7.4001, 7.3996, 7.4042, 7.4036, 7.4031, 7.4026, 7.4021, 7.4016, 7.4012, 7.4007, 7.401, 7.4019, 7.4028, 7.4025, 7.4023, 7.4035, 7.4045, 7.4054, 7.405, 7.4044, 7.4053, 7.405, 7.4045, 7.4042, 7.4043, 7.4041, 7.4023, 7.4033, 7.403, 7.4028, 7.4027, 7.4022, 7.4016, 7.4046, 7.4041, 7.4052, 7.4047, 7.4042, 7.4037, 7.4019, 7.4002, 7.3997, 7.4006, 7.4015, 7.4025, 7.4019, 7.4015, 7.4012, 7.4008, 7.4004, 7.3986, 7.3983, 7.3994, 7.3989, 7.3971, 7.3954, 7.3951, 7.3948, 7.3943, 7.3938, 7.392, 7.3916, 7.3926, 7.3927, 7.3921, 7.3916, 7.3926, 7.3911, 7.3921, 7.3916, 7.3911, 7.3921, 7.3916, 7.3911, 7.3905, 7.3916, 7.3911, 7.3907, 7.3901, 7.3912, 7.3908, 7.3903, 7.3899, 7.3896, 7.3891, 7.3886, 7.3882, 7.3893, 7.3917, 7.3916, 7.3911, 7.3907, 7.3903, 7.3897, 7.3895, 7.389, 7.39, 7.3897, 7.3901, 7.3897, 7.3907, 7.3902, 7.3897, 7.3908, 7.3906, 7.3901, 7.3896, 7.3893, 7.3891, 7.3887, 7.3882, 7.3876, 7.3871, 7.3868, 7.3863, 7.3858, 7.3853, 7.3863, 7.3861, 7.3857, 7.3859, 7.3872, 7.3869, 7.3868, 7.3864, 7.386, 7.3859, 7.3855, 7.385, 7.3848, 7.3844, 7.3856, 7.3882, 7.3879, 7.3877, 7.3873, 7.3869, 7.3852, 7.3846, 7.384, 7.3836, 7.3832, 7.383, 7.3826, 7.3821, 7.3818, 7.3828, 7.3823, 7.3833, 7.3829, 7.3824, 7.3819, 7.383, 7.3827, 7.3821, 7.3822, 7.3836, 7.3833, 7.3829, 7.3811, 7.3808, 7.3821, 7.3818, 7.3814, 7.3812, 7.381, 7.3822, 7.3823, 7.3834, 7.3844, 7.3854, 7.3851, 7.3847, 7.3845, 7.3855, 7.3854, 7.3851, 7.3862, 7.3859, 7.3854, 7.3849, 7.3846, 7.3844, 7.3839, 7.3835, 7.383, 7.3825, 7.3824, 7.3822, 7.3817, 7.3815, 7.3824, 7.382, 7.383, 7.3825, 7.3834, 7.3831, 7.383, 7.3825, 7.3835, 7.3832, 7.3829, 7.3826, 7.3823, 7.3819, 7.3814, 7.3812, 7.3809, 7.3818, 7.3829, 7.3829, 7.3837, 7.3846, 7.3842, 7.3839, 7.3835, 7.383, 7.3826, 7.3821, 7.3817, 7.3813, 7.3808, 7.3803, 7.3799, 7.3796, 7.3792, 7.3788, 7.3788, 7.3785, 7.3784, 7.3779, 7.3774, 7.3769, 7.3778, 7.3777, 7.3773, 7.3768, 7.3765, 7.3763, 7.3748, 7.3743, 7.374, 7.3736, 7.3733, 7.373, 7.3726, 7.3722, 7.3733, 7.3728, 7.3738, 7.3734, 7.373, 7.3725, 7.3722, 7.3717, 7.3712, 7.3723, 7.3718, 7.3716, 7.3715, 7.3712, 7.3723, 7.3733, 7.3728, 7.3724, 7.3722, 7.372, 7.3721, 7.3718, 7.3717, 7.3726, 7.372, 7.373, 7.3715, 7.371, 7.3706, 7.3716, 7.3711, 7.3706, 7.3716, 7.3713, 7.371, 7.3708, 7.3704, 7.3703, 7.3699, 7.3695, 7.369, 7.3686, 7.3682, 7.3692, 7.3691, 7.3686, 7.3695, 7.3704, 7.37, 7.3695, 7.3691, 7.3686, 7.3683, 7.3681, 7.3676, 7.3672, 7.3668, 7.3664, 7.3659, 7.3654, 7.3652, 7.3671, 7.3667, 7.3662, 7.3658, 7.3655, 7.365, 7.3645, 7.3641, 7.3637, 7.3637, 7.3646, 7.3655, 7.3652, 7.3648, 7.3648, 7.3644, 7.3642, 7.364, 7.3638, 7.3633, 7.3631, 7.3642, 7.3638, 7.3633, 7.3631, 7.364, 7.3638, 7.3633, 7.3628, 7.3624, 7.362, 7.3615, 7.3626, 7.3621, 7.3617, 7.3613, 7.3611, 7.3607, 7.3603, 7.3613, 7.3638, 7.3637, 7.365, 7.3648, 7.3659, 7.3654, 7.3662, 7.3658, 7.3653, 7.365, 7.3645, 7.364, 7.3662, 7.3658, 7.3666, 7.3661, 7.366, 7.3655, 7.3639, 7.3635, 7.3644, 7.3653, 7.3649, 7.366, 7.3655, 7.365, 7.3647, 7.3644, 7.3653, 7.3649, 7.3645, 7.3641, 7.3641, 7.3651, 7.366, 7.3659, 7.3655, 7.3652, 7.3648, 7.3647, 7.3643, 7.3639, 7.3635, 7.363, 7.3626, 7.3635, 7.3634, 7.3629, 7.3626, 7.3635, 7.3632, 7.363, 7.3626, 7.3637, 7.3633, 7.3631, 7.3641, 7.3639, 7.3637, 7.3637, 7.3634, 7.363, 7.3626, 7.3625, 7.3622, 7.3617, 7.3626, 7.3632, 7.3631, 7.3629, 7.3625, 7.3623, 7.362, 7.3616, 7.3613, 7.3611, 7.3619, 7.3657, 7.3654, 7.3662, 7.3658, 7.3653, 7.3665, 7.3673, 7.3669, 7.3665, 7.3668, 7.3665, 7.3664, 7.3659, 7.3655, 7.3663, 7.3658, 7.3653, 7.3663, 7.3661, 7.3656, 7.3652, 7.3647, 7.3644, 7.364, 7.3638, 7.3645, 7.3641, 7.3637, 7.3667, 7.3663, 7.3659, 7.3682, 7.3691, 7.369, 7.37, 7.3698, 7.3694, 7.3704, 7.3699, 7.3696, 7.3692, 7.3701, 7.3712, 7.371, 7.3706, 7.3702, 7.3698, 7.3708, 7.3706, 7.3702, 7.3699, 7.3696, 7.3692, 7.3687, 7.3683, 7.3706, 7.3702, 7.3686, 7.3708, 7.3705, 7.3701, 7.3706, 7.3704, 7.3713, 7.3709, 7.3717, 7.3714, 7.3723, 7.3731, 7.3727, 7.3735, 7.3731, 7.3729, 7.3741, 7.3737, 7.3732, 7.373, 7.3739, 7.3736, 7.3734, 7.3744, 7.3741, 7.375, 7.3746, 7.3742, 7.3739, 7.3735, 7.3731, 7.3727, 7.3723, 7.3719, 7.3716, 7.3711, 7.3708, 7.3716, 7.37, 7.3696, 7.3692, 7.3703, 7.3712, 7.371, 7.372, 7.3731, 7.3728, 7.3724, 7.3722, 7.372, 7.3718, 7.3718, 7.3727, 7.3723, 7.372, 7.3716, 7.3713, 7.371, 7.3775, 7.3774, 7.377, 7.3766, 7.3761, 7.3757, 7.3753, 7.3749, 7.3757, 7.3753, 7.3762, 7.3772, 7.3768, 7.3766, 7.3761, 7.3758, 7.3753, 7.3748, 7.3745, 7.374, 7.3736, 7.3734, 7.3731, 7.3739, 7.3734, 7.3732, 7.374, 7.3735, 7.3744, 7.3742, 7.3737, 7.3735, 7.3731, 7.3728, 7.3723, 7.372, 7.3715, 7.371, 7.3708, 7.3718, 7.3713, 7.3722, 7.3733, 7.3743, 7.3739, 7.3736, 7.3734, 7.3732, 7.3729, 7.374, 7.3749, 7.3745, 7.374, 7.3736, 7.3733, 7.3731, 7.3727, 7.3726, 7.3723, 7.3731, 7.3741, 7.3738, 7.3733, 7.3728, 7.3725, 7.3721, 7.3718, 7.3727, 7.3725, 7.3721, 7.3718, 7.3729, 7.3725, 7.3721, 7.3717, 7.3727, 7.3722, 7.373, 7.3726, 7.3738, 7.3734, 7.373, 7.3727, 7.3723, 7.3719, 7.3716, 7.3714, 7.371, 7.3707, 7.3704, 7.3712, 7.3708, 7.3712, 7.3709, 7.3718, 7.3714, 7.3722, 7.372, 7.3727, 7.3724, 7.372, 7.3716, 7.3711, 7.3706, 7.3714, 7.3722, 7.3729, 7.3724, 7.3719, 7.3753, 7.3761, 7.3759, 7.3754, 7.3749, 7.3746, 7.3744, 7.3741, 7.3725, 7.3722, 7.3731, 7.3726, 7.3725, 7.3725, 7.3722, 7.3719, 7.3717, 7.3717, 7.3714, 7.3711, 7.3709, 7.3706, 7.3714, 7.3712, 7.3712, 7.3707, 7.3704, 7.3699, 7.3684, 7.3679, 7.3675, 7.3673, 7.3668, 7.3663, 7.3662, 7.3659, 7.3668, 7.368, 7.3677, 7.3673, 7.3672, 7.3669, 7.3664, 7.3673, 7.367, 7.3666, 7.3662, 7.3671, 7.3667, 7.3664, 7.3652, 7.3662, 7.3661, 7.3669, 7.3665, 7.3662, 7.3686, 7.3695, 7.3691, 7.369, 7.3687, 7.3683, 7.3678, 7.3674, 7.3672, 7.3669, 7.3677, 7.3672, 7.3668, 7.3664, 7.3659, 7.3655, 7.3651, 7.3648, 7.3644, 7.3641, 7.3637, 7.3634, 7.3629, 7.3626, 7.3621, 7.3617, 7.3625, 7.362, 7.3628, 7.3627, 7.3616, 7.3612, 7.3609, 7.3619, 7.3618, 7.3616, 7.3615, 7.3611, 7.362, 7.3616, 7.3613, 7.361, 7.3609, 7.3612, 7.361, 7.3607, 7.3605, 7.3601, 7.36, 7.3596, 7.3599, 7.3598, 7.3594, 7.3592, 7.3602, 7.3598, 7.3594, 7.359, 7.3587, 7.3586, 7.3581, 7.3577, 7.3586, 7.3597, 7.3586, 7.3583, 7.3591, 7.3587, 7.3597, 7.3596, 7.3604, 7.3602, 7.3602, 7.3597, 7.3607, 7.3603, 7.3589, 7.3589, 7.3574, 7.3584, 7.3593, 7.3589, 7.3587, 7.3585, 7.3581, 7.3577, 7.3593, 7.3592, 7.3587, 7.3583, 7.3573, 7.3581, 7.3577, 7.3581, 7.359, 7.3588, 7.3597, 7.3606, 7.3605, 7.3601, 7.3598, 7.3594, 7.3603, 7.3603, 7.3601, 7.3599, 7.3609, 7.3605, 7.3601, 7.3611, 7.3609, 7.3617, 7.3626, 7.3622, 7.3631, 7.3629, 7.3626, 7.3629, 7.3624, 7.362, 7.3628, 7.3624, 7.362, 7.3615, 7.36, 7.3586, 7.3582, 7.3569, 7.3565, 7.3574, 7.357, 7.3567, 7.3564, 7.3573, 7.3569, 7.3567, 7.3563, 7.3571, 7.3566, 7.3574, 7.3583, 7.3578, 7.3601, 7.3597, 7.3638, 7.3635, 7.3633, 7.3629, 7.3625, 7.3621, 7.3618, 7.3615, 7.3613, 7.3611, 7.3608, 7.3607, 7.3616, 7.3612, 7.3607, 7.3615, 7.3612, 7.3608, 7.3603, 7.3588, 7.3584, 7.358, 7.3575, 7.3571, 7.3567, 7.3576, 7.3574, 7.3559, 7.3555, 7.3562, 7.3559, 7.3569, 7.3554, 7.3541, 7.3526, 7.3511, 7.3507, 7.3503, 7.3499, 7.3495, 7.3493, 7.3489, 7.3485, 7.3482, 7.3503, 7.3501, 7.3509, 7.3505, 7.349, 7.3477, 7.3473, 7.3469, 7.3466, 7.3464, 7.346, 7.3457, 7.3453, 7.3451, 7.3447, 7.3443, 7.3452, 7.3448, 7.3484, 7.348, 7.3487, 7.3483, 7.3491, 7.349, 7.3487, 7.3495, 7.3493, 7.3491, 7.3488, 7.3495, 7.3491, 7.3488, 7.3484, 7.3482, 7.3492, 7.3489, 7.3489, 7.3485, 7.3481, 7.3489, 7.3498, 7.3497, 7.3493, 7.3501, 7.351, 7.3509, 7.3517, 7.3513, 7.3509, 7.3505, 7.35, 7.3496, 7.3494, 7.349, 7.35, 7.352, 7.3517, 7.3514, 7.3513, 7.3509, 7.3517, 7.3514, 7.3511, 7.3518, 7.3514, 7.351, 7.3507, 7.3507, 7.3527, 7.3527, 7.3514, 7.351, 7.3508, 7.3507, 7.3555, 7.3576, 7.3573, 7.3591, 7.3591, 7.3589, 7.3587, 7.3583, 7.358, 7.3576, 7.3573, 7.3569, 7.3568, 7.3576, 7.3574, 7.3583, 7.3637, 7.3633, 7.3629, 7.3632, 7.363, 7.3627, 7.3624, 7.3632, 7.3628, 7.3625, 7.3622, 7.3619, 7.3616, 7.3613, 7.3609, 7.3606, 7.3602, 7.36, 7.3597, 7.3593, 7.359, 7.3587, 7.3583, 7.3579, 7.3576, 7.3572, 7.3572, 7.357, 7.3566, 7.3564, 7.3559, 7.3555, 7.3551, 7.3552, 7.3547, 7.3555, 7.3563, 7.356, 7.3559, 7.3554, 7.355, 7.3546, 7.3542, 7.355, 7.3546, 7.3542, 7.354, 7.3538, 7.3535, 7.3531, 7.3551, 7.3551, 7.3549, 7.3545, 7.3542, 7.354, 7.3537, 7.3535, 7.3537, 7.3533, 7.3547, 7.3556, 7.3552, 7.3548, 7.3544, 7.3541, 7.3538, 7.3546, 7.3542, 7.3541, 7.3549, 7.3545, 7.3542, 7.355, 7.3558, 7.3565, 7.3561, 7.3573, 7.3571, 7.3567, 7.3565, 7.3562, 7.3558, 7.3554, 7.3552, 7.3548, 7.3545, 7.3541, 7.3537, 7.3544, 7.3541, 7.3539, 7.3547, 7.3544, 7.3552, 7.3549, 7.3546, 7.3543, 7.355, 7.3547, 7.3544, 7.354, 7.3537, 7.3545, 7.3541, 7.3538, 7.3537, 7.3532, 7.3529, 7.3525, 7.3523, 7.3519, 7.3526, 7.3523, 7.3533, 7.354, 7.3536, 7.3534, 7.3532, 7.3529, 7.3525, 7.3533, 7.3529, 7.3537, 7.3533, 7.353, 7.3536, 7.3531, 7.3529, 7.3525, 7.3522, 7.3519, 7.3518, 7.3515, 7.3512, 7.3509, 7.3518, 7.3515, 7.3512, 7.3521, 7.3519, 7.3516, 7.3513, 7.3572, 7.3568, 7.3565, 7.3561, 7.3557, 7.3555, 7.3552, 7.3548, 7.3545, 7.3541, 7.3537, 7.3533, 7.3531, 7.3538, 7.3557, 7.3564, 7.3561, 7.3557, 7.3554, 7.355, 7.3558, 7.3554, 7.3552, 7.3562, 7.3559, 7.3555, 7.3563, 7.3562, 7.3559, 7.3557, 7.3554, 7.3561, 7.3558, 7.3553, 7.355, 7.3548, 7.3545, 7.3583, 7.3579, 7.3576, 7.3574, 7.357, 7.3567, 7.3565, 7.3563, 7.3564, 7.3571, 7.3569, 7.3565, 7.3561, 7.3559, 7.3562, 7.3559, 7.3557, 7.3564, 7.3571, 7.3579, 7.3577, 7.3585, 7.3581, 7.3589, 7.3586, 7.3582, 7.3579, 7.3575, 7.3575, 7.3572, 7.3579, 7.3567, 7.3563, 7.3561, 7.3557, 7.3556, 7.3565, 7.3561, 7.356, 7.3556, 7.3552, 7.355, 7.3546, 7.3545, 7.3541, 7.3538, 7.355, 7.3549, 7.3557, 7.3554, 7.3563, 7.3559, 7.3568, 7.3565, 7.3562, 7.3573, 7.3569, 7.3565, 7.3561, 7.3557, 7.3553, 7.355, 7.3551, 7.3547, 7.3543, 7.3551, 7.3558, 7.3557, 7.3564, 7.356, 7.3578, 7.3574, 7.3571, 7.3569, 7.3576, 7.3572, 7.3568, 7.3564, 7.356, 7.3557, 7.3555, 7.3551, 7.3558, 7.3567, 7.3565, 7.3572, 7.3581, 7.3588, 7.3585, 7.3582, 7.3579, 7.3576, 7.3572, 7.3579, 7.3575, 7.3582, 7.3578, 7.3576, 7.3584, 7.3583, 7.358, 7.3587, 7.3584, 7.3582, 7.358, 7.3576, 7.3586, 7.3586, 7.3594, 7.3601, 7.3599, 7.3595, 7.3592, 7.36, 7.3598, 7.3595, 7.3591, 7.3587, 7.3583, 7.3579, 7.3575, 7.3573, 7.3571, 7.357, 7.3569, 7.3568, 7.3565, 7.3562, 7.3559, 7.3557, 7.3553, 7.3562, 7.356, 7.3557, 7.3554, 7.3551, 7.3548, 7.3544, 7.3541, 7.3549, 7.3547, 7.3545, 7.3544, 7.3542, 7.3539, 7.3538, 7.3534, 7.3533, 7.3541, 7.3539, 7.3539, 7.3538, 7.3534, 7.3531, 7.3528, 7.3525, 7.3532, 7.3528, 7.3524, 7.352, 7.3527, 7.3534, 7.3532, 7.353, 7.3526, 7.3526, 7.3524, 7.3522, 7.3522, 7.3518, 7.3515, 7.3511, 7.3507, 7.3506, 7.3502, 7.351, 7.3507, 7.3508, 7.3505, 7.3501, 7.3498, 7.3506, 7.3503, 7.3501, 7.3499, 7.3497, 7.3494, 7.3502, 7.3498, 7.3495, 7.3503, 7.3501, 7.3497, 7.3506, 7.3504, 7.3511, 7.3518, 7.3527, 7.3527, 7.3541, 7.3538, 7.3547, 7.3554, 7.3551, 7.3548, 7.3544, 7.3542, 7.3539, 7.3546, 7.3543, 7.355, 7.3548, 7.3555, 7.3552, 7.3548, 7.3545, 7.3553, 7.3549, 7.3557, 7.3555, 7.3551, 7.3559, 7.3558, 7.3554, 7.355, 7.3558, 7.3555, 7.3562, 7.358, 7.3588, 7.3584, 7.358, 7.3569, 7.3565, 7.3561, 7.3568, 7.3564, 7.3551, 7.3538, 7.3525, 7.3522, 7.353, 7.3527, 7.3524, 7.3513, 7.3513, 7.3515, 7.3516, 7.3516, 7.3526, 7.3524, 7.3537, 7.3533, 7.354, 7.3536, 7.3534, 7.3542, 7.3539, 7.3528, 7.3534, 7.3541, 7.3557, 7.3554, 7.3551, 7.356, 7.3557, 7.3553, 7.3549, 7.3546, 7.3543, 7.3563, 7.3561, 7.3568, 7.3567, 7.3564, 7.3562, 7.3559, 7.3557, 7.3554, 7.3571, 7.3569, 7.3566, 7.3562, 7.356, 7.3557, 7.3563, 7.3562, 7.3572, 7.3568, 7.3555, 7.3561, 7.356, 7.3559, 7.3555, 7.3551, 7.3548, 7.3545, 7.3552, 7.3548, 7.3545, 7.3542, 7.3539, 7.3535, 7.3542, 7.3541, 7.354, 7.3538, 7.3545, 7.3543, 7.3539, 7.3538, 7.3546, 7.3552, 7.3566, 7.3563, 7.3561, 7.3549, 7.3538, 7.3536, 7.3532, 7.3529, 7.3528, 7.3537, 7.3535, 7.3533, 7.3533, 7.353, 7.3537, 7.3535, 7.3532, 7.353, 7.3529, 7.3526, 7.3523, 7.352, 7.3516, 7.3512, 7.3511, 7.3508, 7.3505, 7.3503, 7.349, 7.3491, 7.3488, 7.3495, 7.351, 7.3517, 7.3526, 7.3577, 7.3591, 7.3591, 7.3599, 7.3597, 7.3602, 7.3598, 7.3596, 7.3614, 7.3611, 7.3608, 7.3604, 7.36, 7.3596, 7.3594, 7.3615, 7.3611, 7.3607, 7.3615, 7.362, 7.3617, 7.3614, 7.3638, 7.3636, 7.3635, 7.3631, 7.3629, 7.3637, 7.3635, 7.3632, 7.3639, 7.3636, 7.3633, 7.363, 7.3626, 7.3623, 7.3619, 7.3617, 7.3615, 7.3611, 7.3618, 7.3616, 7.3612, 7.3609, 7.3608, 7.3604, 7.3602, 7.3603, 7.3599, 7.3598, 7.3595, 7.3593, 7.359, 7.3599, 7.3606, 7.3603, 7.3602, 7.3598, 7.3594, 7.3592, 7.3588, 7.3584, 7.3581, 7.3577, 7.3575, 7.3574, 7.3571, 7.3567, 7.3564, 7.356, 7.3558, 7.3555, 7.3565, 7.3562, 7.357, 7.3569, 7.3566, 7.3565, 7.3562, 7.356, 7.3559, 7.3556, 7.3557, 7.3553, 7.3549, 7.3545, 7.3552, 7.3551, 7.3559, 7.3555, 7.3551, 7.3552, 7.3549, 7.3547, 7.3543, 7.3559, 7.3558, 7.3556, 7.3563, 7.3562, 7.3569, 7.3585, 7.3583, 7.3592, 7.3588, 7.3585, 7.3582, 7.358, 7.3587, 7.3586, 7.3582, 7.358, 7.3587, 7.3594, 7.3592, 7.3588, 7.3584, 7.3581, 7.3581, 7.3577, 7.3583, 7.3582, 7.3581, 7.358, 7.3577, 7.3574, 7.357, 7.3569, 7.3568, 7.3575, 7.3574, 7.357, 7.3571, 7.3568, 7.3576, 7.3572, 7.3569, 7.3566, 7.3575, 7.3581, 7.3578, 7.3578, 7.3575, 7.3562, 7.356, 7.3569, 7.3578, 7.3575, 7.3575, 7.3571, 7.3567, 7.3554, 7.355, 7.3548, 7.3546, 7.3533, 7.354, 7.3537, 7.3534, 7.3531, 7.3529, 7.3528, 7.3525, 7.3532, 7.353, 7.3527, 7.3526, 7.3524, 7.3522, 7.353, 7.3537, 7.3544, 7.3545, 7.3543, 7.3542, 7.354, 7.3538, 7.3534, 7.3532, 7.3529, 7.3536, 7.3533, 7.353, 7.3537, 7.3535, 7.3542, 7.3549, 7.3537, 7.3535, 7.3531, 7.3528, 7.3524, 7.3521, 7.3517, 7.3517, 7.3513, 7.352, 7.351, 7.3506, 7.3514, 7.3521, 7.3518, 7.3515, 7.3511, 7.3508, 7.3515, 7.3513, 7.3509, 7.3506, 7.3502, 7.35, 7.3498, 7.3495, 7.3492, 7.3491, 7.3498, 7.3495, 7.3492, 7.3489, 7.3488, 7.3488, 7.3496, 7.3494, 7.3493, 7.3501, 7.3509, 7.3505, 7.3502, 7.3509, 7.3508, 7.3506, 7.3504, 7.3502, 7.3498, 7.3494, 7.3492, 7.349, 7.3477, 7.3473, 7.3461, 7.3449, 7.3446, 7.3443, 7.3444, 7.3444, 7.3442, 7.3452, 7.3451, 7.3448, 7.3446, 7.3445, 7.3452, 7.3458, 7.3457, 7.3465, 7.3463, 7.347, 7.3468, 7.3467, 7.3464, 7.3473, 7.3469, 7.3465, 7.3463, 7.346, 7.3468, 7.3464, 7.3452, 7.345, 7.3447, 7.3439, 7.3436, 7.3432, 7.3445, 7.3442, 7.3439, 7.3437, 7.3434, 7.3441, 7.3439, 7.3435, 7.3432, 7.3428, 7.3425, 7.3432, 7.3429, 7.3436, 7.3434, 7.343, 7.3427, 7.3423, 7.3419, 7.3417, 7.3424, 7.3421, 7.3418, 7.3417, 7.3454, 7.3451, 7.345, 7.3451, 7.3459, 7.3456, 7.3459, 7.3457, 7.3456, 7.3455, 7.3453, 7.3452, 7.345, 7.3456, 7.3456, 7.3453, 7.3452, 7.3449, 7.3456, 7.3453, 7.345, 7.3457, 7.3454, 7.3451, 7.3459, 7.3457, 7.3446, 7.3452, 7.344, 7.343, 7.3426, 7.3423, 7.3421, 7.3418, 7.3424, 7.3421, 7.3422, 7.3421, 7.3417, 7.3414, 7.342, 7.3426, 7.3422, 7.3429, 7.3427, 7.3434, 7.343, 7.3428, 7.3434, 7.3433, 7.343, 7.3427, 7.3435, 7.3431, 7.3428, 7.3425, 7.3422, 7.3419, 7.3416, 7.3414, 7.3411, 7.3408, 7.3414, 7.341, 7.3407, 7.3404, 7.3411, 7.3409, 7.3416, 7.3414, 7.3412, 7.3401, 7.3398, 7.3395, 7.3393, 7.339, 7.3387, 7.3394, 7.3393, 7.3399, 7.3405, 7.3402, 7.34, 7.3397, 7.3394, 7.3392, 7.339, 7.3387, 7.3394, 7.3402, 7.34, 7.3397, 7.3394, 7.3392, 7.3389, 7.3387, 7.3385, 7.3382, 7.3379, 7.3375, 7.3371, 7.336, 7.3358, 7.3366, 7.3365, 7.3365, 7.3363, 7.3359, 7.3366, 7.3364, 7.3363, 7.3361, 7.3359, 7.3356, 7.3354, 7.3361, 7.3359, 7.3355, 7.3354, 7.3353, 7.336, 7.3357, 7.3364, 7.337, 7.3368, 7.3365, 7.3372, 7.337, 7.3366, 7.3373, 7.337, 7.3367, 7.3364, 7.3361, 7.3358, 7.3373, 7.337, 7.3367, 7.3368, 7.3367, 7.3364, 7.3362, 7.3359, 7.3355, 7.3354, 7.3352, 7.3369, 7.3366, 7.3366, 7.3364, 7.3362, 7.336, 7.3357, 7.3364, 7.3372, 7.338, 7.3378, 7.3374, 7.3382, 7.3388, 7.3384, 7.3392, 7.3391, 7.3397, 7.3404, 7.3401, 7.339, 7.3386, 7.3383, 7.338, 7.3388, 7.3385, 7.3384, 7.3382, 7.3371, 7.3369, 7.3365, 7.3362, 7.3361, 7.3361, 7.3362, 7.336, 7.3358, 7.3357, 7.3355, 7.3354, 7.3351, 7.3358, 7.3356, 7.3353, 7.335, 7.3348, 7.3357, 7.3358, 7.3357, 7.3375, 7.3372, 7.3372, 7.3369, 7.3368, 7.3364, 7.3362, 7.3359, 7.3357, 7.3366, 7.3364, 7.3362, 7.3394, 7.3392, 7.339, 7.3388, 7.3387, 7.3383, 7.3381, 7.3387, 7.3385, 7.3391, 7.3379, 7.3377, 7.3374, 7.3381, 7.3378, 7.3385, 7.3385, 7.3383, 7.3391, 7.3389, 7.3395, 7.3402, 7.3399, 7.3397, 7.3396, 7.3416, 7.3414, 7.341, 7.3408, 7.3417, 7.3416, 7.3423, 7.342, 7.3426, 7.3423, 7.3429, 7.3429, 7.3427, 7.3434, 7.3431, 7.3431, 7.3428, 7.3426, 7.3422, 7.3419, 7.3417, 7.3416, 7.3422, 7.3418, 7.3415, 7.3412, 7.3409, 7.3398, 7.3396, 7.3393, 7.3399, 7.3405, 7.3403, 7.34, 7.34, 7.3396, 7.3394, 7.3391, 7.3388, 7.3387, 7.3385, 7.3382, 7.3379, 7.3376, 7.3374, 7.3373, 7.3372, 7.337, 7.3367, 7.3373, 7.3371, 7.3369, 7.3368, 7.3374, 7.3371, 7.3369, 7.3367, 7.3365, 7.3361, 7.3359, 7.3358, 7.3365, 7.3372, 7.3379, 7.3386, 7.3384, 7.3382, 7.338, 7.3387, 7.3393, 7.3394, 7.3403, 7.34, 7.34, 7.3398, 7.3404, 7.341, 7.3408, 7.3414, 7.3429, 7.3426, 7.3424, 7.3431, 7.3428, 7.3425, 7.3425, 7.3423, 7.344, 7.3437, 7.3434, 7.3432, 7.343, 7.3426, 7.3425, 7.3423, 7.3422, 7.3419, 7.3415, 7.3411, 7.3417, 7.3415, 7.3422, 7.3419, 7.3425, 7.3424, 7.3422, 7.342, 7.3408, 7.3405, 7.3403, 7.34, 7.3399, 7.3397, 7.3394, 7.3391, 7.3388, 7.3385, 7.3392, 7.339, 7.3387, 7.3384, 7.3372, 7.337, 7.3368, 7.3366, 7.3364, 7.3361, 7.3359, 7.3348, 7.3336, 7.3325, 7.3323, 7.332, 7.3326, 7.3323, 7.3329, 7.3327, 7.3326, 7.3333, 7.3339, 7.3335, 7.3342, 7.334, 7.3337, 7.3334, 7.333, 7.3327, 7.3325, 7.3323, 7.3321, 7.3328, 7.3325, 7.3331, 7.3329, 7.3326, 7.3325, 7.3323, 7.3321, 7.3318, 7.3316, 7.3313, 7.332, 7.332, 7.3318, 7.3315, 7.3304, 7.3302, 7.3302, 7.3299, 7.3306, 7.3304, 7.3302, 7.3319, 7.3317, 7.3316, 7.3322, 7.3321, 7.3317, 7.3323, 7.332, 7.3317, 7.3314, 7.332, 7.332, 7.3317, 7.3328, 7.3335, 7.3336, 7.3334, 7.3331, 7.3329, 7.3335, 7.3332, 7.3329, 7.3327, 7.3333, 7.3331, 7.3328, 7.3317, 7.3314, 7.3329, 7.3336, 7.3333, 7.334, 7.3348, 7.3345, 7.3341, 7.3338, 7.3335, 7.3332, 7.333, 7.3329, 7.3326, 7.3323, 7.332, 7.3317, 7.3315, 7.3321, 7.3318, 7.3324, 7.333, 7.3328, 7.3343, 7.3368, 7.3366, 7.3365, 7.3355, 7.3345, 7.3351, 7.335, 7.3347, 7.3344, 7.3361, 7.3368, 7.3374, 7.3372, 7.3371, 7.3368, 7.3366, 7.3365, 7.3372, 7.337, 7.3368, 7.3366, 7.3392, 7.339, 7.3387, 7.3384, 7.3374, 7.3371, 7.3369, 7.3366, 7.3365, 7.3362, 7.336, 7.3349, 7.3339, 7.3345, 7.3351, 7.3351, 7.3357, 7.3365, 7.3364, 7.3361, 7.336, 7.3368, 7.3374, 7.3376, 7.3374, 7.3372, 7.3371, 7.3369, 7.3366, 7.3363, 7.3369, 7.3367, 7.3364, 7.3362, 7.3358, 7.3356, 7.3354, 7.3352, 7.3351, 7.3347, 7.3353, 7.335, 7.3349, 7.3347, 7.3344, 7.3343, 7.3332, 7.3331, 7.3337, 7.3367, 7.3364, 7.3362, 7.336, 7.3371, 7.3379, 7.3395, 7.3396, 7.3394, 7.3395, 7.3402, 7.3399, 7.3397, 7.3395, 7.3393, 7.3401, 7.3398, 7.3404, 7.3401, 7.3407, 7.3397, 7.3386, 7.3385, 7.3386, 7.3392, 7.3381, 7.337, 7.336, 7.335, 7.3349, 7.3346, 7.3343, 7.334, 7.3329, 7.332, 7.3317, 7.3315, 7.3312, 7.331, 7.3306, 7.3305, 7.3321, 7.3319, 7.3316, 7.3322, 7.3329, 7.3327, 7.3324, 7.3323, 7.332, 7.3319, 7.3316, 7.3323, 7.332, 7.3317, 7.3314, 7.3312, 7.3309, 7.3316, 7.3322, 7.3337, 7.3334, 7.3331, 7.333, 7.3327, 7.3326, 7.3323, 7.3333, 7.333, 7.3328, 7.3326, 7.3316, 7.3313, 7.331, 7.3317, 7.3324, 7.3322, 7.3321, 7.3319, 7.3316, 7.3323, 7.332, 7.3319, 7.3325, 7.3332, 7.333, 7.3329, 7.3338, 7.3337, 7.3335, 7.3333, 7.3332, 7.3331, 7.3336, 7.3333, 7.333, 7.3328, 7.3326, 7.3324, 7.3322, 7.3319, 7.3317, 7.3315, 7.3312, 7.3309, 7.3308, 7.3306, 7.3303, 7.3301, 7.3299, 7.3305, 7.3302, 7.33, 7.33, 7.3298, 7.3298, 7.3296, 7.3296, 7.3296, 7.3314, 7.3312, 7.3309, 7.3321, 7.3324, 7.3321, 7.3322, 7.332, 7.3318, 7.3324, 7.3321, 7.332, 7.3327, 7.3325, 7.3322, 7.3319, 7.3325, 7.3323, 7.332, 7.3317, 7.3314, 7.3319, 7.3317, 7.3314, 7.3312, 7.331, 7.3308, 7.3306, 7.3303, 7.3301, 7.3309, 7.3315, 7.3313, 7.3312, 7.3309, 7.3306, 7.3303, 7.331, 7.3322, 7.333, 7.3337, 7.3334, 7.3324, 7.3322, 7.3322, 7.332, 7.3317, 7.3314, 7.3313, 7.332, 7.3317, 7.3315, 7.3312, 7.3339, 7.3328, 7.3343, 7.3341, 7.3339, 7.3338, 7.3335, 7.3333, 7.3334, 7.3331, 7.3328, 7.3326, 7.3332, 7.3329, 7.3327, 7.3324, 7.3321, 7.3319, 7.3325, 7.3331, 7.3328, 7.3325, 7.3322, 7.332, 7.3317, 7.3315, 7.333, 7.332, 7.3318, 7.3324, 7.3321, 7.332, 7.3318, 7.3315, 7.3313, 7.331, 7.3308, 7.3297, 7.3295, 7.3293, 7.3293, 7.3291, 7.3288, 7.3286, 7.3283, 7.3282, 7.3285, 7.3292, 7.3289, 7.3287, 7.3294, 7.3292, 7.329, 7.3298, 7.3295, 7.3293, 7.3291, 7.329, 7.3288, 7.3286, 7.3284, 7.3283, 7.3281, 7.328, 7.3277, 7.3276, 7.3274, 7.3272, 7.327, 7.3267, 7.3272, 7.327, 7.3268, 7.3266, 7.3263, 7.326, 7.3257, 7.3255, 7.3254, 7.3251, 7.3249, 7.3246, 7.3264, 7.3262, 7.326, 7.3259, 7.3256, 7.3262, 7.3269, 7.3268, 7.3265, 7.3271, 7.3268, 7.3266, 7.3263, 7.3262, 7.3272, 7.3272, 7.3269, 7.3267, 7.3264, 7.3261, 7.3259, 7.3256, 7.3254, 7.3245, 7.3252, 7.325, 7.3248, 7.3252, 7.3249, 7.3255, 7.3265, 7.3272, 7.3286, 7.3292, 7.3294, 7.3292, 7.329, 7.3287, 7.329700000000001, 7.3296, 7.3302, 7.3301, 7.3298, 7.3304, 7.3302, 7.33, 7.33, 7.331, 7.332000000000001, 7.3312, 7.331, 7.3307, 7.3313, 7.332, 7.3318, 7.3317, 7.3316, 7.3315, 7.3321, 7.3315, 7.3325, 7.3324, 7.3324, 7.3329, 7.3326, 7.3324, 7.3321, 7.3319, 7.3317, 7.3324, 7.333, 7.3336, 7.3334, 7.3333, 7.3331, 7.333, 7.3328, 7.3326, 7.3332, 7.3329, 7.3327, 7.3325, 7.3322, 7.3319, 7.3317, 7.3315, 7.3329, 7.3329, 7.3335, 7.3332, 7.3329, 7.3336, 7.3334, 7.334, 7.3346, 7.3344, 7.3341, 7.3339, 7.3336, 7.3333, 7.333, 7.3336, 7.3333, 7.3332, 7.3329, 7.3326, 7.3323, 7.3322, 7.332, 7.3326, 7.3324, 7.3322, 7.3322, 7.3348, 7.3346, 7.3344, 7.3341, 7.3347, 7.3345, 7.3344, 7.3344, 7.3343, 7.3341, 7.3338, 7.3344, 7.3341, 7.3339, 7.3336, 7.3335, 7.3333, 7.3336, 7.3343, 7.3341, 7.3338, 7.3337, 7.3336, 7.3342, 7.3348, 7.3354, 7.3352, 7.3349, 7.3356, 7.3363, 7.336, 7.3359, 7.3357, 7.3354, 7.336, 7.3357, 7.3355, 7.3353, 7.335, 7.3348, 7.3354, 7.3351, 7.335, 7.3348, 7.3354, 7.3359, 7.3356, 7.3362, 7.3359, 7.3356, 7.3353, 7.3359, 7.3349, 7.3347, 7.3345, 7.3344, 7.3342, 7.3363, 7.336, 7.336, 7.3357, 7.3354, 7.336, 7.3357, 7.3355, 7.3361, 7.3358, 7.3365, 7.3365, 7.3362, 7.3368, 7.3366, 7.3371, 7.3377, 7.3374, 7.3371, 7.3377, 7.3374, 7.3371, 7.3368, 7.3366, 7.3363, 7.3377, 7.3393, 7.339, 7.3388, 7.3385, 7.3382, 7.3379, 7.3377, 7.3374, 7.3381, 7.3379, 7.3376, 7.3381, 7.3379, 7.3377, 7.3374, 7.3376, 7.3382, 7.338, 7.3402, 7.3401, 7.3399, 7.3397, 7.3395, 7.3393, 7.3398, 7.3396, 7.3395, 7.3402, 7.34, 7.3397, 7.3396, 7.3399, 7.3398, 7.3397, 7.3394, 7.3404, 7.3401, 7.3399, 7.3397, 7.3396, 7.3393, 7.3393, 7.3391, 7.3398, 7.3403, 7.34, 7.3397, 7.3411, 7.3408, 7.3406, 7.3412, 7.3409, 7.3401, 7.3398, 7.3399, 7.3401, 7.3424, 7.3422, 7.3427, 7.3425, 7.344, 7.343, 7.3428, 7.3426, 7.3423, 7.3421, 7.341, 7.3416, 7.3453, 7.3451, 7.3449, 7.3455, 7.3452, 7.3457, 7.3455, 7.3452, 7.3449, 7.3446, 7.3451, 7.3449, 7.3446, 7.3436, 7.3433, 7.3431, 7.3428, 7.3426, 7.3423, 7.3421, 7.3418, 7.3416, 7.3421, 7.3418, 7.3424, 7.343, 7.3435, 7.3458, 7.3457, 7.3463, 7.3461, 7.3458, 7.3456, 7.3454, 7.3452, 7.3458, 7.3455, 7.3452, 7.3457, 7.3454, 7.3451, 7.3449, 7.3446, 7.3443, 7.3448, 7.3454, 7.3452, 7.3457, 7.3454, 7.3459, 7.3457, 7.3471, 7.3476, 7.349, 7.3487, 7.3492, 7.3489, 7.3486, 7.3484, 7.3482, 7.3474, 7.3471, 7.3468, 7.3473, 7.3471, 7.3476, 7.3473, 7.347, 7.3478, 7.3489, 7.3486, 7.3483, 7.348, 7.3482, 7.3479, 7.3471, 7.3476, 7.3474, 7.3479, 7.3476, 7.3482, 7.3479, 7.3476, 7.3473, 7.3479, 7.3477, 7.3469, 7.3489, 7.3514, 7.3511, 7.3509, 7.3507, 7.3505, 7.351, 7.3507, 7.3504, 7.351, 7.3509, 7.3516, 7.3516, 7.3522, 7.352, 7.3517, 7.3517, 7.3515, 7.3514, 7.3521, 7.3519, 7.3516, 7.3515, 7.3513, 7.351, 7.3516, 7.3515, 7.3513, 7.352, 7.3517, 7.3516, 7.3514, 7.3513, 7.3519, 7.3526, 7.3533, 7.3536, 7.3534, 7.3533, 7.3539, 7.3554, 7.3561, 7.3559, 7.3556, 7.3553, 7.3564, 7.357, 7.3568, 7.3574, 7.3579, 7.3576, 7.3573, 7.357, 7.3572, 7.3571, 7.3578, 7.3586, 7.3584, 7.3583, 7.3611, 7.3617, 7.3614, 7.3612, 7.3609, 7.3606, 7.3603, 7.3601, 7.3598, 7.3595, 7.3601, 7.3599, 7.3604, 7.3601, 7.3599, 7.3597, 7.3594, 7.3592, 7.3589, 7.3587, 7.3585, 7.3583, 7.3588, 7.3586, 7.3609, 7.3621, 7.3622, 7.362, 7.3617, 7.3614, 7.3611, 7.3608, 7.3607, 7.3605, 7.3602, 7.3599, 7.3597, 7.3589, 7.3589, 7.3589, 7.3587, 7.3587, 7.3585, 7.3583, 7.3581, 7.3591, 7.3589, 7.3587, 7.3587, 7.3587, 7.3584, 7.3581, 7.3578, 7.3582, 7.3579, 7.3584, 7.3583, 7.3581, 7.3578, 7.3577, 7.3575, 7.3573, 7.357, 7.3569, 7.3575, 7.3574, 7.3571, 7.3568, 7.3567, 7.3573, 7.3579, 7.3577, 7.3576, 7.3575, 7.3574, 7.3579, 7.3577, 7.3583, 7.3589, 7.3587, 7.3585, 7.359, 7.3589, 7.3594, 7.3591, 7.3596, 7.3594, 7.3592, 7.359, 7.3588, 7.3585, 7.3582, 7.3579, 7.3578, 7.3576, 7.3581, 7.358, 7.3579, 7.3577, 7.3614, 7.3612, 7.3619, 7.3617, 7.3618, 7.3617, 7.3616, 7.3615, 7.3624, 7.3616, 7.3617, 7.3616, 7.3614, 7.3612, 7.3609, 7.3625, 7.3639, 7.3638, 7.3636, 7.3633, 7.3638, 7.3635, 7.3649, 7.3646, 7.3643, 7.3641, 7.3639, 7.3644, 7.3642, 7.364, 7.3639, 7.3637, 7.3635, 7.364, 7.3638, 7.3643, 7.3641, 7.3638, 7.3636, 7.3634, 7.3631, 7.3628, 7.3625, 7.3623, 7.3628, 7.3626, 7.3624, 7.3621, 7.362, 7.3618, 7.3616, 7.3621, 7.3618, 7.3615, 7.3613, 7.361, 7.3607, 7.3605, 7.3602, 7.36, 7.3597, 7.3602, 7.3599, 7.3599, 7.3598, 7.3595, 7.3593, 7.3599, 7.3597, 7.3596, 7.3593, 7.3598, 7.3596, 7.3602, 7.3601, 7.36, 7.3597, 7.3596, 7.3593, 7.3583, 7.358, 7.3586, 7.3584, 7.3589, 7.3594, 7.3594, 7.3599, 7.3605, 7.361, 7.3607, 7.3605, 7.3605, 7.3602, 7.3599], '192.168.122.116': [5.8451, 5.9485, 5.9704, 6.1529, 6.1231, 6.1417, 6.0491, 5.9869, 5.9538, 6.5083, 6.584, 6.6237, 6.5819, 6.9483, 6.8712, 6.7999, 6.7793, 6.7595, 6.7005, 6.648, 6.6776, 6.6291, 6.5947, 6.6948, 7.2324, 7.5639, 7.5033, 7.672, 7.9681, 8.3117, 8.2446, 8.6666, 8.5954, 8.5263, 8.4387, 8.35, 8.4127, 8.3591, 8.2846, 8.2192, 8.2856, 8.2193, 8.1658, 8.1193, 8.1823, 8.124, 8.0684, 8.0151, 8.0721, 8.0196, 7.9871, 7.9449, 7.896, 7.8577, 7.9159, 7.9668, 7.9505, 8.0993, 8.0557, 8.0361, 7.9958, 7.9532, 7.9218, 7.9779, 7.9515, 7.998, 7.9583, 7.9281, 7.8926, 7.9451, 7.9115, 8.0709, 8.0404, 8.0187, 7.9822, 7.9478, 7.9297, 7.925, 7.8953, 7.8698, 7.8463, 7.8174, 7.7953, 7.7843, 7.7555, 7.7397, 7.8007, 7.7801, 7.7558, 7.7512, 7.7369, 7.7115, 7.6985, 7.6726, 7.6561, 7.69, 7.6658, 7.6506, 7.6349, 7.6127, 7.6035, 7.6391, 7.6713, 7.6516, 7.6433, 7.7159, 7.695, 7.7276, 7.7117, 7.6905, 7.6769, 7.659, 7.6521, 7.6958, 7.7263, 7.7091, 7.7083, 7.6931, 7.687, 7.6694, 7.6601, 7.6881, 7.6722, 7.6992, 7.682, 7.6648, 7.6478, 7.6808, 7.7073, 7.6946, 7.6776, 7.6637, 7.648, 7.6396, 7.6252, 7.6101, 7.5929, 7.5777, 7.5691, 7.5606, 7.5468, 7.5347, 7.5206, 7.5448, 7.5311, 7.5554, 7.544, 7.5669, 7.5549, 7.5427, 7.5308, 7.5553, 7.5471, 7.5401, 7.5319, 7.5193, 7.5051, 7.5005, 7.4861, 7.5055, 7.4654, 7.484, 7.4764, 7.4637, 7.4871, 7.4738, 7.4924, 7.4813, 7.4773, 7.467, 7.4542, 7.5333, 7.5257, 7.5156, 7.5049, 7.4947, 7.4893, 7.4774, 7.5003, 7.4933, 7.493, 7.5113, 7.5078, 7.5302, 7.5677, 7.6157, 7.6054, 7.6078, 7.6332, 7.6242, 7.6161, 7.6068, 7.5953, 7.593, 7.5891, 7.5848, 7.5984, 7.5895, 7.6095, 7.6049, 7.5944, 7.6374, 7.6549, 7.6435, 7.6335, 7.6256, 7.6209, 7.6151, 7.7211, 7.7353, 7.726, 7.7189, 7.7147, 7.7051, 7.6956, 7.7114, 7.7013, 7.6909, 7.6841, 7.6743, 7.6874, 7.6781, 7.6703, 7.6633, 7.6551, 7.6468, 7.6367, 7.6511, 7.6447, 7.6386, 7.6524, 7.622, 7.6141, 7.6044, 7.6004, 7.5917, 7.5826, 7.5731, 7.5647, 7.5767, 7.5683, 7.5622, 7.5536, 7.5667, 7.5573, 7.5483, 7.5441, 7.5172, 7.5316, 7.5322, 7.5071, 7.5235, 7.5193, 7.4957, 7.5323, 7.5238, 7.5208, 7.5169, 7.5095, 7.5023, 7.5004, 7.4929, 7.487, 7.4807, 7.4751, 7.4872, 7.504, 7.5197, 7.5358, 7.5276, 7.5256, 7.5172, 7.5118, 7.5061, 7.5188, 7.5108, 7.5042, 7.5045, 7.4985, 7.4917, 7.5046, 7.5175, 7.51, 7.5023, 7.4975, 7.4929, 7.4869, 7.4797, 7.4729, 7.4729, 7.4781, 7.4736, 7.4723, 7.466, 7.4591, 7.4535, 7.4502, 7.4449, 7.4396, 7.4543, 7.4691, 7.4655, 7.4587, 7.4522, 7.4449, 7.4397, 7.4447, 7.4423, 7.4395, 7.4373, 7.4337, 7.4271, 7.4218, 7.4017, 7.3962, 7.3925, 7.3857, 7.3802, 7.3748, 7.368, 7.3628, 7.3577, 7.3684, 7.3784, 7.3721, 7.3671, 7.3639, 7.3765, 7.3732, 7.3854, 7.3818, 7.3786, 7.3895, 7.386, 7.3845, 7.3798, 7.3971, 7.391, 7.3908, 7.3861, 7.3812, 7.3927, 7.3886, 7.4006, 7.3956, 7.3921, 7.3894, 7.3926, 7.4037, 7.3997, 7.3979, 7.3924, 7.3883, 7.3839, 7.3791, 7.3742, 7.3694, 7.3804, 7.3774, 7.3898, 7.3852, 7.3844, 7.3812, 7.3768, 7.3715, 7.3678, 7.3646, 7.3606, 7.3596, 7.3711, 7.3722, 7.3699, 7.3651, 7.365, 7.3742, 7.372, 7.3664, 7.3629, 7.3628, 7.3616, 7.3588, 7.3563, 7.3646, 7.362, 7.3593, 7.356, 7.3524, 7.3606, 7.358, 7.3529, 7.3617, 7.3588, 7.3539, 7.3489, 7.3774, 7.3737, 7.3721, 7.3697, 7.3672, 7.3662, 7.3614, 7.3572, 7.3547, 7.35, 7.3589, 7.3546, 7.3508, 7.3606, 7.357, 7.3673, 7.3634, 7.3761, 7.372, 7.3694, 7.3797, 7.3774, 7.3744, 7.3724, 7.3807, 7.3772, 7.3731, 7.3682, 7.3768, 7.3765, 7.3755, 7.3756, 7.3727, 7.369, 7.3673, 7.3634, 7.3634, 7.3591, 7.3568, 7.3536, 7.3492, 7.3519, 7.361, 7.3578, 7.3546, 7.3774, 7.3923, 7.4148, 7.41, 7.4061, 7.415, 7.4122, 7.4599, 7.4558, 7.4438, 7.4401, 7.4355, 7.4318, 7.4527, 7.4611, 7.4582, 7.4559, 7.4534, 7.4498, 7.4476, 7.4453, 7.441, 7.4391, 7.4357, 7.4549, 7.5001, 7.497, 7.4925, 7.489, 7.4966, 7.4925, 7.4908, 7.4893, 7.4861, 7.4816, 7.4771, 7.4751, 7.4732, 7.47, 7.4669, 7.4626, 7.459, 7.4563, 7.456, 7.4517, 7.4532, 7.4525, 7.4524, 7.4764, 7.4721, 7.4833, 7.4963, 7.4939, 7.4936, 7.5017, 7.4979, 7.495, 7.5024, 7.5014, 7.4975, 7.4962, 7.4949, 7.4919, 7.4887, 7.4849, 7.4828, 7.4904, 7.4865, 7.4826, 7.5011, 7.4983, 7.5016, 7.4991, 7.5061, 7.5039, 7.4999, 7.4967, 7.494, 7.491, 7.4875, 7.4866, 7.494, 7.4922, 7.489, 7.5095, 7.5063, 7.503, 7.5001, 7.4967, 7.4958, 7.4937, 7.4915, 7.4888, 7.486, 7.4856, 7.4924, 7.4908, 7.4974, 7.4935, 7.5004, 7.4966, 7.4937, 7.4912, 7.4896, 7.4867, 7.4932, 7.4905, 7.4888, 7.4949, 7.492, 7.4902, 7.4996, 7.5055, 7.5039, 7.5005, 7.5073, 7.508, 7.5071, 7.5138, 7.5098, 7.5064, 7.503, 7.509, 7.5061, 7.5035, 7.4997, 7.497, 7.4943, 7.4911, 7.4888, 7.4863, 7.4855, 7.4836, 7.4807, 7.4781, 7.4942, 7.4996, 7.4968, 7.4932, 7.4909, 7.496, 7.494, 7.491, 7.4898, 7.4873, 7.484, 7.4811, 7.4775, 7.4659, 7.4629, 7.4594, 7.4576, 7.4542, 7.4514, 7.4479, 7.4455, 7.4427, 7.4394, 7.4362, 7.4328, 7.4299, 7.4289, 7.4252, 7.4309, 7.4293, 7.4275, 7.4243, 7.423, 7.4117, 7.4085, 7.4238, 7.4203, 7.4178, 7.4162, 7.4142, 7.4109, 7.4079, 7.4055, 7.403, 7.4173, 7.4142, 7.4108, 7.4076, 7.4044, 7.402, 7.4, 7.3981, 7.3965, 7.3948, 7.3917, 7.4061, 7.4028, 7.3995, 7.4046, 7.4029, 7.3998, 7.3966, 7.3937, 7.3988, 7.3976, 7.3944, 7.4008, 7.4035, 7.4031, 7.4092, 7.4066, 7.4042, 7.4034, 7.4008, 7.3984, 7.3952, 7.4005, 7.3993, 7.3979, 7.3957, 7.3943, 7.3916, 7.389, 7.3865, 7.3834, 7.3844, 7.3818, 7.3796, 7.3766, 7.3751, 7.3753, 7.3722, 7.3924, 7.3928, 7.4068, 7.4048, 7.4051, 7.4034, 7.4093, 7.408, 7.4074, 7.4046, 7.4106, 7.4082, 7.4055, 7.4034, 7.4012, 7.4003, 7.3981, 7.3969, 7.3952, 7.3924, 7.3896, 7.3882, 7.3854, 7.3834, 7.3825, 7.3799, 7.3772, 7.3774, 7.3762, 7.3752, 7.3732, 7.3725, 7.3713, 7.3698, 7.368, 7.3657, 7.3636, 7.3623, 7.3598, 7.3648, 7.3698, 7.367, 7.3641, 7.3618, 7.3595, 7.359, 7.3573, 7.355, 7.3532, 7.3529, 7.3656, 7.3633, 7.3608, 7.3591, 7.3566, 7.3541, 7.3525, 7.3499, 7.3476, 7.3459, 7.3506, 7.3494, 7.3543, 7.3527, 7.3578, 7.3557, 7.354, 7.3534, 7.3513, 7.3491, 7.3462, 7.3442, 7.3428, 7.3482, 7.346, 7.3438, 7.3426, 7.3405, 7.3399, 7.3379, 7.3358, 7.3339, 7.3324, 7.3302, 7.3275, 7.3322, 7.3311, 7.3286, 7.3262, 7.3237, 7.322, 7.3195, 7.3177, 7.3167, 7.317, 7.3165, 7.3163, 7.3154, 7.3141, 7.3115, 7.3096, 7.3072, 7.3063, 7.3116, 7.3094, 7.308, 7.3065, 7.3065, 7.3048, 7.304, 7.3073, 7.3053, 7.3038, 7.316, 7.3144, 7.3127, 7.3179, 7.3168, 7.3169, 7.3146, 7.313, 7.3108, 7.3155, 7.3206, 7.3192, 7.3168, 7.3155, 7.3132, 7.3108, 7.3091, 7.3083, 7.3057, 7.3037, 7.302, 7.3002, 7.3008, 7.3022, 7.3002, 7.3002, 7.298, 7.3025, 7.3001, 7.3011, 7.3013, 7.2991, 7.3028, 7.3017, 7.2996, 7.2982, 7.296, 7.2948, 7.2936, 7.2982, 7.3027, 7.3017, 7.3012, 7.3001, 7.2983, 7.296, 7.2942, 7.299, 7.2973, 7.2959, 7.3009, 7.3062, 7.3048, 7.3037, 7.3038, 7.302, 7.3004, 7.2983, 7.296, 7.3011, 7.2992, 7.3034, 7.3036, 7.3026, 7.3002, 7.3042, 7.3025, 7.301, 7.2987, 7.3031, 7.3121, 7.3104, 7.3084, 7.3075, 7.3128, 7.3114, 7.3095, 7.3079, 7.3128, 7.3174, 7.3154, 7.3147, 7.3127, 7.3111, 7.3101, 7.308, 7.3068, 7.3065, 7.305, 7.3046, 7.3023, 7.3014, 7.2994, 7.2977, 7.2966, 7.295, 7.2992, 7.2969, 7.3012, 7.3073, 7.3059, 7.3051, 7.3037, 7.3014, 7.2992, 7.297, 7.2984, 7.2961, 7.294, 7.2918, 7.2896, 7.288, 7.2862, 7.2842, 7.282, 7.2797, 7.2798, 7.2777, 7.2783, 7.2763, 7.2759, 7.2739, 7.2718, 7.2699, 7.2679, 7.2721, 7.2699, 7.2681, 7.2691, 7.2688, 7.2674, 7.2654, 7.2582, 7.2567, 7.2559, 7.2556, 7.2543, 7.2702, 7.2805, 7.2909, 7.2889, 7.2945, 7.2934, 7.2922, 7.2917, 7.2912, 7.2956, 7.2942, 7.2932, 7.2913, 7.2912, 7.2908, 7.2894, 7.2892, 7.2932, 7.2875, 7.2945, 7.303, 7.3106, 7.3089, 7.3073, 7.3124, 7.3161, 7.3143, 7.318, 7.3217, 7.3259, 7.3244, 7.3277, 7.3284, 7.3339, 7.3325, 7.3314, 7.3347, 7.3441, 7.3425, 7.3439, 7.3422, 7.3405, 7.3403, 7.3392, 7.3426, 7.3413, 7.3411, 7.3444, 7.3423, 7.3402, 7.3391, 7.3374, 7.342, 7.3457, 7.3445, 7.3428, 7.3413, 7.34, 7.3408, 7.3396, 7.342, 7.3403, 7.3388, 7.343, 7.3423, 7.3407, 7.3388, 7.3377, 7.3411, 7.3452, 7.3434, 7.3487, 7.352, 7.3553, 7.3538, 7.357, 7.3609, 7.3597, 7.3576, 7.3555, 7.354, 7.352, 7.3505, 7.3445, 7.3382, 7.3382, 7.3363, 7.335, 7.333, 7.3324, 7.3316, 7.3296, 7.3278, 7.3371, 7.3356, 7.3339, 7.3327, 7.3307, 7.3291, 7.3278, 7.3261, 7.3245, 7.3231, 7.3224, 7.3211, 7.3254, 7.3242, 7.3228, 7.3272, 7.3263, 7.3248, 7.3233, 7.3228, 7.3269, 7.3262, 7.3243, 7.3223, 7.323300000000001, 7.3277, 7.3258, 7.3247, 7.3234, 7.322, 7.3267, 7.3315, 7.3307, 7.3292, 7.3273, 7.3357, 7.3357, 7.3389, 7.3421, 7.3453, 7.3547, 7.3548, 7.3765, 7.3748, 7.374, 7.3724, 7.3717, 7.3698, 7.3699, 7.3731, 7.3715, 7.375, 7.3734, 7.3722, 7.3765, 7.3823, 7.3808, 7.3789, 7.3783, 7.3767, 7.375, 7.3743, 7.3727, 7.3847, 7.3835, 7.3902, 7.3883, 7.3921, 7.3904, 7.3888, 7.3874, 7.3858, 7.3847, 7.3925, 7.3907, 7.3942, 7.3928, 7.4114, 7.4099, 7.4085, 7.4066, 7.4048, 7.399, 7.3982, 7.3966, 7.3953, 7.3994, 7.399, 7.3973, 7.3977, 7.3963, 7.4006, 7.3992, 7.398, 7.3966, 7.3953, 7.3986, 7.4019, 7.4014, 7.4003, 7.3991, 7.4021, 7.4002, 7.4038, 7.4075, 7.4078, 7.4112, 7.4093, 7.4074, 7.4064, 7.4059, 7.404, 7.4028, 7.4013, 7.3997, 7.4024, 7.4006, 7.3992, 7.3975, 7.3959, 7.3943, 7.3928, 7.3913, 7.3894, 7.3879, 7.3871, 7.3853, 7.3891, 7.3876, 7.3867, 7.3849, 7.3838, 7.3874, 7.3863, 7.3901, 7.3935, 7.3917, 7.3915, 7.3906, 7.389, 7.3872, 7.3861, 7.391, 7.3897, 7.3878, 7.3907, 7.3899, 7.3882, 7.3867, 7.3859, 7.3852, 7.384, 7.3868, 7.3856, 7.3844, 7.3828, 7.381, 7.3793, 7.3779, 7.3855, 7.386, 7.3843, 7.3825, 7.3828, 7.3821, 7.3813, 7.38, 7.3788, 7.3775, 7.3804, 7.3787, 7.3814, 7.3799, 7.3783, 7.3766, 7.3749, 7.3733, 7.3763, 7.379, 7.3775, 7.3761, 7.3746, 7.3731, 7.3717, 7.3713, 7.3701, 7.3686, 7.3678, 7.3661, 7.3703, 7.3687, 7.368, 7.371, 7.375, 7.3737, 7.3811, 7.3805, 7.3803, 7.3787, 7.377, 7.3802, 7.3785, 7.3774, 7.3773, 7.3757, 7.3748, 7.3748, 7.3743, 7.3734, 7.3721, 7.3753, 7.3782, 7.3776, 7.3776, 7.3763, 7.3754, 7.4028, 7.4012, 7.4007, 7.3994, 7.3992, 7.3977, 7.396, 7.3953, 7.3947, 7.3941, 7.3926, 7.4053, 7.4039, 7.3991, 7.3981, 7.3968, 7.3956, 7.3947, 7.3978, 7.3963, 7.3952, 7.3937, 7.3928, 7.3918, 7.3907, 7.3892, 7.3885, 7.3878, 7.3908, 7.3898, 7.3885, 7.3874, 7.391, 7.3942, 7.3926, 7.3915, 7.3907, 7.3935, 7.3882, 7.3868, 7.3854, 7.3844, 7.3874, 7.3865, 7.3855, 7.384, 7.3878, 7.3871, 7.3863, 7.3855, 7.3855, 7.3844, 7.3843, 7.3841, 7.3872, 7.3862, 7.385, 7.3834, 7.3826, 7.3853, 7.3881, 7.3871, 7.3959, 7.3953, 7.3941, 7.3942, 7.3969, 7.3963, 7.3952, 7.3978, 7.3998, 7.3983, 7.3974, 7.3959, 7.3943, 7.3929, 7.3914, 7.3903, 7.3888, 7.3872, 7.3858, 7.3854, 7.3883, 7.387, 7.3863, 7.3852, 7.3889, 7.388, 7.388, 7.3866, 7.3862, 7.3884, 7.3873, 7.3869, 7.3861, 7.3847, 7.3841, 7.3835, 7.383, 7.3814, 7.3799, 7.3823, 7.381, 7.3795, 7.3789, 7.3774, 7.3761, 7.3753, 7.374, 7.3725, 7.3754, 7.3739, 7.3725, 7.3713, 7.37, 7.3686, 7.3678, 7.3701, 7.3687, 7.3679, 7.3667, 7.3653, 7.3641, 7.3671, 7.3658, 7.365, 7.3648, 7.3635, 7.362, 7.3606, 7.3603, 7.359, 7.3582, 7.3576, 7.3562, 7.3551, 7.3537, 7.3523, 7.3515, 7.3513, 7.3499, 7.3485, 7.3543, 7.3533, 7.3523, 7.351, 7.3506, 7.3525, 7.351, 7.3535, 7.3522, 7.3513, 7.3507, 7.3532, 7.3556, 7.3586, 7.3578, 7.3563, 7.3558, 7.3547, 7.3547, 7.3533, 7.3525, 7.3733, 7.3815, 7.3803, 7.383, 7.3855, 7.384, 7.3829, 7.3817, 7.3804, 7.3796, 7.3788, 7.3812, 7.38, 7.3795, 7.3782, 7.3771, 7.3765, 7.3767, 7.3758, 7.3743, 7.373, 7.3744, 7.3772, 7.3808, 7.3796, 7.382, 7.3808, 7.3796, 7.3784, 7.377, 7.3758, 7.375, 7.3738, 7.3724, 7.3709, 7.3696, 7.3721, 7.3713, 7.3699, 7.3692, 7.3679, 7.3666, 7.3695, 7.3721, 7.3712, 7.3714, 7.3752, 7.3776, 7.3765, 7.3758, 7.3749, 7.3774, 7.376, 7.3747, 7.3771, 7.3758, 7.3751, 7.3741, 7.3738, 7.3728, 7.3724, 7.371, 7.3735, 7.3759, 7.3745, 7.3735, 7.3838, 7.3826, 7.3815, 7.3806, 7.3793, 7.3819, 7.3807, 7.38, 7.3799, 7.3787, 7.3782, 7.3771, 7.3812, 7.377, 7.3758, 7.3751, 7.3739, 7.3731, 7.3717, 7.3744, 7.3742, 7.3769, 7.3801, 7.3795, 7.3826, 7.3857, 7.3855, 7.3855, 7.3849, 7.3846, 7.3835, 7.3825, 7.3822, 7.3817, 7.3811, 7.3837, 7.3868, 7.3858, 7.3883, 7.3872, 7.3863, 7.3859, 7.3884, 7.3874, 7.3862, 7.3886, 7.3885, 7.3908, 7.393, 7.3954, 7.3944, 7.39, 7.3904, 7.3894, 7.3884, 7.3873, 7.3859, 7.385, 7.3843, 7.3868, 7.3858, 7.3847, 7.3833, 7.3824, 7.3845, 7.3866, 7.3862, 7.385, 7.384, 7.3833, 7.3849, 7.3879, 7.3871, 7.3893, 7.3881, 7.387, 7.3864, 7.387, 7.3895, 7.3997, 7.3984, 7.4192, 7.4225, 7.4215, 7.4206, 7.4192, 7.418, 7.417, 7.4159, 7.4209, 7.4211, 7.4234, 7.4222, 7.421, 7.4197, 7.4189, 7.4177, 7.4165, 7.4153, 7.4144, 7.4136, 7.4133, 7.412, 7.4109, 7.4103, 7.4091, 7.4113, 7.4106, 7.4097, 7.4084, 7.4075, 7.4064, 7.4052, 7.4049, 7.4044, 7.4034, 7.4121, 7.4141, 7.4129, 7.412, 7.4166, 7.4222, 7.4215, 7.4202, 7.4189, 7.4179, 7.4202, 7.4207, 7.4275, 7.4334, 7.4355, 7.4347, 7.4334, 7.4325, 7.4347, 7.4371, 7.4392, 7.4414, 7.4402, 7.4388, 7.4378, 7.4402, 7.4391, 7.4382, 7.4369, 7.439, 7.442, 7.4411, 7.4405, 7.4399, 7.4386, 7.4373, 7.4361, 7.4382, 7.4374, 7.4368, 7.4357, 7.4346, 7.4337, 7.4324, 7.4313, 7.4305, 7.4331, 7.4324, 7.4392, 7.4383, 7.4372, 7.4363, 7.436, 7.435, 7.4343, 7.4334, 7.4371, 7.4363, 7.4384, 7.4371, 7.436, 7.4351, 7.434, 7.4438, 7.4458, 7.4453, 7.4443, 7.4463, 7.4455, 7.4476, 7.4477, 7.4464, 7.4451, 7.4554, 7.4549, 7.4539, 7.4526, 7.4517, 7.451, 7.4497, 7.4492, 7.4483, 7.4473, 7.446, 7.4456, 7.4449, 7.444, 7.4432, 7.4424, 7.4447, 7.4433, 7.4422, 7.4416, 7.4409, 7.4404, 7.4392, 7.4384, 7.4405, 7.4426, 7.4414, 7.4434, 7.4455, 7.4464, 7.4453, 7.4449, 7.444, 7.4461, 7.4448, 7.4439, 7.443, 7.4452, 7.444, 7.4428, 7.4417, 7.4409, 7.4404, 7.4394, 7.4383, 7.4393, 7.438, 7.4375, 7.4368, 7.4379, 7.4369, 7.4361, 7.4351, 7.4362, 7.4467, 7.4458, 7.4446, 7.4436, 7.4506, 7.4526, 7.4513, 7.4502, 7.4493, 7.4482, 7.4504, 7.4559, 7.455, 7.4537, 7.4559, 7.4561, 7.455, 7.4556, 7.4579, 7.4569, 7.4559, 7.456, 7.4614, 7.4604, 7.4724, 7.4686, 7.4675, 7.4672, 7.4663, 7.4663, 7.4661, 7.4648, 7.4636, 7.463, 7.4652, 7.4648, 7.4666, 7.4657, 7.4648, 7.4636, 7.4625, 7.4613, 7.4607, 7.4602, 7.4634, 7.4625, 7.4619, 7.461, 7.4606, 7.465, 7.4639, 7.4629, 7.459, 7.458, 7.4575, 7.4571, 7.4662, 7.4665, 7.4697, 7.4673, 7.4727, 7.4774, 7.4764, 7.4754, 7.4742, 7.4735, 7.4756, 7.4808, 7.4821, 7.4843, 7.4862, 7.4853, 7.4872, 7.4859, 7.4864, 7.4856, 7.4846, 7.4838, 7.4826, 7.4816, 7.4806, 7.4798, 7.4791, 7.4912, 7.4934, 7.4962, 7.5028, 7.505, 7.5051, 7.5047, 7.5036, 7.5032, 7.4993, 7.4983, 7.4979, 7.4969, 7.4958, 7.4947, 7.4943, 7.4931, 7.4952, 7.4945, 7.4935, 7.4954, 7.4945, 7.4964, 7.4953, 7.4943, 7.4961, 7.4951, 7.4972, 7.4961, 7.4954, 7.4942, 7.4931, 7.492, 7.4911, 7.493, 7.4924, 7.4913, 7.4906, 7.49, 7.4907, 7.4896, 7.4884, 7.4901, 7.4891, 7.4879, 7.4874, 7.4863, 7.4885, 7.4873, 7.4863, 7.4881, 7.4875, 7.4864, 7.4881, 7.4875, 7.4865, 7.4853, 7.4845, 7.4836, 7.4826, 7.4817, 7.4835, 7.4823, 7.4812, 7.4833, 7.4824, 7.4842, 7.4863, 7.4857, 7.4848, 7.4841, 7.4842, 7.4857, 7.4851, 7.4848, 7.4843, 7.4837, 7.4827, 7.4818, 7.4839, 7.4828, 7.4851, 7.484, 7.4832, 7.4821, 7.4809, 7.4828, 7.4821, 7.4841, 7.4834, 7.4822, 7.4812, 7.4806, 7.4796, 7.479, 7.4791, 7.4781, 7.4772, 7.4761, 7.476, 7.4837, 7.4816, 7.4807, 7.4827, 7.4819, 7.4819, 7.485, 7.4901, 7.4893, 7.4888, 7.4878, 7.4898, 7.5058, 7.505, 7.5068, 7.506, 7.5053, 7.5044, 7.5035, 7.5026, 7.5015, 7.5004, 7.4994, 7.5001, 7.5027, 7.5021, 7.5009, 7.4998, 7.4992, 7.4986, 7.5005, 7.4997, 7.499, 7.5046, 7.5036, 7.504, 7.5008, 7.5001, 7.5069, 7.5065, 7.5058, 7.5054, 7.5043, 7.5032, 7.5027, 7.5024, 7.5015, 7.5033, 7.5026, 7.5019, 7.5037, 7.5034, 7.5053, 7.5048, 7.5042, 7.506, 7.5051, 7.504, 7.5029, 7.5022, 7.5014, 7.5004, 7.4996, 7.4988, 7.4982, 7.4978, 7.4994, 7.4985, 7.4981, 7.4999, 7.5018, 7.5007, 7.5003, 7.5022, 7.5041, 7.5034, 7.5024, 7.5017, 7.501, 7.5027, 7.5024, 7.5019, 7.5011, 7.5003, 7.4993, 7.4988, 7.4977, 7.4971, 7.4968, 7.496, 7.4963, 7.4934, 7.4935, 7.4926, 7.4917, 7.4935, 7.4998, 7.5049, 7.504, 7.5061, 7.5051, 7.5049, 7.5042, 7.5037, 7.5027, 7.5021, 7.5036, 7.5034, 7.5056, 7.5046, 7.5035, 7.5025, 7.5016, 7.5005, 7.4996, 7.4987, 7.5002, 7.4994, 7.4985, 7.4979, 7.4976, 7.497, 7.496, 7.4958, 7.4954, 7.4972, 7.4961, 7.495, 7.4967, 7.496, 7.4951, 7.4943, 7.4957, 7.4952, 7.4947, 7.4937, 7.493, 7.4926, 7.4944, 7.4935, 7.4925, 7.4915, 7.491, 7.4902, 7.4895, 7.4896, 7.4893, 7.4889, 7.4882, 7.4877, 7.4875, 7.4865, 7.4857, 7.4858, 7.485, 7.484, 7.4859, 7.4851, 7.4843, 7.486, 7.4919, 7.4953, 7.4942, 7.4932, 7.4935, 7.492, 7.4888, 7.4878, 7.4878, 7.4896, 7.4891, 7.4882, 7.4899, 7.489, 7.4882, 7.4871, 7.4888, 7.4878, 7.4867, 7.4865, 7.4833, 7.4823, 7.4792, 7.4787, 7.4777, 7.4772, 7.4868, 7.4858, 7.4848, 7.4838, 7.4854, 7.4844, 7.4859, 7.485, 7.4867, 7.4883, 7.4875, 7.4869, 7.4868, 7.486, 7.4914, 7.4914, 7.4907, 7.4896, 7.4893, 7.4883, 7.4877, 7.495, 7.4939, 7.4932, 7.495, 7.4941, 7.4955, 7.4971, 7.4961, 7.4951, 7.4941, 7.4934, 7.4924, 7.4915, 7.4906, 7.4895, 7.4885, 7.4874, 7.489, 7.4883, 7.4876, 7.4893, 7.4912, 7.4902, 7.4894, 7.4886, 7.4879, 7.487, 7.4861, 7.4854, 7.4872, 7.4888, 7.4881, 7.4871, 7.4866, 7.4857, 7.485, 7.4844, 7.4834, 7.4824, 7.482, 7.4812, 7.4804, 7.4824, 7.482, 7.481, 7.48, 7.4792, 7.4782, 7.4799, 7.479, 7.4808, 7.4803, 7.4794, 7.4784, 7.4802, 7.4795, 7.4787, 7.4779, 7.4769, 7.4765, 7.4755, 7.4797, 7.4787, 7.4778, 7.4769, 7.4759, 7.4775, 7.4765, 7.4781, 7.4771, 7.4786, 7.4874, 7.4864, 7.4856, 7.4848, 7.4843, 7.4839, 7.4832, 7.4824, 7.4842, 7.4837, 7.4854, 7.4896, 7.4949, 7.4941, 7.4933, 7.4926, 7.4916, 7.4913, 7.4904, 7.4895, 7.4943, 7.4934, 7.4927, 7.4921, 7.4915, 7.4906, 7.49, 7.4896, 7.4891, 7.4885, 7.4881, 7.4872, 7.4864, 7.4862, 7.4855, 7.4875, 7.4867, 7.4858, 7.4852, 7.4848, 7.4845, 7.4837, 7.4828, 7.4822, 7.4815, 7.4808, 7.4811, 7.4803, 7.4777, 7.4775, 7.4791, 7.4784, 7.4775, 7.479, 7.4787, 7.4778, 7.4769, 7.4764, 7.4781, 7.4796, 7.4792, 7.4789, 7.478, 7.4776, 7.4767, 7.4759, 7.4776, 7.477, 7.4765, 7.4766, 7.4759, 7.4774, 7.4764, 7.4755, 7.477, 7.4761, 7.4753, 7.4746, 7.4737, 7.4728, 7.472, 7.4713, 7.4704, 7.4699, 7.469, 7.4682, 7.4699, 7.4692, 7.4683, 7.4674, 7.4666, 7.4659, 7.4655, 7.4673, 7.469, 7.4704, 7.4721, 7.4715, 7.4709, 7.4701, 7.4699, 7.4715, 7.4706, 7.4701, 7.4695, 7.4687, 7.4678, 7.4671, 7.4661, 7.4676, 7.4694, 7.4688, 7.4682, 7.4675, 7.4681, 7.4672, 7.4664, 7.4656, 7.4647, 7.4641, 7.4634, 7.4625, 7.4616, 7.4608, 7.464, 7.4681, 7.4721, 7.4715, 7.4707, 7.4744, 7.4734, 7.475, 7.4744, 7.476, 7.4751, 7.4745, 7.4737, 7.4754, 7.4751, 7.4765, 7.4758, 7.4748, 7.474, 7.4734, 7.4802, 7.4778, 7.4773, 7.4765, 7.4782, 7.478, 7.4772, 7.4792, 7.4783, 7.4777, 7.4768, 7.4759, 7.4751, 7.4746, 7.4737, 7.4729, 7.472, 7.4714, 7.4705, 7.4697, 7.4693, 7.4687, 7.4681, 7.4696, 7.4688, 7.4681, 7.4673, 7.4665, 7.4656, 7.4647, 7.464, 7.4631, 7.4646, 7.4638, 7.4633, 7.4628, 7.4622, 7.4617, 7.4608, 7.4605, 7.4598, 7.4614, 7.461, 7.4623, 7.4614, 7.4605, 7.4598, 7.4591, 7.4582, 7.4575, 7.4575, 7.457, 7.4562, 7.4577, 7.4569, 7.4565, 7.4556, 7.4551, 7.4547, 7.4539, 7.4537, 7.4528, 7.4521, 7.452, 7.4515, 7.4508, 7.4501, 7.4494, 7.4486, 7.4485, 7.4501, 7.4497, 7.4514, 7.4508, 7.4499, 7.4492, 7.4485, 7.4481, 7.4475, 7.4467, 7.4483, 7.4474, 7.4488, 7.4487, 7.4482, 7.4474, 7.4469, 7.4468, 7.4463, 7.4478, 7.4473, 7.4465, 7.4482, 7.4476, 7.4469, 7.4461, 7.4453, 7.4424, 7.4421, 7.4414, 7.4411, 7.4427, 7.4419, 7.4412, 7.4405, 7.4398, 7.4394, 7.4487, 7.448, 7.4475, 7.4491, 7.4507, 7.4504, 7.45, 7.4515, 7.451, 7.4501, 7.4515, 7.4507, 7.4588, 7.4581, 7.4594, 7.459, 7.4582, 7.4597, 7.4588, 7.4579, 7.4571, 7.4566, 7.4564, 7.456, 7.4556, 7.4548, 7.4546, 7.4538, 7.453, 7.4544, 7.4538, 7.4536, 7.4529, 7.4522, 7.4514, 7.4507, 7.4504, 7.4497, 7.449, 7.4483, 7.4513, 7.4572, 7.4593, 7.4586, 7.4584, 7.4559, 7.4577, 7.4569, 7.4575, 7.4567, 7.4599, 7.4594, 7.4611, 7.4606, 7.4598, 7.4572, 7.4544, 7.4536, 7.4528, 7.4521, 7.4517, 7.4511, 7.4513, 7.4519, 7.4512, 7.4528, 7.4523, 7.4548, 7.4567, 7.454, 7.4557, 7.4551, 7.4548, 7.4567, 7.4575, 7.4572, 7.4566, 7.4559, 7.4553, 7.4544, 7.4538, 7.453, 7.4545, 7.4541, 7.4554, 7.4531, 7.4522, 7.4536, 7.4527, 7.4523, 7.4499, 7.4497, 7.4514, 7.459, 7.4605, 7.4597, 7.4591, 7.4584, 7.4579, 7.4571, 7.4583, 7.4579, 7.4573, 7.4548, 7.4564, 7.4556, 7.4548, 7.454, 7.4536, 7.453, 7.4522, 7.4514, 7.4509, 7.4501, 7.4496, 7.4488, 7.4501, 7.4492, 7.4489, 7.4482, 7.4475, 7.4484, 7.4478, 7.447, 7.4466, 7.4479, 7.4471, 7.4464, 7.4457, 7.4496, 7.4489, 7.4467, 7.4462, 7.4457, 7.4494, 7.449, 7.4522, 7.454, 7.4616, 7.4607, 7.4642, 7.4637, 7.4616, 7.463, 7.4623, 7.4615, 7.4606, 7.458, 7.4594, 7.4606, 7.4604, 7.4601, 7.4596, 7.4595, 7.4588, 7.4603, 7.4619, 7.4611, 7.4603, 7.4599, 7.4591, 7.4588, 7.4583, 7.4577, 7.459, 7.4603, 7.4595, 7.4588, 7.4581, 7.4575, 7.4569, 7.4564, 7.4555, 7.4552, 7.4551, 7.4545, 7.454, 7.4535, 7.4533, 7.4507, 7.4503, 7.4499, 7.4492, 7.4507, 7.4501, 7.4497, 7.4492, 7.447, 7.4462, 7.4456, 7.4451, 7.445, 7.4448, 7.444, 7.4432, 7.4425, 7.4418, 7.4414, 7.4411, 7.4407, 7.4401, 7.4393, 7.4409, 7.4401, 7.4394, 7.4389, 7.4382, 7.4376, 7.4411, 7.4406, 7.4405, 7.4397, 7.4389, 7.4382, 7.4374, 7.4386, 7.4378, 7.4371, 7.4363, 7.4357, 7.435, 7.4372, 7.4356, 7.4348, 7.4344, 7.4358, 7.4354, 7.4367, 7.4361, 7.4354, 7.4354, 7.4347, 7.4361, 7.4377, 7.437, 7.4365, 7.4358, 7.4353, 7.4348, 7.4345, 7.4342, 7.4335, 7.4332, 7.4346, 7.4341, 7.4335, 7.433, 7.4326, 7.432, 7.4335, 7.4328, 7.432, 7.4313, 7.4327, 7.432, 7.4334, 7.4327, 7.432, 7.4316, 7.4312, 7.431, 7.4303, 7.4303, 7.43, 7.4292, 7.4285, 7.4279, 7.4273, 7.4266, 7.428, 7.4292, 7.4284, 7.428, 7.4294, 7.4308, 7.4303, 7.4296, 7.4289, 7.4282, 7.4274, 7.4287, 7.4298, 7.4292, 7.4287, 7.4281, 7.4278, 7.434, 7.4333, 7.4327, 7.432, 7.4315, 7.4308, 7.4323, 7.4316, 7.4308, 7.432, 7.4313, 7.4308, 7.43, 7.4295, 7.4287, 7.43, 7.4293, 7.4286, 7.4278, 7.427, 7.4283, 7.4276, 7.427, 7.4264, 7.428, 7.4273, 7.4286, 7.4351, 7.4345, 7.4337, 7.4331, 7.4345, 7.4357, 7.435, 7.4366, 7.436, 7.4353, 7.4352, 7.4344, 7.4356, 7.4349, 7.4347, 7.4343, 7.4336, 7.4331, 7.4346, 7.4339, 7.4351, 7.4344, 7.4338, 7.433, 7.4324, 7.4318, 7.4311, 7.4304, 7.4317, 7.431, 7.4303, 7.4298, 7.4292, 7.4286, 7.4284, 7.4276, 7.4273, 7.4306, 7.4299, 7.4311, 7.4305, 7.4283, 7.4296, 7.4293, 7.429, 7.4285, 7.428, 7.4291, 7.4285, 7.4262, 7.4238, 7.4235, 7.423, 7.4224, 7.4218, 7.4213, 7.4205, 7.4223, 7.4216, 7.4211, 7.4206, 7.4221, 7.4216, 7.4214, 7.421, 7.4206, 7.422, 7.4234, 7.4228, 7.4241, 7.4236, 7.4251, 7.4243, 7.4239, 7.4232, 7.4245, 7.4239, 7.4251, 7.4245, 7.424, 7.4262, 7.4275, 7.4287, 7.4299, 7.4293, 7.4285, 7.4281, 7.4276, 7.4277, 7.4269, 7.4263, 7.4257, 7.425, 7.4298, 7.4294, 7.4288, 7.4282, 7.4276, 7.4271, 7.4264, 7.4257, 7.4252, 7.4265, 7.426, 7.4256, 7.4251, 7.4244, 7.4239, 7.4241, 7.4238, 7.4233, 7.4227, 7.4222, 7.4215, 7.421, 7.4207, 7.4202, 7.4196, 7.419, 7.4185, 7.4179, 7.4175, 7.4188, 7.4181, 7.4177, 7.4172, 7.4184, 7.4177, 7.4169, 7.4164, 7.4157, 7.4169, 7.4163, 7.4193, 7.419, 7.4183, 7.4176, 7.4172, 7.4169, 7.4164, 7.4168, 7.4164, 7.4175, 7.4186, 7.418, 7.4176, 7.417, 7.4166, 7.4142, 7.4121, 7.4098, 7.4094, 7.4108, 7.4125, 7.4155, 7.4167, 7.4163, 7.4157, 7.417, 7.4163, 7.4157, 7.415, 7.4145, 7.4157, 7.4155, 7.4148, 7.4142, 7.4136, 7.4133, 7.4129, 7.414, 7.4139, 7.4132, 7.4127, 7.4125, 7.4123, 7.4123, 7.41, 7.4095, 7.4094, 7.4091, 7.4107, 7.4121, 7.4115, 7.411, 7.4106, 7.4103, 7.4132, 7.4134, 7.4132, 7.4126, 7.412, 7.4121, 7.4115, 7.4113, 7.4107, 7.4109, 7.4103, 7.4109, 7.4107, 7.41, 7.4082, 7.4081, 7.4074, 7.4072, 7.4065, 7.406, 7.4058, 7.4053, 7.405, 7.4062, 7.4055, 7.4048, 7.4096, 7.4109, 7.4102, 7.4117, 7.4113, 7.4106, 7.4103, 7.4096, 7.4091, 7.4085, 7.4081, 7.4077, 7.4091, 7.4084, 7.4098, 7.4097, 7.4098, 7.4112, 7.4125, 7.4119, 7.4114, 7.4126, 7.412, 7.4117, 7.4113, 7.4106, 7.41, 7.4097, 7.4091, 7.4103, 7.4097, 7.4092, 7.4106, 7.4101, 7.4118, 7.4111, 7.4106, 7.4107, 7.4102, 7.4101, 7.4096, 7.4091, 7.4103, 7.4098, 7.4094, 7.409, 7.4085, 7.4078, 7.4088, 7.4098, 7.4093, 7.4086, 7.4144, 7.4138, 7.4133, 7.4129, 7.413, 7.4143, 7.4136, 7.4148, 7.4128, 7.4123, 7.4118, 7.4111, 7.4107, 7.4101, 7.4098, 7.4112, 7.4108, 7.4102, 7.4098, 7.4109, 7.4102, 7.4101, 7.4114, 7.4125, 7.4118, 7.4112, 7.4107, 7.41, 7.4113, 7.4123, 7.4118, 7.4129, 7.4124, 7.4117, 7.4128, 7.4125, 7.4118, 7.4098, 7.4091, 7.4103, 7.4096, 7.4089, 7.4083, 7.4078, 7.4074, 7.4071, 7.4068, 7.4063, 7.4059, 7.4057, 7.405, 7.4044, 7.4043, 7.4036, 7.4031, 7.4025, 7.4018, 7.4012, 7.4023, 7.4016, 7.4028, 7.4025, 7.4022, 7.4016, 7.4026, 7.4022, 7.4016, 7.401, 7.4007, 7.4003, 7.4015, 7.401, 7.4007, 7.4002, 7.3995, 7.3988, 7.3982, 7.3993, 7.399, 7.4001, 7.3999, 7.3992, 7.4004, 7.3998, 7.3999, 7.3995, 7.3989, 7.3988, 7.3983, 7.3978, 7.3971, 7.3966, 7.396, 7.3953, 7.395, 7.3947, 7.3947, 7.3944, 7.3938, 7.3934, 7.3931, 7.391, 7.3906, 7.3901, 7.3916, 7.3917, 7.3915, 7.3913, 7.3908, 7.3906, 7.3901, 7.3897, 7.3895, 7.3909, 7.3904, 7.3898, 7.3893, 7.3888, 7.3883, 7.3897, 7.3876, 7.3872, 7.387, 7.3884, 7.3895, 7.3892, 7.3885, 7.3881, 7.3878, 7.3892, 7.3886, 7.3881, 7.3874, 7.3868, 7.3862, 7.3861, 7.3855, 7.3855, 7.3865, 7.386, 7.3859, 7.3856, 7.387, 7.3865, 7.3862, 7.3843, 7.3839, 7.3818, 7.3829, 7.3824, 7.3818, 7.3829, 7.3827, 7.3827, 7.3843, 7.3826, 7.3821, 7.3815, 7.3808, 7.3788, 7.3782, 7.3793, 7.3774, 7.3785, 7.3778, 7.3772, 7.3784, 7.3781, 7.3775, 7.3769, 7.3782, 7.3776, 7.3772, 7.3768, 7.3762, 7.3773, 7.3768, 7.3767, 7.3761, 7.3757, 7.3751, 7.3747, 7.3758, 7.3752, 7.3746, 7.3743, 7.3741, 7.3734, 7.373, 7.3725, 7.3722, 7.3702, 7.3696, 7.3691, 7.369, 7.3686, 7.368, 7.3675, 7.3669, 7.3664, 7.3676, 7.3655, 7.365, 7.3646, 7.3642, 7.3638, 7.3634, 7.3649, 7.3643, 7.3637, 7.3633, 7.3627, 7.3621, 7.3616, 7.3611, 7.3606, 7.36, 7.3582, 7.3562, 7.3541, 7.3535, 7.3545, 7.3545, 7.3541, 7.3521, 7.3503, 7.3501, 7.3499, 7.3492, 7.3504, 7.3498, 7.3492, 7.3488, 7.3483, 7.3494, 7.3505, 7.3499, 7.3493, 7.3493, 7.3503, 7.3498, 7.3504, 7.3517, 7.3514, 7.3509, 7.3519, 7.3516, 7.3496, 7.3493, 7.3488, 7.3482, 7.3476, 7.3489, 7.3508, 7.3538, 7.3554, 7.3589, 7.359, 7.3587, 7.3581, 7.3577, 7.3575, 7.3587, 7.3582, 7.3576, 7.3571, 7.357, 7.3568, 7.3564, 7.3574, 7.3569, 7.3563, 7.3557, 7.3551, 7.3545, 7.3539, 7.3533, 7.3528, 7.3539, 7.3549, 7.3543, 7.3537, 7.3547, 7.3543, 7.3538, 7.3532, 7.3543, 7.3538, 7.3534, 7.3528, 7.3522, 7.3534, 7.3547, 7.3542, 7.354, 7.3535, 7.3532, 7.3527, 7.3523, 7.3534, 7.353, 7.3524, 7.3535, 7.3529, 7.3524, 7.3524, 7.3519, 7.3515, 7.3512, 7.3508, 7.3503, 7.3498, 7.3509, 7.3503, 7.35, 7.3497, 7.3497, 7.3494, 7.3506, 7.3506, 7.3502, 7.3498, 7.3496, 7.3491, 7.3503, 7.3498, 7.3509, 7.3505, 7.3507, 7.3504, 7.3499, 7.3497, 7.3552, 7.3547, 7.356, 7.3554, 7.3565, 7.3559, 7.3571, 7.3551, 7.3532, 7.3514, 7.3511, 7.3506, 7.35, 7.3509, 7.3503, 7.3498, 7.3494, 7.3488, 7.3498, 7.3492, 7.3487, 7.3498, 7.3492, 7.3489, 7.3486, 7.3482, 7.3491, 7.3513, 7.3509, 7.3508, 7.3503, 7.3514, 7.351, 7.352, 7.3518, 7.3528, 7.3525, 7.3519, 7.3513, 7.3511, 7.3505, 7.35, 7.3494, 7.349, 7.3487, 7.3497, 7.3491, 7.3486, 7.3497, 7.3495, 7.3491, 7.3505, 7.3499, 7.3494, 7.3489, 7.3486, 7.3481, 7.3475, 7.3471, 7.3466, 7.3476, 7.3487, 7.3499, 7.3493, 7.349, 7.3502, 7.3513, 7.3526, 7.3508, 7.3503, 7.3498, 7.351, 7.3505, 7.3499, 7.3496, 7.3507, 7.3502, 7.3498, 7.3492, 7.3493, 7.3489, 7.349, 7.3485, 7.3496, 7.3492, 7.3488, 7.3498, 7.3493, 7.3488, 7.3484, 7.348, 7.3478, 7.3473, 7.3482, 7.351, 7.3521, 7.3516, 7.3514, 7.3543, 7.354, 7.3536, 7.3531, 7.3529, 7.354, 7.3537, 7.3531, 7.3544, 7.3541, 7.3537, 7.3532, 7.3515, 7.3547, 7.3548, 7.3549, 7.3547, 7.3544, 7.3541, 7.3537, 7.3532, 7.3531, 7.3543, 7.3555, 7.3551, 7.3547, 7.3542, 7.3565, 7.3577, 7.3572, 7.3568, 7.3565, 7.3578, 7.3588, 7.3597, 7.3595, 7.3577, 7.359, 7.3585, 7.3584, 7.3596, 7.3606, 7.3602, 7.3597, 7.3593, 7.359, 7.3585, 7.358, 7.3576, 7.3572, 7.3567, 7.3566, 7.3576, 7.357, 7.3567, 7.3578, 7.3588, 7.3618, 7.363, 7.3625, 7.3636, 7.3631, 7.3625, 7.3624, 7.3637, 7.3632, 7.3643, 7.3656, 7.3667, 7.3677, 7.3672, 7.3682, 7.3677, 7.3676, 7.3671, 7.3712, 7.3693, 7.3688, 7.3697, 7.3692, 7.3673, 7.3655, 7.3665, 7.366, 7.3655, 7.365, 7.3693, 7.3724, 7.3734, 7.3745, 7.3744, 7.3729, 7.3729, 7.3726, 7.3721, 7.3716, 7.3713, 7.3708, 7.3718, 7.3701, 7.3712, 7.3707, 7.3702, 7.3699, 7.3695, 7.3691, 7.3711, 7.3706, 7.3701, 7.3701, 7.3698, 7.3693, 7.369, 7.3699, 7.3694, 7.3706, 7.3702, 7.37, 7.3712, 7.3721, 7.373, 7.3724, 7.372, 7.3715, 7.371, 7.3706, 7.3705, 7.3699, 7.3699, 7.3709, 7.3703, 7.3714, 7.3697, 7.3693, 7.3689, 7.3694, 7.3691, 7.3685, 7.3681, 7.3675, 7.367, 7.3665, 7.3675, 7.367, 7.3665, 7.3675, 7.3672, 7.3682, 7.3678, 7.3673, 7.3668, 7.3666, 7.3676, 7.3688, 7.3684, 7.3679, 7.3675, 7.367, 7.3652, 7.3671, 7.3668, 7.3665, 7.366, 7.3655, 7.3675, 7.3672, 7.3675, 7.3671, 7.3681, 7.3679, 7.3698, 7.3693, 7.3688, 7.3683, 7.3693, 7.3688, 7.3683, 7.368, 7.3675, 7.3671, 7.3666, 7.3662, 7.3694, 7.372, 7.3706, 7.3722, 7.3717, 7.3724, 7.3719, 7.3714, 7.3696, 7.3693, 7.3689, 7.3699, 7.3684, 7.368, 7.3674, 7.3668, 7.3663, 7.3669, 7.3667, 7.3664, 7.369, 7.3686, 7.3695, 7.369, 7.3685, 7.3682, 7.3664, 7.3659, 7.3656, 7.3654, 7.3648, 7.3645, 7.3639, 7.3635, 7.3645, 7.364, 7.3635, 7.3633, 7.3629, 7.3623, 7.3618, 7.3615, 7.361, 7.3607, 7.3603, 7.3601, 7.3641, 7.3654, 7.365, 7.3661, 7.3672, 7.3667, 7.3664, 7.3674, 7.367, 7.3679, 7.3691, 7.3687, 7.3684, 7.3679, 7.3674, 7.3669, 7.3668, 7.365, 7.3699, 7.3694, 7.3689, 7.3685, 7.3696, 7.3691, 7.3685, 7.368, 7.3675, 7.3686, 7.3682, 7.368, 7.3674, 7.367, 7.3665, 7.3661, 7.366, 7.3656, 7.3667, 7.3663, 7.3658, 7.366, 7.3672, 7.3668, 7.3663, 7.3659, 7.3654, 7.3664, 7.3659, 7.3668, 7.3664, 7.3661, 7.3671, 7.3681, 7.3675, 7.3673, 7.3669, 7.3664, 7.3692, 7.3731, 7.3739, 7.3733, 7.3742, 7.3738, 7.3733, 7.3728, 7.3724, 7.3718, 7.3713, 7.3709, 7.3706, 7.3703, 7.37, 7.3696, 7.3694, 7.3692, 7.3686, 7.3697, 7.3707, 7.3704, 7.3701, 7.3696, 7.3706, 7.3701, 7.3698, 7.3692, 7.3689, 7.3684, 7.3682, 7.3678, 7.3673, 7.3669, 7.367, 7.3669, 7.3682, 7.3694, 7.3691, 7.3689, 7.3701, 7.3698, 7.3705, 7.3702, 7.3697, 7.3695, 7.3691, 7.3688, 7.3698, 7.3685, 7.3699, 7.3694, 7.3705, 7.3703, 7.3702, 7.3696, 7.3691, 7.3688, 7.3697, 7.3718, 7.3715, 7.371, 7.3708, 7.3719, 7.3703, 7.37, 7.3713, 7.3711, 7.371, 7.3705, 7.3705, 7.3702, 7.3698, 7.3694, 7.3689, 7.3686, 7.3683, 7.368, 7.3675, 7.3675, 7.3684, 7.368, 7.3682, 7.3689, 7.3698, 7.3708, 7.3705, 7.3699, 7.3695, 7.3704, 7.3702, 7.3697, 7.3693, 7.369, 7.3687, 7.3695, 7.3681, 7.3683, 7.3686, 7.3681, 7.3714, 7.3733, 7.3733, 7.3744, 7.3741, 7.3736, 7.3737, 7.3735, 7.3733, 7.3728, 7.3727, 7.3728, 7.3725, 7.3721, 7.3722, 7.3762, 7.3759, 7.3755, 7.375, 7.3745, 7.3755, 7.3752, 7.375, 7.3745, 7.3744, 7.3754, 7.375, 7.3748, 7.3746, 7.3757, 7.3753, 7.3748, 7.3744, 7.3739, 7.3735, 7.3734, 7.373, 7.3725, 7.372, 7.3729, 7.3726, 7.3723, 7.3721, 7.3716, 7.3711, 7.3722, 7.3718, 7.3714, 7.3708, 7.3703, 7.3698, 7.3707, 7.3701, 7.3696, 7.3691, 7.37, 7.3724, 7.3718, 7.3736, 7.3731, 7.373, 7.3727, 7.3724, 7.372, 7.3717, 7.3728, 7.3725, 7.3725, 7.372, 7.3706, 7.3702, 7.3698, 7.3693, 7.369, 7.3687, 7.3683, 7.3669, 7.3666, 7.3676, 7.3671, 7.3666, 7.3662, 7.366, 7.3668, 7.3663, 7.3672, 7.3667, 7.3677, 7.3672, 7.3669, 7.3664, 7.366, 7.3671, 7.3667, 7.3665, 7.3661, 7.3645, 7.3641, 7.3637, 7.3633, 7.3627, 7.3637, 7.3633, 7.3628, 7.3639, 7.3635, 7.3633, 7.3628, 7.3626, 7.3623, 7.3633, 7.363, 7.3625, 7.3621, 7.3619, 7.3628, 7.3625, 7.362, 7.3616, 7.3611, 7.3608, 7.3604, 7.3615, 7.3611, 7.3623, 7.3619, 7.3617, 7.3612, 7.3623, 7.3633, 7.3645, 7.364, 7.3636, 7.3632, 7.363, 7.3628, 7.3626, 7.3624, 7.362, 7.3629, 7.3627, 7.3622, 7.362, 7.3615, 7.3624, 7.3619, 7.3618, 7.3613, 7.3608, 7.3604, 7.3603, 7.3618, 7.3613, 7.3636, 7.3659, 7.3657, 7.3666, 7.3661, 7.3657, 7.3657, 7.3654, 7.3651, 7.3677, 7.3674, 7.367, 7.3666, 7.3676, 7.3684, 7.3702, 7.3685, 7.369, 7.3688, 7.3707, 7.3707, 7.373, 7.3726, 7.3721, 7.3716, 7.3712, 7.3711, 7.3706, 7.3717, 7.3726, 7.3723, 7.3731, 7.3728, 7.3724, 7.3733, 7.3743, 7.3742, 7.3738, 7.3747, 7.3744, 7.3743, 7.374, 7.3749, 7.3744, 7.3739, 7.3735, 7.3731, 7.3726, 7.3727, 7.3722, 7.3733, 7.3728, 7.3724, 7.3721, 7.3723, 7.3719, 7.3728, 7.3723, 7.3732, 7.3742, 7.3752, 7.3749, 7.3758, 7.3754, 7.3754, 7.3749, 7.3745, 7.3743, 7.374, 7.3735, 7.3718, 7.3713, 7.371, 7.3706, 7.3703, 7.3711, 7.3719, 7.3702, 7.3686, 7.3681, 7.369, 7.3686, 7.3692, 7.369, 7.3685, 7.3681, 7.3677, 7.3675, 7.3672, 7.3656, 7.3651, 7.3646, 7.3641, 7.3649, 7.3645, 7.3641, 7.3637, 7.3632, 7.3629, 7.3624, 7.3622, 7.3619, 7.3616, 7.3612, 7.361, 7.3605, 7.36, 7.3595, 7.3604, 7.3601, 7.3596, 7.3591, 7.3589, 7.3584, 7.3583, 7.3581, 7.3578, 7.3576, 7.3573, 7.3591, 7.3586, 7.3573, 7.3571, 7.357, 7.3569, 7.3568, 7.3565, 7.3562, 7.356, 7.3556, 7.3565, 7.3563, 7.3559, 7.3554, 7.355, 7.3547, 7.3544, 7.354, 7.3536, 7.3531, 7.3527, 7.3524, 7.3521, 7.353, 7.3528, 7.3525, 7.352, 7.3518, 7.3516, 7.3514, 7.3514, 7.351, 7.3506, 7.3505, 7.3505, 7.3503, 7.3499, 7.3495, 7.3494, 7.3498, 7.3493, 7.3503, 7.3501, 7.3509, 7.3504, 7.3513, 7.3522, 7.3531, 7.3526, 7.3525, 7.352, 7.3529, 7.3526, 7.3522, 7.3518, 7.3514, 7.3524, 7.3522, 7.3519, 7.3528, 7.3524, 7.3519, 7.354, 7.3537, 7.3551, 7.3547, 7.3543, 7.3539, 7.3535, 7.3531, 7.354, 7.3544, 7.3541, 7.3565, 7.356, 7.3558, 7.3557, 7.3554, 7.355, 7.3547, 7.3544, 7.3539, 7.3536, 7.3532, 7.3528, 7.3524, 7.3521, 7.3519, 7.3531, 7.3529, 7.3539, 7.3523, 7.352, 7.3516, 7.3526, 7.3538, 7.3535, 7.3531, 7.353, 7.3515, 7.3511, 7.3506, 7.3503, 7.3501, 7.35, 7.3496, 7.3497, 7.3495, 7.3493, 7.3502, 7.3497, 7.3493, 7.3492, 7.3488, 7.3498, 7.3493, 7.3489, 7.3487, 7.3485, 7.3487, 7.3482, 7.348, 7.3476, 7.3486, 7.3481, 7.349, 7.349, 7.3499, 7.3494, 7.3491, 7.3499, 7.3495, 7.3492, 7.3487, 7.3482, 7.349, 7.3497, 7.3494, 7.3491, 7.3486, 7.3484, 7.3479, 7.3487, 7.3482, 7.348, 7.3475, 7.3471, 7.3468, 7.3466, 7.3462, 7.3459, 7.3455, 7.3451, 7.3459, 7.3455, 7.3464, 7.346, 7.346, 7.3456, 7.344, 7.3449, 7.3447, 7.3443, 7.344, 7.3441, 7.344, 7.3437, 7.3434, 7.3432, 7.3441, 7.3438, 7.3448, 7.3444, 7.3451, 7.345, 7.3441, 7.3429, 7.3426, 7.3423, 7.342, 7.3419, 7.3415, 7.3425, 7.3421, 7.3421, 7.3407, 7.3404, 7.3402, 7.3412, 7.3411, 7.3425, 7.343, 7.3425, 7.3422, 7.342, 7.3415, 7.3424, 7.3433, 7.343, 7.3428, 7.3437, 7.3447, 7.3443, 7.3453, 7.3467, 7.3463, 7.3459, 7.3455, 7.3439, 7.3445, 7.3441, 7.3437, 7.3433, 7.343, 7.3425, 7.3421, 7.3418, 7.3426, 7.3421, 7.3416, 7.345, 7.3446, 7.3441, 7.3441, 7.3438, 7.3433, 7.3428, 7.3423, 7.3408, 7.3406, 7.3402, 7.3399, 7.3398, 7.3397, 7.3395, 7.3392, 7.3378, 7.3364, 7.335, 7.3348, 7.3344, 7.334, 7.3339, 7.3336, 7.3333, 7.3345, 7.3336, 7.3336, 7.3346, 7.3343, 7.3341, 7.3338, 7.3337, 7.336, 7.3356, 7.3365, 7.3363, 7.3348, 7.3346, 7.3342, 7.3338, 7.3352, 7.334, 7.3338, 7.3348, 7.3345, 7.3356, 7.3352, 7.3359, 7.3368, 7.3376, 7.3376, 7.3375, 7.3386, 7.3382, 7.3383, 7.3379, 7.3387, 7.3382, 7.3368, 7.3364, 7.3373, 7.3371, 7.3368, 7.3363, 7.3362, 7.3377, 7.3362, 7.3385, 7.3429, 7.3458, 7.3467, 7.3465, 7.346, 7.3457, 7.3465, 7.3464, 7.346, 7.3458, 7.3444, 7.3441, 7.3466, 7.3488, 7.3542, 7.3539, 7.3536, 7.3556, 7.3553, 7.3562, 7.3559, 7.3556, 7.3552, 7.3549, 7.3545, 7.3541, 7.3537, 7.3533, 7.3541, 7.3548, 7.3546, 7.3542, 7.3539, 7.3537, 7.3538, 7.3535, 7.3558, 7.3555, 7.3565, 7.3553, 7.3549, 7.3567, 7.3566, 7.3565, 7.3574, 7.3573, 7.3559, 7.3556, 7.3552, 7.3547, 7.3555, 7.3543, 7.3539, 7.3534, 7.3531, 7.3527, 7.3524, 7.3533, 7.353, 7.3526, 7.3524, 7.352, 7.3518, 7.3527, 7.3523, 7.3531, 7.353, 7.3528, 7.3525, 7.3521, 7.3517, 7.3514, 7.3511, 7.351, 7.3506, 7.3502, 7.3498, 7.3494, 7.349, 7.3486, 7.3484, 7.348, 7.3467, 7.3465, 7.3465, 7.3461, 7.3457, 7.3453, 7.345, 7.3449, 7.3435, 7.3432, 7.3446, 7.3442, 7.3441, 7.3428, 7.3414, 7.3401, 7.3399, 7.3384, 7.338, 7.3378, 7.3374, 7.342, 7.3416, 7.3426, 7.3424, 7.342, 7.3416, 7.3412, 7.3421, 7.3421, 7.3408, 7.3407, 7.3403, 7.3412, 7.3407, 7.3404, 7.34, 7.3396, 7.3393, 7.3388, 7.3396, 7.3392, 7.3389, 7.3385, 7.3396, 7.3392, 7.34, 7.34, 7.3409, 7.3405, 7.3407, 7.3406, 7.3416, 7.3414, 7.3423, 7.3419, 7.3417, 7.3415, 7.3413, 7.3421, 7.3418, 7.3405, 7.3391, 7.3389, 7.3385, 7.3394, 7.3392, 7.3389, 7.3386, 7.3383, 7.3382, 7.3379, 7.3375, 7.3372, 7.3379, 7.3386, 7.3394, 7.3392, 7.3409, 7.3406, 7.3414, 7.3421, 7.3417, 7.3413, 7.3411, 7.3416, 7.3424, 7.3421, 7.3417, 7.3413, 7.3412, 7.342, 7.3419, 7.3417, 7.3426, 7.3422, 7.3418, 7.3422, 7.343, 7.344, 7.344, 7.3436, 7.3432, 7.3428, 7.3428, 7.3427, 7.3458, 7.3457, 7.3455, 7.3475, 7.3484, 7.348, 7.348, 7.3476, 7.3486, 7.3483, 7.3479, 7.3476, 7.3474, 7.3473, 7.3481, 7.3478, 7.3481, 7.3478, 7.3474, 7.347, 7.3481, 7.3481, 7.3477, 7.3473, 7.3481, 7.3477, 7.3475, 7.3472, 7.347, 7.3467, 7.3463, 7.3459, 7.3455, 7.3462, 7.3457, 7.3453, 7.3449, 7.3446, 7.3443, 7.344, 7.3436, 7.3434, 7.3442, 7.3441, 7.3437, 7.3434, 7.3441, 7.3438, 7.3434, 7.3431, 7.3427, 7.3435, 7.3432, 7.3428, 7.3436, 7.3432, 7.3429, 7.3437, 7.3434, 7.3431, 7.3427, 7.3423, 7.3421, 7.3419, 7.3416, 7.3412, 7.3407, 7.3404, 7.34, 7.3397, 7.3405, 7.3401, 7.3409, 7.3405, 7.3401, 7.3398, 7.3397, 7.3405, 7.3401, 7.3398, 7.3406, 7.3404, 7.34, 7.3408, 7.3407, 7.3414, 7.3411, 7.3408, 7.3393, 7.339, 7.3387, 7.3385, 7.3384, 7.3392, 7.34, 7.3396, 7.3392, 7.34, 7.34, 7.3398, 7.3395, 7.3392, 7.3388, 7.3385, 7.3383, 7.3381, 7.3389, 7.3387, 7.3383, 7.3402, 7.3391, 7.34, 7.3396, 7.3393, 7.3403, 7.3401, 7.3398, 7.3396, 7.3393, 7.3389, 7.3388, 7.3389, 7.3386, 7.3383, 7.3379, 7.3376, 7.3372, 7.3368, 7.3365, 7.3363, 7.336, 7.3358, 7.3355, 7.3353, 7.3362, 7.337, 7.3368, 7.3364, 7.336, 7.3367, 7.3375, 7.3374, 7.3373, 7.3369, 7.3365, 7.3362, 7.3359, 7.3356, 7.3355, 7.3362, 7.336, 7.3356, 7.3352, 7.3349, 7.3347, 7.3345, 7.3341, 7.334, 7.3336, 7.3333, 7.3329, 7.3325, 7.3343, 7.334, 7.3342, 7.3339, 7.3328, 7.3324, 7.3321, 7.3317, 7.3336, 7.3336, 7.335, 7.3346, 7.3342, 7.3351, 7.3354, 7.335, 7.3347, 7.3343, 7.3351, 7.336, 7.3356, 7.3354, 7.3362, 7.3358, 7.3359, 7.3356, 7.3353, 7.3339, 7.334, 7.3348, 7.3357, 7.3355, 7.3354, 7.3353, 7.3351, 7.335, 7.3346, 7.3344, 7.3341, 7.3337, 7.3335, 7.3332, 7.3332, 7.333, 7.3327, 7.3336, 7.3334, 7.333, 7.3327, 7.3327, 7.3347, 7.3343, 7.3341, 7.3339, 7.3385, 7.3384, 7.3382, 7.3379, 7.3376, 7.3374, 7.3372, 7.3368, 7.3365, 7.3364, 7.3372, 7.3368, 7.3364, 7.3372, 7.3368, 7.3366, 7.3365, 7.3353, 7.3351, 7.3414, 7.3422, 7.3418, 7.3422, 7.3419, 7.3415, 7.3413, 7.3411, 7.3417, 7.3425, 7.3421, 7.3417, 7.3415, 7.3413, 7.3411, 7.3408, 7.3416, 7.3424, 7.3431, 7.3419, 7.3415, 7.3412, 7.3409, 7.3406, 7.3413, 7.341, 7.3408, 7.3408, 7.3416, 7.3415, 7.3412, 7.3408, 7.3406, 7.3407, 7.3408, 7.3405, 7.3402, 7.3398, 7.3394, 7.3392, 7.34, 7.34, 7.3399, 7.3396, 7.3395, 7.3391, 7.3388, 7.3384, 7.338, 7.3377, 7.3373, 7.3371, 7.3379, 7.3376, 7.3375, 7.3373, 7.3381, 7.3379, 7.3375, 7.3382, 7.3401, 7.3397, 7.3393, 7.3389, 7.3398, 7.3396, 7.3392, 7.339, 7.3387, 7.3384, 7.338, 7.3388, 7.3385, 7.3384, 7.3382, 7.339, 7.3397, 7.3394, 7.3393, 7.3391, 7.3387, 7.3385, 7.3383, 7.3382, 7.339, 7.3387, 7.3387, 7.3383, 7.3379, 7.3439, 7.3436, 7.3432, 7.343, 7.3426, 7.3431, 7.3429, 7.3426, 7.3423, 7.343, 7.3427, 7.3433, 7.343, 7.343, 7.3437, 7.3433, 7.3429, 7.3425, 7.3421, 7.3417, 7.3413, 7.341, 7.3407, 7.3405, 7.3413, 7.3411, 7.3408, 7.3415, 7.3415, 7.3412, 7.3409, 7.3409, 7.3407, 7.3403, 7.339, 7.3386, 7.3393, 7.339, 7.3386, 7.3384, 7.338, 7.3388, 7.3395, 7.3425, 7.3433, 7.344, 7.3437, 7.3445, 7.3442, 7.345, 7.3457, 7.3465, 7.3462, 7.3458, 7.3466, 7.3464, 7.3461, 7.3459, 7.3455, 7.3485, 7.3481, 7.349, 7.3487, 7.3484, 7.3483, 7.348, 7.3487, 7.3484, 7.3493, 7.3491, 7.3489, 7.3488, 7.3485, 7.3481, 7.3479, 7.3478, 7.3486, 7.3485, 7.3489, 7.3489, 7.3489, 7.3488, 7.3508, 7.3504, 7.35, 7.3498, 7.3495, 7.3493, 7.3502, 7.3499, 7.3508, 7.3507, 7.3504, 7.35, 7.3497, 7.3496, 7.3498, 7.3497, 7.3495, 7.3492, 7.3499, 7.35, 7.3498, 7.3494, 7.3502, 7.3501, 7.3498, 7.3495, 7.3492, 7.3489, 7.3486, 7.3482, 7.3483, 7.349, 7.3487, 7.3495, 7.3494, 7.349, 7.3489, 7.3485, 7.3482, 7.3478, 7.3497, 7.3497, 7.3493, 7.3491, 7.3487, 7.3494, 7.3501, 7.349, 7.3478, 7.3485, 7.3481, 7.3477, 7.3473, 7.3469, 7.3466, 7.3473, 7.3469, 7.3466, 7.3474, 7.3471, 7.3517, 7.3513, 7.3509, 7.3505, 7.3501, 7.3498, 7.3524, 7.3523, 7.3519, 7.3515, 7.3511, 7.3507, 7.3505, 7.3501, 7.3497, 7.3485, 7.3481, 7.3477, 7.3473, 7.347, 7.3476, 7.3473, 7.349, 7.3487, 7.3483, 7.3481, 7.3498, 7.3495, 7.3493, 7.3494, 7.349, 7.3489, 7.3487, 7.3495, 7.3498, 7.3494, 7.349, 7.348, 7.3478, 7.3475, 7.3473, 7.3461, 7.347, 7.3467, 7.3473, 7.3469, 7.3467, 7.3464, 7.3471, 7.3467, 7.3464, 7.3462, 7.347, 7.3466, 7.3472, 7.3469, 7.3486, 7.3493, 7.349, 7.3508, 7.3505, 7.3502, 7.3499, 7.3497, 7.3512, 7.3508, 7.3505, 7.3527, 7.3523, 7.352, 7.3507, 7.3494, 7.349, 7.3486, 7.3482, 7.3489, 7.3497, 7.3526, 7.3524, 7.3538, 7.3536, 7.3543, 7.354, 7.3537, 7.3534, 7.3521, 7.3518, 7.3517, 7.3514, 7.3513, 7.3513, 7.351, 7.351, 7.3506, 7.3503, 7.351, 7.3508, 7.3505, 7.3503, 7.3501, 7.3497, 7.3485, 7.3482, 7.3479, 7.3477, 7.3476, 7.3473, 7.3471, 7.3468, 7.3465, 7.3462, 7.346, 7.3467, 7.3465, 7.3463, 7.346, 7.3469, 7.3467, 7.3464, 7.3461, 7.3458, 7.3455, 7.3452, 7.3449, 7.3446, 7.3443, 7.3449, 7.3446, 7.3464, 7.3461, 7.3471, 7.3468, 7.3466, 7.3464, 7.3461, 7.3468, 7.3475, 7.3471, 7.3469, 7.3465, 7.3471, 7.3468, 7.3475, 7.3471, 7.3468, 7.3465, 7.3463, 7.3461, 7.3458, 7.3465, 7.3462, 7.3459, 7.3456, 7.3454, 7.345, 7.3446, 7.3442, 7.3439, 7.3435, 7.3441, 7.3437, 7.3433, 7.343, 7.3427, 7.3423, 7.3419, 7.3416, 7.3412, 7.341, 7.3408, 7.3404, 7.3401, 7.3408, 7.3405, 7.3404, 7.34, 7.3397, 7.3394, 7.3393, 7.339, 7.3389, 7.3386, 7.3385, 7.3381, 7.3378, 7.3374, 7.337, 7.3367, 7.3364, 7.336, 7.3357, 7.3353, 7.3349, 7.3358, 7.3354, 7.3351, 7.3339, 7.3337, 7.3334, 7.3342, 7.3339, 7.3335, 7.3342, 7.334, 7.3338, 7.3335, 7.3323, 7.3329, 7.3326, 7.3322, 7.3329, 7.3328, 7.3326, 7.3322, 7.3319, 7.3316, 7.3313, 7.332, 7.3312, 7.3308, 7.3305, 7.3311, 7.3308, 7.3307, 7.3315, 7.3314, 7.3321, 7.3322, 7.3319, 7.3318, 7.3316, 7.3313, 7.332, 7.3317, 7.3315, 7.3311, 7.3309, 7.3307, 7.3303, 7.3299, 7.3299, 7.3295, 7.3302, 7.3301, 7.3308, 7.3304, 7.3319, 7.3317, 7.3313, 7.3311, 7.3308, 7.3304, 7.3301, 7.3307, 7.3325, 7.3321, 7.3317, 7.3313, 7.3323, 7.3325, 7.3325, 7.3324, 7.3321, 7.3317, 7.3315, 7.3312, 7.3311, 7.3308, 7.3306, 7.3296, 7.3302, 7.3298, 7.3295, 7.3291, 7.33, 7.3298, 7.3295, 7.3292, 7.3299, 7.3295, 7.3302, 7.3299, 7.3296, 7.3293, 7.3291, 7.3288, 7.3285, 7.3282, 7.3288, 7.3284, 7.3283, 7.3271, 7.327, 7.3266, 7.3262, 7.3252, 7.3259, 7.3255, 7.326, 7.3257, 7.3255, 7.3262, 7.326, 7.3248, 7.3244, 7.3241, 7.3238, 7.3245, 7.3242, 7.3238, 7.3235, 7.3241, 7.3247, 7.3248, 7.3236, 7.3235, 7.3234, 7.3232, 7.3229, 7.3225, 7.3221, 7.3218, 7.3214, 7.3221, 7.3217, 7.3213, 7.3211, 7.3219, 7.3217, 7.3218, 7.3215, 7.3212, 7.3211, 7.321, 7.3218, 7.3222, 7.3232, 7.3242, 7.326, 7.3258, 7.3275, 7.3285, 7.3281, 7.3287, 7.3283, 7.3282, 7.3279, 7.3287, 7.3284, 7.328, 7.3278, 7.3286, 7.3283, 7.3281, 7.3277, 7.3274, 7.327, 7.3258, 7.3247, 7.3235, 7.3261, 7.3268, 7.3275, 7.3282, 7.328, 7.3278, 7.3275, 7.3273, 7.3282, 7.329, 7.3289, 7.3298, 7.3296, 7.3294, 7.3319, 7.3317, 7.3316, 7.3313, 7.3311, 7.3317, 7.3324, 7.3321, 7.332, 7.3317, 7.3323, 7.332, 7.3317, 7.3314, 7.3303, 7.3347, 7.3355, 7.3343, 7.334, 7.3337, 7.3351, 7.3351, 7.3347, 7.3344, 7.3341, 7.335, 7.3348, 7.3345, 7.3343, 7.334, 7.3336, 7.3343, 7.3346, 7.3344, 7.334, 7.3337, 7.3343, 7.3341, 7.3338, 7.3335, 7.3343, 7.334, 7.3347, 7.3355, 7.3355, 7.3354, 7.3351, 7.3349, 7.3346, 7.3345, 7.3342, 7.334, 7.3338, 7.3337, 7.3337, 7.3336, 7.3334, 7.3342, 7.3339, 7.3337, 7.3325, 7.3324, 7.3334, 7.3332, 7.3336, 7.3333, 7.3349, 7.3346, 7.3343, 7.3377, 7.3375, 7.3373, 7.3371, 7.3369, 7.3366, 7.3369, 7.3359, 7.3391, 7.3387, 7.3393, 7.3392, 7.3389, 7.3387, 7.3383, 7.3382, 7.338, 7.3368, 7.3365, 7.3362, 7.3381, 7.3408, 7.341, 7.3407, 7.3414, 7.3411, 7.3411, 7.3428, 7.3426, 7.3416, 7.3405, 7.3415, 7.3412, 7.3409, 7.3406, 7.3403, 7.3409, 7.3405, 7.3403, 7.341, 7.3407, 7.3406, 7.3413, 7.3421, 7.3419, 7.3417, 7.3414, 7.3411, 7.3408, 7.3405, 7.3411, 7.3418, 7.3415, 7.3404, 7.3446, 7.3437, 7.3444, 7.3461, 7.3458, 7.3458, 7.3459, 7.3455, 7.3451, 7.3458, 7.3455, 7.3452, 7.3452, 7.3459, 7.3457, 7.3454, 7.3451, 7.3449, 7.3446, 7.3443, 7.3474, 7.3471, 7.3468, 7.3468, 7.3465, 7.3473, 7.3481, 7.3488, 7.3485, 7.3482, 7.3479, 7.3477, 7.3483, 7.348, 7.3477, 7.3475, 7.3472, 7.3468, 7.3465, 7.3473, 7.3472, 7.3469, 7.3465, 7.3453, 7.3451, 7.3448, 7.3447, 7.3445, 7.3442, 7.344, 7.345, 7.3447, 7.3444, 7.3441, 7.3448, 7.3449, 7.3446, 7.3452, 7.3449, 7.3446, 7.3444, 7.3442, 7.3439, 7.3437, 7.3443, 7.344, 7.3439, 7.3437, 7.3436, 7.3433, 7.343, 7.3428, 7.3427, 7.3426, 7.3432, 7.3429, 7.3429, 7.3427, 7.3424, 7.3421, 7.342, 7.3419, 7.3416, 7.3413, 7.341, 7.3408, 7.3405, 7.3402, 7.341, 7.3408, 7.3405, 7.3401, 7.3398, 7.3415, 7.3421, 7.3413, 7.3402, 7.3398, 7.3395, 7.3392, 7.34, 7.3399, 7.3406, 7.3403, 7.3403, 7.3399, 7.3398, 7.3396, 7.3394, 7.3391, 7.3388, 7.3385, 7.3383, 7.338, 7.3378, 7.3375, 7.3374, 7.3382, 7.3379, 7.3376, 7.3373, 7.338, 7.3378, 7.3375, 7.3372, 7.337, 7.3378, 7.3374, 7.3364, 7.3363, 7.336, 7.3359, 7.3367, 7.3366, 7.3363, 7.3361, 7.3358, 7.3355, 7.3353, 7.3351, 7.3349, 7.3346, 7.3343, 7.3341, 7.3348, 7.3346, 7.3346, 7.3344, 7.3341, 7.333, 7.3327, 7.3334, 7.3333, 7.3329, 7.3337, 7.3334, 7.3332, 7.3321, 7.3317, 7.3324, 7.3321, 7.3318, 7.3316, 7.3313, 7.331, 7.3308, 7.3304, 7.331, 7.3309, 7.3319, 7.3316, 7.3324, 7.3321, 7.3318, 7.3333, 7.3331, 7.3328, 7.3325, 7.3332, 7.334, 7.3337, 7.3336, 7.3333, 7.3339, 7.3337, 7.3335, 7.3333, 7.3329, 7.3335, 7.3332, 7.333, 7.3326, 7.3325, 7.3335, 7.3331, 7.3356, 7.3362, 7.3359, 7.3394, 7.3391, 7.3388, 7.3386, 7.3384, 7.338, 7.3377, 7.3374, 7.337, 7.3367, 7.3365, 7.3363, 7.336, 7.3356, 7.3354, 7.3353, 7.335, 7.3346, 7.3345, 7.3344, 7.3344, 7.3342, 7.3339, 7.3337, 7.3335, 7.3342, 7.334, 7.3338, 7.3337, 7.3334, 7.3364, 7.3363, 7.3362, 7.3359, 7.3356, 7.3362, 7.3359, 7.3365, 7.3362, 7.3369, 7.3368, 7.3366, 7.3365, 7.3362, 7.336, 7.3377, 7.3376, 7.3373, 7.3371, 7.3361, 7.335, 7.3357, 7.3363, 7.336, 7.3373, 7.3372, 7.3369, 7.3366, 7.3363, 7.3371, 7.3368, 7.3365, 7.3363, 7.3372, 7.3369, 7.3365, 7.3371, 7.3368, 7.3366, 7.3363, 7.3361, 7.335, 7.3347, 7.3337, 7.3334, 7.3332, 7.3332, 7.333, 7.3339, 7.3337, 7.3327, 7.3325, 7.3323, 7.3322, 7.3319, 7.3317, 7.3306, 7.3304, 7.3303, 7.3301, 7.3308, 7.3305, 7.3302, 7.3299, 7.3296, 7.3294, 7.3292, 7.3289, 7.3286, 7.3284, 7.3281, 7.3288, 7.3288, 7.3287, 7.3284, 7.3281, 7.3294, 7.33, 7.33, 7.3291, 7.3281, 7.3288, 7.3285, 7.3282, 7.3279, 7.3278, 7.3284, 7.3282, 7.3274, 7.3273, 7.3279, 7.3292, 7.329, 7.3287, 7.3284, 7.3281, 7.3278, 7.3276, 7.3272, 7.327, 7.328, 7.329000000000001, 7.3287, 7.3292, 7.3289, 7.3286, 7.3275, 7.3274, 7.3271, 7.3268, 7.3265, 7.3263, 7.326, 7.327, 7.3267, 7.3264, 7.3272, 7.3279, 7.3276, 7.3265, 7.327500000000001, 7.328500000000001, 7.3283, 7.328, 7.329000000000001, 7.3288, 7.3286, 7.3283, 7.3289, 7.3299, 7.3297, 7.3294, 7.3293, 7.3291, 7.3289, 7.3288, 7.3286, 7.3287, 7.3284, 7.3281, 7.3287, 7.3284, 7.3281, 7.3279, 7.3278, 7.3286, 7.3283, 7.328, 7.3278, 7.3285, 7.3282, 7.3288, 7.3294, 7.33, 7.3298, 7.3305, 7.3302, 7.3307, 7.3304, 7.331, 7.331, 7.3309, 7.3306, 7.3304, 7.3302, 7.3299, 7.3296, 7.3302, 7.3308, 7.3305, 7.3304, 7.3311, 7.3317, 7.3323, 7.332, 7.3317, 7.3322, 7.3319, 7.3316, 7.3314, 7.3311, 7.3318, 7.3315, 7.3312, 7.332, 7.331, 7.3307, 7.3304, 7.3301, 7.3298, 7.3295, 7.3306, 7.3322, 7.3319, 7.3316, 7.3322, 7.3329, 7.3326, 7.3332, 7.3329, 7.3327, 7.3324, 7.3321, 7.3318, 7.3325, 7.3322, 7.3321, 7.3311, 7.3321000000000005, 7.3319, 7.3316, 7.3313, 7.3311, 7.331, 7.3307, 7.3314, 7.332400000000001, 7.333400000000001, 7.3323, 7.332, 7.3311, 7.3309, 7.3306, 7.3305, 7.3302, 7.3299, 7.3297, 7.3294, 7.3292, 7.329, 7.3287, 7.3285, 7.3282, 7.3279, 7.3289, 7.3299, 7.330900000000001, 7.3306, 7.3305, 7.3302, 7.3301, 7.3299, 7.3306, 7.3303, 7.33, 7.3297, 7.3304, 7.3301, 7.3307, 7.3313, 7.3311, 7.3317, 7.3327, 7.3337, 7.3356, 7.3361, 7.3359, 7.3366, 7.3363, 7.3362, 7.3351, 7.3348, 7.3346, 7.3352, 7.3349, 7.3346, 7.3345, 7.3351, 7.3363, 7.336, 7.3358, 7.3355, 7.3361, 7.3368, 7.3365, 7.3363, 7.336, 7.3358, 7.3361, 7.3359, 7.3357, 7.3349, 7.3347, 7.3337, 7.3327, 7.3333, 7.3336, 7.3343, 7.3342, 7.3331, 7.3321, 7.331, 7.33, 7.3297, 7.3297, 7.3295, 7.3295, 7.3287, 7.3284, 7.3283, 7.3282, 7.328, 7.3277, 7.3285, 7.3283, 7.3298, 7.3296, 7.3292, 7.329, 7.3297, 7.3296, 7.3287, 7.3284, 7.3283, 7.328, 7.3279, 7.3278, 7.3285, 7.3282, 7.328, 7.3278, 7.3284, 7.3291, 7.3288, 7.3285, 7.3282, 7.3281, 7.3278, 7.3276, 7.3273, 7.327, 7.3267, 7.3264, 7.3262, 7.3253, 7.325, 7.3247, 7.3244, 7.3241, 7.3238, 7.3243, 7.3241, 7.3246, 7.3245, 7.3245, 7.3251, 7.325, 7.3248, 7.3246, 7.3252, 7.3249, 7.3246, 7.3243, 7.3241, 7.3239, 7.3246, 7.3252, 7.3249, 7.3256, 7.3253, 7.326, 7.3266, 7.3263, 7.326, 7.3266, 7.3263, 7.3269, 7.3268, 7.3266, 7.3264, 7.3261, 7.3258, 7.3255, 7.3253, 7.3251, 7.3248, 7.3257, 7.3255, 7.3244, 7.3251, 7.325, 7.3257, 7.3255, 7.3254, 7.3259, 7.3256, 7.3253, 7.325, 7.3248, 7.3245, 7.3242, 7.3239, 7.3236, 7.3234, 7.3232, 7.3231, 7.3236, 7.3234, 7.3231, 7.3229, 7.3226, 7.3223, 7.3222, 7.3219, 7.3216, 7.3214, 7.3211, 7.3228, 7.3225, 7.3231, 7.3228, 7.3234, 7.3231, 7.3228, 7.3244, 7.3241, 7.3238, 7.3237, 7.3234, 7.3231, 7.3228, 7.3226, 7.3225, 7.3235, 7.3242, 7.3239, 7.3257, 7.3254, 7.326, 7.3277, 7.3274, 7.3281, 7.3278, 7.3284, 7.3282, 7.3288, 7.3294, 7.3292, 7.3298, 7.3295, 7.3304, 7.3294, 7.3301, 7.3298, 7.3303, 7.33, 7.3324, 7.3339, 7.3344, 7.3341, 7.3339, 7.3338, 7.3335, 7.3332, 7.3329, 7.3335, 7.3333, 7.3332, 7.3331, 7.3329, 7.3326, 7.3323, 7.332, 7.3317, 7.3315, 7.3313, 7.3311, 7.3317, 7.3314, 7.3312, 7.331, 7.3335, 7.3332, 7.3329, 7.3335, 7.3333, 7.3339, 7.3341, 7.3348, 7.3345, 7.3343, 7.3342, 7.3349, 7.3346, 7.3351, 7.3348, 7.3345, 7.3345, 7.3344, 7.3351, 7.334, 7.3341, 7.3339, 7.3352, 7.335, 7.3364, 7.3362, 7.3359, 7.3365, 7.337, 7.3367, 7.3365, 7.3372, 7.3369, 7.3385, 7.3391, 7.3388, 7.3385, 7.3392, 7.3392, 7.3391, 7.3389, 7.3395, 7.3394, 7.3391, 7.3397, 7.3395, 7.3392, 7.3389, 7.3388, 7.3387, 7.3388, 7.3386, 7.3384, 7.3382, 7.338, 7.3377, 7.3375, 7.3372, 7.3369, 7.3366, 7.3372, 7.3371, 7.3369, 7.3375, 7.3372, 7.337, 7.3368, 7.3366, 7.3364, 7.3363, 7.3363, 7.3361, 7.3358, 7.3355, 7.3353, 7.3343, 7.3358, 7.3355, 7.3349, 7.3364, 7.3362, 7.3359, 7.3356, 7.3353, 7.335, 7.3347, 7.3348, 7.3346, 7.3344, 7.3341, 7.3339, 7.3336, 7.3341, 7.3338, 7.3337, 7.3335, 7.3353, 7.3359, 7.3356, 7.3353, 7.3351, 7.3349, 7.3372, 7.3369, 7.3366, 7.3363, 7.3369, 7.3368, 7.3374, 7.3379, 7.3377, 7.3374, 7.3371, 7.3368, 7.3367, 7.3364, 7.337, 7.3376, 7.3378, 7.3376, 7.3374, 7.3371, 7.3369, 7.3366, 7.3366, 7.3363, 7.3361, 7.3366, 7.3363, 7.3361, 7.3358, 7.3349, 7.3347, 7.3346, 7.3351, 7.335, 7.3355, 7.3352, 7.3357, 7.3358, 7.3364, 7.3361, 7.3361, 7.3358, 7.3365, 7.3376, 7.3375, 7.3372, 7.3369, 7.3375, 7.3375, 7.3375, 7.3373, 7.3372, 7.338, 7.3378, 7.3375, 7.3373, 7.3371, 7.3369, 7.3367, 7.3382, 7.338, 7.3378, 7.3385, 7.339, 7.3387, 7.3384, 7.339, 7.3397, 7.3395, 7.3401, 7.3399, 7.3426, 7.3435, 7.3432, 7.3431, 7.3429, 7.3431, 7.3428, 7.343, 7.3429, 7.3435, 7.3434, 7.3439, 7.3436, 7.3433, 7.343, 7.3429, 7.3426, 7.3423, 7.3438, 7.3444, 7.3442, 7.3441, 7.3438, 7.3435, 7.3432, 7.343, 7.3438, 7.3436, 7.3442, 7.3449, 7.3446, 7.3443, 7.344, 7.3445, 7.3442, 7.3452, 7.3449, 7.3446, 7.3451, 7.3456, 7.3453, 7.345, 7.3456, 7.3454, 7.346, 7.3458, 7.3458, 7.3464, 7.3462, 7.3468, 7.3465, 7.3463, 7.3462, 7.3467, 7.3464, 7.347, 7.3468, 7.3474, 7.3483, 7.3483, 7.3481, 7.3487, 7.3493, 7.349, 7.3487, 7.3492, 7.3489, 7.3492, 7.35, 7.3498, 7.3499, 7.3496, 7.3499, 7.3496, 7.3493, 7.3499, 7.3505, 7.3502, 7.3507, 7.3505, 7.3504, 7.3501, 7.3498, 7.3504, 7.351, 7.3508, 7.3506, 7.3514, 7.3512, 7.3502, 7.3508, 7.3498, 7.3495, 7.3493, 7.3491, 7.3488, 7.349, 7.3487, 7.3495, 7.352, 7.3519, 7.3517, 7.3523, 7.352, 7.3526, 7.3533, 7.353, 7.3527, 7.3524, 7.353, 7.3528, 7.3526, 7.3524, 7.3522, 7.3519, 7.3534, 7.3539, 7.3536, 7.3541, 7.3546, 7.3551, 7.3548, 7.3545, 7.3542, 7.3539, 7.3536, 7.3534, 7.3541, 7.3538, 7.3558, 7.3555, 7.3553, 7.3568, 7.3573, 7.357, 7.3567, 7.3565, 7.3562, 7.3561, 7.356, 7.3558, 7.3555, 7.3553, 7.3551, 7.3557, 7.3554, 7.3551, 7.3557, 7.3564, 7.3562, 7.3559, 7.3565, 7.3563, 7.3553, 7.3551, 7.3548, 7.3547, 7.3553, 7.355, 7.3548, 7.3554, 7.356, 7.3557, 7.3555, 7.3552, 7.3557, 7.3555, 7.356, 7.3557, 7.3563, 7.3562, 7.356, 7.3557, 7.3547, 7.3544, 7.3541, 7.3546, 7.3544, 7.3542, 7.354, 7.3537, 7.3535, 7.3541, 7.3539, 7.3537, 7.3551, 7.3557, 7.3555, 7.3553, 7.3551, 7.3548, 7.3554, 7.3552, 7.3549, 7.3546, 7.3547, 7.3553, 7.356, 7.3565, 7.3562, 7.356, 7.3557, 7.3554, 7.3556, 7.3557, 7.3554, 7.3552, 7.3559, 7.3556, 7.3555, 7.3552, 7.355, 7.3547, 7.3545, 7.3542, 7.3547, 7.3545, 7.3546, 7.3543, 7.3535, 7.3536, 7.3535, 7.3532, 7.3529, 7.3543, 7.3548, 7.3545, 7.3542, 7.3547, 7.3552, 7.3557, 7.3562, 7.3567, 7.3572, 7.3577, 7.3574, 7.3571, 7.3568, 7.3565, 7.3571, 7.3577, 7.3584, 7.3582, 7.3581, 7.3579, 7.3585, 7.3584, 7.3582, 7.3588, 7.3602, 7.3608, 7.3605, 7.3603, 7.3601, 7.3599, 7.3597, 7.3595, 7.3593, 7.3591, 7.3588, 7.3586, 7.3583, 7.3581, 7.3579, 7.3584, 7.3589, 7.3586, 7.3584, 7.3589, 7.3588, 7.3586, 7.3591, 7.3589, 7.3587, 7.3585, 7.3582, 7.358, 7.3578, 7.3584, 7.3589, 7.3588, 7.3586, 7.3583, 7.358, 7.3577, 7.3583, 7.3591, 7.3588, 7.3586, 7.3584, 7.3598, 7.3595, 7.361, 7.3609, 7.3606, 7.3605, 7.3603, 7.3604, 7.3605, 7.3603, 7.3601, 7.36, 7.3636, 7.3655, 7.3654, 7.366, 7.3666, 7.3672, 7.3671, 7.3669, 7.3667, 7.3664, 7.3662, 7.3659, 7.3657, 7.3655, 7.3656, 7.3653, 7.365, 7.3655, 7.3661, 7.3661, 7.3658, 7.3656, 7.3655, 7.3653, 7.3651, 7.3658, 7.3655, 7.3662, 7.3675, 7.3673, 7.3671, 7.3669, 7.3676, 7.3675, 7.3673, 7.3671, 7.3677, 7.3675, 7.3674, 7.3672, 7.3669, 7.3666, 7.3665, 7.367, 7.3668, 7.3674, 7.3672, 7.367, 7.3668, 7.3682, 7.3688, 7.3693, 7.3691, 7.3689, 7.3686, 7.3688, 7.3685, 7.3684, 7.3689, 7.3687, 7.3686, 7.3684, 7.3691, 7.3689, 7.3686, 7.3684, 7.3682, 7.3687, 7.3685, 7.3683, 7.3681, 7.3678, 7.3676, 7.3675, 7.3673, 7.3672, 7.367, 7.3667, 7.3664, 7.3662, 7.366, 7.3658, 7.3655, 7.366, 7.3657, 7.3664, 7.3669, 7.3667, 7.3665, 7.3664, 7.3661, 7.3659, 7.3656, 7.3655, 7.366, 7.3657, 7.3656, 7.3662, 7.3668, 7.3666, 7.3671, 7.3668, 7.3666, 7.3671, 7.367, 7.3667, 7.3664, 7.3662, 7.3659, 7.3657, 7.3655, 7.366, 7.366, 7.3657, 7.3654, 7.3651, 7.3659, 7.3657, 7.3656, 7.3654, 7.3651, 7.3649, 7.3654, 7.3651, 7.365, 7.3647, 7.3646, 7.3643, 7.364, 7.3639, 7.3636, 7.3634, 7.3639, 7.3644, 7.3648, 7.3646, 7.3644, 7.3641, 7.3638, 7.3636, 7.3633, 7.3631, 7.3629, 7.3627, 7.3625, 7.363, 7.3627, 7.3631, 7.3636, 7.3633, 7.3631, 7.3628, 7.3626, 7.3624, 7.3629, 7.3634, 7.3631, 7.3628, 7.3626, 7.3623, 7.362, 7.3617, 7.3614, 7.3612, 7.3609, 7.3608, 7.3606, 7.3604, 7.3601, 7.3598, 7.3603, 7.3601, 7.3598, 7.3595, 7.36, 7.3613, 7.3618, 7.3617, 7.3614, 7.3635, 7.3632, 7.363, 7.3637, 7.365, 7.3651, 7.3652, 7.3659, 7.3656, 7.3654, 7.3651, 7.3648, 7.3645, 7.3651, 7.365, 7.3647, 7.3652, 7.3657, 7.3654, 7.3651, 7.3648, 7.3647, 7.3677, 7.3674, 7.3671, 7.3665], '192.168.122.110': [5.6944, 5.6023, 5.5383, 5.6297, 5.7698, 5.9318, 5.8411, 5.9552, 6.5528, 6.4981, 6.4408, 6.3926, 6.4206, 6.3437, 6.3431, 6.6266, 6.5586, 6.4929, 6.7241, 6.6553, 6.6484, 6.8436, 7.0113, 6.9885, 6.7627, 6.7271, 6.6855, 6.6865000000000006, 6.7086, 6.7353, 6.7263, 6.8503, 6.8074, 7.4739, 7.4448, 7.4159, 7.3629, 7.6006, 7.5558, 7.5475, 7.5237, 7.5149, 7.5931, 7.5441, 7.4966, 7.4853, 7.4414, 7.4372, 7.4319, 7.4261, 7.4944, 7.4875, 7.4795, 7.4409, 7.4057, 7.3704, 7.4319, 7.3973, 7.3642, 7.331, 7.3896, 7.3845, 7.3737, 7.3454, 7.32, 7.2978, 7.2697, 7.3177, 7.2918, 7.2729, 7.256, 7.234, 7.2119, 7.1869, 7.2366, 7.2301, 7.2585, 7.1943, 7.1715, 7.1613, 7.1427, 7.1917, 7.1854, 7.1658, 7.1453, 7.1978, 7.2524, 7.2356, 7.2219, 7.2031, 7.1859, 7.2427, 7.261, 7.2539, 7.2949, 7.2773, 7.2615, 7.2424, 7.2223, 7.2601, 7.2549, 7.2367, 7.2208, 7.2037, 7.2418, 7.2366, 7.2208, 7.2173, 7.2023, 7.2006, 7.185, 7.1859, 7.1843, 7.1807, 7.1691, 7.1586, 7.2874, 7.2714, 7.3045, 7.3544, 7.4054, 7.4043, 7.4123, 7.3972, 7.3829, 7.4658, 7.4512, 7.4475, 7.443, 7.4299, 7.4166, 7.412, 7.4389, 7.427, 7.4122, 7.4372, 7.4213, 7.4521, 7.4432, 7.4284, 7.4139, 7.4583, 7.4431, 7.4389, 7.4693, 7.4564, 7.4521, 7.4448, 7.4685, 7.4622, 7.4485, 7.4707, 7.4608, 7.4475, 7.4342, 7.4334, 7.4898, 7.6192, 7.6049, 7.5909, 7.5773, 7.568, 7.5669, 7.5901, 7.5873, 7.5794, 7.569, 7.5579, 7.5818, 7.5706, 7.5645, 7.5889, 7.6105, 7.6036, 7.6117, 7.6022, 7.5973, 7.588, 7.5767, 7.5831, 7.5794, 7.6422, 7.6305, 7.6273, 7.6159, 7.6348, 7.6278, 7.6216, 7.6399, 7.6334, 7.6256, 7.6135, 7.6329, 7.6302, 7.6377, 7.6525, 7.6438, 7.6632, 7.6568, 7.6499, 7.6382, 7.6292, 7.6205, 7.6112, 7.6067, 7.5963, 7.5885, 7.5806, 7.5776, 7.5779, 7.571, 7.5677, 7.5577, 7.5481, 7.5415, 7.5586, 7.5498, 7.5482, 7.5381, 7.5285, 7.5001, 7.5157, 7.5079, 7.5003, 7.4929, 7.4898, 7.4815, 7.4765, 7.4762, 7.4689, 7.4674, 7.4615, 7.4543, 7.4512, 7.4442, 7.4416, 7.4349, 7.4313, 7.4712, 7.4653, 7.479, 7.4701, 7.464, 7.4777, 7.4915, 7.4901, 7.5247, 7.5167, 7.5086, 7.5012, 7.493, 7.4841, 7.4764, 7.51, 7.5244, 7.5176, 7.569, 7.5831, 7.5838, 7.5764, 7.5713, 7.5647, 7.5567, 7.5542, 7.5459, 7.5406, 7.5351, 7.5474, 7.5392, 7.5517, 7.5655, 7.5651, 7.5582, 7.5703, 7.5659, 7.5796, 7.5753, 7.5684, 7.5616, 7.555, 7.5529, 7.5462, 7.538, 7.5306, 7.5241, 7.52, 7.5509, 7.5636, 7.5576, 7.5695, 7.5628, 7.5554, 7.5502, 7.5448, 7.5384, 7.5363, 7.5491, 7.5447, 7.5417, 7.5435, 7.5373, 7.5484, 7.5607, 7.5536, 7.5466, 7.5492, 7.5425, 7.5435, 7.5374, 7.533, 7.5313, 7.529, 7.5563, 7.554, 7.5472, 7.5468, 7.5443, 7.5373, 7.5369, 7.5345, 7.5281, 7.5394, 7.5356, 7.5321, 7.5253, 7.559, 7.552, 7.5499, 7.5459, 7.5441, 7.5424, 7.5413, 7.5522, 7.5472, 7.5447, 7.5383, 7.539, 7.5358, 7.5344, 7.5301, 7.526, 7.5227, 7.521, 7.5306, 7.5259, 7.5201, 7.5165, 7.529, 7.5389, 7.5341, 7.5288, 7.5251, 7.5205, 7.531, 7.5423, 7.5375, 7.5354, 7.5495, 7.5452, 7.5392, 7.5339, 7.5309, 7.5298, 7.5253, 7.5379, 7.5217, 7.5192, 7.5144, 7.5255, 7.5201, 7.517, 7.5273, 7.5269, 7.5265, 7.521, 7.5158, 7.5265, 7.5245, 7.5196, 7.5168, 7.5139, 7.5135, 7.5105, 7.5207, 7.518, 7.516, 7.5256, 7.5254, 7.5247, 7.522, 7.5191, 7.5139, 7.5087, 7.5176, 7.512, 7.5198, 7.5185, 7.5168, 7.5258, 7.5224, 7.5213, 7.5292, 7.5365, 7.5413, 7.5374, 7.5378, 7.5325, 7.5278, 7.5261, 7.5225, 7.5197, 7.5179, 7.514, 7.5118, 7.5092, 7.5056, 7.5002, 7.5083, 7.5037, 7.512, 7.5079, 7.5051, 7.5021, 7.4976, 7.4939, 7.4918, 7.4865, 7.4835, 7.4827, 7.4821, 7.4787, 7.4745, 7.4713, 7.4927, 7.4907, 7.4885, 7.4848, 7.4809, 7.478, 7.4738, 7.4702, 7.4678, 7.4646, 7.4609, 7.46, 7.4583, 7.4535, 7.4499, 7.4496, 7.4496, 7.4469, 7.4552, 7.4627, 7.4578, 7.4544, 7.4501, 7.4474, 7.4444, 7.4428, 7.439, 7.4379, 7.4383, 7.4337, 7.4296, 7.4258, 7.4219, 7.4188, 7.4261, 7.4227, 7.4185, 7.427, 7.4254, 7.4331, 7.4303, 7.426, 7.4247, 7.4219, 7.4183, 7.4147, 7.4109, 7.4182, 7.4145, 7.4319, 7.4296, 7.4275, 7.435, 7.4333, 7.4294, 7.4271, 7.4417, 7.4386, 7.436, 7.4357, 7.4359, 7.4319, 7.4323, 7.4293, 7.4251, 7.4213, 7.4613, 7.4583, 7.454, 7.4624, 7.4587, 7.4575, 7.4542, 7.4504, 7.4471, 7.4431, 7.4429, 7.4486, 7.4459, 7.4418, 7.4403, 7.4367, 7.4432, 7.449, 7.4457, 7.4419, 7.438, 7.4342, 7.4404, 7.4366, 7.4343, 7.4305, 7.4266, 7.4259, 7.4328, 7.4294, 7.431, 7.4302, 7.4265, 7.4346, 7.4318, 7.4383, 7.4456, 7.4437, 7.4498, 7.4479, 7.4441, 7.4507, 7.4491, 7.4579, 7.4561, 7.4524, 7.4497, 7.4488, 7.4453, 7.4415, 7.4389, 7.4408, 7.4395, 7.4361, 7.4329, 7.4297, 7.4271, 7.4273, 7.434, 7.4356, 7.4323, 7.4285, 7.4267, 7.4328, 7.4309, 7.4299, 7.4361, 7.4336, 7.4403, 7.4398, 7.438, 7.435, 7.4314, 7.4381, 7.4345, 7.4312, 7.4288, 7.4254, 7.4232, 7.42, 7.4188, 7.4241, 7.423, 7.4204, 7.4197, 7.4165, 7.4131, 7.4096, 7.406, 7.4054, 7.4048, 7.4019, 7.4, 7.3983, 7.3998, 7.3967, 7.3951, 7.3926, 7.3899, 7.3887, 7.3967, 7.3933, 7.3918, 7.3887, 7.3872, 7.3841, 7.3833, 7.3963, 7.3931, 7.3905, 7.3872, 7.3844, 7.3815, 7.3883, 7.3878, 7.3847, 7.3912, 7.3882, 7.3788, 7.377, 7.3767, 7.3889, 7.4041, 7.4009, 7.4079, 7.4142, 7.4135, 7.414, 7.4123, 7.4096, 7.4161, 7.413, 7.414, 7.4116, 7.4082, 7.408, 7.4136, 7.4109, 7.4094, 7.4152, 7.4144, 7.4192, 7.4166, 7.4216, 7.4186, 7.4164, 7.4138, 7.4116, 7.4106, 7.4092, 7.4061, 7.4041, 7.4013, 7.3983, 7.4037, 7.4088, 7.4063, 7.3987, 7.3958, 7.4012, 7.4016, 7.3993, 7.3963, 7.395, 7.3919, 7.389, 7.3861, 7.3918, 7.3973, 7.3968, 7.3945, 7.3932, 7.3905, 7.3958, 7.394, 7.3997, 7.4049, 7.4019, 7.4017, 7.3989, 7.4052, 7.4045, 7.4024, 7.4075, 7.4049, 7.4024, 7.4005, 7.3985, 7.402, 7.4004, 7.3978, 7.3948, 7.392, 7.3911, 7.3887, 7.3877, 7.3848, 7.3905, 7.3883, 7.3937, 7.391, 7.3886, 7.386, 7.3834, 7.3877, 7.3883, 7.3883, 7.3862, 7.3865, 7.3855, 7.384, 7.3922, 7.3939, 7.391, 7.3963, 7.3946, 7.3923, 7.3978, 7.4033, 7.4084, 7.4077, 7.4056, 7.4029, 7.4001, 7.3975, 7.402, 7.4005, 7.3979, 7.3963, 7.4018, 7.4011, 7.3983, 7.3966, 7.3951, 7.3938, 7.3921, 7.3892, 7.3945, 7.3916, 7.3917, 7.3897, 7.3888, 7.3865, 7.3935, 7.3935, 7.391, 7.3891, 7.3876, 7.3866, 7.3911, 7.3888, 7.3936, 7.3982, 7.4136, 7.413, 7.4172, 7.4144, 7.4133, 7.4106, 7.408, 7.4107, 7.416, 7.4145, 7.4188, 7.4161, 7.4143, 7.4117, 7.4089, 7.4064, 7.4044, 7.4091, 7.4071, 7.4062, 7.4111, 7.4063, 7.4068, 7.4055, 7.4105, 7.4093, 7.4067, 7.4044, 7.4107, 7.4099, 7.4145, 7.4128, 7.4172, 7.4221, 7.4202, 7.4177, 7.4167, 7.4151, 7.4128, 7.4102, 7.4089, 7.4135, 7.4178, 7.4227, 7.4232, 7.4282, 7.427, 7.4252, 7.4246, 7.4221, 7.4279, 7.4265, 7.4239, 7.4236, 7.4231, 7.4276, 7.425, 7.4238, 7.4448, 7.4441, 7.4437, 7.4421, 7.4395, 7.4434, 7.4475, 7.4464, 7.4444, 7.4442, 7.4437, 7.4421, 7.447, 7.4536, 7.4517, 7.4559, 7.4534, 7.4581, 7.4579, 7.4559, 7.4533, 7.4664, 7.4706, 7.475, 7.4746, 7.4754, 7.4797, 7.4838, 7.4876, 7.4849, 7.4836, 7.4816, 7.4857, 7.4831, 7.4814, 7.4804, 7.4798, 7.4788, 7.4768, 7.4758, 7.4742, 7.4717, 7.471, 7.4685, 7.4678, 7.4724, 7.472, 7.4717, 7.4699, 7.4673, 7.4659, 7.4634, 7.4615, 7.4659, 7.4635, 7.4619, 7.4651, 7.4633, 7.4612, 7.4597, 7.4597, 7.4584, 7.456, 7.4555, 7.4536, 7.4584, 7.4566, 7.4558, 7.4556, 7.4554, 7.4546, 7.4522, 7.4497, 7.4475, 7.4465, 7.4448, 7.4441, 7.4417, 7.4415, 7.4401, 7.44, 7.4377, 7.4367, 7.4344, 7.4332, 7.431, 7.4412, 7.4393, 7.4429, 7.4406, 7.4396, 7.4372, 7.4348, 7.4327, 7.4316, 7.4353, 7.4329, 7.4315, 7.4365, 7.4344, 7.4344, 7.4328, 7.4325, 7.4343, 7.4389, 7.437, 7.4349, 7.433, 7.4313, 7.4332, 7.4313, 7.4305, 7.4407, 7.439, 7.4431, 7.4424, 7.4408, 7.4401, 7.4378, 7.4431, 7.4414, 7.4407, 7.4554, 7.4551, 7.4595, 7.4571, 7.4564, 7.4602, 7.459, 7.4631, 7.4666, 7.4703, 7.47, 7.4689, 7.4665, 7.4644, 7.4623, 7.4607, 7.4612, 7.4605, 7.46, 7.464, 7.4622, 7.4605, 7.4583, 7.4567, 7.4603, 7.4646, 7.4629, 7.4606, 7.4587, 7.4577, 7.4558, 7.4595, 7.4585, 7.4581, 7.4566, 7.4548, 7.4543, 7.4525, 7.4505, 7.4547, 7.4525, 7.4528, 7.4517, 7.4507, 7.4487, 7.4464, 7.4449, 7.4442, 7.442, 7.4403, 7.4442, 7.4422, 7.4425, 7.4469, 7.4449, 7.443, 7.4469, 7.4454, 7.4487, 7.448, 7.4469, 7.4453, 7.4434, 7.4416, 7.4398, 7.443, 7.4411, 7.4443, 7.4438, 7.4446, 7.4425, 7.4407, 7.439, 7.437, 7.4359, 7.4361, 7.4401, 7.438, 7.4415, 7.4404, 7.4382, 7.4365, 7.4356, 7.4339, 7.4326, 7.4305, 7.4287, 7.4284, 7.4456, 7.4439, 7.4437, 7.4427, 7.441, 7.4391, 7.4372, 7.4351, 7.433, 7.4327, 7.4306, 7.4286, 7.428, 7.4259, 7.4254, 7.4249, 7.428, 7.4267, 7.4299, 7.4336, 7.4323, 7.4302, 7.4296, 7.428, 7.4263, 7.4254, 7.4238, 7.4231, 7.427, 7.4272, 7.4259, 7.4354, 7.4362, 7.4358, 7.436, 7.4344, 7.4324, 7.4314, 7.4305, 7.4286, 7.427, 7.4308, 7.4289, 7.4274, 7.427, 7.4306, 7.429, 7.4284, 7.428, 7.4264, 7.4263, 7.4246, 7.4231, 7.4221, 7.4229, 7.4219, 7.4203, 7.4183, 7.4166, 7.4205, 7.4207, 7.4188, 7.4172, 7.4155, 7.4189, 7.4184, 7.4175, 7.4174, 7.4215, 7.4199, 7.4182, 7.4177, 7.4163, 7.4155, 7.4146, 7.4142, 7.4125, 7.4156, 7.4141, 7.4139, 7.412, 7.413, 7.4121, 7.4107, 7.4093, 7.408, 7.4144, 7.4174, 7.4163, 7.4193, 7.4175, 7.4156, 7.4137, 7.4135, 7.4127, 7.4108, 7.4092, 7.4123, 7.4106, 7.4091, 7.4123, 7.4107, 7.4094, 7.4085, 7.4071, 7.4061, 7.4055, 7.4091, 7.4075, 7.4059, 7.4063, 7.406, 7.4091, 7.4092, 7.4078, 7.4108, 7.4091, 7.4085, 7.4121, 7.411, 7.4092, 7.4075, 7.4068, 7.4097, 7.4126, 7.4108, 7.4089, 7.4118, 7.412, 7.4121, 7.4161, 7.4151, 7.4192, 7.4228, 7.4268, 7.4252, 7.4235, 7.422, 7.421, 7.424, 7.4223, 7.4207, 7.4235, 7.4233, 7.4277, 7.426, 7.4247, 7.4242, 7.4239, 7.4227, 7.4259, 7.4288, 7.4382, 7.4368, 7.4353, 7.4347, 7.4333, 7.4322, 7.4315, 7.4297, 7.43, 7.4284, 7.4269, 7.4259, 7.4244, 7.4229, 7.4222, 7.4254, 7.4286, 7.4274, 7.4269, 7.4254, 7.4254, 7.4242, 7.4274, 7.427, 7.4269, 7.4253, 7.424, 7.4287, 7.4271, 7.4255, 7.4252, 7.4238, 7.4266, 7.4252, 7.4236, 7.4222, 7.4218, 7.421, 7.4243, 7.4274, 7.4264, 7.429, 7.428, 7.4264, 7.4248, 7.4245, 7.4229, 7.4221, 7.4206, 7.4234, 7.4221, 7.425, 7.4233, 7.4217, 7.4209, 7.42, 7.4192, 7.422, 7.4254, 7.4213, 7.4213, 7.4291, 7.4279, 7.4274, 7.4257, 7.4242, 7.423, 7.4213, 7.421, 7.4212, 7.4243, 7.4242, 7.4235, 7.4221, 7.4251, 7.4235, 7.4226, 7.4218, 7.4204, 7.419, 7.4181, 7.4165, 7.4162, 7.4157, 7.4153, 7.4142, 7.4136, 7.4121, 7.4156, 7.4141, 7.4137, 7.4134, 7.4121, 7.4105, 7.4102, 7.4098, 7.4083, 7.408, 7.4115, 7.4103, 7.4101, 7.4086, 7.4072, 7.4066, 7.4053, 7.404, 7.4033, 7.402, 7.4007, 7.4003, 7.3993, 7.3977, 7.3966, 7.3951, 7.3935, 7.3922, 7.3922, 7.3948, 7.3939, 7.3936, 7.3923, 7.3913, 7.3898, 7.3887, 7.3915, 7.3903, 7.3889, 7.3876, 7.3864, 7.385, 7.3837, 7.3868, 7.3871, 7.3903, 7.3888, 7.3917, 7.3951, 7.3937, 7.3929, 7.3916, 7.3903, 7.3905, 7.3907, 7.3893, 7.3894, 7.3879, 7.3867, 7.3865, 7.3894, 7.388, 7.3868, 7.3898, 7.389, 7.3916, 7.3902, 7.3929, 7.3918, 7.3904, 7.3866, 7.3852, 7.3844, 7.3829, 7.3826, 7.3824, 7.3813, 7.3798, 7.384, 7.3828, 7.3819, 7.3809, 7.3801, 7.3786, 7.3773, 7.3779, 7.3804, 7.383, 7.3818, 7.3853, 7.3839, 7.3867, 7.3854, 7.4005, 7.4, 7.3997, 7.3999, 7.3989, 7.3982, 7.3967, 7.3961, 7.3947, 7.3935, 7.392, 7.3906, 7.3894, 7.396, 7.3992, 7.4156, 7.4143, 7.4135, 7.4126, 7.4193, 7.4178, 7.4181, 7.4211, 7.4201, 7.4226, 7.4211, 7.42, 7.4228, 7.4392, 7.4386, 7.437, 7.4356, 7.4429, 7.4425, 7.4452, 7.4449, 7.4446, 7.4485, 7.4474, 7.4468, 7.4455, 7.4445, 7.4492, 7.4478, 7.4475, 7.4499, 7.4493, 7.4478, 7.4504, 7.4531, 7.4556, 7.4542, 7.4527, 7.4513, 7.4498, 7.4484, 7.4514, 7.45, 7.4491, 7.4634, 7.4623, 7.4614, 7.4666, 7.4659, 7.4648, 7.4699, 7.4691, 7.4714, 7.4711, 7.4696, 7.4684, 7.4708, 7.4701, 7.4696, 7.4686, 7.4673, 7.4701, 7.473, 7.4725, 7.4754, 7.4741, 7.4729, 7.4729, 7.4715, 7.474, 7.4727, 7.4714, 7.4706, 7.4729, 7.4724, 7.4712, 7.4735, 7.4721, 7.4707, 7.4693, 7.4688, 7.4674, 7.466, 7.4652, 7.4676, 7.4663, 7.469, 7.4678, 7.4663, 7.4659, 7.4688, 7.468, 7.4666, 7.4662, 7.465, 7.4643, 7.4637, 7.4624, 7.4614, 7.4629, 7.4614, 7.46, 7.4586, 7.4574, 7.456, 7.4587, 7.458, 7.4577, 7.4567, 7.46, 7.4589, 7.4582, 7.4568, 7.4559, 7.4593, 7.4588, 7.4575, 7.4575, 7.4563, 7.4551, 7.454, 7.4564, 7.4551, 7.4543, 7.4557, 7.4542, 7.4567, 7.4564, 7.4552, 7.454, 7.4527, 7.455, 7.4574, 7.456, 7.4553, 7.4542, 7.4533, 7.4534, 7.4525, 7.4514, 7.45, 7.449, 7.4525, 7.4517, 7.4508, 7.4528, 7.4525, 7.4516, 7.4502, 7.4494, 7.4521, 7.4509, 7.45, 7.4488, 7.4475, 7.4462, 7.4457, 7.4449, 7.4475, 7.4472, 7.4459, 7.4455, 7.4479, 7.4475, 7.4497, 7.4491, 7.4477, 7.4464, 7.4453, 7.4479, 7.4467, 7.4458, 7.4487, 7.4509, 7.4507, 7.4512, 7.4502, 7.4523, 7.4522, 7.4509, 7.4533, 7.4522, 7.451, 7.4499, 7.4498, 7.4525, 7.4514, 7.4511, 7.4501, 7.4522, 7.4509, 7.4498, 7.4519, 7.4524, 7.4511, 7.4534, 7.4523, 7.4547, 7.4551, 7.4542, 7.4529, 7.4519, 7.4508, 7.4519, 7.4585, 7.4575, 7.4564, 7.4554, 7.454, 7.4561, 7.462, 7.4609, 7.4649, 7.4635, 7.4622, 7.4644, 7.463, 7.4628, 7.4617, 7.4613, 7.4601, 7.4626, 7.463, 7.4621, 7.4611, 7.4637, 7.4629, 7.4622, 7.4619, 7.4612, 7.4599, 7.4623, 7.4614, 7.4603, 7.46, 7.4596, 7.4586, 7.4579, 7.4569, 7.4567, 7.4557, 7.458, 7.4569, 7.4591, 7.458, 7.4601, 7.4589, 7.4585, 7.4574, 7.4597, 7.462, 7.4617, 7.4606, 7.46, 7.459, 7.4578, 7.4575, 7.4573, 7.4567, 7.4556, 7.4549, 7.4571, 7.4559, 7.4551, 7.4539, 7.453, 7.4526, 7.455, 7.4574, 7.4565, 7.4554, 7.4547, 7.4546, 7.455, 7.4538, 7.4565, 7.4555, 7.455, 7.4549, 7.4536, 7.4533, 7.4554, 7.4631, 7.4624, 7.4617, 7.4637, 7.4663, 7.4689, 7.4679, 7.4673, 7.4665, 7.4667, 7.4692, 7.4687, 7.468, 7.4673, 7.4694, 7.4681, 7.4671, 7.4658, 7.4653, 7.4641, 7.4631, 7.4622, 7.4619, 7.4619, 7.4607, 7.4597, 7.4624, 7.4612, 7.4607, 7.4626, 7.4618, 7.4641, 7.4629, 7.4651, 7.4649, 7.467, 7.4663, 7.4657, 7.4677, 7.4668, 7.4656, 7.4643, 7.4644, 7.4668, 7.4667, 7.4688, 7.4676, 7.4694, 7.4682, 7.4679, 7.467, 7.4659, 7.4655, 7.4644, 7.4632, 7.4624, 7.4611, 7.46, 7.4619, 7.4616, 7.4642, 7.4635, 7.4622, 7.4609, 7.4604, 7.4594, 7.4615, 7.4612, 7.4605, 7.4624, 7.4621, 7.4611, 7.46, 7.459, 7.4578, 7.4566, 7.4554, 7.458, 7.4568, 7.4653, 7.4643, 7.4696, 7.4684, 7.4702, 7.4725, 7.4747, 7.4735, 7.4727, 7.4714, 7.4703, 7.4705, 7.4707, 7.4702, 7.4697, 7.4699, 7.4701, 7.4693, 7.4683, 7.4672, 7.4669, 7.4668, 7.4689, 7.4679, 7.4678, 7.4667, 7.4657, 7.4645, 7.4666, 7.4656, 7.4645, 7.4635, 7.4632, 7.4635, 7.4624, 7.4612, 7.4605, 7.4597, 7.4594, 7.4584, 7.4585, 7.4589, 7.4577, 7.4569, 7.4558, 7.4555, 7.4544, 7.4563, 7.4561, 7.4555, 7.455, 7.4544, 7.4535, 7.4534, 7.4531, 7.452, 7.4513, 7.4508, 7.4525, 7.4544, 7.4538, 7.4529, 7.4523, 7.4524, 7.4518, 7.4511, 7.4512, 7.453, 7.458, 7.4569, 7.4561, 7.4645, 7.4727, 7.4774, 7.4762, 7.4752, 7.4752, 7.4754, 7.4745, 7.4734, 7.4848, 7.4848, 7.4836, 7.4833, 7.4831, 7.4821, 7.4816, 7.4805, 7.4796, 7.4784, 7.4774, 7.4795, 7.4792, 7.4787, 7.4786, 7.4776, 7.4797, 7.4786, 7.4775, 7.4799, 7.4818, 7.4806, 7.4799, 7.4819, 7.4836, 7.4855, 7.4875, 7.4893, 7.4883, 7.4871, 7.4871, 7.4864, 7.4853, 7.4849, 7.4844, 7.4835, 7.4831, 7.4822, 7.4841, 7.4838, 7.4886, 7.4879, 7.4868, 7.4888, 7.4907, 7.4902, 7.492, 7.4939, 7.4932, 7.4926, 7.4919, 7.4914, 7.4916, 7.4913, 7.4915, 7.4882, 7.4903, 7.4898, 7.4916, 7.4906, 7.4901, 7.4893, 7.4881, 7.487, 7.4866, 7.4864, 7.4886, 7.488, 7.487, 7.486, 7.486, 7.4878, 7.4872, 7.4862, 7.4858, 7.4847, 7.4836, 7.4834, 7.4824, 7.4864, 7.4854, 7.4844, 7.4919, 7.4937, 7.4932, 7.4954, 7.4949, 7.4942, 7.4932, 7.4925, 7.4943, 7.4931, 7.4949, 7.494, 7.4958, 7.4949, 7.4967, 7.4957, 7.4951, 7.4945, 7.4942, 7.4959, 7.4948, 7.494, 7.4934, 7.4952, 7.4944, 7.4933, 7.4924, 7.4913, 7.4902, 7.4891, 7.4883, 7.4878, 7.4871, 7.4865, 7.4854, 7.4843, 7.4842, 7.4836, 7.4829, 7.4824, 7.4845, 7.4862, 7.4851, 7.4843, 7.4863, 7.4842, 7.4852, 7.489, 7.4893, 7.49, 7.4893, 7.4889, 7.4882, 7.49, 7.4899, 7.4888, 7.4885, 7.4879, 7.4935, 7.493, 7.4921, 7.4938, 7.493, 7.4923, 7.4941, 7.496, 7.4954, 7.4948, 7.4964, 7.4982, 7.4978, 7.4967, 7.496, 7.4952, 7.4971, 7.4991, 7.4997, 7.4986, 7.4975, 7.4967, 7.4956, 7.4975, 7.4969, 7.499, 7.5007, 7.5029, 7.5021, 7.5012, 7.5004, 7.5024, 7.5044, 7.5035, 7.5031, 7.5022, 7.5021, 7.5013, 7.5003, 7.4996, 7.5016, 7.5007, 7.5025, 7.5022, 7.504, 7.5029, 7.5024, 7.502, 7.501, 7.5, 7.499, 7.4983, 7.4975, 7.4992, 7.5011, 7.5004, 7.5003, 7.4993, 7.4988, 7.4986, 7.4977, 7.4998, 7.4991, 7.4985, 7.5006, 7.5003, 7.5021, 7.5012, 7.5007, 7.4996, 7.5015, 7.5006, 7.4999, 7.4993, 7.5009, 7.5002, 7.5, 7.4991, 7.5008, 7.5003, 7.4996, 7.4986, 7.4994, 7.4991, 7.4986, 7.5004, 7.5023, 7.5013, 7.501, 7.5, 7.4995, 7.4994, 7.4985, 7.4976, 7.4971, 7.4975, 7.4974, 7.4969, 7.496, 7.4957, 7.4946, 7.4937, 7.4927, 7.4918, 7.4913, 7.4904, 7.4919, 7.4913, 7.4931, 7.4922, 7.4917, 7.4909, 7.4907, 7.4898, 7.493, 7.4977, 7.4968, 7.4963, 7.4982, 7.4976, 7.4974, 7.4964, 7.4959, 7.4948, 7.4966, 7.4971, 7.4987, 7.4978, 7.4968, 7.4958, 7.495, 7.4941, 7.4932, 7.4948, 7.4944, 7.4934, 7.4929, 7.4919, 7.4909, 7.4899, 7.4888, 7.4882, 7.4898, 7.489, 7.4887, 7.4878, 7.4871, 7.4861, 7.488, 7.4873, 7.4891, 7.4882, 7.488, 7.4897, 7.49, 7.4891, 7.4916, 7.4911, 7.4909, 7.4904, 7.49, 7.4894, 7.4885, 7.4878, 7.4871, 7.4864, 7.4855, 7.487, 7.4873, 7.4864, 7.4906, 7.4929, 7.4921, 7.4895, 7.489, 7.4995, 7.4985, 7.4981, 7.4997, 7.4993, 7.4985, 7.5001, 7.4991, 7.499, 7.5006, 7.5026, 7.5017, 7.5014, 7.5004, 7.4996, 7.4988, 7.4979, 7.498, 7.4972, 7.4969, 7.4963, 7.4953, 7.4922, 7.4913, 7.4908, 7.49, 7.4916, 7.4908, 7.4924, 7.4922, 7.4924, 7.4922, 7.4912, 7.4908, 7.4977, 7.4973, 7.4963, 7.4958, 7.4953, 7.4946, 7.4963, 7.4956, 7.4974, 7.4965, 7.4983, 7.4979, 7.4972, 7.4965, 7.4962, 7.4953, 7.4971, 7.4988, 7.4982, 7.4979, 7.4975, 7.4972, 7.4963, 7.4957, 7.4972, 7.4964, 7.4956, 7.4951, 7.4941, 7.4933, 7.4924, 7.492, 7.4936, 7.4928, 7.4899, 7.4915, 7.4906, 7.4898, 7.4915, 7.4931, 7.4948, 7.4938, 7.4936, 7.4933, 7.4948, 7.4938, 7.4938, 7.4952, 7.4943, 7.496, 7.4954, 7.4948, 7.4969, 7.4959, 7.495, 7.494, 7.4955, 7.4971, 7.4986, 7.4979, 7.497, 7.4965, 7.4959, 7.4951, 7.4942, 7.4943, 7.494, 7.4937, 7.4929, 7.4921, 7.4966, 7.4958, 7.4958, 7.4956, 7.4951, 7.4966, 7.496, 7.4975, 7.4972, 7.4988, 7.5006, 7.5, 7.4991, 7.4983, 7.4974, 7.4967, 7.4963, 7.4981, 7.4997, 7.499, 7.4997, 7.4988, 7.4983, 7.498, 7.4978, 7.4993, 7.4985, 7.4981, 7.4974, 7.4982, 7.4975, 7.4972, 7.4988, 7.498, 7.4979, 7.497, 7.4969, 7.4966, 7.4959, 7.4956, 7.4946, 7.4942, 7.4933, 7.4932, 7.4927, 7.4918, 7.491, 7.4901, 7.4898, 7.4891, 7.4906, 7.4902, 7.4917, 7.4908, 7.49, 7.4898, 7.489, 7.4904, 7.4896, 7.4892, 7.4884, 7.4903, 7.4915, 7.491, 7.4902, 7.4895, 7.4886, 7.4878, 7.4895, 7.4887, 7.4883, 7.4874, 7.4871, 7.4867, 7.4865, 7.4859, 7.4855, 7.4848, 7.4862, 7.4861, 7.4861, 7.4832, 7.485, 7.4866, 7.4863, 7.4834, 7.485, 7.4867, 7.4858, 7.4852, 7.4869, 7.4861, 7.4853, 7.4845, 7.4836, 7.4827, 7.4819, 7.4832, 7.4826, 7.4818, 7.481, 7.4804, 7.4799, 7.4789, 7.4784, 7.4775, 7.4767, 7.4759, 7.4774, 7.4771, 7.4761, 7.4776, 7.4772, 7.4785, 7.4801, 7.4794, 7.4789, 7.4782, 7.4783, 7.4778, 7.4778, 7.4774, 7.4771, 7.4762, 7.4754, 7.4751, 7.4743, 7.4735, 7.4734, 7.4748, 7.474, 7.4754, 7.4751, 7.4743, 7.4737, 7.4839, 7.483, 7.4827, 7.482, 7.4836, 7.4829, 7.4829, 7.4821, 7.4818, 7.4814, 7.4828, 7.4825, 7.4816, 7.4809, 7.4807, 7.4802, 7.4793, 7.4784, 7.4776, 7.4788, 7.4784, 7.4779, 7.477, 7.4819, 7.481, 7.4802, 7.4796, 7.4788, 7.4764, 7.478, 7.4777, 7.4802, 7.4793, 7.4785, 7.4777, 7.4769, 7.4764, 7.4761, 7.4756, 7.4747, 7.4762, 7.4753, 7.4768, 7.476, 7.4756, 7.477, 7.4768, 7.4759, 7.4753, 7.4752, 7.4745, 7.4743, 7.4737, 7.473, 7.4722, 7.4716, 7.4707, 7.4721, 7.4712, 7.4704, 7.4698, 7.4702, 7.4697, 7.4721, 7.4714, 7.4722, 7.4736, 7.4727, 7.4742, 7.4748, 7.4746, 7.4738, 7.4734, 7.4748, 7.474, 7.4738, 7.4729, 7.4721, 7.4716, 7.4707, 7.4701, 7.4715, 7.4708, 7.4702, 7.4695, 7.4692, 7.4691, 7.4684, 7.4698, 7.4694, 7.4687, 7.4689, 7.4681, 7.4676, 7.4672, 7.4664, 7.4678, 7.467, 7.4663, 7.4679, 7.4694, 7.471, 7.4702, 7.4697, 7.4712, 7.4704, 7.4719, 7.4712, 7.4707, 7.4722, 7.4737, 7.4729, 7.4724, 7.4723, 7.4717, 7.4711, 7.4751, 7.4743, 7.4739, 7.4735, 7.4772, 7.4788, 7.4801, 7.4816, 7.4813, 7.4807, 7.4799, 7.4803, 7.4799, 7.4791, 7.4784, 7.4777, 7.4773, 7.4748, 7.4742, 7.474, 7.4733, 7.4711, 7.4706, 7.4724, 7.4719, 7.4711, 7.4703, 7.4696, 7.4715, 7.4713, 7.4718, 7.4712, 7.4707, 7.4702, 7.4716, 7.4713, 7.4709, 7.4702, 7.4717, 7.4714, 7.4708, 7.4723, 7.4735, 7.4727, 7.4726, 7.4722, 7.4718, 7.471, 7.471, 7.4706, 7.4721, 7.4736, 7.4749, 7.4765, 7.4761, 7.4754, 7.4746, 7.4741, 7.4782, 7.4775, 7.4772, 7.4765, 7.4758, 7.4773, 7.4767, 7.4811, 7.4827, 7.4841, 7.4858, 7.4851, 7.4864, 7.4857, 7.4852, 7.4847, 7.4839, 7.4833, 7.4824, 7.4839, 7.4833, 7.4824, 7.4837, 7.4835, 7.4832, 7.4839, 7.484, 7.4854, 7.4866, 7.4861, 7.4876, 7.487, 7.4865, 7.4895, 7.4889, 7.4891, 7.4885, 7.488, 7.4894, 7.4911, 7.4909, 7.4909, 7.4906, 7.4921, 7.4937, 7.4931, 7.4927, 7.4918, 7.4911, 7.4924, 7.4917, 7.4915, 7.4908, 7.4922, 7.4918, 7.4913, 7.4906, 7.4919, 7.4911, 7.4943, 7.494, 7.4933, 7.4946, 7.4946, 7.4939, 7.4954, 7.4952, 7.4947, 7.4941, 7.4933, 7.4927, 7.4921, 7.4915, 7.4911, 7.4907, 7.4899, 7.49, 7.4898, 7.489, 7.4889, 7.4903, 7.4899, 7.4981, 7.4975, 7.4968, 7.498, 7.5014, 7.501, 7.5002, 7.4994, 7.499, 7.4989, 7.4985, 7.4981, 7.4977, 7.4973, 7.4966, 7.4963, 7.4956, 7.4948, 7.496, 7.4958, 7.4954, 7.4949, 7.4941, 7.4933, 7.4925, 7.4924, 7.4938, 7.4953, 7.4949, 7.4942, 7.4935, 7.4928, 7.4923, 7.4915, 7.4908, 7.4904, 7.4896, 7.4889, 7.4881, 7.4876, 7.4894, 7.4889, 7.4886, 7.4878, 7.4872, 7.4872, 7.4886, 7.4882, 7.4879, 7.4876, 7.4872, 7.4864, 7.4856, 7.4851, 7.4845, 7.484, 7.4832, 7.4824, 7.484, 7.4852, 7.4848, 7.4841, 7.4836, 7.4829, 7.4842, 7.4842, 7.484, 7.4841, 7.4839, 7.4834, 7.4832, 7.4825, 7.4822, 7.482, 7.4815, 7.4807, 7.4804, 7.4803, 7.4796, 7.4808, 7.4801, 7.48, 7.4794, 7.4808, 7.4846, 7.4847, 7.484, 7.4836, 7.483, 7.4822, 7.4836, 7.4849, 7.4842, 7.4838, 7.4832, 7.4832, 7.4825, 7.4821, 7.4816, 7.4809, 7.4805, 7.4799, 7.4797, 7.4789, 7.4786, 7.4783, 7.4776, 7.4773, 7.4786, 7.4779, 7.478, 7.4786, 7.4795, 7.4808, 7.4851, 7.4852, 7.4852, 7.4844, 7.4856, 7.4853, 7.4851, 7.4864, 7.4878, 7.487, 7.4863, 7.4855, 7.4852, 7.4844, 7.4841, 7.4853, 7.4846, 7.4845, 7.4859, 7.4854, 7.4866, 7.486, 7.4853, 7.4848, 7.4862, 7.4877, 7.4874, 7.4867, 7.4865, 7.4857, 7.4871, 7.4883, 7.4877, 7.4874, 7.4853, 7.4847, 7.4842, 7.4834, 7.4827, 7.484, 7.4837, 7.4849, 7.4863, 7.4858, 7.487, 7.4883, 7.4899, 7.4875, 7.4867, 7.4862, 7.4859, 7.4855, 7.4862, 7.4854, 7.4846, 7.4844, 7.4837, 7.4849, 7.4847, 7.484, 7.4818, 7.4818, 7.483, 7.4823, 7.4878, 7.4872, 7.487, 7.4863, 7.4876, 7.4874, 7.4867, 7.4879, 7.4872, 7.4864, 7.4856, 7.4851, 7.4848, 7.4844, 7.484, 7.4895, 7.4888, 7.4882, 7.4879, 7.4893, 7.4904, 7.4897, 7.4891, 7.4903, 7.4919, 7.4914, 7.4907, 7.4905, 7.4902, 7.4903, 7.4895, 7.4888, 7.4885, 7.4881, 7.4877, 7.4871, 7.4868, 7.4861, 7.4854, 7.4846, 7.4842, 7.4839, 7.4836, 7.4828, 7.4823, 7.4822, 7.4815, 7.4906, 7.4902, 7.4897, 7.492, 7.4929, 7.4942, 7.4941, 7.4938, 7.4953, 7.4946, 7.4939, 7.4932, 7.4926, 7.4921, 7.4934, 7.4928, 7.4924, 7.4936, 7.4929, 7.4922, 7.4917, 7.491, 7.4903, 7.4902, 7.4899, 7.4911, 7.4923, 7.4916, 7.4909, 7.4921, 7.4918, 7.4911, 7.4923, 7.4916, 7.4909, 7.4921, 7.4934, 7.4926, 7.4919, 7.4912, 7.4891, 7.4885, 7.4898, 7.4896, 7.4895, 7.4888, 7.4882, 7.4894, 7.4892, 7.4904, 7.4904, 7.4897, 7.489, 7.4883, 7.488, 7.4894, 7.4891, 7.4888, 7.4881, 7.4892, 7.4904, 7.4907, 7.4901, 7.4893, 7.4887, 7.488, 7.4873, 7.487, 7.487, 7.4883, 7.4882, 7.4917, 7.4911, 7.496, 7.4953, 7.4949, 7.4943, 7.4937, 7.4931, 7.4923, 7.4936, 7.4948, 7.4941, 7.4936, 7.4929, 7.4921, 7.4914, 7.4908, 7.4902, 7.4903, 7.4898, 7.4891, 7.4887, 7.4882, 7.4911, 7.4904, 7.4897, 7.4891, 7.4887, 7.4882, 7.4875, 7.4869, 7.4883, 7.4876, 7.4889, 7.4884, 7.4878, 7.4877, 7.4875, 7.4886, 7.4882, 7.4946, 7.4942, 7.4935, 7.4946, 7.4956, 7.4967, 7.4961, 7.4955, 7.4967, 7.4987, 7.4999, 7.5011, 7.5007, 7.5005, 7.5001, 7.5003, 7.5001, 7.4997, 7.5026, 7.5022, 7.5034, 7.5029, 7.5025, 7.502, 7.5015, 7.5027, 7.5024, 7.5023, 7.5016, 7.501, 7.5007, 7.5018, 7.5013, 7.5023, 7.5018, 7.5012, 7.5005, 7.5003, 7.5, 7.4993, 7.4987, 7.4984, 7.4978, 7.4971, 7.4983, 7.4976, 7.4969, 7.4967, 7.4962, 7.4957, 7.4956, 7.4951, 7.4947, 7.496, 7.4959, 7.4973, 7.4969, 7.498, 7.4973, 7.4967, 7.4963, 7.4962, 7.4955, 7.495, 7.4948, 7.4944, 7.4942, 7.494, 7.4934, 7.4928, 7.494, 7.4951, 7.4952, 7.4945, 7.4938, 7.4974, 7.4968, 7.4964, 7.4959, 7.4962, 7.4965, 7.4976, 7.4987, 7.4982, 7.4978, 7.4972, 7.497, 7.497, 7.4963, 7.496, 7.4954, 7.4967, 7.498, 7.4973, 7.4971, 7.4965, 7.4959, 7.4952, 7.4947, 7.4944, 7.4937, 7.4932, 7.4931, 7.4942, 7.4955, 7.4948, 7.4961, 7.4973, 7.4985, 7.4979, 7.4973, 7.4967, 7.4978, 7.4972, 7.5034, 7.5032, 7.5043, 7.5056, 7.5049, 7.5063, 7.5074, 7.5088, 7.5099, 7.5093, 7.5087, 7.51, 7.5101, 7.5098, 7.5091, 7.5103, 7.51, 7.5094, 7.5088, 7.5086, 7.5098, 7.5097, 7.509, 7.5103, 7.5097, 7.5094, 7.5106, 7.5121, 7.5115, 7.5109, 7.5102, 7.5113, 7.5107, 7.51, 7.5094, 7.5093, 7.5088, 7.5082, 7.5096, 7.509, 7.5087, 7.508, 7.5074, 7.5067, 7.5064, 7.5061, 7.5057, 7.505, 7.5044, 7.5042, 7.5026, 7.5019, 7.5013, 7.5011, 7.5009, 7.5006, 7.502, 7.5032, 7.5029, 7.5023, 7.5017, 7.503, 7.5023, 7.5017, 7.5011, 7.5008, 7.5005, 7.5002, 7.4999, 7.4999, 7.5014, 7.5008, 7.5002, 7.4999, 7.4998, 7.4992, 7.4986, 7.4997, 7.4992, 7.5003, 7.5013, 7.501, 7.5022, 7.5015, 7.5008, 7.5005, 7.5017, 7.5011, 7.5007, 7.5005, 7.5005, 7.5001, 7.5011, 7.5021, 7.5033, 7.5026, 7.502, 7.5031, 7.5025, 7.5018, 7.5011, 7.5011, 7.5005, 7.5, 7.4996, 7.5006, 7.5017, 7.5014, 7.5026, 7.5019, 7.503, 7.5024, 7.5018, 7.503, 7.5042, 7.504, 7.5036, 7.5029, 7.5025, 7.5036, 7.503, 7.5028, 7.5039, 7.5052, 7.5065, 7.506, 7.5159, 7.5157, 7.5198, 7.5181, 7.5177, 7.5172, 7.5185, 7.5178, 7.5188, 7.52, 7.5193, 7.5188, 7.5181, 7.5192, 7.5191, 7.5188, 7.5182, 7.5165, 7.516, 7.5162, 7.5155, 7.5168, 7.5165, 7.5162, 7.5155, 7.5152, 7.5146, 7.5139, 7.5133, 7.5144, 7.5138, 7.5136, 7.5132, 7.5128, 7.5127, 7.5139, 7.5149, 7.5147, 7.5144, 7.5147, 7.5157, 7.5152, 7.5146, 7.5157, 7.5154, 7.5152, 7.5163, 7.5158, 7.5158, 7.517, 7.5164, 7.5157, 7.5186, 7.518, 7.5177, 7.5175, 7.5168, 7.5163, 7.5158, 7.5171, 7.5165, 7.5159, 7.5156, 7.5151, 7.5146, 7.5143, 7.514, 7.5134, 7.5132, 7.513, 7.514, 7.5139, 7.5132, 7.5125, 7.512, 7.5113, 7.5108, 7.5102, 7.5096, 7.5091, 7.51, 7.5096, 7.509, 7.5084, 7.5083, 7.5078, 7.5074, 7.5077, 7.5071, 7.5083, 7.5095, 7.5093, 7.5095, 7.5094, 7.5087, 7.5083, 7.5098, 7.5112, 7.511, 7.512, 7.5115, 7.5113, 7.5109, 7.5109, 7.5103, 7.5097, 7.5097, 7.511, 7.5108, 7.5119, 7.5116, 7.5112, 7.5109, 7.5119, 7.512, 7.5115, 7.511, 7.5111, 7.5107, 7.5105, 7.5105, 7.5105, 7.5116, 7.511, 7.5104, 7.5099, 7.5111, 7.5106, 7.51, 7.5111, 7.5106, 7.5104, 7.5098, 7.5109, 7.5104, 7.5099, 7.5094, 7.5093, 7.5104, 7.5149, 7.5175, 7.522, 7.522, 7.5241, 7.5235, 7.523, 7.5228, 7.5225, 7.522, 7.5232, 7.5231, 7.5241, 7.5253, 7.5247, 7.5244, 7.5238, 7.5233, 7.5227, 7.5222, 7.5253, 7.5247, 7.5258, 7.5268, 7.5262, 7.5256, 7.5249, 7.5246, 7.524, 7.5234, 7.5245, 7.5256, 7.5268, 7.5278, 7.5272, 7.5266, 7.5262, 7.5263, 7.5258, 7.5268, 7.5262, 7.5276, 7.5273, 7.5271, 7.5265, 7.5265, 7.5275, 7.5269, 7.5264, 7.5259, 7.527, 7.5268, 7.5262, 7.5256, 7.5254, 7.5247, 7.5243, 7.5241, 7.5252, 7.525, 7.5244, 7.5255, 7.5249, 7.5245, 7.5241, 7.5234, 7.5244, 7.5255, 7.5249, 7.5245, 7.524, 7.5273, 7.5284, 7.5279, 7.5273, 7.5273, 7.5269, 7.5263, 7.526, 7.5254, 7.5263, 7.5259, 7.5255, 7.5249, 7.5244, 7.5239, 7.5233, 7.5243, 7.5239, 7.5249, 7.5249, 7.5249, 7.5246, 7.5245, 7.5275, 7.5272, 7.5268, 7.5265, 7.5259, 7.5254, 7.5248, 7.5257, 7.5251, 7.5246, 7.524, 7.5234, 7.5236, 7.5247, 7.5242, 7.5238, 7.522, 7.5218, 7.523, 7.5242, 7.524, 7.5252, 7.5246, 7.5243, 7.5237, 7.5232, 7.5244, 7.524, 7.5235, 7.5232, 7.523, 7.5226, 7.5236, 7.5247, 7.5259, 7.5255, 7.5265, 7.526, 7.5255, 7.5252, 7.5263, 7.5261, 7.5256, 7.525, 7.5261, 7.527, 7.5264, 7.5258, 7.5256, 7.527, 7.5264, 7.5258, 7.5252, 7.5246, 7.524, 7.5234, 7.5229, 7.5224, 7.5234, 7.5229, 7.5225, 7.522, 7.5214, 7.521, 7.522, 7.5218, 7.5304, 7.53, 7.53, 7.531, 7.5306, 7.5317, 7.5311, 7.5308, 7.5395, 7.5392, 7.5386, 7.5392, 7.539, 7.54, 7.5397, 7.5392, 7.5401, 7.5397, 7.5391, 7.5392, 7.5406, 7.5388, 7.5383, 7.5392, 7.5387, 7.5382, 7.5379, 7.5378, 7.5391, 7.5387, 7.5396, 7.539, 7.5384, 7.5383, 7.5395, 7.5394, 7.5404, 7.5402, 7.54, 7.5395, 7.5391, 7.5384, 7.5378, 7.5372, 7.5385, 7.5383, 7.5411, 7.5405, 7.5399, 7.5396, 7.5389, 7.5383, 7.538, 7.5394, 7.5394, 7.5404, 7.5414, 7.5409, 7.5411, 7.5406, 7.54, 7.5394, 7.5403, 7.5399, 7.5394, 7.5391, 7.5402, 7.5399, 7.5396, 7.5392, 7.54, 7.5396, 7.539, 7.5372, 7.5383, 7.5392, 7.5386, 7.538, 7.5389, 7.5398, 7.5397, 7.5391, 7.54, 7.5396, 7.5378, 7.5374, 7.537, 7.538, 7.5379, 7.539, 7.5388, 7.5397, 7.5391, 7.5386, 7.538, 7.5379, 7.5377, 7.5373, 7.5384, 7.5378, 7.5376, 7.5375, 7.537, 7.5365, 7.5369, 7.5363, 7.536, 7.5361, 7.5362, 7.5373, 7.5381, 7.5376, 7.5386, 7.5387, 7.5387, 7.5387, 7.5382, 7.5386, 7.5382, 7.5377, 7.5387, 7.5398, 7.5394, 7.5398, 7.5422, 7.5454, 7.55, 7.5496, 7.5506, 7.5501, 7.5498, 7.5493, 7.549, 7.5485, 7.5495, 7.5492, 7.5501, 7.5495, 7.5492, 7.5501, 7.55, 7.5496, 7.5506, 7.55, 7.5494, 7.5503, 7.5502, 7.5496, 7.5498, 7.5522, 7.5546, 7.5542, 7.5539, 7.5535, 7.5531, 7.5513, 7.5507, 7.5516, 7.551, 7.5504, 7.5498, 7.5507, 7.5504, 7.55, 7.5494, 7.5493, 7.5487, 7.5483, 7.5477, 7.5486, 7.5487, 7.5483, 7.5477, 7.5486, 7.5495, 7.5504, 7.5499, 7.5496, 7.5505, 7.5501, 7.5495, 7.5504, 7.5512, 7.5506, 7.55, 7.5509, 7.5506, 7.55, 7.5496, 7.5492, 7.5487, 7.5496, 7.5492, 7.5487, 7.5483, 7.5478, 7.5486, 7.5495, 7.5492, 7.5486, 7.5483, 7.5493, 7.5501, 7.5495, 7.5493, 7.5489, 7.5487, 7.5481, 7.5479, 7.5477, 7.5485, 7.548, 7.5478, 7.5516, 7.5511, 7.552, 7.553, 7.5524, 7.5519, 7.5515, 7.5525, 7.5526, 7.5521, 7.5515, 7.5513, 7.5508, 7.5506, 7.5502, 7.5513, 7.551, 7.5507, 7.5501, 7.5498, 7.5508, 7.5502, 7.55, 7.5509, 7.552, 7.5515, 7.5509, 7.5506, 7.5502, 7.5497, 7.5505, 7.5504, 7.55, 7.5497, 7.5498, 7.5492, 7.5487, 7.5496, 7.5491, 7.5491, 7.5486, 7.5496, 7.5492, 7.5486, 7.548, 7.5476, 7.5473, 7.5483, 7.5493, 7.549, 7.5487, 7.5483, 7.548, 7.5488, 7.55, 7.5497, 7.551, 7.5507, 7.5504, 7.5517, 7.5527, 7.5522, 7.5519, 7.5528, 7.5514, 7.551, 7.5567, 7.5564, 7.5559, 7.5556, 7.5544, 7.555, 7.5545, 7.5542, 7.5542, 7.5538, 7.5547, 7.5545, 7.5541, 7.5537, 7.5535, 7.5533, 7.5531, 7.5526, 7.5523, 7.5543, 7.5538, 7.5548, 7.5543, 7.5542, 7.5537, 7.5545, 7.554, 7.555, 7.5547, 7.5547, 7.5541, 7.5551, 7.5546, 7.5528, 7.5538, 7.5547, 7.5545, 7.5539, 7.5534, 7.553, 7.5526, 7.5521, 7.5518, 7.5516, 7.5511, 7.5505, 7.5514, 7.5512, 7.5522, 7.5516, 7.551, 7.5494, 7.5503, 7.5502, 7.551, 7.5504, 7.5511, 7.5508, 7.5503, 7.5499, 7.5483, 7.5467, 7.5463, 7.5459, 7.5454, 7.5465, 7.5462, 7.5459, 7.5459, 7.5456, 7.5467, 7.5477, 7.5479, 7.5474, 7.5471, 7.5469, 7.5468, 7.5477, 7.5475, 7.5459, 7.5455, 7.5452, 7.5452, 7.545, 7.5444, 7.5444, 7.5441, 7.5439, 7.5437, 7.5446, 7.5444, 7.5441, 7.5438, 7.5435, 7.5429, 7.5425, 7.5419, 7.542, 7.5431, 7.5427, 7.5423, 7.5434, 7.543, 7.5425, 7.545, 7.5444, 7.544, 7.5438, 7.5447, 7.5456, 7.5441, 7.5438, 7.5436, 7.5445, 7.544, 7.5449, 7.5445, 7.544, 7.544, 7.5438, 7.5435, 7.5445, 7.5444, 7.5447, 7.5443, 7.5439, 7.5435, 7.5432, 7.5433, 7.5428, 7.5424, 7.542, 7.5429, 7.5438, 7.5436, 7.5431, 7.5428, 7.5423, 7.542, 7.5415, 7.5411, 7.5421, 7.5418, 7.5427, 7.5436, 7.5436, 7.5431, 7.5441, 7.5436, 7.5432, 7.5426, 7.5435, 7.5433, 7.5429, 7.5439, 7.5449, 7.5447, 7.5433, 7.5418, 7.5413, 7.5408, 7.5405, 7.5403, 7.5398, 7.5393, 7.5389, 7.5398, 7.5396, 7.5393, 7.5388, 7.5397, 7.5406, 7.5405, 7.54, 7.5397, 7.5391, 7.5401, 7.5398, 7.5421, 7.5415, 7.5413, 7.5409, 7.5486, 7.5495, 7.5491, 7.5486, 7.5481, 7.5475, 7.5485, 7.5482, 7.5491, 7.5485, 7.548, 7.5476, 7.5475, 7.547, 7.5468, 7.5476, 7.5471, 7.5468, 7.5468, 7.5464, 7.5459, 7.5454, 7.5439, 7.5437, 7.5435, 7.5445, 7.5456, 7.545, 7.5445, 7.5442, 7.5437, 7.5446, 7.5441, 7.5436, 7.5433, 7.542, 7.5416, 7.5411, 7.5406, 7.5401, 7.5411, 7.5407, 7.5402, 7.5397, 7.5392, 7.5389, 7.5384, 7.5382, 7.538, 7.5375, 7.537, 7.5368, 7.5378, 7.5374, 7.5384, 7.538, 7.5377, 7.5363, 7.5373, 7.537, 7.5366, 7.5364, 7.536, 7.5356, 7.5365, 7.5374, 7.5373, 7.5373, 7.5368, 7.5364, 7.536, 7.5357, 7.5353, 7.5364, 7.5373, 7.5368, 7.5364, 7.536, 7.5359, 7.5355, 7.5352, 7.5347, 7.5345, 7.5342, 7.5351, 7.5349, 7.5346, 7.5344, 7.5342, 7.5338, 7.5333, 7.5328, 7.5327, 7.5324, 7.5332, 7.5327, 7.5323, 7.5318, 7.5316, 7.5312, 7.531, 7.531, 7.5319, 7.5315, 7.5311, 7.5331, 7.533, 7.534, 7.5338, 7.5349, 7.5345, 7.5342, 7.5337, 7.5335, 7.5333, 7.5342, 7.5344, 7.5354, 7.5353, 7.5348, 7.5357, 7.5354, 7.5352, 7.5347, 7.5342, 7.5341, 7.5338, 7.5336, 7.5322, 7.5317, 7.5313, 7.531, 7.5318, 7.5313, 7.5309, 7.5307, 7.5303, 7.5298, 7.5296, 7.5307, 7.5303, 7.5312, 7.5307, 7.5305, 7.5303, 7.5313, 7.5311, 7.5307, 7.5316, 7.5329, 7.5325, 7.5353, 7.5357, 7.5355, 7.5354, 7.5364, 7.5362, 7.5358, 7.5358, 7.5357, 7.5353, 7.535, 7.5348, 7.5346, 7.5342, 7.5337, 7.5345, 7.534, 7.5338, 7.5335, 7.5334, 7.533, 7.5379, 7.5388, 7.5396, 7.5404, 7.54, 7.5396, 7.5391, 7.5386, 7.5385, 7.538, 7.5378, 7.5362, 7.5361, 7.5356, 7.5353, 7.535, 7.5346, 7.5355, 7.535, 7.5345, 7.5354, 7.5349, 7.5344, 7.5339, 7.5347, 7.5344, 7.5339, 7.5348, 7.5358, 7.5356, 7.5351, 7.5347, 7.5347, 7.5342, 7.5337, 7.5336, 7.5332, 7.5328, 7.5337, 7.5336, 7.5335, 7.5332, 7.5332, 7.5328, 7.5327, 7.5329, 7.5325, 7.5321, 7.5342, 7.5337, 7.5336, 7.5331, 7.532, 7.5316, 7.5313, 7.5308, 7.5304, 7.53, 7.5336, 7.5333, 7.533, 7.5326, 7.5336, 7.5334, 7.5343, 7.5343, 7.534, 7.5349, 7.5357, 7.5365, 7.5387, 7.5385, 7.5381, 7.5376, 7.5371, 7.5365, 7.5402, 7.5397, 7.5393, 7.5392, 7.5388, 7.5385, 7.5382, 7.5377, 7.5385, 7.5422, 7.5423, 7.5419, 7.5428, 7.5423, 7.5418, 7.5426, 7.5423, 7.5422, 7.5417, 7.5412, 7.5407, 7.5416, 7.5412, 7.5421, 7.5416, 7.5424, 7.542, 7.5417, 7.5428, 7.5425, 7.542, 7.5415, 7.5423, 7.5422, 7.5419, 7.5417, 7.5414, 7.5411, 7.5406, 7.5402, 7.5397, 7.5392, 7.5388, 7.5396, 7.5393, 7.5389, 7.5384, 7.5384, 7.5379, 7.5374, 7.5382, 7.5379, 7.5374, 7.5423, 7.542, 7.5428, 7.5423, 7.5418, 7.5413, 7.5408, 7.5407, 7.5404, 7.5477, 7.552, 7.5527, 7.5535, 7.553, 7.5516, 7.5514, 7.5511, 7.5496, 7.5503, 7.5511, 7.5506, 7.5502, 7.5497, 7.5493, 7.5489, 7.5499, 7.5503, 7.5499, 7.5496, 7.5493, 7.5489, 7.5484, 7.5481, 7.5477, 7.5474, 7.5481, 7.5479, 7.5478, 7.5475, 7.5472, 7.547, 7.5465, 7.546, 7.5456, 7.5451, 7.5446, 7.5444, 7.5439, 7.5447, 7.5455, 7.5464, 7.5459, 7.5456, 7.5453, 7.5462, 7.5458, 7.5454, 7.5449, 7.5444, 7.55, 7.5495, 7.5503, 7.553, 7.5538, 7.5536, 7.5538, 7.5537, 7.5535, 7.5544, 7.5551, 7.5561, 7.556, 7.5569, 7.5565, 7.556, 7.5555, 7.5576, 7.5571, 7.5566, 7.5574, 7.5573, 7.5569, 7.5567, 7.5565, 7.5563, 7.556, 7.556, 7.556, 7.5557, 7.5556, 7.5565, 7.5561, 7.5556, 7.5554, 7.5562, 7.5557, 7.5554, 7.5561, 7.5569, 7.5566, 7.5574, 7.5569, 7.5577, 7.5584, 7.5592, 7.5588, 7.5583, 7.5592, 7.5588, 7.5586, 7.5606, 7.5604, 7.56, 7.5595, 7.5605, 7.5614, 7.5621, 7.5629, 7.5627, 7.5634, 7.5629, 7.5631, 7.5629, 7.5638, 7.5636, 7.5632, 7.5629, 7.5627, 7.5626, 7.5635, 7.563, 7.5626, 7.5625, 7.562, 7.5619, 7.5626, 7.5621, 7.5628, 7.5649, 7.5644, 7.5643, 7.5652, 7.5648, 7.5662, 7.5658, 7.5654, 7.5662, 7.567, 7.5668, 7.5664, 7.5659, 7.5656, 7.5652, 7.5649, 7.5649, 7.5646, 7.5641, 7.5639, 7.5637, 7.5632, 7.5627, 7.5623, 7.562, 7.5624, 7.5613, 7.5609, 7.5618, 7.5626, 7.5621, 7.5617, 7.5613, 7.5608, 7.5596, 7.5593, 7.5603, 7.56, 7.5595, 7.5593, 7.56, 7.5597, 7.5592, 7.559, 7.5586, 7.5581, 7.5568, 7.5612, 7.5599, 7.5632, 7.5628, 7.5642, 7.5637, 7.5634, 7.5643, 7.5631, 7.5628, 7.5636, 7.5653, 7.5668, 7.5655, 7.5686, 7.5699, 7.5696, 7.5691, 7.5689, 7.5696, 7.5694, 7.5691, 7.5688, 7.5688, 7.5684, 7.568, 7.5676, 7.5684, 7.5682, 7.5679, 7.5674, 7.5682, 7.5678, 7.5686, 7.5682, 7.5689, 7.5686, 7.5681, 7.5695, 7.5738, 7.5736, 7.5733, 7.5728, 7.5726, 7.5746, 7.5744, 7.5759, 7.5766, 7.5761, 7.5768, 7.5766, 7.5763, 7.5762, 7.5773, 7.5771, 7.5769, 7.5767, 7.5763, 7.5758, 7.5766, 7.5765, 7.5763, 7.5762, 7.576, 7.5755, 7.575, 7.5749, 7.5745, 7.5755, 7.5763, 7.576, 7.5755, 7.5752, 7.576, 7.5756, 7.5752, 7.5749, 7.5749, 7.5744, 7.574, 7.5737, 7.5736, 7.5732, 7.573, 7.5728, 7.5724, 7.5721, 7.5716, 7.5713, 7.5722, 7.5717, 7.5716, 7.5738, 7.5733, 7.5729, 7.5725, 7.5721, 7.5731, 7.5728, 7.5723, 7.5731, 7.5729, 7.5725, 7.572, 7.5719, 7.5718, 7.5717, 7.5716, 7.5711, 7.5708, 7.5704, 7.57, 7.5696, 7.5692, 7.5688, 7.5683, 7.5702, 7.5699, 7.5695, 7.5692, 7.5687, 7.5688, 7.5683, 7.5679, 7.5687, 7.5684, 7.568, 7.5679, 7.5686, 7.5687, 7.5686, 7.5687, 7.5683, 7.569, 7.5688, 7.5686, 7.5684, 7.5679, 7.5676, 7.5674, 7.5672, 7.5669, 7.5675, 7.5671, 7.5668, 7.5663, 7.567, 7.5678, 7.5674, 7.5669, 7.5677, 7.5676, 7.5673, 7.5669, 7.5677, 7.5673, 7.567, 7.5666, 7.5663, 7.5661, 7.5661, 7.5659, 7.5655, 7.5651, 7.5658, 7.5665, 7.566, 7.5656, 7.5656, 7.5651, 7.5648, 7.5647, 7.5642, 7.5649, 7.5658, 7.5655, 7.5662, 7.5658, 7.5657, 7.5664, 7.5672, 7.567, 7.5678, 7.5685, 7.5692, 7.5689, 7.5684, 7.568, 7.5687, 7.5694, 7.5691, 7.5686, 7.5684, 7.5679, 7.5676, 7.5685, 7.568, 7.5678, 7.5674, 7.567, 7.5677, 7.5685, 7.5684, 7.5683, 7.568, 7.5676, 7.5675, 7.5671, 7.5711, 7.5709, 7.5705, 7.5713, 7.5709, 7.5704, 7.5712, 7.5708, 7.5706, 7.5705, 7.5701, 7.5701, 7.5708, 7.5705, 7.57, 7.5698, 7.5705, 7.5715, 7.5711, 7.5708, 7.5715, 7.5714, 7.571, 7.5706, 7.5713, 7.5721, 7.5728, 7.5724, 7.5711, 7.5709, 7.5706, 7.5704, 7.5711, 7.5706, 7.5704, 7.5701, 7.5697, 7.5699, 7.5695, 7.5691, 7.5688, 7.5684, 7.568, 7.5676, 7.5672, 7.5668, 7.5666, 7.5664, 7.566, 7.5668, 7.5655, 7.5663, 7.5671, 7.5669, 7.5666, 7.5674, 7.568, 7.5677, 7.5685, 7.5681, 7.5688, 7.5684, 7.5684, 7.5679, 7.5677, 7.5665, 7.5673, 7.5684, 7.5683, 7.5687, 7.5683, 7.568, 7.5711, 7.5707, 7.5704, 7.5701, 7.5727, 7.5725, 7.5712, 7.5708, 7.5704, 7.57, 7.5686, 7.57, 7.5708, 7.5741, 7.5731, 7.5734, 7.5741, 7.5738, 7.5747, 7.5742, 7.5737, 7.5735, 7.5731, 7.5731, 7.573, 7.5728, 7.5724, 7.5732, 7.5729, 7.5724, 7.5721, 7.573, 7.5726, 7.5726, 7.5721, 7.5718, 7.5716, 7.5724, 7.5723, 7.572, 7.5718, 7.5713, 7.5715, 7.5714, 7.5709, 7.5705, 7.5702, 7.5703, 7.5714, 7.5712, 7.571, 7.5728, 7.5725, 7.5731, 7.5727, 7.5725, 7.572, 7.572, 7.5716, 7.5719, 7.5715, 7.5725, 7.5723, 7.5754, 7.5765, 7.5763, 7.5758, 7.5754, 7.5761, 7.5747, 7.5744, 7.5741, 7.5737, 7.5745, 7.5742, 7.5749, 7.5756, 7.5752, 7.5748, 7.5744, 7.5743, 7.5739, 7.5737, 7.5735, 7.5735, 7.5731, 7.5726, 7.5722, 7.5753, 7.5748, 7.5744, 7.5741, 7.574, 7.5737, 7.5733, 7.5729, 7.5725, 7.5722, 7.5719, 7.5718, 7.5727, 7.5724, 7.5719, 7.5715, 7.5712, 7.5718, 7.5729, 7.5737, 7.574, 7.5738, 7.5744, 7.5739, 7.5726, 7.5714, 7.5716, 7.5724, 7.5711, 7.5707, 7.5703, 7.5701, 7.5708, 7.5706, 7.5704, 7.5703, 7.5699, 7.5697, 7.5693, 7.5716, 7.5712, 7.573, 7.5739, 7.5736, 7.5732, 7.5732, 7.5729, 7.5725, 7.5732, 7.5727, 7.5734, 7.573, 7.5754, 7.5753, 7.5749, 7.575, 7.5758, 7.5754, 7.575, 7.5746, 7.5742, 7.5738, 7.5737, 7.5733, 7.5741, 7.5739, 7.5737, 7.5733, 7.5729, 7.5729, 7.5727, 7.5725, 7.5721, 7.5718, 7.5717, 7.5715, 7.5723, 7.5729, 7.5725, 7.5733, 7.5729, 7.5725, 7.5721, 7.5718, 7.5726, 7.5724, 7.5723, 7.5719, 7.5716, 7.5715, 7.5711, 7.5718, 7.5715, 7.5714, 7.5711, 7.5707, 7.5715, 7.5712, 7.5719, 7.5715, 7.5711, 7.5718, 7.5716, 7.5723, 7.5732, 7.5728, 7.5736, 7.5737, 7.5744, 7.5743, 7.5739, 7.5748, 7.5755, 7.5753, 7.5761, 7.5758, 7.5757, 7.5754, 7.575, 7.5748, 7.5744, 7.574, 7.5738, 7.5734, 7.573, 7.5728, 7.5737, 7.5732, 7.5739, 7.5745, 7.5741, 7.5737, 7.5744, 7.574, 7.5736, 7.5733, 7.5729, 7.5736, 7.5734, 7.5732, 7.5727, 7.5725, 7.5721, 7.5728, 7.5726, 7.5733, 7.5729, 7.5726, 7.5735, 7.5731, 7.5728, 7.5715, 7.5724, 7.5731, 7.5727, 7.5724, 7.5722, 7.5728, 7.5724, 7.5734, 7.573, 7.5726, 7.5723, 7.5721, 7.5719, 7.5717, 7.5717, 7.5713, 7.57, 7.5695, 7.5693, 7.5689, 7.5696, 7.5693, 7.5702, 7.5711, 7.5718, 7.5715, 7.5723, 7.5719, 7.5718, 7.5713, 7.5722, 7.571, 7.5707, 7.5703, 7.5702, 7.5699, 7.5696, 7.5693, 7.568, 7.5677, 7.5673, 7.5671, 7.5668, 7.5666, 7.5662, 7.5659, 7.5658, 7.5658, 7.5655, 7.5651, 7.565, 7.5646, 7.5653, 7.566, 7.5669, 7.5668, 7.5674, 7.5672, 7.5668, 7.5676, 7.5673, 7.5672, 7.5668, 7.5675, 7.5671, 7.5689, 7.5688, 7.5684, 7.5682, 7.5679, 7.5677, 7.5673, 7.5669, 7.5699, 7.5695, 7.5702, 7.5698, 7.5687, 7.5686, 7.5682, 7.5678, 7.5675, 7.5674, 7.567, 7.5666, 7.5673, 7.567, 7.5667, 7.5675, 7.5671, 7.5678, 7.5695, 7.5691, 7.5689, 7.5696, 7.5743, 7.5749, 7.5748, 7.5755, 7.5751, 7.5747, 7.5754, 7.5761, 7.576, 7.5756, 7.5754, 7.5752, 7.5748, 7.5745, 7.5741, 7.5739, 7.5737, 7.5737, 7.5736, 7.5733, 7.573, 7.5729, 7.5725, 7.5733, 7.5729, 7.573, 7.5728, 7.5726, 7.5722, 7.5719, 7.5718, 7.5718, 7.5714, 7.5714, 7.5722, 7.5731, 7.5727, 7.5723, 7.573, 7.5726, 7.5722, 7.572, 7.5716, 7.5723, 7.5719, 7.5717, 7.573, 7.572, 7.5739, 7.5736, 7.5747, 7.5742, 7.5749, 7.5745, 7.5751, 7.5795, 7.5802, 7.58, 7.5797, 7.5795, 7.5791, 7.5789, 7.5796, 7.5793, 7.5789, 7.5785, 7.5781, 7.5777, 7.5765, 7.5763, 7.5769, 7.5767, 7.5765, 7.5763, 7.5751, 7.5747, 7.5754, 7.5753, 7.576, 7.5756, 7.5757, 7.5765, 7.5764, 7.5761, 7.5757, 7.5758, 7.5756, 7.5753, 7.576, 7.5759, 7.5758, 7.5754, 7.5753, 7.5752, 7.575, 7.5751, 7.5751, 7.5748, 7.5736, 7.5724, 7.5712, 7.5708, 7.5704, 7.5701, 7.5699, 7.5696, 7.5692, 7.5691, 7.5691, 7.569, 7.5687, 7.5686, 7.5683, 7.5706, 7.5706, 7.5701, 7.5699, 7.5695, 7.5701, 7.5698, 7.5705, 7.5701, 7.5688, 7.5684, 7.5681, 7.5688, 7.5685, 7.5672, 7.567, 7.5658, 7.5654, 7.565, 7.5647, 7.5643, 7.564, 7.5647, 7.5645, 7.5653, 7.5649, 7.5648, 7.5656, 7.5653, 7.5651, 7.5647, 7.5654, 7.565, 7.565, 7.5657, 7.5663, 7.5661, 7.5658, 7.5655, 7.5652, 7.5659, 7.5655, 7.5662, 7.5661, 7.5658, 7.5663, 7.5659, 7.5657, 7.5665, 7.5661, 7.566, 7.5658, 7.5656, 7.5652, 7.5649, 7.5657, 7.5653, 7.5659, 7.5655, 7.5653, 7.565, 7.5661, 7.5663, 7.566, 7.5658, 7.5654, 7.5653, 7.5649, 7.5645, 7.5641, 7.5647, 7.5644, 7.5651, 7.5648, 7.5646, 7.5644, 7.5651, 7.5647, 7.5655, 7.5651, 7.5649, 7.5655, 7.5653, 7.565, 7.566, 7.5657, 7.5663, 7.566, 7.5669, 7.5665, 7.5662, 7.5658, 7.5657, 7.5654, 7.5663, 7.5662, 7.5659, 7.5659, 7.5656, 7.5653, 7.5651, 7.5648, 7.5645, 7.5652, 7.5648, 7.5635, 7.5646, 7.5642, 7.5638, 7.5635, 7.5633, 7.563, 7.563, 7.5636, 7.5633, 7.5629, 7.5636, 7.5635, 7.5632, 7.563, 7.5637, 7.5636, 7.5634, 7.5641, 7.5648, 7.5645, 7.5641, 7.5637, 7.5633, 7.5631, 7.5627, 7.5624, 7.5621, 7.5618, 7.5627, 7.5625, 7.5624, 7.5637, 7.5642, 7.5649, 7.5639, 7.5626, 7.5634, 7.5635, 7.5642, 7.5641, 7.5637, 7.5634, 7.5642, 7.565, 7.5648, 7.5647, 7.5645, 7.5641, 7.5639, 7.5638, 7.5645, 7.5652, 7.5658, 7.5657, 7.5665, 7.5662, 7.5649, 7.5637, 7.5635, 7.5631, 7.5629, 7.5626, 7.5614, 7.5603, 7.5592, 7.5581, 7.5588, 7.5594, 7.56, 7.5596, 7.5586, 7.5594, 7.5601, 7.5607, 7.5603, 7.5601, 7.5597, 7.5585, 7.5581, 7.5579, 7.5575, 7.5572, 7.5579, 7.5569, 7.5567, 7.5566, 7.5572, 7.5579, 7.5576, 7.5584, 7.5581, 7.559, 7.5597, 7.5595, 7.5592, 7.5592, 7.56, 7.5596, 7.5603, 7.5599, 7.5607, 7.5603, 7.5612, 7.56, 7.5589, 7.5586, 7.5583, 7.5579, 7.5575, 7.5572, 7.5568, 7.5575, 7.5583, 7.558, 7.5581, 7.5579, 7.5575, 7.5581, 7.5578, 7.5576, 7.5573, 7.5581, 7.558, 7.5579, 7.5575, 7.5572, 7.5569, 7.5568, 7.5565, 7.5562, 7.5558, 7.5558, 7.5555, 7.5562, 7.5558, 7.5554, 7.5552, 7.5549, 7.5545, 7.5542, 7.5541, 7.5537, 7.5534, 7.553, 7.5527, 7.5524, 7.5521, 7.5521, 7.5518, 7.5515, 7.5513, 7.5528, 7.5524, 7.5531, 7.553, 7.5537, 7.5544, 7.5541, 7.5539, 7.5545, 7.5534, 7.5534, 7.5531, 7.5537, 7.5545, 7.5541, 7.5537, 7.5534, 7.553, 7.5528, 7.5524, 7.553, 7.5529, 7.5527, 7.5525, 7.5521, 7.552, 7.5527, 7.5528, 7.5524, 7.5523, 7.5521, 7.5518, 7.5515, 7.5514, 7.5512, 7.5519, 7.5515, 7.5521, 7.551, 7.5506, 7.5502, 7.5499, 7.5505, 7.5512, 7.556, 7.5556, 7.5544, 7.5544, 7.5561, 7.5568, 7.5582, 7.5579, 7.5575, 7.5577, 7.5573, 7.5561, 7.5569, 7.5566, 7.5564, 7.5569, 7.5565, 7.5562, 7.5563, 7.5559, 7.5591, 7.5587, 7.5583, 7.5581, 7.5587, 7.5585, 7.5581, 7.5577, 7.5583, 7.5582, 7.5579, 7.5575, 7.5582, 7.5578, 7.5575, 7.5572, 7.5569, 7.5568, 7.5569, 7.5565, 7.5561, 7.5567, 7.5576, 7.5564, 7.5562, 7.5558, 7.5556, 7.5552, 7.5549, 7.5548, 7.5544, 7.5557, 7.5555, 7.5552, 7.5548, 7.5554, 7.5551, 7.555, 7.5548, 7.5538, 7.5541, 7.5539, 7.5549, 7.5557, 7.5564, 7.5563, 7.5559, 7.5556, 7.5552, 7.5578, 7.5584, 7.5611, 7.561, 7.5607, 7.5613, 7.5621, 7.5619, 7.5617, 7.5614, 7.5614, 7.561, 7.561, 7.5607, 7.5606, 7.5604, 7.5601, 7.5597, 7.5605, 7.5602, 7.5599, 7.5598, 7.5594, 7.5596, 7.5592, 7.559, 7.5588, 7.5586, 7.5593, 7.5592, 7.5589, 7.5588, 7.5594, 7.559, 7.5588, 7.5586, 7.5574, 7.5565, 7.5561, 7.5558, 7.5556, 7.5562, 7.5577, 7.5584, 7.5618, 7.5614, 7.5613, 7.5609, 7.5615, 7.5614, 7.5603, 7.56, 7.5596, 7.5603, 7.5599, 7.5596, 7.5593, 7.5591, 7.5598, 7.5604, 7.56, 7.5606, 7.5612, 7.5621, 7.5628, 7.5634, 7.564, 7.5636, 7.5633, 7.563, 7.5627, 7.5624, 7.5621, 7.5627, 7.5623, 7.5621, 7.5618, 7.5625, 7.5624, 7.5621, 7.5612, 7.5628, 7.5624, 7.563, 7.563, 7.5637, 7.5636, 7.5632, 7.5632, 7.563, 7.5627, 7.5624, 7.5621, 7.5617, 7.5613, 7.5609, 7.5614, 7.562, 7.5626, 7.5622, 7.5619, 7.5615, 7.5616, 7.5623, 7.562, 7.5626, 7.5623, 7.562, 7.5618, 7.5615, 7.5624, 7.562, 7.5628, 7.5626, 7.5623, 7.5619, 7.5619, 7.5617, 7.5617, 7.5617, 7.5615, 7.5613, 7.5613, 7.5611, 7.561, 7.5616, 7.5613, 7.5609, 7.5607, 7.5605, 7.5602, 7.56, 7.5597, 7.5594, 7.5591, 7.5598, 7.5596, 7.5613, 7.561, 7.5606, 7.5619, 7.5616, 7.5614, 7.5625, 7.5632, 7.5638, 7.5637, 7.5641, 7.5649, 7.5657, 7.5665, 7.5662, 7.5659, 7.5656, 7.5654, 7.5657, 7.5654, 7.5651, 7.5648, 7.5646, 7.5643, 7.564, 7.5638, 7.5639, 7.5641, 7.5639, 7.5637, 7.5637, 7.5676, 7.5675, 7.5674, 7.5671, 7.5667, 7.5664, 7.567, 7.5659, 7.5684, 7.569, 7.5689, 7.5685, 7.5681, 7.5678, 7.5675, 7.5675, 7.5695, 7.5693, 7.5689, 7.5686, 7.5682, 7.568, 7.5677, 7.5675, 7.5672, 7.5671, 7.5682, 7.5679, 7.5675, 7.5672, 7.5678, 7.5684, 7.5684, 7.5681, 7.568, 7.5687, 7.5695, 7.5693, 7.57, 7.5697, 7.5695, 7.5692, 7.5688, 7.5685, 7.5683, 7.5682, 7.5678, 7.5676, 7.5673, 7.568, 7.5687, 7.5685, 7.5683, 7.568, 7.5677, 7.5675, 7.5674, 7.5672, 7.5678, 7.5674, 7.567, 7.5669, 7.5666, 7.5673, 7.568, 7.5677, 7.5675, 7.5672, 7.5669, 7.5666, 7.5673, 7.5673, 7.5679, 7.5686, 7.5683, 7.5688, 7.5694, 7.5701, 7.5699, 7.5714, 7.5704, 7.5703, 7.57, 7.5697, 7.5695, 7.5692, 7.5699, 7.5696, 7.5703, 7.5702, 7.5708, 7.5714, 7.572, 7.5717, 7.5714, 7.572, 7.5717, 7.5713, 7.5713, 7.5711, 7.5709, 7.5706, 7.5705, 7.5702, 7.5698, 7.5694, 7.5691, 7.5688, 7.5695, 7.5702, 7.5701, 7.5698, 7.5697, 7.5694, 7.5692, 7.5698, 7.5697, 7.5696, 7.5693, 7.569, 7.5689, 7.5695, 7.5692, 7.5699, 7.5695, 7.5693, 7.5699, 7.5696, 7.5693, 7.5689, 7.5694, 7.5693, 7.5695, 7.5709, 7.5725, 7.5723, 7.5722, 7.5719, 7.5715, 7.5712, 7.5709, 7.5708, 7.5697, 7.5694, 7.57, 7.5697, 7.5694, 7.5691, 7.5691, 7.5687, 7.5686, 7.5692, 7.5688, 7.5685, 7.5681, 7.5677, 7.5673, 7.5673, 7.5672, 7.5669, 7.5666, 7.5664, 7.5662, 7.5668, 7.5664, 7.5663, 7.5662, 7.5658, 7.5656, 7.5652, 7.5648, 7.5644, 7.5641, 7.5637, 7.5635, 7.5632, 7.563, 7.5627, 7.5624, 7.5622, 7.5619, 7.5617, 7.5614, 7.5611, 7.5608, 7.5614, 7.562, 7.5625, 7.5622, 7.562, 7.5616, 7.5613, 7.5618, 7.5617, 7.5623, 7.5621, 7.5617, 7.5616, 7.5612, 7.5619, 7.5616, 7.5612, 7.5609, 7.5608, 7.5605, 7.5611, 7.5611, 7.5617, 7.5616, 7.5613, 7.561, 7.5608, 7.5615, 7.5613, 7.5612, 7.5609, 7.5608, 7.5605, 7.5605, 7.5602, 7.5598, 7.5606, 7.5614, 7.562, 7.5616, 7.5621, 7.5628, 7.5624, 7.5621, 7.5618, 7.5615, 7.5621, 7.5618, 7.5623, 7.5619, 7.5618, 7.5616, 7.5615, 7.5611, 7.5617, 7.5615, 7.5612, 7.561, 7.5616, 7.5613, 7.5612, 7.5611, 7.5608, 7.5606, 7.5603, 7.5602, 7.5599, 7.5596, 7.5596, 7.5595, 7.5591, 7.559, 7.5587, 7.5583, 7.5579, 7.5585, 7.5582, 7.5579, 7.5576, 7.5572, 7.5578, 7.5575, 7.5571, 7.5568, 7.5566, 7.5562, 7.5561, 7.5567, 7.5563, 7.5569, 7.5568, 7.5565, 7.5571, 7.557, 7.5568, 7.5565, 7.5563, 7.5561, 7.5566, 7.5563, 7.5561, 7.5558, 7.5555, 7.5582, 7.5579, 7.5576, 7.5582, 7.5579, 7.5575, 7.5573, 7.5578, 7.5575, 7.5574, 7.5571, 7.5569, 7.5566, 7.5566, 7.5563, 7.5562, 7.5558, 7.5564, 7.557, 7.5567, 7.5566, 7.5564, 7.5563, 7.5562, 7.5567, 7.5564, 7.5561, 7.5558, 7.5565, 7.5562, 7.5561, 7.5558, 7.5555, 7.5554, 7.5553, 7.5559, 7.5557, 7.5554, 7.555, 7.5548, 7.5545, 7.5552, 7.5548, 7.5553, 7.555, 7.5547, 7.5546, 7.5543, 7.5543, 7.5544, 7.5542, 7.555, 7.5549, 7.5548, 7.5545, 7.5542, 7.5547, 7.5553, 7.5551, 7.5548, 7.5546, 7.5552, 7.5548, 7.5546, 7.5544, 7.5541, 7.5538, 7.5544, 7.5542, 7.554, 7.5536, 7.5533, 7.5532, 7.5529, 7.5527, 7.5524, 7.552, 7.5516, 7.5514, 7.5512, 7.5518, 7.5514, 7.551, 7.5507, 7.5505, 7.551, 7.5515, 7.5512, 7.5508, 7.5505, 7.5501, 7.5498, 7.5495, 7.5496, 7.5495, 7.5501, 7.55, 7.5506, 7.551, 7.5509, 7.5515, 7.5515, 7.5534, 7.5531, 7.5537, 7.5534, 7.5531, 7.5527, 7.5525, 7.5531, 7.5529, 7.5526, 7.5523, 7.5524, 7.5521, 7.5518, 7.5518, 7.5518, 7.5514, 7.5511, 7.5511, 7.551, 7.5507, 7.5504, 7.5502, 7.5509, 7.5506, 7.5512, 7.5509, 7.5508, 7.5504, 7.5501, 7.5497, 7.5494, 7.55, 7.5497, 7.5502, 7.5498, 7.5494, 7.5493, 7.5498, 7.5494, 7.5491, 7.5489, 7.5488, 7.5485, 7.5484, 7.5481, 7.5478, 7.5475, 7.5466, 7.5463]}
rtt1_2_7 = {'192.168.122.110': [6.6075, 5.5208, 10.9797, 5.4226, 6.321, 6.2666, 11.5087, 5.5201, 5.4853, 5.7435, 5.6071, 10.618, 5.4522, 6.7537, 6.3317, 11.354, 6.5403, 5.6212, 7.215, 6.4447, 10.9849, 5.3072, 5.7936, 5.9323, 5.5308, 16.8459, 11.2867, 5.9693, 7.3678, 11.9865, 6.9711, 7.9217, 6.5577, 6.9246, 6.7849, 5.3747, 5.724, 11.9321, 7.9944, 5.3465, 5.3203, 7.3626, 16.0458, 11.3621, 7.7782, 6.7601, 10.9694, 6.6912, 5.686, 11.8849, 5.6996, 5.6477, 11.2002, 5.5668, 5.4116, 5.4185, 11.071, 5.9392, 5.4781, 5.6064, 5.2409, 5.4989, 6.7091, 10.8638, 6.2981, 5.8339, 11.6405, 11.9154, 10.9286, 11.9405, 5.6219, 6.006, 5.2593, 7.2348, 5.5861, 10.7551, 6.7937, 6.5742, 7.4933, 5.5888, 6.5405, 10.6919, 6.2344, 5.368, 7.2689, 11.5292, 6.942, 5.4517, 5.4095, 5.9159, 16.9487, 5.7287, 5.2342, 11.2097, 5.5711, 10.9923, 11.3409, 6.2356, 10.7224, 5.3554, 5.9233, 11.3788, 6.7816, 5.5189, 7.3266, 6.9404, 5.9414, 11.7226, 6.8333, 5.4858, 5.3337, 5.5175, 5.827, 5.8973, 6.4523, 6.1419, 5.8944, 5.2826, 11.055, 5.7554, 10.7701, 5.9521, 10.8905, 5.9881, 21.8556, 5.4255, 14.6749, 5.2416, 5.6894, 5.4197, 12.2979, 6.0983, 11.1811, 11.5068, 11.2503, 10.8788, 11.6553, 6.0108, 7.5359, 7.3822, 6.7618, 6.8223, 5.6865, 7.3688, 5.2757, 6.3188, 14.5693, 17.1542, 6.0329, 7.6456, 5.6453, 5.6698, 6.547, 7.6182, 5.398, 16.1502, 5.5501, 5.6002, 11.7738, 6.428, 11.1806, 5.5094, 11.8246, 13.1478, 5.4331, 10.8418, 25.5752, 16.4697, 10.9518, 5.8277, 6.7782, 7.149, 6.4907, 6.6702, 16.9561, 7.5219, 5.3959, 5.5661, 28.6632, 5.6288, 7.4732, 5.7507, 5.6107, 12.2638, 11.0793, 5.3678, 6.4363, 6.4769, 5.9237, 11.4915, 5.3942, 10.9351, 5.5561, 5.4295, 11.1966, 16.6173, 7.2994, 5.8534, 6.0852, 5.4946, 5.5103, 7.5109, 5.3892, 5.3763, 10.73, 6.8932, 11.4067, 5.3232, 7.1509, 7.4937, 11.6713, 6.9108, 11.4696, 7.4155, 11.0846, 5.3892, 6.6881, 7.3583, 6.0084, 5.281, 5.9083, 7.5476, 5.9531, 13.2561, 11.291, 5.7192, 5.619, 10.5886, 5.3017, 6.0012, 5.5788, 5.7008, 7.2787, 6.4759, 5.4567, 6.2978, 10.9341, 7.174, 7.0946, 12.4362, 6.8531, 2.471, 6.247, 5.3639, 5.5141, 5.5346, 7.3843, 5.7657, 5.6748, 5.61, 5.7425, 5.893, 6.7139, 11.5957, 11.2195, 7.9436, 5.3477, 6.6407, 5.5132, 7.7202, 5.4421, 7.7119, 10.9813, 5.8475, 5.559, 6.85, 5.3117, 5.5246, 6.7792, 10.8974, 10.9012, 6.1011, 11.2455, 6.1512, 5.5699, 5.3937, 11.0462, 1.055, 5.3692, 5.8863, 11.3399, 5.9376, 6.8765, 5.9147, 10.7853, 10.9878, 6.8252, 5.641, 1.111, 6.4175, 5.4629, 5.4803, 16.6256, 5.9257, 11.1227, 7.2377, 7.1332, 11.404, 6.871, 11.055, 6.526, 10.5808, 1.0958, 6.9764, 6.3996, 5.8787, 6.0258, 7.0527, 5.3971, 7.1011, 11.3711, 10.9577, 5.5487, 6.026, 5.559, 5.9817, 6.6078, 33.1516, 6.2201, 11.2021, 6.886, 10.9103, 11.0049, 5.7077, 1.1244, 10.8376, 5.2979, 5.4562, 5.9617, 16.923, 11.3847, 5.7344, 6.6755, 11.1859, 16.6564, 10.8752, 11.1189, 5.3761, 5.4667, 11.2462, 5.2459, 11.8513, 1.2624, 10.9928, 7.0877, 5.2791, 5.7378, 22.398, 5.6462, 1.471, 11.5502, 7.6747, 6.1331, 16.4576, 6.8889, 11.183, 5.3618, 5.722, 5.3089, 6.0086, 5.688, 5.6057, 5.2221, 5.7521, 24.1525, 5.5199, 5.7383, 7.1096, 5.3718, 10.7236, 5.8255], '192.168.122.116': [5.7118, 5.6038, 5.5835, 5.3349, 6.8624, 5.4903, 5.765, 5.9729, 5.9748, 5.6481, 5.8057, 27.4222, 5.4293, 11.2102, 6.3028, 6.933, 10.926, 16.2261, 11.1783, 5.4617, 11.1897, 6.5074, 5.8646, 7.2439, 17.6456, 6.3069, 5.7378, 6.2528, 6.8209, 5.2609, 22.2228, 6.8347, 11.5271, 6.3498, 6.675, 5.5158, 6.4809, 11.8103, 10.751, 22.2757, 11.1158, 6.9742, 5.6832, 10.7915, 6.7694, 6.2096, 6.706, 6.3357, 5.5883, 6.2141, 5.4464, 6.5002, 5.4801, 5.5273, 6.7723, 6.0368, 5.7285, 6.5849, 5.5168, 5.8587, 5.4526, 5.5857, 6.3648, 5.3005, 5.2962, 10.8337, 7.0364, 17.2136, 6.5541, 11.3556, 10.8647, 5.7158, 5.4648, 7.1323, 11.2507, 22.1524, 6.2072, 12.5127, 11.1902, 5.6009, 5.3797, 5.3425, 6.3219, 6.0852, 6.1433, 11.6098, 5.5289, 5.4092, 6.0024, 6.6822, 11.2774, 5.8339, 5.2602, 11.1973, 5.5563, 5.682, 5.4944, 16.5718, 5.4224, 5.5492, 11.0199, 5.8165, 6.6857, 7.0732, 6.8226, 11.2548, 16.8092, 5.4307, 5.6605, 5.42, 10.7954, 6.3074, 11.3773, 10.6983, 6.9306, 10.9816, 5.9526, 5.4851, 5.893, 5.9361, 10.849, 11.08, 16.7456, 16.2985, 10.9601, 6.649, 5.4429, 5.3167, 5.4131, 5.5709, 11.2567, 10.8268, 6.13, 5.9302, 6.052, 6.9621, 16.4275, 6.0587, 6.7136, 6.4929, 7.0562, 5.4271, 5.8813, 6.6705, 5.2767, 6.3491, 6.4855, 5.76, 5.5249, 11.7116, 17.5872, 16.6154, 5.558, 5.4739, 6.376, 11.133, 11.2832, 5.8882, 6.6111, 5.5046, 5.5277, 5.6453, 11.4353, 6.8774, 5.82, 5.6717, 5.5363, 5.4255, 6.2923, 7.2246, 5.4324, 6.7742, 5.5087, 11.6322, 10.9446, 7.0055, 10.9932, 6.2008, 10.8485, 5.6691, 5.9245, 5.8217, 11.1299, 5.3284, 5.5754, 5.6033, 6.6502, 10.9782, 5.9242, 6.7708, 10.9313, 5.744, 6.1915, 16.9559, 6.0565, 11.2662, 5.2907, 5.322, 5.7747, 6.752, 13.0165, 7.5111, 5.3251, 6.6097, 12.3053, 6.0585, 12.4795, 5.3773, 11.3955, 11.9348, 12.7838, 6.3999, 5.3, 11.9212, 22.3138, 5.5087, 5.9493, 6.928, 6.5134, 7.2358, 5.6257, 7.3562, 5.5568, 6.4187, 6.4678, 5.538, 5.8372, 6.7732, 5.4722, 6.5694, 5.7957, 6.7277, 7.5355, 11.5693, 5.5165, 5.657, 7.8859, 5.6701, 11.0672, 5.2736, 10.833, 1.4622, 10.8104, 5.8398, 5.8167, 5.8179, 6.5877, 5.924, 6.1407, 16.8078, 5.9137, 6.6111, 5.4531, 10.6099, 11.0354, 7.3977, 7.0679, 6.8617, 5.9042, 5.5375, 5.8048, 11.7323, 5.8386, 11.2185, 5.4896, 6.4099, 10.9787, 5.5408, 10.9696, 6.7163, 5.3878, 5.2283, 5.9793, 5.4169, 16.4318, 10.8075, 7.0732, 0.6828, 5.3902, 6.8266, 5.9619, 5.4541, 5.5194, 5.4069, 5.3656, 11.0116, 6.3341, 5.6708, 6.3076, 11.0583, 5.8105, 5.4326, 5.8949, 18.8928, 11.0197, 6.3894, 1.281, 10.7837, 5.4271, 12.0864, 13.1912, 10.4749, 1.2879, 7.1869, 11.1818, 5.2698, 5.8584, 6.628, 5.7547, 11.2455, 5.872, 16.2659, 5.6922, 11.6146, 6.1061, 5.7609, 5.9803, 10.4632, 6.2799, 11.0798, 6.2273, 6.1939, 5.4548, 5.3375, 0.8907, 16.5615, 7.6284, 6.3779, 5.8999, 5.3446, 6.14, 6.1276, 10.7884, 5.3835, 8.9438, 22.5194, 7.0081, 6.5029, 5.4545, 6.1963, 6.0289, 11.9367, 0.8843, 5.3682, 11.6513, 5.2409, 6.86, 11.4162, 5.7359, 1.2023, 6.9585, 6.4175, 6.5813, 5.2125, 7.2184, 5.6942, 5.7404, 5.7347, 6.3357, 6.5207, 6.5899, 5.5506, 6.4902, 6.8934, 11.8272, 5.5819, 5.4388, 6.4011, 7.2248, 5.3706, 6.2983], '192.168.122.115': [16.1092, 12.4722, 6.4425, 7.225, 10.9546, 6.4449, 5.6927, 5.3544, 6.5236, 5.7287, 6.4895, 5.2903, 5.2824, 5.7223, 16.9456, 7.623, 5.6019, 5.2629, 5.3983, 11.4062, 5.4979, 5.4986, 10.7498, 6.6612, 5.7037, 5.5835, 5.2514, 5.4429, 11.014, 5.4386, 10.9501, 5.8093, 11.5521, 6.4905, 5.4851, 5.4584, 11.0846, 5.8637, 6.4311, 6.2523, 11.1363, 6.4223, 10.3824, 10.9463, 6.7894, 5.9013, 5.986, 5.8436, 11.6026, 11.2104, 5.2497, 5.3241, 16.5584, 5.548, 8.7955, 21.1213, 5.5599, 6.165, 11.4059, 0.8619, 6.2525, 5.6567, 6.8569, 5.6722, 5.5981, 10.9997, 6.9256, 10.8333, 6.5176, 17.3793, 1.5774, 17.1297, 6.2399, 28.156, 6.9222, 5.4045, 11.0888, 5.7886, 6.0492, 5.5747, 10.9339, 5.3892, 5.434, 5.6047, 5.466, 11.131, 10.4492, 5.4145, 10.7741, 5.2552, 11.2998, 5.2233, 5.4479, 10.9322, 6.8989, 6.4263, 5.4326, 10.8757, 5.4345, 7.2439, 5.625, 6.6042, 10.6144, 5.3985, 6.3984, 10.7605, 5.7056, 6.7873, 11.3204, 10.9758, 5.3897, 11.3924, 5.5852, 6.2716, 5.7981, 5.4891, 7.0758, 5.4524, 5.698, 6.0701, 5.635, 5.4233, 10.814, 10.8578, 11.1544, 11.0426, 11.1122, 6.1536, 11.1883, 6.0747, 5.8858, 11.2467, 7.1054, 5.3866, 5.4781, 5.9843, 10.7045, 11.1747, 11.5504, 5.4433, 6.5565, 11.1225, 5.7991, 5.8284, 5.6176, 5.3387, 5.9497, 16.7327, 5.9192, 6.5577, 5.4672, 5.3635, 6.2265, 12.3169, 5.3346, 10.6471, 11.4286, 6.1634, 5.4872, 5.1997, 11.1401, 5.1553, 5.7094, 6.3012, 11.5666, 6.3825, 11.5683, 5.523, 10.9279, 1.7345, 10.8202, 11.0867, 6.3043, 7.6594, 6.3827, 5.5625, 5.5032, 11.0612, 6.5734, 6.417, 5.8284, 6.1824, 5.4111, 6.2883, 11.0819, 10.761, 6.6564, 6.3987, 6.7134, 10.8881, 5.8827, 5.4703, 6.5675, 5.2364, 11.0712, 11.1165, 12.0435, 5.3275, 11.4102, 5.5549, 5.7704, 7.4635, 10.4573, 5.6241, 11.5917, 6.726, 6.5441, 6.6035, 6.6688, 11.3506, 1.4184, 10.5026, 6.4807, 5.8286, 11.2624, 6.4893, 5.4514, 6.6946, 10.9727, 11.2393, 12.0213, 7.4072, 5.6849, 6.5806, 5.4264, 6.6233, 10.5839, 5.6376, 5.7173, 6.2973, 5.6977, 6.6924, 7.1013, 11.2917, 5.4033, 11.6632, 11.2708, 5.8515, 5.5778, 10.5152, 10.7403, 1.2989, 5.3408, 6.5601, 5.5504, 5.2221, 5.6369, 11.8065, 16.7577, 5.6722, 5.8236, 10.9913, 6.737, 5.3084, 6.0511, 5.6806, 6.3508, 6.6876, 5.5554, 11.5571, 5.2211, 11.5905, 5.2655, 5.5697, 5.6877, 5.259, 5.5594, 21.965, 10.9694, 5.6033, 5.4736, 6.0463, 7.1349, 11.5016, 5.2192, 5.5141, 7.0488, 0.8218, 5.4104, 11.3235, 5.652, 11.7655, 5.3389, 10.9019, 10.6199, 10.9141, 6.3372, 6.2561, 5.4693, 10.7648, 5.7471, 5.986, 11.3335, 11.0776, 7.9505, 6.3348, 1.0283, 6.4521, 11.5559, 7.0872, 6.7186, 5.898, 0.9792, 7.0331, 5.3768, 0.6726, 6.8076, 24.256, 5.4247, 5.2931, 6.2604, 5.5728, 11.8594, 6.0184, 16.4819, 11.1773, 6.6965, 5.5676, 6.5911, 5.9628, 5.3768, 11.6563, 6.8924, 16.5098, 0.7834, 5.4111, 6.268, 6.4764, 5.6431, 10.828, 5.4417, 5.7945, 5.6791, 5.4886, 5.5439, 11.1554, 16.6833, 11.0285, 6.3446, 5.3637, 6.567, 7.8027, 0.9804, 11.3568, 6.8347, 6.3055, 38.2771, 16.9053, 11.0629, 1.0715, 6.7649, 7.041, 6.1033, 6.1939, 6.8743, 11.4822, 6.3128, 6.6624, 5.3332, 6.9721, 6.4783, 6.7861, 11.1799, 11.2522, 6.8462, 11.157, 5.5113, 9.3725, 7.1239, 10.926, 6.29], '192.168.122.114': [5.4059, 7.3521, 11.6408, 5.4801, 6.9458, 5.3554, 11.4639, 11.0857, 5.1782, 16.1104, 11.5817, 5.6064, 10.8471, 5.8153, 5.5597, 5.5351, 11.6727, 10.3509, 5.5144, 5.9361, 6.5832, 10.8547, 5.923, 5.8749, 11.7085, 6.2292, 5.3217, 5.3208, 5.6117, 5.4896, 11.4779, 6.8431, 7.4692, 5.9102, 5.4152, 5.5254, 11.0731, 6.6204, 5.3198, 11.6096, 5.5122, 11.0893, 6.4161, 10.9208, 5.9543, 6.8812, 6.206, 6.0384, 11.9088, 5.923, 5.9142, 6.2797, 17.2129, 11.3029, 7.2744, 5.337, 5.4917, 5.7142, 6.1224, 6.6948, 16.7215, 5.7459, 6.3622, 5.3711, 11.0621, 22.13, 5.8863, 11.7383, 5.5728, 6.3796, 1.0688, 22.8293, 11.276, 6.953, 6.9406, 5.9714, 5.738, 11.2033, 6.6435, 6.3941, 10.9131, 5.4648, 5.7344, 22.0175, 10.6905, 5.6086, 11.2116, 5.439, 6.3989, 5.4281, 11.3001, 5.7511, 22.7625, 5.3358, 11.6889, 5.9543, 5.2698, 10.9389, 5.4193, 5.456, 10.3986, 5.2812, 6.0804, 6.0713, 12.3253, 6.0766, 11.0805, 11.1609, 0.8583, 5.5277, 6.609, 5.6801, 21.5375, 12.0344, 6.315, 5.3446, 6.0253, 5.3766, 5.7666, 6.3434, 5.6405, 5.4648, 6.2292, 10.7107, 10.9549, 11.2042, 5.3806, 5.4405, 11.1463, 16.2096, 11.4501, 27.1947, 6.5646, 6.5315, 5.5351, 11.0624, 6.6035, 6.1009, 11.0054, 11.3206, 6.9966, 5.3406, 5.3363, 11.5969, 5.7147, 5.9633, 5.9125, 15.404, 10.9205, 10.5758, 5.7361, 10.7508, 10.9425, 6.1355, 5.446, 5.64, 10.8767, 5.6925, 11.2875, 5.8069, 11.4293, 5.4758, 5.7909, 6.7673, 5.4479, 6.5947, 6.8791, 5.4026, 10.4518, 1.528, 6.6395, 5.5504, 11.4138, 10.8995, 5.4882, 7.1383, 11.0087, 11.0133, 5.4867, 6.7084, 6.3512, 5.4212, 10.8891, 11.1008, 11.1923, 5.9323, 11.4412, 5.4257, 5.991, 11.575, 6.3586, 6.2344, 5.7166, 5.254, 5.6286, 6.3407, 6.7954, 5.6899, 5.7628, 5.8041, 5.7757, 5.4965, 5.6381, 5.7328, 6.6159, 11.1532, 5.5869, 5.8575, 5.5139, 11.0021, 0.9341, 6.0854, 5.2664, 5.6138, 11.6487, 11.4572, 5.5144, 5.4948, 5.3856, 11.1158, 5.6822, 7.4277, 11.3366, 5.6343, 12.5854, 6.9611, 5.2624, 11.1012, 5.5423, 10.9353, 10.6969, 6.8161, 7.4024, 6.3784, 11.0509, 5.3093, 11.0455, 6.3562, 5.4781, 10.7038, 5.4152, 1.3087, 6.4826, 5.9059, 5.4457, 5.2748, 7.338, 16.9363, 11.1992, 7.1127, 22.1798, 6.345, 5.4698, 13.4125, 5.8959, 7.4332, 6.2215, 6.2745, 5.7957, 11.4369, 11.4415, 7.3483, 5.4357, 6.0613, 6.8555, 6.3758, 5.7518, 11.2276, 6.4847, 5.6694, 11.168, 16.2399, 6.942, 10.7191, 11.5035, 10.6065, 21.7519, 0.8473, 11.3001, 18.0845, 6.6886, 5.4281, 5.5883, 12.3444, 5.3482, 11.4453, 5.537, 10.6392, 6.2373, 5.4708, 6.4485, 16.2094, 19.104, 10.8852, 10.9155, 5.5609, 0.9396, 6.5446, 5.6827, 8.1716, 6.2439, 5.4121, 0.9904, 7.0224, 6.2082, 0.7334, 28.734, 6.5401, 5.7323, 6.3121, 5.5697, 5.4016, 17.3759, 6.1588, 6.1376, 11.837, 6.0453, 5.3711, 6.2046, 5.4178, 10.5436, 5.2061, 6.87, 12.1555, 0.6735, 10.9694, 5.8143, 11.23, 10.8407, 17.01, 16.3834, 6.5193, 6.4292, 10.8612, 10.7181, 5.4233, 6.6152, 11.2412, 5.4431, 11.2705, 11.0536, 5.8961, 0.8783, 11.0526, 6.9535, 5.4157, 5.4915, 16.6509, 6.6941, 1.1575, 5.6789, 7.3862, 6.0785, 10.9146, 5.5957, 6.4721, 11.3308, 6.5596, 6.4394, 6.578, 6.4111, 5.7151, 10.4721, 6.1686, 5.7597, 5.6138, 5.2636, 5.6758, 5.9972, 6.1991, 10.3533], '192.168.122.113': [5.4603, 5.7077, 6.7489, 5.3554, 11.0331, 5.4886, 5.239, 5.5296, 6.5515, 6.032, 5.8656, 5.2795, 6.1836, 5.4967, 16.902, 5.784, 5.6756, 6.362, 6.439, 5.955, 5.5594, 6.5067, 11.3642, 5.9061, 6.5944, 13.1793, 5.4986, 5.4009, 6.2802, 5.4941, 11.2324, 5.8141, 1.6034, 6.0499, 6.7184, 10.9327, 11.76, 5.9481, 6.3899, 16.5694, 5.7356, 11.6422, 5.4708, 11.2798, 12.3782, 6.2554, 10.5555, 6.3379, 6.314, 10.6509, 11.1735, 6.4762, 5.3651, 5.7321, 5.6427, 5.5327, 5.6984, 5.5034, 5.5878, 5.7263, 22.3761, 5.621, 6.64, 5.9872, 5.5552, 5.338, 6.3543, 6.5119, 16.243, 5.2388, 1.1675, 11.251, 11.476, 5.677, 7.0713, 5.9497, 6.1142, 5.9872, 6.3665, 5.3506, 10.9437, 5.7263, 5.3802, 7.1361, 5.4302, 10.9353, 5.8038, 6.4297, 5.44, 6.916, 5.5144, 6.5415, 16.9008, 6.0387, 22.6488, 7.2284, 5.578, 6.8772, 10.8709, 5.4731, 5.6732, 5.8308, 6.2315, 5.8064, 5.7871, 11.1718, 5.5516, 5.6067, 0.7601, 5.4455, 5.3041, 5.3625, 6.736, 22.361, 5.7411, 5.9402, 10.8621, 5.8305, 5.4045, 5.5463, 5.4576, 10.7327, 5.78, 7.4201, 5.7013, 11.6246, 5.9547, 5.5361, 5.6145, 5.6372, 5.4088, 6.2015, 11.4148, 6.7234, 10.9599, 7.062, 5.7337, 10.7796, 11.1613, 6.0103, 6.0399, 5.3658, 10.6204, 11.7426, 5.3632, 6.5157, 16.5837, 5.8708, 5.4128, 11.2321, 5.6143, 5.8563, 5.4293, 5.4336, 10.7648, 32.5551, 11.6403, 5.6462, 18.0833, 5.8858, 6.8548, 10.3357, 11.5767, 6.8195, 6.2129, 5.9946, 14.0977, 5.5213, 10.6478, 1.3733, 5.9459, 6.7005, 6.2456, 6.3236, 6.906, 12.4762, 5.501, 11.2605, 6.5789, 12.2843, 5.851, 16.6118, 5.5287, 17.5643, 5.59, 5.5482, 6.3262, 7.3094, 6.5825, 16.5291, 5.4443, 5.9519, 6.6659, 10.4594, 5.7697, 6.5179, 7.0214, 5.4128, 6.5436, 10.9012, 11.6246, 5.4076, 10.9043, 15.9397, 10.9274, 6.2783, 6.4883, 11.4846, 10.8831, 10.9844, 0.8545, 5.6417, 10.9963, 5.5811, 5.7471, 12.341, 11.1332, 6.8557, 6.4085, 6.5265, 5.9316, 5.5718, 11.4949, 7.3361, 5.7724, 6.0637, 5.7306, 6.4721, 5.3084, 5.4727, 5.9242, 5.6725, 11.0118, 6.9845, 21.8353, 16.8672, 11.0695, 5.9311, 11.2693, 5.2767, 5.3189, 1.4267, 5.2311, 11.126, 5.3058, 6.2718, 5.5106, 7.9632, 6.5117, 11.1353, 11.2922, 5.2817, 11.3921, 5.4433, 5.9352, 6.7818, 6.2325, 5.7039, 17.3011, 16.8135, 10.2973, 5.7831, 5.5046, 6.6411, 11.0772, 5.4612, 5.3537, 5.6317, 6.048, 11.3602, 5.8103, 11.3282, 5.4569, 6.1462, 6.2802, 21.9569, 6.2373, 0.7267, 11.7242, 11.5666, 5.8169, 10.3939, 12.7101, 6.4681, 10.9653, 11.3783, 5.6512, 6.3491, 5.5482, 12.81, 10.8976, 5.3122, 5.4023, 5.4064, 10.9055, 11.5964, 0.849, 5.4376, 10.9603, 8.1506, 6.4476, 5.5821, 0.895, 5.8885, 5.6462, 0.5808, 5.8467, 5.583, 5.8722, 11.2438, 6.0754, 17.0596, 5.9824, 6.4085, 6.0453, 5.61, 7.1809, 10.6418, 5.5139, 11.8182, 6.0079, 6.1409, 5.6705, 5.9686, 0.6707, 5.3098, 11.9689, 5.5983, 5.6047, 5.5335, 11.2681, 5.8129, 5.321, 5.3167, 11.3099, 6.9361, 7.4306, 12.2271, 6.4085, 5.6503, 6.5117, 16.9625, 0.948, 5.4018, 6.9423, 5.6291, 5.2912, 6.6793, 16.7069, 1.0686, 7.5362, 6.4754, 11.883, 5.6794, 7.4599, 6.5842, 5.8196, 5.4991, 5.8038, 11.6451, 6.372, 6.6843, 1.0276, 5.8811, 5.6934, 5.6419, 11.3139, 5.4493, 10.7813, 6.1519, 11.0748], '192.168.122.112': [5.5342, 11.0235, 5.3666, 11.2834, 5.8365, 10.9851, 5.5668, 11.1356, 5.8403, 5.7235, 5.6922, 6.1729, 10.9103, 6.3565, 5.5394, 6.0523, 5.2805, 5.2862, 6.2823, 5.5754, 5.9714, 5.8775, 17.38, 5.7259, 11.3878, 11.2431, 6.0239, 5.3458, 11.1618, 5.3532, 5.8091, 12.1195, 6.7995, 5.2416, 11.1339, 5.5535, 5.4934, 11.8639, 5.5432, 5.2412, 5.5408, 12.2368, 10.7446, 11.3373, 6.2647, 5.914, 11.3628, 6.0723, 5.7194, 5.4581, 7.0159, 5.2595, 6.5265, 5.5027, 5.5854, 5.3098, 5.971, 16.5551, 6.201, 5.9819, 10.7923, 5.6484, 5.2514, 5.821, 10.8609, 5.9843, 11.3888, 10.8192, 11.7347, 10.886, 1.5421, 5.6229, 6.2499, 11.2231, 6.6915, 5.7855, 5.7902, 6.8958, 7.2958, 10.4649, 6.2261, 6.4514, 5.471, 11.2321, 5.3859, 10.9754, 5.4657, 11.8718, 5.3711, 6.5846, 10.8001, 5.4877, 6.556, 16.6802, 5.5258, 6.901, 6.5038, 6.227, 10.86, 5.4467, 5.4791, 5.8393, 11.5345, 6.0334, 5.7411, 5.301, 6.9048, 11.2207, 1.0729, 27.7073, 5.5475, 5.4188, 5.2893, 5.5687, 6.2594, 10.7512, 19.2313, 5.5146, 16.1669, 18.1286, 6.5949, 6.1591, 5.3153, 16.8183, 11.0939, 5.4779, 11.1027, 10.8237, 11.2326, 6.6452, 5.7452, 5.6384, 11.1573, 5.8682, 22.3427, 5.5764, 6.7279, 6.3944, 12.5799, 5.6267, 6.1972, 5.4224, 5.249, 11.8926, 11.6062, 11.2021, 7.0002, 5.9688, 11.2183, 5.5656, 10.8242, 16.8774, 10.9594, 6.2079, 5.9845, 5.301, 6.5849, 5.4436, 6.4721, 5.4648, 6.6254, 5.7359, 16.3352, 5.852, 6.2528, 5.4135, 11.1575, 5.5006, 5.8901, 1.195, 5.8918, 11.1127, 6.916, 6.588, 6.4628, 6.953, 10.9603, 6.0089, 6.8879, 6.4993, 5.5985, 10.7083, 11.0164, 6.2821, 6.2215, 5.6107, 17.8685, 10.9491, 15.4843, 5.4364, 5.3735, 11.3401, 6.8364, 10.6072, 5.5034, 11.1709, 6.7713, 5.3997, 5.6758, 6.1135, 5.9938, 5.4712, 5.2788, 5.379, 7.1414, 5.7685, 5.7576, 10.766, 11.3254, 5.7132, 0.993, 11.3223, 11.024, 6.1076, 11.1575, 6.3334, 16.741, 16.7253, 11.2627, 10.6711, 10.6163, 7.391, 11.2448, 5.945, 6.0124, 11.3816, 6.4406, 11.0044, 5.2321, 10.8542, 5.9569, 5.7321, 6.2466, 6.5055, 6.0158, 10.6411, 11.0326, 10.4811, 5.6455, 7.0407, 5.4173, 1.2598, 5.9223, 5.5265, 5.2669, 6.2816, 6.6209, 16.072, 11.3175, 5.754, 1.1294, 5.8401, 5.4803, 5.4629, 6.3298, 5.9309, 5.7666, 10.8647, 11.1313, 7.3612, 5.892, 5.4204, 11.1408, 6.7327, 5.3248, 5.4514, 10.7927, 11.2646, 5.5017, 6.0275, 6.6695, 5.5175, 6.8195, 10.9115, 5.2726, 5.6944, 5.8692, 0.6936, 5.6849, 5.3005, 5.9209, 5.8179, 5.7538, 6.7201, 5.7702, 11.0788, 5.8544, 5.3067, 5.3303, 10.8018, 5.3556, 16.5355, 5.6152, 5.3966, 6.4626, 6.8619, 0.71, 5.3821, 5.4834, 19.5286, 5.4283, 5.893, 0.8774, 7.7083, 5.388, 0.8602, 6.7475, 12.1965, 5.3527, 11.5886, 5.4119, 5.5864, 5.671, 6.418, 10.8743, 5.5268, 5.9578, 6.7575, 6.3653, 5.6207, 11.0466, 10.8755, 11.6341, 11.4682, 6.2838, 6.6051, 6.0532, 7.2143, 6.4554, 5.6536, 6.7689, 5.842, 5.6367, 6.2401, 10.4873, 11.1978, 6.2242, 10.8969, 5.6725, 5.2683, 10.8359, 5.8007, 0.7579, 5.5573, 7.1144, 5.5046, 10.6452, 5.5692, 11.0986, 0.9634, 5.4519, 5.9872, 5.5604, 6.1219, 11.1403, 6.4495, 5.4703, 6.5126, 5.5857, 6.1297, 6.7737, 11.0033, 5.8131, 5.3322, 11.6692, 22.4624, 10.5932, 11.3494, 6.835, 5.4142, 6.5007]}
cpu1_2_7 = [19.4, 29.2, 0.1, 2.2, 1.0, 0.3, 0.1, 1.7, 0.5, 0.5, 0.1, 1.8, 1.3, 0.6, 0.8, 2.2, 0.3, 2.0, 2.3, 1.6, 0.3, 1.1, 0.8, 0.1, 0.4, 1.1, 1.9, 0.4, 0.4, 0.4, 0.8, 0.3, 0.9, 0.7, 0.9, 0.2, 0.2, 0.2, 0.8, 0.7, 0.6, 0.7, 0.8, 0.5, 0.3, 3.3, 3.5, 1.2, 1.4, 0.6, 0.1, 0.3, 0.5, 0.4, 0.2, 0.3, 0.6, 0.2, 0.6, 0.3, 1.6, 1.4, 0.4, 1.7, 0.7, 0.5, 0.9, 0.7, 0.5, 1.1, 0.8, 6.3, 5.9, 0.2, 0.6, 0.2, 0.4, 0.3, 0.7, 0.1, 0.2, 0.4, 0.2, 0.2, 0.6, 1.2, 0.1, 1.7, 2.0, 0.5, 1.3, 1.2, 0.0, 0.8, 0.2, 0.3, 0.3, 1.1, 1.4, 0.6, 0.2, 0.4, 1.1, 1.2, 0.4, 0.4, 0.6, 1.1, 0.3, 0.1, 0.5, 0.6, 0.2, 0.4, 1.2, 0.1, 0.5, 1.1, 0.6, 1.0, 1.4, 0.2, 1.0, 0.4, 0.7, 0.2, 0.5, 0.5, 1.1, 2.6, 1.0, 0.1, 3.3, 4.3, 0.4, 0.7, 1.4, 0.9, 1.7, 4.7, 2.4, 1.3, 0.8, 1.6, 1.8, 0.7, 0.7, 0.5, 0.2, 1.3, 4.5, 5.9, 0.4, 5.0, 4.7, 0.0, 1.1, 1.3, 0.8, 0.9, 4.9, 4.5, 0.8, 1.1, 1.5, 1.9, 0.2, 1.0, 4.4, 6.0, 0.4, 1.2, 0.4, 0.8, 0.2, 1.6, 0.3, 0.3, 0.7, 0.1, 0.7, 0.2, 0.0, 0.4, 0.0, 0.1, 1.0, 0.2, 0.3, 0.3, 0.6, 0.1, 3.2, 3.7, 0.3, 4.8, 4.6, 3.9, 4.0, 0.1, 5.0, 2.3, 2.7, 0.5, 1.2, 0.0, 1.6, 0.9, 0.9, 0.5, 0.0, 1.7, 1.3, 0.3, 1.0, 1.9, 0.8, 0.1, 0.7, 1.7, 0.6, 0.5, 0.2, 1.3, 1.0, 0.3, 1.7, 1.1, 1.1, 0.4, 1.1, 0.9, 1.2, 0.2, 0.5, 0.5, 0.6, 0.8, 0.7, 1.0, 0.2, 0.3, 0.3, 0.9, 0.9, 0.3, 1.0, 2.2, 1.0, 1.4, 0.3, 1.1, 0.3, 0.7, 0.7, 0.6, 2.1, 1.0, 1.0, 0.1, 0.0, 0.0, 1.2, 2.3, 1.0, 0.3, 0.0, 0.2, 2.2, 1.9, 0.3, 1.2, 0.6, 1.1, 2.6, 2.6, 2.4, 2.4, 1.0, 2.0, 0.9, 4.9, 0.3, 3.9, 0.6, 0.8, 0.6, 2.1, 2.6, 1.4, 1.7, 1.6, 1.2, 0.9, 0.8, 1.0, 1.4, 0.7, 0.8, 0.9, 1.4, 0.1, 1.5, 0.1, 4.8, 1.6, 2.7, 0.4, 2.4, 2.3, 1.2, 1.0, 2.3, 1.4, 0.8, 0.2, 0.7, 0.3, 0.3, 0.1, 1.8, 5.2, 3.2, 2.8, 1.7, 0.2, 0.0, 1.6, 1.0, 1.6, 2.2, 1.8, 1.9, 0.3, 1.2, 0.0, 0.4, 0.3, 2.2, 1.3, 3.8, 3.5, 1.2, 2.3, 0.9, 1.0, 0.1, 1.5, 0.2, 1.4, 0.4, 0.3, 0.7, 0.9, 0.3, 4.0, 4.5, 0.0, 0.1, 5.9, 5.2, 1.7, 0.9, 0.4, 0.0, 1.3, 0.1, 0.5, 1.6, 0.4, 0.3]
off_mec1_2_7 = 284
off_cloud1_2_7 = 392
inward_mec1_2_7 = 222
loc1_2_7 = 635
deadlock1_2_7 = [7]
memory1_2_7 = [0.2175, 0.2178, 0.2179, 0.218, 0.2182, 0.2182, 0.2182, 0.2182, 0.2183, 0.2184, 0.2184, 0.2184, 0.2184, 0.2184, 0.2188, 0.2189, 0.2189, 0.219, 0.219, 0.219, 0.219, 0.219, 0.219, 0.2191, 0.2192, 0.2192, 0.2192, 0.2192, 0.2192, 0.2192, 0.2193, 0.2193, 0.2193, 0.2193, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2196, 0.2197, 0.2197, 0.2198, 0.2198, 0.2199, 0.2199, 0.2199, 0.2199, 0.2199, 0.2199, 0.22, 0.2201, 0.2201, 0.2201, 0.2201, 0.2201, 0.2201, 0.2201, 0.2201, 0.2202, 0.2202, 0.2203, 0.2204, 0.2204, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2206, 0.2206, 0.2207, 0.2207, 0.2208, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.221, 0.221, 0.221, 0.2211, 0.2211, 0.2211, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2216, 0.2217, 0.2217, 0.2217, 0.2217, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2219, 0.2219, 0.2219, 0.2219, 0.2219, 0.2219, 0.222, 0.222, 0.222, 0.222, 0.222, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2226, 0.2227, 0.2227, 0.2229, 0.2229, 0.223, 0.223, 0.223, 0.223, 0.223, 0.223, 0.223, 0.2231, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2233, 0.2233, 0.2233, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2237, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2239, 0.2239, 0.2239, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.2241, 0.2241, 0.2241, 0.2241, 0.2242, 0.2242, 0.2242, 0.2242, 0.2245, 0.2245, 0.2245, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2247, 0.2247, 0.2247, 0.2247, 0.2248, 0.2248, 0.2248, 0.2248, 0.2249, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.2251, 0.2251, 0.2251, 0.2251, 0.2252, 0.2252, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2254, 0.2255, 0.2255, 0.2255, 0.2255, 0.2258, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.2261, 0.2261, 0.2261, 0.2261, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2263, 0.2263, 0.2263, 0.2263, 0.2264, 0.2264, 0.2264, 0.2264, 0.2265, 0.2265, 0.2267, 0.2268, 0.2268, 0.2269, 0.2269, 0.2269, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2276, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2278, 0.2278, 0.2278, 0.2279, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2283, 0.2283, 0.2283, 0.2283, 0.2284, 0.2284, 0.2284]
task_received1_2_7 = 1311
sent_t1_2_7 = {'125': 375, '124': 449, '126': 487}
cooperate1_2_7 = {'mec': 284, 'cloud': 392}
task_record1_2_7 = {}
outward_mec1_2_7 = 244
offload_check1_2_7 = [197, 42]
timed_out_tasks1_2_7 = 0
| 20,346.941176
| 322,402
| 0.621296
|
wt1_2_7 = {'192.168.122.112': [6.0527, 8.4551, 7.8479, 7.6681, 7.4932, 6.4745, 6.4198, 8.2644, 10.7811, 10.3783, 9.9412, 9.5791, 9.2604, 9.4337, 9.2044, 8.9888, 8.8576, 8.6938, 8.5687, 8.4276, 8.3159, 8.203, 8.3446, 8.2226, 8.127, 8.0167, 7.9279, 7.8576, 7.9614, 7.9092, 7.8796, 7.8118, 7.747, 7.8486, 7.7813, 7.8853, 7.8253, 7.7668, 7.8695, 7.8173, 7.7653, 7.7128, 7.6701, 7.7426, 7.811, 7.8762, 7.8196, 7.7081, 7.6705, 7.6261, 7.4933, 7.4535, 7.4443, 7.4345, 7.3984, 7.3828, 7.7321, 7.6903, 7.6519, 7.6141, 7.5784, 7.928, 7.9189, 7.9659, 7.944, 7.9437, 7.913, 7.8772, 7.85, 7.8308, 7.8185, 7.792, 7.7742, 7.7612, 7.7356, 7.766, 7.7373, 7.713, 7.6905, 7.6612, 7.6402, 7.6118, 7.6528, 7.6491, 7.6283, 7.6693, 7.6482, 7.6321, 7.6127, 7.6098, 7.591, 7.5769, 7.552, 7.5301, 7.599, 7.5916, 7.5948, 7.5769, 7.5614, 7.5986, 7.6272, 7.6068, 7.5859, 7.5649, 7.5449, 7.5254, 7.5584, 7.5457, 7.5256, 7.507, 7.4923, 7.4765, 7.4653, 7.4491, 7.4337, 7.4291, 7.4144, 7.3997, 7.3822, 7.367, 7.3764, 7.3622, 7.3563, 7.3879, 7.4147, 7.4086, 7.3983, 7.3818, 7.369, 7.3627, 7.3494, 7.336, 7.3291, 7.3555, 7.3425, 7.3289, 7.3256, 7.3134, 7.3019, 7.29, 7.2769, 7.28, 7.2784, 7.2705, 7.2624, 7.2586, 7.2533, 7.242, 7.2377, 7.226, 7.2145, 7.204, 7.196, 7.1857, 7.1782, 7.1677, 7.1569, 7.147, 7.1717, 7.1647, 7.1563, 7.1466, 7.1387, 7.1084, 7.0987, 7.1237, 7.1465, 7.1378, 7.1284, 7.1282, 7.1236, 7.1152, 7.1389, 7.1315, 7.1216, 7.1144, 7.1361, 7.1283, 7.1231, 7.1165, 7.1066, 7.0985, 7.0954, 7.0867, 7.0779, 7.0714, 7.1006, 7.0915, 7.0837, 7.0782, 7.0746, 7.0937, 7.0859, 7.0775, 7.0682, 7.0611, 7.0631, 7.081, 7.1014, 7.124, 7.1425, 7.1334, 7.1285, 7.1239, 7.1184, 7.114, 7.1419, 7.1632, 7.1568, 7.1517, 7.1455, 7.1398, 7.1347, 7.1295, 7.1227, 7.1424, 7.136, 7.1334, 7.1365, 7.1313, 7.1289, 7.1205, 7.1134, 7.1061, 7.0978, 7.0911, 7.0841, 7.1017, 7.0946, 7.1373, 7.1519, 7.2006, 7.1938, 7.1872, 7.18, 7.2445, 7.2365, 7.2297, 7.2465, 7.2423, 7.2577, 7.2533, 7.2483, 7.263, 7.256, 7.3058, 7.2987, 7.2907, 7.2849, 7.2795, 7.2754, 7.3144, 7.3078, 7.3218, 7.3151, 7.3085, 7.3027, 7.3037, 7.2964, 7.3106, 7.3208, 7.3144, 7.3081, 7.3009, 7.2937, 7.293, 7.2899, 7.2844, 7.3197, 7.3168, 7.3121, 7.305, 7.3182, 7.3258, 7.321, 7.3179, 7.3157, 7.3098, 7.3046, 7.3021, 7.3193, 7.3393, 7.3549, 7.3489, 7.3446, 7.3388, 7.3356, 7.3339, 7.3504, 7.3633, 7.3564, 7.3501, 7.346, 7.3426, 7.3751, 7.3699, 7.3634, 7.3945, 7.4059, 7.4176, 7.4303, 7.4264, 7.4373, 7.4307, 7.4238, 7.4202, 7.4156, 7.4113, 7.405, 7.4245, 7.4185, 7.4153, 7.4085, 7.4021, 7.3971, 7.3904, 7.3842, 7.378, 7.3763, 7.3734, 7.3681, 7.3644, 7.3586, 7.3546, 7.3526, 7.3653, 7.3612, 7.3557, 7.3497, 7.345, 7.3553, 7.3538, 7.3505, 7.3459, 7.3401, 7.3381, 7.3338, 7.3282, 7.3227, 7.3165, 7.3133, 7.3251, 7.3234, 7.3194, 7.3139, 7.3083, 7.3038, 7.3145, 7.3094, 7.3186, 7.3151, 7.3095, 7.3048, 7.3171, 7.3124, 7.3091, 7.305, 7.2995, 7.2952, 7.2898, 7.2852, 7.2807, 7.2767, 7.2722, 7.2694, 7.2639, 7.2596, 7.2695, 7.2642, 7.2598, 7.2588, 7.2555, 7.2675, 7.2685, 7.269500000000001, 7.3129, 7.3095, 7.3189, 7.3139, 7.3227, 7.3188, 7.3172, 7.3149, 7.3147, 7.3107, 7.3213, 7.3183, 7.3142, 7.3111, 7.3065, 7.3045, 7.3047, 7.2998, 7.3094, 7.3054, 7.3145, 7.3238, 7.321, 7.3159, 7.311, 7.3063, 7.3057, 7.3144, 7.3093, 7.3182, 7.3141, 7.3364, 7.3317, 7.3291, 7.3267, 7.3222, 7.3176, 7.3146, 7.3104, 7.3069, 7.3039, 7.2997, 7.2949, 7.3038, 7.3007, 7.296, 7.3036, 7.3079, 7.3165, 7.3123, 7.3106, 7.309, 7.3172, 7.3253, 7.3211, 7.3292, 7.3389, 7.3345, 7.3303, 7.3444, 7.3402, 7.3366, 7.3328, 7.3291, 7.3252, 7.3215, 7.3226, 7.319, 7.3156, 7.3124, 7.3086, 7.3055, 7.304, 7.3023, 7.3081, 7.3045, 7.3014, 7.2976, 7.2943, 7.2949, 7.2915, 7.3006, 7.3117, 7.3152, 7.3118, 7.308, 7.3041, 7.3149, 7.3117, 7.3084, 7.3058, 7.3199, 7.322, 7.3182, 7.324, 7.3318, 7.3338, 7.3334, 7.331, 7.332, 7.3297, 7.3502, 7.3496, 7.3472, 7.3441, 7.3421, 7.3525, 7.3606, 7.3569, 7.3741, 7.3719, 7.3796, 7.376, 7.3744, 7.371, 7.3684, 7.3678, 7.3649, 7.362, 7.3613, 7.3583, 7.3547, 7.3514, 7.3477, 7.3442, 7.3524, 7.3518, 7.3528, 7.3489, 7.3557, 7.3538, 7.3528, 7.3607, 7.3676, 7.3749, 7.3715, 7.3679, 7.3719, 7.3702, 7.3664, 7.3636, 7.3624, 7.3588, 7.3572, 7.3647, 7.3718, 7.371, 7.3675, 7.3645, 7.3617, 7.3617, 7.3582, 7.366, 7.3724, 7.3687, 7.366, 7.3634, 7.3713, 7.3678, 7.3652, 7.3724, 7.3697, 7.3685, 7.3651, 7.3625, 7.3602, 7.3781, 7.3762, 7.3724, 7.3781, 7.3771, 7.3744, 7.3832, 7.3897, 7.3872, 7.3838, 7.3805, 7.3778, 7.375, 7.3824, 7.3799, 7.3762, 7.3727, 7.3696, 7.3659, 7.3656, 7.3636, 7.3664, 7.3643, 7.3621, 7.3598, 7.359, 7.3556, 7.3528, 7.3491, 7.3458, 7.3443, 7.351, 7.35, 7.3483, 7.3551, 7.3527, 7.3506, 7.3574, 7.3542, 7.3524, 7.3494, 7.3481, 7.3542, 7.3515, 7.3485, 7.3452, 7.3514, 7.3593, 7.3929, 7.39, 7.3953, 7.3933, 7.4173, 7.4151, 7.4123, 7.4105, 7.4265, 7.4245, 7.4399, 7.4369, 7.4345, 7.4336, 7.4344, 7.4395, 7.4454, 7.4422, 7.4392, 7.4383, 7.4352, 7.4318, 7.4293, 7.4261, 7.4227, 7.4192, 7.4156, 7.4125, 7.4119, 7.4101, 7.4085, 7.4146, 7.4212, 7.4186, 7.4169, 7.4223, 7.4207, 7.4197, 7.4251, 7.4319, 7.4293, 7.4269, 7.43, 7.427, 7.4186, 7.416, 7.4214, 7.4193, 7.4167, 7.4142, 7.4226, 7.4196, 7.4168, 7.4081, 7.4054, 7.4108, 7.4111, 7.4086, 7.4143, 7.4122, 7.4194, 7.4166, 7.4137, 7.4188, 7.4263, 7.4231, 7.4204, 7.4265, 7.4238, 7.4296, 7.4271, 7.4265, 7.4242, 7.4235, 7.4204, 7.4175, 7.4173, 7.4151, 7.4124, 7.4111, 7.408, 7.4064, 7.4038, 7.4019, 7.3997, 7.3976, 7.3989, 7.3969, 7.395, 7.392, 7.39, 7.3868, 7.3932, 7.3908, 7.39, 7.387, 7.3839, 7.3812, 7.3781, 7.3759, 7.373, 7.3701, 7.3676, 7.3648, 7.363, 7.3695, 7.3686, 7.3741, 7.3798, 7.3791, 7.3771, 7.3742, 7.3812, 7.3867, 7.3839, 7.3811, 7.3786, 7.3759, 7.3732, 7.3718, 7.3772, 7.3763, 7.3734, 7.3789, 7.376, 7.3742, 7.3717, 7.3703, 7.3686, 7.3668, 7.3655, 7.365, 7.3655, 7.3709, 7.3761, 7.374, 7.3714, 7.3768, 7.376, 7.3748, 7.3726, 7.3858, 7.3846, 7.3994, 7.4048, 7.4024, 7.4012, 7.399, 7.3963, 7.3938, 7.3926, 7.3916, 7.3902, 7.3891, 7.3909, 7.3896, 7.3883, 7.3859, 7.3838, 7.3825, 7.383, 7.3808, 7.3865, 7.3852, 7.3828, 7.3815, 7.3839, 7.3811, 7.38, 7.3784, 7.3843, 7.3829, 7.3808, 7.386, 7.3836, 7.3878, 7.3989, 7.3967, 7.3953, 7.3937, 7.392, 7.3895, 7.3874, 7.3854, 7.3904, 7.3949, 7.393, 7.3925, 7.391, 7.3886, 7.3885, 7.386, 7.3843, 7.3818, 7.3863, 7.3865, 7.3855, 7.3839, 7.3816, 7.3796, 7.3771, 7.3773, 7.3754, 7.3735, 7.3785, 7.3768, 7.3748, 7.3724, 7.3912, 7.3909, 7.3883, 7.3927, 7.3919, 7.39, 7.3953, 7.397, 7.3947, 7.4195, 7.4247, 7.4228, 7.4277, 7.4318, 7.4292, 7.4272, 7.4259, 7.4238, 7.4225, 7.4204, 7.4319, 7.4357, 7.4334, 7.4447, 7.4427, 7.4406, 7.4385, 7.4432, 7.4471, 7.4456, 7.4441, 7.4434, 7.4368, 7.4352, 7.4336, 7.4315, 7.4298, 7.4285, 7.4327, 7.4302, 7.4286, 7.4396, 7.437, 7.4408, 7.4384, 7.4361, 7.4348, 7.4326, 7.4302, 7.4294, 7.4282, 7.426, 7.4303, 7.4288, 7.4271, 7.4259, 7.4301, 7.429, 7.4278, 7.4259, 7.4302, 7.4281, 7.4322, 7.4308, 7.4354, 7.4331, 7.4325, 7.4325, 7.4365, 7.4344, 7.4324, 7.4302, 7.4278, 7.4263, 7.4305, 7.4342, 7.4319, 7.4298, 7.4276, 7.4258, 7.4236, 7.4218, 7.4194, 7.4173, 7.4151, 7.4131, 7.4171, 7.415, 7.4126, 7.4102, 7.4149, 7.4268, 7.4249, 7.4233, 7.4239, 7.4217, 7.4259, 7.4235, 7.4273, 7.4317, 7.4297, 7.4278, 7.4262, 7.4241, 7.4277, 7.4264, 7.4242, 7.422, 7.4264, 7.4245, 7.4225, 7.4209, 7.4454, 7.4436, 7.4437, 7.4475, 7.4458, 7.4494, 7.4475, 7.4452, 7.4432, 7.4421, 7.4407, 7.4385, 7.4373, 7.4376, 7.4366, 7.4345, 7.4335, 7.4317, 7.4295, 7.4273, 7.4261, 7.4249, 7.4232, 7.4248, 7.4231, 7.421, 7.4198, 7.4186, 7.4169, 7.4155, 7.4137, 7.4173, 7.4152, 7.4135, 7.4115, 7.415, 7.4148, 7.4127, 7.4114, 7.4101, 7.4135, 7.408, 7.4118, 7.4103, 7.4084, 7.4128, 7.4117, 7.4096, 7.4137, 7.4122, 7.4114, 7.4093, 7.4071, 7.4062, 7.4043, 7.4028, 7.4062, 7.4123, 7.4107, 7.4086, 7.4071, 7.4055, 7.4042, 7.4021, 7.4011, 7.399, 7.3985, 7.3984, 7.3962, 7.3942, 7.3924, 7.396, 7.3942, 7.3927, 7.3911, 7.39, 7.3878, 7.3862, 7.3852, 7.3838, 7.3877, 7.3856, 7.3839, 7.3876, 7.3859, 7.3793, 7.3776, 7.3812, 7.3844, 7.3829, 7.3816, 7.3797, 7.3836, 7.3868, 7.3856, 7.3844, 7.3879, 7.3867, 7.3903, 7.3883, 7.3863, 7.3845, 7.3825, 7.3862, 7.3844, 7.3825, 7.3807, 7.3788, 7.3777, 7.3757, 7.3745, 7.3724, 7.3714, 7.3694, 7.373, 7.371, 7.3704, 7.3688, 7.3723, 7.3693, 7.3675, 7.3658, 7.3659, 7.3652, 7.3648, 7.3631, 7.3672, 7.3711, 7.3701, 7.3747, 7.3788, 7.3783, 7.3769, 7.3812, 7.3857, 7.3852, 7.3838, 7.382, 7.3812, 7.3794, 7.378, 7.3762, 7.3745, 7.3738, 7.3824, 7.3825, 7.3858, 7.3851, 7.3835, 7.3815, 7.3799, 7.3782, 7.3766, 7.3758, 7.3747, 7.373, 7.3731, 7.3815, 7.3811, 7.3798, 7.378, 7.3816, 7.3809, 7.3758, 7.3744, 7.3733, 7.3844, 7.3836, 7.3823, 7.3857, 7.3839, 7.3827, 7.381, 7.3793, 7.3781, 7.3764, 7.3749, 7.374, 7.3768, 7.3751, 7.3738, 7.3723, 7.3704, 7.3688, 7.3673, 7.3693, 7.3676, 7.371, 7.3697, 7.3684, 7.3669, 7.3667, 7.3652, 7.3688, 7.3723, 7.3705, 7.3688, 7.3673, 7.3658, 7.3651, 7.3641, 7.3642, 7.3684, 7.3671, 7.3666, 7.3654, 7.3644, 7.3627, 7.3618, 7.3673, 7.3662, 7.37, 7.3842, 7.3823, 7.3805, 7.3789, 7.3779, 7.3815, 7.3796, 7.3777, 7.3766, 7.3755, 7.3833, 7.3821, 7.3804, 7.3787, 7.3769, 7.3752, 7.3738, 7.3721, 7.371, 7.3702, 7.3698, 7.368, 7.3674, 7.3666, 7.3695, 7.3677, 7.3662, 7.3654, 7.3641, 7.3652, 7.3687, 7.3673, 7.3657, 7.3642, 7.3627, 7.3656, 7.3642, 7.3671, 7.3659, 7.3695, 7.3688, 7.3672, 7.3667, 7.3658, 7.3644, 7.3588, 7.3595, 7.359, 7.3573, 7.356, 7.3557, 7.354, 7.3528, 7.3522, 7.3514, 7.3502, 7.3485, 7.3477, 7.3512, 7.3513, 7.3611, 7.3598, 7.3582, 7.3617, 7.3605, 7.3588, 7.3579, 7.3607, 7.3592, 7.3623, 7.3613, 7.3608, 7.3637, 7.3629, 7.3661, 7.3644, 7.3627, 7.3633, 7.3616, 7.3612, 7.369, 7.3718, 7.3747, 7.376, 7.3749, 7.3738, 7.3731, 7.3724, 7.3709, 7.3745, 7.3729, 7.3727, 7.3787, 7.3787, 7.3777, 7.3786, 7.3794, 7.3785, 7.3812, 7.3801, 7.3793, 7.3784, 7.3775, 7.3767, 7.3762, 7.3747, 7.3747, 7.3731, 7.372, 7.375, 7.3739, 7.3768, 7.3754, 7.3745, 7.3742, 7.377, 7.3761, 7.3756, 7.3741, 7.3725, 7.371, 7.3697, 7.3818, 7.3802, 7.3788, 7.3771, 7.3756, 7.3748, 7.3731, 7.3763, 7.3784, 7.3879, 7.387, 7.3877, 7.3915, 7.3912, 7.3898, 7.3887, 7.3918, 7.3953, 7.3937, 7.3923, 7.391, 7.3897, 7.3885, 7.3875, 7.3861, 7.3848, 7.3837, 7.3821, 7.381, 7.3803, 7.3796, 7.3823, 7.3812, 7.3797, 7.3783, 7.3768, 7.3765, 7.3752, 7.3748, 7.3733, 7.3717, 7.3711, 7.3959, 7.4047, 7.4119, 7.4191, 7.4223, 7.4208, 7.4239, 7.4227, 7.4217, 7.4205, 7.4195, 7.4222, 7.4217, 7.4207, 7.4195, 7.418, 7.4176, 7.4124, 7.4153, 7.4146, 7.4136, 7.412, 7.4104, 7.4088, 7.4072, 7.4062, 7.4054, 7.4038, 7.4026, 7.4052, 7.4038, 7.4022, 7.4006, 7.3996, 7.3982, 7.3966, 7.3995, 7.3997, 7.3981, 7.4011, 7.3996, 7.4031, 7.4018, 7.4003, 7.401, 7.3996, 7.4027, 7.4013, 7.4042, 7.4028, 7.4014, 7.4041, 7.403, 7.4057, 7.4042, 7.4031, 7.4017, 7.4004, 7.3988, 7.3978, 7.3963, 7.3953, 7.3945, 7.393, 7.3919, 7.3906, 7.3895, 7.3885, 7.387, 7.3859, 7.3847, 7.3832, 7.382, 7.3806, 7.3793, 7.3783, 7.3777, 7.3852, 7.3884, 7.3952, 7.3989, 7.4049, 7.4045, 7.4032, 7.4028, 7.4023, 7.4008, 7.3996, 7.4034, 7.4024, 7.4009, 7.3995, 7.4064, 7.4092, 7.4114, 7.4105, 7.4092, 7.4077, 7.41, 7.4088, 7.4075, 7.4068, 7.406, 7.4053, 7.4081, 7.4067, 7.4052, 7.4038, 7.4066, 7.4091, 7.4077, 7.4064, 7.4053, 7.4048, 7.4035, 7.4058, 7.4046, 7.4031, 7.4017, 7.4005, 7.399, 7.3975, 7.396, 7.3954, 7.3949, 7.3936, 7.3934, 7.3923, 7.3915, 7.3901, 7.3888, 7.3875, 7.386, 7.3887, 7.3876, 7.3865, 7.385, 7.3838, 7.3837, 7.3823, 7.3819, 7.3817, 7.3812, 7.38, 7.3788, 7.3778, 7.3802, 7.3791, 7.3777, 7.3802, 7.3826, 7.3817, 7.3805, 7.383, 7.3854, 7.3854, 7.3842, 7.3828, 7.382, 7.3808, 7.3831, 7.3821, 7.3814, 7.3808, 7.3802, 7.3803, 7.379, 7.3782, 7.377, 7.3761, 7.3755, 7.3754, 7.3754, 7.374, 7.3733, 7.3724, 7.371, 7.3699, 7.3689, 7.3684, 7.3681, 7.3678, 7.3708, 7.3789, 7.3777, 7.3732, 7.3735, 7.3759, 7.3752, 7.374, 7.3735, 7.3722, 7.3713, 7.3707, 7.3698, 7.3695, 7.369, 7.3676, 7.3666, 7.3657, 7.3643, 7.3635, 7.3623, 7.3647, 7.3634, 7.362, 7.3644, 7.3703, 7.3693, 7.3681, 7.3668, 7.3659, 7.3655, 7.3679, 7.3676, 7.3669, 7.366, 7.3648, 7.3644, 7.3641, 7.3637, 7.3628, 7.362, 7.3651, 7.3682, 7.3711, 7.3669, 7.3659, 7.3648, 7.3683, 7.3673, 7.3668, 7.3657, 7.3646, 7.3632, 7.3659, 7.3655, 7.3681, 7.3672, 7.3666, 7.3722, 7.375, 7.3747, 7.3733, 7.3719, 7.3709, 7.3701, 7.3697, 7.3684, 7.3674, 7.3736, 7.3728, 7.3717, 7.3715, 7.3707, 7.3698, 7.3663, 7.3689, 7.3687, 7.3681, 7.3674, 7.3665, 7.3653, 7.3646, 7.3633, 7.362, 7.3611, 7.3608, 7.3607, 7.3608, 7.3603, 7.3596, 7.3584, 7.358, 7.3568, 7.3566, 7.3566, 7.3559, 7.3551, 7.354, 7.3569, 7.3652, 7.3639, 7.3632, 7.3619, 7.3608, 7.3601, 7.3588, 7.3582, 7.3576, 7.36, 7.3593, 7.3581, 7.3571, 7.356, 7.3588, 7.3575, 7.3629, 7.3656, 7.3645, 7.3637, 7.3625, 7.3614, 7.3601, 7.3589, 7.3577, 7.3605, 7.3599, 7.3623, 7.3623, 7.3629, 7.3651, 7.3639, 7.366, 7.3682, 7.3673, 7.3662, 7.366, 7.3648, 7.3642, 7.3665, 7.3687, 7.3675, 7.3666, 7.3656, 7.3645, 7.3674, 7.3663, 7.3651, 7.3642, 7.3631, 7.3619, 7.3613, 7.3602, 7.3596, 7.3619, 7.3641, 7.3637, 7.3657, 7.3653, 7.3641, 7.3632, 7.3623, 7.361, 7.3608, 7.3596, 7.3589, 7.3577, 7.3565, 7.3588, 7.361, 7.3597, 7.3595, 7.3619, 7.3616, 7.3607, 7.3598, 7.3589, 7.3547, 7.3537, 7.3525, 7.3592, 7.3588, 7.3576, 7.3597, 7.3585, 7.3573, 7.3562, 7.3556, 7.3576, 7.3564, 7.3554, 7.3544, 7.3531, 7.3522, 7.3511, 7.3504, 7.3493, 7.3481, 7.3469, 7.346, 7.3451, 7.3442, 7.3431, 7.3452, 7.3443, 7.3442, 7.3411, 7.3399, 7.3388, 7.3382, 7.3371, 7.338100000000001, 7.3436, 7.3424, 7.3415, 7.3405, 7.3394, 7.3418, 7.3407, 7.3397, 7.3395, 7.3387, 7.3385, 7.3406, 7.3394, 7.3382, 7.3375, 7.3368, 7.3361, 7.3383, 7.3372, 7.3363, 7.3351, 7.3339, 7.336, 7.3349, 7.3338, 7.3327, 7.3348, 7.3336, 7.3354, 7.3375, 7.3366, 7.3357, 7.3346, 7.3337, 7.3326, 7.3316, 7.3314, 7.3337, 7.3326, 7.3346, 7.3335, 7.3323, 7.3341, 7.3363, 7.3351, 7.3343, 7.3365, 7.336, 7.3349, 7.334, 7.3331, 7.3319, 7.3315, 7.3304, 7.3299, 7.3297, 7.3286, 7.3278, 7.33, 7.3292, 7.3282, 7.3272, 7.3368, 7.3388, 7.3408, 7.3396, 7.3388, 7.3408, 7.3371, 7.3368, 7.3389, 7.3387, 7.3377, 7.3366, 7.3356, 7.3346, 7.3467, 7.3511, 7.3501, 7.3491, 7.3458, 7.3481, 7.3483, 7.3508, 7.353, 7.3524, 7.3515, 7.3506, 7.35, 7.354, 7.3531, 7.3519, 7.3509, 7.3501, 7.349, 7.348, 7.3475, 7.3466, 7.3461, 7.3482, 7.3477, 7.3466, 7.346, 7.3464, 7.3454, 7.3444, 7.3464, 7.3485, 7.3481, 7.3471, 7.3464, 7.346, 7.3484, 7.348, 7.35, 7.3521, 7.3509, 7.3534, 7.3535, 7.3557, 7.3552, 7.3541, 7.3536, 7.3527, 7.3516, 7.3504, 7.3498, 7.3491, 7.3481, 7.3474, 7.3466, 7.3468, 7.349, 7.348, 7.3472, 7.3438, 7.343, 7.3508, 7.3498, 7.3491, 7.3511, 7.3504, 7.3495, 7.3517, 7.3529, 7.352, 7.3517, 7.3545, 7.3539, 7.353, 7.3523, 7.354, 7.3534, 7.3594, 7.3615, 7.3606, 7.3598, 7.3592, 7.3614, 7.3608, 7.3603, 7.3591, 7.3583, 7.3586, 7.3577, 7.3598, 7.3593, 7.3591, 7.3586, 7.3581, 7.3572, 7.3563, 7.3553, 7.3603, 7.3628, 7.3618, 7.3591, 7.3584, 7.3601, 7.3592, 7.3667, 7.3687, 7.3679, 7.3669, 7.3659, 7.3677, 7.367, 7.3664, 7.3655, 7.3647, 7.3641, 7.3661, 7.3655, 7.3651, 7.3644, 7.3642, 7.3631, 7.3624, 7.3613, 7.3604, 7.3627, 7.362, 7.361, 7.36, 7.3603, 7.3595, 7.3615, 7.3607, 7.3596, 7.3615, 7.3608, 7.3628, 7.3626, 7.3617, 7.3608, 7.3599, 7.359, 7.3607, 7.3597, 7.359, 7.3585, 7.3605, 7.3595, 7.3587, 7.3583, 7.3573, 7.3564, 7.3555, 7.3558, 7.3548, 7.3538, 7.3529, 7.352, 7.351, 7.3505, 7.3502, 7.3505, 7.3499, 7.3491, 7.3481, 7.3477, 7.3499, 7.3496, 7.3528, 7.3519, 7.351, 7.3526, 7.352, 7.3517, 7.3507, 7.3501, 7.3492, 7.3529, 7.3523, 7.3514, 7.3507, 7.3502, 7.3595, 7.3586, 7.3582, 7.3572, 7.3569, 7.3586, 7.3583, 7.3579, 7.3574, 7.3593, 7.3613, 7.3602, 7.3598, 7.3588, 7.3579, 7.357, 7.3561, 7.355, 7.354, 7.353, 7.3524, 7.3514, 7.3558, 7.3527, 7.3518, 7.3536, 7.3527, 7.3518, 7.3508, 7.3501, 7.3494, 7.3486, 7.3476, 7.3495, 7.349, 7.3485, 7.3482, 7.3474, 7.3464, 7.3484, 7.3475, 7.3468, 7.3468, 7.3488, 7.348, 7.3501, 7.3491, 7.3485, 7.3508, 7.3503, 7.3493, 7.3484, 7.3482, 7.3472, 7.3477, 7.3472, 7.3491, 7.3507, 7.3499, 7.349, 7.3481, 7.347, 7.3462, 7.3454, 7.3445, 7.344, 7.3431, 7.3421, 7.3412, 7.3433, 7.3423, 7.3443, 7.3463, 7.3457, 7.3454, 7.3486, 7.3462, 7.3481, 7.3475, 7.347, 7.3462, 7.3481, 7.3479, 7.3497, 7.3489, 7.3479, 7.3497, 7.3514, 7.3504, 7.3494, 7.3485, 7.3504, 7.3501, 7.3492, 7.3484, 7.3502, 7.3492, 7.3487, 7.3483, 7.3527, 7.3527, 7.3518, 7.3512, 7.3505, 7.3496, 7.365, 7.3644, 7.3638, 7.363, 7.3621, 7.3645, 7.3685, 7.3675, 7.3719, 7.3709, 7.373, 7.3724, 7.3717, 7.3712, 7.3702, 7.3692, 7.3685, 7.3676, 7.3675, 7.3671, 7.3664, 7.3657, 7.3648, 7.3639, 7.3634, 7.3625, 7.3617, 7.3621, 7.3614, 7.361, 7.3627, 7.362, 7.3611, 7.3606, 7.3597, 7.3588, 7.3581, 7.3598, 7.3593, 7.3584, 7.3578, 7.3572, 7.3591, 7.3581, 7.3614, 7.3605, 7.3595, 7.3587, 7.3577, 7.357, 7.3563, 7.3561, 7.3553, 7.3544, 7.3566, 7.3567, 7.356, 7.3553, 7.3543, 7.354, 7.3533, 7.3529, 7.3521, 7.3513, 7.3503, 7.352, 7.3538, 7.3607, 7.3599, 7.3616, 7.3607, 7.3623, 7.3641, 7.3632, 7.3628, 7.3622, 7.359, 7.3589, 7.3582, 7.3572, 7.3563, 7.3556, 7.3552, 7.357, 7.3586, 7.3602, 7.365, 7.3642, 7.3641, 7.3654, 7.3644, 7.3638, 7.3629, 7.3625, 7.362, 7.3614, 7.3632, 7.3647, 7.3637, 7.3628, 7.362, 7.3639, 7.363, 7.362, 7.3636, 7.3627, 7.3619, 7.3666, 7.3657, 7.3649, 7.3641, 7.3635, 7.363, 7.363, 7.3624, 7.362, 7.3614, 7.3609, 7.3611, 7.3608, 7.3625, 7.3642, 7.3661, 7.3651, 7.3644, 7.3638, 7.363, 7.3625, 7.3618, 7.3609, 7.3602, 7.3596, 7.3592, 7.3608, 7.3602, 7.3619, 7.3611, 7.3602, 7.3596, 7.3612, 7.3609, 7.361, 7.3601, 7.3595, 7.3588, 7.3579, 7.3595, 7.3611, 7.3628, 7.3621, 7.3612, 7.3606, 7.3598, 7.3592, 7.3587, 7.3582, 7.3573, 7.3564, 7.3562, 7.3554, 7.3545, 7.3536, 7.3533, 7.3526, 7.3517, 7.3509, 7.348, 7.3471, 7.3462, 7.3503, 7.3495, 7.3487, 7.348, 7.3479, 7.3474, 7.3468, 7.3464, 7.3456, 7.3447, 7.3439, 7.3431, 7.3425, 7.3416, 7.3426, 7.3421, 7.3437, 7.3431, 7.3426, 7.3418, 7.3436, 7.3453, 7.3446, 7.3437, 7.3428, 7.3421, 7.3487, 7.3481, 7.3495, 7.3488, 7.3479, 7.3474, 7.3467, 7.3465, 7.3438, 7.3435, 7.3433, 7.3428, 7.3445, 7.3437, 7.3428, 7.3419, 7.3505, 7.3505, 7.3499, 7.3516, 7.3531, 7.3522, 7.3517, 7.3513, 7.3528, 7.3521, 7.3513, 7.3528, 7.3542, 7.3533, 7.3527, 7.3519, 7.351, 7.3525, 7.3521, 7.356, 7.3551, 7.3543, 7.3535, 7.3526, 7.3524, 7.3516, 7.3531, 7.3522, 7.352, 7.3497, 7.35, 7.3491, 7.3483, 7.351, 7.3505, 7.3498, 7.349, 7.3486, 7.3479, 7.3474, 7.349, 7.3483, 7.3475, 7.3469, 7.3468, 7.3464, 7.3479, 7.347, 7.3462, 7.3458, 7.3475, 7.3468, 7.3465, 7.3457, 7.3448, 7.3464, 7.3462, 7.3459, 7.3451, 7.3443, 7.3436, 7.3429, 7.3444, 7.3459, 7.3454, 7.3446, 7.3438, 7.3455, 7.3475, 7.3469, 7.3465, 7.3482, 7.3473, 7.3472, 7.3465, 7.3456, 7.3449, 7.344, 7.3431, 7.3423, 7.3417, 7.341, 7.3428, 7.3424, 7.3442, 7.3458, 7.3475, 7.3468, 7.3463, 7.3455, 7.3447, 7.3439, 7.3431, 7.3426, 7.3418, 7.3446, 7.3438, 7.3454, 7.3447, 7.3444, 7.3436, 7.3452, 7.3446, 7.3463, 7.3457, 7.3451, 7.3446, 7.344, 7.3455, 7.3451, 7.3445, 7.3463, 7.348, 7.3497, 7.3489, 7.3481, 7.3497, 7.3492, 7.3486, 7.3482, 7.3476, 7.3491, 7.3483, 7.3475, 7.3466, 7.3457, 7.3472, 7.3487, 7.3478, 7.3473, 7.3467, 7.3461, 7.3532, 7.3526, 7.352, 7.3512, 7.3504, 7.3518, 7.351, 7.3508, 7.3508, 7.3502, 7.3494, 7.3486, 7.3502, 7.3495, 7.3489, 7.3503, 7.3496, 7.349, 7.3506, 7.3499, 7.3494, 7.3491, 7.3484, 7.3482, 7.3473, 7.3468, 7.3481, 7.3473, 7.3466, 7.3458, 7.3453, 7.3446, 7.3441, 7.3451, 7.3446, 7.344, 7.3435, 7.3434, 7.3435, 7.3445, 7.3437, 7.3431, 7.3427, 7.3444, 7.3438, 7.343, 7.3404, 7.3396, 7.3397, 7.3388, 7.3383, 7.3375, 7.3367, 7.3363, 7.3381, 7.3395, 7.3394, 7.3409, 7.3401, 7.3395, 7.3387, 7.3401, 7.3415, 7.3406, 7.3402, 7.3394, 7.3386, 7.34, 7.3393, 7.3407, 7.3401, 7.3416, 7.3449, 7.3442, 7.3435, 7.3432, 7.3427, 7.3423, 7.3416, 7.3408, 7.3422, 7.3414, 7.3406, 7.34, 7.3416, 7.341, 7.3407, 7.3405, 7.34, 7.3401, 7.34, 7.3394, 7.3387, 7.3379, 7.3374, 7.3366, 7.3382, 7.3396, 7.3389, 7.3381, 7.3373, 7.3388, 7.3366, 7.3364, 7.3356, 7.3349, 7.3344, 7.3359, 7.3359, 7.3332, 7.332, 7.3294, 7.3288, 7.3282, 7.3274, 7.3282, 7.3277, 7.3273, 7.3265, 7.3257, 7.3255, 7.325, 7.3249, 7.3303, 7.3319, 7.3311, 7.3309, 7.3302, 7.3297, 7.329, 7.3284, 7.3276, 7.3373, 7.3367, 7.336, 7.3354, 7.339, 7.3365, 7.3357, 7.335, 7.3346, 7.3338, 7.3315, 7.3309, 7.3301, 7.3293, 7.3286, 7.328, 7.3278, 7.3292, 7.3286, 7.3303, 7.3298, 7.3291, 7.3285, 7.3261, 7.3254, 7.3248, 7.3254, 7.3264000000000005, 7.3301, 7.3311, 7.3305, 7.3301, 7.3315, 7.3329, 7.3342, 7.3354, 7.3354, 7.3374, 7.3389, 7.3382, 7.3379, 7.3371, 7.3364, 7.3358, 7.3352, 7.3351, 7.3346, 7.3343, 7.3335, 7.3329, 7.3322, 7.3315, 7.3312, 7.3326, 7.3318, 7.3311, 7.3304, 7.3304, 7.3314, 7.3308, 7.3318, 7.3332, 7.3345, 7.3358, 7.3357, 7.3367, 7.338, 7.3377, 7.337, 7.3365, 7.3358, 7.3353, 7.3346, 7.3343, 7.3335, 7.3331, 7.3323, 7.3337, 7.3334, 7.3326, 7.332, 7.3313, 7.3308, 7.3285, 7.3299, 7.3295, 7.3291, 7.3287, 7.3281, 7.3274, 7.3266, 7.3265, 7.3257, 7.3254, 7.3251, 7.3244, 7.324, 7.3253, 7.3267, 7.3279, 7.3278, 7.3272, 7.3285, 7.328, 7.3273, 7.3267, 7.3263, 7.3259, 7.3252, 7.3265, 7.3258, 7.3271, 7.3267, 7.3259, 7.3257, 7.3254, 7.3248, 7.3242, 7.3238, 7.3254, 7.3251, 7.3246, 7.3249, 7.325900000000001, 7.326900000000001, 7.3286, 7.33, 7.3295, 7.3287, 7.3304, 7.3297, 7.3311, 7.3305, 7.3301, 7.3297, 7.3291, 7.329, 7.3303, 7.3316, 7.3331, 7.3326, 7.3338, 7.3333, 7.3326, 7.3304, 7.3303, 7.3316, 7.3311, 7.3324, 7.3321, 7.3316, 7.3309, 7.3304, 7.3322, 7.3315, 7.3312, 7.3308, 7.3301, 7.3315, 7.3308, 7.3305, 7.33, 7.3293, 7.3289, 7.3282, 7.3275, 7.3289, 7.3287, 7.329700000000001, 7.3291, 7.3286, 7.328, 7.3275, 7.3268, 7.3265, 7.3262, 7.3256, 7.3268, 7.3264, 7.326, 7.3257, 7.3252, 7.3245, 7.324, 7.324, 7.3271, 7.3288, 7.3269, 7.3285, 7.3278, 7.3272, 7.3288, 7.3282, 7.3276, 7.3276, 7.327, 7.3263, 7.3299, 7.330900000000001, 7.331900000000001, 7.332, 7.3313, 7.3311, 7.3324, 7.3317, 7.3309, 7.3305, 7.3318, 7.3311, 7.3323, 7.3319, 7.3351, 7.3361, 7.336, 7.337000000000001, 7.337, 7.3365, 7.3359, 7.3351, 7.3345, 7.3356, 7.3349, 7.3348, 7.3342, 7.3336, 7.3337, 7.3332, 7.3345, 7.3357, 7.335, 7.3362, 7.3358, 7.3371, 7.3369, 7.3383, 7.3377, 7.3376, 7.3371, 7.3427, 7.342, 7.3413, 7.3406, 7.3419, 7.3433, 7.3434, 7.3429, 7.3424, 7.3431, 7.3432, 7.3429, 7.3425, 7.3421, 7.3474, 7.347, 7.3513, 7.3508, 7.3501, 7.351100000000001, 7.3504, 7.3499, 7.3493, 7.349, 7.3486, 7.3481, 7.3494, 7.3487, 7.3529, 7.3525, 7.3519, 7.3512, 7.3525, 7.3518, 7.3512, 7.3509, 7.3502, 7.3514, 7.351, 7.3503, 7.3496, 7.349, 7.3502, 7.3496, 7.3488, 7.3482, 7.3479, 7.3476, 7.3487, 7.3482, 7.3477, 7.3472, 7.3449, 7.3426, 7.3421, 7.3415, 7.3408, 7.3418, 7.3412, 7.3406, 7.3399, 7.3394, 7.3408, 7.3405, 7.3399, 7.3411, 7.3404, 7.34, 7.3396, 7.3394, 7.3388, 7.3386, 7.3379, 7.3373, 7.3367, 7.3362, 7.3356, 7.3352, 7.3345, 7.3339, 7.3332, 7.3327, 7.3321, 7.3298, 7.3291, 7.3284, 7.3296, 7.3291, 7.3284, 7.3282, 7.3373, 7.3367, 7.3381, 7.3377, 7.337, 7.3384, 7.3383, 7.3395, 7.3464, 7.3458, 7.3452, 7.3445, 7.3424, 7.3418, 7.3417, 7.3412, 7.3408, 7.3421, 7.3415, 7.3412, 7.3444, 7.3438, 7.3436, 7.3449, 7.3462, 7.3456, 7.3449, 7.3462, 7.3457, 7.3452, 7.3446, 7.3439, 7.3433, 7.343, 7.343, 7.3423, 7.342, 7.3432, 7.343, 7.3461, 7.3472, 7.3469, 7.3463, 7.3459, 7.3471, 7.3465, 7.3478, 7.348, 7.3475, 7.3488, 7.3487, 7.3482, 7.3478, 7.3505, 7.35, 7.3494, 7.349, 7.3528, 7.3523, 7.3524, 7.3541, 7.3572, 7.3606, 7.3585, 7.3564, 7.354, 7.3536, 7.353, 7.3588, 7.3585, 7.3596, 7.359, 7.3583, 7.3577, 7.3571, 7.3585, 7.3596, 7.3607, 7.3588, 7.3601, 7.3614, 7.3612, 7.3607, 7.3623, 7.3617, 7.3615, 7.3648, 7.3626, 7.3679, 7.3673, 7.367, 7.3647, 7.3654, 7.3663, 7.3679, 7.3694, 7.3688, 7.3686, 7.368, 7.3674, 7.3669, 7.3662, 7.3657, 7.3668, 7.3662, 7.3656, 7.3651, 7.3647, 7.3644, 7.3658, 7.3652, 7.3646, 7.366, 7.3653, 7.3646, 7.3642, 7.3637, 7.3632, 7.3645, 7.3639, 7.3651, 7.3649, 7.3645, 7.3639, 7.3638, 7.3632, 7.3629, 7.3623, 7.3636, 7.3634, 7.3628, 7.3622, 7.3616, 7.3611, 7.3607, 7.3602, 7.3595, 7.3589, 7.3583, 7.3577, 7.3571, 7.3566, 7.3559, 7.3557, 7.3552, 7.3564, 7.3559, 7.3554, 7.3551, 7.3547, 7.3544, 7.3538, 7.3533, 7.353, 7.3527, 7.3523, 7.3518, 7.3512, 7.3517, 7.3535, 7.3533, 7.3526, 7.352, 7.3514, 7.3528, 7.3541, 7.3542, 7.3538, 7.3533, 7.3529, 7.3525, 7.352, 7.3531, 7.3527, 7.3526, 7.352, 7.3532, 7.3526, 7.3538, 7.355, 7.3561, 7.3595, 7.3644, 7.3638, 7.3637, 7.3635, 7.3631, 7.3642, 7.3639, 7.3633, 7.3611, 7.3607, 7.3601, 7.3616, 7.3612, 7.3607, 7.3603, 7.36, 7.3594, 7.3588, 7.3582, 7.3578, 7.3578, 7.3572, 7.3569, 7.3579, 7.3593, 7.3605, 7.3602, 7.3596, 7.3592, 7.3604, 7.3598, 7.363, 7.3625, 7.3624, 7.3619, 7.3616, 7.3627, 7.3624, 7.3618, 7.3617, 7.3612, 7.3611, 7.3605, 7.3599, 7.3595, 7.3589, 7.3583, 7.3577, 7.3571, 7.3566, 7.356, 7.3555, 7.3549, 7.3545, 7.3556, 7.3553, 7.3548, 7.3561, 7.3556, 7.3567, 7.3561, 7.3555, 7.3549, 7.3543, 7.3549, 7.3543, 7.3539, 7.3535, 7.3531, 7.3542, 7.3537, 7.3566, 7.3579, 7.3572, 7.3566, 7.3594, 7.3587, 7.3581, 7.3575, 7.3572, 7.3566, 7.3565, 7.3563, 7.3575, 7.3573, 7.3566, 7.3584, 7.3621, 7.3615, 7.3609, 7.3623, 7.3617, 7.3613, 7.361, 7.3607, 7.36, 7.3579, 7.3576, 7.3569, 7.3562, 7.3574, 7.3569, 7.3584, 7.3581, 7.3595, 7.3592, 7.3604, 7.3604, 7.3599, 7.3594, 7.3592, 7.3592, 7.3589, 7.3583, 7.3579, 7.3559, 7.3555, 7.3556, 7.3551, 7.3579, 7.3593, 7.3587, 7.3581, 7.3576, 7.3587, 7.3582, 7.3581, 7.3575, 7.3603, 7.3602, 7.3596, 7.3591, 7.3601, 7.3596, 7.361, 7.3607, 7.362, 7.362, 7.3613, 7.3642, 7.3636, 7.3648, 7.366, 7.3673, 7.3668, 7.3649, 7.3649, 7.3642, 7.364, 7.3651, 7.3645, 7.364, 7.3637, 7.3634, 7.3629, 7.3624, 7.3636, 7.3648, 7.3642, 7.364, 7.3653, 7.3651, 7.365, 7.3644, 7.3641, 7.3635, 7.3629, 7.3625, 7.3622, 7.3616, 7.361, 7.3604, 7.3615, 7.361, 7.3604, 7.36, 7.3594, 7.3592, 7.3602, 7.3596, 7.3594, 7.359, 7.3584, 7.3584, 7.3578, 7.3572, 7.357, 7.355, 7.3545, 7.3542, 7.3538, 7.3549, 7.3544, 7.3539, 7.3534, 7.3527, 7.3538, 7.3518, 7.3514, 7.3508, 7.3502, 7.3498, 7.3493, 7.3504, 7.3498, 7.3493, 7.3492, 7.3487, 7.3481, 7.3492, 7.3486, 7.3496, 7.3478, 7.346, 7.3453, 7.3463, 7.3457, 7.3452, 7.3462, 7.3442, 7.3421, 7.3415, 7.3409, 7.3403, 7.3417, 7.3411, 7.3408, 7.3404, 7.3399, 7.3396, 7.339, 7.3398, 7.3396, 7.3407, 7.3404, 7.3417, 7.3412, 7.3407, 7.3401, 7.3395, 7.3392, 7.3386, 7.3382, 7.3378, 7.3374, 7.3355, 7.3369, 7.3364, 7.3359, 7.3358, 7.3357, 7.337, 7.3383, 7.3395, 7.3394, 7.339, 7.3388, 7.3401, 7.3413, 7.3411, 7.3456, 7.3453, 7.3449, 7.3451, 7.3466, 7.3467, 7.3464, 7.3461, 7.3456, 7.3453, 7.3448, 7.3442, 7.3436, 7.343, 7.3442, 7.3424, 7.3423, 7.3419, 7.3416, 7.3452, 7.3448, 7.3427, 7.3517, 7.3511, 7.3506, 7.3517, 7.3528, 7.3524, 7.3534, 7.3534, 7.3528, 7.3525, 7.3522, 7.3521, 7.3518, 7.3512, 7.3507, 7.3518, 7.3512, 7.351, 7.3505, 7.3499, 7.3493, 7.3504, 7.3498, 7.3495, 7.3491, 7.3485, 7.3482, 7.3494, 7.349, 7.3487, 7.3498, 7.3516, 7.3527, 7.3521, 7.3532, 7.3544, 7.3557, 7.3552, 7.3599, 7.3594, 7.3589, 7.3584, 7.3595, 7.3592, 7.3589, 7.3587, 7.3585, 7.3581, 7.3577, 7.3575, 7.3571, 7.3565, 7.3559, 7.3557, 7.3553, 7.3547, 7.3528, 7.3509, 7.3508, 7.3519, 7.3514, 7.351, 7.352, 7.3534, 7.3602, 7.3598, 7.3593, 7.3587, 7.3582, 7.3576, 7.359, 7.3588, 7.3582, 7.3595, 7.3608, 7.3604, 7.3615, 7.3644, 7.3644, 7.3639, 7.3658, 7.3671, 7.3667, 7.374, 7.375, 7.3787, 7.3782, 7.3777, 7.379, 7.3786, 7.3783, 7.3778, 7.3772, 7.3783, 7.3793, 7.3787, 7.3797, 7.3801, 7.3812, 7.3839, 7.3834, 7.3814, 7.3809, 7.3811, 7.3808, 7.3803, 7.3802, 7.3816, 7.3811, 7.3821, 7.3815, 7.3809, 7.382, 7.3815, 7.3809, 7.3806, 7.3805, 7.3788, 7.3786, 7.3798, 7.3792, 7.3786, 7.3785, 7.3782, 7.3778, 7.3773, 7.377, 7.3765, 7.3761, 7.3758, 7.3755, 7.3753, 7.3767, 7.3765, 7.3761, 7.3755, 7.3767, 7.3762, 7.3758, 7.377, 7.3767, 7.3776, 7.3786, 7.3782, 7.3778, 7.3778, 7.3775, 7.3769, 7.3763, 7.3758, 7.3779, 7.3776, 7.3774, 7.3768, 7.3762, 7.3759, 7.3754, 7.3753, 7.3736, 7.3718, 7.3713, 7.3708, 7.3705, 7.3715, 7.3715, 7.3712, 7.3707, 7.3703, 7.37, 7.3696, 7.3691, 7.3687, 7.3681, 7.3691, 7.3687, 7.3683, 7.3677, 7.3674, 7.3668, 7.3663, 7.3658, 7.3654, 7.3666, 7.3647, 7.3642, 7.364, 7.3637, 7.3633, 7.3628, 7.3624, 7.3621, 7.3616, 7.361, 7.3636, 7.3634, 7.3629, 7.3624, 7.3619, 7.3615, 7.3613, 7.3608, 7.3617, 7.3612, 7.3609, 7.3607, 7.3605, 7.3602, 7.3612, 7.3623, 7.3618, 7.3616, 7.3627, 7.3639, 7.3649, 7.366, 7.3658, 7.3652, 7.3664, 7.3662, 7.3659, 7.367, 7.368, 7.3679, 7.3677, 7.3692, 7.369, 7.3685, 7.3682, 7.3663, 7.3645, 7.3641, 7.3638, 7.3635, 7.3633, 7.3628, 7.3622, 7.3618, 7.3615, 7.3625, 7.3621, 7.3615, 7.361, 7.3604, 7.3602, 7.3612, 7.3607, 7.3618, 7.3614, 7.3608, 7.3605, 7.3601, 7.3598, 7.3595, 7.3604, 7.36, 7.3613, 7.3598, 7.3592, 7.3586, 7.3582, 7.3612, 7.361, 7.3605, 7.3603, 7.3602, 7.36, 7.3611, 7.3607, 7.3605, 7.3604, 7.36, 7.3599, 7.3594, 7.3594, 7.3588, 7.3585, 7.3583, 7.358, 7.3562, 7.3545, 7.3539, 7.3536, 7.3531, 7.3528, 7.3524, 7.3519, 7.3529, 7.3526, 7.3522, 7.3517, 7.3512, 7.3508, 7.3503, 7.3498, 7.3508, 7.3503, 7.35, 7.3499, 7.3493, 7.3488, 7.3484, 7.3481, 7.3476, 7.3459, 7.3457, 7.3455, 7.3465, 7.346, 7.3454, 7.345, 7.3446, 7.3442, 7.3439, 7.3451, 7.3446, 7.3441, 7.3436, 7.3445, 7.3441, 7.3436, 7.3446, 7.3443, 7.3438, 7.3434, 7.3429, 7.3423, 7.3418, 7.3401, 7.3398, 7.3395, 7.3405, 7.3404, 7.3401, 7.3431, 7.3415, 7.3412, 7.3424, 7.3406, 7.3402, 7.3399, 7.3395, 7.3377, 7.3387, 7.3382, 7.3377, 7.3373, 7.337, 7.338, 7.3376, 7.3386, 7.3383, 7.3397, 7.3396, 7.3391, 7.3386, 7.3382, 7.3364, 7.3362, 7.3344, 7.3344, 7.3342, 7.3337, 7.3332, 7.3327, 7.3322, 7.3323, 7.3321, 7.3307, 7.3305, 7.3307, 7.3302, 7.3313, 7.3308, 7.3304, 7.3299, 7.3296, 7.3294, 7.3292, 7.3289, 7.3285, 7.328, 7.3276, 7.328600000000001, 7.3281, 7.3283, 7.3278, 7.3277, 7.3272, 7.3268, 7.3263, 7.3258, 7.3253, 7.3263, 7.3248, 7.3243, 7.3255, 7.3254, 7.3251, 7.3249, 7.3296, 7.3292, 7.3287, 7.3282, 7.3279, 7.3275, 7.3286, 7.3283, 7.328, 7.3277, 7.3273, 7.3268, 7.3263, 7.3262, 7.3257, 7.3267, 7.3283, 7.3303, 7.3299, 7.3294, 7.3289, 7.3284, 7.3283, 7.3281, 7.3277, 7.3287, 7.3283, 7.3279, 7.3275, 7.3273, 7.3295, 7.3291, 7.3301, 7.3313, 7.3338, 7.3332, 7.3342, 7.3351, 7.3333, 7.3327, 7.3326, 7.3322, 7.3332, 7.3327, 7.3322, 7.3317, 7.3314, 7.3309, 7.3304, 7.3299, 7.3297, 7.3293, 7.329, 7.3286, 7.3297, 7.3294, 7.3289, 7.3284, 7.3279, 7.3291, 7.3305, 7.3348, 7.3344, 7.3356, 7.3352, 7.335, 7.3392, 7.3388, 7.3385, 7.3395, 7.3394, 7.3394, 7.3394, 7.339, 7.3386, 7.3394, 7.3391, 7.3386, 7.3383, 7.3382, 7.3393, 7.3388, 7.3403, 7.3414, 7.341, 7.3407, 7.3403, 7.3399, 7.3408, 7.3404, 7.3413, 7.3408, 7.3403, 7.3398, 7.3394, 7.3405, 7.3404, 7.3404, 7.3413, 7.3423, 7.342, 7.343, 7.3427, 7.3429, 7.3424, 7.342, 7.3417, 7.3415, 7.3412, 7.3407, 7.3417, 7.343, 7.3427, 7.3459, 7.3454, 7.3453, 7.3449, 7.3448, 7.3446, 7.3444, 7.344, 7.3435, 7.343, 7.3428, 7.3426, 7.3435, 7.3431, 7.3427, 7.3425, 7.342, 7.3419, 7.3415, 7.3423, 7.3421, 7.3418, 7.3415, 7.3424, 7.3435, 7.343, 7.3428, 7.3425, 7.3421, 7.3416, 7.3428, 7.3424, 7.3436, 7.3434, 7.343, 7.3428, 7.3426, 7.3426, 7.3423, 7.3418, 7.3416, 7.3426, 7.3422, 7.3419, 7.3418, 7.3415, 7.3425, 7.342, 7.3417, 7.3426, 7.3423, 7.3419, 7.3429, 7.3425, 7.3422, 7.3417, 7.3414, 7.3409, 7.3408, 7.3404, 7.3401, 7.34, 7.3395, 7.3395, 7.339, 7.34, 7.341, 7.342, 7.343, 7.3425, 7.3435, 7.3432, 7.343, 7.3427, 7.3424, 7.3419, 7.3429, 7.344, 7.345, 7.3448, 7.3444, 7.3439, 7.3434, 7.3429, 7.3428, 7.3424, 7.3434, 7.3429, 7.3424, 7.342, 7.3416, 7.3413, 7.3408, 7.3403, 7.3398, 7.340800000000001, 7.3403, 7.34, 7.3403, 7.3445, 7.344, 7.3437, 7.3433, 7.3428, 7.343800000000001, 7.3435, 7.3432, 7.3427, 7.3423, 7.342, 7.3416, 7.3416, 7.3427, 7.3412, 7.3411, 7.3408, 7.3419, 7.3415, 7.3414, 7.341, 7.3408, 7.3405, 7.3401, 7.34, 7.3395, 7.3392, 7.3387, 7.3382, 7.338, 7.3375, 7.3385, 7.3382, 7.3377, 7.3386, 7.3383, 7.3378, 7.3376, 7.3372, 7.3404, 7.3399, 7.3396, 7.3394, 7.3389, 7.3384, 7.3393, 7.3388, 7.3384, 7.3379, 7.3376, 7.3386, 7.3384, 7.338, 7.3375, 7.337, 7.3382, 7.3378, 7.3388, 7.3384, 7.3393, 7.3388, 7.3383, 7.338, 7.3376, 7.3371, 7.3366, 7.3363, 7.3373, 7.3377, 7.3374, 7.3371, 7.3379, 7.3377, 7.339, 7.3391, 7.3388, 7.3397, 7.3395, 7.339, 7.3387, 7.3396, 7.3392, 7.3403, 7.3412, 7.3407, 7.3417, 7.3413, 7.3409, 7.3404, 7.3401, 7.3397, 7.3407, 7.3405, 7.3402, 7.3398, 7.3394, 7.339, 7.3387, 7.3382, 7.3379, 7.3376, 7.3373, 7.3371, 7.338, 7.3375, 7.3374, 7.337, 7.3384, 7.338, 7.3375, 7.337, 7.3379, 7.3389, 7.339, 7.3385, 7.3385, 7.3382, 7.338, 7.339, 7.3386, 7.3396, 7.3391, 7.3402, 7.3397, 7.3392, 7.3391, 7.34, 7.3395, 7.339, 7.34, 7.3409, 7.3405, 7.34, 7.3397, 7.3407, 7.3408, 7.3404, 7.3401, 7.3397, 7.3421, 7.3426, 7.3425, 7.3421, 7.343, 7.3428, 7.3425, 7.3422, 7.3424, 7.342, 7.3416, 7.3413, 7.342300000000001, 7.342, 7.3417, 7.3412, 7.3421, 7.3461, 7.3458, 7.3454, 7.3449, 7.3446, 7.3442, 7.3426, 7.341, 7.3405, 7.3402, 7.3399, 7.3396, 7.3393, 7.3389, 7.3384, 7.3395, 7.3378, 7.3375, 7.337, 7.338, 7.3377, 7.3376, 7.3371, 7.3366, 7.3376, 7.3379, 7.3376, 7.3385, 7.3382, 7.3378, 7.3387, 7.3385, 7.3394, 7.3389, 7.3385, 7.3381, 7.3377, 7.3402, 7.3398, 7.3395, 7.3394, 7.3394, 7.3404, 7.3413, 7.3423, 7.3421, 7.3419, 7.3415, 7.3411, 7.3422, 7.3419, 7.3415, 7.3414, 7.3413, 7.3415, 7.3414, 7.3411, 7.3409, 7.3418, 7.3415, 7.3413, 7.3409, 7.3404, 7.3401, 7.3397, 7.3392, 7.3402, 7.3398, 7.3393, 7.339, 7.3386, 7.3382, 7.3378, 7.3378, 7.3373, 7.3369, 7.3365, 7.3373, 7.3372, 7.337, 7.3379, 7.3374, 7.3372, 7.3367, 7.3366, 7.3362, 7.3371, 7.3381, 7.3377, 7.3373, 7.3383, 7.3379, 7.3375, 7.3384, 7.338, 7.3377, 7.3372, 7.3367, 7.3364, 7.336, 7.3355, 7.3352, 7.335, 7.3349, 7.3345, 7.334, 7.3335, 7.3333, 7.3329, 7.3328, 7.3326, 7.3321, 7.3319, 7.3328, 7.3323, 7.332, 7.3316, 7.3313, 7.3321, 7.3329, 7.3327, 7.3325, 7.332, 7.3329, 7.3324, 7.3319, 7.3315, 7.3311, 7.3308, 7.3306, 7.3302, 7.3312, 7.3307, 7.3302, 7.3313, 7.3308, 7.3305, 7.329, 7.3287, 7.3296, 7.3294, 7.3292, 7.3291, 7.3287, 7.3284, 7.3279, 7.3289, 7.3299, 7.3297, 7.3296, 7.3292, 7.3287, 7.3284, 7.3281, 7.328, 7.3275, 7.327, 7.3266, 7.3265, 7.3274, 7.3272, 7.3267, 7.3266, 7.3263, 7.3259, 7.3255, 7.3254, 7.325, 7.3248, 7.3243, 7.324, 7.3238, 7.3233, 7.3229, 7.324, 7.3252, 7.3249, 7.3247, 7.3243, 7.324, 7.3238, 7.3234, 7.323, 7.3225, 7.3221, 7.3218, 7.3228, 7.3224, 7.3235, 7.3231, 7.324, 7.325, 7.3247, 7.3243, 7.3241, 7.3238, 7.3247, 7.3255, 7.325, 7.3247, 7.3256, 7.3253, 7.325, 7.3248, 7.326, 7.3271, 7.328, 7.3278, 7.3278, 7.3287, 7.3286, 7.3281, 7.3289, 7.3284, 7.3284, 7.3281, 7.3267, 7.3264, 7.3274, 7.3272, 7.3268, 7.3263, 7.325, 7.3247, 7.3243, 7.3251, 7.3247, 7.3247, 7.3242, 7.3239, 7.3236, 7.3233, 7.3229, 7.3224, 7.322, 7.3229, 7.3225, 7.3221, 7.323, 7.3233, 7.323, 7.3227, 7.3235, 7.3274, 7.3271, 7.328, 7.3277, 7.3262, 7.3258, 7.3266, 7.3262, 7.3259, 7.3254, 7.325, 7.3259, 7.3256, 7.3253, 7.326300000000001, 7.3286, 7.3282, 7.3279, 7.3274, 7.3272, 7.328, 7.3276, 7.3273, 7.3259, 7.3256, 7.3256, 7.3254, 7.3249, 7.3247, 7.3243, 7.3238, 7.326, 7.3246, 7.3232, 7.3241, 7.3251, 7.3247, 7.3244, 7.3242, 7.3238, 7.3234, 7.3231, 7.3241, 7.3237, 7.3245, 7.3242, 7.3242, 7.324, 7.3238, 7.3247, 7.3243, 7.3239, 7.3235, 7.3234, 7.323, 7.3216, 7.3214, 7.3209, 7.3208, 7.3204, 7.32, 7.321, 7.3219, 7.3217, 7.3213, 7.321, 7.3206, 7.3202, 7.3199, 7.3215, 7.3212, 7.3219, 7.3229, 7.3236, 7.3232, 7.3229, 7.3226, 7.3233, 7.323, 7.3227, 7.3224, 7.3233, 7.3218, 7.3214, 7.3201, 7.3198, 7.3194, 7.3191, 7.3187, 7.3196, 7.3205, 7.3213, 7.321, 7.322, 7.3229, 7.3238, 7.3233, 7.3219, 7.3215, 7.321, 7.3219, 7.3215, 7.3223, 7.3221, 7.3218, 7.3215, 7.3213, 7.3213, 7.321, 7.3208, 7.3195, 7.3194, 7.3192, 7.32, 7.3209, 7.3207, 7.3205, 7.3202, 7.3212, 7.3223, 7.322, 7.3215, 7.3211, 7.3207, 7.3204, 7.32, 7.3198, 7.3195, 7.3192, 7.3188, 7.3184, 7.3169, 7.3153, 7.3162, 7.3161, 7.317, 7.3169, 7.3166, 7.3153, 7.3153, 7.3175, 7.3183, 7.3179, 7.3178, 7.3186, 7.3196, 7.3193, 7.3191, 7.3191, 7.3191, 7.3187, 7.3186, 7.3184, 7.318, 7.3176, 7.3172, 7.3168, 7.3177, 7.3176, 7.3175, 7.3173, 7.3172, 7.3168, 7.3167, 7.3175, 7.3183, 7.318, 7.3176, 7.3174, 7.317, 7.3179, 7.3177, 7.3173, 7.3169, 7.3168, 7.3178, 7.3177, 7.3163, 7.3159, 7.3155, 7.3164, 7.3161, 7.3147, 7.3133, 7.3119, 7.3115, 7.3124, 7.312, 7.3117, 7.3113, 7.3123, 7.3119, 7.3119, 7.3115, 7.3114, 7.3123, 7.3121, 7.3117, 7.3104, 7.3101, 7.3097, 7.3098, 7.3097, 7.3094, 7.3117, 7.3113, 7.3099, 7.3096, 7.3093, 7.3102, 7.3099, 7.3097, 7.3106, 7.3107, 7.3116, 7.3114, 7.3124, 7.3121, 7.3129, 7.3127, 7.3136, 7.3123, 7.312, 7.3128, 7.3126, 7.3124, 7.3122, 7.3119, 7.3106, 7.3101, 7.3098, 7.3107, 7.3105, 7.3103, 7.3099, 7.3095, 7.3103, 7.31, 7.3097, 7.3093, 7.3089, 7.3086, 7.3083, 7.3093, 7.3089, 7.31, 7.3098, 7.3094, 7.3091, 7.3087, 7.3098, 7.3107, 7.3123, 7.3119, 7.3126, 7.3124, 7.3122, 7.3118, 7.3128, 7.3137, 7.3146, 7.3143, 7.3139, 7.3138, 7.3136, 7.3133, 7.3129, 7.3126, 7.3127, 7.3123, 7.3134, 7.312, 7.3116, 7.3128, 7.3124, 7.3122, 7.3119, 7.3116, 7.3139, 7.3137, 7.3137, 7.3136, 7.3144, 7.3153, 7.3162, 7.3159, 7.3155, 7.3152, 7.316, 7.3157, 7.3153, 7.3163, 7.3173, 7.317, 7.318, 7.3177, 7.3194, 7.3193, 7.319, 7.318, 7.3181, 7.3189, 7.3189, 7.3198, 7.3208, 7.3205, 7.3204, 7.3201, 7.3201, 7.32, 7.3208, 7.3205, 7.3202, 7.32, 7.3197, 7.3193, 7.319, 7.3187, 7.3186, 7.3194, 7.3181, 7.3177, 7.3184, 7.3192, 7.3188, 7.3185, 7.3181, 7.3177, 7.3173, 7.3181, 7.3179, 7.3176, 7.3183, 7.3191, 7.3188, 7.3184, 7.318, 7.3189, 7.3187, 7.3184, 7.3193, 7.3201, 7.3209, 7.3206, 7.3202, 7.321, 7.321, 7.3206, 7.3214, 7.321, 7.3206, 7.3203, 7.32, 7.3208, 7.3206, 7.3202, 7.3187, 7.3195, 7.3202, 7.32, 7.3196, 7.3194, 7.319, 7.3186, 7.3182, 7.3183, 7.318, 7.3191, 7.3188, 7.3185, 7.3182, 7.3178, 7.3176, 7.3172, 7.3179, 7.3187, 7.3195, 7.3192, 7.3191, 7.3188, 7.3187, 7.3185, 7.3182, 7.318, 7.3178, 7.3188, 7.3187, 7.3185, 7.3183, 7.3179, 7.3176, 7.3172, 7.3168, 7.3167, 7.3174, 7.3173, 7.317, 7.3168, 7.3166, 7.3173, 7.3171, 7.3157, 7.3154, 7.3161, 7.3161, 7.3157, 7.3153, 7.3167, 7.3163, 7.3162, 7.3158, 7.3154, 7.315, 7.3147, 7.3143, 7.314, 7.3138, 7.3134, 7.3139, 7.315, 7.3159, 7.3167, 7.3196, 7.3194, 7.3202, 7.3199, 7.3198, 7.3196, 7.3194, 7.3191, 7.3198, 7.3196, 7.3194, 7.3194, 7.3193, 7.319, 7.3233, 7.3231, 7.3229, 7.3227, 7.3227, 7.3224, 7.3232, 7.3229, 7.3226, 7.3233, 7.3229, 7.3227, 7.3236, 7.3232, 7.3231, 7.323, 7.3227, 7.3227, 7.3223, 7.3221, 7.322, 7.3218, 7.3215, 7.3212, 7.3209, 7.3208, 7.3205, 7.3202, 7.3209, 7.3206, 7.3203, 7.3214, 7.3211, 7.3232, 7.3248, 7.3258, 7.3255, 7.3252, 7.3248, 7.3247, 7.3243, 7.3239, 7.3246, 7.3243, 7.324, 7.3238, 7.3237, 7.3244, 7.324, 7.3247, 7.3255, 7.3251, 7.3259, 7.3255, 7.3263, 7.3271, 7.3268, 7.3266, 7.3266, 7.3274, 7.3328, 7.3326, 7.3335, 7.3332, 7.3328, 7.3326, 7.3345, 7.3344, 7.3342, 7.3339, 7.3336, 7.3333, 7.3331, 7.3317, 7.3314, 7.3311, 7.3307, 7.3316, 7.3313, 7.3313, 7.331, 7.331, 7.331, 7.3307, 7.3303, 7.329, 7.3288, 7.3285, 7.3281, 7.3279, 7.3275, 7.3273, 7.3281, 7.3277, 7.3273, 7.3269, 7.3276, 7.3283, 7.3279, 7.3286, 7.3283, 7.3291, 7.3289, 7.3292, 7.3292, 7.3288, 7.3286, 7.3321, 7.332, 7.3327, 7.3323, 7.3319, 7.3316, 7.3312, 7.3308, 7.3305, 7.3301, 7.3298, 7.3294, 7.329, 7.3286, 7.3285, 7.3281, 7.3278, 7.3275, 7.3272, 7.3269, 7.3277, 7.3285, 7.3282, 7.3279, 7.3287, 7.3287, 7.3286, 7.3283, 7.328, 7.3276, 7.3285, 7.3293, 7.3291, 7.329, 7.3298, 7.3296, 7.3303, 7.3303, 7.33, 7.3298, 7.3306, 7.3303, 7.33, 7.3297, 7.3294, 7.3302, 7.3298, 7.3296, 7.3292, 7.33, 7.3296, 7.3293, 7.3289, 7.3298, 7.3295, 7.3292, 7.3288, 7.3287, 7.3295, 7.3292, 7.3288, 7.3289, 7.3289, 7.3285, 7.3282, 7.3279, 7.3286, 7.3282, 7.3279, 7.3276, 7.3274, 7.327, 7.3267, 7.3274, 7.3261, 7.3262, 7.326, 7.3256, 7.3264, 7.3261, 7.3257, 7.3256, 7.3253, 7.3249, 7.3247, 7.3245, 7.3241, 7.3241, 7.3241, 7.3249, 7.3245, 7.3252, 7.3261, 7.3258, 7.3258, 7.3256, 7.3254, 7.3252, 7.3248, 7.3255, 7.3254, 7.3251, 7.326, 7.3257, 7.3254, 7.326, 7.3259, 7.3256, 7.3252, 7.3249, 7.325, 7.3247, 7.3245, 7.3244, 7.3241, 7.325, 7.3247, 7.3234, 7.3232, 7.3228, 7.3235, 7.3243, 7.324, 7.3249, 7.3246, 7.3255, 7.3253, 7.3307, 7.3296, 7.3304, 7.3305, 7.3312, 7.3308, 7.3305, 7.3301, 7.3297, 7.3293, 7.329, 7.3303, 7.3315, 7.3312, 7.3317, 7.3315, 7.3311, 7.3307, 7.3306, 7.3314, 7.3321, 7.3328, 7.3325, 7.3312, 7.3319, 7.3315, 7.3322, 7.3329, 7.3325, 7.3321, 7.3328, 7.3325, 7.3332, 7.3341, 7.334, 7.3338, 7.3334, 7.334, 7.3326, 7.3313, 7.332, 7.3367, 7.3365, 7.3361, 7.3359, 7.3358, 7.3356, 7.3352, 7.3359, 7.3357, 7.3353, 7.3349, 7.3349, 7.3345, 7.3343, 7.3349, 7.3345, 7.3352, 7.3349, 7.3346, 7.3342, 7.3339, 7.3335, 7.3322, 7.3318, 7.3314, 7.3311, 7.3308, 7.3304, 7.3303, 7.33, 7.3299, 7.3296, 7.3307, 7.3304, 7.3334, 7.3331, 7.3327, 7.3324, 7.3323, 7.3323, 7.3331, 7.3328, 7.3326, 7.3324, 7.3321, 7.333, 7.3327, 7.3325, 7.3313, 7.331, 7.331, 7.3307, 7.3303, 7.331, 7.3309, 7.3315, 7.3313, 7.3311, 7.3308, 7.3306, 7.3316, 7.3312, 7.3309, 7.3306, 7.3314, 7.3315, 7.3312, 7.3319, 7.3318, 7.3315, 7.3311, 7.3318, 7.3315, 7.3322, 7.3339, 7.3372, 7.3359, 7.3346, 7.3347, 7.3344, 7.334, 7.3359, 7.3359, 7.3355, 7.3353, 7.335, 7.3348, 7.3344, 7.3352, 7.335, 7.3349, 7.3346, 7.3344, 7.3341, 7.3338, 7.3335, 7.3333, 7.3329, 7.3325, 7.3334, 7.3332, 7.3367, 7.3375, 7.3372, 7.3369, 7.3366, 7.3363, 7.3359, 7.3357, 7.3354, 7.3354, 7.335, 7.3348, 7.3357, 7.3354, 7.3351, 7.3358, 7.3364, 7.3361, 7.3369, 7.3365, 7.3365, 7.3362, 7.3358, 7.3375, 7.3383, 7.3389, 7.3386, 7.3419, 7.3427, 7.3424, 7.3431, 7.3427, 7.3436, 7.3444, 7.3441, 7.3437, 7.3435, 7.3433, 7.3431, 7.3419, 7.3415, 7.3413, 7.341, 7.3407, 7.3406, 7.3413, 7.342, 7.3418, 7.3416, 7.3412, 7.3416, 7.3412, 7.3419, 7.3417, 7.3413, 7.3411, 7.3418, 7.3415, 7.3423, 7.3419, 7.3438, 7.3444, 7.344, 7.3438, 7.3434, 7.3431, 7.3428, 7.3425, 7.3421, 7.3419, 7.3416, 7.3417, 7.3414, 7.3422, 7.3429, 7.3435, 7.3443, 7.344, 7.3439, 7.3436, 7.3434, 7.3432, 7.3429, 7.3436, 7.3433, 7.343, 7.3427, 7.3425, 7.3431, 7.3428, 7.3434, 7.343, 7.3427, 7.3434, 7.3433, 7.3429, 7.3426, 7.3424, 7.3422, 7.3419, 7.342, 7.3417, 7.3404, 7.34, 7.3397, 7.3385, 7.3383, 7.3379, 7.3376, 7.3373, 7.3371, 7.3368, 7.3364, 7.3364, 7.336, 7.3358, 7.3354, 7.3354, 7.3351, 7.3349, 7.3345, 7.3341, 7.3351, 7.335, 7.3348, 7.3345, 7.3342, 7.3339, 7.3337, 7.3343, 7.334, 7.3336, 7.3333, 7.3331, 7.3338, 7.3335, 7.3333, 7.333, 7.333, 7.3328, 7.3326, 7.3322, 7.3329, 7.3325, 7.3333, 7.333, 7.3328, 7.3324, 7.3331, 7.3327, 7.3324, 7.3321, 7.3318, 7.3316, 7.3323, 7.332, 7.3328, 7.3326, 7.3323, 7.3321, 7.3317, 7.3314, 7.3321, 7.3319, 7.3347, 7.3364, 7.3361, 7.3357, 7.3353, 7.3351, 7.335, 7.3356, 7.3352, 7.3349, 7.3356, 7.3362, 7.335, 7.3346, 7.3342, 7.3341, 7.333, 7.3328, 7.3326, 7.3323, 7.3312, 7.331, 7.3307, 7.3314, 7.3312, 7.332, 7.3316, 7.3312, 7.3311, 7.3317, 7.3313, 7.3309, 7.3306, 7.3305, 7.3293, 7.3291, 7.3289, 7.3287, 7.3275, 7.3273, 7.3271, 7.327, 7.3268, 7.3264, 7.3261, 7.3258, 7.3254, 7.3279, 7.3284, 7.3281, 7.3278, 7.3276, 7.3274, 7.3271, 7.3279, 7.3276, 7.3264, 7.3264, 7.3263, 7.3283, 7.3282, 7.329, 7.3288, 7.3297, 7.3295, 7.3302, 7.33, 7.331, 7.3309, 7.3306, 7.3317, 7.3315, 7.3311, 7.331, 7.3312, 7.3308, 7.3306, 7.3304, 7.3292, 7.3281, 7.3279, 7.3277, 7.3285, 7.3282, 7.328, 7.3278, 7.3275, 7.3274, 7.327, 7.3267, 7.3264, 7.3263, 7.3271, 7.327, 7.3269, 7.3267, 7.3264, 7.3261, 7.3268, 7.3274, 7.3272, 7.3278, 7.3276, 7.3273, 7.328, 7.3287, 7.3285, 7.3282, 7.3279, 7.3267, 7.3274, 7.327, 7.3268, 7.3265, 7.3261, 7.3259, 7.3257, 7.3255, 7.3259, 7.3256, 7.3252, 7.325, 7.3246, 7.3242, 7.3239, 7.3236, 7.3234, 7.3232, 7.3228, 7.3235, 7.3231, 7.3229, 7.3219, 7.3217, 7.3214, 7.3233, 7.3243, 7.3253, 7.326300000000001, 7.3263, 7.3273, 7.3283000000000005, 7.329300000000001, 7.329, 7.3289, 7.3288, 7.3298, 7.3295, 7.3292, 7.329, 7.3287, 7.3284, 7.3284, 7.3291, 7.3299, 7.3297, 7.3294, 7.3292, 7.3289, 7.3297, 7.3305, 7.3302, 7.33, 7.3298, 7.3308, 7.3318, 7.3315, 7.3316, 7.3338, 7.3337, 7.3333, 7.3331, 7.3329, 7.3328, 7.3316, 7.3306, 7.3303, 7.3299, 7.3297, 7.3304, 7.33, 7.3297, 7.3296, 7.3302, 7.33, 7.329, 7.3297, 7.3296, 7.3294, 7.3301, 7.3308, 7.3314, 7.3311, 7.3308, 7.3314, 7.331, 7.3307, 7.3295, 7.3293, 7.329, 7.3287, 7.3283, 7.3281, 7.3278, 7.3275, 7.3273, 7.327, 7.3268, 7.3265, 7.3272, 7.3269, 7.3266, 7.3276, 7.3273, 7.3271, 7.3269, 7.3276, 7.3273, 7.3279, 7.3276, 7.3264, 7.3271, 7.3278, 7.3288, 7.3285, 7.3283, 7.3289, 7.3296, 7.3293, 7.329, 7.3288, 7.3286, 7.3283, 7.3281, 7.3279, 7.3285, 7.3283, 7.3281, 7.328, 7.3277, 7.3275, 7.3274, 7.3271, 7.3268, 7.3266, 7.3265, 7.3263, 7.3261, 7.3259, 7.3266, 7.3262, 7.325, 7.3247, 7.3244, 7.3241, 7.323, 7.323, 7.3227, 7.3224, 7.3222, 7.3219, 7.3217, 7.3215, 7.3211, 7.3212, 7.3209, 7.3207, 7.3214, 7.3213, 7.3211, 7.322100000000001, 7.322, 7.323, 7.3228, 7.3234, 7.324400000000001, 7.3242, 7.325200000000001, 7.3269, 7.3265, 7.3262, 7.326, 7.3257, 7.326700000000001, 7.3264, 7.326, 7.3258, 7.3255, 7.3252, 7.3249, 7.3248, 7.3245, 7.3243, 7.3241, 7.3238, 7.3235, 7.3242, 7.3239, 7.3238, 7.3247, 7.3243, 7.324, 7.3237, 7.3245, 7.3243, 7.3255, 7.3251, 7.3248, 7.3245, 7.3255, 7.3252, 7.3249, 7.3245, 7.3242, 7.3248, 7.3245, 7.325, 7.325, 7.3247, 7.3246, 7.3242, 7.3249, 7.3248, 7.3245, 7.3253, 7.3252, 7.325, 7.3246, 7.3248, 7.3257, 7.3264, 7.326, 7.327, 7.3267, 7.3264, 7.3271, 7.3278, 7.3284, 7.3281, 7.328, 7.329000000000001, 7.3287, 7.3287, 7.3287, 7.3288, 7.3296, 7.3301, 7.3289, 7.3287, 7.3284, 7.3291, 7.328, 7.3286, 7.3285, 7.3281, 7.3278, 7.3275, 7.3272, 7.3268, 7.3266, 7.3265, 7.3263, 7.3273, 7.3283000000000005, 7.329300000000001, 7.3291, 7.3289, 7.3288, 7.3286, 7.3283, 7.3281, 7.3279, 7.3286, 7.3292, 7.328, 7.333, 7.3329, 7.3335, 7.3332, 7.3329, 7.3328, 7.3336, 7.3325, 7.3322, 7.3322, 7.332, 7.3318, 7.3325, 7.3325, 7.3322, 7.3328, 7.334, 7.3338, 7.3334, 7.3331, 7.3337, 7.3335, 7.3333, 7.3341, 7.3348, 7.3345, 7.3363, 7.336, 7.3359, 7.3365, 7.3371, 7.337, 7.3368, 7.3364, 7.3361, 7.3358, 7.3355, 7.3352, 7.3359, 7.3356, 7.3363, 7.336, 7.3357, 7.3363, 7.3369, 7.3376, 7.3382, 7.338, 7.3386, 7.3383, 7.3382, 7.3379, 7.3375, 7.3372, 7.3378, 7.3384, 7.3381, 7.3378, 7.3375, 7.3373, 7.337, 7.3367, 7.3373, 7.338, 7.3386, 7.3383, 7.338, 7.3377, 7.3384, 7.3381, 7.3387, 7.3383, 7.338, 7.3379, 7.3377, 7.3374, 7.3372, 7.3369, 7.3375, 7.3372, 7.3371, 7.3365, 7.3362, 7.3369, 7.3368, 7.3366, 7.3363, 7.336, 7.3367, 7.3374, 7.3371, 7.337, 7.3376, 7.3374, 7.3371, 7.3361, 7.3357, 7.3363, 7.336, 7.3358, 7.3356, 7.3354, 7.3351, 7.3348, 7.3344, 7.3341, 7.3339, 7.3336, 7.3334, 7.3344000000000005, 7.3342, 7.334, 7.3337, 7.3335, 7.3332, 7.3329, 7.3325, 7.3322, 7.3328, 7.3326, 7.3317, 7.3314, 7.3318, 7.3314, 7.3311, 7.3308, 7.3306, 7.3303, 7.331, 7.3308, 7.3305, 7.3303, 7.3292, 7.329, 7.3297, 7.3295, 7.3302, 7.33, 7.3298, 7.3295, 7.3294, 7.3298, 7.3296, 7.3294, 7.3291, 7.3298, 7.3296, 7.3285, 7.3284, 7.3282, 7.3281, 7.3279, 7.3276, 7.3273, 7.3262, 7.3252, 7.3241, 7.3246, 7.3243, 7.324, 7.3237, 7.3235, 7.3233, 7.3241, 7.3238, 7.3237, 7.3236, 7.3243, 7.3253, 7.3262, 7.3268, 7.3267, 7.3279, 7.3277, 7.3282, 7.3288, 7.3296, 7.3302, 7.33, 7.3298, 7.3304, 7.3293, 7.329, 7.3279, 7.3276, 7.3273, 7.3272, 7.3273, 7.329, 7.3287, 7.3284, 7.3281, 7.3287, 7.3288, 7.3285, 7.3287, 7.3284, 7.329400000000001, 7.330400000000001, 7.3302, 7.3309, 7.3305, 7.3304, 7.3301, 7.3307, 7.3305, 7.3302, 7.33, 7.3298, 7.3296, 7.3295, 7.3292, 7.3299, 7.3296, 7.3295, 7.3292, 7.3291, 7.3289, 7.3287, 7.3284, 7.3282, 7.3281, 7.3278, 7.3275, 7.3273, 7.3272, 7.3269, 7.3267, 7.3272, 7.3278, 7.3276, 7.3273, 7.327, 7.3267, 7.3273, 7.3271, 7.3268, 7.3274, 7.328, 7.3277, 7.3283, 7.3289, 7.3286, 7.3293, 7.3292, 7.3291, 7.3287, 7.3293, 7.329, 7.3287, 7.3277, 7.3281, 7.3288, 7.3285, 7.3284, 7.3281, 7.3291, 7.329, 7.3297, 7.3295, 7.3294, 7.3301, 7.3298, 7.3305, 7.3308, 7.3308, 7.3343, 7.334, 7.3337, 7.3345, 7.3352, 7.3352, 7.3349, 7.3346, 7.3343, 7.3343, 7.3342, 7.3349, 7.3348, 7.3337, 7.3344, 7.335, 7.3349, 7.3347, 7.3344, 7.3351, 7.335, 7.3349, 7.3346, 7.3352, 7.3349, 7.3347, 7.3353, 7.3351, 7.3349, 7.3346, 7.3344, 7.335, 7.3347, 7.3346, 7.3345, 7.3352, 7.3359, 7.3358, 7.3356, 7.3362, 7.3359, 7.3356, 7.3353, 7.335, 7.3348, 7.3345, 7.3342, 7.3339, 7.3328, 7.3325, 7.3331, 7.3328, 7.3335, 7.3332, 7.3338, 7.3335, 7.3335, 7.3332, 7.3338, 7.3335, 7.3333, 7.3331, 7.3329, 7.3336, 7.3342, 7.3349, 7.3347, 7.3353, 7.335, 7.3348, 7.3337, 7.3326, 7.3325, 7.3323, 7.3321, 7.332, 7.3309, 7.3299, 7.3289, 7.3278, 7.3275, 7.3291, 7.3289, 7.3286, 7.3277, 7.3274, 7.3271, 7.3269, 7.326, 7.3257, 7.3264, 7.3261, 7.3263, 7.326, 7.3257, 7.3254, 7.3251, 7.3241, 7.3238, 7.3235, 7.324, 7.3246, 7.3252, 7.3251, 7.3248, 7.3246, 7.3244, 7.3243, 7.3241, 7.3238, 7.3245, 7.3254, 7.3253, 7.3258, 7.3266, 7.3263, 7.326, 7.3258, 7.3266, 7.3263, 7.3252, 7.3241, 7.324, 7.3238, 7.3235, 7.3232, 7.3232, 7.3229, 7.3239, 7.3249, 7.3246, 7.3243, 7.3241, 7.3239, 7.3237, 7.3234, 7.324, 7.3239, 7.3236, 7.3242, 7.3248, 7.3254, 7.3252, 7.3257, 7.3255, 7.3261, 7.3258, 7.3257, 7.3255, 7.3262, 7.3268, 7.3265, 7.3262, 7.326, 7.3266, 7.3264, 7.3263, 7.3262, 7.3259, 7.3259, 7.3266, 7.3263, 7.327, 7.3267, 7.3265, 7.3263, 7.3261, 7.3258, 7.3256, 7.3254, 7.3261, 7.3259, 7.3265, 7.3272, 7.3272, 7.3269, 7.3266, 7.3264, 7.327, 7.3269, 7.3259, 7.3256, 7.3253, 7.325, 7.3248, 7.3247, 7.3246, 7.3244, 7.325, 7.3248, 7.3246, 7.3252, 7.325, 7.3247, 7.3244, 7.3241, 7.3246, 7.3252, 7.3249, 7.3247, 7.3247, 7.3244, 7.3243, 7.3241, 7.324, 7.3246, 7.3243, 7.3252, 7.3259, 7.3265, 7.3281, 7.3278, 7.3275, 7.3273, 7.3271, 7.327, 7.3277, 7.3275, 7.3273, 7.3271, 7.326, 7.3261, 7.3259, 7.3257, 7.3256, 7.3255, 7.3253, 7.3266, 7.3265, 7.3273, 7.3273, 7.327, 7.3275, 7.3274, 7.3271, 7.3268, 7.3267, 7.3265, 7.3262, 7.3259, 7.3256, 7.3254, 7.3251, 7.3248, 7.3246, 7.3243, 7.3242, 7.3241, 7.3247, 7.3246, 7.3244, 7.3243, 7.324, 7.3239, 7.3239, 7.3246, 7.3237, 7.3247, 7.3246, 7.3244, 7.3243, 7.324, 7.3237, 7.3235, 7.3232, 7.3231, 7.3229, 7.3235, 7.3241, 7.3238, 7.3244, 7.3236, 7.3246, 7.3256000000000006, 7.326600000000001, 7.3264, 7.3263, 7.3262, 7.3261, 7.3259, 7.3256, 7.3253, 7.3255, 7.3254, 7.3252, 7.325, 7.3247, 7.3245, 7.3251, 7.3257, 7.326700000000001, 7.327700000000001, 7.3286, 7.3311, 7.3339, 7.3338, 7.3336, 7.3343, 7.3342, 7.3347, 7.3346, 7.3351, 7.3349, 7.3348, 7.3347, 7.3344, 7.3349, 7.3346, 7.3345, 7.3343, 7.334, 7.3337, 7.3343, 7.3349, 7.3347, 7.3344, 7.3342, 7.334, 7.3337, 7.3334, 7.3341, 7.3338, 7.3337, 7.3337, 7.3337, 7.3329, 7.3326, 7.3326, 7.3324, 7.3322, 7.332, 7.3317, 7.3331, 7.3337, 7.3343, 7.3342, 7.3341, 7.3338, 7.3336, 7.3344, 7.3342, 7.3357, 7.3364, 7.3361, 7.3367, 7.3366, 7.3364, 7.3361, 7.3359, 7.3365, 7.3363, 7.336, 7.3357, 7.3365, 7.3362, 7.3359, 7.3365, 7.3371, 7.3376, 7.3376, 7.3373, 7.3371, 7.3368, 7.3366, 7.3372, 7.3378, 7.3375, 7.3372, 7.3369, 7.3366, 7.3364, 7.337, 7.3368, 7.3366, 7.3364, 7.3361, 7.3368, 7.3396, 7.3393, 7.339, 7.3387, 7.3384, 7.3381, 7.3378, 7.3378, 7.3383, 7.338, 7.3378, 7.3376, 7.3374, 7.3373, 7.3379, 7.3385, 7.3384, 7.3381, 7.3378, 7.3375, 7.3373, 7.3372, 7.3377, 7.3376, 7.3382, 7.339, 7.3387, 7.3393, 7.3392, 7.339, 7.3388, 7.3397, 7.3394, 7.3392, 7.3399, 7.3396, 7.3395, 7.3394, 7.3391, 7.3407, 7.3413, 7.3412, 7.3414, 7.3411, 7.3408, 7.3405, 7.3403, 7.3427, 7.3434, 7.3432, 7.3447, 7.3445, 7.3443, 7.3441, 7.3438, 7.3436, 7.3433, 7.3431, 7.3445, 7.3452, 7.3476, 7.3475, 7.3473, 7.3471, 7.3468, 7.347, 7.3485, 7.3483, 7.3489, 7.3486, 7.3483, 7.3506, 7.3512, 7.3518, 7.3516, 7.3529, 7.3534, 7.3531, 7.3528, 7.3533, 7.3546, 7.3543, 7.3542, 7.3539, 7.3536, 7.3541, 7.3538, 7.3528, 7.3533, 7.3539, 7.3544, 7.3534, 7.3539, 7.3544, 7.3542, 7.3539, 7.3554, 7.3556, 7.3554, 7.3563, 7.3574, 7.3571, 7.3568, 7.3566, 7.359, 7.3587, 7.3592, 7.3598, 7.3613, 7.361, 7.3608, 7.3605, 7.3605, 7.3603, 7.361, 7.3612, 7.3617, 7.3623, 7.3628, 7.3625, 7.3622, 7.3634, 7.3635, 7.3642, 7.365, 7.3648, 7.3645, 7.3644, 7.3641, 7.3639, 7.3637, 7.3635, 7.3634, 7.364, 7.3639, 7.3636, 7.3643, 7.364, 7.3637, 7.3635, 7.3632, 7.3642, 7.364, 7.3638, 7.365, 7.3647, 7.3645, 7.3651, 7.3649, 7.3648, 7.3646, 7.3644, 7.3643, 7.364, 7.3637, 7.3635, 7.3633, 7.3631, 7.3629, 7.364, 7.3638, 7.3643, 7.3649, 7.3663, 7.3661, 7.366, 7.3668, 7.3676, 7.3674, 7.3674, 7.3671, 7.3668, 7.3698, 7.3695, 7.3693, 7.3699, 7.3712, 7.3709, 7.3714, 7.3719, 7.3716, 7.3714, 7.3711, 7.3717, 7.3722, 7.3719, 7.3716, 7.3713, 7.371, 7.3707, 7.3705, 7.3702, 7.3699, 7.3697, 7.3694, 7.3692, 7.369, 7.3695, 7.3692, 7.3697, 7.3703, 7.3701, 7.3699, 7.3696, 7.3694, 7.3691, 7.3688, 7.3694, 7.37, 7.3705, 7.3702, 7.3699, 7.3696, 7.3693, 7.3698, 7.3695, 7.3692, 7.3682, 7.368, 7.3678, 7.3675, 7.3674, 7.3671, 7.3669, 7.3667, 7.3666, 7.3663, 7.3669, 7.3676, 7.3674, 7.3671, 7.367, 7.3668, 7.3667, 7.3665, 7.3662, 7.366, 7.3657, 7.3654, 7.3652, 7.3651, 7.3648, 7.3653, 7.365, 7.3656, 7.3653, 7.3652, 7.3652, 7.3658, 7.3656, 7.3653, 7.365, 7.3647, 7.3645, 7.3642, 7.364, 7.3638, 7.3637, 7.3636, 7.3633, 7.3646, 7.3643, 7.364, 7.3645, 7.3642, 7.364, 7.3638, 7.3635, 7.3649, 7.3646, 7.3644, 7.3649, 7.3646, 7.3651, 7.3656, 7.3653, 7.3658, 7.3655, 7.3652, 7.3649, 7.3647, 7.3644, 7.3642, 7.3639, 7.3637, 7.3644, 7.3643, 7.3647, 7.3645, 7.3675, 7.3681, 7.3679, 7.3687, 7.3693, 7.3691, 7.3688, 7.3685, 7.3683, 7.3681, 7.3687, 7.3692, 7.3689, 7.3686, 7.3685, 7.3683, 7.3681, 7.3679, 7.3676, 7.3674, 7.3672, 7.3671, 7.3669, 7.3666, 7.3663, 7.3668, 7.3675, 7.3673, 7.367, 7.3669, 7.3667, 7.3673, 7.367, 7.3668, 7.3666, 7.3663, 7.366, 7.3657, 7.3663, 7.3669, 7.3666, 7.3664, 7.3661, 7.3659, 7.3664, 7.3669, 7.3667, 7.3666, 7.3664, 7.3661, 7.3658, 7.3657, 7.3656, 7.3653, 7.365, 7.3647, 7.3653, 7.3659, 7.3657, 7.3654, 7.3652, 7.3658, 7.3663, 7.3669, 7.3668, 7.3666, 7.3663, 7.366, 7.3658, 7.3658, 7.3656, 7.3654, 7.3652, 7.3649, 7.3646, 7.3643, 7.364, 7.3639, 7.3645, 7.3644, 7.3641, 7.364, 7.3638, 7.3635, 7.3633, 7.3639, 7.3637, 7.3634, 7.364, 7.3637, 7.3635, 7.3633, 7.363, 7.3629, 7.3634, 7.3631, 7.3628, 7.3634, 7.3632, 7.3639, 7.3636, 7.3633, 7.3631, 7.3629, 7.3634, 7.3633, 7.3638, 7.3637, 7.3643, 7.3633, 7.3631, 7.3629, 7.3626, 7.3632, 7.3629, 7.3629, 7.3626, 7.3623, 7.3622, 7.3619, 7.3625, 7.3622, 7.362, 7.3617, 7.3622, 7.362, 7.3617, 7.3614, 7.3611, 7.361, 7.3611, 7.3608, 7.3614, 7.362, 7.3626, 7.3631, 7.3629, 7.3634, 7.3631, 7.3629, 7.3626, 7.3623, 7.3628, 7.3633, 7.3638, 7.3635, 7.364, 7.3638, 7.3643, 7.364, 7.3637, 7.3642, 7.3639, 7.3636, 7.3641, 7.3641, 7.3638, 7.3637, 7.3634, 7.3631, 7.3629, 7.3628, 7.3625, 7.3623, 7.3632, 7.363, 7.3627, 7.3625, 7.3623, 7.3621, 7.3619, 7.3616, 7.3614, 7.3613, 7.3611, 7.361, 7.3608, 7.3606, 7.3604, 7.3602, 7.3601, 7.3599, 7.3598, 7.3595, 7.3592, 7.3612, 7.3611, 7.3616, 7.3614, 7.3627, 7.3625, 7.3623, 7.3621, 7.3616, 7.3614, 7.362, 7.3618, 7.3615, 7.3613, 7.3615, 7.3613, 7.3611, 7.3609, 7.3611, 7.3608, 7.3614, 7.3612, 7.3613, 7.3612, 7.361, 7.3609, 7.3606, 7.3612, 7.3609, 7.3606, 7.3604, 7.3609, 7.3606, 7.3616, 7.3614, 7.3611, 7.3609, 7.3607, 7.3605, 7.3611, 7.3608, 7.3605, 7.3602, 7.3601, 7.3599, 7.3597, 7.3597, 7.3594, 7.3591, 7.3588, 7.3594, 7.3593, 7.3591, 7.3589, 7.3587, 7.3584], '192.168.122.113': [6.5258, 6.3813, 6.0486, 6.1847, 6.1228, 6.0996, 6.085, 6.0842, 6.8934, 7.3242, 8.6848, 8.5281, 8.4066, 9.4824, 9.7957, 9.5451, 9.6502, 9.4383, 9.2264, 9.3215, 9.1382, 8.969, 9.062, 8.9376, 9.0416, 8.9406, 8.8447, 8.7301, 8.6387, 8.5354, 8.9698, 8.8689, 8.793, 9.0322, 8.9423, 8.8455, 8.7672, 8.6852, 8.6094, 8.5448, 8.4691, 8.3981, 8.3319, 8.2743, 8.2207, 8.1831, 8.1329, 8.0733, 8.0461, 7.9958, 7.9451, 8.0045, 7.9545, 7.9248, 7.8806, 7.8478, 7.8049, 7.7674, 7.7294, 7.791, 7.7695, 7.7303, 7.708, 7.6903, 7.7426, 7.7084, 7.695, 7.6753, 7.7347, 7.7794, 7.7488, 7.7307, 7.7108, 7.6814, 7.6569, 7.7031, 7.7462, 7.7166, 7.7172, 7.7096, 7.6892, 7.6622, 7.6484, 7.6224, 7.6005, 7.5827, 7.6239, 7.6119, 7.5991, 7.5826, 7.5661, 7.6043, 7.5809, 7.5592, 7.5369, 7.57, 7.5543, 7.533, 7.5114, 7.4911, 7.5247, 7.5084, 7.4945, 7.527, 7.5146, 7.5039, 7.5358, 7.5672, 7.5526, 7.5339, 7.5653, 7.5747, 7.5551, 7.5402, 7.5274, 7.5624, 7.5468, 7.5277, 7.5565, 7.5415, 7.5574, 7.7357, 7.7178, 7.7091, 7.6909, 7.6712, 7.697, 7.6894, 7.7142, 7.6971, 7.6786, 7.7032, 7.6853, 7.675, 7.6578, 7.6793, 7.7037, 7.6891, 7.6725, 7.6568, 7.6436, 7.6709, 7.6626, 7.6158, 7.6014, 7.5872, 7.5754, 7.5644, 7.5498, 7.5379, 7.5252, 7.512, 7.5332, 7.5199, 7.5063, 7.4933, 7.4823, 7.4702, 7.4564, 7.4487, 7.4371, 7.4249, 7.4123, 7.4048, 7.3953, 7.3862, 7.374, 7.3634, 7.3537, 7.3456, 7.3361, 7.3268, 7.3175, 7.37, 7.3627, 7.3821, 7.3724, 7.361, 7.3517, 7.3408, 7.3332, 7.3229, 7.3426, 7.3321, 7.3244, 7.3244, 7.3143, 7.3089, 7.3012, 7.3211, 7.3165, 7.337, 7.3351, 7.3273, 7.3187, 7.3114, 7.3086, 7.3034, 7.2953, 7.292, 7.2822, 7.2727, 7.2681, 7.2882, 7.2796, 7.2964, 7.2872, 7.3084, 7.3287, 7.3488, 7.3402, 7.3358, 7.3288, 7.3216, 7.3144, 7.3111, 7.3031, 7.297, 7.294, 7.2865, 7.2777, 7.296, 7.288, 7.2822, 7.2996, 7.3146, 7.3087, 7.3086, 7.3052, 7.3248, 7.3203, 7.3143, 7.3072, 7.3253, 7.3196, 7.3118, 7.3065, 7.2992, 7.3141, 7.3078, 7.3005, 7.2928, 7.2878, 7.2827, 7.2799, 7.2741, 7.2912, 7.3064, 7.299, 7.2964, 7.2961, 7.3108, 7.3064, 7.3234, 7.3421, 7.3351, 7.3504, 7.3652, 7.358, 7.3535, 7.3669, 7.3799, 7.3728, 7.3864, 7.3811, 7.3742, 7.3732, 7.3652, 7.3615, 7.3546, 7.3493, 7.3436, 7.3567, 7.3712, 7.3637, 7.3634, 7.3598, 7.3556, 7.3541, 7.3494, 7.3448, 7.3398, 7.3353, 7.3306, 7.3259, 7.3213, 7.3333, 7.3288, 7.3245, 7.3198, 7.3183, 7.3301, 7.3262, 7.3368, 7.3378000000000005, 7.3516, 7.3822, 7.3753, 7.3697, 7.3631, 7.3576, 7.3509, 7.3466, 7.3454, 7.3409, 7.3361, 7.3303, 7.3278, 7.3215, 7.3192, 7.332, 7.3259, 7.3213, 7.3228, 7.3199, 7.3176, 7.3129, 7.308, 7.3075, 7.3038, 7.3076, 7.3224, 7.3536, 7.3502, 7.345, 7.3613, 7.3567, 7.3557, 7.3586, 7.3574, 7.3535, 7.3342, 7.3294, 7.3411, 7.3372, 7.352, 7.3469, 7.342, 7.3228, 7.3181, 7.3157, 7.3111, 7.307, 7.3022, 7.2983, 7.2942, 7.3036, 7.2989, 7.2986, 7.2958, 7.2912, 7.2876, 7.2821, 7.2818, 7.2774, 7.2744, 7.2702, 7.2646, 7.2758, 7.2716, 7.2691, 7.2645, 7.2761, 7.273, 7.2857, 7.284, 7.2803, 7.2918, 7.2885, 7.3002, 7.2977, 7.2946, 7.2894, 7.2856, 7.282, 7.2647, 7.2762, 7.277200000000001, 7.278200000000001, 7.2739, 7.2703, 7.2669, 7.2644, 7.2727, 7.2681, 7.2628, 7.2618, 7.2603, 7.2551, 7.2507, 7.2463, 7.2437, 7.2411, 7.2363, 7.2335, 7.234500000000001, 7.235500000000001, 7.2307, 7.2262, 7.2227, 7.2325, 7.2276, 7.223, 7.2457, 7.2424, 7.2434, 7.2415, 7.2393, 7.2355, 7.2306, 7.228, 7.2235, 7.2333, 7.2288, 7.2298, 7.2308, 7.2408, 7.2493, 7.2476, 7.244, 7.2438, 7.2395, 7.2384, 7.2355, 7.2586, 7.2805, 7.2815, 7.2766, 7.2731, 7.2759, 7.2736, 7.27, 7.267, 7.2631, 7.2597, 7.2573, 7.2583, 7.2593000000000005, 7.260300000000001, 7.261300000000001, 7.2596, 7.2574, 7.2657, 7.2616, 7.2698, 7.2792, 7.2766, 7.2728, 7.2698, 7.2673, 7.2627, 7.2592, 7.2557, 7.2525, 7.2507, 7.2477, 7.2436, 7.2527, 7.2615, 7.2604, 7.2566, 7.2576, 7.2558, 7.2547, 7.2518, 7.2488, 7.2457, 7.2424, 7.2396, 7.2396, 7.2363, 7.2457, 7.2548, 7.2539, 7.2507, 7.2471, 7.2434, 7.242, 7.24, 7.2377, 7.2468, 7.2467, 7.2438, 7.2404, 7.2376, 7.2338, 7.2306, 7.2314, 7.2389, 7.2376, 7.2363, 7.2329, 7.2291, 7.2369, 7.2369, 7.2332, 7.2417, 7.2501, 7.2573, 7.2535, 7.2516, 7.259, 7.2562, 7.253, 7.2511, 7.2487, 7.2568, 7.2531, 7.2495, 7.2565, 7.2635, 7.2701, 7.277, 7.2845, 7.2817, 7.2989, 7.2951, 7.3021, 7.2984, 7.2951, 7.2961, 7.3037, 7.3137, 7.3216, 7.3195, 7.3157, 7.3384, 7.3356, 7.3331, 7.34, 7.3371, 7.3339, 7.3321, 7.3291, 7.3269, 7.3263, 7.3226, 7.3208, 7.328, 7.3246, 7.3232, 7.3296, 7.3258, 7.3339, 7.3348, 7.3311, 7.3299, 7.3272, 7.3246, 7.3323, 7.333, 7.3309, 7.3278, 7.3251, 7.3238, 7.3319, 7.3283, 7.3258, 7.3234, 7.3212, 7.3196, 7.3188, 7.3174, 7.3255, 7.3226, 7.3203, 7.3181, 7.3168, 7.3146, 7.3214, 7.3179, 7.315, 7.3207, 7.3221, 7.3203, 7.3169, 7.3138, 7.3115, 7.3086, 7.3084, 7.3061, 7.3077, 7.3046, 7.3022, 7.2995, 7.2963, 7.3025, 7.2995, 7.2977, 7.2966, 7.2953, 7.2944, 7.3007, 7.2981, 7.305, 7.3174, 7.3143, 7.3184, 7.3372, 7.3293, 7.3262, 7.3236, 7.3206, 7.3176, 7.3238, 7.3208, 7.3178, 7.3237, 7.3214, 7.3198, 7.3186, 7.3191, 7.3162, 7.3129, 7.3108, 7.3076, 7.2977, 7.2957, 7.3032, 7.3001, 7.2991, 7.2962, 7.2931, 7.2913, 7.2882, 7.2863, 7.2847, 7.2903, 7.2895, 7.2866, 7.284, 7.2891, 7.2872, 7.2864, 7.287400000000001, 7.2844, 7.2841, 7.282, 7.2789, 7.2861, 7.2832, 7.2813, 7.2786, 7.2758, 7.2739, 7.2725, 7.2707, 7.2677, 7.2664, 7.2636, 7.2607, 7.2592, 7.2645, 7.2695, 7.2666, 7.2658, 7.2716, 7.2694, 7.2673, 7.2643, 7.2612, 7.2668, 7.2639, 7.2619, 7.2689, 7.2679, 7.2658, 7.2708, 7.268, 7.3045, 7.3024, 7.2994, 7.2965, 7.2938, 7.2928, 7.2913, 7.2972, 7.296, 7.2954, 7.2928, 7.2902, 7.2878, 7.2937, 7.2918, 7.2915, 7.2889, 7.2953, 7.2925, 7.2901, 7.2911, 7.2886, 7.287, 7.2852, 7.2862, 7.2872, 7.2843, 7.2824, 7.2797, 7.2777, 7.2767, 7.2756, 7.275, 7.2741, 7.2788, 7.2858, 7.2842, 7.2814, 7.2795, 7.2769, 7.275, 7.2736, 7.2716, 7.2699, 7.2673, 7.2655, 7.2565, 7.254, 7.2513, 7.2501, 7.2478, 7.2462, 7.244, 7.2416, 7.247, 7.2479, 7.2457, 7.2527, 7.2573, 7.2553, 7.2537, 7.2528, 7.251, 7.2491, 7.2488, 7.2462, 7.245, 7.2448, 7.2428, 7.2414, 7.2391, 7.237, 7.2356, 7.2345, 7.2326, 7.2336, 7.2322, 7.2376, 7.2356, 7.2556, 7.2613, 7.2592, 7.2572, 7.2553, 7.2542, 7.252, 7.2499, 7.2487, 7.2605, 7.2583, 7.2593000000000005, 7.2644, 7.2778, 7.2774, 7.2761, 7.2749, 7.2736, 7.2721, 7.2704, 7.2685, 7.2677, 7.2724, 7.2771, 7.2757, 7.2745, 7.2734, 7.2717, 7.2693, 7.270300000000001, 7.271300000000001, 7.2698, 7.2678, 7.2721, 7.2696, 7.2738, 7.2735, 7.2796, 7.2916, 7.2907, 7.2985, 7.2979, 7.3056, 7.3031, 7.3011, 7.3094, 7.3085, 7.3007, 7.2982, 7.3031, 7.3022, 7.3137, 7.3058, 7.3044, 7.3091, 7.3136, 7.3197, 7.3248, 7.3229, 7.327, 7.325, 7.3298, 7.3281, 7.3259, 7.3257, 7.3241, 7.3221, 7.3267, 7.3254, 7.3253, 7.3254, 7.3238, 7.3216, 7.3259, 7.3252, 7.3234, 7.3212, 7.3259, 7.3304, 7.329, 7.3332, 7.3381, 7.3363, 7.3404, 7.3381, 7.3359, 7.3344, 7.3333, 7.3375, 7.3425, 7.3422, 7.34, 7.3484, 7.3502, 7.3544, 7.3525, 7.3507, 7.3486, 7.3473, 7.3455, 7.3623, 7.3667, 7.371, 7.3701, 7.3678, 7.3723, 7.3701, 7.3682, 7.3665, 7.3643, 7.3622, 7.3662, 7.3637, 7.3617, 7.3596, 7.3588, 7.3571, 7.3554, 7.3595, 7.3573, 7.3553, 7.3533, 7.3572, 7.3551, 7.3528, 7.3524, 7.3616, 7.3672, 7.366, 7.3639, 7.3618, 7.3614, 7.3592, 7.3574, 7.3551, 7.3535, 7.3574, 7.3557, 7.3542, 7.353, 7.3575, 7.3622, 7.3665, 7.3646, 7.3693, 7.367, 7.3656, 7.3694, 7.3738, 7.3719, 7.3722, 7.3716, 7.3697, 7.3737, 7.3717, 7.3761, 7.3749, 7.3731, 7.3711, 7.3691, 7.3668, 7.3657, 7.365, 7.3632, 7.3675, 7.3742, 7.372, 7.37, 7.3677, 7.3676, 7.3717, 7.3694, 7.3671, 7.3658, 7.3694, 7.3678, 7.3655, 7.3642, 7.3622, 7.3609, 7.3591, 7.3574, 7.3556, 7.3543, 7.3527, 7.3507, 7.3486, 7.3523, 7.3502, 7.3497, 7.3477, 7.3514, 7.3551, 7.3538, 7.3522, 7.3559, 7.3544, 7.358, 7.3559, 7.354, 7.353, 7.3528, 7.352, 7.3499, 7.3487, 7.3477, 7.3458, 7.3501, 7.3497, 7.3479, 7.3517, 7.3499, 7.3479, 7.3582, 7.3569, 7.3552, 7.3592, 7.3584, 7.3563, 7.3542, 7.3527, 7.352, 7.3512, 7.3491, 7.3486, 7.3522, 7.3501, 7.348, 7.3735, 7.3715, 7.3697, 7.3698, 7.3681, 7.3673, 7.3713, 7.3708, 7.369, 7.3731, 7.371, 7.369, 7.3681, 7.3716, 7.3696, 7.368, 7.3663, 7.3646, 7.3633, 7.3671, 7.3655, 7.364, 7.362, 7.3601, 7.358, 7.3569, 7.3553, 7.3541, 7.3532, 7.3525, 7.3509, 7.3497, 7.3486, 7.3523, 7.3516, 7.3506, 7.3621, 7.3604, 7.3587, 7.3522, 7.3501, 7.3535, 7.3526, 7.3566, 7.355, 7.3538, 7.3523, 7.3515, 7.3498, 7.3491, 7.3528, 7.3562, 7.3602, 7.3638, 7.362, 7.3601, 7.3582, 7.3561, 7.3548, 7.3529, 7.3509, 7.3489, 7.3472, 7.3453, 7.3437, 7.3419, 7.34, 7.3381, 7.3416, 7.3401, 7.3385, 7.3365, 7.3359, 7.3394, 7.3377, 7.336, 7.3394, 7.3432, 7.3419, 7.3407, 7.3395, 7.3376, 7.3412, 7.3397, 7.3383, 7.3375, 7.3365, 7.3358, 7.3339, 7.3334, 7.3322, 7.3309, 7.3297, 7.3292, 7.3327, 7.3321, 7.3361, 7.3352, 7.3396, 7.3437, 7.3421, 7.3406, 7.344, 7.3499, 7.3507, 7.3457, 7.3442, 7.3425, 7.3417, 7.3408, 7.3391, 7.3423, 7.3414, 7.341, 7.3397, 7.3494, 7.3496, 7.3539, 7.3581, 7.3579, 7.3597, 7.3596, 7.3595, 7.358, 7.3575, 7.3557, 7.3551, 7.3543, 7.3532, 7.3514, 7.3503, 7.3487, 7.3471, 7.346, 7.3495, 7.3582, 7.3567, 7.3554, 7.3538, 7.3568, 7.3551, 7.3532, 7.3521, 7.3551, 7.3579, 7.3612, 7.3646, 7.363, 7.3616, 7.36, 7.3584, 7.3568, 7.355, 7.3533, 7.3515, 7.3509, 7.3494, 7.3491, 7.3478, 7.3464, 7.3449, 7.3445, 7.3433, 7.342, 7.3404, 7.3393, 7.3382, 7.3374, 7.3361, 7.3342, 7.3325, 7.3367, 7.3355, 7.335, 7.3342, 7.3325, 7.3322, 7.3305, 7.3289, 7.3273, 7.3262, 7.3245, 7.3282, 7.3269, 7.3279000000000005, 7.3262, 7.3257, 7.3241, 7.3228, 7.3216, 7.328, 7.3318, 7.3312, 7.3301, 7.3288, 7.3271, 7.3279, 7.3264, 7.33, 7.3296, 7.329, 7.3276, 7.326, 7.3246, 7.3278, 7.3266, 7.3252, 7.3247, 7.3237, 7.3235, 7.3223, 7.3209, 7.3193, 7.3176, 7.3265, 7.3263, 7.3259, 7.3287, 7.3271, 7.3259, 7.3243, 7.3232, 7.3226, 7.3264, 7.3248, 7.3248, 7.3241, 7.3239, 7.3223, 7.3215, 7.3205, 7.319, 7.3222, 7.3216, 7.3205, 7.3193, 7.3177, 7.3174, 7.3165, 7.3151, 7.3095, 7.3078, 7.311, 7.3095, 7.308, 7.3064, 7.3049, 7.3047, 7.3036, 7.302, 7.3022, 7.3011, 7.3043, 7.3027, 7.3014, 7.3007, 7.2995, 7.3042, 7.3026, 7.3021, 7.3015, 7.3, 7.3035, 7.3029, 7.3016, 7.3001, 7.2993, 7.2981, 7.2971, 7.2972, 7.2957, 7.2956, 7.295, 7.2948, 7.2937, 7.2968, 7.2963, 7.2955, 7.2955, 7.3079, 7.3112, 7.3139, 7.313, 7.3076, 7.3062, 7.3102, 7.3135, 7.3169, 7.3204, 7.3202, 7.3195, 7.318, 7.3172, 7.316, 7.3146, 7.3131, 7.3118, 7.3146, 7.3133, 7.3143, 7.3128, 7.3083, 7.3093, 7.310300000000001, 7.311300000000001, 7.3102, 7.3089, 7.3079, 7.3069, 7.306, 7.307, 7.308000000000001, 7.3065, 7.305, 7.3043, 7.3031, 7.3017, 7.3067, 7.3071, 7.3149, 7.3135, 7.3121, 7.3114, 7.3144, 7.3133, 7.3123, 7.3121, 7.323, 7.3217, 7.3204, 7.3193, 7.3182, 7.318, 7.3172, 7.3167, 7.3212, 7.3198, 7.319, 7.3179, 7.3176, 7.3205, 7.3195, 7.3187, 7.3216, 7.3218, 7.3374, 7.34, 7.3391, 7.3381, 7.3372, 7.3401, 7.3387, 7.3373, 7.3359, 7.3345, 7.3334, 7.3383, 7.339300000000001, 7.3383, 7.3373, 7.3364, 7.339, 7.338, 7.3367, 7.3352, 7.334, 7.3366, 7.335, 7.3374, 7.3366, 7.3351, 7.3341, 7.3336, 7.333, 7.3316, 7.3309, 7.3339, 7.3325, 7.3316, 7.331, 7.3297, 7.3292, 7.3279, 7.3279, 7.3271, 7.326, 7.3259, 7.3245, 7.3277, 7.327, 7.3261, 7.3251, 7.3276, 7.3264, 7.3252, 7.3258, 7.3249, 7.3235, 7.3265, 7.3255, 7.3259, 7.3249, 7.3234, 7.3186, 7.3171, 7.3165, 7.3201, 7.3187, 7.3212, 7.3237, 7.3228, 7.3219, 7.3206, 7.3245, 7.3235, 7.3222, 7.3211, 7.3198, 7.3187, 7.3177, 7.3164, 7.3154, 7.3139, 7.3127, 7.3123, 7.3116, 7.3105, 7.3092, 7.3239, 7.3225, 7.3215, 7.3241, 7.3231, 7.3217, 7.3243, 7.327, 7.3314, 7.3306, 7.3293, 7.3284, 7.3272, 7.3266, 7.3258, 7.3245, 7.3268, 7.3293, 7.3283, 7.3303, 7.3342, 7.3334, 7.3323, 7.3349, 7.3335, 7.3325, 7.3312, 7.3302, 7.3326, 7.3329, 7.3352, 7.3345, 7.3342, 7.3364, 7.3351, 7.3378, 7.3366, 7.3354, 7.3346, 7.3349, 7.3338, 7.3326, 7.332, 7.3311, 7.3299, 7.3288, 7.3312, 7.3302, 7.3301, 7.3296, 7.3291, 7.3284, 7.3273, 7.3261, 7.3249, 7.3237, 7.3328, 7.3314, 7.3303, 7.3294, 7.3283, 7.328, 7.3267, 7.3258, 7.3249, 7.3277, 7.3269, 7.3293, 7.3284, 7.3279, 7.3307, 7.3307, 7.3295, 7.3283, 7.3271, 7.3258, 7.3248, 7.3273, 7.3261, 7.3248, 7.3234, 7.3224, 7.3218, 7.3206, 7.3192, 7.3181, 7.3204, 7.3203, 7.3189, 7.3177, 7.3164, 7.3328, 7.3315, 7.3302, 7.3297, 7.3285, 7.3272, 7.326, 7.3248, 7.3274, 7.3261, 7.3248, 7.3236, 7.326, 7.3283, 7.3276, 7.3263, 7.332, 7.3308, 7.3331, 7.3317, 7.3305, 7.3291, 7.3283, 7.327, 7.3262, 7.3265, 7.3252, 7.3245, 7.3206, 7.3198, 7.3221, 7.3209, 7.3203, 7.3194, 7.3187, 7.318, 7.3211, 7.3197, 7.3188, 7.3218, 7.3224, 7.3216, 7.3213, 7.3207, 7.3236, 7.3228, 7.3225, 7.3222, 7.3214, 7.3201, 7.3193, 7.3185, 7.319500000000001, 7.3191, 7.3179, 7.3172, 7.3161, 7.312, 7.3144, 7.3154, 7.3116, 7.3116, 7.3106, 7.3099, 7.3091, 7.3087, 7.3116, 7.3141, 7.3129, 7.3116, 7.3138, 7.3134, 7.3161, 7.315, 7.314, 7.3127, 7.3153, 7.3144, 7.3134, 7.3124, 7.3147, 7.314, 7.3134, 7.3128, 7.3151, 7.3139, 7.3162, 7.3151, 7.3178, 7.3177, 7.3172, 7.3162, 7.3155, 7.3147, 7.3137, 7.3136, 7.3161, 7.315, 7.314, 7.313, 7.3118, 7.3112, 7.3102, 7.309, 7.3083, 7.3091, 7.3081, 7.3071, 7.3096, 7.3137, 7.3131, 7.3122, 7.3112, 7.3103, 7.3131, 7.3125, 7.3135, 7.3158, 7.3191, 7.3213, 7.3204, 7.3198, 7.3191, 7.3185, 7.3174, 7.3195, 7.319, 7.3184, 7.3193, 7.3214, 7.3202, 7.3195, 7.3183, 7.3205, 7.3199, 7.322, 7.324, 7.3232, 7.322, 7.3224, 7.325, 7.3271, 7.3263, 7.326, 7.3255, 7.3247, 7.3269, 7.3291, 7.3285, 7.3308, 7.3302, 7.329, 7.3278, 7.3276, 7.3274, 7.3325, 7.3313, 7.3338, 7.3327, 7.3326, 7.3318, 7.3309, 7.3299, 7.330900000000001, 7.331900000000001, 7.331, 7.3305, 7.3292, 7.3287, 7.3275, 7.3301, 7.332, 7.3317, 7.3327, 7.3351, 7.3343, 7.3334, 7.3325, 7.3315, 7.3308, 7.33, 7.3326, 7.3351, 7.3343, 7.3334, 7.333, 7.3319, 7.334, 7.3359, 7.3356, 7.3383, 7.339300000000001, 7.3381, 7.3401, 7.3396, 7.3389, 7.3387, 7.3379, 7.3369, 7.3389, 7.3413, 7.3401, 7.339, 7.3388, 7.338, 7.3408, 7.34, 7.3389, 7.3409, 7.34, 7.3391, 7.3381, 7.3374, 7.3365, 7.3353, 7.3375, 7.3365, 7.336, 7.3351, 7.3345, 7.334, 7.3329, 7.335, 7.3345, 7.3338, 7.3317, 7.3317, 7.3307, 7.3277, 7.3268, 7.3257, 7.3249, 7.3254, 7.3243, 7.3239, 7.3238, 7.3258, 7.3246, 7.3238, 7.3264, 7.3284, 7.3273, 7.3296, 7.3286, 7.3276, 7.3265, 7.3254, 7.3245, 7.324, 7.3261, 7.3251, 7.3243, 7.3233, 7.3228, 7.3217, 7.3237, 7.323, 7.322, 7.321, 7.3198, 7.322, 7.3239, 7.3233, 7.3222, 7.321, 7.32, 7.3225, 7.3216, 7.3207, 7.3197, 7.3185, 7.3175, 7.3163, 7.3156, 7.315, 7.3168, 7.3161, 7.3159, 7.3152, 7.3148, 7.3138, 7.3165, 7.3197, 7.322, 7.3212, 7.3203, 7.3226, 7.3249, 7.3243, 7.3239, 7.3239, 7.3232, 7.3222, 7.3212, 7.3203, 7.3195, 7.3185, 7.3176, 7.317, 7.3249, 7.3307, 7.3297, 7.3317, 7.3309, 7.3319, 7.3315, 7.331, 7.3332, 7.3327, 7.3322, 7.3313, 7.3303, 7.3324, 7.3319, 7.331, 7.33, 7.3294, 7.3285, 7.3281, 7.3275, 7.3266, 7.3289, 7.3281, 7.3272, 7.3264, 7.3311, 7.3349, 7.3339, 7.333, 7.3326, 7.3318, 7.3309, 7.3299, 7.3294, 7.3284, 7.3277, 7.3409, 7.3427, 7.3417, 7.3408, 7.3399, 7.3405, 7.3424, 7.343, 7.3419, 7.3412, 7.3404, 7.3396, 7.3385, 7.3375, 7.3364, 7.3358, 7.3353, 7.3344, 7.3337, 7.3357, 7.3353, 7.3344, 7.3363, 7.3388, 7.3382, 7.3372, 7.3366, 7.3357, 7.3358, 7.3349, 7.334, 7.3359, 7.3379, 7.3372, 7.3367, 7.3365, 7.3404, 7.3394, 7.3385, 7.3374, 7.3367, 7.3416, 7.3407, 7.34, 7.3396, 7.3385, 7.3377, 7.3397, 7.3417, 7.3407, 7.3406, 7.3426, 7.3418, 7.3409, 7.3399, 7.3394, 7.3384, 7.3378, 7.3397, 7.3397, 7.3393, 7.339, 7.3385, 7.3378, 7.337, 7.3364, 7.3358, 7.3375, 7.3343, 7.3341, 7.3333, 7.3324, 7.3319, 7.3314, 7.3312, 7.3302, 7.3294, 7.3285, 7.328, 7.3306, 7.33, 7.3292, 7.3283, 7.3275, 7.3267, 7.3262, 7.3259, 7.325, 7.3241, 7.3233, 7.3223, 7.3241, 7.3384, 7.3384, 7.3378, 7.3398, 7.3394, 7.3394, 7.3416, 7.341, 7.34, 7.3389, 7.3385, 7.3383, 7.3374, 7.3395, 7.339, 7.338, 7.3372, 7.3382, 7.3402, 7.3397, 7.3434, 7.3425, 7.3445, 7.3442, 7.3436, 7.3428, 7.3421, 7.3441, 7.3437, 7.3458, 7.3453, 7.3445, 7.3574, 7.3564, 7.3555, 7.3576, 7.3571, 7.3591, 7.3585, 7.3577, 7.3569, 7.3564, 7.3555, 7.3551, 7.3569, 7.356, 7.3526, 7.3544, 7.3539, 7.3532, 7.3523, 7.3521, 7.3514, 7.3506, 7.3496, 7.3494, 7.3484, 7.3477, 7.347, 7.3465, 7.3466, 7.3486, 7.3482, 7.3479, 7.3475, 7.3466, 7.3485, 7.3477, 7.3471, 7.3462, 7.3459, 7.3532, 7.3531, 7.3524, 7.3519, 7.3511, 7.353, 7.352, 7.3516, 7.3532, 7.3527, 7.3547, 7.3537, 7.3532, 7.3524, 7.3516, 7.3506, 7.3497, 7.3487, 7.3484, 7.3474, 7.3465, 7.3455, 7.3447, 7.3439, 7.3429, 7.3419, 7.3492, 7.3482, 7.3498, 7.3488, 7.3484, 7.3478, 7.3495, 7.3514, 7.353, 7.3523, 7.3512, 7.3505, 7.3495, 7.3491, 7.349, 7.3508, 7.3498, 7.3491, 7.3506, 7.3498, 7.3491, 7.3486, 7.3478, 7.3473, 7.3466, 7.3459, 7.345, 7.3447, 7.3438, 7.343, 7.3428, 7.3447, 7.3437, 7.3456, 7.3475, 7.3491, 7.349, 7.3481, 7.3472, 7.3467, 7.3459, 7.345, 7.3465, 7.3456, 7.3452, 7.3443, 7.3462, 7.3453, 7.3448, 7.3447, 7.3463, 7.3454, 7.3449, 7.345, 7.3445, 7.3436, 7.3428, 7.3419, 7.341, 7.3401, 7.3392, 7.3385, 7.3377, 7.3373, 7.339, 7.3393, 7.3387, 7.3378, 7.3368, 7.3359, 7.3352, 7.3342, 7.3333, 7.3325, 7.3341, 7.3334, 7.3325, 7.3316, 7.3332, 7.3301, 7.3296, 7.3315, 7.3307, 7.33, 7.3294, 7.3286, 7.3276, 7.3267, 7.3284, 7.3274, 7.3268, 7.3259, 7.3249, 7.3242, 7.3213, 7.3204, 7.3197, 7.32, 7.3193, 7.3186, 7.3177, 7.3171, 7.3165, 7.3156, 7.3147, 7.3142, 7.3133, 7.3155, 7.3148, 7.314, 7.3133, 7.3134, 7.3126, 7.3188, 7.3183, 7.3177, 7.3254, 7.327, 7.3275, 7.3294, 7.3288, 7.3279, 7.3272, 7.3268, 7.3395, 7.3392, 7.3386, 7.3403, 7.3435, 7.3451, 7.3472, 7.3487, 7.3478, 7.3468, 7.3484, 7.3475, 7.3469, 7.3487, 7.3479, 7.3449, 7.3446, 7.3471, 7.349, 7.3482, 7.3474, 7.3471, 7.3465, 7.3487, 7.3505, 7.3482, 7.3524, 7.3515, 7.3508, 7.3501, 7.35, 7.3502, 7.3494, 7.3491, 7.3484, 7.3476, 7.3468, 7.3461, 7.3479, 7.3474, 7.3491, 7.3509, 7.3525, 7.3516, 7.3509, 7.3481, 7.3476, 7.347, 7.3462, 7.3458, 7.3475, 7.3468, 7.3459, 7.3451, 7.3445, 7.3437, 7.3452, 7.3468, 7.3485, 7.3477, 7.3468, 7.3482, 7.3474, 7.347, 7.3467, 7.3463, 7.3484, 7.3475, 7.3494, 7.3486, 7.3504, 7.3501, 7.3519, 7.3513, 7.3521, 7.3497, 7.3516, 7.351, 7.3502, 7.3497, 7.3488, 7.3479, 7.3496, 7.3513, 7.3529, 7.352, 7.3519, 7.3511, 7.3503, 7.3522, 7.3516, 7.351, 7.3502, 7.3493, 7.3484, 7.3478, 7.3473, 7.3466, 7.3458, 7.3473, 7.3465, 7.348, 7.3472, 7.3465, 7.3459, 7.3452, 7.3444, 7.3436, 7.344600000000001, 7.3441, 7.3437, 7.3429, 7.3421, 7.3412, 7.3405, 7.3397, 7.339, 7.3388, 7.3381, 7.3399, 7.3416, 7.3433, 7.3425, 7.3419, 7.3411, 7.3405, 7.3422, 7.3414, 7.3405, 7.3398, 7.3416, 7.3409, 7.3425, 7.3417, 7.3408, 7.3423, 7.3414, 7.3405, 7.3403, 7.34, 7.3401, 7.3395, 7.3388, 7.3381, 7.3398, 7.3393, 7.3389, 7.3384, 7.3379, 7.3374, 7.3368, 7.336, 7.3375, 7.3367, 7.336, 7.3355, 7.3373, 7.337, 7.3392, 7.3389, 7.3413, 7.344, 7.3459, 7.3452, 7.3445, 7.3451, 7.3446, 7.344, 7.3432, 7.3424, 7.3419, 7.3412, 7.3429, 7.3425, 7.3417, 7.3411, 7.3425, 7.3417, 7.3413, 7.3405, 7.3399, 7.3391, 7.3389, 7.3383, 7.3376, 7.3373, 7.3366, 7.3364, 7.3361, 7.3354, 7.337, 7.3386, 7.3388, 7.3387, 7.3383, 7.3398, 7.3391, 7.3386, 7.3378, 7.3373, 7.3387, 7.3384, 7.3402, 7.3403, 7.3394, 7.3408, 7.3422, 7.3414, 7.3434, 7.345, 7.3446, 7.3462, 7.3456, 7.3449, 7.3442, 7.3435, 7.3453, 7.3445, 7.3437, 7.343, 7.3425, 7.3417, 7.3412, 7.3407, 7.3424, 7.344, 7.3432, 7.3448, 7.344, 7.3432, 7.3426, 7.3419, 7.3434, 7.3427, 7.3423, 7.3416, 7.3408, 7.3405, 7.342, 7.3412, 7.3408, 7.3422, 7.3463, 7.3456, 7.3449, 7.3445, 7.3438, 7.343, 7.3423, 7.344, 7.3456, 7.3449, 7.3441, 7.3433, 7.3427, 7.3399, 7.3414, 7.3429, 7.3421, 7.3415, 7.3408, 7.3401, 7.3393, 7.3407, 7.34, 7.3444, 7.3512, 7.3506, 7.3506, 7.3547, 7.3574, 7.3567, 7.3581, 7.3575, 7.3569, 7.3562, 7.3647, 7.3642, 7.3636, 7.3613, 7.3607, 7.3635, 7.3628, 7.3622, 7.3616, 7.3635, 7.3633, 7.3627, 7.3619, 7.3618, 7.3611, 7.3634, 7.3609, 7.3604, 7.3598, 7.3599, 7.3639, 7.3633, 7.3651, 7.365, 7.3668, 7.3663, 7.3656, 7.365, 7.3647, 7.3664, 7.366, 7.3653, 7.3667, 7.3659, 7.3651, 7.3643, 7.3635, 7.3627, 7.3622, 7.3614, 7.3631, 7.3645, 7.366, 7.3654, 7.3649, 7.3642, 7.3634, 7.3628, 7.3643, 7.3659, 7.3651, 7.3645, 7.3637, 7.3651, 7.3643, 7.3662, 7.3654, 7.3648, 7.3641, 7.3634, 7.3635, 7.3629, 7.3622, 7.3614, 7.3613, 7.3608, 7.3602, 7.3599, 7.3595, 7.3591, 7.3607, 7.3604, 7.3596, 7.3592, 7.3584, 7.3576, 7.3571, 7.3585, 7.3586, 7.3582, 7.3581, 7.3574, 7.3583, 7.3578, 7.3595, 7.3588, 7.3565, 7.356, 7.3552, 7.3591, 7.3583, 7.3577, 7.3569, 7.3584, 7.3579, 7.3585, 7.3579, 7.3555, 7.3549, 7.3541, 7.3535, 7.353, 7.3524, 7.3517, 7.3513, 7.3527, 7.352, 7.3513, 7.3508, 7.3502, 7.3496, 7.3488, 7.3484, 7.3477, 7.3476, 7.349, 7.3483, 7.3476, 7.349, 7.3526, 7.3521, 7.3536, 7.3549, 7.3583, 7.3576, 7.3569, 7.3545, 7.3561, 7.3559, 7.3552, 7.3546, 7.3523, 7.3519, 7.3574, 7.3567, 7.3582, 7.3596, 7.3591, 7.3586, 7.3578, 7.3593, 7.3587, 7.3582, 7.3578, 7.3592, 7.3585, 7.3581, 7.3596, 7.3609, 7.3621, 7.3614, 7.3628, 7.362, 7.3634, 7.3629, 7.3643, 7.3657, 7.3671, 7.3667, 7.367, 7.3663, 7.3659, 7.3651, 7.3643, 7.3636, 7.3631, 7.3625, 7.364, 7.3635, 7.363, 7.3623, 7.3637, 7.365, 7.3646, 7.3661, 7.3658, 7.3656, 7.3669, 7.3683, 7.3678, 7.3675, 7.3669, 7.3662, 7.3656, 7.3648, 7.3642, 7.3639, 7.3634, 7.363, 7.3624, 7.3628, 7.3643, 7.3688, 7.3706, 7.3702, 7.3695, 7.3688, 7.3701, 7.3703, 7.3695, 7.3691, 7.3705, 7.3718, 7.3711, 7.3709, 7.3702, 7.3695, 7.3709, 7.3724, 7.3736, 7.3751, 7.3744, 7.3738, 7.3734, 7.3728, 7.372, 7.3715, 7.3707, 7.37, 7.3713, 7.3728, 7.372, 7.3714, 7.371, 7.3703, 7.3696, 7.3689, 7.3684, 7.3698, 7.3721, 7.3723, 7.3716, 7.3711, 7.3704, 7.3698, 7.3696, 7.3693, 7.3686, 7.3681, 7.3678, 7.3674, 7.367, 7.3663, 7.3659, 7.3651, 7.3646, 7.3641, 7.3676, 7.3669, 7.3665, 7.3658, 7.3652, 7.3646, 7.366, 7.3674, 7.367, 7.3663, 7.3658, 7.3653, 7.3649, 7.3642, 7.364, 7.3639, 7.3632, 7.3627, 7.362, 7.3618, 7.3612, 7.3605, 7.36, 7.3613, 7.3627, 7.362, 7.3614, 7.3627, 7.3626, 7.3623, 7.3616, 7.3615, 7.3608, 7.3602, 7.3616, 7.361, 7.3624, 7.3626, 7.3621, 7.3614, 7.3608, 7.3602, 7.3595, 7.3611, 7.3605, 7.36, 7.3593, 7.3589, 7.3604, 7.3601, 7.3616, 7.3613, 7.3608, 7.3602, 7.3595, 7.3609, 7.3607, 7.3599, 7.3612, 7.3626, 7.3622, 7.362, 7.3635, 7.3629, 7.3622, 7.3636, 7.3652, 7.3648, 7.3644, 7.3638, 7.3635, 7.3647, 7.364, 7.3635, 7.363, 7.3625, 7.3638, 7.3631, 7.3626, 7.3644, 7.3637, 7.3633, 7.3628, 7.3629, 7.3642, 7.3635, 7.3629, 7.3628, 7.3623, 7.3615, 7.3608, 7.3623, 7.3619, 7.3613, 7.3608, 7.3602, 7.3596, 7.359, 7.3596, 7.3656, 7.365, 7.3647, 7.3643, 7.3685, 7.368, 7.3695, 7.369, 7.3684, 7.3698, 7.3766, 7.3759, 7.3811, 7.3825, 7.3821, 7.3834, 7.3829, 7.3822, 7.3816, 7.3811, 7.3824, 7.3825, 7.3818, 7.3831, 7.3825, 7.3838, 7.3875, 7.3888, 7.3881, 7.3874, 7.3868, 7.3866, 7.3879, 7.3874, 7.3868, 7.3881, 7.3874, 7.3868, 7.3865, 7.386, 7.3875, 7.3889, 7.3882, 7.3897, 7.3893, 7.3905, 7.3917, 7.3915, 7.391, 7.3905, 7.3902, 7.3899, 7.3895, 7.3894, 7.3873, 7.3866, 7.3861, 7.3858, 7.3856, 7.3849, 7.3844, 7.3821, 7.3797, 7.381, 7.3805, 7.3799, 7.3794, 7.3789, 7.3782, 7.3794, 7.3807, 7.3804, 7.3815, 7.3813, 7.3806, 7.3817, 7.3812, 7.3805, 7.382, 7.3814, 7.3815, 7.3829, 7.3821, 7.3819, 7.3832, 7.3847, 7.384, 7.3839, 7.3833, 7.3827, 7.3842, 7.3854, 7.385, 7.3849, 7.3845, 7.3841, 7.3854, 7.3866, 7.386, 7.3857, 7.3854, 7.3849, 7.3842, 7.3838, 7.3831, 7.3827, 7.3805, 7.3804, 7.3817, 7.3815, 7.3812, 7.381, 7.3806, 7.3802, 7.3799, 7.3793, 7.3787, 7.378, 7.3777, 7.3774, 7.3789, 7.379, 7.3783, 7.3777, 7.3772, 7.3767, 7.3761, 7.3778, 7.3771, 7.3764, 7.3757, 7.375, 7.3744, 7.3739, 7.3732, 7.3727, 7.3721, 7.3715, 7.3708, 7.3705, 7.3717, 7.3712, 7.3725, 7.3724, 7.3719, 7.3713, 7.3724, 7.3719, 7.3712, 7.3708, 7.3702, 7.3696, 7.3691, 7.3703, 7.3697, 7.3709, 7.3688, 7.3688, 7.3665, 7.3659, 7.3654, 7.3665, 7.3659, 7.3656, 7.3649, 7.3663, 7.3657, 7.3653, 7.3648, 7.3649, 7.3645, 7.3622, 7.3619, 7.3614, 7.3609, 7.3611, 7.3609, 7.3602, 7.3599, 7.3578, 7.3591, 7.3586, 7.36, 7.3597, 7.3574, 7.3571, 7.3567, 7.356, 7.356, 7.3556, 7.3551, 7.3545, 7.354, 7.3534, 7.3546, 7.3544, 7.3539, 7.3534, 7.3531, 7.3526, 7.3524, 7.3518, 7.3514, 7.3509, 7.3502, 7.3495, 7.351, 7.3504, 7.3497, 7.3498, 7.3497, 7.3493, 7.3487, 7.3485, 7.3482, 7.3494, 7.3489, 7.3486, 7.3484, 7.3478, 7.3486, 7.3481, 7.3474, 7.3469, 7.3481, 7.3494, 7.3488, 7.3483, 7.3495, 7.3507, 7.3522, 7.3516, 7.3512, 7.3508, 7.3523, 7.3536, 7.353, 7.3524, 7.3536, 7.3533, 7.3547, 7.3544, 7.3539, 7.3533, 7.3547, 7.3542, 7.3536, 7.353, 7.3524, 7.3536, 7.3529, 7.3525, 7.3521, 7.3518, 7.3532, 7.3527, 7.3541, 7.3552, 7.3546, 7.3542, 7.3539, 7.3551, 7.3548, 7.3545, 7.3542, 7.3538, 7.3532, 7.3527, 7.3534, 7.353, 7.3544, 7.3595, 7.359, 7.3605, 7.3601, 7.3608, 7.3587, 7.3599, 7.3593, 7.3672, 7.3682, 7.3695, 7.3689, 7.3686, 7.368, 7.366, 7.3655, 7.365, 7.3661, 7.3656, 7.3649, 7.3664, 7.3657, 7.3652, 7.3646, 7.3657, 7.3651, 7.3648, 7.3642, 7.3653, 7.3647, 7.3643, 7.3638, 7.3632, 7.3629, 7.3625, 7.362, 7.3616, 7.3612, 7.3606, 7.3599, 7.3594, 7.3592, 7.3585, 7.3597, 7.3591, 7.3586, 7.3597, 7.3591, 7.3588, 7.3583, 7.3594, 7.3587, 7.3581, 7.3579, 7.3574, 7.3571, 7.3568, 7.3562, 7.3558, 7.3552, 7.3548, 7.3544, 7.3538, 7.3533, 7.3533, 7.3526, 7.3506, 7.35, 7.3511, 7.3522, 7.3533, 7.3531, 7.3528, 7.354, 7.3539, 7.354, 7.3533, 7.3528, 7.3526, 7.3523, 7.3535, 7.353, 7.3524, 7.3535, 7.3529, 7.3524, 7.3535, 7.3532, 7.3543, 7.3538, 7.3532, 7.3529, 7.3523, 7.3535, 7.3548, 7.3546, 7.3542, 7.3544, 7.356, 7.3556, 7.355, 7.3573, 7.3588, 7.3585, 7.3582, 7.3595, 7.3592, 7.3585, 7.3578, 7.3574, 7.3589, 7.3602, 7.3598, 7.3595, 7.3592, 7.3592, 7.3588, 7.3584, 7.3582, 7.358, 7.3577, 7.358, 7.3575, 7.357, 7.3549, 7.3544, 7.354, 7.3557, 7.3552, 7.355, 7.3637, 7.3638, 7.3649, 7.3643, 7.3641, 7.3634, 7.3629, 7.3628, 7.3638, 7.3633, 7.3628, 7.3623, 7.3619, 7.3616, 7.3611, 7.3609, 7.3607, 7.3601, 7.3613, 7.3608, 7.3603, 7.36, 7.3613, 7.3625, 7.3619, 7.3631, 7.3625, 7.3621, 7.3614, 7.3608, 7.3588, 7.357, 7.3564, 7.3558, 7.3572, 7.3583, 7.358, 7.3561, 7.3557, 7.3554, 7.3553, 7.3547, 7.3541, 7.3537, 7.3549, 7.3543, 7.3556, 7.355, 7.3545, 7.3542, 7.3539, 7.3533, 7.3517, 7.3512, 7.3506, 7.3505, 7.3502, 7.3497, 7.3492, 7.3486, 7.3483, 7.3478, 7.3492, 7.3488, 7.3485, 7.3479, 7.3473, 7.3454, 7.3451, 7.3446, 7.3459, 7.3453, 7.3464, 7.3461, 7.3474, 7.3486, 7.3497, 7.3492, 7.3489, 7.347, 7.3469, 7.3463, 7.3457, 7.3468, 7.3464, 7.346, 7.347, 7.348, 7.3477, 7.3475, 7.3472, 7.347, 7.3453, 7.3435, 7.3414, 7.3396, 7.3395, 7.339, 7.3389, 7.3384, 7.3364, 7.3344, 7.3339, 7.3334, 7.3329, 7.3323, 7.3318, 7.3314, 7.3325, 7.3337, 7.3331, 7.3341, 7.3352, 7.3347, 7.3344, 7.3338, 7.3335, 7.3345, 7.3339, 7.3333, 7.3329, 7.3323, 7.3321, 7.3333, 7.3331, 7.3313, 7.331, 7.3305, 7.3302, 7.3299, 7.3294, 7.329, 7.3302, 7.3296, 7.3293, 7.329, 7.3292, 7.3286, 7.3281, 7.3295, 7.3289, 7.3283, 7.3295, 7.3291, 7.3288, 7.3284, 7.3279, 7.3276, 7.3272, 7.3266, 7.3277, 7.3273, 7.3268, 7.3279, 7.328, 7.3261, 7.33, 7.3296, 7.329, 7.3286, 7.3296, 7.3306, 7.3301, 7.33, 7.3311, 7.3322, 7.332, 7.3318, 7.3328, 7.3326, 7.332, 7.3315, 7.3309, 7.3307, 7.3302, 7.3313, 7.3324, 7.3318, 7.3313, 7.3324, 7.332, 7.332, 7.3331, 7.3327, 7.3324, 7.3352, 7.3363, 7.3391, 7.3419, 7.3413, 7.3424, 7.3418, 7.3412, 7.3406, 7.34, 7.3396, 7.339, 7.3384, 7.3384, 7.3381, 7.3393, 7.3405, 7.34, 7.3412, 7.3407, 7.3405, 7.3417, 7.3413, 7.3408, 7.3402, 7.3396, 7.3408, 7.3403, 7.3417, 7.3413, 7.3424, 7.3421, 7.3401, 7.3383, 7.3364, 7.3374, 7.3368, 7.3362, 7.3373, 7.3383, 7.3377, 7.3387, 7.3397, 7.3408, 7.3404, 7.34, 7.3394, 7.3391, 7.3385, 7.3396, 7.3391, 7.3385, 7.338, 7.3375, 7.3385, 7.3383, 7.3381, 7.3376, 7.3375, 7.3386, 7.3382, 7.3392, 7.3391, 7.3388, 7.3382, 7.3379, 7.3389, 7.3387, 7.3381, 7.3375, 7.3385, 7.3398, 7.341, 7.3421, 7.3446, 7.346, 7.3471, 7.3455, 7.3452, 7.3451, 7.3447, 7.3457, 7.3451, 7.3457, 7.3467, 7.3464, 7.3462, 7.3456, 7.3452, 7.3448, 7.3444, 7.3455, 7.3436, 7.3433, 7.3443, 7.3453, 7.3447, 7.3455, 7.3456, 7.3467, 7.3463, 7.3476, 7.3486, 7.3483, 7.3479, 7.3473, 7.3468, 7.3462, 7.3458, 7.3455, 7.3464, 7.3458, 7.3457, 7.3455, 7.3449, 7.346, 7.3456, 7.3453, 7.3449, 7.343, 7.3441, 7.3438, 7.3449, 7.3445, 7.344, 7.3437, 7.342, 7.3414, 7.3409, 7.3403, 7.3399, 7.3394, 7.3394, 7.3418, 7.3403, 7.3399, 7.3395, 7.3391, 7.3387, 7.3384, 7.338, 7.3392, 7.3389, 7.3398, 7.3409, 7.3404, 7.3399, 7.3396, 7.3391, 7.3391, 7.3386, 7.3381, 7.3377, 7.3372, 7.3358, 7.3359, 7.3375, 7.3371, 7.3353, 7.3336, 7.3331, 7.3328, 7.3323, 7.3317, 7.3327, 7.3322, 7.332, 7.3315, 7.3325, 7.3335, 7.3329, 7.3325, 7.332, 7.3318, 7.3316, 7.3316, 7.3313, 7.3307, 7.3303, 7.3316, 7.3344, 7.3341, 7.3338, 7.3334, 7.3331, 7.3326, 7.3321, 7.3332, 7.3327, 7.3324, 7.3336, 7.3348, 7.3345, 7.3339, 7.3334, 7.3344, 7.3339, 7.3334, 7.3345, 7.3343, 7.3339, 7.3349, 7.3361, 7.3372, 7.3355, 7.3339, 7.3335, 7.333, 7.3331, 7.3327, 7.3324, 7.3334, 7.3329, 7.3325, 7.3321, 7.3316, 7.3315, 7.331, 7.3308, 7.333, 7.3337, 7.3333, 7.3315, 7.3313, 7.3308, 7.3303, 7.3329, 7.3355, 7.335, 7.3347, 7.3357, 7.3352, 7.3347, 7.3348, 7.3359, 7.337, 7.3369, 7.3396, 7.3408, 7.3404, 7.3403, 7.3398, 7.3395, 7.3393, 7.3389, 7.3388, 7.3386, 7.3383, 7.3382, 7.3378, 7.3372, 7.3368, 7.3362, 7.3373, 7.3384, 7.3379, 7.3373, 7.3357, 7.3352, 7.3347, 7.3344, 7.3338, 7.335, 7.3361, 7.3359, 7.3354, 7.3349, 7.3344, 7.3341, 7.3341, 7.3339, 7.3335, 7.332, 7.3315, 7.3315, 7.331, 7.3306, 7.3316, 7.3326, 7.331, 7.331, 7.332000000000001, 7.3316, 7.3312, 7.3308, 7.3318, 7.3316, 7.3313, 7.3308, 7.3302, 7.3297, 7.3296, 7.3291, 7.3288, 7.3298000000000005, 7.3311, 7.3306, 7.3301, 7.3296, 7.3335, 7.333, 7.3344, 7.3354, 7.3351, 7.335, 7.335, 7.336, 7.337, 7.3371, 7.3368, 7.3365, 7.3361, 7.3359, 7.3356, 7.3353, 7.3348, 7.3358, 7.3356, 7.3352, 7.3336, 7.3335, 7.3346, 7.3328, 7.3312, 7.3309, 7.3306, 7.3301, 7.3299, 7.3311, 7.3306, 7.3304, 7.33, 7.3298, 7.3295, 7.3278, 7.3275, 7.3271, 7.3267, 7.325, 7.3233, 7.3233, 7.323, 7.3226, 7.324, 7.3236, 7.3231, 7.324, 7.3249, 7.3246, 7.3244, 7.3239, 7.3234, 7.3232, 7.3228, 7.3238, 7.3249, 7.3245, 7.324, 7.3235, 7.326, 7.3258, 7.3255, 7.325, 7.3260000000000005, 7.327000000000001, 7.328000000000001, 7.3278, 7.3273, 7.3283, 7.3278, 7.3276, 7.3274, 7.3269, 7.3278, 7.3288, 7.3284, 7.3282, 7.328, 7.3278, 7.3276, 7.3272, 7.3268, 7.3266, 7.3264, 7.3261, 7.3256, 7.3253, 7.3248, 7.3243, 7.3241, 7.3236, 7.3231, 7.3226, 7.3221, 7.323, 7.323, 7.3225, 7.3235, 7.3231, 7.3241000000000005, 7.325100000000001, 7.325, 7.3246, 7.3245, 7.3246, 7.3243, 7.3239, 7.3235, 7.3231, 7.3241, 7.3237, 7.3247, 7.3274, 7.3269, 7.3265, 7.3275, 7.3272, 7.3268, 7.3266, 7.3276, 7.3273, 7.3268, 7.3263, 7.326, 7.3257, 7.3254, 7.3249, 7.3247, 7.3249, 7.3245, 7.3254, 7.3267, 7.3262, 7.3259, 7.3254, 7.325, 7.326, 7.3256, 7.3267, 7.3276, 7.3276, 7.3274, 7.3285, 7.3295, 7.3291, 7.3286, 7.3286, 7.3282, 7.3279, 7.3277, 7.3273, 7.3285, 7.3297, 7.3292, 7.3302, 7.3311, 7.3306, 7.3301, 7.3312, 7.3311, 7.3308, 7.3303, 7.3301, 7.3311, 7.3306, 7.3302, 7.33, 7.3295, 7.3291, 7.3287, 7.3283, 7.3279, 7.329, 7.331, 7.3321, 7.3319, 7.3314, 7.3298, 7.333, 7.3339, 7.3351, 7.3347, 7.3356, 7.3353, 7.3348, 7.3343, 7.3338, 7.3335, 7.3332, 7.3327, 7.3324, 7.3321, 7.3316, 7.3326, 7.3321, 7.3316, 7.3311, 7.332, 7.3315, 7.331, 7.3305, 7.3288, 7.3306, 7.3301, 7.3297, 7.3365, 7.336, 7.3356, 7.3354, 7.3351, 7.3348, 7.3343, 7.3353, 7.3349, 7.3345, 7.334, 7.3335, 7.3345, 7.3343, 7.3353, 7.3348, 7.3343, 7.3341, 7.3336, 7.3331, 7.3331, 7.3327, 7.3322, 7.3332, 7.3328, 7.3324, 7.332, 7.3317, 7.3327, 7.3324, 7.3321, 7.3317, 7.3315, 7.3325000000000005, 7.333500000000001, 7.3331, 7.3341, 7.3351, 7.3347, 7.3345, 7.3355, 7.3354, 7.3365, 7.3363, 7.336, 7.3356, 7.3353, 7.3362, 7.3372, 7.3367, 7.3363, 7.3358, 7.337, 7.3365, 7.336, 7.3356, 7.3354, 7.3364, 7.3361, 7.3358, 7.3353, 7.3363000000000005, 7.337300000000001, 7.3383, 7.338, 7.338, 7.3375, 7.337, 7.3366, 7.3364, 7.3361, 7.3371, 7.3369, 7.3398, 7.3406, 7.3414, 7.3411, 7.3407, 7.3403, 7.3413, 7.3421, 7.3429, 7.3426, 7.3435, 7.343, 7.3425, 7.3438, 7.3433, 7.3429, 7.3425, 7.3421, 7.343, 7.3426, 7.3424, 7.3422, 7.3432, 7.3427, 7.3422, 7.3434, 7.3432, 7.3429, 7.3425, 7.342, 7.3419, 7.3429, 7.3429, 7.3439000000000005, 7.3435, 7.3432, 7.3427, 7.3425, 7.3425, 7.3421, 7.342, 7.3405, 7.3401, 7.3397, 7.3394, 7.339, 7.3386, 7.3381, 7.3377, 7.3375, 7.337, 7.3381, 7.3377, 7.3372, 7.3383, 7.3378, 7.3375, 7.3385, 7.338, 7.3392, 7.3388, 7.3398, 7.3395, 7.3392, 7.3389, 7.3398, 7.3396, 7.3392, 7.3388, 7.3384, 7.338, 7.3377, 7.3372, 7.338, 7.3375, 7.3383, 7.338, 7.3375, 7.3371, 7.338, 7.339, 7.3385, 7.3381, 7.3379, 7.3412, 7.3423, 7.342, 7.3416, 7.3411, 7.3408, 7.3404, 7.3399, 7.3394, 7.3391, 7.3388, 7.3398, 7.3393, 7.3388, 7.3387, 7.3383, 7.3392, 7.3414, 7.3409, 7.3406, 7.3402, 7.3397, 7.3393, 7.3389, 7.3384, 7.338, 7.338, 7.3376, 7.3371, 7.3366, 7.3361, 7.3361, 7.3345, 7.3342, 7.3338, 7.3347, 7.3343, 7.3339, 7.3338, 7.3334, 7.3344, 7.3349, 7.3359, 7.3356, 7.3352, 7.3338, 7.3336, 7.3332, 7.3342, 7.334, 7.3336, 7.3332, 7.3327, 7.3325, 7.332, 7.3316, 7.3312, 7.3308, 7.3304, 7.3314, 7.332400000000001, 7.3323, 7.3327, 7.3323, 7.3318, 7.3314, 7.3311, 7.3308, 7.3306, 7.3302, 7.3297, 7.3294, 7.3292, 7.3289, 7.3286, 7.3283, 7.3279, 7.3275, 7.3271, 7.3267, 7.3266, 7.3274, 7.3384, 7.338, 7.3377, 7.3374, 7.337, 7.3366, 7.3361, 7.3411, 7.3409, 7.3405, 7.3414, 7.3409, 7.3417, 7.3426, 7.3425, 7.3421, 7.3429, 7.3424, 7.3419, 7.3414, 7.3411, 7.3406, 7.3404, 7.3402, 7.3387, 7.3382, 7.3381, 7.3376, 7.336, 7.3358, 7.3355, 7.3364, 7.3359, 7.3355, 7.3354, 7.3349, 7.3345, 7.3342, 7.3337, 7.3347, 7.3357, 7.3354, 7.3351, 7.3348, 7.3358, 7.3355, 7.3354, 7.3351, 7.3348, 7.3344, 7.3341, 7.3339, 7.3336, 7.3345, 7.334, 7.3358, 7.3354, 7.3364, 7.337400000000001, 7.3372, 7.3369, 7.3365, 7.336, 7.3355, 7.3353, 7.3349, 7.3345, 7.3344, 7.334, 7.3351, 7.336, 7.3357, 7.3366, 7.3361, 7.3357, 7.3353, 7.3349, 7.3348, 7.3333, 7.333, 7.3327, 7.3325, 7.3323, 7.3319, 7.3328, 7.3337, 7.3332, 7.3328, 7.3327, 7.3322, 7.332, 7.3319, 7.3316, 7.3314, 7.3311, 7.3309, 7.332, 7.3317, 7.3315, 7.3311, 7.3308, 7.3305, 7.33, 7.3297, 7.3293, 7.3288, 7.3284, 7.3282, 7.328, 7.3278, 7.3274, 7.3283, 7.3278, 7.329, 7.3287, 7.3285, 7.3349, 7.3346, 7.3357, 7.3354, 7.3352, 7.3348, 7.3357, 7.3352, 7.3349, 7.3345, 7.3341, 7.3336, 7.3335, 7.3331, 7.3329, 7.3325, 7.3335, 7.3332, 7.3331, 7.3327, 7.3325, 7.332, 7.3318, 7.3315, 7.3312, 7.3307, 7.3304, 7.33, 7.3297, 7.3295, 7.3286, 7.3283, 7.3281, 7.3278, 7.3275, 7.3271, 7.3272, 7.3282, 7.3279, 7.329, 7.3295, 7.3308, 7.3305, 7.3316, 7.3324, 7.3321, 7.3318, 7.3315, 7.331, 7.3319, 7.3315, 7.331, 7.3319, 7.3314, 7.331, 7.3309, 7.3308, 7.3331, 7.3342, 7.3338, 7.3335, 7.3345, 7.3356, 7.3352, 7.3348, 7.3345, 7.3342, 7.3338, 7.3334, 7.3331, 7.3327, 7.3322, 7.3319, 7.3315, 7.3311, 7.332, 7.3318, 7.3316, 7.3312, 7.3322, 7.3334, 7.3344, 7.3341, 7.3337, 7.3333, 7.333, 7.3329, 7.3325, 7.3325, 7.3334, 7.3331, 7.3327, 7.335, 7.3346, 7.3347, 7.3343, 7.3343, 7.3353, 7.3353, 7.3349, 7.3347, 7.3344, 7.3343, 7.334, 7.3353, 7.3357, 7.3354, 7.3352, 7.335, 7.3335, 7.332, 7.3317, 7.3313, 7.3311, 7.3306, 7.3304, 7.329, 7.3288, 7.3286, 7.3282, 7.3281, 7.3266, 7.3264, 7.326, 7.3259, 7.3256, 7.3265, 7.3262, 7.3283, 7.3278, 7.3275, 7.3282, 7.3291, 7.3287, 7.3313, 7.3311, 7.3372, 7.3371, 7.3367, 7.3363, 7.3361, 7.337, 7.3366, 7.3364, 7.336, 7.3357, 7.3356, 7.3352, 7.3349, 7.3346, 7.3344, 7.334, 7.3342, 7.3338, 7.3337, 7.3335, 7.3344, 7.3353, 7.3351, 7.3346, 7.3342, 7.3338, 7.3336, 7.3331, 7.3329, 7.3326, 7.3311, 7.3308, 7.3306, 7.3305, 7.3302, 7.331, 7.3307, 7.3307, 7.3317, 7.3302, 7.3288, 7.3288, 7.3284, 7.328, 7.3276, 7.3273, 7.327, 7.3266, 7.3263, 7.3271, 7.3267, 7.3264, 7.326, 7.3257, 7.3265, 7.3273, 7.3292, 7.3291, 7.3289, 7.3323, 7.331, 7.3319, 7.3316, 7.3302, 7.3302, 7.3309, 7.3305, 7.3301, 7.3297, 7.3294, 7.3292, 7.3291, 7.329, 7.3286, 7.3283, 7.328, 7.3277, 7.3275, 7.3283, 7.3279, 7.3289, 7.3286, 7.3282, 7.3279, 7.3264, 7.326, 7.3256, 7.3255, 7.3251, 7.3249, 7.3246, 7.3231, 7.3229, 7.3214, 7.3224, 7.322, 7.3216, 7.3212, 7.3214, 7.3238, 7.3236, 7.3234, 7.3247, 7.3243, 7.3253, 7.3242, 7.3229, 7.3237, 7.3258, 7.3254, 7.3249, 7.3247, 7.3243, 7.324, 7.3236, 7.3232, 7.3258, 7.3269, 7.3277, 7.3282, 7.3271, 7.3278, 7.3276, 7.3272, 7.3268, 7.3276, 7.3271, 7.3268, 7.3264, 7.3261, 7.3269, 7.3265, 7.3262, 7.3259, 7.3267, 7.3277, 7.3285, 7.3283, 7.328, 7.3278, 7.3276, 7.3274, 7.3259, 7.3246, 7.3242, 7.3228, 7.3224, 7.322, 7.3216, 7.3201, 7.32, 7.3196, 7.3205, 7.3202, 7.3211, 7.3207, 7.3202, 7.3199, 7.3196, 7.3191, 7.3188, 7.3185, 7.3193, 7.3188, 7.3178, 7.3176, 7.3172, 7.3168, 7.3164, 7.3162, 7.3182, 7.3178, 7.3174, 7.317, 7.3165, 7.3162, 7.317, 7.3178, 7.3176, 7.3175, 7.3173, 7.3169, 7.3165, 7.3173, 7.3169, 7.3165, 7.3172, 7.3168, 7.3189, 7.3175, 7.3172, 7.3168, 7.3164, 7.3174, 7.316, 7.3147, 7.3132, 7.3118, 7.3114, 7.311, 7.3107, 7.3105, 7.3101, 7.311, 7.3108, 7.3129, 7.3129, 7.3127, 7.3126, 7.3134, 7.312, 7.3107, 7.3104, 7.3101, 7.3099, 7.3095, 7.3091, 7.31, 7.3109, 7.3118, 7.3127, 7.3135, 7.3144, 7.314, 7.3137, 7.3133, 7.3129, 7.3126, 7.3122, 7.3119, 7.3116, 7.3113, 7.3111, 7.3107, 7.3104, 7.309, 7.3099, 7.3097, 7.3096, 7.3095, 7.3105, 7.3101, 7.311, 7.3097, 7.3095, 7.3093, 7.3091, 7.3088, 7.3087, 7.31, 7.3087, 7.3095, 7.3092, 7.3091, 7.3087, 7.3095, 7.3091, 7.3098, 7.3095, 7.3103, 7.3099, 7.3099, 7.3096, 7.3093, 7.309, 7.3089, 7.3098, 7.3097, 7.3106, 7.3102, 7.3098, 7.3094, 7.3092, 7.31, 7.3108, 7.3116, 7.3113, 7.3109, 7.3106, 7.3103, 7.3099, 7.3095, 7.3094, 7.3102, 7.3099, 7.3107, 7.3104, 7.31, 7.3096, 7.3104, 7.31, 7.3108, 7.3104, 7.3102, 7.3098, 7.3107, 7.3104, 7.31, 7.3097, 7.3093, 7.3102, 7.3093, 7.309, 7.3088, 7.3118, 7.3126, 7.3125, 7.3153, 7.3162, 7.316, 7.317, 7.3168, 7.3189, 7.3186, 7.3193, 7.3191, 7.3188, 7.3187, 7.3183, 7.3179, 7.3175, 7.3171, 7.3167, 7.3175, 7.3171, 7.3169, 7.3176, 7.3186, 7.3183, 7.3179, 7.3176, 7.3174, 7.317, 7.3177, 7.3173, 7.3171, 7.3168, 7.3166, 7.3162, 7.3169, 7.3165, 7.3162, 7.3149, 7.3145, 7.3142, 7.314, 7.3137, 7.3137, 7.3134, 7.3144, 7.314, 7.3137, 7.3145, 7.3153, 7.315, 7.3147, 7.3143, 7.3141, 7.3144, 7.3141, 7.3137, 7.3134, 7.3131, 7.3127, 7.3124, 7.3124, 7.3121, 7.3118, 7.3117, 7.3114, 7.3112, 7.3118, 7.3115, 7.3111, 7.3119, 7.3117, 7.3126, 7.3122, 7.3107, 7.3115, 7.3111, 7.3108, 7.3104, 7.3112, 7.3109, 7.3106, 7.3113, 7.3109, 7.3106, 7.3113, 7.311, 7.3119, 7.3115, 7.3112, 7.3108, 7.3105, 7.3101, 7.3099, 7.3106, 7.3114, 7.3111, 7.3107, 7.3103, 7.3102, 7.3101, 7.3098, 7.3095, 7.3104, 7.3103, 7.3099, 7.3097, 7.3096, 7.3093, 7.3092, 7.3101, 7.3097, 7.3097, 7.3094, 7.3091, 7.3088, 7.3085, 7.3084, 7.3081, 7.3078, 7.3077, 7.3065, 7.3063, 7.3059, 7.3067, 7.3065, 7.3063, 7.3074, 7.307, 7.3067, 7.3074, 7.3082, 7.308, 7.3089, 7.3087, 7.3084, 7.3093, 7.3089, 7.3099, 7.3096, 7.3092, 7.3089, 7.3086, 7.3084, 7.3082, 7.3078, 7.3074, 7.3071, 7.3069, 7.3066, 7.3065, 7.3074, 7.3089, 7.3085, 7.3082, 7.3101, 7.3098, 7.3095, 7.3091, 7.3092, 7.3116, 7.3113, 7.3109, 7.3109, 7.313, 7.3139, 7.3138, 7.3135, 7.3134, 7.313, 7.3138, 7.3136, 7.3133, 7.3131, 7.3138, 7.3135, 7.3132, 7.314, 7.3136, 7.3143, 7.314, 7.3148, 7.3157, 7.3167, 7.3164, 7.3162, 7.3158, 7.3155, 7.3154, 7.315, 7.3148, 7.3145, 7.3143, 7.315, 7.3148, 7.3144, 7.314, 7.3137, 7.3134, 7.313, 7.3138, 7.3157, 7.3153, 7.3149, 7.3146, 7.3153, 7.315, 7.3146, 7.3154, 7.3153, 7.3161, 7.3158, 7.3154, 7.315, 7.3146, 7.3143, 7.3143, 7.3141, 7.3129, 7.3127, 7.3123, 7.3141, 7.3129, 7.3125, 7.3121, 7.3118, 7.3126, 7.3123, 7.3156, 7.3153, 7.3186, 7.3182, 7.3168, 7.3168, 7.3164, 7.3164, 7.3171, 7.3167, 7.3163, 7.3149, 7.3157, 7.3156, 7.3153, 7.3161, 7.3169, 7.3168, 7.3167, 7.3176, 7.3172, 7.3172, 7.3168, 7.3176, 7.3175, 7.3171, 7.3179, 7.3177, 7.3174, 7.317, 7.3178, 7.3174, 7.3173, 7.3171, 7.3179, 7.3175, 7.3171, 7.3168, 7.3164, 7.3163, 7.3159, 7.3164, 7.316, 7.3157, 7.3156, 7.3152, 7.316, 7.3157, 7.3165, 7.3162, 7.3159, 7.3158, 7.3155, 7.3162, 7.3159, 7.3155, 7.3154, 7.3189, 7.3188, 7.3218, 7.3216, 7.3215, 7.3224, 7.3232, 7.3231, 7.3246, 7.3242, 7.3241, 7.3238, 7.3245, 7.3242, 7.3238, 7.3235, 7.3235, 7.3231, 7.3228, 7.3235, 7.3232, 7.3229, 7.3225, 7.3221, 7.3228, 7.3226, 7.3239, 7.3238, 7.3234, 7.3231, 7.3229, 7.3246, 7.3253, 7.3249, 7.3245, 7.3241, 7.3239, 7.3237, 7.3235, 7.3233, 7.3229, 7.3225, 7.3221, 7.3217, 7.3213, 7.3211, 7.3209, 7.3206, 7.3203, 7.3212, 7.322, 7.3217, 7.3213, 7.3211, 7.3208, 7.3205, 7.3201, 7.3197, 7.3193, 7.32, 7.3198, 7.3194, 7.3192, 7.3189, 7.3188, 7.3186, 7.3194, 7.319, 7.3197, 7.3196, 7.3197, 7.3193, 7.3201, 7.3205, 7.3207, 7.321700000000001, 7.3214, 7.3211, 7.3209, 7.3217, 7.3214, 7.3222, 7.3219, 7.3216, 7.3226, 7.3225, 7.3221, 7.3219, 7.3216, 7.3214, 7.3211, 7.3207, 7.3204, 7.3211, 7.322100000000001, 7.3218, 7.3215, 7.3213, 7.321, 7.3218, 7.3228, 7.3266, 7.3266, 7.3263, 7.326, 7.3256, 7.3264, 7.3271, 7.3269, 7.3269, 7.3266, 7.3273, 7.328, 7.3287, 7.3285, 7.3293, 7.33, 7.3297, 7.3293, 7.329, 7.3288, 7.3286, 7.3284, 7.328, 7.3277, 7.3274, 7.3272, 7.328200000000001, 7.3313, 7.3309, 7.3317, 7.3324, 7.3321, 7.3317, 7.3324, 7.3322, 7.333, 7.3328, 7.3324, 7.332, 7.3316, 7.3323, 7.3319, 7.3317, 7.3313, 7.3311, 7.3308, 7.3308, 7.3315, 7.3311, 7.3308, 7.3306, 7.3302, 7.3298, 7.3296, 7.3294, 7.3296, 7.3292, 7.3299, 7.3286, 7.3273, 7.328, 7.3298, 7.3295, 7.3312, 7.3308, 7.3304, 7.3301, 7.3308, 7.3307, 7.3315, 7.3312, 7.3309, 7.3296, 7.3306000000000004, 7.3302, 7.3298, 7.3295, 7.3291, 7.3287, 7.3294, 7.3291, 7.3289, 7.33, 7.3313, 7.331, 7.3309, 7.3305, 7.3294, 7.329, 7.3292, 7.3288, 7.3286, 7.3282, 7.3279, 7.3276, 7.3274, 7.3271, 7.3269, 7.3268, 7.3264, 7.3267, 7.3274, 7.3273, 7.327, 7.3269, 7.3266, 7.3264, 7.326, 7.3259, 7.3255, 7.3254, 7.325, 7.3246, 7.3233, 7.3221, 7.3218, 7.3217, 7.3205, 7.3203, 7.3199, 7.3195, 7.3191, 7.3194, 7.319, 7.3186, 7.3184, 7.3183, 7.3181, 7.3188, 7.3192, 7.3207, 7.3204, 7.3207, 7.3205, 7.3202, 7.3198, 7.3197, 7.3196, 7.3192, 7.3199, 7.3195, 7.3213, 7.32, 7.3188, 7.3194, 7.3191, 7.3189, 7.3186, 7.3185, 7.3194, 7.319, 7.3197, 7.3194, 7.3195, 7.3196, 7.3195, 7.3193, 7.3191, 7.3191, 7.3188, 7.3185, 7.3182, 7.3179, 7.3177, 7.3186, 7.3184, 7.3183, 7.3179, 7.3176, 7.3174, 7.3171, 7.3159, 7.3156, 7.3153, 7.315, 7.3149, 7.3146, 7.3149, 7.3145, 7.3142, 7.3139, 7.3156, 7.3161, 7.3158, 7.3155, 7.3152, 7.3149, 7.3146, 7.3153, 7.315, 7.3146, 7.315600000000001, 7.3155, 7.3155, 7.3152, 7.3163, 7.3162, 7.3159, 7.3156, 7.3154, 7.3151, 7.3148, 7.3157, 7.3154, 7.3151, 7.3158, 7.3154, 7.3151, 7.3147, 7.3144, 7.314, 7.3137, 7.3135, 7.3132, 7.3128, 7.3129, 7.3126, 7.313, 7.3127, 7.3135, 7.3134, 7.3141, 7.3138, 7.3135, 7.3131, 7.3131, 7.3138, 7.3135, 7.3133, 7.313, 7.3128, 7.3124, 7.3121, 7.3128, 7.3138000000000005, 7.3136, 7.3133, 7.3133, 7.3132, 7.3129, 7.3136, 7.3134, 7.3135, 7.3134, 7.313, 7.3128, 7.3128, 7.3127, 7.3124, 7.3121, 7.3119, 7.3129, 7.3126, 7.3133, 7.3132, 7.3128, 7.3155, 7.3162, 7.3161, 7.3158, 7.3166, 7.3165, 7.3172, 7.3169, 7.3167, 7.3195, 7.3193, 7.323, 7.3228, 7.3227, 7.3224, 7.3212, 7.3209, 7.3207, 7.3205, 7.3202, 7.3199, 7.3196, 7.3193, 7.3199, 7.3195, 7.3185, 7.3181, 7.3178, 7.3185, 7.3182, 7.318, 7.3176, 7.3173, 7.3169, 7.317900000000001, 7.318900000000001, 7.3188, 7.3185, 7.3182, 7.3199, 7.3196, 7.3192, 7.3209, 7.3218, 7.3226, 7.3223, 7.3222, 7.3222, 7.3219, 7.3215, 7.3224, 7.3222, 7.3219, 7.3218, 7.3215, 7.3223, 7.3231, 7.3228, 7.3226, 7.3223, 7.322, 7.3216, 7.3216, 7.3213, 7.3211, 7.3208, 7.3206, 7.3214, 7.3214, 7.3211, 7.3209, 7.3216, 7.3213, 7.321, 7.3208, 7.3218000000000005, 7.3216, 7.3212, 7.3209, 7.3215, 7.3221, 7.3217, 7.3214, 7.3211, 7.3208, 7.3215, 7.3212, 7.3209, 7.3227, 7.3236, 7.3233, 7.323, 7.322, 7.3217, 7.3226, 7.3223, 7.323300000000001, 7.3231, 7.3238, 7.3235, 7.3242, 7.325, 7.3259, 7.3255, 7.3252, 7.325, 7.3246, 7.3245, 7.3253, 7.3251, 7.3258, 7.3266, 7.3272, 7.327, 7.3266, 7.3263, 7.326, 7.3257, 7.3254, 7.3261, 7.3259, 7.3256, 7.3252, 7.3259, 7.3256, 7.3283, 7.3271, 7.3278, 7.3275, 7.3272, 7.3269, 7.3275, 7.3282, 7.3279, 7.3277, 7.3273, 7.3279, 7.3268, 7.3275, 7.3274, 7.3271, 7.3267, 7.3264, 7.3262, 7.3269, 7.3266, 7.3264, 7.3272, 7.327, 7.3266, 7.3264, 7.3272, 7.327, 7.3267, 7.3266, 7.3265, 7.3271, 7.3279, 7.3278, 7.3277, 7.3283, 7.328, 7.3277, 7.3274, 7.327, 7.3268, 7.3265, 7.3262, 7.3258, 7.3256, 7.3253, 7.326300000000001, 7.3283, 7.3282, 7.3284, 7.3292, 7.3291, 7.3298, 7.3298, 7.3299, 7.3296, 7.3285, 7.3277, 7.3266, 7.3263, 7.3273, 7.327, 7.3268, 7.327, 7.3268, 7.3267, 7.3268, 7.3265, 7.3274, 7.3271, 7.3279, 7.328, 7.3278, 7.3286, 7.3284, 7.328, 7.3277, 7.3275, 7.3271, 7.3268, 7.3274, 7.3271, 7.3278, 7.3277, 7.3275, 7.3274, 7.3271, 7.326, 7.3258, 7.3254, 7.3243, 7.3242, 7.324, 7.3247, 7.3267, 7.3265, 7.3261, 7.3268, 7.3275, 7.3274, 7.3281, 7.3287, 7.3284, 7.3282, 7.3279, 7.3276, 7.3275, 7.3281, 7.328, 7.3279, 7.3285, 7.3282, 7.3289, 7.3297, 7.3304, 7.3301, 7.3298, 7.3295, 7.3294, 7.3295, 7.3294, 7.3291, 7.3299, 7.3343, 7.334, 7.3338, 7.3346, 7.3344, 7.3352, 7.335, 7.3348, 7.3356, 7.3353, 7.335, 7.3347, 7.3344, 7.3341, 7.3338, 7.3337, 7.3334, 7.3334, 7.3331, 7.3327, 7.3333, 7.3332, 7.333, 7.3326, 7.3323, 7.3312, 7.3302, 7.331, 7.3308, 7.3306, 7.3304, 7.3301, 7.3298, 7.3297, 7.3294, 7.3282, 7.3279, 7.3277, 7.3284, 7.3281, 7.3291, 7.3299, 7.3306, 7.3323, 7.3331, 7.3329, 7.3328, 7.3326, 7.3314, 7.3311, 7.3309, 7.3306, 7.3305, 7.3301, 7.3299, 7.3299, 7.3296, 7.3294, 7.3303, 7.3302, 7.3299, 7.3297, 7.3293, 7.3291, 7.3298, 7.3294, 7.3294, 7.3291, 7.3289, 7.3286, 7.3297, 7.3285, 7.3275, 7.3273, 7.3283000000000005, 7.328, 7.3278, 7.3275, 7.3273, 7.327, 7.3268, 7.3266, 7.3265, 7.3275, 7.3275, 7.3272, 7.3305, 7.3303, 7.3314, 7.3312, 7.3313, 7.3337, 7.3348, 7.3367, 7.3364, 7.338, 7.3377, 7.3384, 7.3381, 7.3379, 7.3385, 7.3383, 7.3371, 7.3368, 7.3365, 7.3362, 7.336, 7.3357, 7.3355, 7.3373, 7.337, 7.3368, 7.3365, 7.3362, 7.3361, 7.3358, 7.3354, 7.3342, 7.3339, 7.3336, 7.3333, 7.333, 7.3328, 7.3326, 7.3315, 7.3314, 7.3311, 7.3309, 7.3306, 7.3304, 7.3302, 7.331, 7.3307, 7.3306, 7.3304, 7.331, 7.3307, 7.3304, 7.3302, 7.33, 7.3298, 7.3295, 7.3294, 7.3292, 7.3298, 7.3295, 7.3292, 7.329, 7.3287, 7.3284, 7.3286, 7.3284, 7.328, 7.3277, 7.3274, 7.3272, 7.3272, 7.327, 7.3276, 7.3281, 7.3287, 7.3285, 7.3306, 7.3303, 7.33, 7.3307, 7.3304, 7.3302, 7.33, 7.3297, 7.3294, 7.3292, 7.3291, 7.3289, 7.3288, 7.3285, 7.3293, 7.3291, 7.3289, 7.3288, 7.3295, 7.3292, 7.3301, 7.3299, 7.3298, 7.3324, 7.3323, 7.333, 7.3328, 7.3335, 7.3333, 7.333, 7.3326, 7.3336, 7.3335, 7.3334, 7.333, 7.3328, 7.3325, 7.3322, 7.3329, 7.3327, 7.3323, 7.3314, 7.3313, 7.3319, 7.3316, 7.3321, 7.3319, 7.3317, 7.3314, 7.3321, 7.3318, 7.3316, 7.3314, 7.3312, 7.3309, 7.3319, 7.3317, 7.3315, 7.3313, 7.3311, 7.331, 7.3307, 7.3303, 7.3301, 7.33, 7.3297, 7.3294, 7.3291, 7.3298, 7.3297, 7.3294, 7.3292, 7.3289, 7.3286, 7.3285, 7.3281, 7.3278, 7.3275, 7.3272, 7.327, 7.3268, 7.3274, 7.328, 7.3277, 7.3283, 7.328, 7.329000000000001, 7.330000000000001, 7.331000000000001, 7.3307, 7.3304, 7.3293, 7.33, 7.331, 7.3307, 7.3317000000000005, 7.3314, 7.332400000000001, 7.3342, 7.334, 7.3337, 7.3335, 7.3341, 7.3339, 7.3336, 7.3335, 7.3331, 7.3327, 7.3337, 7.3334, 7.3331, 7.3329, 7.3328, 7.3326, 7.3323, 7.333, 7.3340000000000005, 7.334, 7.3338, 7.3335, 7.3332, 7.3329, 7.3328, 7.3333, 7.333, 7.3327, 7.3325, 7.3323, 7.332, 7.3317, 7.3314, 7.3311, 7.332, 7.3317, 7.332, 7.3318, 7.3316, 7.3313, 7.331, 7.3308, 7.3315, 7.3313, 7.3311, 7.331, 7.3307, 7.3304, 7.3314, 7.332400000000001, 7.3325, 7.3323, 7.3321, 7.3353, 7.3351, 7.3358, 7.3355, 7.3352, 7.3349, 7.3348, 7.3347, 7.3344, 7.3341, 7.3338, 7.3345, 7.3334, 7.3331, 7.3341, 7.3347, 7.3357, 7.3355, 7.3352, 7.3351, 7.3348, 7.3337, 7.3326, 7.3333, 7.3331, 7.3328, 7.3325, 7.3333, 7.333, 7.3327, 7.3325, 7.3323, 7.3329, 7.3326, 7.3323, 7.3333, 7.333, 7.3340000000000005, 7.3346, 7.3356, 7.3353, 7.335, 7.3347, 7.3344, 7.3341, 7.3338, 7.3327, 7.3333, 7.3323, 7.3321, 7.3319, 7.3325, 7.3322, 7.3319, 7.3316, 7.3313, 7.332, 7.3327, 7.3324, 7.3331, 7.333, 7.3328, 7.3326, 7.3325, 7.3332, 7.333, 7.3328, 7.3325, 7.3323, 7.334, 7.3337, 7.3357, 7.336, 7.3357, 7.3363, 7.3362, 7.3352, 7.3349, 7.3353, 7.335, 7.3353, 7.3361, 7.3369, 7.3359, 7.3349, 7.3338, 7.3345, 7.3344, 7.3341, 7.3338, 7.3335, 7.3333, 7.334, 7.3348, 7.3347, 7.3355, 7.3352, 7.335, 7.3359, 7.3356, 7.3362, 7.3359, 7.3366, 7.3364, 7.3361, 7.3367, 7.3364, 7.3364, 7.3362, 7.3359, 7.3358, 7.3355, 7.3352, 7.336, 7.3357, 7.3354, 7.3353, 7.3359, 7.3357, 7.3354, 7.3351, 7.334, 7.3338, 7.3354, 7.3351, 7.3348, 7.3355, 7.3353, 7.3351, 7.3348, 7.3346, 7.3344, 7.3341, 7.3338, 7.3345, 7.3349, 7.3348, 7.3345, 7.3344, 7.3341, 7.3339, 7.3347, 7.3345, 7.3347, 7.3349, 7.3347, 7.3345, 7.3344, 7.3341, 7.3347, 7.3344, 7.3342, 7.3339, 7.3345, 7.3342, 7.3378, 7.3375, 7.3372, 7.337, 7.3367, 7.3364, 7.3361, 7.3358, 7.3355, 7.336, 7.3365, 7.3363, 7.336, 7.3368, 7.3365, 7.3364, 7.3362, 7.3359, 7.3356, 7.3355, 7.3353, 7.3359, 7.3365, 7.3362, 7.336, 7.3357, 7.3354, 7.3351, 7.3341, 7.3339, 7.3345, 7.3352, 7.3349, 7.3348, 7.3346, 7.3343, 7.3341, 7.3349, 7.3355, 7.3352, 7.3349, 7.3346, 7.3343, 7.3341, 7.3338, 7.3345, 7.3342, 7.3339, 7.3338, 7.3336, 7.3325, 7.3335, 7.3332, 7.333, 7.3327, 7.3324, 7.333, 7.3327, 7.3317, 7.3317, 7.3314, 7.3313, 7.3311, 7.3309, 7.3316, 7.3315, 7.3313, 7.331, 7.3309, 7.3306, 7.3304, 7.3301, 7.3299, 7.3307, 7.3315, 7.3312, 7.3309, 7.3306, 7.3312, 7.331, 7.331, 7.3308, 7.3315, 7.3313, 7.332, 7.3325, 7.3322, 7.3326, 7.333600000000001, 7.3333, 7.3331, 7.3328, 7.3332, 7.3338, 7.3344, 7.3334, 7.3341, 7.3338, 7.3344, 7.3341, 7.3339, 7.3336, 7.3346, 7.3343, 7.3341, 7.334, 7.3338, 7.3336, 7.3334, 7.3332, 7.333, 7.3319, 7.3316, 7.3316, 7.3315, 7.3315, 7.3312, 7.3309, 7.3307, 7.3298, 7.3288, 7.3278, 7.3275, 7.3274, 7.3273, 7.3262, 7.3252, 7.3243, 7.3235, 7.3233, 7.323, 7.3236, 7.3251, 7.324, 7.323, 7.3228, 7.3227, 7.3225, 7.3222, 7.3229, 7.3239, 7.3238, 7.324800000000001, 7.3245, 7.326, 7.3257, 7.3255, 7.3253, 7.3251, 7.324, 7.3246, 7.3245, 7.3245, 7.3244, 7.3249, 7.3254, 7.3261, 7.326, 7.3259, 7.3257, 7.3259, 7.3256, 7.3253, 7.325, 7.3247, 7.3244, 7.3242, 7.324, 7.3237, 7.3236, 7.3233, 7.323, 7.3219, 7.3209, 7.3219, 7.322900000000001, 7.323900000000001, 7.3238, 7.3235, 7.3232, 7.3231, 7.3228, 7.3234, 7.3242, 7.3241, 7.3238, 7.3246, 7.3243, 7.324, 7.3247, 7.3245, 7.3251, 7.325, 7.3247, 7.3244, 7.3242, 7.3239, 7.3237, 7.3234, 7.3232, 7.323, 7.3228, 7.3235, 7.3233, 7.3231, 7.3228, 7.3225, 7.3231, 7.3229, 7.3227, 7.3226, 7.3224, 7.3221, 7.3219, 7.3217, 7.3215, 7.3214, 7.322, 7.3218, 7.3217, 7.3215, 7.3212, 7.3222000000000005, 7.322, 7.3226, 7.3233, 7.323, 7.3228, 7.3233, 7.323, 7.3228, 7.3225, 7.3223, 7.322, 7.3219, 7.3218, 7.3217, 7.3223, 7.3222, 7.3212, 7.321, 7.3207, 7.3206, 7.3212, 7.3209, 7.3206, 7.3216, 7.3213, 7.3218, 7.3216, 7.3216, 7.3213, 7.3213, 7.3211, 7.3209, 7.3219, 7.322900000000001, 7.3226, 7.323600000000001, 7.3242, 7.3241, 7.324, 7.3238, 7.3237, 7.3243, 7.3245, 7.3245, 7.3251, 7.3257, 7.3255, 7.3262, 7.326, 7.3265, 7.3255, 7.3253, 7.3251, 7.3241, 7.3238, 7.3236, 7.3234, 7.3233, 7.323, 7.3227, 7.3236, 7.3233, 7.3232, 7.3246, 7.3243, 7.3241, 7.3231, 7.323, 7.3247, 7.3245, 7.3242, 7.3242, 7.3239, 7.323, 7.3228, 7.3227, 7.3224, 7.3222, 7.322, 7.3219, 7.3216, 7.3214, 7.3212, 7.3218, 7.3217, 7.3222, 7.3219, 7.3224, 7.3234, 7.3226, 7.323600000000001, 7.324600000000001, 7.325600000000001, 7.3254, 7.326, 7.3258, 7.3256, 7.3253, 7.325, 7.3247, 7.3244, 7.3254, 7.3253, 7.325, 7.3259, 7.3256, 7.3262, 7.327, 7.3277, 7.3292, 7.3298, 7.3295, 7.3294, 7.3292, 7.3289, 7.3295, 7.3293, 7.329, 7.3287, 7.3286, 7.3285, 7.3284, 7.3282, 7.3279, 7.3279, 7.3277, 7.3274, 7.3272, 7.3271, 7.3269, 7.3275, 7.3273, 7.3271, 7.3268, 7.3274, 7.3272, 7.327, 7.3268, 7.3273, 7.3271, 7.3278, 7.3283, 7.3282, 7.328, 7.3277, 7.3276, 7.3274, 7.3279, 7.3277, 7.3275, 7.3273, 7.327, 7.3276, 7.3273, 7.327, 7.3276, 7.3282, 7.3281, 7.3279, 7.3285, 7.3282, 7.3281, 7.3286, 7.3284, 7.3283, 7.328, 7.327, 7.3267, 7.3264, 7.3274, 7.3272, 7.3278, 7.3275, 7.3281, 7.3279, 7.3278, 7.3276, 7.3265, 7.3255, 7.3253, 7.3259, 7.3257, 7.3257, 7.3257, 7.326700000000001, 7.3272, 7.327, 7.3269, 7.3266, 7.3272, 7.3278, 7.3276, 7.328600000000001, 7.329600000000001, 7.3293, 7.329, 7.3295, 7.33, 7.3298, 7.3296, 7.3301, 7.3307, 7.3297, 7.3303, 7.331300000000001, 7.3312, 7.3311, 7.3308, 7.3306, 7.3303, 7.3315, 7.3313, 7.3311, 7.3308, 7.3306, 7.3303, 7.3309, 7.3306, 7.3303, 7.331, 7.3315, 7.3312, 7.3309, 7.3314, 7.3311, 7.3309, 7.3308, 7.3305, 7.3303, 7.3302, 7.3301, 7.3308, 7.3308, 7.3313, 7.3311, 7.3308, 7.3306, 7.3303, 7.3309, 7.3299, 7.3305, 7.3302, 7.33, 7.3298, 7.3295, 7.33, 7.3297, 7.3294, 7.3292, 7.3298, 7.3308, 7.3305, 7.3304, 7.3301, 7.3308, 7.3306, 7.3319, 7.3317, 7.3322, 7.3336, 7.3334, 7.334, 7.3338, 7.3337, 7.3334, 7.3332, 7.333, 7.3344, 7.3358, 7.3373, 7.3371, 7.3377, 7.3376, 7.3375, 7.3373, 7.337, 7.3369, 7.3376, 7.3374, 7.3372, 7.3369, 7.3367, 7.3364, 7.3361, 7.3359, 7.3365, 7.3363, 7.338, 7.3377, 7.3375, 7.3373, 7.3379, 7.3388, 7.3386, 7.3383, 7.3381, 7.3379, 7.3404, 7.3401, 7.3408, 7.3415, 7.3412, 7.341, 7.3407, 7.3407, 7.3404, 7.3411, 7.3417, 7.3415, 7.3412, 7.3409, 7.3407, 7.3413, 7.341, 7.3416, 7.3414, 7.3412, 7.3418, 7.3417, 7.3415, 7.3421, 7.3419, 7.3416, 7.3421, 7.3428, 7.3434, 7.3433, 7.3439, 7.3438, 7.3443, 7.3433, 7.3431, 7.3428, 7.3427, 7.3433, 7.3439, 7.3436, 7.3435, 7.3432, 7.343, 7.3427, 7.3432, 7.343, 7.3429, 7.3427, 7.3425, 7.3422, 7.3419, 7.3417, 7.3415, 7.3407, 7.3405, 7.3404, 7.3403, 7.3408, 7.3405, 7.3403, 7.3401, 7.3398, 7.3395, 7.3392, 7.3389, 7.3387, 7.3384, 7.3382, 7.3387, 7.3393, 7.3391, 7.3388, 7.3409, 7.3406, 7.3403, 7.3405, 7.3402, 7.3394, 7.34, 7.3413, 7.3411, 7.3416, 7.3421, 7.3419, 7.3417, 7.3423, 7.342, 7.3425, 7.3422, 7.3423, 7.3434, 7.3439, 7.3437, 7.3468, 7.3473, 7.347, 7.3467, 7.3464, 7.3461, 7.3459, 7.3456, 7.3453, 7.3458, 7.3456, 7.3454, 7.3459, 7.3464, 7.3462, 7.3484, 7.3488, 7.3493, 7.3498, 7.3503, 7.3501, 7.3515, 7.3512, 7.3517, 7.3514, 7.3512, 7.351, 7.3508, 7.3505, 7.3503, 7.35, 7.3497, 7.3499, 7.3496, 7.3495, 7.3492, 7.349, 7.3488, 7.3494, 7.3491, 7.3496, 7.3502, 7.3499, 7.3497, 7.3494, 7.3492, 7.3499, 7.3505, 7.3503, 7.3502, 7.3499, 7.3502, 7.3507, 7.3513, 7.3519, 7.3518, 7.353, 7.3535, 7.3532, 7.353, 7.3535, 7.3532, 7.3537, 7.3542, 7.3547, 7.3544, 7.3549, 7.3546, 7.3551, 7.3549, 7.3546, 7.3544, 7.3557, 7.3554, 7.3551, 7.3548, 7.3546, 7.3551, 7.3556, 7.3561, 7.3558, 7.3562, 7.3559, 7.3568, 7.3565, 7.357, 7.3575, 7.3572, 7.357, 7.3568, 7.3569, 7.3569, 7.3574, 7.3575, 7.3572, 7.3586, 7.3583, 7.3589, 7.3603, 7.3609, 7.3607, 7.3613, 7.3614, 7.362, 7.3619, 7.3617, 7.3616, 7.3614, 7.3611, 7.3609, 7.3614, 7.3612, 7.3609, 7.3607, 7.3608, 7.3607, 7.3605, 7.361, 7.3608, 7.3605, 7.3603, 7.3601, 7.3599, 7.3597, 7.3595, 7.3592, 7.359, 7.3596, 7.3594, 7.3595, 7.3592, 7.3591, 7.3589, 7.3596, 7.3594, 7.3593, 7.3591, 7.3589, 7.3591, 7.3593, 7.3591, 7.3596, 7.3602, 7.3599, 7.3596, 7.3602, 7.36, 7.3597, 7.3595, 7.3592, 7.3591, 7.3588, 7.3586, 7.3584, 7.3584, 7.3581, 7.3587, 7.3584, 7.359, 7.3589, 7.3586, 7.3585, 7.3582, 7.358, 7.3586, 7.3584, 7.359, 7.3589, 7.3588, 7.3586, 7.3591, 7.3589, 7.3586, 7.3584, 7.3582, 7.3588, 7.3585, 7.3575, 7.3581, 7.3579, 7.3576, 7.3573, 7.3572, 7.3569, 7.3584, 7.3582, 7.3574, 7.3572, 7.3577, 7.3583, 7.3593, 7.3592, 7.3589, 7.3586, 7.3585, 7.3582, 7.358, 7.3572, 7.359, 7.3595, 7.3595, 7.3601, 7.36, 7.3597, 7.361, 7.3616, 7.3613, 7.361, 7.3623, 7.362, 7.3617, 7.3615, 7.3613, 7.361, 7.3608, 7.3605, 7.3602, 7.3607, 7.3605, 7.3604, 7.3601, 7.3599, 7.3597, 7.3602, 7.36, 7.3621, 7.3619, 7.3617, 7.3614, 7.3612, 7.361, 7.3607, 7.3604, 7.3602, 7.36, 7.3606, 7.3604, 7.3604, 7.3602, 7.36, 7.3604, 7.3602, 7.3601, 7.3598, 7.3604, 7.3617, 7.3615, 7.3613, 7.3612, 7.363, 7.3638, 7.3636, 7.3633, 7.3632, 7.3629, 7.3627, 7.364, 7.3639, 7.3636, 7.3634, 7.3632, 7.3629, 7.3626, 7.3631, 7.3644, 7.3653, 7.3652, 7.3653, 7.3651, 7.3649, 7.3646, 7.3651, 7.3657, 7.3655, 7.3654, 7.3653, 7.365, 7.365, 7.3648, 7.3655, 7.3652, 7.3684, 7.3681, 7.3679, 7.3677, 7.3674, 7.368, 7.3679, 7.3678, 7.3677, 7.3676, 7.3682, 7.368, 7.3678, 7.3683, 7.368, 7.3677, 7.3683, 7.3682, 7.3683, 7.3696, 7.3694, 7.3691, 7.3688, 7.3686, 7.3684, 7.3682, 7.3687, 7.3684, 7.3682, 7.3687, 7.3686, 7.3683, 7.3681, 7.368, 7.3677, 7.3699, 7.3697, 7.3694, 7.3699, 7.3696, 7.3701, 7.3699, 7.3697, 7.3694, 7.3692, 7.3697, 7.3702, 7.3699, 7.3696, 7.3694, 7.3691, 7.3688, 7.3693, 7.369, 7.3688, 7.3686, 7.3684, 7.3681, 7.3678, 7.3676, 7.3675, 7.3672, 7.3669, 7.3666, 7.3664, 7.3661, 7.3666, 7.3671, 7.3676, 7.3675, 7.3673, 7.367, 7.3682, 7.3679, 7.3681, 7.3679, 7.3677, 7.3675, 7.3673, 7.367, 7.3677, 7.3682, 7.368, 7.3677, 7.369, 7.3687, 7.3685, 7.369, 7.3689, 7.3688, 7.3686, 7.3683, 7.3688, 7.3685, 7.3682, 7.368, 7.3678, 7.3677, 7.3682, 7.3681, 7.3673, 7.3679, 7.3683, 7.368, 7.3678, 7.3676, 7.3674, 7.3671, 7.3676, 7.3674, 7.3672], '192.168.122.114': [5.9025, 6.0012, 7.0126, 10.3557, 10.7287, 9.8321, 10.0603, 9.5307, 9.1465, 9.4261, 9.1891, 8.9185, 8.6481, 8.4332, 8.6149, 8.4506, 8.308, 8.2204, 8.137, 8.0005, 7.909, 7.8219, 7.755, 7.6714, 7.6139, 7.7478, 7.6607, 7.5889, 7.5251, 7.4613, 7.5808, 7.5326, 7.4711, 7.413, 7.3501, 7.447, 7.5375, 7.4951, 7.4379, 7.4009, 7.3505, 7.3213, 7.2962, 7.2641, 7.237, 7.2031, 7.1906, 7.3816, 7.3684, 7.3312, 7.3119, 7.3794, 7.3424, 7.3109, 7.2765, 7.2436, 7.2123, 7.1814, 7.1522, 7.1261, 7.0963, 7.071, 7.0513, 7.029, 7.0935, 7.1472, 7.1242, 7.143, 7.2063, 7.1816, 7.1664, 7.1422, 7.1189, 7.0977, 7.083, 7.0687, 7.0473, 7.0333, 7.0281, 7.0133, 6.9956, 6.9952, 6.9852, 6.9823, 6.972, 6.9668, 6.948, 6.949000000000001, 6.9457, 6.946700000000001, 6.9323, 6.9192, 6.9019, 6.9473, 6.9314, 6.9343, 6.9188, 6.9045, 6.8901, 6.8795, 6.8718, 6.8725, 6.8694, 6.8589, 6.8503, 6.8491, 6.8394, 6.8304, 6.8288, 6.8768, 6.8654, 6.8593, 6.8958, 6.8848, 6.8751, 6.8622, 6.8572, 6.8464, 6.8372, 6.8305, 6.8638, 6.9447, 6.9389, 6.9333, 6.9199, 6.9504, 6.9408, 6.9299, 6.9259, 6.9178, 6.9073, 6.8968, 7.0568, 7.0462, 7.0369, 7.0261, 7.0171, 7.0058, 6.999, 6.9925, 6.9904, 6.9875, 7.0144, 7.005, 6.9942, 6.9889, 6.9783, 6.9682, 6.9949, 6.9851, 6.9754, 6.9674, 6.9594, 6.9532, 6.9586, 6.9586, 6.984, 7.0072, 6.9978, 7.0225, 7.0235, 7.0224, 7.0575, 7.0877, 7.0801, 7.0728, 7.0652, 7.0553, 7.0557, 7.0478, 7.0409, 7.0318, 7.0531, 7.0515, 7.0415, 7.0341, 7.0249, 7.0256, 7.0577, 7.1008, 7.0944, 7.0857, 7.0795, 7.0698, 7.0606, 7.055, 7.0499, 7.0432, 7.0645, 7.0911, 7.0852, 7.0761, 7.0675, 7.0589, 7.0503, 7.0679, 7.0898, 7.1086, 7.1072, 7.0984, 7.0909, 7.082, 7.0808, 7.0779, 7.0711, 7.0899, 7.0842, 7.081, 7.0747, 7.0757, 7.0715, 7.0688, 7.0606, 7.0526, 7.072, 7.0669, 7.0591, 7.0516, 7.0468, 7.0406, 7.0989, 7.0927, 7.0873, 7.0814, 7.0767, 7.1699, 7.1631, 7.1712, 7.1515, 7.152500000000001, 7.1481, 7.142, 7.143000000000001, 7.1359, 7.136900000000001, 7.1535, 7.2304, 7.2085, 7.2042, 7.1992, 7.200200000000001, 7.201200000000001, 7.202200000000001, 7.2216, 7.2606, 7.2461, 7.2413, 7.2582, 7.2523, 7.2533, 7.2459, 7.2392, 7.2315, 7.2463, 7.2473, 7.2483, 7.2649, 7.3017, 7.3007, 7.3227, 7.3562, 7.3398, 7.3371, 7.331, 7.3465, 7.36, 7.3538, 7.3548, 7.3519, 7.3448, 7.3581, 7.3543, 7.3668, 7.3641, 7.3766, 7.3754, 7.4093, 7.404, 7.398, 7.4084, 7.4028, 7.4007, 7.399, 7.4157, 7.4088, 7.4021, 7.3992, 7.3927, 7.3858, 7.3818, 7.4015, 7.4001, 7.4122, 7.4257, 7.4215, 7.4218, 7.4737, 7.4667, 7.4601, 7.4545, 7.4506, 7.445, 7.4449, 7.4711, 7.4758, 7.4687, 7.4615, 7.4612, 7.4552, 7.4656, 7.4801, 7.4733, 7.4684, 7.4616, 7.4569, 7.4509, 7.4618, 7.455, 7.4522, 7.4478, 7.4442, 7.4409, 7.4363, 7.4299, 7.4238, 7.4202, 7.4163, 7.4101, 7.4037, 7.3979, 7.4075, 7.4062, 7.4161, 7.4112, 7.4073, 7.403, 7.3974, 7.3923, 7.3869, 7.3816, 7.3754, 7.37, 7.3815, 7.3777, 7.3725, 7.3703, 7.3655, 7.3596, 7.3556, 7.3513, 7.3467, 7.3406, 7.3359, 7.3313, 7.3411, 7.3524, 7.3512, 7.3474, 7.3425, 7.3367, 7.3332, 7.3296, 7.3268, 7.337, 7.3316, 7.3263, 7.3219, 7.3185, 7.3161, 7.3276, 7.3242, 7.3204, 7.3104, 7.3085, 7.3045, 7.316, 7.3123, 7.3242, 7.3217, 7.3196, 7.3186, 7.3149, 7.3116, 7.3256, 7.3371, 7.3332, 7.3437, 7.352, 7.3485, 7.3439, 7.3457, 7.3428, 7.3403, 7.3366, 7.3315, 7.329, 7.3277, 7.3262, 7.3234, 7.321, 7.3301, 7.3256, 7.3208, 7.3308, 7.3261, 7.335, 7.3302, 7.3279, 7.3257, 7.3218, 7.3194, 7.3147, 7.3106, 7.3106, 7.3098, 7.3091, 7.3182, 7.3136, 7.3091, 7.3079, 7.3036, 7.3011, 7.2993, 7.3086, 7.314, 7.3103, 7.3056, 7.3247, 7.3336, 7.3306, 7.3387, 7.336, 7.3318, 7.3272, 7.3371, 7.3332, 7.3298, 7.3396, 7.337, 7.3339, 7.3292, 7.3386, 7.3358, 7.331, 7.3385, 7.3359, 7.3325, 7.331, 7.3273, 7.3258, 7.3226, 7.3191, 7.3166, 7.3129, 7.3099, 7.3296, 7.3383, 7.3347, 7.3435, 7.3396, 7.3498, 7.3468, 7.3424, 7.3399, 7.3423, 7.3512, 7.3511, 7.3601, 7.3564, 7.354, 7.3495, 7.3474, 7.3438, 7.3633, 7.3597, 7.3558, 7.3642, 7.3605, 7.37, 7.3784, 7.3746, 7.3713, 7.3673, 7.3651, 7.363, 7.3601, 7.3681, 7.3646, 7.3617, 7.3609, 7.3575, 7.3551, 7.3634, 7.3616, 7.3576, 7.3565, 7.3542, 7.3509, 7.3479, 7.3548, 7.3518, 7.3484, 7.3566, 7.3649, 7.3609, 7.3602, 7.3577, 7.3545, 7.3615, 7.3582, 7.3573, 7.357, 7.3644, 7.3645, 7.3606, 7.3583, 7.3648, 7.3723, 7.3706, 7.3671, 7.3645, 7.3603, 7.3584, 7.3573, 7.3544, 7.3523, 7.3583, 7.3643, 7.3608, 7.3573, 7.3554, 7.352, 7.3516, 7.3491, 7.3461, 7.3433, 7.3408, 7.3384, 7.3358, 7.3349, 7.331, 7.3293, 7.3371, 7.3364, 7.3345, 7.3407, 7.3396, 7.337, 7.334, 7.3328, 7.3297, 7.3272, 7.3247, 7.3216, 7.3183, 7.3155, 7.3222, 7.3199, 7.3173, 7.3157, 7.3127, 7.3102, 7.3082, 7.3046, 7.3129, 7.3105, 7.3081, 7.3054, 7.302, 7.3081, 7.3058, 7.3024, 7.3004, 7.298, 7.2947, 7.2921, 7.2984, 7.2961, 7.3028, 7.315, 7.3119, 7.309, 7.3173, 7.3149, 7.3126, 7.3098, 7.3082, 7.3088, 7.3057, 7.3028, 7.3006, 7.2987, 7.3045, 7.3025, 7.2997, 7.2965, 7.2935, 7.2999, 7.298, 7.2963, 7.2935, 7.2908, 7.2968, 7.2938, 7.3003, 7.3013, 7.3106, 7.3102, 7.3076, 7.3054, 7.3022, 7.3081, 7.3061, 7.3045, 7.3023, 7.3074, 7.3043, 7.3011, 7.2982, 7.2961, 7.2932, 7.2899, 7.2866, 7.2923, 7.2983, 7.2957, 7.3016, 7.2992, 7.2964, 7.2934, 7.2928, 7.3025, 7.3022, 7.2991, 7.3047, 7.3021, 7.3088, 7.3064, 7.3076, 7.305, 7.3029, 7.301, 7.3233, 7.3206, 7.3178, 7.3249, 7.3219, 7.328, 7.3252, 7.3307, 7.3278, 7.3333, 7.3303, 7.3353, 7.3401, 7.3382, 7.337, 7.347, 7.3449, 7.3435, 7.3403, 7.3389, 7.3362, 7.3353, 7.3326, 7.3379, 7.3433, 7.3421, 7.3401, 7.3378, 7.336, 7.333, 7.3318, 7.3296, 7.329, 7.3275, 7.3254, 7.3255, 7.3237, 7.3285, 7.326, 7.3246, 7.3223, 7.323, 7.3216, 7.3195, 7.319, 7.3168, 7.3152, 7.321, 7.3258, 7.3239, 7.3211, 7.3271, 7.3257, 7.333, 7.3309, 7.3287, 7.3257, 7.324, 7.3213, 7.3214, 7.3208, 7.3181, 7.3175, 7.3176, 7.3154, 7.316, 7.315, 7.3137, 7.3192, 7.3172, 7.3235, 7.3233, 7.3213, 7.3496, 7.3548, 7.3521, 7.3573, 7.3563, 7.3558, 7.355, 7.3524, 7.3502, 7.341, 7.3382, 7.3375, 7.3367, 7.3344, 7.3398, 7.3381, 7.3366, 7.3423, 7.34, 7.3474, 7.3455, 7.3426, 7.3411, 7.3322, 7.3298, 7.3417, 7.3458, 7.3433, 7.3409, 7.3395, 7.3367, 7.3345, 7.3332, 7.3319, 7.33, 7.3352, 7.333, 7.3316, 7.3294, 7.3281, 7.3257, 7.3301, 7.3279, 7.3267, 7.3244, 7.3217, 7.3194, 7.3174, 7.315, 7.3123, 7.3103, 7.3086, 7.3147, 7.3342, 7.3337, 7.3321, 7.3303, 7.329, 7.3346, 7.3329, 7.3303, 7.3282, 7.3258, 7.3256, 7.3233, 7.3212, 7.319, 7.3166, 7.3146, 7.3128, 7.3174, 7.3159, 7.3138, 7.3184, 7.3183, 7.3167, 7.3159, 7.3134, 7.311, 7.3085, 7.3066, 7.3085, 7.3068, 7.3047, 7.3091, 7.3147, 7.3189, 7.3109, 7.3159, 7.3138, 7.3117, 7.3094, 7.3071, 7.3053, 7.3037, 7.3025, 7.3006, 7.3054, 7.3115, 7.31, 7.3025, 7.3, 7.2986, 7.3031, 7.3006, 7.2989, 7.3043, 7.3018, 7.302, 7.3008, 7.3052, 7.3043, 7.3025, 7.3149, 7.313, 7.3124, 7.3116, 7.31, 7.3099, 7.3146, 7.3125, 7.3174, 7.3161, 7.3202, 7.3247, 7.323, 7.3246, 7.3224, 7.3203, 7.3186, 7.32, 7.3244, 7.3354, 7.333, 7.3373, 7.3365, 7.3405, 7.3453, 7.3436, 7.3478, 7.3458, 7.3451, 7.3429, 7.3473, 7.352, 7.3502, 7.3489, 7.3476, 7.3453, 7.3444, 7.3494, 7.347, 7.3518, 7.3567, 7.3544, 7.3527, 7.3521, 7.3577, 7.3557, 7.3536, 7.3526, 7.3519, 7.356, 7.3537, 7.3526, 7.3505, 7.3486, 7.3465, 7.3567, 7.3546, 7.3533, 7.3511, 7.3496, 7.3478, 7.3489, 7.3485, 7.347, 7.3456, 7.3438, 7.3428, 7.3418, 7.3457, 7.3438, 7.348, 7.346, 7.3447, 7.343, 7.3418, 7.3399, 7.3436, 7.3424, 7.3408, 7.3397, 7.3377, 7.3364, 7.3342, 7.3335, 7.3371, 7.3412, 7.341, 7.3401, 7.3382, 7.342, 7.3403, 7.3402, 7.3439, 7.344, 7.3419, 7.3398, 7.3386, 7.3377, 7.3361, 7.3356, 7.334, 7.3317, 7.3353, 7.3341, 7.3324, 7.3308, 7.3291, 7.327, 7.3251, 7.3291, 7.3273, 7.3263, 7.3248, 7.3226, 7.322, 7.3217, 7.3199, 7.3179, 7.3161, 7.3208, 7.3199, 7.3202, 7.3181, 7.3165, 7.3188, 7.3176, 7.3415, 7.3398, 7.3378, 7.3366, 7.3373, 7.3356, 7.3352, 7.3347, 7.3391, 7.3371, 7.3352, 7.3387, 7.3425, 7.362, 7.361, 7.3595, 7.3574, 7.3554, 7.3534, 7.3514, 7.3494, 7.3478, 7.3457, 7.3436, 7.3417, 7.3396, 7.338, 7.342, 7.3402, 7.3385, 7.3373, 7.3357, 7.3347, 7.3337, 7.3317, 7.3298, 7.3282, 7.3264, 7.3257, 7.324, 7.3184, 7.3169, 7.3149, 7.3131, 7.3167, 7.3156, 7.3145, 7.3184, 7.3224, 7.3214, 7.325, 7.3231, 7.3214, 7.3203, 7.3186, 7.3175, 7.3156, 7.3202, 7.3188, 7.3169, 7.3152, 7.3137, 7.3127, 7.3166, 7.3115, 7.3099, 7.3083, 7.3091, 7.308, 7.3176, 7.3158, 7.3143, 7.3123, 7.3164, 7.315, 7.314, 7.3125, 7.3163, 7.3194, 7.3178, 7.3179, 7.3171, 7.321, 7.3197, 7.3187, 7.3173, 7.3165, 7.3152, 7.3186, 7.3172, 7.3168, 7.3151, 7.3149, 7.3133, 7.3172, 7.3213, 7.3211, 7.3205, 7.3234, 7.3217, 7.3204, 7.3186, 7.332, 7.33, 7.328, 7.3261, 7.3266, 7.325, 7.3231, 7.3353, 7.3336, 7.3319, 7.3305, 7.3289, 7.3271, 7.3256, 7.3237, 7.3229, 7.321, 7.3203, 7.3235, 7.3216, 7.3247, 7.3235, 7.3219, 7.3204, 7.3187, 7.3221, 7.3211, 7.3243, 7.3227, 7.3211, 7.32, 7.3186, 7.3215, 7.3161, 7.3171, 7.3162, 7.3156, 7.3141, 7.3127, 7.3122, 7.3106, 7.3095, 7.3125, 7.3114, 7.3099, 7.3086, 7.3069, 7.3052, 7.3084, 7.3068, 7.3052, 7.3048, 7.3183, 7.3219, 7.3306, 7.3296, 7.3293, 7.3286, 7.3283, 7.3276, 7.3315, 7.3352, 7.3343, 7.3336, 7.3322, 7.3412, 7.3501, 7.35, 7.3487, 7.3521, 7.3518, 7.3552, 7.3536, 7.3517, 7.3507, 7.3504, 7.3493, 7.3483, 7.3521, 7.355, 7.3533, 7.3519, 7.3509, 7.354, 7.3523, 7.3506, 7.3492, 7.3474, 7.3503, 7.3485, 7.3525, 7.3469, 7.3458, 7.3491, 7.3492, 7.3482, 7.3466, 7.3458, 7.3494, 7.348, 7.3466, 7.3451, 7.3487, 7.3486, 7.3472, 7.3455, 7.3447, 7.3485, 7.3474, 7.3459, 7.345, 7.3442, 7.352, 7.3505, 7.3493, 7.3477, 7.3464, 7.3498, 7.353, 7.3525, 7.3509, 7.3542, 7.3525, 7.3508, 7.3535, 7.3527, 7.351, 7.3504, 7.353, 7.3609, 7.3596, 7.358, 7.362, 7.3652, 7.3644, 7.3637, 7.362, 7.3625, 7.3608, 7.36, 7.3592, 7.3577, 7.3562, 7.3549, 7.3579, 7.3564, 7.3598, 7.3584, 7.3569, 7.3554, 7.354, 7.3524, 7.3514, 7.3499, 7.3493, 7.3478, 7.3465, 7.3564, 7.3549, 7.3535, 7.3528, 7.3515, 7.3501, 7.3487, 7.3479, 7.3463, 7.3599, 7.3584, 7.3574, 7.3602, 7.3586, 7.3574, 7.3604, 7.3595, 7.3603, 7.3591, 7.3621, 7.3612, 7.3596, 7.3583, 7.3577, 7.3569, 7.3568, 7.3601, 7.3585, 7.3577, 7.3568, 7.3555, 7.3588, 7.362, 7.3607, 7.3593, 7.3589, 7.362, 7.3604, 7.3632, 7.3618, 7.3607, 7.364, 7.3637, 7.3626, 7.3578, 7.3572, 7.3565, 7.3548, 7.3543, 7.3575, 7.3559, 7.359, 7.3581, 7.3577, 7.3562, 7.3546, 7.3536, 7.3522, 7.3553, 7.3539, 7.3526, 7.3516, 7.3502, 7.3492, 7.3482, 7.3467, 7.3541, 7.3527, 7.3561, 7.3552, 7.3653, 7.3639, 7.3689, 7.3762, 7.376, 7.3747, 7.3738, 7.3724, 7.3714, 7.3703, 7.3835, 7.3869, 7.3853, 7.3888, 7.3875, 7.386, 7.3887, 7.3872, 7.3863, 7.3853, 7.3845, 7.3831, 7.3821, 7.3806, 7.3793, 7.3822, 7.3856, 7.3886, 7.3912, 7.39, 7.3885, 7.3871, 7.3901, 7.3886, 7.3871, 7.3855, 7.3848, 7.3837, 7.3829, 7.3814, 7.3799, 7.3788, 7.3781, 7.3769, 7.3759, 7.3785, 7.377, 7.38, 7.3793, 7.3781, 7.3767, 7.3756, 7.3745, 7.3772, 7.3763, 7.3788, 7.3777, 7.3763, 7.3748, 7.3736, 7.3765, 7.375, 7.3746, 7.3731, 7.3722, 7.3747, 7.3732, 7.3722, 7.3707, 7.3715, 7.3699, 7.3686, 7.3671, 7.3669, 7.3659, 7.3645, 7.3635, 7.3621, 7.3637, 7.3624, 7.377, 7.3757, 7.3764, 7.3789, 7.378, 7.3774, 7.3802, 7.3788, 7.3779, 7.3771, 7.3774, 7.3801, 7.382, 7.3809, 7.3796, 7.3781, 7.3774, 7.3799, 7.379, 7.3775, 7.3765, 7.3753, 7.374, 7.3725, 7.3711, 7.3698, 7.3685, 7.3682, 7.3677, 7.3663, 7.3688, 7.3674, 7.366, 7.3647, 7.3641, 7.3705, 7.3694, 7.3684, 7.367, 7.3698, 7.3686, 7.3747, 7.3734, 7.3723, 7.3717, 7.3702, 7.3725, 7.3713, 7.3702, 7.3702, 7.3726, 7.3715, 7.3703, 7.3702, 7.3695, 7.3685, 7.3712, 7.3736, 7.3724, 7.3751, 7.3736, 7.373, 7.372, 7.3712, 7.3741, 7.3727, 7.3716, 7.3701, 7.3691, 7.3687, 7.3674, 7.3661, 7.3651, 7.3638, 7.3626, 7.3649, 7.3638, 7.3668, 7.3661, 7.3648, 7.3674, 7.3663, 7.3658, 7.3655, 7.3652, 7.3645, 7.3749, 7.3739, 7.3812, 7.3798, 7.3795, 7.3785, 7.3774, 7.3767, 7.3764, 7.3753, 7.3745, 7.3731, 7.3742, 7.3745, 7.374, 7.3734, 7.3722, 7.3709, 7.3698, 7.369, 7.3686, 7.3673, 7.366, 7.3684, 7.3672, 7.3669, 7.3656, 7.3642, 7.3646, 7.3671, 7.3673, 7.3668, 7.3657, 7.3646, 7.3633, 7.3679, 7.3666, 7.3661, 7.3651, 7.365, 7.371, 7.3698, 7.3701, 7.3688, 7.3646, 7.3667, 7.3655, 7.3683, 7.3675, 7.3669, 7.3659, 7.3652, 7.3642, 7.3632, 7.3619, 7.3643, 7.3669, 7.3659, 7.3684, 7.371, 7.37, 7.373, 7.3717, 7.3744, 7.3733, 7.3729, 7.372, 7.3708, 7.3701, 7.3687, 7.3679, 7.3672, 7.3663, 7.3652, 7.364, 7.3668, 7.3656, 7.3679, 7.3668, 7.3655, 7.3646, 7.3633, 7.3593, 7.378, 7.3775, 7.3814, 7.3841, 7.3835, 7.3857, 7.3844, 7.3834, 7.3822, 7.3809, 7.3805, 7.3793, 7.3781, 7.377, 7.3763, 7.3752, 7.3777, 7.3763, 7.3757, 7.3756, 7.3749, 7.3742, 7.3767, 7.3755, 7.3743, 7.374, 7.3765, 7.3754, 7.3748, 7.3773, 7.3763, 7.3751, 7.3741, 7.3727, 7.3715, 7.3707, 7.3706, 7.3695, 7.3688, 7.3676, 7.3667, 7.3655, 7.3645, 7.3634, 7.3628, 7.3618, 7.3611, 7.3635, 7.3627, 7.3615, 7.3603, 7.3591, 7.3579, 7.3567, 7.3561, 7.3556, 7.3544, 7.3601, 7.3588, 7.358, 7.3573, 7.3565, 7.3553, 7.3572, 7.3563, 7.3556, 7.3548, 7.3535, 7.3525, 7.352, 7.3509, 7.3503, 7.3499, 7.3521, 7.3543, 7.3536, 7.3525, 7.3522, 7.3512, 7.3499, 7.349, 7.3483, 7.3507, 7.3531, 7.3554, 7.3546, 7.3536, 7.3532, 7.352, 7.3513, 7.3504, 7.3497, 7.3488, 7.3478, 7.3466, 7.3457, 7.3449, 7.3437, 7.3426, 7.3414, 7.3405, 7.343, 7.342, 7.3408, 7.3399, 7.3388, 7.3381, 7.3403, 7.3401, 7.3391, 7.3384, 7.3372, 7.3366, 7.3389, 7.3478, 7.3477, 7.3471, 7.3466, 7.3461, 7.3451, 7.3444, 7.3444, 7.3456, 7.3444, 7.3438, 7.3458, 7.3447, 7.3435, 7.3424, 7.3444, 7.3442, 7.3437, 7.3436, 7.3432, 7.3423, 7.3416, 7.3446, 7.3434, 7.3422, 7.341, 7.3433, 7.3422, 7.3443, 7.3436, 7.3456, 7.3447, 7.3441, 7.3431, 7.342, 7.3416, 7.3415, 7.3437, 7.3428, 7.342, 7.3411, 7.3398, 7.3389, 7.3379, 7.3402, 7.3423, 7.342, 7.3412, 7.3401, 7.339, 7.3386, 7.3376, 7.3374, 7.3367, 7.3358, 7.3347, 7.3338, 7.3329, 7.3317, 7.3339, 7.336, 7.335, 7.3343, 7.3331, 7.3329, 7.3289, 7.328, 7.3269, 7.3263, 7.3256, 7.3246, 7.3271, 7.3262, 7.3256, 7.3251, 7.3271, 7.326, 7.3253, 7.3243, 7.3263, 7.3285, 7.3277, 7.3265, 7.3254, 7.3218, 7.3211, 7.322100000000001, 7.3212, 7.3207, 7.3227, 7.3218, 7.3213, 7.3202, 7.3165, 7.3156, 7.3149, 7.3139, 7.3131, 7.3128, 7.3122, 7.3117, 7.3138, 7.3139, 7.3134, 7.3159, 7.3126, 7.312, 7.3111, 7.311, 7.3102, 7.3093, 7.3085, 7.3079, 7.3072, 7.3073, 7.3077, 7.3076, 7.3065, 7.3054, 7.3044, 7.3039, 7.3061, 7.3066, 7.3056, 7.3046, 7.3042, 7.3032, 7.304200000000001, 7.3035, 7.3024, 7.3046, 7.3035, 7.3024, 7.3018, 7.3008, 7.3027, 7.3075, 7.3069, 7.3068, 7.3067, 7.3063, 7.3053, 7.3043, 7.3038, 7.3036, 7.3033, 7.3026, 7.3086, 7.3106, 7.3097, 7.3087, 7.3082, 7.3104, 7.3126, 7.3116, 7.3139, 7.3358, 7.3379, 7.3377, 7.3373, 7.3364, 7.3354, 7.3345, 7.334, 7.3362, 7.3383, 7.3419, 7.3416, 7.3407, 7.34, 7.3391, 7.3383, 7.3379, 7.3375, 7.3369, 7.337, 7.3361, 7.3352, 7.3374, 7.3365, 7.3357, 7.3349, 7.334, 7.3337, 7.3328, 7.3319, 7.3309, 7.33, 7.3293, 7.3284, 7.3312, 7.3332, 7.3326, 7.3315, 7.3304, 7.3297, 7.3287, 7.328, 7.3276, 7.3274, 7.3263, 7.3341, 7.3331, 7.3325, 7.3322, 7.3346, 7.3335, 7.3354, 7.3349, 7.3338, 7.3333, 7.3351, 7.3371, 7.3389, 7.3354, 7.3377, 7.3366, 7.3356, 7.3349, 7.3371, 7.3367, 7.336, 7.336, 7.3383, 7.3373, 7.3364, 7.3362, 7.3353, 7.3344, 7.3336, 7.3325, 7.3316, 7.3312, 7.3329, 7.3324, 7.3316, 7.3308, 7.3329, 7.3348, 7.3339, 7.3329, 7.3325, 7.3318, 7.3339, 7.3331, 7.3351, 7.3343, 7.3336, 7.3355, 7.3349, 7.3344, 7.334, 7.3361, 7.3352, 7.3348, 7.3338, 7.3329, 7.3318, 7.3314, 7.3309, 7.3298, 7.3292, 7.3311, 7.3307, 7.3301, 7.3292, 7.3283, 7.3277, 7.3269, 7.3262, 7.3254, 7.3248, 7.3239, 7.326, 7.3262, 7.3252, 7.3244, 7.3235, 7.3257, 7.3283, 7.3273, 7.3268, 7.3294, 7.3295, 7.3285, 7.3282, 7.3273, 7.3266, 7.326, 7.3252, 7.3241, 7.3231, 7.3222, 7.3212, 7.321, 7.3202, 7.3197, 7.3192, 7.3185, 7.3227, 7.3223, 7.3242, 7.3237, 7.3233, 7.3224, 7.3218, 7.3208, 7.3203, 7.3194, 7.3195, 7.3185, 7.319500000000001, 7.320500000000001, 7.321500000000001, 7.3206, 7.3198, 7.3192, 7.3182, 7.3176, 7.3194, 7.3204, 7.3198, 7.3191, 7.3184, 7.3208, 7.3206, 7.3205, 7.3228, 7.3219, 7.3211, 7.3206, 7.3203, 7.3224, 7.3215, 7.3206, 7.3201, 7.3247, 7.3246, 7.3242, 7.3234, 7.3226, 7.3219, 7.3212, 7.3231, 7.3234, 7.3224, 7.3242, 7.3258, 7.3252, 7.3272, 7.328200000000001, 7.33, 7.3292, 7.3285, 7.3301, 7.3292, 7.3302000000000005, 7.335, 7.3341, 7.3361, 7.3371, 7.3376, 7.3367, 7.3358, 7.3352, 7.3321, 7.3313, 7.3308, 7.3304, 7.3294, 7.3319, 7.331, 7.3327, 7.3321, 7.334, 7.333, 7.3321, 7.3339, 7.3329, 7.3348, 7.3316, 7.3307, 7.3306, 7.3301, 7.3297, 7.3292, 7.3284, 7.3279, 7.3284, 7.3276, 7.3294, 7.3287, 7.3261, 7.3252, 7.3243, 7.3234, 7.3266, 7.3283, 7.332, 7.3313, 7.3309, 7.3302, 7.3293, 7.3291, 7.3311, 7.333, 7.3321, 7.3311, 7.3305, 7.3299, 7.3317, 7.3308, 7.33, 7.3316, 7.3311, 7.3312, 7.3284, 7.3304, 7.3306, 7.3323, 7.3341, 7.3339, 7.333, 7.3348, 7.3341, 7.3338, 7.3329, 7.3324, 7.3316, 7.3309, 7.3303, 7.33, 7.3321, 7.3316, 7.3307, 7.3326, 7.3321, 7.3313, 7.333, 7.3325, 7.3324, 7.3317, 7.3309, 7.3326, 7.3323, 7.3316, 7.3318, 7.3309, 7.33, 7.3291, 7.3282, 7.3278, 7.3273, 7.3289, 7.328, 7.3271, 7.3242, 7.3233, 7.3225, 7.3222, 7.3221, 7.3211, 7.3204, 7.32, 7.3196, 7.3186, 7.3179, 7.3173, 7.317, 7.3187, 7.3189, 7.318, 7.3177, 7.3198, 7.319, 7.3183, 7.3177, 7.3171, 7.3165, 7.3156, 7.3149, 7.3141, 7.3133, 7.3123, 7.3119, 7.3114, 7.3236, 7.3232, 7.3226, 7.3219, 7.322, 7.3211, 7.322100000000001, 7.3212, 7.321, 7.322, 7.3211, 7.3228, 7.3225, 7.3242, 7.3261, 7.3254, 7.327, 7.3261, 7.3257, 7.3253, 7.3272, 7.3266, 7.326, 7.3305, 7.3298, 7.3316, 7.3333, 7.3348, 7.3343, 7.3363, 7.3361, 7.3354, 7.3347, 7.3341, 7.3336, 7.3332, 7.3329, 7.332, 7.3314, 7.3307, 7.3303, 7.3318, 7.3333, 7.3325, 7.3343, 7.3338, 7.3354, 7.3346, 7.3338, 7.3355, 7.3346, 7.3337, 7.3478, 7.3471, 7.3444, 7.3436, 7.3429, 7.3444, 7.3441, 7.3434, 7.343, 7.3444, 7.3461, 7.3458, 7.3475, 7.3469, 7.3461, 7.3454, 7.3452, 7.3471, 7.3443, 7.3435, 7.3413, 7.3405, 7.3415, 7.3431, 7.345, 7.347, 7.3464, 7.3458, 7.3454, 7.3475, 7.3472, 7.3488, 7.3505, 7.3497, 7.3494, 7.3485, 7.348, 7.3474, 7.3466, 7.3459, 7.3454, 7.3454, 7.348, 7.3476, 7.3474, 7.3489, 7.3482, 7.3517, 7.351, 7.3501, 7.3519, 7.3511, 7.3503, 7.3495, 7.3514, 7.3507, 7.3485, 7.3479, 7.3494, 7.3486, 7.3478, 7.347, 7.3466, 7.3459, 7.3455, 7.3447, 7.3464, 7.3479, 7.347, 7.3466, 7.3458, 7.3475, 7.3466, 7.346, 7.3455, 7.3447, 7.3439, 7.3436, 7.3427, 7.3419, 7.3429, 7.3425, 7.3417, 7.3434, 7.3432, 7.3448, 7.3442, 7.3438, 7.343, 7.3448, 7.3443, 7.3435, 7.3428, 7.3422, 7.3441, 7.3437, 7.3452, 7.3446, 7.3438, 7.343, 7.3425, 7.3417, 7.3411, 7.3406, 7.34, 7.341, 7.3405, 7.3408, 7.3402, 7.3395, 7.3398, 7.3398, 7.3394, 7.3389, 7.3386, 7.3379, 7.3374, 7.3371, 7.3364, 7.3356, 7.3352, 7.3352, 7.3363, 7.3354, 7.3349, 7.3365, 7.3356, 7.3348, 7.3364, 7.336, 7.3357, 7.3349, 7.3343, 7.3341, 7.3335, 7.3328, 7.3322, 7.3337, 7.3337, 7.3331, 7.3324, 7.3318, 7.3313, 7.3306, 7.3299, 7.3319, 7.3317, 7.3315, 7.331, 7.3303, 7.3302, 7.3295, 7.3287, 7.329700000000001, 7.3292, 7.3302000000000005, 7.3294, 7.3304, 7.3296, 7.3289, 7.3282, 7.3273, 7.3271, 7.3286, 7.328, 7.3297, 7.3312, 7.3304, 7.3298, 7.3294, 7.3308, 7.3323, 7.3317, 7.3314, 7.333, 7.3324, 7.3318, 7.331, 7.3307, 7.33, 7.3296, 7.3312, 7.3307, 7.3305, 7.3303, 7.3295, 7.3289, 7.3306, 7.3299, 7.3294, 7.3312, 7.3328, 7.3325, 7.334, 7.3332, 7.3329, 7.3323, 7.3343, 7.3339, 7.3335, 7.3401, 7.3395, 7.3392, 7.3389, 7.3404, 7.3444, 7.3442, 7.344, 7.3434, 7.345, 7.3444, 7.3444, 7.3437, 7.3452, 7.3427, 7.3443, 7.3441, 7.3438, 7.3455, 7.3452, 7.3467, 7.3464, 7.3459, 7.3459, 7.3456, 7.3451, 7.3446, 7.3561, 7.3554, 7.3554, 7.3552, 7.3547, 7.354, 7.3513, 7.3506, 7.3522, 7.354, 7.3565, 7.3557, 7.3549, 7.3545, 7.3539, 7.3532, 7.3525, 7.3517, 7.3535, 7.3529, 7.352, 7.3494, 7.3486, 7.3481, 7.3528, 7.3543, 7.3535, 7.3529, 7.3522, 7.3525, 7.353, 7.3526, 7.3532, 7.3527, 7.3519, 7.3514, 7.3506, 7.3499, 7.3513, 7.3532, 7.3528, 7.3524, 7.3517, 7.3521, 7.3515, 7.3509, 7.3501, 7.3495, 7.3492, 7.3485, 7.3501, 7.3518, 7.3514, 7.3506, 7.3499, 7.3493, 7.3491, 7.3487, 7.3488, 7.348, 7.3493, 7.3485, 7.3479, 7.3474, 7.3471, 7.3468, 7.3461, 7.3457, 7.3471, 7.3468, 7.3461, 7.3455, 7.3447, 7.3442, 7.3438, 7.343, 7.3425, 7.3419, 7.3411, 7.3408, 7.341, 7.3425, 7.3417, 7.3409, 7.3457, 7.3449, 7.3445, 7.3425, 7.3423, 7.3436, 7.345, 7.3443, 7.3435, 7.3427, 7.3419, 7.3411, 7.3403, 7.3417, 7.343, 7.3423, 7.3416, 7.3408, 7.34, 7.3392, 7.3386, 7.3379, 7.3373, 7.3387, 7.3382, 7.3374, 7.3369, 7.3367, 7.3366, 7.3359, 7.3381, 7.3356, 7.336600000000001, 7.3384, 7.3378, 7.3392, 7.3406, 7.3398, 7.339, 7.341, 7.3406, 7.3398, 7.3394, 7.3387, 7.3401, 7.3397, 7.3389, 7.3382, 7.3374, 7.3386, 7.34, 7.3414, 7.3407, 7.34, 7.3394, 7.3388, 7.3386, 7.3381, 7.3395, 7.3391, 7.3405, 7.3424, 7.342, 7.3412, 7.3427, 7.342, 7.3453, 7.3449, 7.3444, 7.344, 7.3455, 7.3449, 7.3485, 7.348, 7.3473, 7.3487, 7.3525, 7.3517, 7.3531, 7.3524, 7.3516, 7.3534, 7.3526, 7.352, 7.3516, 7.3517, 7.351, 7.3526, 7.3528, 7.3542, 7.3534, 7.3526, 7.3519, 7.3513, 7.3511, 7.3614, 7.3607, 7.3622, 7.3635, 7.3651, 7.3644, 7.3636, 7.365, 7.3646, 7.3659, 7.3651, 7.3646, 7.3661, 7.3655, 7.3648, 7.364, 7.3643, 7.3641, 7.3634, 7.3626, 7.3618, 7.3631, 7.3606, 7.3604, 7.3599, 7.3592, 7.3591, 7.3605, 7.36, 7.3614, 7.3606, 7.36, 7.3593, 7.3586, 7.3579, 7.3592, 7.3585, 7.3582, 7.3579, 7.3572, 7.3564, 7.3578, 7.3571, 7.3564, 7.3557, 7.355, 7.3544, 7.3541, 7.3539, 7.3534, 7.3531, 7.3524, 7.3519, 7.3511, 7.3527, 7.3531, 7.3557, 7.3553, 7.3545, 7.3548, 7.3545, 7.3538, 7.3553, 7.3547, 7.354, 7.3539, 7.3539, 7.3536, 7.353, 7.3524, 7.3538, 7.353, 7.3525, 7.3524, 7.3516, 7.3531, 7.3524, 7.3516, 7.3531, 7.3523, 7.3518, 7.3513, 7.3508, 7.3507, 7.35, 7.3493, 7.3498, 7.3494, 7.3491, 7.3488, 7.3483, 7.3476, 7.3469, 7.3466, 7.3465, 7.3479, 7.3492, 7.3487, 7.3483, 7.3517, 7.3512, 7.3505, 7.35, 7.3496, 7.3512, 7.3505, 7.3499, 7.3495, 7.3492, 7.3486, 7.3503, 7.3501, 7.3496, 7.349, 7.3505, 7.3504, 7.3519, 7.3515, 7.3509, 7.3506, 7.3502, 7.3499, 7.3495, 7.3489, 7.3483, 7.3481, 7.3478, 7.3506, 7.3504, 7.3502, 7.3498, 7.3511, 7.3504, 7.3519, 7.3515, 7.3508, 7.3521, 7.3536, 7.353, 7.3523, 7.3538, 7.3534, 7.3532, 7.3525, 7.3519, 7.3512, 7.3507, 7.3499, 7.3494, 7.3469, 7.3462, 7.3474, 7.3489, 7.3482, 7.3477, 7.349, 7.3483, 7.3477, 7.3471, 7.3464, 7.3459, 7.3455, 7.3447, 7.3443, 7.3436, 7.3449, 7.3482, 7.3498, 7.3511, 7.3507, 7.3501, 7.3497, 7.349, 7.3505, 7.3517, 7.351, 7.3524, 7.3517, 7.351, 7.3523, 7.3519, 7.3519, 7.3512, 7.3514, 7.351, 7.3492, 7.3472, 7.3482, 7.349200000000001, 7.350200000000001, 7.3516, 7.352600000000001, 7.3519, 7.3529, 7.3524, 7.3517, 7.3515, 7.3509, 7.3501, 7.3494, 7.3494, 7.3489, 7.3487, 7.348, 7.3475, 7.3472, 7.3468, 7.3462, 7.3457, 7.3452, 7.3464, 7.3478, 7.3473, 7.3467, 7.3462, 7.3475, 7.3454, 7.3431, 7.3426, 7.3421, 7.3426, 7.3438, 7.3433, 7.3428, 7.3421, 7.3434, 7.3427, 7.3421, 7.3416, 7.3409, 7.3405, 7.3398, 7.3412, 7.3405, 7.3401, 7.3398, 7.3392, 7.339, 7.3384, 7.3377, 7.3371, 7.3366, 7.3359, 7.3336, 7.3333, 7.3329, 7.3323, 7.3335, 7.3329, 7.3323, 7.3319, 7.3331, 7.3325, 7.3337, 7.3332, 7.3325, 7.3318, 7.3332, 7.3342, 7.3354, 7.3364, 7.337400000000001, 7.337, 7.3379, 7.3374, 7.3375, 7.3352, 7.3367, 7.3381, 7.3376, 7.3389, 7.3402, 7.3397, 7.3394, 7.3406, 7.3402, 7.3398, 7.3411, 7.3404, 7.3398, 7.3415, 7.3428, 7.3425, 7.3423, 7.342, 7.3415, 7.3409, 7.341900000000001, 7.3416, 7.3413, 7.3408, 7.3421, 7.3414, 7.3427, 7.3422, 7.3419, 7.3416, 7.3413, 7.3408, 7.3405, 7.3413, 7.3408, 7.3422, 7.3417, 7.3414, 7.3408, 7.3405, 7.3401, 7.34, 7.3393, 7.3405, 7.3402, 7.3396, 7.3395, 7.3393, 7.339, 7.3387, 7.338, 7.3358, 7.3335, 7.3312, 7.3343, 7.3337, 7.3332, 7.3355, 7.3369, 7.3362, 7.3355, 7.3349, 7.3349, 7.3345, 7.3346, 7.336, 7.3357, 7.3368, 7.3363, 7.3359, 7.3353, 7.3367, 7.3366, 7.3361, 7.3357, 7.3355, 7.3355, 7.3349, 7.3346, 7.3323, 7.3319, 7.3314, 7.3312, 7.3308, 7.3303, 7.3316, 7.3312, 7.3307, 7.3305, 7.3301, 7.3296, 7.329, 7.3285, 7.3281, 7.3276, 7.327, 7.3282, 7.3277, 7.3288, 7.3284, 7.3278, 7.3271, 7.3266, 7.3262, 7.3275, 7.3271, 7.3265, 7.3261, 7.3255, 7.3251, 7.3245, 7.3239, 7.3232, 7.3226, 7.322, 7.3233, 7.3227, 7.3239, 7.3235, 7.3228, 7.3226, 7.3229, 7.3242, 7.325200000000001, 7.3266, 7.3284, 7.3295, 7.329, 7.3284, 7.3278, 7.329, 7.3287, 7.3282, 7.3277, 7.3289, 7.3285, 7.3281, 7.3276, 7.3269, 7.3281, 7.3312, 7.3313, 7.3311, 7.3307, 7.3321, 7.3319, 7.3313, 7.3306, 7.33, 7.3296, 7.3289, 7.3307, 7.3302, 7.3296, 7.3315, 7.3311, 7.3311, 7.3308, 7.3322, 7.3317, 7.334, 7.3351, 7.3345, 7.3339, 7.3335, 7.3331, 7.3343, 7.3337, 7.3366, 7.3401, 7.3396, 7.3393, 7.3387, 7.3403, 7.3403, 7.3415, 7.3411, 7.3408, 7.3387, 7.3401, 7.3412, 7.3407, 7.3403, 7.3416, 7.3428, 7.3422, 7.3416, 7.341, 7.3409, 7.3403, 7.3415, 7.3409, 7.3404, 7.3398, 7.3392, 7.3387, 7.339700000000001, 7.340700000000001, 7.3402, 7.3396, 7.3389, 7.3387, 7.3401, 7.3396, 7.3389, 7.3386, 7.3397, 7.3391, 7.3385, 7.3396, 7.3407, 7.3401, 7.3398, 7.341, 7.3403, 7.3401, 7.3412, 7.3423, 7.3435, 7.3446, 7.3441, 7.3435, 7.3429, 7.3426, 7.3423, 7.3417, 7.3413, 7.3443, 7.3439, 7.3435, 7.3418, 7.3411, 7.3407, 7.3417, 7.3416, 7.3425, 7.3418, 7.3431, 7.3444, 7.3438, 7.3431, 7.3442, 7.3436, 7.3434, 7.3431, 7.3424, 7.3418, 7.3413, 7.3425, 7.343500000000001, 7.3436, 7.3432, 7.3426, 7.3423, 7.3419, 7.342, 7.3416, 7.341, 7.3422, 7.3437, 7.3433, 7.3428, 7.3423, 7.3418, 7.3413, 7.3408, 7.3402, 7.3397, 7.3394, 7.3388, 7.3384, 7.3396, 7.3391, 7.3386, 7.3381, 7.3374, 7.3368, 7.3365, 7.3375, 7.3371, 7.3365, 7.3361, 7.3355, 7.3352, 7.3355, 7.3358, 7.3354, 7.3353, 7.3353, 7.3351, 7.3349, 7.3344, 7.3342, 7.3323, 7.3338, 7.3336, 7.3333, 7.3327, 7.3321, 7.3334, 7.3346, 7.3344, 7.334, 7.3335, 7.3316, 7.3311, 7.3306, 7.3301, 7.3367, 7.3362, 7.3359, 7.3355, 7.3369, 7.3363, 7.3375, 7.3373, 7.3368, 7.3362, 7.3359, 7.3369, 7.3379, 7.3374, 7.3372, 7.3352, 7.3348, 7.3344, 7.3338, 7.335, 7.3362, 7.3359, 7.3354, 7.3367, 7.3364, 7.3358, 7.3353, 7.3347, 7.336, 7.3355, 7.3351, 7.3347, 7.3342, 7.3343, 7.334, 7.3335, 7.333, 7.3324, 7.3323, 7.3322, 7.3334, 7.3345, 7.3339, 7.3333, 7.3329, 7.3323, 7.3317, 7.3311, 7.3306, 7.3318, 7.3318, 7.3324, 7.3319, 7.3329, 7.3342, 7.3336, 7.3332, 7.3363, 7.3373, 7.3383, 7.3395, 7.3408, 7.3389, 7.34, 7.3394, 7.339, 7.3388, 7.3385, 7.3382, 7.3376, 7.337, 7.3365, 7.336, 7.3354, 7.3348, 7.3345, 7.3338, 7.3334, 7.3328, 7.3322, 7.3333, 7.3333, 7.3327, 7.3325, 7.3319, 7.3316, 7.3299, 7.3278, 7.3288, 7.3284, 7.3279, 7.3273, 7.3253, 7.3233, 7.3227, 7.3223, 7.3219, 7.3216, 7.3227, 7.3227, 7.3221, 7.3218, 7.3214, 7.3209, 7.322, 7.3239, 7.3235, 7.3232, 7.3245, 7.3239, 7.3235, 7.323, 7.3226, 7.3222, 7.3219, 7.3213, 7.3194, 7.3175, 7.3172, 7.3182, 7.3192, 7.320200000000001, 7.3198, 7.3225, 7.3237, 7.3231, 7.3227, 7.3221, 7.322, 7.3215, 7.322, 7.3214, 7.321, 7.3222, 7.3207, 7.3201, 7.3197, 7.3193, 7.3188, 7.3183, 7.3196, 7.3194, 7.321, 7.3207, 7.3201, 7.3196, 7.3193, 7.3189, 7.3188, 7.3188, 7.3184, 7.318, 7.3174, 7.3173, 7.3186, 7.3182, 7.3177, 7.3171, 7.3165, 7.3175, 7.3169, 7.3164, 7.3159, 7.3153, 7.315, 7.3149, 7.3144, 7.3139, 7.3166, 7.3178, 7.3173, 7.317, 7.3180000000000005, 7.3192, 7.3186, 7.3181, 7.3192, 7.3187, 7.3184, 7.318, 7.3175, 7.3186, 7.3195, 7.3189, 7.3201, 7.3197, 7.3192, 7.3188, 7.3183, 7.3178, 7.3172, 7.3167, 7.3163, 7.3174, 7.317, 7.3165, 7.3161, 7.3158, 7.3153, 7.315, 7.3146, 7.3157, 7.3154, 7.3149, 7.316, 7.3156, 7.3152, 7.315, 7.3161, 7.3155, 7.315, 7.3145, 7.3125, 7.3106, 7.3102, 7.3098, 7.3081, 7.308, 7.309, 7.3102, 7.3112, 7.3106, 7.3117, 7.3127, 7.3136, 7.3135, 7.3129, 7.3124, 7.3118, 7.3129, 7.3126, 7.3173, 7.3172, 7.3167, 7.3161, 7.3156, 7.3153, 7.315, 7.3147, 7.3143, 7.3153, 7.3149, 7.3144, 7.314, 7.315, 7.3144, 7.314, 7.3136, 7.3146, 7.3156, 7.315, 7.3144, 7.3156, 7.315, 7.3144, 7.3154, 7.3135, 7.313, 7.3127, 7.3122, 7.3187, 7.3201, 7.3212, 7.3207, 7.3218, 7.3212, 7.3209, 7.3205, 7.3199, 7.3196, 7.3207, 7.3204, 7.3185, 7.3182, 7.3206, 7.3203, 7.32, 7.3195, 7.3189, 7.3185, 7.3187, 7.3182, 7.3177, 7.3174, 7.3172, 7.3167, 7.3162, 7.3159, 7.3153, 7.3147, 7.3158, 7.3154, 7.315, 7.3164, 7.316, 7.3156, 7.3156, 7.3152, 7.3146, 7.3146, 7.3142, 7.3139, 7.3133, 7.3147, 7.3158, 7.3156, 7.3151, 7.3151, 7.3162, 7.3157, 7.3167, 7.3177, 7.318700000000001, 7.3198, 7.3196, 7.3179, 7.3161, 7.3171, 7.3181, 7.319100000000001, 7.3202, 7.3199, 7.3195, 7.3192, 7.3188, 7.3184, 7.3182, 7.3184, 7.3178, 7.3175, 7.3169, 7.3163, 7.3158, 7.3158, 7.3153, 7.3148, 7.3159, 7.3155, 7.3164, 7.3174, 7.3169, 7.3181, 7.3176, 7.3171, 7.3154, 7.3151, 7.3167, 7.3162, 7.3161, 7.3171, 7.3165, 7.3169, 7.3179, 7.3173, 7.3172, 7.3168, 7.3163, 7.3175, 7.3172, 7.3169, 7.3165, 7.316, 7.3157, 7.3142, 7.3155, 7.3166, 7.3176000000000005, 7.318600000000001, 7.3184, 7.3183, 7.3197, 7.3179, 7.3227, 7.3222, 7.3248, 7.3243, 7.3238, 7.3265, 7.3275, 7.3277, 7.3272, 7.3268, 7.3264, 7.3275, 7.3285, 7.328, 7.3275, 7.3286, 7.3283, 7.3287, 7.3298, 7.3309, 7.329, 7.3273, 7.3284, 7.3282, 7.3277, 7.3273, 7.327, 7.3267, 7.3295, 7.330500000000001, 7.331500000000001, 7.332500000000001, 7.3334, 7.333, 7.3325, 7.3322, 7.3317, 7.3312, 7.3322, 7.3332, 7.3327, 7.3322, 7.3318, 7.3359, 7.3354, 7.3364, 7.3359, 7.3354, 7.3352, 7.3432, 7.3428, 7.3424, 7.342, 7.343, 7.3426, 7.3425, 7.3424, 7.3421, 7.3417, 7.3416, 7.3425, 7.3421, 7.3417, 7.3412, 7.3406, 7.3418, 7.343, 7.3441, 7.3439, 7.3434, 7.3429, 7.3427, 7.3425, 7.3435, 7.3417, 7.34, 7.3396, 7.3391, 7.3385, 7.3381, 7.3376, 7.3372, 7.3367, 7.3365, 7.3361, 7.3356, 7.3353, 7.335, 7.3344, 7.3355, 7.3351, 7.3349, 7.3344, 7.3339, 7.3348, 7.3359, 7.3356, 7.3366, 7.3375, 7.3376, 7.3371, 7.3368, 7.3365, 7.3376, 7.3386, 7.3381, 7.339, 7.3399, 7.3393, 7.3405, 7.3446, 7.344, 7.3436, 7.3432, 7.3426, 7.3422, 7.3419, 7.3414, 7.3409, 7.3419, 7.3417, 7.3414, 7.3424, 7.3419, 7.3416, 7.3415, 7.3425, 7.3422, 7.3479, 7.3475, 7.347, 7.3473, 7.3459, 7.3456, 7.3439, 7.3434, 7.3448, 7.3471, 7.3459, 7.3458, 7.3454, 7.3479, 7.3474, 7.3472, 7.3467, 7.3454, 7.3467, 7.3472, 7.3487, 7.3512, 7.3509, 7.3504, 7.3499, 7.3481, 7.3493, 7.3489, 7.3484, 7.3483, 7.3478, 7.3473, 7.3459, 7.3458, 7.3467, 7.3464, 7.3474, 7.3471, 7.3467, 7.3468, 7.3465, 7.3461, 7.3457, 7.3452, 7.3447, 7.3442, 7.344, 7.345, 7.3447, 7.3442, 7.3437, 7.3433, 7.3447, 7.3458, 7.3452, 7.3446, 7.3443, 7.3438, 7.3449, 7.3444, 7.344, 7.3436, 7.3445, 7.3442, 7.3438, 7.3435, 7.3432, 7.3426, 7.3451, 7.3446, 7.3441, 7.344, 7.3436, 7.3432, 7.343, 7.3427, 7.3421, 7.3431, 7.3426, 7.3429, 7.3424, 7.3418, 7.3414, 7.3409, 7.3404, 7.3403, 7.3414, 7.3409, 7.3406, 7.3405, 7.3402, 7.3399, 7.3395, 7.339, 7.3388, 7.3384, 7.3381, 7.3378, 7.3418, 7.3414, 7.341, 7.3419, 7.3447, 7.3445, 7.3443, 7.3453, 7.3448, 7.3434, 7.3443, 7.3441, 7.3436, 7.3431, 7.343, 7.3455, 7.345, 7.3445, 7.3454, 7.3464, 7.346, 7.3459, 7.3456, 7.3452, 7.3451, 7.3448, 7.3443, 7.344, 7.3438, 7.3451, 7.3448, 7.3459, 7.3459, 7.3454, 7.345, 7.3446, 7.3445, 7.3456, 7.3452, 7.3448, 7.346, 7.3456, 7.3453, 7.3449, 7.3449, 7.3447, 7.3457, 7.3455, 7.3451, 7.3448, 7.3445, 7.3441, 7.3452, 7.3462, 7.3459, 7.3456, 7.3453, 7.345, 7.3461, 7.3456, 7.3454, 7.3469, 7.3467, 7.3467, 7.3452, 7.3448, 7.3459, 7.3456, 7.3451, 7.3448, 7.3458, 7.3453, 7.345, 7.3485, 7.3494, 7.3489, 7.3485, 7.3515, 7.3531, 7.3541, 7.3536, 7.3531, 7.3542, 7.3538, 7.3533, 7.3529, 7.3526, 7.3521, 7.3546, 7.3567, 7.3577, 7.3572, 7.3582, 7.3592, 7.3602, 7.3597, 7.3597, 7.3596, 7.3593, 7.3589, 7.3607, 7.3602, 7.362, 7.3616, 7.3613, 7.3609, 7.3617, 7.3614, 7.3612, 7.3607, 7.3627, 7.3623, 7.3633, 7.3641, 7.3636, 7.3631, 7.3628, 7.3637, 7.3635, 7.363, 7.3628, 7.3623, 7.362, 7.363, 7.3626, 7.3622, 7.3632, 7.363, 7.363, 7.3626, 7.3638, 7.3635, 7.3631, 7.3629, 7.3626, 7.3621, 7.3617, 7.3615, 7.3611, 7.3606, 7.3603, 7.3599, 7.3622, 7.3618, 7.3622, 7.3659, 7.3657, 7.366, 7.3656, 7.3642, 7.3638, 7.3635, 7.3633, 7.3642, 7.3639, 7.3648, 7.3644, 7.3653, 7.365, 7.3646, 7.3644, 7.364, 7.3636, 7.3638, 7.3638, 7.3633, 7.3632, 7.3628, 7.3626, 7.3634, 7.3629, 7.3626, 7.3635, 7.363, 7.3625, 7.362, 7.3616, 7.3612, 7.361, 7.3606, 7.3605, 7.36, 7.3597, 7.3628, 7.3623, 7.3632, 7.3627, 7.3625, 7.3635, 7.3646, 7.3655, 7.3654, 7.3649, 7.3645, 7.3654, 7.365, 7.3647, 7.3656, 7.3652, 7.3662, 7.3658, 7.3641, 7.3652, 7.3647, 7.3657, 7.3668, 7.3651, 7.3647, 7.3657, 7.3669, 7.3665, 7.366, 7.3655, 7.3651, 7.3648, 7.3644, 7.3644, 7.3642, 7.3652, 7.3648, 7.3656, 7.3653, 7.3663, 7.3659, 7.3656, 7.3652, 7.365, 7.3661, 7.3671, 7.3665, 7.3675, 7.3672, 7.3669, 7.3666, 7.3651, 7.3649, 7.3645, 7.3654, 7.3651, 7.3646, 7.3641, 7.3636, 7.3631, 7.3656, 7.3653, 7.3648, 7.3644, 7.364, 7.3638, 7.3647, 7.3644, 7.3641, 7.3638, 7.3635, 7.3631, 7.3641, 7.3638, 7.3633, 7.3632, 7.3629, 7.3627, 7.3622, 7.3619, 7.3616, 7.3625, 7.3634, 7.3629, 7.3626, 7.3625, 7.362, 7.3616, 7.3613, 7.361, 7.3609, 7.3592, 7.3588, 7.3598, 7.3595, 7.3605, 7.3602, 7.3597, 7.3607, 7.3604, 7.3601, 7.3599, 7.3608, 7.3604, 7.3601, 7.3597, 7.3606, 7.3607, 7.3605, 7.3601, 7.3596, 7.3597, 7.3593, 7.3588, 7.3585, 7.3584, 7.358, 7.3591, 7.3586, 7.3584, 7.3579, 7.3575, 7.3584, 7.358, 7.3575, 7.3584, 7.3594, 7.359, 7.3598, 7.3607, 7.3605, 7.3605, 7.3602, 7.36, 7.3598, 7.3596, 7.3605, 7.3602, 7.3597, 7.3594, 7.3591, 7.3588, 7.3586, 7.3641, 7.3636, 7.3633, 7.3617, 7.3615, 7.361, 7.3605, 7.3601, 7.3598, 7.3607, 7.3616, 7.36, 7.3596, 7.3594, 7.359, 7.3586, 7.3581, 7.3578, 7.3574, 7.357, 7.3582, 7.3567, 7.3562, 7.3566, 7.3562, 7.3559, 7.3555, 7.3551, 7.3561, 7.3558, 7.3555, 7.3551, 7.3548, 7.3548, 7.3552, 7.3547, 7.3556, 7.3551, 7.3551, 7.3548, 7.3548, 7.3543, 7.3552, 7.3548, 7.3557, 7.3553, 7.3549, 7.356, 7.3558, 7.3553, 7.3561, 7.357, 7.3579, 7.3578, 7.3574, 7.3571, 7.3567, 7.3564, 7.356, 7.3556, 7.3552, 7.3561, 7.3559, 7.3569, 7.3564, 7.3574, 7.3572, 7.357, 7.3566, 7.3575, 7.3572, 7.358, 7.3576, 7.3574, 7.3571, 7.3567, 7.3576, 7.3585, 7.3582, 7.3578, 7.3573, 7.3568, 7.3564, 7.3562, 7.3559, 7.3554, 7.3563, 7.356, 7.3559, 7.3554, 7.3549, 7.3549, 7.3546, 7.3554, 7.3549, 7.3545, 7.3542, 7.355, 7.3558, 7.3555, 7.3554, 7.355, 7.356, 7.3568, 7.3564, 7.3561, 7.3558, 7.3553, 7.3549, 7.3546, 7.3556, 7.3551, 7.356, 7.3568, 7.3563, 7.3558, 7.3554, 7.3552, 7.3548, 7.3546, 7.3541, 7.3537, 7.3534, 7.3529, 7.357, 7.3578, 7.3573, 7.3568, 7.3564, 7.356, 7.3569, 7.3567, 7.3564, 7.3559, 7.3554, 7.3551, 7.356, 7.3557, 7.3553, 7.356, 7.3568, 7.3564, 7.356, 7.3557, 7.3552, 7.3548, 7.3543, 7.3552, 7.3551, 7.356, 7.3559, 7.3554, 7.355, 7.3547, 7.3555, 7.3564, 7.3561, 7.357, 7.3567, 7.3576, 7.3584, 7.358, 7.3589, 7.3586, 7.3608, 7.3607, 7.3616, 7.3614, 7.3609, 7.3617, 7.3613, 7.3612, 7.3608, 7.3604, 7.36, 7.3596, 7.3592, 7.3588, 7.3584, 7.3586, 7.3582, 7.359, 7.3585, 7.358, 7.3577, 7.3574, 7.3571, 7.3566, 7.3564, 7.3561, 7.3569, 7.3566, 7.3564, 7.3573, 7.3581, 7.3579, 7.3587, 7.3595, 7.3602, 7.3599, 7.3598, 7.3607, 7.3605, 7.3603, 7.3612, 7.3622, 7.3618, 7.3615, 7.361, 7.3605, 7.3603, 7.36, 7.3595, 7.3591, 7.3589, 7.3585, 7.3595, 7.3595, 7.3594, 7.3593, 7.359, 7.3586, 7.3571, 7.3569, 7.3579, 7.3578, 7.3576, 7.3584, 7.3581, 7.3579, 7.3575, 7.357, 7.3568, 7.3566, 7.3561, 7.3546, 7.3543, 7.3552, 7.3548, 7.3546, 7.3542, 7.3527, 7.3523, 7.352, 7.3532, 7.353, 7.353, 7.3526, 7.3531, 7.3539, 7.3535, 7.3532, 7.3528, 7.3524, 7.352, 7.3528, 7.3526, 7.3526, 7.3523, 7.352, 7.3516, 7.3513, 7.3509, 7.3494, 7.3492, 7.3491, 7.35, 7.3496, 7.3492, 7.3489, 7.3485, 7.3482, 7.3477, 7.3476, 7.3471, 7.3469, 7.3466, 7.3464, 7.3473, 7.3469, 7.3467, 7.3464, 7.346, 7.3456, 7.3441, 7.3438, 7.3436, 7.3435, 7.3444, 7.3429, 7.3425, 7.3423, 7.3409, 7.3395, 7.3383, 7.3384, 7.3396, 7.3395, 7.3393, 7.3391, 7.3389, 7.3386, 7.3396, 7.3393, 7.3389, 7.3388, 7.3386, 7.3383, 7.338, 7.3389, 7.3398, 7.3395, 7.3381, 7.3379, 7.3365, 7.3361, 7.337, 7.3368, 7.3364, 7.336, 7.3357, 7.3353, 7.3352, 7.336, 7.3357, 7.3366, 7.3362, 7.336, 7.3356, 7.3352, 7.3359, 7.3356, 7.3365, 7.3363, 7.3359, 7.3382, 7.3379, 7.3376, 7.3373, 7.337, 7.3378, 7.3365, 7.3351, 7.3348, 7.3348, 7.3356, 7.3371, 7.3372, 7.337, 7.3366, 7.3361, 7.3357, 7.3354, 7.3353, 7.335, 7.3359, 7.3345, 7.3342, 7.3339, 7.3348, 7.3345, 7.3343, 7.3338, 7.3346, 7.3343, 7.3353, 7.3351, 7.3348, 7.3345, 7.3354, 7.3352, 7.3362, 7.337, 7.3378, 7.3373, 7.3369, 7.3365, 7.3363, 7.3384, 7.3396, 7.3394, 7.3392, 7.3399, 7.3397, 7.3393, 7.339, 7.3386, 7.3383, 7.3379, 7.3376, 7.3383, 7.3368, 7.3355, 7.3363, 7.3359, 7.3356, 7.3353, 7.3358, 7.3343, 7.334, 7.3337, 7.3334, 7.333, 7.3327, 7.3325, 7.3322, 7.3321, 7.3329, 7.3353, 7.3351, 7.3349, 7.3365, 7.3377, 7.3385, 7.3383, 7.338, 7.3376, 7.3391, 7.3391, 7.34, 7.3408, 7.3404, 7.3413, 7.3411, 7.3407, 7.3406, 7.3404, 7.34, 7.3399, 7.3396, 7.3404, 7.3401, 7.3397, 7.3395, 7.3392, 7.3379, 7.3388, 7.3385, 7.3435, 7.3433, 7.342, 7.3407, 7.3393, 7.3401, 7.341, 7.3408, 7.3415, 7.3411, 7.3399, 7.3436, 7.3453, 7.3449, 7.345, 7.3439, 7.3453, 7.3504, 7.349, 7.3476, 7.3474, 7.3466, 7.347, 7.3465, 7.3461, 7.347, 7.3467, 7.3475, 7.3472, 7.3468, 7.3465, 7.3463, 7.346, 7.3456, 7.3453, 7.3449, 7.3445, 7.3441, 7.3438, 7.3434, 7.343, 7.3427, 7.3414, 7.341, 7.3406, 7.3404, 7.3403, 7.3405, 7.3401, 7.3388, 7.3385, 7.3383, 7.338, 7.338, 7.3377, 7.3364, 7.3361, 7.3357, 7.3354, 7.335, 7.3346, 7.3354, 7.3362, 7.337, 7.3365, 7.3363, 7.3361, 7.3357, 7.3364, 7.3372, 7.3381, 7.3378, 7.3387, 7.3385, 7.3393, 7.3389, 7.3386, 7.3383, 7.3391, 7.3387, 7.3395, 7.3391, 7.34, 7.3397, 7.3393, 7.3389, 7.3387, 7.3407, 7.3403, 7.3399, 7.3397, 7.3393, 7.3389, 7.3385, 7.3383, 7.339, 7.3388, 7.3399, 7.3414, 7.3412, 7.3411, 7.3419, 7.3417, 7.3418, 7.3414, 7.3415, 7.3411, 7.3431, 7.343, 7.3431, 7.3428, 7.3424, 7.3423, 7.3419, 7.3416, 7.3414, 7.3409, 7.3406, 7.3413, 7.3411, 7.3407, 7.3404, 7.3412, 7.3409, 7.3406, 7.3403, 7.3398, 7.3397, 7.3394, 7.339, 7.3387, 7.3384, 7.338, 7.3377, 7.3374, 7.3371, 7.3369, 7.3367, 7.3375, 7.3372, 7.3368, 7.3364, 7.336, 7.3357, 7.3353, 7.3349, 7.3345, 7.3342, 7.3338, 7.3334, 7.3332, 7.333, 7.3326, 7.3333, 7.3328, 7.3336, 7.3334, 7.333, 7.3328, 7.3326, 7.3322, 7.332, 7.3329, 7.3325, 7.3322, 7.3318, 7.3315, 7.3311, 7.3308, 7.3306, 7.3315, 7.3324, 7.3323, 7.3319, 7.3316, 7.3313, 7.3309, 7.3305, 7.3313, 7.331, 7.3317, 7.3316, 7.3313, 7.3321, 7.3317, 7.3314, 7.3322, 7.3318, 7.3326, 7.3322, 7.3321, 7.3317, 7.3313, 7.332, 7.3316, 7.3323, 7.332, 7.3317, 7.3314, 7.3311, 7.3307, 7.3304, 7.3322, 7.3331, 7.334, 7.3339, 7.3347, 7.3343, 7.3351, 7.3348, 7.3346, 7.3343, 7.334, 7.3327, 7.3323, 7.3319, 7.332, 7.3318, 7.3327, 7.3324, 7.332, 7.3328, 7.3326, 7.3333, 7.3329, 7.3337, 7.3345, 7.3341, 7.3348, 7.3345, 7.3342, 7.3339, 7.3337, 7.3344, 7.3352, 7.3348, 7.3345, 7.3341, 7.3339, 7.335, 7.3382, 7.3378, 7.3374, 7.3372, 7.337, 7.3378, 7.3388, 7.3384, 7.3381, 7.3377, 7.3374, 7.3373, 7.3382, 7.3401, 7.3399, 7.3406, 7.3404, 7.3401, 7.3398, 7.3394, 7.3392, 7.3388, 7.3384, 7.337, 7.3387, 7.3383, 7.3381, 7.3377, 7.3374, 7.3382, 7.338, 7.3378, 7.3385, 7.3392, 7.34, 7.3397, 7.3405, 7.3401, 7.3397, 7.3395, 7.3392, 7.34, 7.3399, 7.3405, 7.3402, 7.3411, 7.3407, 7.3406, 7.3419, 7.3416, 7.3413, 7.3409, 7.3406, 7.3403, 7.3399, 7.3406, 7.3404, 7.3403, 7.3401, 7.3397, 7.3395, 7.3391, 7.3387, 7.3384, 7.3381, 7.3377, 7.3384, 7.338, 7.3376, 7.3383, 7.3379, 7.3395, 7.3391, 7.3399, 7.3395, 7.3391, 7.3389, 7.3387, 7.3395, 7.3392, 7.3401, 7.3397, 7.3405, 7.3401, 7.3408, 7.3406, 7.3402, 7.34, 7.3397, 7.3394, 7.339, 7.3386, 7.3372, 7.3371, 7.337, 7.3368, 7.3365, 7.3361, 7.3357, 7.3354, 7.3351, 7.3352, 7.335, 7.3357, 7.3355, 7.3351, 7.3347, 7.3355, 7.3351, 7.3348, 7.3347, 7.3345, 7.3341, 7.3337, 7.3344, 7.3341, 7.3338, 7.3357, 7.3356, 7.3357, 7.3353, 7.335, 7.3348, 7.3344, 7.334, 7.3336, 7.3333, 7.3331, 7.3328, 7.3324, 7.332, 7.3318, 7.3318, 7.3314, 7.3321, 7.3319, 7.3317, 7.3314, 7.331, 7.3307, 7.3304, 7.33, 7.3298, 7.3294, 7.3284, 7.3281, 7.3277, 7.3273, 7.3269, 7.3266, 7.3273, 7.3281, 7.328, 7.3277, 7.3273, 7.3271, 7.3267, 7.3264, 7.3251, 7.3249, 7.3246, 7.3243, 7.3239, 7.3238, 7.3245, 7.3242, 7.3238, 7.3234, 7.3231, 7.3227, 7.3227, 7.3226, 7.3225, 7.3232, 7.3228, 7.3224, 7.322, 7.3216, 7.3213, 7.321, 7.3206, 7.3203, 7.3203, 7.3211, 7.3209, 7.3208, 7.3205, 7.3213, 7.3221, 7.3221, 7.3218, 7.3215, 7.3222, 7.3218, 7.3215, 7.3222, 7.322, 7.3218, 7.3214, 7.3211, 7.3218, 7.3215, 7.3212, 7.3212, 7.3209, 7.3217, 7.3215, 7.3212, 7.3208, 7.3215, 7.3211, 7.3208, 7.3216, 7.3213, 7.321, 7.3207, 7.3215, 7.3213, 7.3211, 7.3207, 7.3215, 7.3212, 7.3219, 7.3216, 7.3224, 7.322, 7.3217, 7.3227, 7.3225, 7.3233, 7.3229, 7.3237, 7.3234, 7.3231, 7.324, 7.3247, 7.3245, 7.3253, 7.3252, 7.3249, 7.3246, 7.3243, 7.3241, 7.3237, 7.3235, 7.3234, 7.3231, 7.3229, 7.3236, 7.3233, 7.3241, 7.3239, 7.3235, 7.3243, 7.325, 7.3246, 7.3244, 7.324, 7.3237, 7.3247, 7.3257, 7.3274, 7.3282, 7.3278, 7.3277, 7.3275, 7.3272, 7.3268, 7.3274, 7.3272, 7.3279, 7.3286, 7.3283, 7.328, 7.3278, 7.3274, 7.3281, 7.3279, 7.3285, 7.3283, 7.328, 7.3278, 7.3275, 7.3272, 7.3279, 7.3275, 7.3272, 7.327, 7.3266, 7.3262, 7.3258, 7.3265, 7.3252, 7.3239, 7.3236, 7.3233, 7.3231, 7.3229, 7.3236, 7.3286, 7.3293, 7.329, 7.3297, 7.3294, 7.3301, 7.3297, 7.3293, 7.329, 7.3289, 7.3285, 7.3281, 7.3268, 7.3275, 7.3271, 7.3277, 7.3273, 7.3269, 7.3266, 7.3263, 7.3251, 7.3247, 7.3244, 7.3241, 7.3237, 7.3245, 7.3242, 7.3239, 7.3249, 7.3246, 7.3244, 7.3242, 7.3238, 7.3236, 7.3235, 7.3235, 7.3241, 7.3238, 7.3235, 7.3231, 7.3228, 7.3226, 7.3222, 7.3223, 7.323, 7.3227, 7.3215, 7.3213, 7.321, 7.3207, 7.3194, 7.3191, 7.3187, 7.3183, 7.3179, 7.3176, 7.3186, 7.3196, 7.3202, 7.3199, 7.3195, 7.3203, 7.3209, 7.3206, 7.3202, 7.3198, 7.3206, 7.3203, 7.3201, 7.3208, 7.3215, 7.3222, 7.3218, 7.3225, 7.3232, 7.3238, 7.3234, 7.3221, 7.3209, 7.3206, 7.3212, 7.3219, 7.3216, 7.3222, 7.3218, 7.3225, 7.3227, 7.3225, 7.3232, 7.323, 7.3228, 7.3227, 7.3227, 7.3223, 7.3221, 7.3221, 7.3219, 7.3216, 7.3213, 7.3212, 7.322, 7.3218, 7.3215, 7.3212, 7.3223, 7.3221, 7.3218, 7.3226, 7.3223, 7.3222, 7.3219, 7.3216, 7.3213, 7.3221, 7.3218, 7.3274, 7.3273, 7.328, 7.3276, 7.3276, 7.3273, 7.327, 7.3322, 7.332, 7.3316, 7.3325, 7.3332, 7.333, 7.3329, 7.3326, 7.3325, 7.3322, 7.3329, 7.3328, 7.3325, 7.3322, 7.332, 7.3327, 7.3324, 7.3321, 7.3317, 7.3314, 7.3312, 7.3308, 7.3306, 7.3302, 7.33, 7.3297, 7.3295, 7.3292, 7.3289, 7.3286, 7.3284, 7.3281, 7.3278, 7.3285, 7.3281, 7.3281, 7.3286, 7.3289, 7.3286, 7.3284, 7.3281, 7.3289, 7.3286, 7.3283, 7.3289, 7.3297, 7.3295, 7.3295, 7.3293, 7.329, 7.3297, 7.3293, 7.33, 7.3307, 7.3314, 7.331, 7.3306, 7.3303, 7.3301, 7.331, 7.3306, 7.3315, 7.3323, 7.332, 7.3318, 7.3324, 7.3331, 7.3381, 7.3377, 7.3374, 7.337, 7.3371, 7.3367, 7.3366, 7.3374, 7.3383, 7.3371, 7.3368, 7.3364, 7.3361, 7.3358, 7.3358, 7.3354, 7.3361, 7.3358, 7.3365, 7.3355, 7.3354, 7.3351, 7.3348, 7.3344, 7.334, 7.3337, 7.3343, 7.335, 7.3348, 7.3345, 7.3342, 7.3338, 7.3334, 7.3338, 7.3336, 7.3344, 7.3342, 7.3351, 7.3348, 7.3346, 7.3342, 7.334, 7.3338, 7.3335, 7.3332, 7.3329, 7.3332, 7.3329, 7.3326, 7.3322, 7.3319, 7.3317, 7.3314, 7.3312, 7.3311, 7.3308, 7.3315, 7.3312, 7.3309, 7.3316, 7.3323, 7.333, 7.3327, 7.3325, 7.3322, 7.3339, 7.3347, 7.3343, 7.335, 7.3348, 7.3336, 7.3333, 7.334, 7.3336, 7.3334, 7.3333, 7.3321, 7.3317, 7.3324, 7.3321, 7.331, 7.3316, 7.3314, 7.3312, 7.3311, 7.3308, 7.3315, 7.3315, 7.3312, 7.3319, 7.3322, 7.3319, 7.3317, 7.3316, 7.3323, 7.3322, 7.3318, 7.3316, 7.3313, 7.332, 7.3317, 7.3314, 7.3321, 7.3317, 7.3314, 7.332, 7.3316, 7.3314, 7.3312, 7.331, 7.3317, 7.3314, 7.3302, 7.3299, 7.3295, 7.3302, 7.3301, 7.3309, 7.3306, 7.3296, 7.3293, 7.3289, 7.3285, 7.3275, 7.3271, 7.3278, 7.3275, 7.3271, 7.3267, 7.3264, 7.3262, 7.3258, 7.3255, 7.3253, 7.3252, 7.3249, 7.3247, 7.3245, 7.3243, 7.3251, 7.3259, 7.3268, 7.3265, 7.3261, 7.3258, 7.3257, 7.3253, 7.3252, 7.3252, 7.3248, 7.3255, 7.3252, 7.326, 7.3258, 7.3255, 7.3253, 7.326300000000001, 7.3259, 7.3267, 7.3265, 7.3261, 7.3258, 7.3255, 7.3253, 7.326, 7.3267, 7.3255, 7.3242, 7.3239, 7.3237, 7.3234, 7.3241, 7.3242, 7.3253, 7.3252, 7.325, 7.3258, 7.3254, 7.3252, 7.3261, 7.3259, 7.3258, 7.3255, 7.3252, 7.326, 7.326, 7.327, 7.3279, 7.3277, 7.3285, 7.3291, 7.3297, 7.3293, 7.329, 7.3286, 7.3283, 7.3281, 7.3278, 7.3275, 7.3273, 7.327, 7.3267, 7.3266, 7.3264, 7.326, 7.3267, 7.3264, 7.326, 7.3257, 7.3264, 7.326, 7.3257, 7.3255, 7.3262, 7.326, 7.3277, 7.3276, 7.3273, 7.3271, 7.3267, 7.3264, 7.3265, 7.3272, 7.3294, 7.3292, 7.3289, 7.3287, 7.329700000000001, 7.3296, 7.3295, 7.3302, 7.3302, 7.331, 7.3307, 7.3305, 7.3302, 7.33, 7.3302, 7.3326, 7.3324, 7.3331, 7.3319, 7.3309, 7.3306, 7.3317, 7.3316, 7.3314, 7.3311, 7.3309, 7.3319, 7.3316, 7.3315, 7.3322, 7.332, 7.3317, 7.3325, 7.3314, 7.3311, 7.3311, 7.3308, 7.3305, 7.3302, 7.3301, 7.3298, 7.3295, 7.3303, 7.331, 7.3308, 7.3305, 7.3303, 7.3302, 7.3292, 7.3288, 7.3284, 7.3281, 7.3281, 7.3269, 7.3266, 7.3264, 7.3274, 7.3274, 7.3274, 7.3281, 7.3287, 7.3293, 7.3291, 7.3311, 7.3318, 7.3315, 7.3313, 7.3315, 7.3312, 7.3309, 7.3306, 7.3303, 7.3311, 7.3318, 7.3335, 7.3333, 7.3321, 7.331, 7.3317, 7.3314, 7.3313, 7.332, 7.3327, 7.3324, 7.3332, 7.3331, 7.333, 7.3338, 7.3338, 7.3335, 7.3332, 7.3329, 7.3327, 7.3326, 7.3324, 7.3332, 7.333, 7.3329, 7.3336, 7.3333, 7.333, 7.3327, 7.3324, 7.3321, 7.3318, 7.3317, 7.3306, 7.3305, 7.3314, 7.3313, 7.331, 7.3307, 7.3306, 7.3308, 7.3305, 7.3313, 7.332, 7.3317, 7.3314, 7.3314, 7.3321, 7.331, 7.3307, 7.3305, 7.3302, 7.3309, 7.3321, 7.3341, 7.3338, 7.3335, 7.3341, 7.3338, 7.3345, 7.3344, 7.3341, 7.3338, 7.3335, 7.3333, 7.333, 7.3336, 7.3343, 7.335, 7.3347, 7.3345, 7.3343, 7.335, 7.3347, 7.3344, 7.334, 7.3337, 7.3334, 7.333, 7.3327, 7.3324, 7.3321, 7.3319, 7.3325, 7.3323, 7.3319, 7.3316, 7.3322, 7.3329, 7.3325, 7.3322, 7.3321, 7.3319, 7.3316, 7.3315, 7.3322, 7.332, 7.3317, 7.3315, 7.3357, 7.3345, 7.3343, 7.3349, 7.3345, 7.3341, 7.334, 7.3348, 7.3347, 7.3338, 7.3336, 7.3334, 7.3341, 7.3337, 7.3335, 7.3333, 7.333, 7.3327, 7.3324, 7.3312, 7.3309, 7.332, 7.333, 7.3322, 7.3321, 7.332, 7.3318, 7.3316, 7.3312, 7.3318, 7.3315, 7.3315, 7.3313, 7.3312, 7.3311, 7.33, 7.3299, 7.3295, 7.3291, 7.3288, 7.3288, 7.3285, 7.3292, 7.3289, 7.3321, 7.333, 7.3339, 7.3337, 7.3345, 7.3343, 7.3339, 7.3336, 7.3343, 7.334, 7.3347, 7.3346, 7.3342, 7.3341, 7.3341, 7.3338, 7.3336, 7.3338, 7.3335, 7.3332, 7.3347, 7.3346, 7.3343, 7.3341, 7.3347, 7.3371, 7.3369, 7.3367, 7.3367, 7.3364, 7.3374, 7.3371, 7.3369, 7.3366, 7.3363, 7.3361, 7.3359, 7.3357, 7.3354, 7.3352, 7.3359, 7.3366, 7.3363, 7.3359, 7.3357, 7.3363, 7.336, 7.3357, 7.3354, 7.3351, 7.335, 7.3356, 7.3353, 7.3359, 7.3356, 7.3358, 7.337, 7.3358, 7.3355, 7.3361, 7.3359, 7.3356, 7.3353, 7.3361, 7.3368, 7.3374, 7.338, 7.3378, 7.3375, 7.3382, 7.3379, 7.3385, 7.3382, 7.3379, 7.3376, 7.3373, 7.3372, 7.3369, 7.3366, 7.3363, 7.3361, 7.3358, 7.3357, 7.3355, 7.3352, 7.3349, 7.3346, 7.3353, 7.3352, 7.3349, 7.3349, 7.3356, 7.3354, 7.3352, 7.3358, 7.3355, 7.3352, 7.3349, 7.3346, 7.3343, 7.334, 7.3331, 7.3341, 7.3347, 7.3345, 7.3343, 7.3341, 7.334, 7.3339, 7.3346, 7.3335, 7.3342, 7.3369, 7.3366, 7.3363, 7.337, 7.3367, 7.3367, 7.3384, 7.3382, 7.3399, 7.3405, 7.3403, 7.34, 7.341, 7.3418, 7.3425, 7.3422, 7.3428, 7.3425, 7.3431, 7.3428, 7.3418, 7.3416, 7.3405, 7.3405, 7.3402, 7.3412, 7.3409, 7.3407, 7.3395, 7.3393, 7.34, 7.3399, 7.3397, 7.3394, 7.3391, 7.3384, 7.3374, 7.338, 7.3377, 7.3375, 7.3373, 7.337, 7.3367, 7.3364, 7.3364, 7.3363, 7.337, 7.3377, 7.3375, 7.3381, 7.3378, 7.3367, 7.3374, 7.3391, 7.3388, 7.3433, 7.343, 7.3428, 7.3435, 7.3433, 7.3422, 7.3412, 7.3411, 7.3408, 7.3404, 7.3411, 7.3408, 7.3406, 7.3404, 7.3402, 7.3423, 7.342, 7.3417, 7.3416, 7.3413, 7.3418, 7.3425, 7.3422, 7.342, 7.3419, 7.3425, 7.343, 7.3426, 7.3423, 7.3421, 7.3446, 7.3452, 7.3449, 7.3447, 7.3446, 7.3443, 7.345, 7.3448, 7.3454, 7.3452, 7.3449, 7.3456, 7.3445, 7.3442, 7.3439, 7.3446, 7.3443, 7.3441, 7.3439, 7.3437, 7.3435, 7.3433, 7.343, 7.3427, 7.3434, 7.3431, 7.3437, 7.3434, 7.3431, 7.3429, 7.3427, 7.3433, 7.3432, 7.343, 7.3427, 7.3424, 7.3431, 7.3439, 7.3454, 7.3451, 7.345, 7.3447, 7.3444, 7.3442, 7.3439, 7.3436, 7.3434, 7.3431, 7.3429, 7.3427, 7.3424, 7.3421, 7.3419, 7.3418, 7.3424, 7.343, 7.3436, 7.3441, 7.3457, 7.3456, 7.3456, 7.3453, 7.3451, 7.3457, 7.3454, 7.3452, 7.345, 7.3456, 7.3455, 7.3461, 7.3468, 7.3466, 7.3463, 7.346, 7.3449, 7.3455, 7.3454, 7.346, 7.3457, 7.3453, 7.345, 7.3448, 7.3446, 7.3444, 7.3441, 7.3447, 7.3444, 7.3451, 7.3459, 7.3456, 7.3454, 7.3461, 7.3458, 7.3455, 7.3452, 7.3449, 7.3439, 7.3447, 7.3444, 7.3441, 7.3447, 7.3444, 7.3451, 7.3448, 7.3437, 7.3435, 7.3432, 7.3429, 7.3427, 7.3425, 7.3422, 7.342, 7.342, 7.3418, 7.3417, 7.3416, 7.3414, 7.3411, 7.3409, 7.3406, 7.3403, 7.3403, 7.34, 7.3406, 7.3404, 7.3403, 7.3402, 7.3409, 7.3407, 7.3404, 7.3401, 7.3408, 7.3414, 7.3412, 7.341, 7.3408, 7.3405, 7.3402, 7.3409, 7.3408, 7.3409, 7.3406, 7.3395, 7.3393, 7.3391, 7.3389, 7.3386, 7.3383, 7.3389, 7.3387, 7.3394, 7.3391, 7.3389, 7.3387, 7.3385, 7.3382, 7.338, 7.3386, 7.3385, 7.3383, 7.3389, 7.3386, 7.3384, 7.3381, 7.3387, 7.3377, 7.3366, 7.3363, 7.3363, 7.336, 7.3357, 7.3347, 7.3336, 7.3325, 7.3315, 7.3321, 7.3319, 7.3316, 7.3314, 7.3305, 7.3305, 7.3302, 7.3308, 7.3306, 7.3303, 7.3317, 7.3357, 7.3354, 7.3352, 7.335, 7.3348, 7.3345, 7.3344, 7.3333, 7.3332, 7.3329, 7.3326, 7.3323, 7.3329, 7.3326, 7.3333, 7.334, 7.3342, 7.3339, 7.3338, 7.3337, 7.3345, 7.3342, 7.3348, 7.3345, 7.3353, 7.3379, 7.3376, 7.3382, 7.3389, 7.3395, 7.3393, 7.3385, 7.3393, 7.34, 7.3398, 7.3397, 7.3403, 7.3401, 7.3398, 7.3406, 7.3403, 7.341, 7.3407, 7.3407, 7.3404, 7.3401, 7.3398, 7.3396, 7.3393, 7.339, 7.3388, 7.3386, 7.3383, 7.3381, 7.3378, 7.3375, 7.3381, 7.3379, 7.3378, 7.338, 7.3379, 7.3379, 7.3396, 7.3393, 7.3391, 7.3388, 7.3385, 7.3382, 7.3382, 7.3388, 7.3386, 7.3383, 7.338, 7.3378, 7.3384, 7.3391, 7.3391, 7.3389, 7.3387, 7.3385, 7.3383, 7.339, 7.3397, 7.3394, 7.3392, 7.3389, 7.3386, 7.3383, 7.3381, 7.3378, 7.3384, 7.3382, 7.3379, 7.3378, 7.3385, 7.3384, 7.3381, 7.3378, 7.3375, 7.3374, 7.338, 7.3377, 7.3375, 7.3379, 7.3404, 7.3411, 7.3408, 7.3405, 7.3402, 7.3401, 7.3407, 7.3404, 7.3403, 7.34, 7.3398, 7.3397, 7.3395, 7.3393, 7.3391, 7.3389, 7.3415, 7.3412, 7.341, 7.3416, 7.3413, 7.3411, 7.3409, 7.3406, 7.3403, 7.3401, 7.3398, 7.3404, 7.3409, 7.3424, 7.3431, 7.3438, 7.3449, 7.3446, 7.3435, 7.3432, 7.3432, 7.3431, 7.3431, 7.3438, 7.3452, 7.3457, 7.3456, 7.3453, 7.345, 7.3469, 7.3491, 7.3489, 7.3494, 7.3491, 7.3497, 7.3495, 7.3492, 7.3489, 7.3495, 7.3484, 7.349, 7.3489, 7.3487, 7.3486, 7.3496, 7.3493, 7.3499, 7.3505, 7.3515, 7.3512, 7.3509, 7.3506, 7.3504, 7.3503, 7.3501, 7.3491, 7.349, 7.3487, 7.3486, 7.3483, 7.348, 7.3478, 7.3477, 7.3476, 7.3473, 7.348, 7.3477, 7.3476, 7.3474, 7.3472, 7.3469, 7.3482, 7.3479, 7.3476, 7.349, 7.3487, 7.3493, 7.3491, 7.3489, 7.3487, 7.3489, 7.3487, 7.3485, 7.3494, 7.3491, 7.3491, 7.3489, 7.3487, 7.3485, 7.3484, 7.3481, 7.3479, 7.3476, 7.3474, 7.3472, 7.3469, 7.3466, 7.3464, 7.3461, 7.3467, 7.3465, 7.3463, 7.3461, 7.3458, 7.3456, 7.3453, 7.345, 7.3449, 7.3456, 7.3453, 7.3459, 7.3457, 7.3459, 7.3456, 7.3454, 7.3452, 7.345, 7.3448, 7.3471, 7.3477, 7.3474, 7.3471, 7.3472, 7.3464, 7.3456, 7.3454, 7.3444, 7.3455, 7.347, 7.3467, 7.3481, 7.3478, 7.3476, 7.3482, 7.3483, 7.3482, 7.348, 7.3477, 7.3475, 7.3472, 7.3469, 7.3468, 7.3467, 7.3465, 7.3463, 7.3469, 7.3466, 7.3465, 7.3471, 7.347, 7.3476, 7.3473, 7.3479, 7.3476, 7.3477, 7.3475, 7.3472, 7.3478, 7.3484, 7.349, 7.3487, 7.3484, 7.3481, 7.3478, 7.3477, 7.3476, 7.3482, 7.348, 7.3478, 7.3476, 7.3473, 7.348, 7.3478, 7.3476, 7.3473, 7.3479, 7.3476, 7.3473, 7.3479, 7.3478, 7.3478, 7.3476, 7.3483, 7.3481, 7.3479, 7.3477, 7.3475, 7.3473, 7.347, 7.3469, 7.3466, 7.3463, 7.3462, 7.346, 7.3457, 7.3463, 7.346, 7.3457, 7.3455, 7.3452, 7.3449, 7.3446, 7.3451, 7.3448, 7.3445, 7.3444, 7.3441, 7.3446, 7.3444, 7.3443, 7.344, 7.3438, 7.3443, 7.3441, 7.3438, 7.3435, 7.3432, 7.3437, 7.3434, 7.3431, 7.3431, 7.3436, 7.3434, 7.344, 7.3453, 7.3451, 7.3449, 7.3447, 7.3445, 7.3454, 7.3451, 7.347, 7.3475, 7.3472, 7.347, 7.3469, 7.3467, 7.3473, 7.3479, 7.3494, 7.3493, 7.3491, 7.3488, 7.3498, 7.3495, 7.3492, 7.3489, 7.3504, 7.3502, 7.35, 7.3497, 7.3502, 7.3499, 7.3497, 7.3495, 7.3501, 7.3493, 7.3491, 7.3489, 7.3487, 7.3486, 7.3484, 7.3482, 7.3479, 7.3477, 7.3474, 7.3473, 7.3478, 7.3476, 7.3474, 7.3471, 7.347, 7.3481, 7.3487, 7.3485, 7.3487, 7.3485, 7.3482, 7.3479, 7.3476, 7.3482, 7.3488, 7.3493, 7.3499, 7.3497, 7.3494, 7.3492, 7.3498, 7.35, 7.3503, 7.3501, 7.3501, 7.3495, 7.35, 7.3497, 7.3495, 7.3509, 7.351, 7.3507, 7.3513, 7.3519, 7.3516, 7.3513, 7.351, 7.3507, 7.3513, 7.351, 7.3507, 7.3505, 7.3511, 7.3508, 7.3513, 7.3518, 7.3516, 7.3515, 7.3519, 7.3518, 7.3515, 7.3513, 7.3519, 7.3541, 7.3555, 7.3552, 7.3551, 7.3549, 7.3554, 7.3554, 7.3553, 7.3543, 7.3555, 7.3552, 7.355, 7.3556, 7.3555, 7.3552, 7.3558, 7.3555, 7.3561, 7.356, 7.3566, 7.3571, 7.3568, 7.3573, 7.357, 7.3567, 7.3564, 7.3581, 7.3614, 7.3611, 7.3608, 7.3608, 7.3606, 7.3603, 7.3611, 7.3609, 7.3606, 7.3604, 7.3601, 7.3599, 7.3604, 7.3618, 7.3617, 7.3639, 7.3637, 7.3627, 7.3624, 7.3621, 7.362, 7.3627, 7.3626, 7.3625, 7.3623, 7.3621, 7.3619, 7.3617, 7.3614, 7.3612, 7.361, 7.3609, 7.3606, 7.3604, 7.3603, 7.36, 7.3606, 7.3598, 7.3621, 7.362, 7.3617, 7.3619, 7.3618, 7.3632, 7.3631, 7.3637, 7.364, 7.3656, 7.3653, 7.3652, 7.3649, 7.3655, 7.3664, 7.3655, 7.3652, 7.3649, 7.3647, 7.3645, 7.3642, 7.3639, 7.3637, 7.3635, 7.3633, 7.363, 7.3628, 7.3626, 7.3623, 7.3615, 7.3617, 7.362, 7.3619, 7.3616, 7.3613, 7.3611, 7.3608, 7.3609, 7.3608, 7.3605, 7.3611, 7.3608, 7.3606, 7.3603, 7.3609, 7.3606, 7.3611, 7.3608, 7.361, 7.3607, 7.3605, 7.3602, 7.3599, 7.3603, 7.3608, 7.3616, 7.3613, 7.361, 7.3608, 7.3613, 7.3621, 7.3618, 7.3615, 7.3614, 7.3612, 7.3611, 7.361, 7.3607, 7.3614, 7.3611, 7.3609, 7.3606, 7.3604, 7.3625, 7.3623, 7.3633, 7.3648, 7.3646, 7.3643, 7.3642, 7.364, 7.3639, 7.3637, 7.3636, 7.3633, 7.364, 7.3639, 7.3637, 7.3635, 7.3633, 7.3632, 7.3629, 7.3627, 7.3634, 7.3646, 7.3643, 7.3643, 7.3641, 7.3639, 7.3645, 7.3644, 7.3642, 7.364, 7.3655, 7.3652, 7.3658, 7.3657, 7.3656, 7.3653, 7.3652, 7.3649, 7.3647, 7.3645, 7.366, 7.3658, 7.3655, 7.3661, 7.3659, 7.3656, 7.3662, 7.3661, 7.3675, 7.3689, 7.3686, 7.3683, 7.368, 7.3679, 7.3679, 7.3677, 7.3674, 7.3671, 7.3677, 7.3674, 7.3673, 7.367, 7.3667, 7.3666, 7.3671, 7.3669, 7.3668, 7.3667, 7.3667, 7.3672, 7.3669, 7.3667, 7.3665, 7.3662, 7.366, 7.366, 7.3666, 7.3663, 7.366, 7.3658, 7.3655, 7.3652, 7.365, 7.3649, 7.3647, 7.3653, 7.3651, 7.3648, 7.3653, 7.3651, 7.3649, 7.3647, 7.3652, 7.3659, 7.3656, 7.3654, 7.3651, 7.3649, 7.3648, 7.3648, 7.3653, 7.365, 7.3656, 7.3661, 7.3667, 7.3666, 7.3671, 7.3669, 7.3666, 7.3665, 7.3663, 7.3664, 7.3661, 7.3667, 7.3666, 7.3664, 7.3663, 7.3662, 7.3661, 7.3658, 7.3657, 7.3654, 7.3652, 7.365, 7.3647, 7.3644, 7.3643, 7.3643, 7.364, 7.3639, 7.3645, 7.365, 7.365, 7.3647, 7.3645, 7.3643, 7.364, 7.3645, 7.3643, 7.3641, 7.3646, 7.3643, 7.364, 7.3637, 7.3634, 7.3631, 7.3629, 7.3628, 7.3633, 7.3631, 7.3629, 7.3628, 7.3633, 7.3632, 7.3632, 7.3637, 7.3634, 7.3631, 7.3629, 7.3628, 7.3626, 7.3631, 7.363, 7.3635, 7.3632, 7.3637, 7.3637, 7.3642, 7.3639, 7.3636, 7.3636, 7.3641, 7.3638, 7.3635, 7.364, 7.3639, 7.3644, 7.3641, 7.3671, 7.3669, 7.3667, 7.3665, 7.3666, 7.3667, 7.3667, 7.3664, 7.3663, 7.3669, 7.3667, 7.3665, 7.3662, 7.3675, 7.3714, 7.3713, 7.3712, 7.371, 7.3708, 7.3708, 7.3706, 7.3704, 7.3702, 7.37, 7.3697, 7.3696, 7.3693, 7.3691, 7.3688, 7.3686, 7.3684, 7.3682, 7.3682, 7.3687, 7.3685, 7.3691, 7.3688, 7.3687, 7.3694, 7.3691, 7.369, 7.3687, 7.3684, 7.3682, 7.3681, 7.368, 7.3677, 7.3675, 7.3672, 7.3669, 7.3666, 7.3665, 7.3666, 7.3671, 7.367, 7.3667, 7.3667, 7.3665, 7.3663, 7.3662, 7.366, 7.3658, 7.3673, 7.367, 7.3687, 7.3684, 7.3682, 7.3683, 7.368, 7.3678, 7.3679, 7.3677, 7.3676, 7.3675, 7.3672, 7.3669, 7.3668, 7.3665, 7.3662, 7.3668, 7.3665, 7.3662, 7.3659, 7.3664, 7.3661, 7.3658, 7.3657, 7.3654, 7.3652, 7.3651, 7.3648, 7.3647, 7.3644, 7.3641, 7.364, 7.364, 7.3638, 7.3637, 7.3638, 7.3636, 7.367, 7.3668, 7.3673, 7.3664, 7.3655, 7.366], '192.168.122.115': [33.2656, 19.9446, 17.0888, 14.3363, 12.632, 12.5523, 11.5953, 11.5365, 11.1013, 11.1184, 10.7182, 10.3221, 10.0475, 9.7454, 9.4585, 9.595, 9.3885, 9.1787, 9.2818, 9.3657, 9.1883, 9.0224, 8.9085, 8.8669, 8.8243, 8.7512, 8.6385, 8.5674, 8.659, 8.5569, 8.6324, 8.5428, 8.6136, 8.5299, 8.9657, 9.1357, 9.044, 8.9813, 8.9008, 8.8147, 8.8255, 8.8148, 8.7361, 8.6596, 8.7074, 8.7525, 8.6848, 8.6161, 8.5704, 8.7143, 8.6589, 8.5964, 8.7847, 8.7327, 8.6813, 8.72, 8.7574, 8.7177, 8.6632, 8.7012, 8.7406, 8.6888, 8.6466, 8.5977, 8.5554, 8.5195, 8.4751, 8.4388, 8.3933, 8.3525, 8.3201, 8.2902, 8.266, 8.2289, 8.2032, 8.1718, 8.1423, 8.1766, 8.1532, 8.2427, 8.2146, 8.1945, 8.229, 8.2068, 8.1782, 8.1492, 8.1288, 8.102, 8.079, 8.0541, 8.0265, 8.0001, 8.0404, 8.0219, 7.9994, 7.9724, 7.9513, 7.9804, 7.954, 7.9291, 7.9166, 7.8912, 7.8749, 7.8519, 7.8306, 7.8097, 7.7869, 7.7755, 7.76, 7.8365, 7.8672, 7.9024, 7.8504, 7.8345, 7.8801, 7.9072, 7.8883, 7.9162, 7.9005, 7.9293, 7.9589, 7.9696, 8.1006, 8.0863, 8.0635, 8.0449, 8.0678, 8.053, 8.0413, 8.0242, 8.0113, 7.9945, 7.9778, 8.0196, 8.0013, 7.9835, 7.9657, 7.9882, 7.9755, 7.9571, 7.9809, 7.9643, 7.9575, 7.9399, 7.9216, 7.9043, 7.8883, 7.911, 7.895, 7.8835, 7.8716, 7.8568, 7.8436, 7.8379, 7.8296, 7.8136, 7.7988, 7.8574, 7.844, 7.8303, 7.8168, 7.8114, 7.7988, 7.7866, 7.7728, 7.7635, 7.7834, 7.7865, 7.813, 7.7975, 7.7866, 7.7742, 7.7605, 7.8251, 7.813, 7.8295, 7.8168, 7.8175, 7.8053, 7.7964, 7.7847, 7.7709, 7.7592, 7.7517, 7.739, 7.7591, 7.748, 7.7356, 7.7573, 7.7532, 7.7427, 7.761, 7.7513, 7.7394, 7.7282, 7.7182, 7.7103, 7.7008, 7.6916, 7.6826, 7.6724, 7.6629, 7.6756, 7.6635, 7.6798, 7.6682, 7.6571, 7.6521, 7.6428, 7.6368, 7.6307, 7.6312, 7.6264, 7.6185, 7.6408, 7.6567, 7.672, 7.6613, 7.658, 7.6499, 7.6469, 7.6382, 7.632, 7.6254, 7.6408, 7.6314, 7.6271, 7.646, 7.6426, 7.6341, 7.6501, 7.6418, 7.6577, 7.6284, 7.6232, 7.6194, 7.6311, 7.6228, 7.6197, 7.613, 7.6269, 7.6424, 7.6567, 7.653, 7.6464, 7.6402, 7.6314, 7.6222, 7.6171, 7.6083, 7.6018, 7.5933, 7.5849, 7.5789, 7.575, 7.5665, 7.5603, 7.5527, 7.5655, 7.5405, 7.5338, 7.5282, 7.5426, 7.5352, 7.5307, 7.5256, 7.5409, 7.5322, 7.5251, 7.5217, 7.5192, 7.5167, 7.5107, 7.505, 7.4985, 7.4939, 7.487, 7.48, 7.4771, 7.4722, 7.4659, 7.4588, 7.4569, 7.4681, 7.466, 7.4781, 7.4903, 7.4849, 7.4797, 7.4781, 7.4722, 7.4656, 7.4611, 7.4734, 7.4686, 7.4617, 7.4564, 7.4493, 7.4422, 7.4387, 7.4317, 7.4435, 7.4406, 7.4366, 7.4303, 7.4785, 7.4963, 7.4925, 7.488, 7.5143, 7.5129, 7.5299, 7.5425, 7.5385, 7.5488, 7.5425, 7.5357, 7.5308, 7.5237, 7.5199, 7.5158, 7.5092, 7.5213, 7.5151, 7.5097, 7.5044, 7.4986, 7.496, 7.4922, 7.4877, 7.4831, 7.4776, 7.4726, 7.467, 7.4618, 7.4554, 7.4505, 7.4486, 7.4422, 7.4386, 7.4336, 7.4299, 7.4249, 7.4226, 7.423, 7.4176, 7.4142, 7.4091, 7.4044, 7.414, 7.4241, 7.4206, 7.4158, 7.411, 7.4055, 7.4023, 7.3964, 7.391, 7.3862, 7.3826, 7.3785, 7.3742, 7.3701, 7.3746, 7.403, 7.3981, 7.3959, 7.392, 7.4056, 7.403, 7.4238, 7.4197, 7.4154, 7.4114, 7.4101, 7.4068, 7.4022, 7.4007, 7.397, 7.3922, 7.4008, 7.4089, 7.4182, 7.4272, 7.4217, 7.4162, 7.4132, 7.4129, 7.4077, 7.4024, 7.4109, 7.4095, 7.4175, 7.4152, 7.4101, 7.4048, 7.427, 7.4356, 7.4452, 7.4407, 7.4404, 7.4354, 7.4304, 7.4256, 7.4261, 7.4272, 7.4554, 7.4635, 7.4593, 7.4543, 7.4507, 7.4468, 7.4417, 7.4545, 7.4508, 7.5207, 7.517, 7.5119, 7.5067, 7.5022, 7.4982, 7.5062, 7.5044, 7.5003, 7.4963, 7.4914, 7.4883, 7.4982, 7.4966, 7.5057, 7.5015, 7.5104, 7.5063, 7.5021, 7.5028, 7.4999, 7.5516, 7.5609, 7.5597, 7.5555, 7.5528, 7.5483, 7.5441, 7.5441, 7.5528, 7.5629, 7.5593, 7.5577, 7.5662, 7.5749, 7.571, 7.5673, 7.5871, 7.5957, 7.5913, 7.5874, 7.5834, 7.5812, 7.5771, 7.5859, 7.5839, 7.5995, 7.5966, 7.5922, 7.5899, 7.5859, 7.5838, 7.5796, 7.5771, 7.5844, 7.5921, 7.5878, 7.5839, 7.581, 7.5774, 7.5867, 7.5832, 7.5794, 7.5769, 7.5727, 7.5719, 7.5675, 7.5655, 7.5636, 7.5713, 7.5684, 7.564, 7.5619, 7.5622, 7.5586, 7.5556, 7.5523, 7.5481, 7.5472, 7.545, 7.552, 7.5476, 7.5561, 7.5522, 7.5478, 7.5453, 7.5464, 7.5445, 7.5406, 7.5387, 7.5466, 7.554, 7.5503, 7.5466, 7.5432, 7.5399, 7.5371, 7.5329, 7.5291, 7.5284, 7.5247, 7.5207, 7.5165, 7.5232, 7.5198, 7.5187, 7.5154, 7.5119, 7.5095, 7.5058, 7.5021, 7.509, 7.5071, 7.5051, 7.5019, 7.4997, 7.4965, 7.4945, 7.4912, 7.4883, 7.4859, 7.4829, 7.4818, 7.4981, 7.4952, 7.5031, 7.5096, 7.5066, 7.5147, 7.5185, 7.5251, 7.5221, 7.5187, 7.5267, 7.5237, 7.5212, 7.5183, 7.5155, 7.5114, 7.5083, 7.5056, 7.5113, 7.508, 7.5051, 7.5032, 7.5008, 7.4982, 7.4946, 7.4937, 7.4998, 7.497, 7.4935, 7.4901, 7.4865, 7.483, 7.4834, 7.4909, 7.4878, 7.4849, 7.4814, 7.4886, 7.4856, 7.4826, 7.4886, 7.4951, 7.492, 7.4886, 7.486, 7.4827, 7.4889, 7.4949, 7.4916, 7.4902, 7.4871, 7.4931, 7.4995, 7.4966, 7.4931, 7.4897, 7.4873, 7.4929, 7.4893, 7.4858, 7.4915, 7.488, 7.494, 7.5, 7.4965, 7.4928, 7.4917, 7.4885, 7.4852, 7.4815, 7.4784, 7.4747, 7.4711, 7.4682, 7.4655, 7.4629, 7.4609, 7.4664, 7.4638, 7.4602, 7.4569, 7.4537, 7.4514, 7.45, 7.4496, 7.4476, 7.4449, 7.4416, 7.4393, 7.4358, 7.4338, 7.439, 7.4359, 7.4331, 7.4384, 7.4353, 7.4322, 7.4296, 7.4282, 7.4336, 7.4387, 7.4367, 7.4366, 7.4343, 7.4394, 7.4361, 7.4635, 7.4609, 7.4575, 7.4628, 7.4599, 7.4571, 7.4545, 7.4527, 7.4582, 7.4556, 7.461, 7.4583, 7.465, 7.4639, 7.4612, 7.4598, 7.4569, 7.4543, 7.4513, 7.4484, 7.4461, 7.4431, 7.4406, 7.4396, 7.4377, 7.4347, 7.4334, 7.4303, 7.4279, 7.418, 7.4176, 7.417, 7.4145, 7.4136, 7.4116, 7.4098, 7.4149, 7.4118, 7.4096, 7.4078, 7.4049, 7.4029, 7.4007, 7.4068, 7.4039, 7.4019, 7.3994, 7.3964, 7.401, 7.3992, 7.3973, 7.3964, 7.3947, 7.3934, 7.3907, 7.3882, 7.3868, 7.3904, 7.3901, 7.3885, 7.3878, 7.3923, 7.3908, 7.3891, 7.386, 7.3848, 7.3818, 7.38, 7.3797, 7.3704, 7.3684, 7.3663, 7.3652, 7.3705, 7.3686, 7.3671, 7.3655, 7.3632, 7.3607, 7.3602, 7.3732, 7.371, 7.3687, 7.3664, 7.3726, 7.3794, 7.3769, 7.3744, 7.373, 7.3828, 7.3805, 7.3789, 7.3765, 7.375, 7.3807, 7.3803, 7.3786, 7.3759, 7.3749, 7.3725, 7.371, 7.3688, 7.3737, 7.372, 7.3702, 7.3674, 7.3657, 7.3636, 7.3624, 7.3604, 7.3593, 7.3614, 7.36, 7.3646, 7.3631, 7.3605, 7.3654, 7.3626, 7.36, 7.3579, 7.3567, 7.3546, 7.3592, 7.3583, 7.3564, 7.3541, 7.352, 7.3496, 7.3485, 7.346, 7.3448, 7.3444, 7.3433, 7.3424, 7.34, 7.3377, 7.3352, 7.3335, 7.3315, 7.3307, 7.33, 7.3282, 7.3362, 7.3349, 7.3394, 7.3376, 7.335, 7.3336, 7.3387, 7.3435, 7.3415, 7.3398, 7.3373, 7.3417, 7.3529, 7.3573, 7.3822, 7.38, 7.3775, 7.3755, 7.3734, 7.3709, 7.369, 7.3743, 7.3722, 7.3765, 7.3818, 7.3798, 7.3773, 7.3758, 7.3734, 7.3713, 7.3692, 7.3673, 7.3669, 7.3718, 7.3715, 7.3757, 7.376, 7.3811, 7.3806, 7.3852, 7.385, 7.3899, 7.389, 7.3884, 7.3932, 7.3909, 7.3887, 7.3875, 7.3856, 7.3843, 7.3828, 7.3815, 7.3798, 7.3775, 7.3762, 7.3746, 7.3728, 7.3728, 7.3719, 7.3699, 7.3683, 7.366, 7.3652, 7.37, 7.3752, 7.3751, 7.3739, 7.3731, 7.3712, 7.369, 7.3673, 7.366, 7.3641, 7.363, 7.3677, 7.3722, 7.3702, 7.3683, 7.3663, 7.3643, 7.3634, 7.3611, 7.3596, 7.3814, 7.3791, 7.3767, 7.3754, 7.374, 7.3717, 7.3703, 7.3991, 7.3978, 7.3959, 7.3936, 7.3974, 7.3955, 7.3936, 7.392, 7.3899, 7.3876, 7.3914, 7.3892, 7.3869, 7.3907, 7.3886, 7.3864, 7.384, 7.3817, 7.3804, 7.4051, 7.4037, 7.4021, 7.3998, 7.3987, 7.3964, 7.3942, 7.3979, 7.3958, 7.3948, 7.3932, 7.3915, 7.3954, 7.3932, 7.3913, 7.3901, 7.3889, 7.3868, 7.3847, 7.3832, 7.3835, 7.3825, 7.3814, 7.3792, 7.3776, 7.3763, 7.3757, 7.3797, 7.3776, 7.3811, 7.3845, 7.3822, 7.381, 7.3814, 7.3806, 7.3789, 7.3778, 7.3759, 7.3747, 7.3734, 7.3723, 7.3702, 7.3689, 7.381, 7.3797, 7.3781, 7.3791, 7.3775, 7.3766, 7.3749, 7.3791, 7.3801, 7.3791, 7.3776, 7.3815, 7.3795, 7.3829, 7.3869, 7.3905, 7.3941, 7.392, 7.391, 7.3896, 7.3879, 7.3862, 7.3847, 7.3884, 7.3876, 7.3867, 7.3905, 7.394, 7.3927, 7.3917, 7.39, 7.3896, 7.388, 7.3865, 7.3848, 7.3889, 7.3867, 7.3849, 7.383, 7.3816, 7.3811, 7.3795, 7.3779, 7.3776, 7.3755, 7.3759, 7.3802, 7.3782, 7.3765, 7.3752, 7.3794, 7.3788, 7.3774, 7.3764, 7.3748, 7.3734, 7.3713, 7.3695, 7.3687, 7.3671, 7.366, 7.3639, 7.3622, 7.3602, 7.364, 7.3628, 7.3612, 7.3594, 7.3579, 7.3566, 7.3545, 7.3525, 7.3559, 7.3542, 7.3522, 7.3605, 7.3592, 7.3626, 7.3609, 7.3593, 7.3577, 7.3574, 7.3565, 7.356, 7.3592, 7.363, 7.363, 7.361, 7.3589, 7.3569, 7.355, 7.3585, 7.357, 7.3606, 7.3648, 7.3627, 7.3622, 7.3607, 7.3709, 7.369, 7.3678, 7.372, 7.3706, 7.3691, 7.3672, 7.3662, 7.3695, 7.3687, 7.3672, 7.3658, 7.3648, 7.364, 7.3623, 7.3605, 7.3586, 7.3566, 7.3548, 7.3531, 7.3525, 7.3561, 7.3546, 7.3532, 7.354, 7.3602, 7.3595, 7.3629, 7.3659, 7.3693, 7.3676, 7.3658, 7.3657, 7.3638, 7.367, 7.3655, 7.3641, 7.3642, 7.3628, 7.3613, 7.3598, 7.3582, 7.357, 7.3555, 7.3549, 7.3583, 7.3619, 7.3603, 7.3589, 7.3577, 7.3568, 7.3606, 7.3594, 7.3687, 7.3671, 7.3706, 7.3754, 7.3817, 7.3822, 7.3858, 7.3851, 7.3832, 7.3866, 7.385, 7.3833, 7.3816, 7.3815, 7.38, 7.3781, 7.3768, 7.3756, 7.375, 7.3743, 7.3749, 7.3783, 7.3815, 7.3801, 7.3783, 7.3769, 7.399, 7.3979, 7.3973, 7.3962, 7.3994, 7.4027, 7.4011, 7.3976, 7.3967, 7.3952, 7.3934, 7.3916, 7.396, 7.3944, 7.3926, 7.3956, 7.3937, 7.3926, 7.3915, 7.391, 7.3906, 7.3892, 7.3884, 7.3866, 7.3937, 7.3971, 7.3982, 7.3972, 7.3969, 7.4005, 7.4051, 7.4036, 7.412, 7.4108, 7.4097, 7.4227, 7.4209, 7.4192, 7.4178, 7.4164, 7.4108, 7.4142, 7.4133, 7.412, 7.4108, 7.4096, 7.409, 7.4081, 7.4109, 7.4098, 7.4081, 7.4109, 7.4146, 7.4128, 7.4123, 7.4115, 7.41, 7.4092, 7.408, 7.4066, 7.4051, 7.4095, 7.4077, 7.4107, 7.4097, 7.4129, 7.4112, 7.41, 7.4128, 7.4117, 7.4103, 7.4088, 7.4117, 7.411, 7.41, 7.4139, 7.4171, 7.4156, 7.415, 7.4178, 7.421, 7.4196, 7.4189, 7.4172, 7.4165, 7.4154, 7.4137, 7.4123, 7.4109, 7.4201, 7.4188, 7.4173, 7.416, 7.4144, 7.4136, 7.4129, 7.4113, 7.4143, 7.4127, 7.4112, 7.4094, 7.4077, 7.4067, 7.4052, 7.4057, 7.4053, 7.4043, 7.4033, 7.4017, 7.4044, 7.4078, 7.4068, 7.4101, 7.4086, 7.4077, 7.4068, 7.4059, 7.4042, 7.4038, 7.4143, 7.4157, 7.4166, 7.4156, 7.4141, 7.4174, 7.4161, 7.4147, 7.4177, 7.4163, 7.4154, 7.414, 7.4131, 7.4124, 7.4156, 7.4139, 7.4128, 7.4162, 7.4111, 7.4098, 7.4091, 7.4079, 7.4065, 7.4052, 7.4039, 7.4032, 7.4019, 7.4014, 7.4005, 7.3994, 7.3992, 7.3979, 7.4005, 7.3999, 7.3989, 7.3991, 7.3983, 7.3973, 7.3958, 7.3945, 7.3939, 7.3948, 7.3936, 7.3884, 7.3929, 7.3915, 7.3906, 7.3906, 7.3902, 7.3886, 7.3873, 7.386, 7.3851, 7.384, 7.3835, 7.3863, 7.385, 7.3838, 7.3823, 7.3809, 7.38, 7.3786, 7.3774, 7.3763, 7.3748, 7.3774, 7.3759, 7.3747, 7.3783, 7.3812, 7.3798, 7.3787, 7.3777, 7.3766, 7.3751, 7.3777, 7.3803, 7.3829, 7.386, 7.3886, 7.3871, 7.3873, 7.3903, 7.3889, 7.3875, 7.3872, 7.3909, 7.3911, 7.3898, 7.3922, 7.3969, 7.4, 7.399, 7.4004, 7.4004, 7.403, 7.4109, 7.4101, 7.4086, 7.4091, 7.4075, 7.4072, 7.4098, 7.4083, 7.407, 7.4056, 7.4046, 7.4037, 7.4033, 7.4018, 7.4007, 7.4005, 7.3996, 7.4022, 7.4055, 7.4044, 7.4035, 7.4062, 7.4055, 7.4049, 7.4034, 7.4028, 7.4015, 7.4042, 7.4029, 7.4015, 7.4006, 7.3994, 7.3996, 7.3984, 7.3982, 7.3975, 7.3968, 7.3957, 7.3956, 7.3941, 7.3925, 7.3912, 7.39, 7.3894, 7.3881, 7.3909, 7.3894, 7.3886, 7.3909, 7.3935, 7.3929, 7.3916, 7.3907, 7.3893, 7.3881, 7.387, 7.3901, 7.389, 7.3881, 7.387, 7.3889, 7.3878, 7.3907, 7.3936, 7.3947, 7.4015, 7.4005, 7.3993, 7.4024, 7.4017, 7.4041, 7.4035, 7.402, 7.4009, 7.3995, 7.3984, 7.3975, 7.3966, 7.3961, 7.3988, 7.3976, 7.3963, 7.3956, 7.3946, 7.394, 7.3925, 7.3914, 7.3899, 7.3886, 7.3882, 7.387, 7.3857, 7.3845, 7.3833, 7.383, 7.3821, 7.381, 7.386, 7.3903, 7.3929, 7.3918, 7.3911, 7.3899, 7.3893, 7.3885, 7.3883, 7.3876, 7.3867, 7.3855, 7.3841, 7.3831, 7.3822, 7.3808, 7.3796, 7.3824, 7.3812, 7.3802, 7.379, 7.378, 7.3787, 7.3778, 7.3777, 7.3763, 7.3756, 7.3779, 7.3765, 7.3763, 7.3755, 7.3746, 7.3739, 7.3763, 7.3752, 7.374, 7.3727, 7.3719, 7.3706, 7.3693, 7.3684, 7.367, 7.366, 7.3646, 7.3669, 7.3658, 7.3682, 7.3668, 7.3693, 7.3683, 7.3676, 7.364, 7.3628, 7.3616, 7.3604, 7.3595, 7.3647, 7.3637, 7.3659, 7.3649, 7.3639, 7.3629, 7.3615, 7.3643, 7.367, 7.3664, 7.365, 7.3646, 7.3673, 7.3663, 7.3693, 7.3682, 7.3674, 7.3665, 7.3729, 7.3719, 7.3748, 7.3771, 7.3765, 7.3757, 7.3787, 7.3779, 7.3778, 7.3769, 7.3758, 7.3756, 7.3786, 7.3777, 7.3769, 7.3761, 7.3785, 7.3773, 7.3763, 7.3788, 7.3775, 7.3797, 7.3788, 7.3775, 7.377, 7.3796, 7.3817, 7.3817, 7.3806, 7.3829, 7.3818, 7.3807, 7.3803, 7.3796, 7.3784, 7.3777, 7.3772, 7.376, 7.3751, 7.3773, 7.376, 7.3748, 7.377, 7.3795, 7.3784, 7.3774, 7.3764, 7.3754, 7.3742, 7.3761, 7.3747, 7.3745, 7.3768, 7.3766, 7.3754, 7.375, 7.3739, 7.3752, 7.374, 7.3737, 7.3726, 7.3719, 7.3713, 7.3739, 7.3728, 7.3721, 7.3711, 7.3706, 7.3695, 7.3684, 7.3681, 7.3673, 7.3664, 7.3653, 7.3641, 7.3632, 7.3654, 7.3642, 7.3629, 7.3616, 7.3606, 7.3596, 7.3585, 7.3575, 7.3564, 7.3558, 7.3554, 7.3542, 7.3566, 7.3556, 7.3555, 7.358, 7.3602, 7.3605, 7.3598, 7.3592, 7.358, 7.3568, 7.3556, 7.3547, 7.3537, 7.3525, 7.3522, 7.3513, 7.3537, 7.3525, 7.3547, 7.3535, 7.3561, 7.3554, 7.3548, 7.3538, 7.354, 7.3501, 7.3496, 7.3526, 7.3548, 7.3617, 7.3645, 7.3656, 7.3651, 7.3642, 7.3638, 7.3629, 7.3621, 7.3641, 7.3633, 7.3621, 7.3611, 7.3601, 7.3592, 7.3584, 7.3605, 7.3625, 7.3615, 7.3608, 7.3598, 7.3596, 7.3589, 7.3581, 7.3569, 7.3593, 7.3581, 7.3606, 7.3594, 7.3768, 7.3765, 7.3769, 7.3759, 7.3752, 7.3741, 7.3729, 7.3722, 7.3713, 7.3737, 7.3725, 7.3744, 7.3732, 7.372, 7.3711, 7.3798, 7.3788, 7.3863, 7.3853, 7.3844, 7.3898, 7.3885, 7.3876, 7.4006, 7.3996, 7.3984, 7.3976, 7.4001, 7.3992, 7.3982, 7.3973, 7.3966, 7.3956, 7.3945, 7.3938, 7.3926, 7.3916, 7.3904, 7.3899, 7.389, 7.3908, 7.3902, 7.3892, 7.3912, 7.39, 7.3888, 7.3877, 7.3866, 7.3854, 7.3842, 7.3837, 7.3861, 7.385, 7.3839, 7.3826, 7.3819, 7.3839, 7.3827, 7.3816, 7.381, 7.383, 7.3818, 7.3806, 7.3826, 7.3845, 7.3875, 7.3865, 7.3916, 7.3905, 7.3899, 7.389, 7.3884, 7.3904, 7.3893, 7.3917, 7.3914, 7.3907, 7.3898, 7.3888, 7.3881, 7.3901, 7.3913, 7.3935, 7.3923, 7.3919, 7.3939, 7.3938, 7.3936, 7.3955, 7.3946, 7.3968, 7.396, 7.395, 7.3969, 7.3966, 7.4016, 7.4005, 7.4026, 7.4018, 7.4007, 7.3996, 7.3987, 7.396, 7.3958, 7.3951, 7.4006, 7.3995, 7.4016, 7.4068, 7.4059, 7.4049, 7.4044, 7.404, 7.4059, 7.4111, 7.4103, 7.4098, 7.4117, 7.4111, 7.4107, 7.4126, 7.4128, 7.412, 7.4128, 7.412, 7.4112, 7.4111, 7.4103, 7.4097, 7.4117, 7.4137, 7.4128, 7.4119, 7.4109, 7.4102, 7.4094, 7.4113, 7.4101, 7.409, 7.4111, 7.4189, 7.4179, 7.4172, 7.4166, 7.4191, 7.4188, 7.4181, 7.4204, 7.4224, 7.4214, 7.4235, 7.423, 7.4219, 7.4212, 7.4207, 7.4224, 7.4218, 7.4248, 7.4295, 7.4285, 7.4279, 7.4385, 7.4376, 7.4365, 7.4358, 7.4352, 7.4343, 7.4338, 7.4329, 7.4319, 7.4307, 7.4296, 7.4285, 7.4309, 7.43, 7.4291, 7.4282, 7.4271, 7.4259, 7.4249, 7.4239, 7.423, 7.4221, 7.4214, 7.4205, 7.4198, 7.4193, 7.4187, 7.4194, 7.4213, 7.4205, 7.4196, 7.4247, 7.4236, 7.4226, 7.4214, 7.4233, 7.4224, 7.4244, 7.4263, 7.4254, 7.4273, 7.4263, 7.4251, 7.4269, 7.426, 7.425, 7.4244, 7.4234, 7.4254, 7.4245, 7.4237, 7.4226, 7.4232, 7.4221, 7.4243, 7.4233, 7.4226, 7.422, 7.4215, 7.4214, 7.4263, 7.4251, 7.4243, 7.4263, 7.4265, 7.4283, 7.4275, 7.4273, 7.4295, 7.4285, 7.4303, 7.4292, 7.4286, 7.4278, 7.4269, 7.4261, 7.4258, 7.4254, 7.4247, 7.4268, 7.4258, 7.4249, 7.4242, 7.4261, 7.4279, 7.4272, 7.4267, 7.4257, 7.4246, 7.4237, 7.423, 7.4221, 7.422, 7.421, 7.423, 7.4219, 7.4236, 7.4226, 7.4246, 7.424, 7.4233, 7.4229, 7.4218, 7.4211, 7.4222, 7.4212, 7.4234, 7.4225, 7.4215, 7.421, 7.423, 7.4222, 7.4241, 7.4208, 7.4197, 7.4186, 7.418, 7.4177, 7.4195, 7.4189, 7.4179, 7.4169, 7.4158, 7.4178, 7.4241, 7.423, 7.422, 7.4224, 7.4243, 7.4236, 7.4247, 7.4244, 7.424, 7.4233, 7.4249, 7.4271, 7.4316, 7.4306, 7.4297, 7.4287, 7.4282, 7.43, 7.429, 7.4279, 7.4325, 7.4322, 7.4317, 7.4307, 7.4299, 7.4297, 7.4315, 7.4305, 7.4299, 7.4289, 7.4286, 7.4282, 7.4276, 7.4266, 7.4257, 7.4275, 7.4248, 7.4271, 7.4268, 7.4274, 7.4278, 7.4344, 7.4378, 7.4368, 7.4359, 7.4351, 7.4341, 7.4357, 7.4359, 7.4379, 7.4376, 7.437, 7.4359, 7.4349, 7.4338, 7.4354, 7.4373, 7.4362, 7.4388, 7.4378, 7.4396, 7.439, 7.4386, 7.4376, 7.4365, 7.438, 7.4374, 7.437, 7.436, 7.435, 7.4341, 7.4331, 7.432, 7.4317, 7.4306, 7.4303, 7.4308, 7.4304, 7.4295, 7.4288, 7.428, 7.4277, 7.4274, 7.4267, 7.4261, 7.4255, 7.4246, 7.424, 7.4257, 7.4252, 7.4247, 7.4236, 7.4228, 7.4227, 7.422, 7.4211, 7.4184, 7.4176, 7.4193, 7.4193, 7.4183, 7.4177, 7.4167, 7.4186, 7.4176, 7.4167, 7.4212, 7.4204, 7.4194, 7.4186, 7.4203, 7.4195, 7.4188, 7.4185, 7.4176, 7.417, 7.4165, 7.4156, 7.415, 7.414, 7.4133, 7.4124, 7.4142, 7.414, 7.4134, 7.4125, 7.4116, 7.4106, 7.4104, 7.4098, 7.4088, 7.4078, 7.4071, 7.4044, 7.411, 7.4177, 7.4246, 7.4236, 7.4253, 7.4243, 7.4233, 7.4251, 7.4241, 7.4237, 7.4266, 7.4263, 7.4309, 7.4299, 7.429, 7.428, 7.427, 7.4288, 7.4283, 7.428, 7.4295, 7.4289, 7.4279, 7.4271, 7.4288, 7.4281, 7.4278, 7.4294, 7.4287, 7.4278, 7.4272, 7.4269, 7.4265, 7.4286, 7.4278, 7.4269, 7.4286, 7.4277, 7.4295, 7.4287, 7.4278, 7.4271, 7.4261, 7.4251, 7.4321, 7.4315, 7.4314, 7.4365, 7.4358, 7.4418, 7.4409, 7.4399, 7.4414, 7.4409, 7.4399, 7.4414, 7.443, 7.4446, 7.4436, 7.4431, 7.4421, 7.4411, 7.4401, 7.4417, 7.4433, 7.4426, 7.4417, 7.441, 7.4426, 7.4442, 7.4436, 7.4427, 7.442, 7.4412, 7.4428, 7.4421, 7.4412, 7.4403, 7.4394, 7.4389, 7.4385, 7.4377, 7.4372, 7.4366, 7.4362, 7.4357, 7.435, 7.4342, 7.4334, 7.433, 7.4327, 7.432, 7.4336, 7.4331, 7.4328, 7.4323, 7.4341, 7.4336, 7.4353, 7.4348, 7.4364, 7.4381, 7.4373, 7.4363, 7.4358, 7.4355, 7.4346, 7.4338, 7.433, 7.4327, 7.4322, 7.4318, 7.431, 7.4307, 7.4298, 7.4294, 7.4312, 7.4303, 7.4276, 7.4295, 7.4289, 7.4307, 7.4301, 7.4305, 7.4302, 7.4294, 7.4289, 7.4287, 7.4283, 7.43, 7.4319, 7.4311, 7.4306, 7.43, 7.4292, 7.4293, 7.4283, 7.4277, 7.4269, 7.4263, 7.4253, 7.4246, 7.424, 7.4258, 7.4249, 7.4247, 7.4238, 7.423, 7.4231, 7.4247, 7.424, 7.4231, 7.4246, 7.4238, 7.424, 7.4256, 7.4248, 7.4242, 7.4236, 7.423, 7.4222, 7.4214, 7.4231, 7.4263, 7.4255, 7.4248, 7.4239, 7.423, 7.4226, 7.4218, 7.4209, 7.4226, 7.422, 7.421, 7.4214, 7.423, 7.4226, 7.4218, 7.4211, 7.4203, 7.4217, 7.4232, 7.4224, 7.4219, 7.4235, 7.4227, 7.4219, 7.4235, 7.4226, 7.4219, 7.4212, 7.4203, 7.4195, 7.4186, 7.4177, 7.4169, 7.416, 7.4154, 7.417, 7.4184, 7.4177, 7.4168, 7.4203, 7.4198, 7.4193, 7.4186, 7.4177, 7.4171, 7.4165, 7.4162, 7.4159, 7.4187, 7.4205, 7.4198, 7.4193, 7.4185, 7.4177, 7.4249, 7.4265, 7.4281, 7.4272, 7.4264, 7.4261, 7.4252, 7.4244, 7.4282, 7.4309, 7.4302, 7.43, 7.4292, 7.4307, 7.4355, 7.4347, 7.4345, 7.434, 7.4331, 7.4324, 7.4337, 7.4332, 7.4349, 7.4345, 7.434, 7.4345, 7.4341, 7.4333, 7.4335, 7.4337, 7.441, 7.4405, 7.4402, 7.4397, 7.439, 7.4386, 7.4382, 7.4375, 7.4366, 7.4382, 7.4379, 7.4393, 7.4387, 7.4382, 7.4374, 7.4392, 7.4386, 7.4377, 7.4369, 7.4365, 7.4357, 7.4349, 7.4341, 7.4336, 7.4341, 7.4337, 7.4331, 7.4347, 7.4339, 7.4331, 7.4325, 7.4338, 7.4331, 7.4326, 7.4318, 7.4315, 7.4307, 7.4298, 7.4294, 7.4311, 7.4303, 7.4297, 7.4294, 7.4287, 7.4279, 7.4292, 7.429, 7.4285, 7.4276, 7.4269, 7.426, 7.4252, 7.4245, 7.426, 7.4259, 7.425, 7.4264, 7.4255, 7.4246, 7.4238, 7.423, 7.4223, 7.4215, 7.4211, 7.4226, 7.4217, 7.4209, 7.4201, 7.4193, 7.4207, 7.4202, 7.4195, 7.4211, 7.4204, 7.4199, 7.4192, 7.4187, 7.4179, 7.4177, 7.417, 7.4165, 7.4183, 7.4176, 7.4168, 7.4162, 7.4153, 7.4146, 7.4163, 7.4156, 7.4147, 7.414, 7.4136, 7.4129, 7.4127, 7.4124, 7.4117, 7.4133, 7.415, 7.4141, 7.4134, 7.4131, 7.4127, 7.4142, 7.4135, 7.4127, 7.412, 7.4126, 7.4121, 7.4114, 7.4132, 7.4129, 7.4101, 7.41, 7.4094, 7.4088, 7.4103, 7.4097, 7.4114, 7.4127, 7.4121, 7.4115, 7.4106, 7.4103, 7.4099, 7.4091, 7.4085, 7.4098, 7.4093, 7.4089, 7.4083, 7.4075, 7.4069, 7.406, 7.4052, 7.4044, 7.4063, 7.4056, 7.4048, 7.404, 7.4032, 7.4028, 7.4032, 7.4024, 7.4018, 7.4012, 7.4008, 7.4, 7.3994, 7.4087, 7.4131, 7.4123, 7.412, 7.4135, 7.4128, 7.4122, 7.4118, 7.4116, 7.4109, 7.4103, 7.4095, 7.4092, 7.4089, 7.4148, 7.4121, 7.4119, 7.4114, 7.4106, 7.4082, 7.4098, 7.4093, 7.4091, 7.4088, 7.408, 7.4074, 7.407, 7.4071, 7.4063, 7.4038, 7.4014, 7.403, 7.4044, 7.4059, 7.4055, 7.4049, 7.4041, 7.4034, 7.403, 7.4022, 7.4016, 7.4011, 7.4007, 7.3999, 7.3991, 7.4005, 7.3999, 7.4016, 7.4009, 7.4001, 7.4018, 7.401, 7.4003, 7.4001, 7.3997, 7.3993, 7.4007, 7.4007, 7.4002, 7.3999, 7.399, 7.3983, 7.3997, 7.3994, 7.3987, 7.4, 7.3992, 7.3984, 7.3981, 7.3973, 7.3968, 7.396, 7.3954, 7.3947, 7.3961, 7.3953, 7.3949, 7.3926, 7.3922, 7.3914, 7.3906, 7.3901, 7.3894, 7.3887, 7.3884, 7.388, 7.3894, 7.3891, 7.3885, 7.39, 7.3915, 7.393, 7.3923, 7.3948, 7.3954, 7.4031, 7.4046, 7.4043, 7.4035, 7.4031, 7.4044, 7.406, 7.4073, 7.4065, 7.4082, 7.4096, 7.4109, 7.4102, 7.4099, 7.4096, 7.409, 7.4082, 7.4074, 7.4067, 7.4059, 7.4053, 7.4046, 7.4038, 7.4053, 7.4066, 7.4068, 7.4061, 7.4053, 7.4067, 7.4063, 7.4055, 7.407, 7.4062, 7.4057, 7.4053, 7.4048, 7.404, 7.4033, 7.4047, 7.406, 7.4056, 7.407, 7.4064, 7.4077, 7.407, 7.4062, 7.4075, 7.4067, 7.4059, 7.4052, 7.4065, 7.4057, 7.4051, 7.4044, 7.404, 7.4054, 7.405, 7.4065, 7.4059, 7.4036, 7.4028, 7.4021, 7.4018, 7.4012, 7.4027, 7.4024, 7.4017, 7.3991, 7.3984, 7.3999, 7.3993, 7.4007, 7.4004, 7.4002, 7.3997, 7.3993, 7.3985, 7.3978, 7.3971, 7.3966, 7.3962, 7.3955, 7.3973, 7.3967, 7.3964, 7.3959, 7.3952, 7.3948, 7.3949, 7.3945, 7.3937, 7.3952, 7.3964, 7.3957, 7.4013, 7.4005, 7.402, 7.4013, 7.4006, 7.398, 7.3972, 7.3965, 7.398, 7.3972, 7.3969, 7.3962, 7.3974, 7.397, 7.3985, 7.3977, 7.397, 7.3965, 7.3958, 7.3951, 7.3946, 7.3942, 7.3936, 7.393, 7.3923, 7.3927, 7.3925, 7.3918, 7.3915, 7.3928, 7.3921, 7.3914, 7.3906, 7.3919, 7.3912, 7.3927, 7.3921, 7.3915, 7.3929, 7.3923, 7.392, 7.3935, 7.3928, 7.3923, 7.3917, 7.3911, 7.3905, 7.3897, 7.3909, 7.3905, 7.3918, 7.3914, 7.3926, 7.3924, 7.392, 7.3935, 7.3928, 7.3941, 7.3934, 7.3948, 7.3943, 7.3936, 7.3935, 7.3948, 7.3944, 7.3963, 7.3976, 7.3972, 7.3965, 7.3961, 7.3955, 7.3948, 7.3942, 7.3959, 7.3952, 7.3965, 7.3961, 7.3974, 7.3975, 7.3971, 7.3986, 7.3981, 7.3994, 7.3987, 7.3982, 7.3976, 7.3973, 7.3969, 7.3962, 7.3962, 7.3973, 7.3969, 7.3962, 7.3955, 7.3951, 7.3944, 7.3937, 7.3951, 7.3945, 7.3939, 7.3953, 7.3993, 7.3987, 7.3982, 7.3995, 7.399, 7.3983, 7.3979, 7.3976, 7.3977, 7.3963, 7.3961, 7.3957, 7.3951, 7.3963, 7.3976, 7.3969, 7.3975, 7.3973, 7.3967, 7.3961, 7.3974, 7.3968, 7.3961, 7.3954, 7.3947, 7.3944, 7.3937, 7.3951, 7.3965, 7.398, 7.3975, 7.3971, 7.3965, 7.3962, 7.3963, 7.3961, 7.3953, 7.395, 7.3945, 7.3939, 7.3952, 7.3949, 7.3946, 7.3939, 7.3932, 7.3911, 7.3892, 7.3885, 7.3877, 7.3871, 7.3903, 7.3898, 7.3911, 7.3924, 7.3955, 7.3948, 7.3961, 7.3973, 7.4054, 7.4065, 7.4058, 7.407, 7.4084, 7.4096, 7.4094, 7.4086, 7.4083, 7.4079, 7.4071, 7.4065, 7.4058, 7.4055, 7.405, 7.4027, 7.4021, 7.4015, 7.401, 7.4004, 7.3997, 7.3992, 7.4005, 7.4001, 7.4013, 7.4008, 7.4004, 7.3997, 7.3991, 7.3987, 7.399, 7.3989, 7.408, 7.4092, 7.4085, 7.4063, 7.4058, 7.4052, 7.4064, 7.4065, 7.4105, 7.4117, 7.4113, 7.4108, 7.4104, 7.4098, 7.4092, 7.4088, 7.4081, 7.408, 7.4078, 7.407, 7.4063, 7.4056, 7.405, 7.4044, 7.4057, 7.405, 7.4043, 7.4054, 7.4053, 7.4046, 7.4042, 7.4035, 7.4032, 7.4028, 7.4022, 7.4034, 7.4028, 7.4025, 7.4018, 7.4012, 7.4006, 7.3999, 7.3993, 7.3987, 7.398, 7.3977, 7.3988, 7.3982, 7.3996, 7.399, 7.3988, 7.3982, 7.396, 7.3943, 7.3937, 7.3931, 7.3944, 7.394, 7.3955, 7.3951, 7.3945, 7.394, 7.3935, 7.393, 7.395, 7.3944, 7.3939, 7.3918, 7.3985, 7.3983, 7.3989, 7.3986, 7.3983, 7.3977, 7.3971, 7.3967, 7.4051, 7.4049, 7.4086, 7.4079, 7.4056, 7.4053, 7.4049, 7.4042, 7.4037, 7.4072, 7.4101, 7.4121, 7.4115, 7.411, 7.4105, 7.4099, 7.4094, 7.4108, 7.4103, 7.4118, 7.4132, 7.4145, 7.4141, 7.4155, 7.4149, 7.4142, 7.4135, 7.4128, 7.4141, 7.4135, 7.4128, 7.4122, 7.4116, 7.4113, 7.4108, 7.412, 7.4116, 7.4111, 7.4124, 7.4123, 7.4118, 7.4113, 7.4109, 7.4104, 7.4102, 7.4096, 7.4089, 7.4101, 7.4099, 7.4092, 7.4104, 7.4103, 7.4096, 7.4091, 7.4085, 7.4079, 7.4075, 7.4087, 7.4086, 7.4097, 7.4093, 7.4095, 7.409, 7.4084, 7.4096, 7.4091, 7.4085, 7.4081, 7.4078, 7.4073, 7.4068, 7.4062, 7.4059, 7.4054, 7.405, 7.4046, 7.4045, 7.4038, 7.4035, 7.4034, 7.4034, 7.4052, 7.4047, 7.4047, 7.404, 7.4054, 7.4048, 7.4042, 7.4036, 7.4048, 7.4058, 7.4051, 7.4044, 7.4038, 7.4033, 7.4044, 7.4055, 7.4048, 7.4059, 7.4037, 7.4034, 7.4064, 7.4078, 7.4071, 7.4065, 7.4078, 7.4107, 7.4119, 7.4114, 7.4113, 7.4126, 7.4125, 7.4123, 7.4134, 7.4129, 7.4122, 7.4117, 7.4117, 7.4112, 7.4124, 7.4118, 7.4115, 7.4112, 7.4105, 7.41, 7.4095, 7.4092, 7.4085, 7.408, 7.4074, 7.4068, 7.4062, 7.4055, 7.4038, 7.4032, 7.4028, 7.4022, 7.4016, 7.401, 7.4006, 7.4002, 7.4013, 7.4008, 7.4006, 7.4, 7.4011, 7.4006, 7.4002, 7.3997, 7.3992, 7.3986, 7.3982, 7.3977, 7.3971, 7.3968, 7.3963, 7.3956, 7.395, 7.3945, 7.3938, 7.395, 7.3962, 7.3972, 7.3968, 7.3963, 7.3961, 7.3958, 7.4028, 7.4024, 7.4037, 7.4031, 7.4044, 7.404, 7.4034, 7.4052, 7.4059, 7.4057, 7.4052, 7.4062, 7.4058, 7.4054, 7.4048, 7.4044, 7.4058, 7.4071, 7.4066, 7.406, 7.4056, 7.405, 7.4062, 7.4058, 7.4054, 7.4047, 7.4059, 7.4056, 7.4067, 7.4063, 7.4057, 7.4054, 7.4048, 7.4042, 7.4038, 7.4035, 7.4031, 7.4026, 7.402, 7.4013, 7.4008, 7.4023, 7.4021, 7.4018, 7.4013, 7.4009, 7.4024, 7.4025, 7.4005, 7.4, 7.3994, 7.399, 7.3988, 7.3986, 7.3981, 7.3993, 7.3988, 7.4, 7.3998, 7.3993, 7.3973, 7.4051, 7.4047, 7.4041, 7.4052, 7.4046, 7.4042, 7.404, 7.4053, 7.4048, 7.4043, 7.4043, 7.4055, 7.405, 7.4047, 7.4027, 7.4023, 7.4002, 7.3996, 7.3989, 7.3984, 7.3995, 7.3992, 7.3988, 7.4005, 7.4, 7.3996, 7.3991, 7.4002, 7.4013, 7.4009, 7.402, 7.4015, 7.4012, 7.3992, 7.3986, 7.3979, 7.3992, 7.3991, 7.3988, 7.3983, 7.3981, 7.3993, 7.3994, 7.403, 7.4024, 7.4077, 7.4088, 7.4083, 7.4081, 7.4077, 7.4072, 7.4084, 7.408, 7.4076, 7.4071, 7.4099, 7.4113, 7.4109, 7.4089, 7.4086, 7.4082, 7.411, 7.411, 7.4107, 7.4101, 7.4101, 7.4095, 7.4075, 7.407, 7.405, 7.4061, 7.406, 7.4056, 7.405, 7.4063, 7.4059, 7.4055, 7.4049, 7.406, 7.4071, 7.4065, 7.4046, 7.4027, 7.4038, 7.4032, 7.4026, 7.4021, 7.4015, 7.4008, 7.3987, 7.3982, 7.3976, 7.3973, 7.397, 7.3967, 7.3962, 7.3956, 7.3949, 7.3943, 7.3954, 7.3948, 7.3976, 7.3986, 7.3998, 7.3997, 7.3991, 7.3987, 7.3983, 7.3977, 7.3972, 7.3968, 7.3963, 7.3991, 7.3985, 7.3965, 7.3959, 7.3958, 7.397, 7.3968, 7.3964, 7.3975, 7.3986, 7.398, 7.3991, 7.3987, 7.3999, 7.4011, 7.4006, 7.4018, 7.4013, 7.4011, 7.4006, 7.4006, 7.4, 7.3995, 7.3995, 7.399, 7.3987, 7.3981, 7.3981, 7.3975, 7.3969, 7.3979, 7.396, 7.3955, 7.395, 7.3944, 7.394, 7.3934, 7.3928, 7.3922, 7.3955, 7.395, 7.3946, 7.394, 7.3934, 7.393, 7.393, 7.3926, 7.3921, 7.3917, 7.3928, 7.393, 7.3924, 7.3947, 7.3958, 7.3952, 7.3947, 7.3944, 7.3944, 7.394, 7.3934, 7.3928, 7.3925, 7.3937, 7.3935, 7.393, 7.3941, 7.3938, 7.3948, 7.3946, 7.3941, 7.3952, 7.395, 7.3944, 7.3939, 7.3935, 7.393, 7.3925, 7.3937, 7.3934, 7.3928, 7.3924, 7.392, 7.3914, 7.3909, 7.3905, 7.3915, 7.3911, 7.3905, 7.39, 7.3897, 7.3908, 7.3904, 7.39, 7.3898, 7.391, 7.3891, 7.3873, 7.3885, 7.3882, 7.3879, 7.3877, 7.3872, 7.3869, 7.3893, 7.389, 7.3884, 7.3882, 7.3892, 7.3886, 7.3883, 7.3894, 7.3905, 7.3917, 7.3929, 7.3924, 7.3919, 7.3919, 7.3918, 7.3927, 7.3921, 7.3917, 7.3911, 7.3907, 7.3901, 7.3915, 7.3909, 7.3907, 7.3902, 7.3899, 7.3938, 7.3928, 7.3922, 7.3935, 7.3945, 7.3939, 7.3935, 7.393, 7.3941, 7.3923, 7.3933, 7.393, 7.3941, 7.395, 7.3978, 7.3972, 7.3972, 7.3967, 7.4014, 7.4009, 7.4003, 7.4014, 7.4009, 7.4006, 7.3987, 7.3986, 7.3981, 7.3978, 7.3978, 7.3973, 7.3985, 7.398, 7.3992, 7.4026, 7.4046, 7.4057, 7.4052, 7.4046, 7.4041, 7.4035, 7.4053, 7.4051, 7.4046, 7.4041, 7.4035, 7.4046, 7.404, 7.4051, 7.4048, 7.4043, 7.4052, 7.4046, 7.4059, 7.4055, 7.405, 7.4044, 7.4039, 7.405, 7.4044, 7.4056, 7.4052, 7.4047, 7.4045, 7.4054, 7.4038, 7.4022, 7.4047, 7.4058, 7.4054, 7.405, 7.4045, 7.4041, 7.4035, 7.4045, 7.4041, 7.4038, 7.4049, 7.4047, 7.4056, 7.4067, 7.4063, 7.4074, 7.4146, 7.4144, 7.4156, 7.4155, 7.4164, 7.4159, 7.4154, 7.4149, 7.4144, 7.4126, 7.411, 7.4121, 7.4116, 7.4127, 7.4122, 7.4116, 7.4114, 7.411, 7.4122, 7.4116, 7.4114, 7.4126, 7.4122, 7.4133, 7.4143, 7.4141, 7.4136, 7.4131, 7.4141, 7.415, 7.4147, 7.4142, 7.4153, 7.4151, 7.4146, 7.4128, 7.4124, 7.4162, 7.4172, 7.4183, 7.4179, 7.4173, 7.4198, 7.4192, 7.4203, 7.4198, 7.4193, 7.4188, 7.4203, 7.4198, 7.4193, 7.4188, 7.4183, 7.4194, 7.4189, 7.4187, 7.4169, 7.4152, 7.415, 7.4145, 7.4173, 7.4168, 7.4163, 7.4171, 7.4165, 7.4162, 7.4157, 7.4152, 7.415, 7.4145, 7.414, 7.4137, 7.4137, 7.4133, 7.4128, 7.4123, 7.4133, 7.4127, 7.4122, 7.4118, 7.4113, 7.4109, 7.4104, 7.4104, 7.4099, 7.4097, 7.4093, 7.4088, 7.4083, 7.4109, 7.4106, 7.4103, 7.41, 7.4109, 7.4104, 7.4101, 7.4096, 7.4092, 7.41, 7.4097, 7.4092, 7.4086, 7.4082, 7.408, 7.4074, 7.4072, 7.4066, 7.4051, 7.4048, 7.4043, 7.4056, 7.405, 7.4048, 7.4043, 7.4038, 7.4033, 7.4029, 7.4042, 7.4052, 7.4049, 7.4043, 7.4039, 7.4033, 7.4028, 7.4023, 7.4018, 7.4015, 7.4011, 7.4008, 7.399, 7.3984, 7.4001, 7.3996, 7.4042, 7.4036, 7.4031, 7.4026, 7.4021, 7.4016, 7.4012, 7.4007, 7.401, 7.4019, 7.4028, 7.4025, 7.4023, 7.4035, 7.4045, 7.4054, 7.405, 7.4044, 7.4053, 7.405, 7.4045, 7.4042, 7.4043, 7.4041, 7.4023, 7.4033, 7.403, 7.4028, 7.4027, 7.4022, 7.4016, 7.4046, 7.4041, 7.4052, 7.4047, 7.4042, 7.4037, 7.4019, 7.4002, 7.3997, 7.4006, 7.4015, 7.4025, 7.4019, 7.4015, 7.4012, 7.4008, 7.4004, 7.3986, 7.3983, 7.3994, 7.3989, 7.3971, 7.3954, 7.3951, 7.3948, 7.3943, 7.3938, 7.392, 7.3916, 7.3926, 7.3927, 7.3921, 7.3916, 7.3926, 7.3911, 7.3921, 7.3916, 7.3911, 7.3921, 7.3916, 7.3911, 7.3905, 7.3916, 7.3911, 7.3907, 7.3901, 7.3912, 7.3908, 7.3903, 7.3899, 7.3896, 7.3891, 7.3886, 7.3882, 7.3893, 7.3917, 7.3916, 7.3911, 7.3907, 7.3903, 7.3897, 7.3895, 7.389, 7.39, 7.3897, 7.3901, 7.3897, 7.3907, 7.3902, 7.3897, 7.3908, 7.3906, 7.3901, 7.3896, 7.3893, 7.3891, 7.3887, 7.3882, 7.3876, 7.3871, 7.3868, 7.3863, 7.3858, 7.3853, 7.3863, 7.3861, 7.3857, 7.3859, 7.3872, 7.3869, 7.3868, 7.3864, 7.386, 7.3859, 7.3855, 7.385, 7.3848, 7.3844, 7.3856, 7.3882, 7.3879, 7.3877, 7.3873, 7.3869, 7.3852, 7.3846, 7.384, 7.3836, 7.3832, 7.383, 7.3826, 7.3821, 7.3818, 7.3828, 7.3823, 7.3833, 7.3829, 7.3824, 7.3819, 7.383, 7.3827, 7.3821, 7.3822, 7.3836, 7.3833, 7.3829, 7.3811, 7.3808, 7.3821, 7.3818, 7.3814, 7.3812, 7.381, 7.3822, 7.3823, 7.3834, 7.3844, 7.3854, 7.3851, 7.3847, 7.3845, 7.3855, 7.3854, 7.3851, 7.3862, 7.3859, 7.3854, 7.3849, 7.3846, 7.3844, 7.3839, 7.3835, 7.383, 7.3825, 7.3824, 7.3822, 7.3817, 7.3815, 7.3824, 7.382, 7.383, 7.3825, 7.3834, 7.3831, 7.383, 7.3825, 7.3835, 7.3832, 7.3829, 7.3826, 7.3823, 7.3819, 7.3814, 7.3812, 7.3809, 7.3818, 7.3829, 7.3829, 7.3837, 7.3846, 7.3842, 7.3839, 7.3835, 7.383, 7.3826, 7.3821, 7.3817, 7.3813, 7.3808, 7.3803, 7.3799, 7.3796, 7.3792, 7.3788, 7.3788, 7.3785, 7.3784, 7.3779, 7.3774, 7.3769, 7.3778, 7.3777, 7.3773, 7.3768, 7.3765, 7.3763, 7.3748, 7.3743, 7.374, 7.3736, 7.3733, 7.373, 7.3726, 7.3722, 7.3733, 7.3728, 7.3738, 7.3734, 7.373, 7.3725, 7.3722, 7.3717, 7.3712, 7.3723, 7.3718, 7.3716, 7.3715, 7.3712, 7.3723, 7.3733, 7.3728, 7.3724, 7.3722, 7.372, 7.3721, 7.3718, 7.3717, 7.3726, 7.372, 7.373, 7.3715, 7.371, 7.3706, 7.3716, 7.3711, 7.3706, 7.3716, 7.3713, 7.371, 7.3708, 7.3704, 7.3703, 7.3699, 7.3695, 7.369, 7.3686, 7.3682, 7.3692, 7.3691, 7.3686, 7.3695, 7.3704, 7.37, 7.3695, 7.3691, 7.3686, 7.3683, 7.3681, 7.3676, 7.3672, 7.3668, 7.3664, 7.3659, 7.3654, 7.3652, 7.3671, 7.3667, 7.3662, 7.3658, 7.3655, 7.365, 7.3645, 7.3641, 7.3637, 7.3637, 7.3646, 7.3655, 7.3652, 7.3648, 7.3648, 7.3644, 7.3642, 7.364, 7.3638, 7.3633, 7.3631, 7.3642, 7.3638, 7.3633, 7.3631, 7.364, 7.3638, 7.3633, 7.3628, 7.3624, 7.362, 7.3615, 7.3626, 7.3621, 7.3617, 7.3613, 7.3611, 7.3607, 7.3603, 7.3613, 7.3638, 7.3637, 7.365, 7.3648, 7.3659, 7.3654, 7.3662, 7.3658, 7.3653, 7.365, 7.3645, 7.364, 7.3662, 7.3658, 7.3666, 7.3661, 7.366, 7.3655, 7.3639, 7.3635, 7.3644, 7.3653, 7.3649, 7.366, 7.3655, 7.365, 7.3647, 7.3644, 7.3653, 7.3649, 7.3645, 7.3641, 7.3641, 7.3651, 7.366, 7.3659, 7.3655, 7.3652, 7.3648, 7.3647, 7.3643, 7.3639, 7.3635, 7.363, 7.3626, 7.3635, 7.3634, 7.3629, 7.3626, 7.3635, 7.3632, 7.363, 7.3626, 7.3637, 7.3633, 7.3631, 7.3641, 7.3639, 7.3637, 7.3637, 7.3634, 7.363, 7.3626, 7.3625, 7.3622, 7.3617, 7.3626, 7.3632, 7.3631, 7.3629, 7.3625, 7.3623, 7.362, 7.3616, 7.3613, 7.3611, 7.3619, 7.3657, 7.3654, 7.3662, 7.3658, 7.3653, 7.3665, 7.3673, 7.3669, 7.3665, 7.3668, 7.3665, 7.3664, 7.3659, 7.3655, 7.3663, 7.3658, 7.3653, 7.3663, 7.3661, 7.3656, 7.3652, 7.3647, 7.3644, 7.364, 7.3638, 7.3645, 7.3641, 7.3637, 7.3667, 7.3663, 7.3659, 7.3682, 7.3691, 7.369, 7.37, 7.3698, 7.3694, 7.3704, 7.3699, 7.3696, 7.3692, 7.3701, 7.3712, 7.371, 7.3706, 7.3702, 7.3698, 7.3708, 7.3706, 7.3702, 7.3699, 7.3696, 7.3692, 7.3687, 7.3683, 7.3706, 7.3702, 7.3686, 7.3708, 7.3705, 7.3701, 7.3706, 7.3704, 7.3713, 7.3709, 7.3717, 7.3714, 7.3723, 7.3731, 7.3727, 7.3735, 7.3731, 7.3729, 7.3741, 7.3737, 7.3732, 7.373, 7.3739, 7.3736, 7.3734, 7.3744, 7.3741, 7.375, 7.3746, 7.3742, 7.3739, 7.3735, 7.3731, 7.3727, 7.3723, 7.3719, 7.3716, 7.3711, 7.3708, 7.3716, 7.37, 7.3696, 7.3692, 7.3703, 7.3712, 7.371, 7.372, 7.3731, 7.3728, 7.3724, 7.3722, 7.372, 7.3718, 7.3718, 7.3727, 7.3723, 7.372, 7.3716, 7.3713, 7.371, 7.3775, 7.3774, 7.377, 7.3766, 7.3761, 7.3757, 7.3753, 7.3749, 7.3757, 7.3753, 7.3762, 7.3772, 7.3768, 7.3766, 7.3761, 7.3758, 7.3753, 7.3748, 7.3745, 7.374, 7.3736, 7.3734, 7.3731, 7.3739, 7.3734, 7.3732, 7.374, 7.3735, 7.3744, 7.3742, 7.3737, 7.3735, 7.3731, 7.3728, 7.3723, 7.372, 7.3715, 7.371, 7.3708, 7.3718, 7.3713, 7.3722, 7.3733, 7.3743, 7.3739, 7.3736, 7.3734, 7.3732, 7.3729, 7.374, 7.3749, 7.3745, 7.374, 7.3736, 7.3733, 7.3731, 7.3727, 7.3726, 7.3723, 7.3731, 7.3741, 7.3738, 7.3733, 7.3728, 7.3725, 7.3721, 7.3718, 7.3727, 7.3725, 7.3721, 7.3718, 7.3729, 7.3725, 7.3721, 7.3717, 7.3727, 7.3722, 7.373, 7.3726, 7.3738, 7.3734, 7.373, 7.3727, 7.3723, 7.3719, 7.3716, 7.3714, 7.371, 7.3707, 7.3704, 7.3712, 7.3708, 7.3712, 7.3709, 7.3718, 7.3714, 7.3722, 7.372, 7.3727, 7.3724, 7.372, 7.3716, 7.3711, 7.3706, 7.3714, 7.3722, 7.3729, 7.3724, 7.3719, 7.3753, 7.3761, 7.3759, 7.3754, 7.3749, 7.3746, 7.3744, 7.3741, 7.3725, 7.3722, 7.3731, 7.3726, 7.3725, 7.3725, 7.3722, 7.3719, 7.3717, 7.3717, 7.3714, 7.3711, 7.3709, 7.3706, 7.3714, 7.3712, 7.3712, 7.3707, 7.3704, 7.3699, 7.3684, 7.3679, 7.3675, 7.3673, 7.3668, 7.3663, 7.3662, 7.3659, 7.3668, 7.368, 7.3677, 7.3673, 7.3672, 7.3669, 7.3664, 7.3673, 7.367, 7.3666, 7.3662, 7.3671, 7.3667, 7.3664, 7.3652, 7.3662, 7.3661, 7.3669, 7.3665, 7.3662, 7.3686, 7.3695, 7.3691, 7.369, 7.3687, 7.3683, 7.3678, 7.3674, 7.3672, 7.3669, 7.3677, 7.3672, 7.3668, 7.3664, 7.3659, 7.3655, 7.3651, 7.3648, 7.3644, 7.3641, 7.3637, 7.3634, 7.3629, 7.3626, 7.3621, 7.3617, 7.3625, 7.362, 7.3628, 7.3627, 7.3616, 7.3612, 7.3609, 7.3619, 7.3618, 7.3616, 7.3615, 7.3611, 7.362, 7.3616, 7.3613, 7.361, 7.3609, 7.3612, 7.361, 7.3607, 7.3605, 7.3601, 7.36, 7.3596, 7.3599, 7.3598, 7.3594, 7.3592, 7.3602, 7.3598, 7.3594, 7.359, 7.3587, 7.3586, 7.3581, 7.3577, 7.3586, 7.3597, 7.3586, 7.3583, 7.3591, 7.3587, 7.3597, 7.3596, 7.3604, 7.3602, 7.3602, 7.3597, 7.3607, 7.3603, 7.3589, 7.3589, 7.3574, 7.3584, 7.3593, 7.3589, 7.3587, 7.3585, 7.3581, 7.3577, 7.3593, 7.3592, 7.3587, 7.3583, 7.3573, 7.3581, 7.3577, 7.3581, 7.359, 7.3588, 7.3597, 7.3606, 7.3605, 7.3601, 7.3598, 7.3594, 7.3603, 7.3603, 7.3601, 7.3599, 7.3609, 7.3605, 7.3601, 7.3611, 7.3609, 7.3617, 7.3626, 7.3622, 7.3631, 7.3629, 7.3626, 7.3629, 7.3624, 7.362, 7.3628, 7.3624, 7.362, 7.3615, 7.36, 7.3586, 7.3582, 7.3569, 7.3565, 7.3574, 7.357, 7.3567, 7.3564, 7.3573, 7.3569, 7.3567, 7.3563, 7.3571, 7.3566, 7.3574, 7.3583, 7.3578, 7.3601, 7.3597, 7.3638, 7.3635, 7.3633, 7.3629, 7.3625, 7.3621, 7.3618, 7.3615, 7.3613, 7.3611, 7.3608, 7.3607, 7.3616, 7.3612, 7.3607, 7.3615, 7.3612, 7.3608, 7.3603, 7.3588, 7.3584, 7.358, 7.3575, 7.3571, 7.3567, 7.3576, 7.3574, 7.3559, 7.3555, 7.3562, 7.3559, 7.3569, 7.3554, 7.3541, 7.3526, 7.3511, 7.3507, 7.3503, 7.3499, 7.3495, 7.3493, 7.3489, 7.3485, 7.3482, 7.3503, 7.3501, 7.3509, 7.3505, 7.349, 7.3477, 7.3473, 7.3469, 7.3466, 7.3464, 7.346, 7.3457, 7.3453, 7.3451, 7.3447, 7.3443, 7.3452, 7.3448, 7.3484, 7.348, 7.3487, 7.3483, 7.3491, 7.349, 7.3487, 7.3495, 7.3493, 7.3491, 7.3488, 7.3495, 7.3491, 7.3488, 7.3484, 7.3482, 7.3492, 7.3489, 7.3489, 7.3485, 7.3481, 7.3489, 7.3498, 7.3497, 7.3493, 7.3501, 7.351, 7.3509, 7.3517, 7.3513, 7.3509, 7.3505, 7.35, 7.3496, 7.3494, 7.349, 7.35, 7.352, 7.3517, 7.3514, 7.3513, 7.3509, 7.3517, 7.3514, 7.3511, 7.3518, 7.3514, 7.351, 7.3507, 7.3507, 7.3527, 7.3527, 7.3514, 7.351, 7.3508, 7.3507, 7.3555, 7.3576, 7.3573, 7.3591, 7.3591, 7.3589, 7.3587, 7.3583, 7.358, 7.3576, 7.3573, 7.3569, 7.3568, 7.3576, 7.3574, 7.3583, 7.3637, 7.3633, 7.3629, 7.3632, 7.363, 7.3627, 7.3624, 7.3632, 7.3628, 7.3625, 7.3622, 7.3619, 7.3616, 7.3613, 7.3609, 7.3606, 7.3602, 7.36, 7.3597, 7.3593, 7.359, 7.3587, 7.3583, 7.3579, 7.3576, 7.3572, 7.3572, 7.357, 7.3566, 7.3564, 7.3559, 7.3555, 7.3551, 7.3552, 7.3547, 7.3555, 7.3563, 7.356, 7.3559, 7.3554, 7.355, 7.3546, 7.3542, 7.355, 7.3546, 7.3542, 7.354, 7.3538, 7.3535, 7.3531, 7.3551, 7.3551, 7.3549, 7.3545, 7.3542, 7.354, 7.3537, 7.3535, 7.3537, 7.3533, 7.3547, 7.3556, 7.3552, 7.3548, 7.3544, 7.3541, 7.3538, 7.3546, 7.3542, 7.3541, 7.3549, 7.3545, 7.3542, 7.355, 7.3558, 7.3565, 7.3561, 7.3573, 7.3571, 7.3567, 7.3565, 7.3562, 7.3558, 7.3554, 7.3552, 7.3548, 7.3545, 7.3541, 7.3537, 7.3544, 7.3541, 7.3539, 7.3547, 7.3544, 7.3552, 7.3549, 7.3546, 7.3543, 7.355, 7.3547, 7.3544, 7.354, 7.3537, 7.3545, 7.3541, 7.3538, 7.3537, 7.3532, 7.3529, 7.3525, 7.3523, 7.3519, 7.3526, 7.3523, 7.3533, 7.354, 7.3536, 7.3534, 7.3532, 7.3529, 7.3525, 7.3533, 7.3529, 7.3537, 7.3533, 7.353, 7.3536, 7.3531, 7.3529, 7.3525, 7.3522, 7.3519, 7.3518, 7.3515, 7.3512, 7.3509, 7.3518, 7.3515, 7.3512, 7.3521, 7.3519, 7.3516, 7.3513, 7.3572, 7.3568, 7.3565, 7.3561, 7.3557, 7.3555, 7.3552, 7.3548, 7.3545, 7.3541, 7.3537, 7.3533, 7.3531, 7.3538, 7.3557, 7.3564, 7.3561, 7.3557, 7.3554, 7.355, 7.3558, 7.3554, 7.3552, 7.3562, 7.3559, 7.3555, 7.3563, 7.3562, 7.3559, 7.3557, 7.3554, 7.3561, 7.3558, 7.3553, 7.355, 7.3548, 7.3545, 7.3583, 7.3579, 7.3576, 7.3574, 7.357, 7.3567, 7.3565, 7.3563, 7.3564, 7.3571, 7.3569, 7.3565, 7.3561, 7.3559, 7.3562, 7.3559, 7.3557, 7.3564, 7.3571, 7.3579, 7.3577, 7.3585, 7.3581, 7.3589, 7.3586, 7.3582, 7.3579, 7.3575, 7.3575, 7.3572, 7.3579, 7.3567, 7.3563, 7.3561, 7.3557, 7.3556, 7.3565, 7.3561, 7.356, 7.3556, 7.3552, 7.355, 7.3546, 7.3545, 7.3541, 7.3538, 7.355, 7.3549, 7.3557, 7.3554, 7.3563, 7.3559, 7.3568, 7.3565, 7.3562, 7.3573, 7.3569, 7.3565, 7.3561, 7.3557, 7.3553, 7.355, 7.3551, 7.3547, 7.3543, 7.3551, 7.3558, 7.3557, 7.3564, 7.356, 7.3578, 7.3574, 7.3571, 7.3569, 7.3576, 7.3572, 7.3568, 7.3564, 7.356, 7.3557, 7.3555, 7.3551, 7.3558, 7.3567, 7.3565, 7.3572, 7.3581, 7.3588, 7.3585, 7.3582, 7.3579, 7.3576, 7.3572, 7.3579, 7.3575, 7.3582, 7.3578, 7.3576, 7.3584, 7.3583, 7.358, 7.3587, 7.3584, 7.3582, 7.358, 7.3576, 7.3586, 7.3586, 7.3594, 7.3601, 7.3599, 7.3595, 7.3592, 7.36, 7.3598, 7.3595, 7.3591, 7.3587, 7.3583, 7.3579, 7.3575, 7.3573, 7.3571, 7.357, 7.3569, 7.3568, 7.3565, 7.3562, 7.3559, 7.3557, 7.3553, 7.3562, 7.356, 7.3557, 7.3554, 7.3551, 7.3548, 7.3544, 7.3541, 7.3549, 7.3547, 7.3545, 7.3544, 7.3542, 7.3539, 7.3538, 7.3534, 7.3533, 7.3541, 7.3539, 7.3539, 7.3538, 7.3534, 7.3531, 7.3528, 7.3525, 7.3532, 7.3528, 7.3524, 7.352, 7.3527, 7.3534, 7.3532, 7.353, 7.3526, 7.3526, 7.3524, 7.3522, 7.3522, 7.3518, 7.3515, 7.3511, 7.3507, 7.3506, 7.3502, 7.351, 7.3507, 7.3508, 7.3505, 7.3501, 7.3498, 7.3506, 7.3503, 7.3501, 7.3499, 7.3497, 7.3494, 7.3502, 7.3498, 7.3495, 7.3503, 7.3501, 7.3497, 7.3506, 7.3504, 7.3511, 7.3518, 7.3527, 7.3527, 7.3541, 7.3538, 7.3547, 7.3554, 7.3551, 7.3548, 7.3544, 7.3542, 7.3539, 7.3546, 7.3543, 7.355, 7.3548, 7.3555, 7.3552, 7.3548, 7.3545, 7.3553, 7.3549, 7.3557, 7.3555, 7.3551, 7.3559, 7.3558, 7.3554, 7.355, 7.3558, 7.3555, 7.3562, 7.358, 7.3588, 7.3584, 7.358, 7.3569, 7.3565, 7.3561, 7.3568, 7.3564, 7.3551, 7.3538, 7.3525, 7.3522, 7.353, 7.3527, 7.3524, 7.3513, 7.3513, 7.3515, 7.3516, 7.3516, 7.3526, 7.3524, 7.3537, 7.3533, 7.354, 7.3536, 7.3534, 7.3542, 7.3539, 7.3528, 7.3534, 7.3541, 7.3557, 7.3554, 7.3551, 7.356, 7.3557, 7.3553, 7.3549, 7.3546, 7.3543, 7.3563, 7.3561, 7.3568, 7.3567, 7.3564, 7.3562, 7.3559, 7.3557, 7.3554, 7.3571, 7.3569, 7.3566, 7.3562, 7.356, 7.3557, 7.3563, 7.3562, 7.3572, 7.3568, 7.3555, 7.3561, 7.356, 7.3559, 7.3555, 7.3551, 7.3548, 7.3545, 7.3552, 7.3548, 7.3545, 7.3542, 7.3539, 7.3535, 7.3542, 7.3541, 7.354, 7.3538, 7.3545, 7.3543, 7.3539, 7.3538, 7.3546, 7.3552, 7.3566, 7.3563, 7.3561, 7.3549, 7.3538, 7.3536, 7.3532, 7.3529, 7.3528, 7.3537, 7.3535, 7.3533, 7.3533, 7.353, 7.3537, 7.3535, 7.3532, 7.353, 7.3529, 7.3526, 7.3523, 7.352, 7.3516, 7.3512, 7.3511, 7.3508, 7.3505, 7.3503, 7.349, 7.3491, 7.3488, 7.3495, 7.351, 7.3517, 7.3526, 7.3577, 7.3591, 7.3591, 7.3599, 7.3597, 7.3602, 7.3598, 7.3596, 7.3614, 7.3611, 7.3608, 7.3604, 7.36, 7.3596, 7.3594, 7.3615, 7.3611, 7.3607, 7.3615, 7.362, 7.3617, 7.3614, 7.3638, 7.3636, 7.3635, 7.3631, 7.3629, 7.3637, 7.3635, 7.3632, 7.3639, 7.3636, 7.3633, 7.363, 7.3626, 7.3623, 7.3619, 7.3617, 7.3615, 7.3611, 7.3618, 7.3616, 7.3612, 7.3609, 7.3608, 7.3604, 7.3602, 7.3603, 7.3599, 7.3598, 7.3595, 7.3593, 7.359, 7.3599, 7.3606, 7.3603, 7.3602, 7.3598, 7.3594, 7.3592, 7.3588, 7.3584, 7.3581, 7.3577, 7.3575, 7.3574, 7.3571, 7.3567, 7.3564, 7.356, 7.3558, 7.3555, 7.3565, 7.3562, 7.357, 7.3569, 7.3566, 7.3565, 7.3562, 7.356, 7.3559, 7.3556, 7.3557, 7.3553, 7.3549, 7.3545, 7.3552, 7.3551, 7.3559, 7.3555, 7.3551, 7.3552, 7.3549, 7.3547, 7.3543, 7.3559, 7.3558, 7.3556, 7.3563, 7.3562, 7.3569, 7.3585, 7.3583, 7.3592, 7.3588, 7.3585, 7.3582, 7.358, 7.3587, 7.3586, 7.3582, 7.358, 7.3587, 7.3594, 7.3592, 7.3588, 7.3584, 7.3581, 7.3581, 7.3577, 7.3583, 7.3582, 7.3581, 7.358, 7.3577, 7.3574, 7.357, 7.3569, 7.3568, 7.3575, 7.3574, 7.357, 7.3571, 7.3568, 7.3576, 7.3572, 7.3569, 7.3566, 7.3575, 7.3581, 7.3578, 7.3578, 7.3575, 7.3562, 7.356, 7.3569, 7.3578, 7.3575, 7.3575, 7.3571, 7.3567, 7.3554, 7.355, 7.3548, 7.3546, 7.3533, 7.354, 7.3537, 7.3534, 7.3531, 7.3529, 7.3528, 7.3525, 7.3532, 7.353, 7.3527, 7.3526, 7.3524, 7.3522, 7.353, 7.3537, 7.3544, 7.3545, 7.3543, 7.3542, 7.354, 7.3538, 7.3534, 7.3532, 7.3529, 7.3536, 7.3533, 7.353, 7.3537, 7.3535, 7.3542, 7.3549, 7.3537, 7.3535, 7.3531, 7.3528, 7.3524, 7.3521, 7.3517, 7.3517, 7.3513, 7.352, 7.351, 7.3506, 7.3514, 7.3521, 7.3518, 7.3515, 7.3511, 7.3508, 7.3515, 7.3513, 7.3509, 7.3506, 7.3502, 7.35, 7.3498, 7.3495, 7.3492, 7.3491, 7.3498, 7.3495, 7.3492, 7.3489, 7.3488, 7.3488, 7.3496, 7.3494, 7.3493, 7.3501, 7.3509, 7.3505, 7.3502, 7.3509, 7.3508, 7.3506, 7.3504, 7.3502, 7.3498, 7.3494, 7.3492, 7.349, 7.3477, 7.3473, 7.3461, 7.3449, 7.3446, 7.3443, 7.3444, 7.3444, 7.3442, 7.3452, 7.3451, 7.3448, 7.3446, 7.3445, 7.3452, 7.3458, 7.3457, 7.3465, 7.3463, 7.347, 7.3468, 7.3467, 7.3464, 7.3473, 7.3469, 7.3465, 7.3463, 7.346, 7.3468, 7.3464, 7.3452, 7.345, 7.3447, 7.3439, 7.3436, 7.3432, 7.3445, 7.3442, 7.3439, 7.3437, 7.3434, 7.3441, 7.3439, 7.3435, 7.3432, 7.3428, 7.3425, 7.3432, 7.3429, 7.3436, 7.3434, 7.343, 7.3427, 7.3423, 7.3419, 7.3417, 7.3424, 7.3421, 7.3418, 7.3417, 7.3454, 7.3451, 7.345, 7.3451, 7.3459, 7.3456, 7.3459, 7.3457, 7.3456, 7.3455, 7.3453, 7.3452, 7.345, 7.3456, 7.3456, 7.3453, 7.3452, 7.3449, 7.3456, 7.3453, 7.345, 7.3457, 7.3454, 7.3451, 7.3459, 7.3457, 7.3446, 7.3452, 7.344, 7.343, 7.3426, 7.3423, 7.3421, 7.3418, 7.3424, 7.3421, 7.3422, 7.3421, 7.3417, 7.3414, 7.342, 7.3426, 7.3422, 7.3429, 7.3427, 7.3434, 7.343, 7.3428, 7.3434, 7.3433, 7.343, 7.3427, 7.3435, 7.3431, 7.3428, 7.3425, 7.3422, 7.3419, 7.3416, 7.3414, 7.3411, 7.3408, 7.3414, 7.341, 7.3407, 7.3404, 7.3411, 7.3409, 7.3416, 7.3414, 7.3412, 7.3401, 7.3398, 7.3395, 7.3393, 7.339, 7.3387, 7.3394, 7.3393, 7.3399, 7.3405, 7.3402, 7.34, 7.3397, 7.3394, 7.3392, 7.339, 7.3387, 7.3394, 7.3402, 7.34, 7.3397, 7.3394, 7.3392, 7.3389, 7.3387, 7.3385, 7.3382, 7.3379, 7.3375, 7.3371, 7.336, 7.3358, 7.3366, 7.3365, 7.3365, 7.3363, 7.3359, 7.3366, 7.3364, 7.3363, 7.3361, 7.3359, 7.3356, 7.3354, 7.3361, 7.3359, 7.3355, 7.3354, 7.3353, 7.336, 7.3357, 7.3364, 7.337, 7.3368, 7.3365, 7.3372, 7.337, 7.3366, 7.3373, 7.337, 7.3367, 7.3364, 7.3361, 7.3358, 7.3373, 7.337, 7.3367, 7.3368, 7.3367, 7.3364, 7.3362, 7.3359, 7.3355, 7.3354, 7.3352, 7.3369, 7.3366, 7.3366, 7.3364, 7.3362, 7.336, 7.3357, 7.3364, 7.3372, 7.338, 7.3378, 7.3374, 7.3382, 7.3388, 7.3384, 7.3392, 7.3391, 7.3397, 7.3404, 7.3401, 7.339, 7.3386, 7.3383, 7.338, 7.3388, 7.3385, 7.3384, 7.3382, 7.3371, 7.3369, 7.3365, 7.3362, 7.3361, 7.3361, 7.3362, 7.336, 7.3358, 7.3357, 7.3355, 7.3354, 7.3351, 7.3358, 7.3356, 7.3353, 7.335, 7.3348, 7.3357, 7.3358, 7.3357, 7.3375, 7.3372, 7.3372, 7.3369, 7.3368, 7.3364, 7.3362, 7.3359, 7.3357, 7.3366, 7.3364, 7.3362, 7.3394, 7.3392, 7.339, 7.3388, 7.3387, 7.3383, 7.3381, 7.3387, 7.3385, 7.3391, 7.3379, 7.3377, 7.3374, 7.3381, 7.3378, 7.3385, 7.3385, 7.3383, 7.3391, 7.3389, 7.3395, 7.3402, 7.3399, 7.3397, 7.3396, 7.3416, 7.3414, 7.341, 7.3408, 7.3417, 7.3416, 7.3423, 7.342, 7.3426, 7.3423, 7.3429, 7.3429, 7.3427, 7.3434, 7.3431, 7.3431, 7.3428, 7.3426, 7.3422, 7.3419, 7.3417, 7.3416, 7.3422, 7.3418, 7.3415, 7.3412, 7.3409, 7.3398, 7.3396, 7.3393, 7.3399, 7.3405, 7.3403, 7.34, 7.34, 7.3396, 7.3394, 7.3391, 7.3388, 7.3387, 7.3385, 7.3382, 7.3379, 7.3376, 7.3374, 7.3373, 7.3372, 7.337, 7.3367, 7.3373, 7.3371, 7.3369, 7.3368, 7.3374, 7.3371, 7.3369, 7.3367, 7.3365, 7.3361, 7.3359, 7.3358, 7.3365, 7.3372, 7.3379, 7.3386, 7.3384, 7.3382, 7.338, 7.3387, 7.3393, 7.3394, 7.3403, 7.34, 7.34, 7.3398, 7.3404, 7.341, 7.3408, 7.3414, 7.3429, 7.3426, 7.3424, 7.3431, 7.3428, 7.3425, 7.3425, 7.3423, 7.344, 7.3437, 7.3434, 7.3432, 7.343, 7.3426, 7.3425, 7.3423, 7.3422, 7.3419, 7.3415, 7.3411, 7.3417, 7.3415, 7.3422, 7.3419, 7.3425, 7.3424, 7.3422, 7.342, 7.3408, 7.3405, 7.3403, 7.34, 7.3399, 7.3397, 7.3394, 7.3391, 7.3388, 7.3385, 7.3392, 7.339, 7.3387, 7.3384, 7.3372, 7.337, 7.3368, 7.3366, 7.3364, 7.3361, 7.3359, 7.3348, 7.3336, 7.3325, 7.3323, 7.332, 7.3326, 7.3323, 7.3329, 7.3327, 7.3326, 7.3333, 7.3339, 7.3335, 7.3342, 7.334, 7.3337, 7.3334, 7.333, 7.3327, 7.3325, 7.3323, 7.3321, 7.3328, 7.3325, 7.3331, 7.3329, 7.3326, 7.3325, 7.3323, 7.3321, 7.3318, 7.3316, 7.3313, 7.332, 7.332, 7.3318, 7.3315, 7.3304, 7.3302, 7.3302, 7.3299, 7.3306, 7.3304, 7.3302, 7.3319, 7.3317, 7.3316, 7.3322, 7.3321, 7.3317, 7.3323, 7.332, 7.3317, 7.3314, 7.332, 7.332, 7.3317, 7.3328, 7.3335, 7.3336, 7.3334, 7.3331, 7.3329, 7.3335, 7.3332, 7.3329, 7.3327, 7.3333, 7.3331, 7.3328, 7.3317, 7.3314, 7.3329, 7.3336, 7.3333, 7.334, 7.3348, 7.3345, 7.3341, 7.3338, 7.3335, 7.3332, 7.333, 7.3329, 7.3326, 7.3323, 7.332, 7.3317, 7.3315, 7.3321, 7.3318, 7.3324, 7.333, 7.3328, 7.3343, 7.3368, 7.3366, 7.3365, 7.3355, 7.3345, 7.3351, 7.335, 7.3347, 7.3344, 7.3361, 7.3368, 7.3374, 7.3372, 7.3371, 7.3368, 7.3366, 7.3365, 7.3372, 7.337, 7.3368, 7.3366, 7.3392, 7.339, 7.3387, 7.3384, 7.3374, 7.3371, 7.3369, 7.3366, 7.3365, 7.3362, 7.336, 7.3349, 7.3339, 7.3345, 7.3351, 7.3351, 7.3357, 7.3365, 7.3364, 7.3361, 7.336, 7.3368, 7.3374, 7.3376, 7.3374, 7.3372, 7.3371, 7.3369, 7.3366, 7.3363, 7.3369, 7.3367, 7.3364, 7.3362, 7.3358, 7.3356, 7.3354, 7.3352, 7.3351, 7.3347, 7.3353, 7.335, 7.3349, 7.3347, 7.3344, 7.3343, 7.3332, 7.3331, 7.3337, 7.3367, 7.3364, 7.3362, 7.336, 7.3371, 7.3379, 7.3395, 7.3396, 7.3394, 7.3395, 7.3402, 7.3399, 7.3397, 7.3395, 7.3393, 7.3401, 7.3398, 7.3404, 7.3401, 7.3407, 7.3397, 7.3386, 7.3385, 7.3386, 7.3392, 7.3381, 7.337, 7.336, 7.335, 7.3349, 7.3346, 7.3343, 7.334, 7.3329, 7.332, 7.3317, 7.3315, 7.3312, 7.331, 7.3306, 7.3305, 7.3321, 7.3319, 7.3316, 7.3322, 7.3329, 7.3327, 7.3324, 7.3323, 7.332, 7.3319, 7.3316, 7.3323, 7.332, 7.3317, 7.3314, 7.3312, 7.3309, 7.3316, 7.3322, 7.3337, 7.3334, 7.3331, 7.333, 7.3327, 7.3326, 7.3323, 7.3333, 7.333, 7.3328, 7.3326, 7.3316, 7.3313, 7.331, 7.3317, 7.3324, 7.3322, 7.3321, 7.3319, 7.3316, 7.3323, 7.332, 7.3319, 7.3325, 7.3332, 7.333, 7.3329, 7.3338, 7.3337, 7.3335, 7.3333, 7.3332, 7.3331, 7.3336, 7.3333, 7.333, 7.3328, 7.3326, 7.3324, 7.3322, 7.3319, 7.3317, 7.3315, 7.3312, 7.3309, 7.3308, 7.3306, 7.3303, 7.3301, 7.3299, 7.3305, 7.3302, 7.33, 7.33, 7.3298, 7.3298, 7.3296, 7.3296, 7.3296, 7.3314, 7.3312, 7.3309, 7.3321, 7.3324, 7.3321, 7.3322, 7.332, 7.3318, 7.3324, 7.3321, 7.332, 7.3327, 7.3325, 7.3322, 7.3319, 7.3325, 7.3323, 7.332, 7.3317, 7.3314, 7.3319, 7.3317, 7.3314, 7.3312, 7.331, 7.3308, 7.3306, 7.3303, 7.3301, 7.3309, 7.3315, 7.3313, 7.3312, 7.3309, 7.3306, 7.3303, 7.331, 7.3322, 7.333, 7.3337, 7.3334, 7.3324, 7.3322, 7.3322, 7.332, 7.3317, 7.3314, 7.3313, 7.332, 7.3317, 7.3315, 7.3312, 7.3339, 7.3328, 7.3343, 7.3341, 7.3339, 7.3338, 7.3335, 7.3333, 7.3334, 7.3331, 7.3328, 7.3326, 7.3332, 7.3329, 7.3327, 7.3324, 7.3321, 7.3319, 7.3325, 7.3331, 7.3328, 7.3325, 7.3322, 7.332, 7.3317, 7.3315, 7.333, 7.332, 7.3318, 7.3324, 7.3321, 7.332, 7.3318, 7.3315, 7.3313, 7.331, 7.3308, 7.3297, 7.3295, 7.3293, 7.3293, 7.3291, 7.3288, 7.3286, 7.3283, 7.3282, 7.3285, 7.3292, 7.3289, 7.3287, 7.3294, 7.3292, 7.329, 7.3298, 7.3295, 7.3293, 7.3291, 7.329, 7.3288, 7.3286, 7.3284, 7.3283, 7.3281, 7.328, 7.3277, 7.3276, 7.3274, 7.3272, 7.327, 7.3267, 7.3272, 7.327, 7.3268, 7.3266, 7.3263, 7.326, 7.3257, 7.3255, 7.3254, 7.3251, 7.3249, 7.3246, 7.3264, 7.3262, 7.326, 7.3259, 7.3256, 7.3262, 7.3269, 7.3268, 7.3265, 7.3271, 7.3268, 7.3266, 7.3263, 7.3262, 7.3272, 7.3272, 7.3269, 7.3267, 7.3264, 7.3261, 7.3259, 7.3256, 7.3254, 7.3245, 7.3252, 7.325, 7.3248, 7.3252, 7.3249, 7.3255, 7.3265, 7.3272, 7.3286, 7.3292, 7.3294, 7.3292, 7.329, 7.3287, 7.329700000000001, 7.3296, 7.3302, 7.3301, 7.3298, 7.3304, 7.3302, 7.33, 7.33, 7.331, 7.332000000000001, 7.3312, 7.331, 7.3307, 7.3313, 7.332, 7.3318, 7.3317, 7.3316, 7.3315, 7.3321, 7.3315, 7.3325, 7.3324, 7.3324, 7.3329, 7.3326, 7.3324, 7.3321, 7.3319, 7.3317, 7.3324, 7.333, 7.3336, 7.3334, 7.3333, 7.3331, 7.333, 7.3328, 7.3326, 7.3332, 7.3329, 7.3327, 7.3325, 7.3322, 7.3319, 7.3317, 7.3315, 7.3329, 7.3329, 7.3335, 7.3332, 7.3329, 7.3336, 7.3334, 7.334, 7.3346, 7.3344, 7.3341, 7.3339, 7.3336, 7.3333, 7.333, 7.3336, 7.3333, 7.3332, 7.3329, 7.3326, 7.3323, 7.3322, 7.332, 7.3326, 7.3324, 7.3322, 7.3322, 7.3348, 7.3346, 7.3344, 7.3341, 7.3347, 7.3345, 7.3344, 7.3344, 7.3343, 7.3341, 7.3338, 7.3344, 7.3341, 7.3339, 7.3336, 7.3335, 7.3333, 7.3336, 7.3343, 7.3341, 7.3338, 7.3337, 7.3336, 7.3342, 7.3348, 7.3354, 7.3352, 7.3349, 7.3356, 7.3363, 7.336, 7.3359, 7.3357, 7.3354, 7.336, 7.3357, 7.3355, 7.3353, 7.335, 7.3348, 7.3354, 7.3351, 7.335, 7.3348, 7.3354, 7.3359, 7.3356, 7.3362, 7.3359, 7.3356, 7.3353, 7.3359, 7.3349, 7.3347, 7.3345, 7.3344, 7.3342, 7.3363, 7.336, 7.336, 7.3357, 7.3354, 7.336, 7.3357, 7.3355, 7.3361, 7.3358, 7.3365, 7.3365, 7.3362, 7.3368, 7.3366, 7.3371, 7.3377, 7.3374, 7.3371, 7.3377, 7.3374, 7.3371, 7.3368, 7.3366, 7.3363, 7.3377, 7.3393, 7.339, 7.3388, 7.3385, 7.3382, 7.3379, 7.3377, 7.3374, 7.3381, 7.3379, 7.3376, 7.3381, 7.3379, 7.3377, 7.3374, 7.3376, 7.3382, 7.338, 7.3402, 7.3401, 7.3399, 7.3397, 7.3395, 7.3393, 7.3398, 7.3396, 7.3395, 7.3402, 7.34, 7.3397, 7.3396, 7.3399, 7.3398, 7.3397, 7.3394, 7.3404, 7.3401, 7.3399, 7.3397, 7.3396, 7.3393, 7.3393, 7.3391, 7.3398, 7.3403, 7.34, 7.3397, 7.3411, 7.3408, 7.3406, 7.3412, 7.3409, 7.3401, 7.3398, 7.3399, 7.3401, 7.3424, 7.3422, 7.3427, 7.3425, 7.344, 7.343, 7.3428, 7.3426, 7.3423, 7.3421, 7.341, 7.3416, 7.3453, 7.3451, 7.3449, 7.3455, 7.3452, 7.3457, 7.3455, 7.3452, 7.3449, 7.3446, 7.3451, 7.3449, 7.3446, 7.3436, 7.3433, 7.3431, 7.3428, 7.3426, 7.3423, 7.3421, 7.3418, 7.3416, 7.3421, 7.3418, 7.3424, 7.343, 7.3435, 7.3458, 7.3457, 7.3463, 7.3461, 7.3458, 7.3456, 7.3454, 7.3452, 7.3458, 7.3455, 7.3452, 7.3457, 7.3454, 7.3451, 7.3449, 7.3446, 7.3443, 7.3448, 7.3454, 7.3452, 7.3457, 7.3454, 7.3459, 7.3457, 7.3471, 7.3476, 7.349, 7.3487, 7.3492, 7.3489, 7.3486, 7.3484, 7.3482, 7.3474, 7.3471, 7.3468, 7.3473, 7.3471, 7.3476, 7.3473, 7.347, 7.3478, 7.3489, 7.3486, 7.3483, 7.348, 7.3482, 7.3479, 7.3471, 7.3476, 7.3474, 7.3479, 7.3476, 7.3482, 7.3479, 7.3476, 7.3473, 7.3479, 7.3477, 7.3469, 7.3489, 7.3514, 7.3511, 7.3509, 7.3507, 7.3505, 7.351, 7.3507, 7.3504, 7.351, 7.3509, 7.3516, 7.3516, 7.3522, 7.352, 7.3517, 7.3517, 7.3515, 7.3514, 7.3521, 7.3519, 7.3516, 7.3515, 7.3513, 7.351, 7.3516, 7.3515, 7.3513, 7.352, 7.3517, 7.3516, 7.3514, 7.3513, 7.3519, 7.3526, 7.3533, 7.3536, 7.3534, 7.3533, 7.3539, 7.3554, 7.3561, 7.3559, 7.3556, 7.3553, 7.3564, 7.357, 7.3568, 7.3574, 7.3579, 7.3576, 7.3573, 7.357, 7.3572, 7.3571, 7.3578, 7.3586, 7.3584, 7.3583, 7.3611, 7.3617, 7.3614, 7.3612, 7.3609, 7.3606, 7.3603, 7.3601, 7.3598, 7.3595, 7.3601, 7.3599, 7.3604, 7.3601, 7.3599, 7.3597, 7.3594, 7.3592, 7.3589, 7.3587, 7.3585, 7.3583, 7.3588, 7.3586, 7.3609, 7.3621, 7.3622, 7.362, 7.3617, 7.3614, 7.3611, 7.3608, 7.3607, 7.3605, 7.3602, 7.3599, 7.3597, 7.3589, 7.3589, 7.3589, 7.3587, 7.3587, 7.3585, 7.3583, 7.3581, 7.3591, 7.3589, 7.3587, 7.3587, 7.3587, 7.3584, 7.3581, 7.3578, 7.3582, 7.3579, 7.3584, 7.3583, 7.3581, 7.3578, 7.3577, 7.3575, 7.3573, 7.357, 7.3569, 7.3575, 7.3574, 7.3571, 7.3568, 7.3567, 7.3573, 7.3579, 7.3577, 7.3576, 7.3575, 7.3574, 7.3579, 7.3577, 7.3583, 7.3589, 7.3587, 7.3585, 7.359, 7.3589, 7.3594, 7.3591, 7.3596, 7.3594, 7.3592, 7.359, 7.3588, 7.3585, 7.3582, 7.3579, 7.3578, 7.3576, 7.3581, 7.358, 7.3579, 7.3577, 7.3614, 7.3612, 7.3619, 7.3617, 7.3618, 7.3617, 7.3616, 7.3615, 7.3624, 7.3616, 7.3617, 7.3616, 7.3614, 7.3612, 7.3609, 7.3625, 7.3639, 7.3638, 7.3636, 7.3633, 7.3638, 7.3635, 7.3649, 7.3646, 7.3643, 7.3641, 7.3639, 7.3644, 7.3642, 7.364, 7.3639, 7.3637, 7.3635, 7.364, 7.3638, 7.3643, 7.3641, 7.3638, 7.3636, 7.3634, 7.3631, 7.3628, 7.3625, 7.3623, 7.3628, 7.3626, 7.3624, 7.3621, 7.362, 7.3618, 7.3616, 7.3621, 7.3618, 7.3615, 7.3613, 7.361, 7.3607, 7.3605, 7.3602, 7.36, 7.3597, 7.3602, 7.3599, 7.3599, 7.3598, 7.3595, 7.3593, 7.3599, 7.3597, 7.3596, 7.3593, 7.3598, 7.3596, 7.3602, 7.3601, 7.36, 7.3597, 7.3596, 7.3593, 7.3583, 7.358, 7.3586, 7.3584, 7.3589, 7.3594, 7.3594, 7.3599, 7.3605, 7.361, 7.3607, 7.3605, 7.3605, 7.3602, 7.3599], '192.168.122.116': [5.8451, 5.9485, 5.9704, 6.1529, 6.1231, 6.1417, 6.0491, 5.9869, 5.9538, 6.5083, 6.584, 6.6237, 6.5819, 6.9483, 6.8712, 6.7999, 6.7793, 6.7595, 6.7005, 6.648, 6.6776, 6.6291, 6.5947, 6.6948, 7.2324, 7.5639, 7.5033, 7.672, 7.9681, 8.3117, 8.2446, 8.6666, 8.5954, 8.5263, 8.4387, 8.35, 8.4127, 8.3591, 8.2846, 8.2192, 8.2856, 8.2193, 8.1658, 8.1193, 8.1823, 8.124, 8.0684, 8.0151, 8.0721, 8.0196, 7.9871, 7.9449, 7.896, 7.8577, 7.9159, 7.9668, 7.9505, 8.0993, 8.0557, 8.0361, 7.9958, 7.9532, 7.9218, 7.9779, 7.9515, 7.998, 7.9583, 7.9281, 7.8926, 7.9451, 7.9115, 8.0709, 8.0404, 8.0187, 7.9822, 7.9478, 7.9297, 7.925, 7.8953, 7.8698, 7.8463, 7.8174, 7.7953, 7.7843, 7.7555, 7.7397, 7.8007, 7.7801, 7.7558, 7.7512, 7.7369, 7.7115, 7.6985, 7.6726, 7.6561, 7.69, 7.6658, 7.6506, 7.6349, 7.6127, 7.6035, 7.6391, 7.6713, 7.6516, 7.6433, 7.7159, 7.695, 7.7276, 7.7117, 7.6905, 7.6769, 7.659, 7.6521, 7.6958, 7.7263, 7.7091, 7.7083, 7.6931, 7.687, 7.6694, 7.6601, 7.6881, 7.6722, 7.6992, 7.682, 7.6648, 7.6478, 7.6808, 7.7073, 7.6946, 7.6776, 7.6637, 7.648, 7.6396, 7.6252, 7.6101, 7.5929, 7.5777, 7.5691, 7.5606, 7.5468, 7.5347, 7.5206, 7.5448, 7.5311, 7.5554, 7.544, 7.5669, 7.5549, 7.5427, 7.5308, 7.5553, 7.5471, 7.5401, 7.5319, 7.5193, 7.5051, 7.5005, 7.4861, 7.5055, 7.4654, 7.484, 7.4764, 7.4637, 7.4871, 7.4738, 7.4924, 7.4813, 7.4773, 7.467, 7.4542, 7.5333, 7.5257, 7.5156, 7.5049, 7.4947, 7.4893, 7.4774, 7.5003, 7.4933, 7.493, 7.5113, 7.5078, 7.5302, 7.5677, 7.6157, 7.6054, 7.6078, 7.6332, 7.6242, 7.6161, 7.6068, 7.5953, 7.593, 7.5891, 7.5848, 7.5984, 7.5895, 7.6095, 7.6049, 7.5944, 7.6374, 7.6549, 7.6435, 7.6335, 7.6256, 7.6209, 7.6151, 7.7211, 7.7353, 7.726, 7.7189, 7.7147, 7.7051, 7.6956, 7.7114, 7.7013, 7.6909, 7.6841, 7.6743, 7.6874, 7.6781, 7.6703, 7.6633, 7.6551, 7.6468, 7.6367, 7.6511, 7.6447, 7.6386, 7.6524, 7.622, 7.6141, 7.6044, 7.6004, 7.5917, 7.5826, 7.5731, 7.5647, 7.5767, 7.5683, 7.5622, 7.5536, 7.5667, 7.5573, 7.5483, 7.5441, 7.5172, 7.5316, 7.5322, 7.5071, 7.5235, 7.5193, 7.4957, 7.5323, 7.5238, 7.5208, 7.5169, 7.5095, 7.5023, 7.5004, 7.4929, 7.487, 7.4807, 7.4751, 7.4872, 7.504, 7.5197, 7.5358, 7.5276, 7.5256, 7.5172, 7.5118, 7.5061, 7.5188, 7.5108, 7.5042, 7.5045, 7.4985, 7.4917, 7.5046, 7.5175, 7.51, 7.5023, 7.4975, 7.4929, 7.4869, 7.4797, 7.4729, 7.4729, 7.4781, 7.4736, 7.4723, 7.466, 7.4591, 7.4535, 7.4502, 7.4449, 7.4396, 7.4543, 7.4691, 7.4655, 7.4587, 7.4522, 7.4449, 7.4397, 7.4447, 7.4423, 7.4395, 7.4373, 7.4337, 7.4271, 7.4218, 7.4017, 7.3962, 7.3925, 7.3857, 7.3802, 7.3748, 7.368, 7.3628, 7.3577, 7.3684, 7.3784, 7.3721, 7.3671, 7.3639, 7.3765, 7.3732, 7.3854, 7.3818, 7.3786, 7.3895, 7.386, 7.3845, 7.3798, 7.3971, 7.391, 7.3908, 7.3861, 7.3812, 7.3927, 7.3886, 7.4006, 7.3956, 7.3921, 7.3894, 7.3926, 7.4037, 7.3997, 7.3979, 7.3924, 7.3883, 7.3839, 7.3791, 7.3742, 7.3694, 7.3804, 7.3774, 7.3898, 7.3852, 7.3844, 7.3812, 7.3768, 7.3715, 7.3678, 7.3646, 7.3606, 7.3596, 7.3711, 7.3722, 7.3699, 7.3651, 7.365, 7.3742, 7.372, 7.3664, 7.3629, 7.3628, 7.3616, 7.3588, 7.3563, 7.3646, 7.362, 7.3593, 7.356, 7.3524, 7.3606, 7.358, 7.3529, 7.3617, 7.3588, 7.3539, 7.3489, 7.3774, 7.3737, 7.3721, 7.3697, 7.3672, 7.3662, 7.3614, 7.3572, 7.3547, 7.35, 7.3589, 7.3546, 7.3508, 7.3606, 7.357, 7.3673, 7.3634, 7.3761, 7.372, 7.3694, 7.3797, 7.3774, 7.3744, 7.3724, 7.3807, 7.3772, 7.3731, 7.3682, 7.3768, 7.3765, 7.3755, 7.3756, 7.3727, 7.369, 7.3673, 7.3634, 7.3634, 7.3591, 7.3568, 7.3536, 7.3492, 7.3519, 7.361, 7.3578, 7.3546, 7.3774, 7.3923, 7.4148, 7.41, 7.4061, 7.415, 7.4122, 7.4599, 7.4558, 7.4438, 7.4401, 7.4355, 7.4318, 7.4527, 7.4611, 7.4582, 7.4559, 7.4534, 7.4498, 7.4476, 7.4453, 7.441, 7.4391, 7.4357, 7.4549, 7.5001, 7.497, 7.4925, 7.489, 7.4966, 7.4925, 7.4908, 7.4893, 7.4861, 7.4816, 7.4771, 7.4751, 7.4732, 7.47, 7.4669, 7.4626, 7.459, 7.4563, 7.456, 7.4517, 7.4532, 7.4525, 7.4524, 7.4764, 7.4721, 7.4833, 7.4963, 7.4939, 7.4936, 7.5017, 7.4979, 7.495, 7.5024, 7.5014, 7.4975, 7.4962, 7.4949, 7.4919, 7.4887, 7.4849, 7.4828, 7.4904, 7.4865, 7.4826, 7.5011, 7.4983, 7.5016, 7.4991, 7.5061, 7.5039, 7.4999, 7.4967, 7.494, 7.491, 7.4875, 7.4866, 7.494, 7.4922, 7.489, 7.5095, 7.5063, 7.503, 7.5001, 7.4967, 7.4958, 7.4937, 7.4915, 7.4888, 7.486, 7.4856, 7.4924, 7.4908, 7.4974, 7.4935, 7.5004, 7.4966, 7.4937, 7.4912, 7.4896, 7.4867, 7.4932, 7.4905, 7.4888, 7.4949, 7.492, 7.4902, 7.4996, 7.5055, 7.5039, 7.5005, 7.5073, 7.508, 7.5071, 7.5138, 7.5098, 7.5064, 7.503, 7.509, 7.5061, 7.5035, 7.4997, 7.497, 7.4943, 7.4911, 7.4888, 7.4863, 7.4855, 7.4836, 7.4807, 7.4781, 7.4942, 7.4996, 7.4968, 7.4932, 7.4909, 7.496, 7.494, 7.491, 7.4898, 7.4873, 7.484, 7.4811, 7.4775, 7.4659, 7.4629, 7.4594, 7.4576, 7.4542, 7.4514, 7.4479, 7.4455, 7.4427, 7.4394, 7.4362, 7.4328, 7.4299, 7.4289, 7.4252, 7.4309, 7.4293, 7.4275, 7.4243, 7.423, 7.4117, 7.4085, 7.4238, 7.4203, 7.4178, 7.4162, 7.4142, 7.4109, 7.4079, 7.4055, 7.403, 7.4173, 7.4142, 7.4108, 7.4076, 7.4044, 7.402, 7.4, 7.3981, 7.3965, 7.3948, 7.3917, 7.4061, 7.4028, 7.3995, 7.4046, 7.4029, 7.3998, 7.3966, 7.3937, 7.3988, 7.3976, 7.3944, 7.4008, 7.4035, 7.4031, 7.4092, 7.4066, 7.4042, 7.4034, 7.4008, 7.3984, 7.3952, 7.4005, 7.3993, 7.3979, 7.3957, 7.3943, 7.3916, 7.389, 7.3865, 7.3834, 7.3844, 7.3818, 7.3796, 7.3766, 7.3751, 7.3753, 7.3722, 7.3924, 7.3928, 7.4068, 7.4048, 7.4051, 7.4034, 7.4093, 7.408, 7.4074, 7.4046, 7.4106, 7.4082, 7.4055, 7.4034, 7.4012, 7.4003, 7.3981, 7.3969, 7.3952, 7.3924, 7.3896, 7.3882, 7.3854, 7.3834, 7.3825, 7.3799, 7.3772, 7.3774, 7.3762, 7.3752, 7.3732, 7.3725, 7.3713, 7.3698, 7.368, 7.3657, 7.3636, 7.3623, 7.3598, 7.3648, 7.3698, 7.367, 7.3641, 7.3618, 7.3595, 7.359, 7.3573, 7.355, 7.3532, 7.3529, 7.3656, 7.3633, 7.3608, 7.3591, 7.3566, 7.3541, 7.3525, 7.3499, 7.3476, 7.3459, 7.3506, 7.3494, 7.3543, 7.3527, 7.3578, 7.3557, 7.354, 7.3534, 7.3513, 7.3491, 7.3462, 7.3442, 7.3428, 7.3482, 7.346, 7.3438, 7.3426, 7.3405, 7.3399, 7.3379, 7.3358, 7.3339, 7.3324, 7.3302, 7.3275, 7.3322, 7.3311, 7.3286, 7.3262, 7.3237, 7.322, 7.3195, 7.3177, 7.3167, 7.317, 7.3165, 7.3163, 7.3154, 7.3141, 7.3115, 7.3096, 7.3072, 7.3063, 7.3116, 7.3094, 7.308, 7.3065, 7.3065, 7.3048, 7.304, 7.3073, 7.3053, 7.3038, 7.316, 7.3144, 7.3127, 7.3179, 7.3168, 7.3169, 7.3146, 7.313, 7.3108, 7.3155, 7.3206, 7.3192, 7.3168, 7.3155, 7.3132, 7.3108, 7.3091, 7.3083, 7.3057, 7.3037, 7.302, 7.3002, 7.3008, 7.3022, 7.3002, 7.3002, 7.298, 7.3025, 7.3001, 7.3011, 7.3013, 7.2991, 7.3028, 7.3017, 7.2996, 7.2982, 7.296, 7.2948, 7.2936, 7.2982, 7.3027, 7.3017, 7.3012, 7.3001, 7.2983, 7.296, 7.2942, 7.299, 7.2973, 7.2959, 7.3009, 7.3062, 7.3048, 7.3037, 7.3038, 7.302, 7.3004, 7.2983, 7.296, 7.3011, 7.2992, 7.3034, 7.3036, 7.3026, 7.3002, 7.3042, 7.3025, 7.301, 7.2987, 7.3031, 7.3121, 7.3104, 7.3084, 7.3075, 7.3128, 7.3114, 7.3095, 7.3079, 7.3128, 7.3174, 7.3154, 7.3147, 7.3127, 7.3111, 7.3101, 7.308, 7.3068, 7.3065, 7.305, 7.3046, 7.3023, 7.3014, 7.2994, 7.2977, 7.2966, 7.295, 7.2992, 7.2969, 7.3012, 7.3073, 7.3059, 7.3051, 7.3037, 7.3014, 7.2992, 7.297, 7.2984, 7.2961, 7.294, 7.2918, 7.2896, 7.288, 7.2862, 7.2842, 7.282, 7.2797, 7.2798, 7.2777, 7.2783, 7.2763, 7.2759, 7.2739, 7.2718, 7.2699, 7.2679, 7.2721, 7.2699, 7.2681, 7.2691, 7.2688, 7.2674, 7.2654, 7.2582, 7.2567, 7.2559, 7.2556, 7.2543, 7.2702, 7.2805, 7.2909, 7.2889, 7.2945, 7.2934, 7.2922, 7.2917, 7.2912, 7.2956, 7.2942, 7.2932, 7.2913, 7.2912, 7.2908, 7.2894, 7.2892, 7.2932, 7.2875, 7.2945, 7.303, 7.3106, 7.3089, 7.3073, 7.3124, 7.3161, 7.3143, 7.318, 7.3217, 7.3259, 7.3244, 7.3277, 7.3284, 7.3339, 7.3325, 7.3314, 7.3347, 7.3441, 7.3425, 7.3439, 7.3422, 7.3405, 7.3403, 7.3392, 7.3426, 7.3413, 7.3411, 7.3444, 7.3423, 7.3402, 7.3391, 7.3374, 7.342, 7.3457, 7.3445, 7.3428, 7.3413, 7.34, 7.3408, 7.3396, 7.342, 7.3403, 7.3388, 7.343, 7.3423, 7.3407, 7.3388, 7.3377, 7.3411, 7.3452, 7.3434, 7.3487, 7.352, 7.3553, 7.3538, 7.357, 7.3609, 7.3597, 7.3576, 7.3555, 7.354, 7.352, 7.3505, 7.3445, 7.3382, 7.3382, 7.3363, 7.335, 7.333, 7.3324, 7.3316, 7.3296, 7.3278, 7.3371, 7.3356, 7.3339, 7.3327, 7.3307, 7.3291, 7.3278, 7.3261, 7.3245, 7.3231, 7.3224, 7.3211, 7.3254, 7.3242, 7.3228, 7.3272, 7.3263, 7.3248, 7.3233, 7.3228, 7.3269, 7.3262, 7.3243, 7.3223, 7.323300000000001, 7.3277, 7.3258, 7.3247, 7.3234, 7.322, 7.3267, 7.3315, 7.3307, 7.3292, 7.3273, 7.3357, 7.3357, 7.3389, 7.3421, 7.3453, 7.3547, 7.3548, 7.3765, 7.3748, 7.374, 7.3724, 7.3717, 7.3698, 7.3699, 7.3731, 7.3715, 7.375, 7.3734, 7.3722, 7.3765, 7.3823, 7.3808, 7.3789, 7.3783, 7.3767, 7.375, 7.3743, 7.3727, 7.3847, 7.3835, 7.3902, 7.3883, 7.3921, 7.3904, 7.3888, 7.3874, 7.3858, 7.3847, 7.3925, 7.3907, 7.3942, 7.3928, 7.4114, 7.4099, 7.4085, 7.4066, 7.4048, 7.399, 7.3982, 7.3966, 7.3953, 7.3994, 7.399, 7.3973, 7.3977, 7.3963, 7.4006, 7.3992, 7.398, 7.3966, 7.3953, 7.3986, 7.4019, 7.4014, 7.4003, 7.3991, 7.4021, 7.4002, 7.4038, 7.4075, 7.4078, 7.4112, 7.4093, 7.4074, 7.4064, 7.4059, 7.404, 7.4028, 7.4013, 7.3997, 7.4024, 7.4006, 7.3992, 7.3975, 7.3959, 7.3943, 7.3928, 7.3913, 7.3894, 7.3879, 7.3871, 7.3853, 7.3891, 7.3876, 7.3867, 7.3849, 7.3838, 7.3874, 7.3863, 7.3901, 7.3935, 7.3917, 7.3915, 7.3906, 7.389, 7.3872, 7.3861, 7.391, 7.3897, 7.3878, 7.3907, 7.3899, 7.3882, 7.3867, 7.3859, 7.3852, 7.384, 7.3868, 7.3856, 7.3844, 7.3828, 7.381, 7.3793, 7.3779, 7.3855, 7.386, 7.3843, 7.3825, 7.3828, 7.3821, 7.3813, 7.38, 7.3788, 7.3775, 7.3804, 7.3787, 7.3814, 7.3799, 7.3783, 7.3766, 7.3749, 7.3733, 7.3763, 7.379, 7.3775, 7.3761, 7.3746, 7.3731, 7.3717, 7.3713, 7.3701, 7.3686, 7.3678, 7.3661, 7.3703, 7.3687, 7.368, 7.371, 7.375, 7.3737, 7.3811, 7.3805, 7.3803, 7.3787, 7.377, 7.3802, 7.3785, 7.3774, 7.3773, 7.3757, 7.3748, 7.3748, 7.3743, 7.3734, 7.3721, 7.3753, 7.3782, 7.3776, 7.3776, 7.3763, 7.3754, 7.4028, 7.4012, 7.4007, 7.3994, 7.3992, 7.3977, 7.396, 7.3953, 7.3947, 7.3941, 7.3926, 7.4053, 7.4039, 7.3991, 7.3981, 7.3968, 7.3956, 7.3947, 7.3978, 7.3963, 7.3952, 7.3937, 7.3928, 7.3918, 7.3907, 7.3892, 7.3885, 7.3878, 7.3908, 7.3898, 7.3885, 7.3874, 7.391, 7.3942, 7.3926, 7.3915, 7.3907, 7.3935, 7.3882, 7.3868, 7.3854, 7.3844, 7.3874, 7.3865, 7.3855, 7.384, 7.3878, 7.3871, 7.3863, 7.3855, 7.3855, 7.3844, 7.3843, 7.3841, 7.3872, 7.3862, 7.385, 7.3834, 7.3826, 7.3853, 7.3881, 7.3871, 7.3959, 7.3953, 7.3941, 7.3942, 7.3969, 7.3963, 7.3952, 7.3978, 7.3998, 7.3983, 7.3974, 7.3959, 7.3943, 7.3929, 7.3914, 7.3903, 7.3888, 7.3872, 7.3858, 7.3854, 7.3883, 7.387, 7.3863, 7.3852, 7.3889, 7.388, 7.388, 7.3866, 7.3862, 7.3884, 7.3873, 7.3869, 7.3861, 7.3847, 7.3841, 7.3835, 7.383, 7.3814, 7.3799, 7.3823, 7.381, 7.3795, 7.3789, 7.3774, 7.3761, 7.3753, 7.374, 7.3725, 7.3754, 7.3739, 7.3725, 7.3713, 7.37, 7.3686, 7.3678, 7.3701, 7.3687, 7.3679, 7.3667, 7.3653, 7.3641, 7.3671, 7.3658, 7.365, 7.3648, 7.3635, 7.362, 7.3606, 7.3603, 7.359, 7.3582, 7.3576, 7.3562, 7.3551, 7.3537, 7.3523, 7.3515, 7.3513, 7.3499, 7.3485, 7.3543, 7.3533, 7.3523, 7.351, 7.3506, 7.3525, 7.351, 7.3535, 7.3522, 7.3513, 7.3507, 7.3532, 7.3556, 7.3586, 7.3578, 7.3563, 7.3558, 7.3547, 7.3547, 7.3533, 7.3525, 7.3733, 7.3815, 7.3803, 7.383, 7.3855, 7.384, 7.3829, 7.3817, 7.3804, 7.3796, 7.3788, 7.3812, 7.38, 7.3795, 7.3782, 7.3771, 7.3765, 7.3767, 7.3758, 7.3743, 7.373, 7.3744, 7.3772, 7.3808, 7.3796, 7.382, 7.3808, 7.3796, 7.3784, 7.377, 7.3758, 7.375, 7.3738, 7.3724, 7.3709, 7.3696, 7.3721, 7.3713, 7.3699, 7.3692, 7.3679, 7.3666, 7.3695, 7.3721, 7.3712, 7.3714, 7.3752, 7.3776, 7.3765, 7.3758, 7.3749, 7.3774, 7.376, 7.3747, 7.3771, 7.3758, 7.3751, 7.3741, 7.3738, 7.3728, 7.3724, 7.371, 7.3735, 7.3759, 7.3745, 7.3735, 7.3838, 7.3826, 7.3815, 7.3806, 7.3793, 7.3819, 7.3807, 7.38, 7.3799, 7.3787, 7.3782, 7.3771, 7.3812, 7.377, 7.3758, 7.3751, 7.3739, 7.3731, 7.3717, 7.3744, 7.3742, 7.3769, 7.3801, 7.3795, 7.3826, 7.3857, 7.3855, 7.3855, 7.3849, 7.3846, 7.3835, 7.3825, 7.3822, 7.3817, 7.3811, 7.3837, 7.3868, 7.3858, 7.3883, 7.3872, 7.3863, 7.3859, 7.3884, 7.3874, 7.3862, 7.3886, 7.3885, 7.3908, 7.393, 7.3954, 7.3944, 7.39, 7.3904, 7.3894, 7.3884, 7.3873, 7.3859, 7.385, 7.3843, 7.3868, 7.3858, 7.3847, 7.3833, 7.3824, 7.3845, 7.3866, 7.3862, 7.385, 7.384, 7.3833, 7.3849, 7.3879, 7.3871, 7.3893, 7.3881, 7.387, 7.3864, 7.387, 7.3895, 7.3997, 7.3984, 7.4192, 7.4225, 7.4215, 7.4206, 7.4192, 7.418, 7.417, 7.4159, 7.4209, 7.4211, 7.4234, 7.4222, 7.421, 7.4197, 7.4189, 7.4177, 7.4165, 7.4153, 7.4144, 7.4136, 7.4133, 7.412, 7.4109, 7.4103, 7.4091, 7.4113, 7.4106, 7.4097, 7.4084, 7.4075, 7.4064, 7.4052, 7.4049, 7.4044, 7.4034, 7.4121, 7.4141, 7.4129, 7.412, 7.4166, 7.4222, 7.4215, 7.4202, 7.4189, 7.4179, 7.4202, 7.4207, 7.4275, 7.4334, 7.4355, 7.4347, 7.4334, 7.4325, 7.4347, 7.4371, 7.4392, 7.4414, 7.4402, 7.4388, 7.4378, 7.4402, 7.4391, 7.4382, 7.4369, 7.439, 7.442, 7.4411, 7.4405, 7.4399, 7.4386, 7.4373, 7.4361, 7.4382, 7.4374, 7.4368, 7.4357, 7.4346, 7.4337, 7.4324, 7.4313, 7.4305, 7.4331, 7.4324, 7.4392, 7.4383, 7.4372, 7.4363, 7.436, 7.435, 7.4343, 7.4334, 7.4371, 7.4363, 7.4384, 7.4371, 7.436, 7.4351, 7.434, 7.4438, 7.4458, 7.4453, 7.4443, 7.4463, 7.4455, 7.4476, 7.4477, 7.4464, 7.4451, 7.4554, 7.4549, 7.4539, 7.4526, 7.4517, 7.451, 7.4497, 7.4492, 7.4483, 7.4473, 7.446, 7.4456, 7.4449, 7.444, 7.4432, 7.4424, 7.4447, 7.4433, 7.4422, 7.4416, 7.4409, 7.4404, 7.4392, 7.4384, 7.4405, 7.4426, 7.4414, 7.4434, 7.4455, 7.4464, 7.4453, 7.4449, 7.444, 7.4461, 7.4448, 7.4439, 7.443, 7.4452, 7.444, 7.4428, 7.4417, 7.4409, 7.4404, 7.4394, 7.4383, 7.4393, 7.438, 7.4375, 7.4368, 7.4379, 7.4369, 7.4361, 7.4351, 7.4362, 7.4467, 7.4458, 7.4446, 7.4436, 7.4506, 7.4526, 7.4513, 7.4502, 7.4493, 7.4482, 7.4504, 7.4559, 7.455, 7.4537, 7.4559, 7.4561, 7.455, 7.4556, 7.4579, 7.4569, 7.4559, 7.456, 7.4614, 7.4604, 7.4724, 7.4686, 7.4675, 7.4672, 7.4663, 7.4663, 7.4661, 7.4648, 7.4636, 7.463, 7.4652, 7.4648, 7.4666, 7.4657, 7.4648, 7.4636, 7.4625, 7.4613, 7.4607, 7.4602, 7.4634, 7.4625, 7.4619, 7.461, 7.4606, 7.465, 7.4639, 7.4629, 7.459, 7.458, 7.4575, 7.4571, 7.4662, 7.4665, 7.4697, 7.4673, 7.4727, 7.4774, 7.4764, 7.4754, 7.4742, 7.4735, 7.4756, 7.4808, 7.4821, 7.4843, 7.4862, 7.4853, 7.4872, 7.4859, 7.4864, 7.4856, 7.4846, 7.4838, 7.4826, 7.4816, 7.4806, 7.4798, 7.4791, 7.4912, 7.4934, 7.4962, 7.5028, 7.505, 7.5051, 7.5047, 7.5036, 7.5032, 7.4993, 7.4983, 7.4979, 7.4969, 7.4958, 7.4947, 7.4943, 7.4931, 7.4952, 7.4945, 7.4935, 7.4954, 7.4945, 7.4964, 7.4953, 7.4943, 7.4961, 7.4951, 7.4972, 7.4961, 7.4954, 7.4942, 7.4931, 7.492, 7.4911, 7.493, 7.4924, 7.4913, 7.4906, 7.49, 7.4907, 7.4896, 7.4884, 7.4901, 7.4891, 7.4879, 7.4874, 7.4863, 7.4885, 7.4873, 7.4863, 7.4881, 7.4875, 7.4864, 7.4881, 7.4875, 7.4865, 7.4853, 7.4845, 7.4836, 7.4826, 7.4817, 7.4835, 7.4823, 7.4812, 7.4833, 7.4824, 7.4842, 7.4863, 7.4857, 7.4848, 7.4841, 7.4842, 7.4857, 7.4851, 7.4848, 7.4843, 7.4837, 7.4827, 7.4818, 7.4839, 7.4828, 7.4851, 7.484, 7.4832, 7.4821, 7.4809, 7.4828, 7.4821, 7.4841, 7.4834, 7.4822, 7.4812, 7.4806, 7.4796, 7.479, 7.4791, 7.4781, 7.4772, 7.4761, 7.476, 7.4837, 7.4816, 7.4807, 7.4827, 7.4819, 7.4819, 7.485, 7.4901, 7.4893, 7.4888, 7.4878, 7.4898, 7.5058, 7.505, 7.5068, 7.506, 7.5053, 7.5044, 7.5035, 7.5026, 7.5015, 7.5004, 7.4994, 7.5001, 7.5027, 7.5021, 7.5009, 7.4998, 7.4992, 7.4986, 7.5005, 7.4997, 7.499, 7.5046, 7.5036, 7.504, 7.5008, 7.5001, 7.5069, 7.5065, 7.5058, 7.5054, 7.5043, 7.5032, 7.5027, 7.5024, 7.5015, 7.5033, 7.5026, 7.5019, 7.5037, 7.5034, 7.5053, 7.5048, 7.5042, 7.506, 7.5051, 7.504, 7.5029, 7.5022, 7.5014, 7.5004, 7.4996, 7.4988, 7.4982, 7.4978, 7.4994, 7.4985, 7.4981, 7.4999, 7.5018, 7.5007, 7.5003, 7.5022, 7.5041, 7.5034, 7.5024, 7.5017, 7.501, 7.5027, 7.5024, 7.5019, 7.5011, 7.5003, 7.4993, 7.4988, 7.4977, 7.4971, 7.4968, 7.496, 7.4963, 7.4934, 7.4935, 7.4926, 7.4917, 7.4935, 7.4998, 7.5049, 7.504, 7.5061, 7.5051, 7.5049, 7.5042, 7.5037, 7.5027, 7.5021, 7.5036, 7.5034, 7.5056, 7.5046, 7.5035, 7.5025, 7.5016, 7.5005, 7.4996, 7.4987, 7.5002, 7.4994, 7.4985, 7.4979, 7.4976, 7.497, 7.496, 7.4958, 7.4954, 7.4972, 7.4961, 7.495, 7.4967, 7.496, 7.4951, 7.4943, 7.4957, 7.4952, 7.4947, 7.4937, 7.493, 7.4926, 7.4944, 7.4935, 7.4925, 7.4915, 7.491, 7.4902, 7.4895, 7.4896, 7.4893, 7.4889, 7.4882, 7.4877, 7.4875, 7.4865, 7.4857, 7.4858, 7.485, 7.484, 7.4859, 7.4851, 7.4843, 7.486, 7.4919, 7.4953, 7.4942, 7.4932, 7.4935, 7.492, 7.4888, 7.4878, 7.4878, 7.4896, 7.4891, 7.4882, 7.4899, 7.489, 7.4882, 7.4871, 7.4888, 7.4878, 7.4867, 7.4865, 7.4833, 7.4823, 7.4792, 7.4787, 7.4777, 7.4772, 7.4868, 7.4858, 7.4848, 7.4838, 7.4854, 7.4844, 7.4859, 7.485, 7.4867, 7.4883, 7.4875, 7.4869, 7.4868, 7.486, 7.4914, 7.4914, 7.4907, 7.4896, 7.4893, 7.4883, 7.4877, 7.495, 7.4939, 7.4932, 7.495, 7.4941, 7.4955, 7.4971, 7.4961, 7.4951, 7.4941, 7.4934, 7.4924, 7.4915, 7.4906, 7.4895, 7.4885, 7.4874, 7.489, 7.4883, 7.4876, 7.4893, 7.4912, 7.4902, 7.4894, 7.4886, 7.4879, 7.487, 7.4861, 7.4854, 7.4872, 7.4888, 7.4881, 7.4871, 7.4866, 7.4857, 7.485, 7.4844, 7.4834, 7.4824, 7.482, 7.4812, 7.4804, 7.4824, 7.482, 7.481, 7.48, 7.4792, 7.4782, 7.4799, 7.479, 7.4808, 7.4803, 7.4794, 7.4784, 7.4802, 7.4795, 7.4787, 7.4779, 7.4769, 7.4765, 7.4755, 7.4797, 7.4787, 7.4778, 7.4769, 7.4759, 7.4775, 7.4765, 7.4781, 7.4771, 7.4786, 7.4874, 7.4864, 7.4856, 7.4848, 7.4843, 7.4839, 7.4832, 7.4824, 7.4842, 7.4837, 7.4854, 7.4896, 7.4949, 7.4941, 7.4933, 7.4926, 7.4916, 7.4913, 7.4904, 7.4895, 7.4943, 7.4934, 7.4927, 7.4921, 7.4915, 7.4906, 7.49, 7.4896, 7.4891, 7.4885, 7.4881, 7.4872, 7.4864, 7.4862, 7.4855, 7.4875, 7.4867, 7.4858, 7.4852, 7.4848, 7.4845, 7.4837, 7.4828, 7.4822, 7.4815, 7.4808, 7.4811, 7.4803, 7.4777, 7.4775, 7.4791, 7.4784, 7.4775, 7.479, 7.4787, 7.4778, 7.4769, 7.4764, 7.4781, 7.4796, 7.4792, 7.4789, 7.478, 7.4776, 7.4767, 7.4759, 7.4776, 7.477, 7.4765, 7.4766, 7.4759, 7.4774, 7.4764, 7.4755, 7.477, 7.4761, 7.4753, 7.4746, 7.4737, 7.4728, 7.472, 7.4713, 7.4704, 7.4699, 7.469, 7.4682, 7.4699, 7.4692, 7.4683, 7.4674, 7.4666, 7.4659, 7.4655, 7.4673, 7.469, 7.4704, 7.4721, 7.4715, 7.4709, 7.4701, 7.4699, 7.4715, 7.4706, 7.4701, 7.4695, 7.4687, 7.4678, 7.4671, 7.4661, 7.4676, 7.4694, 7.4688, 7.4682, 7.4675, 7.4681, 7.4672, 7.4664, 7.4656, 7.4647, 7.4641, 7.4634, 7.4625, 7.4616, 7.4608, 7.464, 7.4681, 7.4721, 7.4715, 7.4707, 7.4744, 7.4734, 7.475, 7.4744, 7.476, 7.4751, 7.4745, 7.4737, 7.4754, 7.4751, 7.4765, 7.4758, 7.4748, 7.474, 7.4734, 7.4802, 7.4778, 7.4773, 7.4765, 7.4782, 7.478, 7.4772, 7.4792, 7.4783, 7.4777, 7.4768, 7.4759, 7.4751, 7.4746, 7.4737, 7.4729, 7.472, 7.4714, 7.4705, 7.4697, 7.4693, 7.4687, 7.4681, 7.4696, 7.4688, 7.4681, 7.4673, 7.4665, 7.4656, 7.4647, 7.464, 7.4631, 7.4646, 7.4638, 7.4633, 7.4628, 7.4622, 7.4617, 7.4608, 7.4605, 7.4598, 7.4614, 7.461, 7.4623, 7.4614, 7.4605, 7.4598, 7.4591, 7.4582, 7.4575, 7.4575, 7.457, 7.4562, 7.4577, 7.4569, 7.4565, 7.4556, 7.4551, 7.4547, 7.4539, 7.4537, 7.4528, 7.4521, 7.452, 7.4515, 7.4508, 7.4501, 7.4494, 7.4486, 7.4485, 7.4501, 7.4497, 7.4514, 7.4508, 7.4499, 7.4492, 7.4485, 7.4481, 7.4475, 7.4467, 7.4483, 7.4474, 7.4488, 7.4487, 7.4482, 7.4474, 7.4469, 7.4468, 7.4463, 7.4478, 7.4473, 7.4465, 7.4482, 7.4476, 7.4469, 7.4461, 7.4453, 7.4424, 7.4421, 7.4414, 7.4411, 7.4427, 7.4419, 7.4412, 7.4405, 7.4398, 7.4394, 7.4487, 7.448, 7.4475, 7.4491, 7.4507, 7.4504, 7.45, 7.4515, 7.451, 7.4501, 7.4515, 7.4507, 7.4588, 7.4581, 7.4594, 7.459, 7.4582, 7.4597, 7.4588, 7.4579, 7.4571, 7.4566, 7.4564, 7.456, 7.4556, 7.4548, 7.4546, 7.4538, 7.453, 7.4544, 7.4538, 7.4536, 7.4529, 7.4522, 7.4514, 7.4507, 7.4504, 7.4497, 7.449, 7.4483, 7.4513, 7.4572, 7.4593, 7.4586, 7.4584, 7.4559, 7.4577, 7.4569, 7.4575, 7.4567, 7.4599, 7.4594, 7.4611, 7.4606, 7.4598, 7.4572, 7.4544, 7.4536, 7.4528, 7.4521, 7.4517, 7.4511, 7.4513, 7.4519, 7.4512, 7.4528, 7.4523, 7.4548, 7.4567, 7.454, 7.4557, 7.4551, 7.4548, 7.4567, 7.4575, 7.4572, 7.4566, 7.4559, 7.4553, 7.4544, 7.4538, 7.453, 7.4545, 7.4541, 7.4554, 7.4531, 7.4522, 7.4536, 7.4527, 7.4523, 7.4499, 7.4497, 7.4514, 7.459, 7.4605, 7.4597, 7.4591, 7.4584, 7.4579, 7.4571, 7.4583, 7.4579, 7.4573, 7.4548, 7.4564, 7.4556, 7.4548, 7.454, 7.4536, 7.453, 7.4522, 7.4514, 7.4509, 7.4501, 7.4496, 7.4488, 7.4501, 7.4492, 7.4489, 7.4482, 7.4475, 7.4484, 7.4478, 7.447, 7.4466, 7.4479, 7.4471, 7.4464, 7.4457, 7.4496, 7.4489, 7.4467, 7.4462, 7.4457, 7.4494, 7.449, 7.4522, 7.454, 7.4616, 7.4607, 7.4642, 7.4637, 7.4616, 7.463, 7.4623, 7.4615, 7.4606, 7.458, 7.4594, 7.4606, 7.4604, 7.4601, 7.4596, 7.4595, 7.4588, 7.4603, 7.4619, 7.4611, 7.4603, 7.4599, 7.4591, 7.4588, 7.4583, 7.4577, 7.459, 7.4603, 7.4595, 7.4588, 7.4581, 7.4575, 7.4569, 7.4564, 7.4555, 7.4552, 7.4551, 7.4545, 7.454, 7.4535, 7.4533, 7.4507, 7.4503, 7.4499, 7.4492, 7.4507, 7.4501, 7.4497, 7.4492, 7.447, 7.4462, 7.4456, 7.4451, 7.445, 7.4448, 7.444, 7.4432, 7.4425, 7.4418, 7.4414, 7.4411, 7.4407, 7.4401, 7.4393, 7.4409, 7.4401, 7.4394, 7.4389, 7.4382, 7.4376, 7.4411, 7.4406, 7.4405, 7.4397, 7.4389, 7.4382, 7.4374, 7.4386, 7.4378, 7.4371, 7.4363, 7.4357, 7.435, 7.4372, 7.4356, 7.4348, 7.4344, 7.4358, 7.4354, 7.4367, 7.4361, 7.4354, 7.4354, 7.4347, 7.4361, 7.4377, 7.437, 7.4365, 7.4358, 7.4353, 7.4348, 7.4345, 7.4342, 7.4335, 7.4332, 7.4346, 7.4341, 7.4335, 7.433, 7.4326, 7.432, 7.4335, 7.4328, 7.432, 7.4313, 7.4327, 7.432, 7.4334, 7.4327, 7.432, 7.4316, 7.4312, 7.431, 7.4303, 7.4303, 7.43, 7.4292, 7.4285, 7.4279, 7.4273, 7.4266, 7.428, 7.4292, 7.4284, 7.428, 7.4294, 7.4308, 7.4303, 7.4296, 7.4289, 7.4282, 7.4274, 7.4287, 7.4298, 7.4292, 7.4287, 7.4281, 7.4278, 7.434, 7.4333, 7.4327, 7.432, 7.4315, 7.4308, 7.4323, 7.4316, 7.4308, 7.432, 7.4313, 7.4308, 7.43, 7.4295, 7.4287, 7.43, 7.4293, 7.4286, 7.4278, 7.427, 7.4283, 7.4276, 7.427, 7.4264, 7.428, 7.4273, 7.4286, 7.4351, 7.4345, 7.4337, 7.4331, 7.4345, 7.4357, 7.435, 7.4366, 7.436, 7.4353, 7.4352, 7.4344, 7.4356, 7.4349, 7.4347, 7.4343, 7.4336, 7.4331, 7.4346, 7.4339, 7.4351, 7.4344, 7.4338, 7.433, 7.4324, 7.4318, 7.4311, 7.4304, 7.4317, 7.431, 7.4303, 7.4298, 7.4292, 7.4286, 7.4284, 7.4276, 7.4273, 7.4306, 7.4299, 7.4311, 7.4305, 7.4283, 7.4296, 7.4293, 7.429, 7.4285, 7.428, 7.4291, 7.4285, 7.4262, 7.4238, 7.4235, 7.423, 7.4224, 7.4218, 7.4213, 7.4205, 7.4223, 7.4216, 7.4211, 7.4206, 7.4221, 7.4216, 7.4214, 7.421, 7.4206, 7.422, 7.4234, 7.4228, 7.4241, 7.4236, 7.4251, 7.4243, 7.4239, 7.4232, 7.4245, 7.4239, 7.4251, 7.4245, 7.424, 7.4262, 7.4275, 7.4287, 7.4299, 7.4293, 7.4285, 7.4281, 7.4276, 7.4277, 7.4269, 7.4263, 7.4257, 7.425, 7.4298, 7.4294, 7.4288, 7.4282, 7.4276, 7.4271, 7.4264, 7.4257, 7.4252, 7.4265, 7.426, 7.4256, 7.4251, 7.4244, 7.4239, 7.4241, 7.4238, 7.4233, 7.4227, 7.4222, 7.4215, 7.421, 7.4207, 7.4202, 7.4196, 7.419, 7.4185, 7.4179, 7.4175, 7.4188, 7.4181, 7.4177, 7.4172, 7.4184, 7.4177, 7.4169, 7.4164, 7.4157, 7.4169, 7.4163, 7.4193, 7.419, 7.4183, 7.4176, 7.4172, 7.4169, 7.4164, 7.4168, 7.4164, 7.4175, 7.4186, 7.418, 7.4176, 7.417, 7.4166, 7.4142, 7.4121, 7.4098, 7.4094, 7.4108, 7.4125, 7.4155, 7.4167, 7.4163, 7.4157, 7.417, 7.4163, 7.4157, 7.415, 7.4145, 7.4157, 7.4155, 7.4148, 7.4142, 7.4136, 7.4133, 7.4129, 7.414, 7.4139, 7.4132, 7.4127, 7.4125, 7.4123, 7.4123, 7.41, 7.4095, 7.4094, 7.4091, 7.4107, 7.4121, 7.4115, 7.411, 7.4106, 7.4103, 7.4132, 7.4134, 7.4132, 7.4126, 7.412, 7.4121, 7.4115, 7.4113, 7.4107, 7.4109, 7.4103, 7.4109, 7.4107, 7.41, 7.4082, 7.4081, 7.4074, 7.4072, 7.4065, 7.406, 7.4058, 7.4053, 7.405, 7.4062, 7.4055, 7.4048, 7.4096, 7.4109, 7.4102, 7.4117, 7.4113, 7.4106, 7.4103, 7.4096, 7.4091, 7.4085, 7.4081, 7.4077, 7.4091, 7.4084, 7.4098, 7.4097, 7.4098, 7.4112, 7.4125, 7.4119, 7.4114, 7.4126, 7.412, 7.4117, 7.4113, 7.4106, 7.41, 7.4097, 7.4091, 7.4103, 7.4097, 7.4092, 7.4106, 7.4101, 7.4118, 7.4111, 7.4106, 7.4107, 7.4102, 7.4101, 7.4096, 7.4091, 7.4103, 7.4098, 7.4094, 7.409, 7.4085, 7.4078, 7.4088, 7.4098, 7.4093, 7.4086, 7.4144, 7.4138, 7.4133, 7.4129, 7.413, 7.4143, 7.4136, 7.4148, 7.4128, 7.4123, 7.4118, 7.4111, 7.4107, 7.4101, 7.4098, 7.4112, 7.4108, 7.4102, 7.4098, 7.4109, 7.4102, 7.4101, 7.4114, 7.4125, 7.4118, 7.4112, 7.4107, 7.41, 7.4113, 7.4123, 7.4118, 7.4129, 7.4124, 7.4117, 7.4128, 7.4125, 7.4118, 7.4098, 7.4091, 7.4103, 7.4096, 7.4089, 7.4083, 7.4078, 7.4074, 7.4071, 7.4068, 7.4063, 7.4059, 7.4057, 7.405, 7.4044, 7.4043, 7.4036, 7.4031, 7.4025, 7.4018, 7.4012, 7.4023, 7.4016, 7.4028, 7.4025, 7.4022, 7.4016, 7.4026, 7.4022, 7.4016, 7.401, 7.4007, 7.4003, 7.4015, 7.401, 7.4007, 7.4002, 7.3995, 7.3988, 7.3982, 7.3993, 7.399, 7.4001, 7.3999, 7.3992, 7.4004, 7.3998, 7.3999, 7.3995, 7.3989, 7.3988, 7.3983, 7.3978, 7.3971, 7.3966, 7.396, 7.3953, 7.395, 7.3947, 7.3947, 7.3944, 7.3938, 7.3934, 7.3931, 7.391, 7.3906, 7.3901, 7.3916, 7.3917, 7.3915, 7.3913, 7.3908, 7.3906, 7.3901, 7.3897, 7.3895, 7.3909, 7.3904, 7.3898, 7.3893, 7.3888, 7.3883, 7.3897, 7.3876, 7.3872, 7.387, 7.3884, 7.3895, 7.3892, 7.3885, 7.3881, 7.3878, 7.3892, 7.3886, 7.3881, 7.3874, 7.3868, 7.3862, 7.3861, 7.3855, 7.3855, 7.3865, 7.386, 7.3859, 7.3856, 7.387, 7.3865, 7.3862, 7.3843, 7.3839, 7.3818, 7.3829, 7.3824, 7.3818, 7.3829, 7.3827, 7.3827, 7.3843, 7.3826, 7.3821, 7.3815, 7.3808, 7.3788, 7.3782, 7.3793, 7.3774, 7.3785, 7.3778, 7.3772, 7.3784, 7.3781, 7.3775, 7.3769, 7.3782, 7.3776, 7.3772, 7.3768, 7.3762, 7.3773, 7.3768, 7.3767, 7.3761, 7.3757, 7.3751, 7.3747, 7.3758, 7.3752, 7.3746, 7.3743, 7.3741, 7.3734, 7.373, 7.3725, 7.3722, 7.3702, 7.3696, 7.3691, 7.369, 7.3686, 7.368, 7.3675, 7.3669, 7.3664, 7.3676, 7.3655, 7.365, 7.3646, 7.3642, 7.3638, 7.3634, 7.3649, 7.3643, 7.3637, 7.3633, 7.3627, 7.3621, 7.3616, 7.3611, 7.3606, 7.36, 7.3582, 7.3562, 7.3541, 7.3535, 7.3545, 7.3545, 7.3541, 7.3521, 7.3503, 7.3501, 7.3499, 7.3492, 7.3504, 7.3498, 7.3492, 7.3488, 7.3483, 7.3494, 7.3505, 7.3499, 7.3493, 7.3493, 7.3503, 7.3498, 7.3504, 7.3517, 7.3514, 7.3509, 7.3519, 7.3516, 7.3496, 7.3493, 7.3488, 7.3482, 7.3476, 7.3489, 7.3508, 7.3538, 7.3554, 7.3589, 7.359, 7.3587, 7.3581, 7.3577, 7.3575, 7.3587, 7.3582, 7.3576, 7.3571, 7.357, 7.3568, 7.3564, 7.3574, 7.3569, 7.3563, 7.3557, 7.3551, 7.3545, 7.3539, 7.3533, 7.3528, 7.3539, 7.3549, 7.3543, 7.3537, 7.3547, 7.3543, 7.3538, 7.3532, 7.3543, 7.3538, 7.3534, 7.3528, 7.3522, 7.3534, 7.3547, 7.3542, 7.354, 7.3535, 7.3532, 7.3527, 7.3523, 7.3534, 7.353, 7.3524, 7.3535, 7.3529, 7.3524, 7.3524, 7.3519, 7.3515, 7.3512, 7.3508, 7.3503, 7.3498, 7.3509, 7.3503, 7.35, 7.3497, 7.3497, 7.3494, 7.3506, 7.3506, 7.3502, 7.3498, 7.3496, 7.3491, 7.3503, 7.3498, 7.3509, 7.3505, 7.3507, 7.3504, 7.3499, 7.3497, 7.3552, 7.3547, 7.356, 7.3554, 7.3565, 7.3559, 7.3571, 7.3551, 7.3532, 7.3514, 7.3511, 7.3506, 7.35, 7.3509, 7.3503, 7.3498, 7.3494, 7.3488, 7.3498, 7.3492, 7.3487, 7.3498, 7.3492, 7.3489, 7.3486, 7.3482, 7.3491, 7.3513, 7.3509, 7.3508, 7.3503, 7.3514, 7.351, 7.352, 7.3518, 7.3528, 7.3525, 7.3519, 7.3513, 7.3511, 7.3505, 7.35, 7.3494, 7.349, 7.3487, 7.3497, 7.3491, 7.3486, 7.3497, 7.3495, 7.3491, 7.3505, 7.3499, 7.3494, 7.3489, 7.3486, 7.3481, 7.3475, 7.3471, 7.3466, 7.3476, 7.3487, 7.3499, 7.3493, 7.349, 7.3502, 7.3513, 7.3526, 7.3508, 7.3503, 7.3498, 7.351, 7.3505, 7.3499, 7.3496, 7.3507, 7.3502, 7.3498, 7.3492, 7.3493, 7.3489, 7.349, 7.3485, 7.3496, 7.3492, 7.3488, 7.3498, 7.3493, 7.3488, 7.3484, 7.348, 7.3478, 7.3473, 7.3482, 7.351, 7.3521, 7.3516, 7.3514, 7.3543, 7.354, 7.3536, 7.3531, 7.3529, 7.354, 7.3537, 7.3531, 7.3544, 7.3541, 7.3537, 7.3532, 7.3515, 7.3547, 7.3548, 7.3549, 7.3547, 7.3544, 7.3541, 7.3537, 7.3532, 7.3531, 7.3543, 7.3555, 7.3551, 7.3547, 7.3542, 7.3565, 7.3577, 7.3572, 7.3568, 7.3565, 7.3578, 7.3588, 7.3597, 7.3595, 7.3577, 7.359, 7.3585, 7.3584, 7.3596, 7.3606, 7.3602, 7.3597, 7.3593, 7.359, 7.3585, 7.358, 7.3576, 7.3572, 7.3567, 7.3566, 7.3576, 7.357, 7.3567, 7.3578, 7.3588, 7.3618, 7.363, 7.3625, 7.3636, 7.3631, 7.3625, 7.3624, 7.3637, 7.3632, 7.3643, 7.3656, 7.3667, 7.3677, 7.3672, 7.3682, 7.3677, 7.3676, 7.3671, 7.3712, 7.3693, 7.3688, 7.3697, 7.3692, 7.3673, 7.3655, 7.3665, 7.366, 7.3655, 7.365, 7.3693, 7.3724, 7.3734, 7.3745, 7.3744, 7.3729, 7.3729, 7.3726, 7.3721, 7.3716, 7.3713, 7.3708, 7.3718, 7.3701, 7.3712, 7.3707, 7.3702, 7.3699, 7.3695, 7.3691, 7.3711, 7.3706, 7.3701, 7.3701, 7.3698, 7.3693, 7.369, 7.3699, 7.3694, 7.3706, 7.3702, 7.37, 7.3712, 7.3721, 7.373, 7.3724, 7.372, 7.3715, 7.371, 7.3706, 7.3705, 7.3699, 7.3699, 7.3709, 7.3703, 7.3714, 7.3697, 7.3693, 7.3689, 7.3694, 7.3691, 7.3685, 7.3681, 7.3675, 7.367, 7.3665, 7.3675, 7.367, 7.3665, 7.3675, 7.3672, 7.3682, 7.3678, 7.3673, 7.3668, 7.3666, 7.3676, 7.3688, 7.3684, 7.3679, 7.3675, 7.367, 7.3652, 7.3671, 7.3668, 7.3665, 7.366, 7.3655, 7.3675, 7.3672, 7.3675, 7.3671, 7.3681, 7.3679, 7.3698, 7.3693, 7.3688, 7.3683, 7.3693, 7.3688, 7.3683, 7.368, 7.3675, 7.3671, 7.3666, 7.3662, 7.3694, 7.372, 7.3706, 7.3722, 7.3717, 7.3724, 7.3719, 7.3714, 7.3696, 7.3693, 7.3689, 7.3699, 7.3684, 7.368, 7.3674, 7.3668, 7.3663, 7.3669, 7.3667, 7.3664, 7.369, 7.3686, 7.3695, 7.369, 7.3685, 7.3682, 7.3664, 7.3659, 7.3656, 7.3654, 7.3648, 7.3645, 7.3639, 7.3635, 7.3645, 7.364, 7.3635, 7.3633, 7.3629, 7.3623, 7.3618, 7.3615, 7.361, 7.3607, 7.3603, 7.3601, 7.3641, 7.3654, 7.365, 7.3661, 7.3672, 7.3667, 7.3664, 7.3674, 7.367, 7.3679, 7.3691, 7.3687, 7.3684, 7.3679, 7.3674, 7.3669, 7.3668, 7.365, 7.3699, 7.3694, 7.3689, 7.3685, 7.3696, 7.3691, 7.3685, 7.368, 7.3675, 7.3686, 7.3682, 7.368, 7.3674, 7.367, 7.3665, 7.3661, 7.366, 7.3656, 7.3667, 7.3663, 7.3658, 7.366, 7.3672, 7.3668, 7.3663, 7.3659, 7.3654, 7.3664, 7.3659, 7.3668, 7.3664, 7.3661, 7.3671, 7.3681, 7.3675, 7.3673, 7.3669, 7.3664, 7.3692, 7.3731, 7.3739, 7.3733, 7.3742, 7.3738, 7.3733, 7.3728, 7.3724, 7.3718, 7.3713, 7.3709, 7.3706, 7.3703, 7.37, 7.3696, 7.3694, 7.3692, 7.3686, 7.3697, 7.3707, 7.3704, 7.3701, 7.3696, 7.3706, 7.3701, 7.3698, 7.3692, 7.3689, 7.3684, 7.3682, 7.3678, 7.3673, 7.3669, 7.367, 7.3669, 7.3682, 7.3694, 7.3691, 7.3689, 7.3701, 7.3698, 7.3705, 7.3702, 7.3697, 7.3695, 7.3691, 7.3688, 7.3698, 7.3685, 7.3699, 7.3694, 7.3705, 7.3703, 7.3702, 7.3696, 7.3691, 7.3688, 7.3697, 7.3718, 7.3715, 7.371, 7.3708, 7.3719, 7.3703, 7.37, 7.3713, 7.3711, 7.371, 7.3705, 7.3705, 7.3702, 7.3698, 7.3694, 7.3689, 7.3686, 7.3683, 7.368, 7.3675, 7.3675, 7.3684, 7.368, 7.3682, 7.3689, 7.3698, 7.3708, 7.3705, 7.3699, 7.3695, 7.3704, 7.3702, 7.3697, 7.3693, 7.369, 7.3687, 7.3695, 7.3681, 7.3683, 7.3686, 7.3681, 7.3714, 7.3733, 7.3733, 7.3744, 7.3741, 7.3736, 7.3737, 7.3735, 7.3733, 7.3728, 7.3727, 7.3728, 7.3725, 7.3721, 7.3722, 7.3762, 7.3759, 7.3755, 7.375, 7.3745, 7.3755, 7.3752, 7.375, 7.3745, 7.3744, 7.3754, 7.375, 7.3748, 7.3746, 7.3757, 7.3753, 7.3748, 7.3744, 7.3739, 7.3735, 7.3734, 7.373, 7.3725, 7.372, 7.3729, 7.3726, 7.3723, 7.3721, 7.3716, 7.3711, 7.3722, 7.3718, 7.3714, 7.3708, 7.3703, 7.3698, 7.3707, 7.3701, 7.3696, 7.3691, 7.37, 7.3724, 7.3718, 7.3736, 7.3731, 7.373, 7.3727, 7.3724, 7.372, 7.3717, 7.3728, 7.3725, 7.3725, 7.372, 7.3706, 7.3702, 7.3698, 7.3693, 7.369, 7.3687, 7.3683, 7.3669, 7.3666, 7.3676, 7.3671, 7.3666, 7.3662, 7.366, 7.3668, 7.3663, 7.3672, 7.3667, 7.3677, 7.3672, 7.3669, 7.3664, 7.366, 7.3671, 7.3667, 7.3665, 7.3661, 7.3645, 7.3641, 7.3637, 7.3633, 7.3627, 7.3637, 7.3633, 7.3628, 7.3639, 7.3635, 7.3633, 7.3628, 7.3626, 7.3623, 7.3633, 7.363, 7.3625, 7.3621, 7.3619, 7.3628, 7.3625, 7.362, 7.3616, 7.3611, 7.3608, 7.3604, 7.3615, 7.3611, 7.3623, 7.3619, 7.3617, 7.3612, 7.3623, 7.3633, 7.3645, 7.364, 7.3636, 7.3632, 7.363, 7.3628, 7.3626, 7.3624, 7.362, 7.3629, 7.3627, 7.3622, 7.362, 7.3615, 7.3624, 7.3619, 7.3618, 7.3613, 7.3608, 7.3604, 7.3603, 7.3618, 7.3613, 7.3636, 7.3659, 7.3657, 7.3666, 7.3661, 7.3657, 7.3657, 7.3654, 7.3651, 7.3677, 7.3674, 7.367, 7.3666, 7.3676, 7.3684, 7.3702, 7.3685, 7.369, 7.3688, 7.3707, 7.3707, 7.373, 7.3726, 7.3721, 7.3716, 7.3712, 7.3711, 7.3706, 7.3717, 7.3726, 7.3723, 7.3731, 7.3728, 7.3724, 7.3733, 7.3743, 7.3742, 7.3738, 7.3747, 7.3744, 7.3743, 7.374, 7.3749, 7.3744, 7.3739, 7.3735, 7.3731, 7.3726, 7.3727, 7.3722, 7.3733, 7.3728, 7.3724, 7.3721, 7.3723, 7.3719, 7.3728, 7.3723, 7.3732, 7.3742, 7.3752, 7.3749, 7.3758, 7.3754, 7.3754, 7.3749, 7.3745, 7.3743, 7.374, 7.3735, 7.3718, 7.3713, 7.371, 7.3706, 7.3703, 7.3711, 7.3719, 7.3702, 7.3686, 7.3681, 7.369, 7.3686, 7.3692, 7.369, 7.3685, 7.3681, 7.3677, 7.3675, 7.3672, 7.3656, 7.3651, 7.3646, 7.3641, 7.3649, 7.3645, 7.3641, 7.3637, 7.3632, 7.3629, 7.3624, 7.3622, 7.3619, 7.3616, 7.3612, 7.361, 7.3605, 7.36, 7.3595, 7.3604, 7.3601, 7.3596, 7.3591, 7.3589, 7.3584, 7.3583, 7.3581, 7.3578, 7.3576, 7.3573, 7.3591, 7.3586, 7.3573, 7.3571, 7.357, 7.3569, 7.3568, 7.3565, 7.3562, 7.356, 7.3556, 7.3565, 7.3563, 7.3559, 7.3554, 7.355, 7.3547, 7.3544, 7.354, 7.3536, 7.3531, 7.3527, 7.3524, 7.3521, 7.353, 7.3528, 7.3525, 7.352, 7.3518, 7.3516, 7.3514, 7.3514, 7.351, 7.3506, 7.3505, 7.3505, 7.3503, 7.3499, 7.3495, 7.3494, 7.3498, 7.3493, 7.3503, 7.3501, 7.3509, 7.3504, 7.3513, 7.3522, 7.3531, 7.3526, 7.3525, 7.352, 7.3529, 7.3526, 7.3522, 7.3518, 7.3514, 7.3524, 7.3522, 7.3519, 7.3528, 7.3524, 7.3519, 7.354, 7.3537, 7.3551, 7.3547, 7.3543, 7.3539, 7.3535, 7.3531, 7.354, 7.3544, 7.3541, 7.3565, 7.356, 7.3558, 7.3557, 7.3554, 7.355, 7.3547, 7.3544, 7.3539, 7.3536, 7.3532, 7.3528, 7.3524, 7.3521, 7.3519, 7.3531, 7.3529, 7.3539, 7.3523, 7.352, 7.3516, 7.3526, 7.3538, 7.3535, 7.3531, 7.353, 7.3515, 7.3511, 7.3506, 7.3503, 7.3501, 7.35, 7.3496, 7.3497, 7.3495, 7.3493, 7.3502, 7.3497, 7.3493, 7.3492, 7.3488, 7.3498, 7.3493, 7.3489, 7.3487, 7.3485, 7.3487, 7.3482, 7.348, 7.3476, 7.3486, 7.3481, 7.349, 7.349, 7.3499, 7.3494, 7.3491, 7.3499, 7.3495, 7.3492, 7.3487, 7.3482, 7.349, 7.3497, 7.3494, 7.3491, 7.3486, 7.3484, 7.3479, 7.3487, 7.3482, 7.348, 7.3475, 7.3471, 7.3468, 7.3466, 7.3462, 7.3459, 7.3455, 7.3451, 7.3459, 7.3455, 7.3464, 7.346, 7.346, 7.3456, 7.344, 7.3449, 7.3447, 7.3443, 7.344, 7.3441, 7.344, 7.3437, 7.3434, 7.3432, 7.3441, 7.3438, 7.3448, 7.3444, 7.3451, 7.345, 7.3441, 7.3429, 7.3426, 7.3423, 7.342, 7.3419, 7.3415, 7.3425, 7.3421, 7.3421, 7.3407, 7.3404, 7.3402, 7.3412, 7.3411, 7.3425, 7.343, 7.3425, 7.3422, 7.342, 7.3415, 7.3424, 7.3433, 7.343, 7.3428, 7.3437, 7.3447, 7.3443, 7.3453, 7.3467, 7.3463, 7.3459, 7.3455, 7.3439, 7.3445, 7.3441, 7.3437, 7.3433, 7.343, 7.3425, 7.3421, 7.3418, 7.3426, 7.3421, 7.3416, 7.345, 7.3446, 7.3441, 7.3441, 7.3438, 7.3433, 7.3428, 7.3423, 7.3408, 7.3406, 7.3402, 7.3399, 7.3398, 7.3397, 7.3395, 7.3392, 7.3378, 7.3364, 7.335, 7.3348, 7.3344, 7.334, 7.3339, 7.3336, 7.3333, 7.3345, 7.3336, 7.3336, 7.3346, 7.3343, 7.3341, 7.3338, 7.3337, 7.336, 7.3356, 7.3365, 7.3363, 7.3348, 7.3346, 7.3342, 7.3338, 7.3352, 7.334, 7.3338, 7.3348, 7.3345, 7.3356, 7.3352, 7.3359, 7.3368, 7.3376, 7.3376, 7.3375, 7.3386, 7.3382, 7.3383, 7.3379, 7.3387, 7.3382, 7.3368, 7.3364, 7.3373, 7.3371, 7.3368, 7.3363, 7.3362, 7.3377, 7.3362, 7.3385, 7.3429, 7.3458, 7.3467, 7.3465, 7.346, 7.3457, 7.3465, 7.3464, 7.346, 7.3458, 7.3444, 7.3441, 7.3466, 7.3488, 7.3542, 7.3539, 7.3536, 7.3556, 7.3553, 7.3562, 7.3559, 7.3556, 7.3552, 7.3549, 7.3545, 7.3541, 7.3537, 7.3533, 7.3541, 7.3548, 7.3546, 7.3542, 7.3539, 7.3537, 7.3538, 7.3535, 7.3558, 7.3555, 7.3565, 7.3553, 7.3549, 7.3567, 7.3566, 7.3565, 7.3574, 7.3573, 7.3559, 7.3556, 7.3552, 7.3547, 7.3555, 7.3543, 7.3539, 7.3534, 7.3531, 7.3527, 7.3524, 7.3533, 7.353, 7.3526, 7.3524, 7.352, 7.3518, 7.3527, 7.3523, 7.3531, 7.353, 7.3528, 7.3525, 7.3521, 7.3517, 7.3514, 7.3511, 7.351, 7.3506, 7.3502, 7.3498, 7.3494, 7.349, 7.3486, 7.3484, 7.348, 7.3467, 7.3465, 7.3465, 7.3461, 7.3457, 7.3453, 7.345, 7.3449, 7.3435, 7.3432, 7.3446, 7.3442, 7.3441, 7.3428, 7.3414, 7.3401, 7.3399, 7.3384, 7.338, 7.3378, 7.3374, 7.342, 7.3416, 7.3426, 7.3424, 7.342, 7.3416, 7.3412, 7.3421, 7.3421, 7.3408, 7.3407, 7.3403, 7.3412, 7.3407, 7.3404, 7.34, 7.3396, 7.3393, 7.3388, 7.3396, 7.3392, 7.3389, 7.3385, 7.3396, 7.3392, 7.34, 7.34, 7.3409, 7.3405, 7.3407, 7.3406, 7.3416, 7.3414, 7.3423, 7.3419, 7.3417, 7.3415, 7.3413, 7.3421, 7.3418, 7.3405, 7.3391, 7.3389, 7.3385, 7.3394, 7.3392, 7.3389, 7.3386, 7.3383, 7.3382, 7.3379, 7.3375, 7.3372, 7.3379, 7.3386, 7.3394, 7.3392, 7.3409, 7.3406, 7.3414, 7.3421, 7.3417, 7.3413, 7.3411, 7.3416, 7.3424, 7.3421, 7.3417, 7.3413, 7.3412, 7.342, 7.3419, 7.3417, 7.3426, 7.3422, 7.3418, 7.3422, 7.343, 7.344, 7.344, 7.3436, 7.3432, 7.3428, 7.3428, 7.3427, 7.3458, 7.3457, 7.3455, 7.3475, 7.3484, 7.348, 7.348, 7.3476, 7.3486, 7.3483, 7.3479, 7.3476, 7.3474, 7.3473, 7.3481, 7.3478, 7.3481, 7.3478, 7.3474, 7.347, 7.3481, 7.3481, 7.3477, 7.3473, 7.3481, 7.3477, 7.3475, 7.3472, 7.347, 7.3467, 7.3463, 7.3459, 7.3455, 7.3462, 7.3457, 7.3453, 7.3449, 7.3446, 7.3443, 7.344, 7.3436, 7.3434, 7.3442, 7.3441, 7.3437, 7.3434, 7.3441, 7.3438, 7.3434, 7.3431, 7.3427, 7.3435, 7.3432, 7.3428, 7.3436, 7.3432, 7.3429, 7.3437, 7.3434, 7.3431, 7.3427, 7.3423, 7.3421, 7.3419, 7.3416, 7.3412, 7.3407, 7.3404, 7.34, 7.3397, 7.3405, 7.3401, 7.3409, 7.3405, 7.3401, 7.3398, 7.3397, 7.3405, 7.3401, 7.3398, 7.3406, 7.3404, 7.34, 7.3408, 7.3407, 7.3414, 7.3411, 7.3408, 7.3393, 7.339, 7.3387, 7.3385, 7.3384, 7.3392, 7.34, 7.3396, 7.3392, 7.34, 7.34, 7.3398, 7.3395, 7.3392, 7.3388, 7.3385, 7.3383, 7.3381, 7.3389, 7.3387, 7.3383, 7.3402, 7.3391, 7.34, 7.3396, 7.3393, 7.3403, 7.3401, 7.3398, 7.3396, 7.3393, 7.3389, 7.3388, 7.3389, 7.3386, 7.3383, 7.3379, 7.3376, 7.3372, 7.3368, 7.3365, 7.3363, 7.336, 7.3358, 7.3355, 7.3353, 7.3362, 7.337, 7.3368, 7.3364, 7.336, 7.3367, 7.3375, 7.3374, 7.3373, 7.3369, 7.3365, 7.3362, 7.3359, 7.3356, 7.3355, 7.3362, 7.336, 7.3356, 7.3352, 7.3349, 7.3347, 7.3345, 7.3341, 7.334, 7.3336, 7.3333, 7.3329, 7.3325, 7.3343, 7.334, 7.3342, 7.3339, 7.3328, 7.3324, 7.3321, 7.3317, 7.3336, 7.3336, 7.335, 7.3346, 7.3342, 7.3351, 7.3354, 7.335, 7.3347, 7.3343, 7.3351, 7.336, 7.3356, 7.3354, 7.3362, 7.3358, 7.3359, 7.3356, 7.3353, 7.3339, 7.334, 7.3348, 7.3357, 7.3355, 7.3354, 7.3353, 7.3351, 7.335, 7.3346, 7.3344, 7.3341, 7.3337, 7.3335, 7.3332, 7.3332, 7.333, 7.3327, 7.3336, 7.3334, 7.333, 7.3327, 7.3327, 7.3347, 7.3343, 7.3341, 7.3339, 7.3385, 7.3384, 7.3382, 7.3379, 7.3376, 7.3374, 7.3372, 7.3368, 7.3365, 7.3364, 7.3372, 7.3368, 7.3364, 7.3372, 7.3368, 7.3366, 7.3365, 7.3353, 7.3351, 7.3414, 7.3422, 7.3418, 7.3422, 7.3419, 7.3415, 7.3413, 7.3411, 7.3417, 7.3425, 7.3421, 7.3417, 7.3415, 7.3413, 7.3411, 7.3408, 7.3416, 7.3424, 7.3431, 7.3419, 7.3415, 7.3412, 7.3409, 7.3406, 7.3413, 7.341, 7.3408, 7.3408, 7.3416, 7.3415, 7.3412, 7.3408, 7.3406, 7.3407, 7.3408, 7.3405, 7.3402, 7.3398, 7.3394, 7.3392, 7.34, 7.34, 7.3399, 7.3396, 7.3395, 7.3391, 7.3388, 7.3384, 7.338, 7.3377, 7.3373, 7.3371, 7.3379, 7.3376, 7.3375, 7.3373, 7.3381, 7.3379, 7.3375, 7.3382, 7.3401, 7.3397, 7.3393, 7.3389, 7.3398, 7.3396, 7.3392, 7.339, 7.3387, 7.3384, 7.338, 7.3388, 7.3385, 7.3384, 7.3382, 7.339, 7.3397, 7.3394, 7.3393, 7.3391, 7.3387, 7.3385, 7.3383, 7.3382, 7.339, 7.3387, 7.3387, 7.3383, 7.3379, 7.3439, 7.3436, 7.3432, 7.343, 7.3426, 7.3431, 7.3429, 7.3426, 7.3423, 7.343, 7.3427, 7.3433, 7.343, 7.343, 7.3437, 7.3433, 7.3429, 7.3425, 7.3421, 7.3417, 7.3413, 7.341, 7.3407, 7.3405, 7.3413, 7.3411, 7.3408, 7.3415, 7.3415, 7.3412, 7.3409, 7.3409, 7.3407, 7.3403, 7.339, 7.3386, 7.3393, 7.339, 7.3386, 7.3384, 7.338, 7.3388, 7.3395, 7.3425, 7.3433, 7.344, 7.3437, 7.3445, 7.3442, 7.345, 7.3457, 7.3465, 7.3462, 7.3458, 7.3466, 7.3464, 7.3461, 7.3459, 7.3455, 7.3485, 7.3481, 7.349, 7.3487, 7.3484, 7.3483, 7.348, 7.3487, 7.3484, 7.3493, 7.3491, 7.3489, 7.3488, 7.3485, 7.3481, 7.3479, 7.3478, 7.3486, 7.3485, 7.3489, 7.3489, 7.3489, 7.3488, 7.3508, 7.3504, 7.35, 7.3498, 7.3495, 7.3493, 7.3502, 7.3499, 7.3508, 7.3507, 7.3504, 7.35, 7.3497, 7.3496, 7.3498, 7.3497, 7.3495, 7.3492, 7.3499, 7.35, 7.3498, 7.3494, 7.3502, 7.3501, 7.3498, 7.3495, 7.3492, 7.3489, 7.3486, 7.3482, 7.3483, 7.349, 7.3487, 7.3495, 7.3494, 7.349, 7.3489, 7.3485, 7.3482, 7.3478, 7.3497, 7.3497, 7.3493, 7.3491, 7.3487, 7.3494, 7.3501, 7.349, 7.3478, 7.3485, 7.3481, 7.3477, 7.3473, 7.3469, 7.3466, 7.3473, 7.3469, 7.3466, 7.3474, 7.3471, 7.3517, 7.3513, 7.3509, 7.3505, 7.3501, 7.3498, 7.3524, 7.3523, 7.3519, 7.3515, 7.3511, 7.3507, 7.3505, 7.3501, 7.3497, 7.3485, 7.3481, 7.3477, 7.3473, 7.347, 7.3476, 7.3473, 7.349, 7.3487, 7.3483, 7.3481, 7.3498, 7.3495, 7.3493, 7.3494, 7.349, 7.3489, 7.3487, 7.3495, 7.3498, 7.3494, 7.349, 7.348, 7.3478, 7.3475, 7.3473, 7.3461, 7.347, 7.3467, 7.3473, 7.3469, 7.3467, 7.3464, 7.3471, 7.3467, 7.3464, 7.3462, 7.347, 7.3466, 7.3472, 7.3469, 7.3486, 7.3493, 7.349, 7.3508, 7.3505, 7.3502, 7.3499, 7.3497, 7.3512, 7.3508, 7.3505, 7.3527, 7.3523, 7.352, 7.3507, 7.3494, 7.349, 7.3486, 7.3482, 7.3489, 7.3497, 7.3526, 7.3524, 7.3538, 7.3536, 7.3543, 7.354, 7.3537, 7.3534, 7.3521, 7.3518, 7.3517, 7.3514, 7.3513, 7.3513, 7.351, 7.351, 7.3506, 7.3503, 7.351, 7.3508, 7.3505, 7.3503, 7.3501, 7.3497, 7.3485, 7.3482, 7.3479, 7.3477, 7.3476, 7.3473, 7.3471, 7.3468, 7.3465, 7.3462, 7.346, 7.3467, 7.3465, 7.3463, 7.346, 7.3469, 7.3467, 7.3464, 7.3461, 7.3458, 7.3455, 7.3452, 7.3449, 7.3446, 7.3443, 7.3449, 7.3446, 7.3464, 7.3461, 7.3471, 7.3468, 7.3466, 7.3464, 7.3461, 7.3468, 7.3475, 7.3471, 7.3469, 7.3465, 7.3471, 7.3468, 7.3475, 7.3471, 7.3468, 7.3465, 7.3463, 7.3461, 7.3458, 7.3465, 7.3462, 7.3459, 7.3456, 7.3454, 7.345, 7.3446, 7.3442, 7.3439, 7.3435, 7.3441, 7.3437, 7.3433, 7.343, 7.3427, 7.3423, 7.3419, 7.3416, 7.3412, 7.341, 7.3408, 7.3404, 7.3401, 7.3408, 7.3405, 7.3404, 7.34, 7.3397, 7.3394, 7.3393, 7.339, 7.3389, 7.3386, 7.3385, 7.3381, 7.3378, 7.3374, 7.337, 7.3367, 7.3364, 7.336, 7.3357, 7.3353, 7.3349, 7.3358, 7.3354, 7.3351, 7.3339, 7.3337, 7.3334, 7.3342, 7.3339, 7.3335, 7.3342, 7.334, 7.3338, 7.3335, 7.3323, 7.3329, 7.3326, 7.3322, 7.3329, 7.3328, 7.3326, 7.3322, 7.3319, 7.3316, 7.3313, 7.332, 7.3312, 7.3308, 7.3305, 7.3311, 7.3308, 7.3307, 7.3315, 7.3314, 7.3321, 7.3322, 7.3319, 7.3318, 7.3316, 7.3313, 7.332, 7.3317, 7.3315, 7.3311, 7.3309, 7.3307, 7.3303, 7.3299, 7.3299, 7.3295, 7.3302, 7.3301, 7.3308, 7.3304, 7.3319, 7.3317, 7.3313, 7.3311, 7.3308, 7.3304, 7.3301, 7.3307, 7.3325, 7.3321, 7.3317, 7.3313, 7.3323, 7.3325, 7.3325, 7.3324, 7.3321, 7.3317, 7.3315, 7.3312, 7.3311, 7.3308, 7.3306, 7.3296, 7.3302, 7.3298, 7.3295, 7.3291, 7.33, 7.3298, 7.3295, 7.3292, 7.3299, 7.3295, 7.3302, 7.3299, 7.3296, 7.3293, 7.3291, 7.3288, 7.3285, 7.3282, 7.3288, 7.3284, 7.3283, 7.3271, 7.327, 7.3266, 7.3262, 7.3252, 7.3259, 7.3255, 7.326, 7.3257, 7.3255, 7.3262, 7.326, 7.3248, 7.3244, 7.3241, 7.3238, 7.3245, 7.3242, 7.3238, 7.3235, 7.3241, 7.3247, 7.3248, 7.3236, 7.3235, 7.3234, 7.3232, 7.3229, 7.3225, 7.3221, 7.3218, 7.3214, 7.3221, 7.3217, 7.3213, 7.3211, 7.3219, 7.3217, 7.3218, 7.3215, 7.3212, 7.3211, 7.321, 7.3218, 7.3222, 7.3232, 7.3242, 7.326, 7.3258, 7.3275, 7.3285, 7.3281, 7.3287, 7.3283, 7.3282, 7.3279, 7.3287, 7.3284, 7.328, 7.3278, 7.3286, 7.3283, 7.3281, 7.3277, 7.3274, 7.327, 7.3258, 7.3247, 7.3235, 7.3261, 7.3268, 7.3275, 7.3282, 7.328, 7.3278, 7.3275, 7.3273, 7.3282, 7.329, 7.3289, 7.3298, 7.3296, 7.3294, 7.3319, 7.3317, 7.3316, 7.3313, 7.3311, 7.3317, 7.3324, 7.3321, 7.332, 7.3317, 7.3323, 7.332, 7.3317, 7.3314, 7.3303, 7.3347, 7.3355, 7.3343, 7.334, 7.3337, 7.3351, 7.3351, 7.3347, 7.3344, 7.3341, 7.335, 7.3348, 7.3345, 7.3343, 7.334, 7.3336, 7.3343, 7.3346, 7.3344, 7.334, 7.3337, 7.3343, 7.3341, 7.3338, 7.3335, 7.3343, 7.334, 7.3347, 7.3355, 7.3355, 7.3354, 7.3351, 7.3349, 7.3346, 7.3345, 7.3342, 7.334, 7.3338, 7.3337, 7.3337, 7.3336, 7.3334, 7.3342, 7.3339, 7.3337, 7.3325, 7.3324, 7.3334, 7.3332, 7.3336, 7.3333, 7.3349, 7.3346, 7.3343, 7.3377, 7.3375, 7.3373, 7.3371, 7.3369, 7.3366, 7.3369, 7.3359, 7.3391, 7.3387, 7.3393, 7.3392, 7.3389, 7.3387, 7.3383, 7.3382, 7.338, 7.3368, 7.3365, 7.3362, 7.3381, 7.3408, 7.341, 7.3407, 7.3414, 7.3411, 7.3411, 7.3428, 7.3426, 7.3416, 7.3405, 7.3415, 7.3412, 7.3409, 7.3406, 7.3403, 7.3409, 7.3405, 7.3403, 7.341, 7.3407, 7.3406, 7.3413, 7.3421, 7.3419, 7.3417, 7.3414, 7.3411, 7.3408, 7.3405, 7.3411, 7.3418, 7.3415, 7.3404, 7.3446, 7.3437, 7.3444, 7.3461, 7.3458, 7.3458, 7.3459, 7.3455, 7.3451, 7.3458, 7.3455, 7.3452, 7.3452, 7.3459, 7.3457, 7.3454, 7.3451, 7.3449, 7.3446, 7.3443, 7.3474, 7.3471, 7.3468, 7.3468, 7.3465, 7.3473, 7.3481, 7.3488, 7.3485, 7.3482, 7.3479, 7.3477, 7.3483, 7.348, 7.3477, 7.3475, 7.3472, 7.3468, 7.3465, 7.3473, 7.3472, 7.3469, 7.3465, 7.3453, 7.3451, 7.3448, 7.3447, 7.3445, 7.3442, 7.344, 7.345, 7.3447, 7.3444, 7.3441, 7.3448, 7.3449, 7.3446, 7.3452, 7.3449, 7.3446, 7.3444, 7.3442, 7.3439, 7.3437, 7.3443, 7.344, 7.3439, 7.3437, 7.3436, 7.3433, 7.343, 7.3428, 7.3427, 7.3426, 7.3432, 7.3429, 7.3429, 7.3427, 7.3424, 7.3421, 7.342, 7.3419, 7.3416, 7.3413, 7.341, 7.3408, 7.3405, 7.3402, 7.341, 7.3408, 7.3405, 7.3401, 7.3398, 7.3415, 7.3421, 7.3413, 7.3402, 7.3398, 7.3395, 7.3392, 7.34, 7.3399, 7.3406, 7.3403, 7.3403, 7.3399, 7.3398, 7.3396, 7.3394, 7.3391, 7.3388, 7.3385, 7.3383, 7.338, 7.3378, 7.3375, 7.3374, 7.3382, 7.3379, 7.3376, 7.3373, 7.338, 7.3378, 7.3375, 7.3372, 7.337, 7.3378, 7.3374, 7.3364, 7.3363, 7.336, 7.3359, 7.3367, 7.3366, 7.3363, 7.3361, 7.3358, 7.3355, 7.3353, 7.3351, 7.3349, 7.3346, 7.3343, 7.3341, 7.3348, 7.3346, 7.3346, 7.3344, 7.3341, 7.333, 7.3327, 7.3334, 7.3333, 7.3329, 7.3337, 7.3334, 7.3332, 7.3321, 7.3317, 7.3324, 7.3321, 7.3318, 7.3316, 7.3313, 7.331, 7.3308, 7.3304, 7.331, 7.3309, 7.3319, 7.3316, 7.3324, 7.3321, 7.3318, 7.3333, 7.3331, 7.3328, 7.3325, 7.3332, 7.334, 7.3337, 7.3336, 7.3333, 7.3339, 7.3337, 7.3335, 7.3333, 7.3329, 7.3335, 7.3332, 7.333, 7.3326, 7.3325, 7.3335, 7.3331, 7.3356, 7.3362, 7.3359, 7.3394, 7.3391, 7.3388, 7.3386, 7.3384, 7.338, 7.3377, 7.3374, 7.337, 7.3367, 7.3365, 7.3363, 7.336, 7.3356, 7.3354, 7.3353, 7.335, 7.3346, 7.3345, 7.3344, 7.3344, 7.3342, 7.3339, 7.3337, 7.3335, 7.3342, 7.334, 7.3338, 7.3337, 7.3334, 7.3364, 7.3363, 7.3362, 7.3359, 7.3356, 7.3362, 7.3359, 7.3365, 7.3362, 7.3369, 7.3368, 7.3366, 7.3365, 7.3362, 7.336, 7.3377, 7.3376, 7.3373, 7.3371, 7.3361, 7.335, 7.3357, 7.3363, 7.336, 7.3373, 7.3372, 7.3369, 7.3366, 7.3363, 7.3371, 7.3368, 7.3365, 7.3363, 7.3372, 7.3369, 7.3365, 7.3371, 7.3368, 7.3366, 7.3363, 7.3361, 7.335, 7.3347, 7.3337, 7.3334, 7.3332, 7.3332, 7.333, 7.3339, 7.3337, 7.3327, 7.3325, 7.3323, 7.3322, 7.3319, 7.3317, 7.3306, 7.3304, 7.3303, 7.3301, 7.3308, 7.3305, 7.3302, 7.3299, 7.3296, 7.3294, 7.3292, 7.3289, 7.3286, 7.3284, 7.3281, 7.3288, 7.3288, 7.3287, 7.3284, 7.3281, 7.3294, 7.33, 7.33, 7.3291, 7.3281, 7.3288, 7.3285, 7.3282, 7.3279, 7.3278, 7.3284, 7.3282, 7.3274, 7.3273, 7.3279, 7.3292, 7.329, 7.3287, 7.3284, 7.3281, 7.3278, 7.3276, 7.3272, 7.327, 7.328, 7.329000000000001, 7.3287, 7.3292, 7.3289, 7.3286, 7.3275, 7.3274, 7.3271, 7.3268, 7.3265, 7.3263, 7.326, 7.327, 7.3267, 7.3264, 7.3272, 7.3279, 7.3276, 7.3265, 7.327500000000001, 7.328500000000001, 7.3283, 7.328, 7.329000000000001, 7.3288, 7.3286, 7.3283, 7.3289, 7.3299, 7.3297, 7.3294, 7.3293, 7.3291, 7.3289, 7.3288, 7.3286, 7.3287, 7.3284, 7.3281, 7.3287, 7.3284, 7.3281, 7.3279, 7.3278, 7.3286, 7.3283, 7.328, 7.3278, 7.3285, 7.3282, 7.3288, 7.3294, 7.33, 7.3298, 7.3305, 7.3302, 7.3307, 7.3304, 7.331, 7.331, 7.3309, 7.3306, 7.3304, 7.3302, 7.3299, 7.3296, 7.3302, 7.3308, 7.3305, 7.3304, 7.3311, 7.3317, 7.3323, 7.332, 7.3317, 7.3322, 7.3319, 7.3316, 7.3314, 7.3311, 7.3318, 7.3315, 7.3312, 7.332, 7.331, 7.3307, 7.3304, 7.3301, 7.3298, 7.3295, 7.3306, 7.3322, 7.3319, 7.3316, 7.3322, 7.3329, 7.3326, 7.3332, 7.3329, 7.3327, 7.3324, 7.3321, 7.3318, 7.3325, 7.3322, 7.3321, 7.3311, 7.3321000000000005, 7.3319, 7.3316, 7.3313, 7.3311, 7.331, 7.3307, 7.3314, 7.332400000000001, 7.333400000000001, 7.3323, 7.332, 7.3311, 7.3309, 7.3306, 7.3305, 7.3302, 7.3299, 7.3297, 7.3294, 7.3292, 7.329, 7.3287, 7.3285, 7.3282, 7.3279, 7.3289, 7.3299, 7.330900000000001, 7.3306, 7.3305, 7.3302, 7.3301, 7.3299, 7.3306, 7.3303, 7.33, 7.3297, 7.3304, 7.3301, 7.3307, 7.3313, 7.3311, 7.3317, 7.3327, 7.3337, 7.3356, 7.3361, 7.3359, 7.3366, 7.3363, 7.3362, 7.3351, 7.3348, 7.3346, 7.3352, 7.3349, 7.3346, 7.3345, 7.3351, 7.3363, 7.336, 7.3358, 7.3355, 7.3361, 7.3368, 7.3365, 7.3363, 7.336, 7.3358, 7.3361, 7.3359, 7.3357, 7.3349, 7.3347, 7.3337, 7.3327, 7.3333, 7.3336, 7.3343, 7.3342, 7.3331, 7.3321, 7.331, 7.33, 7.3297, 7.3297, 7.3295, 7.3295, 7.3287, 7.3284, 7.3283, 7.3282, 7.328, 7.3277, 7.3285, 7.3283, 7.3298, 7.3296, 7.3292, 7.329, 7.3297, 7.3296, 7.3287, 7.3284, 7.3283, 7.328, 7.3279, 7.3278, 7.3285, 7.3282, 7.328, 7.3278, 7.3284, 7.3291, 7.3288, 7.3285, 7.3282, 7.3281, 7.3278, 7.3276, 7.3273, 7.327, 7.3267, 7.3264, 7.3262, 7.3253, 7.325, 7.3247, 7.3244, 7.3241, 7.3238, 7.3243, 7.3241, 7.3246, 7.3245, 7.3245, 7.3251, 7.325, 7.3248, 7.3246, 7.3252, 7.3249, 7.3246, 7.3243, 7.3241, 7.3239, 7.3246, 7.3252, 7.3249, 7.3256, 7.3253, 7.326, 7.3266, 7.3263, 7.326, 7.3266, 7.3263, 7.3269, 7.3268, 7.3266, 7.3264, 7.3261, 7.3258, 7.3255, 7.3253, 7.3251, 7.3248, 7.3257, 7.3255, 7.3244, 7.3251, 7.325, 7.3257, 7.3255, 7.3254, 7.3259, 7.3256, 7.3253, 7.325, 7.3248, 7.3245, 7.3242, 7.3239, 7.3236, 7.3234, 7.3232, 7.3231, 7.3236, 7.3234, 7.3231, 7.3229, 7.3226, 7.3223, 7.3222, 7.3219, 7.3216, 7.3214, 7.3211, 7.3228, 7.3225, 7.3231, 7.3228, 7.3234, 7.3231, 7.3228, 7.3244, 7.3241, 7.3238, 7.3237, 7.3234, 7.3231, 7.3228, 7.3226, 7.3225, 7.3235, 7.3242, 7.3239, 7.3257, 7.3254, 7.326, 7.3277, 7.3274, 7.3281, 7.3278, 7.3284, 7.3282, 7.3288, 7.3294, 7.3292, 7.3298, 7.3295, 7.3304, 7.3294, 7.3301, 7.3298, 7.3303, 7.33, 7.3324, 7.3339, 7.3344, 7.3341, 7.3339, 7.3338, 7.3335, 7.3332, 7.3329, 7.3335, 7.3333, 7.3332, 7.3331, 7.3329, 7.3326, 7.3323, 7.332, 7.3317, 7.3315, 7.3313, 7.3311, 7.3317, 7.3314, 7.3312, 7.331, 7.3335, 7.3332, 7.3329, 7.3335, 7.3333, 7.3339, 7.3341, 7.3348, 7.3345, 7.3343, 7.3342, 7.3349, 7.3346, 7.3351, 7.3348, 7.3345, 7.3345, 7.3344, 7.3351, 7.334, 7.3341, 7.3339, 7.3352, 7.335, 7.3364, 7.3362, 7.3359, 7.3365, 7.337, 7.3367, 7.3365, 7.3372, 7.3369, 7.3385, 7.3391, 7.3388, 7.3385, 7.3392, 7.3392, 7.3391, 7.3389, 7.3395, 7.3394, 7.3391, 7.3397, 7.3395, 7.3392, 7.3389, 7.3388, 7.3387, 7.3388, 7.3386, 7.3384, 7.3382, 7.338, 7.3377, 7.3375, 7.3372, 7.3369, 7.3366, 7.3372, 7.3371, 7.3369, 7.3375, 7.3372, 7.337, 7.3368, 7.3366, 7.3364, 7.3363, 7.3363, 7.3361, 7.3358, 7.3355, 7.3353, 7.3343, 7.3358, 7.3355, 7.3349, 7.3364, 7.3362, 7.3359, 7.3356, 7.3353, 7.335, 7.3347, 7.3348, 7.3346, 7.3344, 7.3341, 7.3339, 7.3336, 7.3341, 7.3338, 7.3337, 7.3335, 7.3353, 7.3359, 7.3356, 7.3353, 7.3351, 7.3349, 7.3372, 7.3369, 7.3366, 7.3363, 7.3369, 7.3368, 7.3374, 7.3379, 7.3377, 7.3374, 7.3371, 7.3368, 7.3367, 7.3364, 7.337, 7.3376, 7.3378, 7.3376, 7.3374, 7.3371, 7.3369, 7.3366, 7.3366, 7.3363, 7.3361, 7.3366, 7.3363, 7.3361, 7.3358, 7.3349, 7.3347, 7.3346, 7.3351, 7.335, 7.3355, 7.3352, 7.3357, 7.3358, 7.3364, 7.3361, 7.3361, 7.3358, 7.3365, 7.3376, 7.3375, 7.3372, 7.3369, 7.3375, 7.3375, 7.3375, 7.3373, 7.3372, 7.338, 7.3378, 7.3375, 7.3373, 7.3371, 7.3369, 7.3367, 7.3382, 7.338, 7.3378, 7.3385, 7.339, 7.3387, 7.3384, 7.339, 7.3397, 7.3395, 7.3401, 7.3399, 7.3426, 7.3435, 7.3432, 7.3431, 7.3429, 7.3431, 7.3428, 7.343, 7.3429, 7.3435, 7.3434, 7.3439, 7.3436, 7.3433, 7.343, 7.3429, 7.3426, 7.3423, 7.3438, 7.3444, 7.3442, 7.3441, 7.3438, 7.3435, 7.3432, 7.343, 7.3438, 7.3436, 7.3442, 7.3449, 7.3446, 7.3443, 7.344, 7.3445, 7.3442, 7.3452, 7.3449, 7.3446, 7.3451, 7.3456, 7.3453, 7.345, 7.3456, 7.3454, 7.346, 7.3458, 7.3458, 7.3464, 7.3462, 7.3468, 7.3465, 7.3463, 7.3462, 7.3467, 7.3464, 7.347, 7.3468, 7.3474, 7.3483, 7.3483, 7.3481, 7.3487, 7.3493, 7.349, 7.3487, 7.3492, 7.3489, 7.3492, 7.35, 7.3498, 7.3499, 7.3496, 7.3499, 7.3496, 7.3493, 7.3499, 7.3505, 7.3502, 7.3507, 7.3505, 7.3504, 7.3501, 7.3498, 7.3504, 7.351, 7.3508, 7.3506, 7.3514, 7.3512, 7.3502, 7.3508, 7.3498, 7.3495, 7.3493, 7.3491, 7.3488, 7.349, 7.3487, 7.3495, 7.352, 7.3519, 7.3517, 7.3523, 7.352, 7.3526, 7.3533, 7.353, 7.3527, 7.3524, 7.353, 7.3528, 7.3526, 7.3524, 7.3522, 7.3519, 7.3534, 7.3539, 7.3536, 7.3541, 7.3546, 7.3551, 7.3548, 7.3545, 7.3542, 7.3539, 7.3536, 7.3534, 7.3541, 7.3538, 7.3558, 7.3555, 7.3553, 7.3568, 7.3573, 7.357, 7.3567, 7.3565, 7.3562, 7.3561, 7.356, 7.3558, 7.3555, 7.3553, 7.3551, 7.3557, 7.3554, 7.3551, 7.3557, 7.3564, 7.3562, 7.3559, 7.3565, 7.3563, 7.3553, 7.3551, 7.3548, 7.3547, 7.3553, 7.355, 7.3548, 7.3554, 7.356, 7.3557, 7.3555, 7.3552, 7.3557, 7.3555, 7.356, 7.3557, 7.3563, 7.3562, 7.356, 7.3557, 7.3547, 7.3544, 7.3541, 7.3546, 7.3544, 7.3542, 7.354, 7.3537, 7.3535, 7.3541, 7.3539, 7.3537, 7.3551, 7.3557, 7.3555, 7.3553, 7.3551, 7.3548, 7.3554, 7.3552, 7.3549, 7.3546, 7.3547, 7.3553, 7.356, 7.3565, 7.3562, 7.356, 7.3557, 7.3554, 7.3556, 7.3557, 7.3554, 7.3552, 7.3559, 7.3556, 7.3555, 7.3552, 7.355, 7.3547, 7.3545, 7.3542, 7.3547, 7.3545, 7.3546, 7.3543, 7.3535, 7.3536, 7.3535, 7.3532, 7.3529, 7.3543, 7.3548, 7.3545, 7.3542, 7.3547, 7.3552, 7.3557, 7.3562, 7.3567, 7.3572, 7.3577, 7.3574, 7.3571, 7.3568, 7.3565, 7.3571, 7.3577, 7.3584, 7.3582, 7.3581, 7.3579, 7.3585, 7.3584, 7.3582, 7.3588, 7.3602, 7.3608, 7.3605, 7.3603, 7.3601, 7.3599, 7.3597, 7.3595, 7.3593, 7.3591, 7.3588, 7.3586, 7.3583, 7.3581, 7.3579, 7.3584, 7.3589, 7.3586, 7.3584, 7.3589, 7.3588, 7.3586, 7.3591, 7.3589, 7.3587, 7.3585, 7.3582, 7.358, 7.3578, 7.3584, 7.3589, 7.3588, 7.3586, 7.3583, 7.358, 7.3577, 7.3583, 7.3591, 7.3588, 7.3586, 7.3584, 7.3598, 7.3595, 7.361, 7.3609, 7.3606, 7.3605, 7.3603, 7.3604, 7.3605, 7.3603, 7.3601, 7.36, 7.3636, 7.3655, 7.3654, 7.366, 7.3666, 7.3672, 7.3671, 7.3669, 7.3667, 7.3664, 7.3662, 7.3659, 7.3657, 7.3655, 7.3656, 7.3653, 7.365, 7.3655, 7.3661, 7.3661, 7.3658, 7.3656, 7.3655, 7.3653, 7.3651, 7.3658, 7.3655, 7.3662, 7.3675, 7.3673, 7.3671, 7.3669, 7.3676, 7.3675, 7.3673, 7.3671, 7.3677, 7.3675, 7.3674, 7.3672, 7.3669, 7.3666, 7.3665, 7.367, 7.3668, 7.3674, 7.3672, 7.367, 7.3668, 7.3682, 7.3688, 7.3693, 7.3691, 7.3689, 7.3686, 7.3688, 7.3685, 7.3684, 7.3689, 7.3687, 7.3686, 7.3684, 7.3691, 7.3689, 7.3686, 7.3684, 7.3682, 7.3687, 7.3685, 7.3683, 7.3681, 7.3678, 7.3676, 7.3675, 7.3673, 7.3672, 7.367, 7.3667, 7.3664, 7.3662, 7.366, 7.3658, 7.3655, 7.366, 7.3657, 7.3664, 7.3669, 7.3667, 7.3665, 7.3664, 7.3661, 7.3659, 7.3656, 7.3655, 7.366, 7.3657, 7.3656, 7.3662, 7.3668, 7.3666, 7.3671, 7.3668, 7.3666, 7.3671, 7.367, 7.3667, 7.3664, 7.3662, 7.3659, 7.3657, 7.3655, 7.366, 7.366, 7.3657, 7.3654, 7.3651, 7.3659, 7.3657, 7.3656, 7.3654, 7.3651, 7.3649, 7.3654, 7.3651, 7.365, 7.3647, 7.3646, 7.3643, 7.364, 7.3639, 7.3636, 7.3634, 7.3639, 7.3644, 7.3648, 7.3646, 7.3644, 7.3641, 7.3638, 7.3636, 7.3633, 7.3631, 7.3629, 7.3627, 7.3625, 7.363, 7.3627, 7.3631, 7.3636, 7.3633, 7.3631, 7.3628, 7.3626, 7.3624, 7.3629, 7.3634, 7.3631, 7.3628, 7.3626, 7.3623, 7.362, 7.3617, 7.3614, 7.3612, 7.3609, 7.3608, 7.3606, 7.3604, 7.3601, 7.3598, 7.3603, 7.3601, 7.3598, 7.3595, 7.36, 7.3613, 7.3618, 7.3617, 7.3614, 7.3635, 7.3632, 7.363, 7.3637, 7.365, 7.3651, 7.3652, 7.3659, 7.3656, 7.3654, 7.3651, 7.3648, 7.3645, 7.3651, 7.365, 7.3647, 7.3652, 7.3657, 7.3654, 7.3651, 7.3648, 7.3647, 7.3677, 7.3674, 7.3671, 7.3665], '192.168.122.110': [5.6944, 5.6023, 5.5383, 5.6297, 5.7698, 5.9318, 5.8411, 5.9552, 6.5528, 6.4981, 6.4408, 6.3926, 6.4206, 6.3437, 6.3431, 6.6266, 6.5586, 6.4929, 6.7241, 6.6553, 6.6484, 6.8436, 7.0113, 6.9885, 6.7627, 6.7271, 6.6855, 6.6865000000000006, 6.7086, 6.7353, 6.7263, 6.8503, 6.8074, 7.4739, 7.4448, 7.4159, 7.3629, 7.6006, 7.5558, 7.5475, 7.5237, 7.5149, 7.5931, 7.5441, 7.4966, 7.4853, 7.4414, 7.4372, 7.4319, 7.4261, 7.4944, 7.4875, 7.4795, 7.4409, 7.4057, 7.3704, 7.4319, 7.3973, 7.3642, 7.331, 7.3896, 7.3845, 7.3737, 7.3454, 7.32, 7.2978, 7.2697, 7.3177, 7.2918, 7.2729, 7.256, 7.234, 7.2119, 7.1869, 7.2366, 7.2301, 7.2585, 7.1943, 7.1715, 7.1613, 7.1427, 7.1917, 7.1854, 7.1658, 7.1453, 7.1978, 7.2524, 7.2356, 7.2219, 7.2031, 7.1859, 7.2427, 7.261, 7.2539, 7.2949, 7.2773, 7.2615, 7.2424, 7.2223, 7.2601, 7.2549, 7.2367, 7.2208, 7.2037, 7.2418, 7.2366, 7.2208, 7.2173, 7.2023, 7.2006, 7.185, 7.1859, 7.1843, 7.1807, 7.1691, 7.1586, 7.2874, 7.2714, 7.3045, 7.3544, 7.4054, 7.4043, 7.4123, 7.3972, 7.3829, 7.4658, 7.4512, 7.4475, 7.443, 7.4299, 7.4166, 7.412, 7.4389, 7.427, 7.4122, 7.4372, 7.4213, 7.4521, 7.4432, 7.4284, 7.4139, 7.4583, 7.4431, 7.4389, 7.4693, 7.4564, 7.4521, 7.4448, 7.4685, 7.4622, 7.4485, 7.4707, 7.4608, 7.4475, 7.4342, 7.4334, 7.4898, 7.6192, 7.6049, 7.5909, 7.5773, 7.568, 7.5669, 7.5901, 7.5873, 7.5794, 7.569, 7.5579, 7.5818, 7.5706, 7.5645, 7.5889, 7.6105, 7.6036, 7.6117, 7.6022, 7.5973, 7.588, 7.5767, 7.5831, 7.5794, 7.6422, 7.6305, 7.6273, 7.6159, 7.6348, 7.6278, 7.6216, 7.6399, 7.6334, 7.6256, 7.6135, 7.6329, 7.6302, 7.6377, 7.6525, 7.6438, 7.6632, 7.6568, 7.6499, 7.6382, 7.6292, 7.6205, 7.6112, 7.6067, 7.5963, 7.5885, 7.5806, 7.5776, 7.5779, 7.571, 7.5677, 7.5577, 7.5481, 7.5415, 7.5586, 7.5498, 7.5482, 7.5381, 7.5285, 7.5001, 7.5157, 7.5079, 7.5003, 7.4929, 7.4898, 7.4815, 7.4765, 7.4762, 7.4689, 7.4674, 7.4615, 7.4543, 7.4512, 7.4442, 7.4416, 7.4349, 7.4313, 7.4712, 7.4653, 7.479, 7.4701, 7.464, 7.4777, 7.4915, 7.4901, 7.5247, 7.5167, 7.5086, 7.5012, 7.493, 7.4841, 7.4764, 7.51, 7.5244, 7.5176, 7.569, 7.5831, 7.5838, 7.5764, 7.5713, 7.5647, 7.5567, 7.5542, 7.5459, 7.5406, 7.5351, 7.5474, 7.5392, 7.5517, 7.5655, 7.5651, 7.5582, 7.5703, 7.5659, 7.5796, 7.5753, 7.5684, 7.5616, 7.555, 7.5529, 7.5462, 7.538, 7.5306, 7.5241, 7.52, 7.5509, 7.5636, 7.5576, 7.5695, 7.5628, 7.5554, 7.5502, 7.5448, 7.5384, 7.5363, 7.5491, 7.5447, 7.5417, 7.5435, 7.5373, 7.5484, 7.5607, 7.5536, 7.5466, 7.5492, 7.5425, 7.5435, 7.5374, 7.533, 7.5313, 7.529, 7.5563, 7.554, 7.5472, 7.5468, 7.5443, 7.5373, 7.5369, 7.5345, 7.5281, 7.5394, 7.5356, 7.5321, 7.5253, 7.559, 7.552, 7.5499, 7.5459, 7.5441, 7.5424, 7.5413, 7.5522, 7.5472, 7.5447, 7.5383, 7.539, 7.5358, 7.5344, 7.5301, 7.526, 7.5227, 7.521, 7.5306, 7.5259, 7.5201, 7.5165, 7.529, 7.5389, 7.5341, 7.5288, 7.5251, 7.5205, 7.531, 7.5423, 7.5375, 7.5354, 7.5495, 7.5452, 7.5392, 7.5339, 7.5309, 7.5298, 7.5253, 7.5379, 7.5217, 7.5192, 7.5144, 7.5255, 7.5201, 7.517, 7.5273, 7.5269, 7.5265, 7.521, 7.5158, 7.5265, 7.5245, 7.5196, 7.5168, 7.5139, 7.5135, 7.5105, 7.5207, 7.518, 7.516, 7.5256, 7.5254, 7.5247, 7.522, 7.5191, 7.5139, 7.5087, 7.5176, 7.512, 7.5198, 7.5185, 7.5168, 7.5258, 7.5224, 7.5213, 7.5292, 7.5365, 7.5413, 7.5374, 7.5378, 7.5325, 7.5278, 7.5261, 7.5225, 7.5197, 7.5179, 7.514, 7.5118, 7.5092, 7.5056, 7.5002, 7.5083, 7.5037, 7.512, 7.5079, 7.5051, 7.5021, 7.4976, 7.4939, 7.4918, 7.4865, 7.4835, 7.4827, 7.4821, 7.4787, 7.4745, 7.4713, 7.4927, 7.4907, 7.4885, 7.4848, 7.4809, 7.478, 7.4738, 7.4702, 7.4678, 7.4646, 7.4609, 7.46, 7.4583, 7.4535, 7.4499, 7.4496, 7.4496, 7.4469, 7.4552, 7.4627, 7.4578, 7.4544, 7.4501, 7.4474, 7.4444, 7.4428, 7.439, 7.4379, 7.4383, 7.4337, 7.4296, 7.4258, 7.4219, 7.4188, 7.4261, 7.4227, 7.4185, 7.427, 7.4254, 7.4331, 7.4303, 7.426, 7.4247, 7.4219, 7.4183, 7.4147, 7.4109, 7.4182, 7.4145, 7.4319, 7.4296, 7.4275, 7.435, 7.4333, 7.4294, 7.4271, 7.4417, 7.4386, 7.436, 7.4357, 7.4359, 7.4319, 7.4323, 7.4293, 7.4251, 7.4213, 7.4613, 7.4583, 7.454, 7.4624, 7.4587, 7.4575, 7.4542, 7.4504, 7.4471, 7.4431, 7.4429, 7.4486, 7.4459, 7.4418, 7.4403, 7.4367, 7.4432, 7.449, 7.4457, 7.4419, 7.438, 7.4342, 7.4404, 7.4366, 7.4343, 7.4305, 7.4266, 7.4259, 7.4328, 7.4294, 7.431, 7.4302, 7.4265, 7.4346, 7.4318, 7.4383, 7.4456, 7.4437, 7.4498, 7.4479, 7.4441, 7.4507, 7.4491, 7.4579, 7.4561, 7.4524, 7.4497, 7.4488, 7.4453, 7.4415, 7.4389, 7.4408, 7.4395, 7.4361, 7.4329, 7.4297, 7.4271, 7.4273, 7.434, 7.4356, 7.4323, 7.4285, 7.4267, 7.4328, 7.4309, 7.4299, 7.4361, 7.4336, 7.4403, 7.4398, 7.438, 7.435, 7.4314, 7.4381, 7.4345, 7.4312, 7.4288, 7.4254, 7.4232, 7.42, 7.4188, 7.4241, 7.423, 7.4204, 7.4197, 7.4165, 7.4131, 7.4096, 7.406, 7.4054, 7.4048, 7.4019, 7.4, 7.3983, 7.3998, 7.3967, 7.3951, 7.3926, 7.3899, 7.3887, 7.3967, 7.3933, 7.3918, 7.3887, 7.3872, 7.3841, 7.3833, 7.3963, 7.3931, 7.3905, 7.3872, 7.3844, 7.3815, 7.3883, 7.3878, 7.3847, 7.3912, 7.3882, 7.3788, 7.377, 7.3767, 7.3889, 7.4041, 7.4009, 7.4079, 7.4142, 7.4135, 7.414, 7.4123, 7.4096, 7.4161, 7.413, 7.414, 7.4116, 7.4082, 7.408, 7.4136, 7.4109, 7.4094, 7.4152, 7.4144, 7.4192, 7.4166, 7.4216, 7.4186, 7.4164, 7.4138, 7.4116, 7.4106, 7.4092, 7.4061, 7.4041, 7.4013, 7.3983, 7.4037, 7.4088, 7.4063, 7.3987, 7.3958, 7.4012, 7.4016, 7.3993, 7.3963, 7.395, 7.3919, 7.389, 7.3861, 7.3918, 7.3973, 7.3968, 7.3945, 7.3932, 7.3905, 7.3958, 7.394, 7.3997, 7.4049, 7.4019, 7.4017, 7.3989, 7.4052, 7.4045, 7.4024, 7.4075, 7.4049, 7.4024, 7.4005, 7.3985, 7.402, 7.4004, 7.3978, 7.3948, 7.392, 7.3911, 7.3887, 7.3877, 7.3848, 7.3905, 7.3883, 7.3937, 7.391, 7.3886, 7.386, 7.3834, 7.3877, 7.3883, 7.3883, 7.3862, 7.3865, 7.3855, 7.384, 7.3922, 7.3939, 7.391, 7.3963, 7.3946, 7.3923, 7.3978, 7.4033, 7.4084, 7.4077, 7.4056, 7.4029, 7.4001, 7.3975, 7.402, 7.4005, 7.3979, 7.3963, 7.4018, 7.4011, 7.3983, 7.3966, 7.3951, 7.3938, 7.3921, 7.3892, 7.3945, 7.3916, 7.3917, 7.3897, 7.3888, 7.3865, 7.3935, 7.3935, 7.391, 7.3891, 7.3876, 7.3866, 7.3911, 7.3888, 7.3936, 7.3982, 7.4136, 7.413, 7.4172, 7.4144, 7.4133, 7.4106, 7.408, 7.4107, 7.416, 7.4145, 7.4188, 7.4161, 7.4143, 7.4117, 7.4089, 7.4064, 7.4044, 7.4091, 7.4071, 7.4062, 7.4111, 7.4063, 7.4068, 7.4055, 7.4105, 7.4093, 7.4067, 7.4044, 7.4107, 7.4099, 7.4145, 7.4128, 7.4172, 7.4221, 7.4202, 7.4177, 7.4167, 7.4151, 7.4128, 7.4102, 7.4089, 7.4135, 7.4178, 7.4227, 7.4232, 7.4282, 7.427, 7.4252, 7.4246, 7.4221, 7.4279, 7.4265, 7.4239, 7.4236, 7.4231, 7.4276, 7.425, 7.4238, 7.4448, 7.4441, 7.4437, 7.4421, 7.4395, 7.4434, 7.4475, 7.4464, 7.4444, 7.4442, 7.4437, 7.4421, 7.447, 7.4536, 7.4517, 7.4559, 7.4534, 7.4581, 7.4579, 7.4559, 7.4533, 7.4664, 7.4706, 7.475, 7.4746, 7.4754, 7.4797, 7.4838, 7.4876, 7.4849, 7.4836, 7.4816, 7.4857, 7.4831, 7.4814, 7.4804, 7.4798, 7.4788, 7.4768, 7.4758, 7.4742, 7.4717, 7.471, 7.4685, 7.4678, 7.4724, 7.472, 7.4717, 7.4699, 7.4673, 7.4659, 7.4634, 7.4615, 7.4659, 7.4635, 7.4619, 7.4651, 7.4633, 7.4612, 7.4597, 7.4597, 7.4584, 7.456, 7.4555, 7.4536, 7.4584, 7.4566, 7.4558, 7.4556, 7.4554, 7.4546, 7.4522, 7.4497, 7.4475, 7.4465, 7.4448, 7.4441, 7.4417, 7.4415, 7.4401, 7.44, 7.4377, 7.4367, 7.4344, 7.4332, 7.431, 7.4412, 7.4393, 7.4429, 7.4406, 7.4396, 7.4372, 7.4348, 7.4327, 7.4316, 7.4353, 7.4329, 7.4315, 7.4365, 7.4344, 7.4344, 7.4328, 7.4325, 7.4343, 7.4389, 7.437, 7.4349, 7.433, 7.4313, 7.4332, 7.4313, 7.4305, 7.4407, 7.439, 7.4431, 7.4424, 7.4408, 7.4401, 7.4378, 7.4431, 7.4414, 7.4407, 7.4554, 7.4551, 7.4595, 7.4571, 7.4564, 7.4602, 7.459, 7.4631, 7.4666, 7.4703, 7.47, 7.4689, 7.4665, 7.4644, 7.4623, 7.4607, 7.4612, 7.4605, 7.46, 7.464, 7.4622, 7.4605, 7.4583, 7.4567, 7.4603, 7.4646, 7.4629, 7.4606, 7.4587, 7.4577, 7.4558, 7.4595, 7.4585, 7.4581, 7.4566, 7.4548, 7.4543, 7.4525, 7.4505, 7.4547, 7.4525, 7.4528, 7.4517, 7.4507, 7.4487, 7.4464, 7.4449, 7.4442, 7.442, 7.4403, 7.4442, 7.4422, 7.4425, 7.4469, 7.4449, 7.443, 7.4469, 7.4454, 7.4487, 7.448, 7.4469, 7.4453, 7.4434, 7.4416, 7.4398, 7.443, 7.4411, 7.4443, 7.4438, 7.4446, 7.4425, 7.4407, 7.439, 7.437, 7.4359, 7.4361, 7.4401, 7.438, 7.4415, 7.4404, 7.4382, 7.4365, 7.4356, 7.4339, 7.4326, 7.4305, 7.4287, 7.4284, 7.4456, 7.4439, 7.4437, 7.4427, 7.441, 7.4391, 7.4372, 7.4351, 7.433, 7.4327, 7.4306, 7.4286, 7.428, 7.4259, 7.4254, 7.4249, 7.428, 7.4267, 7.4299, 7.4336, 7.4323, 7.4302, 7.4296, 7.428, 7.4263, 7.4254, 7.4238, 7.4231, 7.427, 7.4272, 7.4259, 7.4354, 7.4362, 7.4358, 7.436, 7.4344, 7.4324, 7.4314, 7.4305, 7.4286, 7.427, 7.4308, 7.4289, 7.4274, 7.427, 7.4306, 7.429, 7.4284, 7.428, 7.4264, 7.4263, 7.4246, 7.4231, 7.4221, 7.4229, 7.4219, 7.4203, 7.4183, 7.4166, 7.4205, 7.4207, 7.4188, 7.4172, 7.4155, 7.4189, 7.4184, 7.4175, 7.4174, 7.4215, 7.4199, 7.4182, 7.4177, 7.4163, 7.4155, 7.4146, 7.4142, 7.4125, 7.4156, 7.4141, 7.4139, 7.412, 7.413, 7.4121, 7.4107, 7.4093, 7.408, 7.4144, 7.4174, 7.4163, 7.4193, 7.4175, 7.4156, 7.4137, 7.4135, 7.4127, 7.4108, 7.4092, 7.4123, 7.4106, 7.4091, 7.4123, 7.4107, 7.4094, 7.4085, 7.4071, 7.4061, 7.4055, 7.4091, 7.4075, 7.4059, 7.4063, 7.406, 7.4091, 7.4092, 7.4078, 7.4108, 7.4091, 7.4085, 7.4121, 7.411, 7.4092, 7.4075, 7.4068, 7.4097, 7.4126, 7.4108, 7.4089, 7.4118, 7.412, 7.4121, 7.4161, 7.4151, 7.4192, 7.4228, 7.4268, 7.4252, 7.4235, 7.422, 7.421, 7.424, 7.4223, 7.4207, 7.4235, 7.4233, 7.4277, 7.426, 7.4247, 7.4242, 7.4239, 7.4227, 7.4259, 7.4288, 7.4382, 7.4368, 7.4353, 7.4347, 7.4333, 7.4322, 7.4315, 7.4297, 7.43, 7.4284, 7.4269, 7.4259, 7.4244, 7.4229, 7.4222, 7.4254, 7.4286, 7.4274, 7.4269, 7.4254, 7.4254, 7.4242, 7.4274, 7.427, 7.4269, 7.4253, 7.424, 7.4287, 7.4271, 7.4255, 7.4252, 7.4238, 7.4266, 7.4252, 7.4236, 7.4222, 7.4218, 7.421, 7.4243, 7.4274, 7.4264, 7.429, 7.428, 7.4264, 7.4248, 7.4245, 7.4229, 7.4221, 7.4206, 7.4234, 7.4221, 7.425, 7.4233, 7.4217, 7.4209, 7.42, 7.4192, 7.422, 7.4254, 7.4213, 7.4213, 7.4291, 7.4279, 7.4274, 7.4257, 7.4242, 7.423, 7.4213, 7.421, 7.4212, 7.4243, 7.4242, 7.4235, 7.4221, 7.4251, 7.4235, 7.4226, 7.4218, 7.4204, 7.419, 7.4181, 7.4165, 7.4162, 7.4157, 7.4153, 7.4142, 7.4136, 7.4121, 7.4156, 7.4141, 7.4137, 7.4134, 7.4121, 7.4105, 7.4102, 7.4098, 7.4083, 7.408, 7.4115, 7.4103, 7.4101, 7.4086, 7.4072, 7.4066, 7.4053, 7.404, 7.4033, 7.402, 7.4007, 7.4003, 7.3993, 7.3977, 7.3966, 7.3951, 7.3935, 7.3922, 7.3922, 7.3948, 7.3939, 7.3936, 7.3923, 7.3913, 7.3898, 7.3887, 7.3915, 7.3903, 7.3889, 7.3876, 7.3864, 7.385, 7.3837, 7.3868, 7.3871, 7.3903, 7.3888, 7.3917, 7.3951, 7.3937, 7.3929, 7.3916, 7.3903, 7.3905, 7.3907, 7.3893, 7.3894, 7.3879, 7.3867, 7.3865, 7.3894, 7.388, 7.3868, 7.3898, 7.389, 7.3916, 7.3902, 7.3929, 7.3918, 7.3904, 7.3866, 7.3852, 7.3844, 7.3829, 7.3826, 7.3824, 7.3813, 7.3798, 7.384, 7.3828, 7.3819, 7.3809, 7.3801, 7.3786, 7.3773, 7.3779, 7.3804, 7.383, 7.3818, 7.3853, 7.3839, 7.3867, 7.3854, 7.4005, 7.4, 7.3997, 7.3999, 7.3989, 7.3982, 7.3967, 7.3961, 7.3947, 7.3935, 7.392, 7.3906, 7.3894, 7.396, 7.3992, 7.4156, 7.4143, 7.4135, 7.4126, 7.4193, 7.4178, 7.4181, 7.4211, 7.4201, 7.4226, 7.4211, 7.42, 7.4228, 7.4392, 7.4386, 7.437, 7.4356, 7.4429, 7.4425, 7.4452, 7.4449, 7.4446, 7.4485, 7.4474, 7.4468, 7.4455, 7.4445, 7.4492, 7.4478, 7.4475, 7.4499, 7.4493, 7.4478, 7.4504, 7.4531, 7.4556, 7.4542, 7.4527, 7.4513, 7.4498, 7.4484, 7.4514, 7.45, 7.4491, 7.4634, 7.4623, 7.4614, 7.4666, 7.4659, 7.4648, 7.4699, 7.4691, 7.4714, 7.4711, 7.4696, 7.4684, 7.4708, 7.4701, 7.4696, 7.4686, 7.4673, 7.4701, 7.473, 7.4725, 7.4754, 7.4741, 7.4729, 7.4729, 7.4715, 7.474, 7.4727, 7.4714, 7.4706, 7.4729, 7.4724, 7.4712, 7.4735, 7.4721, 7.4707, 7.4693, 7.4688, 7.4674, 7.466, 7.4652, 7.4676, 7.4663, 7.469, 7.4678, 7.4663, 7.4659, 7.4688, 7.468, 7.4666, 7.4662, 7.465, 7.4643, 7.4637, 7.4624, 7.4614, 7.4629, 7.4614, 7.46, 7.4586, 7.4574, 7.456, 7.4587, 7.458, 7.4577, 7.4567, 7.46, 7.4589, 7.4582, 7.4568, 7.4559, 7.4593, 7.4588, 7.4575, 7.4575, 7.4563, 7.4551, 7.454, 7.4564, 7.4551, 7.4543, 7.4557, 7.4542, 7.4567, 7.4564, 7.4552, 7.454, 7.4527, 7.455, 7.4574, 7.456, 7.4553, 7.4542, 7.4533, 7.4534, 7.4525, 7.4514, 7.45, 7.449, 7.4525, 7.4517, 7.4508, 7.4528, 7.4525, 7.4516, 7.4502, 7.4494, 7.4521, 7.4509, 7.45, 7.4488, 7.4475, 7.4462, 7.4457, 7.4449, 7.4475, 7.4472, 7.4459, 7.4455, 7.4479, 7.4475, 7.4497, 7.4491, 7.4477, 7.4464, 7.4453, 7.4479, 7.4467, 7.4458, 7.4487, 7.4509, 7.4507, 7.4512, 7.4502, 7.4523, 7.4522, 7.4509, 7.4533, 7.4522, 7.451, 7.4499, 7.4498, 7.4525, 7.4514, 7.4511, 7.4501, 7.4522, 7.4509, 7.4498, 7.4519, 7.4524, 7.4511, 7.4534, 7.4523, 7.4547, 7.4551, 7.4542, 7.4529, 7.4519, 7.4508, 7.4519, 7.4585, 7.4575, 7.4564, 7.4554, 7.454, 7.4561, 7.462, 7.4609, 7.4649, 7.4635, 7.4622, 7.4644, 7.463, 7.4628, 7.4617, 7.4613, 7.4601, 7.4626, 7.463, 7.4621, 7.4611, 7.4637, 7.4629, 7.4622, 7.4619, 7.4612, 7.4599, 7.4623, 7.4614, 7.4603, 7.46, 7.4596, 7.4586, 7.4579, 7.4569, 7.4567, 7.4557, 7.458, 7.4569, 7.4591, 7.458, 7.4601, 7.4589, 7.4585, 7.4574, 7.4597, 7.462, 7.4617, 7.4606, 7.46, 7.459, 7.4578, 7.4575, 7.4573, 7.4567, 7.4556, 7.4549, 7.4571, 7.4559, 7.4551, 7.4539, 7.453, 7.4526, 7.455, 7.4574, 7.4565, 7.4554, 7.4547, 7.4546, 7.455, 7.4538, 7.4565, 7.4555, 7.455, 7.4549, 7.4536, 7.4533, 7.4554, 7.4631, 7.4624, 7.4617, 7.4637, 7.4663, 7.4689, 7.4679, 7.4673, 7.4665, 7.4667, 7.4692, 7.4687, 7.468, 7.4673, 7.4694, 7.4681, 7.4671, 7.4658, 7.4653, 7.4641, 7.4631, 7.4622, 7.4619, 7.4619, 7.4607, 7.4597, 7.4624, 7.4612, 7.4607, 7.4626, 7.4618, 7.4641, 7.4629, 7.4651, 7.4649, 7.467, 7.4663, 7.4657, 7.4677, 7.4668, 7.4656, 7.4643, 7.4644, 7.4668, 7.4667, 7.4688, 7.4676, 7.4694, 7.4682, 7.4679, 7.467, 7.4659, 7.4655, 7.4644, 7.4632, 7.4624, 7.4611, 7.46, 7.4619, 7.4616, 7.4642, 7.4635, 7.4622, 7.4609, 7.4604, 7.4594, 7.4615, 7.4612, 7.4605, 7.4624, 7.4621, 7.4611, 7.46, 7.459, 7.4578, 7.4566, 7.4554, 7.458, 7.4568, 7.4653, 7.4643, 7.4696, 7.4684, 7.4702, 7.4725, 7.4747, 7.4735, 7.4727, 7.4714, 7.4703, 7.4705, 7.4707, 7.4702, 7.4697, 7.4699, 7.4701, 7.4693, 7.4683, 7.4672, 7.4669, 7.4668, 7.4689, 7.4679, 7.4678, 7.4667, 7.4657, 7.4645, 7.4666, 7.4656, 7.4645, 7.4635, 7.4632, 7.4635, 7.4624, 7.4612, 7.4605, 7.4597, 7.4594, 7.4584, 7.4585, 7.4589, 7.4577, 7.4569, 7.4558, 7.4555, 7.4544, 7.4563, 7.4561, 7.4555, 7.455, 7.4544, 7.4535, 7.4534, 7.4531, 7.452, 7.4513, 7.4508, 7.4525, 7.4544, 7.4538, 7.4529, 7.4523, 7.4524, 7.4518, 7.4511, 7.4512, 7.453, 7.458, 7.4569, 7.4561, 7.4645, 7.4727, 7.4774, 7.4762, 7.4752, 7.4752, 7.4754, 7.4745, 7.4734, 7.4848, 7.4848, 7.4836, 7.4833, 7.4831, 7.4821, 7.4816, 7.4805, 7.4796, 7.4784, 7.4774, 7.4795, 7.4792, 7.4787, 7.4786, 7.4776, 7.4797, 7.4786, 7.4775, 7.4799, 7.4818, 7.4806, 7.4799, 7.4819, 7.4836, 7.4855, 7.4875, 7.4893, 7.4883, 7.4871, 7.4871, 7.4864, 7.4853, 7.4849, 7.4844, 7.4835, 7.4831, 7.4822, 7.4841, 7.4838, 7.4886, 7.4879, 7.4868, 7.4888, 7.4907, 7.4902, 7.492, 7.4939, 7.4932, 7.4926, 7.4919, 7.4914, 7.4916, 7.4913, 7.4915, 7.4882, 7.4903, 7.4898, 7.4916, 7.4906, 7.4901, 7.4893, 7.4881, 7.487, 7.4866, 7.4864, 7.4886, 7.488, 7.487, 7.486, 7.486, 7.4878, 7.4872, 7.4862, 7.4858, 7.4847, 7.4836, 7.4834, 7.4824, 7.4864, 7.4854, 7.4844, 7.4919, 7.4937, 7.4932, 7.4954, 7.4949, 7.4942, 7.4932, 7.4925, 7.4943, 7.4931, 7.4949, 7.494, 7.4958, 7.4949, 7.4967, 7.4957, 7.4951, 7.4945, 7.4942, 7.4959, 7.4948, 7.494, 7.4934, 7.4952, 7.4944, 7.4933, 7.4924, 7.4913, 7.4902, 7.4891, 7.4883, 7.4878, 7.4871, 7.4865, 7.4854, 7.4843, 7.4842, 7.4836, 7.4829, 7.4824, 7.4845, 7.4862, 7.4851, 7.4843, 7.4863, 7.4842, 7.4852, 7.489, 7.4893, 7.49, 7.4893, 7.4889, 7.4882, 7.49, 7.4899, 7.4888, 7.4885, 7.4879, 7.4935, 7.493, 7.4921, 7.4938, 7.493, 7.4923, 7.4941, 7.496, 7.4954, 7.4948, 7.4964, 7.4982, 7.4978, 7.4967, 7.496, 7.4952, 7.4971, 7.4991, 7.4997, 7.4986, 7.4975, 7.4967, 7.4956, 7.4975, 7.4969, 7.499, 7.5007, 7.5029, 7.5021, 7.5012, 7.5004, 7.5024, 7.5044, 7.5035, 7.5031, 7.5022, 7.5021, 7.5013, 7.5003, 7.4996, 7.5016, 7.5007, 7.5025, 7.5022, 7.504, 7.5029, 7.5024, 7.502, 7.501, 7.5, 7.499, 7.4983, 7.4975, 7.4992, 7.5011, 7.5004, 7.5003, 7.4993, 7.4988, 7.4986, 7.4977, 7.4998, 7.4991, 7.4985, 7.5006, 7.5003, 7.5021, 7.5012, 7.5007, 7.4996, 7.5015, 7.5006, 7.4999, 7.4993, 7.5009, 7.5002, 7.5, 7.4991, 7.5008, 7.5003, 7.4996, 7.4986, 7.4994, 7.4991, 7.4986, 7.5004, 7.5023, 7.5013, 7.501, 7.5, 7.4995, 7.4994, 7.4985, 7.4976, 7.4971, 7.4975, 7.4974, 7.4969, 7.496, 7.4957, 7.4946, 7.4937, 7.4927, 7.4918, 7.4913, 7.4904, 7.4919, 7.4913, 7.4931, 7.4922, 7.4917, 7.4909, 7.4907, 7.4898, 7.493, 7.4977, 7.4968, 7.4963, 7.4982, 7.4976, 7.4974, 7.4964, 7.4959, 7.4948, 7.4966, 7.4971, 7.4987, 7.4978, 7.4968, 7.4958, 7.495, 7.4941, 7.4932, 7.4948, 7.4944, 7.4934, 7.4929, 7.4919, 7.4909, 7.4899, 7.4888, 7.4882, 7.4898, 7.489, 7.4887, 7.4878, 7.4871, 7.4861, 7.488, 7.4873, 7.4891, 7.4882, 7.488, 7.4897, 7.49, 7.4891, 7.4916, 7.4911, 7.4909, 7.4904, 7.49, 7.4894, 7.4885, 7.4878, 7.4871, 7.4864, 7.4855, 7.487, 7.4873, 7.4864, 7.4906, 7.4929, 7.4921, 7.4895, 7.489, 7.4995, 7.4985, 7.4981, 7.4997, 7.4993, 7.4985, 7.5001, 7.4991, 7.499, 7.5006, 7.5026, 7.5017, 7.5014, 7.5004, 7.4996, 7.4988, 7.4979, 7.498, 7.4972, 7.4969, 7.4963, 7.4953, 7.4922, 7.4913, 7.4908, 7.49, 7.4916, 7.4908, 7.4924, 7.4922, 7.4924, 7.4922, 7.4912, 7.4908, 7.4977, 7.4973, 7.4963, 7.4958, 7.4953, 7.4946, 7.4963, 7.4956, 7.4974, 7.4965, 7.4983, 7.4979, 7.4972, 7.4965, 7.4962, 7.4953, 7.4971, 7.4988, 7.4982, 7.4979, 7.4975, 7.4972, 7.4963, 7.4957, 7.4972, 7.4964, 7.4956, 7.4951, 7.4941, 7.4933, 7.4924, 7.492, 7.4936, 7.4928, 7.4899, 7.4915, 7.4906, 7.4898, 7.4915, 7.4931, 7.4948, 7.4938, 7.4936, 7.4933, 7.4948, 7.4938, 7.4938, 7.4952, 7.4943, 7.496, 7.4954, 7.4948, 7.4969, 7.4959, 7.495, 7.494, 7.4955, 7.4971, 7.4986, 7.4979, 7.497, 7.4965, 7.4959, 7.4951, 7.4942, 7.4943, 7.494, 7.4937, 7.4929, 7.4921, 7.4966, 7.4958, 7.4958, 7.4956, 7.4951, 7.4966, 7.496, 7.4975, 7.4972, 7.4988, 7.5006, 7.5, 7.4991, 7.4983, 7.4974, 7.4967, 7.4963, 7.4981, 7.4997, 7.499, 7.4997, 7.4988, 7.4983, 7.498, 7.4978, 7.4993, 7.4985, 7.4981, 7.4974, 7.4982, 7.4975, 7.4972, 7.4988, 7.498, 7.4979, 7.497, 7.4969, 7.4966, 7.4959, 7.4956, 7.4946, 7.4942, 7.4933, 7.4932, 7.4927, 7.4918, 7.491, 7.4901, 7.4898, 7.4891, 7.4906, 7.4902, 7.4917, 7.4908, 7.49, 7.4898, 7.489, 7.4904, 7.4896, 7.4892, 7.4884, 7.4903, 7.4915, 7.491, 7.4902, 7.4895, 7.4886, 7.4878, 7.4895, 7.4887, 7.4883, 7.4874, 7.4871, 7.4867, 7.4865, 7.4859, 7.4855, 7.4848, 7.4862, 7.4861, 7.4861, 7.4832, 7.485, 7.4866, 7.4863, 7.4834, 7.485, 7.4867, 7.4858, 7.4852, 7.4869, 7.4861, 7.4853, 7.4845, 7.4836, 7.4827, 7.4819, 7.4832, 7.4826, 7.4818, 7.481, 7.4804, 7.4799, 7.4789, 7.4784, 7.4775, 7.4767, 7.4759, 7.4774, 7.4771, 7.4761, 7.4776, 7.4772, 7.4785, 7.4801, 7.4794, 7.4789, 7.4782, 7.4783, 7.4778, 7.4778, 7.4774, 7.4771, 7.4762, 7.4754, 7.4751, 7.4743, 7.4735, 7.4734, 7.4748, 7.474, 7.4754, 7.4751, 7.4743, 7.4737, 7.4839, 7.483, 7.4827, 7.482, 7.4836, 7.4829, 7.4829, 7.4821, 7.4818, 7.4814, 7.4828, 7.4825, 7.4816, 7.4809, 7.4807, 7.4802, 7.4793, 7.4784, 7.4776, 7.4788, 7.4784, 7.4779, 7.477, 7.4819, 7.481, 7.4802, 7.4796, 7.4788, 7.4764, 7.478, 7.4777, 7.4802, 7.4793, 7.4785, 7.4777, 7.4769, 7.4764, 7.4761, 7.4756, 7.4747, 7.4762, 7.4753, 7.4768, 7.476, 7.4756, 7.477, 7.4768, 7.4759, 7.4753, 7.4752, 7.4745, 7.4743, 7.4737, 7.473, 7.4722, 7.4716, 7.4707, 7.4721, 7.4712, 7.4704, 7.4698, 7.4702, 7.4697, 7.4721, 7.4714, 7.4722, 7.4736, 7.4727, 7.4742, 7.4748, 7.4746, 7.4738, 7.4734, 7.4748, 7.474, 7.4738, 7.4729, 7.4721, 7.4716, 7.4707, 7.4701, 7.4715, 7.4708, 7.4702, 7.4695, 7.4692, 7.4691, 7.4684, 7.4698, 7.4694, 7.4687, 7.4689, 7.4681, 7.4676, 7.4672, 7.4664, 7.4678, 7.467, 7.4663, 7.4679, 7.4694, 7.471, 7.4702, 7.4697, 7.4712, 7.4704, 7.4719, 7.4712, 7.4707, 7.4722, 7.4737, 7.4729, 7.4724, 7.4723, 7.4717, 7.4711, 7.4751, 7.4743, 7.4739, 7.4735, 7.4772, 7.4788, 7.4801, 7.4816, 7.4813, 7.4807, 7.4799, 7.4803, 7.4799, 7.4791, 7.4784, 7.4777, 7.4773, 7.4748, 7.4742, 7.474, 7.4733, 7.4711, 7.4706, 7.4724, 7.4719, 7.4711, 7.4703, 7.4696, 7.4715, 7.4713, 7.4718, 7.4712, 7.4707, 7.4702, 7.4716, 7.4713, 7.4709, 7.4702, 7.4717, 7.4714, 7.4708, 7.4723, 7.4735, 7.4727, 7.4726, 7.4722, 7.4718, 7.471, 7.471, 7.4706, 7.4721, 7.4736, 7.4749, 7.4765, 7.4761, 7.4754, 7.4746, 7.4741, 7.4782, 7.4775, 7.4772, 7.4765, 7.4758, 7.4773, 7.4767, 7.4811, 7.4827, 7.4841, 7.4858, 7.4851, 7.4864, 7.4857, 7.4852, 7.4847, 7.4839, 7.4833, 7.4824, 7.4839, 7.4833, 7.4824, 7.4837, 7.4835, 7.4832, 7.4839, 7.484, 7.4854, 7.4866, 7.4861, 7.4876, 7.487, 7.4865, 7.4895, 7.4889, 7.4891, 7.4885, 7.488, 7.4894, 7.4911, 7.4909, 7.4909, 7.4906, 7.4921, 7.4937, 7.4931, 7.4927, 7.4918, 7.4911, 7.4924, 7.4917, 7.4915, 7.4908, 7.4922, 7.4918, 7.4913, 7.4906, 7.4919, 7.4911, 7.4943, 7.494, 7.4933, 7.4946, 7.4946, 7.4939, 7.4954, 7.4952, 7.4947, 7.4941, 7.4933, 7.4927, 7.4921, 7.4915, 7.4911, 7.4907, 7.4899, 7.49, 7.4898, 7.489, 7.4889, 7.4903, 7.4899, 7.4981, 7.4975, 7.4968, 7.498, 7.5014, 7.501, 7.5002, 7.4994, 7.499, 7.4989, 7.4985, 7.4981, 7.4977, 7.4973, 7.4966, 7.4963, 7.4956, 7.4948, 7.496, 7.4958, 7.4954, 7.4949, 7.4941, 7.4933, 7.4925, 7.4924, 7.4938, 7.4953, 7.4949, 7.4942, 7.4935, 7.4928, 7.4923, 7.4915, 7.4908, 7.4904, 7.4896, 7.4889, 7.4881, 7.4876, 7.4894, 7.4889, 7.4886, 7.4878, 7.4872, 7.4872, 7.4886, 7.4882, 7.4879, 7.4876, 7.4872, 7.4864, 7.4856, 7.4851, 7.4845, 7.484, 7.4832, 7.4824, 7.484, 7.4852, 7.4848, 7.4841, 7.4836, 7.4829, 7.4842, 7.4842, 7.484, 7.4841, 7.4839, 7.4834, 7.4832, 7.4825, 7.4822, 7.482, 7.4815, 7.4807, 7.4804, 7.4803, 7.4796, 7.4808, 7.4801, 7.48, 7.4794, 7.4808, 7.4846, 7.4847, 7.484, 7.4836, 7.483, 7.4822, 7.4836, 7.4849, 7.4842, 7.4838, 7.4832, 7.4832, 7.4825, 7.4821, 7.4816, 7.4809, 7.4805, 7.4799, 7.4797, 7.4789, 7.4786, 7.4783, 7.4776, 7.4773, 7.4786, 7.4779, 7.478, 7.4786, 7.4795, 7.4808, 7.4851, 7.4852, 7.4852, 7.4844, 7.4856, 7.4853, 7.4851, 7.4864, 7.4878, 7.487, 7.4863, 7.4855, 7.4852, 7.4844, 7.4841, 7.4853, 7.4846, 7.4845, 7.4859, 7.4854, 7.4866, 7.486, 7.4853, 7.4848, 7.4862, 7.4877, 7.4874, 7.4867, 7.4865, 7.4857, 7.4871, 7.4883, 7.4877, 7.4874, 7.4853, 7.4847, 7.4842, 7.4834, 7.4827, 7.484, 7.4837, 7.4849, 7.4863, 7.4858, 7.487, 7.4883, 7.4899, 7.4875, 7.4867, 7.4862, 7.4859, 7.4855, 7.4862, 7.4854, 7.4846, 7.4844, 7.4837, 7.4849, 7.4847, 7.484, 7.4818, 7.4818, 7.483, 7.4823, 7.4878, 7.4872, 7.487, 7.4863, 7.4876, 7.4874, 7.4867, 7.4879, 7.4872, 7.4864, 7.4856, 7.4851, 7.4848, 7.4844, 7.484, 7.4895, 7.4888, 7.4882, 7.4879, 7.4893, 7.4904, 7.4897, 7.4891, 7.4903, 7.4919, 7.4914, 7.4907, 7.4905, 7.4902, 7.4903, 7.4895, 7.4888, 7.4885, 7.4881, 7.4877, 7.4871, 7.4868, 7.4861, 7.4854, 7.4846, 7.4842, 7.4839, 7.4836, 7.4828, 7.4823, 7.4822, 7.4815, 7.4906, 7.4902, 7.4897, 7.492, 7.4929, 7.4942, 7.4941, 7.4938, 7.4953, 7.4946, 7.4939, 7.4932, 7.4926, 7.4921, 7.4934, 7.4928, 7.4924, 7.4936, 7.4929, 7.4922, 7.4917, 7.491, 7.4903, 7.4902, 7.4899, 7.4911, 7.4923, 7.4916, 7.4909, 7.4921, 7.4918, 7.4911, 7.4923, 7.4916, 7.4909, 7.4921, 7.4934, 7.4926, 7.4919, 7.4912, 7.4891, 7.4885, 7.4898, 7.4896, 7.4895, 7.4888, 7.4882, 7.4894, 7.4892, 7.4904, 7.4904, 7.4897, 7.489, 7.4883, 7.488, 7.4894, 7.4891, 7.4888, 7.4881, 7.4892, 7.4904, 7.4907, 7.4901, 7.4893, 7.4887, 7.488, 7.4873, 7.487, 7.487, 7.4883, 7.4882, 7.4917, 7.4911, 7.496, 7.4953, 7.4949, 7.4943, 7.4937, 7.4931, 7.4923, 7.4936, 7.4948, 7.4941, 7.4936, 7.4929, 7.4921, 7.4914, 7.4908, 7.4902, 7.4903, 7.4898, 7.4891, 7.4887, 7.4882, 7.4911, 7.4904, 7.4897, 7.4891, 7.4887, 7.4882, 7.4875, 7.4869, 7.4883, 7.4876, 7.4889, 7.4884, 7.4878, 7.4877, 7.4875, 7.4886, 7.4882, 7.4946, 7.4942, 7.4935, 7.4946, 7.4956, 7.4967, 7.4961, 7.4955, 7.4967, 7.4987, 7.4999, 7.5011, 7.5007, 7.5005, 7.5001, 7.5003, 7.5001, 7.4997, 7.5026, 7.5022, 7.5034, 7.5029, 7.5025, 7.502, 7.5015, 7.5027, 7.5024, 7.5023, 7.5016, 7.501, 7.5007, 7.5018, 7.5013, 7.5023, 7.5018, 7.5012, 7.5005, 7.5003, 7.5, 7.4993, 7.4987, 7.4984, 7.4978, 7.4971, 7.4983, 7.4976, 7.4969, 7.4967, 7.4962, 7.4957, 7.4956, 7.4951, 7.4947, 7.496, 7.4959, 7.4973, 7.4969, 7.498, 7.4973, 7.4967, 7.4963, 7.4962, 7.4955, 7.495, 7.4948, 7.4944, 7.4942, 7.494, 7.4934, 7.4928, 7.494, 7.4951, 7.4952, 7.4945, 7.4938, 7.4974, 7.4968, 7.4964, 7.4959, 7.4962, 7.4965, 7.4976, 7.4987, 7.4982, 7.4978, 7.4972, 7.497, 7.497, 7.4963, 7.496, 7.4954, 7.4967, 7.498, 7.4973, 7.4971, 7.4965, 7.4959, 7.4952, 7.4947, 7.4944, 7.4937, 7.4932, 7.4931, 7.4942, 7.4955, 7.4948, 7.4961, 7.4973, 7.4985, 7.4979, 7.4973, 7.4967, 7.4978, 7.4972, 7.5034, 7.5032, 7.5043, 7.5056, 7.5049, 7.5063, 7.5074, 7.5088, 7.5099, 7.5093, 7.5087, 7.51, 7.5101, 7.5098, 7.5091, 7.5103, 7.51, 7.5094, 7.5088, 7.5086, 7.5098, 7.5097, 7.509, 7.5103, 7.5097, 7.5094, 7.5106, 7.5121, 7.5115, 7.5109, 7.5102, 7.5113, 7.5107, 7.51, 7.5094, 7.5093, 7.5088, 7.5082, 7.5096, 7.509, 7.5087, 7.508, 7.5074, 7.5067, 7.5064, 7.5061, 7.5057, 7.505, 7.5044, 7.5042, 7.5026, 7.5019, 7.5013, 7.5011, 7.5009, 7.5006, 7.502, 7.5032, 7.5029, 7.5023, 7.5017, 7.503, 7.5023, 7.5017, 7.5011, 7.5008, 7.5005, 7.5002, 7.4999, 7.4999, 7.5014, 7.5008, 7.5002, 7.4999, 7.4998, 7.4992, 7.4986, 7.4997, 7.4992, 7.5003, 7.5013, 7.501, 7.5022, 7.5015, 7.5008, 7.5005, 7.5017, 7.5011, 7.5007, 7.5005, 7.5005, 7.5001, 7.5011, 7.5021, 7.5033, 7.5026, 7.502, 7.5031, 7.5025, 7.5018, 7.5011, 7.5011, 7.5005, 7.5, 7.4996, 7.5006, 7.5017, 7.5014, 7.5026, 7.5019, 7.503, 7.5024, 7.5018, 7.503, 7.5042, 7.504, 7.5036, 7.5029, 7.5025, 7.5036, 7.503, 7.5028, 7.5039, 7.5052, 7.5065, 7.506, 7.5159, 7.5157, 7.5198, 7.5181, 7.5177, 7.5172, 7.5185, 7.5178, 7.5188, 7.52, 7.5193, 7.5188, 7.5181, 7.5192, 7.5191, 7.5188, 7.5182, 7.5165, 7.516, 7.5162, 7.5155, 7.5168, 7.5165, 7.5162, 7.5155, 7.5152, 7.5146, 7.5139, 7.5133, 7.5144, 7.5138, 7.5136, 7.5132, 7.5128, 7.5127, 7.5139, 7.5149, 7.5147, 7.5144, 7.5147, 7.5157, 7.5152, 7.5146, 7.5157, 7.5154, 7.5152, 7.5163, 7.5158, 7.5158, 7.517, 7.5164, 7.5157, 7.5186, 7.518, 7.5177, 7.5175, 7.5168, 7.5163, 7.5158, 7.5171, 7.5165, 7.5159, 7.5156, 7.5151, 7.5146, 7.5143, 7.514, 7.5134, 7.5132, 7.513, 7.514, 7.5139, 7.5132, 7.5125, 7.512, 7.5113, 7.5108, 7.5102, 7.5096, 7.5091, 7.51, 7.5096, 7.509, 7.5084, 7.5083, 7.5078, 7.5074, 7.5077, 7.5071, 7.5083, 7.5095, 7.5093, 7.5095, 7.5094, 7.5087, 7.5083, 7.5098, 7.5112, 7.511, 7.512, 7.5115, 7.5113, 7.5109, 7.5109, 7.5103, 7.5097, 7.5097, 7.511, 7.5108, 7.5119, 7.5116, 7.5112, 7.5109, 7.5119, 7.512, 7.5115, 7.511, 7.5111, 7.5107, 7.5105, 7.5105, 7.5105, 7.5116, 7.511, 7.5104, 7.5099, 7.5111, 7.5106, 7.51, 7.5111, 7.5106, 7.5104, 7.5098, 7.5109, 7.5104, 7.5099, 7.5094, 7.5093, 7.5104, 7.5149, 7.5175, 7.522, 7.522, 7.5241, 7.5235, 7.523, 7.5228, 7.5225, 7.522, 7.5232, 7.5231, 7.5241, 7.5253, 7.5247, 7.5244, 7.5238, 7.5233, 7.5227, 7.5222, 7.5253, 7.5247, 7.5258, 7.5268, 7.5262, 7.5256, 7.5249, 7.5246, 7.524, 7.5234, 7.5245, 7.5256, 7.5268, 7.5278, 7.5272, 7.5266, 7.5262, 7.5263, 7.5258, 7.5268, 7.5262, 7.5276, 7.5273, 7.5271, 7.5265, 7.5265, 7.5275, 7.5269, 7.5264, 7.5259, 7.527, 7.5268, 7.5262, 7.5256, 7.5254, 7.5247, 7.5243, 7.5241, 7.5252, 7.525, 7.5244, 7.5255, 7.5249, 7.5245, 7.5241, 7.5234, 7.5244, 7.5255, 7.5249, 7.5245, 7.524, 7.5273, 7.5284, 7.5279, 7.5273, 7.5273, 7.5269, 7.5263, 7.526, 7.5254, 7.5263, 7.5259, 7.5255, 7.5249, 7.5244, 7.5239, 7.5233, 7.5243, 7.5239, 7.5249, 7.5249, 7.5249, 7.5246, 7.5245, 7.5275, 7.5272, 7.5268, 7.5265, 7.5259, 7.5254, 7.5248, 7.5257, 7.5251, 7.5246, 7.524, 7.5234, 7.5236, 7.5247, 7.5242, 7.5238, 7.522, 7.5218, 7.523, 7.5242, 7.524, 7.5252, 7.5246, 7.5243, 7.5237, 7.5232, 7.5244, 7.524, 7.5235, 7.5232, 7.523, 7.5226, 7.5236, 7.5247, 7.5259, 7.5255, 7.5265, 7.526, 7.5255, 7.5252, 7.5263, 7.5261, 7.5256, 7.525, 7.5261, 7.527, 7.5264, 7.5258, 7.5256, 7.527, 7.5264, 7.5258, 7.5252, 7.5246, 7.524, 7.5234, 7.5229, 7.5224, 7.5234, 7.5229, 7.5225, 7.522, 7.5214, 7.521, 7.522, 7.5218, 7.5304, 7.53, 7.53, 7.531, 7.5306, 7.5317, 7.5311, 7.5308, 7.5395, 7.5392, 7.5386, 7.5392, 7.539, 7.54, 7.5397, 7.5392, 7.5401, 7.5397, 7.5391, 7.5392, 7.5406, 7.5388, 7.5383, 7.5392, 7.5387, 7.5382, 7.5379, 7.5378, 7.5391, 7.5387, 7.5396, 7.539, 7.5384, 7.5383, 7.5395, 7.5394, 7.5404, 7.5402, 7.54, 7.5395, 7.5391, 7.5384, 7.5378, 7.5372, 7.5385, 7.5383, 7.5411, 7.5405, 7.5399, 7.5396, 7.5389, 7.5383, 7.538, 7.5394, 7.5394, 7.5404, 7.5414, 7.5409, 7.5411, 7.5406, 7.54, 7.5394, 7.5403, 7.5399, 7.5394, 7.5391, 7.5402, 7.5399, 7.5396, 7.5392, 7.54, 7.5396, 7.539, 7.5372, 7.5383, 7.5392, 7.5386, 7.538, 7.5389, 7.5398, 7.5397, 7.5391, 7.54, 7.5396, 7.5378, 7.5374, 7.537, 7.538, 7.5379, 7.539, 7.5388, 7.5397, 7.5391, 7.5386, 7.538, 7.5379, 7.5377, 7.5373, 7.5384, 7.5378, 7.5376, 7.5375, 7.537, 7.5365, 7.5369, 7.5363, 7.536, 7.5361, 7.5362, 7.5373, 7.5381, 7.5376, 7.5386, 7.5387, 7.5387, 7.5387, 7.5382, 7.5386, 7.5382, 7.5377, 7.5387, 7.5398, 7.5394, 7.5398, 7.5422, 7.5454, 7.55, 7.5496, 7.5506, 7.5501, 7.5498, 7.5493, 7.549, 7.5485, 7.5495, 7.5492, 7.5501, 7.5495, 7.5492, 7.5501, 7.55, 7.5496, 7.5506, 7.55, 7.5494, 7.5503, 7.5502, 7.5496, 7.5498, 7.5522, 7.5546, 7.5542, 7.5539, 7.5535, 7.5531, 7.5513, 7.5507, 7.5516, 7.551, 7.5504, 7.5498, 7.5507, 7.5504, 7.55, 7.5494, 7.5493, 7.5487, 7.5483, 7.5477, 7.5486, 7.5487, 7.5483, 7.5477, 7.5486, 7.5495, 7.5504, 7.5499, 7.5496, 7.5505, 7.5501, 7.5495, 7.5504, 7.5512, 7.5506, 7.55, 7.5509, 7.5506, 7.55, 7.5496, 7.5492, 7.5487, 7.5496, 7.5492, 7.5487, 7.5483, 7.5478, 7.5486, 7.5495, 7.5492, 7.5486, 7.5483, 7.5493, 7.5501, 7.5495, 7.5493, 7.5489, 7.5487, 7.5481, 7.5479, 7.5477, 7.5485, 7.548, 7.5478, 7.5516, 7.5511, 7.552, 7.553, 7.5524, 7.5519, 7.5515, 7.5525, 7.5526, 7.5521, 7.5515, 7.5513, 7.5508, 7.5506, 7.5502, 7.5513, 7.551, 7.5507, 7.5501, 7.5498, 7.5508, 7.5502, 7.55, 7.5509, 7.552, 7.5515, 7.5509, 7.5506, 7.5502, 7.5497, 7.5505, 7.5504, 7.55, 7.5497, 7.5498, 7.5492, 7.5487, 7.5496, 7.5491, 7.5491, 7.5486, 7.5496, 7.5492, 7.5486, 7.548, 7.5476, 7.5473, 7.5483, 7.5493, 7.549, 7.5487, 7.5483, 7.548, 7.5488, 7.55, 7.5497, 7.551, 7.5507, 7.5504, 7.5517, 7.5527, 7.5522, 7.5519, 7.5528, 7.5514, 7.551, 7.5567, 7.5564, 7.5559, 7.5556, 7.5544, 7.555, 7.5545, 7.5542, 7.5542, 7.5538, 7.5547, 7.5545, 7.5541, 7.5537, 7.5535, 7.5533, 7.5531, 7.5526, 7.5523, 7.5543, 7.5538, 7.5548, 7.5543, 7.5542, 7.5537, 7.5545, 7.554, 7.555, 7.5547, 7.5547, 7.5541, 7.5551, 7.5546, 7.5528, 7.5538, 7.5547, 7.5545, 7.5539, 7.5534, 7.553, 7.5526, 7.5521, 7.5518, 7.5516, 7.5511, 7.5505, 7.5514, 7.5512, 7.5522, 7.5516, 7.551, 7.5494, 7.5503, 7.5502, 7.551, 7.5504, 7.5511, 7.5508, 7.5503, 7.5499, 7.5483, 7.5467, 7.5463, 7.5459, 7.5454, 7.5465, 7.5462, 7.5459, 7.5459, 7.5456, 7.5467, 7.5477, 7.5479, 7.5474, 7.5471, 7.5469, 7.5468, 7.5477, 7.5475, 7.5459, 7.5455, 7.5452, 7.5452, 7.545, 7.5444, 7.5444, 7.5441, 7.5439, 7.5437, 7.5446, 7.5444, 7.5441, 7.5438, 7.5435, 7.5429, 7.5425, 7.5419, 7.542, 7.5431, 7.5427, 7.5423, 7.5434, 7.543, 7.5425, 7.545, 7.5444, 7.544, 7.5438, 7.5447, 7.5456, 7.5441, 7.5438, 7.5436, 7.5445, 7.544, 7.5449, 7.5445, 7.544, 7.544, 7.5438, 7.5435, 7.5445, 7.5444, 7.5447, 7.5443, 7.5439, 7.5435, 7.5432, 7.5433, 7.5428, 7.5424, 7.542, 7.5429, 7.5438, 7.5436, 7.5431, 7.5428, 7.5423, 7.542, 7.5415, 7.5411, 7.5421, 7.5418, 7.5427, 7.5436, 7.5436, 7.5431, 7.5441, 7.5436, 7.5432, 7.5426, 7.5435, 7.5433, 7.5429, 7.5439, 7.5449, 7.5447, 7.5433, 7.5418, 7.5413, 7.5408, 7.5405, 7.5403, 7.5398, 7.5393, 7.5389, 7.5398, 7.5396, 7.5393, 7.5388, 7.5397, 7.5406, 7.5405, 7.54, 7.5397, 7.5391, 7.5401, 7.5398, 7.5421, 7.5415, 7.5413, 7.5409, 7.5486, 7.5495, 7.5491, 7.5486, 7.5481, 7.5475, 7.5485, 7.5482, 7.5491, 7.5485, 7.548, 7.5476, 7.5475, 7.547, 7.5468, 7.5476, 7.5471, 7.5468, 7.5468, 7.5464, 7.5459, 7.5454, 7.5439, 7.5437, 7.5435, 7.5445, 7.5456, 7.545, 7.5445, 7.5442, 7.5437, 7.5446, 7.5441, 7.5436, 7.5433, 7.542, 7.5416, 7.5411, 7.5406, 7.5401, 7.5411, 7.5407, 7.5402, 7.5397, 7.5392, 7.5389, 7.5384, 7.5382, 7.538, 7.5375, 7.537, 7.5368, 7.5378, 7.5374, 7.5384, 7.538, 7.5377, 7.5363, 7.5373, 7.537, 7.5366, 7.5364, 7.536, 7.5356, 7.5365, 7.5374, 7.5373, 7.5373, 7.5368, 7.5364, 7.536, 7.5357, 7.5353, 7.5364, 7.5373, 7.5368, 7.5364, 7.536, 7.5359, 7.5355, 7.5352, 7.5347, 7.5345, 7.5342, 7.5351, 7.5349, 7.5346, 7.5344, 7.5342, 7.5338, 7.5333, 7.5328, 7.5327, 7.5324, 7.5332, 7.5327, 7.5323, 7.5318, 7.5316, 7.5312, 7.531, 7.531, 7.5319, 7.5315, 7.5311, 7.5331, 7.533, 7.534, 7.5338, 7.5349, 7.5345, 7.5342, 7.5337, 7.5335, 7.5333, 7.5342, 7.5344, 7.5354, 7.5353, 7.5348, 7.5357, 7.5354, 7.5352, 7.5347, 7.5342, 7.5341, 7.5338, 7.5336, 7.5322, 7.5317, 7.5313, 7.531, 7.5318, 7.5313, 7.5309, 7.5307, 7.5303, 7.5298, 7.5296, 7.5307, 7.5303, 7.5312, 7.5307, 7.5305, 7.5303, 7.5313, 7.5311, 7.5307, 7.5316, 7.5329, 7.5325, 7.5353, 7.5357, 7.5355, 7.5354, 7.5364, 7.5362, 7.5358, 7.5358, 7.5357, 7.5353, 7.535, 7.5348, 7.5346, 7.5342, 7.5337, 7.5345, 7.534, 7.5338, 7.5335, 7.5334, 7.533, 7.5379, 7.5388, 7.5396, 7.5404, 7.54, 7.5396, 7.5391, 7.5386, 7.5385, 7.538, 7.5378, 7.5362, 7.5361, 7.5356, 7.5353, 7.535, 7.5346, 7.5355, 7.535, 7.5345, 7.5354, 7.5349, 7.5344, 7.5339, 7.5347, 7.5344, 7.5339, 7.5348, 7.5358, 7.5356, 7.5351, 7.5347, 7.5347, 7.5342, 7.5337, 7.5336, 7.5332, 7.5328, 7.5337, 7.5336, 7.5335, 7.5332, 7.5332, 7.5328, 7.5327, 7.5329, 7.5325, 7.5321, 7.5342, 7.5337, 7.5336, 7.5331, 7.532, 7.5316, 7.5313, 7.5308, 7.5304, 7.53, 7.5336, 7.5333, 7.533, 7.5326, 7.5336, 7.5334, 7.5343, 7.5343, 7.534, 7.5349, 7.5357, 7.5365, 7.5387, 7.5385, 7.5381, 7.5376, 7.5371, 7.5365, 7.5402, 7.5397, 7.5393, 7.5392, 7.5388, 7.5385, 7.5382, 7.5377, 7.5385, 7.5422, 7.5423, 7.5419, 7.5428, 7.5423, 7.5418, 7.5426, 7.5423, 7.5422, 7.5417, 7.5412, 7.5407, 7.5416, 7.5412, 7.5421, 7.5416, 7.5424, 7.542, 7.5417, 7.5428, 7.5425, 7.542, 7.5415, 7.5423, 7.5422, 7.5419, 7.5417, 7.5414, 7.5411, 7.5406, 7.5402, 7.5397, 7.5392, 7.5388, 7.5396, 7.5393, 7.5389, 7.5384, 7.5384, 7.5379, 7.5374, 7.5382, 7.5379, 7.5374, 7.5423, 7.542, 7.5428, 7.5423, 7.5418, 7.5413, 7.5408, 7.5407, 7.5404, 7.5477, 7.552, 7.5527, 7.5535, 7.553, 7.5516, 7.5514, 7.5511, 7.5496, 7.5503, 7.5511, 7.5506, 7.5502, 7.5497, 7.5493, 7.5489, 7.5499, 7.5503, 7.5499, 7.5496, 7.5493, 7.5489, 7.5484, 7.5481, 7.5477, 7.5474, 7.5481, 7.5479, 7.5478, 7.5475, 7.5472, 7.547, 7.5465, 7.546, 7.5456, 7.5451, 7.5446, 7.5444, 7.5439, 7.5447, 7.5455, 7.5464, 7.5459, 7.5456, 7.5453, 7.5462, 7.5458, 7.5454, 7.5449, 7.5444, 7.55, 7.5495, 7.5503, 7.553, 7.5538, 7.5536, 7.5538, 7.5537, 7.5535, 7.5544, 7.5551, 7.5561, 7.556, 7.5569, 7.5565, 7.556, 7.5555, 7.5576, 7.5571, 7.5566, 7.5574, 7.5573, 7.5569, 7.5567, 7.5565, 7.5563, 7.556, 7.556, 7.556, 7.5557, 7.5556, 7.5565, 7.5561, 7.5556, 7.5554, 7.5562, 7.5557, 7.5554, 7.5561, 7.5569, 7.5566, 7.5574, 7.5569, 7.5577, 7.5584, 7.5592, 7.5588, 7.5583, 7.5592, 7.5588, 7.5586, 7.5606, 7.5604, 7.56, 7.5595, 7.5605, 7.5614, 7.5621, 7.5629, 7.5627, 7.5634, 7.5629, 7.5631, 7.5629, 7.5638, 7.5636, 7.5632, 7.5629, 7.5627, 7.5626, 7.5635, 7.563, 7.5626, 7.5625, 7.562, 7.5619, 7.5626, 7.5621, 7.5628, 7.5649, 7.5644, 7.5643, 7.5652, 7.5648, 7.5662, 7.5658, 7.5654, 7.5662, 7.567, 7.5668, 7.5664, 7.5659, 7.5656, 7.5652, 7.5649, 7.5649, 7.5646, 7.5641, 7.5639, 7.5637, 7.5632, 7.5627, 7.5623, 7.562, 7.5624, 7.5613, 7.5609, 7.5618, 7.5626, 7.5621, 7.5617, 7.5613, 7.5608, 7.5596, 7.5593, 7.5603, 7.56, 7.5595, 7.5593, 7.56, 7.5597, 7.5592, 7.559, 7.5586, 7.5581, 7.5568, 7.5612, 7.5599, 7.5632, 7.5628, 7.5642, 7.5637, 7.5634, 7.5643, 7.5631, 7.5628, 7.5636, 7.5653, 7.5668, 7.5655, 7.5686, 7.5699, 7.5696, 7.5691, 7.5689, 7.5696, 7.5694, 7.5691, 7.5688, 7.5688, 7.5684, 7.568, 7.5676, 7.5684, 7.5682, 7.5679, 7.5674, 7.5682, 7.5678, 7.5686, 7.5682, 7.5689, 7.5686, 7.5681, 7.5695, 7.5738, 7.5736, 7.5733, 7.5728, 7.5726, 7.5746, 7.5744, 7.5759, 7.5766, 7.5761, 7.5768, 7.5766, 7.5763, 7.5762, 7.5773, 7.5771, 7.5769, 7.5767, 7.5763, 7.5758, 7.5766, 7.5765, 7.5763, 7.5762, 7.576, 7.5755, 7.575, 7.5749, 7.5745, 7.5755, 7.5763, 7.576, 7.5755, 7.5752, 7.576, 7.5756, 7.5752, 7.5749, 7.5749, 7.5744, 7.574, 7.5737, 7.5736, 7.5732, 7.573, 7.5728, 7.5724, 7.5721, 7.5716, 7.5713, 7.5722, 7.5717, 7.5716, 7.5738, 7.5733, 7.5729, 7.5725, 7.5721, 7.5731, 7.5728, 7.5723, 7.5731, 7.5729, 7.5725, 7.572, 7.5719, 7.5718, 7.5717, 7.5716, 7.5711, 7.5708, 7.5704, 7.57, 7.5696, 7.5692, 7.5688, 7.5683, 7.5702, 7.5699, 7.5695, 7.5692, 7.5687, 7.5688, 7.5683, 7.5679, 7.5687, 7.5684, 7.568, 7.5679, 7.5686, 7.5687, 7.5686, 7.5687, 7.5683, 7.569, 7.5688, 7.5686, 7.5684, 7.5679, 7.5676, 7.5674, 7.5672, 7.5669, 7.5675, 7.5671, 7.5668, 7.5663, 7.567, 7.5678, 7.5674, 7.5669, 7.5677, 7.5676, 7.5673, 7.5669, 7.5677, 7.5673, 7.567, 7.5666, 7.5663, 7.5661, 7.5661, 7.5659, 7.5655, 7.5651, 7.5658, 7.5665, 7.566, 7.5656, 7.5656, 7.5651, 7.5648, 7.5647, 7.5642, 7.5649, 7.5658, 7.5655, 7.5662, 7.5658, 7.5657, 7.5664, 7.5672, 7.567, 7.5678, 7.5685, 7.5692, 7.5689, 7.5684, 7.568, 7.5687, 7.5694, 7.5691, 7.5686, 7.5684, 7.5679, 7.5676, 7.5685, 7.568, 7.5678, 7.5674, 7.567, 7.5677, 7.5685, 7.5684, 7.5683, 7.568, 7.5676, 7.5675, 7.5671, 7.5711, 7.5709, 7.5705, 7.5713, 7.5709, 7.5704, 7.5712, 7.5708, 7.5706, 7.5705, 7.5701, 7.5701, 7.5708, 7.5705, 7.57, 7.5698, 7.5705, 7.5715, 7.5711, 7.5708, 7.5715, 7.5714, 7.571, 7.5706, 7.5713, 7.5721, 7.5728, 7.5724, 7.5711, 7.5709, 7.5706, 7.5704, 7.5711, 7.5706, 7.5704, 7.5701, 7.5697, 7.5699, 7.5695, 7.5691, 7.5688, 7.5684, 7.568, 7.5676, 7.5672, 7.5668, 7.5666, 7.5664, 7.566, 7.5668, 7.5655, 7.5663, 7.5671, 7.5669, 7.5666, 7.5674, 7.568, 7.5677, 7.5685, 7.5681, 7.5688, 7.5684, 7.5684, 7.5679, 7.5677, 7.5665, 7.5673, 7.5684, 7.5683, 7.5687, 7.5683, 7.568, 7.5711, 7.5707, 7.5704, 7.5701, 7.5727, 7.5725, 7.5712, 7.5708, 7.5704, 7.57, 7.5686, 7.57, 7.5708, 7.5741, 7.5731, 7.5734, 7.5741, 7.5738, 7.5747, 7.5742, 7.5737, 7.5735, 7.5731, 7.5731, 7.573, 7.5728, 7.5724, 7.5732, 7.5729, 7.5724, 7.5721, 7.573, 7.5726, 7.5726, 7.5721, 7.5718, 7.5716, 7.5724, 7.5723, 7.572, 7.5718, 7.5713, 7.5715, 7.5714, 7.5709, 7.5705, 7.5702, 7.5703, 7.5714, 7.5712, 7.571, 7.5728, 7.5725, 7.5731, 7.5727, 7.5725, 7.572, 7.572, 7.5716, 7.5719, 7.5715, 7.5725, 7.5723, 7.5754, 7.5765, 7.5763, 7.5758, 7.5754, 7.5761, 7.5747, 7.5744, 7.5741, 7.5737, 7.5745, 7.5742, 7.5749, 7.5756, 7.5752, 7.5748, 7.5744, 7.5743, 7.5739, 7.5737, 7.5735, 7.5735, 7.5731, 7.5726, 7.5722, 7.5753, 7.5748, 7.5744, 7.5741, 7.574, 7.5737, 7.5733, 7.5729, 7.5725, 7.5722, 7.5719, 7.5718, 7.5727, 7.5724, 7.5719, 7.5715, 7.5712, 7.5718, 7.5729, 7.5737, 7.574, 7.5738, 7.5744, 7.5739, 7.5726, 7.5714, 7.5716, 7.5724, 7.5711, 7.5707, 7.5703, 7.5701, 7.5708, 7.5706, 7.5704, 7.5703, 7.5699, 7.5697, 7.5693, 7.5716, 7.5712, 7.573, 7.5739, 7.5736, 7.5732, 7.5732, 7.5729, 7.5725, 7.5732, 7.5727, 7.5734, 7.573, 7.5754, 7.5753, 7.5749, 7.575, 7.5758, 7.5754, 7.575, 7.5746, 7.5742, 7.5738, 7.5737, 7.5733, 7.5741, 7.5739, 7.5737, 7.5733, 7.5729, 7.5729, 7.5727, 7.5725, 7.5721, 7.5718, 7.5717, 7.5715, 7.5723, 7.5729, 7.5725, 7.5733, 7.5729, 7.5725, 7.5721, 7.5718, 7.5726, 7.5724, 7.5723, 7.5719, 7.5716, 7.5715, 7.5711, 7.5718, 7.5715, 7.5714, 7.5711, 7.5707, 7.5715, 7.5712, 7.5719, 7.5715, 7.5711, 7.5718, 7.5716, 7.5723, 7.5732, 7.5728, 7.5736, 7.5737, 7.5744, 7.5743, 7.5739, 7.5748, 7.5755, 7.5753, 7.5761, 7.5758, 7.5757, 7.5754, 7.575, 7.5748, 7.5744, 7.574, 7.5738, 7.5734, 7.573, 7.5728, 7.5737, 7.5732, 7.5739, 7.5745, 7.5741, 7.5737, 7.5744, 7.574, 7.5736, 7.5733, 7.5729, 7.5736, 7.5734, 7.5732, 7.5727, 7.5725, 7.5721, 7.5728, 7.5726, 7.5733, 7.5729, 7.5726, 7.5735, 7.5731, 7.5728, 7.5715, 7.5724, 7.5731, 7.5727, 7.5724, 7.5722, 7.5728, 7.5724, 7.5734, 7.573, 7.5726, 7.5723, 7.5721, 7.5719, 7.5717, 7.5717, 7.5713, 7.57, 7.5695, 7.5693, 7.5689, 7.5696, 7.5693, 7.5702, 7.5711, 7.5718, 7.5715, 7.5723, 7.5719, 7.5718, 7.5713, 7.5722, 7.571, 7.5707, 7.5703, 7.5702, 7.5699, 7.5696, 7.5693, 7.568, 7.5677, 7.5673, 7.5671, 7.5668, 7.5666, 7.5662, 7.5659, 7.5658, 7.5658, 7.5655, 7.5651, 7.565, 7.5646, 7.5653, 7.566, 7.5669, 7.5668, 7.5674, 7.5672, 7.5668, 7.5676, 7.5673, 7.5672, 7.5668, 7.5675, 7.5671, 7.5689, 7.5688, 7.5684, 7.5682, 7.5679, 7.5677, 7.5673, 7.5669, 7.5699, 7.5695, 7.5702, 7.5698, 7.5687, 7.5686, 7.5682, 7.5678, 7.5675, 7.5674, 7.567, 7.5666, 7.5673, 7.567, 7.5667, 7.5675, 7.5671, 7.5678, 7.5695, 7.5691, 7.5689, 7.5696, 7.5743, 7.5749, 7.5748, 7.5755, 7.5751, 7.5747, 7.5754, 7.5761, 7.576, 7.5756, 7.5754, 7.5752, 7.5748, 7.5745, 7.5741, 7.5739, 7.5737, 7.5737, 7.5736, 7.5733, 7.573, 7.5729, 7.5725, 7.5733, 7.5729, 7.573, 7.5728, 7.5726, 7.5722, 7.5719, 7.5718, 7.5718, 7.5714, 7.5714, 7.5722, 7.5731, 7.5727, 7.5723, 7.573, 7.5726, 7.5722, 7.572, 7.5716, 7.5723, 7.5719, 7.5717, 7.573, 7.572, 7.5739, 7.5736, 7.5747, 7.5742, 7.5749, 7.5745, 7.5751, 7.5795, 7.5802, 7.58, 7.5797, 7.5795, 7.5791, 7.5789, 7.5796, 7.5793, 7.5789, 7.5785, 7.5781, 7.5777, 7.5765, 7.5763, 7.5769, 7.5767, 7.5765, 7.5763, 7.5751, 7.5747, 7.5754, 7.5753, 7.576, 7.5756, 7.5757, 7.5765, 7.5764, 7.5761, 7.5757, 7.5758, 7.5756, 7.5753, 7.576, 7.5759, 7.5758, 7.5754, 7.5753, 7.5752, 7.575, 7.5751, 7.5751, 7.5748, 7.5736, 7.5724, 7.5712, 7.5708, 7.5704, 7.5701, 7.5699, 7.5696, 7.5692, 7.5691, 7.5691, 7.569, 7.5687, 7.5686, 7.5683, 7.5706, 7.5706, 7.5701, 7.5699, 7.5695, 7.5701, 7.5698, 7.5705, 7.5701, 7.5688, 7.5684, 7.5681, 7.5688, 7.5685, 7.5672, 7.567, 7.5658, 7.5654, 7.565, 7.5647, 7.5643, 7.564, 7.5647, 7.5645, 7.5653, 7.5649, 7.5648, 7.5656, 7.5653, 7.5651, 7.5647, 7.5654, 7.565, 7.565, 7.5657, 7.5663, 7.5661, 7.5658, 7.5655, 7.5652, 7.5659, 7.5655, 7.5662, 7.5661, 7.5658, 7.5663, 7.5659, 7.5657, 7.5665, 7.5661, 7.566, 7.5658, 7.5656, 7.5652, 7.5649, 7.5657, 7.5653, 7.5659, 7.5655, 7.5653, 7.565, 7.5661, 7.5663, 7.566, 7.5658, 7.5654, 7.5653, 7.5649, 7.5645, 7.5641, 7.5647, 7.5644, 7.5651, 7.5648, 7.5646, 7.5644, 7.5651, 7.5647, 7.5655, 7.5651, 7.5649, 7.5655, 7.5653, 7.565, 7.566, 7.5657, 7.5663, 7.566, 7.5669, 7.5665, 7.5662, 7.5658, 7.5657, 7.5654, 7.5663, 7.5662, 7.5659, 7.5659, 7.5656, 7.5653, 7.5651, 7.5648, 7.5645, 7.5652, 7.5648, 7.5635, 7.5646, 7.5642, 7.5638, 7.5635, 7.5633, 7.563, 7.563, 7.5636, 7.5633, 7.5629, 7.5636, 7.5635, 7.5632, 7.563, 7.5637, 7.5636, 7.5634, 7.5641, 7.5648, 7.5645, 7.5641, 7.5637, 7.5633, 7.5631, 7.5627, 7.5624, 7.5621, 7.5618, 7.5627, 7.5625, 7.5624, 7.5637, 7.5642, 7.5649, 7.5639, 7.5626, 7.5634, 7.5635, 7.5642, 7.5641, 7.5637, 7.5634, 7.5642, 7.565, 7.5648, 7.5647, 7.5645, 7.5641, 7.5639, 7.5638, 7.5645, 7.5652, 7.5658, 7.5657, 7.5665, 7.5662, 7.5649, 7.5637, 7.5635, 7.5631, 7.5629, 7.5626, 7.5614, 7.5603, 7.5592, 7.5581, 7.5588, 7.5594, 7.56, 7.5596, 7.5586, 7.5594, 7.5601, 7.5607, 7.5603, 7.5601, 7.5597, 7.5585, 7.5581, 7.5579, 7.5575, 7.5572, 7.5579, 7.5569, 7.5567, 7.5566, 7.5572, 7.5579, 7.5576, 7.5584, 7.5581, 7.559, 7.5597, 7.5595, 7.5592, 7.5592, 7.56, 7.5596, 7.5603, 7.5599, 7.5607, 7.5603, 7.5612, 7.56, 7.5589, 7.5586, 7.5583, 7.5579, 7.5575, 7.5572, 7.5568, 7.5575, 7.5583, 7.558, 7.5581, 7.5579, 7.5575, 7.5581, 7.5578, 7.5576, 7.5573, 7.5581, 7.558, 7.5579, 7.5575, 7.5572, 7.5569, 7.5568, 7.5565, 7.5562, 7.5558, 7.5558, 7.5555, 7.5562, 7.5558, 7.5554, 7.5552, 7.5549, 7.5545, 7.5542, 7.5541, 7.5537, 7.5534, 7.553, 7.5527, 7.5524, 7.5521, 7.5521, 7.5518, 7.5515, 7.5513, 7.5528, 7.5524, 7.5531, 7.553, 7.5537, 7.5544, 7.5541, 7.5539, 7.5545, 7.5534, 7.5534, 7.5531, 7.5537, 7.5545, 7.5541, 7.5537, 7.5534, 7.553, 7.5528, 7.5524, 7.553, 7.5529, 7.5527, 7.5525, 7.5521, 7.552, 7.5527, 7.5528, 7.5524, 7.5523, 7.5521, 7.5518, 7.5515, 7.5514, 7.5512, 7.5519, 7.5515, 7.5521, 7.551, 7.5506, 7.5502, 7.5499, 7.5505, 7.5512, 7.556, 7.5556, 7.5544, 7.5544, 7.5561, 7.5568, 7.5582, 7.5579, 7.5575, 7.5577, 7.5573, 7.5561, 7.5569, 7.5566, 7.5564, 7.5569, 7.5565, 7.5562, 7.5563, 7.5559, 7.5591, 7.5587, 7.5583, 7.5581, 7.5587, 7.5585, 7.5581, 7.5577, 7.5583, 7.5582, 7.5579, 7.5575, 7.5582, 7.5578, 7.5575, 7.5572, 7.5569, 7.5568, 7.5569, 7.5565, 7.5561, 7.5567, 7.5576, 7.5564, 7.5562, 7.5558, 7.5556, 7.5552, 7.5549, 7.5548, 7.5544, 7.5557, 7.5555, 7.5552, 7.5548, 7.5554, 7.5551, 7.555, 7.5548, 7.5538, 7.5541, 7.5539, 7.5549, 7.5557, 7.5564, 7.5563, 7.5559, 7.5556, 7.5552, 7.5578, 7.5584, 7.5611, 7.561, 7.5607, 7.5613, 7.5621, 7.5619, 7.5617, 7.5614, 7.5614, 7.561, 7.561, 7.5607, 7.5606, 7.5604, 7.5601, 7.5597, 7.5605, 7.5602, 7.5599, 7.5598, 7.5594, 7.5596, 7.5592, 7.559, 7.5588, 7.5586, 7.5593, 7.5592, 7.5589, 7.5588, 7.5594, 7.559, 7.5588, 7.5586, 7.5574, 7.5565, 7.5561, 7.5558, 7.5556, 7.5562, 7.5577, 7.5584, 7.5618, 7.5614, 7.5613, 7.5609, 7.5615, 7.5614, 7.5603, 7.56, 7.5596, 7.5603, 7.5599, 7.5596, 7.5593, 7.5591, 7.5598, 7.5604, 7.56, 7.5606, 7.5612, 7.5621, 7.5628, 7.5634, 7.564, 7.5636, 7.5633, 7.563, 7.5627, 7.5624, 7.5621, 7.5627, 7.5623, 7.5621, 7.5618, 7.5625, 7.5624, 7.5621, 7.5612, 7.5628, 7.5624, 7.563, 7.563, 7.5637, 7.5636, 7.5632, 7.5632, 7.563, 7.5627, 7.5624, 7.5621, 7.5617, 7.5613, 7.5609, 7.5614, 7.562, 7.5626, 7.5622, 7.5619, 7.5615, 7.5616, 7.5623, 7.562, 7.5626, 7.5623, 7.562, 7.5618, 7.5615, 7.5624, 7.562, 7.5628, 7.5626, 7.5623, 7.5619, 7.5619, 7.5617, 7.5617, 7.5617, 7.5615, 7.5613, 7.5613, 7.5611, 7.561, 7.5616, 7.5613, 7.5609, 7.5607, 7.5605, 7.5602, 7.56, 7.5597, 7.5594, 7.5591, 7.5598, 7.5596, 7.5613, 7.561, 7.5606, 7.5619, 7.5616, 7.5614, 7.5625, 7.5632, 7.5638, 7.5637, 7.5641, 7.5649, 7.5657, 7.5665, 7.5662, 7.5659, 7.5656, 7.5654, 7.5657, 7.5654, 7.5651, 7.5648, 7.5646, 7.5643, 7.564, 7.5638, 7.5639, 7.5641, 7.5639, 7.5637, 7.5637, 7.5676, 7.5675, 7.5674, 7.5671, 7.5667, 7.5664, 7.567, 7.5659, 7.5684, 7.569, 7.5689, 7.5685, 7.5681, 7.5678, 7.5675, 7.5675, 7.5695, 7.5693, 7.5689, 7.5686, 7.5682, 7.568, 7.5677, 7.5675, 7.5672, 7.5671, 7.5682, 7.5679, 7.5675, 7.5672, 7.5678, 7.5684, 7.5684, 7.5681, 7.568, 7.5687, 7.5695, 7.5693, 7.57, 7.5697, 7.5695, 7.5692, 7.5688, 7.5685, 7.5683, 7.5682, 7.5678, 7.5676, 7.5673, 7.568, 7.5687, 7.5685, 7.5683, 7.568, 7.5677, 7.5675, 7.5674, 7.5672, 7.5678, 7.5674, 7.567, 7.5669, 7.5666, 7.5673, 7.568, 7.5677, 7.5675, 7.5672, 7.5669, 7.5666, 7.5673, 7.5673, 7.5679, 7.5686, 7.5683, 7.5688, 7.5694, 7.5701, 7.5699, 7.5714, 7.5704, 7.5703, 7.57, 7.5697, 7.5695, 7.5692, 7.5699, 7.5696, 7.5703, 7.5702, 7.5708, 7.5714, 7.572, 7.5717, 7.5714, 7.572, 7.5717, 7.5713, 7.5713, 7.5711, 7.5709, 7.5706, 7.5705, 7.5702, 7.5698, 7.5694, 7.5691, 7.5688, 7.5695, 7.5702, 7.5701, 7.5698, 7.5697, 7.5694, 7.5692, 7.5698, 7.5697, 7.5696, 7.5693, 7.569, 7.5689, 7.5695, 7.5692, 7.5699, 7.5695, 7.5693, 7.5699, 7.5696, 7.5693, 7.5689, 7.5694, 7.5693, 7.5695, 7.5709, 7.5725, 7.5723, 7.5722, 7.5719, 7.5715, 7.5712, 7.5709, 7.5708, 7.5697, 7.5694, 7.57, 7.5697, 7.5694, 7.5691, 7.5691, 7.5687, 7.5686, 7.5692, 7.5688, 7.5685, 7.5681, 7.5677, 7.5673, 7.5673, 7.5672, 7.5669, 7.5666, 7.5664, 7.5662, 7.5668, 7.5664, 7.5663, 7.5662, 7.5658, 7.5656, 7.5652, 7.5648, 7.5644, 7.5641, 7.5637, 7.5635, 7.5632, 7.563, 7.5627, 7.5624, 7.5622, 7.5619, 7.5617, 7.5614, 7.5611, 7.5608, 7.5614, 7.562, 7.5625, 7.5622, 7.562, 7.5616, 7.5613, 7.5618, 7.5617, 7.5623, 7.5621, 7.5617, 7.5616, 7.5612, 7.5619, 7.5616, 7.5612, 7.5609, 7.5608, 7.5605, 7.5611, 7.5611, 7.5617, 7.5616, 7.5613, 7.561, 7.5608, 7.5615, 7.5613, 7.5612, 7.5609, 7.5608, 7.5605, 7.5605, 7.5602, 7.5598, 7.5606, 7.5614, 7.562, 7.5616, 7.5621, 7.5628, 7.5624, 7.5621, 7.5618, 7.5615, 7.5621, 7.5618, 7.5623, 7.5619, 7.5618, 7.5616, 7.5615, 7.5611, 7.5617, 7.5615, 7.5612, 7.561, 7.5616, 7.5613, 7.5612, 7.5611, 7.5608, 7.5606, 7.5603, 7.5602, 7.5599, 7.5596, 7.5596, 7.5595, 7.5591, 7.559, 7.5587, 7.5583, 7.5579, 7.5585, 7.5582, 7.5579, 7.5576, 7.5572, 7.5578, 7.5575, 7.5571, 7.5568, 7.5566, 7.5562, 7.5561, 7.5567, 7.5563, 7.5569, 7.5568, 7.5565, 7.5571, 7.557, 7.5568, 7.5565, 7.5563, 7.5561, 7.5566, 7.5563, 7.5561, 7.5558, 7.5555, 7.5582, 7.5579, 7.5576, 7.5582, 7.5579, 7.5575, 7.5573, 7.5578, 7.5575, 7.5574, 7.5571, 7.5569, 7.5566, 7.5566, 7.5563, 7.5562, 7.5558, 7.5564, 7.557, 7.5567, 7.5566, 7.5564, 7.5563, 7.5562, 7.5567, 7.5564, 7.5561, 7.5558, 7.5565, 7.5562, 7.5561, 7.5558, 7.5555, 7.5554, 7.5553, 7.5559, 7.5557, 7.5554, 7.555, 7.5548, 7.5545, 7.5552, 7.5548, 7.5553, 7.555, 7.5547, 7.5546, 7.5543, 7.5543, 7.5544, 7.5542, 7.555, 7.5549, 7.5548, 7.5545, 7.5542, 7.5547, 7.5553, 7.5551, 7.5548, 7.5546, 7.5552, 7.5548, 7.5546, 7.5544, 7.5541, 7.5538, 7.5544, 7.5542, 7.554, 7.5536, 7.5533, 7.5532, 7.5529, 7.5527, 7.5524, 7.552, 7.5516, 7.5514, 7.5512, 7.5518, 7.5514, 7.551, 7.5507, 7.5505, 7.551, 7.5515, 7.5512, 7.5508, 7.5505, 7.5501, 7.5498, 7.5495, 7.5496, 7.5495, 7.5501, 7.55, 7.5506, 7.551, 7.5509, 7.5515, 7.5515, 7.5534, 7.5531, 7.5537, 7.5534, 7.5531, 7.5527, 7.5525, 7.5531, 7.5529, 7.5526, 7.5523, 7.5524, 7.5521, 7.5518, 7.5518, 7.5518, 7.5514, 7.5511, 7.5511, 7.551, 7.5507, 7.5504, 7.5502, 7.5509, 7.5506, 7.5512, 7.5509, 7.5508, 7.5504, 7.5501, 7.5497, 7.5494, 7.55, 7.5497, 7.5502, 7.5498, 7.5494, 7.5493, 7.5498, 7.5494, 7.5491, 7.5489, 7.5488, 7.5485, 7.5484, 7.5481, 7.5478, 7.5475, 7.5466, 7.5463]}
rtt1_2_7 = {'192.168.122.110': [6.6075, 5.5208, 10.9797, 5.4226, 6.321, 6.2666, 11.5087, 5.5201, 5.4853, 5.7435, 5.6071, 10.618, 5.4522, 6.7537, 6.3317, 11.354, 6.5403, 5.6212, 7.215, 6.4447, 10.9849, 5.3072, 5.7936, 5.9323, 5.5308, 16.8459, 11.2867, 5.9693, 7.3678, 11.9865, 6.9711, 7.9217, 6.5577, 6.9246, 6.7849, 5.3747, 5.724, 11.9321, 7.9944, 5.3465, 5.3203, 7.3626, 16.0458, 11.3621, 7.7782, 6.7601, 10.9694, 6.6912, 5.686, 11.8849, 5.6996, 5.6477, 11.2002, 5.5668, 5.4116, 5.4185, 11.071, 5.9392, 5.4781, 5.6064, 5.2409, 5.4989, 6.7091, 10.8638, 6.2981, 5.8339, 11.6405, 11.9154, 10.9286, 11.9405, 5.6219, 6.006, 5.2593, 7.2348, 5.5861, 10.7551, 6.7937, 6.5742, 7.4933, 5.5888, 6.5405, 10.6919, 6.2344, 5.368, 7.2689, 11.5292, 6.942, 5.4517, 5.4095, 5.9159, 16.9487, 5.7287, 5.2342, 11.2097, 5.5711, 10.9923, 11.3409, 6.2356, 10.7224, 5.3554, 5.9233, 11.3788, 6.7816, 5.5189, 7.3266, 6.9404, 5.9414, 11.7226, 6.8333, 5.4858, 5.3337, 5.5175, 5.827, 5.8973, 6.4523, 6.1419, 5.8944, 5.2826, 11.055, 5.7554, 10.7701, 5.9521, 10.8905, 5.9881, 21.8556, 5.4255, 14.6749, 5.2416, 5.6894, 5.4197, 12.2979, 6.0983, 11.1811, 11.5068, 11.2503, 10.8788, 11.6553, 6.0108, 7.5359, 7.3822, 6.7618, 6.8223, 5.6865, 7.3688, 5.2757, 6.3188, 14.5693, 17.1542, 6.0329, 7.6456, 5.6453, 5.6698, 6.547, 7.6182, 5.398, 16.1502, 5.5501, 5.6002, 11.7738, 6.428, 11.1806, 5.5094, 11.8246, 13.1478, 5.4331, 10.8418, 25.5752, 16.4697, 10.9518, 5.8277, 6.7782, 7.149, 6.4907, 6.6702, 16.9561, 7.5219, 5.3959, 5.5661, 28.6632, 5.6288, 7.4732, 5.7507, 5.6107, 12.2638, 11.0793, 5.3678, 6.4363, 6.4769, 5.9237, 11.4915, 5.3942, 10.9351, 5.5561, 5.4295, 11.1966, 16.6173, 7.2994, 5.8534, 6.0852, 5.4946, 5.5103, 7.5109, 5.3892, 5.3763, 10.73, 6.8932, 11.4067, 5.3232, 7.1509, 7.4937, 11.6713, 6.9108, 11.4696, 7.4155, 11.0846, 5.3892, 6.6881, 7.3583, 6.0084, 5.281, 5.9083, 7.5476, 5.9531, 13.2561, 11.291, 5.7192, 5.619, 10.5886, 5.3017, 6.0012, 5.5788, 5.7008, 7.2787, 6.4759, 5.4567, 6.2978, 10.9341, 7.174, 7.0946, 12.4362, 6.8531, 2.471, 6.247, 5.3639, 5.5141, 5.5346, 7.3843, 5.7657, 5.6748, 5.61, 5.7425, 5.893, 6.7139, 11.5957, 11.2195, 7.9436, 5.3477, 6.6407, 5.5132, 7.7202, 5.4421, 7.7119, 10.9813, 5.8475, 5.559, 6.85, 5.3117, 5.5246, 6.7792, 10.8974, 10.9012, 6.1011, 11.2455, 6.1512, 5.5699, 5.3937, 11.0462, 1.055, 5.3692, 5.8863, 11.3399, 5.9376, 6.8765, 5.9147, 10.7853, 10.9878, 6.8252, 5.641, 1.111, 6.4175, 5.4629, 5.4803, 16.6256, 5.9257, 11.1227, 7.2377, 7.1332, 11.404, 6.871, 11.055, 6.526, 10.5808, 1.0958, 6.9764, 6.3996, 5.8787, 6.0258, 7.0527, 5.3971, 7.1011, 11.3711, 10.9577, 5.5487, 6.026, 5.559, 5.9817, 6.6078, 33.1516, 6.2201, 11.2021, 6.886, 10.9103, 11.0049, 5.7077, 1.1244, 10.8376, 5.2979, 5.4562, 5.9617, 16.923, 11.3847, 5.7344, 6.6755, 11.1859, 16.6564, 10.8752, 11.1189, 5.3761, 5.4667, 11.2462, 5.2459, 11.8513, 1.2624, 10.9928, 7.0877, 5.2791, 5.7378, 22.398, 5.6462, 1.471, 11.5502, 7.6747, 6.1331, 16.4576, 6.8889, 11.183, 5.3618, 5.722, 5.3089, 6.0086, 5.688, 5.6057, 5.2221, 5.7521, 24.1525, 5.5199, 5.7383, 7.1096, 5.3718, 10.7236, 5.8255], '192.168.122.116': [5.7118, 5.6038, 5.5835, 5.3349, 6.8624, 5.4903, 5.765, 5.9729, 5.9748, 5.6481, 5.8057, 27.4222, 5.4293, 11.2102, 6.3028, 6.933, 10.926, 16.2261, 11.1783, 5.4617, 11.1897, 6.5074, 5.8646, 7.2439, 17.6456, 6.3069, 5.7378, 6.2528, 6.8209, 5.2609, 22.2228, 6.8347, 11.5271, 6.3498, 6.675, 5.5158, 6.4809, 11.8103, 10.751, 22.2757, 11.1158, 6.9742, 5.6832, 10.7915, 6.7694, 6.2096, 6.706, 6.3357, 5.5883, 6.2141, 5.4464, 6.5002, 5.4801, 5.5273, 6.7723, 6.0368, 5.7285, 6.5849, 5.5168, 5.8587, 5.4526, 5.5857, 6.3648, 5.3005, 5.2962, 10.8337, 7.0364, 17.2136, 6.5541, 11.3556, 10.8647, 5.7158, 5.4648, 7.1323, 11.2507, 22.1524, 6.2072, 12.5127, 11.1902, 5.6009, 5.3797, 5.3425, 6.3219, 6.0852, 6.1433, 11.6098, 5.5289, 5.4092, 6.0024, 6.6822, 11.2774, 5.8339, 5.2602, 11.1973, 5.5563, 5.682, 5.4944, 16.5718, 5.4224, 5.5492, 11.0199, 5.8165, 6.6857, 7.0732, 6.8226, 11.2548, 16.8092, 5.4307, 5.6605, 5.42, 10.7954, 6.3074, 11.3773, 10.6983, 6.9306, 10.9816, 5.9526, 5.4851, 5.893, 5.9361, 10.849, 11.08, 16.7456, 16.2985, 10.9601, 6.649, 5.4429, 5.3167, 5.4131, 5.5709, 11.2567, 10.8268, 6.13, 5.9302, 6.052, 6.9621, 16.4275, 6.0587, 6.7136, 6.4929, 7.0562, 5.4271, 5.8813, 6.6705, 5.2767, 6.3491, 6.4855, 5.76, 5.5249, 11.7116, 17.5872, 16.6154, 5.558, 5.4739, 6.376, 11.133, 11.2832, 5.8882, 6.6111, 5.5046, 5.5277, 5.6453, 11.4353, 6.8774, 5.82, 5.6717, 5.5363, 5.4255, 6.2923, 7.2246, 5.4324, 6.7742, 5.5087, 11.6322, 10.9446, 7.0055, 10.9932, 6.2008, 10.8485, 5.6691, 5.9245, 5.8217, 11.1299, 5.3284, 5.5754, 5.6033, 6.6502, 10.9782, 5.9242, 6.7708, 10.9313, 5.744, 6.1915, 16.9559, 6.0565, 11.2662, 5.2907, 5.322, 5.7747, 6.752, 13.0165, 7.5111, 5.3251, 6.6097, 12.3053, 6.0585, 12.4795, 5.3773, 11.3955, 11.9348, 12.7838, 6.3999, 5.3, 11.9212, 22.3138, 5.5087, 5.9493, 6.928, 6.5134, 7.2358, 5.6257, 7.3562, 5.5568, 6.4187, 6.4678, 5.538, 5.8372, 6.7732, 5.4722, 6.5694, 5.7957, 6.7277, 7.5355, 11.5693, 5.5165, 5.657, 7.8859, 5.6701, 11.0672, 5.2736, 10.833, 1.4622, 10.8104, 5.8398, 5.8167, 5.8179, 6.5877, 5.924, 6.1407, 16.8078, 5.9137, 6.6111, 5.4531, 10.6099, 11.0354, 7.3977, 7.0679, 6.8617, 5.9042, 5.5375, 5.8048, 11.7323, 5.8386, 11.2185, 5.4896, 6.4099, 10.9787, 5.5408, 10.9696, 6.7163, 5.3878, 5.2283, 5.9793, 5.4169, 16.4318, 10.8075, 7.0732, 0.6828, 5.3902, 6.8266, 5.9619, 5.4541, 5.5194, 5.4069, 5.3656, 11.0116, 6.3341, 5.6708, 6.3076, 11.0583, 5.8105, 5.4326, 5.8949, 18.8928, 11.0197, 6.3894, 1.281, 10.7837, 5.4271, 12.0864, 13.1912, 10.4749, 1.2879, 7.1869, 11.1818, 5.2698, 5.8584, 6.628, 5.7547, 11.2455, 5.872, 16.2659, 5.6922, 11.6146, 6.1061, 5.7609, 5.9803, 10.4632, 6.2799, 11.0798, 6.2273, 6.1939, 5.4548, 5.3375, 0.8907, 16.5615, 7.6284, 6.3779, 5.8999, 5.3446, 6.14, 6.1276, 10.7884, 5.3835, 8.9438, 22.5194, 7.0081, 6.5029, 5.4545, 6.1963, 6.0289, 11.9367, 0.8843, 5.3682, 11.6513, 5.2409, 6.86, 11.4162, 5.7359, 1.2023, 6.9585, 6.4175, 6.5813, 5.2125, 7.2184, 5.6942, 5.7404, 5.7347, 6.3357, 6.5207, 6.5899, 5.5506, 6.4902, 6.8934, 11.8272, 5.5819, 5.4388, 6.4011, 7.2248, 5.3706, 6.2983], '192.168.122.115': [16.1092, 12.4722, 6.4425, 7.225, 10.9546, 6.4449, 5.6927, 5.3544, 6.5236, 5.7287, 6.4895, 5.2903, 5.2824, 5.7223, 16.9456, 7.623, 5.6019, 5.2629, 5.3983, 11.4062, 5.4979, 5.4986, 10.7498, 6.6612, 5.7037, 5.5835, 5.2514, 5.4429, 11.014, 5.4386, 10.9501, 5.8093, 11.5521, 6.4905, 5.4851, 5.4584, 11.0846, 5.8637, 6.4311, 6.2523, 11.1363, 6.4223, 10.3824, 10.9463, 6.7894, 5.9013, 5.986, 5.8436, 11.6026, 11.2104, 5.2497, 5.3241, 16.5584, 5.548, 8.7955, 21.1213, 5.5599, 6.165, 11.4059, 0.8619, 6.2525, 5.6567, 6.8569, 5.6722, 5.5981, 10.9997, 6.9256, 10.8333, 6.5176, 17.3793, 1.5774, 17.1297, 6.2399, 28.156, 6.9222, 5.4045, 11.0888, 5.7886, 6.0492, 5.5747, 10.9339, 5.3892, 5.434, 5.6047, 5.466, 11.131, 10.4492, 5.4145, 10.7741, 5.2552, 11.2998, 5.2233, 5.4479, 10.9322, 6.8989, 6.4263, 5.4326, 10.8757, 5.4345, 7.2439, 5.625, 6.6042, 10.6144, 5.3985, 6.3984, 10.7605, 5.7056, 6.7873, 11.3204, 10.9758, 5.3897, 11.3924, 5.5852, 6.2716, 5.7981, 5.4891, 7.0758, 5.4524, 5.698, 6.0701, 5.635, 5.4233, 10.814, 10.8578, 11.1544, 11.0426, 11.1122, 6.1536, 11.1883, 6.0747, 5.8858, 11.2467, 7.1054, 5.3866, 5.4781, 5.9843, 10.7045, 11.1747, 11.5504, 5.4433, 6.5565, 11.1225, 5.7991, 5.8284, 5.6176, 5.3387, 5.9497, 16.7327, 5.9192, 6.5577, 5.4672, 5.3635, 6.2265, 12.3169, 5.3346, 10.6471, 11.4286, 6.1634, 5.4872, 5.1997, 11.1401, 5.1553, 5.7094, 6.3012, 11.5666, 6.3825, 11.5683, 5.523, 10.9279, 1.7345, 10.8202, 11.0867, 6.3043, 7.6594, 6.3827, 5.5625, 5.5032, 11.0612, 6.5734, 6.417, 5.8284, 6.1824, 5.4111, 6.2883, 11.0819, 10.761, 6.6564, 6.3987, 6.7134, 10.8881, 5.8827, 5.4703, 6.5675, 5.2364, 11.0712, 11.1165, 12.0435, 5.3275, 11.4102, 5.5549, 5.7704, 7.4635, 10.4573, 5.6241, 11.5917, 6.726, 6.5441, 6.6035, 6.6688, 11.3506, 1.4184, 10.5026, 6.4807, 5.8286, 11.2624, 6.4893, 5.4514, 6.6946, 10.9727, 11.2393, 12.0213, 7.4072, 5.6849, 6.5806, 5.4264, 6.6233, 10.5839, 5.6376, 5.7173, 6.2973, 5.6977, 6.6924, 7.1013, 11.2917, 5.4033, 11.6632, 11.2708, 5.8515, 5.5778, 10.5152, 10.7403, 1.2989, 5.3408, 6.5601, 5.5504, 5.2221, 5.6369, 11.8065, 16.7577, 5.6722, 5.8236, 10.9913, 6.737, 5.3084, 6.0511, 5.6806, 6.3508, 6.6876, 5.5554, 11.5571, 5.2211, 11.5905, 5.2655, 5.5697, 5.6877, 5.259, 5.5594, 21.965, 10.9694, 5.6033, 5.4736, 6.0463, 7.1349, 11.5016, 5.2192, 5.5141, 7.0488, 0.8218, 5.4104, 11.3235, 5.652, 11.7655, 5.3389, 10.9019, 10.6199, 10.9141, 6.3372, 6.2561, 5.4693, 10.7648, 5.7471, 5.986, 11.3335, 11.0776, 7.9505, 6.3348, 1.0283, 6.4521, 11.5559, 7.0872, 6.7186, 5.898, 0.9792, 7.0331, 5.3768, 0.6726, 6.8076, 24.256, 5.4247, 5.2931, 6.2604, 5.5728, 11.8594, 6.0184, 16.4819, 11.1773, 6.6965, 5.5676, 6.5911, 5.9628, 5.3768, 11.6563, 6.8924, 16.5098, 0.7834, 5.4111, 6.268, 6.4764, 5.6431, 10.828, 5.4417, 5.7945, 5.6791, 5.4886, 5.5439, 11.1554, 16.6833, 11.0285, 6.3446, 5.3637, 6.567, 7.8027, 0.9804, 11.3568, 6.8347, 6.3055, 38.2771, 16.9053, 11.0629, 1.0715, 6.7649, 7.041, 6.1033, 6.1939, 6.8743, 11.4822, 6.3128, 6.6624, 5.3332, 6.9721, 6.4783, 6.7861, 11.1799, 11.2522, 6.8462, 11.157, 5.5113, 9.3725, 7.1239, 10.926, 6.29], '192.168.122.114': [5.4059, 7.3521, 11.6408, 5.4801, 6.9458, 5.3554, 11.4639, 11.0857, 5.1782, 16.1104, 11.5817, 5.6064, 10.8471, 5.8153, 5.5597, 5.5351, 11.6727, 10.3509, 5.5144, 5.9361, 6.5832, 10.8547, 5.923, 5.8749, 11.7085, 6.2292, 5.3217, 5.3208, 5.6117, 5.4896, 11.4779, 6.8431, 7.4692, 5.9102, 5.4152, 5.5254, 11.0731, 6.6204, 5.3198, 11.6096, 5.5122, 11.0893, 6.4161, 10.9208, 5.9543, 6.8812, 6.206, 6.0384, 11.9088, 5.923, 5.9142, 6.2797, 17.2129, 11.3029, 7.2744, 5.337, 5.4917, 5.7142, 6.1224, 6.6948, 16.7215, 5.7459, 6.3622, 5.3711, 11.0621, 22.13, 5.8863, 11.7383, 5.5728, 6.3796, 1.0688, 22.8293, 11.276, 6.953, 6.9406, 5.9714, 5.738, 11.2033, 6.6435, 6.3941, 10.9131, 5.4648, 5.7344, 22.0175, 10.6905, 5.6086, 11.2116, 5.439, 6.3989, 5.4281, 11.3001, 5.7511, 22.7625, 5.3358, 11.6889, 5.9543, 5.2698, 10.9389, 5.4193, 5.456, 10.3986, 5.2812, 6.0804, 6.0713, 12.3253, 6.0766, 11.0805, 11.1609, 0.8583, 5.5277, 6.609, 5.6801, 21.5375, 12.0344, 6.315, 5.3446, 6.0253, 5.3766, 5.7666, 6.3434, 5.6405, 5.4648, 6.2292, 10.7107, 10.9549, 11.2042, 5.3806, 5.4405, 11.1463, 16.2096, 11.4501, 27.1947, 6.5646, 6.5315, 5.5351, 11.0624, 6.6035, 6.1009, 11.0054, 11.3206, 6.9966, 5.3406, 5.3363, 11.5969, 5.7147, 5.9633, 5.9125, 15.404, 10.9205, 10.5758, 5.7361, 10.7508, 10.9425, 6.1355, 5.446, 5.64, 10.8767, 5.6925, 11.2875, 5.8069, 11.4293, 5.4758, 5.7909, 6.7673, 5.4479, 6.5947, 6.8791, 5.4026, 10.4518, 1.528, 6.6395, 5.5504, 11.4138, 10.8995, 5.4882, 7.1383, 11.0087, 11.0133, 5.4867, 6.7084, 6.3512, 5.4212, 10.8891, 11.1008, 11.1923, 5.9323, 11.4412, 5.4257, 5.991, 11.575, 6.3586, 6.2344, 5.7166, 5.254, 5.6286, 6.3407, 6.7954, 5.6899, 5.7628, 5.8041, 5.7757, 5.4965, 5.6381, 5.7328, 6.6159, 11.1532, 5.5869, 5.8575, 5.5139, 11.0021, 0.9341, 6.0854, 5.2664, 5.6138, 11.6487, 11.4572, 5.5144, 5.4948, 5.3856, 11.1158, 5.6822, 7.4277, 11.3366, 5.6343, 12.5854, 6.9611, 5.2624, 11.1012, 5.5423, 10.9353, 10.6969, 6.8161, 7.4024, 6.3784, 11.0509, 5.3093, 11.0455, 6.3562, 5.4781, 10.7038, 5.4152, 1.3087, 6.4826, 5.9059, 5.4457, 5.2748, 7.338, 16.9363, 11.1992, 7.1127, 22.1798, 6.345, 5.4698, 13.4125, 5.8959, 7.4332, 6.2215, 6.2745, 5.7957, 11.4369, 11.4415, 7.3483, 5.4357, 6.0613, 6.8555, 6.3758, 5.7518, 11.2276, 6.4847, 5.6694, 11.168, 16.2399, 6.942, 10.7191, 11.5035, 10.6065, 21.7519, 0.8473, 11.3001, 18.0845, 6.6886, 5.4281, 5.5883, 12.3444, 5.3482, 11.4453, 5.537, 10.6392, 6.2373, 5.4708, 6.4485, 16.2094, 19.104, 10.8852, 10.9155, 5.5609, 0.9396, 6.5446, 5.6827, 8.1716, 6.2439, 5.4121, 0.9904, 7.0224, 6.2082, 0.7334, 28.734, 6.5401, 5.7323, 6.3121, 5.5697, 5.4016, 17.3759, 6.1588, 6.1376, 11.837, 6.0453, 5.3711, 6.2046, 5.4178, 10.5436, 5.2061, 6.87, 12.1555, 0.6735, 10.9694, 5.8143, 11.23, 10.8407, 17.01, 16.3834, 6.5193, 6.4292, 10.8612, 10.7181, 5.4233, 6.6152, 11.2412, 5.4431, 11.2705, 11.0536, 5.8961, 0.8783, 11.0526, 6.9535, 5.4157, 5.4915, 16.6509, 6.6941, 1.1575, 5.6789, 7.3862, 6.0785, 10.9146, 5.5957, 6.4721, 11.3308, 6.5596, 6.4394, 6.578, 6.4111, 5.7151, 10.4721, 6.1686, 5.7597, 5.6138, 5.2636, 5.6758, 5.9972, 6.1991, 10.3533], '192.168.122.113': [5.4603, 5.7077, 6.7489, 5.3554, 11.0331, 5.4886, 5.239, 5.5296, 6.5515, 6.032, 5.8656, 5.2795, 6.1836, 5.4967, 16.902, 5.784, 5.6756, 6.362, 6.439, 5.955, 5.5594, 6.5067, 11.3642, 5.9061, 6.5944, 13.1793, 5.4986, 5.4009, 6.2802, 5.4941, 11.2324, 5.8141, 1.6034, 6.0499, 6.7184, 10.9327, 11.76, 5.9481, 6.3899, 16.5694, 5.7356, 11.6422, 5.4708, 11.2798, 12.3782, 6.2554, 10.5555, 6.3379, 6.314, 10.6509, 11.1735, 6.4762, 5.3651, 5.7321, 5.6427, 5.5327, 5.6984, 5.5034, 5.5878, 5.7263, 22.3761, 5.621, 6.64, 5.9872, 5.5552, 5.338, 6.3543, 6.5119, 16.243, 5.2388, 1.1675, 11.251, 11.476, 5.677, 7.0713, 5.9497, 6.1142, 5.9872, 6.3665, 5.3506, 10.9437, 5.7263, 5.3802, 7.1361, 5.4302, 10.9353, 5.8038, 6.4297, 5.44, 6.916, 5.5144, 6.5415, 16.9008, 6.0387, 22.6488, 7.2284, 5.578, 6.8772, 10.8709, 5.4731, 5.6732, 5.8308, 6.2315, 5.8064, 5.7871, 11.1718, 5.5516, 5.6067, 0.7601, 5.4455, 5.3041, 5.3625, 6.736, 22.361, 5.7411, 5.9402, 10.8621, 5.8305, 5.4045, 5.5463, 5.4576, 10.7327, 5.78, 7.4201, 5.7013, 11.6246, 5.9547, 5.5361, 5.6145, 5.6372, 5.4088, 6.2015, 11.4148, 6.7234, 10.9599, 7.062, 5.7337, 10.7796, 11.1613, 6.0103, 6.0399, 5.3658, 10.6204, 11.7426, 5.3632, 6.5157, 16.5837, 5.8708, 5.4128, 11.2321, 5.6143, 5.8563, 5.4293, 5.4336, 10.7648, 32.5551, 11.6403, 5.6462, 18.0833, 5.8858, 6.8548, 10.3357, 11.5767, 6.8195, 6.2129, 5.9946, 14.0977, 5.5213, 10.6478, 1.3733, 5.9459, 6.7005, 6.2456, 6.3236, 6.906, 12.4762, 5.501, 11.2605, 6.5789, 12.2843, 5.851, 16.6118, 5.5287, 17.5643, 5.59, 5.5482, 6.3262, 7.3094, 6.5825, 16.5291, 5.4443, 5.9519, 6.6659, 10.4594, 5.7697, 6.5179, 7.0214, 5.4128, 6.5436, 10.9012, 11.6246, 5.4076, 10.9043, 15.9397, 10.9274, 6.2783, 6.4883, 11.4846, 10.8831, 10.9844, 0.8545, 5.6417, 10.9963, 5.5811, 5.7471, 12.341, 11.1332, 6.8557, 6.4085, 6.5265, 5.9316, 5.5718, 11.4949, 7.3361, 5.7724, 6.0637, 5.7306, 6.4721, 5.3084, 5.4727, 5.9242, 5.6725, 11.0118, 6.9845, 21.8353, 16.8672, 11.0695, 5.9311, 11.2693, 5.2767, 5.3189, 1.4267, 5.2311, 11.126, 5.3058, 6.2718, 5.5106, 7.9632, 6.5117, 11.1353, 11.2922, 5.2817, 11.3921, 5.4433, 5.9352, 6.7818, 6.2325, 5.7039, 17.3011, 16.8135, 10.2973, 5.7831, 5.5046, 6.6411, 11.0772, 5.4612, 5.3537, 5.6317, 6.048, 11.3602, 5.8103, 11.3282, 5.4569, 6.1462, 6.2802, 21.9569, 6.2373, 0.7267, 11.7242, 11.5666, 5.8169, 10.3939, 12.7101, 6.4681, 10.9653, 11.3783, 5.6512, 6.3491, 5.5482, 12.81, 10.8976, 5.3122, 5.4023, 5.4064, 10.9055, 11.5964, 0.849, 5.4376, 10.9603, 8.1506, 6.4476, 5.5821, 0.895, 5.8885, 5.6462, 0.5808, 5.8467, 5.583, 5.8722, 11.2438, 6.0754, 17.0596, 5.9824, 6.4085, 6.0453, 5.61, 7.1809, 10.6418, 5.5139, 11.8182, 6.0079, 6.1409, 5.6705, 5.9686, 0.6707, 5.3098, 11.9689, 5.5983, 5.6047, 5.5335, 11.2681, 5.8129, 5.321, 5.3167, 11.3099, 6.9361, 7.4306, 12.2271, 6.4085, 5.6503, 6.5117, 16.9625, 0.948, 5.4018, 6.9423, 5.6291, 5.2912, 6.6793, 16.7069, 1.0686, 7.5362, 6.4754, 11.883, 5.6794, 7.4599, 6.5842, 5.8196, 5.4991, 5.8038, 11.6451, 6.372, 6.6843, 1.0276, 5.8811, 5.6934, 5.6419, 11.3139, 5.4493, 10.7813, 6.1519, 11.0748], '192.168.122.112': [5.5342, 11.0235, 5.3666, 11.2834, 5.8365, 10.9851, 5.5668, 11.1356, 5.8403, 5.7235, 5.6922, 6.1729, 10.9103, 6.3565, 5.5394, 6.0523, 5.2805, 5.2862, 6.2823, 5.5754, 5.9714, 5.8775, 17.38, 5.7259, 11.3878, 11.2431, 6.0239, 5.3458, 11.1618, 5.3532, 5.8091, 12.1195, 6.7995, 5.2416, 11.1339, 5.5535, 5.4934, 11.8639, 5.5432, 5.2412, 5.5408, 12.2368, 10.7446, 11.3373, 6.2647, 5.914, 11.3628, 6.0723, 5.7194, 5.4581, 7.0159, 5.2595, 6.5265, 5.5027, 5.5854, 5.3098, 5.971, 16.5551, 6.201, 5.9819, 10.7923, 5.6484, 5.2514, 5.821, 10.8609, 5.9843, 11.3888, 10.8192, 11.7347, 10.886, 1.5421, 5.6229, 6.2499, 11.2231, 6.6915, 5.7855, 5.7902, 6.8958, 7.2958, 10.4649, 6.2261, 6.4514, 5.471, 11.2321, 5.3859, 10.9754, 5.4657, 11.8718, 5.3711, 6.5846, 10.8001, 5.4877, 6.556, 16.6802, 5.5258, 6.901, 6.5038, 6.227, 10.86, 5.4467, 5.4791, 5.8393, 11.5345, 6.0334, 5.7411, 5.301, 6.9048, 11.2207, 1.0729, 27.7073, 5.5475, 5.4188, 5.2893, 5.5687, 6.2594, 10.7512, 19.2313, 5.5146, 16.1669, 18.1286, 6.5949, 6.1591, 5.3153, 16.8183, 11.0939, 5.4779, 11.1027, 10.8237, 11.2326, 6.6452, 5.7452, 5.6384, 11.1573, 5.8682, 22.3427, 5.5764, 6.7279, 6.3944, 12.5799, 5.6267, 6.1972, 5.4224, 5.249, 11.8926, 11.6062, 11.2021, 7.0002, 5.9688, 11.2183, 5.5656, 10.8242, 16.8774, 10.9594, 6.2079, 5.9845, 5.301, 6.5849, 5.4436, 6.4721, 5.4648, 6.6254, 5.7359, 16.3352, 5.852, 6.2528, 5.4135, 11.1575, 5.5006, 5.8901, 1.195, 5.8918, 11.1127, 6.916, 6.588, 6.4628, 6.953, 10.9603, 6.0089, 6.8879, 6.4993, 5.5985, 10.7083, 11.0164, 6.2821, 6.2215, 5.6107, 17.8685, 10.9491, 15.4843, 5.4364, 5.3735, 11.3401, 6.8364, 10.6072, 5.5034, 11.1709, 6.7713, 5.3997, 5.6758, 6.1135, 5.9938, 5.4712, 5.2788, 5.379, 7.1414, 5.7685, 5.7576, 10.766, 11.3254, 5.7132, 0.993, 11.3223, 11.024, 6.1076, 11.1575, 6.3334, 16.741, 16.7253, 11.2627, 10.6711, 10.6163, 7.391, 11.2448, 5.945, 6.0124, 11.3816, 6.4406, 11.0044, 5.2321, 10.8542, 5.9569, 5.7321, 6.2466, 6.5055, 6.0158, 10.6411, 11.0326, 10.4811, 5.6455, 7.0407, 5.4173, 1.2598, 5.9223, 5.5265, 5.2669, 6.2816, 6.6209, 16.072, 11.3175, 5.754, 1.1294, 5.8401, 5.4803, 5.4629, 6.3298, 5.9309, 5.7666, 10.8647, 11.1313, 7.3612, 5.892, 5.4204, 11.1408, 6.7327, 5.3248, 5.4514, 10.7927, 11.2646, 5.5017, 6.0275, 6.6695, 5.5175, 6.8195, 10.9115, 5.2726, 5.6944, 5.8692, 0.6936, 5.6849, 5.3005, 5.9209, 5.8179, 5.7538, 6.7201, 5.7702, 11.0788, 5.8544, 5.3067, 5.3303, 10.8018, 5.3556, 16.5355, 5.6152, 5.3966, 6.4626, 6.8619, 0.71, 5.3821, 5.4834, 19.5286, 5.4283, 5.893, 0.8774, 7.7083, 5.388, 0.8602, 6.7475, 12.1965, 5.3527, 11.5886, 5.4119, 5.5864, 5.671, 6.418, 10.8743, 5.5268, 5.9578, 6.7575, 6.3653, 5.6207, 11.0466, 10.8755, 11.6341, 11.4682, 6.2838, 6.6051, 6.0532, 7.2143, 6.4554, 5.6536, 6.7689, 5.842, 5.6367, 6.2401, 10.4873, 11.1978, 6.2242, 10.8969, 5.6725, 5.2683, 10.8359, 5.8007, 0.7579, 5.5573, 7.1144, 5.5046, 10.6452, 5.5692, 11.0986, 0.9634, 5.4519, 5.9872, 5.5604, 6.1219, 11.1403, 6.4495, 5.4703, 6.5126, 5.5857, 6.1297, 6.7737, 11.0033, 5.8131, 5.3322, 11.6692, 22.4624, 10.5932, 11.3494, 6.835, 5.4142, 6.5007]}
cpu1_2_7 = [19.4, 29.2, 0.1, 2.2, 1.0, 0.3, 0.1, 1.7, 0.5, 0.5, 0.1, 1.8, 1.3, 0.6, 0.8, 2.2, 0.3, 2.0, 2.3, 1.6, 0.3, 1.1, 0.8, 0.1, 0.4, 1.1, 1.9, 0.4, 0.4, 0.4, 0.8, 0.3, 0.9, 0.7, 0.9, 0.2, 0.2, 0.2, 0.8, 0.7, 0.6, 0.7, 0.8, 0.5, 0.3, 3.3, 3.5, 1.2, 1.4, 0.6, 0.1, 0.3, 0.5, 0.4, 0.2, 0.3, 0.6, 0.2, 0.6, 0.3, 1.6, 1.4, 0.4, 1.7, 0.7, 0.5, 0.9, 0.7, 0.5, 1.1, 0.8, 6.3, 5.9, 0.2, 0.6, 0.2, 0.4, 0.3, 0.7, 0.1, 0.2, 0.4, 0.2, 0.2, 0.6, 1.2, 0.1, 1.7, 2.0, 0.5, 1.3, 1.2, 0.0, 0.8, 0.2, 0.3, 0.3, 1.1, 1.4, 0.6, 0.2, 0.4, 1.1, 1.2, 0.4, 0.4, 0.6, 1.1, 0.3, 0.1, 0.5, 0.6, 0.2, 0.4, 1.2, 0.1, 0.5, 1.1, 0.6, 1.0, 1.4, 0.2, 1.0, 0.4, 0.7, 0.2, 0.5, 0.5, 1.1, 2.6, 1.0, 0.1, 3.3, 4.3, 0.4, 0.7, 1.4, 0.9, 1.7, 4.7, 2.4, 1.3, 0.8, 1.6, 1.8, 0.7, 0.7, 0.5, 0.2, 1.3, 4.5, 5.9, 0.4, 5.0, 4.7, 0.0, 1.1, 1.3, 0.8, 0.9, 4.9, 4.5, 0.8, 1.1, 1.5, 1.9, 0.2, 1.0, 4.4, 6.0, 0.4, 1.2, 0.4, 0.8, 0.2, 1.6, 0.3, 0.3, 0.7, 0.1, 0.7, 0.2, 0.0, 0.4, 0.0, 0.1, 1.0, 0.2, 0.3, 0.3, 0.6, 0.1, 3.2, 3.7, 0.3, 4.8, 4.6, 3.9, 4.0, 0.1, 5.0, 2.3, 2.7, 0.5, 1.2, 0.0, 1.6, 0.9, 0.9, 0.5, 0.0, 1.7, 1.3, 0.3, 1.0, 1.9, 0.8, 0.1, 0.7, 1.7, 0.6, 0.5, 0.2, 1.3, 1.0, 0.3, 1.7, 1.1, 1.1, 0.4, 1.1, 0.9, 1.2, 0.2, 0.5, 0.5, 0.6, 0.8, 0.7, 1.0, 0.2, 0.3, 0.3, 0.9, 0.9, 0.3, 1.0, 2.2, 1.0, 1.4, 0.3, 1.1, 0.3, 0.7, 0.7, 0.6, 2.1, 1.0, 1.0, 0.1, 0.0, 0.0, 1.2, 2.3, 1.0, 0.3, 0.0, 0.2, 2.2, 1.9, 0.3, 1.2, 0.6, 1.1, 2.6, 2.6, 2.4, 2.4, 1.0, 2.0, 0.9, 4.9, 0.3, 3.9, 0.6, 0.8, 0.6, 2.1, 2.6, 1.4, 1.7, 1.6, 1.2, 0.9, 0.8, 1.0, 1.4, 0.7, 0.8, 0.9, 1.4, 0.1, 1.5, 0.1, 4.8, 1.6, 2.7, 0.4, 2.4, 2.3, 1.2, 1.0, 2.3, 1.4, 0.8, 0.2, 0.7, 0.3, 0.3, 0.1, 1.8, 5.2, 3.2, 2.8, 1.7, 0.2, 0.0, 1.6, 1.0, 1.6, 2.2, 1.8, 1.9, 0.3, 1.2, 0.0, 0.4, 0.3, 2.2, 1.3, 3.8, 3.5, 1.2, 2.3, 0.9, 1.0, 0.1, 1.5, 0.2, 1.4, 0.4, 0.3, 0.7, 0.9, 0.3, 4.0, 4.5, 0.0, 0.1, 5.9, 5.2, 1.7, 0.9, 0.4, 0.0, 1.3, 0.1, 0.5, 1.6, 0.4, 0.3]
off_mec1_2_7 = 284
off_cloud1_2_7 = 392
inward_mec1_2_7 = 222
loc1_2_7 = 635
deadlock1_2_7 = [7]
memory1_2_7 = [0.2175, 0.2178, 0.2179, 0.218, 0.2182, 0.2182, 0.2182, 0.2182, 0.2183, 0.2184, 0.2184, 0.2184, 0.2184, 0.2184, 0.2188, 0.2189, 0.2189, 0.219, 0.219, 0.219, 0.219, 0.219, 0.219, 0.2191, 0.2192, 0.2192, 0.2192, 0.2192, 0.2192, 0.2192, 0.2193, 0.2193, 0.2193, 0.2193, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2195, 0.2196, 0.2196, 0.2196, 0.2197, 0.2197, 0.2198, 0.2198, 0.2199, 0.2199, 0.2199, 0.2199, 0.2199, 0.2199, 0.22, 0.2201, 0.2201, 0.2201, 0.2201, 0.2201, 0.2201, 0.2201, 0.2201, 0.2202, 0.2202, 0.2203, 0.2204, 0.2204, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2205, 0.2206, 0.2206, 0.2207, 0.2207, 0.2208, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.2209, 0.221, 0.221, 0.221, 0.2211, 0.2211, 0.2211, 0.2213, 0.2213, 0.2213, 0.2214, 0.2214, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2215, 0.2216, 0.2217, 0.2217, 0.2217, 0.2217, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2218, 0.2219, 0.2219, 0.2219, 0.2219, 0.2219, 0.2219, 0.222, 0.222, 0.222, 0.222, 0.222, 0.2221, 0.2221, 0.2222, 0.2222, 0.2222, 0.2222, 0.2223, 0.2223, 0.2223, 0.2223, 0.2223, 0.2224, 0.2224, 0.2224, 0.2224, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2225, 0.2226, 0.2226, 0.2227, 0.2227, 0.2229, 0.2229, 0.223, 0.223, 0.223, 0.223, 0.223, 0.223, 0.223, 0.2231, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2232, 0.2233, 0.2233, 0.2233, 0.2234, 0.2234, 0.2234, 0.2234, 0.2234, 0.2235, 0.2235, 0.2235, 0.2235, 0.2235, 0.2236, 0.2236, 0.2237, 0.2237, 0.2237, 0.2238, 0.2238, 0.2238, 0.2239, 0.2239, 0.2239, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.224, 0.2241, 0.2241, 0.2241, 0.2241, 0.2242, 0.2242, 0.2242, 0.2242, 0.2245, 0.2245, 0.2245, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2246, 0.2247, 0.2247, 0.2247, 0.2247, 0.2248, 0.2248, 0.2248, 0.2248, 0.2249, 0.2249, 0.2249, 0.225, 0.225, 0.225, 0.2251, 0.2251, 0.2251, 0.2251, 0.2252, 0.2252, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2253, 0.2254, 0.2255, 0.2255, 0.2255, 0.2255, 0.2258, 0.2258, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.2259, 0.226, 0.226, 0.226, 0.2261, 0.2261, 0.2261, 0.2261, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2262, 0.2263, 0.2263, 0.2263, 0.2263, 0.2264, 0.2264, 0.2264, 0.2264, 0.2265, 0.2265, 0.2267, 0.2268, 0.2268, 0.2269, 0.2269, 0.2269, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2272, 0.2273, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2274, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2275, 0.2276, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2277, 0.2278, 0.2278, 0.2278, 0.2279, 0.2279, 0.228, 0.228, 0.228, 0.228, 0.228, 0.228, 0.2283, 0.2283, 0.2283, 0.2283, 0.2284, 0.2284, 0.2284]
task_received1_2_7 = 1311
sent_t1_2_7 = {'125': 375, '124': 449, '126': 487}
cooperate1_2_7 = {'mec': 284, 'cloud': 392}
task_record1_2_7 = {}
outward_mec1_2_7 = 244
offload_check1_2_7 = [197, 42]
timed_out_tasks1_2_7 = 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
fa8d31d66b14a0e8182646257c68eb38f41cd82f
| 3,517
|
py
|
Python
|
lib/turkish_nltk/trnltk/morphology/contextful/likelihoodmetrics/contextlessdistribution/contextlessdistributioncalculator.py
|
myasiny/wordembed
|
d4df516a4ac6eed71d1cc6e085638e895c525de6
|
[
"MIT"
] | null | null | null |
lib/turkish_nltk/trnltk/morphology/contextful/likelihoodmetrics/contextlessdistribution/contextlessdistributioncalculator.py
|
myasiny/wordembed
|
d4df516a4ac6eed71d1cc6e085638e895c525de6
|
[
"MIT"
] | null | null | null |
lib/turkish_nltk/trnltk/morphology/contextful/likelihoodmetrics/contextlessdistribution/contextlessdistributioncalculator.py
|
myasiny/wordembed
|
d4df516a4ac6eed71d1cc6e085638e895c525de6
|
[
"MIT"
] | null | null | null |
"""
Copyright 2012 Ali Ok (aliokATapacheDOTorg)
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 division
| 48.178082
| 147
| 0.76315
|
"""
Copyright 2012 Ali Ok (aliokATapacheDOTorg)
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 division
from trnltk.morphology.contextful.likelihoodmetrics.hidden.querykeyappender import _word_parse_result_appender, _word_surface_appender
class ContextlessDistributionCalculator(object):
def __init__(self, database_index_builder, target_form_given_context_counter, smoother):
"""
@type database_index_builder: DatabaseIndexBuilder
@type target_form_given_context_counter: TargetFormGivenContextCounter
@type smoother: ContextlessDistributionSmoother
"""
self._database_index_builder = database_index_builder
self._target_form_given_context_counter = target_form_given_context_counter
self._smoother = smoother
def build_indexes(self):
self._database_index_builder.create_indexes([(_word_parse_result_appender,)])
self._database_index_builder.create_indexes([(_word_surface_appender,)])
def calculate(self, target, calculation_context=None):
"""
Without considering context and wordforms, calculates (how many times given parse result occurs) /
(how many times given parse result's surface occurs).
Values are smoothed, so that we have an estimation for the parse results and
surfaces that doesn't exist in the database
@type target: WordFormContainer
@rtype calculation_context: dict
@rtype: float
"""
# since we ignore the syntactic category, it is better to call "surface without syn cat" "word"
word_occurrence_count = self._target_form_given_context_counter._count_target_form_given_context(None, [target.get_surface()], False, None,
_word_surface_appender)
parse_result_occurrence_count = None
if not word_occurrence_count:
parse_result_occurrence_count = 0
else:
parse_result_occurrence_count = self._target_form_given_context_counter._count_target_form_given_context(None, [target], False, None,
_word_parse_result_appender)
if calculation_context is not None:
calculation_context['word_occurrence_count'] = word_occurrence_count
calculation_context['parse_result_occurrence_count'] = parse_result_occurrence_count
smooth_parse_result_occurrence_count = self._smoother.smooth_parse_result_occurrence_count(parse_result_occurrence_count)
smooth_word_occurrence_count = self._smoother.smooth_word_occurrence_count(word_occurrence_count)
smooth_likelihood = smooth_parse_result_occurrence_count / smooth_word_occurrence_count
if calculation_context is not None:
calculation_context['smooth_word_occurrence_count'] = smooth_word_occurrence_count
calculation_context['smooth_parse_result_occurrence_count'] = smooth_parse_result_occurrence_count
calculation_context['smooth_likelihood'] = smooth_likelihood
return smooth_likelihood
| 0
| 0
| 0
| 2,749
| 0
| 0
| 0
| 113
| 45
|
6f99d3106f3bc1094a862c8c7aa78296741c8631
| 2,810
|
py
|
Python
|
jaqs/data/basic/position.py
|
WestXu/JAQS
|
3c9389afab518f188b8628af72297d750c07dfb1
|
[
"Apache-2.0"
] | 602
|
2017-11-21T00:39:40.000Z
|
2022-03-16T06:13:08.000Z
|
jaqs/data/basic/position.py
|
WestXu/JAQS
|
3c9389afab518f188b8628af72297d750c07dfb1
|
[
"Apache-2.0"
] | 63
|
2017-12-08T08:21:16.000Z
|
2020-03-07T13:57:35.000Z
|
jaqs/data/basic/position.py
|
WestXu/JAQS
|
3c9389afab518f188b8628af72297d750c07dfb1
|
[
"Apache-2.0"
] | 365
|
2017-11-21T01:38:36.000Z
|
2022-03-30T15:55:30.000Z
|
# encoding:utf-8
| 23.813559
| 79
| 0.552313
|
# encoding:utf-8
class Position(object):
"""
Basic position class.
Attributes
----------
symbol : str
List of securities.
side : str
("Long", "Short"). Positions of different sides will not be merged.
cost_price : float
Average cost price of current net position.
close_pnl : float
float_pnl : float
trading_pnl : float
holding_pnl : float
init_size : int
Position at the start of the day.
enable_size : int
Position that can be closed.
frozen_size : int
Positions to be closed.
want_size : int
Positions to be opened.
pre_size : int
Last day's position.
today_size : int
Today's position.
current_size : int
Current position.
Methods
-------
"""
'''
__slots__ = ['symbol', 'side', 'cost_price',
'close_pnl', 'float_pnl', 'trading_pnl', 'holding_pnl',
'enable_size', 'frozen_size', 'want_size',
'today_size', 'pre_size', 'current_size', 'init_size',
'commission']
'''
def __init__(self, symbol=""):
self.symbol = symbol
self.side = ""
self.cost_price = 0.0
self.close_pnl = 0.0
self.float_pnl = 0.0
self.trading_pnl = 0.0
self.holding_pnl = 0.0
self.enable_size = 0
self.frozen_size = 0
self.want_size = 0
self.today_size = 0
self.pre_size = 0
self.current_size = 0
self.init_size = 0
self.commission = 0.0
def __repr__(self):
return "{0.side:7s} {0.current_size:5d} of {0.symbol:10s}".format(self)
def __str__(self):
return self.__repr__()
@classmethod
def create_from_df(cls, df):
bar_list = []
for _, row in df.iterrows():
dic = row.to_dict()
bar = cls.create_from_dict(dic)
bar_list.append(bar)
return bar_list
@classmethod
def create_from_dict(cls, dic):
bar = cls()
bar.__dict__.update(dic)
return bar
class GoalPosition(object):
"""
Used in goal_portfolio function to generate orders.
Attributes
----------
symbol : str
ref_price : float
Reference price, used by risk management, not by order.
size : int
Target position size.
urgency : int
The urgency to adjust position, used to determine trading algorithm.
"""
def __init__(self):
self.symbol = ""
self.ref_price = 0.0
self.size = 0
self.urgency = 0
def __repr__(self):
return "{0.size:5d} of {0.symbol:10s}".format(self)
def __str__(self):
return self.__repr__()
| 0
| 315
| 0
| 2,430
| 0
| 0
| 0
| 0
| 46
|
7c155ca3ad86c8e2034ae70bd090f75f9ba1e72c
| 10,758
|
py
|
Python
|
conductor/conductor/controller/translator_svc.py
|
onap/optf-has
|
dd06e2675aedd7ae6344f2f51e70bbd468f36ce5
|
[
"Apache-2.0"
] | 4
|
2019-02-14T19:18:09.000Z
|
2019-10-21T17:17:59.000Z
|
conductor/conductor/controller/translator_svc.py
|
onap/optf-has
|
dd06e2675aedd7ae6344f2f51e70bbd468f36ce5
|
[
"Apache-2.0"
] | null | null | null |
conductor/conductor/controller/translator_svc.py
|
onap/optf-has
|
dd06e2675aedd7ae6344f2f51e70bbd468f36ce5
|
[
"Apache-2.0"
] | 4
|
2019-05-09T07:05:54.000Z
|
2020-11-20T05:56:47.000Z
|
#
# -------------------------------------------------------------------------
# Copyright (c) 2015-2017 AT&T Intellectual Property
# Copyright (C) 2020 Wipro Limited.
#
# 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 oslo_config import cfg
from oslo_log import log
LOG = log.getLogger(__name__)
CONF = cfg.CONF
CONTROLLER_OPTS = [
cfg.IntOpt('polling_interval',
default=1,
min=1,
help='Time between checking for new plans. '
'Default value is 1.'),
cfg.IntOpt('max_translation_counter',
default=1,
min=1),
cfg.StrOpt('opt_schema_file',
default='opt_schema.json',
help='json schema file which will be used to validate the '
'optimization object for the new template version'),
]
CONF.register_opts(CONTROLLER_OPTS, group='controller')
| 39.844444
| 113
| 0.604109
|
#
# -------------------------------------------------------------------------
# Copyright (c) 2015-2017 AT&T Intellectual Property
# Copyright (C) 2020 Wipro Limited.
#
# 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 socket
import time
import cotyledon
import futurist
from oslo_config import cfg
from oslo_log import log
from conductor.common.config_loader import load_config_file
from conductor.common import db_backend
from conductor.common.music import messaging as music_messaging
from conductor.common.utils import conductor_logging_util as log_util
from conductor.controller.generic_objective_translator import GenericObjectiveTranslator
from conductor.controller.translator import Translator
from conductor.controller.translator_utils import TranslatorException
from conductor.controller.translator_utils import VERSIONS
from conductor.i18n import _LE
from conductor.i18n import _LI
from conductor import messaging
LOG = log.getLogger(__name__)
CONF = cfg.CONF
CONTROLLER_OPTS = [
cfg.IntOpt('polling_interval',
default=1,
min=1,
help='Time between checking for new plans. '
'Default value is 1.'),
cfg.IntOpt('max_translation_counter',
default=1,
min=1),
cfg.StrOpt('opt_schema_file',
default='opt_schema.json',
help='json schema file which will be used to validate the '
'optimization object for the new template version'),
]
CONF.register_opts(CONTROLLER_OPTS, group='controller')
class TranslatorService(cotyledon.Service):
"""Template Translator service.
This service looks for untranslated templates and
preps them for solving by the Solver service.
"""
# This will appear in 'ps xaf'
name = "Template Translator"
def __init__(self, worker_id, conf, **kwargs):
"""Initializer"""
LOG.debug("{}".format(self.__class__.__name__))
super(TranslatorService, self).__init__(worker_id)
self._init(conf, **kwargs)
self.running = True
def _init(self, conf, **kwargs):
self.conf = conf
self.Plan = kwargs.get('plan_class')
self.kwargs = kwargs
self.opt_schema = load_config_file(str(self.conf.controller.opt_schema_file))
# Set up the RPC service(s) we want to talk to.
self.data_service = self.setup_rpc(conf, "data")
# Set up Music access.
self.music = db_backend.get_client()
self.translation_owner_condition = {
"translation_owner": socket.gethostname()
}
self.template_status_condition = {
"status": self.Plan.TEMPLATE
}
self.translating_status_condition = {
"status": self.Plan.TRANSLATING
}
if not self.conf.controller.concurrent:
self._reset_template_status()
def _gracefully_stop(self):
"""Gracefully stop working on things"""
pass
def millisec_to_sec(self, millisec):
"""Convert milliseconds to seconds"""
return millisec / 1000
def _reset_template_status(self):
"""Reset plans being templated so they are translated again.
Use this only when the translator service is not running concurrently.
"""
plans = self.Plan.query.get_plan_by_col("status", self.Plan.TRANSLATING)
for the_plan in plans:
the_plan.status = self.Plan.TEMPLATE
# Use only in active-passive mode, so don't have to be atomic
the_plan.update()
def _restart(self):
"""Prepare to restart the service"""
pass
def current_time_seconds(self):
"""Current time in milliseconds."""
return int(round(time.time()))
def setup_rpc(self, conf, topic):
"""Set up the RPC Client"""
# TODO(jdandrea): Put this pattern inside music_messaging?
transport = messaging.get_transport(conf=conf)
target = music_messaging.Target(topic=topic)
client = music_messaging.RPCClient(conf=conf,
transport=transport,
target=target)
return client
def translate(self, plan):
"""Translate the plan to a format the solver can use"""
# Update the translation field and set status to TRANSLATED.
try:
LOG.info(_LI("Requesting plan {} translation").format(
plan.id))
template_version = plan.template.get("homing_template_version")
if template_version in VERSIONS['BASE']:
trns = Translator(self.conf, plan.name, plan.id, plan.template)
elif template_version in VERSIONS['GENERIC']:
trns = GenericObjectiveTranslator(self.conf, plan.name, plan.id, plan.template, self.opt_schema)
else:
raise TranslatorException(
"conductor_template_version must be one "
"of: {}".format(', '.join([x for v in VERSIONS.values() for x in v])))
trns.translate()
if trns.ok:
plan.translation = trns.translation
plan.status = self.Plan.TRANSLATED
LOG.info(_LI(
"Plan {} translated. Ready for solving").format(
plan.id))
LOG.info(_LI(
"Plan name: {}").format(
plan.name))
else:
plan.message = trns.error_message
plan.status = self.Plan.ERROR
LOG.error(_LE(
"Plan {} translation error encountered").format(
plan.id))
except Exception as ex:
template = "An exception of type {0} occurred, arguments:\n{1!r}"
plan.message = template.format(type(ex).__name__, ex.args)
plan.status = self.Plan.ERROR
_is_success = 'FAILURE'
while 'FAILURE' in _is_success and (self.current_time_seconds() - self.millisec_to_sec(plan.updated)) \
<= self.conf.messaging_server.timeout:
_is_success = plan.update(condition=self.translation_owner_condition)
LOG.info(_LI("Changing the template status from translating to {}, "
"atomic update response from MUSIC {}").format(plan.status, _is_success))
def __check_for_templates(self):
"""Wait for the polling interval, then do the real template check."""
# Wait for at least poll_interval sec
polling_interval = self.conf.controller.polling_interval
time.sleep(polling_interval)
# Look for plans with the status set to TEMPLATE
# Instead of using the query.all() method, now creating an index for 'status'
# field in conductor.plans table, and query plans by status columns
template_plans = self.Plan.query.get_plan_by_col("status", self.Plan.TEMPLATE)
translating_plans = self.Plan.query.get_plan_by_col("status", self.Plan.TRANSLATING)
# combine the plans with status = 'template' and 'translating' together
plans = template_plans + translating_plans
for plan in plans:
# If there's a template to be translated, do it!
if plan.status == self.Plan.TEMPLATE:
if plan.translation_counter >= self.conf.controller.max_translation_counter:
message = _LE("Tried {} times. Plan {} is unable to translate") \
.format(self.conf.controller.max_translation_counter, plan.id)
plan.message = message
plan.status = self.Plan.ERROR
plan.update(condition=self.template_status_condition)
LOG.error(message)
break
else:
# change the plan status to "translating" and assign the current machine as translation owner
plan.status = self.Plan.TRANSLATING
plan.translation_counter += 1
plan.translation_owner = socket.gethostname()
plan.translation_begin_timestamp = int(round(time.time() * 1000))
_is_updated = plan.update(condition=self.template_status_condition)
log_util.setLoggerFilter(LOG, self.conf.keyspace, plan.id)
LOG.info(_LE("Plan {} is trying to update the status from 'template' to 'translating',"
" get {} response from MUSIC").format(plan.id, _is_updated))
if not _is_updated:
break
if _is_updated and 'SUCCESS' in _is_updated:
self.translate(plan)
break
# TODO(larry): sychronized clock among Conducotr VMs, or use an offset
elif plan.status == self.Plan.TRANSLATING and (self.current_time_seconds()
- self.millisec_to_sec(plan.updated)) \
> self.conf.messaging_server.timeout:
plan.status = self.Plan.TEMPLATE
plan.update(condition=self.translating_status_condition)
break
elif plan.timedout:
# TODO(jdandrea): How to tell all involved to stop working?
# Not enough to just set status.
continue
def run(self):
"""Run"""
LOG.debug("{}".format(self.__class__.__name__))
# Look for templates to translate from within a thread
executor = futurist.ThreadPoolExecutor()
while self.running:
fut = executor.submit(self.__check_for_templates)
fut.result()
executor.shutdown()
def terminate(self):
"""Terminate"""
LOG.debug("{}".format(self.__class__.__name__))
self.running = False
self._gracefully_stop()
super(TranslatorService, self).terminate()
def reload(self):
"""Reload"""
LOG.debug("{}".format(self.__class__.__name__))
self._restart()
| 0
| 0
| 0
| 8,572
| 0
| 0
| 0
| 330
| 356
|
100224c5e87268947545ef064b470a911e6290c0
| 1,266
|
py
|
Python
|
src/findenum.py
|
WOWZON3/RoseOnline
|
ec17901400fedb1a4705a8a8bb69925910c5b0cd
|
[
"Apache-2.0"
] | 1
|
2020-03-09T22:19:26.000Z
|
2020-03-09T22:19:26.000Z
|
src/findenum.py
|
WOWZON3/RoseOnline
|
ec17901400fedb1a4705a8a8bb69925910c5b0cd
|
[
"Apache-2.0"
] | null | null | null |
src/findenum.py
|
WOWZON3/RoseOnline
|
ec17901400fedb1a4705a8a8bb69925910c5b0cd
|
[
"Apache-2.0"
] | null | null | null |
#!/bin/python3
enum = {}
previousValue = None
with open("rosecommon/include/epackettype.h", "r") as f:
for i in range(46):
f.readline()
for line in f:
if "};" in line:
break
name, value = parse(line)
if value:
enum[name] = value
while True:
value = input("Enter the hex value of the packet: ")
for name, v in enum.items():
if int(value, 16) == v:
if "PAKCS" in name:
print("Sent by client :", name)
else:
print("Sent by server :", name)
| 25.32
| 56
| 0.50237
|
#!/bin/python3
enum = {}
previousValue = None
def parse(line):
global previousValue
line = line.strip()
if len(line) == 0:
return None, None
id = line.find("//")
if id != -1:
line = line[:id]
line = line.strip()
line = line[:-1]
line = line.split("=")
line[0] = line[0].strip()
if len(line[0]) == 0:
return None, None
if len(line) < 2:
if previousValue is None:
exit(-1)
previousValue += 1
line.append("%x" % previousValue)
else:
line[1] = line[1].strip()
try:
previousValue = int(line[1], 16)
except ValueError:
return line[0], enum[line[1]]
return line[0], int(line[1], 16)
with open("rosecommon/include/epackettype.h", "r") as f:
for i in range(46):
f.readline()
for line in f:
if "};" in line:
break
name, value = parse(line)
if value:
enum[name] = value
while True:
value = input("Enter the hex value of the packet: ")
for name, v in enum.items():
if int(value, 16) == v:
if "PAKCS" in name:
print("Sent by client :", name)
else:
print("Sent by server :", name)
| 0
| 0
| 0
| 0
| 0
| 668
| 0
| 0
| 23
|
07f45e7eb5d042bbd5cc5645219b308998496484
| 15,270
|
py
|
Python
|
addon_common/common/utils.py
|
senjacob/retopoflow
|
7817bb7d68f98e5ae2c7835f28eeafe76367789e
|
[
"OML"
] | null | null | null |
addon_common/common/utils.py
|
senjacob/retopoflow
|
7817bb7d68f98e5ae2c7835f28eeafe76367789e
|
[
"OML"
] | null | null | null |
addon_common/common/utils.py
|
senjacob/retopoflow
|
7817bb7d68f98e5ae2c7835f28eeafe76367789e
|
[
"OML"
] | null | null | null |
'''
Copyright (C) 2021 CG Cookie
http://cgcookie.com
[email protected]
Created by Jonathan Denning, Jonathan Williamson
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
'''
import bpy
##################################################
# find functions of object that has key attribute
# returns list of (attribute value, fn)
##################################################
StructRNA = bpy.types.bpy_struct
registered_objects = {}
#################################################
#########################################################
#########################################################
#########################################################
#################################################
#################################################
def join(sep, iterable, preSep='', postSep='', toStr=str):
'''
this function adds features on to sep.join(iterable)
if iterable is not empty, preSep is prepended and postSep is appended
also, all items of iterable are turned to strings using toStr, which can be customized
ex: join(', ', [1,2,3]) => '1, 2, 3'
ex: join('.', ['foo', 'bar'], preSep='.') => '.foo.bar'
'''
s = sep.join(map(toStr, iterable))
if not s: return ''
return f'{preSep}{s}{postSep}'
def get_matrices(ob):
''' obtain blender object matrices '''
mx = ob.matrix_world
imx = mx.inverted()
return [mx, imx]
| 33.123644
| 97
| 0.576228
|
'''
Copyright (C) 2021 CG Cookie
http://cgcookie.com
[email protected]
Created by Jonathan Denning, Jonathan Williamson
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
'''
import os
import re
import sys
import glob
import inspect
import operator
import itertools
import importlib
import bpy
from mathutils import Vector, Matrix
from .blender import get_preferences
from .profiler import profiler
from .debug import dprint, debugger
from .maths import (
Point, Direction, Normal, Frame,
Point2D, Vec2D, Direction2D,
Ray, XForm, BBox, Plane
)
##################################################
# find functions of object that has key attribute
# returns list of (attribute value, fn)
def find_fns(obj, key):
cls = type(obj)
fn_type = type(find_fns)
members = [getattr(cls, k) for k in dir(cls)]
methods = [member for member in members if type(member) == fn_type]
return [
(getattr(method, key), method)
for method in methods
if hasattr(method, key)
]
##################################################
StructRNA = bpy.types.bpy_struct
def still_registered(self, oplist):
if getattr(still_registered, 'is_broken', False): return False
def is_registered():
cur = bpy.ops
for n in oplist:
if not hasattr(cur, n): return False
cur = getattr(cur, n)
try: StructRNA.path_resolve(self, "properties")
except:
print('no properties!')
return False
return True
if is_registered(): return True
still_registered.is_broken = True
print('bpy.ops.%s is no longer registered!' % '.'.join(oplist))
return False
registered_objects = {}
def registered_object_add(self):
global registered_objects
opid = self.operator_id
print('Registering bpy.ops.%s' % opid)
registered_objects[opid] = (self, opid.split('.'))
def registered_check():
global registered_objects
return all(still_registered(s, o) for (s, o) in registered_objects.values())
#################################################
def find_and_import_all_subclasses(cls, root_path=None):
here_path = os.path.realpath(os.path.dirname(__file__))
if root_path is None:
root_path = os.path.realpath(os.path.join(here_path, '..'))
touched_paths = set()
found_subclasses = set()
def search(root):
nonlocal touched_paths, found_subclasses, here_path
root = os.path.realpath(root)
if root in touched_paths: return
touched_paths.add(root)
relpath = os.path.relpath(root, here_path)
#print(' relpath: %s' % relpath)
for path in glob.glob(os.path.join(root, '*')):
if os.path.isdir(path):
if not path.endswith('__pycache__'):
search(path)
continue
if os.path.splitext(path)[1] != '.py':
continue
try:
pyfile = os.path.splitext(os.path.basename(path))[0]
if pyfile == '__init__': continue
pyfile = os.path.join(relpath, pyfile)
pyfile = re.sub(r'\\', '/', pyfile)
if pyfile.startswith('./'): pyfile = pyfile[2:]
level = pyfile.count('..')
pyfile = re.sub(r'^(\.\./)*', '', pyfile)
pyfile = re.sub('/', '.', pyfile)
#print(' Searching: %s (%d, %s)' % (pyfile, level, path))
try:
tmp = importlib.__import__(pyfile, globals(), locals(), [], level=level+1)
except Exception as e:
print('Caught exception while attempting to search for classes')
print(' cls: %s' % str(cls))
print(' pyfile: %s' % pyfile)
print(' %s' % str(e))
#print(' Could not import')
continue
for tk in dir(tmp):
m = getattr(tmp, tk)
if not inspect.ismodule(m): continue
for k in dir(m):
v = getattr(m, k)
if not inspect.isclass(v): continue
if v is cls: continue
if not issubclass(v, cls): continue
# v is a subclass of cls, so add it to the global namespace
#print(' Found %s in %s' % (str(v), pyfile))
globals()[k] = v
found_subclasses.add(v)
except Exception as e:
print('Exception occurred while searching %s' % path)
debugger.print_exception()
#print('Searching for class %s' % str(cls))
#print(' cwd: %s' % os.getcwd())
#print(' Root: %s' % root_path)
search(root_path)
return found_subclasses
#########################################################
def delay_exec(action, f_globals=None, f_locals=None, ordered_parameters=None, precall=None):
if f_globals is None or f_locals is None:
frame = inspect.currentframe().f_back # get frame of calling function
if f_globals is None: f_globals = frame.f_globals # get globals of calling function
if f_locals is None: f_locals = frame.f_locals # get locals of calling function
def run_it(*args, **kwargs):
# args are ignored!?
nf_locals = dict(f_locals)
if ordered_parameters:
for k,v in zip(ordered_parameters, args):
nf_locals[k] = v
nf_locals.update(kwargs)
try:
if precall: precall(nf_locals)
return exec(action, f_globals, nf_locals)
except Exception as e:
print('Caught exception while trying to run a delay_exec')
print(' action:', action)
print(' except:', e)
raise e
return run_it
#########################################################
def git_info(start_at_caller=True):
if start_at_caller:
path_root = os.path.abspath(inspect.stack()[1][1])
else:
path_root = os.path.abspath(os.path.dirname(__file__))
try:
path_git_head = None
while path_root:
path_test = os.path.join(path_root, '.git', 'HEAD')
if os.path.exists(path_test):
# found it!
path_git_head = path_test
break
if os.path.split(path_root)[1] in {'addons', 'addons_contrib'}:
break
path_root = os.path.dirname(path_root) # try next level up
if not path_git_head:
# could not find .git folder
return None
path_git_ref = open(path_git_head).read().split()[1]
if not path_git_ref.startswith('refs/heads/'):
print('git detected, but HEAD uses unexpected format')
return None
path_git_ref = path_git_ref[len('refs/heads/'):]
git_ref_fullpath = os.path.join(path_root, '.git', 'logs', 'refs', 'heads', path_git_ref)
if not os.path.exists(git_ref_fullpath):
print('git detected, but could not find ref file %s' % git_ref_fullpath)
return None
log = open(git_ref_fullpath).read().splitlines()
commit = log[-1].split()[1]
return ('%s %s' % (path_git_ref, commit))
except Exception as e:
print('An exception occurred while checking git info')
print(e)
return None
#########################################################
def kwargopts(kwargs, defvals=None, **mykwargs):
opts = defvals.copy() if defvals else {}
opts.update(mykwargs)
opts.update(kwargs)
if 'opts' in kwargs: opts.update(opts['opts'])
def factory():
class Opts():
''' pretend to be a dictionary, but also add . access fns '''
def __init__(self):
self.touched = set()
def __getattr__(self, opt):
self.touched.add(opt)
return opts[opt]
def __getitem__(self, opt):
self.touched.add(opt)
return opts[opt]
def __len__(self): return len(opts)
def has_key(self, opt): return opt in opts
def keys(self): return opts.keys()
def values(self): return opts.values()
def items(self): return opts.items()
def __contains__(self, opt): return opt in opts
def __iter__(self): return iter(opts)
def print_untouched(self):
print('untouched: %s' % str(set(opts.keys()) - self.touched))
def pass_through(self, *args):
return {key:self[key] for key in args}
return Opts()
return factory()
def kwargs_translate(key_from, key_to, kwargs):
if key_from in kwargs:
kwargs[key_to] = kwargs[key_from]
del kwargs[key_from]
def kwargs_splitter(keys, kwargs):
if type(keys) is str: keys = [keys]
kw = {k:v for (k,v) in kwargs.items() if k in keys}
for k in keys:
if k in kwargs: del kwargs[k]
return kw
def any_args(*args):
return any(bool(a) for a in args)
def get_and_discard(d, k, default=None):
if k not in d: return default
v = d[k]
del d[k]
return v
#################################################
def abspath(*args, frame_depth=1, **kwargs):
frame = inspect.currentframe()
for i in range(frame_depth): frame = frame.f_back
module = inspect.getmodule(frame)
path = os.path.dirname(module.__file__)
return os.path.abspath(os.path.join(path, *args, **kwargs))
#################################################
def strshort(s, l=50):
s = str(s)
return s[:l] + ('...' if len(s) > l else '')
def join(sep, iterable, preSep='', postSep='', toStr=str):
'''
this function adds features on to sep.join(iterable)
if iterable is not empty, preSep is prepended and postSep is appended
also, all items of iterable are turned to strings using toStr, which can be customized
ex: join(', ', [1,2,3]) => '1, 2, 3'
ex: join('.', ['foo', 'bar'], preSep='.') => '.foo.bar'
'''
s = sep.join(map(toStr, iterable))
if not s: return ''
return f'{preSep}{s}{postSep}'
def accumulate_last(iterable, *args, **kwargs):
# returns last result when accumulating
# https://docs.python.org/3.7/library/itertools.html#itertools.accumulate
final = None
for step in itertools.accumulate(iterable, *args, **kwargs):
final = step
return final
def selection_mouse():
select_type = get_preferences().inputs.select_mouse
return ['%sMOUSE' % select_type, 'SHIFT+%sMOUSE' % select_type]
def get_settings():
if not hasattr(get_settings, 'cache'):
addons = get_preferences().addons
folderpath = os.path.dirname(os.path.abspath(__file__))
while folderpath:
folderpath,foldername = os.path.split(folderpath)
if foldername in {'lib','addons', 'addons_contrib'}: continue
if foldername in addons: break
else:
assert False, 'Could not find non-"lib" folder'
if not addons[foldername].preferences: return None
get_settings.cache = addons[foldername].preferences
return get_settings.cache
def get_dpi():
system_preferences = get_preferences().system
factor = getattr(system_preferences, "pixel_size", 1)
return int(system_preferences.dpi * factor)
def get_dpi_factor():
return get_dpi() / 72
def blender_version():
major,minor,rev = bpy.app.version
# '%03d.%03d.%03d' % (major, minor, rev)
return '%d.%02d' % (major,minor)
def iter_head(i, default=None):
try:
return next(iter(i))
except StopIteration:
return default
def iter_running_sum(lw):
s = 0
for w in lw:
s += w
yield (w,s)
def iter_pairs(items, wrap, repeat=False):
if not items: return
while True:
for i0,i1 in zip(items[:-1],items[1:]): yield i0,i1
if wrap: yield items[-1],items[0]
if not repeat: return
def rotate_cycle(cycle, offset):
l = len(cycle)
return [cycle[(l + ((i - offset) % l)) % l] for i in range(l)]
def max_index(vals, key=None):
if not key: return max(enumerate(vals), key=lambda ival:ival[1])[0]
return max(enumerate(vals), key=lambda ival:key(ival[1]))[0]
def min_index(vals, key=None):
if not key: return min(enumerate(vals), key=lambda ival:ival[1])[0]
return min(enumerate(vals), key=lambda ival:key(ival[1]))[0]
def shorten_floats(s):
# reduces number of digits (for float) found in a string
# useful for reducing noise of printing out a Vector, Buffer, Matrix, etc.
s = re.sub(r'(?P<neg>-?)(?P<d0>\d)\.(?P<d1>\d)\d\d+e-02', r'\g<neg>0.0\g<d0>\g<d1>', s)
s = re.sub(r'(?P<neg>-?)(?P<d0>\d)\.\d\d\d+e-03', r'\g<neg>0.00\g<d0>', s)
s = re.sub(r'-?\d\.\d\d\d+e-0[4-9]', r'0.000', s)
s = re.sub(r'-?\d\.\d\d\d+e-[1-9]\d', r'0.000', s)
s = re.sub(r'(?P<digs>\d\.\d\d\d)\d+', r'\g<digs>', s)
return s
def get_matrices(ob):
''' obtain blender object matrices '''
mx = ob.matrix_world
imx = mx.inverted()
return [mx, imx]
class AddonLocator(object):
def __init__(self, f=None):
self.fullInitPath = f if f else __file__
self.FolderPath = os.path.dirname(self.fullInitPath)
self.FolderName = os.path.basename(self.FolderPath)
def AppendPath(self):
sys.path.append(self.FolderPath)
print("Addon path has been registered into system path for this session")
class UniqueCounter():
__counter = 0
@staticmethod
def next():
UniqueCounter.__counter += 1
return UniqueCounter.__counter
class Dict():
'''
a fancy dictionary object
'''
def __init__(self, *args, **kwargs):
self.__dict__['__d'] = {}
self.set(*args, **kwargs)
def __getitem__(self, k):
return self.__dict__['__d'][k]
def __setitem__(self, k, v):
self.__dict__['__d'][k] = v
return v
def __delitem__(self, k):
del self.__dict__['__d'][k]
def __getattr__(self, k):
return self.__dict__['__d'][k]
def __setattr__(self, k, v):
self.__dict__['__d'][k] = v
return v
def __delattr__(self, k):
del self.__dict__['__d'][k]
def set(self, d=None, **kwargs):
if d:
for k,v in d.items():
self[k] = v
for k,v in kwargs.items():
self[k] = v
def __str__(self): return str(self.__dict__['__d'])
def __repr__(self): return repr(self.__dict__['__d'])
| 0
| 84
| 0
| 2,210
| 260
| 9,602
| 0
| 84
| 975
|
9751201d5d87e45e65a5fb9c8931abc18fb84269
| 1,575
|
py
|
Python
|
src/speech_distillation/custom_discriminator.py
|
AlonKellner/hifi-gan
|
e842836a0c879289c1848e922695ea1117715739
|
[
"MIT"
] | null | null | null |
src/speech_distillation/custom_discriminator.py
|
AlonKellner/hifi-gan
|
e842836a0c879289c1848e922695ea1117715739
|
[
"MIT"
] | null | null | null |
src/speech_distillation/custom_discriminator.py
|
AlonKellner/hifi-gan
|
e842836a0c879289c1848e922695ea1117715739
|
[
"MIT"
] | null | null | null |
import torch.nn as nn
| 38.414634
| 105
| 0.645079
|
import torch
import torch.nn as nn
import torch.nn.functional as f
class AllInOneDiscriminator(nn.Module):
def __init__(self, pre_model, blocks, post_model):
super(AllInOneDiscriminator, self).__init__()
self.pre_model = pre_model
self.blocks = blocks
self.post_model = post_model
def forward(self, raw):
x = self.pre_model(raw)
for block in self.blocks:
x = block(x, raw)
return self.post_model(x)
class AllInOneBlock(nn.Module):
def __init__(self, before_block, raw_blocks, after_block, padding_mode='constant', padding_value=0):
super(AllInOneBlock, self).__init__()
self.before_block = before_block
self.raw_blocks = raw_blocks if raw_blocks is not None else []
self.after_block = after_block
self.padding_mode = padding_mode
self.padding_value = padding_value
def forward(self, x, raw):
x = self.before_block(x)
processed_raw_results = [raw_block(raw) for raw_block in self.raw_blocks]
all_results = [x, *processed_raw_results]
lengths = [result.size()[2] for result in all_results]
max_length = max(lengths)
paddings = [max_length - length for length in lengths]
padded_results = [f.pad(result, (0, padding), self.padding_mode, self.padding_value) for
result, padding in zip(all_results, paddings)]
concatted = torch.cat(padded_results, dim=1)
x = self.after_block(concatted)
return x
| 0
| 0
| 0
| 1,451
| 0
| 0
| 0
| 1
| 96
|
1946612015dd895b8e3ea0ba5a88d89c172ea93a
| 279
|
py
|
Python
|
hrsalespipes/system/templatetags/custom_tags.py
|
hanztura/hrsalespipes
|
77accf3132726ced05d84fa2a41891b841f310b8
|
[
"Apache-2.0"
] | 3
|
2020-03-26T12:43:43.000Z
|
2021-05-10T14:35:51.000Z
|
hrsalespipes/system/templatetags/custom_tags.py
|
hanztura/hrsalespipes
|
77accf3132726ced05d84fa2a41891b841f310b8
|
[
"Apache-2.0"
] | 5
|
2021-04-08T21:15:15.000Z
|
2022-02-10T11:03:12.000Z
|
hrsalespipes/system/templatetags/custom_tags.py
|
hanztura/hrsalespipes
|
77accf3132726ced05d84fa2a41891b841f310b8
|
[
"Apache-2.0"
] | 1
|
2022-01-30T19:24:48.000Z
|
2022-01-30T19:24:48.000Z
|
from django import template
register = template.Library()
| 21.461538
| 65
| 0.792115
|
import json
from django import template
from django.utils.html import mark_safe
register = template.Library()
@register.simple_tag
def many_to_many_uuid_to_string(values):
values_in_json = json.dumps([str(value) for value in values])
return mark_safe(values_in_json)
| 0
| 143
| 0
| 0
| 0
| 0
| 0
| 8
| 67
|
222f2b885bae826ffd49b963ae706336578e70ae
| 770
|
py
|
Python
|
test/AggregationTest.py
|
drbobdugan/smoss
|
3232ddfbb89450143a0fbca54c9be75730e3b3ec
|
[
"MIT"
] | null | null | null |
test/AggregationTest.py
|
drbobdugan/smoss
|
3232ddfbb89450143a0fbca54c9be75730e3b3ec
|
[
"MIT"
] | 3
|
2018-04-15T16:34:00.000Z
|
2018-04-15T16:48:43.000Z
|
test/AggregationTest.py
|
CSC400-S18/smoss
|
3232ddfbb89450143a0fbca54c9be75730e3b3ec
|
[
"MIT"
] | 1
|
2019-02-21T02:27:40.000Z
|
2019-02-21T02:27:40.000Z
|
import unittest
if __name__ == '__main__':
unittest.main()
| 27.5
| 78
| 0.672727
|
import unittest
from Aggregation import Aggregation
class MyTestCase(unittest.TestCase):
def setUp(self):
self.aggregation = Aggregation("name", 0) #(Name, Data)
def test_getName(self):
self.assertEqual(self.aggregation.getName(), "name")
def test_setName(self):
self.aggregation.setName("newName")
self.assertEqual(self.aggregation.getName(), "newName")
def test_getData(self):
self.assertEqual(self.aggregation.getData(), 0)
def test_setData(self):
self.aggregation.setData(100)
self.assertEqual(self.aggregation.getData(), 100)
def test_toString(self):
self.assertEqual(self.aggregation.toString(), "name" + " \t" + str(0))
if __name__ == '__main__':
unittest.main()
| 0
| 0
| 0
| 646
| 0
| 0
| 0
| 14
| 45
|
1f6db259e333de15840e73f5d1d44c55e1081bcd
| 4,737
|
py
|
Python
|
CV/HW10/HW10.py
|
r07922003/NTU
|
4414b656643bc0079c12617190fa2a519d2331f8
|
[
"MIT"
] | null | null | null |
CV/HW10/HW10.py
|
r07922003/NTU
|
4414b656643bc0079c12617190fa2a519d2331f8
|
[
"MIT"
] | null | null | null |
CV/HW10/HW10.py
|
r07922003/NTU
|
4414b656643bc0079c12617190fa2a519d2331f8
|
[
"MIT"
] | null | null | null |
# coding: utf-8
from PIL import Image
import numpy as np
lena = Image.open("lena.bmp")
mask1 = np.array([[0 , 1 , 0],
[1 ,-4 , 1],
[0 , 1 , 0]])
mask2 = (1/3) * np.array([[1, 1, 1],
[1,-8, 1],
[1, 1, 1]])
minimum_mask = (1/3) * np.array([[ 2,-1, 2],
[-1,-4,-1],
[ 2,-1, 2]])
'''
gaussian_mask = np.array([[ 0, 0, 0, -1, -1, -2, -1, -1, 0, 0, 0],
[ 0, 0, -2, -4, -8, -9, -8, -4, -2, 0, 0],
[ 0,-2, -7,-15,-22,-23,-22,-15, -7,-2, 0],
[-1,-4,-15,-24,-14, -1,-14,-24,-15,-4,-1],
[-1,-8,-22,-14, 52,103, 52,-14,-22,-8,-1],
[-2,-9,-23, -1,103,179,103, -1,-23,-9,-2],
[-1,-8,-22,-14, 52,103, 52,-14,-22,-8,-1],
[-1,-4,-15,-24,-14, -1,-14,-24,-15,-4,-1],
[ 0,-2, -7,-15,-22,-23,-22,-15, -7,-2, 0],
[ 0, 0, -2, -4, -8, -9, -8, -4, -2, 0, 0],
[ 0, 0, 0, -1, -1, -2, -1, -1, 0, 0, 0]])
diff_gaussian = np.array([[ -1. -3. -4. -6. -7. -8. -7. -6. -4. -3. -1.]
[ -3. -5. -8. -11. -13. -13. -13. -11. -8. -5. -3.]
[ -4. -8. -12. -16. -17. -17. -17. -16. -12. -8. -4.]
[ -6. -11. -16. -16. 0. 15. 0. -16. -16. -11. -6.]
[ -7. -13. -17. 0. 85. 160. 85. 0. -17. -13. -7.]
[ -8. -13. -17. 15. 160. 283. 160. 15. -17. -13. -8.]
[ -7. -13. -17. 0. 85. 160. 85. 0. -17. -13. -7.]
[ -6. -11. -16. -16. 0. 15. 0. -16. -16. -11. -6.]
[ -4. -8. -12. -16. -17. -17. -17. -16. -12. -8. -4.]
[ -3. -5. -8. -11. -13. -13. -13. -11. -8. -5. -3.]
[ -1. -3. -4. -6. -7. -8. -7. -6. -4. -3. -1.]])
'''
gaussian_mask = np.zeros((11,11))
sigma = 1.4
for i in range(-5,6,1):
for j in range(-5,6,1):
tmp = -175 * (((i * i) + (j * j) - 2 * sigma * sigma) * np.exp(((i * i) + (j * j)) / (-2 * sigma * sigma)) / (sigma * sigma * sigma * sigma))
if tmp > 0:
gaussian_mask[i+5,j+5] = int (tmp + 0.5)
else:
gaussian_mask[i+5,j+5] = int (tmp - 0.5)
diff_gaussian = np.zeros((11,11))
sigma1 = 1
sigma2 = 3
for i in range(-5,6,1):
for j in range(-5,6,1):
tmp1 = ( 1/(2 * np.pi * sigma1 ** 2) ) * np.exp( (-0.5) * ((i**2) + (j**2)) / ((sigma1)**2 ) )
tmp2 = ( 1/(2 * np.pi * sigma2 ** 2) ) * np.exp( (-0.5) * ((i**2) + (j**2)) / ((sigma2)**2 ) )
diff_gaussian[i+5,j+5] = int ( (tmp1 - tmp2) * 2000.0 + 0.5 )
Laplace_Mask1 = Laplace(lena,18,mask1)
Laplace_Mask2 = Laplace(lena,18,mask2)
Minimum_variance_Laplace = Laplace(lena,20,minimum_mask)
Laplace_Mask1.save("Laplace_Mask1.bmp")
Laplace_Mask2.save("Laplace_Mask2.bmp")
Minimum_variance_Laplace.save("Minimum_variance_Laplace.bmp")
Laplace_of_Gaussuan = Gaussian(lena,5000,gaussian_mask)
Laplace_of_Gaussuan.save("Laplace_of_Gaussuan.bmp")
Difference_of_Gaussian = Gaussian(lena,70000,diff_gaussian)
Difference_of_Gaussian.save("Difference_of_Gaussian.bmp")
| 41.920354
| 149
| 0.411231
|
# coding: utf-8
from PIL import Image, ImageDraw
import numpy as np
def Laplace(img,threshold,mask):
pixel = img.load()
img_new = Image.new(img.mode,img.size)
array = np.zeros((img.width,img.height))
for i in range(1,img.width-1):
for j in range(1,img.height-1):
temp = 0
for x in range(-1,2):
for y in range(-1,2):
temp += pixel[i+x,j+y]*mask[x+1][y+1]
array[i][j] = temp
for i in range(img.width):
for j in range(img.height):
if array[i,j] < threshold:
img_new.putpixel((i,j),255)
else:
img_new.putpixel((i,j),0)
return img_new
def Gaussian(img,threshold,mask):
pixel = img.load()
img_new = Image.new(img.mode,img.size)
array = np.zeros((img.width,img.height))
for i in range(5,img.width-5):
for j in range(5,img.height-5):
temp = 0
for x in range(-5,6):
for y in range(-5,6):
temp += pixel[i+x,j+y]*mask[-x+5][-y+5]
array[i][j] = temp
for i in range(img.width):
for j in range(img.height):
if array[i,j] < threshold:
img_new.putpixel((i,j),255)
else:
img_new.putpixel((i,j),0)
return img_new
lena = Image.open("lena.bmp")
mask1 = np.array([[0 , 1 , 0],
[1 ,-4 , 1],
[0 , 1 , 0]])
mask2 = (1/3) * np.array([[1, 1, 1],
[1,-8, 1],
[1, 1, 1]])
minimum_mask = (1/3) * np.array([[ 2,-1, 2],
[-1,-4,-1],
[ 2,-1, 2]])
'''
gaussian_mask = np.array([[ 0, 0, 0, -1, -1, -2, -1, -1, 0, 0, 0],
[ 0, 0, -2, -4, -8, -9, -8, -4, -2, 0, 0],
[ 0,-2, -7,-15,-22,-23,-22,-15, -7,-2, 0],
[-1,-4,-15,-24,-14, -1,-14,-24,-15,-4,-1],
[-1,-8,-22,-14, 52,103, 52,-14,-22,-8,-1],
[-2,-9,-23, -1,103,179,103, -1,-23,-9,-2],
[-1,-8,-22,-14, 52,103, 52,-14,-22,-8,-1],
[-1,-4,-15,-24,-14, -1,-14,-24,-15,-4,-1],
[ 0,-2, -7,-15,-22,-23,-22,-15, -7,-2, 0],
[ 0, 0, -2, -4, -8, -9, -8, -4, -2, 0, 0],
[ 0, 0, 0, -1, -1, -2, -1, -1, 0, 0, 0]])
diff_gaussian = np.array([[ -1. -3. -4. -6. -7. -8. -7. -6. -4. -3. -1.]
[ -3. -5. -8. -11. -13. -13. -13. -11. -8. -5. -3.]
[ -4. -8. -12. -16. -17. -17. -17. -16. -12. -8. -4.]
[ -6. -11. -16. -16. 0. 15. 0. -16. -16. -11. -6.]
[ -7. -13. -17. 0. 85. 160. 85. 0. -17. -13. -7.]
[ -8. -13. -17. 15. 160. 283. 160. 15. -17. -13. -8.]
[ -7. -13. -17. 0. 85. 160. 85. 0. -17. -13. -7.]
[ -6. -11. -16. -16. 0. 15. 0. -16. -16. -11. -6.]
[ -4. -8. -12. -16. -17. -17. -17. -16. -12. -8. -4.]
[ -3. -5. -8. -11. -13. -13. -13. -11. -8. -5. -3.]
[ -1. -3. -4. -6. -7. -8. -7. -6. -4. -3. -1.]])
'''
gaussian_mask = np.zeros((11,11))
sigma = 1.4
for i in range(-5,6,1):
for j in range(-5,6,1):
tmp = -175 * (((i * i) + (j * j) - 2 * sigma * sigma) * np.exp(((i * i) + (j * j)) / (-2 * sigma * sigma)) / (sigma * sigma * sigma * sigma))
if tmp > 0:
gaussian_mask[i+5,j+5] = int (tmp + 0.5)
else:
gaussian_mask[i+5,j+5] = int (tmp - 0.5)
diff_gaussian = np.zeros((11,11))
sigma1 = 1
sigma2 = 3
for i in range(-5,6,1):
for j in range(-5,6,1):
tmp1 = ( 1/(2 * np.pi * sigma1 ** 2) ) * np.exp( (-0.5) * ((i**2) + (j**2)) / ((sigma1)**2 ) )
tmp2 = ( 1/(2 * np.pi * sigma2 ** 2) ) * np.exp( (-0.5) * ((i**2) + (j**2)) / ((sigma2)**2 ) )
diff_gaussian[i+5,j+5] = int ( (tmp1 - tmp2) * 2000.0 + 0.5 )
Laplace_Mask1 = Laplace(lena,18,mask1)
Laplace_Mask2 = Laplace(lena,18,mask2)
Minimum_variance_Laplace = Laplace(lena,20,minimum_mask)
Laplace_Mask1.save("Laplace_Mask1.bmp")
Laplace_Mask2.save("Laplace_Mask2.bmp")
Minimum_variance_Laplace.save("Minimum_variance_Laplace.bmp")
Laplace_of_Gaussuan = Gaussian(lena,5000,gaussian_mask)
Laplace_of_Gaussuan.save("Laplace_of_Gaussuan.bmp")
Difference_of_Gaussian = Gaussian(lena,70000,diff_gaussian)
Difference_of_Gaussian.save("Difference_of_Gaussian.bmp")
| 0
| 0
| 0
| 0
| 0
| 1,232
| 0
| 11
| 50
|
b4eafd640caac93dd636f0f796b99b6a750bf17c
| 3,519
|
py
|
Python
|
src/State.py
|
CURocketEngineering/firefly_chi
|
4a6bd3f4a5f0e98fd3fb70e7b121409e490c980b
|
[
"MIT"
] | 2
|
2020-08-27T23:21:19.000Z
|
2021-03-27T17:46:36.000Z
|
src/State.py
|
CURocketEngineering/firefly_chi
|
4a6bd3f4a5f0e98fd3fb70e7b121409e490c980b
|
[
"MIT"
] | 4
|
2020-05-31T21:21:55.000Z
|
2021-03-02T03:19:10.000Z
|
src/State.py
|
CURocketEngineering/firefly_chi
|
4a6bd3f4a5f0e98fd3fb70e7b121409e490c980b
|
[
"MIT"
] | null | null | null |
"""
State.py
========
Perform actions of the rocket and manage state.
`hooks` is a dictionary mapping a hook string to a
list of functions to thread when the hook occurs.
"""
| 30.868421
| 78
| 0.580563
|
"""
State.py
========
Perform actions of the rocket and manage state.
`hooks` is a dictionary mapping a hook string to a
list of functions to thread when the hook occurs.
"""
import datetime
from os import system
from threading import Thread
class State:
def __init__(self, conf, data, hooks={}):
self.hooks = hooks
self.conf = conf
self.data = data
# Map of state to function
self.actions = {
"HALT": self.halt, # Rocket should not do anything
"ARM": self.arm, # Rocket is ready to begin state system
"UPWARD": self.upward, # Rocket is going up
"APOGEE": self.apogee, # Rocket is at apogee
"DOWNWARD": self.downward, # rocket is going down
"EJECT": self.eject, # rocket is at main ejection altitude
"RECOVER": self.recover, # rocket is in recovery state
"SHUTDOWN": self.shutdown,
"RESTART": self.restart,
}
self.activate_hook("halt_start")
def act(self) -> str:
"""
Use the correct method for the correct state.
"""
self.conf.last_state = self.conf.state # Update last state
self.conf.state = self.actions[self.conf.state]() # Perform action
return self.conf.state # Return current state
def activate_hook(self, hook_name : str) -> None:
"""
Activate a hook function.
"""
print(f"Activating hook '{hook_name}'")
for function in self.hooks.get(hook_name, []):
t = Thread(target=function, args=(self.conf,self.data))
t.start()
def halt(self) -> str:
"""Do nothing. A halted rocket shouldn't do anything."""
return "HALT"
def arm(self) -> str:
"""
Wait for launch.
System is going up if it is 100 meters in the air and 8/10 of the last
dp readings are negative.
"""
# Detect if system starts to go up
distance_above_ground = self.data.to_dict()["sensors"]["alt"]
if self.data.check_dp_lt_val(0) and distance_above_ground > 100:
self.activate_hook("arm_end")
self.activate_hook("upward_start")
return "UPWARD"
return "ARM"
def upward(self):
"""Change state to Use air-stoppers if necessary."""
if self.data.check_dp_gt_val(0):
self.activate_hook("upward_end")
self.activate_hook("apogee_start")
return "APOGEE"
return "UPWARD"
def apogee(self):
"""Eject parachute."""
self.activate_hook("apogee_end")
self.activate_hook("downward_start")
return "DOWNWARD"
def downward(self):
"""Wait until correct altitude."""
if self.data.to_dict()["sensors"]["alt"] < self.conf.MAIN_ALTITUDE:
self.activate_hook("wait_end")
self.activate_hook("eject_start")
return "EJECT"
return "DOWNWARD"
def eject(self):
"""Eject other parachute."""
self.activate_hook("eject_end")
self.activate_hook("recover_start")
return "RECOVER"
def recover(self):
"""Do nothing."""
return "RECOVER"
def restart(self):
"""Restart the system."""
system('reboot now')
def shutdown(self):
"""Shutdown the system."""
system("shutdown -s")
def __str__(self):
return str(self.conf.state)
def __repr__(self):
return str(self)
| 0
| 0
| 0
| 3,251
| 0
| 0
| 0
| 1
| 90
|
cb5cc264838a049bb01efdf466c2192f20d6e36e
| 1,361
|
py
|
Python
|
red_light_detection/red_interval_extraction.py
|
nickchenchj/darknet
|
49e0dcfed005a8982e4fc80885f234e9cffee4c8
|
[
"BSD-3-Clause"
] | null | null | null |
red_light_detection/red_interval_extraction.py
|
nickchenchj/darknet
|
49e0dcfed005a8982e4fc80885f234e9cffee4c8
|
[
"BSD-3-Clause"
] | null | null | null |
red_light_detection/red_interval_extraction.py
|
nickchenchj/darknet
|
49e0dcfed005a8982e4fc80885f234e9cffee4c8
|
[
"BSD-3-Clause"
] | null | null | null |
import sys
if __name__ == '__main__':
if len(sys.argv) < 5:
print("Error: too few arguments")
print("Usage: python3 %s <input-filename> <output-filename> <sample-size> <threshold>" % (sys.argv[0]))
sys.exit()
input_filename = sys.argv[1]
output_filename = sys.argv[2]
sample_size = int(sys.argv[3])
threshold = int(sys.argv[4])
with open(input_filename, 'r', encoding='utf-8') as file:
data = list(map(int, file.readlines()))
frame_start = 0
frame_end = 0
frame_start_is_set = False
data_size = len(data)
total = 0
for i in range(sample_size):
total += data[i]
if (total >= threshold):
frame_start = 0
frame_start_is_set = True
for i in range(data_size - sample_size):
total -= data[i]
total += data[i + sample_size]
if (frame_start_is_set == False and total >= threshold):
frame_start = i + 1
frame_start_is_set = True
elif (frame_start_is_set == True and total < threshold):
frame_end = i + sample_size
break
with open(output_filename, 'w', encoding='utf-8') as file:
file.write('%d\n%d' % (frame_start, frame_end))
print('red light interval (frame_id):')
print(' start: %d' % (frame_start))
print(' end: %d' % (frame_end))
| 29.586957
| 111
| 0.587068
|
import sys
if __name__ == '__main__':
if len(sys.argv) < 5:
print("Error: too few arguments")
print("Usage: python3 %s <input-filename> <output-filename> <sample-size> <threshold>" % (sys.argv[0]))
sys.exit()
input_filename = sys.argv[1]
output_filename = sys.argv[2]
sample_size = int(sys.argv[3])
threshold = int(sys.argv[4])
with open(input_filename, 'r', encoding='utf-8') as file:
data = list(map(int, file.readlines()))
frame_start = 0
frame_end = 0
frame_start_is_set = False
data_size = len(data)
total = 0
for i in range(sample_size):
total += data[i]
if (total >= threshold):
frame_start = 0
frame_start_is_set = True
for i in range(data_size - sample_size):
total -= data[i]
total += data[i + sample_size]
if (frame_start_is_set == False and total >= threshold):
frame_start = i + 1
frame_start_is_set = True
elif (frame_start_is_set == True and total < threshold):
frame_end = i + sample_size
break
with open(output_filename, 'w', encoding='utf-8') as file:
file.write('%d\n%d' % (frame_start, frame_end))
print('red light interval (frame_id):')
print(' start: %d' % (frame_start))
print(' end: %d' % (frame_end))
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
d9cc10ef963e540b44c33e4e5ec9838d481d7efb
| 1,617
|
py
|
Python
|
recorded_future/unit_test/test_lookup_vulnerability.py
|
killstrelok/insightconnect-plugins
|
911358925f4233ab273dbd8172e8b7b9188ebc01
|
[
"MIT"
] | null | null | null |
recorded_future/unit_test/test_lookup_vulnerability.py
|
killstrelok/insightconnect-plugins
|
911358925f4233ab273dbd8172e8b7b9188ebc01
|
[
"MIT"
] | 1
|
2021-02-23T23:57:37.000Z
|
2021-02-23T23:57:37.000Z
|
recorded_future/unit_test/test_lookup_vulnerability.py
|
killstrelok/insightconnect-plugins
|
911358925f4233ab273dbd8172e8b7b9188ebc01
|
[
"MIT"
] | null | null | null |
import sys
import os
sys.path.append(os.path.abspath('../'))
| 35.933333
| 116
| 0.669759
|
import sys
import os
sys.path.append(os.path.abspath('../'))
from unittest import TestCase
from komand_recorded_future.connection.connection import Connection
from komand_recorded_future.actions.lookup_vulnerability import LookupVulnerability
import json
import logging
class TestLookupVulnerability(TestCase):
def test_integration_lookup_vulnerability(self):
log = logging.getLogger("Test")
test_conn = Connection()
test_action = LookupVulnerability()
test_conn.logger = log
test_action.logger = log
try:
with open("../tests/lookup_vulnerability.json") as file:
test_json = json.loads(file.read()).get("body")
connection_params = test_json.get("connection")
action_params = test_json.get("input")
except Exception as e:
message = """
Could not find or read sample tests from /tests directory
An exception here likely means you didn't fill out your samples correctly in the /tests directory
Please use 'icon-plugin generate samples', and fill out the resulting test files in the /tests directory
"""
self.fail(message)
test_conn.connect(connection_params)
test_action.connection = test_conn
results = test_action.run(action_params)
# TODO: The following assert should be updated to look for data from your action
# For example: self.assertEquals({"success": True}, results)
self.assertIsNotNone(results)
self.assertTrue("data" in results.keys())
| 0
| 0
| 0
| 1,322
| 0
| 0
| 0
| 99
| 134
|
1b03939b378717b4bea67bc3c3be919838f1e96f
| 2,049
|
py
|
Python
|
docs/02.AI_ML/code-1905/day04/demo07_vc2.py
|
mheanng/PythonNote
|
e3e5ede07968fab0a45f6ac4db96e62092c17026
|
[
"Apache-2.0"
] | 2
|
2020-04-09T05:56:23.000Z
|
2021-03-25T18:42:36.000Z
|
docs/02.AI_ML/code-1905/day04/demo07_vc2.py
|
mheanng/PythonNote
|
e3e5ede07968fab0a45f6ac4db96e62092c17026
|
[
"Apache-2.0"
] | 22
|
2020-04-09T06:09:14.000Z
|
2021-01-06T01:05:32.000Z
|
docs/02.AI_ML/code-1905/day04/demo07_vc2.py
|
mheanng/PythonNote
|
e3e5ede07968fab0a45f6ac4db96e62092c17026
|
[
"Apache-2.0"
] | 6
|
2020-03-09T07:19:21.000Z
|
2021-01-05T23:23:42.000Z
|
"""
demo06_vc.py
"""
import numpy as np
import sklearn.preprocessing as sp
import sklearn.ensemble as se
#
data = np.loadtxt('../ml_data/car.txt',
delimiter=',', dtype='U20',
converters={0:f, 1:f, 2:f, 3:f, 4:f, 5:f, 6:f})
#
data = data.T
train_x, train_y = [], []
encoders = []
for col in range(len(data)):
lbe = sp.LabelEncoder()
if col < len(data)-1: #
train_x.append(lbe.fit_transform(data[col]))
else:
train_y = lbe.fit_transform(data[col])
encoders.append(lbe) #
train_x = np.array(train_x).T
print(train_x)
#
model = se.RandomForestClassifier(max_depth=9,
n_estimators=140, random_state=7)
# # validation curve
# train_scores, test_scores = \
# ms.validation_curve(model, train_x,
# train_y, 'max_depth',
# np.arange(5, 15), cv=5)
# #
# x = np.arange(5, 15)
# y = test_scores.mean(axis=1)
# mp.figure('max_depth', facecolor='lightgray')
# mp.title('max_depth', fontsize=20)
# mp.xlabel('max_depth', fontsize=14)
# mp.ylabel('F1 Score', fontsize=14)
# mp.tick_params(labelsize=10)
# mp.grid(linestyle=':')
# mp.plot(x, y, 'o-', c='dodgerblue', label='Training')
# mp.xticks(x)
# mp.legend()
# mp.show()
model.fit(train_x, train_y)
#
data = [
['high', 'med', '5more', '4', 'big', 'low', 'unacc'],
['high', 'high', '4', '4', 'med', 'med', 'acc'],
['low', 'low', '2', '4', 'small', 'high', 'good'],
['low', 'med', '3', '4', 'med', 'high', 'vgood']]
# LabelEncoder
#
#
data = np.array(data).T
test_x, test_y = [], []
for col in range(len(data)):
encoder = encoders[col]
if col<len(data)-1:
test_x.append(encoder.transform(data[col]))
else:
test_y = encoder.transform(data[col])
test_x = np.array(test_x).T
pred_test_y = model.predict(test_x)
print(encoders[-1].inverse_transform(pred_test_y))
print(encoders[-1].inverse_transform(test_y))
| 25.296296
| 57
| 0.665691
|
"""
demo06_vc.py 验证曲线
"""
import numpy as np
import sklearn.preprocessing as sp
import sklearn.ensemble as se
import sklearn.model_selection as ms
import matplotlib.pyplot as mp
def f(s):
return str(s, encoding='utf-8')
# 读取文件
data = np.loadtxt('../ml_data/car.txt',
delimiter=',', dtype='U20',
converters={0:f, 1:f, 2:f, 3:f, 4:f, 5:f, 6:f})
# 整理训练集的输入与输出
data = data.T
train_x, train_y = [], []
encoders = []
for col in range(len(data)):
lbe = sp.LabelEncoder()
if col < len(data)-1: # 不是最后一列
train_x.append(lbe.fit_transform(data[col]))
else:
train_y = lbe.fit_transform(data[col])
encoders.append(lbe) #保存每列的标签编码器
train_x = np.array(train_x).T
print(train_x)
# 交叉验证 训练模型
model = se.RandomForestClassifier(max_depth=9,
n_estimators=140, random_state=7)
# # 使用validation curve选择最优超参数
# train_scores, test_scores = \
# ms.validation_curve(model, train_x,
# train_y, 'max_depth',
# np.arange(5, 15), cv=5)
# # 画图显示超参数取值与模型性能之间的关系
# x = np.arange(5, 15)
# y = test_scores.mean(axis=1)
# mp.figure('max_depth', facecolor='lightgray')
# mp.title('max_depth', fontsize=20)
# mp.xlabel('max_depth', fontsize=14)
# mp.ylabel('F1 Score', fontsize=14)
# mp.tick_params(labelsize=10)
# mp.grid(linestyle=':')
# mp.plot(x, y, 'o-', c='dodgerblue', label='Training')
# mp.xticks(x)
# mp.legend()
# mp.show()
model.fit(train_x, train_y)
# 模型测试
data = [
['high', 'med', '5more', '4', 'big', 'low', 'unacc'],
['high', 'high', '4', '4', 'med', 'med', 'acc'],
['low', 'low', '2', '4', 'small', 'high', 'good'],
['low', 'med', '3', '4', 'med', 'high', 'vgood']]
# 在训练时需要把所有的LabelEncoder保存下来,
# 在测试时,对测试数据的每一列使用相同的编码器进行编码,
# 然后进行预测,得出预测结果
data = np.array(data).T
test_x, test_y = [], []
for col in range(len(data)):
encoder = encoders[col]
if col<len(data)-1:
test_x.append(encoder.transform(data[col]))
else:
test_y = encoder.transform(data[col])
test_x = np.array(test_x).T
pred_test_y = model.predict(test_x)
print(encoders[-1].inverse_transform(pred_test_y))
print(encoders[-1].inverse_transform(test_y))
| 390
| 0
| 0
| 0
| 0
| 21
| 0
| 24
| 67
|
20aba656cffc937d4c4331116e4220baff9c76ba
| 1,313
|
py
|
Python
|
trivia/create_app.py
|
Xevion/trivia
|
5e7a659f8c4a7516a039ea9585d266be983b071d
|
[
"MIT"
] | null | null | null |
trivia/create_app.py
|
Xevion/trivia
|
5e7a659f8c4a7516a039ea9585d266be983b071d
|
[
"MIT"
] | null | null | null |
trivia/create_app.py
|
Xevion/trivia
|
5e7a659f8c4a7516a039ea9585d266be983b071d
|
[
"MIT"
] | null | null | null |
from flask_apscheduler import APScheduler
scheduler: APScheduler = None
| 29.177778
| 86
| 0.644326
|
from flask import Flask
from flask_apscheduler import APScheduler
from trivia.config import configs
scheduler: APScheduler = None
def create_app(env=None):
app = Flask(__name__)
if not env:
env = app.config['ENV']
app.config.from_object(configs[env])
# Fixes poor whitespace rendering in templates
app.jinja_env.trim_blocks = True
app.jinja_env.lstrip_blocks = True
with app.app_context():
# noinspection PyUnresolvedReferences
from trivia import routes, api, utils
# Setup a scheduler for automatically refreshing data
global scheduler
scheduler = APScheduler()
scheduler.init_app(app)
scheduler.start()
# Add score file polling
scheduler.add_job(id='polling', func=utils.refreshScores, trigger="interval",
seconds=app.config['POLLING_INTERVAL'])
if app.config['DEMO']:
app.logger.info('Generating Demo Data...')
# Generate initial Demo data
utils.generateDemo()
# Begin altering demo data regularly
scheduler.add_job(id='altering', func=utils.alterDemo, trigger="interval",
seconds=app.config['DEMO_ALTERATION_INTERVAL'])
utils.refreshScores()
return app
| 0
| 0
| 0
| 0
| 0
| 1,157
| 0
| 14
| 68
|
d169bdd391bd55defad7a541f6c8edfe9454a3fb
| 299
|
py
|
Python
|
ELAB04/04-06.py
|
tawanchaiii/01204111_63
|
edf1174f287f5174d93729d9b5c940c74d3b6553
|
[
"WTFPL"
] | null | null | null |
ELAB04/04-06.py
|
tawanchaiii/01204111_63
|
edf1174f287f5174d93729d9b5c940c74d3b6553
|
[
"WTFPL"
] | null | null | null |
ELAB04/04-06.py
|
tawanchaiii/01204111_63
|
edf1174f287f5174d93729d9b5c940c74d3b6553
|
[
"WTFPL"
] | null | null | null |
t = int(input("Input: "))
for i in range(t) :
ans = ''
for j in range(i+1) :
ans += str(cal(i,j)) + " "
###print(f"({i},{j} )",end=" ")
print(ans)
| 21.357143
| 42
| 0.454849
|
def fac(n) :
if n==0:
return 1
else :
return n * fac(n-1)
def cal(a,b):
return int (fac(a) / (fac(b)*fac(a-b)))
t = int(input("Input: "))
for i in range(t) :
ans = ''
for j in range(i+1) :
ans += str(cal(i,j)) + " "
###print(f"({i},{j} )",end=" ")
print(ans)
| 0
| 0
| 0
| 0
| 0
| 87
| 0
| 0
| 46
|
12e9e185652313844f0d61cf6bee19810f22d361
| 7,581
|
py
|
Python
|
lib/net_util.py
|
asjchen/skyflow_pollution
|
d54bc2ae2ad3235631f1a337249535b11a6c29bd
|
[
"BSD-3-Clause"
] | 3
|
2018-01-09T11:11:34.000Z
|
2021-05-23T16:09:17.000Z
|
lib/net_util.py
|
asjchen/skyflow_pollution
|
d54bc2ae2ad3235631f1a337249535b11a6c29bd
|
[
"BSD-3-Clause"
] | null | null | null |
lib/net_util.py
|
asjchen/skyflow_pollution
|
d54bc2ae2ad3235631f1a337249535b11a6c29bd
|
[
"BSD-3-Clause"
] | 3
|
2017-01-04T23:44:52.000Z
|
2017-01-05T09:51:19.000Z
|
"""
Functions common to both neural networks
"""
import math
import numpy as np
import data_util
import test_util
import feed_forward_nn
import elman_rnn
from nn_globals import NetHyperparams
from nn_globals import OUTPUT_DIM, NUM_VARS
def stochastic_gradient_descent(network_setup, train_data, model, \
verbose=2, verbose_n=1):
""" Performs stochastic gradient descent
network_setup: info on loss function, hyperparams, and RNN vs FFNN
train_data: dataset on which to train (in parsed form)
model: neural net current model
verbose: 0 to not print; 1 to print every inner iteration;
2 to print every verbose_n iterations
verbose_n: used for verbose=2 printing
"""
# Compute average levels
loss_func, loss_func_grad, possible_update, hyper = network_setup
temp = []
for elem in zip(*train_data)[0]:
if elem != None:
temp.append(elem)
temp_np = np.array(temp)
output_dim = model['b2'].shape[0]
data_len = float(len(temp))
divisor_vector = np.zeros((output_dim, 1))
divisor_vector.fill(data_len)
average_levels = np.sum(temp_np, axis=0)[: output_dim] / divisor_vector
# Main loop for SGD
num_updates = 0 # used for step size
train_inputs = [j[0] for j in train_data]
train_outputs = [j[1] for j in train_data]
for t in xrange(hyper.num_iterations):
for input_data, correct_output_data in train_data:
if input_data == None:
model['h'] = [np.zeros((hyper.hidden_dim, 1))]
continue
num_updates += 1
eta = hyper.step_scale / (math.sqrt(num_updates))
for param in loss_func_grad:
grad = loss_func_grad[param](input_data, \
correct_output_data, model, average_levels, hyper)
model[param] -= eta * grad
possible_update(model, input_data)
if verbose == 1:
print "Iteration ", t, ": W1 = ", model['W1'], " ; b1 = ", \
model['b1'], " ; W2 = ", model['W2'], " ; b2 = ", model['b2']
if verbose == 1 or verbose == 2 and t % verbose_n == 0:
print "-------------------------------------------------------"
print "ITERATION ", t, " COMPLETE"
current_loss = loss_func(train_inputs, train_outputs, model, \
average_levels, possible_update, hyper)
print "Current Loss: ", current_loss
final_loss = loss_func(train_inputs, train_outputs, model, \
average_levels, possible_update, hyper)
return (model, final_loss)
| 39.279793
| 85
| 0.669437
|
"""
Functions common to both neural networks
"""
import math
import numpy as np
import data_util
import test_util
import feed_forward_nn
import elman_rnn
from nn_globals import NetHyperparams
from nn_globals import OUTPUT_DIM, NUM_VARS
def stochastic_gradient_descent(network_setup, train_data, model, \
verbose=2, verbose_n=1):
""" Performs stochastic gradient descent
network_setup: info on loss function, hyperparams, and RNN vs FFNN
train_data: dataset on which to train (in parsed form)
model: neural net current model
verbose: 0 to not print; 1 to print every inner iteration;
2 to print every verbose_n iterations
verbose_n: used for verbose=2 printing
"""
# Compute average levels
loss_func, loss_func_grad, possible_update, hyper = network_setup
temp = []
for elem in zip(*train_data)[0]:
if elem != None:
temp.append(elem)
temp_np = np.array(temp)
output_dim = model['b2'].shape[0]
data_len = float(len(temp))
divisor_vector = np.zeros((output_dim, 1))
divisor_vector.fill(data_len)
average_levels = np.sum(temp_np, axis=0)[: output_dim] / divisor_vector
# Main loop for SGD
num_updates = 0 # used for step size
train_inputs = [j[0] for j in train_data]
train_outputs = [j[1] for j in train_data]
for t in xrange(hyper.num_iterations):
for input_data, correct_output_data in train_data:
if input_data == None:
model['h'] = [np.zeros((hyper.hidden_dim, 1))]
continue
num_updates += 1
eta = hyper.step_scale / (math.sqrt(num_updates))
for param in loss_func_grad:
grad = loss_func_grad[param](input_data, \
correct_output_data, model, average_levels, hyper)
model[param] -= eta * grad
possible_update(model, input_data)
if verbose == 1:
print "Iteration ", t, ": W1 = ", model['W1'], " ; b1 = ", \
model['b1'], " ; W2 = ", model['W2'], " ; b2 = ", model['b2']
if verbose == 1 or verbose == 2 and t % verbose_n == 0:
print "-------------------------------------------------------"
print "ITERATION ", t, " COMPLETE"
current_loss = loss_func(train_inputs, train_outputs, model, \
average_levels, possible_update, hyper)
print "Current Loss: ", current_loss
final_loss = loss_func(train_inputs, train_outputs, model, \
average_levels, possible_update, hyper)
return (model, final_loss)
def run_neural_net(pollution_data_list, hyper, has_feedback):
if not has_feedback:
calculate_loss = feed_forward_nn.calculate_loss
process_data_set = feed_forward_nn.process_data_set
else:
calculate_loss = elman_rnn.calculate_loss
process_data_set = elman_rnn.process_data_set
(input_vectors, output_vectors) = process_data_set(
pollution_data_list, hyper.past_scope)
train_data = zip(input_vectors, output_vectors)
input_dim = NUM_VARS * hyper.past_scope
W1 = np.random.randn(hyper.hidden_dim, input_dim) / np.sqrt(input_dim)
b1 = np.zeros((hyper.hidden_dim, 1))
W2 = np.random.randn(OUTPUT_DIM, hyper.hidden_dim) / np.sqrt(hyper.hidden_dim)
b2 = np.zeros((OUTPUT_DIM, 1))
model = {'W1': W1, 'b1': b1, 'W2': W2, 'b2': b2}
if not has_feedback:
loss_gradients = feed_forward_nn.get_loss_gradients()
update = feed_forward_nn.none_func
else:
loss_gradients = elman_rnn.get_loss_gradients()
update = elman_rnn.update
hidden_dim = hyper.hidden_dim
U = np.random.randn(hidden_dim, hidden_dim) / np.sqrt(hidden_dim)
h = [np.zeros((hidden_dim, 1))]
model.update({'U': U, 'h': h})
network_setup = (calculate_loss, loss_gradients, update, hyper)
return stochastic_gradient_descent(network_setup, train_data, model)
def test_module(pollution_dirs, hyper, has_feedback):
# helper for training/testing neural net models
pollution_dir_train, pollution_dir_test = pollution_dirs
if not has_feedback:
calculate_loss = feed_forward_nn.calculate_loss
process_data_set = feed_forward_nn.process_data_set
update = feed_forward_nn.none_func
else:
calculate_loss = elman_rnn.calculate_loss
process_data_set = elman_rnn.process_data_set
update = elman_rnn.update
# TRAINING SET
pollution_data_list_train = data_util.data_from_directory(pollution_dir_train)
# TEST SET
pollution_data_list_test = data_util.data_from_directory(pollution_dir_test)
(model, loss) = run_neural_net(pollution_data_list_train, hyper, has_feedback)
print 'PROCESSING TRAIN SET'
(train_inputs, train_outputs) = process_data_set(
pollution_data_list_train, hyper.past_scope)
print 'PROCESSING TEST SET'
(test_inputs, test_outputs) = process_data_set(
pollution_data_list_test, hyper.past_scope)
# Calculate average levels
temp_train = []
for elem in train_inputs:
if elem != None:
temp_train.append(elem)
temp_np_train = np.array(temp_train)
data_len_train = float(len(temp_train))
average_levels_train = np.sum(temp_np_train, axis=0)[: OUTPUT_DIM]
average_levels_train /= data_len_train
print "######################## CALCULATING LOSS ########################"
loss = calculate_loss(train_inputs, train_outputs, model, average_levels_train, \
update, hyper, print_loss_vector = True)
print "TRAIN LOSS: ", loss
(test_inputs, test_outputs) = process_data_set(
pollution_data_list_test, hyper.past_scope)
# Calculate average levels for test set
temp_test = []
for elem in test_inputs:
if elem != None:
temp_test.append(elem)
temp_np_test = np.array(temp_test)
data_len_test = float(len(temp_test))
average_levels_test = np.sum(temp_np_test, axis=0)[: OUTPUT_DIM]
average_levels_test /= data_len_test
print "######################## CALCULATING LOSS ########################"
loss = calculate_loss(test_inputs, test_outputs, model, average_levels_test, \
update, hyper, print_loss_vector = True)
print "TEST LOSS: ", loss
return model
def train_nn(algo, pollution_dirs, hyper, pollutant):
# helper for training a neural net
pollution_dir_train, pollution_dir_test = pollution_dirs
test_data_set = data_util.data_from_directory(pollution_dir_test)
print 'READING DATA COMPLETE'
has_feedback = (algo == 'elman')
model = test_module(pollution_dirs, hyper, has_feedback)
scopes = (hyper.past_scope, hyper.future_scope)
test_util.evaluate_algorithm(scopes, algo, test_data_set, pollutant, \
hyper.norm, hyper=hyper, model=model)
def parse_nn_input(args):
# helper for parsing input to the neural net
args.pollution_dir_test = data_util.remove_slash(args.pollution_dir_test)
args.pollution_dir_train = data_util.remove_slash(args.pollution_dir_train)
pollution_dirs = (args.pollution_dir_train, args.pollution_dir_test)
reg_params = { 'W1': args.reg_w1, 'b1': args.reg_b1, 'W2': args.reg_w2, \
'b2': args.reg_b2, 'U': args.reg_u }
hyper = NetHyperparams(args.hidden_dim, args.activation, args.past_scope, \
reg_params, args.num_iterations, args.future_scope, args.norm, \
args.step_scale)
train_nn(args.algo, pollution_dirs, hyper, args.chemical)
| 0
| 0
| 0
| 0
| 0
| 4,835
| 0
| 0
| 92
|
6c26d63d7ae8a7c7c7e69a1f99e9275446c1f3fb
| 955
|
py
|
Python
|
WEEKS/CD_Sata-Structures/_RESOURCES/pygorithm/pygorithm/strings/anagram.py
|
webdevhub42/Lambda
|
b04b84fb5b82fe7c8b12680149e25ae0d27a0960
|
[
"MIT"
] | 4,736
|
2017-08-06T03:36:33.000Z
|
2022-03-31T07:32:55.000Z
|
WEEKS/CD_Sata-Structures/_RESOURCES/pygorithm/pygorithm/strings/anagram.py
|
webdevhub42/Lambda
|
b04b84fb5b82fe7c8b12680149e25ae0d27a0960
|
[
"MIT"
] | 56
|
2017-08-06T16:34:49.000Z
|
2022-02-09T19:41:02.000Z
|
WEEKS/CD_Sata-Structures/_RESOURCES/pygorithm/pygorithm/strings/anagram.py
|
webdevhub42/Lambda
|
b04b84fb5b82fe7c8b12680149e25ae0d27a0960
|
[
"MIT"
] | 658
|
2017-08-06T08:52:02.000Z
|
2022-03-15T12:09:08.000Z
|
"""
Author: OMKAR PATHAK
Created On: 17th August 2017
"""
from collections import Counter
import inspect
def is_anagram(word, _list):
"""ANAGRAM
An anagram is direct word switch or word play,
the result of rearranging the letters of a word
or phrase to produce a new word or phrase, using
all the original letters exactly once we are taking
a word and a list. We return the anagrams of that
word from the given list and return the list of
anagrams else return empty list.
:param word: word
:param _list: list of words
:return: anagrams
"""
word = word.lower()
anagrams = []
for words in _list:
if word != words.lower():
if Counter(word) == Counter(words.lower()):
anagrams.append(words)
return anagrams
def get_code():
"""
returns the code for the is_anagram function
:return: source code
"""
return inspect.getsource(is_anagram)
| 25.131579
| 55
| 0.659686
|
"""
Author: OMKAR PATHAK
Created On: 17th August 2017
"""
from collections import Counter
import inspect
def is_anagram(word, _list):
"""ANAGRAM
An anagram is direct word switch or word play,
the result of rearranging the letters of a word
or phrase to produce a new word or phrase, using
all the original letters exactly once we are taking
a word and a list. We return the anagrams of that
word from the given list and return the list of
anagrams else return empty list.
:param word: word
:param _list: list of words
:return: anagrams
"""
word = word.lower()
anagrams = []
for words in _list:
if word != words.lower():
if Counter(word) == Counter(words.lower()):
anagrams.append(words)
return anagrams
def get_code():
"""
returns the code for the is_anagram function
:return: source code
"""
return inspect.getsource(is_anagram)
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
69155fa92fa29e1f8e7e8803b79f8acd0d8c1a18
| 6,551
|
py
|
Python
|
scripts/update_package_cache.py
|
KenMacD/pipx
|
2ecc668acf472ad6956cc682499c077c1130d17e
|
[
"MIT"
] | 3,573
|
2019-02-06T07:13:28.000Z
|
2021-05-27T02:34:20.000Z
|
scripts/update_package_cache.py
|
KenMacD/pipx
|
2ecc668acf472ad6956cc682499c077c1130d17e
|
[
"MIT"
] | 533
|
2019-02-06T19:37:59.000Z
|
2021-05-27T04:05:30.000Z
|
scripts/update_package_cache.py
|
KenMacD/pipx
|
2ecc668acf472ad6956cc682499c077c1130d17e
|
[
"MIT"
] | 187
|
2019-02-24T21:56:21.000Z
|
2021-05-21T15:46:13.000Z
|
#!/usr/bin/env python3
import argparse
import sys
from typing import List
def process_command_line(argv: List[str]) -> argparse.Namespace:
"""Process command line invocation arguments and switches.
Args:
argv: list of arguments, or `None` from ``sys.argv[1:]``.
Returns:
argparse.Namespace: named attributes of arguments and switches
"""
# script_name = argv[0]
argv = argv[1:]
# initialize the parser object:
parser = argparse.ArgumentParser(
description="Check and update as needed the pipx tests package cache "
"for use with the pipx tests local pypiserver."
)
# specifying nargs= puts outputs of parser in list (even if nargs=1)
# required arguments
parser.add_argument(
"package_list_dir",
help="Directory where platform- and python-specific package lists are found for pipx tests.",
)
parser.add_argument(
"pipx_package_cache_dir",
help="Directory to store the packages distribution files.",
)
# switches/options:
parser.add_argument(
"-c",
"--check-only",
action="store_true",
help="Only check to see if needed packages are in PACKAGES_DIR, do not "
"download or delete files.",
)
args = parser.parse_args(argv)
return args
if __name__ == "__main__":
try:
status = main(sys.argv)
except KeyboardInterrupt:
print("Stopped by Keyboard Interrupt", file=sys.stderr)
status = 130
sys.exit(status)
| 33.423469
| 101
| 0.601893
|
#!/usr/bin/env python3
import argparse
import re
import subprocess
import sys
from pathlib import Path
from typing import List
from list_test_packages import create_test_packages_list
from test_packages_support import get_platform_list_path, get_platform_packages_dir_path
def process_command_line(argv: List[str]) -> argparse.Namespace:
"""Process command line invocation arguments and switches.
Args:
argv: list of arguments, or `None` from ``sys.argv[1:]``.
Returns:
argparse.Namespace: named attributes of arguments and switches
"""
# script_name = argv[0]
argv = argv[1:]
# initialize the parser object:
parser = argparse.ArgumentParser(
description="Check and update as needed the pipx tests package cache "
"for use with the pipx tests local pypiserver."
)
# specifying nargs= puts outputs of parser in list (even if nargs=1)
# required arguments
parser.add_argument(
"package_list_dir",
help="Directory where platform- and python-specific package lists are found for pipx tests.",
)
parser.add_argument(
"pipx_package_cache_dir",
help="Directory to store the packages distribution files.",
)
# switches/options:
parser.add_argument(
"-c",
"--check-only",
action="store_true",
help="Only check to see if needed packages are in PACKAGES_DIR, do not "
"download or delete files.",
)
args = parser.parse_args(argv)
return args
def update_test_packages_cache(
package_list_dir_path: Path, pipx_package_cache_path: Path, check_only: bool
) -> int:
exit_code = 0
platform_package_list_path = get_platform_list_path(package_list_dir_path)
packages_dir_path = get_platform_packages_dir_path(pipx_package_cache_path)
packages_dir_path.mkdir(exist_ok=True)
packages_dir_files = list(packages_dir_path.iterdir())
if not platform_package_list_path.exists():
print(
f"WARNING. File {str(platform_package_list_path)}\n"
" does not exist. Creating now...",
file=sys.stderr,
)
create_list_returncode = create_test_packages_list(
package_list_dir_path,
package_list_dir_path / "primary_packages.txt",
verbose=False,
)
if create_list_returncode == 0:
print(
f"File {str(platform_package_list_path)}\n"
" successfully created. Please check this file in to the"
" repository for future use.",
file=sys.stderr,
)
else:
print(
f"ERROR. Unable to create {str(platform_package_list_path)}\n"
" Cannot continue.\n",
file=sys.stderr,
)
return 1
try:
platform_package_list_fh = platform_package_list_path.open("r")
except IOError:
print(
f"ERROR. File {str(platform_package_list_path)}\n"
" is not readable. Cannot continue.\n",
file=sys.stderr,
)
return 1
else:
platform_package_list_fh.close()
print("Using the following file to specify needed package files:")
print(f" {str(platform_package_list_path)}")
print("Ensuring the following directory contains necessary package files:")
print(f" {str(packages_dir_path)}")
packages_dir_hits = []
packages_dir_missing = []
with platform_package_list_path.open("r") as platform_package_list_fh:
for line in platform_package_list_fh:
package_spec = line.strip()
package_spec_re = re.search(r"^(.+)==(.+)$", package_spec)
if not package_spec_re:
print(f"ERROR: CANNOT PARSE {package_spec}", file=sys.stderr)
exit_code = 1
continue
package_name = package_spec_re.group(1)
package_ver = package_spec_re.group(2)
package_dist_patt = (
re.escape(package_name)
+ r"-"
+ re.escape(package_ver)
+ r"(.tar.gz|.zip|-)"
)
matches = []
for output_dir_file in packages_dir_files:
if re.search(package_dist_patt, output_dir_file.name):
matches.append(output_dir_file)
if len(matches) == 1:
packages_dir_files.remove(matches[0])
packages_dir_hits.append(matches[0])
continue
elif len(matches) > 1:
print("ERROR: more than one match for {package_spec}.", file=sys.stderr)
print(f" {matches}", file=sys.stderr)
exit_code = 1
continue
packages_dir_missing.append(package_spec)
print(f"MISSING FILES: {len(packages_dir_missing)}")
print(f"EXISTING (found) FILES: {len(packages_dir_hits)}")
print(f"LEFTOVER (unused) FILES: {len(packages_dir_files)}")
if check_only:
return 0 if len(packages_dir_missing) == 0 else 1
else:
for package_spec in packages_dir_missing:
pip_download_process = subprocess.run(
[
"pip",
"download",
"--no-deps",
package_spec,
"-d",
str(packages_dir_path),
],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True,
)
if pip_download_process.returncode == 0:
print(f"Successfully downloaded {package_spec}")
else:
print(f"ERROR downloading {package_spec}", file=sys.stderr)
print(pip_download_process.stdout, file=sys.stderr)
print(pip_download_process.stderr, file=sys.stderr)
exit_code = 1
for unused_file in packages_dir_files:
print(f"Deleting {unused_file}...")
unused_file.unlink()
return exit_code
def main(argv: List[str]) -> int:
args = process_command_line(argv)
return update_test_packages_cache(
Path(args.package_list_dir), Path(args.pipx_package_cache_dir), args.check_only
)
if __name__ == "__main__":
try:
status = main(sys.argv)
except KeyboardInterrupt:
print("Stopped by Keyboard Interrupt", file=sys.stderr)
status = 130
sys.exit(status)
| 0
| 0
| 0
| 0
| 0
| 4,771
| 0
| 89
| 157
|
6714fbeb710fcef63d832311201eece32ab3f7e1
| 5,669
|
py
|
Python
|
airflow/dags/etl.py
|
Ayazdi/tweetbot
|
d9b3ddd77ba530d6a192fe53f65a4d9994c3a092
|
[
"MIT"
] | null | null | null |
airflow/dags/etl.py
|
Ayazdi/tweetbot
|
d9b3ddd77ba530d6a192fe53f65a4d9994c3a092
|
[
"MIT"
] | null | null | null |
airflow/dags/etl.py
|
Ayazdi/tweetbot
|
d9b3ddd77ba530d6a192fe53f65a4d9994c3a092
|
[
"MIT"
] | null | null | null |
import time
from datetime import datetime, timedelta
import random
import re
import logging
from config import SLACK_TOKEN
import pandas as pd
import slack
from airflow import DAG
from airflow.operators.python_operator import PythonOperator
from pymongo import MongoClient
from sqlalchemy import create_engine
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
import pickle
import os
# defining path to read files for airflow
AIRFLOW_HOME = os.getenv('AIRFLOW_HOME')
# Creating connections
CLIENT = MongoClient("mongodb") # Mongodb
DB = CLIENT.mongodb
DATABASE_UP = False
# PostGres connections and table
PG = create_engine('postgres://postgres:1234@postgresdb:5432/tweets')
PG.execute('''CREATE TABLE IF NOT EXISTS kung_tweets (
id BIGSERIAL,
username VARCHAR(128),
text VARCHAR(2048),
date_created TIMESTAMPTZ,
followers INTEGER,
friends INTEGER,
negative NUMERIC,
positive NUMERIC,
neuteral NUMERIC
);
''')
client = slack.WebClient(token=SLACK_TOKEN) # Slac
# Loading models:
# Sentiment analysis
s = SentimentIntensityAnalyzer()
# Sarcasm classifier
tv = pickle.load(open(AIRFLOW_HOME + '/dags/vectorizer.sav', 'rb'))
lsvc = pickle.load(open(AIRFLOW_HOME + '/dags/sarcasm_model.sav', 'rb'))
# Creating python callables
def extract():
"""extract a random tweet from MongoDB"""
tweets = list(DB.kung_tweets.find())
if tweets:
t = random.choice(tweets)
logging.critical("random tweet: " + t['text'])
return t
def transform(**context):
"""
Transform tweets
Input: Tweets in JSON format from the extract function
Cleans the text, analyzes the sentiment and extracts metadata
return: A list with all metadata of the tweet
"""
extract_connection = context['task_instance']
tweet = extract_connection.xcom_pull(task_ids="extract")
# getting the full text from the tweets
if 'retweeted_status'in tweet and 'extended_tweet' in tweet['retweeted_status']:
text = tweet['retweeted_status']['extended_tweet']["full_text"]
elif 'retweeted_status'in tweet and 'text' in tweet['retweeted_status']:
text = tweet['retweeted_status']["text"]
elif "extended_tweet" in tweet:
text = tweet['extended_tweet']["full_text"]
else:
text = tweet['text']
text = re.sub(r"'", ' ', text)
text = re.sub(r'@\S+|https?://\S+', '', text) # removing @user and links
username = tweet['user']['screen_name']
date = str(pd.to_datetime(tweet["created_at"]))
followers = tweet['user']['followers_count']
friends = tweet['user']['friends_count']
sentiment = s.polarity_scores(text)
neg = sentiment["neg"]
pos = sentiment["pos"]
neu = sentiment["neu"]
logging.critical("sentiment" + str(sentiment))
results = [username, text, date, followers, friends, neg, pos, neu]
return results
def load(**context):
"""Loads metadata to PostGreSQL server"""
exctract_connection = context["task_instance"]
results = exctract_connection.xcom_pull(task_ids='transform')
PG.execute(f"""INSERT INTO kung_tweets (username, text, date_created, followers, friends, negative, positive, neuteral)
VALUES ('''{results[0]}''', '''{results[1]}''', '{results[2]}', {results[3]}, {results[4]}, {results[5]}, {results[6]}, {results[7]});""")
logging.critical(f"{results[1]} written to PostGres")
def predict_sarcasm(**context):
"""Classify the sarcasm of the tweet"""
exctract_connection = context["task_instance"]
results = exctract_connection.xcom_pull(task_ids='transform')
text = results[1]
text = tv.transform([text]).toarray()
sarcasm = lsvc.predict(text)
return sarcasm
def slackbot(**context):
"""Posts a message on the Slack channel if the tweet was clasified as sarcastic"""
exctract_connection = context["task_instance"]
results = exctract_connection.xcom_pull(task_ids='transform')
sarcasm = exctract_connection.xcom_pull(task_ids='predict_sarcasm')
prev_tweet = ''
if sarcasm == 1:
tweet_result = results[1] # text
if tweet_result != prev_tweet:
prev_tweet = tweet_result
response = client.chat_postMessage(
channel='#kung_flu', text=f"Here is a sarcastic tweet about coronavirus: {tweet_result}")
# delay for one minute
time.sleep(60)
# define default arguments
default_args = {
'owner': 'Amirali',
'start_date': datetime(2020, 4, 1),
# 'end_date':
'email': ['[email protected]'],
'email_on_failure': False,
'email_on_retry': False,
"retries": 1,
"retry_delay": timedelta(minutes=1)
}
# instantiate a DAG
dag = DAG('etl', description='', catchup=False,
schedule_interval=timedelta(minutes=1), default_args=default_args)
# define task
t1 = PythonOperator(task_id='extract', python_callable=extract, dag=dag)
t2 = PythonOperator(task_id='transform', provide_context=True,
python_callable=transform, dag=dag)
t3 = PythonOperator(task_id='load', provide_context=True,
python_callable=load, dag=dag)
t4 = PythonOperator(task_id='predict_sarcasm', provide_context=True,
python_callable=predict_sarcasm, dag=dag)
t5 = PythonOperator(task_id='slackbot', provide_context=True,
python_callable=slackbot, dag=dag)
# setup dependencies
t1 >> t2 >> t3
t2 >> t4 >> t5
| 33.946108
| 155
| 0.676133
|
import time
from datetime import datetime, timedelta
import random
import re
import logging
from config import SLACK_TOKEN
import pandas as pd
import slack
from airflow import DAG
from airflow.operators.python_operator import PythonOperator
from pymongo import MongoClient
from sqlalchemy import create_engine
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.svm import LinearSVC
import pickle
import os
# defining path to read files for airflow
AIRFLOW_HOME = os.getenv('AIRFLOW_HOME')
# Creating connections
CLIENT = MongoClient("mongodb") # Mongodb
DB = CLIENT.mongodb
DATABASE_UP = False
# PostGres connections and table
PG = create_engine('postgres://postgres:1234@postgresdb:5432/tweets')
PG.execute('''CREATE TABLE IF NOT EXISTS kung_tweets (
id BIGSERIAL,
username VARCHAR(128),
text VARCHAR(2048),
date_created TIMESTAMPTZ,
followers INTEGER,
friends INTEGER,
negative NUMERIC,
positive NUMERIC,
neuteral NUMERIC
);
''')
client = slack.WebClient(token=SLACK_TOKEN) # Slac
# Loading models:
# Sentiment analysis
s = SentimentIntensityAnalyzer()
# Sarcasm classifier
tv = pickle.load(open(AIRFLOW_HOME + '/dags/vectorizer.sav', 'rb'))
lsvc = pickle.load(open(AIRFLOW_HOME + '/dags/sarcasm_model.sav', 'rb'))
# Creating python callables
def extract():
"""extract a random tweet from MongoDB"""
tweets = list(DB.kung_tweets.find())
if tweets:
t = random.choice(tweets)
logging.critical("random tweet: " + t['text'])
return t
def transform(**context):
"""
Transform tweets
Input: Tweets in JSON format from the extract function
Cleans the text, analyzes the sentiment and extracts metadata
return: A list with all metadata of the tweet
"""
extract_connection = context['task_instance']
tweet = extract_connection.xcom_pull(task_ids="extract")
# getting the full text from the tweets
if 'retweeted_status'in tweet and 'extended_tweet' in tweet['retweeted_status']:
text = tweet['retweeted_status']['extended_tweet']["full_text"]
elif 'retweeted_status'in tweet and 'text' in tweet['retweeted_status']:
text = tweet['retweeted_status']["text"]
elif "extended_tweet" in tweet:
text = tweet['extended_tweet']["full_text"]
else:
text = tweet['text']
text = re.sub(r"'", ' ', text)
text = re.sub(r'@\S+|https?://\S+', '', text) # removing @user and links
username = tweet['user']['screen_name']
date = str(pd.to_datetime(tweet["created_at"]))
followers = tweet['user']['followers_count']
friends = tweet['user']['friends_count']
sentiment = s.polarity_scores(text)
neg = sentiment["neg"]
pos = sentiment["pos"]
neu = sentiment["neu"]
logging.critical("sentiment" + str(sentiment))
results = [username, text, date, followers, friends, neg, pos, neu]
return results
def load(**context):
"""Loads metadata to PostGreSQL server"""
exctract_connection = context["task_instance"]
results = exctract_connection.xcom_pull(task_ids='transform')
PG.execute(f"""INSERT INTO kung_tweets (username, text, date_created, followers, friends, negative, positive, neuteral)
VALUES ('''{results[0]}''', '''{results[1]}''', '{results[2]}', {results[3]}, {results[4]}, {results[5]}, {results[6]}, {results[7]});""")
logging.critical(f"{results[1]} written to PostGres")
def predict_sarcasm(**context):
"""Classify the sarcasm of the tweet"""
exctract_connection = context["task_instance"]
results = exctract_connection.xcom_pull(task_ids='transform')
text = results[1]
text = tv.transform([text]).toarray()
sarcasm = lsvc.predict(text)
return sarcasm
def slackbot(**context):
"""Posts a message on the Slack channel if the tweet was clasified as sarcastic"""
exctract_connection = context["task_instance"]
results = exctract_connection.xcom_pull(task_ids='transform')
sarcasm = exctract_connection.xcom_pull(task_ids='predict_sarcasm')
prev_tweet = ''
if sarcasm == 1:
tweet_result = results[1] # text
if tweet_result != prev_tweet:
prev_tweet = tweet_result
response = client.chat_postMessage(
channel='#kung_flu', text=f"Here is a sarcastic tweet about coronavirus: {tweet_result}")
# delay for one minute
time.sleep(60)
# define default arguments
default_args = {
'owner': 'Amirali',
'start_date': datetime(2020, 4, 1),
# 'end_date':
'email': ['[email protected]'],
'email_on_failure': False,
'email_on_retry': False,
"retries": 1,
"retry_delay": timedelta(minutes=1)
}
# instantiate a DAG
dag = DAG('etl', description='', catchup=False,
schedule_interval=timedelta(minutes=1), default_args=default_args)
# define task
t1 = PythonOperator(task_id='extract', python_callable=extract, dag=dag)
t2 = PythonOperator(task_id='transform', provide_context=True,
python_callable=transform, dag=dag)
t3 = PythonOperator(task_id='load', provide_context=True,
python_callable=load, dag=dag)
t4 = PythonOperator(task_id='predict_sarcasm', provide_context=True,
python_callable=predict_sarcasm, dag=dag)
t5 = PythonOperator(task_id='slackbot', provide_context=True,
python_callable=slackbot, dag=dag)
# setup dependencies
t1 >> t2 >> t3
t2 >> t4 >> t5
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 50
| 46
|
07e7e3e2137257e0b56dc2a7750cbb5cde4f42cd
| 114
|
py
|
Python
|
chapter09/example07.py
|
YordanIH/Intro_to_CS_w_Python
|
eebbb8efd7ef0d07be9bc45b6b1e8f20737ce01a
|
[
"MIT"
] | null | null | null |
chapter09/example07.py
|
YordanIH/Intro_to_CS_w_Python
|
eebbb8efd7ef0d07be9bc45b6b1e8f20737ce01a
|
[
"MIT"
] | null | null | null |
chapter09/example07.py
|
YordanIH/Intro_to_CS_w_Python
|
eebbb8efd7ef0d07be9bc45b6b1e8f20737ce01a
|
[
"MIT"
] | null | null | null |
#looping over the generated range of numbers
total = 0
for i in range(1, 101):
total = total + i
print(total)
| 19
| 44
| 0.692982
|
#looping over the generated range of numbers
total = 0
for i in range(1, 101):
total = total + i
print(total)
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
0ea7768fd185301fdacd4b292ea08a02f037179e
| 21,031
|
py
|
Python
|
train_cloudcast.py
|
tianyu-z/Super-SloMo
|
55a278cc46b6edb731895548b5a5c26e9b3439ae
|
[
"MIT"
] | null | null | null |
train_cloudcast.py
|
tianyu-z/Super-SloMo
|
55a278cc46b6edb731895548b5a5c26e9b3439ae
|
[
"MIT"
] | null | null | null |
train_cloudcast.py
|
tianyu-z/Super-SloMo
|
55a278cc46b6edb731895548b5a5c26e9b3439ae
|
[
"MIT"
] | null | null | null |
# [Super SloMo]
##High Quality Estimation of Multiple Intermediate Frames for Video Interpolation
from comet_ml import Experiment, ExistingExperiment
import argparse
import torch
import torchvision
import torchvision.transforms as transforms
import torch.optim as optim
import torch.nn as nn
import model
import dataloader_c as dataloader
import datetime
import numpy as np
import warnings
from utils import init_net
warnings.simplefilter("ignore", UserWarning)
# from tensorboardX import SummaryWriter
# For parsing commandline arguments
parser = argparse.ArgumentParser()
parser.add_argument(
"--dataset_root",
type=str,
required=True,
help="path to dataset folder containing train-test-validation folders",
)
parser.add_argument(
"--checkpoint_dir",
type=str,
required=True,
help="path to folder for saving checkpoints",
)
parser.add_argument(
"--checkpoint", type=str, help="path of checkpoint for pretrained model"
)
parser.add_argument(
"--train_continue", action="store_true", help="resuming from checkpoint."
)
parser.add_argument(
"-it",
"--init_type",
default="",
type=str,
help="the name of an initialization method: normal | xavier | kaiming | orthogonal",
)
parser.add_argument(
"--epochs", type=int, default=200, help="number of epochs to train. Default: 200."
)
parser.add_argument(
"-tbs",
"--train_batch_size",
type=int,
default=384,
help="batch size for training. Default: 6.",
)
parser.add_argument(
"-nw", "--num_workers", default=4, type=int, help="number of CPU you get"
)
parser.add_argument(
"-vbs",
"--validation_batch_size",
type=int,
default=384,
help="batch size for validation. Default: 10.",
)
parser.add_argument(
"-ilr",
"--init_learning_rate",
type=float,
default=0.0001,
help="set initial learning rate. Default: 0.0001.",
)
parser.add_argument(
"--milestones",
type=list,
default=[100, 150],
help="Set to epoch values where you want to decrease learning rate by a factor of 0.1. Default: [100, 150]",
)
parser.add_argument(
"--progress_iter",
type=int,
default=100,
help="frequency of reporting progress and validation. N: after every N iterations. Default: 100.",
)
parser.add_argument(
"--logimagefreq", type=int, default=1, help="frequency of logging image.",
)
parser.add_argument(
"--checkpoint_epoch",
type=int,
default=5,
help="checkpoint saving frequency. N: after every N epochs. Each checkpoint is roughly of size 151 MB.Default: 5.",
)
parser.add_argument(
"-wp", "--workspace", default="tianyu-z", type=str, help="comet-ml workspace"
)
parser.add_argument(
"-dh", "--data_h", default=128, type=int, help="H of the data shape"
)
parser.add_argument(
"-dw", "--data_w", default=128, type=int, help="W of the data shape"
)
parser.add_argument(
"-pn",
"--projectname",
default="super-slomo",
type=str,
help="comet-ml project name",
)
parser.add_argument(
"--nocomet", action="store_true", help="not using comet_ml logging."
)
parser.add_argument(
"--cometid", type=str, default="", help="the comet id to resume exps",
)
parser.add_argument(
"-rs",
"--randomseed",
type=int,
default=2021,
help="batch size for validation. Default: 10.",
)
args = parser.parse_args()
random_seed = args.randomseed
np.random.seed(random_seed)
torch.manual_seed(random_seed)
if torch.cuda.device_count() > 1:
torch.cuda.manual_seed_all(random_seed)
else:
torch.cuda.manual_seed(random_seed)
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
##[TensorboardX](https://github.com/lanpa/tensorboardX)
### For visualizing loss and interpolated frames
# writer = SummaryWriter("log")
###Initialize flow computation and arbitrary-time flow interpolation CNNs.
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
flowComp = model.UNet(6, 4)
flowComp.to(device)
if args.init_type != "":
init_net(flowComp, args.init_type)
print(args.init_type + " initializing flowComp done")
ArbTimeFlowIntrp = model.UNet(20, 5)
ArbTimeFlowIntrp.to(device)
if args.init_type != "":
init_net(ArbTimeFlowIntrp, args.init_type)
print(args.init_type + " initializing ArbTimeFlowIntrp done")
### Initialization
if args.train_continue:
if not args.nocomet and args.cometid != "":
comet_exp = ExistingExperiment(previous_experiment=args.cometid)
elif not args.nocomet and args.cometid == "":
comet_exp = Experiment(workspace=args.workspace, project_name=args.projectname)
else:
comet_exp = None
dict1 = torch.load(args.checkpoint)
ArbTimeFlowIntrp.load_state_dict(dict1["state_dictAT"])
flowComp.load_state_dict(dict1["state_dictFC"])
print("Pretrained model loaded!")
else:
# start logging info in comet-ml
if not args.nocomet:
comet_exp = Experiment(workspace=args.workspace, project_name=args.projectname)
# comet_exp.log_parameters(flatten_opts(args))
else:
comet_exp = None
dict1 = {"loss": [], "valLoss": [], "valPSNR": [], "valSSIM": [], "epoch": -1}
###Initialze backward warpers for train and validation datasets
trainFlowBackWarp = model.backWarp(128, 128, device)
trainFlowBackWarp = trainFlowBackWarp.to(device)
validationFlowBackWarp = model.backWarp(128, 128, device)
validationFlowBackWarp = validationFlowBackWarp.to(device)
###Load Datasets
# Channel wise mean calculated on adobe240-fps training dataset
mean = [0.5, 0.5, 0.5]
std = [1, 1, 1]
normalize = transforms.Normalize(mean=mean, std=std)
transform = transforms.Compose([transforms.ToTensor(), normalize])
trainset = dataloader.SuperSloMo(
root=args.dataset_root + "/train", transform=transform, train=True
)
trainloader = torch.utils.data.DataLoader(
trainset,
batch_size=args.train_batch_size,
num_workers=args.num_workers,
shuffle=True,
)
validationset = dataloader.SuperSloMo(
root=args.dataset_root + "/validation",
transform=transform,
randomCropSize=(128, 128),
train=False,
)
validationloader = torch.utils.data.DataLoader(
validationset,
batch_size=args.validation_batch_size,
num_workers=args.num_workers,
shuffle=False,
)
print(trainset, validationset)
###Create transform to display image from tensor
negmean = [x * -1 for x in mean]
revNormalize = transforms.Normalize(mean=negmean, std=std)
TP = transforms.Compose([revNormalize, transforms.ToPILImage()])
###Utils
###Loss and Optimizer
L1_lossFn = nn.L1Loss()
MSE_LossFn = nn.MSELoss()
params = list(ArbTimeFlowIntrp.parameters()) + list(flowComp.parameters())
optimizer = optim.Adam(params, lr=args.init_learning_rate)
# scheduler to decrease learning rate by a factor of 10 at milestones.
scheduler = optim.lr_scheduler.MultiStepLR(
optimizer, milestones=args.milestones, gamma=0.1
)
###Initializing VGG16 model for perceptual loss
vgg16 = torchvision.models.vgg16(pretrained=True)
vgg16_conv_4_3 = nn.Sequential(*list(vgg16.children())[0][:22])
vgg16_conv_4_3.to(device)
if args.init_type != "":
init_net(vgg16_conv_4_3, args.init_type)
for param in vgg16_conv_4_3.parameters():
param.requires_grad = False
### Validation function
#
### Training
import time
best_psnr = -1
best_ssim = -1
best_valloss = 9999
start = time.time()
cLoss = dict1["loss"]
valLoss = dict1["valLoss"]
valPSNR = dict1["valPSNR"]
valSSIM = dict1["valSSIM"]
checkpoint_counter = int((dict1["epoch"] + 1) / args.checkpoint_epoch)
### Main training loop
for epoch in range(dict1["epoch"] + 1, args.epochs):
print("Epoch: ", epoch)
# Append and reset
cLoss.append([])
valLoss.append([])
valPSNR.append([])
valSSIM.append([])
iLoss = 0
if epoch > dict1["epoch"] + 1:
# Increment scheduler count
scheduler.step()
# if epoch == dict1["epoch"] + 1:
# # test if validate works
# validate(epoch, True)
for trainIndex, (trainData, trainFrameIndex) in enumerate(trainloader, 0):
## Getting the input and the target from the training set
frame0, frameT, frame1 = trainData
I0 = frame0.to(device)
I1 = frame1.to(device)
IFrame = frameT.to(device)
optimizer.zero_grad()
# Calculate flow between reference frames I0 and I1
flowOut = flowComp(torch.cat((I0, I1), dim=1))
# Extracting flows between I0 and I1 - F_0_1 and F_1_0
F_0_1 = flowOut[:, :2, :, :]
F_1_0 = flowOut[:, 2:, :, :]
fCoeff = model.getFlowCoeff(trainFrameIndex, device)
# Calculate intermediate flows
F_t_0 = fCoeff[0] * F_0_1 + fCoeff[1] * F_1_0
F_t_1 = fCoeff[2] * F_0_1 + fCoeff[3] * F_1_0
# Get intermediate frames from the intermediate flows
g_I0_F_t_0 = trainFlowBackWarp(I0, F_t_0)
g_I1_F_t_1 = trainFlowBackWarp(I1, F_t_1)
# Calculate optical flow residuals and visibility maps
intrpOut = ArbTimeFlowIntrp(
torch.cat(
(I0, I1, F_0_1, F_1_0, F_t_1, F_t_0, g_I1_F_t_1, g_I0_F_t_0), dim=1
)
)
# Extract optical flow residuals and visibility maps
F_t_0_f = intrpOut[:, :2, :, :] + F_t_0
F_t_1_f = intrpOut[:, 2:4, :, :] + F_t_1
V_t_0 = torch.sigmoid(intrpOut[:, 4:5, :, :])
V_t_1 = 1 - V_t_0
# Get intermediate frames from the intermediate flows
g_I0_F_t_0_f = trainFlowBackWarp(I0, F_t_0_f)
g_I1_F_t_1_f = trainFlowBackWarp(I1, F_t_1_f)
wCoeff = model.getWarpCoeff(trainFrameIndex, device)
# Calculate final intermediate frame
Ft_p = (wCoeff[0] * V_t_0 * g_I0_F_t_0_f + wCoeff[1] * V_t_1 * g_I1_F_t_1_f) / (
wCoeff[0] * V_t_0 + wCoeff[1] * V_t_1
)
# Loss
recnLoss = L1_lossFn(Ft_p, IFrame)
prcpLoss = MSE_LossFn(vgg16_conv_4_3(Ft_p), vgg16_conv_4_3(IFrame))
warpLoss = (
L1_lossFn(g_I0_F_t_0, IFrame)
+ L1_lossFn(g_I1_F_t_1, IFrame)
+ L1_lossFn(trainFlowBackWarp(I0, F_1_0), I1)
+ L1_lossFn(trainFlowBackWarp(I1, F_0_1), I0)
)
loss_smooth_1_0 = torch.mean(
torch.abs(F_1_0[:, :, :, :-1] - F_1_0[:, :, :, 1:])
) + torch.mean(torch.abs(F_1_0[:, :, :-1, :] - F_1_0[:, :, 1:, :]))
loss_smooth_0_1 = torch.mean(
torch.abs(F_0_1[:, :, :, :-1] - F_0_1[:, :, :, 1:])
) + torch.mean(torch.abs(F_0_1[:, :, :-1, :] - F_0_1[:, :, 1:, :]))
loss_smooth = loss_smooth_1_0 + loss_smooth_0_1
# Total Loss - Coefficients 204 and 102 are used instead of 0.8 and 0.4
# since the loss in paper is calculated for input pixels in range 0-255
# and the input to our network is in range 0-1
loss = 204 * recnLoss + 102 * warpLoss + 0.005 * prcpLoss + loss_smooth
# Backpropagate
loss.backward()
optimizer.step()
iLoss += loss.item()
# Validation and progress every `args.progress_iter` iterations
# if (trainIndex % args.progress_iter) == args.progress_iter - 1:
end = time.time()
psnr, ssim_val, vLoss, valImg = validate(epoch, logimage=True)
valPSNR[epoch].append(psnr)
valSSIM[epoch].append(ssim_val)
valLoss[epoch].append(vLoss)
# Tensorboard
itr = int(trainIndex + epoch * (len(trainloader)))
# writer.add_scalars(
# "Loss",
# {"trainLoss": iLoss / args.progress_iter, "validationLoss": vLoss},
# itr,
# )
# writer.add_scalar("PSNR", psnr, itr)
# writer.add_image("Validation", valImg, itr)
comet_exp.log_metrics(
{"trainLoss": iLoss / args.progress_iter, "validationLoss": vLoss},
step=itr,
epoch=epoch,
)
comet_exp.log_metric("PSNR", psnr, step=itr, epoch=epoch)
comet_exp.log_metric("SSIM", ssim_val, step=itr, epoch=epoch)
# valImage = torch.movedim(valImg, 0, -1)
# print(type(valImage))
# print(valImage.shape)
# print(valImage.max())
# print(valImage.min())
# comet_exp.log_image(
# valImage,
# name="iter: " + str(iter) + ";epoch: " + str(epoch),
# image_format="jpg",
# step=itr,
# )
#####
endVal = time.time()
print(
" Loss: %0.6f Iterations: %4d/%4d TrainExecTime: %0.1f ValLoss:%0.6f ValPSNR: %0.4f ValSSIM: %0.4f ValEvalTime: %0.2f LearningRate: %f"
% (
iLoss / args.progress_iter,
trainIndex,
len(trainloader),
end - start,
vLoss,
psnr,
ssim_val,
endVal - end,
get_lr(optimizer),
)
)
cLoss[epoch].append(iLoss / args.progress_iter)
iLoss = 0
start = time.time()
# Create checkpoint after every `args.checkpoint_epoch` epochs
if (epoch % args.checkpoint_epoch) == args.checkpoint_epoch - 1:
dict1 = {
"Detail": "End to end Super SloMo.",
"epoch": epoch,
"timestamp": datetime.datetime.now(),
"trainBatchSz": args.train_batch_size,
"validationBatchSz": args.validation_batch_size,
"learningRate": get_lr(optimizer),
"loss": cLoss,
"valLoss": valLoss,
"valPSNR": valPSNR,
"valSSIM": valSSIM,
"state_dictFC": flowComp.state_dict(),
"state_dictAT": ArbTimeFlowIntrp.state_dict(),
}
torch.save(
dict1,
args.checkpoint_dir + "/SuperSloMo" + str(checkpoint_counter) + ".ckpt",
)
checkpoint_counter += 1
if psnr > best_psnr:
best_psnr = psnr
dict1 = {
"Detail": "End to end Super SloMo.",
"epoch": epoch,
"timestamp": datetime.datetime.now(),
"trainBatchSz": args.train_batch_size,
"validationBatchSz": args.validation_batch_size,
"learningRate": get_lr(optimizer),
"loss": cLoss,
"valLoss": valLoss,
"valPSNR": valPSNR,
"valSSIM": valSSIM,
"state_dictFC": flowComp.state_dict(),
"state_dictAT": ArbTimeFlowIntrp.state_dict(),
}
torch.save(
dict1, args.checkpoint_dir + "/SuperSloMo" + "bestpsnr_epoch" + ".ckpt",
)
print("New Best PSNR found and saved at " + str(epoch))
if vLoss < best_valloss:
best_valloss = vLoss
dict1 = {
"Detail": "End to end Super SloMo.",
"epoch": epoch,
"timestamp": datetime.datetime.now(),
"trainBatchSz": args.train_batch_size,
"validationBatchSz": args.validation_batch_size,
"learningRate": get_lr(optimizer),
"loss": cLoss,
"valLoss": valLoss,
"valPSNR": valPSNR,
"valSSIM": valSSIM,
"state_dictFC": flowComp.state_dict(),
"state_dictAT": ArbTimeFlowIntrp.state_dict(),
}
torch.save(
dict1, args.checkpoint_dir + "/SuperSloMo" + "bestvalloss_epoch" + ".ckpt",
)
print("New Best valloss found and saved at " + str(epoch))
if ssim_val > best_ssim:
best_ssim = ssim_val
dict1 = {
"Detail": "End to end Super SloMo.",
"epoch": epoch,
"timestamp": datetime.datetime.now(),
"trainBatchSz": args.train_batch_size,
"validationBatchSz": args.validation_batch_size,
"learningRate": get_lr(optimizer),
"loss": cLoss,
"valLoss": valLoss,
"valPSNR": valPSNR,
"valSSIM": valSSIM,
"state_dictFC": flowComp.state_dict(),
"state_dictAT": ArbTimeFlowIntrp.state_dict(),
}
torch.save(
dict1, args.checkpoint_dir + "/SuperSloMo" + "bestssim_epoch" + ".ckpt",
)
print("New Best SSIM found and saved at " + str(epoch))
| 31.578078
| 149
| 0.595787
|
# [Super SloMo]
##High Quality Estimation of Multiple Intermediate Frames for Video Interpolation
from comet_ml import Experiment, ExistingExperiment
import argparse
import torch
import torchvision
import torchvision.transforms as transforms
import torch.optim as optim
import torch.nn as nn
import torch.nn.functional as F
import model
import dataloader_c as dataloader
from math import log10
import datetime
import numpy as np
import warnings
from pytorch_msssim import ssim, ms_ssim, SSIM, MS_SSIM # pip install pytorch-msssim
from PIL import Image
import torchvision.utils as vutils
from utils import init_net, upload_images
warnings.simplefilter("ignore", UserWarning)
# from tensorboardX import SummaryWriter
# For parsing commandline arguments
parser = argparse.ArgumentParser()
parser.add_argument(
"--dataset_root",
type=str,
required=True,
help="path to dataset folder containing train-test-validation folders",
)
parser.add_argument(
"--checkpoint_dir",
type=str,
required=True,
help="path to folder for saving checkpoints",
)
parser.add_argument(
"--checkpoint", type=str, help="path of checkpoint for pretrained model"
)
parser.add_argument(
"--train_continue", action="store_true", help="resuming from checkpoint."
)
parser.add_argument(
"-it",
"--init_type",
default="",
type=str,
help="the name of an initialization method: normal | xavier | kaiming | orthogonal",
)
parser.add_argument(
"--epochs", type=int, default=200, help="number of epochs to train. Default: 200."
)
parser.add_argument(
"-tbs",
"--train_batch_size",
type=int,
default=384,
help="batch size for training. Default: 6.",
)
parser.add_argument(
"-nw", "--num_workers", default=4, type=int, help="number of CPU you get"
)
parser.add_argument(
"-vbs",
"--validation_batch_size",
type=int,
default=384,
help="batch size for validation. Default: 10.",
)
parser.add_argument(
"-ilr",
"--init_learning_rate",
type=float,
default=0.0001,
help="set initial learning rate. Default: 0.0001.",
)
parser.add_argument(
"--milestones",
type=list,
default=[100, 150],
help="Set to epoch values where you want to decrease learning rate by a factor of 0.1. Default: [100, 150]",
)
parser.add_argument(
"--progress_iter",
type=int,
default=100,
help="frequency of reporting progress and validation. N: after every N iterations. Default: 100.",
)
parser.add_argument(
"--logimagefreq", type=int, default=1, help="frequency of logging image.",
)
parser.add_argument(
"--checkpoint_epoch",
type=int,
default=5,
help="checkpoint saving frequency. N: after every N epochs. Each checkpoint is roughly of size 151 MB.Default: 5.",
)
parser.add_argument(
"-wp", "--workspace", default="tianyu-z", type=str, help="comet-ml workspace"
)
parser.add_argument(
"-dh", "--data_h", default=128, type=int, help="H of the data shape"
)
parser.add_argument(
"-dw", "--data_w", default=128, type=int, help="W of the data shape"
)
parser.add_argument(
"-pn",
"--projectname",
default="super-slomo",
type=str,
help="comet-ml project name",
)
parser.add_argument(
"--nocomet", action="store_true", help="not using comet_ml logging."
)
parser.add_argument(
"--cometid", type=str, default="", help="the comet id to resume exps",
)
parser.add_argument(
"-rs",
"--randomseed",
type=int,
default=2021,
help="batch size for validation. Default: 10.",
)
args = parser.parse_args()
random_seed = args.randomseed
np.random.seed(random_seed)
torch.manual_seed(random_seed)
if torch.cuda.device_count() > 1:
torch.cuda.manual_seed_all(random_seed)
else:
torch.cuda.manual_seed(random_seed)
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
##[TensorboardX](https://github.com/lanpa/tensorboardX)
### For visualizing loss and interpolated frames
# writer = SummaryWriter("log")
###Initialize flow computation and arbitrary-time flow interpolation CNNs.
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
flowComp = model.UNet(6, 4)
flowComp.to(device)
if args.init_type != "":
init_net(flowComp, args.init_type)
print(args.init_type + " initializing flowComp done")
ArbTimeFlowIntrp = model.UNet(20, 5)
ArbTimeFlowIntrp.to(device)
if args.init_type != "":
init_net(ArbTimeFlowIntrp, args.init_type)
print(args.init_type + " initializing ArbTimeFlowIntrp done")
### Initialization
if args.train_continue:
if not args.nocomet and args.cometid != "":
comet_exp = ExistingExperiment(previous_experiment=args.cometid)
elif not args.nocomet and args.cometid == "":
comet_exp = Experiment(workspace=args.workspace, project_name=args.projectname)
else:
comet_exp = None
dict1 = torch.load(args.checkpoint)
ArbTimeFlowIntrp.load_state_dict(dict1["state_dictAT"])
flowComp.load_state_dict(dict1["state_dictFC"])
print("Pretrained model loaded!")
else:
# start logging info in comet-ml
if not args.nocomet:
comet_exp = Experiment(workspace=args.workspace, project_name=args.projectname)
# comet_exp.log_parameters(flatten_opts(args))
else:
comet_exp = None
dict1 = {"loss": [], "valLoss": [], "valPSNR": [], "valSSIM": [], "epoch": -1}
###Initialze backward warpers for train and validation datasets
trainFlowBackWarp = model.backWarp(128, 128, device)
trainFlowBackWarp = trainFlowBackWarp.to(device)
validationFlowBackWarp = model.backWarp(128, 128, device)
validationFlowBackWarp = validationFlowBackWarp.to(device)
###Load Datasets
# Channel wise mean calculated on adobe240-fps training dataset
mean = [0.5, 0.5, 0.5]
std = [1, 1, 1]
normalize = transforms.Normalize(mean=mean, std=std)
transform = transforms.Compose([transforms.ToTensor(), normalize])
trainset = dataloader.SuperSloMo(
root=args.dataset_root + "/train", transform=transform, train=True
)
trainloader = torch.utils.data.DataLoader(
trainset,
batch_size=args.train_batch_size,
num_workers=args.num_workers,
shuffle=True,
)
validationset = dataloader.SuperSloMo(
root=args.dataset_root + "/validation",
transform=transform,
randomCropSize=(128, 128),
train=False,
)
validationloader = torch.utils.data.DataLoader(
validationset,
batch_size=args.validation_batch_size,
num_workers=args.num_workers,
shuffle=False,
)
print(trainset, validationset)
###Create transform to display image from tensor
negmean = [x * -1 for x in mean]
revNormalize = transforms.Normalize(mean=negmean, std=std)
TP = transforms.Compose([revNormalize, transforms.ToPILImage()])
###Utils
def get_lr(optimizer):
for param_group in optimizer.param_groups:
return param_group["lr"]
###Loss and Optimizer
L1_lossFn = nn.L1Loss()
MSE_LossFn = nn.MSELoss()
params = list(ArbTimeFlowIntrp.parameters()) + list(flowComp.parameters())
optimizer = optim.Adam(params, lr=args.init_learning_rate)
# scheduler to decrease learning rate by a factor of 10 at milestones.
scheduler = optim.lr_scheduler.MultiStepLR(
optimizer, milestones=args.milestones, gamma=0.1
)
###Initializing VGG16 model for perceptual loss
vgg16 = torchvision.models.vgg16(pretrained=True)
vgg16_conv_4_3 = nn.Sequential(*list(vgg16.children())[0][:22])
vgg16_conv_4_3.to(device)
if args.init_type != "":
init_net(vgg16_conv_4_3, args.init_type)
for param in vgg16_conv_4_3.parameters():
param.requires_grad = False
### Validation function
#
def validate(epoch, logimage=False):
# For details see training.
psnr = 0
ssim_val = 0
tloss = 0
flag = 1
valid_images = []
with torch.no_grad():
for validationIndex, (validationData, validationFrameIndex) in enumerate(
validationloader, 0
):
frame0, frameT, frame1 = validationData
I0 = frame0.to(device)
I1 = frame1.to(device)
IFrame = frameT.to(device)
flowOut = flowComp(torch.cat((I0, I1), dim=1))
F_0_1 = flowOut[:, :2, :, :]
F_1_0 = flowOut[:, 2:, :, :]
fCoeff = model.getFlowCoeff(validationFrameIndex, device)
F_t_0 = fCoeff[0] * F_0_1 + fCoeff[1] * F_1_0
F_t_1 = fCoeff[2] * F_0_1 + fCoeff[3] * F_1_0
g_I0_F_t_0 = validationFlowBackWarp(I0, F_t_0)
g_I1_F_t_1 = validationFlowBackWarp(I1, F_t_1)
intrpOut = ArbTimeFlowIntrp(
torch.cat(
(I0, I1, F_0_1, F_1_0, F_t_1, F_t_0, g_I1_F_t_1, g_I0_F_t_0), dim=1
)
)
F_t_0_f = intrpOut[:, :2, :, :] + F_t_0
F_t_1_f = intrpOut[:, 2:4, :, :] + F_t_1
V_t_0 = torch.sigmoid(intrpOut[:, 4:5, :, :])
V_t_1 = 1 - V_t_0
g_I0_F_t_0_f = validationFlowBackWarp(I0, F_t_0_f)
g_I1_F_t_1_f = validationFlowBackWarp(I1, F_t_1_f)
wCoeff = model.getWarpCoeff(validationFrameIndex, device)
Ft_p = (
wCoeff[0] * V_t_0 * g_I0_F_t_0_f + wCoeff[1] * V_t_1 * g_I1_F_t_1_f
) / (wCoeff[0] * V_t_0 + wCoeff[1] * V_t_1)
# For tensorboard
if flag:
retImg = torchvision.utils.make_grid(
[
revNormalize(frame0[0]),
revNormalize(frameT[0]),
revNormalize(Ft_p.cpu()[0]),
revNormalize(frame1[0]),
],
padding=10,
)
flag = 0
if logimage:
if validationIndex % args.logimagefreq == 0:
valid_images.append(
255.0
* frame0[0]
.resize_(1, 1, args.data_h, args.data_w)
.repeat(1, 3, 1, 1)
)
valid_images.append(
255.0
* frameT[0]
.resize_(1, 1, args.data_h, args.data_w)
.repeat(1, 3, 1, 1)
)
valid_images.append(
255.0
* frame1[0]
.resize_(1, 1, args.data_h, args.data_w)
.repeat(1, 3, 1, 1)
)
valid_images.append(
255.0
* Ft_p.cpu()[0]
.resize_(1, 1, args.data_h, args.data_w)
.repeat(1, 3, 1, 1)
)
# loss
recnLoss = L1_lossFn(Ft_p, IFrame)
prcpLoss = MSE_LossFn(vgg16_conv_4_3(Ft_p), vgg16_conv_4_3(IFrame))
warpLoss = (
L1_lossFn(g_I0_F_t_0, IFrame)
+ L1_lossFn(g_I1_F_t_1, IFrame)
+ L1_lossFn(validationFlowBackWarp(I0, F_1_0), I1)
+ L1_lossFn(validationFlowBackWarp(I1, F_0_1), I0)
)
loss_smooth_1_0 = torch.mean(
torch.abs(F_1_0[:, :, :, :-1] - F_1_0[:, :, :, 1:])
) + torch.mean(torch.abs(F_1_0[:, :, :-1, :] - F_1_0[:, :, 1:, :]))
loss_smooth_0_1 = torch.mean(
torch.abs(F_0_1[:, :, :, :-1] - F_0_1[:, :, :, 1:])
) + torch.mean(torch.abs(F_0_1[:, :, :-1, :] - F_0_1[:, :, 1:, :]))
loss_smooth = loss_smooth_1_0 + loss_smooth_0_1
loss = 204 * recnLoss + 102 * warpLoss + 0.005 * prcpLoss + loss_smooth
tloss += loss.item()
# psnr
MSE_val = MSE_LossFn(Ft_p, IFrame)
psnr += 10 * log10(1 / MSE_val.item())
ssim_val += ssim(Ft_p, IFrame, data_range=1, size_average=True).item()
if logimage:
upload_images(
valid_images,
epoch,
exp=comet_exp,
im_per_row=4,
rows_per_log=int(len(valid_images) / 4),
)
return (
(psnr / len(validationloader)),
(ssim_val / len(validationloader)),
(tloss / len(validationloader)),
retImg,
)
### Training
import time
best_psnr = -1
best_ssim = -1
best_valloss = 9999
start = time.time()
cLoss = dict1["loss"]
valLoss = dict1["valLoss"]
valPSNR = dict1["valPSNR"]
valSSIM = dict1["valSSIM"]
checkpoint_counter = int((dict1["epoch"] + 1) / args.checkpoint_epoch)
### Main training loop
for epoch in range(dict1["epoch"] + 1, args.epochs):
print("Epoch: ", epoch)
# Append and reset
cLoss.append([])
valLoss.append([])
valPSNR.append([])
valSSIM.append([])
iLoss = 0
if epoch > dict1["epoch"] + 1:
# Increment scheduler count
scheduler.step()
# if epoch == dict1["epoch"] + 1:
# # test if validate works
# validate(epoch, True)
for trainIndex, (trainData, trainFrameIndex) in enumerate(trainloader, 0):
## Getting the input and the target from the training set
frame0, frameT, frame1 = trainData
I0 = frame0.to(device)
I1 = frame1.to(device)
IFrame = frameT.to(device)
optimizer.zero_grad()
# Calculate flow between reference frames I0 and I1
flowOut = flowComp(torch.cat((I0, I1), dim=1))
# Extracting flows between I0 and I1 - F_0_1 and F_1_0
F_0_1 = flowOut[:, :2, :, :]
F_1_0 = flowOut[:, 2:, :, :]
fCoeff = model.getFlowCoeff(trainFrameIndex, device)
# Calculate intermediate flows
F_t_0 = fCoeff[0] * F_0_1 + fCoeff[1] * F_1_0
F_t_1 = fCoeff[2] * F_0_1 + fCoeff[3] * F_1_0
# Get intermediate frames from the intermediate flows
g_I0_F_t_0 = trainFlowBackWarp(I0, F_t_0)
g_I1_F_t_1 = trainFlowBackWarp(I1, F_t_1)
# Calculate optical flow residuals and visibility maps
intrpOut = ArbTimeFlowIntrp(
torch.cat(
(I0, I1, F_0_1, F_1_0, F_t_1, F_t_0, g_I1_F_t_1, g_I0_F_t_0), dim=1
)
)
# Extract optical flow residuals and visibility maps
F_t_0_f = intrpOut[:, :2, :, :] + F_t_0
F_t_1_f = intrpOut[:, 2:4, :, :] + F_t_1
V_t_0 = torch.sigmoid(intrpOut[:, 4:5, :, :])
V_t_1 = 1 - V_t_0
# Get intermediate frames from the intermediate flows
g_I0_F_t_0_f = trainFlowBackWarp(I0, F_t_0_f)
g_I1_F_t_1_f = trainFlowBackWarp(I1, F_t_1_f)
wCoeff = model.getWarpCoeff(trainFrameIndex, device)
# Calculate final intermediate frame
Ft_p = (wCoeff[0] * V_t_0 * g_I0_F_t_0_f + wCoeff[1] * V_t_1 * g_I1_F_t_1_f) / (
wCoeff[0] * V_t_0 + wCoeff[1] * V_t_1
)
# Loss
recnLoss = L1_lossFn(Ft_p, IFrame)
prcpLoss = MSE_LossFn(vgg16_conv_4_3(Ft_p), vgg16_conv_4_3(IFrame))
warpLoss = (
L1_lossFn(g_I0_F_t_0, IFrame)
+ L1_lossFn(g_I1_F_t_1, IFrame)
+ L1_lossFn(trainFlowBackWarp(I0, F_1_0), I1)
+ L1_lossFn(trainFlowBackWarp(I1, F_0_1), I0)
)
loss_smooth_1_0 = torch.mean(
torch.abs(F_1_0[:, :, :, :-1] - F_1_0[:, :, :, 1:])
) + torch.mean(torch.abs(F_1_0[:, :, :-1, :] - F_1_0[:, :, 1:, :]))
loss_smooth_0_1 = torch.mean(
torch.abs(F_0_1[:, :, :, :-1] - F_0_1[:, :, :, 1:])
) + torch.mean(torch.abs(F_0_1[:, :, :-1, :] - F_0_1[:, :, 1:, :]))
loss_smooth = loss_smooth_1_0 + loss_smooth_0_1
# Total Loss - Coefficients 204 and 102 are used instead of 0.8 and 0.4
# since the loss in paper is calculated for input pixels in range 0-255
# and the input to our network is in range 0-1
loss = 204 * recnLoss + 102 * warpLoss + 0.005 * prcpLoss + loss_smooth
# Backpropagate
loss.backward()
optimizer.step()
iLoss += loss.item()
# Validation and progress every `args.progress_iter` iterations
# if (trainIndex % args.progress_iter) == args.progress_iter - 1:
end = time.time()
psnr, ssim_val, vLoss, valImg = validate(epoch, logimage=True)
valPSNR[epoch].append(psnr)
valSSIM[epoch].append(ssim_val)
valLoss[epoch].append(vLoss)
# Tensorboard
itr = int(trainIndex + epoch * (len(trainloader)))
# writer.add_scalars(
# "Loss",
# {"trainLoss": iLoss / args.progress_iter, "validationLoss": vLoss},
# itr,
# )
# writer.add_scalar("PSNR", psnr, itr)
# writer.add_image("Validation", valImg, itr)
comet_exp.log_metrics(
{"trainLoss": iLoss / args.progress_iter, "validationLoss": vLoss},
step=itr,
epoch=epoch,
)
comet_exp.log_metric("PSNR", psnr, step=itr, epoch=epoch)
comet_exp.log_metric("SSIM", ssim_val, step=itr, epoch=epoch)
# valImage = torch.movedim(valImg, 0, -1)
# print(type(valImage))
# print(valImage.shape)
# print(valImage.max())
# print(valImage.min())
# comet_exp.log_image(
# valImage,
# name="iter: " + str(iter) + ";epoch: " + str(epoch),
# image_format="jpg",
# step=itr,
# )
#####
endVal = time.time()
print(
" Loss: %0.6f Iterations: %4d/%4d TrainExecTime: %0.1f ValLoss:%0.6f ValPSNR: %0.4f ValSSIM: %0.4f ValEvalTime: %0.2f LearningRate: %f"
% (
iLoss / args.progress_iter,
trainIndex,
len(trainloader),
end - start,
vLoss,
psnr,
ssim_val,
endVal - end,
get_lr(optimizer),
)
)
cLoss[epoch].append(iLoss / args.progress_iter)
iLoss = 0
start = time.time()
# Create checkpoint after every `args.checkpoint_epoch` epochs
if (epoch % args.checkpoint_epoch) == args.checkpoint_epoch - 1:
dict1 = {
"Detail": "End to end Super SloMo.",
"epoch": epoch,
"timestamp": datetime.datetime.now(),
"trainBatchSz": args.train_batch_size,
"validationBatchSz": args.validation_batch_size,
"learningRate": get_lr(optimizer),
"loss": cLoss,
"valLoss": valLoss,
"valPSNR": valPSNR,
"valSSIM": valSSIM,
"state_dictFC": flowComp.state_dict(),
"state_dictAT": ArbTimeFlowIntrp.state_dict(),
}
torch.save(
dict1,
args.checkpoint_dir + "/SuperSloMo" + str(checkpoint_counter) + ".ckpt",
)
checkpoint_counter += 1
if psnr > best_psnr:
best_psnr = psnr
dict1 = {
"Detail": "End to end Super SloMo.",
"epoch": epoch,
"timestamp": datetime.datetime.now(),
"trainBatchSz": args.train_batch_size,
"validationBatchSz": args.validation_batch_size,
"learningRate": get_lr(optimizer),
"loss": cLoss,
"valLoss": valLoss,
"valPSNR": valPSNR,
"valSSIM": valSSIM,
"state_dictFC": flowComp.state_dict(),
"state_dictAT": ArbTimeFlowIntrp.state_dict(),
}
torch.save(
dict1, args.checkpoint_dir + "/SuperSloMo" + "bestpsnr_epoch" + ".ckpt",
)
print("New Best PSNR found and saved at " + str(epoch))
if vLoss < best_valloss:
best_valloss = vLoss
dict1 = {
"Detail": "End to end Super SloMo.",
"epoch": epoch,
"timestamp": datetime.datetime.now(),
"trainBatchSz": args.train_batch_size,
"validationBatchSz": args.validation_batch_size,
"learningRate": get_lr(optimizer),
"loss": cLoss,
"valLoss": valLoss,
"valPSNR": valPSNR,
"valSSIM": valSSIM,
"state_dictFC": flowComp.state_dict(),
"state_dictAT": ArbTimeFlowIntrp.state_dict(),
}
torch.save(
dict1, args.checkpoint_dir + "/SuperSloMo" + "bestvalloss_epoch" + ".ckpt",
)
print("New Best valloss found and saved at " + str(epoch))
if ssim_val > best_ssim:
best_ssim = ssim_val
dict1 = {
"Detail": "End to end Super SloMo.",
"epoch": epoch,
"timestamp": datetime.datetime.now(),
"trainBatchSz": args.train_batch_size,
"validationBatchSz": args.validation_batch_size,
"learningRate": get_lr(optimizer),
"loss": cLoss,
"valLoss": valLoss,
"valPSNR": valPSNR,
"valSSIM": valSSIM,
"state_dictFC": flowComp.state_dict(),
"state_dictAT": ArbTimeFlowIntrp.state_dict(),
}
torch.save(
dict1, args.checkpoint_dir + "/SuperSloMo" + "bestssim_epoch" + ".ckpt",
)
print("New Best SSIM found and saved at " + str(epoch))
| 0
| 0
| 0
| 0
| 0
| 4,748
| 0
| 73
| 186
|
dd5c591d8629070d56f3f787c2b2d5d71c6c3c42
| 448
|
py
|
Python
|
test/test_tokenize/case2.py
|
xupingmao/subpy
|
c956f151ed1ebd2faeaf1565352b59ca5a8fa0b4
|
[
"MIT"
] | 6
|
2015-10-11T15:06:54.000Z
|
2016-07-03T06:06:52.000Z
|
test/test_tokenize/case2.py
|
xupingmao/snake
|
c956f151ed1ebd2faeaf1565352b59ca5a8fa0b4
|
[
"MIT"
] | 7
|
2015-08-03T12:01:21.000Z
|
2016-04-24T09:00:09.000Z
|
test/test_tokenize/case2.py
|
xupingmao/snake
|
c956f151ed1ebd2faeaf1565352b59ca5a8fa0b4
|
[
"MIT"
] | 2
|
2016-04-18T14:51:25.000Z
|
2016-04-18T15:07:09.000Z
|
# -*- coding:utf-8 -*-
# @author xupingmao
# @since 2022/04/10 15:06:25
# @modified 2022/04/10 15:10:04
# @filename case2.py
input_text = """
def foo(bar):
return bar * 5
"""
output = [
"nl", "nl",
"def", "def",
"name", "foo",
"(", "(",
"name", "bar",
")", ")",
":", ":",
"nl", "nl",
"indent", 4,
"return", "return",
"name", "bar",
"*", "*",
"number", 5,
"nl", "nl",
"dedent", 4,
]
| 15.448276
| 31
| 0.419643
|
# -*- coding:utf-8 -*-
# @author xupingmao
# @since 2022/04/10 15:06:25
# @modified 2022/04/10 15:10:04
# @filename case2.py
input_text = """
def foo(bar):
return bar * 5
"""
output = [
"nl", "nl",
"def", "def",
"name", "foo",
"(", "(",
"name", "bar",
")", ")",
":", ":",
"nl", "nl",
"indent", 4,
"return", "return",
"name", "bar",
"*", "*",
"number", 5,
"nl", "nl",
"dedent", 4,
]
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
6efc3b3f2991661bf76fd6544abf0ea9b3f3a66e
| 153
|
py
|
Python
|
hadTopTools/__init__.py
|
mdkdrnevich/DeepHadTopTagger
|
560b51b98e0d9a3a78a0986408ad4d2a30f9960f
|
[
"MIT"
] | 3
|
2018-04-14T18:07:00.000Z
|
2020-07-15T13:21:49.000Z
|
hadTopTools/__init__.py
|
mdkdrnevich/DeepHadTopTagger
|
560b51b98e0d9a3a78a0986408ad4d2a30f9960f
|
[
"MIT"
] | null | null | null |
hadTopTools/__init__.py
|
mdkdrnevich/DeepHadTopTagger
|
560b51b98e0d9a3a78a0986408ad4d2a30f9960f
|
[
"MIT"
] | null | null | null |
import matplotlib as mpl
mpl.use("Agg")
| 30.6
| 81
| 0.803922
|
import matplotlib as mpl
mpl.use("Agg")
from .utils import CollisionDataset, AutoencoderDataset, train, test, plot_curves
from . import nn_classes as nn
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 69
| 45
|
3636d7aab0b716744fe8b791609bf4d2625e4679
| 4,760
|
py
|
Python
|
survey_system_files/views.py
|
CompSci17/Survey-System
|
b30ddb3c4dc6d65504bbef58bb1600becc4bb6f5
|
[
"MIT"
] | 1
|
2020-10-19T15:27:54.000Z
|
2020-10-19T15:27:54.000Z
|
survey_system_files/views.py
|
CompSci17/Survey-System
|
b30ddb3c4dc6d65504bbef58bb1600becc4bb6f5
|
[
"MIT"
] | 1
|
2020-07-14T15:03:02.000Z
|
2020-07-14T15:03:02.000Z
|
survey_system_files/views.py
|
CompSci17/Survey-System
|
b30ddb3c4dc6d65504bbef58bb1600becc4bb6f5
|
[
"MIT"
] | null | null | null |
# Create your views here.
| 29.02439
| 197
| 0.65021
|
import uuid
import hashlib
from django.shortcuts import render
from django.http import HttpResponseRedirect, HttpResponse
from .models import Survey, Question, Answers
from .forms import SurveyForm
from .results import Results
# Create your views here.
def survey_list( request, *args, **kwargs ):
# Get a list of all the surveys
survey_list = Survey.objects.filter( published = True )
template_name = "survey_list.html"
context = {
"survey_list": survey_list,
"page_title": "Surveys"
}
return render( request, template_name, context )
def survey_detail( request, pk, *args, **kwargs ):
# Get the survey we're working with
survey = Survey.objects.get( pk = pk, published = True )
# Get all the questions for the survey
questions = Question.objects.filter( survey__exact = survey ).order_by( "order" )
template_name = "survey_detail.html"
#Get the survey form
form = SurveyForm( request.POST or None, questions=questions )
if survey.single_vote and request.COOKIES.has_key( "survey_" + hashlib.sha256( str( survey.pk ) ).hexdigest() ):
# If the survey only allows 1 vote and the user has voted, load the thank you template
template_name = "thanks.html"
else:
# if this is a POST request we need to process the form data
if request.method == 'POST':
if form.is_valid():
# If form is valid, process the input
answers = []
for question in questions:
# For every question, process the answer and save it to the Answers model
answer = Answers( )
answer.survey = survey
answer.question = question
answers = form.cleaned_data[ str( question.pk ) ]
if type( answers ) is list:
# If the input has multiple answers, concatenate them into a comma separated list
for individualAnswer in answers:
answer.text = answer.text + individualAnswer + ", "
answer.text = answer.text[:-2]
else:
answer.text = answers
answer.session_id = uuid.uuid1( )
answer.save()
template_name = "thanks.html"
context = {
"survey" : survey,
"page_title": survey.title,
"form": form,
}
# Create blank response
response = HttpResponse()
# Fill the response with the template render
response = render( request, template_name, context )
if request.method == 'POST' and form.is_valid() and survey.single_vote:
# If form is submitted, the form is valid and the survey only allows 1 vote:
# set a cookie to identify the user has voted
response.set_cookie( "survey_" + hashlib.sha256( str( survey.pk ) ).hexdigest(), hashlib.sha256( str( survey.pk ) + ( survey.title ) ).hexdigest() , max_age = 30 * 24 * 60 * 60, httponly = True )
# Return the rendered response
return response
def survey_results( request, pk, *args, **kwargs ):
survey = Survey.objects.get( pk = pk, published = True )
questions = Question.objects.filter( survey__exact = survey )
template_name = "survey_results.html"
results = Results( )
answers = results.render_results( questions, survey )
output = ''
charts = []
chart_ids = ""
for input_type, answer, input_id in answers:
if input_type == "text" or input_type == "textarea":
question = Question.objects.get( pk = input_id )
if "email" not in question.text:
output += """
<table>
<tr>
<th> %s </th>
</tr>
""" % ( question.text )
for indiv_answer in answer:
output += """
<tr>
<td> %s </td>
</tr>
""" % ( indiv_answer )
output += """
</table>
"""
elif input_type == "order_of_importance":
question = Question.objects.get( pk = input_id )
choices = results.get_choices( question.choices )
counter = []
max_score = 0
output += "<h2>" + question.text + "</h2>"
for choice in choices:
answer_score = 0
for column in xrange( 1, len( choices ) + 1 ):
answer_score += ( len( choices ) + 1 - column ) * int( answer[ column ][ choice.strip().replace( ",", "" ) ] )
max_score = answer_score if answer_score > max_score else max_score
counter.append( ( choice.strip().replace( ",", "" ), answer_score ) )
counter = sorted( counter, key=lambda answer: answer[1], reverse = True )
for answer, score in counter:
output += str( answer ) + '<br /> <meter value="' + str( score ) + '" min="0" max="' + str( max_score ) + '" >' + str( score ) + '</meter> <br /><br />'
else:
charts.append( answer )
chart_ids += "container_" + str( input_id ) + ","
output += " \n <div id='container_" + str( input_id ) + "'> Chart </div>"
context = {
"page_title": survey.title + " Results",
"answers": answers,
"output": output,
"charts": charts,
"chart_ids": chart_ids,
}
return render( request, template_name, context )
| 0
| 0
| 0
| 0
| 0
| 4,434
| 0
| 73
| 224
|
9d7b4fe660aa92ee6eb5bbd020297c0ee9cb4dd1
| 2,873
|
py
|
Python
|
src/mnist/train.py
|
iden-kalemaj/SIDP
|
ee6da502cc6c0f42042b54d6329b3bd8c67fb991
|
[
"Apache-2.0"
] | 10
|
2020-06-22T22:11:43.000Z
|
2021-11-10T12:25:53.000Z
|
src/mnist/train.py
|
iden-kalemaj/SIDP
|
ee6da502cc6c0f42042b54d6329b3bd8c67fb991
|
[
"Apache-2.0"
] | 2
|
2020-12-10T09:25:59.000Z
|
2021-12-27T09:33:36.000Z
|
src/mnist/train.py
|
iden-kalemaj/SIDP
|
ee6da502cc6c0f42042b54d6329b3bd8c67fb991
|
[
"Apache-2.0"
] | 3
|
2020-07-11T05:45:06.000Z
|
2022-03-03T21:08:56.000Z
|
import torchvision.transforms as transforms
| 31.571429
| 107
| 0.649147
|
import torch
from torchvision import datasets
from torch.utils.data import DataLoader, RandomSampler
import torchvision.transforms as transforms
from tqdm import tqdm
from .dataset import data_loaders, axi_loader
def train(model, criterion, optimizer, device, train_loader, clip, noise_multiplier, batch_size, axi_x):
model.train()
for x, y in tqdm(train_loader):
_lr = optimizer.param_groups[0]['lr']
std_params = _lr * clip * noise_multiplier / batch_size
x = torch.cat([x.to(device), axi_x], dim=0)
y = y.to(device)
optimizer.zero_grad()
output = model.forward(x, std_params)[:batch_size]
losses = criterion(output, y)
saved_var = dict()
for tensor_name, tensor in model.named_parameters():
saved_var[tensor_name] = torch.zeros_like(tensor)
for j in losses:
j.backward(retain_graph=True)
torch.nn.utils.clip_grad_norm_(model.parameters(), clip)
for tensor_name, tensor in model.named_parameters():
new_grad = tensor.grad
saved_var[tensor_name].add_(new_grad)
optimizer.zero_grad()
for tensor_name, tensor in model.named_parameters():
tensor.grad = saved_var[tensor_name] / losses.shape[0]
optimizer.step()
def evaluate_accuracy(model, data_loader, device, axi_x):
model.eval()
correct = 0
total = 0.
with torch.no_grad():
for x, y in data_loader:
_batch_size = x.shape[0]
x = torch.cat([x.to(device), axi_x], dim=0)
output = model(x, 0)[:_batch_size]
pred = output.max(1, keepdim=True)[1] # get the index of the max log-probability
correct += pred.eq(y.to(device).view_as(pred)).sum().item()
total += _batch_size
accuracy = correct / total
return accuracy
def main(noise_multiplier, clip, lr, batch_size, epochs, normalization_type, device):
from .model import LeNet5
if device is None:
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
model = LeNet5(normalization_type)
model = model.to(device)
criterion = torch.nn.CrossEntropyLoss(reduction='none')
optimizer = torch.optim.SGD(model.parameters(), lr=lr, momentum=0.9)
scheduler_lr = torch.optim.lr_scheduler.ExponentialLR(optimizer, gamma=.9, last_epoch=-1)
train_loader, test_loader = data_loaders(batch_size)
axi_x = axi_loader(30).to(device)
for epoch in range(epochs):
train(model, criterion, optimizer, device, train_loader, clip, noise_multiplier, batch_size, axi_x)
scheduler_lr.step()
test_accuracy = evaluate_accuracy(model, test_loader, device, axi_x)
print('epoch', epoch)
print('valid accuracy ', test_accuracy)
print('---------------------')
| 0
| 0
| 0
| 0
| 0
| 2,575
| 0
| 59
| 179
|
a9c9d9ad9a74e5fe13167144fcd090943b6c7714
| 2,297
|
py
|
Python
|
main/General_Circuit/Meta_Reporter.py
|
user-ccarr/ECIF
|
b858c22b9c2959efbc52ab93f21eac94663598ad
|
[
"BSD-3-Clause"
] | null | null | null |
main/General_Circuit/Meta_Reporter.py
|
user-ccarr/ECIF
|
b858c22b9c2959efbc52ab93f21eac94663598ad
|
[
"BSD-3-Clause"
] | null | null | null |
main/General_Circuit/Meta_Reporter.py
|
user-ccarr/ECIF
|
b858c22b9c2959efbc52ab93f21eac94663598ad
|
[
"BSD-3-Clause"
] | null | null | null |
import yaml
import sys
def meta_report(meta_data_loc="Experiment_Data.yml"):
"""
Reads meta data from file called "Experiment_Data.yml" and adds a report
Parameters
----------
meta_data_loc : str
the path to file that contains experiment meta data
Returns
-------
config_data : none
"""
try:
with open(meta_data_loc, "r") as stream:
meta_data = yaml.safe_load(stream)
report_message = report_writer(meta_data)
f = open("Experiment_Info.txt","w" )
f.write(report_message)
f.close()
except FileNotFoundError:
sys.exit("File containing meta data, {}, not found. Exiting...".format(meta_data_loc))
def report_writer(md):
"""
Reads meta data into function and makes txt message report.
----------
md : dict
Contains meta data from experiment file
Returns
-------
message : string
The text output for the report
"""
s_name = md["sample_meta_data"]["sample_name"]
s_date = md["sample_meta_data"]["sample_date"]
s_surface = md["sample_meta_data"]["sample_surface_area"]
imp_mode = md["experiment_meta_data"]["impedance_mode"]
meas_volt = md["experiment_meta_data"]["measurement_voltage"]
vs = md["experiment_meta_data"]["vs"]
pert_v = md["experiment_meta_data"]["pertubation_voltage"]
sf = md["experiment_meta_data"]["starting_frequency"]
ef = md["experiment_meta_data"]["ending_frequency"]
ppi = md["experiment_meta_data"]["points_per_interval"]
ig = md["experiment_meta_data"]["interval_group"]
spacing = md["experiment_meta_data"]["spacing"]
intro_line = "Report for "+str(s_name)+" experiment conducted on "+str(s_date)+".\n\n"
imp_line = "A "+str(imp_mode)+" measurement was made with a "+str(pert_v)+"mV pertubation voltage at "+str(meas_volt)+"V vs. "+str(vs)+".\n\n"
range_line = "Experiment conducted from "+str(sf)+"Hz to "+str(ef)+"Hz with "+str(ppi)+ " points "+str(ig)+" using "+str(spacing)+" spacing.\n\n"
surface_line = "Sample has a surface area of "+str(s_surface)+"cm^2."
message = intro_line+imp_line+range_line+surface_line
return message
| 40.298246
| 150
| 0.627775
|
import yaml
import sys
def meta_report(meta_data_loc="Experiment_Data.yml"):
"""
Reads meta data from file called "Experiment_Data.yml" and adds a report
Parameters
----------
meta_data_loc : str
the path to file that contains experiment meta data
Returns
-------
config_data : none
"""
try:
with open(meta_data_loc, "r") as stream:
meta_data = yaml.safe_load(stream)
report_message = report_writer(meta_data)
f = open("Experiment_Info.txt","w" )
f.write(report_message)
f.close()
except FileNotFoundError:
sys.exit("File containing meta data, {}, not found. Exiting...".format(meta_data_loc))
def report_writer(md):
"""
Reads meta data into function and makes txt message report.
----------
md : dict
Contains meta data from experiment file
Returns
-------
message : string
The text output for the report
"""
s_name = md["sample_meta_data"]["sample_name"]
s_date = md["sample_meta_data"]["sample_date"]
s_surface = md["sample_meta_data"]["sample_surface_area"]
imp_mode = md["experiment_meta_data"]["impedance_mode"]
meas_volt = md["experiment_meta_data"]["measurement_voltage"]
vs = md["experiment_meta_data"]["vs"]
pert_v = md["experiment_meta_data"]["pertubation_voltage"]
sf = md["experiment_meta_data"]["starting_frequency"]
ef = md["experiment_meta_data"]["ending_frequency"]
ppi = md["experiment_meta_data"]["points_per_interval"]
ig = md["experiment_meta_data"]["interval_group"]
spacing = md["experiment_meta_data"]["spacing"]
intro_line = "Report for "+str(s_name)+" experiment conducted on "+str(s_date)+".\n\n"
imp_line = "A "+str(imp_mode)+" measurement was made with a "+str(pert_v)+"mV pertubation voltage at "+str(meas_volt)+"V vs. "+str(vs)+".\n\n"
range_line = "Experiment conducted from "+str(sf)+"Hz to "+str(ef)+"Hz with "+str(ppi)+ " points "+str(ig)+" using "+str(spacing)+" spacing.\n\n"
surface_line = "Sample has a surface area of "+str(s_surface)+"cm^2."
message = intro_line+imp_line+range_line+surface_line
return message
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
c741e0fabfcf222376d9c9ed9b7269d024ada2be
| 33,048
|
py
|
Python
|
src/nunavut/lang/__init__.py
|
DNedic/nunavut
|
61232b31b82ba1b6a3b0bf82392975399a541137
|
[
"MIT",
"BSD-3-Clause"
] | 24
|
2019-05-14T19:31:49.000Z
|
2021-11-20T09:39:48.000Z
|
src/nunavut/lang/__init__.py
|
DNedic/nunavut
|
61232b31b82ba1b6a3b0bf82392975399a541137
|
[
"MIT",
"BSD-3-Clause"
] | 163
|
2019-05-14T06:03:01.000Z
|
2022-03-31T18:21:15.000Z
|
src/nunavut/lang/__init__.py
|
DNedic/nunavut
|
61232b31b82ba1b6a3b0bf82392975399a541137
|
[
"MIT",
"BSD-3-Clause"
] | 12
|
2019-11-24T06:21:43.000Z
|
2022-02-23T13:42:51.000Z
|
#
# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# Copyright (C) 2018-2020 UAVCAN Development Team <uavcan.org>
# This software is distributed under the terms of the MIT License.
#
"""Language-specific support in nunavut.
This package contains modules that provide specific support for generating
source for various languages using templates.
"""
import logging
logger = logging.getLogger(__name__)
| 43.656539
| 120
| 0.645576
|
#
# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# Copyright (C) 2018-2020 UAVCAN Development Team <uavcan.org>
# This software is distributed under the terms of the MIT License.
#
"""Language-specific support in nunavut.
This package contains modules that provide specific support for generating
source for various languages using templates.
"""
import abc
import functools
import importlib
import logging
import pathlib
import types
import typing
import pydsdl
from ..dependencies import Dependencies, DependencyBuilder
from .._utilities import YesNoDefault, iter_package_resources
from ._config import LanguageConfig, VersionReader
logger = logging.getLogger(__name__)
class LanguageLoader:
"""
Factory class that loads language meta-data and concrete :class:`nunavut.lang.Language` objects.
:param additional_config_files: A list of paths to additional configuration files to load as configuration.
These will override any values found in the :file:`nunavut.lang.properties.yaml` file and files
appearing later in this list will override value found in earlier entries.
.. invisible-code-block: python
from nunavut.lang import LanguageLoader
subject = LanguageLoader()
c_reserved_identifiers = subject.config.get_config_value('nunavut.lang.c','reserved_identifiers')
assert len(c_reserved_identifiers) > 0
"""
@classmethod
def load_language_module(cls, language_name: str) -> "types.ModuleType":
module_name = "nunavut.lang.{}".format(language_name)
return importlib.import_module(module_name)
@classmethod
def _load_config(cls, *additional_config_files: pathlib.Path) -> LanguageConfig:
parser = LanguageConfig()
for resource in iter_package_resources(__name__, ".yaml"):
ini_string = resource.read_text()
parser.read_string(ini_string)
for additional_path in additional_config_files:
with open(str(additional_path), "r") as additional_file:
parser.read_file(additional_file)
return parser
def __init__(self, *additional_config_files: pathlib.Path):
self._config = None # type: typing.Optional[LanguageConfig]
self._additional_config_files = additional_config_files
@property
def config(self) -> LanguageConfig:
"""
Meta-data about all languages merged from the Nunavut internal defaults and any additional
configuration files provided to this class's constructor.
"""
if self._config is None:
self._config = self._load_config(*self._additional_config_files)
return self._config
def load_language(
self,
language_name: str,
omit_serialization_support: bool,
language_options: typing.Optional[typing.Mapping[str, typing.Any]] = None,
) -> "Language":
"""
:param str language_name: The name of the language used by the :mod:`nunavut.lang` module.
:param LanguageConfig config: The parser to load language properties into.
:param bool omit_serialization_support: The value to set for the :func:`omit_serialization_support` property
for this language.
:param typing.Optional[typing.Mapping[str, typing.Any]] language_options: Opaque arguments passed through to the
target :class:`nunavut.lang.Language` object.
:return: A new object that extends :class:`nunavut.lang.Language`.
:rtype: nunavut.lang.Language
.. invisible-code-block: python
from nunavut.lang import LanguageLoader
.. code-block:: python
lang_c = LanguageLoader().load_language('c', True)
assert lang_c.name == 'c'
.. invisible-code-block: python
# let's go ahead and load the rest of our known, internally supported languages just to raise
# test failures right here at the wellspring.
lang_cpp = LanguageLoader().load_language('py', True)
assert lang_cpp.name == 'py'
lang_js = LanguageLoader().load_language('js', True)
assert lang_js.name == 'js'
"""
ln_module = self.load_language_module(language_name)
try:
language_type = typing.cast(typing.Type["Language"], getattr(ln_module, "Language"))
except AttributeError:
logging.debug(
"Unable to find a Language object in nunavut.lang.{}. Using a Generic language object".format(
language_name
)
)
language_type = _GenericLanguage
if language_type == Language:
# the language module just imported the base class so let's go ahead and use _GenericLanguage
language_type = _GenericLanguage
return language_type(ln_module, self.config, omit_serialization_support, language_options)
class Language(metaclass=abc.ABCMeta):
"""
Facilities for generating source code for a specific language. Concrete Language classes must be implemented
by the language support package below lang and should be instantiated using
:class:`nunavut.lang.LanguageLoader`.
:param str language_name: The name of the language used by the :mod:`nunavut.lang` module.
:param LanguageConfig config: The parser to load language properties into.
:param bool omit_serialization_support: The value to set for the :func:`omit_serialization_support` property
for this language.
:param typing.Optional[typing.Mapping[str, typing.Any]] language_options: Opaque arguments passed through to the
target :class:`nunavut.lang.Language` object.
.. invisible-code-block: python
from nunavut.lang import Language, _GenericLanguage
from unittest.mock import MagicMock
mock_config = MagicMock()
mock_module = MagicMock()
mock_module.__name__ = 'foo'
try:
my_lang = _GenericLanguage(mock_module, mock_config, True)
# module must be within 'nunavut'
assert False
except RuntimeError:
pass
mock_module.__name__ = 'nunavut.foo'
try:
my_lang = _GenericLanguage(mock_module, mock_config, True)
# module must be within 'nunavut.lang'
assert False
except RuntimeError:
pass
mock_module.__name__ = 'not.nunavut.foo'
try:
my_lang = _GenericLanguage(mock_module, mock_config, True)
# module must be within 'nunavut.lang'
assert False
except RuntimeError:
pass
mock_module.__name__ = 'nunavut.lang.foo'
my_lang = _GenericLanguage(mock_module, mock_config, True)
assert my_lang.name == 'foo'
"""
@classmethod
def default_filter_id_for_target(cls, instance: typing.Any) -> str:
"""
The default transformation of any object into a string.
:param any instance: Any object or data that either has a name property or can be converted to a string.
:return: Either ``str(instance.name)`` if the instance has a name property or just ``str(instance)``
"""
if hasattr(instance, "name"):
return str(instance.name)
else:
return str(instance)
def __init__(
self,
language_module: "types.ModuleType",
config: LanguageConfig,
omit_serialization_support: bool,
language_options: typing.Optional[typing.Mapping[str, typing.Any]] = None,
):
self._globals = None # type: typing.Optional[typing.Mapping[str, typing.Any]]
self._section = language_module.__name__
name_parts = self._section.split(".")
if len(name_parts) != 3 or name_parts[0] != "nunavut" or name_parts[1] != "lang":
raise RuntimeError("unknown module provided to Language class.")
self._language_name = name_parts[2]
self._config = config
self._omit_serialization_support = omit_serialization_support
self._language_options = config.get_config_value_as_dict(self._section, "options", dict())
if language_options is not None:
self._language_options.update(language_options)
self._filters = dict() # type: typing.Dict[str, typing.Callable]
self._tests = dict() # type: typing.Dict[str, typing.Callable]
self._uses = dict() # type: typing.Dict[str, typing.Callable]
def __getattr__(self, name: str) -> typing.Any:
"""
Any attribute access to a Language object will return the regular properties and
any globals defined for the language. Because of this do not extend properties
on this object in a way that will clash with the globals it defines (e.g. typename_
or valuetoken_ should not be used as the start of attribute names).
"""
try:
return self.get_globals()[name]
except KeyError as e:
raise AttributeError(e)
def get_support_module(self) -> typing.Tuple[str, typing.Tuple[int, int, int], typing.Optional["types.ModuleType"]]:
"""
Returns the module object for the language support files.
:return: A tuple of module name, x.y.z module version, and the module object itself.
.. invisible-code-block: python
from nunavut.lang import Language, _GenericLanguage
from unittest.mock import MagicMock
mock_config = MagicMock()
mock_module = MagicMock()
mock_module.__name__ = 'nunavut.lang.cpp'
my_lang = _GenericLanguage(mock_module, mock_config, True)
my_lang._section = "nunavut.lang.cpp"
module_name, support_version, _ = my_lang.get_support_module()
assert module_name == "nunavut.lang.cpp.support"
assert support_version[0] == 1
"""
module_name = "{}.support".format(self._section)
try:
module = importlib.import_module(module_name)
version_tuple = VersionReader.read_version(module)
return (module_name, version_tuple, module)
except (ImportError, ValueError):
# No serialization support for this language
logger.info("No serialization support for selected target. Cannot retrieve module.")
return (module_name, (0, 0, 0), None)
@functools.lru_cache()
def get_dependency_builder(self, for_type: pydsdl.Any) -> DependencyBuilder:
return DependencyBuilder(for_type)
@abc.abstractmethod
def get_includes(self, dep_types: Dependencies) -> typing.List[str]:
"""
Get a list of include paths that are specific to this language and the options set for it.
:param Dependencies dep_types: A description of the dependencies includes are needed for.
:return: A list of include file paths. The list may be empty if no includes were needed.
"""
pass
def filter_id(self, instance: typing.Any, id_type: str = "any") -> str:
"""
Produces a valid identifier in the language for a given object. The encoding may not be reversible.
:param any instance: Any object or data that either has a name property or can be converted
to a string.
:param str id_type: A type of identifier. This is different for each language. For example, for C this
value can be 'typedef', 'macro', 'function', or 'enum'.
Use 'any' to apply stropping rules for all identifier types to the instance.
:return: A token that is a valid identifier in the language, is not a reserved keyword, and is transformed
in a deterministic manner based on the provided instance.
"""
return self.default_filter_id_for_target(instance)
def filter_short_reference_name(
self, t: pydsdl.CompositeType, stropping: YesNoDefault = YesNoDefault.DEFAULT, id_type: str = "any"
) -> str:
"""
Provides a string that is a shorted version of the full reference name omitting any namespace parts of the type.
:param pydsdl.CompositeType t: The DSDL type to get the reference name for.
:param YesNoDefault stropping: If DEFAULT then the stropping value configured for the target language is used
else this overrides that value.
:param str id_type: A type of identifier. This is different for each language. For example, for C this
value can be 'typedef', 'macro', 'function', or 'enum'.
Use 'any' to apply stropping rules for all identifier types to the instance.
"""
short_name = "{short}_{major}_{minor}".format(short=t.short_name, major=t.version.major, minor=t.version.minor)
if YesNoDefault.test_truth(stropping, self.enable_stropping):
return self.filter_id(short_name, id_type)
else:
return short_name
def get_config_value(self, key: str, default_value: typing.Optional[str] = None) -> str:
"""
Get an optional language property from the language configuration.
:param str key: The config value to retrieve.
:param default_value: The value to return if the key was not in the configuration. If provided
this method will not raise.
:type default_value: typing.Optional[str]
:return: Either the value from the config or the default_value if provided.
:rtype: str
:raises: KeyError if the section or the key in the section does not exist and a default_value was not provided.
"""
return self._config.get_config_value(self._section, key, default_value)
def get_config_value_as_bool(self, key: str, default_value: bool = False) -> bool:
"""
Get an optional language property from the language configuration returning a boolean.
:param str key: The config value to retrieve.
:param bool default_value: The value to use if no value existed.
:return: The config value as either True or False.
:rtype: bool
"""
return self._config.get_config_value_as_bool(self._section, key, default_value)
def get_config_value_as_dict(
self, key: str, default_value: typing.Optional[typing.Dict] = None
) -> typing.Dict[str, typing.Any]:
"""
Get a language property parsing it as a map with string keys.
.. invisible-code-block: python
from nunavut.lang import LanguageConfig, LanguageLoader, Language, _GenericLanguage
config = LanguageConfig()
config.add_section('nunavut.lang.c')
config.set('nunavut.lang.c', 'foo', {'one': 1})
lang_c = _GenericLanguage(LanguageLoader.load_language_module('c'), config, True)
assert lang_c.get_config_value_as_dict('foo')['one'] == 1
assert lang_c.get_config_value_as_dict('bar', {'one': 2})['one'] == 2
:param str key: The config value to retrieve.
:param default_value: The value to return if the key was not in the configuration. If provided this method
will not raise a KeyError nor a TypeError.
:type default_value: typing.Optional[typing.Mapping[str, typing.Any]]
:return: Either the value from the config or the default_value if provided.
:rtype: typing.Mapping[str, typing.Any]
:raises: KeyError if the key does not exist and a default_value was not provided.
:raises: TypeError if the value exists but is not a dict and a default_value was not provided.
"""
return self._config.get_config_value_as_dict(self._section, key, default_value)
def get_config_value_as_list(
self, key: str, default_value: typing.Optional[typing.List] = None
) -> typing.List[typing.Any]:
"""
Get a language property parsing it as a map with string keys.
:param str key: The config value to retrieve.
:param default_value: The value to return if the key was not in the configuration. If provided this method
will not raise a KeyError nor a TypeError.
:type default_value: typing.Optional[typing.List[typing.Any]]
:return: Either the value from the config or the default_value if provided.
:rtype: typing.List[typing.Any]
:raises: KeyError if the key does not exist and a default_value was not provided.
:raises: TypeError if the value exists but is not a dict and a default_value was not provided.
"""
return self._config.get_config_value_as_list(self._section, key, default_value)
@property
def extension(self) -> str:
"""
The extension to use for files generated in this language.
"""
return self._config.get_config_value(self._section, "extension", "get")
@property
def namespace_output_stem(self) -> typing.Optional[str]:
"""
The name of a namespace file for this language.
"""
try:
return self._config.get_config_value(self._section, "namespace_file_stem")
except KeyError:
return None
@property
def name(self) -> str:
"""
The name of the language used by the :mod:`nunavut.lang` module.
"""
return self._language_name
@property
def support_namespace(self) -> typing.List[str]:
"""
The hierarchical namespace used by the support software. The property
is a dot separated string when specified in configuration. This
property returns that value split into namespace components with the
first identifier being the first index in the array, etc.
.. invisible-code-block: python
from nunavut.lang import Language
config = {
'nunavut.lang.cpp':
{
'support_namespace': 'foo.bar'
}
}
lctx = configurable_language_context_factory(config, 'cpp')
lang_cpp = lctx.get_target_language()
assert len(lang_cpp.support_namespace) == 2
assert lang_cpp.support_namespace[0] == 'foo'
assert lang_cpp.support_namespace[1] == 'bar'
"""
namespace_str = self._config.get_config_value(self._section, "support_namespace", default_value="")
return namespace_str.split(".")
@property
def enable_stropping(self) -> bool:
"""
Whether or not to strop identifiers for this language.
"""
return self._config.get_config_value_as_bool(self._section, "enable_stropping")
@property
def has_standard_namespace_files(self) -> bool:
"""
Whether or not the language defines special namespace files as part of
its core standard (e.g. python's __init__).
"""
return self._config.get_config_value_as_bool(self._section, "has_standard_namespace_files")
@property
def stable_support(self) -> bool:
"""
Whether support for this language is designated 'stable', and not experimental.
"""
return self._config.get_config_value_as_bool(self._section, "stable_support")
@property
def omit_serialization_support(self) -> bool:
"""
If True then generators should not include serialization routines, types,
or support libraries for this language.
"""
return self._omit_serialization_support
@property
def support_files(self) -> typing.Generator[pathlib.Path, None, None]:
"""
Iterates over non-templated supporting files embedded within the Nunavut distribution.
.. invisible-code-block: python
from nunavut.lang import Language, _GenericLanguage
from unittest.mock import MagicMock
mock_config = MagicMock()
mock_module = MagicMock()
mock_module.__name__ = 'nunavut.lang.foo'
my_lang = _GenericLanguage(mock_module, mock_config, True)
my_lang._section = "nunavut.lang.not_a_language_really_not_a_language"
for support_file in my_lang.support_files:
# if the module doesn't exist it shouldn't have any support files.
assert False
"""
_, _, module = self.get_support_module()
if module is not None:
# All language support modules must provide a list_support_files method
# to allow the copy generator access to the packaged support files.
list_support_files = getattr(
module, "list_support_files"
) # type: typing.Callable[[], typing.Generator[pathlib.Path, None, None]]
return list_support_files()
else:
# No serialization support for this language
def list_support_files() -> typing.Generator[pathlib.Path, None, None]:
# This makes both MyPy and sonarqube happy.
return typing.cast(typing.Generator[pathlib.Path, None, None], iter(()))
return list_support_files()
def get_option(
self, option_key: str, default_value: typing.Union[typing.Mapping[str, typing.Any], str, None] = None
) -> typing.Union[typing.Mapping[str, typing.Any], str, None]:
"""
Get a language option for this language.
.. invisible-code-block: python
config = {
'nunavut.lang.cpp':
{
'options': {'target_endianness': 'little'}
}
}
lctx = configurable_language_context_factory(config, 'cpp')
lang_cpp = lctx.get_target_language()
.. code-block:: python
# Values can come from defaults...
assert lang_cpp.get_option('target_endianness') == 'little'
# ... or can come from a sane default.
assert lang_cpp.get_option('foobar', 'sane_default') == 'sane_default'
:return: Either the value provided to the :class:`Language` instance, the value from properties.yaml,
or the :code:`default_value`.
"""
try:
return self._language_options[option_key] # type: ignore
except KeyError:
return default_value
def get_templates_package_name(self) -> str:
"""
The name of the nunavut python package containing filters, types, and configuration
for this language.
"""
return self._section
def get_named_types(self) -> typing.Mapping[str, str]:
"""
Get a map of named types to the type name to emit for this language.
"""
return self._config.get_config_value_as_dict(self._section, "named_types", default_value={})
def get_named_values(self) -> typing.Mapping[str, str]:
"""
Get a map of named values to the token to emit for this language.
"""
return self._config.get_config_value_as_dict(self._section, "named_values", default_value={})
def get_globals(self) -> typing.Mapping[str, typing.Any]:
"""
Get all values for this language that should be available in a global context.
:return: A mapping of global names to global values.
"""
if self._globals is None:
globals_map = dict() # type: typing.Dict[str, typing.Any]
for key, value in self.get_named_types().items():
globals_map["typename_{}".format(key)] = value
for key, value in self.get_named_values().items():
globals_map["valuetoken_{}".format(key)] = value
self._globals = globals_map
return self._globals
def get_options(self) -> typing.Mapping[str, typing.Any]:
"""
Get all language options for this Language.
:return: A mapping of option names to option values.
"""
return self._language_options
class _GenericLanguage(Language):
"""
Language type used when the language support within Nunavut does not define a language-specific
subclass.
Do not use this. Use :class:`nunavut.lang.LanguageLoader` which will create the proper object type
based on inspection of the Nunavut internals.
"""
def get_includes(self, dep_types: Dependencies) -> typing.List[str]:
return []
class LanguageContext:
"""
Context object containing the current target language (if any) and used to access
:class:`Language` objects.
:param str target_language: If provided a :class:`Language` object will be created to hold
the target language set for this context. If None then there is
no target language.
:param str extension: The extension to use for generated file types or None to use a default
based on the target_language.
:param str namespace_output_stem: The filename stem to give to Namespace output files if
emitted or None to use a default based on a target_language.
:param additional_config_files: A list of paths to additional files to load as configuration.
These will override any values found in the :file:`nunavut.lang.properties.yaml` file and files
appearing later in this list will override value found in earlier entries.
:type additional_config_files: typing.List[pathlib.Path]
:param bool omit_serialization_support_for_target: If True then generators should not include
serialization routines, types, or support libraries for the target language.
:param typing.Optional[typing.Mapping[str, typing.Any]] language_options: Opaque arguments passed through to the
target :class:`nunavut.lang.Language` object.
:param bool include_experimental_languages: If True, expose languages with experimental (non-stable) support.
:raises ValueError: If extension is None and no target language was provided.
:raises KeyError: If the target language is not known.
"""
def __init__(
self,
target_language: typing.Optional[str] = None,
extension: typing.Optional[str] = None,
namespace_output_stem: typing.Optional[str] = None,
additional_config_files: typing.List[pathlib.Path] = [],
omit_serialization_support_for_target: bool = True,
language_options: typing.Optional[typing.Mapping[str, typing.Any]] = None,
include_experimental_languages: bool = True,
):
self._extension = extension
self._namespace_output_stem = namespace_output_stem
self._ln_loader = LanguageLoader(*additional_config_files)
self._config = self._ln_loader.config
self._languages = dict() # type: typing.Dict[str, Language]
# create target language, if there is one.
self._target_language = None
if target_language is not None:
try:
self._target_language = self._ln_loader.load_language(
target_language, omit_serialization_support_for_target, language_options=language_options
)
except ImportError:
raise KeyError("{} is not a supported language".format(target_language))
if not (self._target_language.stable_support or include_experimental_languages):
raise ValueError(
"{} support is only experimental, but experimental language support is not enabled".format(
target_language
)
)
if namespace_output_stem is None:
self._namespace_output_stem = self._target_language.namespace_output_stem
target_language_section_name = "nunavut.lang.{}".format(target_language)
if self._namespace_output_stem is not None:
self._config.set(target_language_section_name, "namespace_file_stem", self._namespace_output_stem)
if extension is not None:
self._config.set(target_language_section_name, "extension", extension)
self._languages[target_language] = self._target_language
# create remaining languages
remaining_languages = set(self.get_supported_language_names()) - set((target_language,))
self._populate_languages(remaining_languages, include_experimental_languages)
def _populate_languages(self, language_names: typing.Iterable[str], include_experimental: bool) -> None:
for language_name in language_names:
try:
lang = self._ln_loader.load_language(language_name, False)
if lang.stable_support or include_experimental:
self._languages[language_name] = lang
except ImportError:
raise KeyError("{} is not a supported language".format(language_name))
def get_language(self, key_or_module_name: str) -> Language:
"""
Get a :class:`Language` object for a given language identifier.
:param str key_or_module_name: Either one of the Nunavut mnemonics for a supported language or
the ``__name__`` of one of the ``nunavut.lang.[language]`` python modules.
:return: A :class:`Language` object cached by this context.
:rtype: Language
"""
if key_or_module_name is None or len(key_or_module_name) == 0:
raise ValueError("key argument is required.")
key = key_or_module_name[13:] if key_or_module_name.startswith("nunavut.lang.") else key_or_module_name
return self.get_supported_languages()[key]
def get_supported_language_names(self) -> typing.Iterable[str]:
"""Get a list of target languages supported by Nunavut.
:return: An iterable of strings which are languages with special
support within Nunavut templates.
"""
return [s[13:] for s in self._config.sections() if s.startswith("nunavut.lang.")]
def get_output_extension(self) -> str:
"""
Gets the output extension to use regardless of a target language being available or not.
:return: A file extension name with a leading dot.
"""
if self._extension is not None:
return self._extension
elif self._target_language is not None:
return self._target_language.extension
else:
raise RuntimeError(
"No extension was provided and no target language was set. Cannot determine the extension to use."
)
def get_default_namespace_output_stem(self) -> typing.Optional[str]:
"""
The filename stem to give to Namespace output files if emitted or None if there was none
specified and there is no target language.
:return: A file name stem or None
"""
return self._namespace_output_stem
def get_target_language(self) -> typing.Optional[Language]:
"""
Returns the target language configured on this object or None
if no target language was specified.
"""
return self._target_language
def filter_id_for_target(self, instance: typing.Any, id_type: str = "any") -> str:
"""
A filter that will transform a given string or pydsdl identifier into a valid identifier in the target language.
A default transformation is applied if no target language is set.
:param any instance: Any object or data that either has a name property or can be converted to a string.
:param str id_type: A type of identifier. This is different for each language.
Use 'any' to apply stropping rules for all identifier types to the instance.
:return: A token that is a valid identifier in the target language, is not a reserved keyword, and is
transformed in a deterministic manner based on the provided instance.
"""
if self._target_language is not None:
return self._target_language.filter_id(instance, id_type)
else:
return Language.default_filter_id_for_target(instance)
def get_supported_languages(self) -> typing.Dict[str, Language]:
"""
Returns a collection of available language support objects.
"""
return self._languages
@property
def config(self) -> LanguageConfig:
return self._config
| 0
| 6,310
| 0
| 25,937
| 0
| 0
| 0
| 53
| 314
|
3121ed78f11108b68e6bcfba53bebde2323837e6
| 10,692
|
py
|
Python
|
test/cal_accuracy.py
|
goroyabu/etnet
|
9d8e65fd9e8263eb9e84ac903e07638edba292b4
|
[
"MIT"
] | null | null | null |
test/cal_accuracy.py
|
goroyabu/etnet
|
9d8e65fd9e8263eb9e84ac903e07638edba292b4
|
[
"MIT"
] | null | null | null |
test/cal_accuracy.py
|
goroyabu/etnet
|
9d8e65fd9e8263eb9e84ac903e07638edba292b4
|
[
"MIT"
] | null | null | null |
#!/usr/bin/env python3
import torch.nn as nn
import torch.optim as optim
if __name__ == "__main__":
parser = usage()
args = parser.parse_args()
for file in args.file:
main(file, args)
# main()
| 31.447059
| 129
| 0.601104
|
#!/usr/bin/env python3
import os
import argparse
import time
import torch
import torch.nn as nn
import torch.optim as optim
from torch.utils.data import DataLoader
import numpy
from ROOT import TFile, TH1D, TH2D, TCanvas
from ROOT import gROOT, gPad, gStyle
import ROOT
from etnet.dataset import EtrackDataset
from etnet.neuralnet import EtrackNet
def usage():
parser = argparse.ArgumentParser(
description="Accuracy",
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
add_help=False,
usage="%(prog)s [options] FILE ...",
)
parser.add_argument(
"file", metavar="FILE", type=str, nargs="+", help=".pth file name"
)
parser.add_argument("--noutput", metavar="N", type=int, default=-1, help="")
parser.add_argument("--csv", metavar="DATA", type=str, help="csv file")
parser.add_argument(
"--outdir", type=str, default="ana", help="directory name to output"
)
parser.add_argument("--use-gpu", action="store_true", help="enable GPU")
parser.add_argument("--cuda", type=str, default='"cuda:0"', help="name of cuda")
parser.add_argument(
"-h", "--help", action="help", help="show this help message and exit"
)
return parser
def estimation(model_path, outfilename, data_path, args):
testdata = EtrackDataset(data_path=data_path, train=False)
nevents = len(testdata)
if args.noutput > 0 and args.noutput < nevents:
nevents = args.noutput
print("Input:", data_path, "is loaded")
print("Number of test data :", nevents)
net = EtrackNet(train=False)
if args.use_gpu:
net = net.to(args.cuda)
net.load_state_dict(torch.load(model_path))
outfile = TFile(outfilename, "recreate")
print(f"Output: {outfilename} is created")
# th2_diff_pos = TH2D(
# "th2_diff_pos", "diff_pos;#Delta Pixel;Counts", 128, -4, 4, 128, -4, 4
# )
th2_diff_pos = TH2D(
"th2_diff_pos", "Distance True and Estimation;RelativeX [-1,1];RelativeY",
EtrackDataset.N_PIXELS_1D*10, -1, 1,
EtrackDataset.N_PIXELS_1D*10, -1, 1
)
th1_diff_phi = TH1D(
"th1_diff_phi", "diff_phi;#Delta Phi (deg.)",
EtrackDataset.N_LABELS_PHI*10, -180, 180
)
th1_diff_phi_nice = th1_diff_phi.Clone()
th1_diff_phi_nice.SetNameTitle("th1_diff_phi_nice", "diff_phi_nice")
# diff_cos_beta = ROOT.TH1D("diff_cos_beta", "diff_cos_beta;#Delta cos #beta;Counts", 128, -1, 1)
# diff_phi_2d = ROOT.TH2D("diff_phi_2d", "diff_phi_2d;#Delta Phi (deg.);cos #beta;Counts", 128, -180, 180, 6, 0, 1)
# diff_cos_beta_2d = ROOT.TH2D("diff_cos_beta_2d", "diff_cos_beta_2d;#Delta cos #beta;cos #beta;Counts", 128, -1, 1, 6, 0, 1)
# corr_cos_beta_numpixnonzero = ROOT.TH2D( "corr_cos_beta_numpixnonzero",\
# "corr_cos_beta_numpixnonzero;cos #beta;NumPixNonZero;Counts", 1, 0, 1, 64, 0, 64)
th1_maxlike_phi = TH1D(
"th1_maxlike_phi",
"Likelihood Map of Phi",
EtrackDataset.N_LABELS_PHI,
-0.5,
EtrackDataset.N_LABELS_PHI - 0.5,
)
th1_dist_like_phi = TH1D(
"th1_dist_like_phi", "Distribution of Likelihood of Phi", 100, 0.0, 1.0
)
th2_dphi_vs_maxlike = TH2D(
"th2_dphi_vs_maxlike",
";#Delta#phi[deg];Maximum of Likelihood Map",
128,
-180.0,
180.0,
10,
0.0,
1.0,
)
th2_dphi_vs_prom_like = TH2D(
"th2_dphi_vs_prom_like",
";#Delta#phi[deg];Dev(Maximum Likelihood)/#sigma",
128,
-180.0,
180.0,
20,
-0.25,
10.0 - 0.25,
)
th2_dphi_vs_rms_of_map = TH2D(
"th2_dphi_vs_rms_of_map",
";#Delta#phi[deg];RMS of Likelihood Map",
128,
-180.0,
180.0,
20,
-0.25,
10.0 - 0.25,
)
true_pos_map = TH2D(
"true_pos_map",
"true_pos_map;X;Y",
EtrackDataset.N_PIXELS_1D,
0,
1,
EtrackDataset.N_PIXELS_1D,
0,
1,
)
est_pos_map = TH2D(
"est_pos_map",
"est_pos_map;X;Y",
EtrackDataset.N_PIXELS_1D,
0,
1,
EtrackDataset.N_PIXELS_1D,
0,
1,
)
true_phi_map = TH1D(
"true_phi_map",
"true_phi_map;Phi (deg.);Counts",
EtrackDataset.N_LABELS_PHI,
-180,
180,
)
est_phi_map = TH1D(
"est_phi_map",
"est_phi_map;Phi (deg.);Counts",
EtrackDataset.N_LABELS_PHI,
-180,
180,
)
# true_cos_beta_map = ROOT.TH1D( "true_cos_beta_map", "true_cos_beta_map;cos #beta;Counts", 1, 0, 1 )
# est_cos_beta_map = ROOT.TH1D( "est_cos_beta_map", "est_cos_beta_map;cos #beta;Counts", 1, 0, 1 )
th2_image = TH2D("th2_image", "th2_image", 32, -0.5, 32 - 0.5, 32, -0.5, 32 - 0.5)
gROOT.ProcessLine("gErrorIgnoreLevel = kFatal;")
c = TCanvas("c", "c", 800, 400)
c.Divide(2, 1)
gStyle.SetOptStat("miren")
pdfname = outfilename.replace(".root", ".pdf")
with torch.no_grad():
for ievent in range(nevents):
if ievent % 10 == 0:
print(f"\r{ievent}/{nevents}", end="")
image, label = testdata[ievent]
inputs = (
torch.tensor(image)
.view(-1, 1, EtrackDataset.N_PIXELS_1D, EtrackDataset.N_PIXELS_1D)
.float()
)
if args.use_gpu:
inputs = inputs.to(args.cuda)
true_phi_deg = testdata.getPhi(ievent)
true_ini_pos_x, true_ini_pos_y = testdata.getIniPos(ievent)
# true_cos_beta = testdata.getCosBeta(ievent)
outputs = net(inputs)
outputs_numpy = outputs.to("cpu").detach().numpy().copy()
pos_map, phi_map = EtrackDataset.split(outputs_numpy[0])
pos_map = pos_map.reshape(EtrackDataset.N_PIXELS_SHAPE)
phi_map = phi_map.reshape(EtrackDataset.N_LABELS_SHAPE)
max_likeli_pos = numpy.max(pos_map)
max_likeli_phi = numpy.max(phi_map)
max_prob_pos_idx = numpy.unravel_index(numpy.argmax(pos_map), pos_map.shape)
max_prob_phi_idx = numpy.unravel_index(numpy.argmax(phi_map), phi_map.shape)
# max_prob_phi_cos_beta_idx = numpy.unravel_index(numpy.argmax(phi_cos_beta_map), phi_cos_beta_map.shape)
max_prob_pos = pos_map[max_prob_pos_idx]
max_prob_phi = phi_map[max_prob_phi_idx]
# max_prob_phi_cos_beta = phi_cos_beta_map[max_prob_phi_cos_beta_idx]
est_ini_pos_x = EtrackDataset.index_to_pos(max_prob_pos_idx[1])
est_ini_pos_y = EtrackDataset.index_to_pos(max_prob_pos_idx[0])
est_phi_deg = EtrackDataset.index_to_phi_deg(max_prob_phi_idx[0])
diff_pos_x = est_ini_pos_x - true_ini_pos_x
diff_pos_y = est_ini_pos_y - true_ini_pos_y
diff_phi = est_phi_deg - true_phi_deg
th2_diff_pos.Fill(diff_pos_x, diff_pos_y)
th1_diff_phi.Fill(diff_phi)
th2_dphi_vs_maxlike.Fill(diff_phi, max_likeli_phi)
# diff_cos_beta.Fill( est_cos_beta - true_cos_beta)
# diff_phi_2d.Fill( est_phi_deg - true_phi_deg, true_cos_beta)
# diff_cos_beta_2d.Fill( est_cos_beta - true_cos_beta, true_cos_beta)
th1_maxlike_phi.Reset()
th1_dist_like_phi.Reset()
for index in range(len(phi_map)):
likeli = phi_map[index]
th1_maxlike_phi.Fill(index, likeli)
th1_dist_like_phi.Fill(likeli)
rms = th1_dist_like_phi.GetRMS()
mean = th1_dist_like_phi.GetMean()
div = abs(max_likeli_phi - mean)
rms_of_map = th1_maxlike_phi.GetRMS()
th1_maxlike_phi.SetTitle(f"Likelihood Map of Phi: dx/rms={div/rms:6.3f}")
th1_dist_like_phi.SetTitle(
f"Distribution of Likelihood of Phi: dx/rms={div:5.3f}/{rms:5.3f}"
)
th2_dphi_vs_prom_like.Fill(diff_phi, div / rms)
th2_dphi_vs_rms_of_map.Fill(diff_phi, rms_of_map)
if div <= 4 * rms:
th1_diff_phi_nice.Fill(diff_phi)
th2_image.Reset()
n_filled = 0
for i in range(32):
if numpy.all(image[0][i] == 0.0):
continue
for j in range(32):
if image[0][i][j] == 0.0:
continue
th2_image.Fill(i, j, image[0][i][j])
n_filled += 1
if n_filled < 5 and ievent != nevents - 1 and ievent != 0:
continue
c.cd(1)
th1_maxlike_phi.Draw("hist")
gStyle.SetOptStat("miren")
c.cd(2)
th2_image.Draw("colz")
th2_image.GetXaxis().SetRangeUser(10, 25)
th2_image.GetYaxis().SetRangeUser(10, 25)
# th1_dist_like_phi.Draw( 'hist' )
if ievent == 0 and 1 < nevents:
c.SaveAs(pdfname + "(")
elif ievent == nevents - 1 and 1 < nevents:
c.SaveAs(pdfname + ")")
else:
c.SaveAs(pdfname)
true_pos_map.Fill(true_ini_pos_x, true_ini_pos_y)
est_pos_map.Fill(est_ini_pos_x, est_ini_pos_y)
true_phi_map.Fill(true_phi_deg)
est_phi_map.Fill(est_phi_deg)
# true_cos_beta_map.Fill(true_cos_beta)
# est_cos_beta_map.Fill(est_cos_beta)
# corr_cos_beta_numpixnonzero.Fill(est_cos_beta, testdata.getNumNonZeroPix(ievent))
print("\r")
outfile.cd()
th2_diff_pos.Write()
th1_diff_phi.Write()
th1_diff_phi_nice.Write()
th2_dphi_vs_maxlike.Write()
th2_dphi_vs_prom_like.Write()
th2_dphi_vs_rms_of_map.Write()
# diff_cos_beta.Write()
# diff_phi_2d.Write()
# diff_cos_beta_2d.Write()
true_pos_map.Write()
est_pos_map.Write()
true_phi_map.Write()
est_phi_map.Write()
# true_cos_beta_map.Write()
# est_cos_beta_map.Write()
# corr_cos_beta_numpixnonzero.Write()
outfile.Close()
def main(input_file_name, args):
base = os.path.basename(input_file_name)
name, ext = os.path.splitext(base)
if ext != ".pth":
print("Input file is not .pth file")
return
output_file_name = f"{args.outdir}/acc_{name}.root"
os.makedirs(args.outdir, exist_ok=True)
estimation(input_file_name, output_file_name, args.csv, args)
if __name__ == "__main__":
parser = usage()
args = parser.parse_args()
for file in args.file:
main(file, args)
# main()
| 0
| 0
| 0
| 0
| 0
| 10,120
| 0
| 33
| 315
|
8b79540aa0e5c98c7cc1c464554ec367c707f147
| 89,543
|
py
|
Python
|
pyvdk/types/objects.py
|
UT1C/pyVDK
|
168177c4006acc7f57be36f189bee8101e10253d
|
[
"MIT"
] | 16
|
2020-11-24T18:27:59.000Z
|
2021-05-14T19:25:44.000Z
|
pyvdk/types/objects.py
|
UT1C/pyVDK
|
168177c4006acc7f57be36f189bee8101e10253d
|
[
"MIT"
] | 1
|
2021-04-21T14:35:55.000Z
|
2021-06-26T04:18:44.000Z
|
pyvdk/types/objects.py
|
UT1C/pyVDK
|
168177c4006acc7f57be36f189bee8101e10253d
|
[
"MIT"
] | 2
|
2020-12-03T16:56:31.000Z
|
2020-12-19T16:28:58.000Z
|
# -*- coding: utf-8 -*-
#
[v.update_forward_refs() for v in globals().values() if hasattr(v, "update_forward_refs")]
| 21.289349
| 90
| 0.676837
|
# -*- coding: utf-8 -*-
#
import enum
import json
from typing import Any, Callable, Dict, List, Optional, Union
from pydantic import Json
from .abc import Model
class AccountAccountCounters(Model):
app_requests: int
events: int
faves: int
friends: int
friends_suggestions: int
friends_recommendations: int
gifts: int
groups: int
menu_discover_badge: int
messages: int
memories: int
notes: int
notifications: int
photos: int
sdk: int
class AccountInfo(Model):
wishlists_ae_promo_banner_show: "BaseBoolInt"
twofa_required: "BaseBoolInt"
country: str
https_required: "BaseBoolInt"
intro: "BaseBoolInt"
show_vk_apps_intro: bool
mini_apps_ads_slot_id: int
qr_promotion: int
link_redirects: Dict[Any, Any]
lang: int
no_wall_replies: "BaseBoolInt"
own_posts_default: "BaseBoolInt"
subscriptions: List[int]
class AccountNameRequest(Model):
first_name: str
id: int
last_name: str
status: "AccountNameRequestStatus"
lang: str
link_href: str
link_label: str
class AccountNameRequestStatus(enum.Enum):
SUCCESS = "success"
PROCESSING = "processing"
DECLINED = "declined"
WAS_ACCEPTED = "was_accepted"
WAS_DECLINED = "was_declined"
DECLINED_WITH_LINK = "declined_with_link"
RESPONSE = "response"
RESPONSE_WITH_LINK = "response_with_link"
class AccountOffer(Model):
description: str
id: int
img: str
instruction: str
instruction_html: str
price: int
short_description: str
tag: str
title: str
currency_amount: float
link_id: int
link_type: str
class AccountPushConversations(Model):
count: int
items: List['AccountPushConversationsItem']
class AccountPushConversationsItem(Model):
disabled_until: int
peer_id: int
sound: "BaseBoolInt"
class AccountPushParams(Model):
msg: List['AccountPushParamsMode']
chat: List['AccountPushParamsMode']
like: List['AccountPushParamsSettings']
repost: List['AccountPushParamsSettings']
comment: List['AccountPushParamsSettings']
mention: List['AccountPushParamsSettings']
reply: List['AccountPushParamsOnoff']
new_post: List['AccountPushParamsOnoff']
wall_post: List['AccountPushParamsOnoff']
wall_publish: List['AccountPushParamsOnoff']
friend: List['AccountPushParamsOnoff']
friend_found: List['AccountPushParamsOnoff']
friend_accepted: List['AccountPushParamsOnoff']
group_invite: List['AccountPushParamsOnoff']
group_accepted: List['AccountPushParamsOnoff']
birthday: List['AccountPushParamsOnoff']
event_soon: List['AccountPushParamsOnoff']
app_request: List['AccountPushParamsOnoff']
sdk_open: List['AccountPushParamsOnoff']
class AccountPushParamsMode(enum.Enum):
ON = "on"
OFF = "off"
NO_SOUND = "no_sound"
NO_TEXT = "no_text"
class AccountPushParamsOnoff(enum.Enum):
ON = "on"
OFF = "off"
class AccountPushParamsSettings(enum.Enum):
ON = "on"
OFF = "off"
FR_OF_FR = "fr_of_fr"
class AccountPushSettings(Model):
disabled: "BaseBoolInt"
disabled_until: int
settings: "AccountPushParams"
conversations: "AccountPushConversations"
class AccountUserSettings(Model):
...
class AccountUserSettingsInterest(Model):
title: str
value: str
class AccountUserSettingsInterests(Model):
activities: "AccountUserSettingsInterest"
interests: "AccountUserSettingsInterest"
music: "AccountUserSettingsInterest"
tv: "AccountUserSettingsInterest"
movies: "AccountUserSettingsInterest"
books: "AccountUserSettingsInterest"
games: "AccountUserSettingsInterest"
quotes: "AccountUserSettingsInterest"
about: "AccountUserSettingsInterest"
class AddressesFields(enum.Enum):
ID = "id"
TITLE = "title"
ADDRESS = "address"
ADDITIONAL_ADDRESS = "additional_address"
COUNTRY_ID = "country_id"
CITY_ID = "city_id"
METRO_STATION_ID = "metro_station_id"
LATITUDE = "latitude"
LONGITUDE = "longitude"
DISTANCE = "distance"
WORK_INFO_STATUS = "work_info_status"
TIMETABLE = "timetable"
PHONE = "phone"
TIME_OFFSET = "time_offset"
class AdsAccessRole(enum.Enum):
ADMIN = "admin"
MANAGER = "manager"
REPORTS = "reports"
class AdsAccesses(Model):
client_id: str
role: "AdsAccessRole"
class AdsAccount(Model):
access_role: "AdsAccessRole"
account_id: int
account_status: "BaseBoolInt"
account_type: "AdsAccountType"
account_name: str
class AdsAccountType(enum.Enum):
GENERAL = "general"
AGENCY = "agency"
class AdsAd(Model):
ad_format: int
ad_platform: Optional[Union[int, str]] = None
all_limit: int
approved: "AdsAdApproved"
campaign_id: int
category1_id: Optional[int] = None
category2_id: Optional[int] = None
cost_type: "AdsAdCostType"
cpc: Optional[int] = None
cpm: Optional[int] = None
cpa: Optional[int] = None
ocpm: Optional[int] = None
autobidding_max_cost: Optional[int] = None
disclaimer_medical: Optional["BaseBoolInt"] = None
disclaimer_specialist: Optional["BaseBoolInt"] = None
disclaimer_supplements: Optional["BaseBoolInt"] = None
id: int
impressions_limit: Optional[int] = None
impressions_limited: Optional["BaseBoolInt"] = None
name: str
status: "AdsAdStatus"
video: Optional["BaseBoolInt"] = None
class AdsAdApproved(enum.Enum):
NOT_MODERATED = 0
PENDING_MODERATION = 1
APPROVED = 2
REJECTED = 3
class AdsAdCostType(enum.Enum):
PER_CLICKS = 0
PER_IMPRESSIONS = 1
PER_ACTIONS = 2
PER_IMPRESSIONS_OPTIMIZED = 3
class AdsAdLayout(Model):
ad_format: int
campaign_id: int
cost_type: "AdsAdCostType"
description: str
id: int
image_src: str
image_src_2x: Optional[str] = None
link_domain: Optional[str] = None
link_url: str
preview_link: Optional[Union[int, str]] = None
title: str
video: Optional["BaseBoolInt"] = None
class AdsAdStatus(enum.Enum):
STOPPED = 0
STARTED = 1
DELETED = 2
class AdsCampaign(Model):
all_limit: str
day_limit: str
id: int
name: str
start_time: int
status: "AdsCampaignStatus"
stop_time: int
type: "AdsCampaignType"
class AdsCampaignStatus(enum.Enum):
STOPPED = 0
STARTED = 1
DELETED = 2
class AdsCampaignType(enum.Enum):
NORMAL = "normal"
VK_APPS_MANAGED = "vk_apps_managed"
MOBILE_APPS = "mobile_apps"
PROMOTED_POSTS = "promoted_posts"
class AdsCategory(Model):
id: int
name: str
subcategories: Optional[List['BaseObjectWithName']] = None
class AdsClient(Model):
all_limit: str
day_limit: str
id: int
name: str
class AdsCriteria(Model):
age_from: int
age_to: int
apps: str
apps_not: str
birthday: int
cities: str
cities_not: str
country: int
districts: str
groups: str
interest_categories: str
interests: str
paying: "BaseBoolInt"
positions: str
religions: str
retargeting_groups: str
retargeting_groups_not: str
school_from: int
school_to: int
schools: str
sex: "AdsCriteriaSex"
stations: str
statuses: str
streets: str
travellers: "BasePropertyExists"
uni_from: int
uni_to: int
user_browsers: str
user_devices: str
user_os: str
class AdsCriteriaSex(enum.Enum):
ANY = 0
MALE = 1
FEMALE = 2
class AdsDemoStats(Model):
id: int
stats: "AdsDemostatsFormat"
type: "AdsObjectType"
class AdsDemostatsFormat(Model):
age: List['AdsStatsAge']
cities: List['AdsStatsCities']
day: str
month: str
overall: int
sex: List['AdsStatsSex']
sex_age: List['AdsStatsSexAge']
class AdsFloodStats(Model):
left: int
refresh: int
class AdsLinkStatus(Model):
description: str
redirect_url: str
status: str
class AdsLookalikeRequest(Model):
id: int
create_time: int
update_time: int
scheduled_delete_time: Optional[int] = None
status: str
source_type: str
source_retargeting_group_id: Optional[int] = None
source_name: Optional[str] = None
audience_count: Optional[int] = None
save_audience_levels: Optional[List['AdsLookalikeRequestSaveAudienceLevel']] = None
class AdsLookalikeRequestSaveAudienceLevel(Model):
level: int
audience_count: int
class AdsMusician(Model):
id: int
name: str
class AdsObjectType(enum.Enum):
AD = "ad"
CAMPAIGN = "campaign"
CLIENT = "client"
OFFICE = "office"
class AdsParagraphs(Model):
paragraph: str
class AdsPromotedPostReach(Model):
hide: int
id: int
join_group: int
links: int
reach_subscribers: int
reach_total: int
report: int
to_group: int
unsubscribe: int
video_views_100p: Optional[int] = None
video_views_25p: Optional[int] = None
video_views_3s: Optional[int] = None
video_views_50p: Optional[int] = None
video_views_75p: Optional[int] = None
video_views_start: Optional[int] = None
class AdsRejectReason(Model):
comment: str
rules: List['AdsRules']
class AdsRules(Model):
paragraphs: List['AdsParagraphs']
title: str
class AdsStats(Model):
id: int
stats: "AdsStatsFormat"
type: "AdsObjectType"
views_times: "AdsStatsViewsTimes"
class AdsStatsAge(Model):
clicks_rate: float
impressions_rate: float
value: str
class AdsStatsCities(Model):
clicks_rate: float
impressions_rate: float
name: str
value: int
class AdsStatsFormat(Model):
clicks: int
day: str
impressions: int
join_rate: int
month: str
overall: int
reach: int
spent: int
video_clicks_site: int
video_views: int
video_views_full: int
video_views_half: int
class AdsStatsSex(Model):
clicks_rate: float
impressions_rate: float
value: "AdsStatsSexValue"
class AdsStatsSexAge(Model):
clicks_rate: float
impressions_rate: float
value: str
class AdsStatsSexValue(enum.Enum):
FEMALE = 'f'
MALE = 'm'
class AdsStatsViewsTimes(Model):
views_ads_times_1: int
views_ads_times_2: int
views_ads_times_3: int
views_ads_times_4: int
views_ads_times_5: str
views_ads_times_6: int
views_ads_times_7: int
views_ads_times_8: int
views_ads_times_9: int
views_ads_times_10: int
views_ads_times_11_plus: int
class AdsTargSettings(Model):
...
class AdsTargStats(Model):
audience_count: int
recommended_cpc: Optional[float] = None
recommended_cpm: Optional[float] = None
recommended_cpc_50: Optional[float] = None
recommended_cpm_50: Optional[float] = None
recommended_cpc_70: Optional[float] = None
recommended_cpm_70: Optional[float] = None
recommended_cpc_90: Optional[float] = None
recommended_cpm_90: Optional[float] = None
class AdsTargSuggestions(Model):
id: int
name: str
class AdsTargSuggestionsCities(Model):
id: int
name: str
parent: str
class AdsTargSuggestionsRegions(Model):
id: int
name: str
type: str
class AdsTargSuggestionsSchools(Model):
desc: str
id: int
name: str
parent: str
type: "AdsTargSuggestionsSchoolsType"
class AdsTargSuggestionsSchoolsType(enum.Enum):
SCHOOL = "school"
UNIVERSITY = "university"
FACULTY = "faculty"
CHAIR = "chair"
class AdsTargetGroup(Model):
audience_count: int
domain: str
id: int
lifetime: int
name: str
pixel: str
class AdsUsers(Model):
accesses: List['AdsAccesses']
user_id: int
class AppsApp(Model):
...
class AppsAppLeaderboardType(enum.Enum):
NOT_SUPPORTED = 0
LEVELS = 1
POINTS = 2
class AppsAppMin(Model):
type: "AppsAppType"
id: int
title: str
author_owner_id: Optional[int] = None
is_installed: Optional[bool] = None
icon_139: Optional[str] = None
icon_150: Optional[str] = None
icon_278: Optional[str] = None
icon_576: Optional[str] = None
background_loader_color: Optional[str] = None
loader_icon: Optional[str] = None
icon_75: Optional[str] = None
class AppsAppType(enum.Enum):
APP = "app"
GAME = "game"
SITE = "site"
STANDALONE = "standalone"
VK_APP = "vk_app"
COMMUNITY_APP = "community_app"
HTML5_GAME = "html5_game"
MINI_APP = "mini_app"
class AppsLeaderboard(Model):
level: Optional[int] = None
points: Optional[int] = None
score: Optional[int] = None
user_id: int
class AppsScope(Model):
name: str
title: Optional[str] = None
class AudioAudio(Model):
artist: str
id: int
title: str
url: Optional[str] = None
duration: int
date: Optional[int] = None
album_id: Optional[int] = None
genre_id: Optional[int] = None
performer: Optional[str] = None
class BaseBoolInt(enum.Enum):
NO = 0
YES = 1
class BaseCity(Model):
id: int
title: str
class BaseCommentsInfo(Model):
can_post: "BaseBoolInt"
count: int
groups_can_post: bool
class BaseCountry(Model):
id: int
title: str
class BaseCropPhoto(Model):
photo: "PhotosPhoto"
crop: "BaseCropPhotoCrop"
rect: "BaseCropPhotoRect"
class BaseCropPhotoCrop(Model):
x: float
y: float
x2: float
y2: float
class BaseCropPhotoRect(Model):
x: float
y: float
x2: float
y2: float
class BaseError(Model):
error_code: int
error_msg: str
error_text: str
request_params: List['BaseRequestParam']
class BaseGeo(Model):
coordinates: "BaseGeoCoordinates"
place: "BasePlace"
showmap: int
type: str
class BaseGeoCoordinates(Model):
latitude: float
longitude: float
class BaseGradientPoint(Model):
color: str
position: float
class BaseImage(Model):
id: Optional[str] = None
height: int
url: str
width: int
class BaseLikes(Model):
count: int
user_likes: "BaseBoolInt"
class BaseLikesInfo(Model):
can_like: "BaseBoolInt"
can_publish: Optional["BaseBoolInt"] = None
count: int
user_likes: int
class BaseLink(Model):
application: Optional["BaseLinkApplication"] = None
button: Optional["BaseLinkButton"] = None
caption: Optional[str] = None
description: Optional[str] = None
id: Optional[str] = None
is_favorite: Optional[bool] = None
photo: Optional["PhotosPhoto"] = None
preview_page: Optional[str] = None
preview_url: Optional[str] = None
product: Optional["BaseLinkProduct"] = None
rating: Optional["BaseLinkRating"] = None
title: Optional[str] = None
url: str
target_object: Optional["LinkTargetObject"] = None
is_external: Optional[bool] = None
video: Optional["VideoVideo"] = None
class BaseLinkApplication(Model):
app_id: float
store: "BaseLinkApplicationStore"
class BaseLinkApplicationStore(Model):
id: float
name: str
class BaseLinkButton(Model):
action: "BaseLinkButtonAction"
title: str
block_id: str
section_id: str
owner_id: int
icon: str
style: "BaseLinkButtonStyle"
class BaseLinkButtonAction(Model):
type: "BaseLinkButtonActionType"
url: str
consume_reason: str
class BaseLinkButtonActionType(enum.Enum):
OPEN_URL = 'open_url'
class BaseLinkButtonStyle(Model):
...
class BaseLinkProduct(Model):
price: "MarketPrice"
merchant: Optional[str] = None
orders_count: Optional[int] = None
class BaseLinkRating(Model):
reviews_count: int
stars: float
class BaseMessageError(Model):
code: int
description: str
class BaseObject(Model):
id: int
title: str
class BaseObjectCount(Model):
count: int
class BaseObjectWithName(Model):
id: int
name: str
class BasePlace(Model):
address: str
checkins: int
city: str
country: str
created: int
icon: str
id: int
latitude: float
longitude: float
title: str
type: str
class BasePropertyExists(enum.Enum):
PROPERTY_EXISTS = 1
class BaseRepostsInfo(Model):
count: int
user_reposted: int
class BaseRequestParam(Model):
key: str
value: str
class BaseSex(enum.Enum):
UNKNOWN = 0
FEMALE = 1
MALE = 2
class BaseSticker(Model):
sticker_id: int
product_id: int
images: List['BaseImage']
images_with_background: List['BaseImage']
animation_url: str
animations: List['BaseStickerAnimation']
is_allowed: bool
class BaseStickerAnimation(Model):
type: str
url: str
class BaseUploadServer(Model):
upload_url: str
class BaseUserGroupFields(enum.Enum):
ABOUT = "about"
ACTION_BUTTON = "action_button"
ACTIVITIES = "activities"
ACTIVITY = "activity"
ADDRESSES = "addresses"
ADMIN_LEVEL = "admin_level"
AGE_LIMITS = "age_limits"
AUTHOR_ID = "author_id"
BAN_INFO = "ban_info"
BDATE = "bdate"
BLACKLISTED = "blacklisted"
BLACKLISTED_BY_ME = "blacklisted_by_me"
BOOKS = "books"
CAN_CREATE_TOPIC = "can_create_topic"
CAN_MESSAGE = "can_message"
CAN_POST = "can_post"
CAN_SEE_ALL_POSTS = "can_see_all_posts"
CAN_SEE_AUDIO = "can_see_audio"
CAN_SEND_FRIEND_REQUEST = "can_send_friend_request"
CAN_UPLOAD_VIDEO = "can_upload_video"
CAN_WRITE_PRIVATE_MESSAGE = "can_write_private_message"
CAREER = "career"
CITY = "city"
COMMON_COUNT = "common_count"
CONNECTIONS = "connections"
CONTACTS = "contacts"
COUNTERS = "counters"
COUNTRY = "country"
COVER = "cover"
CROP_PHOTO = "crop_photo"
DEACTIVATED = "deactivated"
DESCRIPTION = "description"
DOMAIN = "domain"
EDUCATION = "education"
EXPORTS = "exports"
FINISH_DATE = "finish_date"
FIXED_POST = "fixed_post"
FOLLOWERS_COUNT = "followers_count"
FRIEND_STATUS = "friend_status"
GAMES = "games"
HAS_MARKET_APP = "has_market_app"
HAS_MOBILE = "has_mobile"
HAS_PHOTO = "has_photo"
HOME_TOWN = "home_town"
ID = "id"
INTERESTS = "interests"
IS_ADMIN = "is_admin"
IS_CLOSED = "is_closed"
IS_FAVORITE = "is_favorite"
IS_FRIEND = "is_friend"
IS_HIDDEN_FROM_FEED = "is_hidden_from_feed"
IS_MEMBER = "is_member"
IS_MESSAGES_BLOCKED = "is_messages_blocked"
CAN_SEND_NOTIFY = "can_send_notify"
IS_SUBSCRIBED = "is_subscribed"
LAST_SEEN = "last_seen"
LINKS = "links"
LISTS = "lists"
MAIDEN_NAME = "maiden_name"
MAIN_ALBUM_ID = "main_album_id"
MAIN_SECTION = "main_section"
MARKET = "market"
MEMBER_STATUS = "member_status"
MEMBERS_COUNT = "members_count"
MILITARY = "military"
MOVIES = "movies"
MUSIC = "music"
NAME = "name"
NICKNAME = "nickname"
OCCUPATION = "occupation"
ONLINE = "online"
ONLINE_STATUS = "online_status"
PERSONAL = "personal"
PHONE = "phone"
PHOTO_100 = "photo_100"
PHOTO_200 = "photo_200"
PHOTO_200_ORIG = "photo_200_orig"
PHOTO_400_ORIG = "photo_400_orig"
PHOTO_50 = "photo_50"
PHOTO_ID = "photo_id"
PHOTO_MAX = "photo_max"
PHOTO_MAX_ORIG = "photo_max_orig"
QUOTES = "quotes"
RELATION = "relation"
RELATIVES = "relatives"
SCHOOLS = "schools"
SCREEN_NAME = "screen_name"
SEX = "sex"
SITE = "site"
START_DATE = "start_date"
STATUS = "status"
TIMEZONE = "timezone"
TRENDING = "trending"
TV = "tv"
TYPE = "type"
UNIVERSITIES = "universities"
VERIFIED = "verified"
WALL_COMMENTS = "wall_comments"
WIKI_PAGE = "wiki_page"
VK_ADMIN_STATUS = "vk_admin_status"
class BaseUserId(Model):
user_id: int
class BoardDefaultOrder(enum.Enum):
DESC_UPDATED = 1
DESC_CREATED = 2
ASC_UPDATED = -1
ASC_CREATED = -2
class BoardTopic(Model):
comments: int
created: int
created_by: int
id: int
is_closed: "BaseBoolInt"
is_fixed: "BaseBoolInt"
title: str
updated: int
updated_by: int
class BoardTopicComment(Model):
attachments: Optional[List['WallCommentAttachment']] = None
date: int
from_id: int
id: int
real_offset: Optional[int] = None
text: str
can_edit: Optional["BaseBoolInt"] = None
likes: Optional["BaseLikesInfo"] = None
class BoardTopicPoll(Model):
answer_id: int
answers: List['PollsAnswer']
created: int
is_closed: Optional["BaseBoolInt"] = None
owner_id: int
poll_id: int
question: str
votes: str
class CallbackBoardPostDelete(Model):
topic_owner_id: int
topic_id: int
id: int
class CallbackConfirmationMessage(Model):
type: "CallbackMessageType"
group_id: int
secret: str
class CallbackGroupChangePhoto(Model):
user_id: int
photo: "PhotosPhoto"
class CallbackGroupChangeSettings(Model):
user_id: int
self: "BaseBoolInt"
class CallbackGroupJoin(Model):
user_id: int
join_type: "CallbackGroupJoinType"
class CallbackGroupJoinType(enum.Enum):
JOIN = "join"
UNSURE = "unsure"
ACCEPTED = "accepted"
APPROVED = "approved"
REQUEST = "request"
class CallbackGroupLeave(Model):
user_id: int
self: "BaseBoolInt"
class CallbackGroupMarket(enum.Enum):
DISABLED = 0
OPEN = 1
class CallbackGroupOfficerRole(enum.Enum):
NONE = 0
MODERATOR = 1
EDITOR = 2
ADMINISTRATOR = 3
class CallbackGroupOfficersEdit(Model):
admin_id: int
user_id: int
level_old: "CallbackGroupOfficerRole"
level_new: "CallbackGroupOfficerRole"
class CallbackGroupSettingsChanges(Model):
title: str
description: str
access: "GroupsGroupIsClosed"
screen_name: str
public_category: int
public_subcategory: int
age_limits: "GroupsGroupFullAgeLimits"
website: str
enable_status_default: "GroupsGroupWall"
enable_audio: "GroupsGroupAudio"
enable_video: "GroupsGroupVideo"
enable_photo: "GroupsGroupPhotos"
enable_market: "CallbackGroupMarket"
class CallbackLikeAddRemove(Model):
liker_id: int
object_type: str
object_owner_id: int
object_id: int
post_id: int
thread_reply_id: Optional[int] = None
class CallbackMarketComment(Model):
id: int
from_id: int
date: int
text: Optional[str] = None
market_owner_od: Optional[int] = None
photo_id: Optional[int] = None
class CallbackMarketCommentDelete(Model):
owner_id: int
id: int
user_id: int
item_id: int
class CallbackMessageAllow(Model):
user_id: int
key: str
class CallbackMessageBase(Model):
type: "CallbackMessageType"
object: Dict[Any, Any]
group_id: int
class CallbackMessageDeny(Model):
user_id: int
class CallbackMessageType(enum.Enum):
CONFIRMATION = "confirmation"
GROUP_CHANGE_PHOTO = "group_change_photo"
GROUP_CHANGE_SETTINGS = "group_change_settings"
GROUP_OFFICERS_EDIT = "group_officers_edit"
LEAD_FORMS_NEW = "lead_forms_new"
MARKET_COMMENT_DELETE = "market_comment_delete"
MARKET_COMMENT_EDIT = "market_comment_edit"
MARKET_COMMENT_RESTORE = "market_comment_restore"
MESSAGE_ALLOW = "message_allow"
MESSAGE_DENY = "message_deny"
MESSAGE_READ = "message_read"
MESSAGE_REPLY = "message_reply"
MESSAGE_TYPING_STATE = "message_typing_state"
MESSAGES_EDIT = "messages_edit"
PHOTO_COMMENT_DELETE = "photo_comment_delete"
PHOTO_COMMENT_EDIT = "photo_comment_edit"
PHOTO_COMMENT_RESTORE = "photo_comment_restore"
POLL_VOTE_NEW = "poll_vote_new"
USER_BLOCK = "user_block"
USER_UNBLOCK = "user_unblock"
VIDEO_COMMENT_DELETE = "video_comment_delete"
VIDEO_COMMENT_EDIT = "video_comment_edit"
VIDEO_COMMENT_RESTORE = "video_comment_restore"
WALL_REPLY_DELETE = "wall_reply_delete"
WALL_REPLY_RESTORE = "wall_reply_restore"
WALL_REPOST = "wall_repost"
class CallbackPhotoComment(Model):
id: int
from_id: int
date: int
text: str
photo_owner_od: int
class CallbackPhotoCommentDelete(Model):
id: int
owner_id: int
user_id: int
photo_id: int
class CallbackPollVoteNew(Model):
owner_id: int
poll_id: int
option_id: int
user_id: int
class CallbackQrScan(Model):
user_id: int
data: str
type: str
subtype: str
reread: bool
class CallbackUserBlock(Model):
admin_id: int
user_id: int
unblock_date: int
reason: int
comment: Optional[str] = None
class CallbackUserUnblock(Model):
admin_id: int
user_id: int
by_end_date: int
class CallbackVideoComment(Model):
id: int
from_id: int
date: int
text: str
video_owner_od: int
class CallbackVideoCommentDelete(Model):
id: int
owner_id: int
user_id: int
video_id: int
class CallbackWallCommentDelete(Model):
owner_id: int
id: int
user_id: int
post_id: int
class CommentThread(Model):
can_post: Optional[bool] = None
count: int
groups_can_post: Optional[bool] = None
items: Optional[List['WallWallComment']] = None
show_reply_button: Optional[bool] = None
class DatabaseCity(Model):
...
class DatabaseFaculty(Model):
id: int
title: str
class DatabaseRegion(Model):
id: int
title: str
class DatabaseSchool(Model):
id: int
title: str
class DatabaseStation(Model):
city_id: Optional[int] = None
color: Optional[str] = None
id: int
name: str
class DatabaseUniversity(Model):
id: int
title: str
class DocsDoc(Model):
id: int
owner_id: int
title: str
size: int
ext: str
url: Optional[str] = None
date: int
type: int
preview: Optional["DocsDocPreview"] = None
is_licensed: Optional["BaseBoolInt"] = None
access_key: Optional[str] = None
tags: Optional[List[str]] = None
class DocsDocAttachmentType(enum.Enum):
DOC = "doc"
GRAFFITI = "graffiti"
AUDIO_MESSAGE = "audio_message"
class DocsDocPreview(Model):
audio_msg: "DocsDocPreviewAudioMsg"
graffiti: "DocsDocPreviewGraffiti"
photo: "DocsDocPreviewPhoto"
video: "DocsDocPreviewVideo"
class DocsDocPreviewAudioMsg(Model):
duration: int
link_mp3: str
link_ogg: str
waveform: List[int]
class DocsDocPreviewGraffiti(Model):
src: str
width: int
height: int
class DocsDocPreviewPhoto(Model):
sizes: List['DocsDocPreviewPhotoSizes']
class DocsDocPreviewPhotoSizes(Model):
src: str
width: int
height: int
type: "PhotosPhotoSizesType"
class DocsDocPreviewVideo(Model):
src: str
width: int
height: int
file_size: int
class DocsDocTypes(Model):
id: int
name: str
count: int
class DocsDocUploadResponse(Model):
file: str
class EventsEventAttach(Model):
address: Optional[str] = None
button_text: str
friends: List[int]
id: int
is_favorite: bool
member_status: Optional["GroupsGroupFullMemberStatus"] = None
text: str
time: Optional[int] = None
class FaveBookmark(Model):
added_date: int
link: Optional["BaseLink"] = None
post: Optional["WallWallpostFull"] = None
product: Optional["MarketMarketItem"] = None
seen: bool
tags: List['FaveTag']
type: "FaveBookmarkType"
video: Optional["VideoVideo"] = None
class FaveBookmarkType(enum.Enum):
POST = "post"
VIDEO = "video"
PRODUCT = "product"
ARTICLE = "article"
LINK = "link"
class FavePage(Model):
description: str
group: Optional["GroupsGroupFull"] = None
tags: List['FaveTag']
type: "FavePageType"
updated_date: Optional[int] = None
user: Optional["UsersUserFull"] = None
class FavePageType(enum.Enum):
USER = "user"
GROUP = "group"
HINTS = "hints"
class FaveTag(Model):
id: int
name: str
class FriendsFriendExtendedStatus(Model):
...
class FriendsFriendStatus(Model):
friend_status: "FriendsFriendStatusStatus"
sign: Optional[str] = None
user_id: int
class FriendsFriendStatusStatus(enum.Enum):
NOT_A_FRIEND = 0
OUTCOMING_REQUEST = 1
INCOMING_REQUEST = 2
IS_FRIEND = 3
class FriendsFriendsList(Model):
id: int
name: str
class FriendsMutualFriend(Model):
common_count: int
common_friends: List[int]
id: int
class FriendsRequests(Model):
from_: str
mutual: "FriendsRequestsMutual"
user_id: int
class FriendsRequestsMutual(Model):
count: int
users: List[int]
class FriendsRequestsXtrMessage(Model):
from_: str
message: str
mutual: "FriendsRequestsMutual"
user_id: int
class FriendsUserXtrLists(Model):
...
class FriendsUserXtrPhone(Model):
...
class GiftsGift(Model):
date: int
from_id: int
gift: "GiftsLayout"
gift_hash: str
id: int
message: str
privacy: "GiftsGiftPrivacy"
class GiftsGiftPrivacy(enum.Enum):
NAME_AND_MESSAGE_FOR_ALL = 0
NAME_FOR_ALL = 1
NAME_AND_MESSAGE_FOR_RECIPIENT_ONLY = 2
class GiftsLayout(Model):
id: int
thumb_512: str
thumb_256: str
thumb_48: str
thumb_96: str
stickers_product_id: int
build_id: str
keywords: str
class GroupsAddress(Model):
additional_address: Optional[str] = None
address: Optional[str] = None
city_id: Optional[int] = None
country_id: Optional[int] = None
distance: Optional[int] = None
id: int
latitude: Optional[float] = None
longitude: Optional[float] = None
metro_station_id: Optional[int] = None
phone: Optional[str] = None
time_offset: Optional[int] = None
timetable: Optional["GroupsAddressTimetable"] = None
title: Optional[str] = None
work_info_status: Optional["GroupsAddressWorkInfoStatus"] = None
class GroupsAddressTimetable(Model):
fri: "GroupsAddressTimetableDay"
mon: "GroupsAddressTimetableDay"
sat: "GroupsAddressTimetableDay"
sun: "GroupsAddressTimetableDay"
thu: "GroupsAddressTimetableDay"
tue: "GroupsAddressTimetableDay"
wed: "GroupsAddressTimetableDay"
class GroupsAddressTimetableDay(Model):
break_close_time: Optional[int] = None
break_open_time: Optional[int] = None
close_time: int
open_time: int
class GroupsAddressWorkInfoStatus(enum.Enum):
NO_INFORMATION = "no_information"
TEMPORARILY_CLOSED = "temporarily_closed"
ALWAYS_OPENED = "always_opened"
TIMETABLE = "timetable"
FOREVER_CLOSED = "forever_closed"
class GroupsAddressesInfo(Model):
is_enabled: bool
main_address_id: Optional[int] = None
class GroupsBanInfo(Model):
admin_id: int
comment: str
comment_visible: bool
is_closed: bool
date: int
end_date: int
reason: "GroupsBanInfoReason"
class GroupsBanInfoReason(enum.Enum):
OTHER = 0
SPAM = 1
VERBAL_ABUSE = 2
STRONG_LANGUAGE = 3
FLOOD = 4
class GroupsBannedItem(Model):
...
class GroupsCallbackServer(Model):
id: int
title: str
creator_id: int
url: str
secret_key: str
status: str
class GroupsCallbackSettings(Model):
api_version: str
events: "GroupsLongPollEvents"
class GroupsContactsItem(Model):
desc: str
email: str
phone: str
user_id: int
class GroupsCountersGroup(Model):
addresses: int
albums: int
audios: int
audio_playlists: int
docs: int
market: int
photos: int
topics: int
videos: int
class GroupsCover(Model):
enabled: "BaseBoolInt"
images: Optional[List['BaseImage']] = None
class GroupsFields(enum.Enum):
MARKET = "market"
MEMBER_STATUS = "member_status"
IS_FAVORITE = "is_favorite"
IS_SUBSCRIBED = "is_subscribed"
CITY = "city"
COUNTRY = "country"
VERIFIED = "verified"
DESCRIPTION = "description"
WIKI_PAGE = "wiki_page"
MEMBERS_COUNT = "members_count"
COUNTERS = "counters"
COVER = "cover"
CAN_POST = "can_post"
CAN_SEE_ALL_POSTS = "can_see_all_posts"
ACTIVITY = "activity"
FIXED_POST = "fixed_post"
CAN_CREATE_TOPIC = "can_create_topic"
CAN_UPLOAD_VIDEO = "can_upload_video"
HAS_PHOTO = "has_photo"
STATUS = "status"
MAIN_ALBUM_ID = "main_album_id"
LINKS = "links"
CONTACTS = "contacts"
SITE = "site"
MAIN_SECTION = "main_section"
TRENDING = "trending"
CAN_MESSAGE = "can_message"
IS_MARKET_CART_ENABLED = "is_market_cart_enabled"
IS_MESSAGES_BLOCKED = "is_messages_blocked"
CAN_SEND_NOTIFY = "can_send_notify"
ONLINE_STATUS = "online_status"
START_DATE = "start_date"
FINISH_DATE = "finish_date"
AGE_LIMITS = "age_limits"
BAN_INFO = "ban_info"
ACTION_BUTTON = "action_button"
AUTHOR_ID = "author_id"
PHONE = "phone"
HAS_MARKET_APP = "has_market_app"
ADDRESSES = "addresses"
LIVE_COVERS = "live_covers"
IS_ADULT = "is_adult"
CAN_SUBSCRIBE_POSTS = "can_subscribe_posts"
WARNING_NOTIFICATION = "warning_notification"
MSG_PUSH_ALLOWED = "msg_push_allowed"
STORIES_ARCHIVE_COUNT = "stories_archive_count"
VIDEO_LIVE_LEVEL = "video_live_level"
VIDEO_LIVE_COUNT = "video_live_count"
CLIPS_COUNT = "clips_count"
class GroupsFilter(enum.Enum):
ADMIN = "admin"
EDITOR = "editor"
MODER = "moder"
ADVERTISER = "advertiser"
GROUPS = "groups"
PUBLICS = "publics"
EVENTS = "events"
HAS_ADDRESSES = "has_addresses"
class GroupsGroup(Model):
admin_level: "GroupsGroupAdminLevel"
deactivated: str
finish_date: int
id: int
is_admin: "BaseBoolInt"
is_advertiser: "BaseBoolInt"
is_closed: "GroupsGroupIsClosed"
is_member: "BaseBoolInt"
name: str
photo_100: str
photo_200: str
photo_50: str
screen_name: str
start_date: int
type: "GroupsGroupType"
class GroupsGroupAccess(enum.Enum):
OPEN = 0
CLOSED = 1
PRIVATE = 2
class GroupsGroupAdminLevel(enum.Enum):
MODERATOR = 1
EDITOR = 2
ADMINISTRATOR = 3
class GroupsGroupAgeLimits(enum.Enum):
UNLIMITED = 1
_16_PLUS = 2
_18_PLUS = 3
class GroupsGroupAttach(Model):
id: int
text: str
status: str
size: int
is_favorite: bool
class GroupsGroupAudio(enum.Enum):
DISABLED = 0
OPEN = 1
LIMITED = 2
class GroupsGroupBanInfo(Model):
comment: str
end_date: int
reason: "GroupsBanInfoReason"
class GroupsGroupCategory(Model):
id: int
name: str
subcategories: Optional[List['BaseObjectWithName']] = None
class GroupsGroupCategoryFull(Model):
id: int
name: str
page_count: int
page_previews: List['GroupsGroup']
subcategories: Optional[List['GroupsGroupCategory']] = None
class GroupsGroupCategoryType(Model):
id: int
name: str
class GroupsGroupDocs(enum.Enum):
DISABLED = 0
OPEN = 1
LIMITED = 2
class GroupsGroupFull(Model):
...
class GroupsGroupFullAgeLimits(enum.Enum):
NO = 1
OVER_16 = 2
OVER_18 = 3
class GroupsGroupFullMainSection(enum.Enum):
ABSENT = 0
PHOTOS = 1
TOPICS = 2
AUDIO = 3
VIDEO = 4
MARKET = 5
class GroupsGroupFullMemberStatus(enum.Enum):
NOT_A_MEMBER = 0
MEMBER = 1
NOT_SURE = 2
DECLINED = 3
HAS_SENT_A_REQUEST = 4
INVITED = 5
class GroupsGroupIsClosed(enum.Enum):
OPEN = 0
CLOSED = 1
PRIVATE = 2
class GroupsGroupLink(Model):
name: str
desc: str
edit_title: "BaseBoolInt"
id: int
image_processing: "BaseBoolInt"
url: str
class GroupsGroupMarketCurrency(enum.Enum):
RUSSIAN_RUBLES = 643
UKRAINIAN_HRYVNIA = 980
KAZAKH_TENGE = 398
EURO = 978
US_DOLLARS = 840
class GroupsGroupPhotos(enum.Enum):
DISABLED = 0
OPEN = 1
LIMITED = 2
class GroupsGroupPublicCategoryList(Model):
id: int
name: str
subcategories: List['GroupsGroupCategoryType']
class GroupsGroupRole(enum.Enum):
MODERATOR = "moderator"
EDITOR = "editor"
ADMINISTRATOR = "administrator"
ADVERTISER = "advertiser"
class GroupsGroupSubject(enum.Enum):
AUTO = 1
ACTIVITY_HOLIDAYS = 2
BUSINESS = 3
PETS = 4
HEALTH = 5
DATING_AND_COMMUNICATION = 6
GAMES = 7
IT = 8
CINEMA = 9
BEAUTY_AND_FASHION = 10
COOKING = 11
ART_AND_CULTURE = 12
LITERATURE = 13
MOBILE_SERVICES_AND_INTERNET = 14
MUSIC = 15
SCIENCE_AND_TECHNOLOGY = 16
REAL_ESTATE = 17
NEWS_AND_MEDIA = 18
SECURITY = 19
EDUCATION = 20
HOME_AND_RENOVATIONS = 21
POLITICS = 22
FOOD = 23
INDUSTRY = 24
TRAVEL = 25
WORK = 26
ENTERTAINMENT = 27
RELIGION = 28
FAMILY = 29
SPORTS = 30
INSURANCE = 31
TELEVISION = 32
GOODS_AND_SERVICES = 33
HOBBIES = 34
FINANCE = 35
PHOTO = 36
ESOTERICS = 37
ELECTRONICS_AND_APPLIANCES = 38
EROTIC = 39
HUMOR = 40
SOCIETY_HUMANITIES = 41
DESIGN_AND_GRAPHICS = 42
class GroupsGroupTopics(enum.Enum):
DISABLED = 0
OPEN = 1
LIMITED = 2
class GroupsGroupType(enum.Enum):
GROUP = "group"
PAGE = "page"
EVENT = "event"
class GroupsGroupVideo(enum.Enum):
DISABLED = 0
OPEN = 1
LIMITED = 2
class GroupsGroupWall(enum.Enum):
DISABLED = 0
OPEN = 1
LIMITED = 2
CLOSED = 3
class GroupsGroupWiki(enum.Enum):
DISABLED = 0
OPEN = 1
LIMITED = 2
class GroupsGroupXtrInvitedBy(Model):
admin_level: "GroupsGroupXtrInvitedByAdminLevel"
id: int
invited_by: int
is_admin: "BaseBoolInt"
is_advertiser: "BaseBoolInt"
is_closed: "BaseBoolInt"
is_member: "BaseBoolInt"
name: str
photo_100: str
photo_200: str
photo_50: str
screen_name: str
type: "GroupsGroupXtrInvitedByType"
class GroupsGroupXtrInvitedByAdminLevel(enum.Enum):
MODERATOR = 1
EDITOR = 2
ADMINISTRATOR = 3
class GroupsGroupXtrInvitedByType(enum.Enum):
GROUP = "group"
PAGE = "page"
EVENT = "event"
class GroupsGroupsArray(Model):
count: int
items: List[int]
class GroupsLinksItem(Model):
desc: str
edit_title: "BaseBoolInt"
id: int
name: str
photo_100: str
photo_50: str
url: str
class GroupsLiveCovers(Model):
is_enabled: bool
is_scalable: Optional[bool] = None
story_ids: Optional[List[str]] = None
class GroupsLongPollEvents(Model):
audio_new: "BaseBoolInt"
board_post_delete: "BaseBoolInt"
board_post_edit: "BaseBoolInt"
board_post_new: "BaseBoolInt"
board_post_restore: "BaseBoolInt"
group_change_photo: "BaseBoolInt"
group_change_settings: "BaseBoolInt"
group_join: "BaseBoolInt"
group_leave: "BaseBoolInt"
group_officers_edit: "BaseBoolInt"
lead_forms_new: Optional["BaseBoolInt"] = None
market_comment_delete: "BaseBoolInt"
market_comment_edit: "BaseBoolInt"
market_comment_new: "BaseBoolInt"
market_comment_restore: "BaseBoolInt"
message_allow: "BaseBoolInt"
message_deny: "BaseBoolInt"
message_new: "BaseBoolInt"
message_read: "BaseBoolInt"
message_reply: "BaseBoolInt"
message_typing_state: "BaseBoolInt"
message_edit: "BaseBoolInt"
photo_comment_delete: "BaseBoolInt"
photo_comment_edit: "BaseBoolInt"
photo_comment_new: "BaseBoolInt"
photo_comment_restore: "BaseBoolInt"
photo_new: "BaseBoolInt"
poll_vote_new: "BaseBoolInt"
user_block: "BaseBoolInt"
user_unblock: "BaseBoolInt"
video_comment_delete: "BaseBoolInt"
video_comment_edit: "BaseBoolInt"
video_comment_new: "BaseBoolInt"
video_comment_restore: "BaseBoolInt"
video_new: "BaseBoolInt"
wall_post_new: "BaseBoolInt"
wall_reply_delete: "BaseBoolInt"
wall_reply_edit: "BaseBoolInt"
wall_reply_new: "BaseBoolInt"
wall_reply_restore: "BaseBoolInt"
wall_repost: "BaseBoolInt"
class GroupsLongPollServer(Model):
key: str
server: str
ts: str
class GroupsLongPollSettings(Model):
api_version: Optional[str] = None
events: "GroupsLongPollEvents"
is_enabled: bool
class GroupsMarketInfo(Model):
contact_id: int
currency: "MarketCurrency"
currency_text: str
enabled: "BaseBoolInt"
main_album_id: int
price_max: str
price_min: str
class GroupsMemberRole(Model):
id: int
permissions: List['GroupsMemberRolePermission']
role: "GroupsMemberRoleStatus"
class GroupsMemberRolePermission(enum.Enum):
ADS = "ads"
class GroupsMemberRoleStatus(enum.Enum):
MODERATOR = "moderator"
EDITOR = "editor"
ADMINISTRATOR = "administrator"
CREATOR = "creator"
class GroupsMemberStatus(Model):
member: "BaseBoolInt"
user_id: int
class GroupsMemberStatusFull(Model):
can_invite: Optional["BaseBoolInt"] = None
can_recall: Optional["BaseBoolInt"] = None
invitation: Optional["BaseBoolInt"] = None
member: "BaseBoolInt"
request: Optional["BaseBoolInt"] = None
user_id: int
class GroupsOnlineStatus(Model):
minutes: Optional[int] = None
status: "GroupsOnlineStatusType"
class GroupsOnlineStatusType(enum.Enum):
NONE = "none"
ONLINE = "online"
ANSWER_MARK = "answer_mark"
class GroupsOwnerXtrBanInfo(Model):
ban_info: "GroupsBanInfo"
group: "GroupsGroup"
profile: "UsersUser"
type: "GroupsOwnerXtrBanInfoType"
class GroupsOwnerXtrBanInfoType(enum.Enum):
GROUP = "group"
PROFILE = "profile"
class GroupsRoleOptions(enum.Enum):
MODERATOR = "moderator"
EDITOR = "editor"
ADMINISTRATOR = "administrator"
CREATOR = "creator"
class GroupsSettingsTwitter(Model):
status: str
name: Optional[str] = None
class GroupsSubjectItem(Model):
id: int
name: str
class GroupsTokenPermissionSetting(Model):
name: str
setting: int
class GroupsUserXtrRole(Model):
...
class LeadsChecked(Model):
reason: str
result: "LeadsCheckedResult"
sid: str
start_link: str
class LeadsCheckedResult(enum.Enum):
TRUE = "true"
FALSE = "false"
class LeadsComplete(Model):
cost: int
limit: int
spent: int
success: int
test_mode: "BaseBoolInt"
class LeadsEntry(Model):
aid: int
comment: str
date: int
sid: str
start_date: int
status: int
test_mode: "BaseBoolInt"
uid: int
class LeadsLead(Model):
completed: int
cost: int
days: "LeadsLeadDays"
impressions: int
limit: int
spent: int
started: int
class LeadsLeadDays(Model):
completed: int
impressions: int
spent: int
started: int
class LeadsStart(Model):
test_mode: "BaseBoolInt"
vk_sid: str
class LikesType(enum.Enum):
POST = "post"
COMMENT = "comment"
PHOTO = "photo"
AUDIO = "audio"
VIDEO = "video"
NOTE = "note"
MARKET = "market"
PHOTO_COMMENT = "photo_comment"
VIDEO_COMMENT = "video_comment"
TOPIC_COMMENT = "topic_comment"
MARKET_COMMENT = "market_comment"
SITEPAGE = "sitepage"
class LinkTargetObject(Model):
type: str
owner_id: int
item_id: int
class MarketCurrency(Model):
id: int
name: str
class MarketMarketAlbum(Model):
count: int
id: int
owner_id: int
photo: Optional["PhotosPhoto"] = None
title: str
updated_time: int
class MarketMarketCategory(Model):
id: int
name: str
section: "MarketSection"
class MarketMarketItem(Model):
access_key: Optional[str] = None
availability: "MarketMarketItemAvailability"
button_title: Optional[str] = None
category: "MarketMarketCategory"
date: Optional[int] = None
description: str
external_id: Optional[str] = None
id: int
is_favorite: Optional[bool] = None
owner_id: int
price: "MarketPrice"
thumb_photo: str
title: str
url: Optional[str] = None
variants_grouping_id: Optional[int] = None
is_main_variant: Optional[bool] = None
class MarketMarketItemAvailability(enum.Enum):
AVAILABLE = 0
REMOVED = 1
UNAVAILABLE = 2
class MarketMarketItemFull(Model):
...
class MarketPrice(Model):
amount: str
currency: "MarketCurrency"
discount_rate: int
old_amount: str
text: str
class MarketSection(Model):
id: int
name: str
class MediaRestriction(Model):
text: Optional[str] = None
title: str
button: Optional["VideoRestrictionButton"] = None
always_shown: Optional["BaseBoolInt"] = None
blur: Optional["BaseBoolInt"] = None
can_play: Optional["BaseBoolInt"] = None
can_preview: Optional["BaseBoolInt"] = None
card_icon: Optional[List['BaseImage']] = None
list_icon: Optional[List['BaseImage']] = None
class MessageChatPreview(Model):
admin_id: int
joined: bool
local_id: int
members: List[int]
members_count: int
title: str
class MessagesAudioMessage(Model):
access_key: Optional[str] = None
duration: int
id: int
link_mp3: str
link_ogg: str
owner_id: int
waveform: List[int]
class MessagesChat(Model):
admin_id: int
id: int
kicked: Optional["BaseBoolInt"] = None
left: Optional["BaseBoolInt"] = None
photo_100: Optional[str] = None
photo_200: Optional[str] = None
photo_50: Optional[str] = None
push_settings: Optional["MessagesChatPushSettings"] = None
title: Optional[str] = None
type: str
users: List[int]
is_default_photo: Optional[bool] = None
class MessagesChatFull(Model):
admin_id: int
id: int
kicked: Optional["BaseBoolInt"] = None
left: Optional["BaseBoolInt"] = None
photo_100: Optional[str] = None
photo_200: Optional[str] = None
photo_50: Optional[str] = None
push_settings: Optional["MessagesChatPushSettings"] = None
title: Optional[str] = None
type: str
users: List['MessagesUserXtrInvitedBy']
class MessagesChatPushSettings(Model):
disabled_until: int
sound: "BaseBoolInt"
class MessagesChatRestrictions(Model):
admins_promote_users: bool
only_admins_edit_info: bool
only_admins_edit_pin: bool
only_admins_invite: bool
only_admins_kick: bool
class MessagesConversation(Model):
peer: "MessagesConversationPeer"
last_message_id: int
in_read: int
out_read: int
unread_count: Optional[int] = None
is_marked_unread: Optional[bool] = None
important: Optional[bool] = None
unanswered: Optional[bool] = None
special_service_type: Optional[str] = None
message_request_data: Optional["MessagesMessageRequestData"] = None
mentions: Optional[List[int]] = None
current_keyboard: Optional["MessagesKeyboard"] = None
class MessagesConversationMember(Model):
can_kick: Optional[bool] = None
invited_by: Optional[int] = None
is_admin: Optional[bool] = None
is_owner: Optional[bool] = None
is_message_request: Optional[bool] = None
join_date: Optional[int] = None
request_date: Optional[int] = None
member_id: int
class MessagesConversationPeer(Model):
id: int
local_id: Optional[int] = None
type: "MessagesConversationPeerType"
class MessagesConversationPeerType(enum.Enum):
CHAT = "chat"
EMAIL = "email"
USER = "user"
GROUP = "group"
class MessagesConversationWithMessage(Model):
conversation: "MessagesConversation"
last_message: "MessagesMessage"
class MessagesForeignMessage(Model):
attachments: Optional[List['MessagesMessageAttachment']] = None
conversation_message_id: Optional[int] = None
date: int
from_id: int
fwd_messages: Optional[List['MessagesForeignMessage']] = None
geo: Optional["BaseGeo"] = None
id: Optional[int] = None
peer_id: Optional[int] = None
reply_message: Optional["MessagesForeignMessage"] = None
text: str
update_time: Optional[int] = None
was_listened: Optional[bool] = None
payload: Optional[str] = None
class MessagesGraffiti(Model):
access_key: Optional[str] = None
height: int
id: int
owner_id: int
url: str
width: int
class MessagesHistoryAttachment(Model):
attachment: "MessagesHistoryMessageAttachment"
message_id: int
from_id: int
class MessagesHistoryMessageAttachment(Model):
audio: Optional["AudioAudio"] = None
audio_message: Optional["MessagesAudioMessage"] = None
doc: Optional["DocsDoc"] = None
graffiti: Optional["MessagesGraffiti"] = None
link: Optional["BaseLink"] = None
market: Optional["BaseLink"] = None
photo: Optional["PhotosPhoto"] = None
share: Optional["BaseLink"] = None
type: "MessagesHistoryMessageAttachmentType"
video: Optional["VideoVideo"] = None
wall: Optional["BaseLink"] = None
class MessagesHistoryMessageAttachmentType(enum.Enum):
PHOTO = "photo"
VIDEO = "video"
AUDIO = "audio"
DOC = "doc"
LINK = "link"
MARKET = "market"
WALL = "wall"
SHARE = "share"
GRAFFITI = "graffiti"
AUDIO_MESSAGE = "audio_message"
class MessagesKeyboard(Model):
author_id: Optional[int] = None
buttons: List[list]
one_time: bool
inline: Optional[bool] = None
class MessagesKeyboardButton(Model):
action: "MessagesKeyboardButtonAction"
color: Optional[str] = None
class MessagesKeyboardButtonAction(Model):
app_id: Optional[int] = None
hash: Optional[str] = None
label: Optional[str] = None
link: Optional[str] = None
owner_id: Optional[int] = None
payload: Optional[str] = None
type: "MessagesTemplateActionTypeNames"
class MessagesLastActivity(Model):
online: "BaseBoolInt"
time: int
class MessagesLongpollMessages(Model):
count: int
items: List['MessagesMessage']
class MessagesLongpollParams(Model):
key: str
pts: int
server: str
ts: str
class MessagesMessage(Model):
action: Optional["MessagesMessageAction"] = None
admin_author_id: Optional[int] = None
attachments: Optional[List['MessagesMessageAttachment']] = None
conversation_message_id: Optional[int] = None
date: int
deleted: Optional["BaseBoolInt"] = None
from_id: int
fwd_messages: Optional[List['MessagesForeignMessage']] = None
geo: Optional["BaseGeo"] = None
id: int
important: Optional[bool] = None
is_hidden: Optional[bool] = None
is_cropped: Optional[bool] = None
keyboard: Optional["MessagesKeyboard"] = None
members_count: Optional[int] = None
out: "BaseBoolInt"
payload: Optional[Json] = None
peer_id: int
random_id: Optional[int] = None
ref: Optional[str] = None
ref_source: Optional[str] = None
reply_message: Optional["MessagesForeignMessage"] = None
text: str
update_time: Optional[int] = None
was_listened: Optional[bool] = None
pinned_at: Optional[int] = None
class MessagesMessageAction(Model):
conversation_message_id: Optional[int] = None
email: Optional[str] = None
member_id: Optional[int] = None
message: Optional[str] = None
photo: Optional["MessagesMessageActionPhoto"] = None
text: Optional[str] = None
type: "MessagesMessageActionStatus"
class MessagesMessageActionPhoto(Model):
photo_100: str
photo_200: str
photo_50: str
class MessagesMessageActionStatus(enum.Enum):
CHAT_PHOTO_UPDATE = "chat_photo_update"
CHAT_PHOTO_REMOVE = "chat_photo_remove"
CHAT_CREATE = "chat_create"
CHAT_TITLE_UPDATE = "chat_title_update"
CHAT_INVITE_USER = "chat_invite_user"
CHAT_KICK_USER = "chat_kick_user"
CHAT_PIN_MESSAGE = "chat_pin_message"
CHAT_UNPIN_MESSAGE = "chat_unpin_message"
CHAT_INVITE_USER_BY_LINK = "chat_invite_user_by_link"
class MessagesMessageAttachment(Model):
audio: Optional["AudioAudio"] = None
audio_message: Optional["MessagesAudioMessage"] = None
doc: Optional["DocsDoc"] = None
gift: Optional["GiftsLayout"] = None
graffiti: Optional["MessagesGraffiti"] = None
link: Optional["BaseLink"] = None
market: Optional["MarketMarketItem"] = None
market_market_album: Optional["MarketMarketAlbum"] = None
photo: Optional["PhotosPhoto"] = None
sticker: Optional["BaseSticker"] = None
story: Optional["StoriesStory"] = None
type: "MessagesMessageAttachmentType"
video: Optional["VideoVideo"] = None
wall: Optional["WallWallpostFull"] = None
wall_reply: Optional["WallWallComment"] = None
class MessagesMessageAttachmentType(enum.Enum):
PHOTO = "photo"
AUDIO = "audio"
VIDEO = "video"
DOC = "doc"
LINK = "link"
MARKET = "market"
MARKET_ALBUM = "market_album"
GIFT = "gift"
STICKER = "sticker"
WALL = "wall"
WALL_REPLY = "wall_reply"
ARTICLE = "article"
GRAFFITI = "graffiti"
AUDIO_MESSAGE = "audio_message"
class MessagesMessageRequestData(Model):
status: str
inviter_id: int
request_date: int
class MessagesPinnedMessage(Model):
attachments: Optional[List['MessagesMessageAttachment']] = None
conversation_message_id: Optional[int] = None
date: int
from_id: int
fwd_messages: Optional[List['MessagesForeignMessage']] = None
geo: Optional["BaseGeo"] = None
id: int
peer_id: int
reply_message: Optional["MessagesForeignMessage"] = None
text: str
keyboard: Optional["MessagesKeyboard"] = None
class MessagesTemplateActionTypeNames(enum.Enum):
TEXT = "text"
START = "start"
LOCATION = "location"
VKPAY = "vkpay"
OPEN_APP = "open_app"
OPEN_PHOTO = "open_photo"
OPEN_LINK = "open_link"
class MessagesUserXtrInvitedBy(Model):
...
class NewsfeedCommentsFilters(enum.Enum):
POST = "post"
PHOTO = "photo"
VIDEO = "video"
TOPIC = "topic"
NOTE = "note"
class NewsfeedEventActivity(Model):
address: Optional[str] = None
button_text: str
friends: List[int]
member_status: "GroupsGroupFullMemberStatus"
text: str
time: Optional[int] = None
class NewsfeedFilters(enum.Enum):
POST = "post"
PHOTO = "photo"
PHOTO_TAG = "photo_tag"
WALL_PHOTO = "wall_photo"
FRIEND = "friend"
RECOMMENDED_GROUPS = "recommended_groups"
NOTE = "note"
AUDIO = "audio"
VIDEO = "video"
AUDIO_PLAYLIST = "audio_playlist"
CLIP = "clip"
class NewsfeedIgnoreItemType(enum.Enum):
POST_ON_THE_WALL = 'wall'
TAG_ON_A_PHOTO = 'tag'
PROFILE_PHOTO = 'profilephoto'
VIDEO = 'video'
PHOTO = 'photo'
AUDIO = 'audio'
class NewsfeedItemAudio(Model):
...
class NewsfeedItemAudioAudio(Model):
count: int
items: List['AudioAudio']
class NewsfeedItemBase(Model):
type: "NewsfeedNewsfeedItemType"
source_id: int
date: int
class NewsfeedItemDigest(Model):
...
class NewsfeedItemFriend(Model):
...
class NewsfeedItemFriendFriends(Model):
count: int
items: List['BaseUserId']
class NewsfeedItemHolidayRecommendationsBlockHeader(Model):
title: str
subtitle: str
image: List['BaseImage']
action: "BaseLinkButtonAction"
class NewsfeedItemNote(Model):
...
class NewsfeedItemNoteNotes(Model):
count: int
items: List['NewsfeedNewsfeedNote']
class NewsfeedItemPhoto(Model):
...
class NewsfeedItemPhotoPhotos(Model):
count: int
items: List['NewsfeedNewsfeedPhoto']
class NewsfeedItemPhotoTag(Model):
...
class NewsfeedItemPhotoTagPhotoTags(Model):
count: int
items: List['NewsfeedNewsfeedPhoto']
class NewsfeedItemPromoButton(Model):
...
class NewsfeedItemPromoButtonAction(Model):
url: str
type: str
target: str
class NewsfeedItemPromoButtonImage(Model):
width: int
height: int
url: str
class NewsfeedItemTopic(Model):
...
class NewsfeedItemVideo(Model):
...
class NewsfeedItemVideoVideo(Model):
count: int
items: List['VideoVideo']
class NewsfeedItemWallpost(Model):
...
class NewsfeedItemWallpostFeedback(Model):
type: "NewsfeedItemWallpostFeedbackType"
question: str
answers: Optional[List['NewsfeedItemWallpostFeedbackAnswer']] = None
stars_count: Optional[int] = None
gratitude: Optional[str] = None
class NewsfeedItemWallpostFeedbackAnswer(Model):
title: str
id: str
class NewsfeedItemWallpostFeedbackType(enum.Enum):
BUTTONS = "buttons"
STARS = "stars"
class NewsfeedItemWallpostType(enum.Enum):
POST = "post"
COPY = "copy"
REPLY = "reply"
class NewsfeedList(Model):
id: int
title: str
class NewsfeedListFull(Model):
...
class NewsfeedNewsfeedItem(Model):
...
class NewsfeedNewsfeedItemType(enum.Enum):
POST = "post"
PHOTO = "photo"
PHOTO_TAG = "photo_tag"
WALL_PHOTO = "wall_photo"
FRIEND = "friend"
NOTE = "note"
AUDIO = "audio"
VIDEO = "video"
TOPIC = "topic"
DIGEST = "digest"
STORIES = "stories"
TAGS_SUGGESTIONS = "tags_suggestions"
class NewsfeedNewsfeedNote(Model):
comments: int
id: int
owner_id: int
title: str
class NewsfeedNewsfeedPhoto(Model):
...
class NotesNote(Model):
read_comments: Optional[int] = None
can_comment: Optional["BaseBoolInt"] = None
comments: int
date: int
id: int
owner_id: int
text: Optional[str] = None
text_wiki: Optional[str] = None
title: str
view_url: str
class NotesNoteComment(Model):
date: int
id: int
message: str
nid: int
oid: int
reply_to: Optional[int] = None
uid: int
class NotificationsFeedback(Model):
attachments: List['WallWallpostAttachment']
from_id: int
geo: "BaseGeo"
id: int
likes: "BaseLikesInfo"
text: str
to_id: int
class NotificationsNotification(Model):
date: int
feedback: "NotificationsFeedback"
parent: "NotificationsNotificationParent"
reply: "NotificationsReply"
type: str
class NotificationsNotificationItem(Model):
...
class NotificationsNotificationParent(Model):
...
class NotificationsNotificationsComment(Model):
date: int
id: int
owner_id: int
photo: "PhotosPhoto"
post: "WallWallpost"
text: str
topic: "BoardTopic"
video: "VideoVideo"
class NotificationsReply(Model):
date: int
id: int
text: int
class NotificationsSendMessageError(Model):
code: int
description: str
class NotificationsSendMessageItem(Model):
user_id: int
status: bool
error: "NotificationsSendMessageError"
class OauthError(Model):
error: str
error_description: str
redirect_uri: Optional[str] = None
class OrdersAmount(Model):
amounts: List['OrdersAmountItem']
currency: str
class OrdersAmountItem(Model):
amount: int
description: str
votes: str
class OrdersOrder(Model):
amount: int
app_order_id: int
cancel_transaction_id: int
date: int
id: int
item: str
receiver_id: int
status: str
transaction_id: int
user_id: int
class OrdersSubscription(Model):
cancel_reason: Optional[str] = None
create_time: int
id: int
item_id: str
next_bill_time: Optional[int] = None
pending_cancel: Optional[bool] = None
period: int
period_start_time: int
price: int
status: str
test_mode: Optional[bool] = None
trial_expire_time: Optional[int] = None
update_time: int
class OwnerState(Model):
state: int
description: str
class PagesPrivacySettings(enum.Enum):
COMMUNITY_MANAGERS_ONLY = 0
COMMUNITY_MEMBERS_ONLY = 1
EVERYONE = 2
class PagesWikipage(Model):
creator_id: Optional[int] = None
creator_name: Optional[int] = None
editor_id: Optional[int] = None
editor_name: Optional[str] = None
group_id: int
id: int
title: str
views: int
who_can_edit: "PagesPrivacySettings"
who_can_view: "PagesPrivacySettings"
class PagesWikipageFull(Model):
created: int
creator_id: Optional[int] = None
current_user_can_edit: Optional["BaseBoolInt"] = None
current_user_can_edit_access: Optional["BaseBoolInt"] = None
edited: int
editor_id: Optional[int] = None
group_id: int
html: Optional[str] = None
id: int
source: Optional[str] = None
title: str
view_url: str
views: int
who_can_edit: "PagesPrivacySettings"
who_can_view: "PagesPrivacySettings"
class PagesWikipageHistory(Model):
id: int
length: int
date: int
editor_id: int
editor_name: str
class PhotosCommentXtrPid(Model):
attachments: Optional[List['WallCommentAttachment']] = None
date: int
from_id: int
id: int
likes: Optional["BaseLikesInfo"] = None
pid: int
reply_to_comment: Optional[int] = None
reply_to_user: Optional[int] = None
text: str
parents_stack: Optional[List[int]] = None
thread: Optional["CommentThread"] = None
class PhotosImage(Model):
height: int
type: "PhotosImageType"
url: str
width: int
class PhotosImageType(enum.Enum):
S = "s"
M = "m"
X = "x"
L = "l"
O = "o"
P = "p"
Q = "q"
R = "r"
Y = "y"
Z = "z"
W = "w"
class PhotosMarketAlbumUploadResponse(Model):
gid: int
hash: str
photo: str
server: int
class PhotosMarketUploadResponse(Model):
crop_data: str
crop_hash: str
group_id: int
hash: str
photo: str
server: int
class PhotosMessageUploadResponse(Model):
hash: str
photo: str
server: int
class PhotosOwnerUploadResponse(Model):
hash: str
photo: str
server: int
class PhotosPhoto(Model):
access_key: Optional[str] = None
album_id: int
date: int
height: Optional[int] = None
id: int
images: Optional[List['PhotosImage']] = None
lat: Optional[float] = None
long: Optional[float] = None
owner_id: int
photo_256: Optional[str] = None
can_comment: Optional["BaseBoolInt"] = None
place: Optional[str] = None
post_id: Optional[int] = None
sizes: Optional[List['PhotosPhotoSizes']] = None
text: Optional[str] = None
user_id: Optional[int] = None
width: Optional[int] = None
has_tags: bool
restrictions: Optional["MediaRestriction"] = None
class PhotosPhotoAlbum(Model):
created: int
description: Optional[str] = None
id: int
owner_id: int
size: int
thumb: Optional["PhotosPhoto"] = None
title: str
updated: int
class PhotosPhotoAlbumFull(Model):
can_upload: Optional["BaseBoolInt"] = None
comments_disabled: Optional["BaseBoolInt"] = None
created: int
description: Optional[str] = None
id: int
owner_id: int
size: int
sizes: Optional[List['PhotosPhotoSizes']] = None
thumb_id: Optional[int] = None
thumb_is_last: Optional["BaseBoolInt"] = None
thumb_src: Optional[str] = None
title: str
updated: int
upload_by_admins_only: Optional["BaseBoolInt"] = None
class PhotosPhotoFull(Model):
access_key: Optional[str] = None
album_id: int
can_comment: Optional["BaseBoolInt"] = None
comments: Optional["BaseObjectCount"] = None
date: int
height: Optional[int] = None
id: int
images: Optional[List['PhotosImage']] = None
lat: Optional[float] = None
likes: Optional["BaseLikes"] = None
long: Optional[float] = None
owner_id: int
post_id: Optional[int] = None
reposts: Optional["BaseObjectCount"] = None
tags: Optional["BaseObjectCount"] = None
text: Optional[str] = None
user_id: Optional[int] = None
width: Optional[int] = None
class PhotosPhotoFullXtrRealOffset(Model):
access_key: Optional[str] = None
album_id: int
can_comment: Optional["BaseBoolInt"] = None
comments: Optional["BaseObjectCount"] = None
date: int
height: Optional[int] = None
hidden: Optional["BasePropertyExists"] = None
id: int
lat: Optional[float] = None
likes: Optional["BaseLikes"] = None
long: Optional[float] = None
owner_id: int
photo_1280: Optional[str] = None
photo_130: Optional[str] = None
photo_2560: Optional[str] = None
photo_604: Optional[str] = None
photo_75: Optional[str] = None
photo_807: Optional[str] = None
post_id: Optional[int] = None
real_offset: Optional[int] = None
reposts: Optional["BaseObjectCount"] = None
sizes: Optional[List['PhotosPhotoSizes']] = None
tags: Optional["BaseObjectCount"] = None
text: Optional[str] = None
user_id: Optional[int] = None
width: Optional[int] = None
class PhotosPhotoSizes(Model):
height: int
url: str
src: Optional[str] = None
type: "PhotosPhotoSizesType"
width: int
class PhotosPhotoSizesType(enum.Enum):
S = "s"
M = "m"
X = "x"
O = "o"
P = "p"
Q = "q"
R = "r"
K = "k"
L = "l"
Y = "y"
Z = "z"
C = "c"
W = "w"
class PhotosPhotoTag(Model):
date: int
id: int
placer_id: int
tagged_name: str
user_id: int
viewed: "BaseBoolInt"
x: float
x2: float
y: float
y2: float
class PhotosPhotoUpload(Model):
album_id: int
upload_url: str
fallback_upload_url: Optional[str] = None
user_id: int
group_id: Optional[int] = None
class PhotosPhotoUploadResponse(Model):
aid: int
hash: str
photos_list: str
server: int
class PhotosPhotoXtrRealOffset(Model):
access_key: Optional[str] = None
album_id: int
date: int
height: Optional[int] = None
hidden: Optional["BasePropertyExists"] = None
id: int
lat: Optional[float] = None
long: Optional[float] = None
owner_id: int
photo_1280: Optional[str] = None
photo_130: Optional[str] = None
photo_2560: Optional[str] = None
photo_604: Optional[str] = None
photo_75: Optional[str] = None
photo_807: Optional[str] = None
post_id: Optional[int] = None
real_offset: Optional[int] = None
sizes: Optional[List['PhotosPhotoSizes']] = None
text: Optional[str] = None
user_id: Optional[int] = None
width: Optional[int] = None
class PhotosPhotoXtrTagInfo(Model):
access_key: Optional[str] = None
album_id: int
date: int
height: Optional[int] = None
id: int
lat: Optional[float] = None
long: Optional[float] = None
owner_id: int
photo_1280: Optional[str] = None
photo_130: Optional[str] = None
photo_2560: Optional[str] = None
photo_604: Optional[str] = None
photo_75: Optional[str] = None
photo_807: Optional[str] = None
placer_id: Optional[int] = None
post_id: Optional[int] = None
sizes: Optional[List['PhotosPhotoSizes']] = None
tag_created: Optional[int] = None
tag_id: Optional[int] = None
text: Optional[str] = None
user_id: Optional[int] = None
width: Optional[int] = None
class PhotosTagsSuggestionItem(Model):
title: str
type: str
buttons: List['PhotosTagsSuggestionItemButton']
photo: "PhotosPhoto"
tags: List['PhotosPhotoTag']
class PhotosTagsSuggestionItemButton(Model):
title: str
action: str
style: str
class PhotosWallUploadResponse(Model):
hash: str
photo: str
server: int
class PollsAnswer(Model):
id: int
rate: float
text: str
votes: int
class PollsBackground(Model):
angle: int
color: str
height: int
id: int
name: str
images: List['BaseImage']
points: List['BaseGradientPoint']
type: str
width: int
class PollsFriend(Model):
id: int
class PollsPoll(Model):
anonymous: "PollsPollAnonymous"
friends: Optional[List['PollsFriend']] = None
multiple: bool
answer_id: Optional[int] = None
end_date: int
answer_ids: Optional[List[int]] = None
closed: bool
is_board: bool
can_edit: bool
can_vote: bool
can_report: bool
can_share: bool
photo: Optional["PollsBackground"] = None
answers: List['PollsAnswer']
created: int
id: int
owner_id: int
author_id: Optional[int] = None
question: str
background: Optional["PollsBackground"] = None
votes: int
disable_unvote: bool
class PollsPollAnonymous(Model):
...
class PollsVoters(Model):
answer_id: int
users: "PollsVotersUsers"
class PollsVotersUsers(Model):
count: int
items: List[int]
class PrettycardsPrettycard(Model):
button: Optional[str] = None
button_text: Optional[str] = None
card_id: str
images: Optional[List['BaseImage']] = None
link_url: str
photo: str
price: Optional[str] = None
price_old: Optional[str] = None
title: str
class SearchHint(Model):
app: Optional["AppsApp"] = None
description: str
global_: Optional["BaseBoolInt"] = None
group: Optional["GroupsGroup"] = None
profile: Optional["UsersUserMin"] = None
section: "SearchHintSection"
type: "SearchHintType"
class SearchHintSection(enum.Enum):
GROUPS = "groups"
EVENTS = "events"
PUBLICS = "publics"
CORRESPONDENTS = "correspondents"
PEOPLE = "people"
FRIENDS = "friends"
MUTUAL_FRIENDS = "mutual_friends"
class SearchHintType(enum.Enum):
GROUP = "group"
PROFILE = "profile"
VK_APP = "vk_app"
APP = "app"
HTML5_GAME = "html5_game"
class SecureLevel(Model):
level: int
uid: int
class SecureSmsNotification(Model):
app_id: str
date: str
id: str
message: str
user_id: str
class SecureTokenChecked(Model):
date: int
expire: int
success: int
user_id: int
class SecureTransaction(Model):
date: int
id: int
uid_from: int
uid_to: int
votes: int
class StatsActivity(Model):
comments: int
copies: int
hidden: int
likes: int
subscribed: int
unsubscribed: int
class StatsCity(Model):
count: int
name: str
value: int
class StatsCountry(Model):
code: str
count: int
name: str
value: int
class StatsPeriod(Model):
activity: "StatsActivity"
period_from: int
period_to: int
reach: "StatsReach"
visitors: "StatsViews"
class StatsReach(Model):
age: List['StatsSexAge']
cities: List['StatsCity']
countries: List['StatsCountry']
mobile_reach: int
reach: int
reach_subscribers: int
sex: List['StatsSexAge']
sex_age: List['StatsSexAge']
class StatsSexAge(Model):
count: Optional[int] = None
value: str
reach: Optional[int] = None
reach_subscribers: Optional[int] = None
count_subscribers: Optional[int] = None
class StatsViews(Model):
age: List['StatsSexAge']
cities: List['StatsCity']
countries: List['StatsCountry']
mobile_views: int
sex: List['StatsSexAge']
sex_age: List['StatsSexAge']
views: int
visitors: int
class StatsWallpostStat(Model):
post_id: int
hide: int
join_group: int
links: int
reach_subscribers: int
reach_subscribers_count: int
reach_total: int
reach_total_count: int
reach_viral: int
reach_ads: int
report: int
to_group: int
unsubscribe: int
sex_age: List['StatsSexAge']
class StatusStatus(Model):
text: str
audio: Optional["AudioAudio"] = None
class StorageValue(Model):
key: str
value: str
class StoriesClickableArea(Model):
x: int
y: int
class StoriesClickableSticker(Model):
clickable_area: List['StoriesClickableArea']
id: int
hashtag: Optional[str] = None
link_object: Optional["BaseLink"] = None
mention: Optional[str] = None
tooltip_text: Optional[str] = None
owner_id: Optional[int] = None
story_id: Optional[int] = None
question: Optional[str] = None
question_button: Optional[str] = None
place_id: Optional[int] = None
market_item: Optional["MarketMarketItem"] = None
audio: Optional["AudioAudio"] = None
audio_start_time: Optional[int] = None
style: Optional[str] = None
type: str
subtype: Optional[str] = None
post_owner_id: Optional[int] = None
post_id: Optional[int] = None
poll: Optional["PollsPoll"] = None
color: Optional[str] = None
sticker_id: Optional[int] = None
sticker_pack_id: Optional[int] = None
app: Optional["AppsAppMin"] = None
app_context: Optional[str] = None
has_new_interactions: Optional[bool] = None
is_broadcast_notify_allowed: Optional[bool] = None
class StoriesClickableStickers(Model):
clickable_stickers: List['StoriesClickableSticker']
original_height: int
original_width: int
class StoriesFeedItem(Model):
type: str
stories: Optional[List['StoriesStory']] = None
grouped: Optional[List['StoriesFeedItem']] = None
app: Optional["AppsAppMin"] = None
promo_data: Optional["StoriesPromoBlock"] = None
class StoriesPromoBlock(Model):
name: str
photo_50: str
photo_100: str
not_animated: bool
class StoriesReplies(Model):
count: int
new: Optional[int] = None
class StoriesStatLine(Model):
name: str
counter: Optional[int] = None
is_unavailable: Optional[bool] = None
class StoriesStory(Model):
access_key: Optional[str] = None
can_comment: Optional["BaseBoolInt"] = None
can_reply: Optional["BaseBoolInt"] = None
can_see: Optional["BaseBoolInt"] = None
can_like: Optional[bool] = None
can_share: Optional["BaseBoolInt"] = None
can_hide: Optional["BaseBoolInt"] = None
date: Optional[int] = None
expires_at: Optional[int] = None
id: int
is_deleted: Optional[bool] = None
is_expired: Optional[bool] = None
link: Optional["StoriesStoryLink"] = None
owner_id: int
parent_story: Optional["StoriesStory"] = None
parent_story_access_key: Optional[str] = None
parent_story_id: Optional[int] = None
parent_story_owner_id: Optional[int] = None
photo: Optional["PhotosPhoto"] = None
replies: Optional["StoriesReplies"] = None
seen: Optional["BaseBoolInt"] = None
type: Optional["StoriesStoryType"] = None
clickable_stickers: Optional["StoriesClickableStickers"] = None
video: Optional["VideoVideo"] = None
views: Optional[int] = None
can_ask: Optional["BaseBoolInt"] = None
can_ask_anonymous: Optional["BaseBoolInt"] = None
narratives_count: Optional[int] = None
first_narrative_title: Optional[str] = None
birthday_wish_user_id: Optional[int] = None
class StoriesStoryLink(Model):
text: str
url: str
class StoriesStoryStats(Model):
answer: "StoriesStoryStatsStat"
bans: "StoriesStoryStatsStat"
open_link: "StoriesStoryStatsStat"
replies: "StoriesStoryStatsStat"
shares: "StoriesStoryStatsStat"
subscribers: "StoriesStoryStatsStat"
views: "StoriesStoryStatsStat"
likes: "StoriesStoryStatsStat"
class StoriesStoryStatsStat(Model):
count: Optional[int] = None
state: "StoriesStoryStatsState"
class StoriesStoryStatsState(enum.Enum):
ON = "on"
OFF = "off"
HIDDEN = "hidden"
class StoriesStoryType(enum.Enum):
PHOTO = "photo"
VIDEO = "video"
LIVE_ACTIVE = "live_active"
LIVE_FINISHED = "live_finished"
class StoriesUploadLinkText(enum.Enum):
TO_STORE = "to_store"
VOTE = "vote"
MORE = "more"
BOOK = "book"
ORDER = "order"
ENROLL = "enroll"
FILL = "fill"
SIGNUP = "signup"
BUY = "buy"
TICKET = "ticket"
WRITE = "write"
OPEN = "open"
LEARN_MORE = "learn_more"
VIEW = "view"
GO_TO = "go_to"
CONTACT = "contact"
WATCH = "watch"
PLAY = "play"
INSTALL = "install"
READ = "read"
CALENDAR = "calendar"
class StoriesViewersItem(Model):
is_liked: bool
user_id: int
user: Optional["UsersUserFull"] = None
class UsersCareer(Model):
city_id: int
company: str
country_id: int
from_: int
group_id: int
id: int
position: str
until: int
class UsersExports(Model):
facebook: int
livejournal: int
twitter: int
class UsersFields(enum.Enum):
PHOTO_ID = "photo_id"
VERIFIED = "verified"
SEX = "sex"
BDATE = "bdate"
CITY = "city"
COUNTRY = "country"
HOME_TOWN = "home_town"
HAS_PHOTO = "has_photo"
PHOTO_50 = "photo_50"
PHOTO_100 = "photo_100"
PHOTO_200_ORIG = "photo_200_orig"
PHOTO_200 = "photo_200"
PHOTO_400_ORIG = "photo_400_orig"
PHOTO_MAX = "photo_max"
PHOTO_MAX_ORIG = "photo_max_orig"
ONLINE = "online"
LISTS = "lists"
DOMAIN = "domain"
HAS_MOBILE = "has_mobile"
CONTACTS = "contacts"
SITE = "site"
EDUCATION = "education"
UNIVERSITIES = "universities"
SCHOOLS = "schools"
STATUS = "status"
LAST_SEEN = "last_seen"
FOLLOWERS_COUNT = "followers_count"
COUNTERS = "counters"
COMMON_COUNT = "common_count"
OCCUPATION = "occupation"
NICKNAME = "nickname"
RELATIVES = "relatives"
RELATION = "relation"
PERSONAL = "personal"
CONNECTIONS = "connections"
EXPORTS = "exports"
WALL_COMMENTS = "wall_comments"
ACTIVITIES = "activities"
INTERESTS = "interests"
MUSIC = "music"
MOVIES = "movies"
TV = "tv"
BOOKS = "books"
GAMES = "games"
ABOUT = "about"
QUOTES = "quotes"
CAN_POST = "can_post"
CAN_SEE_ALL_POSTS = "can_see_all_posts"
CAN_SEE_AUDIO = "can_see_audio"
CAN_WRITE_PRIVATE_MESSAGE = "can_write_private_message"
CAN_SEND_FRIEND_REQUEST = "can_send_friend_request"
IS_FAVORITE = "is_favorite"
IS_HIDDEN_FROM_FEED = "is_hidden_from_feed"
TIMEZONE = "timezone"
SCREEN_NAME = "screen_name"
MAIDEN_NAME = "maiden_name"
CROP_PHOTO = "crop_photo"
IS_FRIEND = "is_friend"
FRIEND_STATUS = "friend_status"
CAREER = "career"
MILITARY = "military"
BLACKLISTED = "blacklisted"
BLACKLISTED_BY_ME = "blacklisted_by_me"
CAN_SUBSCRIBE_POSTS = "can_subscribe_posts"
DESCRIPTIONS = "descriptions"
TRENDING = "trending"
MUTUAL = "mutual"
FRIENDSHIP_WEEKS = "friendship_weeks"
CAN_INVITE_TO_CHATS = "can_invite_to_chats"
STORIES_ARCHIVE_COUNT = "stories_archive_count"
VIDEO_LIVE_LEVEL = "video_live_level"
VIDEO_LIVE_COUNT = "video_live_count"
CLIPS_COUNT = "clips_count"
class UsersLastSeen(Model):
platform: int
time: int
class UsersMilitary(Model):
country_id: int
from_: Optional[int] = None
id: Optional[int] = None
unit: str
unit_id: int
until: Optional[int] = None
class UsersOccupation(Model):
id: int
name: str
type: str
class UsersOnlineInfo(Model):
visible: bool
last_seen: Optional[int] = None
is_online: Optional[bool] = None
app_id: Optional[int] = None
is_mobile: Optional[bool] = None
status: Optional[str] = None
class UsersPersonal(Model):
alcohol: int
inspired_by: str
langs: List[str]
life_main: int
people_main: int
political: int
religion: str
religion_id: int
smoking: int
class UsersRelative(Model):
birth_date: Optional[str] = None
id: Optional[int] = None
name: Optional[str] = None
type: str
class UsersSchool(Model):
city: int
class_: str
country: int
id: str
name: str
type: int
type_str: str
year_from: int
year_graduated: int
year_to: int
class UsersSubscriptionsItem(Model):
...
class UsersUniversity(Model):
chair: int
chair_name: str
city: int
country: int
education_form: str
education_status: str
faculty: int
faculty_name: str
graduation: int
id: int
name: str
class UsersUser(Model):
...
class UsersUserConnections(Model):
skype: str
facebook: str
facebook_name: Optional[str] = None
twitter: str
livejournal: Optional[str] = None
instagram: str
class UsersUserCounters(Model):
albums: int
audios: int
followers: int
friends: int
gifts: int
groups: int
notes: int
online_friends: int
pages: int
photos: int
subscriptions: int
user_photos: int
user_videos: int
videos: int
class UsersUserFull(Model):
...
class UsersUserMin(Model):
deactivated: Optional[str] = None
first_name: str
hidden: Optional[int] = None
id: int
last_name: str
can_access_closed: Optional[bool] = None
is_closed: Optional[bool] = None
class UsersUserRelation(enum.Enum):
NOT_SPECIFIED = 0
SINGLE = 1
IN_A_RELATIONSHIP = 2
ENGAGED = 3
MARRIED = 4
COMPLICATED = 5
ACTIVELY_SEARCHING = 6
IN_LOVE = 7
IN_A_CIVIL_UNION = 8
class UsersUserSettingsXtr(Model):
connections: Optional["UsersUserConnections"] = None
bdate: Optional[str] = None
bdate_visibility: Optional[int] = None
city: Optional["BaseCity"] = None
country: Optional["BaseCountry"] = None
first_name: Optional[str] = None
home_town: str
last_name: Optional[str] = None
maiden_name: Optional[str] = None
name_request: Optional["AccountNameRequest"] = None
personal: Optional["UsersPersonal"] = None
phone: Optional[str] = None
relation: Optional["UsersUserRelation"] = None
relation_partner: Optional["UsersUserMin"] = None
relation_pending: Optional["BaseBoolInt"] = None
relation_requests: Optional[List['UsersUserMin']] = None
screen_name: Optional[str] = None
sex: Optional["BaseSex"] = None
status: str
status_audio: Optional["AudioAudio"] = None
interests: Optional["AccountUserSettingsInterests"] = None
languages: Optional[List[str]] = None
class UsersUserType(enum.Enum):
PROFILE = "profile"
class UsersUserXtrCounters(Model):
...
class UsersUserXtrType(Model):
...
class UsersUsersArray(Model):
count: int
items: List[int]
class UtilsDomainResolved(Model):
object_id: int
group_id: int
type: "UtilsDomainResolvedType"
class UtilsDomainResolvedType(enum.Enum):
USER = "user"
GROUP = "group"
APPLICATION = "application"
PAGE = "page"
class UtilsLastShortenedLink(Model):
access_key: str
key: str
short_url: str
timestamp: int
url: str
views: int
class UtilsLinkChecked(Model):
link: str
status: "UtilsLinkCheckedStatus"
class UtilsLinkCheckedStatus(enum.Enum):
NOT_BANNED = "not_banned"
BANNED = "banned"
PROCESSING = "processing"
class UtilsLinkStats(Model):
key: str
stats: List['UtilsStats']
class UtilsLinkStatsExtended(Model):
key: str
stats: List['UtilsStatsExtended']
class UtilsShortLink(Model):
access_key: str
key: str
short_url: str
url: str
class UtilsStats(Model):
timestamp: int
views: int
class UtilsStatsCity(Model):
city_id: int
views: int
class UtilsStatsCountry(Model):
country_id: int
views: int
class UtilsStatsExtended(Model):
cities: List['UtilsStatsCity']
countries: List['UtilsStatsCountry']
sex_age: List['UtilsStatsSexAge']
timestamp: int
views: int
class UtilsStatsSexAge(Model):
age_range: str
female: int
male: int
class VideoLiveSettings(Model):
can_rewind: "BaseBoolInt"
is_endless: "BaseBoolInt"
max_duration: int
class VideoRestrictionButton(Model):
action: str
title: str
class VideoSaveResult(Model):
access_key: str
description: str
owner_id: int
title: str
upload_url: str
video_id: int
class VideoVideo(Model):
...
class VideoVideoAlbumFull(Model):
count: int
id: Optional[int] = None
image: Optional[List['VideoVideoImage']] = None
image_blur: Optional["BasePropertyExists"] = None
is_system: Optional["BasePropertyExists"] = None
owner_id: int
title: str
updated_time: int
class VideoVideoFiles(Model):
external: str
mp4_240: str
mp4_360: str
mp4_480: str
mp4_720: str
mp4_1080: str
flv_320: str
class VideoVideoFull(Model):
...
class VideoVideoImage(Model):
...
class WallAppPost(Model):
id: int
name: str
photo_130: str
photo_604: str
class WallAttachedNote(Model):
comments: int
date: int
id: int
owner_id: int
read_comments: int
title: str
view_url: str
class WallCarouselBase(Model):
carousel_offset: int
class WallCommentAttachment(Model):
audio: Optional["AudioAudio"] = None
doc: Optional["DocsDoc"] = None
link: Optional["BaseLink"] = None
market: Optional["MarketMarketItem"] = None
market_market_album: Optional["MarketMarketAlbum"] = None
note: Optional["WallAttachedNote"] = None
page: Optional["PagesWikipageFull"] = None
photo: Optional["PhotosPhoto"] = None
sticker: Optional["BaseSticker"] = None
type: "WallCommentAttachmentType"
video: Optional["VideoVideo"] = None
class WallCommentAttachmentType(enum.Enum):
PHOTO = "photo"
AUDIO = "audio"
VIDEO = "video"
DOC = "doc"
LINK = "link"
NOTE = "note"
PAGE = "page"
MARKET_MARKET_ALBUM = "market_market_album"
MARKET = "market"
STICKER = "sticker"
class WallGeo(Model):
coordinates: str
place: "BasePlace"
showmap: int
type: str
class WallGraffiti(Model):
id: int
owner_id: int
photo_200: str
photo_586: str
class WallPostCopyright(Model):
id: Optional[int] = None
link: str
name: str
type: str
class WallPostSource(Model):
data: str
platform: str
type: "WallPostSourceType"
url: str
class WallPostSourceType(enum.Enum):
VK = "vk"
WIDGET = "widget"
API = "api"
RSS = "rss"
SMS = "sms"
class WallPostType(enum.Enum):
POST = "post"
COPY = "copy"
REPLY = "reply"
POSTPONE = "postpone"
SUGGEST = "suggest"
class WallPostedPhoto(Model):
id: int
owner_id: int
photo_130: str
photo_604: str
class WallViews(Model):
count: int
class WallWallComment(Model):
attachments: Optional[List['WallCommentAttachment']] = None
date: int
from_id: int
id: int
likes: Optional["BaseLikesInfo"] = None
real_offset: Optional[int] = None
reply_to_comment: Optional[int] = None
reply_to_user: Optional[int] = None
text: str
thread: Optional["CommentThread"] = None
post_id: Optional[int] = None
owner_id: Optional[int] = None
parents_stack: Optional[List[int]] = None
deleted: Optional[bool] = None
class WallWallpost(Model):
access_key: str
attachments: List['WallWallpostAttachment']
copyright: "WallPostCopyright"
date: int
edited: int
from_id: int
geo: "WallGeo"
id: int
is_archived: bool
is_favorite: bool
likes: "BaseLikesInfo"
owner_id: int
post_source: "WallPostSource"
post_type: "WallPostType"
reposts: "BaseRepostsInfo"
signer_id: int
text: str
views: "WallViews"
class WallWallpostAttachment(Model):
access_key: Optional[str] = None
album: Optional["PhotosPhotoAlbum"] = None
app: Optional["WallAppPost"] = None
audio: Optional["AudioAudio"] = None
doc: Optional["DocsDoc"] = None
event: Optional["EventsEventAttach"] = None
group: Optional["GroupsGroupAttach"] = None
graffiti: Optional["WallGraffiti"] = None
link: Optional["BaseLink"] = None
market: Optional["MarketMarketItem"] = None
market_album: Optional["MarketMarketAlbum"] = None
note: Optional["WallAttachedNote"] = None
page: Optional["PagesWikipageFull"] = None
photo: Optional["PhotosPhoto"] = None
photos_list: Optional[List[str]] = None
poll: Optional["PollsPoll"] = None
posted_photo: Optional["WallPostedPhoto"] = None
type: "WallWallpostAttachmentType"
video: Optional["VideoVideo"] = None
class WallWallpostAttachmentType(enum.Enum):
PHOTO = "photo"
POSTED_PHOTO = "posted_photo"
AUDIO = "audio"
VIDEO = "video"
DOC = "doc"
LINK = "link"
GRAFFITI = "graffiti"
NOTE = "note"
APP = "app"
POLL = "poll"
PAGE = "page"
ALBUM = "album"
PHOTOS_LIST = "photos_list"
MARKET_MARKET_ALBUM = "market_market_album"
MARKET = "market"
EVENT = "event"
class WallWallpostFull(Model):
...
class WallWallpostToId(Model):
attachments: List['WallWallpostAttachment']
comments: "BaseCommentsInfo"
copy_owner_id: int
copy_post_id: int
date: int
from_id: int
geo: "WallGeo"
id: int
is_favorite: bool
likes: "BaseLikesInfo"
post_id: int
post_source: "WallPostSource"
post_type: "WallPostType"
reposts: "BaseRepostsInfo"
signer_id: int
text: str
to_id: int
class WidgetsCommentMedia(Model):
item_id: int
owner_id: int
thumb_src: str
type: "WidgetsCommentMediaType"
class WidgetsCommentMediaType(enum.Enum):
AUDIO = "audio"
PHOTO = "photo"
VIDEO = "video"
class WidgetsCommentReplies(Model):
can_post: "BaseBoolInt"
count: int
replies: List['WidgetsCommentRepliesItem']
class WidgetsCommentRepliesItem(Model):
cid: int
date: int
likes: "WidgetsWidgetLikes"
text: str
uid: int
user: "UsersUserFull"
class WidgetsWidgetComment(Model):
attachments: Optional[List['WallCommentAttachment']] = None
can_delete: Optional["BaseBoolInt"] = None
comments: Optional["WidgetsCommentReplies"] = None
date: int
from_id: int
id: int
likes: Optional["BaseLikesInfo"] = None
media: Optional["WidgetsCommentMedia"] = None
post_source: Optional["WallPostSource"] = None
post_type: int
reposts: Optional["BaseRepostsInfo"] = None
text: str
to_id: int
user: Optional["UsersUserFull"] = None
class WidgetsWidgetLikes(Model):
count: int
class WidgetsWidgetPage(Model):
comments: "BaseObjectCount"
date: int
description: str
id: int
likes: "BaseObjectCount"
page_id: str
photo: str
title: str
url: str
[v.update_forward_refs() for v in globals().values() if hasattr(v, "update_forward_refs")]
| 0
| 0
| 0
| 77,911
| 0
| 0
| 0
| 25
| 11,014
|
79ebda0ce039164287373a53487e4e2f1bccc2b6
| 3,649
|
py
|
Python
|
project/pro2-typing_test/utils.py
|
zltshadow/CS61A-2019-summer
|
0f5dd0be5f51927364aec1bc974526837328b695
|
[
"MIT"
] | 3
|
2021-11-21T06:09:39.000Z
|
2022-03-12T08:05:27.000Z
|
project/pro2-typing_test/utils.py
|
zltshadow/CS61A-2019-summer
|
0f5dd0be5f51927364aec1bc974526837328b695
|
[
"MIT"
] | null | null | null |
project/pro2-typing_test/utils.py
|
zltshadow/CS61A-2019-summer
|
0f5dd0be5f51927364aec1bc974526837328b695
|
[
"MIT"
] | null | null | null |
from math import sqrt
############################################################################################
# Important: Read over the information in the "Appendix: Utility Functions" in the Project #
# Project Specification in order to better understand how to use the functions below. #
############################################################################################
###############################
# Submitting design questions #
###############################
passphrase = '814716d640bad70cbb9c76c72f2810e06f588a1bc1039d2510acab2d'
def check_passphrase(p):
"""
You do not need to understand this code. This will only
be used to ensure you have entered the correct passphrase.
"""
import hashlib
return hashlib.sha224(p.encode('utf-8')).hexdigest()
#################
# Reading files #
#################
def close(file):
"""Closes the file object passed in. """
file.close()
def readable(file):
"""Return True if this file can be read from. """
return file.readable()
def readline(file):
"""
Return the first unread line from this file,
or the empty string if all lines are read.
"""
return file.readline()
def readlines(file):
"""
Return all unread lines in a list.
"""
return file.readlines()
############################
# String utility functions #
############################
def lower(s):
"""Return a copy of string s with all letters converted to lowercase."""
return s.lower()
def split(s, sep=None):
"""
Returns a list of words contained in s, which are
sequences of characters separated by a string sep.
By default, this splits on whitespace (spaces, tabs, etc.)
but by defining a different sep, you can split on arbitrary
characters.
"""
return s.split(sep)
def strip(s, chars=None):
"""
Return a version of s with characters in chars removed
from the start and end.
By default, removes whitespace characters.
"""
return s.strip(chars)
#########################################
# Functions relating to keyboard layout #
#########################################
KEY_LAYOUT = [["q", "w", "e", "r", "t", "y", "u", "i", "o", "p"],
["a", "s", "d", "f", "g", "h", "j", "k", "l"],
["z", "x", "c", "v", "b", "n", "m"]]
def distance(p1, p2):
"""Return the Euclidean distance between two points
The Euclidean distance between two points, (x1, y1) and (x2, y2)
is the square root of (x1 - x2) ** 2 + (y1 - y2) ** 2
>>> distance((0, 1), (1, 1))
1
>>> distance((1, 1), (1, 1))
0
>>> round(distance((4, 0), (0, 4)), 3)
5.657
"""
return sqrt((p1[0] - p2[0])**2 + (p1[1] - p2[1])**2)
def get_key_distances():
"""Return a new dictionary mapping key pairs to distances.
Each key of the dictionary is a tuple of two
letters as strings, and each value is the euclidean distance
between the two letters on a standard QWERTY keyboard normalized
such that the greatest distance is 2.0
The scaling is constant, so a pair of keys that are twice
as far have a distance value that is twice as great
>>> distances = get_key_distances()
>>> distances["a", "a"]
0.0
>>> distances["a", "d"] # 2.0 / 9
2.0
>>> distances["d", "a"]
2.0
"""
key_distance = {}
for i in range(len(KEY_LAYOUT)):
for j in range(len(KEY_LAYOUT[i])):
compute_pairwise_distances(i, j, key_distance)
max_value = max(key_distance.values())
return {key : value * 2 / max_value for key, value in key_distance.items()}
| 26.635036
| 92
| 0.585366
|
from math import sqrt
import string
############################################################################################
# Important: Read over the information in the "Appendix: Utility Functions" in the Project #
# Project Specification in order to better understand how to use the functions below. #
############################################################################################
###############################
# Submitting design questions #
###############################
passphrase = '814716d640bad70cbb9c76c72f2810e06f588a1bc1039d2510acab2d'
def check_passphrase(p):
"""
You do not need to understand this code. This will only
be used to ensure you have entered the correct passphrase.
"""
import hashlib
return hashlib.sha224(p.encode('utf-8')).hexdigest()
#################
# Reading files #
#################
def close(file):
"""Closes the file object passed in. """
file.close()
def readable(file):
"""Return True if this file can be read from. """
return file.readable()
def readline(file):
"""
Return the first unread line from this file,
or the empty string if all lines are read.
"""
return file.readline()
def readlines(file):
"""
Return all unread lines in a list.
"""
return file.readlines()
############################
# String utility functions #
############################
def lower(s):
"""Return a copy of string s with all letters converted to lowercase."""
return s.lower()
def split(s, sep=None):
"""
Returns a list of words contained in s, which are
sequences of characters separated by a string sep.
By default, this splits on whitespace (spaces, tabs, etc.)
but by defining a different sep, you can split on arbitrary
characters.
"""
return s.split(sep)
def strip(s, chars=None):
"""
Return a version of s with characters in chars removed
from the start and end.
By default, removes whitespace characters.
"""
return s.strip(chars)
#########################################
# Functions relating to keyboard layout #
#########################################
KEY_LAYOUT = [["q", "w", "e", "r", "t", "y", "u", "i", "o", "p"],
["a", "s", "d", "f", "g", "h", "j", "k", "l"],
["z", "x", "c", "v", "b", "n", "m"]]
def distance(p1, p2):
"""Return the Euclidean distance between two points
The Euclidean distance between two points, (x1, y1) and (x2, y2)
is the square root of (x1 - x2) ** 2 + (y1 - y2) ** 2
>>> distance((0, 1), (1, 1))
1
>>> distance((1, 1), (1, 1))
0
>>> round(distance((4, 0), (0, 4)), 3)
5.657
"""
return sqrt((p1[0] - p2[0])**2 + (p1[1] - p2[1])**2)
def get_key_distances():
"""Return a new dictionary mapping key pairs to distances.
Each key of the dictionary is a tuple of two
letters as strings, and each value is the euclidean distance
between the two letters on a standard QWERTY keyboard normalized
such that the greatest distance is 2.0
The scaling is constant, so a pair of keys that are twice
as far have a distance value that is twice as great
>>> distances = get_key_distances()
>>> distances["a", "a"]
0.0
>>> distances["a", "d"] # 2.0 / 9
2.0
>>> distances["d", "a"]
2.0
"""
key_distance = {}
def compute_pairwise_distances(i, j, d):
for x in range(len(KEY_LAYOUT)):
for y in range(len(KEY_LAYOUT[x])):
l1 = KEY_LAYOUT[i][j]
l2 = KEY_LAYOUT[x][y]
d[l1, l2] = distance((i, j), (x, y))
for i in range(len(KEY_LAYOUT)):
for j in range(len(KEY_LAYOUT[i])):
compute_pairwise_distances(i, j, key_distance)
max_value = max(key_distance.values())
return {key : value * 2 / max_value for key, value in key_distance.items()}
| 0
| 0
| 0
| 0
| 0
| 186
| 0
| -8
| 46
|
de57dabc2f021eb3cff5c6361aadded8586e7845
| 1,632
|
py
|
Python
|
aws_sam/fargateIR/tests/integration/test_full.py
|
andrewkrug/fargate-ir
|
9c5c49c34f435a8eb9123d686643890957724f25
|
[
"Apache-2.0"
] | 11
|
2019-12-05T17:56:34.000Z
|
2022-02-25T10:24:30.000Z
|
aws_sam/fargateIR/tests/integration/test_full.py
|
andrewkrug/fargate-ir
|
9c5c49c34f435a8eb9123d686643890957724f25
|
[
"Apache-2.0"
] | 2
|
2019-12-05T16:42:53.000Z
|
2019-12-05T17:38:31.000Z
|
aws_sam/fargateIR/tests/integration/test_full.py
|
andrewkrug/fargate-ir
|
9c5c49c34f435a8eb9123d686643890957724f25
|
[
"Apache-2.0"
] | 2
|
2019-12-06T03:18:10.000Z
|
2019-12-27T15:27:53.000Z
|
# Use an event structure that follows GuardDuty Schema 2.0 to simulate a ticketing system integration.
EVENT_FIXTURE = {
"detail-type": "GuardDuty Finding",
"source": "aws.guardduty",
"detail": {
"schemaVersion": "2.0",
"accountId": "874153891031",
"region": "us-west-2",
"partition": "aws",
"id": "b2b7236dda0e4eff8aa17738d9ad18c5",
"type": "Custom:UserReport/WebsiteDefacement",
"resource": {
"resourceType": "FargateContainer",
"instanceDetails": {
"tags": [
{"Key": "app", "Value": "fluffykittenwww"},
{"Key": "risk", "Value": "maximum"},
],
},
},
"severity": 10,
"createdAt": "2019-11-07T17:13:53.948Z",
"updatedAt": "2019-11-09T17:41:09.360Z",
"title": "A user has reported a defacement of fluffykitten securities main www site.",
"description": "All images on the site have been replaced with dogs instead of fluffy cats.",
"detail": {},
},
}
| 30.792453
| 102
| 0.586397
|
import os
from lambda_handler import handle
# Use an event structure that follows GuardDuty Schema 2.0 to simulate a ticketing system integration.
EVENT_FIXTURE = {
"detail-type": "GuardDuty Finding",
"source": "aws.guardduty",
"detail": {
"schemaVersion": "2.0",
"accountId": "874153891031",
"region": "us-west-2",
"partition": "aws",
"id": "b2b7236dda0e4eff8aa17738d9ad18c5",
"type": "Custom:UserReport/WebsiteDefacement",
"resource": {
"resourceType": "FargateContainer",
"instanceDetails": {
"tags": [
{"Key": "app", "Value": "fluffykittenwww"},
{"Key": "risk", "Value": "maximum"},
],
},
},
"severity": 10,
"createdAt": "2019-11-07T17:13:53.948Z",
"updatedAt": "2019-11-09T17:41:09.360Z",
"title": "A user has reported a defacement of fluffykitten securities main www site.",
"description": "All images on the site have been replaced with dogs instead of fluffy cats.",
"detail": {},
},
}
def test_phases():
os.environ["SLACK_CHANNEL"] = "alert-triage"
event = EVENT_FIXTURE
notify = handle.notify(event, context={})
event = notify
detect = handle.detect(event, context={})
event = detect
protect = handle.protect(event, context={})
event = protect
assert protect["detail"]["remediation"]["risk"] == "MAXIMUM"
assert notify is not None
assert detect is not None
assert protect is not None
handle.maximum_respond(event, context={})
| 0
| 0
| 0
| 0
| 0
| 476
| 0
| 0
| 67
|
ced0e92053dfc14cd64b84707b6b59c2d18deccc
| 340
|
py
|
Python
|
setup.py
|
rmatsum836/pyfooty
|
621fe06b4517223aab875cb60a88ee5825506c21
|
[
"MIT"
] | 1
|
2020-11-08T23:50:26.000Z
|
2020-11-08T23:50:26.000Z
|
setup.py
|
rmatsum836/pyfooty
|
621fe06b4517223aab875cb60a88ee5825506c21
|
[
"MIT"
] | 2
|
2021-01-05T00:29:54.000Z
|
2021-01-05T00:56:16.000Z
|
setup.py
|
rmatsum836/pyfooty
|
621fe06b4517223aab875cb60a88ee5825506c21
|
[
"MIT"
] | null | null | null |
from setuptools import setup
setup(name='pyfooty',
version='0.0',
description='Parse the fbref website with python',
url='https://github.com/rmatsum836/pyfooty',
author='Ray Matsumoto',
author_email='[email protected]',
license='MIT',
packages=['pyfooty'],
zip_safe=False)
| 28.333333
| 58
| 0.617647
|
from setuptools import setup
setup(name='pyfooty',
version='0.0',
description='Parse the fbref website with python',
url='https://github.com/rmatsum836/pyfooty',
author='Ray Matsumoto',
author_email='[email protected]',
license='MIT',
packages=['pyfooty'],
zip_safe=False)
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
6b680c1b1fcbc411b748a75b07e98af22697f813
| 19,783
|
py
|
Python
|
compflow/fortran.py
|
jb753/compflow
|
7ede6cb860a2573a1ab5e7e40b1591c3e72c3783
|
[
"MIT"
] | null | null | null |
compflow/fortran.py
|
jb753/compflow
|
7ede6cb860a2573a1ab5e7e40b1591c3e72c3783
|
[
"MIT"
] | 1
|
2022-03-04T12:10:26.000Z
|
2022-03-14T22:57:56.000Z
|
compflow/fortran.py
|
jb753/compflow
|
7ede6cb860a2573a1ab5e7e40b1591c3e72c3783
|
[
"MIT"
] | null | null | null |
"""This module wraps the fortran backend."""
import numpy as np
import compflow_fort_from_Ma as fort_from_Ma
import compflow_fort_der_from_Ma as fort_der_from_Ma
import compflow_fort_to_Ma as fort_to_Ma
def _restore_shape(func, args):
"""Call a function and restore output to same shape as first argument."""
shape = np.shape(args[0])
if shape == ():
return(func(*args)[0])
elif len(shape) == 1:
return(func(*args))
else:
return(func(*args).reshape(shape, order='F'))
# Functions from Ma
def To_T_from_Ma(Ma, ga):
r"""Stagnation temperature ratio as function of Mach number.
.. math::
\frac{T_0}{T} = 1 + \frac{\gamma - 1}{2} \Ma^2
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
To_T : array
Stagnation temperature ratio, :math:`T_0/T`.
"""
return _restore_shape(fort_from_Ma.to_t, (Ma,ga))
def Po_P_from_Ma(Ma,ga):
r"""Stagnation pressure ratio as function of Mach number.
.. math::
\frac{p_0}{p} = \left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^\tfrac{\gamma}{\gamma - 1}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Po_P : array
Stagnation pressure ratio, :math:`p_0/p`.
"""
return _restore_shape(fort_from_Ma.po_p, (Ma,ga))
def rhoo_rho_from_Ma(Ma,ga):
r"""Stagnation density ratio as function of Mach number.
.. math::
\frac{\rho_0}{\rho} = \left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^\tfrac{1}{\gamma - 1}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
rhoo_rho : array
Stagnation density ratio, :math:`\rho_0/\rho`.
"""
return _restore_shape(fort_from_Ma.rhoo_rho, (Ma,ga))
def V_cpTo_from_Ma(Ma,ga):
r"""Normalised velocity as function of Mach number.
.. math::
\frac{V}{\sqrt{c_p T_0}} = \sqrt{\gamma -1}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)^{-\tfrac{1}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
V_cpTo : array
Normalised velocity, :math:`V/\sqrt{c_p T_0}`.
"""
return _restore_shape(fort_from_Ma.v_cpto, (Ma,ga))
def mcpTo_APo_from_Ma(Ma,ga):
r"""Normalised mass flow as function of Mach number.
.. math::
\frac{\dot{m}\sqrt{c_p T_0}}{A p_0} =
\frac{\gamma}{\sqrt{\gamma -1}}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{-\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
mcpTo_APo : array
Normalised mass flow, :math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0}`.
"""
return _restore_shape(fort_from_Ma.mcpto_apo, (Ma,ga))
def mcpTo_AP_from_Ma(Ma,ga):
r"""Static normalised mass flow as function of Mach number.
.. math::
\frac{\dot{m}\sqrt{c_p T_0}}{A p} =
\frac{\gamma}{\sqrt{\gamma -1}}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{\tfrac{1}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
mcpTo_AP : array
Static pressure variant of normalised mass flow, :math:`{\dot{m}\sqrt{c_p T_0}}/{A p}`.
"""
return _restore_shape(fort_from_Ma.mcpto_ap, (Ma,ga))
def A_Acrit_from_Ma(Ma,ga):
r"""Ratio of area to choking area as function of Mach number.
.. math::
\frac{A}{A_*} = \frac{1}{\Ma}\left[\frac{2}{\gamma +1}
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)\right]
^{\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
A_Acrit : array
Ratio of area to choking area, :math:`A/A_*`.
"""
return _restore_shape(fort_from_Ma.a_acrit, (Ma,ga))
def Mash_from_Ma(Ma,ga):
r"""Post-shock Mach number as function of Mach number.
.. math::
\Ma_\mathrm{sh} = \left(\frac{1 + \frac{\gamma - 1}{2} \Ma^2}
{\gamma \Ma^2 - \frac{\gamma - 1}{2}} \right)^{\tfrac{1}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Mash : array
Post-shock Mach number, :math:`\Ma_\mathrm{sh}`.
"""
return _restore_shape(fort_from_Ma.mash, (Ma,ga))
def Posh_Po_from_Ma(Ma,ga):
r"""Shock stagnation pressure ratio as function of Mach number.
.. math::
\frac{p_{0\mathrm{sh}}}{p_0} = \left(
\frac{\frac{\gamma + 1}{2}\Ma^2}{1 + \frac{\gamma - 1}{2} \Ma^2}
\right)^{\tfrac{\gamma}{\gamma-1}}
\left(
\frac{2 \gamma }{\gamma + 1} \Ma^2 - \frac{\gamma - 1}{\gamma + 1}
\right)^{\tfrac{-1}{\gamma -1}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Posh_Po : array
Shock stagnation pressure ratio, :math:`p_{0\mathrm{sh}}/p_0`.
"""
return _restore_shape(fort_from_Ma.posh_po, (Ma,ga))
# Inversions to Ma
def Ma_from_To_T(To_T, ga):
r"""Mach number as function of stagnation temperature ratio.
The inverse of :func:`compflow.To_T_from_Ma`, which permits a direct
analytical solution.
.. math::
\Ma = \sqrt{\frac{2}{\gamma - 1} \left[\frac{T_0}{T} - 1\right]}
Returns `NaN` if input data is not physically possible, where
:math:`{T_0}/{T}<1`.
Parameters
----------
To_T : array
Stagnation temperature ratio, :math:`T_0/T`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.to_t, (To_T, ga))
def Ma_from_Po_P(Po_P, ga):
r"""Mach number as function of stagnation pressure ratio.
The inverse of :func:`compflow.Po_P_from_Ma`, which permits a direct
analytical solution.
.. math::
\Ma = \sqrt{ \frac{2}{\gamma - 1}\left[\left(\frac{p_0}{p}\right)
^\tfrac{\gamma - 1}{\gamma} - 1\right]}
Returns `NaN` if input data is not physically possible, where
:math:`{p_0}/{p}<1`.
Parameters
----------
Po_P : array
Stagnation pressure ratio, :math:`p_0/p`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.po_p, (Po_P, ga))
def Ma_from_rhoo_rho(rhoo_rho, ga):
r"""Mach number as function of stagnation density ratio.
The inverse of :func:`compflow.rhoo_rho_from_Ma`, which permits a direct
analytical solution.
.. math::
\Ma = \sqrt{ \frac{2}{\gamma - 1}\left[\left(\frac{\rho_0}{\rho}\right)
^{\gamma - 1} - 1\right]}
Returns `NaN` if input data is not physically possible, where
:math:`{\rho_0}/{\rho}<1`.
Parameters
----------
rhoo_rho : array
Stagnation density ratio, :math:`\rho_0/\rho`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.rhoo_rho, (rhoo_rho, ga))
def Ma_from_V_cpTo(V_cpTo, ga):
r"""Mach number as function of normalised velocity.
Inverse of :func:`compflow.V_cpTo_from_Ma`, which permits a direct
analytical solution.
.. math::
\Ma = \sqrt{\frac{1}{\gamma-1}\left[
\frac{\left(\frac{V}{\sqrt{c_p T_0}}\right)^2}
{1 - \frac{1}{2}\left(\frac{V}{\sqrt{c_p T_0}}\right)^2}
\right]}
Returns `NaN` if input data is not physically possible, where
:math:`V/\sqrt{c_pT_0} < 0` or :math:`V/\sqrt{c_pT_0} > \sqrt{2}`.
Parameters
----------
V_cpTo : array
Normalised velocity, :math:`V/\sqrt{c_p T_0}`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.v_cpto, (V_cpTo, ga))
def Ma_from_mcpTo_APo(mcpTo_APo, ga, sup=False):
r"""Mach number as function of normalised mass flow.
The inverse of :func:`compflow.mcpTo_APo_from_Ma`, which at a given value
of :math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0}` must be solved iteratively for
:math:`\Ma` using Newton's method.
.. math::
\frac{\dot{m}\sqrt{c_p T_0}}{A p_0} =
\frac{\gamma}{\sqrt{\gamma -1}}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{-\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
For each :math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0}`, there are two possible
values of :math:`\Ma`. Return the subsonic solution with :math:`\Ma\le 1`
by default; the supersonic solution with :math:`\Ma>`` is retrived by
setting the parameter `sup=True`.
Returns `NaN` if input data is not physically possible, where
:math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0} < 0`. The normalised mass flow
reaches a maximum at the sonic velocity :math:`\Ma=1`. Input data above the
maximum value correspond to choking --- also return `NaN` in this case.
Parameters
----------
mcpTo_APo : array
Normalised mass flow, :math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0}`.
ga : float
Ratio of specific heats, :math:`\gamma`.
sup : bool, default False
If true, return the supersonic solution, otherwise the subsonic
solution.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.mcpto_apo, (mcpTo_APo, ga, sup))
def Ma_from_mcpTo_AP(mcpTo_AP, ga):
r"""Mach number as function of static normalised mass flow.
The inverse of :func:`compflow.mcpTo_AP_from_Ma`, which at a given value of
:math:`{\dot{m}\sqrt{c_p T_0}}/{A p}` must be solved iteratively for
:math:`\Ma` using Newton's method.
.. math::
\frac{\dot{m}\sqrt{c_p T_0}}{A p} =
\frac{\gamma}{\sqrt{\gamma -1}}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{\tfrac{1}{2}}
Returns `NaN` if input data is not physically possible, where
:math:`{\dot{m}\sqrt{c_p T_0}}/{A p} < 0`.
Parameters
----------
mcpTo_AP : array
Static normalised mass flow, :math:`{\dot{m}\sqrt{c_p T_0}}/{A p}`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.mcpto_ap, (mcpTo_AP, ga))
def Ma_from_A_Acrit(A_Acrit, ga):
r"""Mach number as function of area to choking area ratio.
The inverse of :func:`compflow.A_Acrit_from_Ma`, which at a given value of
:math:`A/A_*` must be solved iteratively for :math:`\Ma` using Newton's
method.
.. math::
\frac{A}{A_*} = \frac{1}{\Ma}\left[
\frac{2}{\gamma +1} \left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
\right]^{\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
Returns `NaN` if input data is not physically possible, where :math:`A/A_*
< 1`.
Parameters
----------
A_Acrit : array
Ratio of area to choking area, :math:`A/A_*`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.a_acrit, (A_Acrit, ga))
def Ma_from_Mash(Mash, ga):
r"""Mach number as function of post-shock Mach number.
The inverse of :func:`compflow.Mash_from_Ma`, which at a given value of
:math:`\Ma_\mathrm{sh}` must be solved iteratively for :math:`\Ma` using
Newton's method.
.. math::
\Ma_\mathrm{sh} = \left(
\frac{1 + \frac{\gamma - 1}{2} \Ma^2}
{\gamma \Ma^2 - \frac{\gamma - 1}{2}}
\right)^{\tfrac{1}{2}}
Returns `NaN` if input data is not physically possible, where
:math:`\Ma_\mathrm{sh}>1` or :math:`\Ma_\mathrm{sh}<0`.
Parameters
----------
Mash : array
Post-shock Mach number, :math:`\Ma_\mathrm{sh}`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.mash, (Mash, ga))
def Ma_from_Posh_Po(Posh_Po, ga):
r"""Mach number as function of shock stagnation pressure ratio.
The inverse of :func:`compflow.Posh_Po_from_Ma`, which at a given value of
:math:`p_{0\mathrm{sh}}/p_0` must be solved iteratively for :math:`\Ma`
using Newton's method.
.. math::
\frac{p_{0\mathrm{sh}}}{p_0} =
\left(\frac{\frac{\gamma+1}{2}\Ma^2}{1+\frac{\gamma-1}{2}\Ma^2}\right)
^{\tfrac{\gamma}{\gamma-1}}
\left(\frac{2\gamma}{\gamma+1}\Ma^2-\frac{\gamma-1}{\gamma+1}\right)
^{\tfrac{-1}{\gamma -1}}
Returns `NaN` if input data is not physically possible, where
:math:`p_{0\mathrm{sh}}/p_0 > 1` or :math:`p_{0\mathrm{sh}}/p_0 < 0`.
Parameters
----------
Posh_Po : array
Shock stagnation pressure ratio, :math:`p_{0\mathrm{sh}}/p_0`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.posh_po, (Posh_Po, ga))
# Derivatives from Ma
def der_To_T_from_Ma(Ma, ga):
r"""Derivative of stagnation temperature ratio by Mach number.
The derivative of :func:`compflow.To_T_from_Ma` with respect to Mach
number.
.. math::
\frac{\D}{\D\Ma}\left(\frac{T_0}{T}\right) = \left(\gamma - 1\right)\Ma
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_To_T : array
Derivative of stagnation temperature ratio,
:math:`\DMa(T_0/T)`.
"""
return _restore_shape(fort_der_from_Ma.to_t, (Ma,ga))
def der_Po_P_from_Ma(Ma, ga):
r"""Derivative of stagnation pressure ratio by Mach number.
The derivative of :func:`compflow.Po_P_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{p_0}{p}\right) =
\gamma \Ma \left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^\tfrac{1}{\gamma - 1}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_Po_P : array
Derivative of stagnation pressure ratio, :math:`\DMa(p_0/p)`.
"""
return _restore_shape(fort_der_from_Ma.po_p, (Ma,ga))
def der_rhoo_rho_from_Ma(Ma,ga):
r"""Derivative of stagnation density ratio by Mach number.
The derivative of :func:`compflow.rhoo_rho_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{\rho_0}{\rho}\right) =
\Ma\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^\tfrac{-1}{\gamma - 1}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_rhoo_rho : array
Derivative of stagnation density ratio, :math:`\DMa(\rho_0/\rho)`.
"""
return _restore_shape(fort_der_from_Ma.rhoo_rho, (Ma,ga))
def der_V_cpTo_from_Ma(Ma, ga):
r"""Derivative of normalised velocity by Mach number.
The derivative of :func:`compflow.V_cpTo_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{V}{\sqrt{c_p T_0}}\right) = {\sqrt{\gamma -1}}
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)^{-\tfrac{3}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_V_cpTo : array
Derivative of normalised velocity, :math:`\DMa(V/\sqrt{c_p T_0})`.
"""
return _restore_shape(fort_der_from_Ma.v_cpto, (Ma,ga))
def der_mcpTo_APo_from_Ma(Ma, ga):
r"""Derivative of normalised mass flow by Mach number.
The derivative of :func:`compflow.mcpTo_APo_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{\dot{m}\sqrt{c_p T_0}}{A p_0} \right)=
\frac{\gamma}{\sqrt{\gamma -1}}
\left(1 - \frac{\frac{\gamma + 1}{2} \Ma^2}
{1 + \frac{\gamma - 1}{2} \Ma^2 } \right)
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{-\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_mcpTo_APo : array
Derivative of normalised mass flow,
:math:`\DMa({\dot{m}\sqrt{c_pT_0}}/{Ap_0})`.
"""
return _restore_shape(fort_der_from_Ma.mcpto_apo, (Ma,ga))
def der_mcpTo_AP_from_Ma(Ma, ga):
r"""Derivative of static normalised mass flow by Mach number.
The derivative of :func:`compflow.mcpTo_AP_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{\dot{m}\sqrt{c_p T_0}}{A p} \right)=
\frac{\gamma}{\sqrt{\gamma -1}}
\Big(1 + (\gamma - 1) \Ma^2 \Big)
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)^{-\tfrac{1}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_mcpTo_AP : array
Derivative of static pressure variant of normalised mass flow, :math:`\DMa({\dot{m}\sqrt{c_p T_0}}/{A p})`.
"""
return _restore_shape(fort_der_from_Ma.mcpto_ap, (Ma,ga))
def der_A_Acrit_from_Ma(Ma, ga):
r"""Derivative of choking area ratio by Mach number.
The derivative of :func:`compflow.A_Acrit_from_Ma` with respect to Mach
number.
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_A_Acrit : array
Derivative of ratio of area to choking area, :math:`\DMa(A/A_*)`.
"""
return _restore_shape(fort_der_from_Ma.a_acrit, (Ma,ga))
def der_Mash_from_Ma(Ma, ga):
r"""Derivative of post-shock Mach number by Mach number.
The derivative of :func:`compflow.Mash_from_Ma` with respect to Mach
number.
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_Mash : array
Derivative of post-shock Mach number, :math:`\DMa(\Ma_\mathrm{sh})`.
"""
return _restore_shape(fort_der_from_Ma.mash, (Ma,ga))
def der_Posh_Po_from_Ma(Ma, ga):
r"""Derivative of shock pressure ratio by Mach number.
The derivative of :func:`compflow.Posh_Po_from_Ma` with respect to Mach
number.
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_Posh_Po : array
Derivative of shock stagnation pressure ratio,
:math:`\DMa(p_{0\mathrm{sh}}/p_0)`.
"""
return _restore_shape(fort_der_from_Ma.posh_po, (Ma,ga))
| 27.211829
| 115
| 0.577769
|
"""This module wraps the fortran backend."""
import numpy as np
import compflow_fort_from_Ma as fort_from_Ma
import compflow_fort_der_from_Ma as fort_der_from_Ma
import compflow_fort_to_Ma as fort_to_Ma
def _restore_shape(func, args):
"""Call a function and restore output to same shape as first argument."""
shape = np.shape(args[0])
if shape == ():
return(func(*args)[0])
elif len(shape) == 1:
return(func(*args))
else:
return(func(*args).reshape(shape, order='F'))
# Functions from Ma
def To_T_from_Ma(Ma, ga):
r"""Stagnation temperature ratio as function of Mach number.
.. math::
\frac{T_0}{T} = 1 + \frac{\gamma - 1}{2} \Ma^2
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
To_T : array
Stagnation temperature ratio, :math:`T_0/T`.
"""
return _restore_shape(fort_from_Ma.to_t, (Ma,ga))
def Po_P_from_Ma(Ma,ga):
r"""Stagnation pressure ratio as function of Mach number.
.. math::
\frac{p_0}{p} = \left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^\tfrac{\gamma}{\gamma - 1}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Po_P : array
Stagnation pressure ratio, :math:`p_0/p`.
"""
return _restore_shape(fort_from_Ma.po_p, (Ma,ga))
def rhoo_rho_from_Ma(Ma,ga):
r"""Stagnation density ratio as function of Mach number.
.. math::
\frac{\rho_0}{\rho} = \left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^\tfrac{1}{\gamma - 1}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
rhoo_rho : array
Stagnation density ratio, :math:`\rho_0/\rho`.
"""
return _restore_shape(fort_from_Ma.rhoo_rho, (Ma,ga))
def V_cpTo_from_Ma(Ma,ga):
r"""Normalised velocity as function of Mach number.
.. math::
\frac{V}{\sqrt{c_p T_0}} = \sqrt{\gamma -1}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)^{-\tfrac{1}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
V_cpTo : array
Normalised velocity, :math:`V/\sqrt{c_p T_0}`.
"""
return _restore_shape(fort_from_Ma.v_cpto, (Ma,ga))
def mcpTo_APo_from_Ma(Ma,ga):
r"""Normalised mass flow as function of Mach number.
.. math::
\frac{\dot{m}\sqrt{c_p T_0}}{A p_0} =
\frac{\gamma}{\sqrt{\gamma -1}}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{-\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
mcpTo_APo : array
Normalised mass flow, :math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0}`.
"""
return _restore_shape(fort_from_Ma.mcpto_apo, (Ma,ga))
def mcpTo_AP_from_Ma(Ma,ga):
r"""Static normalised mass flow as function of Mach number.
.. math::
\frac{\dot{m}\sqrt{c_p T_0}}{A p} =
\frac{\gamma}{\sqrt{\gamma -1}}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{\tfrac{1}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
mcpTo_AP : array
Static pressure variant of normalised mass flow, :math:`{\dot{m}\sqrt{c_p T_0}}/{A p}`.
"""
return _restore_shape(fort_from_Ma.mcpto_ap, (Ma,ga))
def A_Acrit_from_Ma(Ma,ga):
r"""Ratio of area to choking area as function of Mach number.
.. math::
\frac{A}{A_*} = \frac{1}{\Ma}\left[\frac{2}{\gamma +1}
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)\right]
^{\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
A_Acrit : array
Ratio of area to choking area, :math:`A/A_*`.
"""
return _restore_shape(fort_from_Ma.a_acrit, (Ma,ga))
def Mash_from_Ma(Ma,ga):
r"""Post-shock Mach number as function of Mach number.
.. math::
\Ma_\mathrm{sh} = \left(\frac{1 + \frac{\gamma - 1}{2} \Ma^2}
{\gamma \Ma^2 - \frac{\gamma - 1}{2}} \right)^{\tfrac{1}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Mash : array
Post-shock Mach number, :math:`\Ma_\mathrm{sh}`.
"""
return _restore_shape(fort_from_Ma.mash, (Ma,ga))
def Posh_Po_from_Ma(Ma,ga):
r"""Shock stagnation pressure ratio as function of Mach number.
.. math::
\frac{p_{0\mathrm{sh}}}{p_0} = \left(
\frac{\frac{\gamma + 1}{2}\Ma^2}{1 + \frac{\gamma - 1}{2} \Ma^2}
\right)^{\tfrac{\gamma}{\gamma-1}}
\left(
\frac{2 \gamma }{\gamma + 1} \Ma^2 - \frac{\gamma - 1}{\gamma + 1}
\right)^{\tfrac{-1}{\gamma -1}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Posh_Po : array
Shock stagnation pressure ratio, :math:`p_{0\mathrm{sh}}/p_0`.
"""
return _restore_shape(fort_from_Ma.posh_po, (Ma,ga))
# Inversions to Ma
def Ma_from_To_T(To_T, ga):
r"""Mach number as function of stagnation temperature ratio.
The inverse of :func:`compflow.To_T_from_Ma`, which permits a direct
analytical solution.
.. math::
\Ma = \sqrt{\frac{2}{\gamma - 1} \left[\frac{T_0}{T} - 1\right]}
Returns `NaN` if input data is not physically possible, where
:math:`{T_0}/{T}<1`.
Parameters
----------
To_T : array
Stagnation temperature ratio, :math:`T_0/T`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.to_t, (To_T, ga))
def Ma_from_Po_P(Po_P, ga):
r"""Mach number as function of stagnation pressure ratio.
The inverse of :func:`compflow.Po_P_from_Ma`, which permits a direct
analytical solution.
.. math::
\Ma = \sqrt{ \frac{2}{\gamma - 1}\left[\left(\frac{p_0}{p}\right)
^\tfrac{\gamma - 1}{\gamma} - 1\right]}
Returns `NaN` if input data is not physically possible, where
:math:`{p_0}/{p}<1`.
Parameters
----------
Po_P : array
Stagnation pressure ratio, :math:`p_0/p`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.po_p, (Po_P, ga))
def Ma_from_rhoo_rho(rhoo_rho, ga):
r"""Mach number as function of stagnation density ratio.
The inverse of :func:`compflow.rhoo_rho_from_Ma`, which permits a direct
analytical solution.
.. math::
\Ma = \sqrt{ \frac{2}{\gamma - 1}\left[\left(\frac{\rho_0}{\rho}\right)
^{\gamma - 1} - 1\right]}
Returns `NaN` if input data is not physically possible, where
:math:`{\rho_0}/{\rho}<1`.
Parameters
----------
rhoo_rho : array
Stagnation density ratio, :math:`\rho_0/\rho`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.rhoo_rho, (rhoo_rho, ga))
def Ma_from_V_cpTo(V_cpTo, ga):
r"""Mach number as function of normalised velocity.
Inverse of :func:`compflow.V_cpTo_from_Ma`, which permits a direct
analytical solution.
.. math::
\Ma = \sqrt{\frac{1}{\gamma-1}\left[
\frac{\left(\frac{V}{\sqrt{c_p T_0}}\right)^2}
{1 - \frac{1}{2}\left(\frac{V}{\sqrt{c_p T_0}}\right)^2}
\right]}
Returns `NaN` if input data is not physically possible, where
:math:`V/\sqrt{c_pT_0} < 0` or :math:`V/\sqrt{c_pT_0} > \sqrt{2}`.
Parameters
----------
V_cpTo : array
Normalised velocity, :math:`V/\sqrt{c_p T_0}`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.v_cpto, (V_cpTo, ga))
def Ma_from_mcpTo_APo(mcpTo_APo, ga, sup=False):
r"""Mach number as function of normalised mass flow.
The inverse of :func:`compflow.mcpTo_APo_from_Ma`, which at a given value
of :math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0}` must be solved iteratively for
:math:`\Ma` using Newton's method.
.. math::
\frac{\dot{m}\sqrt{c_p T_0}}{A p_0} =
\frac{\gamma}{\sqrt{\gamma -1}}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{-\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
For each :math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0}`, there are two possible
values of :math:`\Ma`. Return the subsonic solution with :math:`\Ma\le 1`
by default; the supersonic solution with :math:`\Ma>`` is retrived by
setting the parameter `sup=True`.
Returns `NaN` if input data is not physically possible, where
:math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0} < 0`. The normalised mass flow
reaches a maximum at the sonic velocity :math:`\Ma=1`. Input data above the
maximum value correspond to choking --- also return `NaN` in this case.
Parameters
----------
mcpTo_APo : array
Normalised mass flow, :math:`{\dot{m}\sqrt{c_p T_0}}/{A p_0}`.
ga : float
Ratio of specific heats, :math:`\gamma`.
sup : bool, default False
If true, return the supersonic solution, otherwise the subsonic
solution.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.mcpto_apo, (mcpTo_APo, ga, sup))
def Ma_from_mcpTo_AP(mcpTo_AP, ga):
r"""Mach number as function of static normalised mass flow.
The inverse of :func:`compflow.mcpTo_AP_from_Ma`, which at a given value of
:math:`{\dot{m}\sqrt{c_p T_0}}/{A p}` must be solved iteratively for
:math:`\Ma` using Newton's method.
.. math::
\frac{\dot{m}\sqrt{c_p T_0}}{A p} =
\frac{\gamma}{\sqrt{\gamma -1}}\, \Ma
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{\tfrac{1}{2}}
Returns `NaN` if input data is not physically possible, where
:math:`{\dot{m}\sqrt{c_p T_0}}/{A p} < 0`.
Parameters
----------
mcpTo_AP : array
Static normalised mass flow, :math:`{\dot{m}\sqrt{c_p T_0}}/{A p}`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.mcpto_ap, (mcpTo_AP, ga))
def Ma_from_A_Acrit(A_Acrit, ga):
r"""Mach number as function of area to choking area ratio.
The inverse of :func:`compflow.A_Acrit_from_Ma`, which at a given value of
:math:`A/A_*` must be solved iteratively for :math:`\Ma` using Newton's
method.
.. math::
\frac{A}{A_*} = \frac{1}{\Ma}\left[
\frac{2}{\gamma +1} \left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
\right]^{\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
Returns `NaN` if input data is not physically possible, where :math:`A/A_*
< 1`.
Parameters
----------
A_Acrit : array
Ratio of area to choking area, :math:`A/A_*`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.a_acrit, (A_Acrit, ga))
def Ma_from_Mash(Mash, ga):
r"""Mach number as function of post-shock Mach number.
The inverse of :func:`compflow.Mash_from_Ma`, which at a given value of
:math:`\Ma_\mathrm{sh}` must be solved iteratively for :math:`\Ma` using
Newton's method.
.. math::
\Ma_\mathrm{sh} = \left(
\frac{1 + \frac{\gamma - 1}{2} \Ma^2}
{\gamma \Ma^2 - \frac{\gamma - 1}{2}}
\right)^{\tfrac{1}{2}}
Returns `NaN` if input data is not physically possible, where
:math:`\Ma_\mathrm{sh}>1` or :math:`\Ma_\mathrm{sh}<0`.
Parameters
----------
Mash : array
Post-shock Mach number, :math:`\Ma_\mathrm{sh}`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.mash, (Mash, ga))
def Ma_from_Posh_Po(Posh_Po, ga):
r"""Mach number as function of shock stagnation pressure ratio.
The inverse of :func:`compflow.Posh_Po_from_Ma`, which at a given value of
:math:`p_{0\mathrm{sh}}/p_0` must be solved iteratively for :math:`\Ma`
using Newton's method.
.. math::
\frac{p_{0\mathrm{sh}}}{p_0} =
\left(\frac{\frac{\gamma+1}{2}\Ma^2}{1+\frac{\gamma-1}{2}\Ma^2}\right)
^{\tfrac{\gamma}{\gamma-1}}
\left(\frac{2\gamma}{\gamma+1}\Ma^2-\frac{\gamma-1}{\gamma+1}\right)
^{\tfrac{-1}{\gamma -1}}
Returns `NaN` if input data is not physically possible, where
:math:`p_{0\mathrm{sh}}/p_0 > 1` or :math:`p_{0\mathrm{sh}}/p_0 < 0`.
Parameters
----------
Posh_Po : array
Shock stagnation pressure ratio, :math:`p_{0\mathrm{sh}}/p_0`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
Ma : array
Mach number, :math:`\Ma`.
"""
return _restore_shape(fort_to_Ma.posh_po, (Posh_Po, ga))
# Derivatives from Ma
def der_To_T_from_Ma(Ma, ga):
r"""Derivative of stagnation temperature ratio by Mach number.
The derivative of :func:`compflow.To_T_from_Ma` with respect to Mach
number.
.. math::
\frac{\D}{\D\Ma}\left(\frac{T_0}{T}\right) = \left(\gamma - 1\right)\Ma
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_To_T : array
Derivative of stagnation temperature ratio,
:math:`\DMa(T_0/T)`.
"""
return _restore_shape(fort_der_from_Ma.to_t, (Ma,ga))
def der_Po_P_from_Ma(Ma, ga):
r"""Derivative of stagnation pressure ratio by Mach number.
The derivative of :func:`compflow.Po_P_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{p_0}{p}\right) =
\gamma \Ma \left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^\tfrac{1}{\gamma - 1}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_Po_P : array
Derivative of stagnation pressure ratio, :math:`\DMa(p_0/p)`.
"""
return _restore_shape(fort_der_from_Ma.po_p, (Ma,ga))
def der_rhoo_rho_from_Ma(Ma,ga):
r"""Derivative of stagnation density ratio by Mach number.
The derivative of :func:`compflow.rhoo_rho_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{\rho_0}{\rho}\right) =
\Ma\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^\tfrac{-1}{\gamma - 1}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_rhoo_rho : array
Derivative of stagnation density ratio, :math:`\DMa(\rho_0/\rho)`.
"""
return _restore_shape(fort_der_from_Ma.rhoo_rho, (Ma,ga))
def der_V_cpTo_from_Ma(Ma, ga):
r"""Derivative of normalised velocity by Mach number.
The derivative of :func:`compflow.V_cpTo_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{V}{\sqrt{c_p T_0}}\right) = {\sqrt{\gamma -1}}
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)^{-\tfrac{3}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_V_cpTo : array
Derivative of normalised velocity, :math:`\DMa(V/\sqrt{c_p T_0})`.
"""
return _restore_shape(fort_der_from_Ma.v_cpto, (Ma,ga))
def der_mcpTo_APo_from_Ma(Ma, ga):
r"""Derivative of normalised mass flow by Mach number.
The derivative of :func:`compflow.mcpTo_APo_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{\dot{m}\sqrt{c_p T_0}}{A p_0} \right)=
\frac{\gamma}{\sqrt{\gamma -1}}
\left(1 - \frac{\frac{\gamma + 1}{2} \Ma^2}
{1 + \frac{\gamma - 1}{2} \Ma^2 } \right)
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)
^{-\tfrac{1}{2}\tfrac{\gamma + 1}{\gamma - 1}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_mcpTo_APo : array
Derivative of normalised mass flow,
:math:`\DMa({\dot{m}\sqrt{c_pT_0}}/{Ap_0})`.
"""
return _restore_shape(fort_der_from_Ma.mcpto_apo, (Ma,ga))
def der_mcpTo_AP_from_Ma(Ma, ga):
r"""Derivative of static normalised mass flow by Mach number.
The derivative of :func:`compflow.mcpTo_AP_from_Ma` with respect to Mach
number.
.. math::
\DMa\left(\frac{\dot{m}\sqrt{c_p T_0}}{A p} \right)=
\frac{\gamma}{\sqrt{\gamma -1}}
\Big(1 + (\gamma - 1) \Ma^2 \Big)
\left(1 + \frac{\gamma - 1}{2} \Ma^2 \right)^{-\tfrac{1}{2}}
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_mcpTo_AP : array
Derivative of static pressure variant of normalised mass flow, :math:`\DMa({\dot{m}\sqrt{c_p T_0}}/{A p})`.
"""
return _restore_shape(fort_der_from_Ma.mcpto_ap, (Ma,ga))
def der_A_Acrit_from_Ma(Ma, ga):
r"""Derivative of choking area ratio by Mach number.
The derivative of :func:`compflow.A_Acrit_from_Ma` with respect to Mach
number.
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_A_Acrit : array
Derivative of ratio of area to choking area, :math:`\DMa(A/A_*)`.
"""
return _restore_shape(fort_der_from_Ma.a_acrit, (Ma,ga))
def der_Mash_from_Ma(Ma, ga):
r"""Derivative of post-shock Mach number by Mach number.
The derivative of :func:`compflow.Mash_from_Ma` with respect to Mach
number.
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_Mash : array
Derivative of post-shock Mach number, :math:`\DMa(\Ma_\mathrm{sh})`.
"""
return _restore_shape(fort_der_from_Ma.mash, (Ma,ga))
def der_Posh_Po_from_Ma(Ma, ga):
r"""Derivative of shock pressure ratio by Mach number.
The derivative of :func:`compflow.Posh_Po_from_Ma` with respect to Mach
number.
Parameters
----------
Ma : array
Mach number, :math:`\Ma`.
ga : float
Ratio of specific heats, :math:`\gamma`.
Returns
-------
der_Posh_Po : array
Derivative of shock stagnation pressure ratio,
:math:`\DMa(p_{0\mathrm{sh}}/p_0)`.
"""
return _restore_shape(fort_der_from_Ma.posh_po, (Ma,ga))
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
ed0b665e5274119fc4253441bc0c65ee3ffef274
| 7,378
|
py
|
Python
|
userbot/plugins/ping.py
|
aksr-aashish/FIREXUSERBOT
|
dff0b7bf028cb27779626ce523402346cc990402
|
[
"MIT"
] | null | null | null |
userbot/plugins/ping.py
|
aksr-aashish/FIREXUSERBOT
|
dff0b7bf028cb27779626ce523402346cc990402
|
[
"MIT"
] | 1
|
2022-01-09T11:35:06.000Z
|
2022-01-09T11:35:06.000Z
|
userbot/plugins/ping.py
|
aksr-aashish/FIREXUSERBOT
|
dff0b7bf028cb27779626ce523402346cc990402
|
[
"MIT"
] | null | null | null |
import datetime
import os
from .. import ALIVE_NAME
from ..cmdhelp import CmdHelp
DEFAULTUSER = str(ALIVE_NAME) if ALIVE_NAME else "eviral User"
eviral = borg.uid
eviral_IMG = os.environ.get(
"PING_PIC", "https://te.legra.ph/file/a59da36828333262c9848.jpg"
)
start = datetime.datetime.now()
end = datetime.datetime.now()
ms = (end - start).microseconds / 1000
CmdHelp("ping").add_command(
"ping", None, "Shows you the ping speed of server"
).add_command(
"hbping", None, "Shows you the ping speed of server with an animation"
).add_type(
"Official"
).add()
| 82.898876
| 410
| 0.197343
|
import asyncio
import datetime
import os
from .. import ALIVE_NAME
from ..cmdhelp import CmdHelp
from ..utils import admin_cmd, edit_or_reply, sudo_cmd
from . import *
DEFAULTUSER = str(ALIVE_NAME) if ALIVE_NAME else "eviral User"
eviral = borg.uid
eviral_IMG = os.environ.get(
"PING_PIC", "https://te.legra.ph/file/a59da36828333262c9848.jpg"
)
start = datetime.datetime.now()
end = datetime.datetime.now()
ms = (end - start).microseconds / 1000
@bot.on(admin_cmd(pattern=f"hbping$", outgoing=True))
@bot.on(sudo_cmd(pattern='hbping$', allow_sudo=True))
async def _(event):
if event.fwd_from:
return
animation_interval = 0.2
animation_ttl = range(26)
await edit_or_reply(event, "ping....")
animation_chars = [
"⬛⬛⬛⬛⬛⬛⬛⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ ",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ ",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛⬛📶📶📶📶📶⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛⬛📶📶📶📶📶⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛⬛📶📶📶📶📶⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛⬛📶📶📶📶📶⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛📶⬛⬛⬛📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛⬛📶📶📶📶📶⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛📶⬛⬛⬛📶⬛ \n⬛⬛📶📶⬛⬛📶⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛⬛📶📶📶📶📶⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛📶⬛⬛⬛📶⬛ \n⬛⬛📶📶⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛⬛📶📶📶📶📶⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛📶⬛⬛⬛📶⬛ \n⬛⬛📶📶⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛📶📶📶📶📶⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛⬛📶📶📶📶📶⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛📶⬛⬛⬛📶⬛ \n⬛⬛📶📶⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛",
"⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛📶⬛⬛📶⬛ \n⬛⬛⬛⬛⬛📶📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛📶⬛⬛⬛ \n⬛⬛⬛⬛📶⬛⬛⬛⬛ \n⬛📶📶📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛⬛📶📶📶📶📶⬛⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛⬛⬛⬛⬛📶⬛ \n⬛📶⬛📶⬛⬛⬛📶⬛ \n⬛⬛📶📶⬛⬛📶⬛⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n⬛📶⬛📶📶📶📶📶⬛ \n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n \n My 🇵 🇮 🇳 🇬 Is : Calculating...",
]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 26])
await edit_or_reply(
event,
"⬛⬛⬛⬛⬛⬛⬛⬛⬛\n⬛📶📶📶📶📶📶📶⬛\n⬛⬛⬛⬛📶⬛⬛📶⬛\n⬛⬛⬛⬛📶⬛⬛📶⬛\n⬛⬛⬛⬛📶⬛⬛📶⬛\n⬛⬛⬛⬛⬛📶📶⬛⬛\n⬛⬛⬛⬛⬛⬛⬛⬛⬛\n⬛⬛📶📶📶📶📶⬛⬛\n⬛📶⬛⬛⬛⬛⬛📶⬛\n⬛📶⬛⬛⬛⬛⬛📶⬛\n⬛📶⬛⬛⬛⬛⬛📶⬛\n⬛⬛📶📶📶📶📶⬛⬛\n⬛⬛⬛⬛⬛⬛⬛⬛⬛\n⬛📶📶📶📶📶📶📶⬛\n⬛⬛⬛⬛⬛⬛📶⬛⬛\n⬛⬛⬛⬛⬛📶⬛⬛⬛\n⬛⬛⬛⬛📶⬛⬛⬛⬛\n⬛📶📶📶📶📶📶📶⬛\n⬛⬛⬛⬛⬛⬛⬛⬛⬛\n⬛⬛📶📶📶📶📶⬛⬛\n⬛📶⬛⬛⬛⬛⬛📶⬛\n⬛📶⬛⬛⬛⬛⬛📶⬛\n⬛📶⬛📶⬛⬛⬛📶⬛\n⬛⬛📶📶⬛⬛📶⬛⬛\n⬛⬛⬛⬛⬛⬛⬛⬛⬛\n⬛📶⬛📶📶📶📶📶⬛\n⬛⬛⬛⬛⬛⬛⬛⬛⬛ \n \n \n My 🇵 🇮 🇳 🇬 Is : {} ms".format(
ms
),
)
@bot.on(admin_cmd(pattern="ping$", outgoing=True))
@bot.on(sudo_cmd(pattern="ping$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "**(❛ ᑭσɳց ❜!**")
if eviral_IMG:
eviral_caption = (
f"**💞Pong💞**\n\n 🔸️ {ms}\n 🔹️ **𝙼𝚢** **𝙼𝚊𝚜𝚝𝚎𝚛** ~『{eviral_mention}』"
)
await event.client.send_file(event.chat_id, eviral_IMG, caption=eviral_caption)
await event.delete()
CmdHelp("ping").add_command(
"ping", None, "Shows you the ping speed of server"
).add_command(
"hbping", None, "Shows you the ping speed of server with an animation"
).add_type(
"Official"
).add()
| 14,009
| 2,325
| 0
| 0
| 0
| 0
| 0
| 20
| 112
|
ee73b60e03568dfaebc7bf0d67bd3f2349a997e1
| 965
|
py
|
Python
|
collate_info.py
|
justincely/hstcos_dark_data
|
a42042ae7babc73c7feb5058186ea4fa42e9c0be
|
[
"BSD-3-Clause"
] | null | null | null |
collate_info.py
|
justincely/hstcos_dark_data
|
a42042ae7babc73c7feb5058186ea4fa42e9c0be
|
[
"BSD-3-Clause"
] | null | null | null |
collate_info.py
|
justincely/hstcos_dark_data
|
a42042ae7babc73c7feb5058186ea4fa42e9c0be
|
[
"BSD-3-Clause"
] | null | null | null |
import glob
import json
from copy import deepcopy
import numpy as np
from astropy.table import Table
from astropy.time import Time
from cos_monitoring import dark
from cos_monitoring.dark import solar
solar.get_solar_data("./")
data = Table.read('solar_flux.txt', format='ascii')
all_info = []
for item in glob.glob("new/*_corrtag_c.fits") + glob.glob('out/*_corrtag_?.fits'):
print(item)
for item in dark.pull_orbital_info(item, step=700):
try:
darkrate = item['dark']
except KeyError:
continue
t = Time(item['date'], format='decimalyear').mjd
index = np.argmin(abs(data['col1'] - t))
item['fsol'] = float(data['col2'][index])
print(item)
#if darkrate < 2e-6:
# continue
all_info.append(deepcopy(item))
with open('./orbital_info.json', 'w') as out:
json.dump(all_info, out, sort_keys=False, indent=4, separators=(',', ': '))
| 20.978261
| 82
| 0.634197
|
import glob
import json
from copy import deepcopy
import numpy as np
from astropy.table import Table
from astropy.time import Time
from cos_monitoring import dark
from cos_monitoring.dark import solar
import pdb
solar.get_solar_data("./")
data = Table.read('solar_flux.txt', format='ascii')
all_info = []
for item in glob.glob("new/*_corrtag_c.fits") + glob.glob('out/*_corrtag_?.fits'):
print(item)
for item in dark.pull_orbital_info(item, step=700):
try:
darkrate = item['dark']
except KeyError:
continue
t = Time(item['date'], format='decimalyear').mjd
index = np.argmin(abs(data['col1'] - t))
item['fsol'] = float(data['col2'][index])
print(item)
#if darkrate < 2e-6:
# continue
all_info.append(deepcopy(item))
with open('./orbital_info.json', 'w') as out:
json.dump(all_info, out, sort_keys=False, indent=4, separators=(',', ': '))
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| -11
| 23
|
c7607658161aabf0b09b3024ff70cf6f856fe8d3
| 2,225
|
py
|
Python
|
noisysystem_temp/Analysis/PositivePhiAnalysis.py
|
Tom271/InteractingParticleSystems
|
1cfc8b228077c2465e71d82cc288d713d3755392
|
[
"MIT"
] | 1
|
2019-10-22T19:48:22.000Z
|
2019-10-22T19:48:22.000Z
|
noisysystem_temp/Analysis/PositivePhiAnalysis.py
|
Tom271/InteractingParticleSystems
|
1cfc8b228077c2465e71d82cc288d713d3755392
|
[
"MIT"
] | 1
|
2019-10-22T21:32:19.000Z
|
2019-10-22T21:32:19.000Z
|
noisysystem_temp/Analysis/PositivePhiAnalysis.py
|
Tom271/InteractingParticleSystems
|
1cfc8b228077c2465e71d82cc288d713d3755392
|
[
"MIT"
] | 1
|
2019-10-22T19:49:38.000Z
|
2019-10-22T19:49:38.000Z
|
from matplotlib import rc
import matplotlib.pyplot as plt
import os
import seaborn as sns
from particle.plotting import (plot_averaged_convergence_from_clusters, plot_averaged_avg_vel, plot_avg_vel)
sns.set(style="white", context="talk")
search_parameters = {
# "particle_count": 480,
# "G": "Smooth",
# "scaling": "Local",
"phi": "Bump",
# # "initial_dist_x": "one_cluster",
"initial_dist_v": "pos_const_near_0",
"T_end": 2000.0,
# "dt": 0.01,
# "D": 1.0,
# "option": "numba",
}
if os.name == "nt":
rc("text", usetex=True) # I only have TeX on Windows :(
os.chdir("D:/InteractingParticleSystems/noisysystem_temp")
elif os.name == "posix":
os.chdir("/Volumes/Extreme SSD/InteractingParticleSystems/noisysystem_temp")
yaml_path = "Experiments/positive_phi_no_of_clusters_high_noise_bump"
fn = "_switch_"
logged = False
include_traj = True
fig, [ax1, ax2] = plt.subplots(1, 2, figsize=(15, 5), sharex=True)
ax2 = plot_avg_vel(ax2, search_parameters, logx=logged, exp_yaml=yaml_path)
ax2 = plot_averaged_avg_vel(ax2, search_parameters, logx=logged, exp_yaml=yaml_path)
ax1 = plot_averaged_convergence_from_clusters(
ax1, search_parameters, yaml_path, logx=logged
)
ax1.plot([0, search_parameters["T_end"]], [7.5, 7.5], "k--", alpha=0.2)
ax2.set(xlabel="Time", ylabel=r"$M^N(t) $")
# ax2.legend()
# fig.savefig(f"img/PositivePhiClusters{fn}logged.jpg", dpi=300)
# plt.tight_layout()
plt.subplots_adjust(left=0.07, right=0.97, bottom=0.15, top=0.9, wspace=0.23)
plt.show()
# logged = False
# fig, [ax1, ax2] = plt.subplots(1, 2, figsize=(14, 5), sharex=True)
# ax2 = plot_avg_vel(ax2, search_parameters, logx=logged, exp_yaml=yaml_path)
# ax2 = plot_averaged_avg_vel(ax2, search_parameters, logx=logged, exp_yaml=yaml_path)
#
# ax1 = plot_averaged_convergence_from_clusters(
# ax1, search_parameters, yaml_path, logx=logged
# )
#
# ax1.plot([0, search_parameters["T_end"]], [7.5, 7.5], "k--", alpha=0.2)
# ax2.set(xlabel="Time", ylabel=r"$M^N(t) $")
# # ax2.legend()
# fig.savefig(f"img/PositivePhiClusters{fn}linear.jpg", dpi=300)
# # plt.tight_layout()
# plt.subplots_adjust(left=0.07, right=0.97, bottom=0.15, top=0.9, wspace=0.23)
# plt.show()
| 33.208955
| 86
| 0.698876
|
from matplotlib import rc
import matplotlib.pyplot as plt
import os
import seaborn as sns
from particle.plotting import (
plot_averaged_convergence_from_clusters,
plot_averaged_avg_vel,
plot_avg_vel,
)
sns.set(style="white", context="talk")
search_parameters = {
# "particle_count": 480,
# "G": "Smooth",
# "scaling": "Local",
"phi": "Bump",
# # "initial_dist_x": "one_cluster",
"initial_dist_v": "pos_const_near_0",
"T_end": 2000.0,
# "dt": 0.01,
# "D": 1.0,
# "option": "numba",
}
if os.name == "nt":
rc("text", usetex=True) # I only have TeX on Windows :(
os.chdir("D:/InteractingParticleSystems/noisysystem_temp")
elif os.name == "posix":
os.chdir("/Volumes/Extreme SSD/InteractingParticleSystems/noisysystem_temp")
yaml_path = "Experiments/positive_phi_no_of_clusters_high_noise_bump"
fn = "_switch_"
logged = False
include_traj = True
fig, [ax1, ax2] = plt.subplots(1, 2, figsize=(15, 5), sharex=True)
ax2 = plot_avg_vel(ax2, search_parameters, logx=logged, exp_yaml=yaml_path)
ax2 = plot_averaged_avg_vel(ax2, search_parameters, logx=logged, exp_yaml=yaml_path)
ax1 = plot_averaged_convergence_from_clusters(
ax1, search_parameters, yaml_path, logx=logged
)
ax1.plot([0, search_parameters["T_end"]], [7.5, 7.5], "k--", alpha=0.2)
ax2.set(xlabel="Time", ylabel=r"$M^N(t) $")
# ax2.legend()
# fig.savefig(f"img/PositivePhiClusters{fn}logged.jpg", dpi=300)
# plt.tight_layout()
plt.subplots_adjust(left=0.07, right=0.97, bottom=0.15, top=0.9, wspace=0.23)
plt.show()
# logged = False
# fig, [ax1, ax2] = plt.subplots(1, 2, figsize=(14, 5), sharex=True)
# ax2 = plot_avg_vel(ax2, search_parameters, logx=logged, exp_yaml=yaml_path)
# ax2 = plot_averaged_avg_vel(ax2, search_parameters, logx=logged, exp_yaml=yaml_path)
#
# ax1 = plot_averaged_convergence_from_clusters(
# ax1, search_parameters, yaml_path, logx=logged
# )
#
# ax1.plot([0, search_parameters["T_end"]], [7.5, 7.5], "k--", alpha=0.2)
# ax2.set(xlabel="Time", ylabel=r"$M^N(t) $")
# # ax2.legend()
# fig.savefig(f"img/PositivePhiClusters{fn}linear.jpg", dpi=300)
# # plt.tight_layout()
# plt.subplots_adjust(left=0.07, right=0.97, bottom=0.15, top=0.9, wspace=0.23)
# plt.show()
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 15
| 0
|
d3eb3879f29d5a988281b193f192ff03806bb576
| 8,310
|
py
|
Python
|
codemetrics/vega.py
|
Wonshtrum/codemetrics
|
ae82a742aeedc7fc1edf39a817edb3d41ea3887d
|
[
"MIT"
] | 6
|
2019-08-07T09:11:35.000Z
|
2021-06-22T10:58:33.000Z
|
codemetrics/vega.py
|
Wonshtrum/codemetrics
|
ae82a742aeedc7fc1edf39a817edb3d41ea3887d
|
[
"MIT"
] | 11
|
2019-09-25T22:04:44.000Z
|
2022-03-23T03:06:05.000Z
|
codemetrics/vega.py
|
Wonshtrum/codemetrics
|
ae82a742aeedc7fc1edf39a817edb3d41ea3887d
|
[
"MIT"
] | 4
|
2019-02-23T15:25:35.000Z
|
2021-06-22T12:11:20.000Z
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
import os
import typing
import pandas as pd
from . import internals
def build_hierarchy(
data: pd.DataFrame,
get_parent=os.path.dirname,
root: str = "",
max_iter: int = 100,
col_name: typing.Optional[str] = None,
) -> pd.DataFrame:
"""Build a hierarchy from a data set and a get_parent relationship.
The output frame adds 2 columns in front: id and parent. Both are numerical
where the parent id identifies the id of the parent as returned by the
get_parent function.
The id of the root element is set to 0 and the parent is set to np.nan.
Args:
data: data containing the leaves of the tree.
get_parent: function returning the parent of an element.
root: expected root of the hierarchy.
max_iter: maximum number of iterations.
col_name: name of the column to use as input (default to column 0).
Returns:
pandas.DataFrame with the columns id, parent and col_name.
The parent value identifies the id of the parent in the hierarchy where
the id 0 is the root. The columns other than col_name are discarded.
"""
assert data.ndim == 2, "DataFrame-like object expected"
if not col_name:
col_name = data.columns[0]
parent = get_parent.__name__
df = data[[col_name]]
frames = []
seen = {root}
root_actually_seen = False
count = 0
for _ in range(max_iter):
df.loc[:, parent] = df[col_name].apply(get_parent)
if root in df[parent].values:
root_actually_seen = True
df["id"] = range(count, count + len(df))
count += len(df)
frames.append(df)
df = (
df.loc[~df[parent].isin(seen), [parent]]
.drop_duplicates()
.rename(columns={parent: col_name})
)
seen.update(df[col_name])
if len(df) == 0:
frames.append(
pd.DataFrame(data={"id": [count], col_name: [root], parent: [None]})
)
break
if not root_actually_seen:
msg = f"cannot find root {root} in input frame"
internals.log.error(msg)
raise ValueError(msg)
df = pd.concat(frames, sort=False).drop_duplicates()
df["id"] = len(df) - df["id"] - 1
assert col_name is not None
y_name = col_name + "_y"
merged = pd.merge(df, df, left_on=col_name, right_on=parent, how="right")[
[y_name, "id_y", "id_x"]
].rename(columns={y_name: col_name, "id_y": "id", "id_x": "parent"})
return (
merged[["id", "parent", col_name]].sort_values(by="id").reset_index(drop=True)
)
def _vis_generic(
df: pd.DataFrame,
size_column: str,
color_column: str,
colorscheme: str,
height: int = 300,
width: int = 400,
) -> dict:
"""Factors common parts of vis_xxx functions.
Internal. See vis_hot_spots or vis_ages for documentation.
"""
if len(df) <= 0:
raise ValueError("dataframe is empty")
if size_column not in df.columns:
raise ValueError(f"{size_column} not found in columns")
if color_column not in df.columns:
raise ValueError(f"{color_column} not found in columns")
hierarchy = build_hierarchy(df[["path"]], root="")
hierarchy = (
pd.merge(hierarchy, df, left_on="path", right_on="path", how="left")
.rename(columns={size_column: "size", color_column: "intensity"})
.sort_values(by="id")
)
hierarchy.loc[:, ["size", "intensity"]] = hierarchy[["size", "intensity"]].fillna(0)
json_values = hierarchy.to_json(orient="records")
signal = (
"datum.path + "
f"(datum.intensity ? ', ' + datum.intensity + ' {color_column}' : '') + "
f"(datum.size ? ', ' + datum.size + ' {size_column}' : '')"
)
desc: typing.Dict[str, typing.Any] = {
"$schema": "https://vega.github.io/schema/vega/v4.json",
"width": width,
"height": height,
"padding": 5,
"autosize": "none",
"data": [
{
"name": "tree",
# 'values': ...,
"transform": [
{"type": "stratify", "key": "id", "parentKey": "parent"},
{
"type": "pack",
"field": "size",
"sort": {"field": "value", "order": "descending"},
"size": [{"signal": "width"}, {"signal": "height"}],
},
],
}
],
"scales": [
{
"name": "color",
"type": "linear",
"domain": {"data": "tree", "field": "intensity"},
"range": {"scheme": colorscheme},
"domainMin": 0,
}
],
"marks": [
{
"type": "symbol",
"from": {"data": "tree"},
"encode": {
"enter": {
"shape": {"value": "circle"},
"fill": {"scale": "color", "field": "intensity"},
"tooltip": {"signal": signal},
},
"update": {
"x": {"field": "x"},
"y": {"field": "y"},
"size": {"signal": "4 * datum.r * datum.r"},
"stroke": {"value": "white"},
"strokeWidth": {"value": 0.5},
},
"hover": {
"stroke": {"value": "black"},
"strokeWidth": {"value": 2},
},
},
}
],
}
desc["data"][0]["values"] = json.loads(json_values)
return desc
def vis_hot_spots(
df: pd.DataFrame,
height: int = 300,
width: int = 400,
size_column: str = "lines",
color_column: str = "changes",
colorscheme: str = "yelloworangered",
) -> dict:
"""Convert get_hot_spots output to a json vega dict.
Args:
df: input data returned by :func:`codemetrics.get_hot_spots`
height: vertical size of the figure.
width: horizontal size of the figure.
size_column: column that drives the size of the circles.
color_column: column that drives the color intensity of the circles.
colorscheme: color scheme. See https://vega.github.io/vega/docs/schemes/
Returns:
Vega description suitable to be use with Altair.
Example::
import codemetrics as cm
from altair.vega.v4 import Vega
hspots = cm.get_hot_spots(loc_df, log_df)
desc = cm.vega.vis_hot_spots(hspots)
Vega(desc) # display the visualization inline in you notebook.
See also:
`Vega circle pack example`_
.. _Vega circle pack example: https://vega.github.io/editor/#/examples/vega/circle-packing
"""
return _vis_generic(
df,
size_column=size_column,
color_column=color_column,
colorscheme=colorscheme,
width=width,
height=height,
)
def vis_ages(
df: pd.DataFrame,
height: int = 300,
width: int = 400,
colorscheme: str = "greenblue",
) -> dict:
"""Convert get_ages output to a json vega dict.
Args:
df: input data returned by :func:`codemetrics.get_ages`
height: vertical size of the figure.
width: horizontal size of the figure.
colorscheme: color scheme. See https://vega.github.io/vega/docs/schemes/
Returns:
Vega description suitable to be use with Altair.
Example::
import codemetrics as cm
from altair.vega.v4 import Vega
ages = cm.get_ages(loc_df, log_df)
desc = cm.vega.vis_ages(ages)
Vega(desc) # display the visualization inline in you notebook.
See also:
`Vega circle pack example`_
.. _Vega circle pack example: https://vega.github.io/editor/#/examples/vega/circle-packing
"""
df["days"] = df["age"].astype("int32")
df = df.rename(columns={"code": "loc"})
return _vis_generic(
df,
size_column="loc",
color_column="days",
colorscheme=colorscheme,
width=width,
height=height,
)
| 31.83908
| 94
| 0.541637
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
import os
import typing
import pandas as pd
from . import internals
def build_hierarchy(
data: pd.DataFrame,
get_parent=os.path.dirname,
root: str = "",
max_iter: int = 100,
col_name: typing.Optional[str] = None,
) -> pd.DataFrame:
"""Build a hierarchy from a data set and a get_parent relationship.
The output frame adds 2 columns in front: id and parent. Both are numerical
where the parent id identifies the id of the parent as returned by the
get_parent function.
The id of the root element is set to 0 and the parent is set to np.nan.
Args:
data: data containing the leaves of the tree.
get_parent: function returning the parent of an element.
root: expected root of the hierarchy.
max_iter: maximum number of iterations.
col_name: name of the column to use as input (default to column 0).
Returns:
pandas.DataFrame with the columns id, parent and col_name.
The parent value identifies the id of the parent in the hierarchy where
the id 0 is the root. The columns other than col_name are discarded.
"""
assert data.ndim == 2, "DataFrame-like object expected"
if not col_name:
col_name = data.columns[0]
parent = get_parent.__name__
df = data[[col_name]]
frames = []
seen = {root}
root_actually_seen = False
count = 0
for _ in range(max_iter):
df.loc[:, parent] = df[col_name].apply(get_parent)
if root in df[parent].values:
root_actually_seen = True
df["id"] = range(count, count + len(df))
count += len(df)
frames.append(df)
df = (
df.loc[~df[parent].isin(seen), [parent]]
.drop_duplicates()
.rename(columns={parent: col_name})
)
seen.update(df[col_name])
if len(df) == 0:
frames.append(
pd.DataFrame(data={"id": [count], col_name: [root], parent: [None]})
)
break
if not root_actually_seen:
msg = f"cannot find root {root} in input frame"
internals.log.error(msg)
raise ValueError(msg)
df = pd.concat(frames, sort=False).drop_duplicates()
df["id"] = len(df) - df["id"] - 1
assert col_name is not None
y_name = col_name + "_y"
merged = pd.merge(df, df, left_on=col_name, right_on=parent, how="right")[
[y_name, "id_y", "id_x"]
].rename(columns={y_name: col_name, "id_y": "id", "id_x": "parent"})
return (
merged[["id", "parent", col_name]].sort_values(by="id").reset_index(drop=True)
)
def _vis_generic(
df: pd.DataFrame,
size_column: str,
color_column: str,
colorscheme: str,
height: int = 300,
width: int = 400,
) -> dict:
"""Factors common parts of vis_xxx functions.
Internal. See vis_hot_spots or vis_ages for documentation.
"""
if len(df) <= 0:
raise ValueError("dataframe is empty")
if size_column not in df.columns:
raise ValueError(f"{size_column} not found in columns")
if color_column not in df.columns:
raise ValueError(f"{color_column} not found in columns")
hierarchy = build_hierarchy(df[["path"]], root="")
hierarchy = (
pd.merge(hierarchy, df, left_on="path", right_on="path", how="left")
.rename(columns={size_column: "size", color_column: "intensity"})
.sort_values(by="id")
)
hierarchy.loc[:, ["size", "intensity"]] = hierarchy[["size", "intensity"]].fillna(0)
json_values = hierarchy.to_json(orient="records")
signal = (
"datum.path + "
f"(datum.intensity ? ', ' + datum.intensity + ' {color_column}' : '') + "
f"(datum.size ? ', ' + datum.size + ' {size_column}' : '')"
)
desc: typing.Dict[str, typing.Any] = {
"$schema": "https://vega.github.io/schema/vega/v4.json",
"width": width,
"height": height,
"padding": 5,
"autosize": "none",
"data": [
{
"name": "tree",
# 'values': ...,
"transform": [
{"type": "stratify", "key": "id", "parentKey": "parent"},
{
"type": "pack",
"field": "size",
"sort": {"field": "value", "order": "descending"},
"size": [{"signal": "width"}, {"signal": "height"}],
},
],
}
],
"scales": [
{
"name": "color",
"type": "linear",
"domain": {"data": "tree", "field": "intensity"},
"range": {"scheme": colorscheme},
"domainMin": 0,
}
],
"marks": [
{
"type": "symbol",
"from": {"data": "tree"},
"encode": {
"enter": {
"shape": {"value": "circle"},
"fill": {"scale": "color", "field": "intensity"},
"tooltip": {"signal": signal},
},
"update": {
"x": {"field": "x"},
"y": {"field": "y"},
"size": {"signal": "4 * datum.r * datum.r"},
"stroke": {"value": "white"},
"strokeWidth": {"value": 0.5},
},
"hover": {
"stroke": {"value": "black"},
"strokeWidth": {"value": 2},
},
},
}
],
}
desc["data"][0]["values"] = json.loads(json_values)
return desc
def vis_hot_spots(
df: pd.DataFrame,
height: int = 300,
width: int = 400,
size_column: str = "lines",
color_column: str = "changes",
colorscheme: str = "yelloworangered",
) -> dict:
"""Convert get_hot_spots output to a json vega dict.
Args:
df: input data returned by :func:`codemetrics.get_hot_spots`
height: vertical size of the figure.
width: horizontal size of the figure.
size_column: column that drives the size of the circles.
color_column: column that drives the color intensity of the circles.
colorscheme: color scheme. See https://vega.github.io/vega/docs/schemes/
Returns:
Vega description suitable to be use with Altair.
Example::
import codemetrics as cm
from altair.vega.v4 import Vega
hspots = cm.get_hot_spots(loc_df, log_df)
desc = cm.vega.vis_hot_spots(hspots)
Vega(desc) # display the visualization inline in you notebook.
See also:
`Vega circle pack example`_
.. _Vega circle pack example: https://vega.github.io/editor/#/examples/vega/circle-packing
"""
return _vis_generic(
df,
size_column=size_column,
color_column=color_column,
colorscheme=colorscheme,
width=width,
height=height,
)
def vis_ages(
df: pd.DataFrame,
height: int = 300,
width: int = 400,
colorscheme: str = "greenblue",
) -> dict:
"""Convert get_ages output to a json vega dict.
Args:
df: input data returned by :func:`codemetrics.get_ages`
height: vertical size of the figure.
width: horizontal size of the figure.
colorscheme: color scheme. See https://vega.github.io/vega/docs/schemes/
Returns:
Vega description suitable to be use with Altair.
Example::
import codemetrics as cm
from altair.vega.v4 import Vega
ages = cm.get_ages(loc_df, log_df)
desc = cm.vega.vis_ages(ages)
Vega(desc) # display the visualization inline in you notebook.
See also:
`Vega circle pack example`_
.. _Vega circle pack example: https://vega.github.io/editor/#/examples/vega/circle-packing
"""
df["days"] = df["age"].astype("int32")
df = df.rename(columns={"code": "loc"})
return _vis_generic(
df,
size_column="loc",
color_column="days",
colorscheme=colorscheme,
width=width,
height=height,
)
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
565de340dea6258a5a31b85b0559d11b832043c5
| 1,414
|
py
|
Python
|
master/Alarm_dialog.py
|
chingchan1996/Distributed-Resource-Monitoring-System
|
d85a74616307bf5ba7ae5b363512c1fd487143a5
|
[
"Apache-2.0"
] | null | null | null |
master/Alarm_dialog.py
|
chingchan1996/Distributed-Resource-Monitoring-System
|
d85a74616307bf5ba7ae5b363512c1fd487143a5
|
[
"Apache-2.0"
] | null | null | null |
master/Alarm_dialog.py
|
chingchan1996/Distributed-Resource-Monitoring-System
|
d85a74616307bf5ba7ae5b363512c1fd487143a5
|
[
"Apache-2.0"
] | null | null | null |
from PyQt5 import QtWidgets
import sys
if __name__ == '__main__':
app = QtWidgets.QApplication(sys.argv)
form = AlarmDialog("Slave3", "CPU overloading", "CPU usage > 95%", "50%", "2017/11/25 12:00")
form.setWindowTitle('Alarm')
form.show()
sys.exit(app.exec_())
| 36.25641
| 104
| 0.662659
|
from Alarm_dialog_ui import Alarm_Ui_Dialog
from PyQt5 import QtCore, QtWidgets, QtGui
import threading
import sys
class AlarmDialog(QtWidgets.QMainWindow):
def __init__(self, hostname, problem, threshold, current, time):
QtWidgets.QWidget.__init__(self)
self.ui = Alarm_Ui_Dialog()
self.ui.setupUi(self)
self.ui.tx_hostname.setText(hostname)
self.ui.tx_problem.setText(problem)
self.ui.tx_threshold.setText(threshold)
self.ui.tx_currentstatus.setText(current)
self.ui.tx_timestamp.setText(time)
class AlarmGuiThread(threading.Thread):
def __init__(self, hostname, problem, threshold, current, time):
threading.Thread.__init__(self)
self.hostname = hostname
self.problem = problem
self.threshold = threshold
self.current_status = current
self.time = time
def run(self):
app = QtWidgets.QApplication(sys.argv)
form = AlarmDialog(self.hostname, self.problem, self.threshold, self.current_status, self.time)
form.setWindowTitle('Alarm window')
form.show()
app.exec_()
if __name__ == '__main__':
app = QtWidgets.QApplication(sys.argv)
form = AlarmDialog("Slave3", "CPU overloading", "CPU usage > 95%", "50%", "2017/11/25 12:00")
form.setWindowTitle('Alarm')
form.show()
sys.exit(app.exec_())
| 0
| 0
| 0
| 996
| 0
| 0
| 0
| 32
| 96
|
927d226a221c8200e40efd7d6c8599a8cd204230
| 2,725
|
py
|
Python
|
zaqar/storage/sqlalchemy/migration/alembic_migrations/versions/001_liberty.py
|
mail2nsrajesh/zaqar
|
a68a03a228732050b33c2a7f35d1caa9f3467718
|
[
"Apache-2.0"
] | 97
|
2015-01-02T09:35:23.000Z
|
2022-03-25T00:38:45.000Z
|
zaqar/storage/sqlalchemy/migration/alembic_migrations/versions/001_liberty.py
|
mail2nsrajesh/zaqar
|
a68a03a228732050b33c2a7f35d1caa9f3467718
|
[
"Apache-2.0"
] | 5
|
2019-08-14T06:46:03.000Z
|
2021-12-13T20:01:25.000Z
|
zaqar/storage/sqlalchemy/migration/alembic_migrations/versions/001_liberty.py
|
mail2nsrajesh/zaqar
|
a68a03a228732050b33c2a7f35d1caa9f3467718
|
[
"Apache-2.0"
] | 44
|
2015-01-28T03:01:28.000Z
|
2021-05-13T18:55:19.000Z
|
# Copyright 2016 OpenStack Foundation.
#
# 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.
"""Liberty release
Revision ID: 001
Revises: None
Create Date: 2015-09-13 20:46:25.783444
"""
# revision identifiers, used by Alembic.
revision = '001'
down_revision = None
MYSQL_ENGINE = 'InnoDB'
MYSQL_CHARSET = 'utf8'
| 37.328767
| 71
| 0.540917
|
# Copyright 2016 OpenStack Foundation.
#
# 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.
"""Liberty release
Revision ID: 001
Revises: None
Create Date: 2015-09-13 20:46:25.783444
"""
# revision identifiers, used by Alembic.
revision = '001'
down_revision = None
from alembic import op
import sqlalchemy as sa
MYSQL_ENGINE = 'InnoDB'
MYSQL_CHARSET = 'utf8'
def upgrade():
op.create_table('Queues',
sa.Column('id', sa.INTEGER, primary_key=True),
sa.Column('project', sa.String(64)),
sa.Column('name', sa.String(64)),
sa.Column('metadata', sa.LargeBinary),
sa.UniqueConstraint('project', 'name'))
op.create_table('PoolGroup',
sa.Column('name', sa.String(64), primary_key=True))
op.create_table('Pools',
sa.Column('name', sa.String(64), primary_key=True),
sa.Column('group', sa.String(64),
sa.ForeignKey('PoolGroup.name',
ondelete='CASCADE'),
nullable=True),
sa.Column('uri', sa.String(255),
unique=True, nullable=False),
sa.Column('weight', sa.INTEGER, nullable=False),
sa.Column('options', sa.Text()))
op.create_table('Flavors',
sa.Column('name', sa.String(64), primary_key=True),
sa.Column('project', sa.String(64)),
sa.Column('pool_group', sa.String(64),
sa.ForeignKey('PoolGroup.name',
ondelete='CASCADE'),
nullable=False),
sa.Column('capabilities', sa.Text()))
op.create_table('Catalogue',
sa.Column('pool', sa.String(64),
sa.ForeignKey('Pools.name',
ondelete='CASCADE')),
sa.Column('project', sa.String(64)),
sa.Column('queue', sa.String(64), nullable=False),
sa.UniqueConstraint('project', 'queue'))
| 0
| 0
| 0
| 0
| 0
| 1,842
| 0
| 3
| 68
|
8c996016d532556f72b8858fadfdec8cbc13fd3b
| 1,188
|
py
|
Python
|
article/models.py
|
hexa-yagnenok/myblog
|
ebba71516ce2ebb6b05fcb8c889a54924b9284c9
|
[
"MIT"
] | null | null | null |
article/models.py
|
hexa-yagnenok/myblog
|
ebba71516ce2ebb6b05fcb8c889a54924b9284c9
|
[
"MIT"
] | null | null | null |
article/models.py
|
hexa-yagnenok/myblog
|
ebba71516ce2ebb6b05fcb8c889a54924b9284c9
|
[
"MIT"
] | null | null | null |
# Create your models here.
| 47.52
| 112
| 0.768519
|
from django.db import models
from ckeditor.fields import RichTextField
# Create your models here.
class Article(models.Model):
author=models.ForeignKey("auth.User",on_delete=models.CASCADE)
title = models.CharField(max_length=50,verbose_name= "Title")
content=RichTextField(verbose_name="Content")
created_date=models.DateTimeField(auto_now_add=True,verbose_name="Oluşturulma tarihi")
article_image=models.FileField(blank=True,null=True,verbose_name="Image")
def __str__(self):
return self.title
class Meta:
ordering=['-created_date']
class Comment(models.Model):
article = models.ForeignKey(Article,on_delete=models.CASCADE,verbose_name="Article",related_name="comments")
comment_author=models.ForeignKey("auth.User",on_delete=models.CASCADE)
comment_title=models.CharField(max_length=50,verbose_name="Comment")
comment_content=models.CharField(max_length=200,verbose_name="Comment")
comment_date=models.DateTimeField(auto_now_add=True,verbose_name="Created Date")
def __str__(self):
return self.comment_content # admin panelinde contentle gözükmesini sağlar
class Meta:
ordering=['-comment_date']
| 8
| 0
| 0
| 1,041
| 0
| 0
| 0
| 27
| 89
|
2ee0c3e1ef08b9ecf5b43f9f4cd90918f39395df
| 5,971
|
py
|
Python
|
lib/util.py
|
jhkennedy/processflow
|
c404bd3ad043fd6ae18d4f24d735777574faa660
|
[
"MIT"
] | null | null | null |
lib/util.py
|
jhkennedy/processflow
|
c404bd3ad043fd6ae18d4f24d735777574faa660
|
[
"MIT"
] | null | null | null |
lib/util.py
|
jhkennedy/processflow
|
c404bd3ad043fd6ae18d4f24d735777574faa660
|
[
"MIT"
] | null | null | null |
import logging
import sys
import traceback
import re
import os
import socket
import jinja2
import json
from shutil import rmtree
from time import sleep
from datetime import datetime
from string import Formatter
from lib.jobstatus import ReverseMap, JobStatus
from mailer import Mailer
from models import DataFile
def print_line(line, event_list, ignore_text=False):
"""
Prints a message to either the console, the event_list, or the current event
Parameters:
line (str): The message to print
event_list (EventList): the event list
ignore_text (bool): should this be printed to the console if in text mode
"""
logging.info(line)
if not ignore_text:
now = datetime.now()
timestr = '{hour}:{min}:{sec}'.format(
hour=now.strftime('%H'),
min=now.strftime('%M'),
sec=now.strftime('%S'))
msg = '{time}: {line}'.format(
time=timestr,
line=line)
print msg
sys.stdout.flush()
def get_climo_output_files(input_path, start_year, end_year):
"""
Return a list of ncclimo climatologies from start_year to end_year
Parameters:
input_path (str): the directory to look in
start_year (int): the first year of climos to add to the list
end_year (int): the last year
Returns:
file_list (list(str)): A list of the climo files in the directory
"""
if not os.path.exists(input_path):
return None
contents = [s for s in os.listdir(input_path) if not os.path.isdir(s)]
pattern = r'_{start:04d}\d\d_{end:04d}\d\d_climo\.nc'.format(
start=start_year,
end=end_year)
return [x for x in contents if re.search(pattern=pattern, string=x)]
def get_ts_output_files(input_path, var_list, start_year, end_year):
"""
Return a list of ncclimo timeseries files from a list of variables, start_year to end_year
Parameters:
input_path (str): the directory to look in
var_list (list): a list of strings of variable names
start_year (int): the first year of climos to add to the list
end_year (int): the last year
Returns:
ts_list (list): A list of the ts files
"""
if not os.path.exists(input_path):
return None
contents = [s for s in os.listdir(input_path) if not os.path.isdir(s)]
ts_list = list()
for var in var_list:
pattern = r'{var}_{start:04d}01_{end:04d}12\.nc'.format(
var=var,
start=start_year,
end=end_year)
for item in contents:
if re.search(pattern, item):
ts_list.append(item)
break
return ts_list
def print_debug(e):
"""
Print an exceptions relavent information
"""
print '1', e.__doc__
print '2', sys.exc_info()
print '3', sys.exc_info()[0]
print '4', sys.exc_info()[1]
print '5', traceback.tb_lineno(sys.exc_info()[2])
_, _, tb = sys.exc_info()
print '6', traceback.print_tb(tb)
def format_debug(e):
"""
Return a string of an exceptions relavent information
"""
_, _, tb = sys.exc_info()
return """
1: {doc}
2: {exec_info}
3: {exec_0}
4: {exec_1}
5: {lineno}
6: {stack}
""".format(
doc=e.__doc__,
exec_info=sys.exc_info(),
exec_0=sys.exc_info()[0],
exec_1=sys.exc_info()[1],
lineno=traceback.tb_lineno(sys.exc_info()[2]),
stack=traceback.print_tb(tb))
def print_message(message, status='error'):
"""
Prints a message with either a green + or a red -
Parameters:
message (str): the message to print
status (str): th"""
if status == 'error':
print colors.FAIL + '[-] ' + colors.ENDC + colors.BOLD + str(message) + colors.ENDC
elif status == 'ok':
print colors.OKGREEN + '[+] ' + colors.ENDC + str(message)
def render(variables, input_path, output_path):
"""
Renders the jinja2 template from the input_path into the output_path
using the variables from variables
"""
tail, head = os.path.split(input_path)
template_path = os.path.abspath(tail)
loader = jinja2.FileSystemLoader(searchpath=template_path)
env = jinja2.Environment(loader=loader)
template = env.get_template(head)
outstr = template.render(variables)
with open(output_path, 'a') as outfile:
outfile.write(outstr)
def create_symlink_dir(src_dir, src_list, dst):
"""
Create a directory, and fill it with symlinks to all the items in src_list
Parameters:
src_dir (str): the path to the source directory
src_list (list): a list of strings of filenames
dst (str): the path to the directory that should hold the symlinks
"""
if not src_list:
return
if not os.path.exists(dst):
os.makedirs(dst)
for src_file in src_list:
if not src_file:
continue
source = os.path.join(src_dir, src_file)
destination = os.path.join(dst, src_file)
if os.path.lexists(destination):
continue
try:
os.symlink(source, destination)
except Exception as e:
msg = format_debug(e)
logging.error(msg)
| 30.156566
| 94
| 0.624016
|
import logging
import sys
import traceback
import re
import os
import socket
import jinja2
import json
from shutil import rmtree
from time import sleep
from datetime import datetime
from string import Formatter
from lib.jobstatus import ReverseMap, JobStatus
from mailer import Mailer
from models import DataFile
def print_line(line, event_list, ignore_text=False):
"""
Prints a message to either the console, the event_list, or the current event
Parameters:
line (str): The message to print
event_list (EventList): the event list
ignore_text (bool): should this be printed to the console if in text mode
"""
logging.info(line)
if not ignore_text:
now = datetime.now()
timestr = '{hour}:{min}:{sec}'.format(
hour=now.strftime('%H'),
min=now.strftime('%M'),
sec=now.strftime('%S'))
msg = '{time}: {line}'.format(
time=timestr,
line=line)
print msg
sys.stdout.flush()
def get_climo_output_files(input_path, start_year, end_year):
"""
Return a list of ncclimo climatologies from start_year to end_year
Parameters:
input_path (str): the directory to look in
start_year (int): the first year of climos to add to the list
end_year (int): the last year
Returns:
file_list (list(str)): A list of the climo files in the directory
"""
if not os.path.exists(input_path):
return None
contents = [s for s in os.listdir(input_path) if not os.path.isdir(s)]
pattern = r'_{start:04d}\d\d_{end:04d}\d\d_climo\.nc'.format(
start=start_year,
end=end_year)
return [x for x in contents if re.search(pattern=pattern, string=x)]
def get_ts_output_files(input_path, var_list, start_year, end_year):
"""
Return a list of ncclimo timeseries files from a list of variables, start_year to end_year
Parameters:
input_path (str): the directory to look in
var_list (list): a list of strings of variable names
start_year (int): the first year of climos to add to the list
end_year (int): the last year
Returns:
ts_list (list): A list of the ts files
"""
if not os.path.exists(input_path):
return None
contents = [s for s in os.listdir(input_path) if not os.path.isdir(s)]
ts_list = list()
for var in var_list:
pattern = r'{var}_{start:04d}01_{end:04d}12\.nc'.format(
var=var,
start=start_year,
end=end_year)
for item in contents:
if re.search(pattern, item):
ts_list.append(item)
break
return ts_list
def get_data_output_files(input_path, case, start_year, end_year):
if not os.path.exists(input_path):
return None
contents = [s for s in os.listdir(input_path) if not os.path.isdir(s)]
contents.sort()
data_list = list()
for year in range(start_year, end_year + 1):
for month in range(1, 13):
pattern = r'%s.*\.%04d-%02d.nc' % (case, year, month)
for item in contents:
if re.match(pattern, item):
data_list.append(item)
break
return data_list
def print_debug(e):
"""
Print an exceptions relavent information
"""
print '1', e.__doc__
print '2', sys.exc_info()
print '3', sys.exc_info()[0]
print '4', sys.exc_info()[1]
print '5', traceback.tb_lineno(sys.exc_info()[2])
_, _, tb = sys.exc_info()
print '6', traceback.print_tb(tb)
def format_debug(e):
"""
Return a string of an exceptions relavent information
"""
_, _, tb = sys.exc_info()
return """
1: {doc}
2: {exec_info}
3: {exec_0}
4: {exec_1}
5: {lineno}
6: {stack}
""".format(
doc=e.__doc__,
exec_info=sys.exc_info(),
exec_0=sys.exc_info()[0],
exec_1=sys.exc_info()[1],
lineno=traceback.tb_lineno(sys.exc_info()[2]),
stack=traceback.print_tb(tb))
class colors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
def print_message(message, status='error'):
"""
Prints a message with either a green + or a red -
Parameters:
message (str): the message to print
status (str): th"""
if status == 'error':
print colors.FAIL + '[-] ' + colors.ENDC + colors.BOLD + str(message) + colors.ENDC
elif status == 'ok':
print colors.OKGREEN + '[+] ' + colors.ENDC + str(message)
def render(variables, input_path, output_path):
"""
Renders the jinja2 template from the input_path into the output_path
using the variables from variables
"""
tail, head = os.path.split(input_path)
template_path = os.path.abspath(tail)
loader = jinja2.FileSystemLoader(searchpath=template_path)
env = jinja2.Environment(loader=loader)
template = env.get_template(head)
outstr = template.render(variables)
with open(output_path, 'a') as outfile:
outfile.write(outstr)
def create_symlink_dir(src_dir, src_list, dst):
"""
Create a directory, and fill it with symlinks to all the items in src_list
Parameters:
src_dir (str): the path to the source directory
src_list (list): a list of strings of filenames
dst (str): the path to the directory that should hold the symlinks
"""
if not src_list:
return
if not os.path.exists(dst):
os.makedirs(dst)
for src_file in src_list:
if not src_file:
continue
source = os.path.join(src_dir, src_file)
destination = os.path.join(dst, src_file)
if os.path.lexists(destination):
continue
try:
os.symlink(source, destination)
except Exception as e:
msg = format_debug(e)
logging.error(msg)
| 0
| 0
| 0
| 180
| 0
| 540
| 0
| 0
| 46
|
f4aa9a6ca0730f8fd955fa36c1c422547825b170
| 3,519
|
py
|
Python
|
lino/utils/mldbc/fields.py
|
NewRGB/lino
|
43799e42107169ff173d3b8bc0324d5773471499
|
[
"BSD-2-Clause"
] | 1
|
2019-11-13T19:38:50.000Z
|
2019-11-13T19:38:50.000Z
|
lino/utils/mldbc/fields.py
|
NewRGB/lino
|
43799e42107169ff173d3b8bc0324d5773471499
|
[
"BSD-2-Clause"
] | null | null | null |
lino/utils/mldbc/fields.py
|
NewRGB/lino
|
43799e42107169ff173d3b8bc0324d5773471499
|
[
"BSD-2-Clause"
] | null | null | null |
# -*- coding: UTF-8 -*-
# Copyright 2012-2017 Rumma & Ko Ltd
# License: BSD (see file COPYING for details)
"""Defines the babel field classes (:class:`BabelCharField` and
:class:`BabelTextField`) and the :class:`LanguageField` class.
**Babel fields** are fields which "generate" in the Django model a
series of normal CharFields (or TextFields), one for each
:attr:`lino.core.site.Site.language`.
Example::
class Foo(models.Model):
name = BabelCharField(_("Foo"), max_length=200)
.. autosummary::
"""
from __future__ import unicode_literals
import six
import logging
logger = logging.getLogger(__name__)
from django.conf import settings
from django.utils.text import format_lazy
LANGUAGE_CODE_MAX_LENGTH = 5
def contribute_to_class(field, cls, fieldclass, **kw):
"Used by both :class:`BabelCharField` and :class:`BabelTextField` "
if cls._meta.abstract:
return
kw.update(blank=True)
if "__fake__" in repr(cls):
# Used to test if we're creating a migration, in that case we don't want to add new fields,
# As they're already detected during site startup.
return
for lang in settings.SITE.BABEL_LANGS:
kw.update(verbose_name=format_lazy(u"{}{}",
field.verbose_name, ' (' + lang.django_code + ')'))
newfield = fieldclass(**kw)
#~ newfield._lino_babel_field = True
# used by dbtools.get_data_elems
newfield._lino_babel_field = field.name
newfield._babel_language = lang
cls.add_to_class(six.text_type(field.name + '_' + lang.name), newfield)
# we must convert the field name to six.text_type because lang.name is a newstr, and Django can raise a
# TypeError: unorderable types: str() and <type 'str'>
# when a model contains both Babelfields and fields with plain Py2 str names.
| 31.419643
| 111
| 0.674339
|
# -*- coding: UTF-8 -*-
# Copyright 2012-2017 Rumma & Ko Ltd
# License: BSD (see file COPYING for details)
"""Defines the babel field classes (:class:`BabelCharField` and
:class:`BabelTextField`) and the :class:`LanguageField` class.
**Babel fields** are fields which "generate" in the Django model a
series of normal CharFields (or TextFields), one for each
:attr:`lino.core.site.Site.language`.
Example::
class Foo(models.Model):
name = BabelCharField(_("Foo"), max_length=200)
.. autosummary::
"""
from __future__ import unicode_literals
import six
import logging
logger = logging.getLogger(__name__)
from django.conf import settings
from django.db import models
from django.utils.translation import ugettext_lazy as _
from django.utils.text import format_lazy
from lino.core.fields import RichTextField
LANGUAGE_CODE_MAX_LENGTH = 5
def contribute_to_class(field, cls, fieldclass, **kw):
"Used by both :class:`BabelCharField` and :class:`BabelTextField` "
if cls._meta.abstract:
return
kw.update(blank=True)
if "__fake__" in repr(cls):
# Used to test if we're creating a migration, in that case we don't want to add new fields,
# As they're already detected during site startup.
return
for lang in settings.SITE.BABEL_LANGS:
kw.update(verbose_name=format_lazy(u"{}{}",
field.verbose_name, ' (' + lang.django_code + ')'))
newfield = fieldclass(**kw)
#~ newfield._lino_babel_field = True
# used by dbtools.get_data_elems
newfield._lino_babel_field = field.name
newfield._babel_language = lang
cls.add_to_class(six.text_type(field.name + '_' + lang.name), newfield)
# we must convert the field name to six.text_type because lang.name is a newstr, and Django can raise a
# TypeError: unorderable types: str() and <type 'str'>
# when a model contains both Babelfields and fields with plain Py2 str names.
class BabelCharField(models.CharField):
"""Define a variable number of `CharField` database fields, one for
each language of your :attr:`lino.core.site.Site.languages`. See
:ref:`mldbc`.
"""
def contribute_to_class(self, cls, name):
super(BabelCharField, self).contribute_to_class(cls, name)
contribute_to_class(self, cls, models.CharField,
max_length=self.max_length)
class BabelTextField(RichTextField):
"""
Define a variable number of clones of the "master" field,
one for each language .
See :ref:`mldbc`.
"""
def contribute_to_class(self, cls, name):
super(BabelTextField, self).contribute_to_class(cls, name)
contribute_to_class(self, cls, RichTextField,
format=self.textfield_format)
class LanguageField(models.CharField):
"""A field that lets the user select a language from the available
:attr:`lino.core.site.Site.languages`.
See also :meth:`lino.core.model.Model.get_print_language`.
"""
def __init__(self, *args, **kw):
defaults = dict(
verbose_name=_("Language"),
# choices=list(settings.SITE.LANGUAGE_CHOICES),
choices=settings.SITE.LANGUAGE_CHOICES,
blank=True,
# default=settings.SITE.get_default_language,
#~ default=get_language,
max_length=LANGUAGE_CODE_MAX_LENGTH,
)
defaults.update(kw)
models.CharField.__init__(self, *args, **defaults)
| 0
| 0
| 0
| 1,469
| 0
| 0
| 0
| 62
| 137
|
9adec4e977a6a1862dcf1dc6a136a4af18c39044
| 1,100
|
py
|
Python
|
2016/day02/day02-pt2.py
|
mcbor/advent_of_code_2016
|
14453b970d3e0f031ae6a66f2028652b6ed870dd
|
[
"MIT"
] | 1
|
2016-12-17T10:53:22.000Z
|
2016-12-17T10:53:22.000Z
|
2016/day02/day02-pt2.py
|
mcbor/adventofcode
|
14453b970d3e0f031ae6a66f2028652b6ed870dd
|
[
"MIT"
] | null | null | null |
2016/day02/day02-pt2.py
|
mcbor/adventofcode
|
14453b970d3e0f031ae6a66f2028652b6ed870dd
|
[
"MIT"
] | null | null | null |
#!/usr/bin/env python3
# Advent of Code 2016 - Day 2, Part Two
import sys
from turtle import Vec2D
keypad = [[None, None, '1', None, None],
[None, '2', '3', '4', None],
[ '5', '6', '7', '8', '9'],
[None, 'A', 'B', 'C', None],
[None, None, 'D', None, None]]
moves = { 'U' : Vec2D(-1, 0),
'D' : Vec2D(+1, 0),
'L' : Vec2D( 0, -1),
'R' : Vec2D( 0, +1)
}
if __name__ == '__main__':
sys.exit(main(sys.argv))
| 26.829268
| 67
| 0.48
|
#!/usr/bin/env python3
# Advent of Code 2016 - Day 2, Part Two
import sys
from turtle import Vec2D
keypad = [[None, None, '1', None, None],
[None, '2', '3', '4', None],
[ '5', '6', '7', '8', '9'],
[None, 'A', 'B', 'C', None],
[None, None, 'D', None, None]]
moves = { 'U' : Vec2D(-1, 0),
'D' : Vec2D(+1, 0),
'L' : Vec2D( 0, -1),
'R' : Vec2D( 0, +1)
}
def in_bounds(v):
return all(0 <= d <= 4 for d in v) and vec2digit(v) is not None
def vec2digit(v):
return keypad[v[0]][v[1]]
def main(argv):
if len(sys.argv) < 2:
print("Usage: {} puzzle.txt".format(argv[0]))
return(1)
position = Vec2D(2, 0)
with open(argv[1]) as f:
for line in f:
for move in line.strip():
new_position = position + moves[move]
if in_bounds(new_position):
position = new_position
print(str(vec2digit(position)), end='')
print()
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv))
| 0
| 0
| 0
| 0
| 0
| 518
| 0
| 0
| 77
|
49fab2ca3160ce1caa8610ee409dddbe3785c054
| 91
|
py
|
Python
|
tests/data/directive/conf.py
|
t4ngo/sphinxcontrib-multilatex
|
cb63e0ef5d3059aa9db892abfd550a60a1e650a1
|
[
"Apache-2.0"
] | 1
|
2016-09-10T10:16:03.000Z
|
2016-09-10T10:16:03.000Z
|
tests/data/directive/conf.py
|
t4ngo/sphinxcontrib-multilatex
|
cb63e0ef5d3059aa9db892abfd550a60a1e650a1
|
[
"Apache-2.0"
] | null | null | null |
tests/data/directive/conf.py
|
t4ngo/sphinxcontrib-multilatex
|
cb63e0ef5d3059aa9db892abfd550a60a1e650a1
|
[
"Apache-2.0"
] | null | null | null |
source_suffix = ".txt"
master_doc = "index"
extensions = ["sphinxcontrib.multilatex"]
| 18.2
| 42
| 0.703297
|
source_suffix = ".txt"
master_doc = "index"
extensions = ["sphinxcontrib.multilatex"]
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
c70fb720099cd2599c5ecd57955fdb2d15a4cf94
| 2,282
|
py
|
Python
|
src/magento2/language-csv-fixer.py
|
jeremycurny/devops-py
|
eea36ff2bcd97affaae929a67ed289fe9e462ff0
|
[
"MIT"
] | null | null | null |
src/magento2/language-csv-fixer.py
|
jeremycurny/devops-py
|
eea36ff2bcd97affaae929a67ed289fe9e462ff0
|
[
"MIT"
] | null | null | null |
src/magento2/language-csv-fixer.py
|
jeremycurny/devops-py
|
eea36ff2bcd97affaae929a67ed289fe9e462ff0
|
[
"MIT"
] | null | null | null |
#!/usr/bin/env python
import csv, json, operator, os, sys
import xml.etree.ElementTree as ET
composerJsonPath = 'composer.json'
languageXmlPath = 'language.xml'
if not os.path.exists(composerJsonPath):
# File does not exists
print "File " + composerJsonPath + " not found"
sys.exit(1)
if not os.path.exists(languageXmlPath):
# File does not exists
print "File " + languageXmlPath + " not found"
sys.exit(1)
file = open(composerJsonPath, "r")
composerJsonContent = file.read()
file.close()
composerTypeData = json.loads(composerJsonContent)['type']
if composerTypeData != "magento2-language":
# It's not a language package
print "This is not a language package, type: " + composerTypeData
sys.exit(1)
xml = ET.parse(languageXmlPath)
languageCode = xml.getroot().find('code').text
languageCsvPath = languageCode + '.csv'
if not os.path.exists(languageCsvPath):
# File does not exists
print "File " + languageCsvPath + " not found"
sys.exit(1)
cleanData = []
with open(languageCsvPath) as f:
rawData = csv.reader(f, delimiter=',')
for rawRow in rawData:
if len(rawRow) == 0:
# Empty line
continue;
if rawRow[0][:1] == "#":
# Commented line
continue;
if len(rawRow) < 4:
# Wtf is this
print "Incorrect line: \"" + ','.join(rawRow) + "\""
print "At least 4 columns are expected"
sys.exit(1)
if (rawRow[2] not in ["module", "theme"]):
# 3rd column incorrect
print "Incorrect line: \"" + ','.join(rawRow) + "\""
print "3rd column has to be \"module\" or \"theme\", current value: " + rawRow[2]
sys.exit(1)
cleanData.append(rawRow)
f.close()
cleanData = sorted(cleanData, key=operator.itemgetter(2,3,0,1))
with open(languageCsvPath, 'wb') as f:
currentPackage = ""
writer = csv.writer(f, lineterminator='\n')
for row in cleanData:
rowPackage = row[2].capitalize() + " " + row[3]
if rowPackage != currentPackage:
if currentPackage != "":
writer.writerow([])
currentPackage = rowPackage
writer.writerow(["## " + currentPackage + " ##"])
writer.writerow(row)
f.close()
| 30.026316
| 93
| 0.608677
|
#!/usr/bin/env python
import csv, json, operator, os, sys
import xml.etree.ElementTree as ET
composerJsonPath = 'composer.json'
languageXmlPath = 'language.xml'
if not os.path.exists(composerJsonPath):
# File does not exists
print "File " + composerJsonPath + " not found"
sys.exit(1)
if not os.path.exists(languageXmlPath):
# File does not exists
print "File " + languageXmlPath + " not found"
sys.exit(1)
file = open(composerJsonPath, "r")
composerJsonContent = file.read()
file.close()
composerTypeData = json.loads(composerJsonContent)['type']
if composerTypeData != "magento2-language":
# It's not a language package
print "This is not a language package, type: " + composerTypeData
sys.exit(1)
xml = ET.parse(languageXmlPath)
languageCode = xml.getroot().find('code').text
languageCsvPath = languageCode + '.csv'
if not os.path.exists(languageCsvPath):
# File does not exists
print "File " + languageCsvPath + " not found"
sys.exit(1)
cleanData = []
with open(languageCsvPath) as f:
rawData = csv.reader(f, delimiter=',')
for rawRow in rawData:
if len(rawRow) == 0:
# Empty line
continue;
if rawRow[0][:1] == "#":
# Commented line
continue;
if len(rawRow) < 4:
# Wtf is this
print "Incorrect line: \"" + ','.join(rawRow) + "\""
print "At least 4 columns are expected"
sys.exit(1)
if (rawRow[2] not in ["module", "theme"]):
# 3rd column incorrect
print "Incorrect line: \"" + ','.join(rawRow) + "\""
print "3rd column has to be \"module\" or \"theme\", current value: " + rawRow[2]
sys.exit(1)
cleanData.append(rawRow)
f.close()
cleanData = sorted(cleanData, key=operator.itemgetter(2,3,0,1))
with open(languageCsvPath, 'wb') as f:
currentPackage = ""
writer = csv.writer(f, lineterminator='\n')
for row in cleanData:
rowPackage = row[2].capitalize() + " " + row[3]
if rowPackage != currentPackage:
if currentPackage != "":
writer.writerow([])
currentPackage = rowPackage
writer.writerow(["## " + currentPackage + " ##"])
writer.writerow(row)
f.close()
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
44c2d4091b0b65c4e713d3fb92c8d2106838080c
| 1,340
|
py
|
Python
|
mopy/impl/dvonn/action.py
|
TylerSandman/mopy
|
df66bb728f6dacee8ee6267a8802a4b71a04fd43
|
[
"MIT"
] | null | null | null |
mopy/impl/dvonn/action.py
|
TylerSandman/mopy
|
df66bb728f6dacee8ee6267a8802a4b71a04fd43
|
[
"MIT"
] | null | null | null |
mopy/impl/dvonn/action.py
|
TylerSandman/mopy
|
df66bb728f6dacee8ee6267a8802a4b71a04fd43
|
[
"MIT"
] | null | null | null |
"""This module contains a representation of an action in the game Dvonn."""
| 31.904762
| 79
| 0.567164
|
"""This module contains a representation of an action in the game Dvonn."""
from mopy.action import Action
from enum import Enum
class DvonnAction(Action):
class Type(Enum):
PLACE = 1
MOVE = 2
def __init__(self, type_, end, start=None):
"""
Create an action representing placing or moving a ring.
Args:
type_ (Type): Which action to take.
end (Tuple(int, int)): The final grid position of the ring or
ring stack to be placed or moved.
start (Tuple(int, int)): The grid position of the ring to be
moved during this action. Only to be used during MOVE actions.
Defaults to None.
"""
self.type = type_
self.end = end
self.start = start
def __eq__(self, other):
eq_type = self.type == other.type
eq_end = self.end == other.end
eq_start = self.start == other.start
return (eq_type and eq_end and eq_start)
def __hash__(self):
return hash((self.type, self.end, self.start))
def __repr__(self):
if self.type == DvonnAction.Type.PLACE:
return self.type.name + " at " + str(self.end)
return self.type.name + " " + str(self.start) + " to " + str(self.end)
| 0
| 0
| 0
| 1,179
| 0
| 0
| 0
| 9
| 73
|
2f6fc55efb4642bc95fccfcc575e39d053da1f03
| 1,069
|
py
|
Python
|
data/transcoder_evaluation_gfg/python/COUNT_NUMBERS_CAN_CONSTRUCTED_USING_TWO_NUMBERS.py
|
mxl1n/CodeGen
|
e5101dd5c5e9c3720c70c80f78b18f13e118335a
|
[
"MIT"
] | 241
|
2021-07-20T08:35:20.000Z
|
2022-03-31T02:39:08.000Z
|
data/transcoder_evaluation_gfg/python/COUNT_NUMBERS_CAN_CONSTRUCTED_USING_TWO_NUMBERS.py
|
mxl1n/CodeGen
|
e5101dd5c5e9c3720c70c80f78b18f13e118335a
|
[
"MIT"
] | 49
|
2021-07-22T23:18:42.000Z
|
2022-03-24T09:15:26.000Z
|
data/transcoder_evaluation_gfg/python/COUNT_NUMBERS_CAN_CONSTRUCTED_USING_TWO_NUMBERS.py
|
mxl1n/CodeGen
|
e5101dd5c5e9c3720c70c80f78b18f13e118335a
|
[
"MIT"
] | 71
|
2021-07-21T05:17:52.000Z
|
2022-03-29T23:49:28.000Z
|
# Copyright (c) 2019-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
#
#TOFILL
if __name__ == '__main__':
param = [
(23,16,16,),
(56,95,6,),
(30,63,1,),
(51,89,46,),
(21,99,38,),
(69,63,50,),
(12,69,73,),
(44,52,9,),
(99,65,10,),
(46,58,37,)
]
n_success = 0
for i, parameters_set in enumerate(param):
if f_filled(*parameters_set) == f_gold(*parameters_set):
n_success+=1
print("#Results: %i, %i" % (n_success, len(param)))
| 24.860465
| 64
| 0.466791
|
# Copyright (c) 2019-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
#
def f_gold ( n , x , y ) :
arr = [ False for i in range ( n + 2 ) ]
if ( x <= n ) :
arr [ x ] = True
if ( y <= n ) :
arr [ y ] = True
result = 0
for i in range ( min ( x , y ) , n + 1 ) :
if ( arr [ i ] ) :
if ( i + x <= n ) :
arr [ i + x ] = True
if ( i + y <= n ) :
arr [ i + y ] = True
result = result + 1
return result
#TOFILL
if __name__ == '__main__':
param = [
(23,16,16,),
(56,95,6,),
(30,63,1,),
(51,89,46,),
(21,99,38,),
(69,63,50,),
(12,69,73,),
(44,52,9,),
(99,65,10,),
(46,58,37,)
]
n_success = 0
for i, parameters_set in enumerate(param):
if f_filled(*parameters_set) == f_gold(*parameters_set):
n_success+=1
print("#Results: %i, %i" % (n_success, len(param)))
| 0
| 0
| 0
| 0
| 0
| 417
| 0
| 0
| 22
|
cb2b2350e7afa94fce2f50c53e2912e1644d082c
| 559
|
py
|
Python
|
python/005/005.py
|
seaneshbaugh/rosetta-euler
|
14f24dfc347e7d9a4c9c0f090acf2811aa65f453
|
[
"MIT"
] | 36
|
2015-01-24T08:11:52.000Z
|
2021-03-21T00:32:00.000Z
|
python/005/005.py
|
seaneshbaugh/rosetta-euler
|
14f24dfc347e7d9a4c9c0f090acf2811aa65f453
|
[
"MIT"
] | null | null | null |
python/005/005.py
|
seaneshbaugh/rosetta-euler
|
14f24dfc347e7d9a4c9c0f090acf2811aa65f453
|
[
"MIT"
] | 4
|
2015-01-24T08:17:42.000Z
|
2022-01-11T16:10:56.000Z
|
from operator import mul
from functools import reduce
print(reduce(mul, reduce(overlap, [prime_factors(x) for x in range(1, 21)])))
| 15.108108
| 77
| 0.509839
|
from operator import mul
from functools import reduce
def prime_factors(n):
found = False
v = 2
i = 2
while i < n -1 and found == False:
if n % i == 0:
found = True
v = i
i += 1
if found:
factors = [v] + prime_factors(n // v)
else:
factors = [n]
return factors
def overlap(a, b):
for n in b:
if n in a:
a.remove(n)
result = sorted(a + b)
return result
print(reduce(mul, reduce(overlap, [prime_factors(x) for x in range(1, 21)])))
| 0
| 0
| 0
| 0
| 0
| 380
| 0
| 0
| 46
|
ca7c7edf7ff446e57c190dc6666d3e16fbd106a2
| 792
|
py
|
Python
|
docker-min/mkimage/just-bash.py
|
robnagler/container-play
|
8f112a1bdaf14d9be0a62a548a08a34f03c193f6
|
[
"Apache-2.0"
] | null | null | null |
docker-min/mkimage/just-bash.py
|
robnagler/container-play
|
8f112a1bdaf14d9be0a62a548a08a34f03c193f6
|
[
"Apache-2.0"
] | null | null | null |
docker-min/mkimage/just-bash.py
|
robnagler/container-play
|
8f112a1bdaf14d9be0a62a548a08a34f03c193f6
|
[
"Apache-2.0"
] | null | null | null |
#!/usr/bin/env python
# ./mkimage.sh --tag m1 m1.py
from __future__ import absolute_import, division, print_function
import os
import subprocess
import sys
files=[
'/usr/bin/bash',
'/usr/bin/ls',
]
os.chdir(sys.argv[1])
os.umask(0o22)
for d in (
'etc',
'tmp',
'var/tmp',
'usr/bin',
'usr/lib',
'usr/lib64',
'usr/sbin',
):
os.makedirs(d, mode=0o777)
for s in ('bin', 'lib', 'lib64', 'sbin'):
os.symlink('usr/' + s, s)
libs=set()
for p in files:
_copy(p)
try:
for l in subprocess.check_output(['ldd', p]).split():
if l.startswith('/'):
libs.add(l)
except Exception as e:
print(e)
for l in libs:
_copy(l)
| 16.851064
| 64
| 0.565657
|
#!/usr/bin/env python
# ./mkimage.sh --tag m1 m1.py
from __future__ import absolute_import, division, print_function
import os
import shutil
import subprocess
import sys
files=[
'/usr/bin/bash',
'/usr/bin/ls',
]
os.chdir(sys.argv[1])
os.umask(0o22)
for d in (
'etc',
'tmp',
'var/tmp',
'usr/bin',
'usr/lib',
'usr/lib64',
'usr/sbin',
):
os.makedirs(d, mode=0o777)
for s in ('bin', 'lib', 'lib64', 'sbin'):
os.symlink('usr/' + s, s)
def _copy(fn):
shutil.copy2(fn, fn.lstrip('/'))
return fn
libs=set()
for p in files:
_copy(p)
try:
for l in subprocess.check_output(['ldd', p]).split():
if l.startswith('/'):
libs.add(l)
except Exception as e:
print(e)
for l in libs:
_copy(l)
| 0
| 0
| 0
| 0
| 0
| 44
| 0
| -8
| 45
|
d9bda7d97a3a63c0a34725e21d88e1e13fa70eeb
| 2,610
|
py
|
Python
|
ch07/bagging.py
|
stoneflyop1/py_machine_learning
|
18fd635d312f957ca4fcc23d856a1bcd4cf95f48
|
[
"MIT"
] | null | null | null |
ch07/bagging.py
|
stoneflyop1/py_machine_learning
|
18fd635d312f957ca4fcc23d856a1bcd4cf95f48
|
[
"MIT"
] | null | null | null |
ch07/bagging.py
|
stoneflyop1/py_machine_learning
|
18fd635d312f957ca4fcc23d856a1bcd4cf95f48
|
[
"MIT"
] | null | null | null |
import pandas as pd
df_wine = pd.read_csv('../data/wine.data', header=None)
df_wine.columns = [
'Class label', 'Alcohol', 'Malic acid', 'Ash', 'Alcalinity of ash',
'Magnesium', 'TOtal phenols', 'Flavanoids', 'Nonflavanoid phenols',
'Proanthocyanins', 'Color intensity', 'Hue',
'OD280/OD315 of diluted wines', 'Proline'
]
df_wine = df_wine[df_wine['Class label'] != 1]
y = df_wine['Class label'].values
X = df_wine[['Alcohol', 'Hue']].values
from sklearn.preprocessing import LabelEncoder
from sklearn.model_selection import train_test_split
le = LabelEncoder()
y = le.fit_transform(y)
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.40, random_state=1
)
from sklearn.ensemble import BaggingClassifier
from sklearn.tree import DecisionTreeClassifier
tree = DecisionTreeClassifier(criterion="entropy", max_depth=None, random_state=1)
bag = BaggingClassifier(
base_estimator=tree, n_estimators=500, max_samples=1.0, max_features=1.0,
bootstrap=True, bootstrap_features=False, n_jobs=1, random_state=1
)
from sklearn.metrics import accuracy_score
tree = tree.fit(X_train, y_train)
y_train_pred = tree.predict(X_train)
y_test_pred = tree.predict(X_test)
tree_train = accuracy_score(y_train, y_train_pred)
tree_test = accuracy_score(y_test, y_test_pred)
print('Decision tree train/test accuracies %.3f/%.3f' % (tree_train, tree_test))
bag = bag.fit(X_train, y_train)
y_train_pred = bag.predict(X_train)
y_test_pred = bag.predict(X_test)
bag_train = accuracy_score(y_train, y_train_pred)
bag_test = accuracy_score(y_test, y_test_pred)
print('Bagging train/test accuracies %.3f/%.3f' % (bag_train, bag_test))
import numpy as np
x_min = X_train[:, 0].min() - 1
x_max = X_train[:, 0].max() + 1
y_min = X_train[:, 1].min() - 1
y_max = X_train[:, 1].max() + 1
xx, yy = np.meshgrid(np.arange(x_min, x_max, 0.1), np.arange(y_min, y_max, 0.1))
import matplotlib.pyplot as plt
f, axarr = plt.subplots(
nrows=1, ncols=2, sharex='col', sharey='row', figsize=(8,3)
)
for idx, clf, tt in zip([0, 1], [tree, bag], ['Decision Tree', 'Bagging']):
clf.fit(X_train, y_train)
Z = clf.predict(np.c_[xx.ravel(), yy.ravel()])
Z = Z.reshape(xx.shape)
axarr[idx].contourf(xx, yy, Z, alpha=0.3)
axarr[idx].scatter(
X_train[y_train==0, 0], X_train[y_train==0, 1], c='blue', marker='^'
)
axarr[idx].scatter(
X_train[y_train==1, 0], X_train[y_train==1, 1], c='red', marker='o'
)
axarr[idx].set_title(tt)
axarr[0].set_ylabel('Alcohol', fontsize=12)
plt.text(
10.2, -0.7, s='Hue', ha='center', va='center', fontsize=12
)
plt.show()
| 37.285714
| 82
| 0.702682
|
import pandas as pd
df_wine = pd.read_csv('../data/wine.data', header=None)
df_wine.columns = [
'Class label', 'Alcohol', 'Malic acid', 'Ash', 'Alcalinity of ash',
'Magnesium', 'TOtal phenols', 'Flavanoids', 'Nonflavanoid phenols',
'Proanthocyanins', 'Color intensity', 'Hue',
'OD280/OD315 of diluted wines', 'Proline'
]
df_wine = df_wine[df_wine['Class label'] != 1]
y = df_wine['Class label'].values
X = df_wine[['Alcohol', 'Hue']].values
from sklearn.preprocessing import LabelEncoder
from sklearn.model_selection import train_test_split
le = LabelEncoder()
y = le.fit_transform(y)
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.40, random_state=1
)
from sklearn.ensemble import BaggingClassifier
from sklearn.tree import DecisionTreeClassifier
tree = DecisionTreeClassifier(criterion="entropy", max_depth=None, random_state=1)
bag = BaggingClassifier(
base_estimator=tree, n_estimators=500, max_samples=1.0, max_features=1.0,
bootstrap=True, bootstrap_features=False, n_jobs=1, random_state=1
)
from sklearn.metrics import accuracy_score
tree = tree.fit(X_train, y_train)
y_train_pred = tree.predict(X_train)
y_test_pred = tree.predict(X_test)
tree_train = accuracy_score(y_train, y_train_pred)
tree_test = accuracy_score(y_test, y_test_pred)
print('Decision tree train/test accuracies %.3f/%.3f' % (tree_train, tree_test))
bag = bag.fit(X_train, y_train)
y_train_pred = bag.predict(X_train)
y_test_pred = bag.predict(X_test)
bag_train = accuracy_score(y_train, y_train_pred)
bag_test = accuracy_score(y_test, y_test_pred)
print('Bagging train/test accuracies %.3f/%.3f' % (bag_train, bag_test))
import numpy as np
x_min = X_train[:, 0].min() - 1
x_max = X_train[:, 0].max() + 1
y_min = X_train[:, 1].min() - 1
y_max = X_train[:, 1].max() + 1
xx, yy = np.meshgrid(np.arange(x_min, x_max, 0.1), np.arange(y_min, y_max, 0.1))
import matplotlib.pyplot as plt
f, axarr = plt.subplots(
nrows=1, ncols=2, sharex='col', sharey='row', figsize=(8,3)
)
for idx, clf, tt in zip([0, 1], [tree, bag], ['Decision Tree', 'Bagging']):
clf.fit(X_train, y_train)
Z = clf.predict(np.c_[xx.ravel(), yy.ravel()])
Z = Z.reshape(xx.shape)
axarr[idx].contourf(xx, yy, Z, alpha=0.3)
axarr[idx].scatter(
X_train[y_train==0, 0], X_train[y_train==0, 1], c='blue', marker='^'
)
axarr[idx].scatter(
X_train[y_train==1, 0], X_train[y_train==1, 1], c='red', marker='o'
)
axarr[idx].set_title(tt)
axarr[0].set_ylabel('Alcohol', fontsize=12)
plt.text(
10.2, -0.7, s='Hue', ha='center', va='center', fontsize=12
)
plt.show()
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
44ca70b70e43421fd03a35b311c2fb12bc1b0a12
| 251
|
py
|
Python
|
scraping/views.py
|
stepacool/work4sharingPy
|
c6ffdb3ac8a2956181c290bc4617e3cb11e13dba
|
[
"MIT"
] | null | null | null |
scraping/views.py
|
stepacool/work4sharingPy
|
c6ffdb3ac8a2956181c290bc4617e3cb11e13dba
|
[
"MIT"
] | 5
|
2021-03-19T01:48:51.000Z
|
2021-09-22T18:52:20.000Z
|
scraping/views.py
|
stepacool/work4sharingPy
|
c6ffdb3ac8a2956181c290bc4617e3cb11e13dba
|
[
"MIT"
] | 2
|
2020-04-16T20:23:11.000Z
|
2020-04-18T12:35:46.000Z
|
# Create your views here.
| 22.818182
| 51
| 0.844622
|
from django.shortcuts import render
# Create your views here.
from rest_framework.generics import CreateAPIView
from scraping.serializers import EmployeeSerializer
class CreateEmployeeView(CreateAPIView):
serializer_class = EmployeeSerializer
| 0
| 0
| 0
| 61
| 0
| 0
| 0
| 72
| 90
|
1e70df7c2ef9bce6a79c55efd4279997fce505e9
| 7,610
|
py
|
Python
|
src/test_verbindung_ms&r.py
|
technikamateur/robolab
|
1509c0c558f5c5d9a6cf944a21e79b07486853a0
|
[
"MIT"
] | null | null | null |
src/test_verbindung_ms&r.py
|
technikamateur/robolab
|
1509c0c558f5c5d9a6cf944a21e79b07486853a0
|
[
"MIT"
] | null | null | null |
src/test_verbindung_ms&r.py
|
technikamateur/robolab
|
1509c0c558f5c5d9a6cf944a21e79b07486853a0
|
[
"MIT"
] | null | null | null |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Mar 18 11:15:09 2019
@author: panyongyi
"""
#!/usr/bin/env python3
# Suggestion: Do not import the ev3dev.ev3 module in this file
import paho.mqtt.client as mqtt
import uuid
from planet import Direction
client = mqtt.Client(client_id=str(uuid.uuid4()), # client_id has to be unique among ALL users
clean_session=False,
protocol=mqtt.MQTTv31)
com = Communication(client)
com.send_ready()
com.timer()
#com.send_test()
#com.timer()
com.pruefDaten()
com.timer()
com.pruefDaten2()
com.timer()
com.pruefDaten3()
com.timer()
com.pruefDaten4()
com.timer()
com.pruefDaten5()
com.timer()
node = {(17,38):[(Direction.NORTH, -2), (Direction.WEST, -2), (Direction.EAST, -1)]}
com.pathSelect(node)
com.timer()
'''
t0 = time.time()
while (time.time()-t0) < 2:
pass
print("neue Message kommt!")
com.pruefDaten()
while (time.time()-t0) < 2:
pass
print("neue Message kommt!")
'''
| 31.708333
| 236
| 0.595795
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Mar 18 11:15:09 2019
@author: panyongyi
"""
#!/usr/bin/env python3
# Suggestion: Do not import the ev3dev.ev3 module in this file
import json
import paho.mqtt.client as mqtt
import uuid
import time
from planet import Planet, Direction
class Communication:
"""
Class to hold the MQTT client
Feel free to add functions, change the constructor and the example send_message() to satisfy your requirements and thereby solve the task according to the specifications
"""
def __init__(self, mqtt_client):
""" Initializes communication module, connect to server, subscribe, etc. """
# THESE TWO VARIABLES MUST NOT BE CHANGED
self.client = mqtt_client
self.client.on_message = self.on_message
# ADD YOUR VARIABLES HERE
# Basic configuration of MQTT
# Wichtig?
self.client.on_message = self.on_message_excepthandler
self.client.username_pw_set('118', password='LQR2AabmwY') # Your group credentials
self.client.connect('mothership.inf.tu-dresden.de', port=8883)
self.client.subscribe('explorer/118', qos=1) # Subscribe to topic explorer/xxx
# self.send_ready()
# Start listening to incoming messages
self.client.loop_start()
#self.timer()
self.planet = Planet()
#Parameter:
self.data = None
self.topic = "explorer/118"
self.planet_Chan = None
self.aktX = None
self.aktY = None
self.direc = None
# this is a helper method that catches errors and prints them
# it is necessary because on_message is called by paho-mqtt in a different thread and exceptions
# are not handled in that thread
#
# you don't need to change this method at all
def on_message_excepthandler(self, client, data, message):
try:
self.on_message(client, data, message)
except:
import traceback
traceback.print_exc()
raise
# THIS FUNCTIONS SIGNATURE MUST NOT BE CHANGED
def on_message(self, client, data, message):
""" Handles the callback if any message arrived """
print('Got message with topic "{}":'.format(message.topic))
data = json.loads(message.payload.decode('utf-8'))
print(json.dumps(data, indent=2))
print('\n')
self.data = data
self.typ_Entsch()
#self.timer()
#Timer: jede 2 Sekunden warten:
def timer(self):
t0 = time.time()
while (time.time()-t0) < 2:
pass
print("neue Message kommt!")
def typ_Entsch(self): #Test
#print("schon in typ_Epntsch")
von = self.data["from"]
nach = self.data["type"]
if von == "server" and nach == "planet":
payload = self.data["payload"]
planetName = payload["planetName"]
self.planet_Chan = 'planet/'+planetName+'-118'
self.client.subscribe(self.planet_Chan, qos=1)
self.aktX = payload["startX"]
self.aktY = payload["startY"]
print(self.aktX, self.aktY)
elif von == "server" and nach == "pathSelect":
self.serverPath()
elif von == "server" and nach == "path":
self.set_korrePos()
def send_ready(self):
erk = '{"from": "client", "type": "ready"}'
self.client.publish("explorer/118", erk, qos=1)
def send_test(self):
mess = '{"from": "client", "type": "testplanet", "payload": {"planetName":"Hawkeye"}}'
self.client.publish("explorer/118", mess, qos=1)
def set_korrePos(self):
korre_pos = self.data["payload"]
startX = int(korre_pos["startX"])
startY = int(korre_pos["startY"])
startDir = korre_pos["startDirection"]
endX = int(korre_pos["endX"])
endY = int(korre_pos["endY"])
endDir = korre_pos["endDirection"]
weight = int(korre_pos["pathWeight"])
self.aktX = endX
self.aktY = endY
self.direc = endDir
self.planet.add_path(((startX, startY), startDir), ((endX, endY), endDir), weight)
return [(endX, endY), endDir]
def pruefDaten(self):
self.pathStat = "free"
print(self.planet_Chan)
pruef = '{"from":"client", "type":"path", "payload": {"startX": '+str(13)+', "startY": '+str(37)+', "startDirection": "N", "endX": '+str(13)+', "endY": '+str(38)+', "endDirection": "S", "pathStatus": "'+str(self.pathStat)+'"} }'
self.client.publish(self.planet_Chan, pruef, qos=1)
def pruefDaten2(self):
self.pathStat = "free"
print(self.planet_Chan)
pruef = '{"from":"client", "type":"path", "payload": {"startX": '+str(13)+', "startY": '+str(38)+', "startDirection": "N", "endX": '+str(14)+', "endY": '+str(39)+', "endDirection": "W", "pathStatus": "'+str(self.pathStat)+'"} }'
self.client.publish(self.planet_Chan, pruef, qos=1)
def pruefDaten3(self):
self.pathStat = "free"
print(self.planet_Chan)
pruef = '{"from":"client", "type":"path", "payload": {"startX": '+str(14)+', "startY": '+str(39)+', "startDirection": "S", "endX": '+str(15)+', "endY": '+str(37)+', "endDirection": "W", "pathStatus": "'+str(self.pathStat)+'"} }'
self.client.publish(self.planet_Chan, pruef, qos=1)
def pruefDaten4(self):
self.pathStat = "free"
print(self.planet_Chan)
pruef = '{"from":"client", "type":"path", "payload": {"startX": '+str(15)+', "startY": '+str(37)+', "startDirection": "E", "endX": '+str(17)+', "endY": '+str(37)+', "endDirection": "W", "pathStatus": "'+str(self.pathStat)+'"} }'
self.client.publish(self.planet_Chan, pruef, qos=1)
def pruefDaten5(self):
self.pathStat = "free"
print(self.planet_Chan)
pruef = '{"from":"client", "type":"path", "payload": {"startX": '+str(17)+', "startY": '+str(37)+', "startDirection": "N", "endX": '+str(17)+', "endY": '+str(38)+', "endDirection": "W", "pathStatus": "'+str(self.pathStat)+'"} }'
self.client.publish(self.planet_Chan, pruef, qos=1)
def pathSelect(self, node):
result = self.planet.unknown_paths(node)
startX = result[0][0]
startY = result[0][1]
startDir = result[1].value
self.aktX = startX
self.aktY = startY
self.direc = startDir
select = '{"from":"client", "type":"pathSelect", "payload": {"startX": '+str(startX)+', "startY": '+str(startY)+', "startDirection": "'+str(startDir)+'"} }'
self.client.publish(self.planet_Chan, select, qos=1)
return self.direc
def serverPath(self):
path_server = self.data["payload"]
startDir = path_server["startDirection"]
self.direc = startDir
return Direction(startDir)
client = mqtt.Client(client_id=str(uuid.uuid4()), # client_id has to be unique among ALL users
clean_session=False,
protocol=mqtt.MQTTv31)
com = Communication(client)
com.send_ready()
com.timer()
#com.send_test()
#com.timer()
com.pruefDaten()
com.timer()
com.pruefDaten2()
com.timer()
com.pruefDaten3()
com.timer()
com.pruefDaten4()
com.timer()
com.pruefDaten5()
com.timer()
node = {(17,38):[(Direction.NORTH, -2), (Direction.WEST, -2), (Direction.EAST, -1)]}
com.pathSelect(node)
com.timer()
'''
t0 = time.time()
while (time.time()-t0) < 2:
pass
print("neue Message kommt!")
com.pruefDaten()
while (time.time()-t0) < 2:
pass
print("neue Message kommt!")
'''
| 0
| 0
| 0
| 6,552
| 0
| 0
| 0
| -12
| 67
|
d7fa780746f7314c474e988e5736d6c252c9a458
| 500
|
py
|
Python
|
biblio/migrations/0003_book_isbn.py
|
DanicoSantos/librhes
|
616ed1444d47c50dfbd6ecda0d32ee216d2044cb
|
[
"MIT"
] | null | null | null |
biblio/migrations/0003_book_isbn.py
|
DanicoSantos/librhes
|
616ed1444d47c50dfbd6ecda0d32ee216d2044cb
|
[
"MIT"
] | null | null | null |
biblio/migrations/0003_book_isbn.py
|
DanicoSantos/librhes
|
616ed1444d47c50dfbd6ecda0d32ee216d2044cb
|
[
"MIT"
] | null | null | null |
# Generated by Django 3.2.7 on 2021-09-09 18:23
| 26.315789
| 167
| 0.628
|
# Generated by Django 3.2.7 on 2021-09-09 18:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('biblio', '0002_rename_isbn_book_genre'),
]
operations = [
migrations.AddField(
model_name='book',
name='isbn',
field=models.CharField(default='', help_text='13 Character <a href="https://www.isbn-international.org/content/what-isbn">ISBN number</a>', max_length=13),
),
]
| 0
| 0
| 0
| 386
| 0
| 0
| 0
| 19
| 46
|
7d614047f48da2ec532109926d3175e03253eb47
| 2,276
|
py
|
Python
|
pytorch-frontend/caffe2/python/operator_test/channel_backprop_stats_op_test.py
|
AndreasKaratzas/stonne
|
2915fcc46cc94196303d81abbd1d79a56d6dd4a9
|
[
"MIT"
] | 40
|
2021-06-01T07:37:59.000Z
|
2022-03-25T01:42:09.000Z
|
pytorch-frontend/caffe2/python/operator_test/channel_backprop_stats_op_test.py
|
AndreasKaratzas/stonne
|
2915fcc46cc94196303d81abbd1d79a56d6dd4a9
|
[
"MIT"
] | 14
|
2021-06-01T11:52:46.000Z
|
2022-03-25T02:13:08.000Z
|
pytorch-frontend/caffe2/python/operator_test/channel_backprop_stats_op_test.py
|
AndreasKaratzas/stonne
|
2915fcc46cc94196303d81abbd1d79a56d6dd4a9
|
[
"MIT"
] | 7
|
2021-07-20T19:34:26.000Z
|
2022-03-13T21:07:36.000Z
|
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import unittest
if __name__ == "__main__":
unittest.main()
| 36.126984
| 79
| 0.59007
|
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from caffe2.python import core
import caffe2.python.hypothesis_test_util as hu
from hypothesis import given, settings
import caffe2.python.serialized_test.serialized_test_util as serial
import hypothesis.strategies as st
import numpy as np
import unittest
class TestChannelBackpropStats(serial.SerializedTestCase):
@given(
size=st.integers(7, 10),
inputChannels=st.integers(1, 10),
batchSize=st.integers(1, 3),
**hu.gcs
)
@settings(deadline=10000)
def testChannelBackpropStats(self, size, inputChannels, batchSize, gc, dc):
op = core.CreateOperator(
"ChannelBackpropStats",
["X", "mean", "invStdDev", "outputGrad"],
["scaleGrad", "biasGrad"],
)
def referenceChannelBackpropStatsTest(X, mean, invStdDev, outputGrad):
scaleGrad = np.zeros(inputChannels)
biasGrad = np.zeros(inputChannels)
for n in range(batchSize):
for c in range(inputChannels):
for h in range(size):
for w in range(size):
biasGrad[c] += outputGrad[n, c, h, w]
scaleGrad[c] += (
X[n, c, h, w] - mean[c]
) * invStdDev[c] * outputGrad[n, c, h, w]
return scaleGrad, biasGrad
X = np.random.rand(batchSize, inputChannels, size, size)\
.astype(np.float32) - 0.5
sums = np.sum(X, axis=(0, 2, 3), keepdims=False)
numPixels = size * size * batchSize
mean = sums / numPixels
sumsq = np.sum(X**2, axis=(0, 2, 3), keepdims=False)
var = ((sumsq -
(sums * sums) / numPixels) / numPixels).astype(np.float32)
invStdDev = 1 / np.sqrt(var)
outputGrad = np.random.rand(batchSize, inputChannels, size, size)\
.astype(np.float32) - 0.5
self.assertReferenceChecks(
gc, op, [X, mean, invStdDev, outputGrad],
referenceChannelBackpropStatsTest
)
if __name__ == "__main__":
unittest.main()
| 0
| 1,734
| 0
| 37
| 0
| 0
| 0
| 108
| 182
|
47fcdec47eb87ee97751e3275df1278d4abe7646
| 6,012
|
py
|
Python
|
spycial/erf.py
|
person142/spycial
|
d017048c8c09ee0714f438cb75c2e221e068baee
|
[
"BSD-3-Clause"
] | 6
|
2019-04-04T21:53:40.000Z
|
2020-02-10T17:16:40.000Z
|
spycial/erf.py
|
person142/special
|
d017048c8c09ee0714f438cb75c2e221e068baee
|
[
"BSD-3-Clause"
] | null | null | null |
spycial/erf.py
|
person142/special
|
d017048c8c09ee0714f438cb75c2e221e068baee
|
[
"BSD-3-Clause"
] | 1
|
2019-09-14T15:09:21.000Z
|
2019-09-14T15:09:21.000Z
|
"""Code adapted from Boost, which is:
(C) Copyright John Maddock 2006.
Use, modification and distribution are subject to the
Boost Software License, Version 1.0. (See accompanying file
LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
"""
import numpy as np
P1 = np.array([
-0.000322780120964605683831,
-0.00772758345802133288487,
-0.0509990735146777432841,
-0.338165134459360935041,
0.0834305892146531832907
])
Q1 = np.array([
0.000370900071787748000569,
0.00858571925074406212772,
0.0875222600142252549554,
0.455004033050794024546,
1.0
])
P2 = np.array([
0.00180424538297014223957,
0.0195049001251218801359,
0.0888900368967884466578,
0.191003695796775433986,
0.178114665841120341155,
-0.098090592216281240205
])
Q2 = np.array([
0.337511472483094676155e-5,
0.0113385233577001411017,
0.12385097467900864233,
0.578052804889902404909,
1.42628004845511324508,
1.84759070983002217845,
1.0
])
P3 = np.array([
0.000235839115596880717416,
0.00323962406290842133584,
0.0175679436311802092299,
0.04394818964209516296,
0.0386540375035707201728,
-0.0243500476207698441272
])
Q3 = np.array([
0.00410369723978904575884,
0.0563921837420478160373,
0.325732924782444448493,
0.982403709157920235114,
1.53991494948552447182,
1.0
])
P4 = np.array([
0.113212406648847561139e-4,
0.000250269961544794627958,
0.00212825620914618649141,
0.00840807615555585383007,
0.0137384425896355332126,
0.00295276716530971662634
])
Q4 = np.array([
0.000479411269521714493907,
0.0105982906484876531489,
0.0958492726301061423444,
0.442597659481563127003,
1.04217814166938418171,
1.0
])
P5 = np.array([
-2.8175401114513378771,
-3.22729451764143718517,
-2.5518551727311523996,
-0.687717681153649930619,
-0.212652252872804219852,
0.0175389834052493308818,
0.00628057170626964891937
])
Q5 = np.array([
5.48409182238641741584,
13.5064170191802889145,
22.9367376522880577224,
15.930646027911794143,
11.0567237927800161565,
2.79257750980575282228,
1.0
])
| 26.72
| 69
| 0.618596
|
"""Code adapted from Boost, which is:
(C) Copyright John Maddock 2006.
Use, modification and distribution are subject to the
Boost Software License, Version 1.0. (See accompanying file
LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
"""
from numba import njit, vectorize
import numpy as np
from . import settings
from .evalpoly import _devalpoly
P1 = np.array([
-0.000322780120964605683831,
-0.00772758345802133288487,
-0.0509990735146777432841,
-0.338165134459360935041,
0.0834305892146531832907
])
Q1 = np.array([
0.000370900071787748000569,
0.00858571925074406212772,
0.0875222600142252549554,
0.455004033050794024546,
1.0
])
P2 = np.array([
0.00180424538297014223957,
0.0195049001251218801359,
0.0888900368967884466578,
0.191003695796775433986,
0.178114665841120341155,
-0.098090592216281240205
])
Q2 = np.array([
0.337511472483094676155e-5,
0.0113385233577001411017,
0.12385097467900864233,
0.578052804889902404909,
1.42628004845511324508,
1.84759070983002217845,
1.0
])
P3 = np.array([
0.000235839115596880717416,
0.00323962406290842133584,
0.0175679436311802092299,
0.04394818964209516296,
0.0386540375035707201728,
-0.0243500476207698441272
])
Q3 = np.array([
0.00410369723978904575884,
0.0563921837420478160373,
0.325732924782444448493,
0.982403709157920235114,
1.53991494948552447182,
1.0
])
P4 = np.array([
0.113212406648847561139e-4,
0.000250269961544794627958,
0.00212825620914618649141,
0.00840807615555585383007,
0.0137384425896355332126,
0.00295276716530971662634
])
Q4 = np.array([
0.000479411269521714493907,
0.0105982906484876531489,
0.0958492726301061423444,
0.442597659481563127003,
1.04217814166938418171,
1.0
])
P5 = np.array([
-2.8175401114513378771,
-3.22729451764143718517,
-2.5518551727311523996,
-0.687717681153649930619,
-0.212652252872804219852,
0.0175389834052493308818,
0.00628057170626964891937
])
Q5 = np.array([
5.48409182238641741584,
13.5064170191802889145,
22.9367376522880577224,
15.930646027911794143,
11.0567237927800161565,
2.79257750980575282228,
1.0
])
@njit('float64(float64, bool_)', cache=settings.CACHE)
def _erf_erfc(x, invert):
"""Compute erf if invert is False and erfc if invert is True."""
if x < 0:
if not invert:
return -_erf_erfc(-x, False)
elif x < -0.5:
return 2.0 - _erf_erfc(-x, True);
else:
return 1.0 + _erf_erfc(-x, False)
if x < 0.5:
# We're going to calculate erf
if x < 1e-10:
# Single term of the Taylor series
res = 1.128379167095512573896159*x
else:
# - Maximum deviation found: 1.561e-17
# - Expected error term: 1.561e-17
# - Maximum relative change in control points: 1.155e-04
# - Max error found at double precision: 2.961182e-17
Y = np.float32(1.044948577880859375)
xx = x*x
res = x*(Y + _devalpoly(P1, xx)/_devalpoly(Q1, xx))
elif (invert and x < 28) or (not invert and x < 5.8):
# We'll be calculating erfc:
invert = not invert
if x < 1.5:
# Maximum deviation found: 3.702e-17
# Expected error term: 3.702e-17
# Maximum relative change in control points: 2.845e-04
# Max error found at double precision: 4.841816e-17
Y = np.float32(0.405935764312744140625)
res = Y + _devalpoly(P2, x - 0.5)/_devalpoly(Q2, x - 0.5)
res *= np.exp(-x*x)/x
elif x < 2.5:
# Maximum deviation found: 3.909e-18
# Expected error term: 3.909e-18
# Maximum relative change in control points: 9.886e-05
# Max error found at double precision: 6.599585e-18
Y = np.float32(0.50672817230224609375)
res = Y + _devalpoly(P3, x - 1.5)/_devalpoly(Q3, x - 1.5)
res *= np.exp(-x*x)/x
elif x < 4.5:
# Maximum deviation found: 1.512e-17
# Expected error term: 1.512e-17
# Maximum relative change in control points: 2.222e-04
# Max error found at double precision: 2.062515e-17
Y = np.float32(0.5405750274658203125)
res = Y + _devalpoly(P4, x - 3.5)/_devalpoly(Q4, x - 3.5)
res *= np.exp(-x*x)/x
else:
# Maximum deviation found: 2.860e-17
# Expected error term: 2.859e-17
# Maximum relative change in control points: 1.357e-05
# Max error found at double precision: 2.997958e-17
Y = np.float32(0.5579090118408203125)
res = Y + _devalpoly(P5, 1.0/x)/_devalpoly(Q5, 1.0/x)
res *= np.exp(-x*x)/x
else:
# Any value of x larger than 28 will underflow to zero
result = 0.0
invert = not invert
if invert:
res = 1.0 - res
return res
@njit('float64(float64)', cache=settings.CACHE)
def _erf(x):
return _erf_erfc(x, False)
@njit('float64(float64)', cache=settings.CACHE)
def _erfc(x):
return _erf_erfc(x, True)
@vectorize(['float64(float64)'], nopython=True, cache=settings.CACHE)
def erf(x):
"""Error function.
Parameters
----------
x : array-like
Points on the real line
out : ndarray, optional
Output array for the values of `erf` at `x`
Returns
-------
ndarray
Values of `erf` at `x`
"""
return _erf(x)
@vectorize(['float64(float64)'], nopython=True, cache=settings.CACHE)
def erfc(x):
"""Complementary error function.
Parameters
----------
x : array-like
Points on the real line
out : ndarray, optional
Output array for the values of `erfc` at `x`
Returns
-------
ndarray
Values of `erf` at `x`
"""
return _erfc(x)
| 0
| 3,621
| 0
| 0
| 0
| 0
| 0
| 24
| 182
|
729b980ba4203cd8152efa3abec70e7a6d8e8e89
| 2,499
|
py
|
Python
|
adsa/demo.py
|
jtkorhonen/droplet-shape-solver
|
a88422d0505cb5b0b52419758b4e7c1c6910ecfe
|
[
"MIT"
] | null | null | null |
adsa/demo.py
|
jtkorhonen/droplet-shape-solver
|
a88422d0505cb5b0b52419758b4e7c1c6910ecfe
|
[
"MIT"
] | null | null | null |
adsa/demo.py
|
jtkorhonen/droplet-shape-solver
|
a88422d0505cb5b0b52419758b4e7c1c6910ecfe
|
[
"MIT"
] | null | null | null |
# -*- coding: utf-8 -*-
"""A simulation and visualization demonstration.
This module runs a simple demonstration of the capabilities of the adsa
simulations and analysis.
"""
| 34.708333
| 95
| 0.585034
|
# -*- coding: utf-8 -*-
"""A simulation and visualization demonstration.
This module runs a simple demonstration of the capabilities of the adsa
simulations and analysis.
"""
import logging
from pathlib import Path
import csv
from .solver import simulate_droplet_shape
from .analysis import calculate_volume
from .visualisation import plot_drop, plot_drop_3d
from matplotlib import pyplot as plt
def run_demo(args):
logging.info("Running demonstration.")
logging.info(f"args={args}")
R0 = args.R0
ca = args.ca
logging.info(f"R0={R0}, ca={ca}")
y = simulate_droplet_shape(R0, ca)
logging.debug(f"y.y={y.y}, y.y.shape={y.y.shape}")
x = y.y[0]
z = y.y[1]
vol = calculate_volume(x, z)
logging.info(f"Droplet volume: {vol}.")
fig = None
if args.type == '3d':
fig = plot_drop_3d(x, z, style=args.style, show=(not args.noshow))
elif args.type == '2d':
fig = plot_drop(x, z, ca=ca, style=args.style, show=(not args.noshow))
if fig is not None and args.save:
filepath = Path(args.save)
if (filepath.exists()):
logging.error(f"Will not overwrite existing file: {filepath}")
else:
logging.info(f"Saving plot output to {filepath}")
fig.savefig(filepath)
def run_sweep(args):
logging.info("Running sweep.")
logging.info(f"args={args}")
with open(args.results, 'w') as results_file:
logging.info(f"Opened {results_file} for writing results.")
writer = csv.DictWriter(results_file, delimiter=',', fieldnames=["R0", "CA", "Volume"])
writer.writeheader()
for R0 in args.R0:
for ca in args.ca:
y = simulate_droplet_shape(R0, ca)
x = y.y[0]
z = y.y[1]
vol = calculate_volume(x, z)
logging.info(f"CA={ca} deg; R0={R0*1000} mm; Vol={vol*1e6} µL")
writer.writerow({'R0': R0*1000, 'CA': ca, 'Volume': vol*1e6})
fig = plot_drop(x, z, ca=ca, style=args.style, show=False)
for ext in args.filetypes:
filepath = Path(args.filename.format(ca=ca, R0=1000*R0, ext=ext))
if (filepath.exists()):
logging.error(f"Will not overwrite existing file: {filepath}")
else:
logging.info(f"Saving plot output to {filepath}")
fig.savefig(filepath)
plt.close(fig)
| 2
| 0
| 0
| 0
| 0
| 2,053
| 0
| 67
| 201
|
31be368eb110b35254e54ddbccc580822d685138
| 14,497
|
py
|
Python
|
tools/run.py
|
stamp711/DBx1000
|
928912dd7e005ce5a63ad94fdcde412ab893e678
|
[
"ISC"
] | null | null | null |
tools/run.py
|
stamp711/DBx1000
|
928912dd7e005ce5a63ad94fdcde412ab893e678
|
[
"ISC"
] | null | null | null |
tools/run.py
|
stamp711/DBx1000
|
928912dd7e005ce5a63ad94fdcde412ab893e678
|
[
"ISC"
] | null | null | null |
#scheduler = CondorScheduler()
scheduler = BasicScheduler()
app_flags = {}
trials = ['', '_1', '_2']
trials = ['']
#thds = [4, 8] #, 16, 20, 24, 28, 32]
thds = [8, 16, 32]
thds = [4, 8, 16, 20, 24, 28, 32]
thds = [16]
thds = [4, 8, 16, 24, 32]
num_logger = 4
benchmarks = ['TPCC']
benchmarks = ['YCSB', 'TPCC']
benchmarks = ['YCSB']
algorithms = ['S']
algorithms = ['B', 'P', 'S']
algorithms = ['P', 'B']
algorithms = ['B']
algorithms = ['P']
algorithms = ['P', 'B']
algorithms = ['S', 'P', 'B', 'NO']
types = ['D'] # data logging and command logging
types = ['C'] # data logging and command logging
types = ['D', 'C'] # data logging and command logging
configs = []
for bench in benchmarks:
for alg in algorithms:
if alg == 'NO':
configs += ['%s_%s' % (alg, bench)]
else:
for t in types:
if alg == 'B' and t == 'C': continue
configs += ['%s%s_%s' % (alg, t, bench)]
"""
app_flags = {}
##########################
### test
##########################
# logging
for config in configs:
thd = 16
num_logger = 4
executable = "./rundb_%s" % config
logger = num_logger if config[0] == 'P' else 1
app_flags['LOG_RECOVER'] = 0
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 10000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
app_flags['SYNTH_TABLE_SIZE'] = 1024
app_flags['NUM_WH'] = 1
output_dir = "results/test/%s/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
# recovery
for config in configs:
thd = 16
num_logger = 4
executable = "./rundb_%s" % config
logger = num_logger if config[0] == 'P' else 1
app_flags['LOG_RECOVER'] = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 10000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
app_flags['SYNTH_TABLE_SIZE'] = 1024
app_flags['NUM_WH'] = 1
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000
output_dir = "results/test/%s_rec/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
##########################
##########################
#########################
"""
"""
app_flags = {}
##########################
# Logging Performance
##########################
for trial in trials:
for config in configs:
for thd in thds:
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
if 'TPCC' in config:
app_flags['NUM_WH'] = 16
else : # YCSB
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s%s" % (config, thd, logger, trial)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
app_flags = {}
##########################
# RAMDisk Logging Performance
##########################
for trial in trials:
for config in configs:
for thd in thds:
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
if 'TPCC' in config:
app_flags['NUM_WH'] = 16
else : # YCSB
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 1
output_dir = "results/%s_ramdisk/thd%d_L%s%s" % (config, thd, logger, trial)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
# Batch logging with different epoch length
for trial in trials:
config = 'BD_YCSB'
executable = "./rundb_%s" % config
thd = 4
#for epoch in [10, 20, 40, 80, 160]:
for epoch in [5]:
logger = num_logger
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 400000 if config[1] == 'D' else 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['EPOCH_PERIOD'] = epoch
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s_E%d%s" % (config, thd, logger, epoch, trial)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
##########################
# Generate Log Files
##########################
app_flags = {}
for config in configs:
thd = 16
if 'NO' in config: continue
executable = "./rundb_%s" % config
logger = 1 if config[0] == 'S' else num_logger
if 'TPCC' in config:
app_flags['NUM_WH'] = 16
else : # YCSB
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
app_flags['LOG_RECOVER'] = 0
app_flags['LOG_BUFFER_SIZE'] = 1048576 * 50
app_flags['LOG_CHUNK_SIZE'] = 1048576 * 10
output_dir = "results/%s_gen/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for trial in trials:
app_flags = {}
for bench in benchmarks : #['YCSB', 'TPCC']:
for alg in algorithms:
if alg == 'NO': continue
logger = 1 if alg == 'S' else num_logger
for t in types:
if alg == 'B' and t == 'C': continue
config = '%s%s_%s' % (alg, t, bench)
executable = "./rundb_%s" % config
for thd in thds:
if bench == 'TPCC':
app_flags['NUM_WH'] = 16
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = 4
else:
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = thd
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s%s" % \
(config, thd, logger, trial)
add_dbms_job(app_flags, executable, output_dir)
"""
##############################
# sweep # of warehouse
##############################
app_flags = {}
bench = 'TPCC'
#configs = ['SD', 'SC', 'PD', 'PC', 'BD']
configs = ['NO'] #SD', 'SC', 'PD', 'PC', 'BD']
configs = ['%s_TPCC' % x for x in configs]
for wh in [1, 4, 8, 16, 32]:
#logging performance
for config in configs:
thd = 32
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['NUM_WH'] = wh
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s_wh%d" % (config, thd, logger, wh)
add_dbms_job(app_flags, executable, output_dir)
"""
# recovery performance. generate logs.
for wh in [1, 4, 8, 16, 32]:
app_flags = {}
# generate logs.
for config in configs:
thd = 16
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
if 'TPCC' in config:
app_flags['NUM_WH'] = wh
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s_gen/thd%d_L%s_wh%d" % (config, thd, logger, wh)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for config in configs:
if 'NO' in config: continue
if config[0] == 'B' and config[1] == 'C': continue
logger = 1 if config[0] == 'S' else num_logger
executable = "./rundb_%s" % config
thd = 32
app_flags['NUM_WH'] = wh
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = 4
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s_wh%d" % \
(config, thd, logger, wh)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
##############################
# sweep number of queries in YCSB
##############################
bench = 'YCSB'
configs = ['SD', 'SC', 'PD', 'PC', 'BD']
configs = ['%s_%s' % (x, bench) for x in configs]
app_flags = {}
for queries in [1, 2, 4, 8]:
#logging performance
for config in configs:
thd = 32
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = queries
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s_q%d" % (config, thd, logger, queries)
add_dbms_job(app_flags, executable, output_dir)
# recovery performance. generate logs.
for queries in [1, 2, 4, 8]:
app_flags = {}
# generate logs.
for config in configs:
thd = 16
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = queries
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s_gen/thd%d_L%s_q%d" % (config, thd, logger, queries)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for config in configs:
if 'NO' in config: continue
if config[0] == 'B' and config[1] == 'C': continue
logger = 1 if config[0] == 'S' else num_logger
executable = "./rundb_%s" % config
thd = 32
app_flags['REQ_PER_QUERY'] = queries
app_flags['READ_PERC'] = 0.5
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = thd
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s_q%d" % \
(config, thd, logger, queries)
add_dbms_job(app_flags, executable, output_dir)
##############################
# sweep contention level
##############################
app_flags = {}
bench = 'YCSB'
configs = ['SD', 'SC', 'PD', 'PC', 'BD']
configs = ['%s_%s' % (x, bench) for x in configs]
for theta in [0, 0.6, 0.8, 0.9]:
#logging performance
for config in configs:
thd = 32
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = theta
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s_z%s" % (config, thd, logger, theta)
add_dbms_job(app_flags, executable, output_dir)
# recovery performance. generate logs.
for theta in [0, 0.6, 0.8, 0.9]:
app_flags = {}
# generate logs.
for config in configs:
thd = 16
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = theta
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s_gen/thd%d_L%s_z%s" % (config, thd, logger, theta)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for config in configs:
if 'NO' in config: continue
if config[0] == 'B' and config[1] == 'C': continue
logger = 1 if config[0] == 'S' else num_logger
executable = "./rundb_%s" % config
thd = 32
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = theta
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = thd
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s_z%s" % (config, thd, logger, theta)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
##################################
# sweep the number of loggers
##################################
app_flags = {}
bench = 'YCSB'
configs = ['PD', 'PC', 'BD']
configs = ['%s_%s' % (x, bench) for x in configs]
for logger in [1, 2]:
#logging performance
for config in configs:
thd = 32
executable = "./rundb_%s" % config
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = 0.6
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
# recovery performance. generate logs.
for num_logger in [1, 2]:
app_flags = {}
# generate logs.
for config in configs:
thd = 16
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = 0.6
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s_gen/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for config in configs:
if 'NO' in config: continue
if config[0] == 'B' and config[1] == 'C': continue
logger = 1 if config[0] == 'S' else num_logger
executable = "./rundb_%s" % config
thd = 32
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = 0.6
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = thd
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
"""
scheduler.generateSubmitFile()
| 29.346154
| 82
| 0.631579
|
from condor_scheduler import *
from basic_scheduler import *
from helper import *
#scheduler = CondorScheduler()
scheduler = BasicScheduler()
def add_dbms_job(app_flags = {}, executable = "./rundb", output_dir = "results/"):
app_args = " "
for key in app_flags.keys():
if key in args_mapping.keys():
app_args += args_mapping[key] + str(app_flags[key]) + " "
else :
app_args += "--%s=%s " % (key, app_flags[key])
app_args += "-o %s/output " % output_dir
command = executable + app_args
command = "numactl -i all " + command
scheduler.addJob(command, output_dir)
app_flags = {}
trials = ['', '_1', '_2']
trials = ['']
#thds = [4, 8] #, 16, 20, 24, 28, 32]
thds = [8, 16, 32]
thds = [4, 8, 16, 20, 24, 28, 32]
thds = [16]
thds = [4, 8, 16, 24, 32]
num_logger = 4
benchmarks = ['TPCC']
benchmarks = ['YCSB', 'TPCC']
benchmarks = ['YCSB']
algorithms = ['S']
algorithms = ['B', 'P', 'S']
algorithms = ['P', 'B']
algorithms = ['B']
algorithms = ['P']
algorithms = ['P', 'B']
algorithms = ['S', 'P', 'B', 'NO']
types = ['D'] # data logging and command logging
types = ['C'] # data logging and command logging
types = ['D', 'C'] # data logging and command logging
configs = []
for bench in benchmarks:
for alg in algorithms:
if alg == 'NO':
configs += ['%s_%s' % (alg, bench)]
else:
for t in types:
if alg == 'B' and t == 'C': continue
configs += ['%s%s_%s' % (alg, t, bench)]
"""
app_flags = {}
##########################
### test
##########################
# logging
for config in configs:
thd = 16
num_logger = 4
executable = "./rundb_%s" % config
logger = num_logger if config[0] == 'P' else 1
app_flags['LOG_RECOVER'] = 0
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 10000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
app_flags['SYNTH_TABLE_SIZE'] = 1024
app_flags['NUM_WH'] = 1
output_dir = "results/test/%s/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
# recovery
for config in configs:
thd = 16
num_logger = 4
executable = "./rundb_%s" % config
logger = num_logger if config[0] == 'P' else 1
app_flags['LOG_RECOVER'] = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 10000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
app_flags['SYNTH_TABLE_SIZE'] = 1024
app_flags['NUM_WH'] = 1
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000
output_dir = "results/test/%s_rec/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
##########################
##########################
#########################
"""
"""
app_flags = {}
##########################
# Logging Performance
##########################
for trial in trials:
for config in configs:
for thd in thds:
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
if 'TPCC' in config:
app_flags['NUM_WH'] = 16
else : # YCSB
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s%s" % (config, thd, logger, trial)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
app_flags = {}
##########################
# RAMDisk Logging Performance
##########################
for trial in trials:
for config in configs:
for thd in thds:
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
if 'TPCC' in config:
app_flags['NUM_WH'] = 16
else : # YCSB
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 1
output_dir = "results/%s_ramdisk/thd%d_L%s%s" % (config, thd, logger, trial)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
# Batch logging with different epoch length
for trial in trials:
config = 'BD_YCSB'
executable = "./rundb_%s" % config
thd = 4
#for epoch in [10, 20, 40, 80, 160]:
for epoch in [5]:
logger = num_logger
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 400000 if config[1] == 'D' else 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['EPOCH_PERIOD'] = epoch
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s_E%d%s" % (config, thd, logger, epoch, trial)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
##########################
# Generate Log Files
##########################
app_flags = {}
for config in configs:
thd = 16
if 'NO' in config: continue
executable = "./rundb_%s" % config
logger = 1 if config[0] == 'S' else num_logger
if 'TPCC' in config:
app_flags['NUM_WH'] = 16
else : # YCSB
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
app_flags['LOG_RECOVER'] = 0
app_flags['LOG_BUFFER_SIZE'] = 1048576 * 50
app_flags['LOG_CHUNK_SIZE'] = 1048576 * 10
output_dir = "results/%s_gen/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for trial in trials:
app_flags = {}
for bench in benchmarks : #['YCSB', 'TPCC']:
for alg in algorithms:
if alg == 'NO': continue
logger = 1 if alg == 'S' else num_logger
for t in types:
if alg == 'B' and t == 'C': continue
config = '%s%s_%s' % (alg, t, bench)
executable = "./rundb_%s" % config
for thd in thds:
if bench == 'TPCC':
app_flags['NUM_WH'] = 16
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = 4
else:
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = thd
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s%s" % \
(config, thd, logger, trial)
add_dbms_job(app_flags, executable, output_dir)
"""
##############################
# sweep # of warehouse
##############################
app_flags = {}
bench = 'TPCC'
#configs = ['SD', 'SC', 'PD', 'PC', 'BD']
configs = ['NO'] #SD', 'SC', 'PD', 'PC', 'BD']
configs = ['%s_TPCC' % x for x in configs]
for wh in [1, 4, 8, 16, 32]:
#logging performance
for config in configs:
thd = 32
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['NUM_WH'] = wh
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s_wh%d" % (config, thd, logger, wh)
add_dbms_job(app_flags, executable, output_dir)
"""
# recovery performance. generate logs.
for wh in [1, 4, 8, 16, 32]:
app_flags = {}
# generate logs.
for config in configs:
thd = 16
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
if 'TPCC' in config:
app_flags['NUM_WH'] = wh
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s_gen/thd%d_L%s_wh%d" % (config, thd, logger, wh)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for config in configs:
if 'NO' in config: continue
if config[0] == 'B' and config[1] == 'C': continue
logger = 1 if config[0] == 'S' else num_logger
executable = "./rundb_%s" % config
thd = 32
app_flags['NUM_WH'] = wh
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = 4
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s_wh%d" % \
(config, thd, logger, wh)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
##############################
# sweep number of queries in YCSB
##############################
bench = 'YCSB'
configs = ['SD', 'SC', 'PD', 'PC', 'BD']
configs = ['%s_%s' % (x, bench) for x in configs]
app_flags = {}
for queries in [1, 2, 4, 8]:
#logging performance
for config in configs:
thd = 32
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = queries
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s_q%d" % (config, thd, logger, queries)
add_dbms_job(app_flags, executable, output_dir)
# recovery performance. generate logs.
for queries in [1, 2, 4, 8]:
app_flags = {}
# generate logs.
for config in configs:
thd = 16
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = queries
app_flags['READ_PERC'] = 0.5
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s_gen/thd%d_L%s_q%d" % (config, thd, logger, queries)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for config in configs:
if 'NO' in config: continue
if config[0] == 'B' and config[1] == 'C': continue
logger = 1 if config[0] == 'S' else num_logger
executable = "./rundb_%s" % config
thd = 32
app_flags['REQ_PER_QUERY'] = queries
app_flags['READ_PERC'] = 0.5
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = thd
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s_q%d" % \
(config, thd, logger, queries)
add_dbms_job(app_flags, executable, output_dir)
##############################
# sweep contention level
##############################
app_flags = {}
bench = 'YCSB'
configs = ['SD', 'SC', 'PD', 'PC', 'BD']
configs = ['%s_%s' % (x, bench) for x in configs]
for theta in [0, 0.6, 0.8, 0.9]:
#logging performance
for config in configs:
thd = 32
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = theta
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s_z%s" % (config, thd, logger, theta)
add_dbms_job(app_flags, executable, output_dir)
# recovery performance. generate logs.
for theta in [0, 0.6, 0.8, 0.9]:
app_flags = {}
# generate logs.
for config in configs:
thd = 16
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = theta
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s_gen/thd%d_L%s_z%s" % (config, thd, logger, theta)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for config in configs:
if 'NO' in config: continue
if config[0] == 'B' and config[1] == 'C': continue
logger = 1 if config[0] == 'S' else num_logger
executable = "./rundb_%s" % config
thd = 32
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = theta
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = thd
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s_z%s" % (config, thd, logger, theta)
add_dbms_job(app_flags, executable, output_dir)
"""
"""
##################################
# sweep the number of loggers
##################################
app_flags = {}
bench = 'YCSB'
configs = ['PD', 'PC', 'BD']
configs = ['%s_%s' % (x, bench) for x in configs]
for logger in [1, 2]:
#logging performance
for config in configs:
thd = 32
executable = "./rundb_%s" % config
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = 0.6
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
# recovery performance. generate logs.
for num_logger in [1, 2]:
app_flags = {}
# generate logs.
for config in configs:
thd = 16
executable = "./rundb_%s" % config
logger = num_logger
if config[0] == 'S' or config[0] == 'N':
logger = 1
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = 0.6
app_flags['MAX_TXNS_PER_THREAD'] = 1000000
app_flags['THREAD_CNT'] = thd
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_NO_FLUSH'] = 0
output_dir = "results/%s_gen/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
# recover performance
app_flags = {}
for config in configs:
if 'NO' in config: continue
if config[0] == 'B' and config[1] == 'C': continue
logger = 1 if config[0] == 'S' else num_logger
executable = "./rundb_%s" % config
thd = 32
app_flags['REQ_PER_QUERY'] = 2
app_flags['READ_PERC'] = 0.5
app_flags['ZIPF_THETA'] = 0.6
app_flags['LOG_PARALLEL_REC_NUM_POOLS'] = thd
app_flags['THREAD_CNT'] = thd
app_flags['LOG_RECOVER'] = 1
app_flags['NUM_LOGGER'] = logger
app_flags['LOG_PARALLEL_NUM_BUCKETS'] = 10000000
output_dir = "results/%s_rec/thd%d_L%s" % (config, thd, logger)
add_dbms_job(app_flags, executable, output_dir)
"""
scheduler.generateSubmitFile()
| 0
| 0
| 0
| 0
| 0
| 414
| 0
| 16
| 89
|
56e2f739f22e14fa46944fddc6d4bb6c6f1226be
| 152
|
py
|
Python
|
compiled/construct/opaque_with_param.py
|
smarek/ci_targets
|
c5edee7b0901fd8e7f75f85245ea4209b38e0cb3
|
[
"MIT"
] | 4
|
2017-04-08T12:55:11.000Z
|
2020-12-05T21:09:31.000Z
|
compiled/construct/opaque_with_param.py
|
smarek/ci_targets
|
c5edee7b0901fd8e7f75f85245ea4209b38e0cb3
|
[
"MIT"
] | 7
|
2018-04-23T01:30:33.000Z
|
2020-10-30T23:56:14.000Z
|
compiled/construct/opaque_with_param.py
|
smarek/ci_targets
|
c5edee7b0901fd8e7f75f85245ea4209b38e0cb3
|
[
"MIT"
] | 6
|
2017-04-08T11:41:14.000Z
|
2020-10-30T22:47:31.000Z
|
opaque_with_param = Struct(
'one' / LazyBound(lambda: params_def),
)
_schema = opaque_with_param
| 16.888889
| 39
| 0.763158
|
from construct import *
from construct.lib import *
opaque_with_param = Struct(
'one' / LazyBound(lambda: params_def),
)
_schema = opaque_with_param
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 8
| 44
|
85b9d73931a1a3a5f2a12915b8b01497ab128c23
| 521,619
|
py
|
Python
|
sympy/integrals/rubi/rules/inverse_hyperbolic.py
|
STALKER2010/sympy-bleeding-edge
|
81233029a9a30866747f6da2c0e9604d1681d474
|
[
"BSD-3-Clause"
] | 2
|
2018-12-05T02:30:43.000Z
|
2020-11-14T01:43:15.000Z
|
sympy/integrals/rubi/rules/inverse_hyperbolic.py
|
STALKER2010/sympy-bleeding-edge
|
81233029a9a30866747f6da2c0e9604d1681d474
|
[
"BSD-3-Clause"
] | 1
|
2017-10-23T06:56:43.000Z
|
2017-10-23T06:56:43.000Z
|
sympy/integrals/rubi/rules/inverse_hyperbolic.py
|
STALKER2010/sympy-bleeding-edge
|
81233029a9a30866747f6da2c0e9604d1681d474
|
[
"BSD-3-Clause"
] | 1
|
2020-10-02T15:05:03.000Z
|
2020-10-02T15:05:03.000Z
|
from sympy.external import import_module
matchpy = import_module("matchpy")
if matchpy:
from sympy import sqrt
from sympy.integrals.rubi.symbol import WC
A_, B_, C_, F_, G_, H_, a_, b_, c_, d_, e_, f_, g_, h_, i_, j_, k_, l_, m_, n_, p_, q_, r_, t_, u_, v_, s_, w_, x_, y_, z_ = [WC(i) for i in 'ABCFGHabcdefghijklmnpqrtuvswxyz']
a1_, a2_, b1_, b2_, c1_, c2_, d1_, d2_, n1_, n2_, e1_, e2_, f1_, f2_, g1_, g2_, n1_, n2_, n3_, Pq_, Pm_, Px_, Qm_, Qr_, Qx_, jn_, mn_, non2_, RFx_, RGx_ = [WC(i) for i in ['a1', 'a2', 'b1', 'b2', 'c1', 'c2', 'd1', 'd2', 'n1', 'n2', 'e1', 'e2', 'f1', 'f2', 'g1', 'g2', 'n1', 'n2', 'n3', 'Pq', 'Pm', 'Px', 'Qm', 'Qr', 'Qx', 'jn', 'mn', 'non2', 'RFx', 'RGx']]
_UseGamma = False
| 185.563501
| 6,553
| 0.591269
|
from sympy.external import import_module
matchpy = import_module("matchpy")
from sympy.utilities.decorator import doctest_depends_on
if matchpy:
from matchpy import Pattern, ReplacementRule, CustomConstraint
from sympy.integrals.rubi.utility_function import (Int, Set, With, Module, Scan, MapAnd, FalseQ, ZeroQ, NegativeQ, NonzeroQ, FreeQ, NFreeQ, List, Log, PositiveQ, PositiveIntegerQ, NegativeIntegerQ, IntegerQ, IntegersQ, ComplexNumberQ, PureComplexNumberQ, RealNumericQ, PositiveOrZeroQ, NegativeOrZeroQ, FractionOrNegativeQ, NegQ, Equal, Unequal, IntPart, FracPart, RationalQ, ProductQ, SumQ, NonsumQ, Subst, First, Rest, SqrtNumberQ, SqrtNumberSumQ, LinearQ, Sqrt, ArcCosh, Coefficient, Denominator, Hypergeometric2F1, Not, Simplify, FractionalPart, IntegerPart, AppellF1, EllipticPi, EllipticE, EllipticF, ArcTan, ArcCot, ArcCoth, ArcTanh, ArcSin, ArcSinh, ArcCos, ArcCsc, ArcSec, ArcCsch, ArcSech, Sinh, Tanh, Cosh, Sech, Csch, Coth, LessEqual, Less, Greater, GreaterEqual, FractionQ, IntLinearcQ, Expand, IndependentQ, PowerQ, IntegerPowerQ, PositiveIntegerPowerQ, FractionalPowerQ, AtomQ, ExpQ, LogQ, Head, MemberQ, TrigQ, SinQ, CosQ, TanQ, CotQ, SecQ, CscQ, Sin, Cos, Tan, Cot, Sec, Csc, HyperbolicQ, SinhQ, CoshQ, TanhQ, CothQ, SechQ, CschQ, InverseTrigQ, SinCosQ, SinhCoshQ, LeafCount, Numerator, NumberQ, NumericQ, Length, ListQ, Im, Re, InverseHyperbolicQ, InverseFunctionQ, TrigHyperbolicFreeQ, InverseFunctionFreeQ, RealQ, EqQ, FractionalPowerFreeQ, ComplexFreeQ, PolynomialQ, FactorSquareFree, PowerOfLinearQ, Exponent, QuadraticQ, LinearPairQ, BinomialParts, TrinomialParts, PolyQ, EvenQ, OddQ, PerfectSquareQ, NiceSqrtAuxQ, NiceSqrtQ, Together, PosAux, PosQ, CoefficientList, ReplaceAll, ExpandLinearProduct, GCD, ContentFactor, NumericFactor, NonnumericFactors, MakeAssocList, GensymSubst, KernelSubst, ExpandExpression, Apart, SmartApart, MatchQ, PolynomialQuotientRemainder, FreeFactors, NonfreeFactors, RemoveContentAux, RemoveContent, FreeTerms, NonfreeTerms, ExpandAlgebraicFunction, CollectReciprocals, ExpandCleanup, AlgebraicFunctionQ, Coeff, LeadTerm, RemainingTerms, LeadFactor, RemainingFactors, LeadBase, LeadDegree, Numer, Denom, hypergeom, Expon, MergeMonomials, PolynomialDivide, BinomialQ, TrinomialQ, GeneralizedBinomialQ, GeneralizedTrinomialQ, FactorSquareFreeList, PerfectPowerTest, SquareFreeFactorTest, RationalFunctionQ, RationalFunctionFactors, NonrationalFunctionFactors, Reverse, RationalFunctionExponents, RationalFunctionExpand, ExpandIntegrand, SimplerQ, SimplerSqrtQ, SumSimplerQ, BinomialDegree, TrinomialDegree, CancelCommonFactors, SimplerIntegrandQ, GeneralizedBinomialDegree, GeneralizedBinomialParts, GeneralizedTrinomialDegree, GeneralizedTrinomialParts, MonomialQ, MonomialSumQ, MinimumMonomialExponent, MonomialExponent, LinearMatchQ, PowerOfLinearMatchQ, QuadraticMatchQ, CubicMatchQ, BinomialMatchQ, TrinomialMatchQ, GeneralizedBinomialMatchQ, GeneralizedTrinomialMatchQ, QuotientOfLinearsMatchQ, PolynomialTermQ, PolynomialTerms, NonpolynomialTerms, PseudoBinomialParts, NormalizePseudoBinomial, PseudoBinomialPairQ, PseudoBinomialQ, PolynomialGCD, PolyGCD, AlgebraicFunctionFactors, NonalgebraicFunctionFactors, QuotientOfLinearsP, QuotientOfLinearsParts, QuotientOfLinearsQ, Flatten, Sort, AbsurdNumberQ, AbsurdNumberFactors, NonabsurdNumberFactors, SumSimplerAuxQ, Prepend, Drop, CombineExponents, FactorInteger, FactorAbsurdNumber, SubstForInverseFunction, SubstForFractionalPower, SubstForFractionalPowerOfQuotientOfLinears, FractionalPowerOfQuotientOfLinears, SubstForFractionalPowerQ, SubstForFractionalPowerAuxQ, FractionalPowerOfSquareQ, FractionalPowerSubexpressionQ, Apply, FactorNumericGcd, MergeableFactorQ, MergeFactor, MergeFactors, TrigSimplifyQ, TrigSimplify, TrigSimplifyRecur, Order, FactorOrder, Smallest, OrderedQ, MinimumDegree, PositiveFactors, Sign, NonpositiveFactors, PolynomialInAuxQ, PolynomialInQ, ExponentInAux, ExponentIn, PolynomialInSubstAux, PolynomialInSubst, Distrib, DistributeDegree, FunctionOfPower, DivideDegreesOfFactors, MonomialFactor, FullSimplify, FunctionOfLinearSubst, FunctionOfLinear, NormalizeIntegrand, NormalizeIntegrandAux, NormalizeIntegrandFactor, NormalizeIntegrandFactorBase, NormalizeTogether, NormalizeLeadTermSigns, AbsorbMinusSign, NormalizeSumFactors, SignOfFactor, NormalizePowerOfLinear, SimplifyIntegrand, SimplifyTerm, TogetherSimplify, SmartSimplify, SubstForExpn, ExpandToSum, UnifySum, UnifyTerms, UnifyTerm, CalculusQ, FunctionOfInverseLinear, PureFunctionOfSinhQ, PureFunctionOfTanhQ, PureFunctionOfCoshQ, IntegerQuotientQ, OddQuotientQ, EvenQuotientQ, FindTrigFactor, FunctionOfSinhQ, FunctionOfCoshQ, OddHyperbolicPowerQ, FunctionOfTanhQ, FunctionOfTanhWeight, FunctionOfHyperbolicQ, SmartNumerator, SmartDenominator, SubstForAux, ActivateTrig, ExpandTrig, TrigExpand, SubstForTrig, SubstForHyperbolic, InertTrigFreeQ, LCM, SubstForFractionalPowerOfLinear, FractionalPowerOfLinear, InverseFunctionOfLinear, InertTrigQ, InertReciprocalQ, DeactivateTrig, FixInertTrigFunction, DeactivateTrigAux, PowerOfInertTrigSumQ, PiecewiseLinearQ, KnownTrigIntegrandQ, KnownSineIntegrandQ, KnownTangentIntegrandQ, KnownCotangentIntegrandQ, KnownSecantIntegrandQ, TryPureTanSubst, TryTanhSubst, TryPureTanhSubst, AbsurdNumberGCD, AbsurdNumberGCDList, ExpandTrigExpand, ExpandTrigReduce, ExpandTrigReduceAux, NormalizeTrig, TrigToExp, ExpandTrigToExp, TrigReduce, FunctionOfTrig, AlgebraicTrigFunctionQ, FunctionOfHyperbolic, FunctionOfQ, FunctionOfExpnQ, PureFunctionOfSinQ, PureFunctionOfCosQ, PureFunctionOfTanQ, PureFunctionOfCotQ, FunctionOfCosQ, FunctionOfSinQ, OddTrigPowerQ, FunctionOfTanQ, FunctionOfTanWeight, FunctionOfTrigQ, FunctionOfDensePolynomialsQ, FunctionOfLog, PowerVariableExpn, PowerVariableDegree, PowerVariableSubst, EulerIntegrandQ, FunctionOfSquareRootOfQuadratic, SquareRootOfQuadraticSubst, Divides, EasyDQ, ProductOfLinearPowersQ, Rt, NthRoot, AtomBaseQ, SumBaseQ, NegSumBaseQ, AllNegTermQ, SomeNegTermQ, TrigSquareQ, RtAux, TrigSquare, IntSum, IntTerm, Map2, ConstantFactor, SameQ, ReplacePart, CommonFactors, MostMainFactorPosition, FunctionOfExponentialQ, FunctionOfExponential, FunctionOfExponentialFunction, FunctionOfExponentialFunctionAux, FunctionOfExponentialTest, FunctionOfExponentialTestAux, stdev, rubi_test, If, IntQuadraticQ, IntBinomialQ, RectifyTangent, RectifyCotangent, Inequality, Condition, Simp, SimpHelp, SplitProduct, SplitSum, SubstFor, SubstForAux, FresnelS, FresnelC, Erfc, Erfi, Gamma, FunctionOfTrigOfLinearQ, ElementaryFunctionQ, Complex, UnsameQ, _SimpFixFactor, SimpFixFactor, _FixSimplify, FixSimplify, _SimplifyAntiderivativeSum, SimplifyAntiderivativeSum, _SimplifyAntiderivative, SimplifyAntiderivative, _TrigSimplifyAux, TrigSimplifyAux, Cancel, Part, PolyLog, D, Dist)
from sympy import Integral, S, sqrt
from sympy.integrals.rubi.symbol import WC
from sympy.core.symbol import symbols, Symbol
from sympy.functions import (log, sin, cos, tan, cot, csc, sec, sqrt, erf, exp, log)
from sympy.functions.elementary.hyperbolic import (acosh, asinh, atanh, acoth, acsch, asech, cosh, sinh, tanh, coth, sech, csch)
from sympy.functions.elementary.trigonometric import (atan, acsc, asin, acot, acos, asec)
A_, B_, C_, F_, G_, H_, a_, b_, c_, d_, e_, f_, g_, h_, i_, j_, k_, l_, m_, n_, p_, q_, r_, t_, u_, v_, s_, w_, x_, y_, z_ = [WC(i) for i in 'ABCFGHabcdefghijklmnpqrtuvswxyz']
a1_, a2_, b1_, b2_, c1_, c2_, d1_, d2_, n1_, n2_, e1_, e2_, f1_, f2_, g1_, g2_, n1_, n2_, n3_, Pq_, Pm_, Px_, Qm_, Qr_, Qx_, jn_, mn_, non2_, RFx_, RGx_ = [WC(i) for i in ['a1', 'a2', 'b1', 'b2', 'c1', 'c2', 'd1', 'd2', 'n1', 'n2', 'e1', 'e2', 'f1', 'f2', 'g1', 'g2', 'n1', 'n2', 'n3', 'Pq', 'Pm', 'Px', 'Qm', 'Qr', 'Qx', 'jn', 'mn', 'non2', 'RFx', 'RGx']]
_UseGamma = False
def inverse_hyperbolic(rubi):
pattern1 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule1 = ReplacementRule(pattern1, lambda x, b, c, a, n : -b*c*n*Int(x*(a + b*asinh(c*x))**(n + S(-1))/sqrt(c**S(2)*x**S(2) + S(1)), x) + x*(a + b*asinh(c*x))**n)
rubi.add(rule1)
pattern2 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule2 = ReplacementRule(pattern2, lambda x, b, c, a, n : -b*c*n*Int(x*(a + b*acosh(c*x))**(n + S(-1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x) + x*(a + b*acosh(c*x))**n)
rubi.add(rule2)
pattern3 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule3 = ReplacementRule(pattern3, lambda x, b, c, a, n : -c*Int(x*(a + b*asinh(c*x))**(n + S(1))/sqrt(c**S(2)*x**S(2) + S(1)), x)/(b*(n + S(1))) + (a + b*asinh(c*x))**(n + S(1))*sqrt(c**S(2)*x**S(2) + S(1))/(b*c*(n + S(1))))
rubi.add(rule3)
pattern4 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule4 = ReplacementRule(pattern4, lambda x, b, c, a, n : -c*Int(x*(a + b*acosh(c*x))**(n + S(1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(b*(n + S(1))) + (a + b*acosh(c*x))**(n + S(1))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule4)
pattern5 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule5 = ReplacementRule(pattern5, lambda x, b, c, a, n : Subst(Int(x**n*Cosh(a/b - x/b), x), x, a + b*asinh(c*x))/(b*c))
rubi.add(rule5)
pattern6 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule6 = ReplacementRule(pattern6, lambda x, b, c, a, n : -Subst(Int(x**n*sinh(a/b - x/b), x), x, a + b*acosh(c*x))/(b*c))
rubi.add(rule6)
pattern7 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule7 = ReplacementRule(pattern7, lambda x, b, c, a, n : Subst(Int((a + b*x)**n/tanh(x), x), x, asinh(c*x)))
rubi.add(rule7)
pattern8 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule8 = ReplacementRule(pattern8, lambda x, b, c, a, n : Subst(Int((a + b*x)**n/coth(x), x), x, acosh(c*x)))
rubi.add(rule8)
pattern9 = Pattern(Integral((x_*WC('d', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule9 = ReplacementRule(pattern9, lambda x, b, m, c, a, d, n : -b*c*n*Int((d*x)**(m + S(1))*(a + b*asinh(c*x))**(n + S(-1))/sqrt(c**S(2)*x**S(2) + S(1)), x)/(d*(m + S(1))) + (d*x)**(m + S(1))*(a + b*asinh(c*x))**n/(d*(m + S(1))))
rubi.add(rule9)
pattern10 = Pattern(Integral((x_*WC('d', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule10 = ReplacementRule(pattern10, lambda x, b, m, c, a, d, n : -b*c*n*Int((d*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(d*(m + S(1))) + (d*x)**(m + S(1))*(a + b*acosh(c*x))**n/(d*(m + S(1))))
rubi.add(rule10)
pattern11 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule11 = ReplacementRule(pattern11, lambda x, b, m, c, a, n : -b*c*n*Int(x**(m + S(1))*(a + b*asinh(c*x))**(n + S(-1))/sqrt(c**S(2)*x**S(2) + S(1)), x)/(m + S(1)) + x**(m + S(1))*(a + b*asinh(c*x))**n/(m + S(1)))
rubi.add(rule11)
pattern12 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule12 = ReplacementRule(pattern12, lambda x, b, m, c, a, n : -b*c*n*Int(x**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(m + S(1)) + x**(m + S(1))*(a + b*acosh(c*x))**n/(m + S(1)))
rubi.add(rule12)
pattern13 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Inequality(S(-2), LessEqual, n, Less, S(-1))))
rule13 = ReplacementRule(pattern13, lambda x, b, m, c, a, n : -c**(-m + S(-1))*Subst(Int(ExpandTrigReduce((a + b*x)**(n + S(1)), (m + (m + S(1))*sinh(x)**S(2))*sinh(x)**(m + S(-1)), x), x), x, asinh(c*x))/(b*(n + S(1))) + x**m*(a + b*asinh(c*x))**(n + S(1))*sqrt(c**S(2)*x**S(2) + S(1))/(b*c*(n + S(1))))
rubi.add(rule13)
pattern14 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Inequality(S(-2), LessEqual, n, Less, S(-1))))
rule14 = ReplacementRule(pattern14, lambda x, b, m, c, a, n : c**(-m + S(-1))*Subst(Int(ExpandTrigReduce((a + b*x)**(n + S(1))*(m - (m + S(1))*Cosh(x)**S(2))*Cosh(x)**(m + S(-1)), x), x), x, acosh(c*x))/(b*(n + S(1))) + x**m*(a + b*acosh(c*x))**(n + S(1))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule14)
pattern15 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-2))))
rule15 = ReplacementRule(pattern15, lambda x, b, m, c, a, n : -c*(m + S(1))*Int(x**(m + S(1))*(a + b*asinh(c*x))**(n + S(1))/sqrt(c**S(2)*x**S(2) + S(1)), x)/(b*(n + S(1))) - m*Int(x**(m + S(-1))*(a + b*asinh(c*x))**(n + S(1))/sqrt(c**S(2)*x**S(2) + S(1)), x)/(b*c*(n + S(1))) + x**m*(a + b*asinh(c*x))**(n + S(1))*sqrt(c**S(2)*x**S(2) + S(1))/(b*c*(n + S(1))))
rubi.add(rule15)
pattern16 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-2))))
rule16 = ReplacementRule(pattern16, lambda x, b, m, c, a, n : -c*(m + S(1))*Int(x**(m + S(1))*(a + b*acosh(c*x))**(n + S(1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(b*(n + S(1))) + m*Int(x**(m + S(-1))*(a + b*acosh(c*x))**(n + S(1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(b*c*(n + S(1))) + x**m*(a + b*acosh(c*x))**(n + S(1))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule16)
pattern17 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule17 = ReplacementRule(pattern17, lambda x, b, m, c, a, n : c**(-m + S(-1))*Subst(Int((a + b*x)**n*Cosh(x)*sinh(x)**m, x), x, asinh(c*x)))
rubi.add(rule17)
pattern18 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule18 = ReplacementRule(pattern18, lambda x, b, m, c, a, n : c**(-m + S(-1))*Subst(Int((a + b*x)**n*Cosh(x)**m*sinh(x), x), x, acosh(c*x)))
rubi.add(rule18)
pattern19 = Pattern(Integral((x_*WC('d', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule19 = ReplacementRule(pattern19, lambda x, b, m, c, a, d, n : Int((d*x)**m*(a + b*asinh(c*x))**n, x))
rubi.add(rule19)
pattern20 = Pattern(Integral((x_*WC('d', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule20 = ReplacementRule(pattern20, lambda x, b, m, c, a, d, n : Int((d*x)**m*(a + b*acosh(c*x))**n, x))
rubi.add(rule20)
pattern21 = Pattern(Integral(S(1)/(sqrt(d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)))
rule21 = ReplacementRule(pattern21, lambda x, b, c, a, d, e : log(a + b*asinh(c*x))/(b*c*sqrt(d)))
rubi.add(rule21)
pattern22 = Pattern(Integral(S(1)/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)))
rule22 = ReplacementRule(pattern22, lambda e2, e1, d1, x, b, c, a, d2 : log(a + b*acosh(c*x))/(b*c*sqrt(-d1*d2)))
rubi.add(rule22)
pattern23 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda n: NonzeroQ(n + S(1))))
rule23 = ReplacementRule(pattern23, lambda x, b, c, a, d, e, n : (a + b*asinh(c*x))**(n + S(1))/(b*c*sqrt(d)*(n + S(1))))
rubi.add(rule23)
pattern24 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda n: NonzeroQ(n + S(1))))
rule24 = ReplacementRule(pattern24, lambda e2, e1, d1, x, b, c, a, d2, n : (a + b*acosh(c*x))**(n + S(1))/(b*c*sqrt(-d1*d2)*(n + S(1))))
rubi.add(rule24)
pattern25 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda d: Not(PositiveQ(d))))
rule25 = ReplacementRule(pattern25, lambda x, b, c, a, d, e, n : sqrt(c**S(2)*x**S(2) + S(1))*Int((a + b*asinh(c*x))**n/sqrt(c**S(2)*x**S(2) + S(1)), x)/sqrt(d + e*x**S(2)))
rubi.add(rule25)
pattern26 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda d2, d1: Not(NegativeQ(d2) & PositiveQ(d1))))
rule26 = ReplacementRule(pattern26, lambda e2, e1, d1, x, b, c, a, d2, n : sqrt(c*x + S(-1))*sqrt(c*x + S(1))*Int((a + b*acosh(c*x))**n/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(sqrt(d1 + e1*x)*sqrt(d2 + e2*x)))
rubi.add(rule26)
pattern27 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)), )
def With27(p, x, b, c, a, d, e):
u = IntHide((d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*asinh(c*x), u, x)
rule27 = ReplacementRule(pattern27, lambda p, x, b, c, a, d, e : With27(p, x, b, c, a, d, e))
rubi.add(rule27)
pattern28 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)), )
def With28(p, x, b, c, a, d, e):
u = IntHide((d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x), x) + Dist(a + b*acosh(c*x), u, x)
rule28 = ReplacementRule(pattern28, lambda p, x, b, c, a, d, e : With28(p, x, b, c, a, d, e))
rubi.add(rule28)
pattern29 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda p: IntegerQ(p)))
rule29 = ReplacementRule(pattern29, lambda p, x, b, c, a, d, e, n : -b*c*n*(-d)**p*Int(x*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(S(2)*p + S(1)) + S(2)*d*p*Int((a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x)/(S(2)*p + S(1)) + x*(a + b*acosh(c*x))**n*(d + e*x**S(2))**p/(S(2)*p + S(1)))
rubi.add(rule29)
pattern30 = Pattern(Integral(sqrt(d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule30 = ReplacementRule(pattern30, lambda x, b, c, a, d, e, n : -b*c*n*sqrt(d + e*x**S(2))*Int(x*(a + b*asinh(c*x))**(n + S(-1)), x)/(S(2)*sqrt(c**S(2)*x**S(2) + S(1))) + x*(a + b*asinh(c*x))**n*sqrt(d + e*x**S(2))/S(2) + sqrt(d + e*x**S(2))*Int((a + b*asinh(c*x))**n/sqrt(c**S(2)*x**S(2) + S(1)), x)/(S(2)*sqrt(c**S(2)*x**S(2) + S(1))))
rubi.add(rule30)
pattern31 = Pattern(Integral(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule31 = ReplacementRule(pattern31, lambda e2, e1, d1, x, b, c, a, d2, n : -b*c*n*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int(x*(a + b*acosh(c*x))**(n + S(-1)), x)/(S(2)*sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + x*(a + b*acosh(c*x))**n*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)/S(2) - sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int((a + b*acosh(c*x))**n/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(S(2)*sqrt(c*x + S(-1))*sqrt(c*x + S(1))))
rubi.add(rule31)
pattern32 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))))
rule32 = ReplacementRule(pattern32, lambda p, x, b, c, a, d, e, n : -b*c*d**IntPart(p)*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int(x*(a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(-1)/2), x)/(S(2)*p + S(1)) + S(2)*d*p*Int((a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x)/(S(2)*p + S(1)) + x*(a + b*asinh(c*x))**n*(d + e*x**S(2))**p/(S(2)*p + S(1)))
rubi.add(rule32)
pattern33 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)))
rule33 = ReplacementRule(pattern33, lambda p, e2, e1, d1, x, b, c, a, d2, n : -b*c*n*(-d1*d2)**(p + S(-1)/2)*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int(x*(a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(-1)/2), x)/((S(2)*p + S(1))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + S(2)*d1*d2*p*Int((a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(-1))*(d2 + e2*x)**(p + S(-1)), x)/(S(2)*p + S(1)) + x*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p/(S(2)*p + S(1)))
rubi.add(rule33)
pattern34 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))))
rule34 = ReplacementRule(pattern34, lambda p, e2, e1, d1, x, b, c, a, d2, n : -b*c*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int(x*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(S(2)*p + S(1)) + S(2)*d1*d2*p*Int((a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(-1))*(d2 + e2*x)**(p + S(-1)), x)/(S(2)*p + S(1)) + x*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p/(S(2)*p + S(1)))
rubi.add(rule34)
pattern35 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1)))**(S(3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule35 = ReplacementRule(pattern35, lambda x, b, c, a, d, e, n : -b*c*n*sqrt(c**S(2)*x**S(2) + S(1))*Int(x*(a + b*asinh(c*x))**(n + S(-1))/(c**S(2)*x**S(2) + S(1)), x)/(d*sqrt(d + e*x**S(2))) + x*(a + b*asinh(c*x))**n/(d*sqrt(d + e*x**S(2))))
rubi.add(rule35)
pattern36 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/((d1_ + x_*WC('e1', S(1)))**(S(3)/2)*(d2_ + x_*WC('e2', S(1)))**(S(3)/2)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule36 = ReplacementRule(pattern36, lambda e2, e1, d1, x, b, c, a, d2, n : b*c*n*sqrt(c*x + S(-1))*sqrt(c*x + S(1))*Int(x*(a + b*acosh(c*x))**(n + S(-1))/(-c**S(2)*x**S(2) + S(1)), x)/(d1*d2*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)) + x*(a + b*acosh(c*x))**n/(d1*d2*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)))
rubi.add(rule36)
pattern37 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: IntegerQ(p)))
rule37 = ReplacementRule(pattern37, lambda p, x, b, c, a, d, e, n : -b*c*n*(-d)**p*Int(x*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(S(2)*p + S(2)) - x*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*d*(p + S(1))) + (S(2)*p + S(3))*Int((a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*d*(p + S(1))))
rubi.add(rule37)
pattern38 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: Unequal(p, S(-3)/2)))
rule38 = ReplacementRule(pattern38, lambda p, x, b, c, a, d, e, n : b*c*d**IntPart(p)*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int(x*(a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(1)/2), x)/(S(2)*(p + S(1))) - x*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*d*(p + S(1))) + (S(2)*p + S(3))*Int((a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*d*(p + S(1))))
rubi.add(rule38)
pattern39 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: Unequal(p, S(-3)/2)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)))
rule39 = ReplacementRule(pattern39, lambda p, e2, e1, d1, x, b, c, a, d2, n : -b*c*n*(-d1*d2)**(p + S(1)/2)*sqrt(c*x + S(-1))*sqrt(c*x + S(1))*Int(x*(a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(1)/2), x)/(S(2)*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*(p + S(1))) - x*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(S(2)*d1*d2*(p + S(1))) + (S(2)*p + S(3))*Int((a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1)), x)/(S(2)*d1*d2*(p + S(1))))
rubi.add(rule39)
pattern40 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: Unequal(p, S(-3)/2)))
rule40 = ReplacementRule(pattern40, lambda p, e2, e1, d1, x, b, c, a, d2, n : -b*c*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int(x*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(S(2)*(p + S(1))) - x*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(S(2)*d1*d2*(p + S(1))) + (S(2)*p + S(3))*Int((a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1)), x)/(S(2)*d1*d2*(p + S(1))))
rubi.add(rule40)
pattern41 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule41 = ReplacementRule(pattern41, lambda x, b, c, a, d, e, n : Subst(Int((a + b*x)**n*sech(x), x), x, asinh(c*x))/(c*d))
rubi.add(rule41)
pattern42 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule42 = ReplacementRule(pattern42, lambda x, b, c, a, d, e, n : -Subst(Int((a + b*x)**n*csch(x), x), x, acosh(c*x))/(c*d))
rubi.add(rule42)
pattern43 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda p: IntegerQ(p)))
rule43 = ReplacementRule(pattern43, lambda p, x, b, c, a, d, e, n : -c*(-d)**p*(S(2)*p + S(1))*Int(x*(a + b*acosh(c*x))**(n + S(1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(b*(n + S(1))) + (-d)**p*(a + b*acosh(c*x))**(n + S(1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2)/(b*c*(n + S(1))))
rubi.add(rule43)
pattern44 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule44 = ReplacementRule(pattern44, lambda p, x, b, c, a, d, e, n : -c*d**IntPart(p)*(d + e*x**S(2))**FracPart(p)*(S(2)*p + S(1))*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int(x*(a + b*asinh(c*x))**(n + S(1))*(c**S(2)*x**S(2) + S(1))**(p + S(-1)/2), x)/(b*(n + S(1))) + (a + b*asinh(c*x))**(n + S(1))*(d + e*x**S(2))**p*sqrt(c**S(2)*x**S(2) + S(1))/(b*c*(n + S(1))))
rubi.add(rule44)
pattern45 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)))
rule45 = ReplacementRule(pattern45, lambda p, e2, e1, d1, x, b, c, a, d2, n : -c*(-d1*d2)**(p + S(-1)/2)*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*(S(2)*p + S(1))*Int(x*(a + b*acosh(c*x))**(n + S(1))*(c**S(2)*x**S(2) + S(-1))**(p + S(-1)/2), x)/(b*(n + S(1))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + (a + b*acosh(c*x))**(n + S(1))*(d1 + e1*x)**p*(d2 + e2*x)**p*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule45)
pattern46 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule46 = ReplacementRule(pattern46, lambda p, e2, e1, d1, x, b, c, a, d2, n : -c*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(S(2)*p + S(1))*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int(x*(a + b*acosh(c*x))**(n + S(1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(b*(n + S(1))) + (a + b*acosh(c*x))**(n + S(1))*(d1 + e1*x)**p*(d2 + e2*x)**p*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule46)
pattern47 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(S(2)*p)), CustomConstraint(lambda d, p: IntegerQ(p) | PositiveQ(d)))
rule47 = ReplacementRule(pattern47, lambda p, x, b, c, a, d, e, n : d**p*Subst(Int((a + b*x)**n*Cosh(x)**(S(2)*p + S(1)), x), x, asinh(c*x))/c)
rubi.add(rule47)
pattern48 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)))
rule48 = ReplacementRule(pattern48, lambda p, x, b, c, a, d, e, n : (-d)**p*Subst(Int((a + b*x)**n*sinh(x)**(S(2)*p + S(1)), x), x, acosh(c*x))/c)
rubi.add(rule48)
pattern49 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)), CustomConstraint(lambda d2, d1: NegativeQ(d2) & PositiveQ(d1)))
rule49 = ReplacementRule(pattern49, lambda p, e2, e1, d1, x, b, c, a, d2, n : (-d1*d2)**p*Subst(Int((a + b*x)**n*sinh(x)**(S(2)*p + S(1)), x), x, acosh(c*x))/c)
rubi.add(rule49)
pattern50 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(S(2)*p)), CustomConstraint(lambda d, p: Not(IntegerQ(p) | PositiveQ(d))))
rule50 = ReplacementRule(pattern50, lambda p, x, b, c, a, d, e, n : d**(p + S(-1)/2)*sqrt(d + e*x**S(2))*Int((a + b*asinh(c*x))**n*(c**S(2)*x**S(2) + S(1))**p, x)/sqrt(c**S(2)*x**S(2) + S(1)))
rubi.add(rule50)
pattern51 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: PositiveIntegerQ(S(2)*p)), CustomConstraint(lambda d2, d1: Not(NegativeQ(d2) & PositiveQ(d1))))
rule51 = ReplacementRule(pattern51, lambda p, e2, e1, d1, x, b, c, a, d2, n : (-d1*d2)**(p + S(-1)/2)*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int((a + b*acosh(c*x))**n*(c*x + S(-1))**p*(c*x + S(1))**p, x)/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))))
rubi.add(rule51)
pattern52 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: NonzeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p) | NegativeIntegerQ(p + S(1)/2)), )
def With52(p, x, b, c, a, d, e):
u = IntHide((d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*asinh(c*x), u, x)
rule52 = ReplacementRule(pattern52, lambda p, x, b, c, a, d, e : With52(p, x, b, c, a, d, e))
rubi.add(rule52)
pattern53 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: NonzeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p) | NegativeIntegerQ(p + S(1)/2)), )
def With53(p, x, b, c, a, d, e):
u = IntHide((d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x), x) + Dist(a + b*acosh(c*x), u, x)
rule53 = ReplacementRule(pattern53, lambda p, x, b, c, a, d, e : With53(p, x, b, c, a, d, e))
rubi.add(rule53)
pattern54 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: NonzeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda p, n: PositiveIntegerQ(n) | Greater(p, S(0))))
rule54 = ReplacementRule(pattern54, lambda p, x, b, c, a, d, e, n : Int(ExpandIntegrand((a + b*asinh(c*x))**n, (d + e*x**S(2))**p, x), x))
rubi.add(rule54)
pattern55 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: NonzeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda p, n: PositiveIntegerQ(n) | Greater(p, S(0))))
rule55 = ReplacementRule(pattern55, lambda p, x, b, c, a, d, e, n : Int(ExpandIntegrand((a + b*acosh(c*x))**n, (d + e*x**S(2))**p, x), x))
rubi.add(rule55)
pattern56 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule56 = ReplacementRule(pattern56, lambda p, x, b, c, a, d, e, n : Int((a + b*asinh(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule56)
pattern57 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p: IntegerQ(p)))
rule57 = ReplacementRule(pattern57, lambda p, x, b, c, a, d, e, n : Int((a + b*acosh(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule57)
pattern58 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule58 = ReplacementRule(pattern58, lambda p, e2, e1, d1, x, b, c, a, d2, n : Int((a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p, x))
rubi.add(rule58)
pattern59 = Pattern(Integral((d_ + x_*WC('e', S(1)))**p_*(f_ + x_*WC('g', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda g, f, d, e: ZeroQ(d*g + e*f)), CustomConstraint(lambda g, c, f: ZeroQ(c**S(2)*f**S(2) + g**S(2))), CustomConstraint(lambda p: Not(IntegerQ(p))))
rule59 = ReplacementRule(pattern59, lambda p, x, b, g, c, f, a, d, e, n : (d + e*x)**FracPart(p)*(f + g*x)**FracPart(p)*(d*f + e*g*x**S(2))**(-FracPart(p))*Int((a + b*asinh(c*x))**n*(d*f + e*g*x**S(2))**p, x))
rubi.add(rule59)
pattern60 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: Not(IntegerQ(p))))
rule60 = ReplacementRule(pattern60, lambda p, x, b, c, a, d, e, n : (-d)**IntPart(p)*(d + e*x**S(2))**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((a + b*acosh(c*x))**n*(c*x + S(-1))**p*(c*x + S(1))**p, x))
rubi.add(rule60)
pattern61 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule61 = ReplacementRule(pattern61, lambda x, b, c, a, d, e, n : Subst(Int((a + b*x)**n*tanh(x), x), x, asinh(c*x))/e)
rubi.add(rule61)
pattern62 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule62 = ReplacementRule(pattern62, lambda x, b, c, a, d, e, n : Subst(Int((a + b*x)**n*coth(x), x), x, acosh(c*x))/e)
rubi.add(rule62)
pattern63 = Pattern(Integral(x_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: NonzeroQ(p + S(1))), CustomConstraint(lambda p: IntegerQ(p)))
rule63 = ReplacementRule(pattern63, lambda p, x, b, c, a, d, e, n : -b*n*(-d)**p*Int((a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(S(2)*c*(p + S(1))) + (a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule63)
pattern64 = Pattern(Integral(x_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule64 = ReplacementRule(pattern64, lambda p, x, b, c, a, d, e, n : -b*d**IntPart(p)*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(1)/2), x)/(S(2)*c*(p + S(1))) + (a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule64)
pattern65 = Pattern(Integral(x_*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: NonzeroQ(p + S(1))), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)))
rule65 = ReplacementRule(pattern65, lambda p, e2, e1, d1, x, b, c, a, d2, n : -b*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(1)/2), x)/(S(2)*c*(p + S(1))) + (a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(S(2)*e1*e2*(p + S(1))))
rubi.add(rule65)
pattern66 = Pattern(Integral(x_*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule66 = ReplacementRule(pattern66, lambda p, e2, e1, d1, x, b, c, a, d2, n : -b*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(S(2)*c*(p + S(1))) + (a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(S(2)*e1*e2*(p + S(1))))
rubi.add(rule66)
pattern67 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/(x_*(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule67 = ReplacementRule(pattern67, lambda x, b, c, a, d, e, n : Subst(Int((a + b*x)**n/(Cosh(x)*sinh(x)), x), x, asinh(c*x))/d)
rubi.add(rule67)
pattern68 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(x_*(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule68 = ReplacementRule(pattern68, lambda x, b, c, a, d, e, n : -Subst(Int((a + b*x)**n/(Cosh(x)*sinh(x)), x), x, acosh(c*x))/d)
rubi.add(rule68)
pattern69 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(3))), CustomConstraint(lambda m: NonzeroQ(m + S(1))), CustomConstraint(lambda p: IntegerQ(p)))
rule69 = ReplacementRule(pattern69, lambda p, x, b, m, c, f, a, d, e, n : b*c*n*(-d)**p*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(f*(m + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(d*f*(m + S(1))))
rubi.add(rule69)
pattern70 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(3))), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule70 = ReplacementRule(pattern70, lambda p, x, b, m, c, f, a, d, e, n : -b*c*d**IntPart(p)*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(1)/2), x)/(f*(m + S(1))) + (f*x)**(m + S(1))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(d*f*(m + S(1))))
rubi.add(rule70)
pattern71 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(3))), CustomConstraint(lambda m: NonzeroQ(m + S(1))), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)))
rule71 = ReplacementRule(pattern71, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : b*c*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(1)/2), x)/(f*(m + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(d1*d2*f*(m + S(1))))
rubi.add(rule71)
pattern72 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(3))), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule72 = ReplacementRule(pattern72, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : b*c*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(f*(m + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(d1*d2*f*(m + S(1))))
rubi.add(rule72)
pattern73 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)))
rule73 = ReplacementRule(pattern73, lambda p, x, b, c, a, d, e : -b*c*d**p*Int((c**S(2)*x**S(2) + S(1))**(p + S(-1)/2), x)/(S(2)*p) + d*Int((a + b*asinh(c*x))*(d + e*x**S(2))**(p + S(-1))/x, x) + (a + b*asinh(c*x))*(d + e*x**S(2))**p/(S(2)*p))
rubi.add(rule73)
pattern74 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)))
rule74 = ReplacementRule(pattern74, lambda p, x, b, c, a, d, e : -b*c*(-d)**p*Int((c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(S(2)*p) + d*Int((a + b*acosh(c*x))*(d + e*x**S(2))**(p + S(-1))/x, x) + (a + b*acosh(c*x))*(d + e*x**S(2))**p/(S(2)*p))
rubi.add(rule74)
pattern75 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)), CustomConstraint(lambda m: NegativeIntegerQ(m/S(2) + S(1)/2)))
rule75 = ReplacementRule(pattern75, lambda p, x, b, m, c, f, a, d, e : -b*c*d**p*Int((f*x)**(m + S(1))*(c**S(2)*x**S(2) + S(1))**(p + S(-1)/2), x)/(f*(m + S(1))) - S(2)*e*p*Int((f*x)**(m + S(2))*(a + b*asinh(c*x))*(d + e*x**S(2))**(p + S(-1)), x)/(f**S(2)*(m + S(1))) + (f*x)**(m + S(1))*(a + b*asinh(c*x))*(d + e*x**S(2))**p/(f*(m + S(1))))
rubi.add(rule75)
pattern76 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)), CustomConstraint(lambda m: NegativeIntegerQ(m/S(2) + S(1)/2)))
rule76 = ReplacementRule(pattern76, lambda p, x, b, m, c, f, a, d, e : -b*c*(-d)**p*Int((f*x)**(m + S(1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(f*(m + S(1))) - S(2)*e*p*Int((f*x)**(m + S(2))*(a + b*acosh(c*x))*(d + e*x**S(2))**(p + S(-1)), x)/(f**S(2)*(m + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))*(d + e*x**S(2))**p/(f*(m + S(1))))
rubi.add(rule76)
pattern77 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)), )
def With77(p, x, b, m, c, f, a, d, e):
u = IntHide((f*x)**m*(d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*asinh(c*x), u, x)
rule77 = ReplacementRule(pattern77, lambda p, x, b, m, c, f, a, d, e : With77(p, x, b, m, c, f, a, d, e))
rubi.add(rule77)
pattern78 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)), )
def With78(p, x, b, m, c, f, a, d, e):
u = IntHide((f*x)**m*(d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x), x) + Dist(a + b*acosh(c*x), u, x)
rule78 = ReplacementRule(pattern78, lambda p, x, b, m, c, f, a, d, e : With78(p, x, b, m, c, f, a, d, e))
rubi.add(rule78)
pattern79 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda p, m: PositiveIntegerQ(m/S(2) + S(1)/2) | NegativeIntegerQ(m/S(2) + p + S(3)/2)), CustomConstraint(lambda p: Unequal(p, S(-1)/2)), CustomConstraint(lambda d: PositiveQ(d)), )
def With79(p, x, b, m, c, a, d, e):
u = IntHide(x**m*(c**S(2)*x**S(2) + S(1))**p, x)
return -b*c*d**p*Int(SimplifyIntegrand(u/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist(d**p*(a + b*asinh(c*x)), u, x)
rule79 = ReplacementRule(pattern79, lambda p, x, b, m, c, a, d, e : With79(p, x, b, m, c, a, d, e))
rubi.add(rule79)
pattern80 = Pattern(Integral(x_**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda p, m: PositiveIntegerQ(m/S(2) + S(1)/2) | NegativeIntegerQ(m/S(2) + p + S(3)/2)), CustomConstraint(lambda p: Unequal(p, S(-1)/2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), )
def With80(p, e2, e1, d1, x, b, m, c, a, d2):
u = IntHide(x**m*(c*x + S(-1))**p*(c*x + S(1))**p, x)
return -b*c*(-d1*d2)**p*Int(SimplifyIntegrand(u/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x), x) + Dist((-d1*d2)**p*(a + b*acosh(c*x)), u, x)
rule80 = ReplacementRule(pattern80, lambda p, e2, e1, d1, x, b, m, c, a, d2 : With80(p, e2, e1, d1, x, b, m, c, a, d2))
rubi.add(rule80)
pattern81 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)), CustomConstraint(lambda p, m: PositiveIntegerQ(m/S(2) + S(1)/2) | NegativeIntegerQ(m/S(2) + p + S(3)/2)), )
def With81(p, x, b, m, c, a, d, e):
u = IntHide(x**m*(c**S(2)*x**S(2) + S(1))**p, x)
return -b*c*d**(p + S(-1)/2)*sqrt(d + e*x**S(2))*Int(SimplifyIntegrand(u/sqrt(c**S(2)*x**S(2) + S(1)), x), x)/sqrt(c**S(2)*x**S(2) + S(1)) + (a + b*asinh(c*x))*Int(x**m*(d + e*x**S(2))**p, x)
rule81 = ReplacementRule(pattern81, lambda p, x, b, m, c, a, d, e : With81(p, x, b, m, c, a, d, e))
rubi.add(rule81)
pattern82 = Pattern(Integral(x_**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)), CustomConstraint(lambda p, m: PositiveIntegerQ(m/S(2) + S(1)/2) | NegativeIntegerQ(m/S(2) + p + S(3)/2)), )
def With82(p, e2, e1, d1, x, b, m, c, a, d2):
u = IntHide(x**m*(c*x + S(-1))**p*(c*x + S(1))**p, x)
return -b*c*(-d1*d2)**(p + S(-1)/2)*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int(SimplifyIntegrand(u/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x), x)/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + (a + b*acosh(c*x))*Int(x**m*(d1 + e1*x)**p*(d2 + e2*x)**p, x)
rule82 = ReplacementRule(pattern82, lambda p, e2, e1, d1, x, b, m, c, a, d2 : With82(p, e2, e1, d1, x, b, m, c, a, d2))
rubi.add(rule82)
pattern83 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, p, m: RationalQ(m, n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda m: Less(m, S(-1))), CustomConstraint(lambda p: IntegerQ(p)))
rule83 = ReplacementRule(pattern83, lambda p, x, b, m, c, f, a, d, e, n : -b*c*n*(-d)**p*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(f*(m + S(1))) - S(2)*e*p*Int((f*x)**(m + S(2))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x)/(f**S(2)*(m + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**p/(f*(m + S(1))))
rubi.add(rule83)
pattern84 = Pattern(Integral((x_*WC('f', S(1)))**m_*sqrt(d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))))
rule84 = ReplacementRule(pattern84, lambda x, b, m, c, f, a, d, e, n : -b*c*n*sqrt(d + e*x**S(2))*Int((f*x)**(m + S(1))*(a + b*asinh(c*x))**(n + S(-1)), x)/(f*(m + S(1))*sqrt(c**S(2)*x**S(2) + S(1))) - c**S(2)*sqrt(d + e*x**S(2))*Int((f*x)**(m + S(2))*(a + b*asinh(c*x))**n/sqrt(c**S(2)*x**S(2) + S(1)), x)/(f**S(2)*(m + S(1))*sqrt(c**S(2)*x**S(2) + S(1))) + (f*x)**(m + S(1))*(a + b*asinh(c*x))**n*sqrt(d + e*x**S(2))/(f*(m + S(1))))
rubi.add(rule84)
pattern85 = Pattern(Integral((x_*WC('f', S(1)))**m_*sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))))
rule85 = ReplacementRule(pattern85, lambda e2, e1, d1, x, b, m, c, f, a, d2, n : -b*c*n*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1)), x)/(f*(m + S(1))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))) - c**S(2)*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int((f*x)**(m + S(2))*(a + b*acosh(c*x))**n/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(f**S(2)*(m + S(1))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)/(f*(m + S(1))))
rubi.add(rule85)
pattern86 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n, p, m: RationalQ(m, n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda m: Less(m, S(-1))))
rule86 = ReplacementRule(pattern86, lambda p, x, b, m, c, f, a, d, e, n : -b*c*d**IntPart(p)*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(-1)/2), x)/(f*(m + S(1))) - S(2)*e*p*Int((f*x)**(m + S(2))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x)/(f**S(2)*(m + S(1))) + (f*x)**(m + S(1))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**p/(f*(m + S(1))))
rubi.add(rule86)
pattern87 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n, p, m: RationalQ(m, n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda m: Less(m, S(-1))), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)))
rule87 = ReplacementRule(pattern87, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : -b*c*n*(-d1*d2)**(p + S(-1)/2)*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(-1)/2), x)/(f*(m + S(1))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))) - S(2)*e1*e2*p*Int((f*x)**(m + S(2))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(-1))*(d2 + e2*x)**(p + S(-1)), x)/(f**S(2)*(m + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p/(f*(m + S(1))))
rubi.add(rule87)
pattern88 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda m: Not(RationalQ(m) & Less(m, S(-1)))), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda n, m: RationalQ(m) | ZeroQ(n + S(-1))))
rule88 = ReplacementRule(pattern88, lambda p, x, b, m, c, f, a, d, e, n : -b*c*n*(-d)**p*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(f*(m + S(2)*p + S(1))) + S(2)*d*p*Int((f*x)**m*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x)/(m + S(2)*p + S(1)) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**p/(f*(m + S(2)*p + S(1))))
rubi.add(rule88)
pattern89 = Pattern(Integral((x_*WC('f', S(1)))**m_*sqrt(d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Not(RationalQ(m) & Less(m, S(-1)))), CustomConstraint(lambda n, m: RationalQ(m) | ZeroQ(n + S(-1))))
rule89 = ReplacementRule(pattern89, lambda x, b, m, c, f, a, d, e, n : -b*c*n*sqrt(d + e*x**S(2))*Int((f*x)**(m + S(1))*(a + b*asinh(c*x))**(n + S(-1)), x)/(f*(m + S(2))*sqrt(c**S(2)*x**S(2) + S(1))) + sqrt(d + e*x**S(2))*Int((f*x)**m*(a + b*asinh(c*x))**n/sqrt(c**S(2)*x**S(2) + S(1)), x)/((m + S(2))*sqrt(c**S(2)*x**S(2) + S(1))) + (f*x)**(m + S(1))*(a + b*asinh(c*x))**n*sqrt(d + e*x**S(2))/(f*(m + S(2))))
rubi.add(rule89)
pattern90 = Pattern(Integral((x_*WC('f', S(1)))**m_*sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Not(RationalQ(m) & Less(m, S(-1)))), CustomConstraint(lambda n, m: RationalQ(m) | ZeroQ(n + S(-1))))
rule90 = ReplacementRule(pattern90, lambda e2, e1, d1, x, b, m, c, f, a, d2, n : -b*c*n*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1)), x)/(f*(m + S(2))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))) - sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int((f*x)**m*(a + b*acosh(c*x))**n/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/((m + S(2))*sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)/(f*(m + S(2))))
rubi.add(rule90)
pattern91 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda m: Not(RationalQ(m) & Less(m, S(-1)))), CustomConstraint(lambda n, m: RationalQ(m) | ZeroQ(n + S(-1))))
rule91 = ReplacementRule(pattern91, lambda p, x, b, m, c, f, a, d, e, n : -b*c*d**IntPart(p)*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(-1)/2), x)/(f*(m + S(2)*p + S(1))) + S(2)*d*p*Int((f*x)**m*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x)/(m + S(2)*p + S(1)) + (f*x)**(m + S(1))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**p/(f*(m + S(2)*p + S(1))))
rubi.add(rule91)
pattern92 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda m: Not(RationalQ(m) & Less(m, S(-1)))), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda n, m: RationalQ(m) | ZeroQ(n + S(-1))))
rule92 = ReplacementRule(pattern92, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : -b*c*n*(-d1*d2)**(p + S(-1)/2)*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(-1)/2), x)/(f*sqrt(c*x + S(-1))*sqrt(c*x + S(1))*(m + S(2)*p + S(1))) + S(2)*d1*d2*p*Int((f*x)**m*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(-1))*(d2 + e2*x)**(p + S(-1)), x)/(m + S(2)*p + S(1)) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p/(f*(m + S(2)*p + S(1))))
rubi.add(rule92)
pattern93 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p)))
rule93 = ReplacementRule(pattern93, lambda p, x, b, m, c, f, a, d, e, n : b*c*n*(-d)**p*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(f*(m + S(1))) + c**S(2)*(m + S(2)*p + S(3))*Int((f*x)**(m + S(2))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**p, x)/(f**S(2)*(m + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(d*f*(m + S(1))))
rubi.add(rule93)
pattern94 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))), CustomConstraint(lambda m: IntegerQ(m)))
rule94 = ReplacementRule(pattern94, lambda p, x, b, m, c, f, a, d, e, n : -b*c*d**IntPart(p)*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(1)/2), x)/(f*(m + S(1))) - c**S(2)*(m + S(2)*p + S(3))*Int((f*x)**(m + S(2))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**p, x)/(f**S(2)*(m + S(1))) + (f*x)**(m + S(1))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(d*f*(m + S(1))))
rubi.add(rule94)
pattern95 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)))
rule95 = ReplacementRule(pattern95, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : b*c*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(1)/2), x)/(f*(m + S(1))) + c**S(2)*(m + S(2)*p + S(3))*Int((f*x)**(m + S(2))*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p, x)/(f**S(2)*(m + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(d1*d2*f*(m + S(1))))
rubi.add(rule95)
pattern96 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))), CustomConstraint(lambda m: IntegerQ(m)))
rule96 = ReplacementRule(pattern96, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : b*c*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(f*(m + S(1))) + c**S(2)*(m + S(2)*p + S(3))*Int((f*x)**(m + S(2))*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p, x)/(f**S(2)*(m + S(1))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(d1*d2*f*(m + S(1))))
rubi.add(rule96)
pattern97 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda p: IntegerQ(p)))
rule97 = ReplacementRule(pattern97, lambda p, x, b, m, c, f, a, d, e, n : -b*f*n*(-d)**p*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(S(2)*c*(p + S(1))) - f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*e*(p + S(1))) + f*(f*x)**(m + S(-1))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule97)
pattern98 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n, p, m: RationalQ(m, n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Greater(m, S(1))))
rule98 = ReplacementRule(pattern98, lambda p, x, b, m, c, f, a, d, e, n : -b*d**IntPart(p)*f*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(1)/2), x)/(S(2)*c*(p + S(1))) - f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*e*(p + S(1))) + f*(f*x)**(m + S(-1))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule98)
pattern99 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n, p, m: RationalQ(m, n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)))
rule99 = ReplacementRule(pattern99, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : -b*f*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(1)/2), x)/(S(2)*c*(p + S(1))) - f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1)), x)/(S(2)*e1*e2*(p + S(1))) + f*(f*x)**(m + S(-1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(S(2)*e1*e2*(p + S(1))))
rubi.add(rule99)
pattern100 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n, p, m: RationalQ(m, n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: Not(IntegerQ(p))), CustomConstraint(lambda m: Greater(m, S(1))))
rule100 = ReplacementRule(pattern100, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : -b*f*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(S(2)*c*(p + S(1))) - f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1)), x)/(S(2)*e1*e2*(p + S(1))) + f*(f*x)**(m + S(-1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(S(2)*e1*e2*(p + S(1))))
rubi.add(rule100)
pattern101 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Not(RationalQ(m) & Greater(m, S(1)))), CustomConstraint(lambda p: IntegerQ(p)))
rule101 = ReplacementRule(pattern101, lambda p, x, b, m, c, f, a, d, e, n : -b*c*n*(-d)**p*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(S(2)*f*(p + S(1))) + (m + S(2)*p + S(3))*Int((f*x)**m*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*d*(p + S(1))) - (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*d*f*(p + S(1))))
rubi.add(rule101)
pattern102 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Not(RationalQ(m) & Greater(m, S(1)))), CustomConstraint(lambda n, p, m: IntegerQ(m) | IntegerQ(p) | Equal(n, S(1))))
rule102 = ReplacementRule(pattern102, lambda p, x, b, m, c, f, a, d, e, n : b*c*d**IntPart(p)*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(1)/2), x)/(S(2)*f*(p + S(1))) + (m + S(2)*p + S(3))*Int((f*x)**m*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*d*(p + S(1))) - (f*x)**(m + S(1))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*d*f*(p + S(1))))
rubi.add(rule102)
pattern103 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Not(RationalQ(m) & Greater(m, S(1)))), CustomConstraint(lambda n, m: IntegerQ(m) | Equal(n, S(1))), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)))
rule103 = ReplacementRule(pattern103, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : -b*c*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(1)/2), x)/(S(2)*f*(p + S(1))) + (m + S(2)*p + S(3))*Int((f*x)**m*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1)), x)/(S(2)*d1*d2*(p + S(1))) - (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(S(2)*d1*d2*f*(p + S(1))))
rubi.add(rule103)
pattern104 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Not(RationalQ(m) & Greater(m, S(1)))), CustomConstraint(lambda n, p, m: IntegerQ(m) | IntegerQ(p) | Equal(n, S(1))))
rule104 = ReplacementRule(pattern104, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : -b*c*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(S(2)*f*(p + S(1))) + (m + S(2)*p + S(3))*Int((f*x)**m*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1)), x)/(S(2)*d1*d2*(p + S(1))) - (f*x)**(m + S(1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(S(2)*d1*d2*f*(p + S(1))))
rubi.add(rule104)
pattern105 = Pattern(Integral((x_*WC('f', S(1)))**m_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda m: IntegerQ(m)))
rule105 = ReplacementRule(pattern105, lambda x, b, m, c, f, a, d, e, n : -b*f*n*sqrt(c**S(2)*x**S(2) + S(1))*Int((f*x)**(m + S(-1))*(a + b*asinh(c*x))**(n + S(-1)), x)/(c*m*sqrt(d + e*x**S(2))) + f*(f*x)**(m + S(-1))*(a + b*asinh(c*x))**n*sqrt(d + e*x**S(2))/(e*m) - f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*asinh(c*x))**n/sqrt(d + e*x**S(2)), x)/(c**S(2)*m))
rubi.add(rule105)
pattern106 = Pattern(Integral((x_*WC('f', S(1)))**m_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda m: IntegerQ(m)))
rule106 = ReplacementRule(pattern106, lambda e2, e1, d1, x, b, m, c, f, a, d2, n : b*f*n*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(-1)), x)/(c*d1*d2*m*sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + f*(f*x)**(m + S(-1))*(a + b*acosh(c*x))**n*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)/(e1*e2*m) + f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*acosh(c*x))**n/(sqrt(d1 + e1*x)*sqrt(d2 + e2*x)), x)/(c**S(2)*m))
rubi.add(rule106)
pattern107 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: IntegerQ(m)))
rule107 = ReplacementRule(pattern107, lambda x, b, m, c, a, d, e, n : c**(-m + S(-1))*Subst(Int((a + b*x)**n*sinh(x)**m, x), x, asinh(c*x))/sqrt(d))
rubi.add(rule107)
pattern108 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda m: IntegerQ(m)))
rule108 = ReplacementRule(pattern108, lambda e2, e1, d1, x, b, m, c, a, d2, n : c**(-m + S(-1))*Subst(Int((a + b*x)**n*Cosh(x)**m, x), x, acosh(c*x))/sqrt(-d1*d2))
rubi.add(rule108)
pattern109 = Pattern(Integral((x_*WC('f', S(1)))**m_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda m: Not(IntegerQ(m))))
rule109 = ReplacementRule(pattern109, lambda x, b, m, c, f, a, d, e : -b*c*(f*x)**(m + S(2))*HypergeometricPFQ(List(S(1), m/S(2) + S(1), m/S(2) + S(1)), List(m/S(2) + S(3)/2, m/S(2) + S(2)), -c**S(2)*x**S(2))/(sqrt(d)*f**S(2)*(m + S(1))*(m + S(2))) + (f*x)**(m + S(1))*(a + b*asinh(c*x))*Hypergeometric2F1(S(1)/2, m/S(2) + S(1)/2, m/S(2) + S(3)/2, -c**S(2)*x**S(2))/(sqrt(d)*f*(m + S(1))))
rubi.add(rule109)
pattern110 = Pattern(Integral((x_*WC('f', S(1)))**m_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda m: Not(IntegerQ(m))))
rule110 = ReplacementRule(pattern110, lambda e2, e1, d1, x, b, m, c, f, a, d2 : b*c*(f*x)**(m + S(2))*HypergeometricPFQ(List(S(1), m/S(2) + S(1), m/S(2) + S(1)), List(m/S(2) + S(3)/2, m/S(2) + S(2)), c**S(2)*x**S(2))/(f**S(2)*sqrt(-d1*d2)*(m + S(1))*(m + S(2))) + (f*x)**(m + S(1))*(a + b*acosh(c*x))*sqrt(-c**S(2)*x**S(2) + S(1))*Hypergeometric2F1(S(1)/2, m/S(2) + S(1)/2, m/S(2) + S(3)/2, c**S(2)*x**S(2))/(f*sqrt(d1 + e1*x)*sqrt(d2 + e2*x)*(m + S(1))))
rubi.add(rule110)
pattern111 = Pattern(Integral((x_*WC('f', S(1)))**m_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda d: Not(PositiveQ(d))), CustomConstraint(lambda n, m: IntegerQ(m) | Equal(n, S(1))))
rule111 = ReplacementRule(pattern111, lambda x, b, m, c, f, a, d, e, n : sqrt(c**S(2)*x**S(2) + S(1))*Int((f*x)**m*(a + b*asinh(c*x))**n/sqrt(c**S(2)*x**S(2) + S(1)), x)/sqrt(d + e*x**S(2)))
rubi.add(rule111)
pattern112 = Pattern(Integral((x_*WC('f', S(1)))**m_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda d2, d1: Not(NegativeQ(d2) & PositiveQ(d1))), CustomConstraint(lambda n, m: IntegerQ(m) | Equal(n, S(1))))
rule112 = ReplacementRule(pattern112, lambda e2, e1, d1, x, b, m, c, f, a, d2, n : sqrt(c*x + S(-1))*sqrt(c*x + S(1))*Int((f*x)**m*(a + b*acosh(c*x))**n/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(sqrt(d1 + e1*x)*sqrt(d2 + e2*x)))
rubi.add(rule112)
pattern113 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda p, m: NonzeroQ(m + S(2)*p + S(1))), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda m: IntegerQ(m)))
rule113 = ReplacementRule(pattern113, lambda p, x, b, m, c, f, a, d, e, n : -b*f*n*(-d)**p*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(c*(m + S(2)*p + S(1))) + f*(f*x)**(m + S(-1))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(e*(m + S(2)*p + S(1))) + f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*acosh(c*x))**n*(d + e*x**S(2))**p, x)/(c**S(2)*(m + S(2)*p + S(1))))
rubi.add(rule113)
pattern114 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda p, m: NonzeroQ(m + S(2)*p + S(1))), CustomConstraint(lambda m: IntegerQ(m)))
rule114 = ReplacementRule(pattern114, lambda p, x, b, m, c, f, a, d, e, n : -b*d**IntPart(p)*f*n*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*asinh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(1))**(p + S(1)/2), x)/(c*(m + S(2)*p + S(1))) + f*(f*x)**(m + S(-1))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(e*(m + S(2)*p + S(1))) - f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*asinh(c*x))**n*(d + e*x**S(2))**p, x)/(c**S(2)*(m + S(2)*p + S(1))))
rubi.add(rule114)
pattern115 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda p, m: NonzeroQ(m + S(2)*p + S(1))), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)))
rule115 = ReplacementRule(pattern115, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : -b*f*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(-1))*(c**S(2)*x**S(2) + S(-1))**(p + S(1)/2), x)/(c*(m + S(2)*p + S(1))) + f*(f*x)**(m + S(-1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(e1*e2*(m + S(2)*p + S(1))) + f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p, x)/(c**S(2)*(m + S(2)*p + S(1))))
rubi.add(rule115)
pattern116 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda p, m: NonzeroQ(m + S(2)*p + S(1))), CustomConstraint(lambda m: IntegerQ(m)))
rule116 = ReplacementRule(pattern116, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : -b*f*n*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(-1))*(c*x + S(-1))**(p + S(1)/2)*(c*x + S(1))**(p + S(1)/2), x)/(c*(m + S(2)*p + S(1))) + f*(f*x)**(m + S(-1))*(a + b*acosh(c*x))**n*(d1 + e1*x)**(p + S(1))*(d2 + e2*x)**(p + S(1))/(e1*e2*(m + S(2)*p + S(1))) + f**S(2)*(m + S(-1))*Int((f*x)**(m + S(-2))*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p, x)/(c**S(2)*(m + S(2)*p + S(1))))
rubi.add(rule116)
pattern117 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(1))), CustomConstraint(lambda p: IntegerQ(p)))
rule117 = ReplacementRule(pattern117, lambda p, x, m, b, c, f, a, d, e, n : f*m*(-d)**p*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(b*c*(n + S(1))) + (f*x)**m*(a + b*acosh(c*x))**(n + S(1))*(d + e*x**S(2))**p*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule117)
pattern118 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(1))))
rule118 = ReplacementRule(pattern118, lambda p, x, m, b, c, f, a, d, e, n : -d**IntPart(p)*f*m*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*asinh(c*x))**(n + S(1))*(c**S(2)*x**S(2) + S(1))**(p + S(-1)/2), x)/(b*c*(n + S(1))) + (f*x)**m*(a + b*asinh(c*x))**(n + S(1))*(d + e*x**S(2))**p*sqrt(c**S(2)*x**S(2) + S(1))/(b*c*(n + S(1))))
rubi.add(rule118)
pattern119 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(1))), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)))
rule119 = ReplacementRule(pattern119, lambda p, e2, e1, d1, x, m, b, c, f, a, d2, n : f*m*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(1))*(c**S(2)*x**S(2) + S(-1))**(p + S(-1)/2), x)/(b*c*(n + S(1))) + (f*x)**m*(a + b*acosh(c*x))**(n + S(1))*(d1 + e1*x)**p*(d2 + e2*x)**p*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule119)
pattern120 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(1))))
rule120 = ReplacementRule(pattern120, lambda p, e2, e1, d1, x, m, b, c, f, a, d2, n : f*m*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(b*c*(n + S(1))) + (f*x)**m*(a + b*acosh(c*x))**(n + S(1))*(d1 + e1*x)**p*(d2 + e2*x)**p*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule120)
pattern121 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda d: PositiveQ(d)))
rule121 = ReplacementRule(pattern121, lambda x, m, b, c, f, a, d, e, n : -f*m*Int((f*x)**(m + S(-1))*(a + b*asinh(c*x))**(n + S(1)), x)/(b*c*sqrt(d)*(n + S(1))) + (f*x)**m*(a + b*asinh(c*x))**(n + S(1))/(b*c*sqrt(d)*(n + S(1))))
rubi.add(rule121)
pattern122 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)))
rule122 = ReplacementRule(pattern122, lambda e2, e1, d1, x, m, b, c, f, a, d2, n : -f*m*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(1)), x)/(b*c*sqrt(-d1*d2)*(n + S(1))) + (f*x)**m*(a + b*acosh(c*x))**(n + S(1))/(b*c*sqrt(-d1*d2)*(n + S(1))))
rubi.add(rule122)
pattern123 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda d: Not(PositiveQ(d))))
rule123 = ReplacementRule(pattern123, lambda x, m, b, c, f, a, d, e, n : sqrt(c**S(2)*x**S(2) + S(1))*Int((f*x)**m*(a + b*asinh(c*x))**n/sqrt(c**S(2)*x**S(2) + S(1)), x)/sqrt(d + e*x**S(2)))
rubi.add(rule123)
pattern124 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda d2, d1: Not(NegativeQ(d2) & PositiveQ(d1))))
rule124 = ReplacementRule(pattern124, lambda e2, e1, d1, x, m, b, c, f, a, d2, n : sqrt(c*x + S(-1))*sqrt(c*x + S(1))*Int((f*x)**m*(a + b*acosh(c*x))**n/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(sqrt(d1 + e1*x)*sqrt(d2 + e2*x)))
rubi.add(rule124)
pattern125 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: Greater(m, S(-3))), CustomConstraint(lambda p: PositiveIntegerQ(p)))
rule125 = ReplacementRule(pattern125, lambda p, x, m, b, c, f, a, d, e, n : -c*(-d)**p*(m + S(2)*p + S(1))*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(b*f*(n + S(1))) + f*m*(-d)**p*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(1))*(c*x + S(-1))**(p + S(-1)/2)*(c*x + S(1))**(p + S(-1)/2), x)/(b*c*(n + S(1))) + (f*x)**m*(a + b*acosh(c*x))**(n + S(1))*(d + e*x**S(2))**p*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule125)
pattern126 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: Greater(m, S(-3))), CustomConstraint(lambda p: PositiveIntegerQ(S(2)*p)))
rule126 = ReplacementRule(pattern126, lambda p, x, m, b, c, f, a, d, e, n : -c*d**IntPart(p)*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*(m + S(2)*p + S(1))*Int((f*x)**(m + S(1))*(a + b*asinh(c*x))**(n + S(1))*(c**S(2)*x**S(2) + S(1))**(p + S(-1)/2), x)/(b*f*(n + S(1))) - d**IntPart(p)*f*m*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*asinh(c*x))**(n + S(1))*(c**S(2)*x**S(2) + S(1))**(p + S(-1)/2), x)/(b*c*(n + S(1))) + (f*x)**m*(a + b*asinh(c*x))**(n + S(1))*(d + e*x**S(2))**p*sqrt(c**S(2)*x**S(2) + S(1))/(b*c*(n + S(1))))
rubi.add(rule126)
pattern127 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: Greater(m, S(-3))), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)))
rule127 = ReplacementRule(pattern127, lambda p, e2, e1, d1, x, m, b, c, f, a, d2, n : -c*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*(m + S(2)*p + S(1))*Int((f*x)**(m + S(1))*(a + b*acosh(c*x))**(n + S(1))*(c**S(2)*x**S(2) + S(-1))**(p + S(-1)/2), x)/(b*f*(n + S(1))) + f*m*(-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**(m + S(-1))*(a + b*acosh(c*x))**(n + S(1))*(c**S(2)*x**S(2) + S(-1))**(p + S(-1)/2), x)/(b*c*(n + S(1))) + (f*x)**m*(a + b*acosh(c*x))**(n + S(1))*(d1 + e1*x)**p*(d2 + e2*x)**p*sqrt(c*x + S(-1))*sqrt(c*x + S(1))/(b*c*(n + S(1))))
rubi.add(rule127)
pattern128 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(S(2)*p)), CustomConstraint(lambda p: Greater(p, S(-1))), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda d, p: IntegerQ(p) | PositiveQ(d)))
rule128 = ReplacementRule(pattern128, lambda p, x, b, m, c, a, d, e, n : c**(-m + S(-1))*d**p*Subst(Int((a + b*x)**n*Cosh(x)**(S(2)*p + S(1))*sinh(x)**m, x), x, asinh(c*x)))
rubi.add(rule128)
pattern129 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule129 = ReplacementRule(pattern129, lambda p, x, b, m, c, a, d, e, n : c**(-m + S(-1))*(-d)**p*Subst(Int((a + b*x)**n*Cosh(x)**m*sinh(x)**(S(2)*p + S(1)), x), x, acosh(c*x)))
rubi.add(rule129)
pattern130 = Pattern(Integral(x_**WC('m', S(1))*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda p: Greater(p, S(-1))), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda d2, d1: NegativeQ(d2) & PositiveQ(d1)))
rule130 = ReplacementRule(pattern130, lambda p, e2, e1, d1, x, b, m, c, a, d2, n : c**(-m + S(-1))*(-d1*d2)**p*Subst(Int((a + b*x)**n*Cosh(x)**m*sinh(x)**(S(2)*p + S(1)), x), x, acosh(c*x)))
rubi.add(rule130)
pattern131 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(S(2)*p)), CustomConstraint(lambda p: Greater(p, S(-1))), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda d, p: Not(IntegerQ(p) | PositiveQ(d))))
rule131 = ReplacementRule(pattern131, lambda p, x, b, m, c, a, d, e, n : d**IntPart(p)*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int(x**m*(a + b*asinh(c*x))**n*(c**S(2)*x**S(2) + S(1))**p, x))
rubi.add(rule131)
pattern132 = Pattern(Integral(x_**WC('m', S(1))*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: IntegerQ(S(2)*p)), CustomConstraint(lambda p: Greater(p, S(-1))), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda d2, p, d1: Not(IntegerQ(p) | (NegativeQ(d2) & PositiveQ(d1)))))
rule132 = ReplacementRule(pattern132, lambda p, e2, e1, d1, x, b, m, c, a, d2, n : (-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int(x**m*(a + b*acosh(c*x))**n*(c*x + S(-1))**p*(c*x + S(1))**p, x))
rubi.add(rule132)
pattern133 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)), CustomConstraint(lambda m: Not(PositiveIntegerQ(m/S(2) + S(1)/2))), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: Less(S(-3), m, S(0))))
rule133 = ReplacementRule(pattern133, lambda p, x, b, m, c, f, a, d, e, n : Int(ExpandIntegrand((a + b*asinh(c*x))**n/sqrt(d + e*x**S(2)), (f*x)**m*(d + e*x**S(2))**(p + S(1)/2), x), x))
rubi.add(rule133)
pattern134 = Pattern(Integral((x_*WC('f', S(1)))**m_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)), CustomConstraint(lambda m: Not(PositiveIntegerQ(m/S(2) + S(1)/2))), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: Less(S(-3), m, S(0))))
rule134 = ReplacementRule(pattern134, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : Int(ExpandIntegrand((a + b*acosh(c*x))**n/(sqrt(d1 + e1*x)*sqrt(d2 + e2*x)), (f*x)**m*(d1 + e1*x)**(p + S(1)/2)*(d2 + e2*x)**(p + S(1)/2), x), x))
rubi.add(rule134)
pattern135 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: NonzeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: NonzeroQ(m + S(1))), CustomConstraint(lambda m: NonzeroQ(m + S(3))))
rule135 = ReplacementRule(pattern135, lambda x, m, b, c, f, a, d, e : -b*c*Int((f*x)**(m + S(1))*(d*(m + S(3)) + e*x**S(2)*(m + S(1)))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(f*(m + S(1))*(m + S(3))) + d*(f*x)**(m + S(1))*(a + b*acosh(c*x))/(f*(m + S(1))) + e*(f*x)**(m + S(3))*(a + b*acosh(c*x))/(f**S(3)*(m + S(3))))
rubi.add(rule135)
pattern136 = Pattern(Integral(x_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, d, e: NonzeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule136 = ReplacementRule(pattern136, lambda p, x, b, c, a, d, e : -b*c*Int((d + e*x**S(2))**(p + S(1))/sqrt(c**S(2)*x**S(2) + S(1)), x)/(S(2)*e*(p + S(1))) + (a + b*asinh(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule136)
pattern137 = Pattern(Integral(x_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: NonzeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule137 = ReplacementRule(pattern137, lambda p, x, b, c, a, d, e : -b*c*Int((d + e*x**S(2))**(p + S(1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(S(2)*e*(p + S(1))) + (a + b*acosh(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule137)
pattern138 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: NonzeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda p, m: Greater(p, S(0)) | (LessEqual(m + p, S(0)) & PositiveIntegerQ(m/S(2) + S(-1)/2))), )
def With138(p, x, m, b, c, f, a, d, e):
u = IntHide((f*x)**m*(d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*asinh(c*x), u, x)
rule138 = ReplacementRule(pattern138, lambda p, x, m, b, c, f, a, d, e : With138(p, x, m, b, c, f, a, d, e))
rubi.add(rule138)
pattern139 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: NonzeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda p, m: Greater(p, S(0)) | (LessEqual(m + p, S(0)) & PositiveIntegerQ(m/S(2) + S(-1)/2))), )
def With139(p, x, m, b, c, f, a, d, e):
u = IntHide((f*x)**m*(d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x), x) + Dist(a + b*acosh(c*x), u, x)
rule139 = ReplacementRule(pattern139, lambda p, x, m, b, c, f, a, d, e : With139(p, x, m, b, c, f, a, d, e))
rubi.add(rule139)
pattern140 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, d, e: NonzeroQ(-c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda m: IntegerQ(m)))
rule140 = ReplacementRule(pattern140, lambda p, x, b, m, c, f, a, d, e, n : Int(ExpandIntegrand((a + b*asinh(c*x))**n, (f*x)**m*(d + e*x**S(2))**p, x), x))
rubi.add(rule140)
pattern141 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda c, e, d: NonzeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda m: IntegerQ(m)))
rule141 = ReplacementRule(pattern141, lambda p, x, b, m, c, f, a, d, e, n : Int(ExpandIntegrand((a + b*acosh(c*x))**n, (f*x)**m*(d + e*x**S(2))**p, x), x))
rubi.add(rule141)
pattern142 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule142 = ReplacementRule(pattern142, lambda p, x, b, m, c, f, a, d, e, n : Int((f*x)**m*(a + b*asinh(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule142)
pattern143 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p: IntegerQ(p)))
rule143 = ReplacementRule(pattern143, lambda p, x, b, m, c, f, a, d, e, n : Int((f*x)**m*(a + b*acosh(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule143)
pattern144 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d1_ + x_*WC('e1', S(1)))**WC('p', S(1))*(d2_ + x_*WC('e2', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule144 = ReplacementRule(pattern144, lambda p, e2, e1, d1, x, b, m, c, f, a, d2, n : Int((f*x)**m*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p, x))
rubi.add(rule144)
pattern145 = Pattern(Integral((x_*WC('h', S(1)))**WC('m', S(1))*(d_ + x_*WC('e', S(1)))**p_*(f_ + x_*WC('g', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda h, x: FreeQ(h, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda g, f, d, e: ZeroQ(d*g + e*f)), CustomConstraint(lambda g, c, f: ZeroQ(c**S(2)*f**S(2) + g**S(2))), CustomConstraint(lambda p: Not(IntegerQ(p))))
rule145 = ReplacementRule(pattern145, lambda p, h, x, b, m, g, c, f, a, d, e, n : (d + e*x)**FracPart(p)*(f + g*x)**FracPart(p)*(d*f + e*g*x**S(2))**(-FracPart(p))*Int((h*x)**m*(a + b*asinh(c*x))**n*(d*f + e*g*x**S(2))**p, x))
rubi.add(rule145)
pattern146 = Pattern(Integral((x_*WC('f', S(1)))**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: Not(IntegerQ(p))))
rule146 = ReplacementRule(pattern146, lambda p, x, b, m, c, f, a, d, e, n : (-d)**IntPart(p)*(d + e*x**S(2))**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((f*x)**m*(a + b*acosh(c*x))**n*(c*x + S(-1))**p*(c*x + S(1))**p, x))
rubi.add(rule146)
pattern147 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/(x_*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule147 = ReplacementRule(pattern147, lambda x, b, c, a, d, e, n : Subst(Int((a + b*x)**n*Cosh(x)/(c*d + e*sinh(x)), x), x, asinh(c*x)))
rubi.add(rule147)
pattern148 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(x_*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule148 = ReplacementRule(pattern148, lambda x, b, c, a, d, e, n : Subst(Int((a + b*x)**n*sinh(x)/(c*d + e*Cosh(x)), x), x, acosh(c*x)))
rubi.add(rule148)
pattern149 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule149 = ReplacementRule(pattern149, lambda x, b, m, c, a, d, e, n : -b*c*n*Int((a + b*asinh(c*x))**(n + S(-1))*(d + e*x)**(m + S(1))/sqrt(c**S(2)*x**S(2) + S(1)), x)/(e*(m + S(1))) + (a + b*asinh(c*x))**n*(d + e*x)**(m + S(1))/(e*(m + S(1))))
rubi.add(rule149)
pattern150 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule150 = ReplacementRule(pattern150, lambda x, b, m, c, a, d, e, n : -b*c*n*Int((a + b*acosh(c*x))**(n + S(-1))*(d + e*x)**(m + S(1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x)/(e*(m + S(1))) + (a + b*acosh(c*x))**n*(d + e*x)**(m + S(1))/(e*(m + S(1))))
rubi.add(rule150)
pattern151 = Pattern(Integral((d_ + x_*WC('e', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule151 = ReplacementRule(pattern151, lambda x, b, m, c, a, d, e, n : Int(ExpandIntegrand((a + b*asinh(c*x))**n*(d + e*x)**m, x), x))
rubi.add(rule151)
pattern152 = Pattern(Integral((d_ + x_*WC('e', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule152 = ReplacementRule(pattern152, lambda x, b, m, c, a, d, e, n : Int(ExpandIntegrand((a + b*acosh(c*x))**n*(d + e*x)**m, x), x))
rubi.add(rule152)
pattern153 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule153 = ReplacementRule(pattern153, lambda x, b, m, c, a, d, e, n : c**(-m + S(-1))*Subst(Int((a + b*x)**n*(c*d + e*sinh(x))**m*Cosh(x), x), x, asinh(c*x)))
rubi.add(rule153)
pattern154 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule154 = ReplacementRule(pattern154, lambda x, b, m, c, a, d, e, n : c**(-m + S(-1))*Subst(Int((a + b*x)**n*(c*d + e*Cosh(x))**m*sinh(x), x), x, acosh(c*x)))
rubi.add(rule154)
pattern155 = Pattern(Integral(Px_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), )
def With155(Px, x, b, c, a):
u = IntHide(Px, x)
return -b*c*Int(SimplifyIntegrand(u/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*asinh(c*x), u, x)
rule155 = ReplacementRule(pattern155, lambda Px, x, b, c, a : With155(Px, x, b, c, a))
rubi.add(rule155)
pattern156 = Pattern(Integral(Px_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), )
def With156(Px, x, b, c, a):
u = IntHide(Px, x)
return -b*c*sqrt(-c**S(2)*x**S(2) + S(1))*Int(SimplifyIntegrand(u/sqrt(-c**S(2)*x**S(2) + S(1)), x), x)/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + Dist(a + b*acosh(c*x), u, x)
rule156 = ReplacementRule(pattern156, lambda Px, x, b, c, a : With156(Px, x, b, c, a))
rubi.add(rule156)
pattern157 = Pattern(Integral(Px_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)))
rule157 = ReplacementRule(pattern157, lambda Px, x, b, c, a, n : Int(ExpandIntegrand(Px*(a + b*asinh(c*x))**n, x), x))
rubi.add(rule157)
pattern158 = Pattern(Integral(Px_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)))
rule158 = ReplacementRule(pattern158, lambda Px, x, b, c, a, n : Int(ExpandIntegrand(Px*(a + b*acosh(c*x))**n, x), x))
rubi.add(rule158)
pattern159 = Pattern(Integral(Px_*(x_*WC('e', S(1)) + WC('d', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), )
def With159(Px, x, b, m, c, a, d, e):
u = IntHide(Px*(d + e*x)**m, x)
return -b*c*Int(SimplifyIntegrand(u/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*asinh(c*x), u, x)
rule159 = ReplacementRule(pattern159, lambda Px, x, b, m, c, a, d, e : With159(Px, x, b, m, c, a, d, e))
rubi.add(rule159)
pattern160 = Pattern(Integral(Px_*(x_*WC('e', S(1)) + WC('d', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), )
def With160(Px, x, b, m, c, a, d, e):
u = IntHide(Px*(d + e*x)**m, x)
return -b*c*sqrt(-c**S(2)*x**S(2) + S(1))*Int(SimplifyIntegrand(u/sqrt(-c**S(2)*x**S(2) + S(1)), x), x)/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + Dist(a + b*acosh(c*x), u, x)
rule160 = ReplacementRule(pattern160, lambda Px, x, b, m, c, a, d, e : With160(Px, x, b, m, c, a, d, e))
rubi.add(rule160)
pattern161 = Pattern(Integral((d_ + x_*WC('e', S(1)))**m_*(x_*WC('g', S(1)) + WC('f', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda p, n: PositiveIntegerQ(n, p)), CustomConstraint(lambda m: NegativeIntegerQ(m)), CustomConstraint(lambda p, m: Less(m + p + S(1), S(0))), )
def With161(p, x, b, m, g, c, f, a, d, e, n):
u = IntHide((d + e*x)**m*(f + g*x)**p, x)
return -b*c*n*Int(SimplifyIntegrand(u*(a + b*asinh(c*x))**(n + S(-1))/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist((a + b*asinh(c*x))**n, u, x)
rule161 = ReplacementRule(pattern161, lambda p, x, b, m, g, c, f, a, d, e, n : With161(p, x, b, m, g, c, f, a, d, e, n))
rubi.add(rule161)
pattern162 = Pattern(Integral((d_ + x_*WC('e', S(1)))**m_*(x_*WC('g', S(1)) + WC('f', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda p, n: PositiveIntegerQ(n, p)), CustomConstraint(lambda m: NegativeIntegerQ(m)), CustomConstraint(lambda p, m: Less(m + p + S(1), S(0))), )
def With162(p, x, b, m, g, c, f, a, d, e, n):
u = IntHide((d + e*x)**m*(f + g*x)**p, x)
return -b*c*n*Int(SimplifyIntegrand(u*(a + b*acosh(c*x))**(n + S(-1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x), x) + Dist((a + b*acosh(c*x))**n, u, x)
rule162 = ReplacementRule(pattern162, lambda p, x, b, m, g, c, f, a, d, e, n : With162(p, x, b, m, g, c, f, a, d, e, n))
rubi.add(rule162)
pattern163 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_*(x_**S(2)*WC('h', S(1)) + x_*WC('g', S(1)) + WC('f', S(0)))**WC('p', S(1))/(d_ + x_*WC('e', S(1)))**S(2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda h, x: FreeQ(h, x)), CustomConstraint(lambda p, n: PositiveIntegerQ(n, p)), CustomConstraint(lambda g, d, e, h: ZeroQ(-S(2)*d*h + e*g)), )
def With163(p, h, x, b, g, c, f, a, d, e, n):
u = IntHide((f + g*x + h*x**S(2))**p/(d + e*x)**S(2), x)
return -b*c*n*Int(SimplifyIntegrand(u*(a + b*asinh(c*x))**(n + S(-1))/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist((a + b*asinh(c*x))**n, u, x)
rule163 = ReplacementRule(pattern163, lambda p, h, x, b, g, c, f, a, d, e, n : With163(p, h, x, b, g, c, f, a, d, e, n))
rubi.add(rule163)
pattern164 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_*(x_**S(2)*WC('h', S(1)) + x_*WC('g', S(1)) + WC('f', S(0)))**WC('p', S(1))/(d_ + x_*WC('e', S(1)))**S(2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda h, x: FreeQ(h, x)), CustomConstraint(lambda p, n: PositiveIntegerQ(n, p)), CustomConstraint(lambda g, d, e, h: ZeroQ(-S(2)*d*h + e*g)), )
def With164(p, h, x, b, g, c, f, a, d, e, n):
u = IntHide((f + g*x + h*x**S(2))**p/(d + e*x)**S(2), x)
return -b*c*n*Int(SimplifyIntegrand(u*(a + b*acosh(c*x))**(n + S(-1))/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), x), x) + Dist((a + b*acosh(c*x))**n, u, x)
rule164 = ReplacementRule(pattern164, lambda p, h, x, b, g, c, f, a, d, e, n : With164(p, h, x, b, g, c, f, a, d, e, n))
rubi.add(rule164)
pattern165 = Pattern(Integral(Px_*(d_ + x_*WC('e', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: IntegerQ(m)))
rule165 = ReplacementRule(pattern165, lambda Px, x, b, m, c, a, d, e, n : Int(ExpandIntegrand(Px*(a + b*asinh(c*x))**n*(d + e*x)**m, x), x))
rubi.add(rule165)
pattern166 = Pattern(Integral(Px_*(d_ + x_*WC('e', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: IntegerQ(m)))
rule166 = ReplacementRule(pattern166, lambda Px, x, b, m, c, a, d, e, n : Int(ExpandIntegrand(Px*(a + b*acosh(c*x))**n*(d + e*x)**m, x), x))
rubi.add(rule166)
pattern167 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: NegativeIntegerQ(p + S(1)/2)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda m: Greater(m, S(0))), CustomConstraint(lambda p, m: Greater(m, S(3)) | Less(m, -S(2)*p + S(-1))), )
def With167(p, x, b, m, g, c, f, a, d, e):
u = IntHide((d + e*x**S(2))**p*(f + g*x)**m, x)
return -b*c*Int(Dist(1/sqrt(c**S(2)*x**S(2) + S(1)), u, x), x) + Dist(a + b*asinh(c*x), u, x)
rule167 = ReplacementRule(pattern167, lambda p, x, b, m, g, c, f, a, d, e : With167(p, x, b, m, g, c, f, a, d, e))
rubi.add(rule167)
pattern168 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: NegativeIntegerQ(p + S(1)/2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda m: Greater(m, S(0))), CustomConstraint(lambda p, m: Greater(m, S(3)) | Less(m, -S(2)*p + S(-1))), )
def With168(p, e2, e1, d1, x, b, m, g, c, f, a, d2):
u = IntHide((d1 + e1*x)**p*(d2 + e2*x)**p*(f + g*x)**m, x)
return -b*c*Int(Dist(S(1)/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), u, x), x) + Dist(a + b*acosh(c*x), u, x)
rule168 = ReplacementRule(pattern168, lambda p, e2, e1, d1, x, b, m, g, c, f, a, d2 : With168(p, e2, e1, d1, x, b, m, g, c, f, a, d2))
rubi.add(rule168)
pattern169 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: Greater(m, S(0))), CustomConstraint(lambda p, n, m: Equal(m, S(1)) | Greater(p, S(0)) | (Equal(m, S(2)) & Less(p, S(-2))) | (Equal(n, S(1)) & Greater(p, S(-1)))))
rule169 = ReplacementRule(pattern169, lambda p, x, b, m, g, c, f, a, d, e, n : Int(ExpandIntegrand((a + b*asinh(c*x))**n*(d + e*x**S(2))**p, (f + g*x)**m, x), x))
rubi.add(rule169)
pattern170 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: Greater(m, S(0))), CustomConstraint(lambda p, n, m: Equal(m, S(1)) | Greater(p, S(0)) | (Equal(m, S(2)) & Less(p, S(-2))) | (Equal(n, S(1)) & Greater(p, S(-1)))))
rule170 = ReplacementRule(pattern170, lambda p, e2, e1, d1, x, b, m, g, c, f, a, d2, n : Int(ExpandIntegrand((a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p, (f + g*x)**m, x), x))
rubi.add(rule170)
pattern171 = Pattern(Integral(sqrt(d_ + x_**S(2)*WC('e', S(1)))*(x_*WC('g', S(1)) + WC('f', S(0)))**m_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: Less(m, S(0))))
rule171 = ReplacementRule(pattern171, lambda x, b, m, g, c, f, a, d, e, n : (a + b*asinh(c*x))**(n + S(1))*(d + e*x**S(2))*(f + g*x)**m/(b*c*sqrt(d)*(n + S(1))) - Int((a + b*asinh(c*x))**(n + S(1))*(f + g*x)**(m + S(-1))*(d*g*m + S(2)*e*f*x + e*g*x**S(2)*(m + S(2))), x)/(b*c*sqrt(d)*(n + S(1))))
rubi.add(rule171)
pattern172 = Pattern(Integral(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))*(f_ + x_*WC('g', S(1)))**m_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: Less(m, S(0))))
rule172 = ReplacementRule(pattern172, lambda e2, e1, d1, x, b, m, g, c, f, a, d2, n : (a + b*acosh(c*x))**(n + S(1))*(f + g*x)**m*(d1*d2 + e1*e2*x**S(2))/(b*c*sqrt(-d1*d2)*(n + S(1))) - Int((a + b*acosh(c*x))**(n + S(1))*(f + g*x)**(m + S(-1))*(d1*d2*g*m + S(2)*e1*e2*f*x + e1*e2*g*x**S(2)*(m + S(2))), x)/(b*c*sqrt(-d1*d2)*(n + S(1))))
rubi.add(rule172)
pattern173 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule173 = ReplacementRule(pattern173, lambda p, x, b, m, g, c, f, a, d, e, n : Int(ExpandIntegrand((a + b*asinh(c*x))**n*sqrt(d + e*x**S(2)), (d + e*x**S(2))**(p + S(-1)/2)*(f + g*x)**m, x), x))
rubi.add(rule173)
pattern174 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule174 = ReplacementRule(pattern174, lambda p, e2, e1, d1, x, b, m, g, c, f, a, d2, n : Int(ExpandIntegrand((a + b*acosh(c*x))**n*sqrt(d1 + e1*x)*sqrt(d2 + e2*x), (d1 + e1*x)**(p + S(-1)/2)*(d2 + e2*x)**(p + S(-1)/2)*(f + g*x)**m, x), x))
rubi.add(rule174)
pattern175 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(-1)/2)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: Less(m, S(0))))
rule175 = ReplacementRule(pattern175, lambda p, x, b, m, g, c, f, a, d, e, n : (a + b*asinh(c*x))**(n + S(1))*(d + e*x**S(2))**(p + S(1)/2)*(f + g*x)**m/(b*c*sqrt(d)*(n + S(1))) - Int(ExpandIntegrand((a + b*asinh(c*x))**(n + S(1))*(f + g*x)**(m + S(-1)), (d + e*x**S(2))**(p + S(-1)/2)*(d*g*m + e*f*x*(S(2)*p + S(1)) + e*g*x**S(2)*(m + S(2)*p + S(1))), x), x)/(b*c*sqrt(d)*(n + S(1))))
rubi.add(rule175)
pattern176 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(-1)/2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: Less(m, S(0))))
rule176 = ReplacementRule(pattern176, lambda p, e2, e1, d1, x, b, m, g, c, f, a, d2, n : (a + b*acosh(c*x))**(n + S(1))*(d1 + e1*x)**(p + S(1)/2)*(d2 + e2*x)**(p + S(1)/2)*(f + g*x)**m/(b*c*sqrt(-d1*d2)*(n + S(1))) - Int(ExpandIntegrand((a + b*acosh(c*x))**(n + S(1))*(f + g*x)**(m + S(-1)), (d1 + e1*x)**(p + S(-1)/2)*(d2 + e2*x)**(p + S(-1)/2)*(d1*d2*g*m + e1*e2*f*x*(S(2)*p + S(1)) + e1*e2*g*x**S(2)*(m + S(2)*p + S(1))), x), x)/(b*c*sqrt(-d1*d2)*(n + S(1))))
rubi.add(rule176)
pattern177 = Pattern(Integral((f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda m: Greater(m, S(0))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule177 = ReplacementRule(pattern177, lambda x, b, m, g, c, f, a, d, e, n : -g*m*Int((a + b*asinh(c*x))**(n + S(1))*(f + g*x)**(m + S(-1)), x)/(b*c*sqrt(d)*(n + S(1))) + (a + b*asinh(c*x))**(n + S(1))*(f + g*x)**m/(b*c*sqrt(d)*(n + S(1))))
rubi.add(rule177)
pattern178 = Pattern(Integral((f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda m: Greater(m, S(0))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule178 = ReplacementRule(pattern178, lambda e2, e1, d1, x, b, m, g, c, f, a, d2, n : -g*m*Int((a + b*acosh(c*x))**(n + S(1))*(f + g*x)**(m + S(-1)), x)/(b*c*sqrt(-d1*d2)*(n + S(1))) + (a + b*acosh(c*x))**(n + S(1))*(f + g*x)**m/(b*c*sqrt(-d1*d2)*(n + S(1))))
rubi.add(rule178)
pattern179 = Pattern(Integral((f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda n, m: PositiveIntegerQ(n) | Greater(m, S(0))))
rule179 = ReplacementRule(pattern179, lambda x, b, m, g, c, f, a, d, e, n : c**(-m + S(-1))*Subst(Int((a + b*x)**n*(c*f + g*sinh(x))**m, x), x, asinh(c*x))/sqrt(d))
rubi.add(rule179)
pattern180 = Pattern(Integral((f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda n, m: PositiveIntegerQ(n) | Greater(m, S(0))))
rule180 = ReplacementRule(pattern180, lambda e2, e1, d1, x, b, m, g, c, f, a, d2, n : c**(-m + S(-1))*Subst(Int((a + b*x)**n*(c*f + g*Cosh(x))**m, x), x, acosh(c*x))/sqrt(-d1*d2))
rubi.add(rule180)
pattern181 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: NegativeIntegerQ(p + S(1)/2)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule181 = ReplacementRule(pattern181, lambda p, x, b, m, g, c, f, a, d, e, n : Int(ExpandIntegrand((a + b*asinh(c*x))**n/sqrt(d + e*x**S(2)), (d + e*x**S(2))**(p + S(1)/2)*(f + g*x)**m, x), x))
rubi.add(rule181)
pattern182 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: NegativeIntegerQ(p + S(1)/2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule182 = ReplacementRule(pattern182, lambda p, e2, e1, d1, x, b, m, g, c, f, a, d2, n : Int(ExpandIntegrand((a + b*acosh(c*x))**n/(sqrt(d1 + e1*x)*sqrt(d2 + e2*x)), (d1 + e1*x)**(p + S(1)/2)*(d2 + e2*x)**(p + S(1)/2)*(f + g*x)**m, x), x))
rubi.add(rule182)
pattern183 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda d: Not(PositiveQ(d))))
rule183 = ReplacementRule(pattern183, lambda p, x, b, m, g, c, f, a, d, e, n : d**IntPart(p)*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((a + b*asinh(c*x))**n*(f + g*x)**m*(c**S(2)*x**S(2) + S(1))**p, x))
rubi.add(rule183)
pattern184 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)))
rule184 = ReplacementRule(pattern184, lambda p, x, b, m, g, c, f, a, d, e, n : (-d)**IntPart(p)*(d + e*x**S(2))**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((a + b*acosh(c*x))**n*(f + g*x)**m*(c*x + S(-1))**p*(c*x + S(1))**p, x))
rubi.add(rule184)
pattern185 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda d2, d1: Not(NegativeQ(d2) & PositiveQ(d1))))
rule185 = ReplacementRule(pattern185, lambda p, e2, e1, d1, x, b, m, g, c, f, a, d2, n : (-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(-c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((a + b*acosh(c*x))**n*(f + g*x)**m*(c*x + S(-1))**p*(c*x + S(1))**p, x))
rubi.add(rule185)
pattern186 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))*log((x_*WC('g', S(1)) + WC('f', S(0)))**WC('m', S(1))*WC('h', S(1)))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda h, x: FreeQ(h, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule186 = ReplacementRule(pattern186, lambda h, x, m, b, g, f, c, a, d, e, n : -g*m*Int((a + b*asinh(c*x))**(n + S(1))/(f + g*x), x)/(b*c*sqrt(d)*(n + S(1))) + (a + b*asinh(c*x))**(n + S(1))*log(h*(f + g*x)**m)/(b*c*sqrt(d)*(n + S(1))))
rubi.add(rule186)
pattern187 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))*log((x_*WC('g', S(1)) + WC('f', S(0)))**WC('m', S(1))*WC('h', S(1)))/(sqrt(d1_ + x_*WC('e1', S(1)))*sqrt(d2_ + x_*WC('e2', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda h, x: FreeQ(h, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda d1: PositiveQ(d1)), CustomConstraint(lambda d2: NegativeQ(d2)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule187 = ReplacementRule(pattern187, lambda e2, h, e1, x, d1, m, b, g, f, c, a, d2, n : -g*m*Int((a + b*acosh(c*x))**(n + S(1))/(f + g*x), x)/(b*c*sqrt(-d1*d2)*(n + S(1))) + (a + b*acosh(c*x))**(n + S(1))*log(h*(f + g*x)**m)/(b*c*sqrt(-d1*d2)*(n + S(1))))
rubi.add(rule187)
pattern188 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))*log((x_*WC('g', S(1)) + WC('f', S(0)))**WC('m', S(1))*WC('h', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda h, x: FreeQ(h, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda d: Not(PositiveQ(d))))
rule188 = ReplacementRule(pattern188, lambda p, h, x, m, b, g, f, c, a, d, e, n : d**IntPart(p)*(d + e*x**S(2))**FracPart(p)*(c**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((a + b*asinh(c*x))**n*(c**S(2)*x**S(2) + S(1))**p*log(h*(f + g*x)**m), x))
rubi.add(rule188)
pattern189 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))*log((x_*WC('g', S(1)) + WC('f', S(0)))**WC('m', S(1))*WC('h', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda h, x: FreeQ(h, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)))
rule189 = ReplacementRule(pattern189, lambda p, h, x, m, b, g, f, c, a, d, e, n : (-d)**IntPart(p)*(d + e*x**S(2))**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((a + b*acosh(c*x))**n*(c*x + S(-1))**p*(c*x + S(1))**p*log(h*(f + g*x)**m), x))
rubi.add(rule189)
pattern190 = Pattern(Integral((d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))*log((x_*WC('g', S(1)) + WC('f', S(0)))**WC('m', S(1))*WC('h', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda h, x: FreeQ(h, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda d2, d1: Not(NegativeQ(d2) & PositiveQ(d1))))
rule190 = ReplacementRule(pattern190, lambda p, e2, h, e1, x, d1, m, b, g, f, c, a, d2, n : (-d1*d2)**IntPart(p)*(d1 + e1*x)**FracPart(p)*(d2 + e2*x)**FracPart(p)*(c*x + S(-1))**(-FracPart(p))*(c*x + S(1))**(-FracPart(p))*Int((a + b*acosh(c*x))**n*(c*x + S(-1))**p*(c*x + S(1))**p*log(h*(f + g*x)**m), x))
rubi.add(rule190)
pattern191 = Pattern(Integral((d_ + x_*WC('e', S(1)))**m_*(f_ + x_*WC('g', S(1)))**m_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda m: NegativeIntegerQ(m + S(1)/2)), )
def With191(x, b, m, g, c, f, a, d, e):
u = IntHide((d + e*x)**m*(f + g*x)**m, x)
return -b*c*Int(Dist(1/sqrt(c**S(2)*x**S(2) + S(1)), u, x), x) + Dist(a + b*asinh(c*x), u, x)
rule191 = ReplacementRule(pattern191, lambda x, b, m, g, c, f, a, d, e : With191(x, b, m, g, c, f, a, d, e))
rubi.add(rule191)
pattern192 = Pattern(Integral((d_ + x_*WC('e', S(1)))**m_*(f_ + x_*WC('g', S(1)))**m_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda m: NegativeIntegerQ(m + S(1)/2)), )
def With192(x, b, m, g, c, f, a, d, e):
u = IntHide((d + e*x)**m*(f + g*x)**m, x)
return -b*c*Int(Dist(S(1)/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))), u, x), x) + Dist(a + b*acosh(c*x), u, x)
rule192 = ReplacementRule(pattern192, lambda x, b, m, g, c, f, a, d, e : With192(x, b, m, g, c, f, a, d, e))
rubi.add(rule192)
pattern193 = Pattern(Integral((d_ + x_*WC('e', S(1)))**WC('m', S(1))*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: IntegerQ(m)))
rule193 = ReplacementRule(pattern193, lambda x, b, m, g, c, f, a, d, e, n : Int(ExpandIntegrand((a + b*asinh(c*x))**n, (d + e*x)**m*(f + g*x)**m, x), x))
rubi.add(rule193)
pattern194 = Pattern(Integral((d_ + x_*WC('e', S(1)))**WC('m', S(1))*(f_ + x_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: IntegerQ(m)))
rule194 = ReplacementRule(pattern194, lambda x, b, m, g, c, f, a, d, e, n : Int(ExpandIntegrand((a + b*acosh(c*x))**n, (d + e*x)**m*(f + g*x)**m, x), x))
rubi.add(rule194)
pattern195 = Pattern(Integral(u_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda a, v, x, b, c: InverseFunctionFreeQ(v, x)))
def With195(x, b, c, a, u):
v = IntHide(u, x)
return -b*c*Int(SimplifyIntegrand(v/sqrt(c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*asinh(c*x), v, x)
rule195 = ReplacementRule(pattern195, lambda x, b, c, a, u : With195(x, b, c, a, u))
rubi.add(rule195)
pattern196 = Pattern(Integral(u_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda a, v, x, b, c: InverseFunctionFreeQ(v, x)))
def With196(x, b, c, a, u):
v = IntHide(u, x)
return -b*c*sqrt(-c**S(2)*x**S(2) + S(1))*Int(SimplifyIntegrand(v/sqrt(-c**S(2)*x**S(2) + S(1)), x), x)/(sqrt(c*x + S(-1))*sqrt(c*x + S(1))) + Dist(a + b*acosh(c*x), v, x)
rule196 = ReplacementRule(pattern196, lambda x, b, c, a, u : With196(x, b, c, a, u))
rubi.add(rule196)
pattern197 = Pattern(Integral(Px_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda x, u: SumQ(u)))
def With197(Px, p, x, b, c, a, d, e, n):
u = ExpandIntegrand(Px*(a + b*asinh(c*x))**n*(d + e*x**S(2))**p, x)
return Int(u, x)
rule197 = ReplacementRule(pattern197, lambda Px, p, x, b, c, a, d, e, n : With197(Px, p, x, b, c, a, d, e, n))
rubi.add(rule197)
pattern198 = Pattern(Integral(Px_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda x, u: SumQ(u)))
def With198(Px, p, e2, e1, d1, x, b, c, a, d2, n):
u = ExpandIntegrand(Px*(a + b*acosh(c*x))**n*(d1 + e1*x)**p*(d2 + e2*x)**p, x)
return Int(u, x)
rule198 = ReplacementRule(pattern198, lambda Px, p, e2, e1, d1, x, b, c, a, d2, n : With198(Px, p, e2, e1, d1, x, b, c, a, d2, n))
rubi.add(rule198)
pattern199 = Pattern(Integral((f_ + (d_ + x_**S(2)*WC('e', S(1)))**p_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))*WC('Px', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)), CustomConstraint(lambda n, m: IntegersQ(m, n)), CustomConstraint(lambda x, u: SumQ(u)))
def With199(Px, p, x, b, m, g, c, f, a, d, e, n):
u = ExpandIntegrand(Px*(a + b*asinh(c*x))**n*(f + g*(d + e*x**S(2))**p)**m, x)
return Int(u, x)
rule199 = ReplacementRule(pattern199, lambda Px, p, x, b, m, g, c, f, a, d, e, n : With199(Px, p, x, b, m, g, c, f, a, d, e, n))
rubi.add(rule199)
pattern200 = Pattern(Integral((f_ + (d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*WC('g', S(1)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))*WC('Px', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda x, Px: PolynomialQ(Px, x)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: PositiveIntegerQ(p + S(1)/2)), CustomConstraint(lambda n, m: IntegersQ(m, n)), CustomConstraint(lambda x, u: SumQ(u)))
def With200(Px, p, e2, e1, d1, x, b, m, g, c, f, a, d2, n):
u = ExpandIntegrand(Px*(a + b*acosh(c*x))**n*(f + g*(d1 + e1*x)**p*(d2 + e2*x)**p)**m, x)
return Int(u, x)
rule200 = ReplacementRule(pattern200, lambda Px, p, e2, e1, d1, x, b, m, g, c, f, a, d2, n : With200(Px, p, e2, e1, d1, x, b, m, g, c, f, a, d2, n))
rubi.add(rule200)
pattern201 = Pattern(Integral(RFx_*asinh(x_*WC('c', S(1)))**WC('n', S(1)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda RFx, x: RationalFunctionQ(RFx, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda x, u: SumQ(u)))
def With201(RFx, c, n, x):
u = ExpandIntegrand(asinh(c*x)**n, RFx, x)
return Int(u, x)
rule201 = ReplacementRule(pattern201, lambda RFx, c, n, x : With201(RFx, c, n, x))
rubi.add(rule201)
pattern202 = Pattern(Integral(RFx_*acosh(x_*WC('c', S(1)))**WC('n', S(1)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda RFx, x: RationalFunctionQ(RFx, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda x, u: SumQ(u)))
def With202(RFx, c, n, x):
u = ExpandIntegrand(acosh(c*x)**n, RFx, x)
return Int(u, x)
rule202 = ReplacementRule(pattern202, lambda RFx, c, n, x : With202(RFx, c, n, x))
rubi.add(rule202)
pattern203 = Pattern(Integral(RFx_*(a_ + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda RFx, x: RationalFunctionQ(RFx, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule203 = ReplacementRule(pattern203, lambda RFx, x, b, c, a, n : Int(ExpandIntegrand(RFx*(a + b*asinh(c*x))**n, x), x))
rubi.add(rule203)
pattern204 = Pattern(Integral(RFx_*(a_ + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda RFx, x: RationalFunctionQ(RFx, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule204 = ReplacementRule(pattern204, lambda RFx, x, b, c, a, n : Int(ExpandIntegrand(RFx*(a + b*acosh(c*x))**n, x), x))
rubi.add(rule204)
pattern205 = Pattern(Integral(RFx_*(d_ + x_**S(2)*WC('e', S(1)))**p_*asinh(x_*WC('c', S(1)))**WC('n', S(1)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda RFx, x: RationalFunctionQ(RFx, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda x, u: SumQ(u)))
def With205(RFx, p, x, c, d, e, n):
u = ExpandIntegrand((d + e*x**S(2))**p*asinh(c*x)**n, RFx, x)
return Int(u, x)
rule205 = ReplacementRule(pattern205, lambda RFx, p, x, c, d, e, n : With205(RFx, p, x, c, d, e, n))
rubi.add(rule205)
pattern206 = Pattern(Integral(RFx_*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_*acosh(x_*WC('c', S(1)))**WC('n', S(1)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda RFx, x: RationalFunctionQ(RFx, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)), CustomConstraint(lambda x, u: SumQ(u)))
def With206(RFx, p, e2, e1, d1, x, c, d2, n):
u = ExpandIntegrand((d1 + e1*x)**p*(d2 + e2*x)**p*acosh(c*x)**n, RFx, x)
return Int(u, x)
rule206 = ReplacementRule(pattern206, lambda RFx, p, e2, e1, d1, x, c, d2, n : With206(RFx, p, e2, e1, d1, x, c, d2, n))
rubi.add(rule206)
pattern207 = Pattern(Integral(RFx_*(a_ + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**p_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda RFx, x: RationalFunctionQ(RFx, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)))
rule207 = ReplacementRule(pattern207, lambda RFx, p, x, b, c, a, d, e, n : Int(ExpandIntegrand((d + e*x**S(2))**p, RFx*(a + b*asinh(c*x))**n, x), x))
rubi.add(rule207)
pattern208 = Pattern(Integral(RFx_*(a_ + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))*(d1_ + x_*WC('e1', S(1)))**p_*(d2_ + x_*WC('e2', S(1)))**p_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d1, x: FreeQ(d1, x)), CustomConstraint(lambda e1, x: FreeQ(e1, x)), CustomConstraint(lambda d2, x: FreeQ(d2, x)), CustomConstraint(lambda e2, x: FreeQ(e2, x)), CustomConstraint(lambda RFx, x: RationalFunctionQ(RFx, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda c, d1, e1: ZeroQ(-c*d1 + e1)), CustomConstraint(lambda d2, c, e2: ZeroQ(c*d2 + e2)), CustomConstraint(lambda p: IntegerQ(p + S(-1)/2)))
rule208 = ReplacementRule(pattern208, lambda RFx, p, e2, e1, d1, x, b, c, a, d2, n : Int(ExpandIntegrand((d1 + e1*x)**p*(d2 + e2*x)**p, RFx*(a + b*acosh(c*x))**n, x), x))
rubi.add(rule208)
pattern209 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(x_*WC('c', S(1))))**WC('n', S(1))*WC('u', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule209 = ReplacementRule(pattern209, lambda x, b, c, a, u, n : Int(u*(a + b*asinh(c*x))**n, x))
rubi.add(rule209)
pattern210 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_*WC('c', S(1))))**WC('n', S(1))*WC('u', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule210 = ReplacementRule(pattern210, lambda x, b, c, a, u, n : Int(u*(a + b*acosh(c*x))**n, x))
rubi.add(rule210)
pattern211 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_*WC('d', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule211 = ReplacementRule(pattern211, lambda x, b, c, a, d, n : Subst(Int((a + b*asinh(x))**n, x), x, c + d*x)/d)
rubi.add(rule211)
pattern212 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(c_ + x_*WC('d', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule212 = ReplacementRule(pattern212, lambda x, b, c, a, d, n : Subst(Int((a + b*acosh(x))**n, x), x, c + d*x)/d)
rubi.add(rule212)
pattern213 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_*WC('d', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule213 = ReplacementRule(pattern213, lambda x, b, m, f, c, a, d, e, n : Subst(Int((a + b*asinh(x))**n*(f*x/d + (-c*f + d*e)/d)**m, x), x, c + d*x)/d)
rubi.add(rule213)
pattern214 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(c_ + x_*WC('d', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule214 = ReplacementRule(pattern214, lambda x, b, m, f, c, a, d, e, n : Subst(Int((a + b*acosh(x))**n*(f*x/d + (-c*f + d*e)/d)**m, x), x, c + d*x)/d)
rubi.add(rule214)
pattern215 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_*WC('d', S(1))))**WC('n', S(1))*(x_**S(2)*WC('C', S(1)) + x_*WC('B', S(1)) + WC('A', S(0)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda A, x: FreeQ(A, x)), CustomConstraint(lambda B, x: FreeQ(B, x)), CustomConstraint(lambda C, x: FreeQ(C, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda B, c, A, d: ZeroQ(-S(2)*A*c*d + B*(c**S(2) + S(1)))), CustomConstraint(lambda B, c, C, d: ZeroQ(-B*d + S(2)*C*c)))
rule215 = ReplacementRule(pattern215, lambda B, A, C, p, x, b, c, a, d, n : Subst(Int((a + b*asinh(x))**n*(C*x**S(2)/d**S(2) + C/d**S(2))**p, x), x, c + d*x)/d)
rubi.add(rule215)
pattern216 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(c_ + x_*WC('d', S(1))))**WC('n', S(1))*(x_**S(2)*WC('C', S(1)) + x_*WC('B', S(1)) + WC('A', S(0)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda A, x: FreeQ(A, x)), CustomConstraint(lambda B, x: FreeQ(B, x)), CustomConstraint(lambda C, x: FreeQ(C, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda B, c, A, d: ZeroQ(S(2)*A*c*d + B*(-c**S(2) + S(1)))), CustomConstraint(lambda B, c, C, d: ZeroQ(-B*d + S(2)*C*c)))
rule216 = ReplacementRule(pattern216, lambda B, A, C, p, x, b, c, a, d, n : Subst(Int((a + b*acosh(x))**n*(C*x**S(2)/d**S(2) - C/d**S(2))**p, x), x, c + d*x)/d)
rubi.add(rule216)
pattern217 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_*WC('d', S(1))))**WC('n', S(1))*(x_**S(2)*WC('C', S(1)) + x_*WC('B', S(1)) + WC('A', S(0)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda A, x: FreeQ(A, x)), CustomConstraint(lambda B, x: FreeQ(B, x)), CustomConstraint(lambda C, x: FreeQ(C, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda B, c, A, d: ZeroQ(-S(2)*A*c*d + B*(c**S(2) + S(1)))), CustomConstraint(lambda B, c, C, d: ZeroQ(-B*d + S(2)*C*c)))
rule217 = ReplacementRule(pattern217, lambda B, A, C, p, x, b, m, f, c, a, d, e, n : Subst(Int((a + b*asinh(x))**n*(C*x**S(2)/d**S(2) + C/d**S(2))**p*(f*x/d + (-c*f + d*e)/d)**m, x), x, c + d*x)/d)
rubi.add(rule217)
pattern218 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(c_ + x_*WC('d', S(1))))**WC('n', S(1))*(x_**S(2)*WC('C', S(1)) + x_*WC('B', S(1)) + WC('A', S(0)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda A, x: FreeQ(A, x)), CustomConstraint(lambda B, x: FreeQ(B, x)), CustomConstraint(lambda C, x: FreeQ(C, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda B, c, A, d: ZeroQ(S(2)*A*c*d + B*(-c**S(2) + S(1)))), CustomConstraint(lambda B, c, C, d: ZeroQ(-B*d + S(2)*C*c)))
rule218 = ReplacementRule(pattern218, lambda B, A, C, p, x, b, m, f, c, a, d, e, n : Subst(Int((a + b*acosh(x))**n*(C*x**S(2)/d**S(2) - C/d**S(2))**p*(f*x/d + (-c*f + d*e)/d)**m, x), x, c + d*x)/d)
rubi.add(rule218)
pattern219 = Pattern(Integral(sqrt(WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_**S(2)*WC('d', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c: ZeroQ(c**S(2) + S(1))))
rule219 = ReplacementRule(pattern219, lambda x, b, c, a, d : -sqrt(Pi)*x*(-c*sinh(a/(S(2)*b)) + Cosh(a/(S(2)*b)))*FresnelC(sqrt(-c/(Pi*b))*sqrt(a + b*asinh(c + d*x**S(2))))/(sqrt(-c/b)*(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2)))) + sqrt(Pi)*x*(c*sinh(a/(S(2)*b)) + Cosh(a/(S(2)*b)))*FresnelS(sqrt(-c/(Pi*b))*sqrt(a + b*asinh(c + d*x**S(2))))/(sqrt(-c/b)*(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2)))) + x*sqrt(a + b*asinh(c + d*x**S(2))))
rubi.add(rule219)
pattern220 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_**S(2)*WC('d', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c: ZeroQ(c**S(2) + S(1))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(1))))
rule220 = ReplacementRule(pattern220, lambda x, b, c, a, d, n : S(4)*b**S(2)*n*(n + S(-1))*Int((a + b*asinh(c + d*x**S(2)))**(n + S(-2)), x) - S(2)*b*n*(a + b*asinh(c + d*x**S(2)))**(n + S(-1))*sqrt(S(2)*c*d*x**S(2) + d**S(2)*x**S(4))/(d*x) + x*(a + b*asinh(c + d*x**S(2)))**n)
rubi.add(rule220)
pattern221 = Pattern(Integral(1/(WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_**S(2)*WC('d', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c: ZeroQ(c**S(2) + S(1))))
rule221 = ReplacementRule(pattern221, lambda x, b, c, a, d : x*(c*Cosh(a/(S(2)*b)) - sinh(a/(S(2)*b)))*CoshIntegral((a + b*asinh(c + d*x**S(2)))/(S(2)*b))/(S(2)*b*(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2)))) + x*(-c*sinh(a/(S(2)*b)) + Cosh(a/(S(2)*b)))*SinhIntegral((a + b*asinh(c + d*x**S(2)))/(S(2)*b))/(S(2)*b*(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2)))))
rubi.add(rule221)
pattern222 = Pattern(Integral(1/sqrt(WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_**S(2)*WC('d', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c: ZeroQ(c**S(2) + S(1))))
rule222 = ReplacementRule(pattern222, lambda x, b, c, a, d : sqrt(S(2))*sqrt(Pi)*x*(c + S(-1))*(Cosh(a/(S(2)*b)) + sinh(a/(S(2)*b)))*Erf(sqrt(S(2))*sqrt(a + b*asinh(c + d*x**S(2)))/(S(2)*sqrt(b)))/(S(4)*sqrt(b)*(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2)))) + sqrt(S(2))*sqrt(Pi)*x*(c + S(1))*(Cosh(a/(S(2)*b)) - sinh(a/(S(2)*b)))*Erfi(sqrt(S(2))*sqrt(a + b*asinh(c + d*x**S(2)))/(S(2)*sqrt(b)))/(S(4)*sqrt(b)*(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2)))))
rubi.add(rule222)
pattern223 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_**S(2)*WC('d', S(1))))**(S(-3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c: ZeroQ(c**S(2) + S(1))))
rule223 = ReplacementRule(pattern223, lambda x, b, c, a, d : -sqrt(Pi)*x*(-c/b)**(S(3)/2)*(-c*sinh(a/(S(2)*b)) + Cosh(a/(S(2)*b)))*FresnelC(sqrt(-c/(Pi*b))*sqrt(a + b*asinh(c + d*x**S(2))))/(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2))) + sqrt(Pi)*x*(-c/b)**(S(3)/2)*(c*sinh(a/(S(2)*b)) + Cosh(a/(S(2)*b)))*FresnelS(sqrt(-c/(Pi*b))*sqrt(a + b*asinh(c + d*x**S(2))))/(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2))) - sqrt(S(2)*c*d*x**S(2) + d**S(2)*x**S(4))/(b*d*x*sqrt(a + b*asinh(c + d*x**S(2)))))
rubi.add(rule223)
pattern224 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_**S(2)*WC('d', S(1))))**(S(-2)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c: ZeroQ(c**S(2) + S(1))))
rule224 = ReplacementRule(pattern224, lambda x, b, c, a, d : -sqrt(S(2)*c*d*x**S(2) + d**S(2)*x**S(4))/(S(2)*b*d*x*(a + b*asinh(c + d*x**S(2)))) + x*(c*Cosh(a/(S(2)*b)) - sinh(a/(S(2)*b)))*SinhIntegral((a + b*asinh(c + d*x**S(2)))/(S(2)*b))/(S(4)*b**S(2)*(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2)))) + x*(-c*sinh(a/(S(2)*b)) + Cosh(a/(S(2)*b)))*CoshIntegral((a + b*asinh(c + d*x**S(2)))/(S(2)*b))/(S(4)*b**S(2)*(c*sinh(asinh(c + d*x**S(2))/S(2)) + Cosh(asinh(c + d*x**S(2))/S(2)))))
rubi.add(rule224)
pattern225 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asinh(c_ + x_**S(2)*WC('d', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c: ZeroQ(c**S(2) + S(1))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda n: Unequal(n, S(-2))))
rule225 = ReplacementRule(pattern225, lambda x, b, c, a, d, n : (a + b*asinh(c + d*x**S(2)))**(n + S(1))*sqrt(S(2)*c*d*x**S(2) + d**S(2)*x**S(4))/(S(2)*b*d*x*(n + S(1))) - x*(a + b*asinh(c + d*x**S(2)))**(n + S(2))/(S(4)*b**S(2)*(n + S(1))*(n + S(2))) + Int((a + b*asinh(c + d*x**S(2)))**(n + S(2)), x)/(S(4)*b**S(2)*(n + S(1))*(n + S(2))))
rubi.add(rule225)
pattern226 = Pattern(Integral(sqrt(WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule226 = ReplacementRule(pattern226, lambda x, a, d, b : -sqrt(S(2))*sqrt(Pi)*sqrt(b)*(Cosh(a/(S(2)*b)) - sinh(a/(S(2)*b)))*Erfi(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(1)))/(S(2)*sqrt(b)))*sinh(acosh(d*x**S(2) + S(1))/S(2))/(S(2)*d*x) + sqrt(S(2))*sqrt(Pi)*sqrt(b)*(Cosh(a/(S(2)*b)) + sinh(a/(S(2)*b)))*Erf(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(1)))/(S(2)*sqrt(b)))*sinh(acosh(d*x**S(2) + S(1))/S(2))/(S(2)*d*x) + S(2)*sqrt(a + b*acosh(d*x**S(2) + S(1)))*sinh(acosh(d*x**S(2) + S(1))/S(2))**S(2)/(d*x))
rubi.add(rule226)
pattern227 = Pattern(Integral(sqrt(WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(-1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule227 = ReplacementRule(pattern227, lambda x, a, d, b : -sqrt(S(2))*sqrt(Pi)*sqrt(b)*(Cosh(a/(S(2)*b)) - sinh(a/(S(2)*b)))*Cosh(acosh(d*x**S(2) + S(-1))/S(2))*Erfi(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*sqrt(b)))/(S(2)*d*x) - sqrt(S(2))*sqrt(Pi)*sqrt(b)*(Cosh(a/(S(2)*b)) + sinh(a/(S(2)*b)))*Cosh(acosh(d*x**S(2) + S(-1))/S(2))*Erf(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*sqrt(b)))/(S(2)*d*x) + S(2)*sqrt(a + b*acosh(d*x**S(2) + S(-1)))*Cosh(acosh(d*x**S(2) + S(-1))/S(2))**S(2)/(d*x))
rubi.add(rule227)
pattern228 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(c_ + x_**S(2)*WC('d', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c: ZeroQ(c**S(2) + S(-1))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(1))))
rule228 = ReplacementRule(pattern228, lambda x, b, c, a, d, n : S(4)*b**S(2)*n*(n + S(-1))*Int((a + b*acosh(c + d*x**S(2)))**(n + S(-2)), x) - S(2)*b*n*(a + b*acosh(c + d*x**S(2)))**(n + S(-1))*(S(2)*c*d*x**S(2) + d**S(2)*x**S(4))/(d*x*sqrt(c + d*x**S(2) + S(-1))*sqrt(c + d*x**S(2) + S(1))) + x*(a + b*acosh(c + d*x**S(2)))**n)
rubi.add(rule228)
pattern229 = Pattern(Integral(1/(WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule229 = ReplacementRule(pattern229, lambda x, a, d, b : sqrt(S(2))*x*Cosh(a/(S(2)*b))*CoshIntegral((a + b*acosh(d*x**S(2) + S(1)))/(S(2)*b))/(S(2)*b*sqrt(d*x**S(2))) - sqrt(S(2))*x*SinhIntegral((a + b*acosh(d*x**S(2) + S(1)))/(S(2)*b))*sinh(a/(S(2)*b))/(S(2)*b*sqrt(d*x**S(2))))
rubi.add(rule229)
pattern230 = Pattern(Integral(1/(WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(-1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule230 = ReplacementRule(pattern230, lambda x, a, d, b : sqrt(S(2))*x*Cosh(a/(S(2)*b))*SinhIntegral((a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*b))/(S(2)*b*sqrt(d*x**S(2))) - sqrt(S(2))*x*CoshIntegral((a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*b))*sinh(a/(S(2)*b))/(S(2)*b*sqrt(d*x**S(2))))
rubi.add(rule230)
pattern231 = Pattern(Integral(1/sqrt(WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule231 = ReplacementRule(pattern231, lambda x, a, d, b : sqrt(S(2))*sqrt(Pi)*(Cosh(a/(S(2)*b)) - sinh(a/(S(2)*b)))*Erfi(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(1)))/(S(2)*sqrt(b)))*sinh(acosh(d*x**S(2) + S(1))/S(2))/(S(2)*sqrt(b)*d*x) + sqrt(S(2))*sqrt(Pi)*(Cosh(a/(S(2)*b)) + sinh(a/(S(2)*b)))*Erf(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(1)))/(S(2)*sqrt(b)))*sinh(acosh(d*x**S(2) + S(1))/S(2))/(S(2)*sqrt(b)*d*x))
rubi.add(rule231)
pattern232 = Pattern(Integral(1/sqrt(WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(-1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule232 = ReplacementRule(pattern232, lambda x, a, d, b : sqrt(S(2))*sqrt(Pi)*(Cosh(a/(S(2)*b)) - sinh(a/(S(2)*b)))*Cosh(acosh(d*x**S(2) + S(-1))/S(2))*Erfi(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*sqrt(b)))/(S(2)*sqrt(b)*d*x) - sqrt(S(2))*sqrt(Pi)*(Cosh(a/(S(2)*b)) + sinh(a/(S(2)*b)))*Cosh(acosh(d*x**S(2) + S(-1))/S(2))*Erf(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*sqrt(b)))/(S(2)*sqrt(b)*d*x))
rubi.add(rule232)
pattern233 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(1)))**(S(-3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule233 = ReplacementRule(pattern233, lambda x, a, d, b : sqrt(S(2))*sqrt(Pi)*(Cosh(a/(S(2)*b)) - sinh(a/(S(2)*b)))*Erfi(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(1)))/(S(2)*sqrt(b)))*sinh(acosh(d*x**S(2) + S(1))/S(2))/(S(2)*b**(S(3)/2)*d*x) - sqrt(S(2))*sqrt(Pi)*(Cosh(a/(S(2)*b)) + sinh(a/(S(2)*b)))*Erf(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(1)))/(S(2)*sqrt(b)))*sinh(acosh(d*x**S(2) + S(1))/S(2))/(S(2)*b**(S(3)/2)*d*x) - sqrt(d*x**S(2))*sqrt(d*x**S(2) + S(2))/(b*d*x*sqrt(a + b*acosh(d*x**S(2) + S(1)))))
rubi.add(rule233)
pattern234 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(-1)))**(S(-3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule234 = ReplacementRule(pattern234, lambda x, a, d, b : sqrt(S(2))*sqrt(Pi)*(Cosh(a/(S(2)*b)) - sinh(a/(S(2)*b)))*Cosh(acosh(d*x**S(2) + S(-1))/S(2))*Erfi(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*sqrt(b)))/(S(2)*b**(S(3)/2)*d*x) + sqrt(S(2))*sqrt(Pi)*(Cosh(a/(S(2)*b)) + sinh(a/(S(2)*b)))*Cosh(acosh(d*x**S(2) + S(-1))/S(2))*Erf(sqrt(S(2))*sqrt(a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*sqrt(b)))/(S(2)*b**(S(3)/2)*d*x) - sqrt(d*x**S(2))*sqrt(d*x**S(2) + S(-2))/(b*d*x*sqrt(a + b*acosh(d*x**S(2) + S(-1)))))
rubi.add(rule234)
pattern235 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(1)))**(S(-2)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule235 = ReplacementRule(pattern235, lambda x, a, d, b : -sqrt(d*x**S(2))*sqrt(d*x**S(2) + S(2))/(S(2)*b*d*x*(a + b*acosh(d*x**S(2) + S(1)))) + sqrt(S(2))*x*Cosh(a/(S(2)*b))*SinhIntegral((a + b*acosh(d*x**S(2) + S(1)))/(S(2)*b))/(S(4)*b**S(2)*sqrt(d*x**S(2))) - sqrt(S(2))*x*CoshIntegral((a + b*acosh(d*x**S(2) + S(1)))/(S(2)*b))*sinh(a/(S(2)*b))/(S(4)*b**S(2)*sqrt(d*x**S(2))))
rubi.add(rule235)
pattern236 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(x_**S(2)*WC('d', S(1)) + S(-1)))**(S(-2)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda d, x: FreeQ(d, x)))
rule236 = ReplacementRule(pattern236, lambda x, a, d, b : -sqrt(d*x**S(2))*sqrt(d*x**S(2) + S(-2))/(S(2)*b*d*x*(a + b*acosh(d*x**S(2) + S(-1)))) + sqrt(S(2))*x*Cosh(a/(S(2)*b))*CoshIntegral((a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*b))/(S(4)*b**S(2)*sqrt(d*x**S(2))) - sqrt(S(2))*x*SinhIntegral((a + b*acosh(d*x**S(2) + S(-1)))/(S(2)*b))*sinh(a/(S(2)*b))/(S(4)*b**S(2)*sqrt(d*x**S(2))))
rubi.add(rule236)
pattern237 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acosh(c_ + x_**S(2)*WC('d', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c: ZeroQ(c**S(2) + S(-1))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda n: Unequal(n, S(-2))))
rule237 = ReplacementRule(pattern237, lambda x, b, c, a, d, n : (a + b*acosh(c + d*x**S(2)))**(n + S(1))*(S(2)*c*x**S(2) + d*x**S(4))/(S(2)*b*x*(n + S(1))*sqrt(c + d*x**S(2) + S(-1))*sqrt(c + d*x**S(2) + S(1))) - x*(a + b*acosh(c + d*x**S(2)))**(n + S(2))/(S(4)*b**S(2)*(n + S(1))*(n + S(2))) + Int((a + b*acosh(c + d*x**S(2)))**(n + S(2)), x)/(S(4)*b**S(2)*(n + S(1))*(n + S(2))))
rubi.add(rule237)
pattern238 = Pattern(Integral(asinh(x_**p_*WC('a', S(1)))**WC('n', S(1))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule238 = ReplacementRule(pattern238, lambda x, a, p, n : Subst(Int(x**n*coth(x), x), x, asinh(a*x**p))/p)
rubi.add(rule238)
pattern239 = Pattern(Integral(acosh(x_**p_*WC('a', S(1)))**WC('n', S(1))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule239 = ReplacementRule(pattern239, lambda x, a, p, n : Subst(Int(x**n*tanh(x), x), x, acosh(a*x**p))/p)
rubi.add(rule239)
pattern240 = Pattern(Integral(WC('u', S(1))*asinh(WC('c', S(1))/(x_**WC('n', S(1))*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m, x: FreeQ(m, x)))
rule240 = ReplacementRule(pattern240, lambda x, b, m, c, a, u, n : Int(u*acsch(a/c + b*x**n/c)**m, x))
rubi.add(rule240)
pattern241 = Pattern(Integral(WC('u', S(1))*acosh(WC('c', S(1))/(x_**WC('n', S(1))*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m, x: FreeQ(m, x)))
rule241 = ReplacementRule(pattern241, lambda x, b, m, c, a, u, n : Int(u*asech(a/c + b*x**n/c)**m, x))
rubi.add(rule241)
pattern242 = Pattern(Integral(asinh(sqrt(x_**S(2)*WC('b', S(1)) + S(-1)))**WC('n', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + S(-1)), x_), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule242 = ReplacementRule(pattern242, lambda x, n, b : sqrt(b*x**S(2))*Subst(Int(asinh(x)**n/sqrt(x**S(2) + S(1)), x), x, sqrt(b*x**S(2) + S(-1)))/(b*x))
rubi.add(rule242)
pattern243 = Pattern(Integral(acosh(sqrt(x_**S(2)*WC('b', S(1)) + S(1)))**WC('n', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + S(1)), x_), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule243 = ReplacementRule(pattern243, lambda x, n, b : sqrt(sqrt(b*x**S(2) + S(1)) + S(-1))*sqrt(sqrt(b*x**S(2) + S(1)) + S(1))*Subst(Int(acosh(x)**n/(sqrt(x + S(-1))*sqrt(x + S(1))), x), x, sqrt(b*x**S(2) + S(1)))/(b*x))
rubi.add(rule243)
pattern244 = Pattern(Integral(f_**(WC('c', S(1))*asinh(x_*WC('b', S(1)) + WC('a', S(0)))**WC('n', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule244 = ReplacementRule(pattern244, lambda x, b, c, f, a, n : Subst(Int(f**(c*x**n)*Cosh(x), x), x, asinh(a + b*x))/b)
rubi.add(rule244)
pattern245 = Pattern(Integral(f_**(WC('c', S(1))*acosh(x_*WC('b', S(1)) + WC('a', S(0)))**WC('n', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule245 = ReplacementRule(pattern245, lambda x, b, c, f, a, n : Subst(Int(f**(c*x**n)*sinh(x), x), x, acosh(a + b*x))/b)
rubi.add(rule245)
pattern246 = Pattern(Integral(f_**(WC('c', S(1))*asinh(x_*WC('b', S(1)) + WC('a', S(0)))**WC('n', S(1)))*x_**WC('m', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda n, m: PositiveIntegerQ(m, n)))
rule246 = ReplacementRule(pattern246, lambda x, b, m, c, f, a, n : Subst(Int(f**(c*x**n)*(-a/b + sinh(x)/b)**m*Cosh(x), x), x, asinh(a + b*x))/b)
rubi.add(rule246)
pattern247 = Pattern(Integral(f_**(WC('c', S(1))*acosh(x_*WC('b', S(1)) + WC('a', S(0)))**WC('n', S(1)))*x_**WC('m', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda n, m: PositiveIntegerQ(m, n)))
rule247 = ReplacementRule(pattern247, lambda x, b, m, c, f, a, n : Subst(Int(f**(c*x**n)*(-a/b + Cosh(x)/b)**m*sinh(x), x), x, acosh(a + b*x))/b)
rubi.add(rule247)
pattern248 = Pattern(Integral(asinh(u_), x_), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, u: Not(FunctionOfExponentialQ(u, x))))
rule248 = ReplacementRule(pattern248, lambda x, u : x*asinh(u) - Int(SimplifyIntegrand(x*D(u, x)/sqrt(u**S(2) + S(1)), x), x))
rubi.add(rule248)
pattern249 = Pattern(Integral(acosh(u_), x_), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, u: Not(FunctionOfExponentialQ(u, x))))
rule249 = ReplacementRule(pattern249, lambda x, u : x*acosh(u) - Int(SimplifyIntegrand(x*D(u, x)/(sqrt(u + S(-1))*sqrt(u + S(1))), x), x))
rubi.add(rule249)
pattern250 = Pattern(Integral((x_*WC('d', S(1)) + WC('c', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asinh(u_)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: NonzeroQ(m + S(1))), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, m, c, d, u: Not(FunctionOfQ((c + d*x)**(m + S(1)), u, x))), CustomConstraint(lambda x, u: Not(FunctionOfExponentialQ(u, x))))
rule250 = ReplacementRule(pattern250, lambda x, b, m, c, a, d, u : -b*Int(SimplifyIntegrand((c + d*x)**(m + S(1))*D(u, x)/sqrt(u**S(2) + S(1)), x), x)/(d*(m + S(1))) + (a + b*asinh(u))*(c + d*x)**(m + S(1))/(d*(m + S(1))))
rubi.add(rule250)
pattern251 = Pattern(Integral((x_*WC('d', S(1)) + WC('c', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acosh(u_)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: NonzeroQ(m + S(1))), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, m, c, d, u: Not(FunctionOfQ((c + d*x)**(m + S(1)), u, x))), CustomConstraint(lambda x, u: Not(FunctionOfExponentialQ(u, x))))
rule251 = ReplacementRule(pattern251, lambda x, b, m, c, a, d, u : -b*Int(SimplifyIntegrand((c + d*x)**(m + S(1))*D(u, x)/(sqrt(u + S(-1))*sqrt(u + S(1))), x), x)/(d*(m + S(1))) + (a + b*acosh(u))*(c + d*x)**(m + S(1))/(d*(m + S(1))))
rubi.add(rule251)
pattern252 = Pattern(Integral(v_*(WC('a', S(0)) + WC('b', S(1))*asinh(u_)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda v, x: Not(MatchQ(v, Condition((x*Optional(Pattern(d, Blank)) + Optional(Pattern(c, Blank)))**Optional(Pattern(m, Blank)))))), CustomConstraint(lambda a, u, x, b, w: InverseFunctionFreeQ(w, x)))
def With252(x, b, v, a, u):
w = IntHide(v, x)
return -b*Int(SimplifyIntegrand(w*D(u, x)/sqrt(u**S(2) + S(1)), x), x) + Dist(a + b*asinh(u), w, x)
rule252 = ReplacementRule(pattern252, lambda x, b, v, a, u : With252(x, b, v, a, u))
rubi.add(rule252)
pattern253 = Pattern(Integral(v_*(WC('a', S(0)) + WC('b', S(1))*acosh(u_)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda v, x: Not(MatchQ(v, Condition((x*Optional(Pattern(d, Blank)) + Optional(Pattern(c, Blank)))**Optional(Pattern(m, Blank)))))), CustomConstraint(lambda a, u, x, b, w: InverseFunctionFreeQ(w, x)))
def With253(x, b, v, a, u):
w = IntHide(v, x)
return -b*Int(SimplifyIntegrand(w*D(u, x)/(sqrt(u + S(-1))*sqrt(u + S(1))), x), x) + Dist(a + b*acosh(u), w, x)
rule253 = ReplacementRule(pattern253, lambda x, b, v, a, u : With253(x, b, v, a, u))
rubi.add(rule253)
pattern254 = Pattern(Integral(exp(WC('n', S(1))*asinh(u_)), x_), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda x, u: PolynomialQ(u, x)))
rule254 = ReplacementRule(pattern254, lambda x, u, n : Int((u + sqrt(u**S(2) + S(1)))**n, x))
rubi.add(rule254)
pattern255 = Pattern(Integral(x_**WC('m', S(1))*exp(WC('n', S(1))*asinh(u_)), x_), CustomConstraint(lambda m: RationalQ(m)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda x, u: PolynomialQ(u, x)))
rule255 = ReplacementRule(pattern255, lambda x, u, n, m : Int(x**m*(u + sqrt(u**S(2) + S(1)))**n, x))
rubi.add(rule255)
pattern256 = Pattern(Integral(exp(WC('n', S(1))*acosh(u_)), x_), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda x, u: PolynomialQ(u, x)))
rule256 = ReplacementRule(pattern256, lambda x, u, n : Int((u + sqrt(u + S(-1))*sqrt(u + S(1)))**n, x))
rubi.add(rule256)
pattern257 = Pattern(Integral(x_**WC('m', S(1))*exp(WC('n', S(1))*acosh(u_)), x_), CustomConstraint(lambda m: RationalQ(m)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda x, u: PolynomialQ(u, x)))
rule257 = ReplacementRule(pattern257, lambda x, u, n, m : Int(x**m*(u + sqrt(u + S(-1))*sqrt(u + S(1)))**n, x))
rubi.add(rule257)
pattern258 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule258 = ReplacementRule(pattern258, lambda x, b, c, a, n : -b*c*n*Int(x*(a + b*atanh(c*x))**(n + S(-1))/(-c**S(2)*x**S(2) + S(1)), x) + x*(a + b*atanh(c*x))**n)
rubi.add(rule258)
pattern259 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule259 = ReplacementRule(pattern259, lambda x, b, c, a, n : -b*c*n*Int(x*(a + b*acoth(c*x))**(n + S(-1))/(-c**S(2)*x**S(2) + S(1)), x) + x*(a + b*acoth(c*x))**n)
rubi.add(rule259)
pattern260 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))))
rule260 = ReplacementRule(pattern260, lambda x, b, c, a, n : Int((a + b*atanh(c*x))**n, x))
rubi.add(rule260)
pattern261 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))))
rule261 = ReplacementRule(pattern261, lambda x, b, c, a, n : Int((a + b*acoth(c*x))**n, x))
rubi.add(rule261)
pattern262 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d**S(2) - e**S(2))), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule262 = ReplacementRule(pattern262, lambda x, b, c, a, d, e, n : b*c*n*Int((a + b*atanh(c*x))**(n + S(-1))*log(S(2)*d/(d + e*x))/(-c**S(2)*x**S(2) + S(1)), x)/e - (a + b*atanh(c*x))**n*log(S(2)*d/(d + e*x))/e)
rubi.add(rule262)
pattern263 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d**S(2) - e**S(2))), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule263 = ReplacementRule(pattern263, lambda x, b, c, a, d, e, n : b*c*n*Int((a + b*acoth(c*x))**(n + S(-1))*log(S(2)*d/(d + e*x))/(-c**S(2)*x**S(2) + S(1)), x)/e - (a + b*acoth(c*x))**n*log(S(2)*d/(d + e*x))/e)
rubi.add(rule263)
pattern264 = Pattern(Integral(atanh(x_*WC('c', S(1)))/(d_ + x_*WC('e', S(1))), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: PositiveQ(c*d/e + S(1))), CustomConstraint(lambda c, e, d: NegativeQ(c*d/e + S(-1))))
rule264 = ReplacementRule(pattern264, lambda c, d, e, x : -PolyLog(S(2), Simp(c*(d + e*x)/(c*d - e), x))/(S(2)*e) + PolyLog(S(2), Simp(c*(d + e*x)/(c*d + e), x))/(S(2)*e) - log(d + e*x)*atanh(c*d/e)/e)
rubi.add(rule264)
pattern265 = Pattern(Integral(atanh(x_*WC('c', S(1)))/(x_*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)))
rule265 = ReplacementRule(pattern265, lambda c, e, d, x : -Int(log(-c*x + S(1))/(d + e*x), x)/S(2) + Int(log(c*x + S(1))/(d + e*x), x)/S(2))
rubi.add(rule265)
pattern266 = Pattern(Integral(acoth(x_*WC('c', S(1)))/(x_*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)))
rule266 = ReplacementRule(pattern266, lambda c, e, d, x : -Int(log(S(1) - S(1)/(c*x))/(d + e*x), x)/S(2) + Int(log(S(1) + S(1)/(c*x))/(d + e*x), x)/S(2))
rubi.add(rule266)
pattern267 = Pattern(Integral((a_ + WC('b', S(1))*atanh(x_*WC('c', S(1))))/(x_*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)))
rule267 = ReplacementRule(pattern267, lambda x, b, c, a, d, e : a*log(RemoveContent(d + e*x, x))/e + b*Int(atanh(c*x)/(d + e*x), x))
rubi.add(rule267)
pattern268 = Pattern(Integral((a_ + WC('b', S(1))*acoth(x_*WC('c', S(1))))/(x_*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)))
rule268 = ReplacementRule(pattern268, lambda x, b, c, a, d, e : a*log(RemoveContent(d + e*x, x))/e + b*Int(acoth(c*x)/(d + e*x), x))
rubi.add(rule268)
pattern269 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule269 = ReplacementRule(pattern269, lambda p, x, b, c, a, d, e : -b*c*Int((d + e*x)**(p + S(1))/(-c**S(2)*x**S(2) + S(1)), x)/(e*(p + S(1))) + (a + b*atanh(c*x))*(d + e*x)**(p + S(1))/(e*(p + S(1))))
rubi.add(rule269)
pattern270 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule270 = ReplacementRule(pattern270, lambda p, x, b, c, a, d, e : -b*c*Int((d + e*x)**(p + S(1))/(-c**S(2)*x**S(2) + S(1)), x)/(e*(p + S(1))) + (a + b*acoth(c*x))*(d + e*x)**(p + S(1))/(e*(p + S(1))))
rubi.add(rule270)
pattern271 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda n: Greater(n, S(1))))
rule271 = ReplacementRule(pattern271, lambda x, b, c, a, n : -S(2)*b*c*n*Int((a + b*atanh(c*x))**(n + S(-1))*atanh(S(1) - S(2)/(-c*x + S(1)))/(-c**S(2)*x**S(2) + S(1)), x) + S(2)*(a + b*atanh(c*x))**n*atanh(S(1) - S(2)/(-c*x + S(1))))
rubi.add(rule271)
pattern272 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda n: Greater(n, S(1))))
rule272 = ReplacementRule(pattern272, lambda x, b, c, a, n : -S(2)*b*c*n*Int((a + b*acoth(c*x))**(n + S(-1))*acoth(S(1) - S(2)/(-c*x + S(1)))/(-c**S(2)*x**S(2) + S(1)), x) + S(2)*(a + b*acoth(c*x))**n*acoth(S(1) - S(2)/(-c*x + S(1))))
rubi.add(rule272)
pattern273 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda n: Greater(n, S(1))), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule273 = ReplacementRule(pattern273, lambda x, b, m, c, a, n : -b*c*n*Int(x**(m + S(1))*(a + b*atanh(c*x))**(n + S(-1))/(-c**S(2)*x**S(2) + S(1)), x)/(m + S(1)) + x**(m + S(1))*(a + b*atanh(c*x))**n/(m + S(1)))
rubi.add(rule273)
pattern274 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda n: Greater(n, S(1))), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule274 = ReplacementRule(pattern274, lambda x, b, m, c, a, n : -b*c*n*Int(x**(m + S(1))*(a + b*acoth(c*x))**(n + S(-1))/(-c**S(2)*x**S(2) + S(1)), x)/(m + S(1)) + x**(m + S(1))*(a + b*acoth(c*x))**n/(m + S(1)))
rubi.add(rule274)
pattern275 = Pattern(Integral((d_ + x_*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, n: PositiveIntegerQ(n, p)))
rule275 = ReplacementRule(pattern275, lambda p, x, b, c, a, d, e, n : Int(ExpandIntegrand((a + b*atanh(c*x))**n*(d + e*x)**p, x), x))
rubi.add(rule275)
pattern276 = Pattern(Integral((d_ + x_*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, n: PositiveIntegerQ(n, p)))
rule276 = ReplacementRule(pattern276, lambda p, x, b, c, a, d, e, n : Int(ExpandIntegrand((a + b*acoth(c*x))**n*(d + e*x)**p, x), x))
rubi.add(rule276)
pattern277 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))))
rule277 = ReplacementRule(pattern277, lambda p, x, b, c, a, d, e, n : Int((a + b*atanh(c*x))**n*(d + e*x)**p, x))
rubi.add(rule277)
pattern278 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))))
rule278 = ReplacementRule(pattern278, lambda p, x, b, c, a, d, e, n : Int((a + b*acoth(c*x))**n*(d + e*x)**p, x))
rubi.add(rule278)
pattern279 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d**S(2) - e**S(2))), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: RationalQ(m)), CustomConstraint(lambda m: Greater(m, S(0))))
rule279 = ReplacementRule(pattern279, lambda x, b, m, c, a, d, e, n : -d*Int(x**(m + S(-1))*(a + b*atanh(c*x))**n/(d + e*x), x)/e + Int(x**(m + S(-1))*(a + b*atanh(c*x))**n, x)/e)
rubi.add(rule279)
pattern280 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d**S(2) - e**S(2))), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: RationalQ(m)), CustomConstraint(lambda m: Greater(m, S(0))))
rule280 = ReplacementRule(pattern280, lambda x, b, m, c, a, d, e, n : -d*Int(x**(m + S(-1))*(a + b*acoth(c*x))**n/(d + e*x), x)/e + Int(x**(m + S(-1))*(a + b*acoth(c*x))**n, x)/e)
rubi.add(rule280)
pattern281 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(x_*(d_ + x_*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d**S(2) - e**S(2))), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule281 = ReplacementRule(pattern281, lambda x, b, c, a, d, e, n : -b*c*n*Int((a + b*atanh(c*x))**(n + S(-1))*log(S(2)*e*x/(d + e*x))/(-c**S(2)*x**S(2) + S(1)), x)/d + (a + b*atanh(c*x))**n*log(S(2)*e*x/(d + e*x))/d)
rubi.add(rule281)
pattern282 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(x_*(d_ + x_*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d**S(2) - e**S(2))), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule282 = ReplacementRule(pattern282, lambda x, b, c, a, d, e, n : -b*c*n*Int((a + b*acoth(c*x))**(n + S(-1))*log(S(2)*e*x/(d + e*x))/(-c**S(2)*x**S(2) + S(1)), x)/d + (a + b*acoth(c*x))**n*log(S(2)*e*x/(d + e*x))/d)
rubi.add(rule282)
pattern283 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d**S(2) - e**S(2))), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: RationalQ(m)), CustomConstraint(lambda m: Less(m, S(-1))))
rule283 = ReplacementRule(pattern283, lambda x, b, m, c, a, d, e, n : -e*Int(x**(m + S(1))*(a + b*atanh(c*x))**n/(d + e*x), x)/d + Int(x**m*(a + b*atanh(c*x))**n, x)/d)
rubi.add(rule283)
pattern284 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d**S(2) - e**S(2))), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda m: RationalQ(m)), CustomConstraint(lambda m: Less(m, S(-1))))
rule284 = ReplacementRule(pattern284, lambda x, b, m, c, a, d, e, n : -e*Int(x**(m + S(1))*(a + b*acoth(c*x))**n/(d + e*x), x)/d + Int(x**m*(a + b*acoth(c*x))**n, x)/d)
rubi.add(rule284)
pattern285 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda a, p, m: IntegerQ(m) | NonzeroQ(a) | Greater(p, S(0))))
rule285 = ReplacementRule(pattern285, lambda p, x, b, m, c, a, d, e, n : Int(ExpandIntegrand(x**m*(a + b*atanh(c*x))**n*(d + e*x)**p, x), x))
rubi.add(rule285)
pattern286 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda a, p, m: IntegerQ(m) | NonzeroQ(a) | Greater(p, S(0))))
rule286 = ReplacementRule(pattern286, lambda p, x, b, m, c, a, d, e, n : Int(ExpandIntegrand(x**m*(a + b*acoth(c*x))**n*(d + e*x)**p, x), x))
rubi.add(rule286)
pattern287 = Pattern(Integral(x_**WC('m', S(1))*(x_*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule287 = ReplacementRule(pattern287, lambda p, x, b, m, c, a, d, e, n : Int(x**m*(a + b*atanh(c*x))**n*(d + e*x)**p, x))
rubi.add(rule287)
pattern288 = Pattern(Integral(x_**WC('m', S(1))*(x_*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule288 = ReplacementRule(pattern288, lambda p, x, b, m, c, a, d, e, n : Int(x**m*(a + b*acoth(c*x))**n*(d + e*x)**p, x))
rubi.add(rule288)
pattern289 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Greater(p, S(0))))
rule289 = ReplacementRule(pattern289, lambda p, x, b, c, a, d, e : b*(d + e*x**S(2))**p/(S(2)*c*p*(S(2)*p + S(1))) + S(2)*d*p*Int((a + b*atanh(c*x))*(d + e*x**S(2))**(p + S(-1)), x)/(S(2)*p + S(1)) + x*(a + b*atanh(c*x))*(d + e*x**S(2))**p/(S(2)*p + S(1)))
rubi.add(rule289)
pattern290 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Greater(p, S(0))))
rule290 = ReplacementRule(pattern290, lambda p, x, b, c, a, d, e : b*(d + e*x**S(2))**p/(S(2)*c*p*(S(2)*p + S(1))) + S(2)*d*p*Int((a + b*acoth(c*x))*(d + e*x**S(2))**(p + S(-1)), x)/(S(2)*p + S(1)) + x*(a + b*acoth(c*x))*(d + e*x**S(2))**p/(S(2)*p + S(1)))
rubi.add(rule290)
pattern291 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda n: Greater(n, S(1))))
rule291 = ReplacementRule(pattern291, lambda p, x, b, c, a, d, e, n : -b**S(2)*d*n*(n + S(-1))*Int((a + b*atanh(c*x))**(n + S(-2))*(d + e*x**S(2))**(p + S(-1)), x)/(S(2)*p*(S(2)*p + S(1))) + b*n*(a + b*atanh(c*x))**(n + S(-1))*(d + e*x**S(2))**p/(S(2)*c*p*(S(2)*p + S(1))) + S(2)*d*p*Int((a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x)/(S(2)*p + S(1)) + x*(a + b*atanh(c*x))**n*(d + e*x**S(2))**p/(S(2)*p + S(1)))
rubi.add(rule291)
pattern292 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda n: Greater(n, S(1))))
rule292 = ReplacementRule(pattern292, lambda p, x, b, c, a, d, e, n : -b**S(2)*d*n*(n + S(-1))*Int((a + b*acoth(c*x))**(n + S(-2))*(d + e*x**S(2))**(p + S(-1)), x)/(S(2)*p*(S(2)*p + S(1))) + b*n*(a + b*acoth(c*x))**(n + S(-1))*(d + e*x**S(2))**p/(S(2)*c*p*(S(2)*p + S(1))) + S(2)*d*p*Int((a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x)/(S(2)*p + S(1)) + x*(a + b*acoth(c*x))**n*(d + e*x**S(2))**p/(S(2)*p + S(1)))
rubi.add(rule292)
pattern293 = Pattern(Integral(S(1)/((d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)))
rule293 = ReplacementRule(pattern293, lambda x, b, c, a, d, e : log(RemoveContent(a + b*atanh(c*x), x))/(b*c*d))
rubi.add(rule293)
pattern294 = Pattern(Integral(S(1)/((d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)))
rule294 = ReplacementRule(pattern294, lambda x, b, c, a, d, e : log(RemoveContent(a + b*acoth(c*x), x))/(b*c*d))
rubi.add(rule294)
pattern295 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: NonzeroQ(n + S(1))))
rule295 = ReplacementRule(pattern295, lambda x, b, c, a, d, e, n : (a + b*atanh(c*x))**(n + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule295)
pattern296 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: NonzeroQ(n + S(1))))
rule296 = ReplacementRule(pattern296, lambda x, b, c, a, d, e, n : (a + b*acoth(c*x))**(n + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule296)
pattern297 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)))
rule297 = ReplacementRule(pattern297, lambda x, b, c, a, d, e : -ImaginaryI*b*PolyLog(S(2), -ImaginaryI*sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/(c*sqrt(d)) + ImaginaryI*b*PolyLog(S(2), ImaginaryI*sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/(c*sqrt(d)) - S(2)*(a + b*atanh(c*x))*ArcTan(sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/(c*sqrt(d)))
rubi.add(rule297)
pattern298 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)))
rule298 = ReplacementRule(pattern298, lambda x, b, c, a, d, e : -ImaginaryI*b*PolyLog(S(2), -ImaginaryI*sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/(c*sqrt(d)) + ImaginaryI*b*PolyLog(S(2), ImaginaryI*sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/(c*sqrt(d)) - S(2)*(a + b*acoth(c*x))*ArcTan(sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/(c*sqrt(d)))
rubi.add(rule298)
pattern299 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda d: PositiveQ(d)))
rule299 = ReplacementRule(pattern299, lambda x, b, c, a, d, e, n : Subst(Int((a + b*x)**n*sech(x), x), x, atanh(c*x))/(c*sqrt(d)))
rubi.add(rule299)
pattern300 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda d: PositiveQ(d)))
rule300 = ReplacementRule(pattern300, lambda x, b, c, a, d, e, n : -x*sqrt(S(1) - S(1)/(c**S(2)*x**S(2)))*Subst(Int((a + b*x)**n*csch(x), x), x, acoth(c*x))/sqrt(d + e*x**S(2)))
rubi.add(rule300)
pattern301 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda d: Not(PositiveQ(d))))
rule301 = ReplacementRule(pattern301, lambda x, b, c, a, d, e, n : sqrt(-c**S(2)*x**S(2) + S(1))*Int((a + b*atanh(c*x))**n/sqrt(-c**S(2)*x**S(2) + S(1)), x)/sqrt(d + e*x**S(2)))
rubi.add(rule301)
pattern302 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda d: Not(PositiveQ(d))))
rule302 = ReplacementRule(pattern302, lambda x, b, c, a, d, e, n : sqrt(-c**S(2)*x**S(2) + S(1))*Int((a + b*acoth(c*x))**n/sqrt(-c**S(2)*x**S(2) + S(1)), x)/sqrt(d + e*x**S(2)))
rubi.add(rule302)
pattern303 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1)))**S(2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule303 = ReplacementRule(pattern303, lambda x, b, c, a, d, e, n : -b*c*n*Int(x*(a + b*atanh(c*x))**(n + S(-1))/(d + e*x**S(2))**S(2), x)/S(2) + x*(a + b*atanh(c*x))**n/(S(2)*d*(d + e*x**S(2))) + (a + b*atanh(c*x))**(n + S(1))/(S(2)*b*c*d**S(2)*(n + S(1))))
rubi.add(rule303)
pattern304 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1)))**S(2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule304 = ReplacementRule(pattern304, lambda x, b, c, a, d, e, n : -b*c*n*Int(x*(a + b*acoth(c*x))**(n + S(-1))/(d + e*x**S(2))**S(2), x)/S(2) + x*(a + b*acoth(c*x))**n/(S(2)*d*(d + e*x**S(2))) + (a + b*acoth(c*x))**(n + S(1))/(S(2)*b*c*d**S(2)*(n + S(1))))
rubi.add(rule304)
pattern305 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))/(d_ + x_**S(2)*WC('e', S(1)))**(S(3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)))
rule305 = ReplacementRule(pattern305, lambda x, b, c, a, d, e : -b/(c*d*sqrt(d + e*x**S(2))) + x*(a + b*atanh(c*x))/(d*sqrt(d + e*x**S(2))))
rubi.add(rule305)
pattern306 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))/(d_ + x_**S(2)*WC('e', S(1)))**(S(3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)))
rule306 = ReplacementRule(pattern306, lambda x, b, c, a, d, e : -b/(c*d*sqrt(d + e*x**S(2))) + x*(a + b*acoth(c*x))/(d*sqrt(d + e*x**S(2))))
rubi.add(rule306)
pattern307 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: Unequal(p, S(-3)/2)))
rule307 = ReplacementRule(pattern307, lambda p, x, b, c, a, d, e : -b*(d + e*x**S(2))**(p + S(1))/(S(4)*c*d*(p + S(1))**S(2)) - x*(a + b*atanh(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*d*(p + S(1))) + (S(2)*p + S(3))*Int((a + b*atanh(c*x))*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*d*(p + S(1))))
rubi.add(rule307)
pattern308 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: Unequal(p, S(-3)/2)))
rule308 = ReplacementRule(pattern308, lambda p, x, b, c, a, d, e : -b*(d + e*x**S(2))**(p + S(1))/(S(4)*c*d*(p + S(1))**S(2)) - x*(a + b*acoth(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*d*(p + S(1))) + (S(2)*p + S(3))*Int((a + b*acoth(c*x))*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*d*(p + S(1))))
rubi.add(rule308)
pattern309 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_/(d_ + x_**S(2)*WC('e', S(1)))**(S(3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(1))))
rule309 = ReplacementRule(pattern309, lambda x, b, c, a, d, e, n : b**S(2)*n*(n + S(-1))*Int((a + b*atanh(c*x))**(n + S(-2))/(d + e*x**S(2))**(S(3)/2), x) - b*n*(a + b*atanh(c*x))**(n + S(-1))/(c*d*sqrt(d + e*x**S(2))) + x*(a + b*atanh(c*x))**n/(d*sqrt(d + e*x**S(2))))
rubi.add(rule309)
pattern310 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_/(d_ + x_**S(2)*WC('e', S(1)))**(S(3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(1))))
rule310 = ReplacementRule(pattern310, lambda x, b, c, a, d, e, n : b**S(2)*n*(n + S(-1))*Int((a + b*acoth(c*x))**(n + S(-2))/(d + e*x**S(2))**(S(3)/2), x) - b*n*(a + b*acoth(c*x))**(n + S(-1))/(c*d*sqrt(d + e*x**S(2))) + x*(a + b*acoth(c*x))**n/(d*sqrt(d + e*x**S(2))))
rubi.add(rule310)
pattern311 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Greater(n, S(1))), CustomConstraint(lambda p: Unequal(p, S(-3)/2)))
rule311 = ReplacementRule(pattern311, lambda p, x, b, c, a, d, e, n : b**S(2)*n*(n + S(-1))*Int((a + b*atanh(c*x))**(n + S(-2))*(d + e*x**S(2))**p, x)/(S(4)*(p + S(1))**S(2)) - b*n*(a + b*atanh(c*x))**(n + S(-1))*(d + e*x**S(2))**(p + S(1))/(S(4)*c*d*(p + S(1))**S(2)) - x*(a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*d*(p + S(1))) + (S(2)*p + S(3))*Int((a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*d*(p + S(1))))
rubi.add(rule311)
pattern312 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Greater(n, S(1))), CustomConstraint(lambda p: Unequal(p, S(-3)/2)))
rule312 = ReplacementRule(pattern312, lambda p, x, b, c, a, d, e, n : b**S(2)*n*(n + S(-1))*Int((a + b*acoth(c*x))**(n + S(-2))*(d + e*x**S(2))**p, x)/(S(4)*(p + S(1))**S(2)) - b*n*(a + b*acoth(c*x))**(n + S(-1))*(d + e*x**S(2))**(p + S(1))/(S(4)*c*d*(p + S(1))**S(2)) - x*(a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*d*(p + S(1))) + (S(2)*p + S(3))*Int((a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*d*(p + S(1))))
rubi.add(rule312)
pattern313 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Less(n, S(-1))))
rule313 = ReplacementRule(pattern313, lambda p, x, b, c, a, d, e, n : S(2)*c*(p + S(1))*Int(x*(a + b*atanh(c*x))**(n + S(1))*(d + e*x**S(2))**p, x)/(b*(n + S(1))) + (a + b*atanh(c*x))**(n + S(1))*(d + e*x**S(2))**(p + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule313)
pattern314 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Less(n, S(-1))))
rule314 = ReplacementRule(pattern314, lambda p, x, b, c, a, d, e, n : S(2)*c*(p + S(1))*Int(x*(a + b*acoth(c*x))**(n + S(1))*(d + e*x**S(2))**p, x)/(b*(n + S(1))) + (a + b*acoth(c*x))**(n + S(1))*(d + e*x**S(2))**(p + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule314)
pattern315 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: NegativeIntegerQ(S(2)*p + S(2))), CustomConstraint(lambda d, p: IntegerQ(p) | PositiveQ(d)))
rule315 = ReplacementRule(pattern315, lambda p, x, b, c, a, d, e, n : d**p*Subst(Int((a + b*x)**n*Cosh(x)**(-S(2)*p + S(-2)), x), x, atanh(c*x))/c)
rubi.add(rule315)
pattern316 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: NegativeIntegerQ(S(2)*p + S(2))), CustomConstraint(lambda d, p: Not(IntegerQ(p) | PositiveQ(d))))
rule316 = ReplacementRule(pattern316, lambda p, x, b, c, a, d, e, n : d**(p + S(1)/2)*sqrt(-c**S(2)*x**S(2) + S(1))*Int((a + b*atanh(c*x))**n*(-c**S(2)*x**S(2) + S(1))**p, x)/sqrt(d + e*x**S(2)))
rubi.add(rule316)
pattern317 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: NegativeIntegerQ(S(2)*p + S(2))), CustomConstraint(lambda p: IntegerQ(p)))
rule317 = ReplacementRule(pattern317, lambda p, x, b, c, a, d, e, n : -(-d)**p*Subst(Int((a + b*x)**n*sinh(x)**(-S(2)*p + S(-2)), x), x, acoth(c*x))/c)
rubi.add(rule317)
pattern318 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: NegativeIntegerQ(S(2)*p + S(2))), CustomConstraint(lambda p: Not(IntegerQ(p))))
rule318 = ReplacementRule(pattern318, lambda p, x, b, c, a, d, e, n : -x*(-d)**(p + S(1)/2)*sqrt((c**S(2)*x**S(2) + S(-1))/(c**S(2)*x**S(2)))*Subst(Int((a + b*x)**n*sinh(x)**(-S(2)*p + S(-2)), x), x, acoth(c*x))/sqrt(d + e*x**S(2)))
rubi.add(rule318)
pattern319 = Pattern(Integral(atanh(x_*WC('c', S(1)))/(x_**S(2)*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)))
rule319 = ReplacementRule(pattern319, lambda c, e, d, x : -Int(log(-c*x + S(1))/(d + e*x**S(2)), x)/S(2) + Int(log(c*x + S(1))/(d + e*x**S(2)), x)/S(2))
rubi.add(rule319)
pattern320 = Pattern(Integral(acoth(x_*WC('c', S(1)))/(x_**S(2)*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)))
rule320 = ReplacementRule(pattern320, lambda c, e, d, x : -Int(log(S(1) - S(1)/(c*x))/(d + e*x**S(2)), x)/S(2) + Int(log(S(1) + S(1)/(c*x))/(d + e*x**S(2)), x)/S(2))
rubi.add(rule320)
pattern321 = Pattern(Integral((a_ + WC('b', S(1))*atanh(x_*WC('c', S(1))))/(x_**S(2)*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)))
rule321 = ReplacementRule(pattern321, lambda x, b, c, a, d, e : a*Int(1/(d + e*x**S(2)), x) + b*Int(atanh(c*x)/(d + e*x**S(2)), x))
rubi.add(rule321)
pattern322 = Pattern(Integral((a_ + WC('b', S(1))*acoth(x_*WC('c', S(1))))/(x_**S(2)*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)))
rule322 = ReplacementRule(pattern322, lambda x, b, c, a, d, e : a*Int(1/(d + e*x**S(2)), x) + b*Int(acoth(c*x)/(d + e*x**S(2)), x))
rubi.add(rule322)
pattern323 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p: IntegerQ(p) | NegativeIntegerQ(p + S(1)/2)), )
def With323(p, x, b, c, a, d, e):
u = IntHide((d + e*x**S(2))**p, x)
return -b*c*Int(ExpandIntegrand(u/(-c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*atanh(c*x), u, x)
rule323 = ReplacementRule(pattern323, lambda p, x, b, c, a, d, e : With323(p, x, b, c, a, d, e))
rubi.add(rule323)
pattern324 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p: IntegerQ(p) | NegativeIntegerQ(p + S(1)/2)), )
def With324(p, x, b, c, a, d, e):
u = IntHide((d + e*x**S(2))**p, x)
return -b*c*Int(ExpandIntegrand(u/(-c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*acoth(c*x), u, x)
rule324 = ReplacementRule(pattern324, lambda p, x, b, c, a, d, e : With324(p, x, b, c, a, d, e))
rubi.add(rule324)
pattern325 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule325 = ReplacementRule(pattern325, lambda p, x, b, c, a, d, e, n : Int(ExpandIntegrand((a + b*atanh(c*x))**n*(d + e*x**S(2))**p, x), x))
rubi.add(rule325)
pattern326 = Pattern(Integral((d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule326 = ReplacementRule(pattern326, lambda p, x, b, c, a, d, e, n : Int(ExpandIntegrand((a + b*acoth(c*x))**n*(d + e*x**S(2))**p, x), x))
rubi.add(rule326)
pattern327 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule327 = ReplacementRule(pattern327, lambda p, x, b, c, a, d, e, n : Int((a + b*atanh(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule327)
pattern328 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule328 = ReplacementRule(pattern328, lambda p, x, b, c, a, d, e, n : Int((a + b*acoth(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule328)
pattern329 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))))
rule329 = ReplacementRule(pattern329, lambda x, b, m, c, a, d, e, n : -d*Int(x**(m + S(-2))*(a + b*atanh(c*x))**n/(d + e*x**S(2)), x)/e + Int(x**(m + S(-2))*(a + b*atanh(c*x))**n, x)/e)
rubi.add(rule329)
pattern330 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))))
rule330 = ReplacementRule(pattern330, lambda x, b, m, c, a, d, e, n : -d*Int(x**(m + S(-2))*(a + b*acoth(c*x))**n/(d + e*x**S(2)), x)/e + Int(x**(m + S(-2))*(a + b*acoth(c*x))**n, x)/e)
rubi.add(rule330)
pattern331 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))))
rule331 = ReplacementRule(pattern331, lambda x, b, m, c, a, d, e, n : -e*Int(x**(m + S(2))*(a + b*atanh(c*x))**n/(d + e*x**S(2)), x)/d + Int(x**m*(a + b*atanh(c*x))**n, x)/d)
rubi.add(rule331)
pattern332 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))))
rule332 = ReplacementRule(pattern332, lambda x, b, m, c, a, d, e, n : -e*Int(x**(m + S(2))*(a + b*acoth(c*x))**n/(d + e*x**S(2)), x)/d + Int(x**m*(a + b*acoth(c*x))**n, x)/d)
rubi.add(rule332)
pattern333 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule333 = ReplacementRule(pattern333, lambda x, b, c, a, d, e, n : Int((a + b*atanh(c*x))**n/(-c*x + S(1)), x)/(c*d) + (a + b*atanh(c*x))**(n + S(1))/(b*e*(n + S(1))))
rubi.add(rule333)
pattern334 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule334 = ReplacementRule(pattern334, lambda x, b, c, a, d, e, n : Int((a + b*acoth(c*x))**n/(-c*x + S(1)), x)/(c*d) + (a + b*acoth(c*x))**(n + S(1))/(b*e*(n + S(1))))
rubi.add(rule334)
pattern335 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))), CustomConstraint(lambda n: NonzeroQ(n + S(1))))
rule335 = ReplacementRule(pattern335, lambda x, b, c, a, d, e, n : x*(a + b*atanh(c*x))**(n + S(1))/(b*c*d*(n + S(1))) - Int((a + b*atanh(c*x))**(n + S(1)), x)/(b*c*d*(n + S(1))))
rubi.add(rule335)
pattern336 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))), CustomConstraint(lambda n: NonzeroQ(n + S(1))))
rule336 = ReplacementRule(pattern336, lambda x, b, c, a, d, e, n : -x*(a + b*acoth(c*x))**(n + S(1))/(b*c*d*(n + S(1))) - Int((a + b*acoth(c*x))**(n + S(1)), x)/(b*c*d*(n + S(1))))
rubi.add(rule336)
pattern337 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))))
rule337 = ReplacementRule(pattern337, lambda x, b, m, c, a, d, e, n : -d*Int(x**(m + S(-2))*(a + b*atanh(c*x))**n/(d + e*x**S(2)), x)/e + Int(x**(m + S(-2))*(a + b*atanh(c*x))**n, x)/e)
rubi.add(rule337)
pattern338 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))))
rule338 = ReplacementRule(pattern338, lambda x, b, m, c, a, d, e, n : -d*Int(x**(m + S(-2))*(a + b*acoth(c*x))**n/(d + e*x**S(2)), x)/e + Int(x**(m + S(-2))*(a + b*acoth(c*x))**n, x)/e)
rubi.add(rule338)
pattern339 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(x_*(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule339 = ReplacementRule(pattern339, lambda x, b, c, a, d, e, n : Int((a + b*atanh(c*x))**n/(x*(c*x + S(1))), x)/d + (a + b*atanh(c*x))**(n + S(1))/(b*d*(n + S(1))))
rubi.add(rule339)
pattern340 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(x_*(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule340 = ReplacementRule(pattern340, lambda x, b, c, a, d, e, n : Int((a + b*acoth(c*x))**n/(x*(c*x + S(1))), x)/d + (a + b*acoth(c*x))**(n + S(1))/(b*d*(n + S(1))))
rubi.add(rule340)
pattern341 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))))
rule341 = ReplacementRule(pattern341, lambda x, b, m, c, a, d, e, n : -e*Int(x**(m + S(2))*(a + b*atanh(c*x))**n/(d + e*x**S(2)), x)/d + Int(x**m*(a + b*atanh(c*x))**n, x)/d)
rubi.add(rule341)
pattern342 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))))
rule342 = ReplacementRule(pattern342, lambda x, b, m, c, a, d, e, n : -e*Int(x**(m + S(2))*(a + b*acoth(c*x))**n/(d + e*x**S(2)), x)/d + Int(x**m*(a + b*acoth(c*x))**n, x)/d)
rubi.add(rule342)
pattern343 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule343 = ReplacementRule(pattern343, lambda x, b, m, c, a, d, e, n : -m*Int(x**(m + S(-1))*(a + b*atanh(c*x))**(n + S(1)), x)/(b*c*d*(n + S(1))) + x**m*(a + b*atanh(c*x))**(n + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule343)
pattern344 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule344 = ReplacementRule(pattern344, lambda x, b, m, c, a, d, e, n : -m*Int(x**(m + S(-1))*(a + b*acoth(c*x))**(n + S(1)), x)/(b*c*d*(n + S(1))) + x**m*(a + b*acoth(c*x))**(n + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule344)
pattern345 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda a, m: Not(NonzeroQ(a) & Equal(m, S(1)))))
rule345 = ReplacementRule(pattern345, lambda x, b, m, c, a, d, e : Int(ExpandIntegrand(a + b*atanh(c*x), x**m/(d + e*x**S(2)), x), x))
rubi.add(rule345)
pattern346 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda a, m: Not(NonzeroQ(a) & Equal(m, S(1)))))
rule346 = ReplacementRule(pattern346, lambda x, b, m, c, a, d, e : Int(ExpandIntegrand(a + b*acoth(c*x), x**m/(d + e*x**S(2)), x), x))
rubi.add(rule346)
pattern347 = Pattern(Integral(x_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule347 = ReplacementRule(pattern347, lambda p, x, b, c, a, d, e, n : b*n*Int((a + b*atanh(c*x))**(n + S(-1))*(d + e*x**S(2))**p, x)/(S(2)*c*(p + S(1))) + (a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule347)
pattern348 = Pattern(Integral(x_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule348 = ReplacementRule(pattern348, lambda p, x, b, c, a, d, e, n : b*n*Int((a + b*acoth(c*x))**(n + S(-1))*(d + e*x**S(2))**p, x)/(S(2)*c*(p + S(1))) + (a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule348)
pattern349 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_/(d_ + x_**S(2)*WC('e', S(1)))**S(2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda n: Unequal(n, S(-2))))
rule349 = ReplacementRule(pattern349, lambda x, b, c, a, d, e, n : x*(a + b*atanh(c*x))**(n + S(1))/(b*c*d*(d + e*x**S(2))*(n + S(1))) + S(4)*Int(x*(a + b*atanh(c*x))**(n + S(2))/(d + e*x**S(2))**S(2), x)/(b**S(2)*(n + S(1))*(n + S(2))) + (a + b*atanh(c*x))**(n + S(2))*(c**S(2)*x**S(2) + S(1))/(b**S(2)*e*(d + e*x**S(2))*(n + S(1))*(n + S(2))))
rubi.add(rule349)
pattern350 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_/(d_ + x_**S(2)*WC('e', S(1)))**S(2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda n: Unequal(n, S(-2))))
rule350 = ReplacementRule(pattern350, lambda x, b, c, a, d, e, n : x*(a + b*acoth(c*x))**(n + S(1))/(b*c*d*(d + e*x**S(2))*(n + S(1))) + S(4)*Int(x*(a + b*acoth(c*x))**(n + S(2))/(d + e*x**S(2))**S(2), x)/(b**S(2)*(n + S(1))*(n + S(2))) + (a + b*acoth(c*x))**(n + S(2))*(c**S(2)*x**S(2) + S(1))/(b**S(2)*e*(d + e*x**S(2))*(n + S(1))*(n + S(2))))
rubi.add(rule350)
pattern351 = Pattern(Integral(x_**S(2)*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: Unequal(p, S(-5)/2)))
rule351 = ReplacementRule(pattern351, lambda p, x, b, c, a, d, e : -b*(d + e*x**S(2))**(p + S(1))/(S(4)*c**S(3)*d*(p + S(1))**S(2)) - x*(a + b*atanh(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*c**S(2)*d*(p + S(1))) + Int((a + b*atanh(c*x))*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*c**S(2)*d*(p + S(1))))
rubi.add(rule351)
pattern352 = Pattern(Integral(x_**S(2)*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: Unequal(p, S(-5)/2)))
rule352 = ReplacementRule(pattern352, lambda p, x, b, c, a, d, e : -b*(d + e*x**S(2))**(p + S(1))/(S(4)*c**S(3)*d*(p + S(1))**S(2)) - x*(a + b*acoth(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*c**S(2)*d*(p + S(1))) + Int((a + b*acoth(c*x))*(d + e*x**S(2))**(p + S(1)), x)/(S(2)*c**S(2)*d*(p + S(1))))
rubi.add(rule352)
pattern353 = Pattern(Integral(x_**S(2)*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1)))**S(2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule353 = ReplacementRule(pattern353, lambda x, b, c, a, d, e, n : -b*n*Int(x*(a + b*atanh(c*x))**(n + S(-1))/(d + e*x**S(2))**S(2), x)/(S(2)*c) + x*(a + b*atanh(c*x))**n/(S(2)*c**S(2)*d*(d + e*x**S(2))) - (a + b*atanh(c*x))**(n + S(1))/(S(2)*b*c**S(3)*d**S(2)*(n + S(1))))
rubi.add(rule353)
pattern354 = Pattern(Integral(x_**S(2)*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1)))**S(2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule354 = ReplacementRule(pattern354, lambda x, b, c, a, d, e, n : -b*n*Int(x*(a + b*acoth(c*x))**(n + S(-1))/(d + e*x**S(2))**S(2), x)/(S(2)*c) + x*(a + b*acoth(c*x))**n/(S(2)*c**S(2)*d*(d + e*x**S(2))) - (a + b*acoth(c*x))**(n + S(1))/(S(2)*b*c**S(3)*d**S(2)*(n + S(1))))
rubi.add(rule354)
pattern355 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(2))), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))))
rule355 = ReplacementRule(pattern355, lambda p, x, b, m, c, a, d, e : -b*x**m*(d + e*x**S(2))**(p + S(1))/(c*d*m**S(2)) + x**(m + S(-1))*(a + b*atanh(c*x))*(d + e*x**S(2))**(p + S(1))/(c**S(2)*d*m) - (m + S(-1))*Int(x**(m + S(-2))*(a + b*atanh(c*x))*(d + e*x**S(2))**(p + S(1)), x)/(c**S(2)*d*m))
rubi.add(rule355)
pattern356 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(2))), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))))
rule356 = ReplacementRule(pattern356, lambda p, x, b, m, c, a, d, e : -b*x**m*(d + e*x**S(2))**(p + S(1))/(c*d*m**S(2)) + x**(m + S(-1))*(a + b*acoth(c*x))*(d + e*x**S(2))**(p + S(1))/(c**S(2)*d*m) - (m + S(-1))*Int(x**(m + S(-2))*(a + b*acoth(c*x))*(d + e*x**S(2))**(p + S(1)), x)/(c**S(2)*d*m))
rubi.add(rule356)
pattern357 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(2))), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Greater(n, S(1))))
rule357 = ReplacementRule(pattern357, lambda p, x, b, m, c, a, d, e, n : b**S(2)*n*(n + S(-1))*Int(x**m*(a + b*atanh(c*x))**(n + S(-2))*(d + e*x**S(2))**p, x)/m**S(2) - b*n*x**m*(a + b*atanh(c*x))**(n + S(-1))*(d + e*x**S(2))**(p + S(1))/(c*d*m**S(2)) + x**(m + S(-1))*(a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(c**S(2)*d*m) - (m + S(-1))*Int(x**(m + S(-2))*(a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(c**S(2)*d*m))
rubi.add(rule357)
pattern358 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(2))), CustomConstraint(lambda p, n: RationalQ(n, p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Greater(n, S(1))))
rule358 = ReplacementRule(pattern358, lambda p, x, b, m, c, a, d, e, n : b**S(2)*n*(n + S(-1))*Int(x**m*(a + b*acoth(c*x))**(n + S(-2))*(d + e*x**S(2))**p, x)/m**S(2) - b*n*x**m*(a + b*acoth(c*x))**(n + S(-1))*(d + e*x**S(2))**(p + S(1))/(c*d*m**S(2)) + x**(m + S(-1))*(a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(1))/(c**S(2)*d*m) - (m + S(-1))*Int(x**(m + S(-2))*(a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/(c**S(2)*d*m))
rubi.add(rule358)
pattern359 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(2))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule359 = ReplacementRule(pattern359, lambda p, x, b, m, c, a, d, e, n : -m*Int(x**(m + S(-1))*(a + b*atanh(c*x))**(n + S(1))*(d + e*x**S(2))**p, x)/(b*c*(n + S(1))) + x**m*(a + b*atanh(c*x))**(n + S(1))*(d + e*x**S(2))**(p + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule359)
pattern360 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(2))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(n, S(-1))))
rule360 = ReplacementRule(pattern360, lambda p, x, b, m, c, a, d, e, n : -m*Int(x**(m + S(-1))*(a + b*acoth(c*x))**(n + S(1))*(d + e*x**S(2))**p, x)/(b*c*(n + S(1))) + x**m*(a + b*acoth(c*x))**(n + S(1))*(d + e*x**S(2))**(p + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule360)
pattern361 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(3))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule361 = ReplacementRule(pattern361, lambda p, x, b, m, c, a, d, e, n : -b*c*n*Int(x**(m + S(1))*(a + b*atanh(c*x))**(n + S(-1))*(d + e*x**S(2))**p, x)/(m + S(1)) + x**(m + S(1))*(a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(1))/(d*(m + S(1))))
rubi.add(rule361)
pattern362 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p, m: ZeroQ(m + S(2)*p + S(3))), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule362 = ReplacementRule(pattern362, lambda p, x, b, m, c, a, d, e, n : -b*c*n*Int(x**(m + S(1))*(a + b*acoth(c*x))**(n + S(-1))*(d + e*x**S(2))**p, x)/(m + S(1)) + x**(m + S(1))*(a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(1))/(d*(m + S(1))))
rubi.add(rule362)
pattern363 = Pattern(Integral(x_**m_*sqrt(d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: NonzeroQ(m + S(2))))
rule363 = ReplacementRule(pattern363, lambda x, b, m, c, a, d, e : -b*c*d*Int(x**(m + S(1))/sqrt(d + e*x**S(2)), x)/(m + S(2)) + d*Int(x**m*(a + b*atanh(c*x))/sqrt(d + e*x**S(2)), x)/(m + S(2)) + x**(m + S(1))*(a + b*atanh(c*x))*sqrt(d + e*x**S(2))/(m + S(2)))
rubi.add(rule363)
pattern364 = Pattern(Integral(x_**m_*sqrt(d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: NonzeroQ(m + S(2))))
rule364 = ReplacementRule(pattern364, lambda x, b, m, c, a, d, e : -b*c*d*Int(x**(m + S(1))/sqrt(d + e*x**S(2)), x)/(m + S(2)) + d*Int(x**m*(a + b*acoth(c*x))/sqrt(d + e*x**S(2)), x)/(m + S(2)) + x**(m + S(1))*(a + b*acoth(c*x))*sqrt(d + e*x**S(2))/(m + S(2)))
rubi.add(rule364)
pattern365 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda p: Greater(p, S(1))))
rule365 = ReplacementRule(pattern365, lambda p, x, b, m, c, a, d, e, n : Int(ExpandIntegrand(x**m*(a + b*atanh(c*x))**n*(d + e*x**S(2))**p, x), x))
rubi.add(rule365)
pattern366 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda p: Greater(p, S(1))))
rule366 = ReplacementRule(pattern366, lambda p, x, b, m, c, a, d, e, n : Int(ExpandIntegrand(x**m*(a + b*acoth(c*x))**n*(d + e*x**S(2))**p, x), x))
rubi.add(rule366)
pattern367 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda n, p, m: RationalQ(m) | (IntegerQ(p) & EqQ(n, S(1)))))
rule367 = ReplacementRule(pattern367, lambda p, x, b, m, c, a, d, e, n : -c**S(2)*d*Int(x**(m + S(2))*(a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x) + d*Int(x**m*(a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x))
rubi.add(rule367)
pattern368 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Greater(p, S(0))), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda n, p, m: RationalQ(m) | (IntegerQ(p) & EqQ(n, S(1)))))
rule368 = ReplacementRule(pattern368, lambda p, x, b, m, c, a, d, e, n : -c**S(2)*d*Int(x**(m + S(2))*(a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x) + d*Int(x**m*(a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(-1)), x))
rubi.add(rule368)
pattern369 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))))
rule369 = ReplacementRule(pattern369, lambda x, b, m, c, a, d, e, n : b*n*Int(x**(m + S(-1))*(a + b*atanh(c*x))**(n + S(-1))/sqrt(d + e*x**S(2)), x)/(c*m) + (m + S(-1))*Int(x**(m + S(-2))*(a + b*atanh(c*x))**n/sqrt(d + e*x**S(2)), x)/(c**S(2)*m) - x**(m + S(-1))*(a + b*atanh(c*x))**n*sqrt(d + e*x**S(2))/(c**S(2)*d*m))
rubi.add(rule369)
pattern370 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Greater(m, S(1))))
rule370 = ReplacementRule(pattern370, lambda x, b, m, c, a, d, e, n : b*n*Int(x**(m + S(-1))*(a + b*acoth(c*x))**(n + S(-1))/sqrt(d + e*x**S(2)), x)/(c*m) + (m + S(-1))*Int(x**(m + S(-2))*(a + b*acoth(c*x))**n/sqrt(d + e*x**S(2)), x)/(c**S(2)*m) - x**(m + S(-1))*(a + b*acoth(c*x))**n*sqrt(d + e*x**S(2))/(c**S(2)*d*m))
rubi.add(rule370)
pattern371 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))/(x_*sqrt(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)))
rule371 = ReplacementRule(pattern371, lambda x, b, c, a, d, e : b*PolyLog(S(2), -sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/sqrt(d) - b*PolyLog(S(2), sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/sqrt(d) - S(2)*(a + b*atanh(c*x))*atanh(sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/sqrt(d))
rubi.add(rule371)
pattern372 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))/(x_*sqrt(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda d: PositiveQ(d)))
rule372 = ReplacementRule(pattern372, lambda x, b, c, a, d, e : b*PolyLog(S(2), -sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/sqrt(d) - b*PolyLog(S(2), sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/sqrt(d) - S(2)*(a + b*acoth(c*x))*atanh(sqrt(-c*x + S(1))/sqrt(c*x + S(1)))/sqrt(d))
rubi.add(rule372)
pattern373 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**n_/(x_*sqrt(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda d: PositiveQ(d)))
rule373 = ReplacementRule(pattern373, lambda x, b, c, a, d, e, n : Subst(Int((a + b*x)**n*csch(x), x), x, atanh(c*x))/sqrt(d))
rubi.add(rule373)
pattern374 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**n_/(x_*sqrt(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda d: PositiveQ(d)))
rule374 = ReplacementRule(pattern374, lambda x, b, c, a, d, e, n : -c*x*sqrt(S(1) - S(1)/(c**S(2)*x**S(2)))*Subst(Int((a + b*x)**n*sech(x), x), x, acoth(c*x))/sqrt(d + e*x**S(2)))
rubi.add(rule374)
pattern375 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(x_*sqrt(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda d: Not(PositiveQ(d))))
rule375 = ReplacementRule(pattern375, lambda x, b, c, a, d, e, n : sqrt(-c**S(2)*x**S(2) + S(1))*Int((a + b*atanh(c*x))**n/(x*sqrt(-c**S(2)*x**S(2) + S(1))), x)/sqrt(d + e*x**S(2)))
rubi.add(rule375)
pattern376 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(x_*sqrt(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda d: Not(PositiveQ(d))))
rule376 = ReplacementRule(pattern376, lambda x, b, c, a, d, e, n : sqrt(-c**S(2)*x**S(2) + S(1))*Int((a + b*acoth(c*x))**n/(x*sqrt(-c**S(2)*x**S(2) + S(1))), x)/sqrt(d + e*x**S(2)))
rubi.add(rule376)
pattern377 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(x_**S(2)*sqrt(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule377 = ReplacementRule(pattern377, lambda x, b, c, a, d, e, n : b*c*n*Int((a + b*atanh(c*x))**(n + S(-1))/(x*sqrt(d + e*x**S(2))), x) - (a + b*atanh(c*x))**n*sqrt(d + e*x**S(2))/(d*x))
rubi.add(rule377)
pattern378 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/(x_**S(2)*sqrt(d_ + x_**S(2)*WC('e', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))))
rule378 = ReplacementRule(pattern378, lambda x, b, c, a, d, e, n : b*c*n*Int((a + b*acoth(c*x))**(n + S(-1))/(x*sqrt(d + e*x**S(2))), x) - (a + b*acoth(c*x))**n*sqrt(d + e*x**S(2))/(d*x))
rubi.add(rule378)
pattern379 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))), CustomConstraint(lambda m: Unequal(m, S(-2))))
rule379 = ReplacementRule(pattern379, lambda x, b, m, c, a, d, e, n : -b*c*n*Int(x**(m + S(1))*(a + b*atanh(c*x))**(n + S(-1))/sqrt(d + e*x**S(2)), x)/(m + S(1)) + c**S(2)*(m + S(2))*Int(x**(m + S(2))*(a + b*atanh(c*x))**n/sqrt(d + e*x**S(2)), x)/(m + S(1)) + x**(m + S(1))*(a + b*atanh(c*x))**n*sqrt(d + e*x**S(2))/(d*(m + S(1))))
rubi.add(rule379)
pattern380 = Pattern(Integral(x_**m_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))/sqrt(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda m: Less(m, S(-1))), CustomConstraint(lambda m: Unequal(m, S(-2))))
rule380 = ReplacementRule(pattern380, lambda x, b, m, c, a, d, e, n : -b*c*n*Int(x**(m + S(1))*(a + b*acoth(c*x))**(n + S(-1))/sqrt(d + e*x**S(2)), x)/(m + S(1)) + c**S(2)*(m + S(2))*Int(x**(m + S(2))*(a + b*acoth(c*x))**n/sqrt(d + e*x**S(2)), x)/(m + S(1)) + x**(m + S(1))*(a + b*acoth(c*x))**n*sqrt(d + e*x**S(2))/(d*(m + S(1))))
rubi.add(rule380)
pattern381 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, p, m: IntegersQ(m, n, S(2)*p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda n: Unequal(n, S(-1))))
rule381 = ReplacementRule(pattern381, lambda p, x, b, m, c, a, d, e, n : -d*Int(x**(m + S(-2))*(a + b*atanh(c*x))**n*(d + e*x**S(2))**p, x)/e + Int(x**(m + S(-2))*(a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/e)
rubi.add(rule381)
pattern382 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, p, m: IntegersQ(m, n, S(2)*p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Greater(m, S(1))), CustomConstraint(lambda n: Unequal(n, S(-1))))
rule382 = ReplacementRule(pattern382, lambda p, x, b, m, c, a, d, e, n : -d*Int(x**(m + S(-2))*(a + b*acoth(c*x))**n*(d + e*x**S(2))**p, x)/e + Int(x**(m + S(-2))*(a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/e)
rubi.add(rule382)
pattern383 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, p, m: IntegersQ(m, n, S(2)*p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Less(m, S(0))), CustomConstraint(lambda n: Unequal(n, S(-1))))
rule383 = ReplacementRule(pattern383, lambda p, x, b, m, c, a, d, e, n : -e*Int(x**(m + S(2))*(a + b*atanh(c*x))**n*(d + e*x**S(2))**p, x)/d + Int(x**m*(a + b*atanh(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/d)
rubi.add(rule383)
pattern384 = Pattern(Integral(x_**m_*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, p, m: IntegersQ(m, n, S(2)*p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda m: Less(m, S(0))), CustomConstraint(lambda n: Unequal(n, S(-1))))
rule384 = ReplacementRule(pattern384, lambda p, x, b, m, c, a, d, e, n : -e*Int(x**(m + S(2))*(a + b*acoth(c*x))**n*(d + e*x**S(2))**p, x)/d + Int(x**m*(a + b*acoth(c*x))**n*(d + e*x**S(2))**(p + S(1)), x)/d)
rubi.add(rule384)
pattern385 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, p, m: RationalQ(m, n, p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda p, m: NonzeroQ(m + S(2)*p + S(2))))
rule385 = ReplacementRule(pattern385, lambda p, x, b, m, c, a, d, e, n : c*(m + S(2)*p + S(2))*Int(x**(m + S(1))*(a + b*atanh(c*x))**(n + S(1))*(d + e*x**S(2))**p, x)/(b*(n + S(1))) - m*Int(x**(m + S(-1))*(a + b*atanh(c*x))**(n + S(1))*(d + e*x**S(2))**p, x)/(b*c*(n + S(1))) + x**m*(a + b*atanh(c*x))**(n + S(1))*(d + e*x**S(2))**(p + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule385)
pattern386 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, p, m: RationalQ(m, n, p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Less(n, S(-1))), CustomConstraint(lambda p, m: NonzeroQ(m + S(2)*p + S(2))))
rule386 = ReplacementRule(pattern386, lambda p, x, b, m, c, a, d, e, n : c*(m + S(2)*p + S(2))*Int(x**(m + S(1))*(a + b*acoth(c*x))**(n + S(1))*(d + e*x**S(2))**p, x)/(b*(n + S(1))) - m*Int(x**(m + S(-1))*(a + b*acoth(c*x))**(n + S(1))*(d + e*x**S(2))**p, x)/(b*c*(n + S(1))) + x**m*(a + b*acoth(c*x))**(n + S(1))*(d + e*x**S(2))**(p + S(1))/(b*c*d*(n + S(1))))
rubi.add(rule386)
pattern387 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda p, m: NegativeIntegerQ(m + S(2)*p + S(1))), CustomConstraint(lambda d, p: IntegerQ(p) | PositiveQ(d)))
rule387 = ReplacementRule(pattern387, lambda p, x, b, m, c, a, d, e, n : c**(-m + S(-1))*d**p*Subst(Int((a + b*x)**n*Cosh(x)**(-m - S(2)*p + S(-2))*sinh(x)**m, x), x, atanh(c*x)))
rubi.add(rule387)
pattern388 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda p, m: NegativeIntegerQ(m + S(2)*p + S(1))), CustomConstraint(lambda d, p: Not(IntegerQ(p) | PositiveQ(d))))
rule388 = ReplacementRule(pattern388, lambda p, x, b, m, c, a, d, e, n : d**(p + S(1)/2)*sqrt(-c**S(2)*x**S(2) + S(1))*Int(x**m*(a + b*atanh(c*x))**n*(-c**S(2)*x**S(2) + S(1))**p, x)/sqrt(d + e*x**S(2)))
rubi.add(rule388)
pattern389 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda p, m: NegativeIntegerQ(m + S(2)*p + S(1))), CustomConstraint(lambda p: IntegerQ(p)))
rule389 = ReplacementRule(pattern389, lambda p, x, b, m, c, a, d, e, n : -c**(-m + S(-1))*(-d)**p*Subst(Int((a + b*x)**n*Cosh(x)**m*sinh(x)**(-m - S(2)*p + S(-2)), x), x, acoth(c*x)))
rubi.add(rule389)
pattern390 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**p_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda p, m: NegativeIntegerQ(m + S(2)*p + S(1))), CustomConstraint(lambda p: Not(IntegerQ(p))))
rule390 = ReplacementRule(pattern390, lambda p, x, b, m, c, a, d, e, n : -c**(-m)*x*(-d)**(p + S(1)/2)*sqrt((c**S(2)*x**S(2) + S(-1))/(c**S(2)*x**S(2)))*Subst(Int((a + b*x)**n*Cosh(x)**m*sinh(x)**(-m - S(2)*p + S(-2)), x), x, acoth(c*x))/sqrt(d + e*x**S(2)))
rubi.add(rule390)
pattern391 = Pattern(Integral(x_*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule391 = ReplacementRule(pattern391, lambda p, x, b, c, a, d, e : -b*c*Int((d + e*x**S(2))**(p + S(1))/(-c**S(2)*x**S(2) + S(1)), x)/(S(2)*e*(p + S(1))) + (a + b*atanh(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule391)
pattern392 = Pattern(Integral(x_*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule392 = ReplacementRule(pattern392, lambda p, x, b, c, a, d, e : -b*c*Int((d + e*x**S(2))**(p + S(1))/(-c**S(2)*x**S(2) + S(1)), x)/(S(2)*e*(p + S(1))) + (a + b*acoth(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule392)
pattern393 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p, m: (NegativeIntegerQ(m/S(2) + p + S(1)/2) & Not(NegativeIntegerQ(m/S(2) + S(-1)/2))) | (PositiveIntegerQ(p) & Not(NegativeIntegerQ(m/S(2) + S(-1)/2) & Greater(m + S(2)*p + S(3), S(0)))) | (PositiveIntegerQ(m/S(2) + S(1)/2) & Not(NegativeIntegerQ(p) & Greater(m + S(2)*p + S(3), S(0))))), )
def With393(p, x, b, m, c, a, d, e):
u = IntHide(x**m*(d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/(-c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*atanh(c*x), u, x)
rule393 = ReplacementRule(pattern393, lambda p, x, b, m, c, a, d, e : With393(p, x, b, m, c, a, d, e))
rubi.add(rule393)
pattern394 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p, m: (NegativeIntegerQ(m/S(2) + p + S(1)/2) & Not(NegativeIntegerQ(m/S(2) + S(-1)/2))) | (PositiveIntegerQ(p) & Not(NegativeIntegerQ(m/S(2) + S(-1)/2) & Greater(m + S(2)*p + S(3), S(0)))) | (PositiveIntegerQ(m/S(2) + S(1)/2) & Not(NegativeIntegerQ(p) & Greater(m + S(2)*p + S(3), S(0))))), )
def With394(p, x, b, m, c, a, d, e):
u = IntHide(x**m*(d + e*x**S(2))**p, x)
return -b*c*Int(SimplifyIntegrand(u/(-c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*acoth(c*x), u, x)
rule394 = ReplacementRule(pattern394, lambda p, x, b, m, c, a, d, e : With394(p, x, b, m, c, a, d, e))
rubi.add(rule394)
pattern395 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda p, m: Greater(p, S(0)) | (IntegerQ(m) & Less(p, S(-1)) & Unequal(m, S(1)))))
rule395 = ReplacementRule(pattern395, lambda p, x, b, m, c, a, d, e, n : Int(ExpandIntegrand((a + b*atanh(c*x))**n, x**m*(d + e*x**S(2))**p, x), x))
rubi.add(rule395)
pattern396 = Pattern(Integral(x_**WC('m', S(1))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda n: PositiveIntegerQ(n)), CustomConstraint(lambda p, m: Greater(p, S(0)) | (IntegerQ(m) & Less(p, S(-1)) & Unequal(m, S(1)))))
rule396 = ReplacementRule(pattern396, lambda p, x, b, m, c, a, d, e, n : Int(ExpandIntegrand((a + b*acoth(c*x))**n, x**m*(d + e*x**S(2))**p, x), x))
rubi.add(rule396)
pattern397 = Pattern(Integral(x_**WC('m', S(1))*(a_ + WC('b', S(1))*atanh(x_*WC('c', S(1))))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule397 = ReplacementRule(pattern397, lambda p, x, b, m, c, a, d, e : a*Int(x**m*(d + e*x**S(2))**p, x) + b*Int(x**m*(d + e*x**S(2))**p*atanh(c*x), x))
rubi.add(rule397)
pattern398 = Pattern(Integral(x_**WC('m', S(1))*(a_ + WC('b', S(1))*acoth(x_*WC('c', S(1))))*(d_ + x_**S(2)*WC('e', S(1)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule398 = ReplacementRule(pattern398, lambda p, x, b, m, c, a, d, e : a*Int(x**m*(d + e*x**S(2))**p, x) + b*Int(x**m*(d + e*x**S(2))**p*acoth(c*x), x))
rubi.add(rule398)
pattern399 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule399 = ReplacementRule(pattern399, lambda p, x, b, m, c, a, d, e, n : Int(x**m*(a + b*atanh(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule399)
pattern400 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule400 = ReplacementRule(pattern400, lambda p, x, b, m, c, a, d, e, n : Int(x**m*(a + b*acoth(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule400)
pattern401 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))*atanh(u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(u**S(2) - (S(1) - S(2)/(c*x + S(1)))**S(2))))
rule401 = ReplacementRule(pattern401, lambda x, b, c, a, d, u, e, n : -Int((a + b*atanh(c*x))**n*log(-u + S(1))/(d + e*x**S(2)), x)/S(2) + Int((a + b*atanh(c*x))**n*log(u + S(1))/(d + e*x**S(2)), x)/S(2))
rubi.add(rule401)
pattern402 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))*acoth(u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(u**S(2) - (S(1) - S(2)/(c*x + S(1)))**S(2))))
rule402 = ReplacementRule(pattern402, lambda x, b, c, a, d, u, e, n : -Int((a + b*acoth(c*x))**n*log(SimplifyIntegrand(S(1) - S(1)/u, x))/(d + e*x**S(2)), x)/S(2) + Int((a + b*acoth(c*x))**n*log(SimplifyIntegrand(S(1) + 1/u, x))/(d + e*x**S(2)), x)/S(2))
rubi.add(rule402)
pattern403 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))*atanh(u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(u**S(2) - (S(1) - S(2)/(-c*x + S(1)))**S(2))))
rule403 = ReplacementRule(pattern403, lambda x, b, c, a, d, u, e, n : -Int((a + b*atanh(c*x))**n*log(-u + S(1))/(d + e*x**S(2)), x)/S(2) + Int((a + b*atanh(c*x))**n*log(u + S(1))/(d + e*x**S(2)), x)/S(2))
rubi.add(rule403)
pattern404 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))*acoth(u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(u**S(2) - (S(1) - S(2)/(-c*x + S(1)))**S(2))))
rule404 = ReplacementRule(pattern404, lambda x, b, c, a, d, u, e, n : -Int((a + b*acoth(c*x))**n*log(SimplifyIntegrand(S(1) - S(1)/u, x))/(d + e*x**S(2)), x)/S(2) + Int((a + b*acoth(c*x))**n*log(SimplifyIntegrand(S(1) + 1/u, x))/(d + e*x**S(2)), x)/S(2))
rubi.add(rule404)
pattern405 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))*log(u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(-(S(1) - S(2)/(c*x + S(1)))**S(2) + (-u + S(1))**S(2))))
rule405 = ReplacementRule(pattern405, lambda x, b, c, a, d, u, e, n : -b*n*Int((a + b*atanh(c*x))**(n + S(-1))*PolyLog(S(2), -u + S(1))/(d + e*x**S(2)), x)/S(2) + (a + b*atanh(c*x))**n*PolyLog(S(2), -u + S(1))/(S(2)*c*d))
rubi.add(rule405)
pattern406 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))*log(u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(-(S(1) - S(2)/(c*x + S(1)))**S(2) + (-u + S(1))**S(2))))
rule406 = ReplacementRule(pattern406, lambda x, b, c, a, d, u, e, n : -b*n*Int((a + b*acoth(c*x))**(n + S(-1))*PolyLog(S(2), -u + S(1))/(d + e*x**S(2)), x)/S(2) + (a + b*acoth(c*x))**n*PolyLog(S(2), -u + S(1))/(S(2)*c*d))
rubi.add(rule406)
pattern407 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))*log(u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(-(S(1) - S(2)/(-c*x + S(1)))**S(2) + (-u + S(1))**S(2))))
rule407 = ReplacementRule(pattern407, lambda x, b, c, a, d, u, e, n : b*n*Int((a + b*atanh(c*x))**(n + S(-1))*PolyLog(S(2), -u + S(1))/(d + e*x**S(2)), x)/S(2) - (a + b*atanh(c*x))**n*PolyLog(S(2), -u + S(1))/(S(2)*c*d))
rubi.add(rule407)
pattern408 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))*log(u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(-(S(1) - S(2)/(-c*x + S(1)))**S(2) + (-u + S(1))**S(2))))
rule408 = ReplacementRule(pattern408, lambda x, b, c, a, d, u, e, n : b*n*Int((a + b*acoth(c*x))**(n + S(-1))*PolyLog(S(2), -u + S(1))/(d + e*x**S(2)), x)/S(2) - (a + b*acoth(c*x))**n*PolyLog(S(2), -u + S(1))/(S(2)*c*d))
rubi.add(rule408)
pattern409 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))*PolyLog(p_, u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(u**S(2) - (S(1) - S(2)/(c*x + S(1)))**S(2))))
rule409 = ReplacementRule(pattern409, lambda p, x, b, c, a, d, u, e, n : b*n*Int((a + b*atanh(c*x))**(n + S(-1))*PolyLog(p + S(1), u)/(d + e*x**S(2)), x)/S(2) - (a + b*atanh(c*x))**n*PolyLog(p + S(1), u)/(S(2)*c*d))
rubi.add(rule409)
pattern410 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))*PolyLog(p_, u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(u**S(2) - (S(1) - S(2)/(c*x + S(1)))**S(2))))
rule410 = ReplacementRule(pattern410, lambda p, x, b, c, a, d, u, e, n : b*n*Int((a + b*acoth(c*x))**(n + S(-1))*PolyLog(p + S(1), u)/(d + e*x**S(2)), x)/S(2) - (a + b*acoth(c*x))**n*PolyLog(p + S(1), u)/(S(2)*c*d))
rubi.add(rule410)
pattern411 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))*PolyLog(p_, u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(u**S(2) - (S(1) - S(2)/(-c*x + S(1)))**S(2))))
rule411 = ReplacementRule(pattern411, lambda p, x, b, c, a, d, u, e, n : -b*n*Int((a + b*atanh(c*x))**(n + S(-1))*PolyLog(p + S(1), u)/(d + e*x**S(2)), x)/S(2) + (a + b*atanh(c*x))**n*PolyLog(p + S(1), u)/(S(2)*c*d))
rubi.add(rule411)
pattern412 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))*PolyLog(p_, u_)/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Greater(n, S(0))), CustomConstraint(lambda c, u, x: ZeroQ(u**S(2) - (S(1) - S(2)/(-c*x + S(1)))**S(2))))
rule412 = ReplacementRule(pattern412, lambda p, x, b, c, a, d, u, e, n : -b*n*Int((a + b*acoth(c*x))**(n + S(-1))*PolyLog(p + S(1), u)/(d + e*x**S(2)), x)/S(2) + (a + b*acoth(c*x))**n*PolyLog(p + S(1), u)/(S(2)*c*d))
rubi.add(rule412)
pattern413 = Pattern(Integral(S(1)/((d_ + x_**S(2)*WC('e', S(1)))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)))
rule413 = ReplacementRule(pattern413, lambda x, b, c, a, d, e : (-log(a + b*acoth(c*x)) + log(a + b*atanh(c*x)))/(b**S(2)*c*d*(acoth(c*x) - atanh(c*x))))
rubi.add(rule413)
pattern414 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('n', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: IntegersQ(m, n)), CustomConstraint(lambda n, m: Inequality(S(0), Less, n, LessEqual, m)))
rule414 = ReplacementRule(pattern414, lambda x, b, m, c, a, d, e, n : -n*Int((a + b*acoth(c*x))**(m + S(1))*(a + b*atanh(c*x))**(n + S(-1))/(d + e*x**S(2)), x)/(m + S(1)) + (a + b*acoth(c*x))**(m + S(1))*(a + b*atanh(c*x))**n/(b*c*d*(m + S(1))))
rubi.add(rule414)
pattern415 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**WC('n', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**WC('m', S(1))/(d_ + x_**S(2)*WC('e', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda n, m: IntegersQ(m, n)), CustomConstraint(lambda n, m: Less(S(0), n, m)))
rule415 = ReplacementRule(pattern415, lambda x, b, m, c, a, d, e, n : -n*Int((a + b*acoth(c*x))**(n + S(-1))*(a + b*atanh(c*x))**(m + S(1))/(d + e*x**S(2)), x)/(m + S(1)) + (a + b*acoth(c*x))**n*(a + b*atanh(c*x))**(m + S(1))/(b*c*d*(m + S(1))))
rubi.add(rule415)
pattern416 = Pattern(Integral(atanh(x_*WC('a', S(1)))/(c_ + x_**WC('n', S(1))*WC('d', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda c, a, d, n: Not(Equal(n, S(2)) & ZeroQ(a**S(2)*c + d))))
rule416 = ReplacementRule(pattern416, lambda x, c, a, d, n : -Int(log(-a*x + S(1))/(c + d*x**n), x)/S(2) + Int(log(a*x + S(1))/(c + d*x**n), x)/S(2))
rubi.add(rule416)
pattern417 = Pattern(Integral(acoth(x_*WC('a', S(1)))/(c_ + x_**WC('n', S(1))*WC('d', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda c, a, d, n: Not(Equal(n, S(2)) & ZeroQ(a**S(2)*c + d))))
rule417 = ReplacementRule(pattern417, lambda x, c, a, d, n : -Int(log(S(1) - S(1)/(a*x))/(c + d*x**n), x)/S(2) + Int(log(S(1) + S(1)/(a*x))/(c + d*x**n), x)/S(2))
rubi.add(rule417)
pattern418 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))*(WC('d', S(0)) + WC('e', S(1))*log(x_**S(2)*WC('g', S(1)) + WC('f', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)))
rule418 = ReplacementRule(pattern418, lambda x, b, g, c, f, a, d, e : -b*c*Int(x*(d + e*log(f + g*x**S(2)))/(-c**S(2)*x**S(2) + S(1)), x) - S(2)*e*g*Int(x**S(2)*(a + b*atanh(c*x))/(f + g*x**S(2)), x) + x*(a + b*atanh(c*x))*(d + e*log(f + g*x**S(2))))
rubi.add(rule418)
pattern419 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))*(WC('d', S(0)) + WC('e', S(1))*log(x_**S(2)*WC('g', S(1)) + WC('f', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)))
rule419 = ReplacementRule(pattern419, lambda x, b, g, c, f, a, d, e : -b*c*Int(x*(d + e*log(f + g*x**S(2)))/(-c**S(2)*x**S(2) + S(1)), x) - S(2)*e*g*Int(x**S(2)*(a + b*acoth(c*x))/(f + g*x**S(2)), x) + x*(a + b*acoth(c*x))*(d + e*log(f + g*x**S(2))))
rubi.add(rule419)
pattern420 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))*(WC('d', S(0)) + WC('e', S(1))*log(x_**S(2)*WC('g', S(1)) + WC('f', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda m: NegativeIntegerQ(m/S(2))))
rule420 = ReplacementRule(pattern420, lambda x, b, m, g, c, f, a, d, e : -b*c*Int(x**(m + S(1))*(d + e*log(f + g*x**S(2)))/(-c**S(2)*x**S(2) + S(1)), x)/(m + S(1)) - S(2)*e*g*Int(x**(m + S(2))*(a + b*atanh(c*x))/(f + g*x**S(2)), x)/(m + S(1)) + x**(m + S(1))*(a + b*atanh(c*x))*(d + e*log(f + g*x**S(2)))/(m + S(1)))
rubi.add(rule420)
pattern421 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))*(WC('d', S(0)) + WC('e', S(1))*log(x_**S(2)*WC('g', S(1)) + WC('f', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda m: NegativeIntegerQ(m/S(2))))
rule421 = ReplacementRule(pattern421, lambda x, b, m, g, c, f, a, d, e : -b*c*Int(x**(m + S(1))*(d + e*log(f + g*x**S(2)))/(-c**S(2)*x**S(2) + S(1)), x)/(m + S(1)) - S(2)*e*g*Int(x**(m + S(2))*(a + b*acoth(c*x))/(f + g*x**S(2)), x)/(m + S(1)) + x**(m + S(1))*(a + b*acoth(c*x))*(d + e*log(f + g*x**S(2)))/(m + S(1)))
rubi.add(rule421)
pattern422 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))*(WC('d', S(0)) + WC('e', S(1))*log(x_**S(2)*WC('g', S(1)) + WC('f', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda m: PositiveIntegerQ(m/S(2) + S(1)/2)), )
def With422(x, b, m, g, c, f, a, d, e):
u = IntHide(x**m*(d + e*log(f + g*x**S(2))), x)
return -b*c*Int(ExpandIntegrand(u/(-c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*atanh(c*x), u, x)
rule422 = ReplacementRule(pattern422, lambda x, b, m, g, c, f, a, d, e : With422(x, b, m, g, c, f, a, d, e))
rubi.add(rule422)
pattern423 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))*(WC('d', S(0)) + WC('e', S(1))*log(x_**S(2)*WC('g', S(1)) + WC('f', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda m: PositiveIntegerQ(m/S(2) + S(1)/2)), )
def With423(x, b, m, g, c, f, a, d, e):
u = IntHide(x**m*(d + e*log(f + g*x**S(2))), x)
return -b*c*Int(ExpandIntegrand(u/(-c**S(2)*x**S(2) + S(1)), x), x) + Dist(a + b*acoth(c*x), u, x)
rule423 = ReplacementRule(pattern423, lambda x, b, m, g, c, f, a, d, e : With423(x, b, m, g, c, f, a, d, e))
rubi.add(rule423)
pattern424 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))*(WC('d', S(0)) + WC('e', S(1))*log(x_**S(2)*WC('g', S(1)) + WC('f', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: Unequal(m, S(-1))), )
def With424(x, b, m, g, c, f, a, d, e):
u = IntHide(x**m*(a + b*atanh(c*x)), x)
return -S(2)*e*g*Int(ExpandIntegrand(u*x/(f + g*x**S(2)), x), x) + Dist(d + e*log(f + g*x**S(2)), u, x)
rule424 = ReplacementRule(pattern424, lambda x, b, m, g, c, f, a, d, e : With424(x, b, m, g, c, f, a, d, e))
rubi.add(rule424)
pattern425 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))*(WC('d', S(0)) + WC('e', S(1))*log(x_**S(2)*WC('g', S(1)) + WC('f', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: Unequal(m, S(-1))), )
def With425(x, b, m, g, c, f, a, d, e):
u = IntHide(x**m*(a + b*acoth(c*x)), x)
return -S(2)*e*g*Int(ExpandIntegrand(u*x/(f + g*x**S(2)), x), x) + Dist(d + e*log(f + g*x**S(2)), u, x)
rule425 = ReplacementRule(pattern425, lambda x, b, m, g, c, f, a, d, e : With425(x, b, m, g, c, f, a, d, e))
rubi.add(rule425)
pattern426 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*atanh(x_*WC('c', S(1))))**S(2)*(WC('d', S(0)) + WC('e', S(1))*log(f_ + x_**S(2)*WC('g', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda g, c, f: ZeroQ(c**S(2)*f + g)))
rule426 = ReplacementRule(pattern426, lambda x, b, g, c, f, a, d, e : b*c*e*Int(x**S(2)*(a + b*atanh(c*x))/(-c**S(2)*x**S(2) + S(1)), x) + b*Int((a + b*atanh(c*x))*(d + e*log(f + g*x**S(2))), x)/c - e*x**S(2)*(a + b*atanh(c*x))**S(2)/S(2) + (a + b*atanh(c*x))**S(2)*(d + e*log(f + g*x**S(2)))*(f + g*x**S(2))/(S(2)*g))
rubi.add(rule426)
pattern427 = Pattern(Integral(x_*(WC('a', S(0)) + WC('b', S(1))*acoth(x_*WC('c', S(1))))**S(2)*(WC('d', S(0)) + WC('e', S(1))*log(f_ + x_**S(2)*WC('g', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda g, x: FreeQ(g, x)), CustomConstraint(lambda g, c, f: ZeroQ(c**S(2)*f + g)))
rule427 = ReplacementRule(pattern427, lambda x, b, g, c, f, a, d, e : b*c*e*Int(x**S(2)*(a + b*acoth(c*x))/(-c**S(2)*x**S(2) + S(1)), x) + b*Int((a + b*acoth(c*x))*(d + e*log(f + g*x**S(2))), x)/c - e*x**S(2)*(a + b*acoth(c*x))**S(2)/S(2) + (a + b*acoth(c*x))**S(2)*(d + e*log(f + g*x**S(2)))*(f + g*x**S(2))/(S(2)*g))
rubi.add(rule427)
pattern428 = Pattern(Integral(exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda n: OddQ(n)))
rule428 = ReplacementRule(pattern428, lambda x, a, n : Int((-a*x + S(1))**(-n/S(2) + S(1)/2)*(a*x + S(1))**(n/S(2) + S(1)/2)/sqrt(-a**S(2)*x**S(2) + S(1)), x))
rubi.add(rule428)
pattern429 = Pattern(Integral(x_**WC('m', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: OddQ(n)))
rule429 = ReplacementRule(pattern429, lambda x, a, n, m : Int(x**m*(-a*x + S(1))**(-n/S(2) + S(1)/2)*(a*x + S(1))**(n/S(2) + S(1)/2)/sqrt(-a**S(2)*x**S(2) + S(1)), x))
rubi.add(rule429)
pattern430 = Pattern(Integral(exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(OddQ(n))))
rule430 = ReplacementRule(pattern430, lambda x, a, n : Int((-a*x + S(1))**(-n/S(2))*(a*x + S(1))**(n/S(2)), x))
rubi.add(rule430)
pattern431 = Pattern(Integral(x_**WC('m', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(OddQ(n))))
rule431 = ReplacementRule(pattern431, lambda x, a, n, m : Int(x**m*(-a*x + S(1))**(-n/S(2))*(a*x + S(1))**(n/S(2)), x))
rubi.add(rule431)
pattern432 = Pattern(Integral((c_ + x_*WC('d', S(1)))**WC('p', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a*c + d)), CustomConstraint(lambda n: IntegerQ(n/S(2) + S(-1)/2)), CustomConstraint(lambda p: IntegerQ(S(2)*p)))
rule432 = ReplacementRule(pattern432, lambda p, x, c, a, d, n : c**n*Int((c + d*x)**(-n + p)*(-a**S(2)*x**S(2) + S(1))**(n/S(2)), x))
rubi.add(rule432)
pattern433 = Pattern(Integral((c_ + x_*WC('d', S(1)))**WC('p', S(1))*(x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a*c + d)), CustomConstraint(lambda n: IntegerQ(n/S(2) + S(-1)/2)), CustomConstraint(lambda p, n: IntegerQ(p) | ZeroQ(-n/S(2) + p) | ZeroQ(-n/S(2) + p + S(-1))), CustomConstraint(lambda p: IntegerQ(S(2)*p)))
rule433 = ReplacementRule(pattern433, lambda p, x, m, f, c, a, d, e, n : c**n*Int((c + d*x)**(-n + p)*(e + f*x)**m*(-a**S(2)*x**S(2) + S(1))**(n/S(2)), x))
rubi.add(rule433)
pattern434 = Pattern(Integral((c_ + x_*WC('d', S(1)))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c**S(2) - d**S(2))), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)))
rule434 = ReplacementRule(pattern434, lambda p, x, c, a, d, u, n : c**p*Int(u*(S(1) + d*x/c)**p*(-a*x + S(1))**(-n/S(2))*(a*x + S(1))**(n/S(2)), x))
rubi.add(rule434)
pattern435 = Pattern(Integral((c_ + x_*WC('d', S(1)))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c**S(2) - d**S(2))), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))))
rule435 = ReplacementRule(pattern435, lambda p, x, c, a, d, u, n : Int(u*(c + d*x)**p*(-a*x + S(1))**(-n/S(2))*(a*x + S(1))**(n/S(2)), x))
rubi.add(rule435)
pattern436 = Pattern(Integral((c_ + WC('d', S(1))/x_)**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(-a**S(2)*d**S(2) + c**S(2))), CustomConstraint(lambda p: IntegerQ(p)))
rule436 = ReplacementRule(pattern436, lambda p, x, c, a, d, u, n : d**p*Int(u*x**(-p)*(c*x/d + S(1))**p*exp(n*atanh(a*x)), x))
rubi.add(rule436)
pattern437 = Pattern(Integral((c_ + WC('d', S(1))/x_)**p_*WC('u', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(-a**S(2)*d**S(2) + c**S(2))), CustomConstraint(lambda p: Not(IntegerQ(p))), CustomConstraint(lambda n: IntegerQ(n/S(2))), CustomConstraint(lambda c: PositiveQ(c)))
rule437 = ReplacementRule(pattern437, lambda p, x, c, a, d, u, n : (S(-1))**(n/S(2))*c**p*Int(u*(S(1) - S(1)/(a*x))**(-n/S(2))*(S(1) + S(1)/(a*x))**(n/S(2))*(S(1) + d/(c*x))**p, x))
rubi.add(rule437)
pattern438 = Pattern(Integral((c_ + WC('d', S(1))/x_)**p_*WC('u', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(-a**S(2)*d**S(2) + c**S(2))), CustomConstraint(lambda p: Not(IntegerQ(p))), CustomConstraint(lambda n: IntegerQ(n/S(2))), CustomConstraint(lambda c: Not(PositiveQ(c))))
rule438 = ReplacementRule(pattern438, lambda p, x, c, a, d, u, n : Int(u*(c + d/x)**p*(-a*x + S(1))**(-n/S(2))*(a*x + S(1))**(n/S(2)), x))
rubi.add(rule438)
pattern439 = Pattern(Integral((c_ + WC('d', S(1))/x_)**p_*WC('u', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(-a**S(2)*d**S(2) + c**S(2))), CustomConstraint(lambda p: Not(IntegerQ(p))))
rule439 = ReplacementRule(pattern439, lambda p, x, c, a, d, u, n : x**p*(c + d/x)**p*(c*x/d + S(1))**(-p)*Int(u*x**(-p)*(c*x/d + S(1))**p*exp(n*atanh(a*x)), x))
rubi.add(rule439)
pattern440 = Pattern(Integral(exp(n_*atanh(x_*WC('a', S(1))))/(c_ + x_**S(2)*WC('d', S(1)))**(S(3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n))))
rule440 = ReplacementRule(pattern440, lambda x, c, a, d, n : (-a*x + n)*exp(n*atanh(a*x))/(a*c*sqrt(c + d*x**S(2))*(n**S(2) + S(-1))))
rubi.add(rule440)
pattern441 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**p_*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Not(IntegerQ(n))), CustomConstraint(lambda p, n: NonzeroQ(n**S(2) - S(4)*(p + S(1))**S(2))), CustomConstraint(lambda p: IntegerQ(S(2)*p)))
rule441 = ReplacementRule(pattern441, lambda p, x, c, a, d, n : -S(2)*(p + S(1))*(S(2)*p + S(3))*Int((c + d*x**S(2))**(p + S(1))*exp(n*atanh(a*x)), x)/(c*(n**S(2) - S(4)*(p + S(1))**S(2))) + (c + d*x**S(2))**(p + S(1))*(S(2)*a*x*(p + S(1)) + n)*exp(n*atanh(a*x))/(a*c*(n**S(2) - S(4)*(p + S(1))**S(2))))
rubi.add(rule441)
pattern442 = Pattern(Integral(exp(WC('n', S(1))*atanh(x_*WC('a', S(1))))/(c_ + x_**S(2)*WC('d', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))))
rule442 = ReplacementRule(pattern442, lambda x, c, a, d, n : exp(n*atanh(a*x))/(a*c*n))
rubi.add(rule442)
pattern443 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda n: PositiveIntegerQ(n/S(2) + S(1)/2)), CustomConstraint(lambda p, n: Not(IntegerQ(-n/S(2) + p))))
rule443 = ReplacementRule(pattern443, lambda p, x, c, a, d, n : c**p*Int((a*x + S(1))**n*(-a**S(2)*x**S(2) + S(1))**(-n/S(2) + p), x))
rubi.add(rule443)
pattern444 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda p: IntegerQ(p)), CustomConstraint(lambda n: NegativeIntegerQ(n/S(2) + S(-1)/2)), CustomConstraint(lambda p, n: Not(IntegerQ(-n/S(2) + p))))
rule444 = ReplacementRule(pattern444, lambda p, x, c, a, d, n : c**p*Int((-a*x + S(1))**(-n)*(-a**S(2)*x**S(2) + S(1))**(n/S(2) + p), x))
rubi.add(rule444)
pattern445 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)))
rule445 = ReplacementRule(pattern445, lambda p, x, c, a, d, n : c**p*Int((-a*x + S(1))**(-n/S(2) + p)*(a*x + S(1))**(n/S(2) + p), x))
rubi.add(rule445)
pattern446 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))), CustomConstraint(lambda n: PositiveIntegerQ(n/S(2))))
rule446 = ReplacementRule(pattern446, lambda p, x, c, a, d, n : c**(n/S(2))*Int((c + d*x**S(2))**(-n/S(2) + p)*(a*x + S(1))**n, x))
rubi.add(rule446)
pattern447 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))), CustomConstraint(lambda n: NegativeIntegerQ(n/S(2))))
rule447 = ReplacementRule(pattern447, lambda p, x, c, a, d, n : c**(-n/S(2))*Int((c + d*x**S(2))**(n/S(2) + p)*(-a*x + S(1))**(-n), x))
rubi.add(rule447)
pattern448 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**p_*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))))
rule448 = ReplacementRule(pattern448, lambda p, x, c, a, d, n : c**IntPart(p)*(c + d*x**S(2))**FracPart(p)*(-a**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int((-a**S(2)*x**S(2) + S(1))**p*exp(n*atanh(a*x)), x))
rubi.add(rule448)
pattern449 = Pattern(Integral(x_*exp(n_*atanh(x_*WC('a', S(1))))/(c_ + x_**S(2)*WC('d', S(1)))**(S(3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n))))
rule449 = ReplacementRule(pattern449, lambda x, c, a, d, n : (-a*n*x + S(1))*exp(n*atanh(a*x))/(d*sqrt(c + d*x**S(2))*(n**S(2) + S(-1))))
rubi.add(rule449)
pattern450 = Pattern(Integral(x_*(c_ + x_**S(2)*WC('d', S(1)))**p_*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Not(IntegerQ(n))), CustomConstraint(lambda p: IntegerQ(S(2)*p)))
rule450 = ReplacementRule(pattern450, lambda p, x, c, a, d, n : -a*c*n*Int((c + d*x**S(2))**p*exp(n*atanh(a*x)), x)/(S(2)*d*(p + S(1))) + (c + d*x**S(2))**(p + S(1))*exp(n*atanh(a*x))/(S(2)*d*(p + S(1))))
rubi.add(rule450)
pattern451 = Pattern(Integral(x_**S(2)*(c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda p, n: ZeroQ(n**S(2) + S(2)*p + S(2))), CustomConstraint(lambda n: Not(IntegerQ(n))))
rule451 = ReplacementRule(pattern451, lambda p, x, c, a, d, n : (c + d*x**S(2))**(p + S(1))*(-a*n*x + S(1))*exp(n*atanh(a*x))/(a*d*n*(n**S(2) + S(-1))))
rubi.add(rule451)
pattern452 = Pattern(Integral(x_**S(2)*(c_ + x_**S(2)*WC('d', S(1)))**p_*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda n: Not(IntegerQ(n))), CustomConstraint(lambda p, n: NonzeroQ(n**S(2) - S(4)*(p + S(1))**S(2))), CustomConstraint(lambda p: IntegerQ(S(2)*p)))
rule452 = ReplacementRule(pattern452, lambda p, x, c, a, d, n : (n**S(2) + S(2)*p + S(2))*Int((c + d*x**S(2))**(p + S(1))*exp(n*atanh(a*x)), x)/(d*(n**S(2) - S(4)*(p + S(1))**S(2))) + (c + d*x**S(2))**(p + S(1))*(-S(2)*a*x*(p + S(1)) - n)*exp(n*atanh(a*x))/(a*d*(n**S(2) - S(4)*(p + S(1))**S(2))))
rubi.add(rule452)
pattern453 = Pattern(Integral(x_**WC('m', S(1))*(c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)), CustomConstraint(lambda n: PositiveIntegerQ(n/S(2) + S(1)/2)), CustomConstraint(lambda p, n: Not(IntegerQ(-n/S(2) + p))))
rule453 = ReplacementRule(pattern453, lambda p, x, m, c, a, d, n : c**p*Int(x**m*(a*x + S(1))**n*(-a**S(2)*x**S(2) + S(1))**(-n/S(2) + p), x))
rubi.add(rule453)
pattern454 = Pattern(Integral(x_**WC('m', S(1))*(c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)), CustomConstraint(lambda n: NegativeIntegerQ(n/S(2) + S(-1)/2)), CustomConstraint(lambda p, n: Not(IntegerQ(-n/S(2) + p))))
rule454 = ReplacementRule(pattern454, lambda p, x, m, c, a, d, n : c**p*Int(x**m*(-a*x + S(1))**(-n)*(-a**S(2)*x**S(2) + S(1))**(n/S(2) + p), x))
rubi.add(rule454)
pattern455 = Pattern(Integral(x_**WC('m', S(1))*(c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)))
rule455 = ReplacementRule(pattern455, lambda p, x, m, c, a, d, n : c**p*Int(x**m*(-a*x + S(1))**(-n/S(2) + p)*(a*x + S(1))**(n/S(2) + p), x))
rubi.add(rule455)
pattern456 = Pattern(Integral(x_**WC('m', S(1))*(c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))), CustomConstraint(lambda n: PositiveIntegerQ(n/S(2))))
rule456 = ReplacementRule(pattern456, lambda p, x, m, c, a, d, n : c**(n/S(2))*Int(x**m*(c + d*x**S(2))**(-n/S(2) + p)*(a*x + S(1))**n, x))
rubi.add(rule456)
pattern457 = Pattern(Integral(x_**WC('m', S(1))*(c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))), CustomConstraint(lambda n: NegativeIntegerQ(n/S(2))))
rule457 = ReplacementRule(pattern457, lambda p, x, m, c, a, d, n : c**(-n/S(2))*Int(x**m*(c + d*x**S(2))**(n/S(2) + p)*(-a*x + S(1))**(-n), x))
rubi.add(rule457)
pattern458 = Pattern(Integral(x_**WC('m', S(1))*(c_ + x_**S(2)*WC('d', S(1)))**p_*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))))
rule458 = ReplacementRule(pattern458, lambda p, x, m, c, a, d, n : c**IntPart(p)*(c + d*x**S(2))**FracPart(p)*(-a**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int(x**m*(-a**S(2)*x**S(2) + S(1))**p*exp(n*atanh(a*x)), x))
rubi.add(rule458)
pattern459 = Pattern(Integral(u_*(c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)))
rule459 = ReplacementRule(pattern459, lambda p, x, c, a, d, u, n : c**p*Int(u*(-a*x + S(1))**(-n/S(2) + p)*(a*x + S(1))**(n/S(2) + p), x))
rubi.add(rule459)
pattern460 = Pattern(Integral(u_*(c_ + x_**S(2)*WC('d', S(1)))**p_*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))), CustomConstraint(lambda n: IntegerQ(n/S(2))))
rule460 = ReplacementRule(pattern460, lambda p, x, c, a, d, u, n : c**IntPart(p)*(c + d*x**S(2))**FracPart(p)*(-a*x + S(1))**(-FracPart(p))*(a*x + S(1))**(-FracPart(p))*Int(u*(-a*x + S(1))**(-n/S(2) + p)*(a*x + S(1))**(n/S(2) + p), x))
rubi.add(rule460)
pattern461 = Pattern(Integral(u_*(c_ + x_**S(2)*WC('d', S(1)))**p_*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))))
rule461 = ReplacementRule(pattern461, lambda p, x, c, a, d, u, n : c**IntPart(p)*(c + d*x**S(2))**FracPart(p)*(-a**S(2)*x**S(2) + S(1))**(-FracPart(p))*Int(u*(-a**S(2)*x**S(2) + S(1))**p*exp(n*atanh(a*x)), x))
rubi.add(rule461)
pattern462 = Pattern(Integral((c_ + WC('d', S(1))/x_**S(2))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*d + c)), CustomConstraint(lambda p: IntegerQ(p)))
rule462 = ReplacementRule(pattern462, lambda p, x, c, a, d, u, n : d**p*Int(u*x**(-S(2)*p)*(-a**S(2)*x**S(2) + S(1))**p*exp(n*atanh(a*x)), x))
rubi.add(rule462)
pattern463 = Pattern(Integral((c_ + WC('d', S(1))/x_**S(2))**p_*WC('u', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*d + c)), CustomConstraint(lambda p: Not(IntegerQ(p))), CustomConstraint(lambda n: IntegerQ(n/S(2))), CustomConstraint(lambda c: PositiveQ(c)))
rule463 = ReplacementRule(pattern463, lambda p, x, c, a, d, u, n : c**p*Int(u*(S(1) - S(1)/(a*x))**p*(S(1) + S(1)/(a*x))**p*exp(n*atanh(a*x)), x))
rubi.add(rule463)
pattern464 = Pattern(Integral((c_ + WC('d', S(1))/x_**S(2))**p_*WC('u', S(1))*exp(n_*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*d + c)), CustomConstraint(lambda p: Not(IntegerQ(p))), CustomConstraint(lambda n: IntegerQ(n/S(2))), CustomConstraint(lambda c: Not(PositiveQ(c))))
rule464 = ReplacementRule(pattern464, lambda p, x, c, a, d, u, n : x**(S(2)*p)*(c + d/x**S(2))**p*(-a*x + S(1))**(-p)*(a*x + S(1))**(-p)*Int(u*x**(-S(2)*p)*(-a*x + S(1))**p*(a*x + S(1))**p*exp(n*atanh(a*x)), x))
rubi.add(rule464)
pattern465 = Pattern(Integral((c_ + WC('d', S(1))/x_**S(2))**p_*WC('u', S(1))*exp(WC('n', S(1))*atanh(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*d + c)), CustomConstraint(lambda p: Not(IntegerQ(p))), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))))
rule465 = ReplacementRule(pattern465, lambda p, x, c, a, d, u, n : x**(S(2)*p)*(c + d/x**S(2))**p*(c*x**S(2)/d + S(1))**(-p)*Int(u*x**(-S(2)*p)*(c*x**S(2)/d + S(1))**p*exp(n*atanh(a*x)), x))
rubi.add(rule465)
pattern466 = Pattern(Integral(exp(WC('n', S(1))*atanh((a_ + x_*WC('b', S(1)))*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule466 = ReplacementRule(pattern466, lambda x, b, c, a, n : Int((-a*c - b*c*x + S(1))**(-n/S(2))*(a*c + b*c*x + S(1))**(n/S(2)), x))
rubi.add(rule466)
pattern467 = Pattern(Integral(x_**m_*exp(n_*atanh((a_ + x_*WC('b', S(1)))*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m: NegativeIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(S(-1), n, S(1))))
rule467 = ReplacementRule(pattern467, lambda x, b, m, c, a, n : S(4)*b**(-m + S(-1))*c**(-m + S(-1))*Subst(Int(x**(S(2)/n)*(x**(S(2)/n) + S(1))**(-m + S(-2))*(-a*c + x**(S(2)/n)*(-a*c + S(1)) + S(-1))**m, x), x, (-c*(a + b*x) + S(1))**(-n/S(2))*(c*(a + b*x) + S(1))**(n/S(2)))/n)
rubi.add(rule467)
pattern468 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('m', S(1))*exp(WC('n', S(1))*atanh((a_ + x_*WC('b', S(1)))*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule468 = ReplacementRule(pattern468, lambda x, b, m, c, a, d, e, n : Int((d + e*x)**m*(-a*c - b*c*x + S(1))**(-n/S(2))*(a*c + b*c*x + S(1))**(n/S(2)), x))
rubi.add(rule468)
pattern469 = Pattern(Integral((c_ + x_**S(2)*WC('e', S(1)) + x_*WC('d', S(1)))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*atanh(a_ + x_*WC('b', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda e, a, d, b: ZeroQ(-S(2)*a*e + b*d)), CustomConstraint(lambda c, a, e, b: ZeroQ(b**S(2)*c + e*(-a**S(2) + S(1)))), CustomConstraint(lambda c, a, p: IntegerQ(p) | PositiveQ(c/(-a**S(2) + S(1)))))
rule469 = ReplacementRule(pattern469, lambda p, x, b, c, a, d, u, e, n : (c/(-a**S(2) + S(1)))**p*Int(u*(-a - b*x + S(1))**(-n/S(2) + p)*(a + b*x + S(1))**(n/S(2) + p), x))
rubi.add(rule469)
pattern470 = Pattern(Integral((c_ + x_**S(2)*WC('e', S(1)) + x_*WC('d', S(1)))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*atanh(a_ + x_*WC('b', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda e, a, d, b: ZeroQ(-S(2)*a*e + b*d)), CustomConstraint(lambda c, a, e, b: ZeroQ(b**S(2)*c + e*(-a**S(2) + S(1)))), CustomConstraint(lambda c, a, p: Not(IntegerQ(p) | PositiveQ(c/(-a**S(2) + S(1))))))
rule470 = ReplacementRule(pattern470, lambda p, x, b, c, a, d, u, e, n : (c + d*x + e*x**S(2))**p*(-a**S(2) - S(2)*a*b*x - b**S(2)*x**S(2) + S(1))**(-p)*Int(u*(-a**S(2) - S(2)*a*b*x - b**S(2)*x**S(2) + S(1))**p*exp(n*atanh(a*x)), x))
rubi.add(rule470)
pattern471 = Pattern(Integral(WC('u', S(1))*exp(WC('n', S(1))*atanh(WC('c', S(1))/(x_*WC('b', S(1)) + WC('a', S(0))))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule471 = ReplacementRule(pattern471, lambda x, b, c, a, u, n : Int(u*exp(n*acoth(a/c + b*x/c)), x))
rubi.add(rule471)
pattern472 = Pattern(Integral(WC('u', S(1))*exp(n_*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda n: IntegerQ(n/S(2))))
rule472 = ReplacementRule(pattern472, lambda x, u, a, n : (S(-1))**(n/S(2))*Int(u*exp(n*atanh(a*x)), x))
rubi.add(rule472)
pattern473 = Pattern(Integral(exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda n: OddQ(n)))
rule473 = ReplacementRule(pattern473, lambda x, a, n : -Subst(Int((S(1) - x/a)**(-n/S(2) + S(1)/2)*(S(1) + x/a)**(n/S(2) + S(1)/2)/(x**S(2)*sqrt(S(1) - x**S(2)/a**S(2))), x), x, 1/x))
rubi.add(rule473)
pattern474 = Pattern(Integral(x_**WC('m', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda n: OddQ(n)), CustomConstraint(lambda m: IntegerQ(m)))
rule474 = ReplacementRule(pattern474, lambda x, a, n, m : -Subst(Int(x**(-m + S(-2))*(S(1) - x/a)**(-n/S(2) + S(1)/2)*(S(1) + x/a)**(n/S(2) + S(1)/2)/sqrt(S(1) - x**S(2)/a**S(2)), x), x, 1/x))
rubi.add(rule474)
pattern475 = Pattern(Integral(exp(n_*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(IntegerQ(n))))
rule475 = ReplacementRule(pattern475, lambda x, a, n : -Subst(Int((S(1) - x/a)**(-n/S(2))*(S(1) + x/a)**(n/S(2))/x**S(2), x), x, 1/x))
rubi.add(rule475)
pattern476 = Pattern(Integral(x_**WC('m', S(1))*exp(n_*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(IntegerQ(n))), CustomConstraint(lambda m: IntegerQ(m)))
rule476 = ReplacementRule(pattern476, lambda x, a, n, m : -Subst(Int(x**(-m + S(-2))*(S(1) - x/a)**(-n/S(2))*(S(1) + x/a)**(n/S(2)), x), x, 1/x))
rubi.add(rule476)
pattern477 = Pattern(Integral(x_**m_*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: OddQ(n)), CustomConstraint(lambda m: Not(IntegerQ(m))))
rule477 = ReplacementRule(pattern477, lambda x, a, n, m : -x**m*(1/x)**m*Subst(Int(x**(-m + S(-2))*(S(1) - x/a)**(-n/S(2) + S(1)/2)*(S(1) + x/a)**(n/S(2) + S(1)/2)/sqrt(S(1) - x**S(2)/a**S(2)), x), x, 1/x))
rubi.add(rule477)
pattern478 = Pattern(Integral(x_**m_*exp(n_*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(IntegerQ(n))), CustomConstraint(lambda m: Not(IntegerQ(m))))
rule478 = ReplacementRule(pattern478, lambda x, a, n, m : -x**m*(1/x)**m*Subst(Int(x**(-m + S(-2))*(S(1) - x/a)**(-n/S(2))*(S(1) + x/a)**(n/S(2)), x), x, 1/x))
rubi.add(rule478)
pattern479 = Pattern(Integral((c_ + x_*WC('d', S(1)))**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a*c + d)), CustomConstraint(lambda p, n: ZeroQ(-n/S(2) + p)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))))
rule479 = ReplacementRule(pattern479, lambda p, x, c, a, d, n : (c + d*x)**p*(a*x + S(1))*exp(n*acoth(a*x))/(a*(p + S(1))))
rubi.add(rule479)
pattern480 = Pattern(Integral((c_ + x_*WC('d', S(1)))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c**S(2) - d**S(2))), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda p: IntegerQ(p)))
rule480 = ReplacementRule(pattern480, lambda p, x, c, a, d, u, n : d**p*Int(u*x**p*(c/(d*x) + S(1))**p*exp(n*acoth(a*x)), x))
rubi.add(rule480)
pattern481 = Pattern(Integral((c_ + x_*WC('d', S(1)))**p_*WC('u', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c**S(2) - d**S(2))), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda p: Not(IntegerQ(p))))
rule481 = ReplacementRule(pattern481, lambda p, x, c, a, d, u, n : x**(-p)*(c + d*x)**p*(c/(d*x) + S(1))**(-p)*Int(u*x**p*(c/(d*x) + S(1))**p*exp(n*acoth(a*x)), x))
rubi.add(rule481)
pattern482 = Pattern(Integral((c_ + WC('d', S(1))/x_)**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a*d + c)), CustomConstraint(lambda n: IntegerQ(n/S(2) + S(-1)/2)), CustomConstraint(lambda p, n: IntegerQ(p) | ZeroQ(-n/S(2) + p) | ZeroQ(-n/S(2) + p + S(-1))), CustomConstraint(lambda p: IntegerQ(S(2)*p)))
rule482 = ReplacementRule(pattern482, lambda p, x, c, a, d, n : -c**n*Subst(Int((S(1) - x**S(2)/a**S(2))**(n/S(2))*(c + d*x)**(-n + p)/x**S(2), x), x, 1/x))
rubi.add(rule482)
pattern483 = Pattern(Integral(x_**WC('m', S(1))*(c_ + WC('d', S(1))/x_)**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a*d + c)), CustomConstraint(lambda n: IntegerQ(n/S(2) + S(-1)/2)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p, n, m: IntegerQ(p) | Less(S(-5), m, S(-1)) | ZeroQ(-n/S(2) + p) | ZeroQ(-n/S(2) + p + S(-1))), CustomConstraint(lambda p: IntegerQ(S(2)*p)))
rule483 = ReplacementRule(pattern483, lambda p, x, m, c, a, d, n : -c**n*Subst(Int(x**(-m + S(-2))*(S(1) - x**S(2)/a**S(2))**(n/S(2))*(c + d*x)**(-n + p), x), x, 1/x))
rubi.add(rule483)
pattern484 = Pattern(Integral((c_ + WC('d', S(1))/x_)**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(-a**S(2)*d**S(2) + c**S(2))), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)))
rule484 = ReplacementRule(pattern484, lambda p, x, c, a, d, n : -c**p*Subst(Int((S(1) - x/a)**(-n/S(2))*(S(1) + x/a)**(n/S(2))*(S(1) + d*x/c)**p/x**S(2), x), x, 1/x))
rubi.add(rule484)
pattern485 = Pattern(Integral(x_**WC('m', S(1))*(c_ + WC('d', S(1))/x_)**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(-a**S(2)*d**S(2) + c**S(2))), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)), CustomConstraint(lambda m: IntegerQ(m)))
rule485 = ReplacementRule(pattern485, lambda p, x, m, c, a, d, n : -c**p*Subst(Int(x**(-m + S(-2))*(S(1) - x/a)**(-n/S(2))*(S(1) + x/a)**(n/S(2))*(S(1) + d*x/c)**p, x), x, 1/x))
rubi.add(rule485)
pattern486 = Pattern(Integral(x_**m_*(c_ + WC('d', S(1))/x_)**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(-a**S(2)*d**S(2) + c**S(2))), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)), CustomConstraint(lambda m: Not(IntegerQ(m))))
rule486 = ReplacementRule(pattern486, lambda p, x, m, c, a, d, n : -c**p*x**m*(1/x)**m*Subst(Int(x**(-m + S(-2))*(S(1) - x/a)**(-n/S(2))*(S(1) + x/a)**(n/S(2))*(S(1) + d*x/c)**p, x), x, 1/x))
rubi.add(rule486)
pattern487 = Pattern(Integral((c_ + WC('d', S(1))/x_)**p_*WC('u', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(-a**S(2)*d**S(2) + c**S(2))), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))))
rule487 = ReplacementRule(pattern487, lambda p, x, c, a, d, u, n : (S(1) + d/(c*x))**(-p)*(c + d/x)**p*Int(u*(S(1) + d/(c*x))**p*exp(n*acoth(a*x)), x))
rubi.add(rule487)
pattern488 = Pattern(Integral(exp(WC('n', S(1))*acoth(x_*WC('a', S(1))))/(c_ + x_**S(2)*WC('d', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))))
rule488 = ReplacementRule(pattern488, lambda x, c, a, d, n : exp(n*acoth(a*x))/(a*c*n))
rubi.add(rule488)
pattern489 = Pattern(Integral(exp(n_*acoth(x_*WC('a', S(1))))/(c_ + x_**S(2)*WC('d', S(1)))**(S(3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n))))
rule489 = ReplacementRule(pattern489, lambda x, c, a, d, n : (-a*x + n)*exp(n*acoth(a*x))/(a*c*sqrt(c + d*x**S(2))*(n**S(2) + S(-1))))
rubi.add(rule489)
pattern490 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**p_*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: Less(p, S(-1))), CustomConstraint(lambda p: Unequal(p, S(-3)/2)), CustomConstraint(lambda p, n: NonzeroQ(n**S(2) - S(4)*(p + S(1))**S(2))), CustomConstraint(lambda p, n: IntegerQ(p) | Not(IntegerQ(n))))
rule490 = ReplacementRule(pattern490, lambda p, x, c, a, d, n : -S(2)*(p + S(1))*(S(2)*p + S(3))*Int((c + d*x**S(2))**(p + S(1))*exp(n*acoth(a*x)), x)/(c*(n**S(2) - S(4)*(p + S(1))**S(2))) + (c + d*x**S(2))**(p + S(1))*(S(2)*a*x*(p + S(1)) + n)*exp(n*acoth(a*x))/(a*c*(n**S(2) - S(4)*(p + S(1))**S(2))))
rubi.add(rule490)
pattern491 = Pattern(Integral(x_*exp(n_*acoth(x_*WC('a', S(1))))/(c_ + x_**S(2)*WC('d', S(1)))**(S(3)/2), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n))))
rule491 = ReplacementRule(pattern491, lambda x, c, a, d, n : (a*n*x + S(-1))*exp(n*acoth(a*x))/(a**S(2)*c*sqrt(c + d*x**S(2))*(n**S(2) + S(-1))))
rubi.add(rule491)
pattern492 = Pattern(Integral(x_*(c_ + x_**S(2)*WC('d', S(1)))**p_*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: LessEqual(p, S(-1))), CustomConstraint(lambda p: Unequal(p, S(-3)/2)), CustomConstraint(lambda p, n: NonzeroQ(n**S(2) - S(4)*(p + S(1))**S(2))), CustomConstraint(lambda p, n: IntegerQ(p) | Not(IntegerQ(n))))
rule492 = ReplacementRule(pattern492, lambda p, x, c, a, d, n : -n*(S(2)*p + S(3))*Int((c + d*x**S(2))**(p + S(1))*exp(n*acoth(a*x)), x)/(a*c*(n**S(2) - S(4)*(p + S(1))**S(2))) + (c + d*x**S(2))**(p + S(1))*(a*n*x + S(2)*p + S(2))*exp(n*acoth(a*x))/(a**S(2)*c*(n**S(2) - S(4)*(p + S(1))**S(2))))
rubi.add(rule492)
pattern493 = Pattern(Integral(x_**S(2)*(c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda p, n: ZeroQ(n**S(2) + S(2)*p + S(2))), CustomConstraint(lambda n: NonzeroQ(n**S(2) + S(-1))))
rule493 = ReplacementRule(pattern493, lambda p, x, c, a, d, n : (c + d*x**S(2))**(p + S(1))*(-S(2)*a*x*(p + S(1)) - n)*exp(n*acoth(a*x))/(a**S(3)*c*n**S(2)*(n**S(2) + S(-1))))
rubi.add(rule493)
pattern494 = Pattern(Integral(x_**S(2)*(c_ + x_**S(2)*WC('d', S(1)))**p_*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p: LessEqual(p, S(-1))), CustomConstraint(lambda p, n: NonzeroQ(n**S(2) + S(2)*p + S(2))), CustomConstraint(lambda p, n: NonzeroQ(n**S(2) - S(4)*(p + S(1))**S(2))), CustomConstraint(lambda p, n: IntegerQ(p) | Not(IntegerQ(n))))
rule494 = ReplacementRule(pattern494, lambda p, x, c, a, d, n : -(n**S(2) + S(2)*p + S(2))*Int((c + d*x**S(2))**(p + S(1))*exp(n*acoth(a*x)), x)/(a**S(2)*c*(n**S(2) - S(4)*(p + S(1))**S(2))) + (c + d*x**S(2))**(p + S(1))*(S(2)*a*x*(p + S(1)) + n)*exp(n*acoth(a*x))/(a**S(3)*c*(n**S(2) - S(4)*(p + S(1))**S(2))))
rubi.add(rule494)
pattern495 = Pattern(Integral(x_**WC('m', S(1))*(c_ + x_**S(2)*WC('d', S(1)))**p_*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: RationalQ(p)), CustomConstraint(lambda p, m: LessEqual(S(3), m, -S(2)*p + S(-2))), CustomConstraint(lambda p: IntegerQ(p)))
rule495 = ReplacementRule(pattern495, lambda p, x, m, c, a, d, n : -a**(-m + S(-1))*(-c)**p*Subst(Int(Cosh(x)**(-S(2)*p + S(-2))*exp(n*x)*coth(x)**(m + S(2)*p + S(2)), x), x, acoth(a*x)))
rubi.add(rule495)
pattern496 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda p: IntegerQ(p)))
rule496 = ReplacementRule(pattern496, lambda p, x, c, a, d, u, n : d**p*Int(u*x**(S(2)*p)*(S(1) - S(1)/(a**S(2)*x**S(2)))**p*exp(n*acoth(a*x)), x))
rubi.add(rule496)
pattern497 = Pattern(Integral((c_ + x_**S(2)*WC('d', S(1)))**p_*WC('u', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*c + d)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda p: Not(IntegerQ(p))))
rule497 = ReplacementRule(pattern497, lambda p, x, c, a, d, u, n : x**(-S(2)*p)*(S(1) - S(1)/(a**S(2)*x**S(2)))**(-p)*(c + d*x**S(2))**p*Int(u*x**(S(2)*p)*(S(1) - S(1)/(a**S(2)*x**S(2)))**p*exp(n*acoth(a*x)), x))
rubi.add(rule497)
pattern498 = Pattern(Integral((c_ + WC('d', S(1))/x_**S(2))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*d + c)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)), CustomConstraint(lambda p, n: IntegersQ(S(2)*p, n/S(2) + p)))
rule498 = ReplacementRule(pattern498, lambda p, x, c, a, d, u, n : a**(-S(2)*p)*c**p*Int(u*x**(-S(2)*p)*(a*x + S(-1))**(-n/S(2) + p)*(a*x + S(1))**(n/S(2) + p), x))
rubi.add(rule498)
pattern499 = Pattern(Integral((c_ + WC('d', S(1))/x_**S(2))**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*d + c)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)), CustomConstraint(lambda p, n: Not(IntegersQ(S(2)*p, n/S(2) + p))))
rule499 = ReplacementRule(pattern499, lambda p, x, c, a, d, n : -c**p*Subst(Int((S(1) - x/a)**(-n/S(2) + p)*(S(1) + x/a)**(n/S(2) + p)/x**S(2), x), x, 1/x))
rubi.add(rule499)
pattern500 = Pattern(Integral(x_**WC('m', S(1))*(c_ + WC('d', S(1))/x_**S(2))**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*d + c)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)), CustomConstraint(lambda p, n: Not(IntegersQ(S(2)*p, n/S(2) + p))), CustomConstraint(lambda m: IntegerQ(m)))
rule500 = ReplacementRule(pattern500, lambda p, x, m, c, a, d, n : -c**p*Subst(Int(x**(-m + S(-2))*(S(1) - x/a)**(-n/S(2) + p)*(S(1) + x/a)**(n/S(2) + p), x), x, 1/x))
rubi.add(rule500)
pattern501 = Pattern(Integral(x_**m_*(c_ + WC('d', S(1))/x_**S(2))**WC('p', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*d + c)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda c, p: IntegerQ(p) | PositiveQ(c)), CustomConstraint(lambda p, n: Not(IntegersQ(S(2)*p, n/S(2) + p))), CustomConstraint(lambda m: Not(IntegerQ(m))))
rule501 = ReplacementRule(pattern501, lambda p, x, m, c, a, d, n : -c**p*x**m*(1/x)**m*Subst(Int(x**(-m + S(-2))*(S(1) - x/a)**(-n/S(2) + p)*(S(1) + x/a)**(n/S(2) + p), x), x, 1/x))
rubi.add(rule501)
pattern502 = Pattern(Integral((c_ + WC('d', S(1))/x_**S(2))**p_*WC('u', S(1))*exp(WC('n', S(1))*acoth(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda c, a, d: ZeroQ(a**S(2)*d + c)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda c, p: Not(IntegerQ(p) | PositiveQ(c))))
rule502 = ReplacementRule(pattern502, lambda p, x, c, a, d, u, n : c**IntPart(p)*(S(1) - S(1)/(a**S(2)*x**S(2)))**(-FracPart(p))*(c + d/x**S(2))**FracPart(p)*Int(u*(S(1) - S(1)/(a**S(2)*x**S(2)))**p*exp(n*acoth(a*x)), x))
rubi.add(rule502)
pattern503 = Pattern(Integral(WC('u', S(1))*exp(n_*acoth((a_ + x_*WC('b', S(1)))*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n: IntegerQ(n/S(2))))
rule503 = ReplacementRule(pattern503, lambda x, b, c, a, u, n : (S(-1))**(n/S(2))*Int(u*exp(n*atanh(c*(a + b*x))), x))
rubi.add(rule503)
pattern504 = Pattern(Integral(exp(WC('n', S(1))*acoth((a_ + x_*WC('b', S(1)))*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))))
rule504 = ReplacementRule(pattern504, lambda x, b, c, a, n : (c*(a + b*x))**(n/S(2))*(S(1) + S(1)/(c*(a + b*x)))**(n/S(2))*(a*c + b*c*x + S(1))**(-n/S(2))*Int((a*c + b*c*x + S(-1))**(-n/S(2))*(a*c + b*c*x + S(1))**(n/S(2)), x))
rubi.add(rule504)
pattern505 = Pattern(Integral(x_**m_*exp(n_*acoth((a_ + x_*WC('b', S(1)))*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m: NegativeIntegerQ(m)), CustomConstraint(lambda n: RationalQ(n)), CustomConstraint(lambda n: Less(S(-1), n, S(1))))
rule505 = ReplacementRule(pattern505, lambda x, b, m, c, a, n : -S(4)*b**(-m + S(-1))*c**(-m + S(-1))*Subst(Int(x**(S(2)/n)*(x**(S(2)/n) + S(-1))**(-m + S(-2))*(a*c + x**(S(2)/n)*(-a*c + S(1)) + S(1))**m, x), x, (S(1) - S(1)/(c*(a + b*x)))**(-n/S(2))*(S(1) + S(1)/(c*(a + b*x)))**(n/S(2)))/n)
rubi.add(rule505)
pattern506 = Pattern(Integral((x_*WC('e', S(1)) + WC('d', S(0)))**WC('m', S(1))*exp(WC('n', S(1))*acoth((a_ + x_*WC('b', S(1)))*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))))
rule506 = ReplacementRule(pattern506, lambda x, b, m, c, a, d, e, n : (c*(a + b*x))**(n/S(2))*(S(1) + S(1)/(c*(a + b*x)))**(n/S(2))*(a*c + b*c*x + S(1))**(-n/S(2))*Int((d + e*x)**m*(a*c + b*c*x + S(-1))**(-n/S(2))*(a*c + b*c*x + S(1))**(n/S(2)), x))
rubi.add(rule506)
pattern507 = Pattern(Integral((c_ + x_**S(2)*WC('e', S(1)) + x_*WC('d', S(1)))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*acoth(a_ + x_*WC('b', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda e, a, d, b: ZeroQ(-S(2)*a*e + b*d)), CustomConstraint(lambda c, a, e, b: ZeroQ(b**S(2)*c + e*(-a**S(2) + S(1)))), CustomConstraint(lambda c, a, p: IntegerQ(p) | PositiveQ(c/(-a**S(2) + S(1)))))
rule507 = ReplacementRule(pattern507, lambda p, x, b, c, a, d, u, e, n : (c/(-a**S(2) + S(1)))**p*((a + b*x + S(1))/(a + b*x))**(n/S(2))*((a + b*x)/(a + b*x + S(1)))**(n/S(2))*(-a - b*x + S(1))**(n/S(2))*(a + b*x + S(-1))**(-n/S(2))*Int(u*(-a - b*x + S(1))**(-n/S(2) + p)*(a + b*x + S(1))**(n/S(2) + p), x))
rubi.add(rule507)
pattern508 = Pattern(Integral((c_ + x_**S(2)*WC('e', S(1)) + x_*WC('d', S(1)))**WC('p', S(1))*WC('u', S(1))*exp(WC('n', S(1))*acoth(a_ + x_*WC('b', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda n: Not(IntegerQ(n/S(2)))), CustomConstraint(lambda e, a, d, b: ZeroQ(-S(2)*a*e + b*d)), CustomConstraint(lambda c, a, e, b: ZeroQ(b**S(2)*c + e*(-a**S(2) + S(1)))), CustomConstraint(lambda c, a, p: Not(IntegerQ(p) | PositiveQ(c/(-a**S(2) + S(1))))))
rule508 = ReplacementRule(pattern508, lambda p, x, b, c, a, d, u, e, n : (c + d*x + e*x**S(2))**p*(-a**S(2) - S(2)*a*b*x - b**S(2)*x**S(2) + S(1))**(-p)*Int(u*(-a**S(2) - S(2)*a*b*x - b**S(2)*x**S(2) + S(1))**p*exp(n*acoth(a*x)), x))
rubi.add(rule508)
pattern509 = Pattern(Integral(WC('u', S(1))*exp(WC('n', S(1))*acoth(WC('c', S(1))/(x_*WC('b', S(1)) + WC('a', S(0))))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule509 = ReplacementRule(pattern509, lambda x, b, c, a, u, n : Int(u*exp(n*atanh(a/c + b*x/c)), x))
rubi.add(rule509)
pattern510 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(c_ + x_*WC('d', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule510 = ReplacementRule(pattern510, lambda x, b, c, a, d, n : Subst(Int((a + b*atanh(x))**n, x), x, c + d*x)/d)
rubi.add(rule510)
pattern511 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(c_ + x_*WC('d', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule511 = ReplacementRule(pattern511, lambda x, b, c, a, d, n : Subst(Int((a + b*acoth(x))**n, x), x, c + d*x)/d)
rubi.add(rule511)
pattern512 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(c_ + x_*WC('d', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))))
rule512 = ReplacementRule(pattern512, lambda x, b, c, a, d, n : Int((a + b*atanh(c + d*x))**n, x))
rubi.add(rule512)
pattern513 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(c_ + x_*WC('d', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))))
rule513 = ReplacementRule(pattern513, lambda x, b, c, a, d, n : Int((a + b*acoth(c + d*x))**n, x))
rubi.add(rule513)
pattern514 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(c_ + x_*WC('d', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule514 = ReplacementRule(pattern514, lambda x, b, m, f, c, a, d, e, n : Subst(Int((a + b*atanh(x))**n*(f*x/d + (-c*f + d*e)/d)**m, x), x, c + d*x)/d)
rubi.add(rule514)
pattern515 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(c_ + x_*WC('d', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: PositiveIntegerQ(n)))
rule515 = ReplacementRule(pattern515, lambda x, b, m, f, c, a, d, e, n : Subst(Int((a + b*acoth(x))**n*(f*x/d + (-c*f + d*e)/d)**m, x), x, c + d*x)/d)
rubi.add(rule515)
pattern516 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**m_*(WC('a', S(0)) + WC('b', S(1))*atanh(c_ + x_*WC('d', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))))
rule516 = ReplacementRule(pattern516, lambda x, b, m, f, c, a, d, e, n : Int((a + b*atanh(c + d*x))**n*(e + f*x)**m, x))
rubi.add(rule516)
pattern517 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**m_*(WC('a', S(0)) + WC('b', S(1))*acoth(c_ + x_*WC('d', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(PositiveIntegerQ(n))))
rule517 = ReplacementRule(pattern517, lambda x, b, m, f, c, a, d, e, n : Int((a + b*acoth(c + d*x))**n*(e + f*x)**m, x))
rubi.add(rule517)
pattern518 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*atanh(c_ + x_*WC('d', S(1))))**WC('n', S(1))*(x_**S(2)*WC('C', S(1)) + x_*WC('B', S(1)) + WC('A', S(0)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda A, x: FreeQ(A, x)), CustomConstraint(lambda B, x: FreeQ(B, x)), CustomConstraint(lambda C, x: FreeQ(C, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda B, c, A, d: ZeroQ(S(2)*A*c*d + B*(-c**S(2) + S(1)))), CustomConstraint(lambda B, c, C, d: ZeroQ(-B*d + S(2)*C*c)))
rule518 = ReplacementRule(pattern518, lambda B, A, C, p, x, b, c, a, d, n : Subst(Int((a + b*atanh(x))**n*(C*x**S(2)/d**S(2) - C/d**S(2))**p, x), x, c + d*x)/d)
rubi.add(rule518)
pattern519 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acoth(c_ + x_*WC('d', S(1))))**WC('n', S(1))*(x_**S(2)*WC('C', S(1)) + x_*WC('B', S(1)) + WC('A', S(0)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda A, x: FreeQ(A, x)), CustomConstraint(lambda B, x: FreeQ(B, x)), CustomConstraint(lambda C, x: FreeQ(C, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda B, c, A, d: ZeroQ(S(2)*A*c*d + B*(-c**S(2) + S(1)))), CustomConstraint(lambda B, c, C, d: ZeroQ(-B*d + S(2)*C*c)))
rule519 = ReplacementRule(pattern519, lambda B, A, C, p, x, b, c, a, d, n : Subst(Int((a + b*acoth(x))**n*(C*x**S(2)/d**S(2) + C/d**S(2))**p, x), x, c + d*x)/d)
rubi.add(rule519)
pattern520 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(c_ + x_*WC('d', S(1))))**WC('n', S(1))*(x_**S(2)*WC('C', S(1)) + x_*WC('B', S(1)) + WC('A', S(0)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda A, x: FreeQ(A, x)), CustomConstraint(lambda B, x: FreeQ(B, x)), CustomConstraint(lambda C, x: FreeQ(C, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda B, c, A, d: ZeroQ(S(2)*A*c*d + B*(-c**S(2) + S(1)))), CustomConstraint(lambda B, c, C, d: ZeroQ(-B*d + S(2)*C*c)))
rule520 = ReplacementRule(pattern520, lambda B, A, C, p, x, b, m, f, c, a, d, e, n : Subst(Int((a + b*atanh(x))**n*(C*x**S(2)/d**S(2) - C/d**S(2))**p*(f*x/d + (-c*f + d*e)/d)**m, x), x, c + d*x)/d)
rubi.add(rule520)
pattern521 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(c_ + x_*WC('d', S(1))))**WC('n', S(1))*(x_**S(2)*WC('C', S(1)) + x_*WC('B', S(1)) + WC('A', S(0)))**WC('p', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda A, x: FreeQ(A, x)), CustomConstraint(lambda B, x: FreeQ(B, x)), CustomConstraint(lambda C, x: FreeQ(C, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda B, c, A, d: ZeroQ(S(2)*A*c*d + B*(-c**S(2) + S(1)))), CustomConstraint(lambda B, c, C, d: ZeroQ(-B*d + S(2)*C*c)))
rule521 = ReplacementRule(pattern521, lambda B, A, C, p, x, b, m, f, c, a, d, e, n : Subst(Int((a + b*acoth(x))**n*(C*x**S(2)/d**S(2) - C/d**S(2))**p*(f*x/d + (-c*f + d*e)/d)**m, x), x, c + d*x)/d)
rubi.add(rule521)
pattern522 = Pattern(Integral(atanh(a_ + x_*WC('b', S(1)))/(c_ + x_**WC('n', S(1))*WC('d', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n: RationalQ(n)))
rule522 = ReplacementRule(pattern522, lambda x, b, c, a, d, n : -Int(log(-a - b*x + S(1))/(c + d*x**n), x)/S(2) + Int(log(a + b*x + S(1))/(c + d*x**n), x)/S(2))
rubi.add(rule522)
pattern523 = Pattern(Integral(acoth(a_ + x_*WC('b', S(1)))/(c_ + x_**WC('n', S(1))*WC('d', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n: RationalQ(n)))
rule523 = ReplacementRule(pattern523, lambda x, b, c, a, d, n : -Int(log((a + b*x + S(-1))/(a + b*x))/(c + d*x**n), x)/S(2) + Int(log((a + b*x + S(1))/(a + b*x))/(c + d*x**n), x)/S(2))
rubi.add(rule523)
pattern524 = Pattern(Integral(atanh(a_ + x_*WC('b', S(1)))/(c_ + x_**n_*WC('d', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(RationalQ(n))))
rule524 = ReplacementRule(pattern524, lambda x, b, c, a, d, n : Int(atanh(a + b*x)/(c + d*x**n), x))
rubi.add(rule524)
pattern525 = Pattern(Integral(acoth(a_ + x_*WC('b', S(1)))/(c_ + x_**n_*WC('d', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda n: Not(RationalQ(n))))
rule525 = ReplacementRule(pattern525, lambda x, b, c, a, d, n : Int(acoth(a + b*x)/(c + d*x**n), x))
rubi.add(rule525)
pattern526 = Pattern(Integral(atanh(a_ + x_**n_*WC('b', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule526 = ReplacementRule(pattern526, lambda x, a, n, b : -b*n*Int(x**n/(-a**S(2) - S(2)*a*b*x**n - b**S(2)*x**(S(2)*n) + S(1)), x) + x*atanh(a + b*x**n))
rubi.add(rule526)
pattern527 = Pattern(Integral(acoth(a_ + x_**n_*WC('b', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule527 = ReplacementRule(pattern527, lambda x, a, n, b : -b*n*Int(x**n/(-a**S(2) - S(2)*a*b*x**n - b**S(2)*x**(S(2)*n) + S(1)), x) + x*acoth(a + b*x**n))
rubi.add(rule527)
pattern528 = Pattern(Integral(atanh(x_**WC('n', S(1))*WC('b', S(1)) + WC('a', S(0)))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule528 = ReplacementRule(pattern528, lambda x, a, n, b : -Int(log(-a - b*x**n + S(1))/x, x)/S(2) + Int(log(a + b*x**n + S(1))/x, x)/S(2))
rubi.add(rule528)
pattern529 = Pattern(Integral(acoth(x_**WC('n', S(1))*WC('b', S(1)) + WC('a', S(0)))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule529 = ReplacementRule(pattern529, lambda x, a, n, b : -Int(log(S(1) - S(1)/(a + b*x**n))/x, x)/S(2) + Int(log(S(1) + 1/(a + b*x**n))/x, x)/S(2))
rubi.add(rule529)
pattern530 = Pattern(Integral(x_**WC('m', S(1))*atanh(a_ + x_**n_*WC('b', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda m: Unequal(m + S(1), S(0))), CustomConstraint(lambda n, m: Unequal(m + S(1), n)))
rule530 = ReplacementRule(pattern530, lambda x, b, m, a, n : -b*n*Int(x**(m + n)/(-a**S(2) - S(2)*a*b*x**n - b**S(2)*x**(S(2)*n) + S(1)), x)/(m + S(1)) + x**(m + S(1))*atanh(a + b*x**n)/(m + S(1)))
rubi.add(rule530)
pattern531 = Pattern(Integral(x_**WC('m', S(1))*acoth(a_ + x_**n_*WC('b', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, m: RationalQ(m, n)), CustomConstraint(lambda m: Unequal(m + S(1), S(0))), CustomConstraint(lambda n, m: Unequal(m + S(1), n)))
rule531 = ReplacementRule(pattern531, lambda x, b, m, a, n : -b*n*Int(x**(m + n)/(-a**S(2) - S(2)*a*b*x**n - b**S(2)*x**(S(2)*n) + S(1)), x)/(m + S(1)) + x**(m + S(1))*acoth(a + b*x**n)/(m + S(1)))
rubi.add(rule531)
pattern532 = Pattern(Integral(atanh(f_**(x_*WC('d', S(1)) + WC('c', S(0)))*WC('b', S(1)) + WC('a', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda f, x: FreeQ(f, x)))
rule532 = ReplacementRule(pattern532, lambda x, b, c, f, a, d : -Int(log(-a - b*f**(c + d*x) + S(1)), x)/S(2) + Int(log(a + b*f**(c + d*x) + S(1)), x)/S(2))
rubi.add(rule532)
pattern533 = Pattern(Integral(acoth(f_**(x_*WC('d', S(1)) + WC('c', S(0)))*WC('b', S(1)) + WC('a', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda f, x: FreeQ(f, x)))
rule533 = ReplacementRule(pattern533, lambda x, b, c, f, a, d : -Int(log(S(1) - S(1)/(a + b*f**(c + d*x))), x)/S(2) + Int(log(S(1) + 1/(a + b*f**(c + d*x))), x)/S(2))
rubi.add(rule533)
pattern534 = Pattern(Integral(x_**WC('m', S(1))*atanh(f_**(x_*WC('d', S(1)) + WC('c', S(0)))*WC('b', S(1)) + WC('a', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: Greater(m, S(0))))
rule534 = ReplacementRule(pattern534, lambda x, b, m, c, f, a, d : -Int(x**m*log(-a - b*f**(c + d*x) + S(1)), x)/S(2) + Int(x**m*log(a + b*f**(c + d*x) + S(1)), x)/S(2))
rubi.add(rule534)
pattern535 = Pattern(Integral(x_**WC('m', S(1))*acoth(f_**(x_*WC('d', S(1)) + WC('c', S(0)))*WC('b', S(1)) + WC('a', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: Greater(m, S(0))))
rule535 = ReplacementRule(pattern535, lambda x, b, m, c, f, a, d : -Int(x**m*log(S(1) - S(1)/(a + b*f**(c + d*x))), x)/S(2) + Int(x**m*log(S(1) + 1/(a + b*f**(c + d*x))), x)/S(2))
rubi.add(rule535)
pattern536 = Pattern(Integral(WC('u', S(1))*atanh(WC('c', S(1))/(x_**WC('n', S(1))*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m, x: FreeQ(m, x)))
rule536 = ReplacementRule(pattern536, lambda x, b, m, c, a, u, n : Int(u*acoth(a/c + b*x**n/c)**m, x))
rubi.add(rule536)
pattern537 = Pattern(Integral(WC('u', S(1))*acoth(WC('c', S(1))/(x_**WC('n', S(1))*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m, x: FreeQ(m, x)))
rule537 = ReplacementRule(pattern537, lambda x, b, m, c, a, u, n : Int(u*atanh(a/c + b*x**n/c)**m, x))
rubi.add(rule537)
pattern538 = Pattern(Integral(S(1)/(sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0)))*atanh(x_*WC('c', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0))))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda c, b: ZeroQ(b - c**S(2))))
rule538 = ReplacementRule(pattern538, lambda c, a, b, x : log(atanh(c*x/sqrt(a + b*x**S(2))))/c)
rubi.add(rule538)
pattern539 = Pattern(Integral(S(1)/(sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0)))*acoth(x_*WC('c', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0))))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda c, b: ZeroQ(b - c**S(2))))
rule539 = ReplacementRule(pattern539, lambda c, a, b, x : -log(acoth(c*x/sqrt(a + b*x**S(2))))/c)
rubi.add(rule539)
pattern540 = Pattern(Integral(atanh(x_*WC('c', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, b: ZeroQ(b - c**S(2))), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule540 = ReplacementRule(pattern540, lambda x, b, m, c, a : atanh(c*x/sqrt(a + b*x**S(2)))**(m + S(1))/(c*(m + S(1))))
rubi.add(rule540)
pattern541 = Pattern(Integral(acoth(x_*WC('c', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, b: ZeroQ(b - c**S(2))), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule541 = ReplacementRule(pattern541, lambda x, b, m, c, a : -acoth(c*x/sqrt(a + b*x**S(2)))**(m + S(1))/(c*(m + S(1))))
rubi.add(rule541)
pattern542 = Pattern(Integral(atanh(x_*WC('c', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1))/sqrt(x_**S(2)*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, b: ZeroQ(b - c**S(2))), CustomConstraint(lambda e, a, d, b: ZeroQ(-a*e + b*d)))
rule542 = ReplacementRule(pattern542, lambda x, b, m, c, a, d, e : sqrt(a + b*x**S(2))*Int(atanh(c*x/sqrt(a + b*x**S(2)))**m/sqrt(a + b*x**S(2)), x)/sqrt(d + e*x**S(2)))
rubi.add(rule542)
pattern543 = Pattern(Integral(acoth(x_*WC('c', S(1))/sqrt(x_**S(2)*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1))/sqrt(x_**S(2)*WC('e', S(1)) + WC('d', S(0))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda c, b: ZeroQ(b - c**S(2))), CustomConstraint(lambda e, a, d, b: ZeroQ(-a*e + b*d)))
rule543 = ReplacementRule(pattern543, lambda x, b, m, c, a, d, e : sqrt(a + b*x**S(2))*Int(acoth(c*x/sqrt(a + b*x**S(2)))**m/sqrt(a + b*x**S(2)), x)/sqrt(d + e*x**S(2)))
rubi.add(rule543)
pattern544 = Pattern(Integral((x_**S(2)*WC('d', S(1)) + WC('c', S(0)))**n_*atanh(x_*WC('a', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n: IntegerQ(S(2)*n)), CustomConstraint(lambda n: LessEqual(n, S(-1))), )
def With544(x, c, a, d, n):
u = IntHide((c + d*x**S(2))**n, x)
return -a*Int(Dist(1/(-a**S(2)*x**S(2) + S(1)), u, x), x) + Dist(atanh(a*x), u, x)
rule544 = ReplacementRule(pattern544, lambda x, c, a, d, n : With544(x, c, a, d, n))
rubi.add(rule544)
pattern545 = Pattern(Integral((x_**S(2)*WC('d', S(1)) + WC('c', S(0)))**n_*acoth(x_*WC('a', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda n: IntegerQ(S(2)*n)), CustomConstraint(lambda n: LessEqual(n, S(-1))), )
def With545(x, c, a, d, n):
u = IntHide((c + d*x**S(2))**n, x)
return -a*Int(Dist(1/(-a**S(2)*x**S(2) + S(1)), u, x), x) + Dist(acoth(a*x), u, x)
rule545 = ReplacementRule(pattern545, lambda x, c, a, d, n : With545(x, c, a, d, n))
rubi.add(rule545)
pattern546 = Pattern(Integral(u_*v_**WC('n', S(1)), x_), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda v, x: QuadraticQ(v, x)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda n: Less(n, S(0))), CustomConstraint(lambda v, x: PosQ(Discriminant(v, x))), CustomConstraint(lambda x, u: MatchQ(u, Condition(Optional(Pattern(r, Blank))*Pattern(f, Blank)**Pattern(w, Blank)))), CustomConstraint(lambda u, n, v, tmp, x, ArcTanh: Not(FalseQ(tmp)) & SameQ(Head(tmp), ArcTanh) & ZeroQ(-D(v, x)**S(2) + Discriminant(v, x)*Part(tmp, S(1))**S(2))))
def With546(v, x, u, n):
tmp = InverseFunctionOfLinear(u, x)
return (-Discriminant(v, x)/(S(4)*Coefficient(v, x, S(2))))**n*Subst(Int(SimplifyIntegrand(SubstForInverseFunction(u, tmp, x)*sech(x)**(S(2)*n + S(2)), x), x), x, tmp)/Coefficient(Part(tmp, S(1)), x, S(1))
rule546 = ReplacementRule(pattern546, lambda v, x, u, n : With546(v, x, u, n))
rubi.add(rule546)
pattern547 = Pattern(Integral(u_*v_**WC('n', S(1)), x_), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda v, x: QuadraticQ(v, x)), CustomConstraint(lambda n: IntegerQ(n)), CustomConstraint(lambda n: Less(n, S(0))), CustomConstraint(lambda v, x: PosQ(Discriminant(v, x))), CustomConstraint(lambda x, u: MatchQ(u, Condition(Optional(Pattern(r, Blank))*Pattern(f, Blank)**Pattern(w, Blank)))), CustomConstraint(lambda u, n, ArcCoth, v, tmp, x: Not(FalseQ(tmp)) & SameQ(Head(tmp), ArcCoth) & ZeroQ(-D(v, x)**S(2) + Discriminant(v, x)*Part(tmp, S(1))**S(2))))
def With547(v, x, u, n):
tmp = InverseFunctionOfLinear(u, x)
return (-Discriminant(v, x)/(S(4)*Coefficient(v, x, S(2))))**n*Subst(Int(SimplifyIntegrand((-csch(x)**S(2))**(n + S(1))*SubstForInverseFunction(u, tmp, x), x), x), x, tmp)/Coefficient(Part(tmp, S(1)), x, S(1))
rule547 = ReplacementRule(pattern547, lambda v, x, u, n : With547(v, x, u, n))
rubi.add(rule547)
pattern548 = Pattern(Integral(atanh(WC('c', S(0)) + WC('d', S(1))*tanh(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: ZeroQ((c - d)**S(2) + S(-1))))
rule548 = ReplacementRule(pattern548, lambda x, b, c, a, d : b*Int(x/(c*exp(S(2)*a + S(2)*b*x) + c - d), x) + x*atanh(c + d*tanh(a + b*x)))
rubi.add(rule548)
pattern549 = Pattern(Integral(acoth(WC('c', S(0)) + WC('d', S(1))*tanh(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: ZeroQ((c - d)**S(2) + S(-1))))
rule549 = ReplacementRule(pattern549, lambda x, b, c, a, d : b*Int(x/(c*exp(S(2)*a + S(2)*b*x) + c - d), x) + x*acoth(c + d*tanh(a + b*x)))
rubi.add(rule549)
pattern550 = Pattern(Integral(atanh(WC('c', S(0)) + WC('d', S(1))*coth(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: ZeroQ((c - d)**S(2) + S(-1))))
rule550 = ReplacementRule(pattern550, lambda x, b, c, a, d : b*Int(x/(-c*exp(S(2)*a + S(2)*b*x) + c - d), x) + x*atanh(c + d*coth(a + b*x)))
rubi.add(rule550)
pattern551 = Pattern(Integral(acoth(WC('c', S(0)) + WC('d', S(1))*coth(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: ZeroQ((c - d)**S(2) + S(-1))))
rule551 = ReplacementRule(pattern551, lambda x, b, c, a, d : b*Int(x/(-c*exp(S(2)*a + S(2)*b*x) + c - d), x) + x*acoth(c + d*coth(a + b*x)))
rubi.add(rule551)
pattern552 = Pattern(Integral(atanh(WC('c', S(0)) + WC('d', S(1))*tanh(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: NonzeroQ((c - d)**S(2) + S(-1))))
rule552 = ReplacementRule(pattern552, lambda x, b, c, a, d : b*(-c - d + S(1))*Int(x*exp(S(2)*a + S(2)*b*x)/(-c + d + (-c - d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x) - b*(c + d + S(1))*Int(x*exp(S(2)*a + S(2)*b*x)/(c - d + (c + d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x) + x*atanh(c + d*tanh(a + b*x)))
rubi.add(rule552)
pattern553 = Pattern(Integral(acoth(WC('c', S(0)) + WC('d', S(1))*tanh(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: NonzeroQ((c - d)**S(2) + S(-1))))
rule553 = ReplacementRule(pattern553, lambda x, b, c, a, d : b*(-c - d + S(1))*Int(x*exp(S(2)*a + S(2)*b*x)/(-c + d + (-c - d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x) - b*(c + d + S(1))*Int(x*exp(S(2)*a + S(2)*b*x)/(c - d + (c + d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x) + x*acoth(c + d*tanh(a + b*x)))
rubi.add(rule553)
pattern554 = Pattern(Integral(atanh(WC('c', S(0)) + WC('d', S(1))*coth(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: NonzeroQ((c - d)**S(2) + S(-1))))
rule554 = ReplacementRule(pattern554, lambda x, b, c, a, d : -b*(-c - d + S(1))*Int(x*exp(S(2)*a + S(2)*b*x)/(-c + d - (-c - d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x) + b*(c + d + S(1))*Int(x*exp(S(2)*a + S(2)*b*x)/(c - d - (c + d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x) + x*atanh(c + d*coth(a + b*x)))
rubi.add(rule554)
pattern555 = Pattern(Integral(acoth(WC('c', S(0)) + WC('d', S(1))*coth(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: NonzeroQ((c - d)**S(2) + S(-1))))
rule555 = ReplacementRule(pattern555, lambda x, b, c, a, d : -b*(-c - d + S(1))*Int(x*exp(S(2)*a + S(2)*b*x)/(-c + d - (-c - d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x) + b*(c + d + S(1))*Int(x*exp(S(2)*a + S(2)*b*x)/(c - d - (c + d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x) + x*acoth(c + d*coth(a + b*x)))
rubi.add(rule555)
pattern556 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(WC('c', S(0)) + WC('d', S(1))*tanh(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: ZeroQ((c - d)**S(2) + S(-1))))
rule556 = ReplacementRule(pattern556, lambda x, b, m, c, f, a, d, e : b*Int((e + f*x)**(m + S(1))/(c*exp(S(2)*a + S(2)*b*x) + c - d), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(c + d*tanh(a + b*x))/(f*(m + S(1))))
rubi.add(rule556)
pattern557 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(WC('c', S(0)) + WC('d', S(1))*tanh(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: ZeroQ((c - d)**S(2) + S(-1))))
rule557 = ReplacementRule(pattern557, lambda x, b, m, c, f, a, d, e : b*Int((e + f*x)**(m + S(1))/(c*exp(S(2)*a + S(2)*b*x) + c - d), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(c + d*tanh(a + b*x))/(f*(m + S(1))))
rubi.add(rule557)
pattern558 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(WC('c', S(0)) + WC('d', S(1))*coth(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: ZeroQ((c - d)**S(2) + S(-1))))
rule558 = ReplacementRule(pattern558, lambda x, b, m, c, f, a, d, e : b*Int((e + f*x)**(m + S(1))/(-c*exp(S(2)*a + S(2)*b*x) + c - d), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(c + d*coth(a + b*x))/(f*(m + S(1))))
rubi.add(rule558)
pattern559 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(WC('c', S(0)) + WC('d', S(1))*coth(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: ZeroQ((c - d)**S(2) + S(-1))))
rule559 = ReplacementRule(pattern559, lambda x, b, m, c, f, a, d, e : b*Int((e + f*x)**(m + S(1))/(-c*exp(S(2)*a + S(2)*b*x) + c - d), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(c + d*coth(a + b*x))/(f*(m + S(1))))
rubi.add(rule559)
pattern560 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(WC('c', S(0)) + WC('d', S(1))*tanh(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: NonzeroQ((c - d)**S(2) + S(-1))))
rule560 = ReplacementRule(pattern560, lambda x, b, m, c, f, a, d, e : b*(-c - d + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*a + S(2)*b*x)/(-c + d + (-c - d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x)/(f*(m + S(1))) - b*(c + d + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*a + S(2)*b*x)/(c - d + (c + d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(c + d*tanh(a + b*x))/(f*(m + S(1))))
rubi.add(rule560)
pattern561 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(WC('c', S(0)) + WC('d', S(1))*tanh(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: NonzeroQ((c - d)**S(2) + S(-1))))
rule561 = ReplacementRule(pattern561, lambda x, b, m, c, f, a, d, e : b*(-c - d + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*a + S(2)*b*x)/(-c + d + (-c - d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x)/(f*(m + S(1))) - b*(c + d + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*a + S(2)*b*x)/(c - d + (c + d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(c + d*tanh(a + b*x))/(f*(m + S(1))))
rubi.add(rule561)
pattern562 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(WC('c', S(0)) + WC('d', S(1))*coth(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: NonzeroQ((c - d)**S(2) + S(-1))))
rule562 = ReplacementRule(pattern562, lambda x, b, m, c, f, a, d, e : -b*(-c - d + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*a + S(2)*b*x)/(-c + d - (-c - d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x)/(f*(m + S(1))) + b*(c + d + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*a + S(2)*b*x)/(c - d - (c + d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(c + d*coth(a + b*x))/(f*(m + S(1))))
rubi.add(rule562)
pattern563 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(WC('c', S(0)) + WC('d', S(1))*coth(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: NonzeroQ((c - d)**S(2) + S(-1))))
rule563 = ReplacementRule(pattern563, lambda x, b, m, c, f, a, d, e : -b*(-c - d + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*a + S(2)*b*x)/(-c + d - (-c - d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x)/(f*(m + S(1))) + b*(c + d + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*a + S(2)*b*x)/(c - d - (c + d + S(1))*exp(S(2)*a + S(2)*b*x) + S(1)), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(c + d*coth(a + b*x))/(f*(m + S(1))))
rubi.add(rule563)
pattern564 = Pattern(Integral(atanh(tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)))
rule564 = ReplacementRule(pattern564, lambda x, a, b : -b*Int(x*sec(S(2)*a + S(2)*b*x), x) + x*atanh(tan(a + b*x)))
rubi.add(rule564)
pattern565 = Pattern(Integral(acoth(tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)))
rule565 = ReplacementRule(pattern565, lambda x, a, b : -b*Int(x*sec(S(2)*a + S(2)*b*x), x) + x*acoth(tan(a + b*x)))
rubi.add(rule565)
pattern566 = Pattern(Integral(atanh(cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)))
rule566 = ReplacementRule(pattern566, lambda x, a, b : -b*Int(x*sec(S(2)*a + S(2)*b*x), x) + x*atanh(cot(a + b*x)))
rubi.add(rule566)
pattern567 = Pattern(Integral(acoth(cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)))
rule567 = ReplacementRule(pattern567, lambda x, a, b : -b*Int(x*sec(S(2)*a + S(2)*b*x), x) + x*acoth(cot(a + b*x)))
rubi.add(rule567)
pattern568 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule568 = ReplacementRule(pattern568, lambda x, b, m, f, a, e : -b*Int((e + f*x)**(m + S(1))*sec(S(2)*a + S(2)*b*x), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(tan(a + b*x))/(f*(m + S(1))))
rubi.add(rule568)
pattern569 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule569 = ReplacementRule(pattern569, lambda x, b, m, f, a, e : -b*Int((e + f*x)**(m + S(1))*sec(S(2)*a + S(2)*b*x), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(tan(a + b*x))/(f*(m + S(1))))
rubi.add(rule569)
pattern570 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule570 = ReplacementRule(pattern570, lambda x, b, m, f, a, e : -b*Int((e + f*x)**(m + S(1))*sec(S(2)*a + S(2)*b*x), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(cot(a + b*x))/(f*(m + S(1))))
rubi.add(rule570)
pattern571 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule571 = ReplacementRule(pattern571, lambda x, b, m, f, a, e : -b*Int((e + f*x)**(m + S(1))*sec(S(2)*a + S(2)*b*x), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(cot(a + b*x))/(f*(m + S(1))))
rubi.add(rule571)
pattern572 = Pattern(Integral(atanh(WC('c', S(0)) + WC('d', S(1))*tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: ZeroQ((ImaginaryI*d + c)**S(2) + S(-1))))
rule572 = ReplacementRule(pattern572, lambda x, b, c, a, d : ImaginaryI*b*Int(x/(ImaginaryI*d + c*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + c), x) + x*atanh(c + d*tan(a + b*x)))
rubi.add(rule572)
pattern573 = Pattern(Integral(acoth(WC('c', S(0)) + WC('d', S(1))*tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: ZeroQ((ImaginaryI*d + c)**S(2) + S(-1))))
rule573 = ReplacementRule(pattern573, lambda x, b, c, a, d : ImaginaryI*b*Int(x/(ImaginaryI*d + c*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + c), x) + x*acoth(c + d*tan(a + b*x)))
rubi.add(rule573)
pattern574 = Pattern(Integral(atanh(WC('c', S(0)) + WC('d', S(1))*cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: ZeroQ((-ImaginaryI*d + c)**S(2) + S(-1))))
rule574 = ReplacementRule(pattern574, lambda x, b, c, a, d : ImaginaryI*b*Int(x/(-ImaginaryI*d - c*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + c), x) + x*atanh(c + d*cot(a + b*x)))
rubi.add(rule574)
pattern575 = Pattern(Integral(acoth(WC('c', S(0)) + WC('d', S(1))*cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: ZeroQ((-ImaginaryI*d + c)**S(2) + S(-1))))
rule575 = ReplacementRule(pattern575, lambda x, b, c, a, d : ImaginaryI*b*Int(x/(-ImaginaryI*d - c*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + c), x) + x*acoth(c + d*cot(a + b*x)))
rubi.add(rule575)
pattern576 = Pattern(Integral(atanh(WC('c', S(0)) + WC('d', S(1))*tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: NonzeroQ((ImaginaryI*d + c)**S(2) + S(-1))))
rule576 = ReplacementRule(pattern576, lambda x, b, c, a, d : -ImaginaryI*b*(-ImaginaryI*d + c + S(1))*Int(x*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(ImaginaryI*d + c + (-ImaginaryI*d + c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x) + ImaginaryI*b*(ImaginaryI*d - c + S(1))*Int(x*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(-ImaginaryI*d - c + (ImaginaryI*d - c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x) + x*atanh(c + d*tan(a + b*x)))
rubi.add(rule576)
pattern577 = Pattern(Integral(acoth(WC('c', S(0)) + WC('d', S(1))*tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: NonzeroQ((ImaginaryI*d + c)**S(2) + S(-1))))
rule577 = ReplacementRule(pattern577, lambda x, b, c, a, d : -ImaginaryI*b*(-ImaginaryI*d + c + S(1))*Int(x*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(ImaginaryI*d + c + (-ImaginaryI*d + c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x) + ImaginaryI*b*(ImaginaryI*d - c + S(1))*Int(x*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(-ImaginaryI*d - c + (ImaginaryI*d - c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x) + x*acoth(c + d*tan(a + b*x)))
rubi.add(rule577)
pattern578 = Pattern(Integral(atanh(WC('c', S(0)) + WC('d', S(1))*cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: NonzeroQ((-ImaginaryI*d + c)**S(2) + S(-1))))
rule578 = ReplacementRule(pattern578, lambda x, b, c, a, d : -ImaginaryI*b*(-ImaginaryI*d - c + S(1))*Int(x*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(ImaginaryI*d - c - (-ImaginaryI*d - c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x) + ImaginaryI*b*(ImaginaryI*d + c + S(1))*Int(x*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(-ImaginaryI*d + c - (ImaginaryI*d + c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x) + x*atanh(c + d*cot(a + b*x)))
rubi.add(rule578)
pattern579 = Pattern(Integral(acoth(WC('c', S(0)) + WC('d', S(1))*cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda c, d: NonzeroQ((-ImaginaryI*d + c)**S(2) + S(-1))))
rule579 = ReplacementRule(pattern579, lambda x, b, c, a, d : -ImaginaryI*b*(-ImaginaryI*d - c + S(1))*Int(x*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(ImaginaryI*d - c - (-ImaginaryI*d - c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x) + ImaginaryI*b*(ImaginaryI*d + c + S(1))*Int(x*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(-ImaginaryI*d + c - (ImaginaryI*d + c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x) + x*acoth(c + d*cot(a + b*x)))
rubi.add(rule579)
pattern580 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(WC('c', S(0)) + WC('d', S(1))*tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: ZeroQ((ImaginaryI*d + c)**S(2) + S(-1))))
rule580 = ReplacementRule(pattern580, lambda x, b, m, c, f, a, d, e : ImaginaryI*b*Int((e + f*x)**(m + S(1))/(ImaginaryI*d + c*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + c), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(c + d*tan(a + b*x))/(f*(m + S(1))))
rubi.add(rule580)
pattern581 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(WC('c', S(0)) + WC('d', S(1))*tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: ZeroQ((ImaginaryI*d + c)**S(2) + S(-1))))
rule581 = ReplacementRule(pattern581, lambda x, b, m, c, f, a, d, e : ImaginaryI*b*Int((e + f*x)**(m + S(1))/(ImaginaryI*d + c*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + c), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(c + d*tan(a + b*x))/(f*(m + S(1))))
rubi.add(rule581)
pattern582 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(WC('c', S(0)) + WC('d', S(1))*cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: ZeroQ((-ImaginaryI*d + c)**S(2) + S(-1))))
rule582 = ReplacementRule(pattern582, lambda x, b, m, c, f, a, d, e : ImaginaryI*b*Int((e + f*x)**(m + S(1))/(-ImaginaryI*d - c*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + c), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(c + d*cot(a + b*x))/(f*(m + S(1))))
rubi.add(rule582)
pattern583 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(WC('c', S(0)) + WC('d', S(1))*cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: ZeroQ((-ImaginaryI*d + c)**S(2) + S(-1))))
rule583 = ReplacementRule(pattern583, lambda x, b, m, c, f, a, d, e : ImaginaryI*b*Int((e + f*x)**(m + S(1))/(-ImaginaryI*d - c*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + c), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(c + d*cot(a + b*x))/(f*(m + S(1))))
rubi.add(rule583)
pattern584 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(WC('c', S(0)) + WC('d', S(1))*tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: NonzeroQ((ImaginaryI*d + c)**S(2) + S(-1))))
rule584 = ReplacementRule(pattern584, lambda x, b, m, c, f, a, d, e : -ImaginaryI*b*(-ImaginaryI*d + c + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(ImaginaryI*d + c + (-ImaginaryI*d + c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x)/(f*(m + S(1))) + ImaginaryI*b*(ImaginaryI*d - c + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(-ImaginaryI*d - c + (ImaginaryI*d - c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(c + d*tan(a + b*x))/(f*(m + S(1))))
rubi.add(rule584)
pattern585 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(WC('c', S(0)) + WC('d', S(1))*tan(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: NonzeroQ((ImaginaryI*d + c)**S(2) + S(-1))))
rule585 = ReplacementRule(pattern585, lambda x, b, m, c, f, a, d, e : -ImaginaryI*b*(-ImaginaryI*d + c + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(ImaginaryI*d + c + (-ImaginaryI*d + c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x)/(f*(m + S(1))) + ImaginaryI*b*(ImaginaryI*d - c + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(-ImaginaryI*d - c + (ImaginaryI*d - c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(c + d*tan(a + b*x))/(f*(m + S(1))))
rubi.add(rule585)
pattern586 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*atanh(WC('c', S(0)) + WC('d', S(1))*cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: NonzeroQ((-ImaginaryI*d + c)**S(2) + S(-1))))
rule586 = ReplacementRule(pattern586, lambda x, b, m, c, f, a, d, e : -ImaginaryI*b*(-ImaginaryI*d - c + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(ImaginaryI*d - c - (-ImaginaryI*d - c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x)/(f*(m + S(1))) + ImaginaryI*b*(ImaginaryI*d + c + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(-ImaginaryI*d + c - (ImaginaryI*d + c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*atanh(c + d*cot(a + b*x))/(f*(m + S(1))))
rubi.add(rule586)
pattern587 = Pattern(Integral((x_*WC('f', S(1)) + WC('e', S(0)))**WC('m', S(1))*acoth(WC('c', S(0)) + WC('d', S(1))*cot(x_*WC('b', S(1)) + WC('a', S(0)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda f, x: FreeQ(f, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)), CustomConstraint(lambda c, d: NonzeroQ((-ImaginaryI*d + c)**S(2) + S(-1))))
rule587 = ReplacementRule(pattern587, lambda x, b, m, c, f, a, d, e : -ImaginaryI*b*(-ImaginaryI*d - c + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(ImaginaryI*d - c - (-ImaginaryI*d - c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x)/(f*(m + S(1))) + ImaginaryI*b*(ImaginaryI*d + c + S(1))*Int((e + f*x)**(m + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x)/(-ImaginaryI*d + c - (ImaginaryI*d + c + S(1))*exp(S(2)*ImaginaryI*a + S(2)*ImaginaryI*b*x) + S(1)), x)/(f*(m + S(1))) + (e + f*x)**(m + S(1))*acoth(c + d*cot(a + b*x))/(f*(m + S(1))))
rubi.add(rule587)
pattern588 = Pattern(Integral(atanh(u_), x_), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)))
rule588 = ReplacementRule(pattern588, lambda x, u : x*atanh(u) - Int(SimplifyIntegrand(x*D(u, x)/(-u**S(2) + S(1)), x), x))
rubi.add(rule588)
pattern589 = Pattern(Integral(acoth(u_), x_), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)))
rule589 = ReplacementRule(pattern589, lambda x, u : x*acoth(u) - Int(SimplifyIntegrand(x*D(u, x)/(-u**S(2) + S(1)), x), x))
rubi.add(rule589)
pattern590 = Pattern(Integral((x_*WC('d', S(1)) + WC('c', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*atanh(u_)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: NonzeroQ(m + S(1))), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, m, c, d, u: Not(FunctionOfQ((c + d*x)**(m + S(1)), u, x))), CustomConstraint(lambda x, u, m: FalseQ(PowerVariableExpn(u, m + S(1), x))))
rule590 = ReplacementRule(pattern590, lambda x, b, m, c, a, d, u : -b*Int(SimplifyIntegrand((c + d*x)**(m + S(1))*D(u, x)/(-u**S(2) + S(1)), x), x)/(d*(m + S(1))) + (a + b*atanh(u))*(c + d*x)**(m + S(1))/(d*(m + S(1))))
rubi.add(rule590)
pattern591 = Pattern(Integral((x_*WC('d', S(1)) + WC('c', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acoth(u_)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: NonzeroQ(m + S(1))), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, m, c, d, u: Not(FunctionOfQ((c + d*x)**(m + S(1)), u, x))), CustomConstraint(lambda x, u, m: FalseQ(PowerVariableExpn(u, m + S(1), x))))
rule591 = ReplacementRule(pattern591, lambda x, b, m, c, a, d, u : -b*Int(SimplifyIntegrand((c + d*x)**(m + S(1))*D(u, x)/(-u**S(2) + S(1)), x), x)/(d*(m + S(1))) + (a + b*acoth(u))*(c + d*x)**(m + S(1))/(d*(m + S(1))))
rubi.add(rule591)
pattern592 = Pattern(Integral(v_*(WC('a', S(0)) + WC('b', S(1))*atanh(u_)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda v, x: Not(MatchQ(v, Condition((x*Optional(Pattern(d, Blank)) + Optional(Pattern(c, Blank)))**Optional(Pattern(m, Blank)))))), CustomConstraint(lambda x, b, v, a, u: FalseQ(FunctionOfLinear(v*(a + b*atanh(u)), x))), CustomConstraint(lambda a, u, x, b, w: InverseFunctionFreeQ(w, x)))
def With592(x, b, v, a, u):
w = IntHide(v, x)
return -b*Int(SimplifyIntegrand(w*D(u, x)/(-u**S(2) + S(1)), x), x) + Dist(a + b*atanh(u), w, x)
rule592 = ReplacementRule(pattern592, lambda x, b, v, a, u : With592(x, b, v, a, u))
rubi.add(rule592)
pattern593 = Pattern(Integral(v_*(WC('a', S(0)) + WC('b', S(1))*acoth(u_)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda v, x: Not(MatchQ(v, Condition((x*Optional(Pattern(d, Blank)) + Optional(Pattern(c, Blank)))**Optional(Pattern(m, Blank)))))), CustomConstraint(lambda x, b, v, a, u: FalseQ(FunctionOfLinear(v*(a + b*acoth(u)), x))), CustomConstraint(lambda a, u, x, b, w: InverseFunctionFreeQ(w, x)))
def With593(x, b, v, a, u):
w = IntHide(v, x)
return -b*Int(SimplifyIntegrand(w*D(u, x)/(-u**S(2) + S(1)), x), x) + Dist(a + b*acoth(u), w, x)
rule593 = ReplacementRule(pattern593, lambda x, b, v, a, u : With593(x, b, v, a, u))
rubi.add(rule593)
pattern594 = Pattern(Integral(asech(x_*WC('c', S(1))), x_), CustomConstraint(lambda c, x: FreeQ(c, x)))
rule594 = ReplacementRule(pattern594, lambda c, x : x*asech(c*x) + sqrt(c*x + S(1))*sqrt(1/(c*x + S(1)))*Int(S(1)/(sqrt(-c*x + S(1))*sqrt(c*x + S(1))), x))
rubi.add(rule594)
pattern595 = Pattern(Integral(acsch(x_*WC('c', S(1))), x_), CustomConstraint(lambda c, x: FreeQ(c, x)))
rule595 = ReplacementRule(pattern595, lambda c, x : x*acsch(c*x) + Int(S(1)/(x*sqrt(S(1) + S(1)/(c**S(2)*x**S(2)))), x)/c)
rubi.add(rule595)
pattern596 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule596 = ReplacementRule(pattern596, lambda x, b, c, a, n : -Subst(Int((a + b*x)**n*tanh(x)*sech(x), x), x, asech(c*x))/c)
rubi.add(rule596)
pattern597 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule597 = ReplacementRule(pattern597, lambda x, b, c, a, n : -Subst(Int((a + b*x)**n*coth(x)*csch(x), x), x, acsch(c*x))/c)
rubi.add(rule597)
pattern598 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)))
rule598 = ReplacementRule(pattern598, lambda c, a, b, x : -Subst(Int((a + b*acosh(x/c))/x, x), x, 1/x))
rubi.add(rule598)
pattern599 = Pattern(Integral((WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)))
rule599 = ReplacementRule(pattern599, lambda c, a, b, x : -Subst(Int((a + b*asinh(x/c))/x, x), x, 1/x))
rubi.add(rule599)
pattern600 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule600 = ReplacementRule(pattern600, lambda x, b, m, c, a : b*sqrt(c*x + S(1))*sqrt(1/(c*x + S(1)))*Int(x**m/(sqrt(-c*x + S(1))*sqrt(c*x + S(1))), x)/(m + S(1)) + x**(m + S(1))*(a + b*asech(c*x))/(m + S(1)))
rubi.add(rule600)
pattern601 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule601 = ReplacementRule(pattern601, lambda x, b, m, c, a : b*Int(x**(m + S(-1))/sqrt(S(1) + S(1)/(c**S(2)*x**S(2))), x)/(c*(m + S(1))) + x**(m + S(1))*(a + b*acsch(c*x))/(m + S(1)))
rubi.add(rule601)
pattern602 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: IntegerQ(m)))
rule602 = ReplacementRule(pattern602, lambda x, b, m, c, a, n : -c**(-m + S(-1))*Subst(Int((a + b*x)**n*tanh(x)*sech(x)**(m + S(1)), x), x, asech(c*x)))
rubi.add(rule602)
pattern603 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: IntegerQ(m)))
rule603 = ReplacementRule(pattern603, lambda x, b, m, c, a, n : -c**(-m + S(-1))*Subst(Int((a + b*x)**n*coth(x)*csch(x)**(m + S(1)), x), x, acsch(c*x)))
rubi.add(rule603)
pattern604 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule604 = ReplacementRule(pattern604, lambda x, b, m, c, a, n : Int(x**m*(a + b*asech(c*x))**n, x))
rubi.add(rule604)
pattern605 = Pattern(Integral(x_**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule605 = ReplacementRule(pattern605, lambda x, b, m, c, a, n : Int(x**m*(a + b*acsch(c*x))**n, x))
rubi.add(rule605)
pattern606 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p: PositiveIntegerQ(p) | NegativeIntegerQ(p + S(1)/2)), )
def With606(p, x, b, c, a, d, e):
u = IntHide((d + e*x**S(2))**p, x)
return b*sqrt(c*x + S(1))*sqrt(1/(c*x + S(1)))*Int(SimplifyIntegrand(u/(x*sqrt(-c*x + S(1))*sqrt(c*x + S(1))), x), x) + Dist(a + b*asech(c*x), u, x)
rule606 = ReplacementRule(pattern606, lambda p, x, b, c, a, d, e : With606(p, x, b, c, a, d, e))
rubi.add(rule606)
pattern607 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p: PositiveIntegerQ(p) | NegativeIntegerQ(p + S(1)/2)), )
def With607(p, x, b, c, a, d, e):
u = IntHide((d + e*x**S(2))**p, x)
return -b*c*x*Int(SimplifyIntegrand(u/(x*sqrt(-c**S(2)*x**S(2) + S(-1))), x), x)/sqrt(-c**S(2)*x**S(2)) + Dist(a + b*acsch(c*x), u, x)
rule607 = ReplacementRule(pattern607, lambda p, x, b, c, a, d, e : With607(p, x, b, c, a, d, e))
rubi.add(rule607)
pattern608 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p: IntegerQ(p)))
rule608 = ReplacementRule(pattern608, lambda p, x, b, c, a, d, e, n : -Subst(Int(x**(-S(2)*p + S(-2))*(a + b*acosh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x))
rubi.add(rule608)
pattern609 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p: IntegerQ(p)))
rule609 = ReplacementRule(pattern609, lambda p, x, b, c, a, d, e, n : -Subst(Int(x**(-S(2)*p + S(-2))*(a + b*asinh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x))
rubi.add(rule609)
pattern610 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**p_*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda e: PositiveQ(e)), CustomConstraint(lambda d: Negative(d)))
rule610 = ReplacementRule(pattern610, lambda p, x, b, c, a, d, e, n : -sqrt(x**S(2))*Subst(Int(x**(-S(2)*p + S(-2))*(a + b*acosh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x)/x)
rubi.add(rule610)
pattern611 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**p_*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda e: PositiveQ(e)), CustomConstraint(lambda d: Negative(d)))
rule611 = ReplacementRule(pattern611, lambda p, x, b, c, a, d, e, n : -sqrt(x**S(2))*Subst(Int(x**(-S(2)*p + S(-2))*(a + b*asinh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x)/x)
rubi.add(rule611)
pattern612 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**p_*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda d, e: Not(Negative(d) & PositiveQ(e))))
rule612 = ReplacementRule(pattern612, lambda p, x, b, c, a, d, e, n : -sqrt(d + e*x**S(2))*Subst(Int(x**(-S(2)*p + S(-2))*(a + b*acosh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x)/(x*sqrt(d/x**S(2) + e)))
rubi.add(rule612)
pattern613 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**p_*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda d, e: Not(Negative(d) & PositiveQ(e))))
rule613 = ReplacementRule(pattern613, lambda p, x, b, c, a, d, e, n : -sqrt(d + e*x**S(2))*Subst(Int(x**(-S(2)*p + S(-2))*(a + b*asinh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x)/(x*sqrt(d/x**S(2) + e)))
rubi.add(rule613)
pattern614 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule614 = ReplacementRule(pattern614, lambda p, x, b, c, a, d, e, n : Int((a + b*asech(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule614)
pattern615 = Pattern(Integral((x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule615 = ReplacementRule(pattern615, lambda p, x, b, c, a, d, e, n : Int((a + b*acsch(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule615)
pattern616 = Pattern(Integral(x_*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule616 = ReplacementRule(pattern616, lambda p, x, b, c, a, d, e : b*sqrt(c*x + S(1))*sqrt(1/(c*x + S(1)))*Int((d + e*x**S(2))**(p + S(1))/(x*sqrt(-c*x + S(1))*sqrt(c*x + S(1))), x)/(S(2)*e*(p + S(1))) + (a + b*asech(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule616)
pattern617 = Pattern(Integral(x_*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p: NonzeroQ(p + S(1))))
rule617 = ReplacementRule(pattern617, lambda p, x, b, c, a, d, e : -b*c*x*Int((d + e*x**S(2))**(p + S(1))/(x*sqrt(-c**S(2)*x**S(2) + S(-1))), x)/(S(2)*e*sqrt(-c**S(2)*x**S(2))*(p + S(1))) + (a + b*acsch(c*x))*(d + e*x**S(2))**(p + S(1))/(S(2)*e*(p + S(1))))
rubi.add(rule617)
pattern618 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p, m: (NegativeIntegerQ(m/S(2) + p + S(1)/2) & Not(NegativeIntegerQ(m/S(2) + S(-1)/2))) | (PositiveIntegerQ(p) & Not(NegativeIntegerQ(m/S(2) + S(-1)/2) & Greater(m + S(2)*p + S(3), S(0)))) | (PositiveIntegerQ(m/S(2) + S(1)/2) & Not(NegativeIntegerQ(p) & Greater(m + S(2)*p + S(3), S(0))))), )
def With618(p, x, b, m, c, a, d, e):
u = IntHide(x**m*(d + e*x**S(2))**p, x)
return b*sqrt(c*x + S(1))*sqrt(1/(c*x + S(1)))*Int(SimplifyIntegrand(u/(x*sqrt(-c*x + S(1))*sqrt(c*x + S(1))), x), x) + Dist(a + b*asech(c*x), u, x)
rule618 = ReplacementRule(pattern618, lambda p, x, b, m, c, a, d, e : With618(p, x, b, m, c, a, d, e))
rubi.add(rule618)
pattern619 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda p, m: (NegativeIntegerQ(m/S(2) + p + S(1)/2) & Not(NegativeIntegerQ(m/S(2) + S(-1)/2))) | (PositiveIntegerQ(p) & Not(NegativeIntegerQ(m/S(2) + S(-1)/2) & Greater(m + S(2)*p + S(3), S(0)))) | (PositiveIntegerQ(m/S(2) + S(1)/2) & Not(NegativeIntegerQ(p) & Greater(m + S(2)*p + S(3), S(0))))), )
def With619(p, x, b, m, c, a, d, e):
u = IntHide(x**m*(d + e*x**S(2))**p, x)
return -b*c*x*Int(SimplifyIntegrand(u/(x*sqrt(-c**S(2)*x**S(2) + S(-1))), x), x)/sqrt(-c**S(2)*x**S(2)) + Dist(a + b*acsch(c*x), u, x)
rule619 = ReplacementRule(pattern619, lambda p, x, b, m, c, a, d, e : With619(p, x, b, m, c, a, d, e))
rubi.add(rule619)
pattern620 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, m: IntegersQ(m, p)))
rule620 = ReplacementRule(pattern620, lambda p, x, b, m, c, a, d, e, n : -Subst(Int(x**(-m - S(2)*p + S(-2))*(a + b*acosh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x))
rubi.add(rule620)
pattern621 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, m: IntegersQ(m, p)))
rule621 = ReplacementRule(pattern621, lambda p, x, b, m, c, a, d, e, n : -Subst(Int(x**(-m - S(2)*p + S(-2))*(a + b*asinh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x))
rubi.add(rule621)
pattern622 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**p_*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda e: PositiveQ(e)), CustomConstraint(lambda d: Negative(d)))
rule622 = ReplacementRule(pattern622, lambda p, x, b, m, c, a, d, e, n : -sqrt(x**S(2))*Subst(Int(x**(-m - S(2)*p + S(-2))*(a + b*acosh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x)/x)
rubi.add(rule622)
pattern623 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**p_*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda e: PositiveQ(e)), CustomConstraint(lambda d: Negative(d)))
rule623 = ReplacementRule(pattern623, lambda p, x, b, m, c, a, d, e, n : -sqrt(x**S(2))*Subst(Int(x**(-m - S(2)*p + S(-2))*(a + b*asinh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x)/x)
rubi.add(rule623)
pattern624 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**p_*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, e, d: ZeroQ(c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda d, e: Not(Negative(d) & PositiveQ(e))))
rule624 = ReplacementRule(pattern624, lambda p, x, b, m, c, a, d, e, n : -sqrt(d + e*x**S(2))*Subst(Int(x**(-m - S(2)*p + S(-2))*(a + b*acosh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x)/(x*sqrt(d/x**S(2) + e)))
rubi.add(rule624)
pattern625 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**p_*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda c, d, e: ZeroQ(-c**S(2)*d + e)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda p: IntegerQ(p + S(1)/2)), CustomConstraint(lambda d, e: Not(Negative(d) & PositiveQ(e))))
rule625 = ReplacementRule(pattern625, lambda p, x, b, m, c, a, d, e, n : -sqrt(d + e*x**S(2))*Subst(Int(x**(-m - S(2)*p + S(-2))*(a + b*asinh(x/c))**n*(d*x**S(2) + e)**p, x), x, 1/x)/(x*sqrt(d/x**S(2) + e)))
rubi.add(rule625)
pattern626 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule626 = ReplacementRule(pattern626, lambda p, x, b, m, c, a, d, e, n : Int(x**m*(a + b*asech(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule626)
pattern627 = Pattern(Integral(x_**WC('m', S(1))*(x_**S(2)*WC('e', S(1)) + WC('d', S(0)))**WC('p', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(x_*WC('c', S(1))))**WC('n', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda e, x: FreeQ(e, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule627 = ReplacementRule(pattern627, lambda p, x, b, m, c, a, d, e, n : Int(x**m*(a + b*acsch(c*x))**n*(d + e*x**S(2))**p, x))
rubi.add(rule627)
pattern628 = Pattern(Integral(asech(a_ + x_*WC('b', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)))
rule628 = ReplacementRule(pattern628, lambda x, a, b : Int(sqrt((-a - b*x + S(1))/(a + b*x + S(1)))/(-a - b*x + S(1)), x) + (a + b*x)*asech(a + b*x)/b)
rubi.add(rule628)
pattern629 = Pattern(Integral(acsch(a_ + x_*WC('b', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)))
rule629 = ReplacementRule(pattern629, lambda x, a, b : Int(S(1)/(sqrt(S(1) + (a + b*x)**(S(-2)))*(a + b*x)), x) + (a + b*x)*acsch(a + b*x)/b)
rubi.add(rule629)
pattern630 = Pattern(Integral(asech(a_ + x_*WC('b', S(1)))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule630 = ReplacementRule(pattern630, lambda x, a, n, b : -Subst(Int(x**n*tanh(x)*sech(x), x), x, asech(a + b*x))/b)
rubi.add(rule630)
pattern631 = Pattern(Integral(acsch(a_ + x_*WC('b', S(1)))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)))
rule631 = ReplacementRule(pattern631, lambda x, a, n, b : -Subst(Int(x**n*coth(x)*csch(x), x), x, acsch(a + b*x))/b)
rubi.add(rule631)
pattern632 = Pattern(Integral(asech(a_ + x_*WC('b', S(1)))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)))
rule632 = ReplacementRule(pattern632, lambda x, a, b : -PolyLog(S(2), (-sqrt(-a**S(2) + S(1)) + S(1))*exp(-asech(a + b*x))/a) - PolyLog(S(2), (sqrt(-a**S(2) + S(1)) + S(1))*exp(-asech(a + b*x))/a) + PolyLog(S(2), -exp(-S(2)*asech(a + b*x)))/S(2) + log(S(1) - (-sqrt(-a**S(2) + S(1)) + S(1))*exp(-asech(a + b*x))/a)*asech(a + b*x) + log(S(1) - (sqrt(-a**S(2) + S(1)) + S(1))*exp(-asech(a + b*x))/a)*asech(a + b*x) - log(S(1) + exp(-S(2)*asech(a + b*x)))*asech(a + b*x))
rubi.add(rule632)
pattern633 = Pattern(Integral(acsch(a_ + x_*WC('b', S(1)))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)))
rule633 = ReplacementRule(pattern633, lambda x, a, b : PolyLog(S(2), (-sqrt(a**S(2) + S(1)) + S(-1))*exp(acsch(a + b*x))/a) + PolyLog(S(2), (sqrt(a**S(2) + S(1)) + S(-1))*exp(acsch(a + b*x))/a) + PolyLog(S(2), exp(-S(2)*acsch(a + b*x)))/S(2) + log(S(1) + (-sqrt(a**S(2) + S(1)) + S(1))*exp(acsch(a + b*x))/a)*acsch(a + b*x) + log(S(1) + (sqrt(a**S(2) + S(1)) + S(1))*exp(acsch(a + b*x))/a)*acsch(a + b*x) - log(S(1) - exp(-S(2)*acsch(a + b*x)))*acsch(a + b*x) - acsch(a + b*x)**S(2))
rubi.add(rule633)
pattern634 = Pattern(Integral(x_**WC('m', S(1))*asech(a_ + x_*WC('b', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule634 = ReplacementRule(pattern634, lambda x, a, b, m : b**(-m + S(-1))*(b**(m + S(1))*x**(m + S(1)) - (-a)**(m + S(1)))*asech(a + b*x)/(m + S(1)) + b**(-m + S(-1))*Subst(Int(x**(-m + S(-1))*((-a*x)**(m + S(1)) - (-a*x + S(1))**(m + S(1)))/(sqrt(x + S(-1))*sqrt(x + S(1))), x), x, 1/(a + b*x))/(m + S(1)))
rubi.add(rule634)
pattern635 = Pattern(Integral(x_**WC('m', S(1))*acsch(a_ + x_*WC('b', S(1))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: IntegerQ(m)), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule635 = ReplacementRule(pattern635, lambda x, a, b, m : b**(-m + S(-1))*(b**(m + S(1))*x**(m + S(1)) - (-a)**(m + S(1)))*acsch(a + b*x)/(m + S(1)) + b**(-m + S(-1))*Subst(Int(x**(-m + S(-1))*((-a*x)**(m + S(1)) - (-a*x + S(1))**(m + S(1)))/sqrt(x**S(2) + S(1)), x), x, 1/(a + b*x))/(m + S(1)))
rubi.add(rule635)
pattern636 = Pattern(Integral(x_**WC('m', S(1))*asech(a_ + x_*WC('b', S(1)))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule636 = ReplacementRule(pattern636, lambda x, b, m, a, n : -b**(-m + S(-1))*Subst(Int(x**n*(-a + sech(x))**m*tanh(x)*sech(x), x), x, asech(a + b*x)))
rubi.add(rule636)
pattern637 = Pattern(Integral(x_**WC('m', S(1))*acsch(a_ + x_*WC('b', S(1)))**n_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m: PositiveIntegerQ(m)))
rule637 = ReplacementRule(pattern637, lambda x, b, m, a, n : -b**(-m + S(-1))*Subst(Int(x**n*(-a + csch(x))**m*coth(x)*csch(x), x), x, acsch(a + b*x)))
rubi.add(rule637)
pattern638 = Pattern(Integral(WC('u', S(1))*asech(WC('c', S(1))/(x_**WC('n', S(1))*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m, x: FreeQ(m, x)))
rule638 = ReplacementRule(pattern638, lambda x, b, m, c, a, u, n : Int(u*acosh(a/c + b*x**n/c)**m, x))
rubi.add(rule638)
pattern639 = Pattern(Integral(WC('u', S(1))*acsch(WC('c', S(1))/(x_**WC('n', S(1))*WC('b', S(1)) + WC('a', S(0))))**WC('m', S(1)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda n, x: FreeQ(n, x)), CustomConstraint(lambda m, x: FreeQ(m, x)))
rule639 = ReplacementRule(pattern639, lambda x, b, m, c, a, u, n : Int(u*asinh(a/c + b*x**n/c)**m, x))
rubi.add(rule639)
pattern640 = Pattern(Integral(exp(asech(x_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)))
rule640 = ReplacementRule(pattern640, lambda x, a : x*exp(asech(a*x)) + Int(sqrt((-a*x + S(1))/(a*x + S(1)))/(x*(-a*x + S(1))), x)/a + log(x)/a)
rubi.add(rule640)
pattern641 = Pattern(Integral(exp(asech(x_**p_*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule641 = ReplacementRule(pattern641, lambda x, a, p : x*exp(asech(a*x**p)) + p*sqrt(a*x**p + S(1))*sqrt(1/(a*x**p + S(1)))*Int(x**(-p)/(sqrt(-a*x**p + S(1))*sqrt(a*x**p + S(1))), x)/a + p*Int(x**(-p), x)/a)
rubi.add(rule641)
pattern642 = Pattern(Integral(exp(acsch(x_**WC('p', S(1))*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule642 = ReplacementRule(pattern642, lambda x, a, p : Int(sqrt(S(1) + x**(-S(2)*p)/a**S(2)), x) + Int(x**(-p), x)/a)
rubi.add(rule642)
pattern643 = Pattern(Integral(exp(WC('n', S(1))*asech(u_)), x_), CustomConstraint(lambda n: IntegerQ(n)))
rule643 = ReplacementRule(pattern643, lambda x, u, n : Int((sqrt((-u + S(1))/(u + S(1))) + sqrt((-u + S(1))/(u + S(1)))/u + 1/u)**n, x))
rubi.add(rule643)
pattern644 = Pattern(Integral(exp(WC('n', S(1))*acsch(u_)), x_), CustomConstraint(lambda n: IntegerQ(n)))
rule644 = ReplacementRule(pattern644, lambda x, u, n : Int((sqrt(S(1) + u**(S(-2))) + 1/u)**n, x))
rubi.add(rule644)
pattern645 = Pattern(Integral(exp(asech(x_**WC('p', S(1))*WC('a', S(1))))/x_, x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule645 = ReplacementRule(pattern645, lambda x, a, p : sqrt(a*x**p + S(1))*sqrt(1/(a*x**p + S(1)))*Int(x**(-p + S(-1))*sqrt(-a*x**p + S(1))*sqrt(a*x**p + S(1)), x)/a - x**(-p)/(a*p))
rubi.add(rule645)
pattern646 = Pattern(Integral(x_**WC('m', S(1))*exp(asech(x_**WC('p', S(1))*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)), CustomConstraint(lambda m: NonzeroQ(m + S(1))))
rule646 = ReplacementRule(pattern646, lambda x, a, p, m : x**(m + S(1))*exp(asech(a*x**p))/(m + S(1)) + p*sqrt(a*x**p + S(1))*sqrt(1/(a*x**p + S(1)))*Int(x**(m - p)/(sqrt(-a*x**p + S(1))*sqrt(a*x**p + S(1))), x)/(a*(m + S(1))) + p*Int(x**(m - p), x)/(a*(m + S(1))))
rubi.add(rule646)
pattern647 = Pattern(Integral(x_**WC('m', S(1))*exp(acsch(x_**WC('p', S(1))*WC('a', S(1)))), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda p, x: FreeQ(p, x)))
rule647 = ReplacementRule(pattern647, lambda x, a, p, m : Int(x**m*sqrt(S(1) + x**(-S(2)*p)/a**S(2)), x) + Int(x**(m - p), x)/a)
rubi.add(rule647)
pattern648 = Pattern(Integral(x_**WC('m', S(1))*exp(WC('n', S(1))*asech(u_)), x_), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: IntegerQ(n)))
rule648 = ReplacementRule(pattern648, lambda x, u, n, m : Int(x**m*(sqrt((-u + S(1))/(u + S(1))) + sqrt((-u + S(1))/(u + S(1)))/u + 1/u)**n, x))
rubi.add(rule648)
pattern649 = Pattern(Integral(x_**WC('m', S(1))*exp(WC('n', S(1))*acsch(u_)), x_), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda n: IntegerQ(n)))
rule649 = ReplacementRule(pattern649, lambda x, u, n, m : Int(x**m*(sqrt(S(1) + u**(S(-2))) + 1/u)**n, x))
rubi.add(rule649)
pattern650 = Pattern(Integral(asech(u_), x_), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, u: Not(FunctionOfExponentialQ(u, x))))
rule650 = ReplacementRule(pattern650, lambda x, u : x*asech(u) + sqrt(-u**S(2) + S(1))*Int(SimplifyIntegrand(x*D(u, x)/(u*sqrt(-u**S(2) + S(1))), x), x)/(u*sqrt(S(-1) + 1/u)*sqrt(S(1) + 1/u)))
rubi.add(rule650)
pattern651 = Pattern(Integral(acsch(u_), x_), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, u: Not(FunctionOfExponentialQ(u, x))))
rule651 = ReplacementRule(pattern651, lambda x, u : -u*Int(SimplifyIntegrand(x*D(u, x)/(u*sqrt(-u**S(2) + S(-1))), x), x)/sqrt(-u**S(2)) + x*acsch(u))
rubi.add(rule651)
pattern652 = Pattern(Integral((x_*WC('d', S(1)) + WC('c', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*asech(u_)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: NonzeroQ(m + S(1))), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, m, c, d, u: Not(FunctionOfQ((c + d*x)**(m + S(1)), u, x))), CustomConstraint(lambda x, u: Not(FunctionOfExponentialQ(u, x))))
rule652 = ReplacementRule(pattern652, lambda x, b, m, c, a, d, u : b*sqrt(-u**S(2) + S(1))*Int(SimplifyIntegrand((c + d*x)**(m + S(1))*D(u, x)/(u*sqrt(-u**S(2) + S(1))), x), x)/(d*u*sqrt(S(-1) + 1/u)*sqrt(S(1) + 1/u)*(m + S(1))) + (a + b*asech(u))*(c + d*x)**(m + S(1))/(d*(m + S(1))))
rubi.add(rule652)
pattern653 = Pattern(Integral((x_*WC('d', S(1)) + WC('c', S(0)))**WC('m', S(1))*(WC('a', S(0)) + WC('b', S(1))*acsch(u_)), x_), CustomConstraint(lambda a, x: FreeQ(a, x)), CustomConstraint(lambda b, x: FreeQ(b, x)), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda m: NonzeroQ(m + S(1))), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda x, m, c, d, u: Not(FunctionOfQ((c + d*x)**(m + S(1)), u, x))), CustomConstraint(lambda x, u: Not(FunctionOfExponentialQ(u, x))))
rule653 = ReplacementRule(pattern653, lambda x, b, m, c, a, d, u : -b*u*Int(SimplifyIntegrand((c + d*x)**(m + S(1))*D(u, x)/(u*sqrt(-u**S(2) + S(-1))), x), x)/(d*sqrt(-u**S(2))*(m + S(1))) + (a + b*acsch(u))*(c + d*x)**(m + S(1))/(d*(m + S(1))))
rubi.add(rule653)
pattern654 = Pattern(Integral(v_*(WC('a', S(0)) + WC('b', S(1))*asech(u_)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda v, x: Not(MatchQ(v, Condition((x*Optional(Pattern(d, Blank)) + Optional(Pattern(c, Blank)))**Optional(Pattern(m, Blank)))))), CustomConstraint(lambda a, u, x, b, w: InverseFunctionFreeQ(w, x)))
def With654(x, b, v, a, u):
w = IntHide(v, x)
return b*sqrt(-u**S(2) + S(1))*Int(SimplifyIntegrand(w*D(u, x)/(u*sqrt(-u**S(2) + S(1))), x), x)/(u*sqrt(S(-1) + 1/u)*sqrt(S(1) + 1/u)) + Dist(a + b*asech(u), w, x)
rule654 = ReplacementRule(pattern654, lambda x, b, v, a, u : With654(x, b, v, a, u))
rubi.add(rule654)
pattern655 = Pattern(Integral(v_*(WC('a', S(0)) + WC('b', S(1))*acsch(u_)), x_), CustomConstraint(lambda c, x: FreeQ(c, x)), CustomConstraint(lambda d, x: FreeQ(d, x)), CustomConstraint(lambda m, x: FreeQ(m, x)), CustomConstraint(lambda x, u: InverseFunctionFreeQ(u, x)), CustomConstraint(lambda v, x: Not(MatchQ(v, Condition((x*Optional(Pattern(d, Blank)) + Optional(Pattern(c, Blank)))**Optional(Pattern(m, Blank)))))), CustomConstraint(lambda a, u, x, b, w: InverseFunctionFreeQ(w, x)))
def With655(x, b, v, a, u):
w = IntHide(v, x)
return -b*u*Int(SimplifyIntegrand(w*D(u, x)/(u*sqrt(-u**S(2) + S(-1))), x), x)/sqrt(-u**S(2)) + Dist(a + b*acsch(u), w, x)
rule655 = ReplacementRule(pattern655, lambda x, b, v, a, u : With655(x, b, v, a, u))
rubi.add(rule655)
return rubi
| 0
| 0
| 0
| 0
| 0
| 513,811
| 0
| 6,879
| 201
|
00f674dd269b5ded3bd8cfeb250e25da5e9bb9c5
| 1,777
|
py
|
Python
|
l19z3.py
|
hubieva-a/lab19
|
516357b25d62bc7aab9a6b45528b4611adf9acdd
|
[
"MIT"
] | null | null | null |
l19z3.py
|
hubieva-a/lab19
|
516357b25d62bc7aab9a6b45528b4611adf9acdd
|
[
"MIT"
] | null | null | null |
l19z3.py
|
hubieva-a/lab19
|
516357b25d62bc7aab9a6b45528b4611adf9acdd
|
[
"MIT"
] | null | null | null |
root = Tk()
text1 = Text(width=20,height=1)
label1 = Label(width=20)
but1 = Button(width=5, height=5, bg='#ff0000')
but2 = Button(width=5, height=5, bg='#ff7d00')
but3 = Button(width=5, height=5, bg='#ffff00')
but4 = Button(width=5, height=5, bg='#00ff00')
but5 = Button(width=5, height=5, bg='#007dff')
but6 = Button(width=5, height=5, bg='#0000ff')
but7 = Button(width=5, height=5, bg='#7d00ff')
but1.bind('<Button-1>', color_red)
but2.bind('<Button-1>', color_orange)
but3.bind('<Button-1>', color_yellow)
but4.bind('<Button-1>', color_green)
but5.bind('<Button-1>', color_blue)
but6.bind('<Button-1>', color_indigo)
but7.bind('<Button-1>', color_purple)
text1.pack()
label1.pack()
but1.pack(side='left')
but2.pack(side='left')
but3.pack(side='left')
but4.pack(side='left')
but5.pack(side='left')
but6.pack(side='left')
but7.pack(side='left')
root.mainloop()
| 26.132353
| 47
| 0.62296
|
from tkinter import *
def color_red(event):
text1.delete(1.0, "end")
text1.insert(1.0,'Красный')
label1['text'] = '#ff0000'
def color_orange(event):
text1.delete(1.0, "end")
text1.insert(1.0,'Оранжевый')
label1['text'] = '#ff7d00'
def color_yellow(event):
text1.delete(1.0, "end")
text1.insert(1.0,'Жёлтый')
label1['text'] = '#ffff00'
def color_green(event):
text1.delete(1.0, "end")
text1.insert(1.0,'Зеленый')
label1['text'] = '#00ff00'
def color_blue(event):
text1.delete(1.0, "end")
text1.insert(1.0,'Голубой')
label1['text'] = '#007dff'
def color_indigo(event):
text1.delete(1.0, "end")
text1.insert(1.0,'Синий')
label1['text'] = '#0000ff'
def color_purple(event):
text1.delete(1.0, "end")
text1.insert(1.0,'Фиолетовый')
label1['text'] = '#7d00ff'
root = Tk()
text1 = Text(width=20,height=1)
label1 = Label(width=20)
but1 = Button(width=5, height=5, bg='#ff0000')
but2 = Button(width=5, height=5, bg='#ff7d00')
but3 = Button(width=5, height=5, bg='#ffff00')
but4 = Button(width=5, height=5, bg='#00ff00')
but5 = Button(width=5, height=5, bg='#007dff')
but6 = Button(width=5, height=5, bg='#0000ff')
but7 = Button(width=5, height=5, bg='#7d00ff')
but1.bind('<Button-1>', color_red)
but2.bind('<Button-1>', color_orange)
but3.bind('<Button-1>', color_yellow)
but4.bind('<Button-1>', color_green)
but5.bind('<Button-1>', color_blue)
but6.bind('<Button-1>', color_indigo)
but7.bind('<Button-1>', color_purple)
text1.pack()
label1.pack()
but1.pack(side='left')
but2.pack(side='left')
but3.pack(side='left')
but4.pack(side='left')
but5.pack(side='left')
but6.pack(side='left')
but7.pack(side='left')
root.mainloop()
| 102
| 0
| 0
| 0
| 0
| 631
| 0
| 0
| 198
|
c78e735101ac48aa6d6991855b779aa1b42eaff5
| 40,950
|
py
|
Python
|
src/rtl/decoder.py
|
giraffe50/RISCV-M4F
|
1b1ed756a8ea02c2d2a11d8472f8603847170ad8
|
[
"Apache-2.0"
] | 3
|
2021-01-13T03:41:14.000Z
|
2021-03-23T11:31:48.000Z
|
src/rtl/decoder.py
|
scutdig/LG-32HP
|
1b1ed756a8ea02c2d2a11d8472f8603847170ad8
|
[
"Apache-2.0"
] | 1
|
2021-03-01T09:32:59.000Z
|
2021-03-01T09:32:59.000Z
|
src/rtl/decoder.py
|
scutdig/LG-32HP
|
1b1ed756a8ea02c2d2a11d8472f8603847170ad8
|
[
"Apache-2.0"
] | 4
|
2021-01-07T03:01:26.000Z
|
2021-02-28T02:20:10.000Z
|
"""
Copyright Digisim, Computer Architecture team of South China University of Technology,
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.
Author Name: Ruohui Chen
Date: 2021-03-08
File Name: deocder.py
Description:
"""
# Helper function for generating CSRs access illegal judgement
# Hardware Performance Monitor
# Hardware Performance Monitor (unprivileged read-only mirror CSRs)
# PULP_XPULP, PULP_CLUSTER, A_EXTENSION, FPU, APU_WOP_CPU not used in our implementation
if __name__ == '__main__':
Emitter.dumpVerilog(Emitter.dump(Emitter.emit(decoder()), "decoder.fir"))
| 53.952569
| 136
| 0.522344
|
"""
Copyright Digisim, Computer Architecture team of South China University of Technology,
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.
Author Name: Ruohui Chen
Date: 2021-03-08
File Name: deocder.py
Description:
"""
from pyhcl import *
from src.include.pkg import *
# Helper function for generating CSRs access illegal judgement
# Hardware Performance Monitor
def csrs_hpm(addr):
return (addr == CSR_MCYCLE) | (addr == CSR_MINSTRET) | (addr == CSR_MHPMCOUNTER3) | (addr == CSR_MHPMCOUNTER4) | \
(addr == CSR_MHPMCOUNTER5) | (addr == CSR_MHPMCOUNTER6) | (addr == CSR_MHPMCOUNTER7) | (addr == CSR_MHPMCOUNTER8) | \
(addr == CSR_MHPMCOUNTER9) | (addr == CSR_MHPMCOUNTER10) | (addr == CSR_MHPMCOUNTER11) | (addr == CSR_MHPMCOUNTER12) | \
(addr == CSR_MHPMCOUNTER13) | (addr == CSR_MHPMCOUNTER14) | (addr == CSR_MHPMCOUNTER15) | (addr == CSR_MHPMCOUNTER16) | \
(addr == CSR_MHPMCOUNTER17) | (addr == CSR_MHPMCOUNTER18) | (addr == CSR_MHPMCOUNTER19) | (addr == CSR_MHPMCOUNTER20) | \
(addr == CSR_MHPMCOUNTER21) | (addr == CSR_MHPMCOUNTER22) | (addr == CSR_MHPMCOUNTER23) | (addr == CSR_MHPMCOUNTER24) | \
(addr == CSR_MHPMCOUNTER25) | (addr == CSR_MHPMCOUNTER26) | (addr == CSR_MHPMCOUNTER27) | (addr == CSR_MHPMCOUNTER28) | \
(addr == CSR_MHPMCOUNTER29) | (addr == CSR_MHPMCOUNTER30) | (addr == CSR_MHPMCOUNTER31) | \
(addr == CSR_MCYCLEH) | (addr == CSR_MINSTRETH) | \
(addr == CSR_MHPMCOUNTER3H) | (addr == CSR_MHPMCOUNTER4H) | \
(addr == CSR_MHPMCOUNTER5H) | (addr == CSR_MHPMCOUNTER6H) | (addr == CSR_MHPMCOUNTER7H) | (addr == CSR_MHPMCOUNTER8H) | \
(addr == CSR_MHPMCOUNTER9H) | (addr == CSR_MHPMCOUNTER10H) | (addr == CSR_MHPMCOUNTER11H) | (addr == CSR_MHPMCOUNTER12H) | \
(addr == CSR_MHPMCOUNTER13H) | (addr == CSR_MHPMCOUNTER14H) | (addr == CSR_MHPMCOUNTER15H) | (addr == CSR_MHPMCOUNTER16H) | \
(addr == CSR_MHPMCOUNTER17H) | (addr == CSR_MHPMCOUNTER18H) | (addr == CSR_MHPMCOUNTER19H) | (addr == CSR_MHPMCOUNTER20H) | \
(addr == CSR_MHPMCOUNTER21H) | (addr == CSR_MHPMCOUNTER22H) | (addr == CSR_MHPMCOUNTER23H) | (addr == CSR_MHPMCOUNTER24H) | \
(addr == CSR_MHPMCOUNTER25H) | (addr == CSR_MHPMCOUNTER26H) | (addr == CSR_MHPMCOUNTER27H) | (addr == CSR_MHPMCOUNTER28H) | \
(addr == CSR_MHPMCOUNTER29H) | (addr == CSR_MHPMCOUNTER30H) | (addr == CSR_MHPMCOUNTER31H) | \
(addr == CSR_MCOUNTINHIBIT) | (addr == CSR_MHPMEVENT3) | (addr == CSR_MHPMEVENT4) | \
(addr == CSR_MHPMEVENT5) | (addr == CSR_MHPMEVENT6) | (addr == CSR_MHPMEVENT7) | (addr == CSR_MHPMEVENT8) | \
(addr == CSR_MHPMEVENT9) | (addr == CSR_MHPMEVENT10) | (addr == CSR_MHPMEVENT11) | (addr == CSR_MHPMEVENT12) | \
(addr == CSR_MHPMEVENT13) | (addr == CSR_MHPMEVENT14) | (addr == CSR_MHPMEVENT15) | (addr == CSR_MHPMEVENT16) | \
(addr == CSR_MHPMEVENT17) | (addr == CSR_MHPMEVENT18) | (addr == CSR_MHPMEVENT19) | (addr == CSR_MHPMEVENT20) | \
(addr == CSR_MHPMEVENT21) | (addr == CSR_MHPMEVENT22) | (addr == CSR_MHPMEVENT23) | (addr == CSR_MHPMEVENT24) | \
(addr == CSR_MHPMEVENT25) | (addr == CSR_MHPMEVENT26) | (addr == CSR_MHPMEVENT27) | (addr == CSR_MHPMEVENT28) | \
(addr == CSR_MHPMEVENT29) | (addr == CSR_MHPMEVENT30) | (addr == CSR_MHPMEVENT31)
# Hardware Performance Monitor (unprivileged read-only mirror CSRs)
def csrs_hpm_mirror(addr):
return (addr == CSR_CYCLE) | \
(addr == CSR_INSTRET) | \
(addr == CSR_HPMCOUNTER3) | \
(addr == CSR_HPMCOUNTER4) | (addr == CSR_HPMCOUNTER5) | (addr == CSR_HPMCOUNTER6) | (addr == CSR_HPMCOUNTER7) | \
(addr == CSR_HPMCOUNTER8) | (addr == CSR_HPMCOUNTER9) | (addr == CSR_HPMCOUNTER10) | (addr == CSR_HPMCOUNTER11) | \
(addr == CSR_HPMCOUNTER12) | (addr == CSR_HPMCOUNTER13) | (addr == CSR_HPMCOUNTER14) | (addr == CSR_HPMCOUNTER15) | \
(addr == CSR_HPMCOUNTER16) | (addr == CSR_HPMCOUNTER17) | (addr == CSR_HPMCOUNTER18) | (addr == CSR_HPMCOUNTER19) | \
(addr == CSR_HPMCOUNTER20) | (addr == CSR_HPMCOUNTER21) | (addr == CSR_HPMCOUNTER22) | (addr == CSR_HPMCOUNTER23) | \
(addr == CSR_HPMCOUNTER24) | (addr == CSR_HPMCOUNTER25) | (addr == CSR_HPMCOUNTER26) | (addr == CSR_HPMCOUNTER27) | \
(addr == CSR_HPMCOUNTER28) | (addr == CSR_HPMCOUNTER29) | (addr == CSR_HPMCOUNTER30) | (addr == CSR_HPMCOUNTER31) | \
(addr == CSR_CYCLEH) | \
(addr == CSR_INSTRETH) | \
(addr == CSR_HPMCOUNTER3H) | \
(addr == CSR_HPMCOUNTER4H) | (addr == CSR_HPMCOUNTER5H) | (addr == CSR_HPMCOUNTER6H) | (addr == CSR_HPMCOUNTER7H) | \
(addr == CSR_HPMCOUNTER8H) | (addr == CSR_HPMCOUNTER9H) | (addr == CSR_HPMCOUNTER10H) | (addr == CSR_HPMCOUNTER11H) | \
(addr == CSR_HPMCOUNTER12H) | (addr == CSR_HPMCOUNTER13H) | (addr == CSR_HPMCOUNTER14H) | (addr == CSR_HPMCOUNTER15H) | \
(addr == CSR_HPMCOUNTER16H) | (addr == CSR_HPMCOUNTER17H) | (addr == CSR_HPMCOUNTER18H) | (addr == CSR_HPMCOUNTER19H) | \
(addr == CSR_HPMCOUNTER20H) | (addr == CSR_HPMCOUNTER21H) | (addr == CSR_HPMCOUNTER22H) | (addr == CSR_HPMCOUNTER23H) | \
(addr == CSR_HPMCOUNTER24H) | (addr == CSR_HPMCOUNTER25H) | (addr == CSR_HPMCOUNTER26H) | (addr == CSR_HPMCOUNTER27H) | \
(addr == CSR_HPMCOUNTER28H) | (addr == CSR_HPMCOUNTER29H) | (addr == CSR_HPMCOUNTER30H) | (addr == CSR_HPMCOUNTER31H)
# PULP_XPULP, PULP_CLUSTER, A_EXTENSION, FPU, APU_WOP_CPU not used in our implementation
def decoder(PULP_SECURE=0, USE_PMP=0, DEBUG_TRIGGER_EN=1):
class DECODER(Module):
io = IO(
# Signals running to/from controller
deassert_we_i=Input(Bool), # Deassert we, we are stalled or not active
illegal_insn_o=Output(Bool), # Illegal instruction encountered
ebrk_insn_o=Output(Bool), # Trap instruction encountered
mret_insn_o=Output(Bool), # Return from exception instruction encountered (M)
uret_insn_o=Output(Bool), # Return from exception instruction encountered (S)
dret_insn_o=Output(Bool), # Return from debug (M)
mret_dec_o=Output(Bool), # Return from exception instruction encountered (M) without deassert
uret_dec_o=Output(Bool), # Return from exception instruction encountered (M) without deassert
dret_dec_o=Output(Bool), # Return from debug (M) without deassert
ecall_insn_o=Output(Bool), # Environment call (syscall) instruction encountered
wfi_o=Output(Bool), # Pipeline flush is requested
fencei_insn_o=Output(Bool), # FENCE.I instruction
rega_used_o=Output(Bool), # rs1 is used by current instruction
regb_used_o=Output(Bool), # rs2 is used by current instruction
regc_used_o=Output(Bool), # rs3 is used by current instruction
# fp registers currently not used in our implementation
# Bit manipulation currently not used in our implementation
# From IF/ID pipeline
instr_rdata_i=Input(U.w(32)), # Instruction read from instr memory/cache
illegal_c_insn_i=Input(Bool), # Compressed instruction decode failed
# ALU signals
alu_en_o=Output(Bool), # ALU enable
alu_operator_o=Output(U.w(ALU_OP_WIDTH)), # ALU operation selection
alu_op_a_mux_sel_o=Output(U.w(3)), # Operand a selection: reg value, PC, immediate or zero
alu_op_b_mux_sel_o=Output(U.w(3)), # Operand b selection: reg value or immediate
alu_op_c_mux_sel_o=Output(U.w(2)), # Reg value or jump target
# alu_vec_mode_o, scalar_replication_o, scalar_replication_c_o
# are deprecated currently in our implementation
imm_a_mux_sel_o=Output(Bool), # Immediate selection for operand a
imm_b_mux_sel_o=Output(U.w(4)), # Immediate selection for operand b
regc_mux_o=Output(U.w(2)), # Register c selection: S3, RD or 0
# is_clpx_o and is_subrot_o are deprecated currently in our implementation
# MUL related control signals
mult_operator_o=Output(U.w(MUL_OP_WIDTH)), # Multiplication operation selection
mult_int_en_o=Output(Bool), # Perform integer multiplication
# mult_dot_en_o, mult_sel_subword_o, mult_dot_signed_o are deprecated
# currently in our implementation
mult_imm_mux_o=Output(Bool), # Multiplication immediate mux selector
mult_signed_mode_o=Output(U.w(2)), # Multiplication in signed mode
# APU and FPU currently not implemented
# Register file related signals
regfile_mem_we_o=Output(Bool), # Write enable for regfile
regfile_alu_we_o=Output(Bool), # Write enable for 2nd regfile port
regfile_alu_we_dec_o=Output(Bool), # Write enable for 2nd regfile port without deassert
regfile_alu_waddr_sel_o=Output(Bool), # Select register write address for ALU/MUL operations
# CSR manipulation
csr_access_o=Output(Bool), # Access to CSR
csr_status_o=Output(Bool), # Access to xstatus CSR
csr_op_o=Output(U.w(CSR_OP_WIDTH)), # Operation to perform on CSR
current_priv_lvl_i=Input(U.w(PRIV_SEL_WIDTH)), # The current privilege level
# LD/ST unit signals
data_req_o=Output(Bool), # Start transaction to data memory
data_we_o=Output(Bool), # Data memory write enable
prepost_useincr_o=Output(Bool), # When not active bypass the alu result for address calculation
data_type_o=Output(U.w(2)), # Data type on data memory: byte, half word or word
data_sign_extension_o=Output(U.w(2)), # Sign extension on read data from data memory
data_reg_offset_o=Output(U.w(2)), # Offset in byte inside register for stores
# data_load_event_o is deprecated currently in our implementation
# Atomic memory access and hwloop signals are deprecated currently in our implementation
debug_mode_i=Input(Bool),
debug_wfi_no_sleep_i=Input(Bool),
# Jump/Branches
ctrl_transfer_insn_in_dec_o=Output(U.w(2)), # Control transfer instruction without deassert
ctrl_transfer_insn_in_id_o=Output(U.w(2)), # Control transfer instruction is decoded
ctrl_transfer_target_mux_sel_o=Output(U.w(2)), # Jump target selection
# HPM related control signals
mcounteren_i=Input(U.w(32)), # HPM related control signals
)
# Write enable/request control
regfile_mem_we = Wire(Bool)
regfile_alu_we = Wire(Bool)
data_req = Wire(Bool)
csr_illegal = Wire(Bool)
ctrl_transfer_insn = Wire(U.w(2))
csr_op = Wire(U.w(CSR_OP_WIDTH))
alu_en = Wire(Bool)
mult_int_en = Wire(Bool)
##################################################################################
# Decoder
##################################################################################
# Initial assign
ctrl_transfer_insn <<= BRANCH_NONE
io.ctrl_transfer_target_mux_sel_o <<= JT_JAL
alu_en <<= Bool(True)
io.alu_operator_o <<= ALU_SLTU
io.alu_op_a_mux_sel_o <<= OP_A_REGA_OR_FWD
io.alu_op_b_mux_sel_o <<= OP_B_REGB_OR_FWD
io.alu_op_c_mux_sel_o <<= OP_C_REGC_OR_FWD
io.regc_mux_o <<= REGC_ZERO
io.imm_a_mux_sel_o <<= IMMA_ZERO
io.imm_b_mux_sel_o <<= IMMB_I
io.mult_operator_o <<= MUL_I
mult_int_en <<= Bool(False)
io.mult_int_en_o <<= Bool(False)
io.mult_imm_mux_o <<= MIMM_ZERO
io.mult_signed_mode_o <<= U.w(2)(0)
regfile_mem_we <<= Bool(False)
regfile_alu_we <<= Bool(False)
io.regfile_alu_waddr_sel_o <<= Bool(True)
io.csr_access_o <<= Bool(False)
io.csr_status_o <<= Bool(False)
csr_illegal <<= Bool(False)
csr_op <<= CSR_OP_READ
io.mret_insn_o <<= Bool(False)
io.uret_insn_o <<= Bool(False)
io.dret_insn_o <<= Bool(False)
io.data_we_o <<= Bool(False)
io.data_type_o <<= U.w(2)(0)
io.data_sign_extension_o <<= U.w(2)(0)
io.data_reg_offset_o <<= U.w(2)(0)
data_req <<= Bool(False)
io.prepost_useincr_o <<= Bool(True)
io.illegal_insn_o <<= Bool(False)
io.ebrk_insn_o <<= Bool(False)
io.ecall_insn_o <<= Bool(False)
io.wfi_o <<= Bool(False)
io.fencei_insn_o <<= Bool(False)
io.rega_used_o <<= Bool(False)
io.regb_used_o <<= Bool(False)
io.regc_used_o <<= Bool(False)
io.mret_dec_o <<= Bool(False)
io.uret_dec_o <<= Bool(False)
io.dret_dec_o <<= Bool(False)
##################################################################################
# Jumps
##################################################################################
# OPCODE Mux
with when(io.instr_rdata_i[6:0] == OPCODE_JAL):
# Jump and Link
io.ctrl_transfer_target_mux_sel_o <<= JT_JAL
ctrl_transfer_insn <<= BRANCH_JAL
# Calculate and store PC+4
io.alu_op_a_mux_sel_o <<= OP_A_CURRPC
io.alu_op_b_mux_sel_o <<= OP_B_IMM
io.imm_b_mux_sel_o <<= IMMB_PCINCR
io.alu_operator_o <<= ALU_ADD
regfile_alu_we <<= Bool(True)
# Calculate jump target (= PC + UJ imm)
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_JALR):
# Jump and Link Register
io.ctrl_transfer_target_mux_sel_o <<= JT_JALR
ctrl_transfer_insn <<= BRANCH_JALR
# Calculate and store PC+4
io.alu_op_a_mux_sel_o <<= OP_A_CURRPC
io.alu_op_b_mux_sel_o <<= OP_B_IMM
io.imm_b_mux_sel_o <<= IMMB_PCINCR
io.alu_operator_o <<= ALU_ADD
regfile_alu_we <<= Bool(True)
# Calculate jump target (= RS1 + I imm)
io.rega_used_o <<= Bool(True)
with when(io.instr_rdata_i[14:12] != U.w(3)(0)):
# funct3 != 0b000
ctrl_transfer_insn <<= BRANCH_NONE
regfile_alu_we <<= Bool(False)
io.illegal_insn_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_BRANCH):
# All Branch instructions
io.ctrl_transfer_target_mux_sel_o <<= JT_COND
ctrl_transfer_insn <<= BRANCH_COND
io.alu_op_c_mux_sel_o <<= OP_C_JT
io.rega_used_o <<= Bool(True)
io.regb_used_o <<= Bool(True)
# PULP_XPULP always == 0
# funct3
io.alu_operator_o <<= LookUpTable(io.instr_rdata_i[14:12], {
U.w(3)(0b000): ALU_EQ,
U.w(3)(0b001): ALU_NE,
U.w(3)(0b100): ALU_LTS,
U.w(3)(0b101): ALU_GES,
U.w(3)(0b110): ALU_LTU,
U.w(3)(0b111): ALU_GEU,
...: ALU_SLTU
})
with when((io.instr_rdata_i[14:12] == U.w(3)(0b010)) |
(io.instr_rdata_i[14:12] == U.w(3)(0b011))):
io.illegal_insn_o <<= Bool(True)
##################################################################################
# LD/ST
##################################################################################
# All Store
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_STORE):
data_req <<= Bool(True)
io.data_we_o <<= Bool(True)
io.rega_used_o <<= Bool(True)
io.regb_used_o <<= Bool(True)
io.alu_operator_o <<= ALU_ADD
# Pass write data through ALU operand c
io.alu_op_c_mux_sel_o <<= OP_C_REGB_OR_FWD
# PULP_XPULP always == 0
with when(io.instr_rdata_i[14] == U.w(1)(0)):
io.imm_b_mux_sel_o <<= IMMB_S
io.alu_op_b_mux_sel_o <<= OP_B_IMM
with otherwise():
io.illegal_insn_o <<= Bool(True)
# funct3
io.data_type_o <<= LookUpTable(io.instr_rdata_i[13:12], {
U.w(2)(0b00): U.w(2)(0b10), # SB
U.w(2)(0b01): U.w(2)(0b01), # SH
U.w(2)(0b10): U.w(2)(0b00), # SW
...: U.w(2)(0b00)
})
with when(io.instr_rdata_i[13:12] == U.w(2)(0b11)):
# Undefined
data_req <<= Bool(False)
io.data_we_o <<= Bool(False)
io.illegal_insn_o <<= Bool(True)
# All Load
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_LOAD):
data_req <<= Bool(True)
regfile_mem_we <<= Bool(True)
io.rega_used_o <<= Bool(True)
io.data_type_o <<= U.w(2)(0b00) # Read always read word
# offset from immediate
io.alu_operator_o <<= ALU_ADD
io.alu_op_b_mux_sel_o <<= OP_B_IMM
io.imm_b_mux_sel_o <<= IMMB_I
# sign/zero extension
# funct3[2] (bit 14): Zero (= 1), Sign (= 0)
# Output
io.data_sign_extension_o <<= CatBits(U.w(1)(0), ~io.instr_rdata_i[14])
# Load size
io.data_type_o <<= LookUpTable(io.instr_rdata_i[13:12], {
U.w(2)(0b00): U.w(2)(0b10), # LB
U.w(2)(0b01): U.w(2)(0b01), # LH
U.w(2)(0b10): U.w(2)(0b00), # LW
...: U.w(2)(0b00) # Illegal
})
# funct3 = 0b011, 0b110, 0b111 are illegal
with when((io.instr_rdata_i[14:12] == U.w(3)(0b111)) |
(io.instr_rdata_i[14:12] == U.w(3)(0b110)) |
(io.instr_rdata_i[14:12] == U.w(3)(0b011))):
io.illegal_insn_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_AMO):
# We currently didn't support AMO instructions yet
io.illegal_insn_o <<= Bool(True)
##################################################################################
# ALU
##################################################################################
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_LUI):
# Load Upper Immediate
io.alu_op_a_mux_sel_o <<= OP_A_IMM
io.alu_op_b_mux_sel_o <<= OP_B_IMM
io.imm_a_mux_sel_o <<= IMMA_ZERO
io.imm_b_mux_sel_o <<= IMMB_U
io.alu_operator_o <<= ALU_ADD
regfile_alu_we <<= Bool(True)
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_AUIPC):
# Add Upper Immediate to PC
io.alu_op_a_mux_sel_o <<= OP_A_CURRPC
io.alu_op_b_mux_sel_o <<= OP_B_IMM
io.imm_b_mux_sel_o <<= IMMB_U
io.alu_operator_o <<= ALU_ADD
regfile_alu_we <<= Bool(True)
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_OPIMM):
# Register-Immediate ALU Operations
io.alu_op_b_mux_sel_o <<= OP_B_IMM
io.imm_b_mux_sel_o <<= IMMB_I
regfile_alu_we <<= Bool(True)
io.rega_used_o <<= Bool(True)
# funct3
io.alu_operator_o <<= LookUpTable(io.instr_rdata_i[14:12], {
U.w(3)(0b000): ALU_ADD, # addi
U.w(3)(0b001): ALU_SLL, # slli
U.w(3)(0b010): ALU_SLTS, # slti
U.w(3)(0b011): ALU_SLTU, # sltiu
U.w(3)(0b100): ALU_XOR, # xori
U.w(3)(0b110): ALU_OR, # ori
U.w(3)(0b111): ALU_AND, # andi
...: ALU_SLTU
})
# slli, srli, srai -> funct7 has limits
with when(io.instr_rdata_i[14:12] == U.w(3)(0b001)):
with when(io.instr_rdata_i[31:25] != U.w(7)(0)):
# slli -> imm[11:5] must be 0b00
io.illegal_insn_o <<= Bool(True)
with when(io.instr_rdata_i[14:12] == U.w(3)(0b101)):
# is srli or srai?
with when(io.instr_rdata_i[31:25] == U.w(7)(0)):
# srli -> imm[11:5] must be 0b00
io.alu_operator_o <<= ALU_SRL
with elsewhen(io.instr_rdata_i[31:25] == U.w(7)(0b0100000)):
# srai -> imm[11:5] must be 0b20
io.alu_operator_o <<= ALU_SRA
with otherwise():
io.illegal_insn_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_OP):
# Register-Register ALU operation
# In our current implementation, funct7 (io.instr_rdata_i[31:25]) only could
# be 0b00/0b20
with when(io.instr_rdata_i[31:30] == U.w(2)(0b11)):
# PREFIX 11, illegal
io.illegal_insn_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[31:30] == U.w(2)(0b10)):
# PREFIX 10, illegal
io.illegal_insn_o <<= Bool(True)
with otherwise():
# PREFIX 00/01
regfile_alu_we <<= Bool(True)
io.rega_used_o <<= Bool(True)
# In fact, in our implementation, this should not be 1
with when(~io.instr_rdata_i[28]):
io.regb_used_o <<= Bool(True)
rr_con = CatBits(io.instr_rdata_i[30:25], io.instr_rdata_i[14:12])
# RV32I ALU Operations
# I should use when/elsewhen/otherwise is more clear to read
# io.alu_operator_o <<= LookUpTable(rr_con, {
# U.w(9)(0b000000000): ALU_ADD, # add
# U.w(9)(0b100000000): ALU_SUB, # sub
# U.w(9)(0b000000010): ALU_SLTS, # slt
# U.w(9)(0b000000011): ALU_SLTU, # sltu
# U.w(9)(0b000000100): ALU_XOR, # xor
# U.w(9)(0b000000110): ALU_OR, # or
# U.w(9)(0b000000111): ALU_AND, # and
# U.w(9)(0b000000001): ALU_SLL, # sll
# U.w(9)(0b000000101): ALU_SRL, # srl
# U.w(9)(0b100000101): ALU_SRA, # sra
# })
with when(rr_con == U.w(9)(0b000000000)):
io.alu_operator_o <<= ALU_ADD
with elsewhen(rr_con == U.w(9)(0b100000000)):
io.alu_operator_o <<= ALU_SUB
with elsewhen(rr_con == U.w(9)(0b000000010)):
io.alu_operator_o <<= ALU_SLTS
with elsewhen(rr_con == U.w(9)(0b000000011)):
io.alu_operator_o <<= ALU_SLTU
with elsewhen(rr_con == U.w(9)(0b000000100)):
io.alu_operator_o <<= ALU_XOR
with elsewhen(rr_con == U.w(9)(0b000000110)):
io.alu_operator_o <<= ALU_OR
with elsewhen(rr_con == U.w(9)(0b000000111)):
io.alu_operator_o <<= ALU_AND
with elsewhen(rr_con == U.w(9)(0b000000001)):
io.alu_operator_o <<= ALU_SLL
with elsewhen(rr_con == U.w(9)(0b000000101)):
io.alu_operator_o <<= ALU_SRL
with elsewhen(rr_con == U.w(9)(0b100000101)):
io.alu_operator_o <<= ALU_SRA
# RV32M instructions
with elsewhen(rr_con == U.w(9)(0b000001000)): # mul
# Default unsigned x unsigned 00
alu_en <<= Bool(False)
mult_int_en <<= Bool(True)
io.mult_operator_o <<= MUL_MAC32
io.regc_mux_o <<= REGC_ZERO
with elsewhen(rr_con == U.w(9)(0b000001001)): # mulh
alu_en <<= Bool(False)
io.regc_used_o <<= Bool(True)
io.regc_mux_o <<= REGC_ZERO
io.mult_signed_mode_o <<= U.w(2)(0b11) # Default signed x signed 11
mult_int_en <<= Bool(True)
io.mult_operator_o <<= MUL_H
with elsewhen(rr_con == U.w(9)(0b000001010)): # mulsu
alu_en <<= Bool(False)
io.regc_used_o <<= Bool(True)
io.regc_mux_o <<= REGC_ZERO
io.mult_signed_mode_o <<= U.w(2)(0b01) # signed x unsigned 01
mult_int_en <<= Bool(True)
io.mult_operator_o <<= MUL_H
with elsewhen(rr_con == U.w(9)(0b000001011)): # mulu
alu_en <<= Bool(False)
io.regc_used_o <<= Bool(True)
io.regc_mux_o <<= REGC_ZERO
io.mult_signed_mode_o <<= U.w(2)(0b00) # unsigned x unsigned 00
mult_int_en <<= Bool(True)
io.mult_operator_o <<= MUL_H
with elsewhen(rr_con == U.w(9)(0b000001100)): # div
io.alu_op_a_mux_sel_o <<= OP_A_REGB_OR_FWD
io.alu_op_b_mux_sel_o <<= OP_B_REGA_OR_FWD
io.regb_used_o <<= Bool(True)
io.alu_operator_o <<= ALU_DIV
with elsewhen(rr_con == U.w(9)(0b000001101)): # divu
io.alu_op_a_mux_sel_o <<= OP_A_REGB_OR_FWD
io.alu_op_b_mux_sel_o <<= OP_B_REGA_OR_FWD
io.regb_used_o <<= Bool(True)
io.alu_operator_o <<= ALU_DIVU
with elsewhen(rr_con == U.w(9)(0b000001110)): # rem
io.alu_op_a_mux_sel_o <<= OP_A_REGB_OR_FWD
io.alu_op_b_mux_sel_o <<= OP_B_REGA_OR_FWD
io.regb_used_o <<= Bool(True)
io.alu_operator_o <<= ALU_REM
with elsewhen(rr_con == U.w(9)(0b000001111)): # remu
io.alu_op_a_mux_sel_o <<= OP_A_REGB_OR_FWD
io.alu_op_b_mux_sel_o <<= OP_B_REGA_OR_FWD
io.regb_used_o <<= Bool(True)
io.alu_operator_o <<= ALU_REMU
with otherwise():
io.illegal_insn_o <<= Bool(True)
with elsewhen((io.instr_rdata_i[6:0] == OPCODE_OP_FP) |
(io.instr_rdata_i[6:0] == OPCODE_OP_FMADD) |
(io.instr_rdata_i[6:0] == OPCODE_OP_FMSUB) |
(io.instr_rdata_i[6:0] == OPCODE_OP_FNMSUB) |
(io.instr_rdata_i[6:0] == OPCODE_OP_FNMADD) |
(io.instr_rdata_i[6:0] == OPCODE_STORE_FP) |
(io.instr_rdata_i[6:0] == OPCODE_LOAD_FP) |
(io.instr_rdata_i[6:0] == OPCODE_PULP_OP) |
(io.instr_rdata_i[6:0] == OPCODE_VECOP)):
# No FP/XPULP implementation currently
io.illegal_insn_o <<= Bool(True)
##################################################################################
# Special
##################################################################################
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_FENCE):
# io.fencei_insn_o <<= LookUpTable(io.instr_rdata_i[14:12], {
# U.w(3)(0b000): Bool(True), # FENCE (Synch thread), flush pipeline
# U.w(3)(0b001): Bool(True), # FENCE.I, flush pipeline and prefetch buffer
# ...: Bool(False)
# })
with when(io.instr_rdata_i[14:12] == U.w(3)(0b000)):
io.fencei_insn_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[14:12] == U.w(3)(0b001)):
io.fencei_insn_o <<= Bool(True)
with otherwise():
io.illegal_insn_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_SYSTEM):
with when(io.instr_rdata_i[14:12] == U.w(3)(0)):
# Non CSR related SYSTEM instructions
with when((io.instr_rdata_i[19:15] == U(0)) & (io.instr_rdata_i[11:7] == U(0))):
with when(io.instr_rdata_i[31:20] == U.w(12)(0x000)):
# imm=0x0, ECALL, environment (system) call
io.ecall_insn_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[31:20] == U.w(12)(0x001)):
# imm=0x1, EBREAK, debugger trap
io.ebrk_insn_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[31:20] == U.w(12)(0x302)): # mret
io.illegal_insn_o <<= (io.current_priv_lvl_i != PRIV_LVL_M) if PULP_SECURE else Bool(False)
io.mret_insn_o <<= ~io.illegal_insn_o
io.mret_dec_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[31:20] == U.w(12)(0x002)): # uret
io.illegal_insn_o <<= Bool(True) if PULP_SECURE else Bool(False)
io.uret_insn_o <<= ~io.illegal_insn_o
io.uret_dec_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[31:20] == U.w(12)(0x7b2)): # dret
io.illegal_insn_o <<= ~io.debug_mode_i
io.dret_insn_o <<= io.debug_mode_i
io.dret_dec_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[31:20] == U.w(12)(0x105)): # wfi
# Wait for interrupt
io.wfi_o <<= Bool(True)
with when(io.debug_wfi_no_sleep_i):
# Treat as NOP (do not cause sleep mode entry)
# Using decoding similar to ADDI, but without regsiter reads/writes, i.e.
# keep regfile_alu_we = 0, rega_used_o = 0
io.alu_op_b_mux_sel_o <<= OP_B_IMM
io.imm_b_mux_sel_o <<= IMMB_I
io.alu_operator_o <<= ALU_ADD
with otherwise():
io.illegal_insn_o <<= Bool(True)
with otherwise():
io.illegal_insn_o <<= Bool(True)
with otherwise():
# instruction to read/modify CSR
io.csr_access_o <<= Bool(True)
regfile_alu_we <<= Bool(True)
io.alu_op_b_mux_sel_o <<= OP_B_IMM
io.imm_a_mux_sel_o <<= IMMA_Z
io.imm_b_mux_sel_o <<= IMMB_I # CSR address is encoded in I imm
with when(io.instr_rdata_i[14] == U.w(1)(1)):
# rs1 field if used as immediate: CSRRXI
io.alu_op_a_mux_sel_o <<= OP_A_IMM
with otherwise():
# CSRRX
io.rega_used_o <<= Bool(True)
io.alu_op_a_mux_sel_o <<= OP_A_REGA_OR_FWD
# instr_rdata_i[19:14] = rs or imm
# if set (S) or clear (C) with rs == x0 or imm == 0
# then do not perform a write action
with when(io.instr_rdata_i[13:12] == U.w(2)(0b01)):
csr_op <<= CSR_OP_WRITE
with elsewhen(io.instr_rdata_i[13:12] == U.w(2)(0b10)):
csr_op <<= Mux(io.instr_rdata_i[19:15] == U(0), CSR_OP_READ, CSR_OP_SET)
with elsewhen(io.instr_rdata_i[13:12] == U.w(2)(0b11)):
csr_op <<= Mux(io.instr_rdata_i[19:15] == U(0), CSR_OP_READ, CSR_OP_CLEAR)
with otherwise():
csr_illegal <<= Bool(True)
with when(io.instr_rdata_i[29:28] > io.current_priv_lvl_i):
# CSR Address[9:8]
csr_illegal <<= Bool(True)
# Determine if CSR access is illegal
with when((io.instr_rdata_i[31:20] == CSR_FFLAGS) |
(io.instr_rdata_i[31:20] == CSR_FRM) |
(io.instr_rdata_i[31:20] == CSR_FCSR)):
# FP
csr_illegal <<= Bool(True)
with elsewhen((io.instr_rdata_i[31:20] == CSR_MVENDORID) |
(io.instr_rdata_i[31:20] == CSR_MARCHID) |
(io.instr_rdata_i[31:20] == CSR_MIMPID) |
(io.instr_rdata_i[31:20] == CSR_MHARTID)):
# Writes to read only CSRs results in illegal instruction
with when(csr_op != CSR_OP_READ):
csr_illegal <<= Bool(True)
with elsewhen((io.instr_rdata_i[31:20] == CSR_MSTATUS) |
(io.instr_rdata_i[31:20] == CSR_MEPC) |
(io.instr_rdata_i[31:20] == CSR_MTVEC) |
(io.instr_rdata_i[31:20] == CSR_MCAUSE)):
# These are valid CSR registers
# Not illegal, but treat as status CSR for side effect handling
io.csr_status_o <<= Bool(True)
with elsewhen((io.instr_rdata_i[31:20] == CSR_MISA) |
(io.instr_rdata_i[31:20] == CSR_MIE) |
(io.instr_rdata_i[31:20] == CSR_MSCRATCH) |
(io.instr_rdata_i[31:20] == CSR_MTVAL) |
(io.instr_rdata_i[31:20] == CSR_MIP)):
# do nothing, not illegal
csr_illegal <<= Bool(False)
with elsewhen(csrs_hpm(io.instr_rdata_i[31:20])):
# Not illegal, but treat as status CSR to get accurate counts
io.csr_status_o <<= U.w(1)(1)
with elsewhen(csrs_hpm_mirror(io.instr_rdata_i[31:20])):
# Read-only and readable from user mode only if the bit of mcounteren is set
if PULP_SECURE:
with when((csr_op != CSR_OP_READ) | ((io.current_priv_lvl_i != PRIV_LVL_M)
& (~io.mcounteren_i[io.instr_rdata_i[24:20]]))):
csr_illegal <<= Bool(True)
else:
with when(csr_op != CSR_OP_READ):
io.csr_status_o <<= Bool(True)
with elsewhen(io.instr_rdata_i[31:20] == CSR_MCOUNTEREN):
# This register only exists in user mode
if not PULP_SECURE:
csr_illegal <<= Bool(True)
else:
io.csr_status_o <<= Bool(True)
with elsewhen((io.instr_rdata_i[31:20] == CSR_DCSR) |
(io.instr_rdata_i[31:20] == CSR_DPC) |
(io.instr_rdata_i[31:20] == CSR_DSCRATCH0) |
(io.instr_rdata_i[31:20] == CSR_DSCRATCH1)):
# Debug register access
with when(~io.debug_mode_i):
csr_illegal <<= Bool(True)
with otherwise():
io.csr_status_o <<= Bool(True)
with elsewhen((io.instr_rdata_i[31:20] == CSR_TSELECT) |
(io.instr_rdata_i[31:20] == CSR_TDATA1) |
(io.instr_rdata_i[31:20] == CSR_TDATA2) |
(io.instr_rdata_i[31:20] == CSR_TDATA3) |
(io.instr_rdata_i[31:20] == CSR_TINFO) |
(io.instr_rdata_i[31:20] == CSR_MCONTEXT) |
(io.instr_rdata_i[31:20] == CSR_SCONTEXT)):
# Debug Trigger register access
if not DEBUG_TRIGGER_EN:
csr_illegal <<= Bool(True)
else:
csr_illegal <<= Bool(False)
with elsewhen((io.instr_rdata_i[31:20] == CSR_LPSTART0) |
(io.instr_rdata_i[31:20] == CSR_LPEND0) |
(io.instr_rdata_i[31:20] == CSR_LPCOUNT0) |
(io.instr_rdata_i[31:20] == CSR_LPSTART1) |
(io.instr_rdata_i[31:20] == CSR_LPEND1) |
(io.instr_rdata_i[31:20] == CSR_LPCOUNT1) |
(io.instr_rdata_i[31:20] == CSR_UHARTID)):
# Hardware loop register, we currently do not implement
csr_illegal <<= Bool(True)
with elsewhen(io.instr_rdata_i[31:20] == CSR_PRIVLV):
csr_illegal <<= Bool(True)
with elsewhen((io.instr_rdata_i[31:20] == CSR_PMPCFG0) | (io.instr_rdata_i[31:20] == CSR_PMPCFG1) |
(io.instr_rdata_i[31:20] == CSR_PMPCFG2) | (io.instr_rdata_i[31:20] == CSR_PMPCFG3) |
(io.instr_rdata_i[31:20] == CSR_PMPADDR0) | (io.instr_rdata_i[31:20] == CSR_PMPADDR1) |
(io.instr_rdata_i[31:20] == CSR_PMPADDR2) | (io.instr_rdata_i[31:20] == CSR_PMPADDR3) |
(io.instr_rdata_i[31:20] == CSR_PMPADDR4) | (io.instr_rdata_i[31:20] == CSR_PMPADDR5) |
(io.instr_rdata_i[31:20] == CSR_PMPADDR6) | (io.instr_rdata_i[31:20] == CSR_PMPADDR7) |
(io.instr_rdata_i[31:20] == CSR_PMPADDR8) | (io.instr_rdata_i[31:20] == CSR_PMPADDR9) |
(io.instr_rdata_i[31:20] == CSR_PMPADDR10) | (io.instr_rdata_i[31:20] == CSR_PMPADDR11) |
(io.instr_rdata_i[31:20] == CSR_PMPADDR12) | (io.instr_rdata_i[31:20] == CSR_PMPADDR13) |
(io.instr_rdata_i[31:20] == CSR_PMPADDR14) | (io.instr_rdata_i[31:20] == CSR_PMPADDR15)):
# PMP register access
if not USE_PMP:
csr_illegal <<= Bool(True)
with elsewhen((io.instr_rdata_i[31:20] == CSR_USTATUS) | (io.instr_rdata_i[31:20] == CSR_UEPC) |
(io.instr_rdata_i[31:20] == CSR_UTVEC) | (io.instr_rdata_i[31:20] == CSR_UCAUSE)):
# User register access
if not PULP_SECURE:
csr_illegal <<= Bool(True)
else:
io.csr_status_o <<= Bool(True)
with otherwise():
csr_illegal <<= Bool(True)
io.illegal_insn_o <<= csr_illegal
with elsewhen(io.instr_rdata_i[6:0] == OPCODE_HWLOOP):
io.illegal_insn_o <<= Bool(True)
with otherwise():
io.illegal_insn_o <<= Bool(True)
# make sure invalid compressed instruction causes an exception
with when(io.illegal_c_insn_i):
io.illegal_insn_o <<= Bool(True)
# Deassert we signals (in case of stalls)
io.alu_en_o <<= Mux(io.deassert_we_i, Bool(False), alu_en)
io.mult_int_en_o <<= Mux(io.deassert_we_i, Bool(False), mult_int_en)
io.regfile_mem_we_o <<= Mux(io.deassert_we_i, Bool(False), regfile_mem_we)
io.regfile_alu_we_o <<= Mux(io.deassert_we_i, Bool(False), regfile_alu_we)
io.data_req_o <<= Mux(io.deassert_we_i, Bool(False), data_req)
io.csr_op_o <<= Mux(io.deassert_we_i, CSR_OP_READ, csr_op)
io.ctrl_transfer_insn_in_id_o <<= Mux(io.deassert_we_i, BRANCH_NONE, ctrl_transfer_insn)
io.ctrl_transfer_insn_in_dec_o <<= ctrl_transfer_insn
io.regfile_alu_we_dec_o <<= regfile_alu_we
return DECODER()
if __name__ == '__main__':
Emitter.dumpVerilog(Emitter.dump(Emitter.emit(decoder()), "decoder.fir"))
| 0
| 0
| 0
| 34,578
| 0
| 5,154
| 0
| 6
| 110
|
bff925f7c3f355eb5ffbb6f8cb0de00147144a52
| 884
|
py
|
Python
|
xuexiStudyScore_month_v2.py
|
g-mitu/timeseries
|
3b2daf33f9af022d1aae7c4a9caf69b8abd58348
|
[
"BSD-3-Clause"
] | null | null | null |
xuexiStudyScore_month_v2.py
|
g-mitu/timeseries
|
3b2daf33f9af022d1aae7c4a9caf69b8abd58348
|
[
"BSD-3-Clause"
] | null | null | null |
xuexiStudyScore_month_v2.py
|
g-mitu/timeseries
|
3b2daf33f9af022d1aae7c4a9caf69b8abd58348
|
[
"BSD-3-Clause"
] | null | null | null |
# -*- coding: utf-8 -*-
"""
Created on Fri May 1 10:16:25 2020
@author: winhl
modify 2022-1-6
"""
import pandas as pd
import json
work_dir = "D:/__E__//"
#n0 = "2021s1p9"
n0 = "2021.01-12.xuexi.cn" #2022-1-6
with open(f"{work_dir}/{n0}.json", "r", encoding="utf-8") as f:
fr = f.read()
j1 = json.loads(fr)
l_str = j1.get("data_str")
j2 = json.loads(l_str)
dict_str = j2.get("dataList")["data"]
print(type(dict_str))
# df = pd.read_json(dict_str, orient="records")
df = pd.DataFrame(data=dict_str)
print(df)
df.to_csv(f"{work_dir}/{n0}.csv")
"""
from pandas import json_normalize
import json
data=open("F://XXQG/202009third_20200930.json",encoding="utf-8").read()
user_dic = json.loads(data)
data_list = user_dic["data"]["list"]
df = json_normalize(data_list)
print(df)
df.to_csv("09.csv")
"""
| 22.666667
| 74
| 0.616516
|
# -*- coding: utf-8 -*-
"""
Created on Fri May 1 10:16:25 2020
@author: winhl
modify 2022-1-6
"""
import pandas as pd
import json
work_dir = "D:/__E__/支部/积分"
#n0 = "2021s1p9"
n0 = "2021.01-12.xuexi.cn" #2022-1-6
with open(f"{work_dir}/{n0}.json", "r", encoding="utf-8") as f:
fr = f.read()
j1 = json.loads(fr)
l_str = j1.get("data_str")
j2 = json.loads(l_str)
dict_str = j2.get("dataList")["data"]
print(type(dict_str))
# df = pd.read_json(dict_str, orient="records")
df = pd.DataFrame(data=dict_str)
print(df)
df.to_csv(f"{work_dir}/{n0}.csv")
"""
from pandas import json_normalize
import json
data=open("F:/支部/XXQG/202009third_20200930.json",encoding="utf-8").read()
user_dic = json.loads(data)
data_list = user_dic["data"]["list"]
df = json_normalize(data_list)
print(df)
df.to_csv("09.csv")
"""
| 18
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
cf9ad7ad972d6588d169b5cc55ce7927f2bf7751
| 799
|
py
|
Python
|
models.py
|
seanli3/fastGCN
|
e3704ae2c96363da0d6318f9f2a53df4384474bf
|
[
"MIT"
] | 28
|
2020-06-03T01:03:05.000Z
|
2022-03-26T16:37:36.000Z
|
models.py
|
seanli3/fastGCN
|
e3704ae2c96363da0d6318f9f2a53df4384474bf
|
[
"MIT"
] | null | null | null |
models.py
|
seanli3/fastGCN
|
e3704ae2c96363da0d6318f9f2a53df4384474bf
|
[
"MIT"
] | 4
|
2020-08-12T07:55:50.000Z
|
2022-03-11T05:11:24.000Z
|
import torch.nn as nn
| 31.96
| 76
| 0.652065
|
import torch.nn as nn
import torch.nn.functional as F
from layers import GraphConvolution
class GCN(nn.Module):
def __init__(self, nfeat, nhid, nclass, dropout, sampler):
super().__init__()
self.gc1 = GraphConvolution(nfeat, nhid)
self.gc2 = GraphConvolution(nhid, nclass)
self.dropout = dropout
self.sampler = sampler
self.out_softmax = nn.Softmax(dim=1)
def forward(self, x, adj):
outputs1 = F.relu(self.gc1(x, adj[0]))
outputs1 = F.dropout(outputs1, self.dropout, training=self.training)
outputs2 = self.gc2(outputs1, adj[1])
return F.log_softmax(outputs2, dim=1)
# return self.out_softmax(outputs2)
def sampling(self, *args, **kwargs):
return self.sampler.sampling(*args, **kwargs)
| 0
| 0
| 0
| 685
| 0
| 0
| 0
| 24
| 67
|
e2dedf6fb31777077279b3ee42c8daaea82f726d
| 10,683
|
py
|
Python
|
_tbnf/fable_modules/fable_library/reflection.py
|
thautwarm/Typed-BNF
|
897a4a2bd389dcb2ca16c6c773b28f0388336f63
|
[
"MIT"
] | 38
|
2022-01-01T06:45:27.000Z
|
2022-03-20T14:18:38.000Z
|
lua_parser/fable_sedlex/fable_modules/fable_library/reflection.py
|
thautwarm/lua-parser-lark
|
06cf19bc8595a70823fc0f67462ca29dd9e118a0
|
[
"MIT"
] | 7
|
2021-09-17T16:46:50.000Z
|
2021-12-31T20:49:35.000Z
|
_tbnf/fable_modules/fable_library/reflection.py
|
thautwarm/typed-bnf
|
b5694a34fe21a064250f2ef88745d8ebad51eb33
|
[
"MIT"
] | 3
|
2022-01-01T07:33:44.000Z
|
2022-01-09T11:41:33.000Z
|
from __future__ import annotations
from typing import Any, Callable, List, Union
Constructor = Callable[..., Any]
EnumCase = List[Union[str, int]]
FieldInfo = List[Union[str, "TypeInfo"]]
PropertyInfo = FieldInfo
obj_type: TypeInfo = TypeInfo(fullname="System.Object")
unit_type: TypeInfo = TypeInfo("Microsoft.FSharp.Core.Unit")
char_type: TypeInfo = TypeInfo("System.Char")
string_type: TypeInfo = TypeInfo("System.String")
bool_type: TypeInfo = TypeInfo("System.Boolean")
int8_type: TypeInfo = TypeInfo("System.SByte")
uint8_type: TypeInfo = TypeInfo("System.Byte")
int16_type: TypeInfo = TypeInfo("System.Int16")
uint16_type: TypeInfo = TypeInfo("System.UInt16")
int32_type: TypeInfo = TypeInfo("System.Int32")
uint32_type: TypeInfo = TypeInfo("System.UInt32")
float32_type: TypeInfo = TypeInfo("System.Single")
float64_type: TypeInfo = TypeInfo("System.Double")
decimal_type: TypeInfo = TypeInfo("System.Decimal")
# In .NET this is false for delegates
| 27.89295
| 106
| 0.666479
|
from __future__ import annotations
from argparse import ArgumentError
import functools
from dataclasses import dataclass
from typing import Any, Callable, List, Optional, Type, Union
from .types import Union as FsUnion, FSharpRef, Record
from .util import equal_arrays_with
Constructor = Callable[..., Any]
EnumCase = List[Union[str, int]]
FieldInfo = List[Union[str, "TypeInfo"]]
PropertyInfo = FieldInfo
@dataclass
class CaseInfo:
declaringType: TypeInfo
tag: int
name: str
fields: List[FieldInfo]
@dataclass
class TypeInfo:
fullname: str
generics: Optional[List[TypeInfo]] = None
construct: Optional[Constructor] = None
parent: Optional[TypeInfo] = None
fields: Optional[Callable[[], List[FieldInfo]]] = None
cases: Optional[Callable[[], List[CaseInfo]]] = None
enum_cases: Optional[List[EnumCase]] = None
def __str__(self) -> str:
return full_name(self)
def __eq__(self, other: Any) -> bool:
return equals(self, other)
def class_type(
fullname: str,
generics: Optional[List[TypeInfo]] = None,
construct: Optional[Constructor] = None,
parent: Optional[TypeInfo] = None,
) -> TypeInfo:
return TypeInfo(fullname, generics, construct, parent)
def union_type(
fullname: str,
generics: List[TypeInfo],
construct: Type[FsUnion],
cases: Callable[[], List[List[FieldInfo]]],
) -> TypeInfo:
def fn() -> List[CaseInfo]:
caseNames: List[str] = construct.cases()
def mapper(i: int, fields: List[FieldInfo]) -> CaseInfo:
return CaseInfo(t, i, caseNames[i], fields)
return [mapper(i, x) for i, x in enumerate(cases())]
t: TypeInfo = TypeInfo(fullname, generics, construct, None, None, fn, None)
return t
def lambda_type(argType: TypeInfo, returnType: TypeInfo):
return TypeInfo("Microsoft.FSharp.Core.FSharpFunc`2", [argType, returnType])
def delegate_type(*generics):
return TypeInfo("System.Func` %d" % len(generics), list(generics))
def record_type(
fullname: str, generics: List[TypeInfo], construct: Constructor, fields: Callable[[], List[FieldInfo]]
) -> TypeInfo:
return TypeInfo(fullname, generics, construct, fields=fields)
def anon_record_type(*fields: FieldInfo) -> TypeInfo:
return TypeInfo("", None, None, None, lambda: list(fields))
def option_type(generic: TypeInfo) -> TypeInfo:
return TypeInfo("Microsoft.FSharp.Core.FSharpOption`1", [generic])
def list_type(generic: TypeInfo) -> TypeInfo:
return TypeInfo("Microsoft.FSharp.Collections.FSharpList`1", [generic])
def array_type(generic: TypeInfo) -> TypeInfo:
return TypeInfo(generic.fullname + "[]", [generic])
def enum_type(fullname: str, underlyingType: TypeInfo, enumCases: List[EnumCase]) -> TypeInfo:
return TypeInfo(fullname, [underlyingType], None, None, None, None, enumCases)
def tuple_type(*generics: TypeInfo) -> TypeInfo:
return TypeInfo(fullname=f"System.Tuple`{len(generics)}", generics=list(generics))
obj_type: TypeInfo = TypeInfo(fullname="System.Object")
unit_type: TypeInfo = TypeInfo("Microsoft.FSharp.Core.Unit")
char_type: TypeInfo = TypeInfo("System.Char")
string_type: TypeInfo = TypeInfo("System.String")
bool_type: TypeInfo = TypeInfo("System.Boolean")
int8_type: TypeInfo = TypeInfo("System.SByte")
uint8_type: TypeInfo = TypeInfo("System.Byte")
int16_type: TypeInfo = TypeInfo("System.Int16")
uint16_type: TypeInfo = TypeInfo("System.UInt16")
int32_type: TypeInfo = TypeInfo("System.Int32")
uint32_type: TypeInfo = TypeInfo("System.UInt32")
float32_type: TypeInfo = TypeInfo("System.Single")
float64_type: TypeInfo = TypeInfo("System.Double")
decimal_type: TypeInfo = TypeInfo("System.Decimal")
def equals(t1: TypeInfo, t2: TypeInfo) -> bool:
if t1.fullname == "":
return t2.fullname == "" and equal_arrays_with(
get_record_elements(t1),
get_record_elements(t2),
lambda kv1, kv2: kv1[0] == kv2[0] and equals(kv1[1], kv2[1]),
)
return t1.fullname == t2.fullname and equal_arrays_with(t1.generics, t2.generics, equals)
def is_generic_type(t):
return t.generics is not None and len(t.generics)
def get_generic_type_definition(t):
return t if t.generics is None else TypeInfo(t.fullname, list(map(lambda _: obj_type, t.generics)))
def get_generics(t: TypeInfo) -> List[TypeInfo]:
return t.generics if t.generics else []
def make_generic_type(t: TypeInfo, generics: List[TypeInfo]) -> TypeInfo:
return TypeInfo(t.fullname, generics, t.construct, t.parent, t.fields, t.cases)
def create_instance(t: TypeInfo, consArgs: List) -> Any:
# TODO: Check if consArgs length is same as t.construct?
# (Arg types can still be different)
if callable(t.construct):
return t.construct(*(consArgs or []))
else:
raise ValueError(f"Cannot access constructor of {t.fullname}")
def get_value(propertyInfo: PropertyInfo, v: Any) -> Any:
return getattr(v, str(propertyInfo[0]))
def name(info):
if isinstance(info, list):
return info[0]
elif isinstance(info, CaseInfo):
return info.name
else:
i = info.fullname.rfind(".")
return info.fullname if i == -1 else info.fullname[i + 1 :]
def full_name(t: TypeInfo) -> str:
gen = t.generics if t.generics and not is_array(t) else []
if len(gen):
gen = ",".join([full_name(x) for x in gen])
return f"{t.fullname}[{gen}]"
else:
return t.fullname
def namespace(t: TypeInfo) -> str:
i = t.fullname.rfind(".")
return "" if i == -1 else t.fullname[0:i]
def is_array(t: TypeInfo) -> bool:
return t.fullname.endswith("[]")
def is_enum(t: TypeInfo) -> bool:
return t.enum_cases is not None and len(t.enum_cases) > 0
def is_record(t: Any) -> bool:
return (t.fields is not None) if isinstance(t, TypeInfo) else isinstance(t, Record)
def is_tuple(t: TypeInfo) -> bool:
return t.fullname.startswith("System.Tuple") and not is_array(t)
def is_union(t: Any) -> bool:
if isinstance(t, TypeInfo):
return t.cases is not None
return isinstance(t, FsUnion)
# In .NET this is false for delegates
def is_function(t: TypeInfo) -> bool:
return t.fullname == "Microsoft.FSharp.Core.FSharpFunc`2"
def get_element_type(t: TypeInfo) -> Optional[TypeInfo]:
return (t.generics[0] if t.generics else None) if is_array(t) else None
def get_enum_underlying_type(t: TypeInfo):
return t.generics[0] if t.generics else None
def get_enum_values(t: TypeInfo) -> List[int]:
if is_enum(t) and t.enum_cases is not None:
return [int(kv[1]) for kv in t.enum_cases]
else:
raise ValueError(f"{t.fullname} is not an enum type")
def get_enum_names(t: TypeInfo) -> List[str]:
if is_enum(t) and t.enum_cases is not None:
return [str(kv[0]) for kv in t.enum_cases]
else:
raise ValueError(f"{t.fullname} is not an enum type")
def get_enum_case(t: TypeInfo, v: Union[int, str]) -> EnumCase:
if t.enum_cases is None:
raise ValueError(f"{t.fullname} is not an enum type")
if isinstance(v, str):
for kv in t.enum_cases:
if kv[0] == v:
return kv
raise ValueError(f"{v}' was not found in ${t.fullname}")
for kv in t.enum_cases:
if kv[1] == v:
return kv
# .NET returns the number even if it doesn't match any of the cases
return ["", v]
def get_tuple_elements(t: TypeInfo) -> List[TypeInfo]:
if is_tuple(t) and t.generics is not None:
return t.generics
else:
raise ValueError(f"{t.fullname} is not a tuple type")
def get_function_elements(t: TypeInfo) -> List[TypeInfo]:
if is_function(t) and t.generics is not None:
gen = t.generics
return [gen[0], gen[1]]
else:
raise ValueError(f"{t.fullname} is not an F# function type")
def parse_enum(t: TypeInfo, string: str) -> int:
try:
value = int(string)
except Exception:
value = None
return int(get_enum_case(t, value if value else string)[1])
def try_parse_enum(t: TypeInfo, string: str, def_value: FSharpRef[int]) -> bool:
try:
def_value.contents = parse_enum(t, string)
return True
except Exception:
return False
def get_enum_name(t: TypeInfo, v: int) -> str:
return str(get_enum_case(t, v)[0])
def is_enum_defined(t: TypeInfo, v: Union[str, int]) -> bool:
try:
kv = get_enum_case(t, v)
return kv[0] is not None and kv[0] != ""
except Exception:
# Supress error
pass
return False
def get_record_elements(t: TypeInfo) -> List[FieldInfo]:
if t.fields is not None:
return t.fields()
else:
raise ValueError(f"{t.fullname} is not an F# record type")
def get_record_fields(v: Any) -> List:
if isinstance(v, dict):
return list(v.values())
return [getattr(v, k) for k in v.__dict__.keys()]
def get_record_field(v: Any, field: FieldInfo) -> Any:
if isinstance(field[0], str):
if isinstance(v, dict):
return v[field[0]]
return getattr(v, field[0])
raise ValueError("Field not a string.")
def get_tuple_fields(v: Any) -> List:
return v
def get_tuple_field(v: Any, i: int) -> Any:
return v[i]
def make_record(t: TypeInfo, values: List) -> Any:
fields = get_record_elements(t)
if len(fields) != len(values):
raise ValueError(f"Expected an array of length {len(fields)} but got {len(values)}")
if t.construct is not None:
return t.construct(*values)
def reducer(obj, ifield):
i, field = ifield
obj[field[0]] = values[i]
return obj
return functools.reduce(reducer, enumerate(fields), {})
def make_tuple(values: List, _t: TypeInfo) -> Any:
return tuple(values)
def make_union(uci: CaseInfo, values: List) -> Any:
expectedLength = len(uci.fields or [])
if len(values) != expectedLength:
raise ValueError(f"Expected an array of length {expectedLength} but got {len(values)}")
return uci.declaringType.construct(uci.tag, *values) if uci.declaringType.construct else {}
def get_union_cases(t: TypeInfo) -> List[CaseInfo]:
if t.cases:
return t.cases()
else:
raise ValueError(f"{t.fullname} is not an F# union type")
def get_union_fields(v: Any, t: TypeInfo) -> List:
cases = get_union_cases(t)
case_ = cases[v.tag]
if not case_:
raise ValueError(f"Cannot find case {v.name} in union type")
return [case_, list(v.fields)]
def get_union_case_fields(uci: CaseInfo) -> List[FieldInfo]:
return uci.fields if uci.fields else []
| 0
| 543
| 0
| 0
| 0
| 7,760
| 0
| 83
| 1,284
|
75d1e9be3c0054dda73122202f10bfd3443b59e0
| 13,344
|
py
|
Python
|
cgal4py/domain_decomp/__init__.py
|
yuki-inaho/cgal4py
|
9e61000c01368f9a16844c243ad6aced8611d055
|
[
"BSD-3-Clause"
] | 4
|
2020-01-05T06:31:55.000Z
|
2021-03-06T03:11:33.000Z
|
cgal4py/domain_decomp/__init__.py
|
yuki-inaho/cgal4py
|
9e61000c01368f9a16844c243ad6aced8611d055
|
[
"BSD-3-Clause"
] | 1
|
2020-03-21T14:59:03.000Z
|
2020-03-21T14:59:03.000Z
|
cgal4py/domain_decomp/__init__.py
|
yuki-inaho/cgal4py
|
9e61000c01368f9a16844c243ad6aced8611d055
|
[
"BSD-3-Clause"
] | 1
|
2021-03-07T07:08:11.000Z
|
2021-03-07T07:08:11.000Z
|
import numpy as np
import cykdtree as kdtree
from cgal4py import PY_MAJOR_VERSION
def tree(method, pts, left_edge, right_edge, periodic, *args, **kwargs):
r"""Get tree for a given domain decomposition schema.
Args:
method (str): Domain decomposition method. Supported options are:
'kdtree': KDTree based on median position along the dimension
with the greatest domain width. See
:meth:`cgal4py.domain_decomp.kdtree` for details on
accepted keyword arguments.
pts (np.ndarray of float64): (n, m) array of n coordinates in a
m-dimensional domain.
left_edge (np.ndarray of float64): (m,) domain minimum in each
dimension.
right_edge (np.ndarray of float64): (m,) domain maximum in each
dimension.
*args: Variable argument list. Passed to the selected domain
decomposition method.
**kwargs: Variable keyword argument list. Passed to the selected
domain decomposition method.
Returns:
object: Tree of type specified by `method`.
Raises:
ValueError: If `method` is not one of the supported domain
decomposition methods listed above.
"""
# Get leaves
if method.lower() == 'kdtree':
tree = kdtree.PyKDTree(pts, left_edge, right_edge, *args, **kwargs)
else:
raise ValueError("'{}' is not a supported ".format(method) +
"domain decomposition.")
# Return tree
return tree
def process_leaves(leaves, left_edge, right_edge, periodic):
r"""Process leaves ensuring they have the necessary information/methods
for parallel tessellation. Each leaf must have at least the following
attributes:
npts (int): Number of points on the leaf.
left_edge (np.ndarray of float): min of leaf extent in each dimension.
right_edge (np.ndarray of float): max of leaf extent in each dimension.
Args:
leaves (list of leaf objects): Leaves in an arbitrary domain
decomposition.
left_edge (np.ndarray of float64): domain minimum in each dimension.
right_edge (np.ndarray of float64): domain maximum in each dimension.
periodic (bool): True if domain is periodic, False otherwise.
Returns:
list of leaf objects: Leaves process with additional attributes added
if they do not exist and can be added.
Raises:
AttributeError: If a leaf does not have one of the required attributes.
TypeError: If a leaf has a required attribute, but of the wrong type.
ValueError: If a leaf has a required attribute, but of the wrong size.
"""
ndim = len(left_edge)
req_attr = {'npts': [int, np.int32, np.uint32, np.int64, np.uint64],
'left_edge': ([float, np.float32, np.float64], (ndim,)),
'right_edge': ([float, np.float32, np.float64], (ndim,))}
if PY_MAJOR_VERSION < 3:
req_attr['npts'].append(long)
# Check for necessary attributes
for k, v in req_attr.items():
if isinstance(v, tuple):
for i, leaf in enumerate(leaves):
if not hasattr(leaf, k):
raise AttributeError(
"Leaf {} does not have attribute {}.".format(i, k))
lv = getattr(leaf, k)
if not isinstance(lv, np.ndarray):
raise TypeError("Attribute {} ".format(k) +
"of leaf {} ".format(i) +
"is not an array.\n" +
"It is type {}.".format(type(lv)))
if lv.dtype not in v[0]:
raise TypeError("Attribute {} ".format(k) +
"of leaf {} ".format(i) +
"is not an array with dtype " +
"{}.\n".format(v[0]) +
"It is type {}.".format(lv.dtype))
if v[1] is not None and lv.shape != v[1]:
raise ValueError("Attribute {} ".format(k) +
"of leaf {} ".format(i) +
"is not an array with shape " +
"{}.\n".format(v[1]) +
"It is shape {}.".format(lv.shape))
else:
for i, leaf in enumerate(leaves):
if not hasattr(leaf, k):
raise AttributeError("Leaf {} does not ".format(i) +
"have attribute {}.".format(k))
lv = getattr(leaf, k)
if not isinstance(lv, tuple(v)):
raise TypeError("Attribute {} ".format(k) +
"of leaf {} is not ".format(i) +
"of type {}.\n".format(v) +
"It is type {}.".format(type(lv)))
# Set id & ensure leaves are sorted
if getattr(leaves[0], 'id', None) is None:
for i, leaf in enumerate(leaves):
leaf.id = i
else:
leaves = sorted(leaves, key=lambda l: l.id)
# Set number of dimensions
if getattr(leaves[0], 'ndim', None) is None:
for leaf in leaves:
leaf.ndim = ndim
# Set total number of leaves
if getattr(leaves[0], 'num_leaves', None) is None:
num_leaves = len(leaves)
for leaf in leaves:
leaf.num_leaves = num_leaves
# Set starting index
if getattr(leaves[0], 'start_idx', None) is None:
nprev = 0
for leaf in leaves:
leaf.start_idx = nprev
nprev += leaf.npts
# Set stopping index
if getattr(leaves[0], 'stop_idx', None) is None:
for leaf in leaves:
leaf.stop_idx = leaf.start_idx + leaf.npts
# Set domain width
if getattr(leaves[0], 'domain_width', None) is None:
domain_width = right_edge - left_edge
for leaf in leaves:
leaf.domain_width = domain_width
# Determine if leaves are on periodic boundaries
if getattr(leaves[0], 'periodic_left', None) is None:
if periodic:
for leaf in leaves:
leaf.periodic_left = np.isclose(leaf.left_edge, left_edge)
leaf.periodic_right = np.isclose(leaf.right_edge, right_edge)
else:
for leaf in leaves:
leaf.periodic_left = np.zeros(leaf.ndim, 'bool')
leaf.periodic_right = np.zeros(leaf.ndim, 'bool')
# Add neighbors
if getattr(leaves[0], 'left_neighbors', None) is None:
for j, leaf in enumerate(leaves):
leaf.left_neighbors = [[] for _ in range(ndim)]
leaf.right_neighbors = [[] for _ in range(ndim)]
for prev in leaves[:(j+1)]:
match = True
for i in range(ndim):
if leaf.left_edge[i] > prev.right_edge[i]:
if not (leaf.periodic_right[i] and
prev.periodic_left[i]):
match = False
break
if leaf.right_edge[i] < prev.left_edge[i]:
if not (prev.periodic_right[i] and
leaf.periodic_left[i]):
match = False
break
if match:
for i in range(ndim):
if np.isclose(leaf.left_edge[i], prev.right_edge[i]):
leaf.left_neighbors[i].append(prev.id)
prev.right_neighbors[i].append(leaf.id)
elif np.isclose(leaf.right_edge[i], prev.left_edge[i]):
leaf.right_neighbors[i].append(prev.id)
prev.left_neighbors[i].append(leaf.id)
if periodic:
if (leaf.periodic_right[i] and
prev.periodic_left[i]):
leaf.right_neighbors[i].append(prev.id)
prev.left_neighbors[i].append(leaf.id)
if (prev.periodic_right[i] and
leaf.periodic_left[i]):
leaf.left_neighbors[i].append(prev.id)
prev.right_neighbors[i].append(leaf.id)
if getattr(leaves[0], 'neighbors', None) is None:
for leaf in leaves:
neighbors = [leaf.id]
for i in range(ndim):
neighbors += leaf.left_neighbors[i]
neighbors += leaf.right_neighbors[i]
leaf.neighbors = list(set(neighbors))
# Return leaves
return leaves
__all__ = ["tree", "kdtree", "GenericLeaf", "GenericTree", "process_leaves"]
| 43.465798
| 79
| 0.549086
|
import numpy as np
import cykdtree as kdtree
from cgal4py import PY_MAJOR_VERSION
def tree(method, pts, left_edge, right_edge, periodic, *args, **kwargs):
r"""Get tree for a given domain decomposition schema.
Args:
method (str): Domain decomposition method. Supported options are:
'kdtree': KDTree based on median position along the dimension
with the greatest domain width. See
:meth:`cgal4py.domain_decomp.kdtree` for details on
accepted keyword arguments.
pts (np.ndarray of float64): (n, m) array of n coordinates in a
m-dimensional domain.
left_edge (np.ndarray of float64): (m,) domain minimum in each
dimension.
right_edge (np.ndarray of float64): (m,) domain maximum in each
dimension.
*args: Variable argument list. Passed to the selected domain
decomposition method.
**kwargs: Variable keyword argument list. Passed to the selected
domain decomposition method.
Returns:
object: Tree of type specified by `method`.
Raises:
ValueError: If `method` is not one of the supported domain
decomposition methods listed above.
"""
# Get leaves
if method.lower() == 'kdtree':
tree = kdtree.PyKDTree(pts, left_edge, right_edge, *args, **kwargs)
else:
raise ValueError("'{}' is not a supported ".format(method) +
"domain decomposition.")
# Return tree
return tree
class GenericLeaf(object):
def __init__(self, npts, left_edge, right_edge):
r"""A generic container for leaf info with the minimum required info.
These leaves must still be processed to add additional properties using
:meth:`cgal4py.domain_decomp.process_leaves`, but can serve as a base
class for supplemental domain decompositions and be provided to
:class:`cgal4py.domain_decomp.GenericTree`.
Args:
npts (int): Number of points on this leaf.
left_edge (np.ndarray of float64): Leaf min along each dimension.
right_edge (np.ndarray of float64): Leaf max along each dimension.
Attributes:
npts (int): Number of points on this leaf, including those added
during communication.
left_edge (np.ndarray of float64): Domain minimum along each
dimension.
right_edge (np.ndarray of float64): Domain maximum along each
dimension.
"""
self.npts = npts
self.left_edge = left_edge
self.right_edge = right_edge
@classmethod
def from_leaf(cls, leaf):
r"""Construct a GenericLeaf from a non-generic leaf.
Args:
leaf (Leaf): A leaf object.
Returns:
:class:`cgal4py.domain_decomp.GenericLeaf`: Generic version of the
input leaf.
"""
out = cls(leaf.npts, leaf.left_edge, leaf.right_edge)
other_attr = ['id', 'ndim', 'num_leaves', 'start_idx', 'stop_idx',
'domain_width', 'periodic_left', 'periodic_right',
'left_neighbors', 'right_neighbors', 'neighbors']
for k in other_attr:
if hasattr(leaf, k):
setattr(out, k, getattr(leaf, k))
return out
class GenericTree(object):
def __init__(self, idx, leaves, left_edge, right_edge, periodic):
r"""Generic container for domain decomposition with the minimal
required info. The leaves must have at least the following
attributes:
npts (int): Number of points on the leaf.
left_edge (np.ndarray of float): min of leaf extent in each
dimension.
right_edge (np.ndarray of float): max of leaf extent in each
dimension.
Args:
idx (np.ndarray of int): Indices sorting points in the tree by the
leaf that contains them.
leaves (list of leaf objects): Leaves in an arbitrary domain
decomposition.
left_edge (np.ndarray of float): domain minimum in each dimension.
right_edge (np.ndarray of float): domain maximum in each dimension.
periodic (bool): True if domain is periodic, False otherwise.
Attributes:
idx (np.ndarray of int): Indices sorting points in the tree by the
leaf that contains them.
leaves (list of leaf objects): Leaves in an arbitrary domain
decomposition.
left_edge (np.ndarray of float): domain minimum in each dimension.
right_edge (np.ndarray of float): domain maximum in each dimension.
periodic (bool): True if domain is periodic, False otherwise.
num_leaves (int): Number of leaves in the tree.
domain_width (np.ndarray of float): Domain width in each dimension.
"""
self.idx = idx
self.left_edge = left_edge
self.right_edge = right_edge
self.periodic = periodic
self.domain_width = right_edge - left_edge
self.num_leaves = len(leaves)
self.leaves = process_leaves(leaves, left_edge, right_edge, periodic)
@classmethod
def from_tree(cls, tree):
r"""Construct a GenericTree from a non-generic tree.
Args:
tree (Tree): A tree object.
Returns:
:class:`cgal4py.domain_decomp.GenericTree`: Generic version of the
input tree.
"""
leaves = [GenericLeaf.from_leaf(leaf) for leaf in tree.leaves]
out = cls(tree.idx, leaves, tree.left_edge, tree.right_edge,
tree.periodic)
other_attr = []
for k in other_attr:
if hasattr(leaf, k):
setattr(out, k, getattr(leaf, k))
return out
def process_leaves(leaves, left_edge, right_edge, periodic):
r"""Process leaves ensuring they have the necessary information/methods
for parallel tessellation. Each leaf must have at least the following
attributes:
npts (int): Number of points on the leaf.
left_edge (np.ndarray of float): min of leaf extent in each dimension.
right_edge (np.ndarray of float): max of leaf extent in each dimension.
Args:
leaves (list of leaf objects): Leaves in an arbitrary domain
decomposition.
left_edge (np.ndarray of float64): domain minimum in each dimension.
right_edge (np.ndarray of float64): domain maximum in each dimension.
periodic (bool): True if domain is periodic, False otherwise.
Returns:
list of leaf objects: Leaves process with additional attributes added
if they do not exist and can be added.
Raises:
AttributeError: If a leaf does not have one of the required attributes.
TypeError: If a leaf has a required attribute, but of the wrong type.
ValueError: If a leaf has a required attribute, but of the wrong size.
"""
ndim = len(left_edge)
req_attr = {'npts': [int, np.int32, np.uint32, np.int64, np.uint64],
'left_edge': ([float, np.float32, np.float64], (ndim,)),
'right_edge': ([float, np.float32, np.float64], (ndim,))}
if PY_MAJOR_VERSION < 3:
req_attr['npts'].append(long)
# Check for necessary attributes
for k, v in req_attr.items():
if isinstance(v, tuple):
for i, leaf in enumerate(leaves):
if not hasattr(leaf, k):
raise AttributeError(
"Leaf {} does not have attribute {}.".format(i, k))
lv = getattr(leaf, k)
if not isinstance(lv, np.ndarray):
raise TypeError("Attribute {} ".format(k) +
"of leaf {} ".format(i) +
"is not an array.\n" +
"It is type {}.".format(type(lv)))
if lv.dtype not in v[0]:
raise TypeError("Attribute {} ".format(k) +
"of leaf {} ".format(i) +
"is not an array with dtype " +
"{}.\n".format(v[0]) +
"It is type {}.".format(lv.dtype))
if v[1] is not None and lv.shape != v[1]:
raise ValueError("Attribute {} ".format(k) +
"of leaf {} ".format(i) +
"is not an array with shape " +
"{}.\n".format(v[1]) +
"It is shape {}.".format(lv.shape))
else:
for i, leaf in enumerate(leaves):
if not hasattr(leaf, k):
raise AttributeError("Leaf {} does not ".format(i) +
"have attribute {}.".format(k))
lv = getattr(leaf, k)
if not isinstance(lv, tuple(v)):
raise TypeError("Attribute {} ".format(k) +
"of leaf {} is not ".format(i) +
"of type {}.\n".format(v) +
"It is type {}.".format(type(lv)))
# Set id & ensure leaves are sorted
if getattr(leaves[0], 'id', None) is None:
for i, leaf in enumerate(leaves):
leaf.id = i
else:
leaves = sorted(leaves, key=lambda l: l.id)
# Set number of dimensions
if getattr(leaves[0], 'ndim', None) is None:
for leaf in leaves:
leaf.ndim = ndim
# Set total number of leaves
if getattr(leaves[0], 'num_leaves', None) is None:
num_leaves = len(leaves)
for leaf in leaves:
leaf.num_leaves = num_leaves
# Set starting index
if getattr(leaves[0], 'start_idx', None) is None:
nprev = 0
for leaf in leaves:
leaf.start_idx = nprev
nprev += leaf.npts
# Set stopping index
if getattr(leaves[0], 'stop_idx', None) is None:
for leaf in leaves:
leaf.stop_idx = leaf.start_idx + leaf.npts
# Set domain width
if getattr(leaves[0], 'domain_width', None) is None:
domain_width = right_edge - left_edge
for leaf in leaves:
leaf.domain_width = domain_width
# Determine if leaves are on periodic boundaries
if getattr(leaves[0], 'periodic_left', None) is None:
if periodic:
for leaf in leaves:
leaf.periodic_left = np.isclose(leaf.left_edge, left_edge)
leaf.periodic_right = np.isclose(leaf.right_edge, right_edge)
else:
for leaf in leaves:
leaf.periodic_left = np.zeros(leaf.ndim, 'bool')
leaf.periodic_right = np.zeros(leaf.ndim, 'bool')
# Add neighbors
if getattr(leaves[0], 'left_neighbors', None) is None:
for j, leaf in enumerate(leaves):
leaf.left_neighbors = [[] for _ in range(ndim)]
leaf.right_neighbors = [[] for _ in range(ndim)]
for prev in leaves[:(j+1)]:
match = True
for i in range(ndim):
if leaf.left_edge[i] > prev.right_edge[i]:
if not (leaf.periodic_right[i] and
prev.periodic_left[i]):
match = False
break
if leaf.right_edge[i] < prev.left_edge[i]:
if not (prev.periodic_right[i] and
leaf.periodic_left[i]):
match = False
break
if match:
for i in range(ndim):
if np.isclose(leaf.left_edge[i], prev.right_edge[i]):
leaf.left_neighbors[i].append(prev.id)
prev.right_neighbors[i].append(leaf.id)
elif np.isclose(leaf.right_edge[i], prev.left_edge[i]):
leaf.right_neighbors[i].append(prev.id)
prev.left_neighbors[i].append(leaf.id)
if periodic:
if (leaf.periodic_right[i] and
prev.periodic_left[i]):
leaf.right_neighbors[i].append(prev.id)
prev.left_neighbors[i].append(leaf.id)
if (prev.periodic_right[i] and
leaf.periodic_left[i]):
leaf.left_neighbors[i].append(prev.id)
prev.right_neighbors[i].append(leaf.id)
if getattr(leaves[0], 'neighbors', None) is None:
for leaf in leaves:
neighbors = [leaf.id]
for i in range(ndim):
neighbors += leaf.left_neighbors[i]
neighbors += leaf.right_neighbors[i]
leaf.neighbors = list(set(neighbors))
# Return leaves
return leaves
__all__ = ["tree", "kdtree", "GenericLeaf", "GenericTree", "process_leaves"]
| 0
| 1,305
| 0
| 3,031
| 0
| 0
| 0
| 0
| 46
|
47de195050b2ce241f5bd06bf41a7f034574533c
| 787
|
py
|
Python
|
satsound/migrations/0002_auto_20161110_1753.py
|
saanobhaai/apman
|
e07452f54fcb895fb6039b6be63abf3861d7b9cb
|
[
"MIT"
] | null | null | null |
satsound/migrations/0002_auto_20161110_1753.py
|
saanobhaai/apman
|
e07452f54fcb895fb6039b6be63abf3861d7b9cb
|
[
"MIT"
] | null | null | null |
satsound/migrations/0002_auto_20161110_1753.py
|
saanobhaai/apman
|
e07452f54fcb895fb6039b6be63abf3861d7b9cb
|
[
"MIT"
] | null | null | null |
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2016-11-10 17:53
from __future__ import unicode_literals
| 29.148148
| 116
| 0.631512
|
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2016-11-10 17:53
from __future__ import unicode_literals
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('satsound', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='satellitetrajectory',
name='observer',
field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='satsound.Observer'),
preserve_default=False,
),
migrations.AlterField(
model_name='satellite',
name='tle',
field=models.CharField(blank=True, max_length=164, verbose_name='two-line element'),
),
]
| 0
| 0
| 0
| 575
| 0
| 0
| 0
| 30
| 68
|
65ad5cf978781fc39296c7ef6130f2bc6c3e1a86
| 21,851
|
py
|
Python
|
attic/pyromsguiwx_old.py
|
rsoutelino/romsview
|
0a44e6ef795ff3580960792836adcc64730994d6
|
[
"MIT"
] | 2
|
2021-12-11T19:27:37.000Z
|
2022-03-05T04:09:18.000Z
|
attic/pyromsguiwx_old.py
|
rsoutelino/romsview
|
0a44e6ef795ff3580960792836adcc64730994d6
|
[
"MIT"
] | null | null | null |
attic/pyromsguiwx_old.py
|
rsoutelino/romsview
|
0a44e6ef795ff3580960792836adcc64730994d6
|
[
"MIT"
] | 3
|
2021-11-06T20:17:02.000Z
|
2022-01-16T09:23:48.000Z
|
#!/usr/bin/env python
######################################################
# GUI to vizualize ROMS input/output files
# Sep 2021
# [email protected]
######################################################
import os
import wx
import datetime as dt
import matplotlib.pyplot as plt
# TO-DO LIST: ====================================================
# - correct bug with date selection: somehow the times re-start
# every 00z
# - need to decide which x-axis to use, lon or lat
# ================================================================
# NICE TIP TO DEBUG THIS PROGRAM: ================================
# - comment out app.MainLoop at the last line of this script
# - ipython --gui=wx
# - run pyromsgui.py
# - trigger the events and check out the objects in the shell
# ================================================================
global currentDirectory
currentDirectory = os.getcwd()
PROJECT_DIR = os.path.abspath(os.path.dirname(__file__))
DEFAULT_VMIN = 0
DEFAULT_VMAX = 1.5
DEFAULT_CMAP = plt.cm.BrBG
DEFAULT_DEPTH_FOR_LAND = -50
def romsTime2string(nctime):
"""
nctime : netCDF4 variable
"""
timeunits = nctime.units
units = timeunits.split(' ')[0]
tstart = dt.datetime.strptime(timeunits.split(' ')[-2], "%Y-%m-%d")
timelist = []
for t in nctime[:]:
if units == 'seconds':
current = tstart + dt.timedelta(seconds=t)
if units == 'days':
current = tstart + dt.timedelta(seconds=t*86400)
timelist.append(current.strftime("%Y-%m-%d %H h"))
return timelist
def load_bitmap(filename, direc=None):
"""
Load a bitmap file from the ./icons subdirectory.
The filename parameter should not
contain any path information as this is determined automatically.
Returns a wx.Bitmap object
copied from matoplotlib resources
"""
if not direc:
basedir = os.path.join(PROJECT_DIR, 'icons')
else:
basedir = os.path.join(PROJECT_DIR, direc)
bmpFilename = os.path.normpath(os.path.join(basedir, filename))
if not os.path.exists(bmpFilename):
raise IOError('Could not find bitmap file "%s"; dying' % bmpFilename)
bmp = wx.Bitmap(bmpFilename)
return bmp
if __name__ == "__main__":
app = App(False)
app.MainLoop()
| 36.540134
| 103
| 0.565558
|
#!/usr/bin/env python
######################################################
# GUI to vizualize ROMS input/output files
# Sep 2021
# [email protected]
######################################################
import os
import wx
import datetime as dt
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as Navbar
from matplotlib.backends.backend_wx import NavigationToolbar2Wx
from matplotlib.figure import Figure
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.path import Path
import scipy.io as sp
import netCDF4 as nc
from lib import *
# TO-DO LIST: ====================================================
# - correct bug with date selection: somehow the times re-start
# every 00z
# - need to decide which x-axis to use, lon or lat
# ================================================================
# NICE TIP TO DEBUG THIS PROGRAM: ================================
# - comment out app.MainLoop at the last line of this script
# - ipython --gui=wx
# - run pyromsgui.py
# - trigger the events and check out the objects in the shell
# ================================================================
global currentDirectory
currentDirectory = os.getcwd()
PROJECT_DIR = os.path.abspath(os.path.dirname(__file__))
DEFAULT_VMIN = 0
DEFAULT_VMAX = 1.5
DEFAULT_CMAP = plt.cm.BrBG
DEFAULT_DEPTH_FOR_LAND = -50
class App(wx.App):
def OnInit(self):
self.frame = Interface("PyRomsGUI 0.1.0", size=(1024, 800))
self.frame.Show()
return True
class Interface(wx.Frame):
def __init__(self, title=wx.EmptyString, pos=wx.DefaultPosition,
size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE,
*args, **kwargs):
wx.Frame.__init__(self, None, -1, "PyRomsGUI 0.1.0", pos=pos,
size=size, style=style, *args, **kwargs)
# Initializing toolbar
self.toolbar = MainToolBar(self)
# BASIC LAYOUT OF THE NESTED SIZERS ======================
panel1 = wx.Panel(self, wx.ID_ANY, style=wx.SUNKEN_BORDER)
mplpanel = wx.Panel(self, wx.ID_ANY, style=wx.SUNKEN_BORDER)
mplpanel.SetBackgroundColour("WHITE")
# BOX 1 is the main sizer
box1 = wx.BoxSizer(wx.HORIZONTAL)
box1.Add(panel1, 1, wx.EXPAND)
box1.Add(mplpanel, 4, wx.EXPAND)
# BOX 2 is the inner sizer of the left big control panel
box2 = wx.BoxSizer(wx.VERTICAL)
# BOX 3 is the sizer of the right big parent panel(panel1), the one that will
# serve as base for two child panels which will hold
# the two matplotlib canvas's
box3 = wx.BoxSizer(wx.VERTICAL)
# panel 1 content ========================================
variable = wx.StaticText(panel1, label="Variable")
box2.Add(variable, proportion=0, flag=wx.CENTER)
self.var_select = wx.ComboBox(panel1, value='Choose variable')
box2.Add(self.var_select, proportion=0, flag=wx.CENTER)
self.var_select.Bind(wx.EVT_COMBOBOX, self.toolbar.OnUpdateHslice)
time = wx.StaticText(panel1, label="Time record")
box2.Add(time, proportion=0, flag=wx.CENTER)
self.time_select = wx.ComboBox(panel1, value='Choose time step')
box2.Add(self.time_select, proportion=0, flag=wx.CENTER)
self.time_select.Bind(wx.EVT_COMBOBOX, self.toolbar.OnUpdateHslice)
# mplpanel content ========================================
self.mplpanel = SimpleMPLCanvas(mplpanel)
box3.Add(self.mplpanel.canvas, 1, flag=wx.CENTER)
# FINAL LAYOUT CONFIGURATIONS ============================
self.SetAutoLayout(True)
panel1.SetSizer(box2)
mplpanel.SetSizer(box3)
self.SetSizer(box1)
self.InitMenu()
self.Layout()
self.Centre()
def InitMenu(self):
menubar = wx.MenuBar()
fileMenu = wx.Menu()
fileMenu.Append(wx.ID_OPEN, u'&Open ROMS grid file')
fileMenu.Append(wx.ID_OPEN, u'&Open coastline file')
fileMenu.Append(wx.ID_SAVE, '&Save grid')
fileMenu.AppendSeparator()
qmi = wx.MenuItem(fileMenu, wx.ID_EXIT, '&Quit\tCtrl+W')
opf = wx.MenuItem(fileMenu, wx.ID_OPEN, '&Open\tCtrl+O')
opc = wx.MenuItem(fileMenu, wx.ID_OPEN, '&Open\tCtrl+O+C')
svf = wx.MenuItem(fileMenu, wx.ID_SAVE, '&Save\tCtrl+S')
fileMenu.AppendItem(qmi)
# fileMenu.AppendItem(svf)
self.Bind(wx.EVT_MENU, self.OnQuit, qmi)
self.Bind(wx.EVT_MENU, self.toolbar.OnLoadFile, opf)
self.Bind(wx.EVT_MENU, self.toolbar.OnLoadCoastline, opc)
self.Bind(wx.EVT_MENU, self.toolbar.OnPlotVslice, svf)
menubar.Append(fileMenu, u'&PyRomsGUI')
self.SetMenuBar(menubar)
def OnQuit(self, e):
"""Fecha o programa"""
self.Close()
self.Destroy()
def OnCloseWindow(self, e):
self.Destroy()
class SimpleMPLCanvas(object):
"""docstring for SimpleMPLCanvas"""
def __init__(self, parent):
super(SimpleMPLCanvas, self).__init__()
self.parent = parent
self.plot_properties()
self.make_navbar()
def make_navbar(self):
self.navbar = Navbar(self.canvas)
self.navbar.SetPosition(wx.Point(0, 0)) # this is not working !!
def plot_properties(self):
# Create matplotlib figure
self.fig = Figure(facecolor='w', figsize=(12, 8))
self.canvas = FigureCanvas(self.parent, -1, self.fig)
self.ax = self.fig.add_subplot(111)
# tit = self.ax1.set_title("ROMS mask_rho", fontsize=12, fontweight='bold')
# tit.set_position([0.9, 1.05])
class MainToolBar(object):
def __init__(self, parent):
self.currentDirectory = os.getcwd()
self.parent = parent
self.toolbar = parent.CreateToolBar(style=1, id=1,
name="Toolbar")
self.tools_params = {
'load_file': (load_bitmap('grid.png'), u"Load ROMS netcdf file",
"Load ocean_???.nc ROMS netcdf file"),
'load_coastline': (load_bitmap('coast.png'), u"Load coastline",
"Load *.mat coastline file [lon / lat poligons]"),
'plot_vslice': (load_bitmap('save.png'), u"Plot vertical slice",
"Plot vertical slice of some variable"),
'settings': (load_bitmap('settings.png'), u"PyRomsGUI settings",
"PyRomsGUI configurations"),
'quit': (load_bitmap('exit.png'), u"Quit",
"Quit PyRomsGUI"),
}
self.createTool(self.toolbar, self.tools_params['load_file'],
self.OnLoadFile)
self.createTool(self.toolbar, self.tools_params['load_coastline'],
self.OnLoadCoastline)
self.toolbar.AddSeparator()
# from IPython import embed; embed()
self.plot_vslice = self.createTool(self.toolbar,
self.tools_params['plot_vslice'],
self.OnPlotVslice)
self.toolbar.AddSeparator()
self.createTool(self.toolbar, self.tools_params['settings'],
self.OnSettings)
self.createTool(self.toolbar, self.tools_params['quit'],
self.parent.OnQuit)
self.toolbar.Realize()
def createTool(self, parent, params, evt, isToggle=False):
tool = parent.AddTool(wx.NewId(), 'a', params[0], shortHelp=params[1])
self.parent.Bind(wx.EVT_TOOL, evt, id=tool.GetId())
return tool
def OnLoadFile(self, evt):
openFileDialog = wx.FileDialog(self.parent, "Open roms netcdf file [*.nc]",
"/ops/hindcast/roms/", " ",
"netcdf files (*.nc)|*.nc",
wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)
if openFileDialog.ShowModal() == wx.ID_CANCEL:
return # the user changed idea...
filename = openFileDialog.GetPath()
self.ncfile = nc.Dataset(filename)
# this function is intended to return relevant information on the file
varlist, axeslist, time = taste_ncfile(self.ncfile)
timelist = romsTime2string(time)
app.frame.var_select.SetItems(varlist)
app.frame.time_select.SetItems(timelist)
app.frame.time_select.SetValue(timelist[0])
# opening ROMS grid
openFileDialog = wx.FileDialog(self.parent, "Open roms GRID netcdf file [*_grd.nc]",
"/ops/hindcast/roms/", " ",
"netcdf files (*.nc)|*.nc",
wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)
if openFileDialog.ShowModal() == wx.ID_CANCEL:
return # the user changed idea...
grdname = openFileDialog.GetPath()
self.grd = nc.Dataset(grdname)
lon = self.grd.variables['lon_rho'][:]
lat = self.grd.variables['lat_rho'][:]
h = self.grd.variables['h'][:]
mplpanel = app.frame.mplpanel
ax = mplpanel.ax
self.pcolor = ax.pcolormesh(lon, lat, h, cmap=plt.cm.terrain_r)
ax.set_xlim([lon.min(), lon.max()])
ax.set_ylim([lat.min(), lat.max()])
ax.set_aspect('equal')
mplpanel.canvas.draw()
def OnUpdateHslice(self, evt):
# from IPython import embed; embed()
varname = app.frame.var_select.GetValue()
var = self.ncfile.variables[varname]
dimensions = var.dimensions
grid = dimensions[-1].split('_')[-1]
lon = self.grd.variables['lon_'+grid][:]
lat = self.grd.variables['lat_'+grid][:]
# time index
varlist, axeslist, time = taste_ncfile(self.ncfile)
timestr = app.frame.time_select.GetValue()
selected_time = string2romsTime(timestr, self.ncfile)
# from IPython import embed; embed()
tindex = np.where(time[:] == selected_time)[0][0]
if len(dimensions) == 3:
arr = var[tindex, ...]
if len(dimensions) == 4:
arr = var[tindex, -1, ...]
mplpanel = app.frame.mplpanel
ax = mplpanel.ax
ax.clear()
ax.pcolormesh(lon, lat, arr, cmap=plt.cm.jet)
ax.set_xlim([lon.min(), lon.max()])
ax.set_ylim([lat.min(), lat.max()])
ax.set_title("%s %s" % (varname, timestr))
ax.set_aspect('equal')
mplpanel.canvas.draw()
def OnLoadCoastline(self, evt):
openFileDialog = wx.FileDialog(self.parent, "Open coastline file - MATLAB Seagrid-like format",
"/home/rsoutelino/metocean/projects/mermaid", " ",
"MAT files (*.mat)|*.mat",
wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)
if openFileDialog.ShowModal() == wx.ID_CANCEL:
return # the user changed idea...
filename = openFileDialog.GetPath()
coast = sp.loadmat(filename)
lon, lat = coast['lon'], coast['lat']
mplpanel = app.frame.mplpanel
ax = mplpanel.ax
ax.plot(lon, lat, 'k')
try:
ax.set_xlim([self.grd.lonr.min(), self.grd.lonr.max()])
ax.set_ylim([self.grd.latr.min(), self.grd.latr.max()])
except AttributeError: # just in case a grid was not loaded before
ax.set_xlim([np.nanmin(lon), np.nanmax(lon)])
ax.set_ylim([np.nanmin(lat), np.nanmax(lat)])
ax.set_aspect('equal')
mplpanel.canvas.draw()
def OnPlotVslice(self, evt):
mplpanel = app.frame.mplpanel
self.cid = mplpanel.canvas.mpl_connect(
'button_press_event', self.vslice)
def OnSettings(self, evt):
pass
def vslice(self, evt):
if evt.inaxes != app.frame.mplpanel.ax:
return
mplpanel = app.frame.mplpanel
ax = mplpanel.ax
x, y = evt.xdata, evt.ydata
button = evt.button
p = ax.plot(x, y, 'wo', markeredgecolor='k')
try:
self.points.append(p)
self.area.append((x, y))
except AttributeError:
self.points = [p]
self.area = [(x, y)]
if len(self.points) == 2:
ax.plot([self.area[0][0], self.area[1][0]],
[self.area[0][1], self.area[1][1]], 'k')
p1, p2 = self.area[0], self.area[1]
mplpanel.canvas.draw()
if len(self.points) == 2:
# assigning relevant variables
varname = app.frame.var_select.GetValue()
var = self.ncfile.variables[varname]
dimensions = var.dimensions
grid = dimensions[-1].split('_')[-1]
lon = self.grd.variables['lon_'+grid][:]
lat = self.grd.variables['lat_'+grid][:]
ts = self.ncfile.variables['theta_s'][:]
tb = self.ncfile.variables['theta_b'][:]
hc = self.ncfile.variables['hc'][:]
nlev = var.shape[1]
sc = (np.arange(1, nlev + 1) - nlev - 0.5) / nlev
sigma = self.ncfile.variables['Cs_r'][:]
dl = (np.gradient(lon)[1].mean() + np.gradient(lat)[0].mean()) / 2
siz = int(np.sqrt((p1[0] - p2[0])**2 + (p1[1] - p2[1])**2) / dl)
xs = np.linspace(p1[0], p2[0], siz)
ys = np.linspace(p1[1], p2[1], siz)
# time index
varlist, axeslist, time = taste_ncfile(self.ncfile)
timestr = app.frame.time_select.GetValue()
selected_time = string2romsTime(timestr, self.ncfile)
tindex = np.where(time[:] == selected_time)[0][0]
# getting nearest values
hsec, zeta, vsec = [], [], []
for ind in range(xs.size):
line, col = near2d(lon, lat, xs[ind], ys[ind])
vsec.append(var[tindex, :, line, col])
hsec.append(self.grd.variables['h'][line, col])
zeta.append(self.ncfile.variables['zeta'][tindex, line, col])
vsec = np.array(vsec).transpose()
hsec, zeta = np.array(hsec), np.array(zeta)
xs = xs.reshape(1, xs.size).repeat(nlev, axis=0)
ys = ys.reshape(1, ys.size).repeat(nlev, axis=0)
zsec = get_zlev(hsec, sigma, 5, sc, ssh=zeta, Vtransform=2)
xs = np.ma.masked_where(vsec > 1e20, xs)
ys = np.ma.masked_where(vsec > 1e20, ys)
zsec = np.ma.masked_where(vsec > 1e20, zsec)
vsec = np.ma.masked_where(vsec > 1e20, vsec)
self.vslice_dialog = VsliceDialog(app.frame, xs, ys, zsec, vsec)
del self.points, self.area
mplpanel.canvas.draw()
class VsliceDialog(wx.Dialog):
def __init__(self, parent, xs, ys, zsec, vsec, *args, **kwargs):
wx.Dialog.__init__(self, parent, -1, "VARIABLE Vertical Slice, TIMERECORD", pos=(0, 0),
size=(1200, 600), style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER)
self.xs, self.ys, self.zsec, self.vsec = xs, ys, zsec, vsec
# BASIC LAYOUT OF THE NESTED SIZERS ======================
panel1 = wx.Panel(self, wx.ID_ANY, style=wx.SUNKEN_BORDER)
mplpanel = wx.Panel(self, wx.ID_ANY, style=wx.SUNKEN_BORDER)
mplpanel.SetBackgroundColour("WHITE")
# BOX 1 is the main sizer
box1 = wx.BoxSizer(wx.HORIZONTAL)
box1.Add(panel1, 1, wx.EXPAND)
box1.Add(mplpanel, 4, wx.EXPAND)
# BOX 2 is the inner sizer of the left control panel
box2 = wx.BoxSizer(wx.VERTICAL)
# BOX 3 is the sizer of the panel1
box3 = wx.BoxSizer(wx.VERTICAL)
# panel 1 content ========================================
plot_type = wx.StaticText(panel1, label="Plot type")
box2.Add(plot_type, proportion=0, flag=wx.CENTER)
self.plot_select = wx.ComboBox(panel1, value='scatter')
box2.Add(self.plot_select, proportion=0, flag=wx.CENTER)
self.plot_select.Bind(wx.EVT_COMBOBOX, self.OnUpdatePlot)
self.plot_select.SetItems(['scatter', 'pcolormesh',
'contourf', 'contour'])
minmax = wx.StaticText(panel1, label="Range")
box2.Add(minmax, proportion=0, flag=wx.CENTER)
self.max = wx.TextCtrl(panel1, value=str(vsec.max()))
self.min = wx.TextCtrl(panel1, value=str(vsec.min()))
box2.Add(self.max, proportion=0, flag=wx.CENTER)
box2.Add(self.min, proportion=0, flag=wx.CENTER)
scale = wx.StaticText(panel1, label="Scatter scale")
box2.Add(scale, proportion=0, flag=wx.CENTER)
self.scatter_scale = wx.SpinCtrl(panel1, value='50')
box2.Add(self.scatter_scale, proportion=0, flag=wx.CENTER)
# mplpanel content ========================================
self.mplpanel = SimpleMPLCanvas(mplpanel)
box3.Add(self.mplpanel.canvas, 1, flag=wx.CENTER)
ax = self.mplpanel.ax
pl = ax.scatter(xs.ravel(), zsec.ravel(), s=50, c=vsec.ravel(),
edgecolors='none', cmap=plt.cm.jet)
self.mplpanel.ax2 = self.mplpanel.fig.add_axes(
[0.93, 0.15, 0.015, 0.7])
ax2 = self.mplpanel.ax2
cbar = self.mplpanel.fig.colorbar(pl, cax=ax2)
ax.set_xlim([xs.min(), xs.max()])
ax.set_ylim([zsec.min(), zsec.max()])
self.mplpanel.canvas.draw()
# FINAL LAYOUT CONFIGURATIONS ============================
self.SetAutoLayout(True)
panel1.SetSizer(box2)
mplpanel.SetSizer(box3)
self.SetSizer(box1)
self.Show()
def OnUpdatePlot(self, evt):
xs, ys, zsec, vsec = self.xs, self.ys, self.zsec, self.vsec
ax, ax2 = self.mplpanel.ax, self.mplpanel.ax2
ax.clear()
ax2.clear()
vmin, vmax = float(self.min.GetValue()), float(self.max.GetValue())
plot_type = self.plot_select.GetValue()
sc = self.scatter_scale.GetValue()
if plot_type == 'scatter':
pl = ax.scatter(xs.ravel(), zsec.ravel(), s=sc, c=vsec.ravel(),
vmin=vmin, vmax=vmax, edgecolors='none', cmap=plt.cm.jet)
elif plot_type == 'pcolormesh':
pl = ax.pcolormesh(xs, zsec, vsec, vmin=vmin,
vmax=vmax, cmap=plt.cm.jet)
elif plot_type == 'contourf':
zsec = np.array(zsec)
f = np.where(np.isnan(zsec) == True)
zsec[f] = 0
levs = np.linspace(vmin, vmax, 50)
pl = ax.contourf(xs, zsec, vsec, levs, cmap=plt.cm.jet)
elif plot_type == 'contour':
zsec = np.array(zsec)
f = np.where(np.isnan(zsec) == True)
zsec[f] = 0
levs = np.linspace(vmin, vmax, 50)
pl = ax.contour(xs, zsec, vsec, levs, cmap=plt.cm.jet)
ax.set_xlim([xs.min(), xs.max()])
ax.set_ylim([zsec.min(), zsec.max()])
cbar = self.mplpanel.fig.colorbar(pl, cax=ax2)
self.mplpanel.canvas.draw()
def taste_ncfile(ncfile):
try:
if "history" in ncfile.type:
filetype = 'his'
elif 'restart' in ncfile.type:
filetype = 'rst'
except AttributeError:
print "Not a standard ROMS file !"
filetype = 'clim' # old wrapper
varlist = ROMSVARS[filetype]['variables']
axeslist = ROMSVARS[filetype]['axes']
for axes in axeslist:
if 'time' in axes:
try:
time = ncfile.variables[axes]
except KeyError:
time = ncfile.variables['time'] # for non-default axes name
else:
pass
return varlist, axeslist, time
def romsTime2string(nctime):
"""
nctime : netCDF4 variable
"""
timeunits = nctime.units
units = timeunits.split(' ')[0]
tstart = dt.datetime.strptime(timeunits.split(' ')[-2], "%Y-%m-%d")
timelist = []
for t in nctime[:]:
if units == 'seconds':
current = tstart + dt.timedelta(seconds=t)
if units == 'days':
current = tstart + dt.timedelta(seconds=t*86400)
timelist.append(current.strftime("%Y-%m-%d %H h"))
return timelist
def string2romsTime(timelist, ncfile):
if not isinstance(timelist, list):
timelist = [timelist]
varlist, axeslist, time = taste_ncfile(ncfile)
timeunits = time.units
units = timeunits.split(' ')[0]
tstart = dt.datetime.strptime(timeunits.split(' ')[-2], "%Y-%m-%d")
romstime = []
for timestr in timelist:
dttime = dt.datetime.strptime(timestr, "%Y-%m-%d %H h")
delta = dttime - tstart
if units == 'seconds':
current = delta.seconds
if units == 'days':
current = delta.days
romstime.append(current)
if len(romstime) == 1:
return romstime[0]
else:
return romstime
def load_bitmap(filename, direc=None):
"""
Load a bitmap file from the ./icons subdirectory.
The filename parameter should not
contain any path information as this is determined automatically.
Returns a wx.Bitmap object
copied from matoplotlib resources
"""
if not direc:
basedir = os.path.join(PROJECT_DIR, 'icons')
else:
basedir = os.path.join(PROJECT_DIR, direc)
bmpFilename = os.path.normpath(os.path.join(basedir, filename))
if not os.path.exists(bmpFilename):
raise IOError('Could not find bitmap file "%s"; dying' % bmpFilename)
bmp = wx.Bitmap(bmpFilename)
return bmp
if __name__ == "__main__":
app = App(False)
app.MainLoop()
| 0
| 0
| 0
| 17,687
| 0
| 1,306
| 0
| 176
| 362
|
700588898a4c3e0a8dc6ac4dc1d2cd5ed25b1673
| 1,464
|
py
|
Python
|
02_Math/sum_of_pairwise_hamming_distance.py
|
Sheetal0601/InterviewBit
|
72ba1507278dafac6e5fb81da20d372e3d141348
|
[
"MIT"
] | 61
|
2018-02-18T08:16:31.000Z
|
2022-02-17T17:18:57.000Z
|
02_Math/sum_of_pairwise_hamming_distance.py
|
Sheetal0601/InterviewBit
|
72ba1507278dafac6e5fb81da20d372e3d141348
|
[
"MIT"
] | 1
|
2018-02-23T20:06:18.000Z
|
2019-12-29T18:52:20.000Z
|
02_Math/sum_of_pairwise_hamming_distance.py
|
Sheetal0601/InterviewBit
|
72ba1507278dafac6e5fb81da20d372e3d141348
|
[
"MIT"
] | 30
|
2018-03-28T19:02:23.000Z
|
2021-07-06T20:00:14.000Z
|
# Sum of pairwise Hamming Distance
# https://www.interviewbit.com/problems/sum-of-pairwise-hamming-distance/
#
# Hamming distance between two non-negative integers is defined as the number of positions at
# which the corresponding bits are different.
#
# For example,
#
# HammingDistance(2, 7) = 2, as only the first and the third bit differs in the binary
# representation of 2 (010) and 7 (111).
#
# Given an array of N non-negative integers, find the sum of hamming distances of all pairs of
# integers in the array.
#
# Return the answer modulo 1000000007.
#
# Example
#
# Let f(x, y) be the hamming distance defined above.
#
# A=[2, 4, 6]
#
# We return,
# f(2, 2) + f(2, 4) + f(2, 6) +
# f(4, 2) + f(4, 4) + f(4, 6) +
# f(6, 2) + f(6, 4) + f(6, 6) =
#
# 0 + 2 + 1
# 2 + 0 + 1
# 1 + 1 + 0 = 8
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
if __name__ == "__main__":
s = Solution()
print(s.hammingDistance((2, 4, 6)))
| 26.142857
| 99
| 0.503415
|
# Sum of pairwise Hamming Distance
# https://www.interviewbit.com/problems/sum-of-pairwise-hamming-distance/
#
# Hamming distance between two non-negative integers is defined as the number of positions at
# which the corresponding bits are different.
#
# For example,
#
# HammingDistance(2, 7) = 2, as only the first and the third bit differs in the binary
# representation of 2 (010) and 7 (111).
#
# Given an array of N non-negative integers, find the sum of hamming distances of all pairs of
# integers in the array.
#
# Return the answer modulo 1000000007.
#
# Example
#
# Let f(x, y) be the hamming distance defined above.
#
# A=[2, 4, 6]
#
# We return,
# f(2, 2) + f(2, 4) + f(2, 6) +
# f(4, 2) + f(4, 4) + f(4, 6) +
# f(6, 2) + f(6, 4) + f(6, 6) =
#
# 0 + 2 + 1
# 2 + 0 + 1
# 1 + 1 + 0 = 8
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
class Solution:
# @param A : tuple of integers
# @return an integer
def hammingDistance(self, A):
flag, n, ans = 1, len(A), 0
for i in range(32):
cnt = 0
for a in A:
cnt += (a & flag) > 0
ans = (ans + cnt * (n - cnt)) % 1000000007
flag <<= 1
return (ans * 2) % 1000000007
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
if __name__ == "__main__":
s = Solution()
print(s.hammingDistance((2, 4, 6)))
| 0
| 0
| 0
| 354
| 0
| 0
| 0
| 0
| 23
|
a3630273dbac15d887205a06684a473409e30b99
| 1,865
|
py
|
Python
|
Python/Algorithms/Machine Learning Algorithms/Naive Bayes in python.py
|
ThunderZ007/Data-Structures-and-Algorithms
|
148415faf6472115f6848b1a4e21b660b6d327da
|
[
"MIT"
] | 245
|
2020-10-05T14:52:37.000Z
|
2022-03-29T07:40:38.000Z
|
Python/Algorithms/Machine Learning Algorithms/Naive Bayes in python.py
|
ThunderZ007/Data-Structures-and-Algorithms
|
148415faf6472115f6848b1a4e21b660b6d327da
|
[
"MIT"
] | 521
|
2020-10-05T15:25:29.000Z
|
2021-11-09T13:24:01.000Z
|
Python/Algorithms/Machine Learning Algorithms/Naive Bayes in python.py
|
ThunderZ007/Data-Structures-and-Algorithms
|
148415faf6472115f6848b1a4e21b660b6d327da
|
[
"MIT"
] | 521
|
2020-10-05T15:29:42.000Z
|
2022-03-27T10:22:00.000Z
|
#!/usr/bin/env python
# coding: utf-8
# In[16]:
#importing required packages
import pandas as pd
from sklearn import preprocessing
from sklearn.naive_bayes import BernoulliNB
clf=BernoulliNB()
#loading the data
dataset=pd.read_csv("C:/Users/ASUS/Downloads/train.csv")
dataset.head()
#getting the description of the dataset
dataset.describe()
dataset.describe().sum()
#get some info about the data
dataset.info()
#getting the amount of null values in each column
dataset.isnull().sum()
#dropping the unimportant columns
dataset=dataset.drop('PassengerId', axis=1)
dataset=dataset.drop('Name', axis=1)
dataset=dataset.drop('Ticket', axis=1)
dataset=dataset.drop('Cabin', axis=1)
dataset.head()
#label encoding the categorical values which are of object type
le=preprocessing.LabelEncoder()
dataset['Sex']=le.fit_transform(dataset['Sex'])
dataset['Embarked']=le.fit_transform(dataset['Embarked'])
dataset.head()
"""this functions takes the independent variable column and trains the model after dividing the dataset into x and y
and also spliting the dataset into training and testing data.This also prints the accuracy score and the confusion matrix"""
#Calling the function
navbaiyes('Survived')
# In[ ]:
| 25.202703
| 124
| 0.742091
|
#!/usr/bin/env python
# coding: utf-8
# In[16]:
#importing required packages
import pandas as pd
from sklearn import preprocessing
from sklearn.model_selection import train_test_split
from sklearn.naive_bayes import GaussianNB
from sklearn.metrics import accuracy_score
from sklearn.metrics import confusion_matrix
from sklearn.naive_bayes import BernoulliNB
clf=BernoulliNB()
#loading the data
dataset=pd.read_csv("C:/Users/ASUS/Downloads/train.csv")
dataset.head()
#getting the description of the dataset
dataset.describe()
dataset.describe().sum()
#get some info about the data
dataset.info()
#getting the amount of null values in each column
dataset.isnull().sum()
#dropping the unimportant columns
dataset=dataset.drop('PassengerId', axis=1)
dataset=dataset.drop('Name', axis=1)
dataset=dataset.drop('Ticket', axis=1)
dataset=dataset.drop('Cabin', axis=1)
dataset.head()
#label encoding the categorical values which are of object type
le=preprocessing.LabelEncoder()
dataset['Sex']=le.fit_transform(dataset['Sex'])
dataset['Embarked']=le.fit_transform(dataset['Embarked'])
dataset.head()
"""this functions takes the independent variable column and trains the model after dividing the dataset into x and y
and also spliting the dataset into training and testing data.This also prints the accuracy score and the confusion matrix"""
def navbaiyes(value):
x=dataset.drop([value], axis=1)
y=dataset[value]
x_train,x_test,y_train,y_test=train_test_split(x,y,test_size=0.2,random_state=0)
y_pred= clf.fit(x_train,y_train).predict(x_test)
print("The accuracy score is:")
print(accuracy_score(y_test, y_pred)*100)
print('--------------------------------------------')
print("The confusion matrix is:")
print(confusion_matrix(y_test,y_pred))
#Calling the function
navbaiyes('Survived')
# In[ ]:
| 0
| 0
| 0
| 0
| 0
| 426
| 0
| 96
| 112
|
44ea9fb9dbeae66a8bc24c2056240e71d2dc20e2
| 464
|
py
|
Python
|
python/basis/11-string.py
|
weizhenwei/tech-docs-2016
|
253564a1633e9ec75ac94efede57f52c02b29280
|
[
"BSD-2-Clause"
] | 3
|
2017-06-09T08:48:07.000Z
|
2020-12-13T10:37:44.000Z
|
python/basis/11-string.py
|
weizhenwei/tech-docs-sharetome
|
253564a1633e9ec75ac94efede57f52c02b29280
|
[
"BSD-2-Clause"
] | null | null | null |
python/basis/11-string.py
|
weizhenwei/tech-docs-sharetome
|
253564a1633e9ec75ac94efede57f52c02b29280
|
[
"BSD-2-Clause"
] | 4
|
2020-04-29T07:03:44.000Z
|
2021-07-25T15:12:15.000Z
|
#!/usr/bin/env python
import math
var1 = "Hello"
var2 = "Worldpress"
print "var1 = ", var1
print "var2 = ", var2
print "var1[0] = ", var1[0]
print "var2[1:5] = ", var2[1:5]
if ('H' in var1):
print "H is in var1 ", var1
else:
print "H is not in var1 ", var1
if ('H' not in var2):
print "H is not in var2 ", var2
else:
print "H is in var2 ", var2
var3 = var1 + var2;
print "var1 + var2 = ", var3
print "var1 = %s, var2 = %s" % (var1, var2)
| 15.466667
| 43
| 0.571121
|
#!/usr/bin/env python
import math
var1 = "Hello"
var2 = "Worldpress"
print "var1 = ", var1
print "var2 = ", var2
print "var1[0] = ", var1[0]
print "var2[1:5] = ", var2[1:5]
if ('H' in var1):
print "H is in var1 ", var1
else:
print "H is not in var1 ", var1
if ('H' not in var2):
print "H is not in var2 ", var2
else:
print "H is in var2 ", var2
var3 = var1 + var2;
print "var1 + var2 = ", var3
print "var1 = %s, var2 = %s" % (var1, var2)
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| 0
|
62abacff8a003309f019d0e8ef1a6850d38f3dde
| 1,707
|
py
|
Python
|
gunpowder/tensorflow/local_server.py
|
trivoldus28/gunpowder
|
97e9e64709fb616e2c47567b22d5f11a9234fe48
|
[
"MIT"
] | 43
|
2017-05-03T22:27:11.000Z
|
2022-02-11T19:07:28.000Z
|
gunpowder/tensorflow/local_server.py
|
trivoldus28/gunpowder
|
97e9e64709fb616e2c47567b22d5f11a9234fe48
|
[
"MIT"
] | 102
|
2017-06-09T10:11:06.000Z
|
2022-03-29T13:56:37.000Z
|
gunpowder/tensorflow/local_server.py
|
trivoldus28/gunpowder
|
97e9e64709fb616e2c47567b22d5f11a9234fe48
|
[
"MIT"
] | 43
|
2017-04-25T20:25:17.000Z
|
2022-02-11T19:07:34.000Z
|
import logging
logger = logging.getLogger(__name__)
| 34.836735
| 77
| 0.656122
|
import logging
import multiprocessing
import ctypes
from gunpowder.ext import tensorflow as tf
from gunpowder.freezable import Freezable
logger = logging.getLogger(__name__)
class LocalServer(Freezable):
'''Wrapper around ``tf.train.Server`` to create a local server on-demand.
This class is necessary because tensorflow's GPU support should not be
initialized before forking processes (the CUDA driver needs to be
initialized in each process separately, not in the main process and then
forked). Creating a ``tf.train.Server`` initializes GPU support, however.
With this wrapper, server creating can be delayed until a GPU process
creates a ``tf.Session``::
session = tf.Session(target=LocalServer.get_target())
'''
__target = multiprocessing.Array(ctypes.c_char, b' '*256)
__server = None
@staticmethod
def get_target():
'''Get the target string of this tensorflow server to connect a
``tf.Session()``. This will start the server, if it is not running
already.
'''
with LocalServer.__target.get_lock():
target = LocalServer.__target.value
if target == b' '*256:
logger.info("Creating local tensorflow server")
LocalServer.__server = tf.train.Server.create_local_server()
target = LocalServer.__server.target
if not isinstance(target, bytes):
target = target.encode('ascii')
logger.info("Server running at %s", target)
else:
logger.info("Server already running at %s", target)
LocalServer.__target.value = target
return target
| 0
| 836
| 0
| 673
| 0
| 0
| 0
| 34
| 111
|
838b2b92c45e629173b0d35fc53eade12724bb23
| 6,945
|
py
|
Python
|
src/python/pants/backend/go/tailor.py
|
williamscs/pants
|
4d1f2ca1a58e98c27a26adcb0e9b844a27b75a63
|
[
"Apache-2.0"
] | null | null | null |
src/python/pants/backend/go/tailor.py
|
williamscs/pants
|
4d1f2ca1a58e98c27a26adcb0e9b844a27b75a63
|
[
"Apache-2.0"
] | null | null | null |
src/python/pants/backend/go/tailor.py
|
williamscs/pants
|
4d1f2ca1a58e98c27a26adcb0e9b844a27b75a63
|
[
"Apache-2.0"
] | null | null | null |
# Copyright 2021 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
| 38.370166
| 109
| 0.694168
|
# Copyright 2021 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
import itertools
import os
from dataclasses import dataclass
from typing import Dict, List
from pants.backend.go.module import ResolvedGoModule, ResolveGoModuleRequest
from pants.backend.go.pkg import (
ResolvedGoPackage,
ResolveExternalGoModuleToPackagesRequest,
ResolveExternalGoModuleToPackagesResult,
)
from pants.backend.go.target_types import (
GoExternalPackageTarget,
GoModule,
GoModuleSources,
GoPackage,
)
from pants.base.specs import AddressSpecs, MaybeEmptyDescendantAddresses, MaybeEmptySiblingAddresses
from pants.build_graph.address import Address
from pants.core.goals.tailor import (
AllOwnedSources,
PutativeTarget,
PutativeTargets,
PutativeTargetsRequest,
group_by_dir,
)
from pants.engine.fs import PathGlobs, Paths
from pants.engine.internals.selectors import Get, MultiGet
from pants.engine.rules import collect_rules, rule
from pants.engine.target import UnexpandedTargets
from pants.engine.unions import UnionRule
from pants.util.logging import LogLevel
@dataclass(frozen=True)
class PutativeGoPackageTargetsRequest(PutativeTargetsRequest):
pass
@rule(level=LogLevel.DEBUG, desc="Determine candidate Go `go_package` targets to create")
async def find_putative_go_package_targets(
request: PutativeGoPackageTargetsRequest, all_owned_sources: AllOwnedSources
) -> PutativeTargets:
all_go_files = await Get(Paths, PathGlobs, request.search_paths.path_globs("*.go"))
unowned_go_files = set(all_go_files.files) - set(all_owned_sources)
putative_targets = []
for dirname, filenames in group_by_dir(unowned_go_files).items():
putative_targets.append(
PutativeTarget.for_target_type(
GoPackage,
dirname,
os.path.basename(dirname),
sorted(filenames),
)
)
return PutativeTargets(putative_targets)
@dataclass(frozen=True)
class PutativeGoModuleTargetsRequest(PutativeTargetsRequest):
pass
@rule(level=LogLevel.DEBUG, desc="Determine candidate Go `go_module` targets to create")
async def find_putative_go_module_targets(
request: PutativeGoModuleTargetsRequest, all_owned_sources: AllOwnedSources
) -> PutativeTargets:
all_go_mod_files = await Get(Paths, PathGlobs, request.search_paths.path_globs("go.mod"))
unowned_go_mod_files = set(all_go_mod_files.files) - set(all_owned_sources)
putative_targets = []
for dirname, filenames in group_by_dir(unowned_go_mod_files).items():
putative_targets.append(
PutativeTarget.for_target_type(
GoModule,
dirname,
os.path.basename(dirname),
sorted(filenames),
)
)
return PutativeTargets(putative_targets)
def compute_go_external_module_target_name(name: str, version: str) -> str:
return f"{name.replace('/', '_')}_{version}"
@dataclass(frozen=True)
class PutativeGoExternalModuleTargetsRequest(PutativeTargetsRequest):
pass
@rule(level=LogLevel.DEBUG, desc="Determine candidate Go `go_external_module` targets to create")
async def find_putative_go_external_module_targets(
request: PutativeGoExternalModuleTargetsRequest, _all_owned_sources: AllOwnedSources
) -> PutativeTargets:
# Unlike ordinary tailor invocations, this rule looks at existing `go_module` targets and not at actual
# source files because it infers `go_external_module` targets based on go.mod contents. (This may require
# invoking `tailor` first to create `go_module` targets and then again to create `go_external_module`
# targets.)
#
# TODO: This might better work as a BUILD macro if https://github.com/pantsbuild/pants/issues/7022 is
# resolved and macros are able to invoke the engine or processes.
addresses = itertools.chain.from_iterable(
[
[MaybeEmptySiblingAddresses(search_path), MaybeEmptyDescendantAddresses(search_path)]
for search_path in request.search_paths.dirs
]
)
candidate_targets = await Get(UnexpandedTargets, AddressSpecs(addresses))
go_module_targets = [tgt for tgt in candidate_targets if tgt.has_field(GoModuleSources)]
putative_targets = []
resolved_go_modules = await MultiGet(
Get(ResolvedGoModule, ResolveGoModuleRequest(go_module_target.address))
for go_module_target in go_module_targets
)
# TODO: Figure out a MultiGet here. (Would be nice if MultiGet could operate on dictionaries.)
resolved_ext_mod_packages: Dict[Address, List[ResolvedGoPackage]] = {}
for resolved_go_module in resolved_go_modules:
resolved_ext_mod_packages[resolved_go_module.target.address] = []
for module_descriptor in resolved_go_module.modules:
result = await Get(
ResolveExternalGoModuleToPackagesResult,
ResolveExternalGoModuleToPackagesRequest(
path=module_descriptor.path,
version=module_descriptor.version,
go_sum_digest=resolved_go_module.digest,
),
)
resolved_ext_mod_packages[resolved_go_module.target.address] += result.packages
for address, packages in resolved_ext_mod_packages.items():
for package in packages:
assert package.module_path
assert package.module_version
assert package.import_path.startswith(package.module_path)
subpath = package.import_path[len(package.module_path) :].replace("/", "_")
ext_mod_target_name = compute_go_external_module_target_name(
package.module_path, package.module_version
)
target_name = f"{ext_mod_target_name}-{subpath}"
putative_targets.append(
PutativeTarget.for_target_type(
GoExternalPackageTarget,
address.spec_path,
target_name,
[],
kwargs={
"path": package.module_path,
"version": package.module_version,
"import_path": package.import_path,
},
build_file_name="BUILD.godeps",
comments=(
"# Auto-generated by `./pants tailor`. Re-run `./pants tailor` if "
"go.mod changes.",
),
)
)
return PutativeTargets(putative_targets)
def rules():
return [
*collect_rules(),
UnionRule(PutativeTargetsRequest, PutativeGoPackageTargetsRequest),
UnionRule(PutativeTargetsRequest, PutativeGoModuleTargetsRequest),
UnionRule(PutativeTargetsRequest, PutativeGoExternalModuleTargetsRequest),
]
| 0
| 5,222
| 0
| 0
| 0
| 373
| 0
| 674
| 537
|
5e55f73c2a86f2dd55e0bb3efcee4238d5951700
| 44
|
py
|
Python
|
Cursos/dados.py
|
FranciscoAlveJr/Bot_Telegram
|
9960485a4a25648719ef6fafcb3b02c82db79253
|
[
"MIT"
] | null | null | null |
Cursos/dados.py
|
FranciscoAlveJr/Bot_Telegram
|
9960485a4a25648719ef6fafcb3b02c82db79253
|
[
"MIT"
] | null | null | null |
Cursos/dados.py
|
FranciscoAlveJr/Bot_Telegram
|
9960485a4a25648719ef6fafcb3b02c82db79253
|
[
"MIT"
] | null | null | null |
import os
print(os.getcwd())
| 8.8
| 18
| 0.75
|
import os
import cursos
print(os.getcwd())
| 0
| 0
| 0
| 0
| 0
| 0
| 0
| -8
| 22
|